diff --git a/.env.development b/.env.development index 90d3cda..8bc8c1c 100644 --- a/.env.development +++ b/.env.development @@ -11,7 +11,8 @@ COOKIE_AUTH_CODE = drpys API_AUTH_NAME = admin API_AUTH_CODE = drpys API_PWD = dzyyds -EPG_URL = https://epg.mxdyeah.top/api/diyp/?ch={name}&date={date} +# EPG_URL = https://epg.mxdyeah.top/api/diyp/?ch={name}&date={date} +EPG_URL = https://iptv.crestekk.cn/epgphp/index.php?ch={name}&date={date} LOGO_URL = https://live.mxdyeah.top/logo/{name}.png LIVE_URL = 'https://livetv.wqwqwq.sbs/tv.m3u' # LIVE_URL = './lives/tv.m3u' diff --git a/.gitignore b/.gitignore index 61cd223..037118d 100644 --- a/.gitignore +++ b/.gitignore @@ -136,3 +136,11 @@ dist /json/UC分享.json /jx/奇奇.js /js/百忙无果[官].js +/data/settings/link_data.json +/yarn.lock +/custom.json +/index.json +/vod_cache/ +/jx/芒果关姐.js +/data/mv/ +/database.db diff --git a/README.md b/README.md index 4acadac..97a13b5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # drpyS(drpy-node) nodejs作为服务端的drpy实现。全面升级异步写法 -积极开发中,每日一更,当前进度 `40%` +~~积极开发中,每日一更~~,当前进度 `49%` +找工作中,随缘更新 * [本地配置接口-动态本地](/config?pwd=) * [本地配置接口-动态外网/局域网](/config/1?pwd=) @@ -13,15 +14,68 @@ nodejs作为服务端的drpy实现。全面升级异步写法 * [cookie管理插件](/apps/cookie-butler/index.html) * [本站防止爬虫协议](/robots.txt) * [本项目主页-免翻](https://github.com/hjdhnx/drpy-node) +* [DS源适配猫影视](https://github.com/hjdhnx/CatPawOpen/tree/ds-cat) +* [在线猫ds源主页](/cat/index.html) ## 更新记录 -### 20250115 +### 20250310 -更新至V1.1.10 +更新至V1.1.23 -1. 重构天翼 -2. 新增移动 +### 20250227 + +更新至V1.1.22 + +### 20250226 + +更新至V1.1.21 + +### 20250225 + +更新至V1.1.20 + +### 20250224 + +更新至V1.1.19 + +### 20250211 + +更新至V1.1.18 + +### 20250206 + +更新至V1.1.17 + +### 20250123 + +更新至V1.1.16 + +### 20250122 + +更新至V1.1.15 + +1. ds源和dr2源增加装逼壳图标支持 + +### 20250121 + +更新至V1.1.14 + +1. 猫源ds在线配置支持接口密码 +2. 新增源 +3. 磁盘加速 + +### 20250120 + +更新至V1.1.13 + +1. 完善猫在线配置 + +### 20250117 + +本次未更新版本 + +1. 新开项目,使ds源适用于新版猫影视 [猫爪catpwd](https://github.com/CatPawApp/CatPawOpen) [点此查看完整更新记录](docs/updateRecord.md) @@ -115,6 +169,8 @@ pm2 restart drpys * [猫影视git文件加速](https://github.catvod.com/) * [猫影视多功能主页](https://catvod.com/) +* [ZY写源教学](https://zy.catni.cn/editSource/edit-grammar.html) +* [源动力](https://sourcepower.top/index) ## AI接入 diff --git a/apps/cookie-butler/index.html b/apps/cookie-butler/index.html index c9e24cc..c313001 100644 --- a/apps/cookie-butler/index.html +++ b/apps/cookie-butler/index.html @@ -9,6 +9,7 @@ + @@ -19,6 +20,7 @@
  • 阿里
  • 夸克
  • UC
  • +
  • UC_TOKEN
  • 哔哩哔哩
  • diff --git a/apps/cookie-butler/static/js/cookie.js b/apps/cookie-butler/static/js/cookie.js index 564b79a..5b5c9fe 100644 --- a/apps/cookie-butler/static/js/cookie.js +++ b/apps/cookie-butler/static/js/cookie.js @@ -20,7 +20,7 @@ function showToast(message, type = 'success') { // 初始化页面 async function initializePage() { // 加载cookie - const platforms = ['ali', 'quark', 'uc', 'bili']; + const platforms = ['ali', 'quark', 'uc','uc_token', 'bili']; // 绑定按钮事件 platforms.forEach(platform => { diff --git a/apps/cookie-butler/static/js/core.js b/apps/cookie-butler/static/js/core.js index 19838c5..4f03ed6 100644 --- a/apps/cookie-butler/static/js/core.js +++ b/apps/cookie-butler/static/js/core.js @@ -1,3 +1,4 @@ + class QRCodeHandler { // 状态常量 static STATUS_NEW = "NEW"; // 待扫描 @@ -10,6 +11,7 @@ class QRCodeHandler { static PLATFORM_QUARK = "quark"; // 夸克 static PLATFORM_ALI = "ali"; // 阿里云盘 static PLATFORM_UC = "uc"; // UC + static PLATFORM_UC_TOKEN = "uc_token"; // uc_token static PLATFORM_BILI = "bili"; // 哔哩哔哩 // 通用请求头 @@ -24,8 +26,22 @@ class QRCodeHandler { [QRCodeHandler.PLATFORM_QUARK]: null, [QRCodeHandler.PLATFORM_ALI]: null, [QRCodeHandler.PLATFORM_UC]: null, + [QRCodeHandler.PLATFORM_UC_TOKEN]: null, [QRCodeHandler.PLATFORM_BILI]: null }; + this.Addition = { + DeviceID: '07b48aaba8a739356ab8107b5e230ad4', + RefreshToken: '', + AccessToken: '' + } + this.conf = { + api: "https://open-api-drive.uc.cn", + clientID: "5acf882d27b74502b7040b0c65519aa7", + signKey: "l3srvtd7p42l0d0x1u8d7yc8ye9kki4d", + appVer: "1.6.8", + channel: "UCTVOFFICIALWEB", + codeApi: "http://api.extscreen.com/ucdrive", + }; } static generateUUID() { @@ -107,6 +123,8 @@ class QRCodeHandler { return await this._startAliScan(); case QRCodeHandler.PLATFORM_UC: return await this._startUCScan(); + case QRCodeHandler.PLATFORM_UC_TOKEN: + return await this._startUC_TOKENScan(); case QRCodeHandler.PLATFORM_BILI: return await this._startBiliScan(); default: @@ -122,6 +140,8 @@ class QRCodeHandler { return await this._checkAliStatus(); case QRCodeHandler.PLATFORM_UC: return await this._checkUCStatus(); + case QRCodeHandler.PLATFORM_UC_TOKEN: + return await this._checkUC_TOKENStatus(); case QRCodeHandler.PLATFORM_BILI: return await this._checkBiliStatus(); default: @@ -380,14 +400,12 @@ class QRCodeHandler { }); const resData = res.data; const token = resData.data.data.members.token; - const qrUrl = `https://su.uc.cn/1_n0ZCv?token=${token}&client_id=381&uc_param_str=&uc_biz_str=S%3Acustom%7CC%3Atitlebar_fix`; this.platformStates[QRCodeHandler.PLATFORM_UC] = { token: token, request_id: requestId }; - const qrCode = await this._generateQRCode(qrUrl); return { qrcode: qrCode, @@ -404,8 +422,8 @@ class QRCodeHandler { if (!state) { return {status: QRCodeHandler.STATUS_EXPIRED}; } - try { + const res = await axios({ url: "/http", method: "POST", @@ -426,9 +444,12 @@ class QRCodeHandler { } } }); + // this.code = await this.getCode(this.token) + // let access_token = await this.refreshToken(this.code); + // console.log(access_token) const resData = res.data; - if (resData.data.status === 2000000) { // 扫码成功 + const serviceTicket = resData.data.data.members.service_ticket; const cookieRes = await axios({ url: "/http", @@ -482,6 +503,178 @@ class QRCodeHandler { } } + generateDeviceID(timestamp) { + return CryptoJS.MD5(timestamp).toString().slice(0, 16); // 取前16位 + } + + generateReqId(deviceID, timestamp) { + return CryptoJS.MD5(deviceID + timestamp).toString().slice(0, 16); + } + + generateXPanToken(method, pathname, timestamp, key) { + const data = method + '&' + pathname + '&' + timestamp + '&' + key; + return CryptoJS.SHA256(data).toString(); + } + + //uc_token + async _startUC_TOKENScan() { + try { + const pathname = '/oauth/authorize' + const timestamp = Math.floor(Date.now() / 1000).toString()+'000'; // 13位时间戳需调整 + const deviceID = this.Addition.DeviceID || this.generateDeviceID(timestamp); + const reqId = this.generateReqId(deviceID, timestamp); + const token = this.generateXPanToken('GET', pathname, timestamp, this.conf.signKey); + const headers = { + Accept: 'application/json, text/plain, */*', + 'User-Agent': 'Mozilla/5.0 (Linux; U; Android 13; zh-cn; M2004J7AC Build/UKQ1.231108.001) AppleWebKit/533.1 (KHTML, like Gecko) Mobile Safari/533.1', + 'x-pan-tm': timestamp, + 'x-pan-token': token, + 'x-pan-client-id': this.conf.clientID, + ...(this.Addition.AccessToken ? { 'Authorization': `Bearer ${this.Addition.AccessToken}` } : {}) + }; + const res = await axios({ + url: "/http", + method: "POST", + data: { + url: `${this.conf.api}${pathname}`, + headers: headers, + params: { + req_id: reqId, + access_token: this.Addition.AccessToken, + app_ver: this.conf.appVer, + device_id: deviceID, + device_brand: 'Xiaomi', + platform: 'tv', + device_name: 'M2004J7AC', + device_model: 'M2004J7AC', + build_device: 'M2004J7AC', + build_product: 'M2004J7AC', + device_gpu: 'Adreno (TM) 550', + activity_rect: '{}', + channel: this.conf.channel, + auth_type : 'code', + client_id : this.conf.clientID, + scope : 'netdisk', + qrcode : '1', + qr_width : '460', + qr_height : '460', + }, + } + }); + const resData = res.data; + this.query_token = resData.data.query_token; + const qrCode = resData.data.qr_data; + this.platformStates[QRCodeHandler.PLATFORM_UC_TOKEN] = { + query_token: this.query_token, + request_id: reqId + }; + return { + qrcode: 'data:image/png;base64,'+qrCode, + status: QRCodeHandler.STATUS_NEW + }; + } catch (e) { + this.platformStates[QRCodeHandler.PLATFORM_UC_TOKEN] = null; + throw e; + } + } + + async _checkUC_TOKENStatus() { + const state = this.platformStates[QRCodeHandler.PLATFORM_UC_TOKEN]; + if (!state) { + return {status: QRCodeHandler.STATUS_EXPIRED}; + } + const pathname = '/oauth/code'; + const timestamp = Math.floor(Date.now() / 1000).toString()+'000'; // 13位时间戳需调整 + const deviceID = this.Addition.DeviceID || this.generateDeviceID(timestamp); + const reqId = this.generateReqId(deviceID, timestamp); + const x_pan_token = this.generateXPanToken("GET", pathname, timestamp, this.conf.signKey); + const headers = { + Accept: 'application/json, text/plain, */*', + 'User-Agent': 'Mozilla/5.0 (Linux; U; Android 13; zh-cn; M2004J7AC Build/UKQ1.231108.001) AppleWebKit/533.1 (KHTML, like Gecko) Mobile Safari/533.1', + 'x-pan-tm': timestamp, + 'x-pan-token': x_pan_token, + 'x-pan-client-id': this.conf.clientID, + ...(this.Addition.AccessToken ? { 'Authorization': `Bearer ${this.Addition.AccessToken}` } : {}) + }; + try { + const res = await axios({ + url: "/http", + method: "POST", + data: { + url: `${this.conf.api}${pathname}`, + headers: headers, + params: { + req_id: reqId, + access_token: this.Addition.AccessToken, + app_ver: this.conf.appVer, + device_id: deviceID, + device_brand: 'Xiaomi', + platform: 'tv', + device_name: 'M2004J7AC', + device_model: 'M2004J7AC', + build_device: 'M2004J7AC', + build_product: 'M2004J7AC', + device_gpu: 'Adreno (TM) 550', + activity_rect: '{}', + channel: this.conf.channel, + client_id: this.conf.clientID, + scope: 'netdisk', + query_token: this.query_token + } + } + }).catch(err => err.response); + const resData = res.data; + if (resData.status === 200) { // 扫码成功 + const pathname = '/token'; + const timestamp = Math.floor(Date.now() / 1000).toString()+'000'; + const reqId = this.generateReqId(this.Addition.DeviceID, timestamp); + const data = JSON.stringify({ + req_id: reqId, + app_ver: this.conf.appVer, + device_id: this.Addition.DeviceID, + device_brand: 'Xiaomi', + platform: 'tv', + device_name: 'M2004J7AC', + device_model: 'M2004J7AC', + build_device: 'M2004J7AC', + build_product: 'M2004J7AC', + device_gpu: 'Adreno (TM) 550', + activity_rect: '{}', + channel: this.conf.channel, + code:resData.data.code + }); + const response = await axios({ + url: '/http', + method: "POST", + data:{ + url:`${this.conf.codeApi}${pathname}`, + method: "POST", + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', + 'Accept': 'application/json, text/plain, */*', + 'Content-Type': 'application/json', + }, + data:data + } + }); + const resp = response.data; + if(resp.status === 200) { + this.platformStates[QRCodeHandler.PLATFORM_UC_TOKEN] = null; + return { + status: QRCodeHandler.STATUS_CONFIRMED, + cookie: resp.data.data.access_token + }; + } + + } else if (resData.status === 400){ + return {status: QRCodeHandler.STATUS_NEW}; + } + } catch (e) { + this.platformStates[QRCodeHandler.PLATFORM_UC_TOKEN] = null; + throw new Error(e.message); + } + } + // 哔哩哔哩平台相关方法 async _startBiliScan() { try { diff --git a/apps/cookie-butler/static/js/crypto-js.min.js b/apps/cookie-butler/static/js/crypto-js.min.js new file mode 100644 index 0000000..20b3099 --- /dev/null +++ b/apps/cookie-butler/static/js/crypto-js.min.js @@ -0,0 +1 @@ +!function(t,e){"object"==typeof exports?module.exports=exports=e():"function"==typeof define&&define.amd?define([],e):t.CryptoJS=e()}(this,function(){var n,o,s,a,h,t,e,l,r,i,c,f,d,u,p,S,x,b,A,H,z,_,v,g,y,B,w,k,m,C,D,E,R,M,F,P,W,O,I,U=U||function(h){var i;if("undefined"!=typeof window&&window.crypto&&(i=window.crypto),"undefined"!=typeof self&&self.crypto&&(i=self.crypto),!(i=!(i=!(i="undefined"!=typeof globalThis&&globalThis.crypto?globalThis.crypto:i)&&"undefined"!=typeof window&&window.msCrypto?window.msCrypto:i)&&"undefined"!=typeof global&&global.crypto?global.crypto:i)&&"function"==typeof require)try{i=require("crypto")}catch(t){}var r=Object.create||function(t){return e.prototype=t,t=new e,e.prototype=null,t};function e(){}var t={},n=t.lib={},o=n.Base={extend:function(t){var e=r(this);return t&&e.mixIn(t),e.hasOwnProperty("init")&&this.init!==e.init||(e.init=function(){e.$super.init.apply(this,arguments)}),(e.init.prototype=e).$super=this,e},create:function(){var t=this.extend();return t.init.apply(t,arguments),t},init:function(){},mixIn:function(t){for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e]);t.hasOwnProperty("toString")&&(this.toString=t.toString)},clone:function(){return this.init.prototype.extend(this)}},l=n.WordArray=o.extend({init:function(t,e){t=this.words=t||[],this.sigBytes=null!=e?e:4*t.length},toString:function(t){return(t||c).stringify(this)},concat:function(t){var e=this.words,r=t.words,i=this.sigBytes,n=t.sigBytes;if(this.clamp(),i%4)for(var o=0;o>>2]>>>24-o%4*8&255;e[i+o>>>2]|=s<<24-(i+o)%4*8}else for(var c=0;c>>2]=r[c>>>2];return this.sigBytes+=n,this},clamp:function(){var t=this.words,e=this.sigBytes;t[e>>>2]&=4294967295<<32-e%4*8,t.length=h.ceil(e/4)},clone:function(){var t=o.clone.call(this);return t.words=this.words.slice(0),t},random:function(t){for(var e=[],r=0;r>>2]>>>24-n%4*8&255;i.push((o>>>4).toString(16)),i.push((15&o).toString(16))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i>>3]|=parseInt(t.substr(i,2),16)<<24-i%8*4;return new l.init(r,e/2)}},a=s.Latin1={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n>>2]>>>24-n%4*8&255;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i>>2]|=(255&t.charCodeAt(i))<<24-i%4*8;return new l.init(r,e)}},f=s.Utf8={stringify:function(t){try{return decodeURIComponent(escape(a.stringify(t)))}catch(t){throw new Error("Malformed UTF-8 data")}},parse:function(t){return a.parse(unescape(encodeURIComponent(t)))}},d=n.BufferedBlockAlgorithm=o.extend({reset:function(){this._data=new l.init,this._nDataBytes=0},_append:function(t){"string"==typeof t&&(t=f.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes},_process:function(t){var e,r=this._data,i=r.words,n=r.sigBytes,o=this.blockSize,s=n/(4*o),c=(s=t?h.ceil(s):h.max((0|s)-this._minBufferSize,0))*o,n=h.min(4*c,n);if(c){for(var a=0;a>>32-e}function j(t,e,r,i){var n,o=this._iv;o?(n=o.slice(0),this._iv=void 0):n=this._prevBlock,i.encryptBlock(n,0);for(var s=0;s>24&255)?(r=t>>8&255,i=255&t,255===(e=t>>16&255)?(e=0,255===r?(r=0,255===i?i=0:++i):++r):++e,t=0,t+=e<<16,t+=r<<8,t+=i):t+=1<<24,t}function N(){for(var t=this._X,e=this._C,r=0;r<8;r++)E[r]=e[r];e[0]=e[0]+1295307597+this._b|0,e[1]=e[1]+3545052371+(e[0]>>>0>>0?1:0)|0,e[2]=e[2]+886263092+(e[1]>>>0>>0?1:0)|0,e[3]=e[3]+1295307597+(e[2]>>>0>>0?1:0)|0,e[4]=e[4]+3545052371+(e[3]>>>0>>0?1:0)|0,e[5]=e[5]+886263092+(e[4]>>>0>>0?1:0)|0,e[6]=e[6]+1295307597+(e[5]>>>0>>0?1:0)|0,e[7]=e[7]+3545052371+(e[6]>>>0>>0?1:0)|0,this._b=e[7]>>>0>>0?1:0;for(r=0;r<8;r++){var i=t[r]+e[r],n=65535&i,o=i>>>16;R[r]=((n*n>>>17)+n*o>>>15)+o*o^((4294901760&i)*i|0)+((65535&i)*i|0)}t[0]=R[0]+(R[7]<<16|R[7]>>>16)+(R[6]<<16|R[6]>>>16)|0,t[1]=R[1]+(R[0]<<8|R[0]>>>24)+R[7]|0,t[2]=R[2]+(R[1]<<16|R[1]>>>16)+(R[0]<<16|R[0]>>>16)|0,t[3]=R[3]+(R[2]<<8|R[2]>>>24)+R[1]|0,t[4]=R[4]+(R[3]<<16|R[3]>>>16)+(R[2]<<16|R[2]>>>16)|0,t[5]=R[5]+(R[4]<<8|R[4]>>>24)+R[3]|0,t[6]=R[6]+(R[5]<<16|R[5]>>>16)+(R[4]<<16|R[4]>>>16)|0,t[7]=R[7]+(R[6]<<8|R[6]>>>24)+R[5]|0}function q(){for(var t=this._X,e=this._C,r=0;r<8;r++)O[r]=e[r];e[0]=e[0]+1295307597+this._b|0,e[1]=e[1]+3545052371+(e[0]>>>0>>0?1:0)|0,e[2]=e[2]+886263092+(e[1]>>>0>>0?1:0)|0,e[3]=e[3]+1295307597+(e[2]>>>0>>0?1:0)|0,e[4]=e[4]+3545052371+(e[3]>>>0>>0?1:0)|0,e[5]=e[5]+886263092+(e[4]>>>0>>0?1:0)|0,e[6]=e[6]+1295307597+(e[5]>>>0>>0?1:0)|0,e[7]=e[7]+3545052371+(e[6]>>>0>>0?1:0)|0,this._b=e[7]>>>0>>0?1:0;for(r=0;r<8;r++){var i=t[r]+e[r],n=65535&i,o=i>>>16;I[r]=((n*n>>>17)+n*o>>>15)+o*o^((4294901760&i)*i|0)+((65535&i)*i|0)}t[0]=I[0]+(I[7]<<16|I[7]>>>16)+(I[6]<<16|I[6]>>>16)|0,t[1]=I[1]+(I[0]<<8|I[0]>>>24)+I[7]|0,t[2]=I[2]+(I[1]<<16|I[1]>>>16)+(I[0]<<16|I[0]>>>16)|0,t[3]=I[3]+(I[2]<<8|I[2]>>>24)+I[1]|0,t[4]=I[4]+(I[3]<<16|I[3]>>>16)+(I[2]<<16|I[2]>>>16)|0,t[5]=I[5]+(I[4]<<8|I[4]>>>24)+I[3]|0,t[6]=I[6]+(I[5]<<16|I[5]>>>16)+(I[4]<<16|I[4]>>>16)|0,t[7]=I[7]+(I[6]<<8|I[6]>>>24)+I[5]|0}return F=(M=U).lib,n=F.Base,o=F.WordArray,(M=M.x64={}).Word=n.extend({init:function(t,e){this.high=t,this.low=e}}),M.WordArray=n.extend({init:function(t,e){t=this.words=t||[],this.sigBytes=null!=e?e:8*t.length},toX32:function(){for(var t=this.words,e=t.length,r=[],i=0;i>>2]|=t[i]<<24-i%4*8;s.call(this,r,e)}else s.apply(this,arguments)}).prototype=P),function(){var t=U,n=t.lib.WordArray,t=t.enc;t.Utf16=t.Utf16BE={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n>>2]>>>16-n%4*8&65535;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i>>1]|=t.charCodeAt(i)<<16-i%2*16;return n.create(r,2*e)}};function s(t){return t<<8&4278255360|t>>>8&16711935}t.Utf16LE={stringify:function(t){for(var e=t.words,r=t.sigBytes,i=[],n=0;n>>2]>>>16-n%4*8&65535);i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var e=t.length,r=[],i=0;i>>1]|=s(t.charCodeAt(i)<<16-i%2*16);return n.create(r,2*e)}}}(),a=(w=U).lib.WordArray,w.enc.Base64={stringify:function(t){var e=t.words,r=t.sigBytes,i=this._map;t.clamp();for(var n=[],o=0;o>>2]>>>24-o%4*8&255)<<16|(e[o+1>>>2]>>>24-(o+1)%4*8&255)<<8|e[o+2>>>2]>>>24-(o+2)%4*8&255,c=0;c<4&&o+.75*c>>6*(3-c)&63));var a=i.charAt(64);if(a)for(;n.length%4;)n.push(a);return n.join("")},parse:function(t){var e=t.length,r=this._map;if(!(i=this._reverseMap))for(var i=this._reverseMap=[],n=0;n>>6-o%4*2,c=s|c,i[n>>>2]|=c<<24-n%4*8,n++)}return a.create(i,n)}(t,e,i)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},h=(F=U).lib.WordArray,F.enc.Base64url={stringify:function(t,e=!0){var r=t.words,i=t.sigBytes,n=e?this._safe_map:this._map;t.clamp();for(var o=[],s=0;s>>2]>>>24-s%4*8&255)<<16|(r[s+1>>>2]>>>24-(s+1)%4*8&255)<<8|r[s+2>>>2]>>>24-(s+2)%4*8&255,a=0;a<4&&s+.75*a>>6*(3-a)&63));var h=n.charAt(64);if(h)for(;o.length%4;)o.push(h);return o.join("")},parse:function(t,e=!0){var r=t.length,i=e?this._safe_map:this._map;if(!(n=this._reverseMap))for(var n=this._reverseMap=[],o=0;o>>6-o%4*2,c=s|c,i[n>>>2]|=c<<24-n%4*8,n++)}return h.create(i,n)}(t,r,n)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},function(a){var t=U,e=t.lib,r=e.WordArray,i=e.Hasher,e=t.algo,A=[];!function(){for(var t=0;t<64;t++)A[t]=4294967296*a.abs(a.sin(t+1))|0}();e=e.MD5=i.extend({_doReset:function(){this._hash=new r.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(t,e){for(var r=0;r<16;r++){var i=e+r,n=t[i];t[i]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8)}var o=this._hash.words,s=t[e+0],c=t[e+1],a=t[e+2],h=t[e+3],l=t[e+4],f=t[e+5],d=t[e+6],u=t[e+7],p=t[e+8],_=t[e+9],y=t[e+10],v=t[e+11],g=t[e+12],B=t[e+13],w=t[e+14],k=t[e+15],m=H(m=o[0],b=o[1],x=o[2],S=o[3],s,7,A[0]),S=H(S,m,b,x,c,12,A[1]),x=H(x,S,m,b,a,17,A[2]),b=H(b,x,S,m,h,22,A[3]);m=H(m,b,x,S,l,7,A[4]),S=H(S,m,b,x,f,12,A[5]),x=H(x,S,m,b,d,17,A[6]),b=H(b,x,S,m,u,22,A[7]),m=H(m,b,x,S,p,7,A[8]),S=H(S,m,b,x,_,12,A[9]),x=H(x,S,m,b,y,17,A[10]),b=H(b,x,S,m,v,22,A[11]),m=H(m,b,x,S,g,7,A[12]),S=H(S,m,b,x,B,12,A[13]),x=H(x,S,m,b,w,17,A[14]),m=z(m,b=H(b,x,S,m,k,22,A[15]),x,S,c,5,A[16]),S=z(S,m,b,x,d,9,A[17]),x=z(x,S,m,b,v,14,A[18]),b=z(b,x,S,m,s,20,A[19]),m=z(m,b,x,S,f,5,A[20]),S=z(S,m,b,x,y,9,A[21]),x=z(x,S,m,b,k,14,A[22]),b=z(b,x,S,m,l,20,A[23]),m=z(m,b,x,S,_,5,A[24]),S=z(S,m,b,x,w,9,A[25]),x=z(x,S,m,b,h,14,A[26]),b=z(b,x,S,m,p,20,A[27]),m=z(m,b,x,S,B,5,A[28]),S=z(S,m,b,x,a,9,A[29]),x=z(x,S,m,b,u,14,A[30]),m=C(m,b=z(b,x,S,m,g,20,A[31]),x,S,f,4,A[32]),S=C(S,m,b,x,p,11,A[33]),x=C(x,S,m,b,v,16,A[34]),b=C(b,x,S,m,w,23,A[35]),m=C(m,b,x,S,c,4,A[36]),S=C(S,m,b,x,l,11,A[37]),x=C(x,S,m,b,u,16,A[38]),b=C(b,x,S,m,y,23,A[39]),m=C(m,b,x,S,B,4,A[40]),S=C(S,m,b,x,s,11,A[41]),x=C(x,S,m,b,h,16,A[42]),b=C(b,x,S,m,d,23,A[43]),m=C(m,b,x,S,_,4,A[44]),S=C(S,m,b,x,g,11,A[45]),x=C(x,S,m,b,k,16,A[46]),m=D(m,b=C(b,x,S,m,a,23,A[47]),x,S,s,6,A[48]),S=D(S,m,b,x,u,10,A[49]),x=D(x,S,m,b,w,15,A[50]),b=D(b,x,S,m,f,21,A[51]),m=D(m,b,x,S,g,6,A[52]),S=D(S,m,b,x,h,10,A[53]),x=D(x,S,m,b,y,15,A[54]),b=D(b,x,S,m,c,21,A[55]),m=D(m,b,x,S,p,6,A[56]),S=D(S,m,b,x,k,10,A[57]),x=D(x,S,m,b,d,15,A[58]),b=D(b,x,S,m,B,21,A[59]),m=D(m,b,x,S,l,6,A[60]),S=D(S,m,b,x,v,10,A[61]),x=D(x,S,m,b,a,15,A[62]),b=D(b,x,S,m,_,21,A[63]),o[0]=o[0]+m|0,o[1]=o[1]+b|0,o[2]=o[2]+x|0,o[3]=o[3]+S|0},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;e[i>>>5]|=128<<24-i%32;var n=a.floor(r/4294967296),r=r;e[15+(64+i>>>9<<4)]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8),e[14+(64+i>>>9<<4)]=16711935&(r<<8|r>>>24)|4278255360&(r<<24|r>>>8),t.sigBytes=4*(e.length+1),this._process();for(var e=this._hash,o=e.words,s=0;s<4;s++){var c=o[s];o[s]=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8)}return e},clone:function(){var t=i.clone.call(this);return t._hash=this._hash.clone(),t}});function H(t,e,r,i,n,o,s){s=t+(e&r|~e&i)+n+s;return(s<>>32-o)+e}function z(t,e,r,i,n,o,s){s=t+(e&i|r&~i)+n+s;return(s<>>32-o)+e}function C(t,e,r,i,n,o,s){s=t+(e^r^i)+n+s;return(s<>>32-o)+e}function D(t,e,r,i,n,o,s){s=t+(r^(e|~i))+n+s;return(s<>>32-o)+e}t.MD5=i._createHelper(e),t.HmacMD5=i._createHmacHelper(e)}(Math),P=(M=U).lib,t=P.WordArray,e=P.Hasher,P=M.algo,l=[],P=P.SHA1=e.extend({_doReset:function(){this._hash=new t.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,e){for(var r=this._hash.words,i=r[0],n=r[1],o=r[2],s=r[3],c=r[4],a=0;a<80;a++){a<16?l[a]=0|t[e+a]:(h=l[a-3]^l[a-8]^l[a-14]^l[a-16],l[a]=h<<1|h>>>31);var h=(i<<5|i>>>27)+c+l[a];h+=a<20?1518500249+(n&o|~n&s):a<40?1859775393+(n^o^s):a<60?(n&o|n&s|o&s)-1894007588:(n^o^s)-899497514,c=s,s=o,o=n<<30|n>>>2,n=i,i=h}r[0]=r[0]+i|0,r[1]=r[1]+n|0,r[2]=r[2]+o|0,r[3]=r[3]+s|0,r[4]=r[4]+c|0},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;return e[i>>>5]|=128<<24-i%32,e[14+(64+i>>>9<<4)]=Math.floor(r/4294967296),e[15+(64+i>>>9<<4)]=r,t.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var t=e.clone.call(this);return t._hash=this._hash.clone(),t}}),M.SHA1=e._createHelper(P),M.HmacSHA1=e._createHmacHelper(P),function(n){var t=U,e=t.lib,r=e.WordArray,i=e.Hasher,e=t.algo,o=[],p=[];!function(){function t(t){return 4294967296*(t-(0|t))|0}for(var e=2,r=0;r<64;)!function(t){for(var e=n.sqrt(t),r=2;r<=e;r++)if(!(t%r))return;return 1}(e)||(r<8&&(o[r]=t(n.pow(e,.5))),p[r]=t(n.pow(e,1/3)),r++),e++}();var _=[],e=e.SHA256=i.extend({_doReset:function(){this._hash=new r.init(o.slice(0))},_doProcessBlock:function(t,e){for(var r=this._hash.words,i=r[0],n=r[1],o=r[2],s=r[3],c=r[4],a=r[5],h=r[6],l=r[7],f=0;f<64;f++){f<16?_[f]=0|t[e+f]:(d=_[f-15],u=_[f-2],_[f]=((d<<25|d>>>7)^(d<<14|d>>>18)^d>>>3)+_[f-7]+((u<<15|u>>>17)^(u<<13|u>>>19)^u>>>10)+_[f-16]);var d=i&n^i&o^n&o,u=l+((c<<26|c>>>6)^(c<<21|c>>>11)^(c<<7|c>>>25))+(c&a^~c&h)+p[f]+_[f],l=h,h=a,a=c,c=s+u|0,s=o,o=n,n=i,i=u+(((i<<30|i>>>2)^(i<<19|i>>>13)^(i<<10|i>>>22))+d)|0}r[0]=r[0]+i|0,r[1]=r[1]+n|0,r[2]=r[2]+o|0,r[3]=r[3]+s|0,r[4]=r[4]+c|0,r[5]=r[5]+a|0,r[6]=r[6]+h|0,r[7]=r[7]+l|0},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;return e[i>>>5]|=128<<24-i%32,e[14+(64+i>>>9<<4)]=n.floor(r/4294967296),e[15+(64+i>>>9<<4)]=r,t.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var t=i.clone.call(this);return t._hash=this._hash.clone(),t}});t.SHA256=i._createHelper(e),t.HmacSHA256=i._createHmacHelper(e)}(Math),r=(w=U).lib.WordArray,F=w.algo,i=F.SHA256,F=F.SHA224=i.extend({_doReset:function(){this._hash=new r.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var t=i._doFinalize.call(this);return t.sigBytes-=4,t}}),w.SHA224=i._createHelper(F),w.HmacSHA224=i._createHmacHelper(F),function(){var t=U,e=t.lib.Hasher,r=t.x64,i=r.Word,n=r.WordArray,r=t.algo;function o(){return i.create.apply(i,arguments)}var t1=[o(1116352408,3609767458),o(1899447441,602891725),o(3049323471,3964484399),o(3921009573,2173295548),o(961987163,4081628472),o(1508970993,3053834265),o(2453635748,2937671579),o(2870763221,3664609560),o(3624381080,2734883394),o(310598401,1164996542),o(607225278,1323610764),o(1426881987,3590304994),o(1925078388,4068182383),o(2162078206,991336113),o(2614888103,633803317),o(3248222580,3479774868),o(3835390401,2666613458),o(4022224774,944711139),o(264347078,2341262773),o(604807628,2007800933),o(770255983,1495990901),o(1249150122,1856431235),o(1555081692,3175218132),o(1996064986,2198950837),o(2554220882,3999719339),o(2821834349,766784016),o(2952996808,2566594879),o(3210313671,3203337956),o(3336571891,1034457026),o(3584528711,2466948901),o(113926993,3758326383),o(338241895,168717936),o(666307205,1188179964),o(773529912,1546045734),o(1294757372,1522805485),o(1396182291,2643833823),o(1695183700,2343527390),o(1986661051,1014477480),o(2177026350,1206759142),o(2456956037,344077627),o(2730485921,1290863460),o(2820302411,3158454273),o(3259730800,3505952657),o(3345764771,106217008),o(3516065817,3606008344),o(3600352804,1432725776),o(4094571909,1467031594),o(275423344,851169720),o(430227734,3100823752),o(506948616,1363258195),o(659060556,3750685593),o(883997877,3785050280),o(958139571,3318307427),o(1322822218,3812723403),o(1537002063,2003034995),o(1747873779,3602036899),o(1955562222,1575990012),o(2024104815,1125592928),o(2227730452,2716904306),o(2361852424,442776044),o(2428436474,593698344),o(2756734187,3733110249),o(3204031479,2999351573),o(3329325298,3815920427),o(3391569614,3928383900),o(3515267271,566280711),o(3940187606,3454069534),o(4118630271,4000239992),o(116418474,1914138554),o(174292421,2731055270),o(289380356,3203993006),o(460393269,320620315),o(685471733,587496836),o(852142971,1086792851),o(1017036298,365543100),o(1126000580,2618297676),o(1288033470,3409855158),o(1501505948,4234509866),o(1607167915,987167468),o(1816402316,1246189591)],e1=[];!function(){for(var t=0;t<80;t++)e1[t]=o()}();r=r.SHA512=e.extend({_doReset:function(){this._hash=new n.init([new i.init(1779033703,4089235720),new i.init(3144134277,2227873595),new i.init(1013904242,4271175723),new i.init(2773480762,1595750129),new i.init(1359893119,2917565137),new i.init(2600822924,725511199),new i.init(528734635,4215389547),new i.init(1541459225,327033209)])},_doProcessBlock:function(t,e){for(var r=this._hash.words,i=r[0],n=r[1],o=r[2],s=r[3],c=r[4],a=r[5],h=r[6],l=r[7],f=i.high,d=i.low,u=n.high,p=n.low,_=o.high,y=o.low,v=s.high,g=s.low,B=c.high,w=c.low,k=a.high,m=a.low,S=h.high,x=h.low,b=l.high,r=l.low,A=f,H=d,z=u,C=p,D=_,E=y,R=v,M=g,F=B,P=w,W=k,O=m,I=S,U=x,K=b,X=r,L=0;L<80;L++){var j,T,N=e1[L];L<16?(T=N.high=0|t[e+2*L],j=N.low=0|t[e+2*L+1]):($=(q=e1[L-15]).high,J=q.low,G=(Q=e1[L-2]).high,V=Q.low,Z=(Y=e1[L-7]).high,q=Y.low,Y=(Q=e1[L-16]).high,T=(T=(($>>>1|J<<31)^($>>>8|J<<24)^$>>>7)+Z+((j=(Z=(J>>>1|$<<31)^(J>>>8|$<<24)^(J>>>7|$<<25))+q)>>>0>>0?1:0))+((G>>>19|V<<13)^(G<<3|V>>>29)^G>>>6)+((j+=J=(V>>>19|G<<13)^(V<<3|G>>>29)^(V>>>6|G<<26))>>>0>>0?1:0),j+=$=Q.low,N.high=T=T+Y+(j>>>0<$>>>0?1:0),N.low=j);var q=F&W^~F&I,Z=P&O^~P&U,V=A&z^A&D^z&D,G=(H>>>28|A<<4)^(H<<30|A>>>2)^(H<<25|A>>>7),J=t1[L],Q=J.high,Y=J.low,$=X+((P>>>14|F<<18)^(P>>>18|F<<14)^(P<<23|F>>>9)),N=K+((F>>>14|P<<18)^(F>>>18|P<<14)^(F<<23|P>>>9))+($>>>0>>0?1:0),J=G+(H&C^H&E^C&E),K=I,X=U,I=W,U=O,W=F,O=P,F=R+(N=(N=(N=N+q+(($=$+Z)>>>0>>0?1:0))+Q+(($=$+Y)>>>0>>0?1:0))+T+(($=$+j)>>>0>>0?1:0))+((P=M+$|0)>>>0>>0?1:0)|0,R=D,M=E,D=z,E=C,z=A,C=H,A=N+(((A>>>28|H<<4)^(A<<30|H>>>2)^(A<<25|H>>>7))+V+(J>>>0>>0?1:0))+((H=$+J|0)>>>0<$>>>0?1:0)|0}d=i.low=d+H,i.high=f+A+(d>>>0>>0?1:0),p=n.low=p+C,n.high=u+z+(p>>>0>>0?1:0),y=o.low=y+E,o.high=_+D+(y>>>0>>0?1:0),g=s.low=g+M,s.high=v+R+(g>>>0>>0?1:0),w=c.low=w+P,c.high=B+F+(w>>>0

    >>0?1:0),m=a.low=m+O,a.high=k+W+(m>>>0>>0?1:0),x=h.low=x+U,h.high=S+I+(x>>>0>>0?1:0),r=l.low=r+X,l.high=b+K+(r>>>0>>0?1:0)},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;return e[i>>>5]|=128<<24-i%32,e[30+(128+i>>>10<<5)]=Math.floor(r/4294967296),e[31+(128+i>>>10<<5)]=r,t.sigBytes=4*e.length,this._process(),this._hash.toX32()},clone:function(){var t=e.clone.call(this);return t._hash=this._hash.clone(),t},blockSize:32});t.SHA512=e._createHelper(r),t.HmacSHA512=e._createHmacHelper(r)}(),P=(M=U).x64,c=P.Word,f=P.WordArray,P=M.algo,d=P.SHA512,P=P.SHA384=d.extend({_doReset:function(){this._hash=new f.init([new c.init(3418070365,3238371032),new c.init(1654270250,914150663),new c.init(2438529370,812702999),new c.init(355462360,4144912697),new c.init(1731405415,4290775857),new c.init(2394180231,1750603025),new c.init(3675008525,1694076839),new c.init(1203062813,3204075428)])},_doFinalize:function(){var t=d._doFinalize.call(this);return t.sigBytes-=16,t}}),M.SHA384=d._createHelper(P),M.HmacSHA384=d._createHmacHelper(P),function(l){var t=U,e=t.lib,f=e.WordArray,i=e.Hasher,d=t.x64.Word,e=t.algo,A=[],H=[],z=[];!function(){for(var t=1,e=0,r=0;r<24;r++){A[t+5*e]=(r+1)*(r+2)/2%64;var i=(2*t+3*e)%5;t=e%5,e=i}for(t=0;t<5;t++)for(e=0;e<5;e++)H[t+5*e]=e+(2*t+3*e)%5*5;for(var n=1,o=0;o<24;o++){for(var s,c=0,a=0,h=0;h<7;h++)1&n&&((s=(1<>>24)|4278255360&(o<<24|o>>>8);(m=r[n]).high^=s=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),m.low^=o}for(var c=0;c<24;c++){for(var a=0;a<5;a++){for(var h=0,l=0,f=0;f<5;f++)h^=(m=r[a+5*f]).high,l^=m.low;var d=C[a];d.high=h,d.low=l}for(a=0;a<5;a++)for(var u=C[(a+4)%5],p=C[(a+1)%5],_=p.high,p=p.low,h=u.high^(_<<1|p>>>31),l=u.low^(p<<1|_>>>31),f=0;f<5;f++)(m=r[a+5*f]).high^=h,m.low^=l;for(var y=1;y<25;y++){var v=(m=r[y]).high,g=m.low,B=A[y];l=B<32?(h=v<>>32-B,g<>>32-B):(h=g<>>64-B,v<>>64-B);B=C[H[y]];B.high=h,B.low=l}var w=C[0],k=r[0];w.high=k.high,w.low=k.low;for(a=0;a<5;a++)for(f=0;f<5;f++){var m=r[y=a+5*f],S=C[y],x=C[(a+1)%5+5*f],b=C[(a+2)%5+5*f];m.high=S.high^~x.high&b.high,m.low=S.low^~x.low&b.low}m=r[0],k=z[c];m.high^=k.high,m.low^=k.low}},_doFinalize:function(){var t=this._data,e=t.words,r=(this._nDataBytes,8*t.sigBytes),i=32*this.blockSize;e[r>>>5]|=1<<24-r%32,e[(l.ceil((1+r)/i)*i>>>5)-1]|=128,t.sigBytes=4*e.length,this._process();for(var n=this._state,e=this.cfg.outputLength/8,o=e/8,s=[],c=0;c>>24)|4278255360&(h<<24|h>>>8);s.push(a=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8)),s.push(h)}return new f.init(s,e)},clone:function(){for(var t=i.clone.call(this),e=t._state=this._state.slice(0),r=0;r<25;r++)e[r]=e[r].clone();return t}});t.SHA3=i._createHelper(e),t.HmacSHA3=i._createHmacHelper(e)}(Math),Math,F=(w=U).lib,u=F.WordArray,p=F.Hasher,F=w.algo,S=u.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),x=u.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),b=u.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),A=u.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),H=u.create([0,1518500249,1859775393,2400959708,2840853838]),z=u.create([1352829926,1548603684,1836072691,2053994217,0]),F=F.RIPEMD160=p.extend({_doReset:function(){this._hash=u.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,e){for(var r=0;r<16;r++){var i=e+r,n=t[i];t[i]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8)}for(var o,s,c,a,h,l,f=this._hash.words,d=H.words,u=z.words,p=S.words,_=x.words,y=b.words,v=A.words,g=o=f[0],B=s=f[1],w=c=f[2],k=a=f[3],m=h=f[4],r=0;r<80;r+=1)l=o+t[e+p[r]]|0,l+=r<16?(s^c^a)+d[0]:r<32?K(s,c,a)+d[1]:r<48?((s|~c)^a)+d[2]:r<64?X(s,c,a)+d[3]:(s^(c|~a))+d[4],l=(l=L(l|=0,y[r]))+h|0,o=h,h=a,a=L(c,10),c=s,s=l,l=g+t[e+_[r]]|0,l+=r<16?(B^(w|~k))+u[0]:r<32?X(B,w,k)+u[1]:r<48?((B|~w)^k)+u[2]:r<64?K(B,w,k)+u[3]:(B^w^k)+u[4],l=(l=L(l|=0,v[r]))+m|0,g=m,m=k,k=L(w,10),w=B,B=l;l=f[1]+c+k|0,f[1]=f[2]+a+m|0,f[2]=f[3]+h+g|0,f[3]=f[4]+o+B|0,f[4]=f[0]+s+w|0,f[0]=l},_doFinalize:function(){var t=this._data,e=t.words,r=8*this._nDataBytes,i=8*t.sigBytes;e[i>>>5]|=128<<24-i%32,e[14+(64+i>>>9<<4)]=16711935&(r<<8|r>>>24)|4278255360&(r<<24|r>>>8),t.sigBytes=4*(e.length+1),this._process();for(var e=this._hash,n=e.words,o=0;o<5;o++){var s=n[o];n[o]=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8)}return e},clone:function(){var t=p.clone.call(this);return t._hash=this._hash.clone(),t}}),w.RIPEMD160=p._createHelper(F),w.HmacRIPEMD160=p._createHmacHelper(F),P=(M=U).lib.Base,_=M.enc.Utf8,M.algo.HMAC=P.extend({init:function(t,e){t=this._hasher=new t.init,"string"==typeof e&&(e=_.parse(e));var r=t.blockSize,i=4*r;(e=e.sigBytes>i?t.finalize(e):e).clamp();for(var t=this._oKey=e.clone(),e=this._iKey=e.clone(),n=t.words,o=e.words,s=0;s>>2];t.sigBytes-=e}},d=(e.BlockCipher=a.extend({cfg:a.cfg.extend({mode:n,padding:l}),reset:function(){var t;a.reset.call(this);var e=this.cfg,r=e.iv,e=e.mode;this._xformMode==this._ENC_XFORM_MODE?t=e.createEncryptor:(t=e.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==t?this._mode.init(this,r&&r.words):(this._mode=t.call(e,this,r&&r.words),this._mode.__creator=t)},_doProcessBlock:function(t,e){this._mode.processBlock(t,e)},_doFinalize:function(){var t,e=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(e.pad(this._data,this.blockSize),t=this._process(!0)):(t=this._process(!0),e.unpad(t)),t},blockSize:4}),e.CipherParams=r.extend({init:function(t){this.mixIn(t)},toString:function(t){return(t||this.formatter).stringify(this)}})),l=(t.format={}).OpenSSL={stringify:function(t){var e=t.ciphertext,t=t.salt,e=t?s.create([1398893684,1701076831]).concat(t).concat(e):e;return e.toString(o)},parse:function(t){var e,r=o.parse(t),t=r.words;return 1398893684==t[0]&&1701076831==t[1]&&(e=s.create(t.slice(2,4)),t.splice(0,4),r.sigBytes-=16),d.create({ciphertext:r,salt:e})}},u=e.SerializableCipher=r.extend({cfg:r.extend({format:l}),encrypt:function(t,e,r,i){i=this.cfg.extend(i);var n=t.createEncryptor(r,i),e=n.finalize(e),n=n.cfg;return d.create({ciphertext:e,key:r,iv:n.iv,algorithm:t,mode:n.mode,padding:n.padding,blockSize:t.blockSize,formatter:i.format})},decrypt:function(t,e,r,i){return i=this.cfg.extend(i),e=this._parse(e,i.format),t.createDecryptor(r,i).finalize(e.ciphertext)},_parse:function(t,e){return"string"==typeof t?e.parse(t,this):t}}),t=(t.kdf={}).OpenSSL={execute:function(t,e,r,i){i=i||s.random(8);t=c.create({keySize:e+r}).compute(t,i),r=s.create(t.words.slice(e),4*r);return t.sigBytes=4*e,d.create({key:t,iv:r,salt:i})}},p=e.PasswordBasedCipher=u.extend({cfg:u.cfg.extend({kdf:t}),encrypt:function(t,e,r,i){r=(i=this.cfg.extend(i)).kdf.execute(r,t.keySize,t.ivSize);i.iv=r.iv;i=u.encrypt.call(this,t,e,r.key,i);return i.mixIn(r),i},decrypt:function(t,e,r,i){i=this.cfg.extend(i),e=this._parse(e,i.format);r=i.kdf.execute(r,t.keySize,t.ivSize,e.salt);return i.iv=r.iv,u.decrypt.call(this,t,e,r.key,i)}})}(),U.mode.CFB=((F=U.lib.BlockCipherMode.extend()).Encryptor=F.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize;j.call(this,t,e,i,r),this._prevBlock=t.slice(e,e+i)}}),F.Decryptor=F.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize,n=t.slice(e,e+i);j.call(this,t,e,i,r),this._prevBlock=n}}),F),U.mode.CTR=(M=U.lib.BlockCipherMode.extend(),P=M.Encryptor=M.extend({processBlock:function(t,e){var r=this._cipher,i=r.blockSize,n=this._iv,o=this._counter;n&&(o=this._counter=n.slice(0),this._iv=void 0);var s=o.slice(0);r.encryptBlock(s,0),o[i-1]=o[i-1]+1|0;for(var c=0;c>>2]|=e<<24-r%4*8,t.sigBytes+=e},unpad:function(t){var e=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=e}},U.pad.Iso10126={pad:function(t,e){e*=4,e-=t.sigBytes%e;t.concat(U.lib.WordArray.random(e-1)).concat(U.lib.WordArray.create([e<<24],1))},unpad:function(t){var e=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=e}},U.pad.Iso97971={pad:function(t,e){t.concat(U.lib.WordArray.create([2147483648],1)),U.pad.ZeroPadding.pad(t,e)},unpad:function(t){U.pad.ZeroPadding.unpad(t),t.sigBytes--}},U.pad.ZeroPadding={pad:function(t,e){e*=4;t.clamp(),t.sigBytes+=e-(t.sigBytes%e||e)},unpad:function(t){for(var e=t.words,r=t.sigBytes-1,r=t.sigBytes-1;0<=r;r--)if(e[r>>>2]>>>24-r%4*8&255){t.sigBytes=r+1;break}}},U.pad.NoPadding={pad:function(){},unpad:function(){}},m=(P=U).lib.CipherParams,C=P.enc.Hex,P.format.Hex={stringify:function(t){return t.ciphertext.toString(C)},parse:function(t){t=C.parse(t);return m.create({ciphertext:t})}},function(){var t=U,e=t.lib.BlockCipher,r=t.algo,h=[],l=[],f=[],d=[],u=[],p=[],_=[],y=[],v=[],g=[];!function(){for(var t=[],e=0;e<256;e++)t[e]=e<128?e<<1:e<<1^283;for(var r=0,i=0,e=0;e<256;e++){var n=i^i<<1^i<<2^i<<3^i<<4;h[r]=n=n>>>8^255&n^99;var o=t[l[n]=r],s=t[o],c=t[s],a=257*t[n]^16843008*n;f[r]=a<<24|a>>>8,d[r]=a<<16|a>>>16,u[r]=a<<8|a>>>24,p[r]=a,_[n]=(a=16843009*c^65537*s^257*o^16843008*r)<<24|a>>>8,y[n]=a<<16|a>>>16,v[n]=a<<8|a>>>24,g[n]=a,r?(r=o^t[t[t[c^o]]],i^=t[t[i]]):r=i=1}}();var B=[0,1,2,4,8,16,32,64,128,27,54],r=r.AES=e.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var t=this._keyPriorReset=this._key,e=t.words,r=t.sigBytes/4,i=4*(1+(this._nRounds=6+r)),n=this._keySchedule=[],o=0;o>>24]<<24|h[a>>>16&255]<<16|h[a>>>8&255]<<8|h[255&a]):(a=h[(a=a<<8|a>>>24)>>>24]<<24|h[a>>>16&255]<<16|h[a>>>8&255]<<8|h[255&a],a^=B[o/r|0]<<24),n[o]=n[o-r]^a);for(var s=this._invKeySchedule=[],c=0;c>>24]]^y[h[a>>>16&255]]^v[h[a>>>8&255]]^g[h[255&a]]}}},encryptBlock:function(t,e){this._doCryptBlock(t,e,this._keySchedule,f,d,u,p,h)},decryptBlock:function(t,e){var r=t[e+1];t[e+1]=t[e+3],t[e+3]=r,this._doCryptBlock(t,e,this._invKeySchedule,_,y,v,g,l);r=t[e+1];t[e+1]=t[e+3],t[e+3]=r},_doCryptBlock:function(t,e,r,i,n,o,s,c){for(var a=this._nRounds,h=t[e]^r[0],l=t[e+1]^r[1],f=t[e+2]^r[2],d=t[e+3]^r[3],u=4,p=1;p>>24]^n[l>>>16&255]^o[f>>>8&255]^s[255&d]^r[u++],y=i[l>>>24]^n[f>>>16&255]^o[d>>>8&255]^s[255&h]^r[u++],v=i[f>>>24]^n[d>>>16&255]^o[h>>>8&255]^s[255&l]^r[u++],g=i[d>>>24]^n[h>>>16&255]^o[l>>>8&255]^s[255&f]^r[u++],h=_,l=y,f=v,d=g;_=(c[h>>>24]<<24|c[l>>>16&255]<<16|c[f>>>8&255]<<8|c[255&d])^r[u++],y=(c[l>>>24]<<24|c[f>>>16&255]<<16|c[d>>>8&255]<<8|c[255&h])^r[u++],v=(c[f>>>24]<<24|c[d>>>16&255]<<16|c[h>>>8&255]<<8|c[255&l])^r[u++],g=(c[d>>>24]<<24|c[h>>>16&255]<<16|c[l>>>8&255]<<8|c[255&f])^r[u++];t[e]=_,t[e+1]=y,t[e+2]=v,t[e+3]=g},keySize:8});t.AES=e._createHelper(r)}(),function(){var t=U,e=t.lib,i=e.WordArray,r=e.BlockCipher,e=t.algo,h=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],l=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],f=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],d=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],u=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],n=e.DES=r.extend({_doReset:function(){for(var t=this._key.words,e=[],r=0;r<56;r++){var i=h[r]-1;e[r]=t[i>>>5]>>>31-i%32&1}for(var n=this._subKeys=[],o=0;o<16;o++){for(var s=n[o]=[],c=f[o],r=0;r<24;r++)s[r/6|0]|=e[(l[r]-1+c)%28]<<31-r%6,s[4+(r/6|0)]|=e[28+(l[r+24]-1+c)%28]<<31-r%6;s[0]=s[0]<<1|s[0]>>>31;for(r=1;r<7;r++)s[r]=s[r]>>>4*(r-1)+3;s[7]=s[7]<<5|s[7]>>>27}for(var a=this._invSubKeys=[],r=0;r<16;r++)a[r]=n[15-r]},encryptBlock:function(t,e){this._doCryptBlock(t,e,this._subKeys)},decryptBlock:function(t,e){this._doCryptBlock(t,e,this._invSubKeys)},_doCryptBlock:function(t,e,r){this._lBlock=t[e],this._rBlock=t[e+1],p.call(this,4,252645135),p.call(this,16,65535),_.call(this,2,858993459),_.call(this,8,16711935),p.call(this,1,1431655765);for(var i=0;i<16;i++){for(var n=r[i],o=this._lBlock,s=this._rBlock,c=0,a=0;a<8;a++)c|=d[a][((s^n[a])&u[a])>>>0];this._lBlock=s,this._rBlock=o^c}var h=this._lBlock;this._lBlock=this._rBlock,this._rBlock=h,p.call(this,1,1431655765),_.call(this,8,16711935),_.call(this,2,858993459),p.call(this,16,65535),p.call(this,4,252645135),t[e]=this._lBlock,t[e+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function p(t,e){e=(this._lBlock>>>t^this._rBlock)&e;this._rBlock^=e,this._lBlock^=e<>>t^this._lBlock)&e;this._lBlock^=e,this._rBlock^=e<192.");var e=t.slice(0,2),r=t.length<4?t.slice(0,2):t.slice(2,4),t=t.length<6?t.slice(0,2):t.slice(4,6);this._des1=n.createEncryptor(i.create(e)),this._des2=n.createEncryptor(i.create(r)),this._des3=n.createEncryptor(i.create(t))},encryptBlock:function(t,e){this._des1.encryptBlock(t,e),this._des2.decryptBlock(t,e),this._des3.encryptBlock(t,e)},decryptBlock:function(t,e){this._des3.decryptBlock(t,e),this._des2.encryptBlock(t,e),this._des1.decryptBlock(t,e)},keySize:6,ivSize:2,blockSize:2});t.TripleDES=r._createHelper(e)}(),function(){var t=U,e=t.lib.StreamCipher,r=t.algo,i=r.RC4=e.extend({_doReset:function(){for(var t=this._key,e=t.words,r=t.sigBytes,i=this._S=[],n=0;n<256;n++)i[n]=n;for(var n=0,o=0;n<256;n++){var s=n%r,s=e[s>>>2]>>>24-s%4*8&255,o=(o+i[n]+s)%256,s=i[n];i[n]=i[o],i[o]=s}this._i=this._j=0},_doProcessBlock:function(t,e){t[e]^=n.call(this)},keySize:8,ivSize:0});function n(){for(var t=this._S,e=this._i,r=this._j,i=0,n=0;n<4;n++){var r=(r+t[e=(e+1)%256])%256,o=t[e];t[e]=t[r],t[r]=o,i|=t[(t[e]+t[r])%256]<<24-8*n}return this._i=e,this._j=r,i}t.RC4=e._createHelper(i);r=r.RC4Drop=i.extend({cfg:i.cfg.extend({drop:192}),_doReset:function(){i._doReset.call(this);for(var t=this.cfg.drop;0>>24)|4278255360&(t[r]<<24|t[r]>>>8);for(var i=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],n=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]],r=this._b=0;r<4;r++)N.call(this);for(r=0;r<8;r++)n[r]^=i[r+4&7];if(e){var o=e.words,s=o[0],c=o[1],e=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),o=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8),s=e>>>16|4294901760&o,c=o<<16|65535&e;n[0]^=e,n[1]^=s,n[2]^=o,n[3]^=c,n[4]^=e,n[5]^=s,n[6]^=o,n[7]^=c;for(r=0;r<4;r++)N.call(this)}},_doProcessBlock:function(t,e){var r=this._X;N.call(this),D[0]=r[0]^r[5]>>>16^r[3]<<16,D[1]=r[2]^r[7]>>>16^r[5]<<16,D[2]=r[4]^r[1]>>>16^r[7]<<16,D[3]=r[6]^r[3]>>>16^r[1]<<16;for(var i=0;i<4;i++)D[i]=16711935&(D[i]<<8|D[i]>>>24)|4278255360&(D[i]<<24|D[i]>>>8),t[e+i]^=D[i]},blockSize:4,ivSize:2}),M.Rabbit=F._createHelper(P),F=(M=U).lib.StreamCipher,P=M.algo,W=[],O=[],I=[],P=P.RabbitLegacy=F.extend({_doReset:function(){for(var t=this._key.words,e=this.cfg.iv,r=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],i=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]],n=this._b=0;n<4;n++)q.call(this);for(n=0;n<8;n++)i[n]^=r[n+4&7];if(e){var o=e.words,s=o[0],t=o[1],e=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),o=16711935&(t<<8|t>>>24)|4278255360&(t<<24|t>>>8),s=e>>>16|4294901760&o,t=o<<16|65535&e;i[0]^=e,i[1]^=s,i[2]^=o,i[3]^=t,i[4]^=e,i[5]^=s,i[6]^=o,i[7]^=t;for(n=0;n<4;n++)q.call(this)}},_doProcessBlock:function(t,e){var r=this._X;q.call(this),W[0]=r[0]^r[5]>>>16^r[3]<<16,W[1]=r[2]^r[7]>>>16^r[5]<<16,W[2]=r[4]^r[1]>>>16^r[7]<<16,W[3]=r[6]^r[3]>>>16^r[1]<<16;for(var i=0;i<4;i++)W[i]=16711935&(W[i]<<8|W[i]>>>24)|4278255360&(W[i]<<24|W[i]>>>8),t[e+i]^=W[i]},blockSize:4,ivSize:2}),M.RabbitLegacy=F._createHelper(P),U}); \ No newline at end of file diff --git a/config/map.txt b/config/map.txt index 11f47f5..93ec9a0 100644 --- a/config/map.txt +++ b/config/map.txt @@ -1,8 +1,11 @@ 我的哔哩[官]@?render=1&type=url¶ms=../json/哔哩教育.json@哔哩教育[官] 我的哔哩[官]@?render=1&type=url¶ms=../json/哔哩大全.json@哔哩大全[官] +我的哔哩[官]@?render=1&type=url¶ms=../json/哔哩大杂烩.json@哔哩大杂烩[官] 直播转点播[合]@?type=url¶ms=../json/live2cms.json 采集之王[合]@?type=url¶ms=../json/采集静态.json$1@采王道长[合] 采集之王[合]@?type=url¶ms=../json/采集[zy]静态.json$1@采王zy[密] 采集之王[合]@?type=url¶ms=../json/采集[密]静态.json$1$@采王成人[密] 采集之王[合]@?type=url¶ms=../json/采集2024静态.json$1$@采王2024 UC分享@?type=url¶ms=../json/UC分享.json@UC分享[盘] +16wMV[听]@?type=url¶ms=../json/十六万歌曲.txt +点歌欢唱[B]@?type=url¶ms=../json/十六万歌曲.txt diff --git a/config/parses.conf b/config/parses.conf index 902eb28..c48a819 100644 --- a/config/parses.conf +++ b/config/parses.conf @@ -24,3 +24,5 @@ W1,https://jx.xymp4.cc/?url= # W9,https://jx.yangtu.top?url= # W10,https://jx.m3u8.tv/jiexi/?url= W11,https://www.ckplayer.vip/jiexi/?url= +腾讯关姐,{{hostName}}:5759/tencent.php/?url=,1 +295关姐,{{hostName}}:5759/295yun.php?url=,1 diff --git a/config/player.json b/config/player.json index cba099b..e482cec 100644 --- a/config/player.json +++ b/config/player.json @@ -1,6 +1,6 @@ { "wallpaper": "https://api.likepoems.com/img/bing/", - "spider": "", + "spider": "../public/jar/custom_spider.jar;md5;cc3b3d2ddf389338b62eccd4a938b610", "homepage": "https://github.com/hjdhnx/drpy-node", "aiLogo": "https://image.baidu.com/search/index?tn=baiduimage&ct=201326592&lm=-1&cl=2&word=%E7%8B%97%E4%BD%9C%E4%B8%BA%E8%BD%AF%E4%BB%B6%E5%9B%BE%E6%A0%87&dyTabStr=MCwxMiwzLDEsMiwxMyw3LDYsNSw5", "homeLogo": "https://github.catvod.com/https://raw.githubusercontent.com/hjdhnx/drpy-node/refs/heads/main/public/images/logo500x200-1.png", diff --git a/controllers/api.js b/controllers/api.js index a8815b7..aeb262b 100644 --- a/controllers/api.js +++ b/controllers/api.js @@ -257,7 +257,7 @@ export default (fastify, options, done) => { } // return proxyStreamMediaMulti(content, new_headers, request, reply); // 走 流式代理 // 将查询参数构建为目标 URL - const redirectUrl = `/mediaProxy?url=${encodeURIComponent(content)}&headers=${encodeURIComponent(new_headers)}&thread=${ENV.get('thread') || 1}`; + const redirectUrl = `/mediaProxy?url=${encodeURIComponent(content)}&headers=${encodeURIComponent(JSON.stringify(new_headers))}&thread=${ENV.get('thread') || 1}`; // 执行重定向 return reply.redirect(redirectUrl); } diff --git a/controllers/config.js b/controllers/config.js index 92cc932..5b4afa4 100644 --- a/controllers/config.js +++ b/controllers/config.js @@ -1,9 +1,11 @@ import {readdirSync, readFileSync, writeFileSync, existsSync} from 'fs'; import path from 'path'; import * as drpy from '../libs/drpyS.js'; +import '../libs_drpy/jinja.js' import {naturalSort, urljoin, updateQueryString} from '../utils/utils.js' +import {md5} from "../libs_drpy/crypto-util.js"; import {ENV} from "../utils/env.js"; -import {validatePwd} from "../utils/api_validate.js"; +import {validateBasicAuth, validatePwd} from "../utils/api_validate.js"; import {getSitesMap} from "../utils/sites-map.js"; import {getParsesDict} from "../utils/file.js"; import batchExecute from '../libs_drpy/batchExecute.js'; @@ -11,7 +13,13 @@ import batchExecute from '../libs_drpy/batchExecute.js'; const {jsEncoder} = drpy; // 工具函数:生成 JSON 数据 -async function generateSiteJSON(jsDir, dr2Dir, configDir, requestHost, sub, subFilePath, pwd) { +async function generateSiteJSON(options, requestHost, sub, pwd) { + const jsDir = options.jsDir; + const dr2Dir = options.dr2Dir; + const configDir = options.configDir; + const subFilePath = options.subFilePath; + const rootDir = options.rootDir; + const files = readdirSync(jsDir); let valid_files = files.filter((file) => file.endsWith('.js') && !file.startsWith('_')); // 筛选出不是 "_" 开头的 .js 文件 let sort_list = []; @@ -40,6 +48,7 @@ async function generateSiteJSON(jsDir, dr2Dir, configDir, requestHost, sub, subF } } let sites = []; + let link_jar = ''; // console.log('hide_adult:', ENV.get('hide_adult')); if (ENV.get('hide_adult') === '1') { valid_files = valid_files.filter(it => !(new RegExp('\\[[密]\\]|密+')).test(it)); @@ -96,6 +105,7 @@ async function generateSiteJSON(jsDir, dr2Dir, configDir, requestHost, sub, subF filterable: ruleObject.filterable, quickSearch: ruleObject.quickSearch, more: ruleObject.more, + logo: ruleObject.logo, ext: fileSite.ext || "", // 固定为空字符串 }; sites.push(site); @@ -175,6 +185,7 @@ async function generateSiteJSON(jsDir, dr2Dir, configDir, requestHost, sub, subF filterable: ruleObject.filterable, quickSearch: ruleObject.quickSearch, more: ruleObject.more, + logo: ruleObject.logo, ext: fileSite.ext || "", // 固定为空字符串 }; sites.push(site); @@ -189,6 +200,50 @@ async function generateSiteJSON(jsDir, dr2Dir, configDir, requestHost, sub, subF } + // 根据用户是否启用挂载数据源去生成对应配置 + if (ENV.get('enable_link_data', '0') === '1') { + log(`开始挂载外部T4数据`); + let link_sites = []; + let link_url = ENV.get('link_url'); + let enable_link_push = ENV.get('enable_link_push', '0'); + let enable_link_jar = ENV.get('enable_link_jar', '0'); + try { + let link_data = readFileSync(path.join(rootDir, './data/settings/link_data.json'), 'utf-8'); + let link_config = JSON.parse(link_data); + link_sites = link_config.sites.filter(site => site.type = 4); + if (link_config.spider && enable_link_jar === '1') { + let link_spider_arr = link_config.spider.split(';'); + link_jar = urljoin(link_url, link_spider_arr[0]); + if (link_spider_arr.length > 1) { + link_jar = [link_jar].concat(link_spider_arr.slice(1)).join(';') + } + log(`开始挂载外部T4 Jar: ${link_jar}`); + } + link_sites.forEach((site) => { + if (site.key === 'push_agent' && enable_link_push !== '1') { + return + } + if (site.api && !site.api.startsWith('http')) { + site.api = urljoin(link_url, site.api) + } + if (site.ext && site.ext.startsWith('.')) { + site.ext = urljoin(link_url, site.ext) + } + if (site.key === 'push_agent' && enable_link_push === '1') { // 推送覆盖 + let pushIndex = sites.findIndex(s => s.key === 'push_agent'); + if (pushIndex > -1) { + sites[pushIndex] = site; + } else { + sites.push(site); + } + } else { + sites.push(site); + } + }); + } catch (e) { + } + } + // 订阅再次处理别名的情况 if (sub) { if (sub.mode === 0) { @@ -202,13 +257,13 @@ async function generateSiteJSON(jsDir, dr2Dir, configDir, requestHost, sub, subF sites = sites.filter(it => !(new RegExp('\\[[密]\\]|密+')).test(it.name)); } sites = naturalSort(sites, 'name', sort_list); - return {sites}; + return {sites, spider: link_jar}; } async function generateParseJSON(jxDir, requestHost) { const files = readdirSync(jxDir); const jx_files = files.filter((file) => file.endsWith('.js') && !file.startsWith('_')) // 筛选出不是 "_" 开头的 .js 文件 - const jx_dict = getParsesDict(); + const jx_dict = getParsesDict(requestHost); let parses = []; const tasks = jx_files.map((file) => { return { @@ -346,7 +401,7 @@ export default (fastify, options, done) => { }); // 接口:返回配置 JSON,同时写入 index.json - fastify.get('/config*', {preHandler: validatePwd}, async (request, reply) => { + fastify.get('/config*', {preHandler: [validatePwd, validateBasicAuth]}, async (request, reply) => { let t1 = (new Date()).getTime(); const query = request.query; // 获取 query 参数 const pwd = query.pwd || ''; @@ -358,7 +413,85 @@ export default (fastify, options, done) => { const hostname = request.hostname; // 主机名,不包含端口 const port = request.socket.localPort; // 获取当前服务的端口 console.log(`cfg_path:${cfg_path},port:${port}`); - let requestHost = cfg_path === '/1' ? `${protocol}://${hostname}` : `http://127.0.0.1:${options.PORT}`; // 动态生成根地址 + let not_local = cfg_path.startsWith('/1') || cfg_path.startsWith('/index'); + let requestHost = not_local ? `${protocol}://${hostname}` : `http://127.0.0.1:${options.PORT}`; // 动态生成根地址 + let requestUrl = not_local ? `${protocol}://${hostname}${request.url}` : `http://127.0.0.1:${options.PORT}${request.url}`; // 动态生成请求链接 + // console.log('requestUrl:', requestUrl); + // if (cfg_path.endsWith('.js')) { + // if (cfg_path.includes('index.js')) { + // // return reply.sendFile('index.js', path.join(options.rootDir, 'data/cat')); + // let content = readFileSync(path.join(options.rootDir, 'data/cat/index.js'), 'utf-8'); + // // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)}); + // content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)); + // return reply.type('application/javascript;charset=utf-8').send(content); + // } else if (cfg_path.includes('index.config.js')) { + // let content = readFileSync(path.join(options.rootDir, 'data/cat/index.config.js'), 'utf-8'); + // // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)}); + // content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)); + // return reply.type('application/javascript;charset=utf-8').send(content); + // } + // } + // if (cfg_path.endsWith('.js.md5')) { + // if (cfg_path.includes('index.js')) { + // let content = readFileSync(path.join(options.rootDir, 'data/cat/index.js'), 'utf-8'); + // // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)}); + // content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)); + // let contentHash = md5(content); + // console.log('index.js contentHash:', contentHash); + // return reply.type('text/plain;charset=utf-8').send(contentHash); + // } else if (cfg_path.includes('index.config.js')) { + // let content = readFileSync(path.join(options.rootDir, 'data/cat/index.config.js'), 'utf-8'); + // // content = jinja.render(content, {config_url: requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)}); + // content = content.replace('$config_url', requestUrl.replace(cfg_path, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)); + // let contentHash = md5(content); + // console.log('index.config.js contentHash:', contentHash); + // return reply.type('text/plain;charset=utf-8').send(contentHash); + // } + // } + const getFilePath = (cfgPath, rootDir, fileName) => path.join(rootDir, `data/cat/${fileName}`); + const processContent = (content, cfgPath, requestUrl) => + content.replace('$config_url', requestUrl.replace(cfgPath, `/1?sub=all&pwd=${process.env.API_PWD || ''}`)); + + const handleJavaScript = (cfgPath, requestUrl, options, reply) => { + const fileMap = { + 'index.js': 'index.js', + 'index.config.js': 'index.config.js' + }; + + for (const [key, fileName] of Object.entries(fileMap)) { + if (cfgPath.includes(key)) { + const filePath = getFilePath(cfgPath, options.rootDir, fileName); + let content = readFileSync(filePath, 'utf-8'); + content = processContent(content, cfgPath, requestUrl); + return reply.type('application/javascript;charset=utf-8').send(content); + } + } + }; + + const handleJsMd5 = (cfgPath, requestUrl, options, reply) => { + const fileMap = { + 'index.js': 'index.js', + 'index.config.js': 'index.config.js' + }; + + for (const [key, fileName] of Object.entries(fileMap)) { + if (cfgPath.includes(key)) { + const filePath = getFilePath(cfgPath, options.rootDir, fileName); + let content = readFileSync(filePath, 'utf-8'); + content = processContent(content, cfgPath, requestUrl); + const contentHash = md5(content); + console.log(`${fileName} contentHash:`, contentHash); + return reply.type('text/plain;charset=utf-8').send(contentHash); + } + } + }; + if (cfg_path.endsWith('.js')) { + return handleJavaScript(cfg_path, requestUrl, options, reply); + } + + if (cfg_path.endsWith('.js.md5')) { + return handleJsMd5(cfg_path, requestUrl, options, reply); + } let sub = null; if (sub_code) { let subs = getSubs(options.subFilePath); @@ -369,11 +502,14 @@ export default (fastify, options, done) => { } } - const siteJSON = await generateSiteJSON(options.jsDir, options.dr2Dir, options.configDir, requestHost, sub, options.subFilePath, pwd); + const siteJSON = await generateSiteJSON(options, requestHost, sub, pwd); const parseJSON = await generateParseJSON(options.jxDir, requestHost); const livesJSON = generateLivesJSON(requestHost); const playerJSON = generatePlayerJSON(options.configDir, requestHost); - const configObj = {sites_count: siteJSON.sites.length, ...siteJSON, ...parseJSON, ...livesJSON, ...playerJSON}; + const configObj = {sites_count: siteJSON.sites.length, ...playerJSON, ...siteJSON, ...parseJSON, ...livesJSON}; + if (!configObj.spider) { + configObj.spider = playerJSON.spider + } // console.log(configObj); const configStr = JSON.stringify(configObj, null, 2); if (!process.env.VERCEL) { // Vercel 环境不支持写文件,关闭此功能 diff --git a/controllers/decoder.js b/controllers/decoder.js index c872873..3d326cc 100644 --- a/controllers/decoder.js +++ b/controllers/decoder.js @@ -1,7 +1,18 @@ import {getOriginalJs, jsDecoder} from '../libs/drpyS.js'; -import {readFileSync, existsSync} from 'fs'; +import {readFileSync, writeFileSync, existsSync} from 'fs'; import path from "path"; +// 检测命令行参数 +const args = process.argv.slice(2); + +if (args.length > 0) { + // 如果有参数,读取文件并打印内容 + const filePath = args[0]; // 第一个参数作为文件路径 + let content = readFileSync(filePath, 'utf8'); + console.log(`文件 ${filePath} 的内容长度为:${content.length}`); + writeFileSync(filePath.replace(/\.gz$/, '.ugz'), jsDecoder.ungzip(content), 'utf-8'); +} + // 仅仅支持json post 如: {"code":"xxx"} export default (fastify, options, done) => { // 注册 POST 路由 diff --git a/controllers/encoder.js b/controllers/encoder.js index 3500019..b4ee20e 100644 --- a/controllers/encoder.js +++ b/controllers/encoder.js @@ -1,4 +1,16 @@ import {jsEncoder} from '../libs/drpyS.js'; +import {readFileSync, writeFileSync} from 'fs'; + +// 检测命令行参数 +const args = process.argv.slice(2); + +if (args.length > 0) { + // 如果有参数,读取文件并打印内容 + const filePath = args[0]; // 第一个参数作为文件路径 + let content = readFileSync(filePath, 'utf8'); + console.log(`文件 ${filePath} 的内容长度为:${content.length}`); + writeFileSync(filePath + '.gz', jsEncoder.gzip(content), 'utf-8'); +} // 仅仅支持json post 如: {"type":"gzip","code":"xxx"} export default (fastify, options, done) => { diff --git a/controllers/mediaProxy.js b/controllers/mediaProxy.js index 6598981..d1cd6f6 100644 --- a/controllers/mediaProxy.js +++ b/controllers/mediaProxy.js @@ -1,6 +1,8 @@ -import {base64Decode} from '../libs_drpy/crypto-util.js'; +import {base64Decode, md5} from '../libs_drpy/crypto-util.js'; import '../utils/random-http-ua.js' import {keysToLowerCase} from '../utils/utils.js'; +import {ENV} from "../utils/env.js"; +import chunkStream, {testSupport} from '../utils/chunk.js'; import http from 'http'; import https from 'https'; import axios from 'axios'; @@ -23,6 +25,9 @@ export default (fastify, options, done) => { fastify.all('/mediaProxy', async (request, reply) => { const {thread = 1, form = 'urlcode', url, header, size = '128K', randUa = 0} = request.query; + // console.log('url:', url) + // console.log('header:', header) + // Check if the URL parameter is missing if (!url) { return reply.code(400).send({error: 'Missing required parameter: url'}); @@ -30,16 +35,29 @@ export default (fastify, options, done) => { try { // Decode URL and headers based on the form type - const decodedUrl = form === 'base64' ? base64Decode(url) : decodeURIComponent(url); + const decodedUrl = form === 'base64' ? base64Decode(url) : url; const decodedHeader = header - ? JSON.parse(form === 'base64' ? base64Decode(header) : decodeURIComponent(header)) + ? JSON.parse(form === 'base64' ? base64Decode(header) : header) : {}; // Call the proxy function, passing the decoded URL and headers - // return await proxyStreamMedia(decodedUrl, decodedHeader, reply); - return await proxyStreamMediaMulti(decodedUrl, decodedHeader, request, reply, thread, size, randUa); + // return await proxyStreamMediaMulti(decodedUrl, decodedHeader, request, reply, thread, size, randUa); + // return await chunkStream(request, reply, decodedUrl, ids[1], Object.assign({Cookie: cookie}, baseHeader)); + if (ENV.get('play_proxy_mode', '1') !== '2') { // 2磁盘加速 其他都是内存加速 + console.log('[mediaProxy] proxyStreamMediaMulti 内存加速:chunkSize:', sizeToBytes(size)); + return await proxyStreamMediaMulti(decodedUrl, decodedHeader, request, reply, thread, size, randUa); + } else { + console.log('[mediaProxy] chunkStream 磁盘加速 chunkSize:', sizeToBytes('256K')); + return await chunkStream(request, reply, decodedUrl, md5(decodedUrl), decodedHeader, + Object.assign({chunkSize: 1024 * 256, poolSize: 5, timeout: 1000 * 10}, { + // chunkSize: sizeToBytes(size), + poolSize: thread + }) + ); + } } catch (error) { - fastify.log.error(error); + // fastify.log.error(error); + fastify.log.error(error.message); reply.code(500).send({error: error.message}); } }); @@ -47,69 +65,6 @@ export default (fastify, options, done) => { done(); }; -// 媒体文件 流式代理,单线程管道方式发送数据,且存在bug,暂不使用 -function proxyStreamMedia(videoUrl, headers, reply) { - console.log(`进入了流式代理: ${videoUrl} | headers: ${JSON.stringify(headers)}`); - - const protocol = videoUrl.startsWith('https') ? https : http; - const agent = videoUrl.startsWith('https') ? httpsAgent : httpAgent; - - // 发起请求 - const proxyRequest = protocol.request(videoUrl, {headers, agent}, (videoResponse) => { - console.log('videoResponse.statusCode:', videoResponse.statusCode); - console.log('videoResponse.headers:', videoResponse.headers); - - if (videoResponse.statusCode === 200 || videoResponse.statusCode === 206) { - const resp_headers = { - 'Content-Type': videoResponse.headers['content-type'] || 'application/octet-stream', - 'Content-Length': videoResponse.headers['content-length'], - ...(videoResponse.headers['content-range'] ? {'Content-Range': videoResponse.headers['content-range']} : {}), - }; - console.log('Response headers:', resp_headers); - reply.headers(resp_headers).status(videoResponse.statusCode); - - // 将响应流直接管道传输给客户端 - videoResponse.pipe(reply.raw); - - videoResponse.on('data', (chunk) => { - console.log('Data chunk received, size:', chunk.length); - }); - - videoResponse.on('end', () => { - console.log('Video data transmission complete.'); - }); - - videoResponse.on('error', (err) => { - console.error('Error during video response:', err.message); - reply.code(500).send({error: 'Error streaming video', details: err.message}); - }); - - reply.raw.on('finish', () => { - console.log('Data fully sent to client'); - }); - - // 监听关闭事件,销毁视频响应流 - reply.raw.on('close', () => { - console.log('Response stream closed.'); - videoResponse.destroy(); - }); - } else { - console.error(`Unexpected status code: ${videoResponse.statusCode}`); - reply.code(videoResponse.statusCode).send({error: 'Failed to fetch video'}); - } - }); - - // 监听错误事件 - proxyRequest.on('error', (err) => { - console.error('Proxy request error:', err.message); - reply.code(500).send({error: 'Error fetching video', details: err.message}); - }); - - // 必须调用 .end() 才能发送请求 - proxyRequest.end(); -} - - // Helper function for range-based chunk downloading async function fetchStream(url, userHeaders, start, end, randUa) { const headers = keysToLowerCase({ @@ -315,7 +270,6 @@ async function proxyStreamMediaMulti(mediaUrl, reqHeaders, request, reply, threa } } - // Helper function to convert size string (e.g., '128K', '1M') to bytes function sizeToBytes(size) { const sizeMap = { diff --git a/controllers/root.js b/controllers/root.js index 1781829..c7ed01c 100644 --- a/controllers/root.js +++ b/controllers/root.js @@ -84,5 +84,29 @@ export default (fastify, options, done) => { reply.status(500).send({error: 'Failed to fetch favicon', details: error.message}); } }); + + fastify.get('/cat/index.html', {preHandler: validateBasicAuth}, async (request, reply) => { + try { + // 设置文件路径 + const catHtmlPath = path.join(options.rootDir, 'data/cat/index.html'); + + if (existsSync(catHtmlPath)) { + const protocol = request.headers['x-forwarded-proto'] || (request.socket.encrypted ? 'https' : 'http'); // http 或 https + const hostname = request.hostname; + // const port = request.socket.localPort; // 获取当前服务的端口 + // let requestUrl = `${protocol}://${hostname}${request.url}`; + let content = readFileSync(catHtmlPath, 'utf-8'); + const validUsername = process.env.API_AUTH_NAME || 'admin'; + const validPassword = process.env.API_AUTH_CODE || 'drpys'; + let catLink = `${protocol}://${validUsername}:${validPassword}@${hostname}/config/index.js.md5`; + content = content.replace('$catLink', catLink); + return reply.type('text/html').send(content); + } else { + reply.status(404).send({error: 'Favicon not found'}); // 如果文件不存在,返回 404 错误 + } + } catch (error) { + reply.status(500).send({error: 'Failed to fetch cat', details: error.message}); + } + }); done(); }; diff --git a/custom.json b/custom.json deleted file mode 100644 index 6b71b60..0000000 --- a/custom.json +++ /dev/null @@ -1,1696 +0,0 @@ -{ - "sites_count": 92, - "sites": [ - { - "key": "drpyS_设置中心", - "name": "设置中心(DS)", - "type": 4, - "api": "http://localhost:5757/api/设置中心", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "more": { - "sourceTag": "设置,动作", - "actions": [ - { - "name": "推送", - "action": "{\"actionId\":\"推送视频播放\",\"id\":\"push\",\"type\":\"input\",\"title\":\"推送视频地址进行播放\",\"tip\":\"支持网盘、官链、直链、待嗅探链接\",\"value\":\"\",\"msg\":\"请输入待推送的视频地址\",\"imageUrl\":\"https://github.catvod.com/https://raw.githubusercontent.com/hjdhnx/drpy-node/refs/heads/main/public/images/lives.jpg\",\"imageHeight\":200,\"imageType\":\"card_pic_3\",\"keep\":true,\"button\":4,\"width\":640,\"selectData\":\"腾讯:=https://v.qq.com/x/cover/mzc00200vkqr54u/u4100l66fas.html,爱奇艺:=http://www.iqiyi.com/v_1b0tk1b8tl8.html,夸克:=https://pan.quark.cn/s/6c8158e258f3,UC:=https://drive.uc.cn/s/59023f57d3ce4?public=1,阿里:=https://www.alipan.com/s/vgXMcowK8pQ,天翼:=https://cloud.189.cn/web/share?code=INJbU3NbqyUj,移动1:=https://yun.139.com/shareweb/#/w/i/0i5CLQ7BpV7Ai,移动2:=https://caiyun.139.com/m/i?2jexC1gcjeN7q,移动3:=https://yun.139.com/shareweb/#/w/i/2i2MoE9ZHn9p1,直链1:=https://vdse.bdstatic.com//628ca08719cef5987ea2ae3c6f0d2386.mp4,嗅探1:=https://www.6080kk.cc/haokanplay/178120-1-1.html,嗅探2:=https://www.hahads.com/play/537106-3-1.html,多集:=https://v.qq.com/x/cover/m441e3rjq9kwpsc/m00253deqqo.html#https://pan.quark.cn/s/6c8158e258f3,海阔二级单线路:=H4sIAAAAAAAAA52Uy27TQBSGXwUZlsT2GefadZ+AN3ATk7qKL7guUoKQXAQFeoEG6oKaVBUFlBZFbdQ0TXAIeRjPTJwVr8AYCsNyijQbnzPfPz72p3kk6WXf8aQFibzszFsb0l2p7Ni+YfusFAe78/W383C6eC8OmnEQsEVal7NxiEebeLQ/i75oKvl6iccfZwdPWY0OhnR8+uPbdnJ2kUx7ONrAo094skMOD+ZHHbL1nIbHbCf53KdBh7RPaP+Yfm8n5x+S3gWr016TtCb03VUa2Brh6A0Nm8ngVRysk7Nt+mI3aYfk9fs0YfMERxENn+FoKw6e3KJ7V8lgyF6+YnrG9UAPTLu6ZNgrpu4ZNlJRlrXve47FWrNomgzPEdJYydYtIx1/Z0rbXTzps9zrza5ZZo1l33dXFxSFPWlyvdGom5ZeNVblsmMpa27N0SvKQ6eipEwGIINAgYKGIA+lYg7kFbfKkta8Wnpqt6sC+8Z3/kQuyXm1qDZ+RbEMt6bXFVBBQ6UMy5KXfat2O4WQMIQ4pAlDGoeywlCWQzlhKMehvDCU51BBGCpwqCgMFTlUEoZKfyFQxX+uyqkbKMGdAHEnAP0Xxa0AcZWAawHiLgH3AsRlAi4GiNsE3AwQ1wm4GiDuE/zjhrhQiLuBxI1C3A0kbhTibqAb3DK/3ZAe/wSSQMKkPgYAAA==\"}", - "vod_name": "推送视频播放", - "vod_pic": "https://github.catvod.com/https://raw.githubusercontent.com/hjdhnx/drpy-node/refs/heads/main/public/images/lives.jpg", - "vod_tag": "action" - }, - { - "name": "连续对话", - "action": "{\"actionId\":\"连续对话\",\"id\":\"talk\",\"type\":\"input\",\"title\":\"连续对话\",\"tip\":\"请输入消息\",\"value\":\"\",\"msg\":\"开始新的对话\",\"button\":3,\"imageUrl\":\"https://img2.baidu.com/it/u=1206278833,3265480730&fm=253&fmt=auto&app=120&f=JPEG?w=800&h=800\",\"imageHeight\":200,\"imageType\":\"card_pic_3\",\"keep\":true,\"width\":680,\"height\":800,\"msgType\":\"long_text\",\"httpTimeout\":60,\"canceledOnTouchOutside\":false,\"selectData\":\"新的对话:=清空AI对话记录\"}" - }, - { - "name": "查看夸克cookie", - "action": "查看夸克cookie" - }, - { - "name": "设置夸克cookie", - "action": "设置夸克cookie" - }, - { - "name": "夸克扫码", - "action": "夸克扫码" - }, - { - "name": "设置玩偶域名", - "action": "{\"actionId\":\"玩偶域名\",\"id\":\"domain\",\"type\":\"input\",\"width\":450,\"title\":\"玩偶域名\",\"tip\":\"请输入玩偶域名\",\"value\":\"\",\"msg\":\"选择或输入使用的域名\",\"selectData\":\"1:=https://www.wogg.net/,2:=https://wogg.xxooo.cf/,3:=https://wogg.888484.xyz/,4:=https://www.wogg.bf/,5:=https://woggapi.333232.xyz/\"}" - } - ] - }, - "ext": "" - }, - { - "key": "drpyS_番茄小说[书]", - "name": "番茄小说[书](DS)", - "type": 4, - "api": "http://localhost:5757/api/番茄小说[书]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_大象影视", - "name": "大象影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/大象影视", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_腾云驾雾[官]", - "name": "腾云驾雾[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/腾云驾雾[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_央视大全[官]", - "name": "央视大全[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/央视大全[官]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_PTT[优]", - "name": "PTT[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/PTT[优]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_光速[优]", - "name": "光速[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/光速[优]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_皮皮虾[优]", - "name": "皮皮虾[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/皮皮虾[优]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_视觉[优]", - "name": "视觉[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/视觉[优]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_hdmoli[盘]", - "name": "hdmoli[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/hdmoli[盘]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_UC分享[盘]", - "name": "UC分享[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/UC分享", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/TD3V+2tH2ZNdqPRAPAKubOwMVAAAA" - }, - { - "key": "drpyS_低端[盘]", - "name": "低端[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/低端[盘]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_团长资源[盘]", - "name": "团长资源[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/团长资源[盘]", - "searchable": 1, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_多多[盘]", - "name": "多多[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/多多[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_小米[盘]", - "name": "小米[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/小米[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_小米盘搜[盘]", - "name": "小米盘搜[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/小米盘搜[盘]", - "searchable": 1, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_木偶[盘]", - "name": "木偶[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/木偶[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_欧哥[盘]", - "name": "欧哥[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/欧哥[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_特下饭[盘]", - "name": "特下饭[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/特下饭[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_玩偶哥哥[盘]", - "name": "玩偶哥哥[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/玩偶哥哥[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_至臻[盘]", - "name": "至臻[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/至臻[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_虎斑[盘]", - "name": "虎斑[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/虎斑[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_蜡笔[盘]", - "name": "蜡笔[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/蜡笔[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_闪电优汐[盘]", - "name": "闪电优汐[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/闪电优汐[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_雷鲸小站[盘]", - "name": "雷鲸小站[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/雷鲸小站[盘]", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_哔哩直播[官]", - "name": "哔哩直播[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/哔哩直播[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_哔哩影视[官]", - "name": "哔哩影视[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/哔哩影视[官]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_奇珍异兽[官]", - "name": "奇珍异兽[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/奇珍异兽[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_哔哩教育[官]", - "name": "哔哩教育[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/我的哔哩[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tfzp5ytPJK59NnfmiaZMeSAQAgv7xPBkAAAA=" - }, - { - "key": "drpyS_哔哩大全[官]", - "name": "哔哩大全[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/我的哔哩[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tfzp5ytPJK58uWf60dYUeSAQAZ2A+OBkAAAA=" - }, - { - "key": "drpyS_抖音直播弹幕[官]", - "name": "抖音直播弹幕[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/抖音直播弹幕[官]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_百忙无果[官]", - "name": "百忙无果[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/百忙无果[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_360影视[官]", - "name": "360影视[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/360影视[官].js" - }, - { - "key": "drpy2_优酷[官]", - "name": "优酷[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/优酷[官].js" - }, - { - "key": "drpy2_百忙无果[官]", - "name": "百忙无果[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/百忙无果[官].js" - }, - { - "key": "drpy2_菜狗[官]", - "name": "菜狗[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/菜狗[官].js" - }, - { - "key": "drpy2_虎牙直播[官]", - "name": "虎牙直播[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/虎牙直播[官].js" - }, - { - "key": "drpy2_豆瓣[官]", - "name": "豆瓣[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 1, - "filterable": 1, - "quickSearch": 1, - "ext": "http://localhost:5757/js/豆瓣[官].js" - }, - { - "key": "push_agent", - "name": "推送(DS)", - "type": 4, - "api": "http://localhost:5757/api/push_agent", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_啊哈DJ[听]", - "name": "啊哈DJ[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/啊哈DJ[听].js" - }, - { - "key": "drpy2_爱车MV[听]", - "name": "爱车MV[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/爱车MV[听].js" - }, - { - "key": "drpyS_播剧网", - "name": "播剧网(DS)", - "type": 4, - "api": "http://localhost:5757/api/播剧网", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_播客[听]", - "name": "播客[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/播客[听].js" - }, - { - "key": "drpy2_博看听书[听]", - "name": "博看听书[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/博看听书[听].js" - }, - { - "key": "drpyS_采王2024", - "name": "采王2024(DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2m5GBkcnLuTOfNTTqgURVDFUAlKCu7yAAAAA=" - }, - { - "key": "drpyS_采王成人[密]", - "name": "采王成人[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2W/TT9W2xL+fOfNbQqAcSVjFUAQAd5YgpIQAAAA==" - }, - { - "key": "drpyS_采王道长[合]", - "name": "采王道长[合](DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ228u5M581NOqBRFQMAcGPDNobAAAA" - }, - { - "key": "drpyS_采王zy[密]", - "name": "采王zy[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2W3RVZezLuTOfNTTqgURVDAGu/MCKHwAAAA==" - }, - { - "key": "drpyS_草榴社区[密]", - "name": "草榴社区[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/草榴社区[密]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_大嫂TV[密]", - "name": "大嫂TV[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/大嫂TV[密]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_动漫巴士[漫]", - "name": "动漫巴士[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/动漫巴士[漫]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_动作交互", - "name": "动作交互(DS)", - "type": 4, - "api": "http://localhost:5757/api/动作交互", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_番薯动漫[漫]", - "name": "番薯动漫[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/番薯动漫[漫]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_瓜子H5", - "name": "瓜子H5(DS)", - "type": 4, - "api": "http://localhost:5757/api/瓜子H5", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_鬼片之家", - "name": "鬼片之家(DS)", - "type": 4, - "api": "http://localhost:5757/api/鬼片之家", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_好乐影视", - "name": "好乐影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/好乐影视", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_黑料不打烊[密]", - "name": "黑料不打烊[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/黑料不打烊[密]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_火车太堵", - "name": "火车太堵(DS)", - "type": 4, - "api": "http://localhost:5757/api/火车太堵", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_集百动漫", - "name": "集百动漫(DS)", - "type": 4, - "api": "http://localhost:5757/api/集百动漫", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_荐片", - "name": "荐片(DS)", - "type": 4, - "api": "http://localhost:5757/api/荐片", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_金牌影院", - "name": "金牌影院(DS)", - "type": 4, - "api": "http://localhost:5757/api/金牌影院", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_九七电影网", - "name": "九七电影网(DS)", - "type": 4, - "api": "http://localhost:5757/api/九七电影网", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_酷我听书[听]", - "name": "酷我听书[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/酷我听书[听].js" - }, - { - "key": "drpyS_蓝莓短剧", - "name": "蓝莓短剧(DS)", - "type": 4, - "api": "http://localhost:5757/api/蓝莓短剧", - "searchable": 2, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_老白故事[听]", - "name": "老白故事[听](DS)", - "type": 4, - "api": "http://localhost:5757/api/老白故事[听]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_六月听书[听]", - "name": "六月听书[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/六月听书[听].js" - }, - { - "key": "drpyS_美颜怪[擦]", - "name": "美颜怪[擦](DS)", - "type": 4, - "api": "http://localhost:5757/api/美颜怪[擦]", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_七度空间[密]", - "name": "七度空间[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/七度空间[密]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_七猫小说[书]", - "name": "七猫小说[书](DS)", - "type": 4, - "api": "http://localhost:5757/api/七猫小说[书]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_清风DJ[听]", - "name": "清风DJ[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/清风DJ[听].js" - }, - { - "key": "drpyS_秋霞电影网", - "name": "秋霞电影网(DS)", - "type": 4, - "api": "http://localhost:5757/api/秋霞电影网", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_人人视频", - "name": "人人视频(DS)", - "type": 4, - "api": "http://localhost:5757/api/人人视频", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_色花堂[密]", - "name": "色花堂[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/色花堂[密]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_色花堂[密+]", - "name": "色花堂[密+](DS)", - "type": 4, - "api": "http://localhost:5757/api/色花堂[密+]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_素白白", - "name": "素白白(DS)", - "type": 4, - "api": "http://localhost:5757/api/素白白", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_相声随身听[听]", - "name": "相声随身听[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/相声随身听[听].js" - }, - { - "key": "drpyS_星芽短剧", - "name": "星芽短剧(DS)", - "type": 4, - "api": "http://localhost:5757/api/星芽短剧", - "searchable": 2, - "filterable": 1, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_兄弟影视", - "name": "兄弟影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/兄弟影视", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_雪糕TV", - "name": "雪糕TV(DS)", - "type": 4, - "api": "http://localhost:5757/api/雪糕TV", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_伊甸园[密]", - "name": "伊甸园[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/伊甸园[密]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_樱漫[漫]", - "name": "樱漫[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/樱漫[漫]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_直播转点播[合]", - "name": "直播转点播[合](DS)", - "type": 4, - "api": "http://localhost:5757/api/直播转点播[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tz8ksSzVKzi3WA/EAuuBHLxUAAAA=" - }, - { - "key": "drpy2_种子音乐[听]", - "name": "种子音乐[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/种子音乐[听].js" - }, - { - "key": "drpyS_专享影视", - "name": "专享影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/专享影视", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_ACG漫画网[画]", - "name": "ACG漫画网[画](DS)", - "type": 4, - "api": "http://localhost:5757/api/ACG漫画网[画]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_ikanbot", - "name": "ikanbot(DS)", - "type": 4, - "api": "http://localhost:5757/api/ikanbot", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_KTV歌厅[听]", - "name": "KTV歌厅[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/KTV歌厅[听].js" - }, - { - "key": "drpyS_MP4电影[磁]", - "name": "MP4电影[磁](DS)", - "type": 4, - "api": "http://localhost:5757/api/MP4电影[磁]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_Nyafun[漫]", - "name": "Nyafun[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/Nyafun[漫]", - "searchable": 1, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_OmoFun[漫]", - "name": "OmoFun[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/OmoFun[漫]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_TVB云播", - "name": "TVB云播(DS)", - "type": 4, - "api": "http://localhost:5757/api/TVB云播", - "searchable": 2, - "filterable": 1, - "quickSearch": 2, - "ext": "" - }, - { - "key": "drpyS_xvideos[密]", - "name": "xvideos[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/xvideos[密]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - } - ], - "parses": [ - { - "name": "JSON并发", - "url": "http://localhost:5757/parse/JSON并发?url=", - "type": 2, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷", - "pptv", - "PPTV", - "letv", - "乐视", - "leshi", - "mgtv", - "芒果", - "sohu", - "xigua", - "fun", - "风行" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "JSON合集", - "url": "http://localhost:5757/parse/JSON合集?url=", - "type": 3, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷", - "pptv", - "PPTV", - "letv", - "乐视", - "leshi", - "mgtv", - "芒果", - "sohu", - "xigua", - "fun", - "风行" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "虾米", - "url": "http://localhost:5757/parse/虾米?url=", - "type": 1, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷", - "pptv", - "PPTV", - "letv", - "乐视", - "leshi", - "mgtv", - "芒果", - "sohu", - "xigua", - "fun", - "风行" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36", - "Referer": "https://jx.xmflv.com" - } - }, - { - "name": "奇奇", - "url": "http://localhost:5757/parse/奇奇?url=", - "type": 1, - "ext": { - "flag": [ - "qiyi", - "爱奇艺", - "奇艺" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "json1", - "url": "http://localhost:5757/parse/json1?url=", - "type": 1, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.91 Mobile Safari/537.36" - } - }, - { - "name": "web1", - "url": "https://bfq.cfwlgzs.cn/player?url=", - "type": 0, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.91 Mobile Safari/537.36" - } - }, - { - "name": "J1", - "url": "https://zy.qiaoji8.com/gouzi.php?url=", - "type": 1, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "J2", - "url": "https://jxjson.icu/neibu.php?url=", - "type": 1, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "W1", - "url": "https://jx.xymp4.cc/?url=", - "type": 0, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "W11", - "url": "https://www.ckplayer.vip/jiexi/?url=", - "type": 0, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "HGvip", - "url": "http://1.94.221.189:88/algorithm.php?url=", - "type": 1, - "header": { - "User-Agent": "Mozilla/5.0" - } - } - ], - "lives": [ - { - "name": "直播", - "type": 0, - "url": "http://localhost:5757/public/lives/tv.m3u", - "playerType": 1, - "ua": "okhttp/3.12.13", - "epg": "https://epg.mxdyeah.top/api/diyp/?ch={name}&date={date}", - "logo": "https://live.mxdyeah.top/logo/{name}.png" - } - ], - "wallpaper": "https://api.likepoems.com/img/bing/", - "spider": "", - "homepage": "https://github.com/hjdhnx/drpy-node", - "aiLogo": "https://image.baidu.com/search/index?tn=baiduimage&ct=201326592&lm=-1&cl=2&word=%E7%8B%97%E4%BD%9C%E4%B8%BA%E8%BD%AF%E4%BB%B6%E5%9B%BE%E6%A0%87&dyTabStr=MCwxMiwzLDEsMiwxMyw3LDYsNSw5", - "homeLogo": "https://github.catvod.com/https://raw.githubusercontent.com/hjdhnx/drpy-node/refs/heads/main/public/images/logo500x200-1.png", - "sniffer": { - "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.27", - "isVideoFormat": "http((?!http).){26,}\\.(m3u8|mp4|flv|avi|mkv|wmv|mpg|mpeg|mov|ts|3gp|rm|rmvb|asf|m4a|mp3|wma)", - "custom": [ - { - "url": "/Cloud/Down/AliCloud/", - "mimeType": "text/html", - "encoding": "utf-8", - "header": { - "Referer": "https://zxzj.vip/" - } - }, - { - "url": "ysting.ysxs8.vip", - "mimeType": "text/html", - "encoding": "utf-8", - "header": { - "Referer": "http://ysting.ysxs8.vip:81" - } - } - ] - }, - "recommend": [ - { - "name": "豆瓣推荐", - "request": { - "method": "GET", - "header": [ - { - "key": "Referer", - "value": "https://movie.douban.com/" - } - ], - "url": { - "raw": "https://movie.douban.com/j/new_search_subjects?sort=U&range=0,10&tags=&playable=1&start=0&year_range=2022,2022" - } - }, - "response": { - "result": "$.data", - "data": [ - { - "key": "name", - "value": "title" - }, - { - "key": "note", - "value": "rate" - }, - { - "key": "pic", - "value": "cover" - } - ] - }, - "expires": "86400" - } - ], - "rating": [ - { - "name": "rating", - "request": { - "method": "GET", - "url": { - "raw": "https://api.wmdb.tv/api/v1/movie/search?q={name}&limit=1" - } - }, - "response": { - "result": "this", - "data": [ - { - "key": "rating", - "value": "doubanRating" - } - ] - } - } - ], - "doh": [ - { - "ips": [ - "8.8.4.4", - "8.8.8.8" - ], - "name": "Google", - "url": "https://dns.google/dns-query" - }, - { - "ips": [ - "1.1.1.1", - "1.0.0.1", - "2606:4700:4700::1111", - "2606:4700:4700::1001" - ], - "name": "Cloudflare", - "url": "https://cloudflare-dns.com/dns-query" - }, - { - "ips": [ - "94.140.14.140", - "94.140.14.141" - ], - "name": "AdGuard", - "url": "https://dns.adguard.com/dns-query" - }, - { - "ips": [ - "84.200.69.80", - "84.200.70.40" - ], - "name": "DNSWatch", - "url": "https://resolver2.dns.watch/dns-query" - }, - { - "ips": [ - "9.9.9.9", - "149.112.112.112" - ], - "name": "Quad9", - "url": "https://dns.quad9.net/dns-quer" - } - ], - "ijk": [ - { - "group": "软解码", - "options": [ - { - "category": 4, - "name": "opensles", - "value": "0" - }, - { - "category": 4, - "name": "overlay-format", - "value": "842225234" - }, - { - "category": 4, - "name": "framedrop", - "value": "1" - }, - { - "category": 4, - "name": "soundtouch", - "value": "1" - }, - { - "category": 4, - "name": "start-on-prepared", - "value": "1" - }, - { - "category": 1, - "name": "http-detect-range-support", - "value": "0" - }, - { - "category": 1, - "name": "fflags", - "value": "fastseek" - }, - { - "category": 2, - "name": "skip_loop_filter", - "value": "48" - }, - { - "category": 4, - "name": "reconnect", - "value": "1" - }, - { - "category": 4, - "name": "enable-accurate-seek", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec-auto-rotate", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec-handle-resolution-change", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec-hevc", - "value": "0" - }, - { - "category": 1, - "name": "dns_cache_timeout", - "value": "600000000" - }, - { - "category": 4, - "name": "max-buffer-size", - "value": "15728640" - } - ] - }, - { - "group": "硬解码", - "options": [ - { - "category": 4, - "name": "opensles", - "value": "0" - }, - { - "category": 4, - "name": "overlay-format", - "value": "842225234" - }, - { - "category": 4, - "name": "framedrop", - "value": "1" - }, - { - "category": 4, - "name": "soundtouch", - "value": "1" - }, - { - "category": 4, - "name": "start-on-prepared", - "value": "1" - }, - { - "category": 1, - "name": "http-detect-range-support", - "value": "0" - }, - { - "category": 1, - "name": "fflags", - "value": "fastseek" - }, - { - "category": 2, - "name": "skip_loop_filter", - "value": "48" - }, - { - "category": 4, - "name": "reconnect", - "value": "1" - }, - { - "category": 4, - "name": "max-buffer-size", - "value": "15728640" - }, - { - "category": 4, - "name": "enable-accurate-seek", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec", - "value": "1" - }, - { - "category": 4, - "name": "mediacodec-auto-rotate", - "value": "1" - }, - { - "category": 4, - "name": "mediacodec-handle-resolution-change", - "value": "1" - }, - { - "category": 4, - "name": "mediacodec-hevc", - "value": "1" - }, - { - "category": 1, - "name": "dns_cache_timeout", - "value": "600000000" - } - ] - } - ], - "rules": [ - { - "hosts": [ - "raw.githubusercontent.com", - "googlevideo.com", - "cdn.v82u1l.com", - "cdn.iz8qkg.com", - "cdn.kin6c1.com", - "c.biggggg.com", - "c.olddddd.com", - "haiwaikan.com", - "www.histar.tv", - "youtube.com", - "uhibo.com", - ".*boku.*", - ".*nivod.*", - ".*ulivetv.*", - "wogg.link", - "wogg.xyz" - ], - "name": "proxy" - }, - { - "hosts": [ - "magnet" - ], - "name": "cl", - "regex": [ - "最新", - "直播", - "更新" - ] - }, - { - "hosts": [ - "haiwaikan" - ], - "name": "海外看", - "regex": [ - "10.0099", - "10.3333", - "16.0599", - "8.1748", - "12.33", - "10.85" - ] - }, - { - "hosts": [ - "suonizy" - ], - "name": "索尼", - "regex": [ - "15.1666", - "15.2666" - ] - }, - { - "hosts": [ - "bfzy", - "bfbfvip" - ], - "name": "暴風", - "regex": [ - "#EXTINF.*?\\s+.*?adjump.*?\\.ts\\s+" - ] - }, - { - "hosts": [ - "aws.ulivetv.net" - ], - "name": "星星", - "regex": [ - "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:8,[\\s\\S]*?#EXT-X-DISCONTINUITY" - ] - }, - { - "hosts": [ - "vip.lz", - "hd.lz", - "v.cdnlz" - ], - "name": "量子", - "regex": [ - "18.5333" - ] - }, - { - "hosts": [ - "vip.ffzy", - "hd.ffzy" - ], - "name": "非凡", - "regex": [ - "25.1999", - "25.0666", - "25.08", - "20.52" - ] - }, - { - "hosts": [ - "huoshan.com" - ], - "name": "火山嗅探", - "regex": [ - "item_id=" - ] - }, - { - "hosts": [ - "douyin.com" - ], - "name": "抖音嗅探", - "regex": [ - "is_play_url=" - ] - }, - { - "hosts": [ - "api.52wyb.com" - ], - "name": "七新嗅探", - "regex": [ - "m3u8?pt=m3u8" - ] - }, - { - "hosts": [ - "10086.cn" - ], - "name": "czzy", - "regex": [ - "/storageWeb/servlet/downloadServlet" - ] - }, - { - "exclude": [ - ".m3u8" - ], - "hosts": [ - "bytetos.com", - "byteimg.com", - "bytednsdoc.com", - "pstatp.com" - ], - "name": "bdys", - "regex": [ - "/tos-cn" - ] - }, - { - "exclude": [ - ".m3u8" - ], - "hosts": [ - "bdys10.com" - ], - "name": "bdys10", - "regex": [ - "/obj/" - ] - } - ], - "ads": [ - "mimg.0c1q0l.cn", - "www.googletagmanager.com", - "www.google-analytics.com", - "mc.usihnbcq.cn", - "mg.g1mm3d.cn", - "mscs.svaeuzh.cn", - "cnzz.hhttm.top", - "tp.vinuxhome.com", - "cnzz.mmstat.com", - "www.baihuillq.com", - "s23.cnzz.com", - "z3.cnzz.com", - "c.cnzz.com", - "stj.v1vo.top", - "z12.cnzz.com", - "img.mosflower.cn", - "tips.gamevvip.com", - "ehwe.yhdtns.com", - "xdn.cqqc3.com", - "www.jixunkyy.cn", - "sp.chemacid.cn", - "hm.baidu.com", - "s9.cnzz.com", - "z6.cnzz.com", - "um.cavuc.com", - "mav.mavuz.com", - "wofwk.aoidf3.com", - "z5.cnzz.com", - "xc.hubeijieshikj.cn", - "tj.tianwenhu.com", - "xg.gars57.cn", - "k.jinxiuzhilv.com", - "cdn.bootcss.com", - "ppl.xunzhuo123.com", - "xomk.jiangjunmh.top", - "img.xunzhuo123.com", - "z1.cnzz.com", - "s13.cnzz.com", - "xg.huataisangao.cn", - "z7.cnzz.com", - "xg.huataisangao.cn", - "z2.cnzz.com", - "s96.cnzz.com", - "q11.cnzz.com", - "thy.dacedsfa.cn", - "xg.whsbpw.cn", - "s19.cnzz.com", - "z8.cnzz.com", - "s4.cnzz.com", - "f5w.as12df.top", - "ae01.alicdn.com", - "www.92424.cn", - "k.wudejia.com", - "vivovip.mmszxc.top", - "qiu.xixiqiu.com", - "cdnjs.hnfenxun.com", - "cms.qdwght.com", - "wan.51img1.com", - "iqiyi.hbuioo.com", - "vip.ffzyad.com", - "https://lf1-cdn-tos.bytegoofy.com/obj/tos-cn-i-dy/455ccf9e8ae744378118e4bd289288dd" - ], - "drives": [ - { - "name": "阿里", - "password": "43886374072944a2bcc55a0ed129ab48", - "type": "alidrive" - } - ] -} \ No newline at end of file diff --git a/data/cat/index.config.js b/data/cat/index.config.js new file mode 100644 index 0000000..b671092 --- /dev/null +++ b/data/cat/index.config.js @@ -0,0 +1,289 @@ +var __defProp = Object.defineProperty; +var __getOwnPropDesc = Object.getOwnPropertyDescriptor; +var __getOwnPropNames = Object.getOwnPropertyNames; +var __hasOwnProp = Object.prototype.hasOwnProperty; +var __export = (target, all) => { + for (var name in all) + __defProp(target, name, { get: all[name], enumerable: true }); +}; +var __copyProps = (to, from, except, desc) => { + if (from && typeof from === "object" || typeof from === "function") { + for (let key of __getOwnPropNames(from)) + if (!__hasOwnProp.call(to, key) && key !== except) + __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); + } + return to; +}; +var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); + +// src/index.config.js +var index_config_exports = {}; +__export(index_config_exports, { + default: () => index_config_default +}); +module.exports = __toCommonJS(index_config_exports); +var index_config_default = { + drpyS: { + config_url: "$config_url", + // 本地ds 支持 + // config_url: 'http://localhost:5707/config/0?sub=dzyyds', // 本地hipy-t4 支持 + home_site: "http://localhost:5757/api/设置中心", + enable_dspush: 1, + enable_home_site: 0, + sniffer_rule: "http((?!http).){12,}?\\.(m3u8|mp4|flv|avi|mkv|rm|wmv|mpg|m4a|mp3)\\?.*|http((?!http).){12,}\\.(m3u8|mp4|flv|avi|mkv|rm|wmv|mpg|m4a|mp3)|http((?!http).)*?video/tos*|http((?!http).)*?obj/tos*", + enable_hipy_sniffer: 0, + hipy_sniffer_url: "http://127.0.0.1:5708/sniffer?url=", + parse_count: 6, + // 最多显示多少条解析 + parse_timeout: 5e3, + // 解析超时毫秒数 + test_thread_proxy: "http://127.0.0.1:5759/proxy?thread=8&chunkSize=256&url=https://vdse.bdstatic.com//628ca08719cef5987ea2ae3c6f0d2386.mp4" + }, + ffm3u8: { + url: "https://cj.ffzyapi.com/api.php/provide/vod/from/ffm3u8", + categories: ["国产剧", "香港剧", "韩国剧", "欧美剧", "台湾剧", "日本剧", "海外剧", "泰国剧", "短剧", "动作片", "喜剧片", "爱情片", "科幻片", "恐怖片", "剧情片", "战争片", "动漫片", "大陆综艺", "港台综艺", "日韩综艺", "欧美综艺", "国产动漫", "日韩动漫", "欧美动漫", "港台动漫", "海外动漫", "记录片"] + }, + alist: [ + { + "name": "丫仙女", + "server": "http://localhost:5244", + "startPage": "/", + "showAll": false, + "sort": true, + "login": { + "username": "admin", + "password": "admin", + "otp_code": "" + }, + "params": { + "/abc": { + "password": "123" + }, + "/abc/abc": { + "password": "123" + } + } + }, + { + name: "🐉神族九帝", + server: "https://alist.shenzjd.com" + }, + { + name: "💢repl", + server: "https://ali.liucn.repl.co" + } + ], + color: [ + { + light: { + // bg: 'https://i2.100024.xyz/2024/01/13/pptcej.webp', + bg: "http://php.540734621.xyz/tcp/1.php", + bgMask: "0x50ffffff", + primary: "0xff446732", + onPrimary: "0xffffffff", + primaryContainer: "0xffc5efab", + onPrimaryContainer: "0xff072100", + secondary: "0xff55624c", + onSecondary: "0xffffffff", + secondaryContainer: "0xffd9e7cb", + onSecondaryContainer: "0xff131f0d", + tertiary: "0xff386666", + onTertiary: "0xffffffff", + tertiaryContainer: "0xffbbebec", + onTertiaryContainer: "0xff002020", + error: "0xffba1a1a", + onError: "0xffffffff", + errorContainer: "0xffffdad6", + onErrorContainer: "0xff410002", + background: "0xfff8faf0", + onBackground: "0xff191d16", + surface: "0xfff8faf0", + onSurface: "0xff191d16", + surfaceVariant: "0xffe0e4d6", + onSurfaceVariant: "0xff191d16", + inverseSurface: "0xff2e312b", + inverseOnSurface: "0xfff0f2e7", + outline: "0xff74796d", + outlineVariant: "0xffc3c8bb", + shadow: "0xff000000", + scrim: "0xff000000", + inversePrimary: "0xffaad291", + surfaceTint: "0xff446732" + }, + dark: { + bg: "http://php.540734621.xyz/tcp/1.php", + bgMask: "0x50000000", + primary: "0xffaad291", + onPrimary: "0xff173807", + primaryContainer: "0xff2d4f1c", + onPrimaryContainer: "0xffc5efab", + secondary: "0xffbdcbb0", + onSecondary: "0xff283420", + secondaryContainer: "0xff3e4a35", + onSecondaryContainer: "0xffd9e7cb", + tertiary: "0xffa0cfcf", + onTertiary: "0xff003738", + tertiaryContainer: "0xff1e4e4e", + onTertiaryContainer: "0xffbbebec", + error: "0xffffb4ab", + onError: "0xff690005", + errorContainer: "0xff93000a", + onErrorContainer: "0xffffdad6", + background: "0xff11140e", + onBackground: "0xffe1e4d9", + surface: "0xff11140e", + onSurface: "0xffe1e4d9", + surfaceVariant: "0xff43483e", + onSurfaceVariant: "0xffe1e4d9", + inverseSurface: "0xffe1e4d9", + inverseOnSurface: "0xff2e312b", + outline: "0xff8d9286", + outlineVariant: "0xff43483e", + shadow: "0xff000000", + scrim: "0xff000000", + inversePrimary: "0xff446732", + surfaceTint: "0xffaad291" + } + }, + { + light: { + bg: "http://php.540734621.xyz/tcp/1.php", + bgMask: "0x50ffffff", + primary: "0xff666014", + onPrimary: "0xffffffff", + primaryContainer: "0xffeee58c", + onPrimaryContainer: "0xff1f1c00", + secondary: "0xff625f42", + onSecondary: "0xffffffff", + secondaryContainer: "0xffe9e4be", + onSecondaryContainer: "0xff1e1c05", + tertiary: "0xff3f6654", + onTertiary: "0xffffffff", + tertiaryContainer: "0xffc1ecd5", + onTertiaryContainer: "0xff002114", + error: "0xffba1a1a", + onError: "0xffffffff", + errorContainer: "0xffffdad6", + onErrorContainer: "0xff410002", + background: "0xfffef9eb", + onBackground: "0xff1d1c14", + surface: "0xfffef9eb", + onSurface: "0xff1d1c14", + surfaceVariant: "0xffe7e3d0", + onSurfaceVariant: "0xff1d1c14", + inverseSurface: "0xff323128", + inverseOnSurface: "0xfff5f1e3", + outline: "0xff7a7768", + outlineVariant: "0xffcbc7b5", + shadow: "0xff000000", + scrim: "0xff000000", + inversePrimary: "0xffd1c973", + surfaceTint: "0xff666014" + }, + dark: { + bg: "http://php.540734621.xyz/tcp/1.php", + bgMask: "0x50000000", + primary: "0xffd1c973", + onPrimary: "0xff353100", + primaryContainer: "0xff4d4800", + onPrimaryContainer: "0xffeee58c", + secondary: "0xffcdc8a3", + onSecondary: "0xff333117", + secondaryContainer: "0xff4a482c", + onSecondaryContainer: "0xffe9e4be", + tertiary: "0xffa6d0b9", + onTertiary: "0xff0e3727", + tertiaryContainer: "0xff274e3d", + onTertiaryContainer: "0xffc1ecd5", + error: "0xffffb4ab", + onError: "0xff690005", + errorContainer: "0xff93000a", + onErrorContainer: "0xffffdad6", + background: "0xff14140c", + onBackground: "0xffe7e2d5", + surface: "0xff14140c", + onSurface: "0xffe7e2d5", + surfaceVariant: "0xff49473a", + onSurfaceVariant: "0xffe7e2d5", + inverseSurface: "0xffe7e2d5", + inverseOnSurface: "0xff323128", + outline: "0xff949181", + outlineVariant: "0xff49473a", + shadow: "0xff000000", + scrim: "0xff000000", + inversePrimary: "0xff666014", + surfaceTint: "0xffd1c973" + } + }, + { + light: { + bg: "http://php.540734621.xyz/tcp/1.php", + bgMask: "0x50ffffff", + primary: "0xFF2B6C00", + onPrimary: "0xFFFFFFFF", + primaryContainer: "0xFFA6F779", + onPrimaryContainer: "0xFF082100", + secondary: "0xFF55624C", + onSecondary: "0xFFFFFFFF", + secondaryContainer: "0xFFD9E7CA", + onSecondaryContainer: "0xFF131F0D", + tertiary: "0xFF386666", + onTertiary: "0xFFFFFFFF", + tertiaryContainer: "0xFFBBEBEB", + onTertiaryContainer: "0xFF002020", + error: "0xFFBA1A1A", + onError: "0xFFFFFFFF", + errorContainer: "0xFFFFDAD6", + onErrorContainer: "0xFF410002", + background: "0xFFFDFDF5", + onBackground: "0xFF1A1C18", + surface: "0xFFFDFDF5", + onSurface: "0xFF1A1C18", + surfaceVariant: "0xFFE0E4D6", + onSurfaceVariant: "0xFF1A1C18", + inverseSurface: "0xFF2F312C", + onInverseSurface: "0xFFF1F1EA", + outline: "0xFF74796D", + outlineVariant: "0xFFC3C8BB", + shadow: "0xFF000000", + scrim: "0xFF000000", + inversePrimary: "0xFF8CDA60", + surfaceTint: "0xFF2B6C00" + }, + dark: { + bg: "http://php.540734621.xyz/tcp/1.php", + bgMask: "0x50000000", + primary: "0xFF8CDA60", + onPrimary: "0xFF133800", + primaryContainer: "0xFF1F5100", + onPrimaryContainer: "0xFFA6F779", + secondary: "0xFFBDCBAF", + onSecondary: "0xFF283420", + secondaryContainer: "0xFF3E4A35", + onSecondaryContainer: "0xFFD9E7CA", + tertiary: "0xFFA0CFCF", + onTertiary: "0xFF003737", + tertiaryContainer: "0xFF1E4E4E", + onTertiaryContainer: "0xFFBBEBEB", + error: "0xFFFFB4AB", + errorContainer: "0xFF93000A", + onError: "0xFF690005", + onErrorContainer: "0xFFFFDAD6", + background: "0xFF1A1C18", + onBackground: "0xFFE3E3DC", + outline: "0xFF8D9286", + onInverseSurface: "0xFF1A1C18", + inverseSurface: "0xFFE3E3DC", + inversePrimary: "0xFF2B6C00", + shadow: "0xFF000000", + surfaceTint: "0xFF8CDA60", + outlineVariant: "0xFF43483E", + scrim: "0xFF000000", + surface: "0xFF1A1C18", + onSurface: "0xFFC7C7C0", + surfaceVariant: "0xFF43483E", + onSurfaceVariant: "0xFFC7C7C0" + } + } + ] +}; diff --git a/data/cat/index.html b/data/cat/index.html new file mode 100644 index 0000000..e2e4114 --- /dev/null +++ b/data/cat/index.html @@ -0,0 +1,116 @@ + + + + + + ds猫源在线配置主页 + + + +

    +

    欢迎使用DS猫源

    + $catLink + + +
    + + + + diff --git a/data/cat/index.js b/data/cat/index.js new file mode 100644 index 0000000..8380d63 --- /dev/null +++ b/data/cat/index.js @@ -0,0 +1,530 @@ +var Boe=Object.create;var Np=Object.defineProperty;var xoe=Object.getOwnPropertyDescriptor;var voe=Object.getOwnPropertyNames;var Qoe=Object.getPrototypeOf,Toe=Object.prototype.hasOwnProperty;var b=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Us=(e,t)=>{for(var r in t)Np(e,r,{get:t[r],enumerable:!0})},Gk=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let s of voe(t))!Toe.call(e,s)&&s!==r&&Np(e,s,{get:()=>t[s],enumerable:!(n=xoe(t,s))||n.enumerable});return e};var Fe=(e,t,r)=>(r=e!=null?Boe(Qoe(e)):{},Gk(t||!e||!e.__esModule?Np(r,"default",{value:e,enumerable:!0}):r,e)),woe=e=>Gk(Np({},"__esModule",{value:!0}),e);var Jk=b((oze,jk)=>{"use strict";function Soe(e){var t=new e,r=t;function n(){var i=t;return i.next?t=i.next:(t=new e,r=t),i.next=null,i}function s(i){r.next=i,r=i}return{get:n,release:s}}jk.exports=Soe});var r1=b((aze,t1)=>{"use strict";var _oe=Jk();function Wk(e,t,r){if(typeof e=="function"&&(r=t,t=e,e=null),!(r>=1))throw new Error("fastqueue concurrency must be equal to or greater than 1");var n=_oe(Roe),s=null,i=null,o=0,a=null,c={push:p,drain:cs,saturated:cs,pause:l,paused:!1,get concurrency(){return r},set concurrency(B){if(!(B>=1))throw new Error("fastqueue concurrency must be equal to or greater than 1");if(r=B,!c.paused)for(;s&&o=r||c.paused?i?(i.next=x,i=x):(s=x,i=x,c.saturated()):(o++,t.call(e,x.value,x.worked))}function C(B,v){var x=n.get();x.context=e,x.release=m,x.value=B,x.callback=v||cs,x.errorHandler=a,o>=r||c.paused?s?(x.next=s,s=x):(s=x,i=x,c.saturated()):(o++,t.call(e,x.value,x.worked))}function m(B){B&&n.release(B);var v=s;v&&o<=r?c.paused?o--:(i===s&&(i=null),s=v.next,v.next=null,t.call(e,v.value,v.worked),i===null&&c.empty()):--o===0&&c.drain()}function I(){s=null,i=null,c.drain=cs}function y(){s=null,i=null,c.drain(),c.drain=cs}function E(B){a=B}}function cs(){}function Roe(){this.value=null,this.callback=cs,this.next=null,this.release=cs,this.context=null,this.errorHandler=null;var e=this;this.worked=function(r,n){var s=e.callback,i=e.errorHandler,o=e.value;e.value=null,e.callback=cs,e.errorHandler&&i(r,o),s.call(e.context,r,n),e.release(e)}}function Doe(e,t,r){typeof e=="function"&&(r=t,t=e,e=null);function n(l,A){t.call(this,l).then(function(f){A(null,f)},A)}var s=Wk(e,n,r),i=s.push,o=s.unshift;return s.push=a,s.unshift=c,s.drained=u,s;function a(l){var A=new Promise(function(f,d){i(l,function(h,p){if(h){d(h);return}f(p)})});return A.catch(cs),A}function c(l){var A=new Promise(function(f,d){o(l,function(h,p){if(h){d(h);return}f(p)})});return A.catch(cs),A}function u(){var l=new Promise(function(A){process.nextTick(function(){if(s.idle())A();else{var f=s.drain;s.drain=function(){typeof f=="function"&&f(),A(),s.drain=f}}})});return l}}t1.exports=Wk;t1.exports.promise=Doe});var s1=b((cze,kp)=>{"use strict";var{format:Noe}=require("node:util");function koe(){return`${this.name} [${this.code}]: ${this.message}`}function n1(e,t,r=500,n=Error){if(!e)throw new Error("Fastify error code must not be empty");if(!t)throw new Error("Fastify error message must not be empty");e=e.toUpperCase(),!r&&(r=void 0);function s(...i){if(!new.target)return new s(...i);this.code=e,this.name="FastifyError",this.statusCode=r;let o=i.length-1;o!==-1&&i[o]&&typeof i[o]=="object"&&"cause"in i[o]&&(this.cause=i.pop().cause),this.message=Noe(t,...i),Error.stackTraceLimit!==0&&Error.captureStackTrace(this,s)}return s.prototype=Object.create(n.prototype,{constructor:{value:s,enumerable:!1,writable:!0,configurable:!0}}),s.prototype[Symbol.toStringTag]="Error",s.prototype.toString=koe,s}kp.exports=n1;kp.exports.default=n1;kp.exports.createError=n1});var Fp=b((uze,zk)=>{"use strict";var{createError:ra}=s1();zk.exports={AVV_ERR_EXPOSE_ALREADY_DEFINED:ra("AVV_ERR_EXPOSE_ALREADY_DEFINED","'%s' is already defined, specify an expose option for '%s'"),AVV_ERR_ATTRIBUTE_ALREADY_DEFINED:ra("AVV_ERR_ATTRIBUTE_ALREADY_DEFINED","'%s' is already defined"),AVV_ERR_CALLBACK_NOT_FN:ra("AVV_ERR_CALLBACK_NOT_FN","Callback for '%s' hook is not a function. Received: '%s'"),AVV_ERR_PLUGIN_NOT_VALID:ra("AVV_ERR_PLUGIN_NOT_VALID","Plugin must be a function or a promise. Received: '%s'"),AVV_ERR_ROOT_PLG_BOOTED:ra("AVV_ERR_ROOT_PLG_BOOTED","Root plugin has already booted"),AVV_ERR_PARENT_PLG_LOADED:ra("AVV_ERR_PARENT_PLG_LOADED","Impossible to load '%s' plugin because the parent '%s' was already loaded"),AVV_ERR_READY_TIMEOUT:ra("AVV_ERR_READY_TIMEOUT","Plugin did not start in time: '%s'. You may have forgotten to call 'done' function or to resolve a Promise"),AVV_ERR_PLUGIN_EXEC_TIMEOUT:ra("AVV_ERR_PLUGIN_EXEC_TIMEOUT","Plugin did not start in time: '%s'. You may have forgotten to call 'done' function or to resolve a Promise")}});var Vu=b((lze,Xk)=>{"use strict";var Foe=Symbol("avvio.Boot"),Loe=Symbol("isOnCloseHandler"),Ooe=Symbol("avvio.ThenifyDoNotWrap"),Moe=Symbol("avvio.TimeTree.untrackNode"),Poe=Symbol("avvio.TimeTree.trackNode"),Uoe=Symbol("avvio.TimeTree.getParent"),Hoe=Symbol("avvio.TimeTree.getNode"),qoe=Symbol("avvio.TimeTree.addNode"),Voe=Symbol.for("plugin-meta");Xk.exports={kAvvio:Foe,kIsOnCloseHandler:Loe,kThenifyDoNotWrap:Ooe,kUntrackNode:Moe,kTrackNode:Poe,kGetParent:Uoe,kGetNode:Hoe,kAddNode:qoe,kPluginMeta:Voe}});var sF=b((Aze,nF)=>{"use strict";var{kUntrackNode:Kk,kTrackNode:i1,kGetParent:Zk,kGetNode:eF,kAddNode:tF}=Vu(),o1=class{constructor(){this.root=null,this.tableId=new Map,this.tableLabel=new Map}[i1](t){this.tableId.set(t.id,t),this.tableLabel.has(t.label)?this.tableLabel.get(t.label).push(t):this.tableLabel.set(t.label,[t])}[Kk](t){this.tableId.delete(t.id);let r=this.tableLabel.get(t.label);r.pop(),r.length===0&&this.tableLabel.delete(t.label)}[Zk](t){if(t===null)return null;if(this.tableLabel.has(t)){let r=this.tableLabel.get(t);return r[r.length-1]}else return null}[eF](t){return this.tableId.get(t)}[tF](t,r,n){let s=this[Zk](t);if(s===null)return this.root={parent:null,id:"root",label:r,nodes:[],start:n,stop:null,diff:-1},this[i1](this.root),this.root.id;let o=`${r}-${Math.random()}`,a={parent:t,id:o,label:r,nodes:[],start:n,stop:null,diff:-1};return s.nodes.push(a),this[i1](a),o}start(t,r,n=Date.now()){return this[tF](t,r,n)}stop(t,r=Date.now()){let n=this[eF](t);n&&(n.stop=r,n.diff=n.stop-n.start||0,this[Kk](n))}toJSON(){return Object.assign({},this.root)}prettyPrint(){return rF(this.toJSON())}};function rF(e,t=""){let r=t,n=e.nodes.length,s=n-1;r+=`${e.label} ${e.diff} ms +`;for(let i=0;i{"use strict";var{debuglog:Yoe}=require("node:util"),$oe=Yoe("avvio");iF.exports={debug:$oe}});var aF=b((dze,oF)=>{"use strict";function Goe(){let e={resolve:null,reject:null,promise:null};return e.promise=new Promise((t,r)=>{e.resolve=t,e.reject=r}),e}oF.exports={createPromise:Goe}});var uF=b((hze,cF)=>{"use strict";var{kPluginMeta:a1}=Vu();function joe(e,t){return e[a1]&&e[a1].name?e[a1].name:t&&t.name?t.name:e.name?e.name:e.toString().split(` +`).slice(0,2).map(r=>r.trim()).join(" -- ")}cF.exports={getPluginName:joe}});var Op=b((pze,lF)=>{"use strict";function Joe(e){return e!==null&&typeof e=="object"&&typeof e.then=="function"}lF.exports={isPromiseLike:Joe}});var fF=b((gze,AF)=>{"use strict";var{EventEmitter:Woe}=require("node:events"),{inherits:zoe}=require("node:util"),{debug:wr}=Lp(),{createPromise:Xoe}=aF(),{AVV_ERR_PLUGIN_EXEC_TIMEOUT:Koe}=Fp(),{getPluginName:Zoe}=uF(),{isPromiseLike:eae}=Op();function Yu(e,t,r,n,s){this.queue=e,this.func=t,this.options=r,this.isAfter=n,this.timeout=s,this.started=!1,this.name=Zoe(t,r),this.queue.pause(),this._error=null,this.loaded=!1,this._promise=null,this.startTime=null}zoe(Yu,Woe);Yu.prototype.exec=function(e,t){wr("exec",this.name),this.server=e;let r=this.func,n=this.name,s=!1;this.options=typeof this.options=="function"?this.options(this.server):this.options;let i=null,o=c=>{if(s){wr("loading complete",n);return}this._error=c,wr(c?"exec errored":"exec completed",n),s=!0,i&&clearTimeout(i),t(c)};this.timeout>0&&(wr("setting up timeout",n,this.timeout),i=setTimeout(function(){wr("timed out",n),i=null;let c=new Koe(n);c.fn=r,o(c)},this.timeout)),this.started=!0,this.startTime=Date.now(),this.emit("start",this.server?this.server.name:null,this.name,Date.now());let a=r(this.server,this.options,o);eae(a)&&(wr("exec: resolving promise",n),a.then(()=>process.nextTick(o),c=>process.nextTick(o,c)))};Yu.prototype.loadedSoFar=function(){if(wr("loadedSoFar",this.name),this.loaded)return Promise.resolve();let e=()=>{this.server.after((r,n)=>{this._error=r,this.queue.pause(),this._promise&&(r?(wr("rejecting promise",this.name,r),this._promise.reject(r)):(wr("resolving promise",this.name),this._promise.resolve()),this._promise=null),process.nextTick(n,r)}),this.queue.resume()},t;return this._promise?t=Promise.resolve():(this._promise=Xoe(),t=this._promise.promise,this.server?e():this.on("start",e)),t};Yu.prototype.enqueue=function(e,t){wr("enqueue",this.name,e.name),this.emit("enqueue",this.server?this.server.name:null,this.name,Date.now()),this.queue.push(e,t)};Yu.prototype.finish=function(e,t){wr("finish",this.name,e);let r=()=>{this.loaded||(wr("loaded",this.name),this.emit("loaded",this.server?this.server.name:null,this.name,Date.now()),this.loaded=!0,t(e))};if(e){this._promise&&(this._promise.reject(e),this._promise=null),r();return}let n=()=>{if(wr("check",this.name,this.queue.length(),this.queue.running(),this._promise),this.queue.length()===0&&this.queue.running()===0)if(this._promise){let s=()=>{wr("wrap"),queueMicrotask(n)};this._promise.resolve(),this._promise.promise.then(s,s),this._promise=null}else r();else wr("delayed",this.name),this.queue.drain=()=>{wr("drain",this.name),this.queue.drain=tae,queueMicrotask(n)}};queueMicrotask(n),this.queue.resume()};function tae(){}AF.exports={Plugin:Yu}});var hF=b((mze,dF)=>{"use strict";var{AVV_ERR_PLUGIN_NOT_VALID:c1}=Fp();function rae(e){if(!(e&&(typeof e=="function"||typeof e.then=="function")))throw Array.isArray(e)?new c1("array"):e===null?new c1("null"):new c1(typeof e)}dF.exports={validatePlugin:rae}});var gF=b((Eze,pF)=>{"use strict";function nae(e){return e!==null&&typeof e=="object"&&typeof e.default=="function"}pF.exports={isBundledOrTypescriptPlugin:nae}});var CF=b((Cze,EF)=>{"use strict";var{debug:mF}=Lp(),{kThenifyDoNotWrap:u1}=Vu();function sae(){if(this.booted){mF("thenify returning undefined because we are already booted");return}if(this[u1]){this[u1]=!1;return}return mF("thenify"),(e,t)=>this._loadRegistered().then(()=>(this[u1]=!0,e(this._server)),t)}EF.exports={thenify:sae}});var IF=b((yze,yF)=>{"use strict";var{isPromiseLike:iae}=Op(),{kAvvio:oae}=Vu();function aae(e,t,r){let n=e.apply(e,t);iae(n)&&!n[oae]?n.then(()=>process.nextTick(r),s=>process.nextTick(r,s)):r&&process.nextTick(r)}yF.exports={executeWithThenable:aae}});var SF=b((Ize,A1)=>{"use strict";var Mp=r1(),cae=require("node:events").EventEmitter,uae=require("node:util").inherits,{AVV_ERR_EXPOSE_ALREADY_DEFINED:Uf,AVV_ERR_CALLBACK_NOT_FN:$u,AVV_ERR_ROOT_PLG_BOOTED:lae,AVV_ERR_READY_TIMEOUT:Aae,AVV_ERR_ATTRIBUTE_ALREADY_DEFINED:fae}=Fp(),{kAvvio:xF,kIsOnCloseHandler:vF}=Vu(),{TimeTree:dae}=sF(),{Plugin:QF}=fF(),{debug:Gu}=Lp(),{validatePlugin:hae}=hF(),{isBundledOrTypescriptPlugin:pae}=gF(),{isPromiseLike:gae}=Op(),{thenify:TF}=CF(),{executeWithThenable:bF}=IF();function Wt(e,t,r){if(typeof e=="function"&&arguments.length===1&&(r=e,t={},e=null),typeof t=="function"&&(r=t,t={}),t=t||{},t.autostart=t.autostart!==!1,t.timeout=Number(t.timeout)||0,t.expose=t.expose||{},!new.target)return new Wt(e,t,r);this._server=e||this,this._opts=t,e&&this._expose(),this._current=[],this._error=null,this._lastUsed=null,this.setMaxListeners(0),r&&this.once("start",r),this.started=!1,this.booted=!1,this.pluginTree=new dae,this._readyQ=Mp(this,wF,1),this._readyQ.pause(),this._readyQ.drain=()=>{this.emit("start"),this._readyQ.drain=BF},this._closeQ=Mp(this,Eae,1),this._closeQ.pause(),this._closeQ.drain=()=>{this.emit("close"),this._closeQ.drain=BF},this._doStart=null;let n=this;this._root=new QF(Mp(this,this._loadPluginNextTick,1),function(i,o,a){n._doStart=a,o.autostart&&n.start()},t,!1,0),this._trackPluginLoading(this._root),this._loadPlugin(this._root,s=>{Gu("root plugin ready");try{this.emit("preReady"),this._root=null}catch(i){s=s||this._error||i}if(s){if(this._error=s,this._readyQ.length()===0)throw s}else this.booted=!0;this._readyQ.resume()})}uae(Wt,cae);Wt.prototype.start=function(){return this.started=!0,process.nextTick(this._doStart),this};Wt.prototype.override=function(e,t,r){return e};Wt.prototype[xF]=!0;Wt.prototype.use=function(e,t){return this._lastUsed=this._addPlugin(e,t,!1),this};Wt.prototype._loadRegistered=function(){let e=this._current[0];return!this.started&&!this.booted&&process.nextTick(()=>this._root.queue.resume()),e?e.loadedSoFar():Promise.resolve()};Object.defineProperty(Wt.prototype,"then",{get:TF});Wt.prototype._addPlugin=function(e,t,r){if(pae(e)&&(e=e.default),hae(e),t=t||{},this.booted)throw new lae;let n=this._current[0],s=this._opts.timeout;if(!n.loaded&&n.timeout>0){let o=Date.now()-n.startTime;s=n.timeout-(o+3)}let i=new QF(Mp(this,this._loadPluginNextTick,1),e,t,r,s);if(this._trackPluginLoading(i),n.loaded)throw new Error(i.name,n.name);return n.enqueue(i,o=>{o&&(this._error=o)}),i};Wt.prototype._expose=function(){let t=this,r=t._server,{use:n="use",after:s="after",ready:i="ready",onClose:o="onClose",close:a="close"}=this._opts.expose;if(r[n])throw new Uf(n,"use");if(r[n]=function(c,u){return t.use(c,u),this},r[s])throw new Uf(s,"after");if(r[s]=function(c){return typeof c!="function"?t._loadRegistered():(t.after(l1(c,this)),this)},r[i])throw new Uf(i,"ready");if(r[i]=function(c){if(c&&typeof c!="function")throw new $u(i,typeof c);return t.ready(c?l1(c,this):void 0)},r[o])throw new Uf(o,"onClose");if(r[o]=function(c){if(typeof c!="function")throw new $u(o,typeof c);return t.onClose(Cae(c,this)),this},r[a])throw new Uf(a,"close");if(r[a]=function(c){if(c&&typeof c!="function")throw new $u(a,typeof c);return c?(t.close(l1(c,this)),this):t.close()},r.then)throw new fae("then");Object.defineProperty(r,"then",{get:TF.bind(t)}),r[xF]=!0};Wt.prototype.after=function(e){if(!e)return this._loadRegistered();this._addPlugin(t.bind(this),{},!0);function t(r,n,s){wF.call(this,e,s)}return this};Wt.prototype.onClose=function(e){if(typeof e!="function")throw new $u("onClose",typeof e);return e[vF]=!0,this._closeQ.unshift(e,t=>{t&&(this._error=t)}),this};Wt.prototype.close=function(e){let t;if(e){if(typeof e!="function")throw new $u("close",typeof e)}else t=new Promise(function(r,n){e=function(s){if(s)return n(s);r()}});return this.ready(()=>{this._error=null,this._closeQ.push(e),process.nextTick(this._closeQ.resume.bind(this._closeQ))}),t};Wt.prototype.ready=function(e){if(e){if(typeof e!="function")throw new $u("ready",typeof e);this._readyQ.push(e),queueMicrotask(this.start.bind(this));return}return new Promise((t,r)=>{this._readyQ.push(s),this.start();let n=this._current[0].server;function s(i,o,a){i?r(i):t(n),process.nextTick(a)}})};Wt.prototype._trackPluginLoading=function(e){let t=this._current[0]?.name||null;e.once("start",(r,n,s)=>{let i=this.pluginTree.start(t||null,n,s);e.once("loaded",(o,a,c)=>{this.pluginTree.stop(i,c)})})};Wt.prototype.prettyPrint=function(){return this.pluginTree.prettyPrint()};Wt.prototype.toJSON=function(){return this.pluginTree.toJSON()};Wt.prototype._loadPlugin=function(e,t){let r=this;if(gae(e.func)){e.func.then(o=>{typeof o.default=="function"&&(o=o.default),e.func=o,this._loadPlugin(e,t)},t);return}let n=r._current[0];if(r._current.unshift(e),r._error&&!e.isAfter){Gu("skipping loading of plugin as instance errored and it is not an after",e.name),process.nextTick(i);return}let s=n&&n.server||r._server;if(!e.isAfter)try{s=r.override(s,e.func,e.options)}catch(o){return Gu("override errored",e.name),i(o)}e.exec(s,i);function i(o){e.finish(o,a=>{r._current.shift(),t(a)})}};Wt.prototype._loadPluginNextTick=function(e,t){process.nextTick(this._loadPlugin.bind(this),e,t)};function BF(){}function wF(e,t){let r=this._server,n=this._error;if(this._error=null,e.length===0)this._error=n,bF(e,[],t);else if(e.length===1)bF(e,[n],t);else if(this._opts.timeout===0){let s=i=>{this._error=i,t(this._error)};e.length===2?e(n,s):e(n,r,s)}else mae.call(this,e,n,r,t)}function mae(e,t,r,n){let s=e.unwrappedName??e.name;Gu("setting up ready timeout",s,this._opts.timeout);let i=setTimeout(()=>{Gu("timed out",s),i=null;let a=new Aae(s);a.fn=e,this._error=a,n(a)},this._opts.timeout);e.length===2?e(t,o.bind(this)):e(t,r,o.bind(this));function o(a){i&&(clearTimeout(i),this._error=a,n(this._error))}}function Eae(e,t){let r=this._server,n=e[vF];if(e.length===0||e.length===1){let s;n?s=e(r):s=e(this._error),s&&typeof s.then=="function"?(Gu("resolving close/onClose promise"),s.then(()=>process.nextTick(t),i=>process.nextTick(t,i))):process.nextTick(t)}else e.length===2?e(n?r:this._error,t):n?e(r,t):e(this._error,r,t)}function Cae(e,t){return r.bind(t);function r(n,s){let i;e.length===0?(i=e(),i&&i.then?i.then(function(){process.nextTick(s)},s):process.nextTick(s)):e.length===1?(i=e(this),i&&i.then?i.then(function(){process.nextTick(s)},s):process.nextTick(s)):e(this,s)}}function l1(e,t){let r=n.bind(t);return r.unwrappedName=e.name,r;function n(s,i){let o;e?e.length===0?(o=e(),o&&o.then?o.then(function(){process.nextTick(i,s)},i):process.nextTick(i,s)):e.length===1?(o=e(s),o&&o.then?o.then(function(){process.nextTick(i)},i):process.nextTick(i)):e.length===2?e(s,i):e(s,this,i):process.nextTick(i)}}A1.exports=Wt;A1.exports.express=function(e){return Wt(e,{expose:{use:"load"}})}});var mr=b((bze,_F)=>{"use strict";var yae={kAvvioBoot:Symbol("fastify.avvioBoot"),kChildren:Symbol("fastify.children"),kServerBindings:Symbol("fastify.serverBindings"),kBodyLimit:Symbol("fastify.bodyLimit"),kRoutePrefix:Symbol("fastify.routePrefix"),kLogLevel:Symbol("fastify.logLevel"),kLogSerializers:Symbol("fastify.logSerializers"),kHooks:Symbol("fastify.hooks"),kContentTypeParser:Symbol("fastify.contentTypeParser"),kState:Symbol("fastify.state"),kOptions:Symbol("fastify.options"),kDisableRequestLogging:Symbol("fastify.disableRequestLogging"),kPluginNameChain:Symbol("fastify.pluginNameChain"),kRouteContext:Symbol("fastify.context"),kPublicRouteContext:Symbol("fastify.routeOptions"),kGenReqId:Symbol("fastify.genReqId"),kSchemaController:Symbol("fastify.schemaController"),kSchemaHeaders:Symbol("headers-schema"),kSchemaParams:Symbol("params-schema"),kSchemaQuerystring:Symbol("querystring-schema"),kSchemaBody:Symbol("body-schema"),kSchemaResponse:Symbol("response-schema"),kSchemaErrorFormatter:Symbol("fastify.schemaErrorFormatter"),kSchemaVisited:Symbol("fastify.schemas.visited"),kRequest:Symbol("fastify.Request"),kRequestPayloadStream:Symbol("fastify.RequestPayloadStream"),kRequestAcceptVersion:Symbol("fastify.RequestAcceptVersion"),kRequestCacheValidateFns:Symbol("fastify.request.cache.validateFns"),kRequestOriginalUrl:Symbol("fastify.request.originalUrl"),kFourOhFour:Symbol("fastify.404"),kCanSetNotFoundHandler:Symbol("fastify.canSetNotFoundHandler"),kFourOhFourLevelInstance:Symbol("fastify.404LogLevelInstance"),kFourOhFourContext:Symbol("fastify.404ContextKey"),kDefaultJsonParse:Symbol("fastify.defaultJSONParse"),kReply:Symbol("fastify.Reply"),kReplySerializer:Symbol("fastify.reply.serializer"),kReplyIsError:Symbol("fastify.reply.isError"),kReplyHeaders:Symbol("fastify.reply.headers"),kReplyTrailers:Symbol("fastify.reply.trailers"),kReplyHasStatusCode:Symbol("fastify.reply.hasStatusCode"),kReplyHijacked:Symbol("fastify.reply.hijacked"),kReplyStartTime:Symbol("fastify.reply.startTime"),kReplyNextErrorHandler:Symbol("fastify.reply.nextErrorHandler"),kReplyEndTime:Symbol("fastify.reply.endTime"),kReplyErrorHandlerCalled:Symbol("fastify.reply.errorHandlerCalled"),kReplyIsRunningOnErrorHook:Symbol("fastify.reply.isRunningOnErrorHook"),kReplySerializerDefault:Symbol("fastify.replySerializerDefault"),kReplyCacheSerializeFns:Symbol("fastify.reply.cache.serializeFns"),kTestInternals:Symbol("fastify.testInternals"),kErrorHandler:Symbol("fastify.errorHandler"),kChildLoggerFactory:Symbol("fastify.childLoggerFactory"),kHasBeenDecorated:Symbol("fastify.hasBeenDecorated"),kKeepAliveConnections:Symbol("fastify.keepAliveConnections"),kRouteByFastify:Symbol("fastify.routeByFastify")};_F.exports=yae});var h1=b((Bze,Pp)=>{"use strict";var{format:f1}=require("node:util");function Iae(e){return RF({...e,name:"DeprecationWarning"})}function RF({name:e,code:t,message:r,unlimited:n=!1}={}){if(!e)throw new Error("Warning name must not be empty");if(!t)throw new Error("Warning code must not be empty");if(!r)throw new Error("Warning message must not be empty");if(typeof n!="boolean")throw new Error("Warning opts.unlimited must be a boolean");t=t.toUpperCase();let s={[e]:function(o,a,c){i.emitted===!0&&i.unlimited!==!0||(i.emitted=!0,process.emitWarning(i.format(o,a,c),i.name,i.code))}};n&&(s={[e]:function(o,a,c){i.emitted=!0,process.emitWarning(i.format(o,a,c),i.name,i.code)}});let i=s[e];return i.emitted=!1,i.message=r,i.unlimited=n,i.code=t,i.format=function(o,a,c){let u;return o&&a&&c?u=f1(r,o,a,c):o&&a?u=f1(r,o,a):o?u=f1(r,o):u=r,u},i}var d1={createWarning:RF,createDeprecation:Iae};Pp.exports=d1;Pp.exports.default=d1;Pp.exports.processWarning=d1});var mi=b((xze,NF)=>{"use strict";var{createDeprecation:Er,createWarning:DF}=h1(),bae=Er({code:"FSTDEP005",message:'You are accessing the deprecated "request.connection" property. Use "request.socket" instead.'}),Bae=Er({code:"FSTDEP006",message:"You are decorating Request/Reply with a reference type. This reference is shared amongst all requests. Use onRequest hook instead. Property: %s"}),xae=Er({code:"FSTDEP007",message:'You are trying to set a HEAD route using "exposeHeadRoute" route flag when a sibling route is already set. See documentation for more info.'}),vae=Er({code:"FSTDEP008",message:'You are using route constraints via the route { version: "..." } option, use { constraints: { version: "..." } } option instead.'}),Qae=Er({code:"FSTDEP009",message:'You are using a custom route versioning strategy via the server { versioning: "..." } option, use { constraints: { version: "..." } } option instead.'}),Tae=Er({code:"FSTDEP010",message:'Modifying the "reply.sent" property is deprecated. Use the "reply.hijack()" method instead.'}),wae=Er({code:"FSTDEP011",message:'Variadic listen method is deprecated. Please use ".listen(optionsObject)" instead. The variadic signature will be removed in `fastify@5`.'}),Sae=Er({code:"FSTDEP012",message:'request.context property access is deprecated. Please use "request.routeOptions.config" or "request.routeOptions.schema" instead for accessing Route settings. The "request.context" will be removed in `fastify@5`.'}),_ae=Er({code:"FSTDEP013",message:'Direct return of "trailers" function is deprecated. Please use "callback" or "async-await" for return value. The support of direct return will removed in `fastify@5`.'}),Rae=Er({code:"FSTDEP014",message:"You are trying to set/access the default route. This property is deprecated. Please, use setNotFoundHandler if you want to custom a 404 handler or the wildcard (*) to match all routes."}),Dae=Er({code:"FSTDEP015",message:'You are accessing the deprecated "request.routeSchema" property. Use "request.routeOptions.schema" instead. Property "req.routeSchema" will be removed in `fastify@5`.'}),Nae=Er({code:"FSTDEP016",message:'You are accessing the deprecated "request.routeConfig" property. Use "request.routeOptions.config" instead. Property "req.routeConfig" will be removed in `fastify@5`.'}),kae=Er({code:"FSTDEP017",message:'You are accessing the deprecated "request.routerPath" property. Use "request.routeOptions.url" instead. Property "req.routerPath" will be removed in `fastify@5`.'}),Fae=Er({code:"FSTDEP018",message:'You are accessing the deprecated "request.routerMethod" property. Use "request.routeOptions.method" instead. Property "req.routerMethod" will be removed in `fastify@5`.'}),Lae=Er({code:"FSTDEP019",message:'reply.context property access is deprecated. Please use "request.routeOptions.config" or "request.routeOptions.schema" instead for accessing Route settings. The "reply.context" will be removed in `fastify@5`.'}),Oae=Er({code:"FSTDEP020",message:'You are using the deprecated "reply.getResponseTime()" method. Use the "reply.elapsedTime" property instead. Method "reply.getResponseTime()" will be removed in `fastify@5`.'}),Mae=Er({code:"FSTDEP021",message:"The `reply.redirect()` method has a new signature: `reply.redirect(url: string, code?: number)`. It will be enforced in `fastify@v5`"}),Pae=Er({code:"FSTDEP021",message:"You are using the deprecated json shorthand schema on route %s. Specify full object schema instead. It will be removed in `fastify@v5`"}),Uae=DF({name:"FastifyWarning",code:"FSTWRN001",message:"The %s schema for %s: %s is missing. This may indicate the schema is not well specified.",unlimited:!0}),Hae=DF({name:"FastifyWarning",code:"FSTWRN002",message:"The %s plugin being registered mixes async and callback styles, which will result in an error in `fastify@5`",unlimited:!0});NF.exports={FSTDEP005:bae,FSTDEP006:Bae,FSTDEP007:xae,FSTDEP008:vae,FSTDEP009:Qae,FSTDEP010:Tae,FSTDEP011:wae,FSTDEP012:Sae,FSTDEP013:_ae,FSTDEP014:Rae,FSTDEP015:Dae,FSTDEP016:Nae,FSTDEP017:kae,FSTDEP018:Fae,FSTDEP019:Lae,FSTDEP020:Oae,FSTDEP021:Mae,FSTDEP022:Pae,FSTWRN001:Uae,FSTWRN002:Hae}});var Mr=b((vze,Up)=>{"use strict";var ie=s1(),mc={FST_ERR_NOT_FOUND:ie("FST_ERR_NOT_FOUND","Not Found",404),FST_ERR_OPTIONS_NOT_OBJ:ie("FST_ERR_OPTIONS_NOT_OBJ","Options must be an object",500,TypeError),FST_ERR_QSP_NOT_FN:ie("FST_ERR_QSP_NOT_FN","querystringParser option should be a function, instead got '%s'",500,TypeError),FST_ERR_SCHEMA_CONTROLLER_BUCKET_OPT_NOT_FN:ie("FST_ERR_SCHEMA_CONTROLLER_BUCKET_OPT_NOT_FN","schemaController.bucket option should be a function, instead got '%s'",500,TypeError),FST_ERR_SCHEMA_ERROR_FORMATTER_NOT_FN:ie("FST_ERR_SCHEMA_ERROR_FORMATTER_NOT_FN","schemaErrorFormatter option should be a non async function. Instead got '%s'.",500,TypeError),FST_ERR_AJV_CUSTOM_OPTIONS_OPT_NOT_OBJ:ie("FST_ERR_AJV_CUSTOM_OPTIONS_OPT_NOT_OBJ","ajv.customOptions option should be an object, instead got '%s'",500,TypeError),FST_ERR_AJV_CUSTOM_OPTIONS_OPT_NOT_ARR:ie("FST_ERR_AJV_CUSTOM_OPTIONS_OPT_NOT_ARR","ajv.plugins option should be an array, instead got '%s'",500,TypeError),FST_ERR_VERSION_CONSTRAINT_NOT_STR:ie("FST_ERR_VERSION_CONSTRAINT_NOT_STR","Version constraint should be a string.",500,TypeError),FST_ERR_VALIDATION:ie("FST_ERR_VALIDATION","%s",400),FST_ERR_LISTEN_OPTIONS_INVALID:ie("FST_ERR_LISTEN_OPTIONS_INVALID","Invalid listen options: '%s'",500,TypeError),FST_ERR_ERROR_HANDLER_NOT_FN:ie("FST_ERR_ERROR_HANDLER_NOT_FN","Error Handler must be a function",500,TypeError),FST_ERR_CTP_ALREADY_PRESENT:ie("FST_ERR_CTP_ALREADY_PRESENT","Content type parser '%s' already present."),FST_ERR_CTP_INVALID_TYPE:ie("FST_ERR_CTP_INVALID_TYPE","The content type should be a string or a RegExp",500,TypeError),FST_ERR_CTP_EMPTY_TYPE:ie("FST_ERR_CTP_EMPTY_TYPE","The content type cannot be an empty string",500,TypeError),FST_ERR_CTP_INVALID_HANDLER:ie("FST_ERR_CTP_INVALID_HANDLER","The content type handler should be a function",500,TypeError),FST_ERR_CTP_INVALID_PARSE_TYPE:ie("FST_ERR_CTP_INVALID_PARSE_TYPE","The body parser can only parse your data as 'string' or 'buffer', you asked '%s' which is not supported.",500,TypeError),FST_ERR_CTP_BODY_TOO_LARGE:ie("FST_ERR_CTP_BODY_TOO_LARGE","Request body is too large",413,RangeError),FST_ERR_CTP_INVALID_MEDIA_TYPE:ie("FST_ERR_CTP_INVALID_MEDIA_TYPE","Unsupported Media Type: %s",415),FST_ERR_CTP_INVALID_CONTENT_LENGTH:ie("FST_ERR_CTP_INVALID_CONTENT_LENGTH","Request body size did not match Content-Length",400,RangeError),FST_ERR_CTP_EMPTY_JSON_BODY:ie("FST_ERR_CTP_EMPTY_JSON_BODY","Body cannot be empty when content-type is set to 'application/json'",400),FST_ERR_CTP_INSTANCE_ALREADY_STARTED:ie("FST_ERR_CTP_INSTANCE_ALREADY_STARTED",'Cannot call "%s" when fastify instance is already started!',400),FST_ERR_DEC_ALREADY_PRESENT:ie("FST_ERR_DEC_ALREADY_PRESENT","The decorator '%s' has already been added!"),FST_ERR_DEC_DEPENDENCY_INVALID_TYPE:ie("FST_ERR_DEC_DEPENDENCY_INVALID_TYPE","The dependencies of decorator '%s' must be of type Array.",500,TypeError),FST_ERR_DEC_MISSING_DEPENDENCY:ie("FST_ERR_DEC_MISSING_DEPENDENCY","The decorator is missing dependency '%s'."),FST_ERR_DEC_AFTER_START:ie("FST_ERR_DEC_AFTER_START","The decorator '%s' has been added after start!"),FST_ERR_HOOK_INVALID_TYPE:ie("FST_ERR_HOOK_INVALID_TYPE","The hook name must be a string",500,TypeError),FST_ERR_HOOK_INVALID_HANDLER:ie("FST_ERR_HOOK_INVALID_HANDLER","%s hook should be a function, instead got %s",500,TypeError),FST_ERR_HOOK_INVALID_ASYNC_HANDLER:ie("FST_ERR_HOOK_INVALID_ASYNC_HANDLER","Async function has too many arguments. Async hooks should not use the 'done' argument.",500,TypeError),FST_ERR_HOOK_NOT_SUPPORTED:ie("FST_ERR_HOOK_NOT_SUPPORTED","%s hook not supported!",500,TypeError),FST_ERR_MISSING_MIDDLEWARE:ie("FST_ERR_MISSING_MIDDLEWARE","You must register a plugin for handling middlewares, visit fastify.dev/docs/latest/Reference/Middleware/ for more info.",500),FST_ERR_HOOK_TIMEOUT:ie("FST_ERR_HOOK_TIMEOUT","A callback for '%s' hook timed out. You may have forgotten to call 'done' function or to resolve a Promise"),FST_ERR_LOG_INVALID_DESTINATION:ie("FST_ERR_LOG_INVALID_DESTINATION","Cannot specify both logger.stream and logger.file options"),FST_ERR_LOG_INVALID_LOGGER:ie("FST_ERR_LOG_INVALID_LOGGER","Invalid logger object provided. The logger instance should have these functions(s): '%s'.",500,TypeError),FST_ERR_REP_INVALID_PAYLOAD_TYPE:ie("FST_ERR_REP_INVALID_PAYLOAD_TYPE","Attempted to send payload of invalid type '%s'. Expected a string or Buffer.",500,TypeError),FST_ERR_REP_RESPONSE_BODY_CONSUMED:ie("FST_ERR_REP_RESPONSE_BODY_CONSUMED","Response.body is already consumed."),FST_ERR_REP_ALREADY_SENT:ie("FST_ERR_REP_ALREADY_SENT",'Reply was already sent, did you forget to "return reply" in "%s" (%s)?'),FST_ERR_REP_SENT_VALUE:ie("FST_ERR_REP_SENT_VALUE","The only possible value for reply.sent is true.",500,TypeError),FST_ERR_SEND_INSIDE_ONERR:ie("FST_ERR_SEND_INSIDE_ONERR","You cannot use `send` inside the `onError` hook"),FST_ERR_SEND_UNDEFINED_ERR:ie("FST_ERR_SEND_UNDEFINED_ERR","Undefined error has occurred"),FST_ERR_BAD_STATUS_CODE:ie("FST_ERR_BAD_STATUS_CODE","Called reply with an invalid status code: %s"),FST_ERR_BAD_TRAILER_NAME:ie("FST_ERR_BAD_TRAILER_NAME","Called reply.trailer with an invalid header name: %s"),FST_ERR_BAD_TRAILER_VALUE:ie("FST_ERR_BAD_TRAILER_VALUE","Called reply.trailer('%s', fn) with an invalid type: %s. Expected a function."),FST_ERR_FAILED_ERROR_SERIALIZATION:ie("FST_ERR_FAILED_ERROR_SERIALIZATION","Failed to serialize an error. Error: %s. Original error: %s"),FST_ERR_MISSING_SERIALIZATION_FN:ie("FST_ERR_MISSING_SERIALIZATION_FN",'Missing serialization function. Key "%s"'),FST_ERR_MISSING_CONTENTTYPE_SERIALIZATION_FN:ie("FST_ERR_MISSING_CONTENTTYPE_SERIALIZATION_FN",'Missing serialization function. Key "%s:%s"'),FST_ERR_REQ_INVALID_VALIDATION_INVOCATION:ie("FST_ERR_REQ_INVALID_VALIDATION_INVOCATION",'Invalid validation invocation. Missing validation function for HTTP part "%s" nor schema provided.'),FST_ERR_SCH_MISSING_ID:ie("FST_ERR_SCH_MISSING_ID","Missing schema $id property"),FST_ERR_SCH_ALREADY_PRESENT:ie("FST_ERR_SCH_ALREADY_PRESENT","Schema with id '%s' already declared!"),FST_ERR_SCH_CONTENT_MISSING_SCHEMA:ie("FST_ERR_SCH_CONTENT_MISSING_SCHEMA","Schema is missing for the content type '%s'"),FST_ERR_SCH_DUPLICATE:ie("FST_ERR_SCH_DUPLICATE","Schema with '%s' already present!"),FST_ERR_SCH_VALIDATION_BUILD:ie("FST_ERR_SCH_VALIDATION_BUILD","Failed building the validation schema for %s: %s, due to error %s"),FST_ERR_SCH_SERIALIZATION_BUILD:ie("FST_ERR_SCH_SERIALIZATION_BUILD","Failed building the serialization schema for %s: %s, due to error %s"),FST_ERR_SCH_RESPONSE_SCHEMA_NOT_NESTED_2XX:ie("FST_ERR_SCH_RESPONSE_SCHEMA_NOT_NESTED_2XX",'response schemas should be nested under a valid status code, e.g { 2xx: { type: "object" } }'),FST_ERR_HTTP2_INVALID_VERSION:ie("FST_ERR_HTTP2_INVALID_VERSION","HTTP2 is available only from node >= 8.8.1"),FST_ERR_INIT_OPTS_INVALID:ie("FST_ERR_INIT_OPTS_INVALID","Invalid initialization options: '%s'"),FST_ERR_FORCE_CLOSE_CONNECTIONS_IDLE_NOT_AVAILABLE:ie("FST_ERR_FORCE_CLOSE_CONNECTIONS_IDLE_NOT_AVAILABLE","Cannot set forceCloseConnections to 'idle' as your HTTP server does not support closeIdleConnections method"),FST_ERR_DUPLICATED_ROUTE:ie("FST_ERR_DUPLICATED_ROUTE","Method '%s' already declared for route '%s'"),FST_ERR_BAD_URL:ie("FST_ERR_BAD_URL","'%s' is not a valid url component",400,URIError),FST_ERR_ASYNC_CONSTRAINT:ie("FST_ERR_ASYNC_CONSTRAINT","Unexpected error from async constraint",500),FST_ERR_DEFAULT_ROUTE_INVALID_TYPE:ie("FST_ERR_DEFAULT_ROUTE_INVALID_TYPE","The defaultRoute type should be a function",500,TypeError),FST_ERR_INVALID_URL:ie("FST_ERR_INVALID_URL","URL must be a string. Received '%s'",400,TypeError),FST_ERR_ROUTE_OPTIONS_NOT_OBJ:ie("FST_ERR_ROUTE_OPTIONS_NOT_OBJ",'Options for "%s:%s" route must be an object',500,TypeError),FST_ERR_ROUTE_DUPLICATED_HANDLER:ie("FST_ERR_ROUTE_DUPLICATED_HANDLER",'Duplicate handler for "%s:%s" route is not allowed!',500),FST_ERR_ROUTE_HANDLER_NOT_FN:ie("FST_ERR_ROUTE_HANDLER_NOT_FN","Error Handler for %s:%s route, if defined, must be a function",500,TypeError),FST_ERR_ROUTE_MISSING_HANDLER:ie("FST_ERR_ROUTE_MISSING_HANDLER",'Missing handler function for "%s:%s" route.',500),FST_ERR_ROUTE_METHOD_INVALID:ie("FST_ERR_ROUTE_METHOD_INVALID","Provided method is invalid!",500,TypeError),FST_ERR_ROUTE_METHOD_NOT_SUPPORTED:ie("FST_ERR_ROUTE_METHOD_NOT_SUPPORTED","%s method is not supported.",500),FST_ERR_ROUTE_BODY_VALIDATION_SCHEMA_NOT_SUPPORTED:ie("FST_ERR_ROUTE_BODY_VALIDATION_SCHEMA_NOT_SUPPORTED","Body validation schema for %s:%s route is not supported!",500),FST_ERR_ROUTE_BODY_LIMIT_OPTION_NOT_INT:ie("FST_ERR_ROUTE_BODY_LIMIT_OPTION_NOT_INT","'bodyLimit' option must be an integer > 0. Got '%s'",500,TypeError),FST_ERR_ROUTE_REWRITE_NOT_STR:ie("FST_ERR_ROUTE_REWRITE_NOT_STR",'Rewrite url for "%s" needs to be of type "string" but received "%s"',500,TypeError),FST_ERR_REOPENED_CLOSE_SERVER:ie("FST_ERR_REOPENED_CLOSE_SERVER","Fastify has already been closed and cannot be reopened"),FST_ERR_REOPENED_SERVER:ie("FST_ERR_REOPENED_SERVER","Fastify is already listening"),FST_ERR_INSTANCE_ALREADY_LISTENING:ie("FST_ERR_INSTANCE_ALREADY_LISTENING","Fastify instance is already listening. %s"),FST_ERR_PLUGIN_VERSION_MISMATCH:ie("FST_ERR_PLUGIN_VERSION_MISMATCH","fastify-plugin: %s - expected '%s' fastify version, '%s' is installed"),FST_ERR_PLUGIN_NOT_PRESENT_IN_INSTANCE:ie("FST_ERR_PLUGIN_NOT_PRESENT_IN_INSTANCE","The decorator '%s'%s is not present in %s"),FST_ERR_PLUGIN_CALLBACK_NOT_FN:ie("FST_ERR_PLUGIN_CALLBACK_NOT_FN","fastify-plugin: %s",500,TypeError),FST_ERR_PLUGIN_NOT_VALID:ie("FST_ERR_PLUGIN_NOT_VALID","fastify-plugin: %s"),FST_ERR_ROOT_PLG_BOOTED:ie("FST_ERR_ROOT_PLG_BOOTED","fastify-plugin: %s"),FST_ERR_PARENT_PLUGIN_BOOTED:ie("FST_ERR_PARENT_PLUGIN_BOOTED","fastify-plugin: %s"),FST_ERR_PLUGIN_TIMEOUT:ie("FST_ERR_PLUGIN_TIMEOUT","fastify-plugin: %s")};function qae(e,t){return t.cause=e,t}Up.exports=mc;Up.exports.appendStackTrace=qae;Up.exports.AVVIO_ERRORS_MAP={AVV_ERR_CALLBACK_NOT_FN:mc.FST_ERR_PLUGIN_CALLBACK_NOT_FN,AVV_ERR_PLUGIN_NOT_VALID:mc.FST_ERR_PLUGIN_NOT_VALID,AVV_ERR_ROOT_PLG_BOOTED:mc.FST_ERR_ROOT_PLG_BOOTED,AVV_ERR_PARENT_PLG_LOADED:mc.FST_ERR_PARENT_PLUGIN_BOOTED,AVV_ERR_READY_TIMEOUT:mc.FST_ERR_PLUGIN_TIMEOUT,AVV_ERR_PLUGIN_EXEC_TIMEOUT:mc.FST_ERR_PLUGIN_TIMEOUT}});var na=b((Qze,qF)=>{"use strict";var Vae=["onRoute","onRegister","onReady","onListen","preClose","onClose"],OF=["onTimeout","onRequest","preParsing","preValidation","preSerialization","preHandler","onSend","onResponse","onError","onRequestAbort"],Yae=OF.concat(Vae),{FST_ERR_HOOK_INVALID_TYPE:$ae,FST_ERR_HOOK_INVALID_HANDLER:Gae,FST_ERR_SEND_UNDEFINED_ERR:Hp,FST_ERR_HOOK_TIMEOUT:jae,FST_ERR_HOOK_NOT_SUPPORTED:Jae,AVVIO_ERRORS_MAP:kF,appendStackTrace:FF}=Mr(),{kChildren:Hf,kHooks:MF,kRequestPayloadStream:LF}=mr();function qf(){this.onRequest=[],this.preParsing=[],this.preValidation=[],this.preSerialization=[],this.preHandler=[],this.onResponse=[],this.onSend=[],this.onError=[],this.onRoute=[],this.onRegister=[],this.onReady=[],this.onListen=[],this.onTimeout=[],this.onRequestAbort=[],this.preClose=[]}qf.prototype=Object.create(null);qf.prototype.validate=function(e,t){if(typeof e!="string")throw new $ae;if(Array.isArray(this[e])===!1)throw new Jae(e);if(typeof t!="function")throw new Gae(e,Object.prototype.toString.call(t))};qf.prototype.add=function(e,t){this.validate(e,t),this[e].push(t)};function Wae(e){let t=new qf;return t.onRequest=e.onRequest.slice(),t.preParsing=e.preParsing.slice(),t.preValidation=e.preValidation.slice(),t.preSerialization=e.preSerialization.slice(),t.preHandler=e.preHandler.slice(),t.onSend=e.onSend.slice(),t.onResponse=e.onResponse.slice(),t.onError=e.onError.slice(),t.onRoute=e.onRoute.slice(),t.onRegister=e.onRegister.slice(),t.onTimeout=e.onTimeout.slice(),t.onRequestAbort=e.onRequestAbort.slice(),t.onReady=[],t.onListen=[],t.preClose=[],t}function PF(e,t,r,n){let s=r[MF][e],i=0,o=0;c();function a(l){if(l){l.code==="AVV_ERR_READY_TIMEOUT"?l=FF(l,new jae(e)):l=kF[l.code]!=null?FF(l,new kF[l.code](l.message)):l,n(l);return}n()}function c(l){if(l){a(l);return}if(i===s.length&&o===r[Hf].length){i===0&&o===0?a():t(function(f,d){a(f),d(f)});return}if(i===s.length&&o{"use strict";var ice=require("node:http"),oce=require("node:https"),ace=require("node:dns"),{FSTDEP011:VF}=mi(),{kState:Pr,kOptions:cce,kServerBindings:uce}=mr(),{onListenHookRunner:qp}=na(),{FST_ERR_HTTP2_INVALID_VERSION:lce,FST_ERR_REOPENED_CLOSE_SERVER:GF,FST_ERR_REOPENED_SERVER:jF,FST_ERR_LISTEN_OPTIONS_INVALID:Ace}=Mr();g1.exports.createServer=fce;g1.exports.compileValidateHTTPVersion=hce;function JF(e){return`Server listening at ${e}`}function fce(e,t){let r=zF(e,t);function n(s,...i){let o=i.slice(-1).pop(),a=Object.prototype.toString.call(arguments[0]);if(arguments.length===0)s=p1([]);else if(arguments.length>0&&a!=="[object Object]"&&a!=="[object Function]")VF(),s=p1(Array.from(arguments)),o=s.cb;else if(i.length>1){VF();let u=s.path?[s.path]:[s.port??0,s.host??"localhost"];Object.assign(s,p1([...u,...i]))}else s.cb=o;if(s.signal){if(typeof s.signal.on!="function"&&typeof s.signal.addEventListener!="function")throw new Ace("Invalid options.signal");if(s.signal.aborted)this.close();else{let u=()=>{this.close()};s.signal.addEventListener("abort",u,{once:!0})}}let c;if(s.path==null?c=s.host??"localhost":c=s.host,(Object.prototype.hasOwnProperty.call(s,"host")===!1||s.host==null)&&(s.host=c),c==="localhost"?s.cb=(u,l)=>{if(u){o(u,l);return}YF.call(this,r,t,e,s,()=>{this[Pr].listening=!0,o(null,l),qp(this)})}:s.cb=(u,l)=>{if(u){o(u,l);return}this[Pr].listening=!0,o(null,l),qp(this)},o===void 0)return dce.call(this,r,s).then(l=>new Promise((A,f)=>{c==="localhost"?YF.call(this,r,t,e,s,()=>{this[Pr].listening=!0,A(l),qp(this)}):(A(l),qp(this))}));this.ready(WF.call(this,r,s))}return{server:r,listen:n}}function YF(e,t,r,n,s){this[Pr].listening=!1,ace.lookup(n.host,{all:!0},(i,o)=>{if(i){s();return}let a=e.listening&&r.serverFactory,c=0,u=0;if(!a){let A=e.address();for(let f of o)if(f.address!==A.address){c++;let d=Object.assign({},n,{host:f.address,port:A.port,cb:C=>{u++,C||this[uce].push(h),u===c&&s()}}),h=zF(r,t),p=()=>{h.close(()=>{}),r.forceCloseConnections==="idle"?h.closeIdleConnections():typeof h.closeAllConnections=="function"&&r.forceCloseConnections&&h.closeAllConnections()};h.on("upgrade",e.emit.bind(e,"upgrade")),e.on("unref",p),e.on("close",p),e.on("error",p),this[Pr].listening=!1,WF.call(this,h,d)()}}if(c===0){s();return}let l=e.unref;e.unref=function(){l.call(e),e.emit("unref")}})}function WF(e,t){let r=n=>{if(e.removeListener("error",r),e.removeListener("listening",r),n)this[Pr].listening=!1,t.cb(n,null);else{let s=XF.call(this,e,t.listenTextResolver||JF);t.cb(null,s)}};return n=>{if(n!=null)return t.cb(n);if(this[Pr].listening&&this[Pr].closing)return t.cb(new GF,null);if(this[Pr].listening)return t.cb(new jF,null);e.once("error",r),this[Pr].closing||(e.once("listening",r),e.listen(t),this[Pr].listening=!0)}}function dce(e,t){return this[Pr].listening&&this[Pr].closing?Promise.reject(new GF):this[Pr].listening?Promise.reject(new jF):this.ready().then(()=>{let r,n;function s(){e.removeListener("error",r),e.removeListener("listening",n)}let i=new Promise((a,c)=>{r=u=>{s(),this[Pr].listening=!1,c(u)},e.once("error",r)}),o=new Promise((a,c)=>{n=()=>{s(),this[Pr].listening=!0,a(XF.call(this,e,t.listenTextResolver||JF))},e.once("listening",n)});return e.listen(t),Promise.race([i,o])})}function hce(e){let t=!1,r=new Map;return e.serverFactory&&(t=!0),e.http2?(r.set("2.0",!0),e.https&&e.https.allowHTTP1===!0&&(r.set("1.1",!0),r.set("1.0",!0))):(r.set("1.1",!0),r.set("1.0",!0)),function(s){return t||r.has(s)}}function zF(e,t){let r=null,n=e.https===!0?{}:e.https;return e.serverFactory?r=e.serverFactory(t,e):e.http2?(typeof n=="object"?r=$F().createSecureServer(n,t):r=$F().createServer(t),r.on("session",gce(e.http2SessionTimeout))):(n?r=oce.createServer(n,t):r=ice.createServer(e.http,t),r.keepAliveTimeout=e.keepAliveTimeout,r.requestTimeout=e.requestTimeout,e.maxRequestsPerSocket>0&&(r.maxRequestsPerSocket=e.maxRequestsPerSocket)),e.serverFactory||r.setTimeout(e.connectionTimeout),r}function p1(e){if(e.length===0)return{port:0,host:"localhost"};let r={cb:typeof e[e.length-1]=="function"?e.pop():void 0},n=e[0],s=e.length,i=e[s-1];return typeof n=="string"&&isNaN(n)?(r.path=n,r.backlog=s>1?i:void 0):(r.port=s>=1&&Number.isInteger(n)?n:pce(n),r.host=s>=2&&e[1]?e[1]:"localhost",r.backlog=s>=3?e[2]:void 0),r}function pce(e){let t=Number(e);return t>=0&&!Number.isNaN(t)&&Number.isInteger(t)?t:0}function XF(e,t){let r=e.address(),n=typeof r=="string";n||(r.address.indexOf(":")===-1?r=r.address+":"+r.port:r="["+r.address+"]:"+r.port),r=(n?"":"http"+(this[cce].https?"s":"")+"://")+r;let s=t(r);return this.log.info(s),r}function $F(){try{return require("node:http2")}catch{throw new lce}}function gce(e){return function(t){t.setTimeout(e,mce)}}function mce(){this.close()}});var C1=b((wze,eL)=>{"use strict";var{kSchemaHeaders:$p,kSchemaParams:m1,kSchemaQuerystring:E1,kSchemaBody:Ec,kSchemaResponse:ZF}=mr(),Ece=/^[1-5]{1}[0-9]{2}$|^[1-5]xx$|^default$/,{FST_ERR_SCH_RESPONSE_SCHEMA_NOT_NESTED_2XX:Cce}=Mr(),{FSTWRN001:Vp}=mi();function yce(e,t){if(!e.schema||!e.schema.response)return;let{method:r,url:n}=e.config||{};e[ZF]=Object.keys(e.schema.response).reduce(function(s,i){let o=e.schema.response[i];if(i=i.toLowerCase(),!Ece.exec(i))throw new Cce;if(o.content){let a={};for(let c of Object.keys(o.content)){let u=o.content[c].schema;a[c]=t({schema:u,url:n,method:r,httpStatus:i,contentType:c})}s[i]=a}else s[i]=t({schema:o,url:n,method:r,httpStatus:i});return s},{})}function Ice(e,t,r){let{schema:n}=e;if(!n)return;let{method:s,url:i}=e.config||{},o=n.headers;if(o&&(r||Object.getPrototypeOf(o)!==Object.prototype))e[$p]=t({schema:o,method:s,url:i,httpPart:"headers"});else if(o){let a={};Object.keys(o).forEach(c=>{a[c]=o[c]}),a.required instanceof Array&&(a.required=a.required.map(c=>c.toLowerCase())),o.properties&&(a.properties={},Object.keys(o.properties).forEach(c=>{a.properties[c.toLowerCase()]=o.properties[c]})),e[$p]=t({schema:a,method:s,url:i,httpPart:"headers"})}else Object.prototype.hasOwnProperty.call(n,"headers")&&Vp("headers",s,i);if(n.body){let a=n.body.content;if(a){let c={};for(let u of Object.keys(a)){let l=a[u].schema;c[u]=t({schema:l,method:s,url:i,httpPart:"body",contentType:u})}e[Ec]=c}else e[Ec]=t({schema:n.body,method:s,url:i,httpPart:"body"})}else Object.prototype.hasOwnProperty.call(n,"body")&&Vp("body",s,i);n.querystring?e[E1]=t({schema:n.querystring,method:s,url:i,httpPart:"querystring"}):Object.prototype.hasOwnProperty.call(n,"querystring")&&Vp("querystring",s,i),n.params?e[m1]=t({schema:n.params,method:s,url:i,httpPart:"params"}):Object.prototype.hasOwnProperty.call(n,"params")&&Vp("params",s,i)}function Yp(e,t,r){let n=t[r]===void 0,s=e&&e(n?null:t[r]);if(s?.then)return s.then(o=>i(o)).catch(o=>o);return i(s);function i(o){return o===!1?e.errors:o&&o.error?o.error:(o&&o.value&&(t[r]=o.value),!1)}}function Gp(e,t,r){let n=r===void 0;if(n||!r.skipParams){let i=Yp(e[m1],t,"params");if(i)return typeof i.then!="function"?sa(i,"params",e.schemaErrorFormatter):bce(i,e,t)}if(n||!r.skipBody){let i=null;if(typeof e[Ec]=="function")i=e[Ec];else if(e[Ec]){let a=t.headers["content-type"]?.split(";",1)[0],c=e[Ec][a];c&&(i=c)}let o=Yp(i,t,"body");if(o)return typeof o.then!="function"?sa(o,"body",e.schemaErrorFormatter):Bce(o,e,t)}if(n||!r.skipQuery){let i=Yp(e[E1],t,"query");if(i)return typeof i.then!="function"?sa(i,"querystring",e.schemaErrorFormatter):xce(i,e,t)}let s=Yp(e[$p],t,"headers");return s?typeof s.then!="function"?sa(s,"headers",e.schemaErrorFormatter):vce(s,e,t):!1}function bce(e,t,r){return e.then(n=>n?sa(n,"params",t.schemaErrorFormatter):Gp(t,r,{skipParams:!0}))}function Bce(e,t,r){return e.then(n=>n?sa(n,"body",t.schemaErrorFormatter):Gp(t,r,{skipParams:!0,skipBody:!0}))}function xce(e,t,r){return e.then(n=>n?sa(n,"querystring",t.schemaErrorFormatter):Gp(t,r,{skipParams:!0,skipBody:!0,skipQuery:!0}))}function vce(e,t,r){return e.then(n=>n?sa(n,"headers",t.schemaErrorFormatter):!1)}function sa(e,t,r){if(e instanceof Error)return e.statusCode=e.statusCode||400,e.code=e.code||"FST_ERR_VALIDATION",e.validationContext=e.validationContext||t,e;let n=r(e,t);return n.statusCode=n.statusCode||400,n.code=n.code||"FST_ERR_VALIDATION",n.validation=e,n.validationContext=t,n}eL.exports={symbols:{bodySchema:Ec,querystringSchema:E1,responseSchema:ZF,paramsSchema:m1,headersSchema:$p},compileSchemasForValidation:Ice,compileSchemasForSerialization:yce,validate:Gp}});var y1=b((Sze,rL)=>{"use strict";var{kReplyIsError:tL,kReplyHijacked:Qce}=mr();function Tce(e,t){e.then(function(r){if(t[Qce]!==!0&&(r!==void 0||t.sent===!1&&t.raw.headersSent===!1&&t.request.raw.aborted===!1))try{t.send(r)}catch(n){t[tL]=!0,t.send(n)}},function(r){if(t.sent===!0){t.log.error({err:r},"Promise errored, but reply.sent = true was set");return}t[tL]=!0;try{t.send(r)}catch(n){t.send(n)}})}rL.exports=Tce});var x1=b((_ze,B1)=>{"use strict";var{validate:wce}=C1(),{preValidationHookRunner:Sce,preHandlerHookRunner:_ce}=na(),Rce=y1(),{kReplyIsError:jp,kRouteContext:oa}=mr();function Dce(e,t,r){if(r.sent===!0)return;if(e!=null){r[jp]=!0,r.send(e);return}let n=t.raw.method,s=t.headers,i=t[oa];if(n==="GET"||n==="HEAD"){ia(t,r);return}let o=s["content-type"];if(n==="POST"||n==="PUT"||n==="PATCH"||n==="TRACE"||n==="SEARCH"||n==="PROPFIND"||n==="PROPPATCH"||n==="LOCK"||n==="COPY"||n==="MOVE"||n==="MKCOL"||n==="REPORT"||n==="MKCALENDAR"){o===void 0?s["transfer-encoding"]===void 0&&(s["content-length"]==="0"||s["content-length"]===void 0)?ia(t,r):i.contentTypeParser.run("",ia,t,r):i.contentTypeParser.run(o,ia,t,r);return}if(n==="OPTIONS"||n==="DELETE"){o!==void 0&&(s["transfer-encoding"]!==void 0||s["content-length"]!==void 0)?i.contentTypeParser.run(o,ia,t,r):ia(t,r);return}ia(t,r)}function ia(e,t){try{e[oa].preValidation!==null?Sce(e[oa].preValidation,e,t,I1):I1(null,e,t)}catch(r){I1(r,e,t)}}function I1(e,t,r){if(r.sent===!0)return;if(e!=null){r[jp]=!0,r.send(e);return}let n=wce(r[oa],t);if(n&&typeof n.then=="function"||!1){let i=nL.bind(null,t,r);n.then(i,i)}else nL(t,r,n)}function nL(e,t,r){if(r){if(t[oa].attachValidation===!1){t.send(r);return}t.request.validationError=r}e[oa].preHandler!==null?_ce(e[oa].preHandler,e,t,b1):b1(null,e,t)}function b1(e,t,r){if(r.sent)return;if(e!=null){r[jp]=!0,r.send(e);return}let n;try{n=t[oa].handler(t,r)}catch(s){r[jp]=!0,r.send(s);return}n!==void 0&&(n!==null&&typeof n.then=="function"?Rce(n,r):r.send(n))}B1.exports=Dce;B1.exports[Symbol.for("internals")]={handler:ia,preHandlerCallback:b1}});var iL=b((Rze,sL)=>{"use strict";function Ju(){}var Nce={fatal:Ju,error:Ju,warn:Ju,info:Ju,debug:Ju,trace:Ju};Object.defineProperty(sL,"exports",{get(){return Object.create(Nce)}})});var Q1=b((Dze,cL)=>{"use strict";var Yf=e=>e&&typeof e.message=="string",v1=e=>{if(!e)return;let t=e.cause;if(typeof t=="function"){let r=e.cause();return Yf(r)?r:void 0}else return Yf(t)?t:void 0},oL=(e,t)=>{if(!Yf(e))return"";let r=e.stack||"";if(t.has(e))return r+` +causes have become circular...`;let n=v1(e);return n?(t.add(e),r+` +caused by: `+oL(n,t)):r},kce=e=>oL(e,new Set),aL=(e,t,r)=>{if(!Yf(e))return"";let n=r?"":e.message||"";if(t.has(e))return n+": ...";let s=v1(e);if(s){t.add(e);let i=typeof e.cause=="function";return n+(i?"":": ")+aL(s,t,i)}else return n},Fce=e=>aL(e,new Set);cL.exports={isErrorLike:Yf,getErrorCause:v1,stackWithCauses:kce,messageWithCauses:Fce}});var T1=b((Nze,lL)=>{"use strict";var Lce=Symbol("circular-ref-tag"),Jp=Symbol("pino-raw-err-ref"),uL=Object.create({},{type:{enumerable:!0,writable:!0,value:void 0},message:{enumerable:!0,writable:!0,value:void 0},stack:{enumerable:!0,writable:!0,value:void 0},aggregateErrors:{enumerable:!0,writable:!0,value:void 0},raw:{enumerable:!1,get:function(){return this[Jp]},set:function(e){this[Jp]=e}}});Object.defineProperty(uL,Jp,{writable:!0,value:{}});lL.exports={pinoErrProto:uL,pinoErrorSymbols:{seen:Lce,rawSymbol:Jp}}});var dL=b((kze,fL)=>{"use strict";fL.exports=S1;var{messageWithCauses:Oce,stackWithCauses:Mce,isErrorLike:AL}=Q1(),{pinoErrProto:Pce,pinoErrorSymbols:Uce}=T1(),{seen:w1}=Uce,{toString:Hce}=Object.prototype;function S1(e){if(!AL(e))return e;e[w1]=void 0;let t=Object.create(Pce);t.type=Hce.call(e.constructor)==="[object Function]"?e.constructor.name:e.name,t.message=Oce(e),t.stack=Mce(e),Array.isArray(e.errors)&&(t.aggregateErrors=e.errors.map(r=>S1(r)));for(let r in e)if(t[r]===void 0){let n=e[r];AL(n)?r!=="cause"&&!Object.prototype.hasOwnProperty.call(n,w1)&&(t[r]=S1(n)):t[r]=n}return delete e[w1],t.raw=e,t}});var pL=b((Fze,hL)=>{"use strict";hL.exports=zp;var{isErrorLike:_1}=Q1(),{pinoErrProto:qce,pinoErrorSymbols:Vce}=T1(),{seen:Wp}=Vce,{toString:Yce}=Object.prototype;function zp(e){if(!_1(e))return e;e[Wp]=void 0;let t=Object.create(qce);t.type=Yce.call(e.constructor)==="[object Function]"?e.constructor.name:e.name,t.message=e.message,t.stack=e.stack,Array.isArray(e.errors)&&(t.aggregateErrors=e.errors.map(r=>zp(r))),_1(e.cause)&&!Object.prototype.hasOwnProperty.call(e.cause,Wp)&&(t.cause=zp(e.cause));for(let r in e)if(t[r]===void 0){let n=e[r];_1(n)?Object.prototype.hasOwnProperty.call(n,Wp)||(t[r]=zp(n)):t[r]=n}return delete e[Wp],t.raw=e,t}});var CL=b((Lze,EL)=>{"use strict";EL.exports={mapHttpRequest:$ce,reqSerializer:mL};var R1=Symbol("pino-raw-req-ref"),gL=Object.create({},{id:{enumerable:!0,writable:!0,value:""},method:{enumerable:!0,writable:!0,value:""},url:{enumerable:!0,writable:!0,value:""},query:{enumerable:!0,writable:!0,value:""},params:{enumerable:!0,writable:!0,value:""},headers:{enumerable:!0,writable:!0,value:{}},remoteAddress:{enumerable:!0,writable:!0,value:""},remotePort:{enumerable:!0,writable:!0,value:""},raw:{enumerable:!1,get:function(){return this[R1]},set:function(e){this[R1]=e}}});Object.defineProperty(gL,R1,{writable:!0,value:{}});function mL(e){let t=e.info||e.socket,r=Object.create(gL);if(r.id=typeof e.id=="function"?e.id():e.id||(e.info?e.info.id:void 0),r.method=e.method,e.originalUrl)r.url=e.originalUrl;else{let n=e.path;r.url=typeof n=="string"?n:e.url?e.url.path||e.url:void 0}return e.query&&(r.query=e.query),e.params&&(r.params=e.params),r.headers=e.headers,r.remoteAddress=t&&t.remoteAddress,r.remotePort=t&&t.remotePort,r.raw=e.raw||e,r}function $ce(e){return{req:mL(e)}}});var BL=b((Oze,bL)=>{"use strict";bL.exports={mapHttpResponse:Gce,resSerializer:IL};var D1=Symbol("pino-raw-res-ref"),yL=Object.create({},{statusCode:{enumerable:!0,writable:!0,value:0},headers:{enumerable:!0,writable:!0,value:""},raw:{enumerable:!1,get:function(){return this[D1]},set:function(e){this[D1]=e}}});Object.defineProperty(yL,D1,{writable:!0,value:{}});function IL(e){let t=Object.create(yL);return t.statusCode=e.headersSent?e.statusCode:null,t.headers=e.getHeaders?e.getHeaders():e._headers,t.raw=e,t}function Gce(e){return{res:IL(e)}}});var k1=b((Mze,xL)=>{"use strict";var N1=dL(),jce=pL(),Xp=CL(),Kp=BL();xL.exports={err:N1,errWithCause:jce,mapHttpRequest:Xp.mapHttpRequest,mapHttpResponse:Kp.mapHttpResponse,req:Xp.reqSerializer,res:Kp.resSerializer,wrapErrorSerializer:function(t){return t===N1?t:function(n){return t(N1(n))}},wrapRequestSerializer:function(t){return t===Xp.reqSerializer?t:function(n){return t(Xp.reqSerializer(n))}},wrapResponseSerializer:function(t){return t===Kp.resSerializer?t:function(n){return t(Kp.resSerializer(n))}}}});var F1=b((Pze,vL)=>{"use strict";function Jce(e,t){return t}vL.exports=function(){let t=Error.prepareStackTrace;Error.prepareStackTrace=Jce;let r=new Error().stack;if(Error.prepareStackTrace=t,!Array.isArray(r))return;let n=r.slice(2),s=[];for(let i of n)i&&s.push(i.getFileName());return s}});var TL=b((Uze,QL)=>{"use strict";QL.exports=Wce;function Wce(e={}){let{ERR_PATHS_MUST_BE_STRINGS:t=()=>"fast-redact - Paths must be (non-empty) strings",ERR_INVALID_PATH:r=n=>`fast-redact \u2013 Invalid path (${n})`}=e;return function({paths:s}){s.forEach(i=>{if(typeof i!="string")throw Error(t());try{if(/〇/.test(i))throw Error();let o=(i[0]==="["?"":".")+i.replace(/^\*/,"\u3007").replace(/\.\*/g,".\u3007").replace(/\[\*\]/g,"[\u3007]");if(/\n|\r|;/.test(o)||/\/\*/.test(o))throw Error();Function(` + 'use strict' + const o = new Proxy({}, { get: () => o, set: () => { throw Error() } }); + const \u3007 = null; + o${o} + if ([o${o}].length !== 1) throw Error()`)()}catch{throw Error(r(i))}})}}});var Zp=b((Hze,wL)=>{"use strict";wL.exports=/[^.[\]]+|\[((?:.)*?)\]/g});var _L=b((qze,SL)=>{"use strict";var zce=Zp();SL.exports=Xce;function Xce({paths:e}){let t=[];var r=0;let n=e.reduce(function(s,i,o){var a=i.match(zce).map(l=>l.replace(/'|"|`/g,""));let c=i[0]==="[";a=a.map(l=>l[0]==="["?l.substr(1,l.length-2):l);let u=a.indexOf("*");if(u>-1){let l=a.slice(0,u),A=l.join("."),f=a.slice(u+1,a.length),d=f.length>0;r++,t.push({before:l,beforeStr:A,after:f,nested:d})}else s[i]={path:a,val:void 0,precensored:!1,circle:"",escPath:JSON.stringify(i),leadingBracket:c};return s},{});return{wildcards:t,wcLen:r,secret:n}}});var DL=b((Vze,RL)=>{"use strict";var Kce=Zp();RL.exports=Zce;function Zce({secret:e,serialize:t,wcLen:r,strict:n,isCensorFct:s,censorFctTakesPath:i},o){let a=Function("o",` + if (typeof o !== 'object' || o == null) { + ${nue(n,t)} + } + const { censor, secret } = this + const originalSecret = {} + const secretKeys = Object.keys(secret) + for (var i = 0; i < secretKeys.length; i++) { + originalSecret[secretKeys[i]] = secret[secretKeys[i]] + } + + ${eue(e,s,i)} + this.compileRestore() + ${tue(r>0,s,i)} + this.secret = originalSecret + ${rue(t)} + `).bind(o);return a.state=o,t===!1&&(a.restore=c=>o.restore(c)),a}function eue(e,t,r){return Object.keys(e).map(n=>{let{escPath:s,leadingBracket:i,path:o}=e[n],a=i?1:0,c=i?"":".",u=[];for(var l;(l=Kce.exec(n))!==null;){let[,h]=l,{index:p,input:C}=l;p>a&&u.push(C.substring(0,p-(h?0:1)))}var A=u.map(h=>`o${c}${h}`).join(" && ");A.length===0?A+=`o${c}${n} != null`:A+=` && o${c}${n} != null`;let f=` + switch (true) { + ${u.reverse().map(h=>` + case o${c}${h} === censor: + secret[${s}].circle = ${JSON.stringify(h)} + break + `).join(` +`)} + } + `,d=r?`val, ${JSON.stringify(o)}`:"val";return` + if (${A}) { + const val = o${c}${n} + if (val === censor) { + secret[${s}].precensored = true + } else { + secret[${s}].val = val + o${c}${n} = ${t?`censor(${d})`:"censor"} + ${f} + } + } + `}).join(` +`)}function tue(e,t,r){return e===!0?` + { + const { wildcards, wcLen, groupRedact, nestedRedact } = this + for (var i = 0; i < wcLen; i++) { + const { before, beforeStr, after, nested } = wildcards[i] + if (nested === true) { + secret[beforeStr] = secret[beforeStr] || [] + nestedRedact(secret[beforeStr], o, before, after, censor, ${t}, ${r}) + } else secret[beforeStr] = groupRedact(o, before, censor, ${t}, ${r}) + } + } + `:""}function rue(e){return e===!1?"return o":` + var s = this.serialize(o) + this.restore(o) + return s + `}function nue(e,t){return e===!0?"throw Error('fast-redact: primitives cannot be redacted')":t===!1?"return o":"return this.serialize(o)"}});var O1=b((Yze,FL)=>{"use strict";FL.exports={groupRedact:iue,groupRestore:sue,nestedRedact:aue,nestedRestore:oue};function sue({keys:e,values:t,target:r}){if(r==null||typeof r=="string")return;let n=e.length;for(var s=0;s0;o--)i=i[n[o]];i[n[0]]=s}}function aue(e,t,r,n,s,i,o){let a=NL(t,r);if(a==null)return;let c=Object.keys(a),u=c.length;for(var l=0;l{"use strict";var{groupRestore:lue,nestedRestore:Aue}=O1();LL.exports=fue;function fue(){return function(){if(this.restore){this.restore.state.secret=this.secret;return}let{secret:t,wcLen:r}=this,n=Object.keys(t),s=due(t,n),i=r>0,o=i?{secret:t,groupRestore:lue,nestedRestore:Aue}:{secret:t};this.restore=Function("o",hue(s,n,i)).bind(o),this.restore.state=o}}function due(e,t){return t.map(r=>{let{circle:n,escPath:s,leadingBracket:i}=e[r],a=n?`o.${n} = secret[${s}].val`:`o${i?"":"."}${r} = secret[${s}].val`,c=`secret[${s}].val = undefined`;return` + if (secret[${s}].val !== undefined) { + try { ${a} } catch (e) {} + ${c} + } + `}).join("")}function hue(e,t,r){return` + const secret = this.secret + ${r===!0?` + const keys = Object.keys(secret) + const len = keys.length + for (var i = len - 1; i >= ${t.length}; i--) { + const k = keys[i] + const o = secret[k] + if (o) { + if (o.flat === true) this.groupRestore(o) + else this.nestedRestore(o) + secret[k] = null + } + } + `:""} + ${e} + return o + `}});var PL=b((Gze,ML)=>{"use strict";ML.exports=pue;function pue(e){let{secret:t,censor:r,compileRestore:n,serialize:s,groupRedact:i,nestedRedact:o,wildcards:a,wcLen:c}=e,u=[{secret:t,censor:r,compileRestore:n}];return s!==!1&&u.push({serialize:s}),c>0&&u.push({groupRedact:i,nestedRedact:o,wildcards:a,wcLen:c}),Object.assign(...u)}});var qL=b((jze,HL)=>{"use strict";var UL=TL(),gue=_L(),mue=DL(),Eue=OL(),{groupRedact:Cue,nestedRedact:yue}=O1(),Iue=PL(),bue=Zp(),Bue=UL(),M1=e=>e;M1.restore=M1;var xue="[REDACTED]";P1.rx=bue;P1.validator=UL;HL.exports=P1;function P1(e={}){let t=Array.from(new Set(e.paths||[])),r="serialize"in e&&(e.serialize===!1||typeof e.serialize=="function")?e.serialize:JSON.stringify,n=e.remove;if(n===!0&&r!==JSON.stringify)throw Error("fast-redact \u2013 remove option may only be set when serializer is JSON.stringify");let s=n===!0?void 0:"censor"in e?e.censor:xue,i=typeof s=="function",o=i&&s.length>1;if(t.length===0)return r||M1;Bue({paths:t,serialize:r,censor:s});let{wildcards:a,wcLen:c,secret:u}=gue({paths:t,censor:s}),l=Eue(),A="strict"in e?e.strict:!0;return mue({secret:u,wcLen:c,serialize:r,strict:A,isCensorFct:i,censorFctTakesPath:o},Iue({secret:u,censor:s,compileRestore:l,serialize:r,groupRedact:Cue,nestedRedact:yue,wildcards:a,wcLen:c}))}});var Wu=b((Jze,VL)=>{"use strict";var vue=Symbol("pino.setLevel"),Que=Symbol("pino.getLevel"),Tue=Symbol("pino.levelVal"),wue=Symbol("pino.levelComp"),Sue=Symbol("pino.useLevelLabels"),_ue=Symbol("pino.useOnlyCustomLevels"),Rue=Symbol("pino.mixin"),Due=Symbol("pino.lsCache"),Nue=Symbol("pino.chindings"),kue=Symbol("pino.asJson"),Fue=Symbol("pino.write"),Lue=Symbol("pino.redactFmt"),Oue=Symbol("pino.time"),Mue=Symbol("pino.timeSliceIndex"),Pue=Symbol("pino.stream"),Uue=Symbol("pino.stringify"),Hue=Symbol("pino.stringifySafe"),que=Symbol("pino.stringifiers"),Vue=Symbol("pino.end"),Yue=Symbol("pino.formatOpts"),$ue=Symbol("pino.messageKey"),Gue=Symbol("pino.errorKey"),jue=Symbol("pino.nestedKey"),Jue=Symbol("pino.nestedKeyStr"),Wue=Symbol("pino.mixinMergeStrategy"),zue=Symbol("pino.msgPrefix"),Xue=Symbol("pino.wildcardFirst"),Kue=Symbol.for("pino.serializers"),Zue=Symbol.for("pino.formatters"),ele=Symbol.for("pino.hooks"),tle=Symbol.for("pino.metadata");VL.exports={setLevelSym:vue,getLevelSym:Que,levelValSym:Tue,levelCompSym:wue,useLevelLabelsSym:Sue,mixinSym:Rue,lsCacheSym:Due,chindingsSym:Nue,asJsonSym:kue,writeSym:Fue,serializersSym:Kue,redactFmtSym:Lue,timeSym:Oue,timeSliceIndexSym:Mue,streamSym:Pue,stringifySym:Uue,stringifySafeSym:Hue,stringifiersSym:que,endSym:Vue,formatOptsSym:Yue,messageKeySym:$ue,errorKeySym:Gue,nestedKeySym:jue,wildcardFirstSym:Xue,needsMetadataGsym:tle,useOnlyCustomLevelsSym:_ue,formattersSym:Zue,hooksSym:ele,nestedKeyStrSym:Jue,mixinMergeStrategySym:Wue,msgPrefixSym:zue}});var q1=b((Wze,jL)=>{"use strict";var H1=qL(),{redactFmtSym:rle,wildcardFirstSym:eg}=Wu(),{rx:U1,validator:nle}=H1,YL=nle({ERR_PATHS_MUST_BE_STRINGS:()=>"pino \u2013 redacted paths must be strings",ERR_INVALID_PATH:e=>`pino \u2013 redact paths array contains an invalid path (${e})`}),$L="[Redacted]",GL=!1;function sle(e,t){let{paths:r,censor:n}=ile(e),s=r.reduce((a,c)=>{U1.lastIndex=0;let u=U1.exec(c),l=U1.exec(c),A=u[1]!==void 0?u[1].replace(/^(?:"|'|`)(.*)(?:"|'|`)$/,"$1"):u[0];if(A==="*"&&(A=eg),l===null)return a[A]=null,a;if(a[A]===null)return a;let{index:f}=l,d=`${c.substr(f,c.length-1)}`;return a[A]=a[A]||[],A!==eg&&a[A].length===0&&a[A].push(...a[eg]||[]),A===eg&&Object.keys(a).forEach(function(h){a[h]&&a[h].push(d)}),a[A].push(d),a},{}),i={[rle]:H1({paths:r,censor:n,serialize:t,strict:GL})},o=(...a)=>t(typeof n=="function"?n(...a):n);return[...Object.keys(s),...Object.getOwnPropertySymbols(s)].reduce((a,c)=>{if(s[c]===null)a[c]=u=>o(u,[c]);else{let u=typeof n=="function"?(l,A)=>n(l,[c,...A]):n;a[c]=H1({paths:s[c],censor:u,serialize:t,strict:GL})}return a},i)}function ile(e){if(Array.isArray(e))return e={paths:e,censor:$L},YL(e),e;let{paths:t,censor:r=$L,remove:n}=e;if(Array.isArray(t)===!1)throw Error("pino \u2013 redact must contain an array of strings");return n===!0&&(r=void 0),YL({paths:t,censor:r}),{paths:t,censor:r}}jL.exports=sle});var WL=b((zze,JL)=>{"use strict";var ole=()=>"",ale=()=>`,"time":${Date.now()}`,cle=()=>`,"time":${Math.round(Date.now()/1e3)}`,ule=()=>`,"time":"${new Date(Date.now()).toISOString()}"`;JL.exports={nullTime:ole,epochTime:ale,unixTime:cle,isoTime:ule}});var XL=b((Xze,zL)=>{"use strict";function lle(e){try{return JSON.stringify(e)}catch{return'"[Circular]"'}}zL.exports=Ale;function Ale(e,t,r){var n=r&&r.stringify||lle,s=1;if(typeof e=="object"&&e!==null){var i=t.length+s;if(i===1)return e;var o=new Array(i);o[0]=n(e);for(var a=1;a-1?A:0,e.charCodeAt(d+1)){case 100:case 102:if(l>=c||t[l]==null)break;A=c||t[l]==null)break;A=c||t[l]===void 0)break;A",A=d+2,d++;break}u+=n(t[l]),A=d+2,d++;break;case 115:if(l>=c)break;A{"use strict";if(typeof SharedArrayBuffer<"u"&&typeof Atomics<"u"){let t=function(r){if((r>0&&r<1/0)===!1)throw typeof r!="number"&&typeof r!="bigint"?TypeError("sleep: ms must be a number"):RangeError("sleep: ms must be a number that is greater than 0 but less than Infinity");Atomics.wait(e,0,0,Number(r))},e=new Int32Array(new SharedArrayBuffer(4));V1.exports=t}else{let e=function(t){if((t>0&&t<1/0)===!1)throw typeof t!="number"&&typeof t!="bigint"?TypeError("sleep: ms must be a number"):RangeError("sleep: ms must be a number that is greater than 0 but less than Infinity");let n=Date.now()+Number(t);for(;n>Date.now(););};V1.exports=e}});var i8=b((Zze,s8)=>{"use strict";var zt=require("fs"),fle=require("events"),dle=require("util").inherits,KL=require("path"),G1=Y1(),hle=require("assert"),tg=100,rg=Buffer.allocUnsafe(0),ple=16*1024,ZL="buffer",e8="utf8",[gle,mle]=(process.versions.node||"0.0").split(".").map(Number),Ele=gle>=22&&mle>=7;function t8(e,t){t._opening=!0,t._writing=!0,t._asyncDrainScheduled=!1;function r(i,o){if(i){t._reopening=!1,t._writing=!1,t._opening=!1,t.sync?process.nextTick(()=>{t.listenerCount("error")>0&&t.emit("error",i)}):t.emit("error",i);return}let a=t._reopening;t.fd=o,t.file=e,t._reopening=!1,t._opening=!1,t._writing=!1,t.sync?process.nextTick(()=>t.emit("ready")):t.emit("ready"),!t.destroyed&&(!t._writing&&t._len>t.minLength||t._flushPending?t._actualWrite():a&&process.nextTick(()=>t.emit("drain")))}let n=t.append?"a":"w",s=t.mode;if(t.sync)try{t.mkdir&&zt.mkdirSync(KL.dirname(e),{recursive:!0});let i=zt.openSync(e,n,s);r(null,i)}catch(i){throw r(i),i}else t.mkdir?zt.mkdir(KL.dirname(e),{recursive:!0},i=>{if(i)return r(i);zt.open(e,n,s,r)}):zt.open(e,n,s,r)}function Hs(e){if(!(this instanceof Hs))return new Hs(e);let{fd:t,dest:r,minLength:n,maxLength:s,maxWrite:i,periodicFlush:o,sync:a,append:c=!0,mkdir:u,retryEAGAIN:l,fsync:A,contentMode:f,mode:d}=e||{};t=t||r,this._len=0,this.fd=-1,this._bufs=[],this._lens=[],this._writing=!1,this._ending=!1,this._reopening=!1,this._asyncDrainScheduled=!1,this._flushPending=!1,this._hwm=Math.max(n||0,16387),this.file=null,this.destroyed=!1,this.minLength=n||0,this.maxLength=s||0,this.maxWrite=i||ple,this._periodicFlush=o||0,this._periodicFlushTimer=void 0,this.sync=a||!1,this.writable=!0,this._fsync=A||!1,this.append=c||!1,this.mode=d,this.retryEAGAIN=l||(()=>!0),this.mkdir=u||!1;let h,p;if(f===ZL)this._writingBuf=rg,this.write=Ile,this.flush=Ble,this.flushSync=vle,this._actualWrite=Tle,h=()=>zt.writeSync(this.fd,this._writingBuf),p=()=>zt.write(this.fd,this._writingBuf,this.release);else if(f===void 0||f===e8)this._writingBuf="",this.write=yle,this.flush=ble,this.flushSync=xle,this._actualWrite=Qle,h=()=>zt.writeSync(this.fd,this._writingBuf,"utf8"),p=()=>zt.write(this.fd,this._writingBuf,"utf8",this.release);else throw new Error(`SonicBoom supports "${e8}" and "${ZL}", but passed ${f}`);if(typeof t=="number")this.fd=t,process.nextTick(()=>this.emit("ready"));else if(typeof t=="string")t8(t,this);else throw new Error("SonicBoom supports only file descriptors and files");if(this.minLength>=this.maxWrite)throw new Error(`minLength should be smaller than maxWrite (${this.maxWrite})`);this.release=(C,m)=>{if(C){if((C.code==="EAGAIN"||C.code==="EBUSY")&&this.retryEAGAIN(C,this._writingBuf.length,this._len-this._writingBuf.length))if(this.sync)try{G1(tg),this.release(void 0,0)}catch(E){this.release(E)}else setTimeout(p,tg);else this._writing=!1,this.emit("error",C);return}this.emit("write",m);let I=$1(this._writingBuf,this._len,m);if(this._len=I.len,this._writingBuf=I.writingBuf,this._writingBuf.length){if(!this.sync){p();return}try{do{let E=h(),B=$1(this._writingBuf,this._len,E);this._len=B.len,this._writingBuf=B.writingBuf}while(this._writingBuf.length)}catch(E){this.release(E);return}}this._fsync&&zt.fsyncSync(this.fd);let y=this._len;this._reopening?(this._writing=!1,this._reopening=!1,this.reopen()):y>this.minLength?this._actualWrite():this._ending?y>0?this._actualWrite():(this._writing=!1,ng(this)):(this._writing=!1,this.sync?this._asyncDrainScheduled||(this._asyncDrainScheduled=!0,process.nextTick(Cle,this)):this.emit("drain"))},this.on("newListener",function(C){C==="drain"&&(this._asyncDrainScheduled=!1)}),this._periodicFlush!==0&&(this._periodicFlushTimer=setInterval(()=>this.flush(null),this._periodicFlush),this._periodicFlushTimer.unref())}function $1(e,t,r){return typeof e=="string"&&Buffer.byteLength(e)!==r&&(r=Buffer.from(e).subarray(0,r).toString().length),t=Math.max(t-r,0),e=e.slice(r),{writingBuf:e,len:t}}function Cle(e){e.listenerCount("drain")>0&&(e._asyncDrainScheduled=!1,e.emit("drain"))}dle(Hs,fle);function r8(e,t){return e.length===0?rg:e.length===1?e[0]:Buffer.concat(e,t)}function yle(e){if(this.destroyed)throw new Error("SonicBoom destroyed");let t=this._len+e.length,r=this._bufs;return this.maxLength&&t>this.maxLength?(this.emit("drop",e),this._lenthis.maxWrite?r.push(""+e):r[r.length-1]+=e,this._len=t,!this._writing&&this._len>=this.minLength&&this._actualWrite(),this._lenthis.maxLength?(this.emit("drop",e),this._lenthis.maxWrite?(r.push([e]),n.push(e.length)):(r[r.length-1].push(e),n[n.length-1]+=e.length),this._len=t,!this._writing&&this._len>=this.minLength&&this._actualWrite(),this._len{if(this._fsync)this._flushPending=!1,e();else try{zt.fsync(this.fd,n=>{this._flushPending=!1,e(n)})}catch(n){e(n)}this.off("error",r)},r=n=>{this._flushPending=!1,e(n),this.off("drain",t)};this.once("drain",t),this.once("error",r)}function ble(e){if(e!=null&&typeof e!="function")throw new Error("flush cb must be a function");if(this.destroyed){let t=new Error("SonicBoom destroyed");if(e){e(t);return}throw t}if(this.minLength<=0){e?.();return}e&&n8.call(this,e),!this._writing&&(this._bufs.length===0&&this._bufs.push(""),this._actualWrite())}function Ble(e){if(e!=null&&typeof e!="function")throw new Error("flush cb must be a function");if(this.destroyed){let t=new Error("SonicBoom destroyed");if(e){e(t);return}throw t}if(this.minLength<=0){e?.();return}e&&n8.call(this,e),!this._writing&&(this._bufs.length===0&&(this._bufs.push([]),this._lens.push(0)),this._actualWrite())}Hs.prototype.reopen=function(e){if(this.destroyed)throw new Error("SonicBoom destroyed");if(this._opening){this.once("ready",()=>{this.reopen(e)});return}if(this._ending)return;if(!this.file)throw new Error("Unable to reopen a file descriptor, you must pass a file to SonicBoom");if(e&&(this.file=e),this._reopening=!0,this._writing)return;let t=this.fd;this.once("ready",()=>{t!==this.fd&&zt.close(t,r=>{if(r)return this.emit("error",r)})}),t8(this.file,this)};Hs.prototype.end=function(){if(this.destroyed)throw new Error("SonicBoom destroyed");if(this._opening){this.once("ready",()=>{this.end()});return}this._ending||(this._ending=!0,!this._writing&&(this._len>0&&this.fd>=0?this._actualWrite():ng(this)))};function xle(){if(this.destroyed)throw new Error("SonicBoom destroyed");if(this.fd<0)throw new Error("sonic boom is not ready yet");!this._writing&&this._writingBuf.length>0&&(this._bufs.unshift(this._writingBuf),this._writingBuf="");let e="";for(;this._bufs.length||e;){e.length<=0&&(e=this._bufs[0]);try{let t=zt.writeSync(this.fd,e,"utf8"),r=$1(e,this._len,t);e=r.writingBuf,this._len=r.len,e.length<=0&&this._bufs.shift()}catch(t){if((t.code==="EAGAIN"||t.code==="EBUSY")&&!this.retryEAGAIN(t,e.length,this._len-e.length))throw t;G1(tg)}}try{zt.fsyncSync(this.fd)}catch{}}function vle(){if(this.destroyed)throw new Error("SonicBoom destroyed");if(this.fd<0)throw new Error("sonic boom is not ready yet");!this._writing&&this._writingBuf.length>0&&(this._bufs.unshift([this._writingBuf]),this._writingBuf=rg);let e=rg;for(;this._bufs.length||e.length;){e.length<=0&&(e=r8(this._bufs[0],this._lens[0]));try{let t=zt.writeSync(this.fd,e);e=e.subarray(t),this._len=Math.max(this._len-t,0),e.length<=0&&(this._bufs.shift(),this._lens.shift())}catch(t){if((t.code==="EAGAIN"||t.code==="EBUSY")&&!this.retryEAGAIN(t,e.length,this._len-e.length))throw t;G1(tg)}}}Hs.prototype.destroy=function(){this.destroyed||ng(this)};function Qle(){let e=this.release;if(this._writing=!0,this._writingBuf=this._writingBuf||this._bufs.shift()||"",this.sync)try{let t=zt.writeSync(this.fd,this._writingBuf,"utf8");e(null,t)}catch(t){e(t)}else zt.write(this.fd,this._writingBuf,"utf8",e)}function Tle(){let e=this.release;if(this._writing=!0,this._writingBuf=this._writingBuf.length?this._writingBuf:r8(this._bufs.shift(),this._lens.shift()),this.sync)try{let t=zt.writeSync(this.fd,this._writingBuf);e(null,t)}catch(t){e(t)}else Ele&&(this._writingBuf=Buffer.from(this._writingBuf)),zt.write(this.fd,this._writingBuf,e)}function ng(e){if(e.fd===-1){e.once("ready",ng.bind(null,e));return}e._periodicFlushTimer!==void 0&&clearInterval(e._periodicFlushTimer),e.destroyed=!0,e._bufs=[],e._lens=[],hle(typeof e.fd=="number",`sonic.fd must be a number, got ${typeof e.fd}`);try{zt.fsync(e.fd,t)}catch{}function t(){e.fd!==1&&e.fd!==2?zt.close(e.fd,r):r()}function r(n){if(n){e.emit("error",n);return}e._ending&&!e._writing&&e.emit("finish"),e.emit("close")}}Hs.SonicBoom=Hs;Hs.default=Hs;s8.exports=Hs});var j1=b((eXe,l8)=>{"use strict";var qs={exit:[],beforeExit:[]},o8={exit:_le,beforeExit:Rle},zu;function wle(){zu===void 0&&(zu=new FinalizationRegistry(Dle))}function Sle(e){qs[e].length>0||process.on(e,o8[e])}function a8(e){qs[e].length>0||(process.removeListener(e,o8[e]),qs.exit.length===0&&qs.beforeExit.length===0&&(zu=void 0))}function _le(){c8("exit")}function Rle(){c8("beforeExit")}function c8(e){for(let t of qs[e]){let r=t.deref(),n=t.fn;r!==void 0&&n(r,e)}qs[e]=[]}function Dle(e){for(let t of["exit","beforeExit"]){let r=qs[t].indexOf(e);qs[t].splice(r,r+1),a8(t)}}function u8(e,t,r){if(t===void 0)throw new Error("the object can't be undefined");Sle(e);let n=new WeakRef(t);n.fn=r,wle(),zu.register(t,n),qs[e].push(n)}function Nle(e,t){u8("exit",e,t)}function kle(e,t){u8("beforeExit",e,t)}function Fle(e){if(zu!==void 0){zu.unregister(e);for(let t of["exit","beforeExit"])qs[t]=qs[t].filter(r=>{let n=r.deref();return n&&n!==e}),a8(t)}}l8.exports={register:Nle,registerBeforeExit:kle,unregister:Fle}});var A8=b((tXe,Lle)=>{Lle.exports={name:"thread-stream",version:"3.1.0",description:"A streaming way to send data to a Node.js Worker Thread",main:"index.js",types:"index.d.ts",dependencies:{"real-require":"^0.2.0"},devDependencies:{"@types/node":"^20.1.0","@types/tap":"^15.0.0","@yao-pkg/pkg":"^5.11.5",desm:"^1.3.0",fastbench:"^1.0.1",husky:"^9.0.6","pino-elasticsearch":"^8.0.0","sonic-boom":"^4.0.1",standard:"^17.0.0",tap:"^16.2.0","ts-node":"^10.8.0",typescript:"^5.3.2","why-is-node-running":"^2.2.2"},scripts:{build:"tsc --noEmit",test:'standard && npm run build && npm run transpile && tap "test/**/*.test.*js" && tap --ts test/*.test.*ts',"test:ci":"standard && npm run transpile && npm run test:ci:js && npm run test:ci:ts","test:ci:js":'tap --no-check-coverage --timeout=120 --coverage-report=lcovonly "test/**/*.test.*js"',"test:ci:ts":'tap --ts --no-check-coverage --coverage-report=lcovonly "test/**/*.test.*ts"',"test:yarn":'npm run transpile && tap "test/**/*.test.js" --no-check-coverage',transpile:"sh ./test/ts/transpile.sh",prepare:"husky install"},standard:{ignore:["test/ts/**/*","test/syntax-error.mjs"]},repository:{type:"git",url:"git+https://github.com/mcollina/thread-stream.git"},keywords:["worker","thread","threads","stream"],author:"Matteo Collina ",license:"MIT",bugs:{url:"https://github.com/mcollina/thread-stream/issues"},homepage:"https://github.com/mcollina/thread-stream#readme"}});var d8=b((rXe,f8)=>{"use strict";function Ole(e,t,r,n,s){let i=Date.now()+n,o=Atomics.load(e,t);if(o===r){s(null,"ok");return}let a=o,c=u=>{Date.now()>i?s(null,"timed-out"):setTimeout(()=>{a=o,o=Atomics.load(e,t),o===a?c(u>=1e3?1e3:u*2):o===r?s(null,"ok"):s(null,"not-equal")},u)};c(1)}function Mle(e,t,r,n,s){let i=Date.now()+n,o=Atomics.load(e,t);if(o!==r){s(null,"ok");return}let a=c=>{Date.now()>i?s(null,"timed-out"):setTimeout(()=>{o=Atomics.load(e,t),o!==r?s(null,"ok"):a(c>=1e3?1e3:c*2)},c)};a(1)}f8.exports={wait:Ole,waitDiff:Mle}});var p8=b((nXe,h8)=>{"use strict";h8.exports={WRITE_INDEX:4,READ_INDEX:8}});var y8=b((sXe,C8)=>{"use strict";var{version:Ple}=A8(),{EventEmitter:Ule}=require("events"),{Worker:Hle}=require("worker_threads"),{join:qle}=require("path"),{pathToFileURL:Vle}=require("url"),{wait:Yle}=d8(),{WRITE_INDEX:En,READ_INDEX:Ei}=p8(),$le=require("buffer"),Gle=require("assert"),z=Symbol("kImpl"),jle=$le.constants.MAX_STRING_LENGTH,Gf=class{constructor(t){this._value=t}deref(){return this._value}},ig=class{register(){}unregister(){}},Jle=process.env.NODE_V8_COVERAGE?ig:global.FinalizationRegistry||ig,Wle=process.env.NODE_V8_COVERAGE?Gf:global.WeakRef||Gf,g8=new Jle(e=>{e.exited||e.terminate()});function zle(e,t){let{filename:r,workerData:n}=t,i=("__bundlerPathsOverrides"in globalThis?globalThis.__bundlerPathsOverrides:{})["thread-stream-worker"]||qle(__dirname,"lib","worker.js"),o=new Hle(i,{...t.workerOpts,trackUnmanagedFds:!1,workerData:{filename:r.indexOf("file://")===0?r:Vle(r).href,dataBuf:e[z].dataBuf,stateBuf:e[z].stateBuf,workerData:{$context:{threadStreamVersion:Ple},...n}}});return o.stream=new Gf(e),o.on("message",Xle),o.on("exit",E8),g8.register(e,o),o}function m8(e){Gle(!e[z].sync),e[z].needDrain&&(e[z].needDrain=!1,e.emit("drain"))}function sg(e){let t=Atomics.load(e[z].state,En),r=e[z].data.length-t;if(r>0){if(e[z].buf.length===0){e[z].flushing=!1,e[z].ending?K1(e):e[z].needDrain&&process.nextTick(m8,e);return}let n=e[z].buf.slice(0,r),s=Buffer.byteLength(n);s<=r?(e[z].buf=e[z].buf.slice(r),og(e,n,sg.bind(null,e))):e.flush(()=>{if(!e.destroyed){for(Atomics.store(e[z].state,Ei,0),Atomics.store(e[z].state,En,0);s>e[z].data.length;)r=r/2,n=e[z].buf.slice(0,r),s=Buffer.byteLength(n);e[z].buf=e[z].buf.slice(r),og(e,n,sg.bind(null,e))}})}else if(r===0){if(t===0&&e[z].buf.length===0)return;e.flush(()=>{Atomics.store(e[z].state,Ei,0),Atomics.store(e[z].state,En,0),sg(e)})}else Ci(e,new Error("overwritten"))}function Xle(e){let t=this.stream.deref();if(t===void 0){this.exited=!0,this.terminate();return}switch(e.code){case"READY":this.stream=new Wle(t),t.flush(()=>{t[z].ready=!0,t.emit("ready")});break;case"ERROR":Ci(t,e.err);break;case"EVENT":Array.isArray(e.args)?t.emit(e.name,...e.args):t.emit(e.name,e.args);break;case"WARNING":process.emitWarning(e.err);break;default:Ci(t,new Error("this should not happen: "+e.code))}}function E8(e){let t=this.stream.deref();t!==void 0&&(g8.unregister(t),t.worker.exited=!0,t.worker.off("exit",E8),Ci(t,e!==0?new Error("the worker thread exited"):null))}var W1=class extends Ule{constructor(t={}){if(super(),t.bufferSize<4)throw new Error("bufferSize must at least fit a 4-byte utf-8 char");this[z]={},this[z].stateBuf=new SharedArrayBuffer(128),this[z].state=new Int32Array(this[z].stateBuf),this[z].dataBuf=new SharedArrayBuffer(t.bufferSize||4*1024*1024),this[z].data=Buffer.from(this[z].dataBuf),this[z].sync=t.sync||!1,this[z].ending=!1,this[z].ended=!1,this[z].needDrain=!1,this[z].destroyed=!1,this[z].flushing=!1,this[z].ready=!1,this[z].finished=!1,this[z].errored=null,this[z].closed=!1,this[z].buf="",this.worker=zle(this,t),this.on("message",(r,n)=>{this.worker.postMessage(r,n)})}write(t){if(this[z].destroyed)return z1(this,new Error("the worker has exited")),!1;if(this[z].ending)return z1(this,new Error("the worker is ending")),!1;if(this[z].flushing&&this[z].buf.length+t.length>=jle)try{J1(this),this[z].flushing=!0}catch(r){return Ci(this,r),!1}if(this[z].buf+=t,this[z].sync)try{return J1(this),!0}catch(r){return Ci(this,r),!1}return this[z].flushing||(this[z].flushing=!0,setImmediate(sg,this)),this[z].needDrain=this[z].data.length-this[z].buf.length-Atomics.load(this[z].state,En)<=0,!this[z].needDrain}end(){this[z].destroyed||(this[z].ending=!0,K1(this))}flush(t){if(this[z].destroyed){typeof t=="function"&&process.nextTick(t,new Error("the worker has exited"));return}let r=Atomics.load(this[z].state,En);Yle(this[z].state,Ei,r,1/0,(n,s)=>{if(n){Ci(this,n),process.nextTick(t,n);return}if(s==="not-equal"){this.flush(t);return}process.nextTick(t)})}flushSync(){this[z].destroyed||(J1(this),X1(this))}unref(){this.worker.unref()}ref(){this.worker.ref()}get ready(){return this[z].ready}get destroyed(){return this[z].destroyed}get closed(){return this[z].closed}get writable(){return!this[z].destroyed&&!this[z].ending}get writableEnded(){return this[z].ending}get writableFinished(){return this[z].finished}get writableNeedDrain(){return this[z].needDrain}get writableObjectMode(){return!1}get writableErrored(){return this[z].errored}};function z1(e,t){setImmediate(()=>{e.emit("error",t)})}function Ci(e,t){e[z].destroyed||(e[z].destroyed=!0,t&&(e[z].errored=t,z1(e,t)),e.worker.exited?setImmediate(()=>{e[z].closed=!0,e.emit("close")}):e.worker.terminate().catch(()=>{}).then(()=>{e[z].closed=!0,e.emit("close")}))}function og(e,t,r){let n=Atomics.load(e[z].state,En),s=Buffer.byteLength(t);return e[z].data.write(t,n),Atomics.store(e[z].state,En,n+s),Atomics.notify(e[z].state,En),r(),!0}function K1(e){if(!(e[z].ended||!e[z].ending||e[z].flushing)){e[z].ended=!0;try{e.flushSync();let t=Atomics.load(e[z].state,Ei);Atomics.store(e[z].state,En,-1),Atomics.notify(e[z].state,En);let r=0;for(;t!==-1;){if(Atomics.wait(e[z].state,Ei,t,1e3),t=Atomics.load(e[z].state,Ei),t===-2){Ci(e,new Error("end() failed"));return}if(++r===10){Ci(e,new Error("end() took too long (10s)"));return}}process.nextTick(()=>{e[z].finished=!0,e.emit("finish")})}catch(t){Ci(e,t)}}}function J1(e){let t=()=>{e[z].ending?K1(e):e[z].needDrain&&process.nextTick(m8,e)};for(e[z].flushing=!1;e[z].buf.length!==0;){let r=Atomics.load(e[z].state,En),n=e[z].data.length-r;if(n===0){X1(e),Atomics.store(e[z].state,Ei,0),Atomics.store(e[z].state,En,0);continue}else if(n<0)throw new Error("overwritten");let s=e[z].buf.slice(0,n),i=Buffer.byteLength(s);if(i<=n)e[z].buf=e[z].buf.slice(n),og(e,s,t);else{for(X1(e),Atomics.store(e[z].state,Ei,0),Atomics.store(e[z].state,En,0);i>e[z].buf.length;)n=n/2,s=e[z].buf.slice(0,n),i=Buffer.byteLength(s);e[z].buf=e[z].buf.slice(n),og(e,s,t)}}}function X1(e){if(e[z].flushing)throw new Error("unable to flush while flushing");let t=Atomics.load(e[z].state,En),r=0;for(;;){let n=Atomics.load(e[z].state,Ei);if(n===-2)throw Error("_flushSync failed");if(n!==t)Atomics.wait(e[z].state,Ei,n,1e3);else break;if(++r===10)throw new Error("_flushSync took too long (10s)")}}C8.exports=W1});var tB=b((iXe,I8)=>{"use strict";var{createRequire:Kle}=require("module"),Zle=F1(),{join:Z1,isAbsolute:eAe,sep:tAe}=require("node:path"),rAe=Y1(),eB=j1(),nAe=y8();function sAe(e){eB.register(e,oAe),eB.registerBeforeExit(e,aAe),e.on("close",function(){eB.unregister(e)})}function iAe(e,t,r,n){let s=new nAe({filename:e,workerData:t,workerOpts:r,sync:n});s.on("ready",i),s.on("close",function(){process.removeListener("exit",o)}),process.on("exit",o);function i(){process.removeListener("exit",o),s.unref(),r.autoEnd!==!1&&sAe(s)}function o(){s.closed||(s.flushSync(),rAe(100),s.end())}return s}function oAe(e){e.ref(),e.flushSync(),e.end(),e.once("close",function(){e.unref()})}function aAe(e){e.flushSync()}function cAe(e){let{pipeline:t,targets:r,levels:n,dedupe:s,worker:i={},caller:o=Zle(),sync:a=!1}=e,c={...e.options},u=typeof o=="string"?[o]:o,l="__bundlerPathsOverrides"in globalThis?globalThis.__bundlerPathsOverrides:{},A=e.target;if(A&&r)throw new Error("only one of target or targets can be specified");return r?(A=l["pino-worker"]||Z1(__dirname,"worker.js"),c.targets=r.filter(d=>d.target).map(d=>({...d,target:f(d.target)})),c.pipelines=r.filter(d=>d.pipeline).map(d=>d.pipeline.map(h=>({...h,level:d.level,target:f(h.target)})))):t&&(A=l["pino-worker"]||Z1(__dirname,"worker.js"),c.pipelines=[t.map(d=>({...d,target:f(d.target)}))]),n&&(c.levels=n),s&&(c.dedupe=s),c.pinoWillSendConfig=!0,iAe(f(A),c,i,a);function f(d){if(d=l[d]||d,eAe(d)||d.indexOf("file://")===0)return d;if(d==="pino/file")return Z1(__dirname,"..","file.js");let h;for(let p of u)try{let C=p==="node:repl"?process.cwd()+tAe:p;h=Kle(C).resolve(d);break}catch{continue}if(!h)throw new Error(`unable to determine transport target for "${d}"`);return h}}I8.exports=cAe});var ug=b((oXe,D8)=>{"use strict";var b8=XL(),{mapHttpRequest:uAe,mapHttpResponse:lAe}=k1(),nB=i8(),B8=j1(),{lsCacheSym:AAe,chindingsSym:Q8,writeSym:x8,serializersSym:T8,formatOptsSym:v8,endSym:fAe,stringifiersSym:w8,stringifySym:S8,stringifySafeSym:sB,wildcardFirstSym:_8,nestedKeySym:dAe,formattersSym:R8,messageKeySym:hAe,errorKeySym:pAe,nestedKeyStrSym:gAe,msgPrefixSym:ag}=Wu(),{isMainThread:mAe}=require("worker_threads"),EAe=tB();function Xu(){}function CAe(e,t){if(!t)return r;return function(...s){t.call(this,s,r,e)};function r(n,...s){if(typeof n=="object"){let i=n;n!==null&&(n.method&&n.headers&&n.socket?n=uAe(n):typeof n.setHeader=="function"&&(n=lAe(n)));let o;i===null&&s.length===0?o=[null]:(i=s.shift(),o=s),typeof this[ag]=="string"&&i!==void 0&&i!==null&&(i=this[ag]+i),this[x8](n,b8(i,o,this[v8]),e)}else{let i=n===void 0?s.shift():n;typeof this[ag]=="string"&&i!==void 0&&i!==null&&(i=this[ag]+i),this[x8](null,b8(i,s,this[v8]),e)}}}function rB(e){let t="",r=0,n=!1,s=255,i=e.length;if(i>100)return JSON.stringify(e);for(var o=0;o=32;o++)s=e.charCodeAt(o),(s===34||s===92)&&(t+=e.slice(r,o)+"\\",r=o,n=!0);return n?t+=e.slice(r):t=e,s<32?JSON.stringify(e):'"'+t+'"'}function yAe(e,t,r,n){let s=this[S8],i=this[sB],o=this[w8],a=this[fAe],c=this[Q8],u=this[T8],l=this[R8],A=this[hAe],f=this[pAe],d=this[AAe][r]+n;d=d+c;let h;l.log&&(e=l.log(e));let p=o[_8],C="";for(let I in e)if(h=e[I],Object.prototype.hasOwnProperty.call(e,I)&&h!==void 0){u[I]?h=u[I](h):I===f&&u.err&&(h=u.err(h));let y=o[I]||p;switch(typeof h){case"undefined":case"function":continue;case"number":Number.isFinite(h)===!1&&(h=null);case"boolean":y&&(h=y(h));break;case"string":h=(y||rB)(h);break;default:h=(y||s)(h,i)}if(h===void 0)continue;let E=rB(I);C+=","+E+":"+h}let m="";if(t!==void 0){h=u[A]?u[A](t):t;let I=o[A]||p;switch(typeof h){case"function":break;case"number":Number.isFinite(h)===!1&&(h=null);case"boolean":I&&(h=I(h)),m=',"'+A+'":'+h;break;case"string":h=(I||rB)(h),m=',"'+A+'":'+h;break;default:h=(I||s)(h,i),m=',"'+A+'":'+h}}return this[dAe]&&C?d+this[gAe]+C.slice(1)+"}"+m+a:d+C+m+a}function IAe(e,t){let r,n=e[Q8],s=e[S8],i=e[sB],o=e[w8],a=o[_8],c=e[T8],u=e[R8].bindings;t=u(t);for(let l in t)if(r=t[l],(l!=="level"&&l!=="serializers"&&l!=="formatters"&&l!=="customLevels"&&t.hasOwnProperty(l)&&r!==void 0)===!0){if(r=c[l]?c[l](r):r,r=(o[l]||a||s)(r,i),r===void 0)continue;n+=',"'+l+'":'+r}return n}function bAe(e){return e.write!==e.constructor.prototype.write}var BAe=process.env.NODE_V8_COVERAGE||process.env.V8_COVERAGE;function cg(e){let t=new nB(e);return t.on("error",r),!BAe&&!e.sync&&mAe&&(B8.register(t,xAe),t.on("close",function(){B8.unregister(t)})),t;function r(n){if(n.code==="EPIPE"){t.write=Xu,t.end=Xu,t.flushSync=Xu,t.destroy=Xu;return}t.removeListener("error",r),t.emit("error",n)}}function xAe(e,t){e.destroyed||(t==="beforeExit"?(e.flush(),e.on("drain",function(){e.end()})):e.flushSync())}function vAe(e){return function(r,n,s={},i){if(typeof s=="string")i=cg({dest:s}),s={};else if(typeof i=="string"){if(s&&s.transport)throw Error("only one of option.transport or stream can be specified");i=cg({dest:i})}else if(s instanceof nB||s.writable||s._writableState)i=s,s={};else if(s.transport){if(s.transport instanceof nB||s.transport.writable||s.transport._writableState)throw Error("option.transport do not allow stream, please pass to option directly. e.g. pino(transport)");if(s.transport.targets&&s.transport.targets.length&&s.formatters&&typeof s.formatters.level=="function")throw Error("option.transport.targets do not allow custom level formatters");let c;s.customLevels&&(c=s.useOnlyCustomLevels?s.customLevels:Object.assign({},s.levels,s.customLevels)),i=EAe({caller:n,...s.transport,levels:c})}if(s=Object.assign({},e,s),s.serializers=Object.assign({},e.serializers,s.serializers),s.formatters=Object.assign({},e.formatters,s.formatters),s.prettyPrint)throw new Error("prettyPrint option is no longer supported, see the pino-pretty package (https://github.com/pinojs/pino-pretty)");let{enabled:o,onChild:a}=s;return o===!1&&(s.level="silent"),a||(s.onChild=Xu),i||(bAe(process.stdout)?i=process.stdout:i=cg({fd:process.stdout.fd||1})),{opts:s,stream:i}}}function QAe(e,t){try{return JSON.stringify(e)}catch{try{return(t||this[sB])(e)}catch{return'"[unable to serialize, circular reference is too complex to analyze]"'}}}function TAe(e,t,r){return{level:e,bindings:t,log:r}}function wAe(e){let t=Number(e);return typeof e=="string"&&Number.isFinite(t)?t:e===void 0?1:e}D8.exports={noop:Xu,buildSafeSonicBoom:cg,asChindings:IAe,asJson:yAe,genLog:CAe,createArgsNormalizer:vAe,stringify:QAe,buildFormatters:TAe,normalizeDestFileDescriptor:wAe}});var lg=b((aXe,N8)=>{var SAe={trace:10,debug:20,info:30,warn:40,error:50,fatal:60},_Ae={ASC:"ASC",DESC:"DESC"};N8.exports={DEFAULT_LEVELS:SAe,SORTING_ORDER:_Ae}});var aB=b((cXe,O8)=>{"use strict";var{lsCacheSym:RAe,levelValSym:iB,useOnlyCustomLevelsSym:DAe,streamSym:NAe,formattersSym:kAe,hooksSym:FAe,levelCompSym:k8}=Wu(),{noop:LAe,genLog:Cc}=ug(),{DEFAULT_LEVELS:yi,SORTING_ORDER:F8}=lg(),L8={fatal:e=>{let t=Cc(yi.fatal,e);return function(...r){let n=this[NAe];if(t.call(this,...r),typeof n.flushSync=="function")try{n.flushSync()}catch{}}},error:e=>Cc(yi.error,e),warn:e=>Cc(yi.warn,e),info:e=>Cc(yi.info,e),debug:e=>Cc(yi.debug,e),trace:e=>Cc(yi.trace,e)},oB=Object.keys(yi).reduce((e,t)=>(e[yi[t]]=t,e),{}),OAe=Object.keys(oB).reduce((e,t)=>(e[t]='{"level":'+Number(t),e),{});function MAe(e){let t=e[kAe].level,{labels:r}=e.levels,n={};for(let s in r){let i=t(r[s],Number(s));n[s]=JSON.stringify(i).slice(0,-1)}return e[RAe]=n,e}function PAe(e,t){if(t)return!1;switch(e){case"fatal":case"error":case"warn":case"info":case"debug":case"trace":return!0;default:return!1}}function UAe(e){let{labels:t,values:r}=this.levels;if(typeof e=="number"){if(t[e]===void 0)throw Error("unknown level value"+e);e=t[e]}if(r[e]===void 0)throw Error("unknown level "+e);let n=this[iB],s=this[iB]=r[e],i=this[DAe],o=this[k8],a=this[FAe].logMethod;for(let c in r){if(o(r[c],s)===!1){this[c]=LAe;continue}this[c]=PAe(c,i)?L8[c](a):Cc(r[c],a)}this.emit("level-change",e,s,t[n],n,this)}function HAe(e){let{levels:t,levelVal:r}=this;return t&&t.labels?t.labels[r]:""}function qAe(e){let{values:t}=this.levels,r=t[e];return r!==void 0&&this[k8](r,this[iB])}function VAe(e,t,r){return e===F8.DESC?t<=r:t>=r}function YAe(e){return typeof e=="string"?VAe.bind(null,e):e}function $Ae(e=null,t=!1){let r=e?Object.keys(e).reduce((i,o)=>(i[e[o]]=o,i),{}):null,n=Object.assign(Object.create(Object.prototype,{Infinity:{value:"silent"}}),t?null:oB,r),s=Object.assign(Object.create(Object.prototype,{silent:{value:1/0}}),t?null:yi,e);return{labels:n,values:s}}function GAe(e,t,r){if(typeof e=="number"){if(![].concat(Object.keys(t||{}).map(i=>t[i]),r?[]:Object.keys(oB).map(i=>+i),1/0).includes(e))throw Error(`default level:${e} must be included in custom levels`);return}let n=Object.assign(Object.create(Object.prototype,{silent:{value:1/0}}),r?null:yi,t);if(!(e in n))throw Error(`default level:${e} must be included in custom levels`)}function jAe(e,t){let{labels:r,values:n}=e;for(let s in t){if(s in n)throw Error("levels cannot be overridden");if(t[s]in r)throw Error("pre-existing level values cannot be used for new levels")}}function JAe(e){if(typeof e!="function"&&!(typeof e=="string"&&Object.values(F8).includes(e)))throw new Error('Levels comparison should be one of "ASC", "DESC" or "function" type')}O8.exports={initialLsCache:OAe,genLsCache:MAe,levelMethods:L8,getLevel:HAe,setLevel:UAe,isLevelEnabled:qAe,mappings:$Ae,assertNoLevelCollisions:jAe,assertDefaultLevelFound:GAe,genLevelComparison:YAe,assertLevelComparison:JAe}});var cB=b((uXe,M8)=>{"use strict";M8.exports={version:"9.6.0"}});var W8=b((AXe,J8)=>{"use strict";var{EventEmitter:WAe}=require("node:events"),{lsCacheSym:zAe,levelValSym:XAe,setLevelSym:lB,getLevelSym:P8,chindingsSym:AB,parsedChindingsSym:KAe,mixinSym:ZAe,asJsonSym:Y8,writeSym:efe,mixinMergeStrategySym:tfe,timeSym:rfe,timeSliceIndexSym:nfe,streamSym:$8,serializersSym:yc,formattersSym:uB,errorKeySym:sfe,messageKeySym:ife,useOnlyCustomLevelsSym:ofe,needsMetadataGsym:afe,redactFmtSym:cfe,stringifySym:ufe,formatOptsSym:lfe,stringifiersSym:Afe,msgPrefixSym:U8,hooksSym:ffe}=Wu(),{getLevel:dfe,setLevel:hfe,isLevelEnabled:pfe,mappings:gfe,initialLsCache:mfe,genLsCache:Efe,assertNoLevelCollisions:Cfe}=aB(),{asChindings:G8,asJson:yfe,buildFormatters:H8,stringify:q8}=ug(),{version:Ife}=cB(),bfe=q1(),Bfe=class{},j8={constructor:Bfe,child:xfe,bindings:vfe,setBindings:Qfe,flush:_fe,isLevelEnabled:pfe,version:Ife,get level(){return this[P8]()},set level(e){this[lB](e)},get levelVal(){return this[XAe]},set levelVal(e){throw Error("levelVal is read-only")},[zAe]:mfe,[efe]:wfe,[Y8]:yfe,[P8]:dfe,[lB]:hfe};Object.setPrototypeOf(j8,WAe.prototype);J8.exports=function(){return Object.create(j8)};var V8=e=>e;function xfe(e,t){if(!e)throw Error("missing bindings for child Pino");t=t||{};let r=this[yc],n=this[uB],s=Object.create(this);if(t.hasOwnProperty("serializers")===!0){s[yc]=Object.create(null);for(let l in r)s[yc][l]=r[l];let c=Object.getOwnPropertySymbols(r);for(var i=0;i{"use strict";var{hasOwnProperty:jf}=Object.prototype,bc=hB();bc.configure=hB;bc.stringify=bc;bc.default=bc;pB.stringify=bc;pB.configure=hB;K8.exports=bc;var Rfe=/[\u0000-\u001f\u0022\u005c\ud800-\udfff]/;function aa(e){return e.length<5e3&&!Rfe.test(e)?`"${e}"`:JSON.stringify(e)}function fB(e,t){if(e.length>200||t)return e.sort(t);for(let r=1;rn;)e[s]=e[s-1],s--;e[s]=n}return e}var Dfe=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(Object.getPrototypeOf(new Int8Array)),Symbol.toStringTag).get;function dB(e){return Dfe.call(e)!==void 0&&e.length!==0}function z8(e,t,r){e.length= 1`)}return r===void 0?1/0:r}function Ic(e){return e===1?"1 item":`${e} items`}function Lfe(e){let t=new Set;for(let r of e)(typeof r=="string"||typeof r=="number")&&t.add(String(r));return t}function Ofe(e){if(jf.call(e,"strict")){let t=e.strict;if(typeof t!="boolean")throw new TypeError('The "strict" argument must be of type boolean');if(t)return r=>{let n=`Object can not safely be stringified. Received type ${typeof r}`;throw typeof r!="function"&&(n+=` (${r.toString()})`),new Error(n)}}}function hB(e){e={...e};let t=Ofe(e);t&&(e.bigint===void 0&&(e.bigint=!1),"circularValue"in e||(e.circularValue=Error));let r=Nfe(e),n=Ffe(e,"bigint"),s=kfe(e),i=typeof s=="function"?s:void 0,o=X8(e,"maximumDepth"),a=X8(e,"maximumBreadth");function c(d,h,p,C,m,I){let y=h[d];switch(typeof y=="object"&&y!==null&&typeof y.toJSON=="function"&&(y=y.toJSON(d)),y=C.call(h,d,y),typeof y){case"string":return aa(y);case"object":{if(y===null)return"null";if(p.indexOf(y)!==-1)return r;let E="",B=",",v=I;if(Array.isArray(y)){if(y.length===0)return"[]";if(oa){let j=y.length-a-1;E+=`${B}"... ${Ic(j)} not stringified"`}return m!==""&&(E+=` +${v}`),p.pop(),`[${E}]`}let x=Object.keys(y),Q=x.length;if(Q===0)return"{}";if(oa){let D=Q-a;E+=`${T}"...":${S}"${Ic(D)} not stringified"`,T=B}return m!==""&&T.length>1&&(E=` +${I}${E} +${v}`),p.pop(),`{${E}}`}case"number":return isFinite(y)?String(y):t?t(y):"null";case"boolean":return y===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(y);default:return t?t(y):void 0}}function u(d,h,p,C,m,I){switch(typeof h=="object"&&h!==null&&typeof h.toJSON=="function"&&(h=h.toJSON(d)),typeof h){case"string":return aa(h);case"object":{if(h===null)return"null";if(p.indexOf(h)!==-1)return r;let y=I,E="",B=",";if(Array.isArray(h)){if(h.length===0)return"[]";if(oa){let R=h.length-a-1;E+=`${B}"... ${Ic(R)} not stringified"`}return m!==""&&(E+=` +${y}`),p.pop(),`[${E}]`}p.push(h);let v="";m!==""&&(I+=m,B=`, +${I}`,v=" ");let x="";for(let Q of C){let S=u(Q,h[Q],p,C,m,I);S!==void 0&&(E+=`${x}${aa(Q)}:${v}${S}`,x=B)}return m!==""&&x.length>1&&(E=` +${I}${E} +${y}`),p.pop(),`{${E}}`}case"number":return isFinite(h)?String(h):t?t(h):"null";case"boolean":return h===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(h);default:return t?t(h):void 0}}function l(d,h,p,C,m){switch(typeof h){case"string":return aa(h);case"object":{if(h===null)return"null";if(typeof h.toJSON=="function"){if(h=h.toJSON(d),typeof h!="object")return l(d,h,p,C,m);if(h===null)return"null"}if(p.indexOf(h)!==-1)return r;let I=m;if(Array.isArray(h)){if(h.length===0)return"[]";if(oa){let F=h.length-a-1;S+=`${T}"... ${Ic(F)} not stringified"`}return S+=` +${I}`,p.pop(),`[${S}]`}let y=Object.keys(h),E=y.length;if(E===0)return"{}";if(oa){let S=E-a;v+=`${x}"...": "${Ic(S)} not stringified"`,x=B}return x!==""&&(v=` +${m}${v} +${I}`),p.pop(),`{${v}}`}case"number":return isFinite(h)?String(h):t?t(h):"null";case"boolean":return h===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(h);default:return t?t(h):void 0}}function A(d,h,p){switch(typeof h){case"string":return aa(h);case"object":{if(h===null)return"null";if(typeof h.toJSON=="function"){if(h=h.toJSON(d),typeof h!="object")return A(d,h,p);if(h===null)return"null"}if(p.indexOf(h)!==-1)return r;let C="",m=h.length!==void 0;if(m&&Array.isArray(h)){if(h.length===0)return"[]";if(oa){let S=h.length-a-1;C+=`,"... ${Ic(S)} not stringified"`}return p.pop(),`[${C}]`}let I=Object.keys(h),y=I.length;if(y===0)return"{}";if(oa){let v=y-a;C+=`${E}"...":"${Ic(v)} not stringified"`}return p.pop(),`{${C}}`}case"number":return isFinite(h)?String(h):t?t(h):"null";case"boolean":return h===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(h);default:return t?t(h):void 0}}function f(d,h,p){if(arguments.length>1){let C="";if(typeof p=="number"?C=" ".repeat(Math.min(p,10)):typeof p=="string"&&(C=p.slice(0,10)),h!=null){if(typeof h=="function")return c("",{"":d},[],h,C,"");if(Array.isArray(h))return u("",d,[],Lfe(h),C,"")}if(C.length!==0)return l("",d,[],C,"")}return A("",d,[])}return f}});var r4=b((fXe,t4)=>{"use strict";var gB=Symbol.for("pino.metadata"),{DEFAULT_LEVELS:e4}=lg(),Mfe=e4.info;function Pfe(e,t){let r=0;e=e||[],t=t||{dedupe:!1};let n=Object.create(e4);n.silent=1/0,t.levels&&typeof t.levels=="object"&&Object.keys(t.levels).forEach(A=>{n[A]=t.levels[A]});let s={write:i,add:c,emit:o,flushSync:a,end:u,minLevel:0,streams:[],clone:l,[gB]:!0,streamLevels:n};return Array.isArray(e)?e.forEach(c,s):c.call(s,e),e=null,s;function i(A){let f,d=this.lastLevel,{streams:h}=this,p=0,C;for(let m=Hfe(h.length,t.dedupe);Vfe(m,h.length,t.dedupe);m=qfe(m,t.dedupe))if(f=h[m],f.level<=d){if(p!==0&&p!==f.level)break;if(C=f.stream,C[gB]){let{lastTime:I,lastMsg:y,lastObj:E,lastLogger:B}=this;C.lastLevel=d,C.lastTime=I,C.lastMsg=y,C.lastObj=E,C.lastLogger=B}C.write(A),t.dedupe&&(p=f.level)}else if(!t.dedupe)break}function o(...A){for(let{stream:f}of this.streams)typeof f.emit=="function"&&f.emit(...A)}function a(){for(let{stream:A}of this.streams)typeof A.flushSync=="function"&&A.flushSync()}function c(A){if(!A)return s;let f=typeof A.write=="function"||A.stream,d=A.write?A:A.stream;if(!f)throw Error("stream object needs to implement either StreamEntry or DestinationStream interface");let{streams:h,streamLevels:p}=this,C;typeof A.levelVal=="number"?C=A.levelVal:typeof A.level=="string"?C=p[A.level]:typeof A.level=="number"?C=A.level:C=Mfe;let m={stream:d,level:C,levelVal:void 0,id:r++};return h.unshift(m),h.sort(Ufe),this.minLevel=h[0].level,s}function u(){for(let{stream:A}of this.streams)typeof A.flushSync=="function"&&A.flushSync(),A.end()}function l(A){let f=new Array(this.streams.length);for(let d=0;d=0:e{"use strict";var Yfe=require("node:os"),l4=k1(),$fe=F1(),Gfe=q1(),A4=WL(),jfe=W8(),f4=Wu(),{configure:Jfe}=Z8(),{assertDefaultLevelFound:Wfe,mappings:d4,genLsCache:zfe,genLevelComparison:Xfe,assertLevelComparison:Kfe}=aB(),{DEFAULT_LEVELS:h4,SORTING_ORDER:Zfe}=lg(),{createArgsNormalizer:ede,asChindings:tde,buildSafeSonicBoom:n4,buildFormatters:rde,stringify:mB,normalizeDestFileDescriptor:s4,noop:nde}=ug(),{version:sde}=cB(),{chindingsSym:i4,redactFmtSym:ide,serializersSym:o4,timeSym:ode,timeSliceIndexSym:ade,streamSym:cde,stringifySym:a4,stringifySafeSym:EB,stringifiersSym:c4,setLevelSym:ude,endSym:lde,formatOptsSym:Ade,messageKeySym:fde,errorKeySym:dde,nestedKeySym:hde,mixinSym:pde,levelCompSym:gde,useOnlyCustomLevelsSym:mde,formattersSym:u4,hooksSym:Ede,nestedKeyStrSym:Cde,mixinMergeStrategySym:yde,msgPrefixSym:Ide}=f4,{epochTime:p4,nullTime:bde}=A4,{pid:Bde}=process,xde=Yfe.hostname(),vde=l4.err,Qde={level:"info",levelComparison:Zfe.ASC,levels:h4,messageKey:"msg",errorKey:"err",nestedKey:null,enabled:!0,base:{pid:Bde,hostname:xde},serializers:Object.assign(Object.create(null),{err:vde}),formatters:Object.assign(Object.create(null),{bindings(e){return e},level(e,t){return{level:t}}}),hooks:{logMethod:void 0,streamWrite:void 0},timestamp:p4,name:void 0,redact:null,customLevels:null,useOnlyCustomLevels:!1,depthLimit:5,edgeLimit:100},Tde=ede(Qde),wde=Object.assign(Object.create(null),l4);function CB(...e){let t={},{opts:r,stream:n}=Tde(t,$fe(),...e);r.level&&typeof r.level=="string"&&h4[r.level.toLowerCase()]!==void 0&&(r.level=r.level.toLowerCase());let{redact:s,crlf:i,serializers:o,timestamp:a,messageKey:c,errorKey:u,nestedKey:l,base:A,name:f,level:d,customLevels:h,levelComparison:p,mixin:C,mixinMergeStrategy:m,useOnlyCustomLevels:I,formatters:y,hooks:E,depthLimit:B,edgeLimit:v,onChild:x,msgPrefix:Q}=r,S=Jfe({maximumDepth:B,maximumBreadth:v}),T=rde(y.level,y.bindings,y.log),R=mB.bind({[EB]:S}),D=s?Gfe(s,R):{},k=s?{stringify:D[ide]}:{stringify:R},F="}"+(i?`\r +`:` +`),j=tde.bind(null,{[i4]:"",[o4]:o,[c4]:D,[a4]:mB,[EB]:S,[u4]:T}),H="";A!==null&&(f===void 0?H=j(A):H=j(Object.assign({},A,{name:f})));let U=a instanceof Function?a:a?p4:bde,X=U().indexOf(":")+1;if(I&&!h)throw Error("customLevels is required if useOnlyCustomLevels is set true");if(C&&typeof C!="function")throw Error(`Unknown mixin type "${typeof C}" - expected "function"`);if(Q&&typeof Q!="string")throw Error(`Unknown msgPrefix type "${typeof Q}" - expected "string"`);Wfe(d,h,I);let L=d4(h,I);typeof n.emit=="function"&&n.emit("message",{code:"PINO_CONFIG",config:{levels:L,messageKey:c,errorKey:u}}),Kfe(p);let Y=Xfe(p);return Object.assign(t,{levels:L,[gde]:Y,[mde]:I,[cde]:n,[ode]:U,[ade]:X,[a4]:mB,[EB]:S,[c4]:D,[lde]:F,[Ade]:k,[fde]:c,[dde]:u,[hde]:l,[Cde]:l?`,${JSON.stringify(l)}:{`:"",[o4]:o,[pde]:C,[yde]:m,[i4]:H,[u4]:T,[Ede]:E,silent:nde,onChild:x,[Ide]:Q}),Object.setPrototypeOf(t,jfe()),zfe(t),t[ude](d),t}us.exports=CB;us.exports.destination=(e=process.stdout.fd)=>typeof e=="object"?(e.dest=s4(e.dest||process.stdout.fd),n4(e)):n4({dest:s4(e),minLength:0});us.exports.transport=tB();us.exports.multistream=r4();us.exports.levels=d4();us.exports.stdSerializers=wde;us.exports.stdTimeFunctions=Object.assign({},A4);us.exports.symbols=f4;us.exports.version=sde;us.exports.default=CB;us.exports.pino=CB});var Jf=b((hXe,I4)=>{"use strict";var Sde=iL(),Ag=g4(),{serializersSym:m4}=Ag.symbols,{FST_ERR_LOG_INVALID_DESTINATION:_de,FST_ERR_LOG_INVALID_LOGGER:Rde}=Mr();function E4(e){if(e.stream&&e.file)throw new _de;e.file&&(e.stream=Ag.destination(e.file),delete e.file);let t=e.logger,r=e.genReqId,n=null;return t?(e.logger=void 0,e.genReqId=void 0,t[m4]&&(e.serializers=Object.assign({},e.serializers,t[m4])),n=t.child({},e),e.logger=t,e.genReqId=r):n=Ag(e,e.stream),n}var yB={req:function(t){return{method:t.method,url:t.url,version:t.headers&&t.headers["accept-version"],hostname:t.hostname,remoteAddress:t.ip,remotePort:t.socket?t.socket.remotePort:void 0}},err:Ag.stdSerializers.err,res:function(t){return{statusCode:t.statusCode}}};function Dde(){let e=process.hrtime();return e[0]*1e3+e[1]/1e6}function Nde(e){if(!e.logger){let n=Sde;return n.child=()=>n,{logger:n,hasLogger:!1}}if(C4(e.logger))return{logger:E4({logger:e.logger,serializers:Object.assign({},yB,e.logger.serializers)}),hasLogger:!0};let t={};return Object.prototype.toString.call(e.logger)==="[object Object]"&&Reflect.ownKeys(e.logger).forEach(n=>{Object.defineProperty(t,n,{value:e.logger[n],writable:!0,enumerable:!0,configurable:!0})}),t.level=t.level||"info",t.serializers=Object.assign({},yB,t.serializers),e.logger=t,{logger:E4(e.logger),hasLogger:!0}}function C4(e,t){let r=["info","error","debug","fatal","warn","trace","child"],n=e?r.filter(s=>!e[s]||typeof e[s]!="function"):r;if(n.length){if(n.length===r.length&&!t)return!1;throw Rde(n.join(","))}else return!0}function kde(e,t,r,n,s){let i={[e.requestIdLogLabel]:n},o=e.childLoggerFactory.call(e.server,t,i,s||{},r);return e.childLoggerFactory!==y4&&C4(o,!0),o}function y4(e,t,r){return e.child(t,r)}I4.exports={createLogger:Nde,createChildLogger:kde,defaultChildLoggerFactory:y4,serializers:yB,now:Dde}});var fg=b((pXe,b4)=>{"use strict";b4.exports=Fde;function Ku(e){return e instanceof Buffer?Buffer.from(e):new e.constructor(e.buffer.slice(),e.byteOffset,e.length)}function Fde(e){if(e=e||{},e.circles)return Lde(e);let t=new Map;if(t.set(Date,o=>new Date(o)),t.set(Map,(o,a)=>new Map(n(Array.from(o),a))),t.set(Set,(o,a)=>new Set(n(Array.from(o),a))),e.constructorHandlers)for(let o of e.constructorHandlers)t.set(o[0],o[1]);let r=null;return e.proto?i:s;function n(o,a){let c=Object.keys(o),u=new Array(c.length);for(let l=0;lnew Date(c)),n.set(Map,(c,u)=>new Map(i(Array.from(c),u))),n.set(Set,(c,u)=>new Set(i(Array.from(c),u))),e.constructorHandlers)for(let c of e.constructorHandlers)n.set(c[0],c[1]);let s=null;return e.proto?a:o;function i(c,u){let l=Object.keys(c),A=new Array(l.length);for(let f=0;f{"use strict";var Ode=fg()({circles:!1,proto:!0}),{kSchemaVisited:B4,kSchemaResponse:Mde}=mr(),IB=Symbol.for("fluent-schema-object"),{FSTDEP022:Pde}=mi(),{FST_ERR_SCH_MISSING_ID:Ude,FST_ERR_SCH_ALREADY_PRESENT:Hde,FST_ERR_SCH_DUPLICATE:qde,FST_ERR_SCH_CONTENT_MISSING_SCHEMA:x4}=Mr(),Q4=["params","body","querystring","query","headers"];function hg(e){this.store=e||{}}hg.prototype.add=function(e){let t=Ode(e.isFluentSchema||e.isFluentJSONSchema||e[IB]?e.valueOf():e),r=t.$id;if(!r)throw new Ude;if(this.store[r])throw new Hde(r);this.store[r]=t};hg.prototype.getSchemas=function(){return Object.assign({},this.store)};hg.prototype.getSchema=function(e){return this.store[e]};function v4(e){return typeof e=="object"&&Object.getPrototypeOf(e)!==Object.prototype}function Vde(e,t,r){if(t[B4])return t;if(t.query){if(t.querystring)throw new qde("querystring");t.querystring=t.query}Yde(t);for(let n of Q4){let s=t[n];if(s&&!v4(s)){if(n==="body"&&s.content){let i=s.content,o=Object.keys(i);for(let a=0;a{"use strict";var Gde=/[\u0000-\u001f\u0022\u005c\ud800-\udfff]/;S4.exports=class w4{constructor(t){switch(t&&t.rounding){case"floor":this.parseInteger=Math.floor;break;case"ceil":this.parseInteger=Math.ceil;break;case"round":this.parseInteger=Math.round;break;case"trunc":default:this.parseInteger=Math.trunc;break}this._options=t}asInteger(t){if(Number.isInteger(t))return""+t;if(typeof t=="bigint")return t.toString();let r=this.parseInteger(t);if(r===1/0||r===-1/0||r!==r)throw new Error(`The value "${t}" cannot be converted to an integer.`);return""+r}asNumber(t){let r=Number(t);if(r!==r)throw new Error(`The value "${t}" cannot be converted to a number.`);return r===1/0||r===-1/0?"null":""+r}asBoolean(t){return t&&"true"||"false"}asDateTime(t){if(t===null)return'""';if(t instanceof Date)return'"'+t.toISOString()+'"';if(typeof t=="string")return'"'+t+'"';throw new Error(`The value "${t}" cannot be converted to a date-time.`)}asDate(t){if(t===null)return'""';if(t instanceof Date)return'"'+new Date(t.getTime()-t.getTimezoneOffset()*6e4).toISOString().slice(0,10)+'"';if(typeof t=="string")return'"'+t+'"';throw new Error(`The value "${t}" cannot be converted to a date.`)}asTime(t){if(t===null)return'""';if(t instanceof Date)return'"'+new Date(t.getTime()-t.getTimezoneOffset()*6e4).toISOString().slice(11,19)+'"';if(typeof t=="string")return'"'+t+'"';throw new Error(`The value "${t}" cannot be converted to a time.`)}asString(t){let r=t.length;if(r<42){let s="",i=-1,o=255;for(var n=0;n=55296&&o<=57343)return JSON.stringify(t);return i===-1&&'"'+t+'"'||'"'+s+t.slice(i)+'"'}else return r<5e3&&Gde.test(t)===!1?'"'+t+'"':JSON.stringify(t)}asUnsafeString(t){return'"'+t+'"'}getState(){return this._options}static restoreFromState(t){return new w4(t)}}});var R4=b((EXe,_4)=>{"use strict";var jde=gg(),Jde={mode:"standalone"},Wde=jde.restoreFromState(Jde),zde=null;_4.exports=function(t,r){let n="{",s="}",i="[",o="]",a=",",c=":",u='"',l=n+s,A=i+o,f=u+u,d="null";function h(C){let m=C&&typeof C.toJSON=="function"?C.toJSON():C;if(m===null)return l;let I,y=n,E=!1;return I=m.statusCode,I!==void 0&&(!E&&(E=!0)||(y+=a),y+='"statusCode":',y+=r.asNumber(I)),I=m.code,I!==void 0&&(!E&&(E=!0)||(y+=a),y+='"code":',typeof I!="string"?I===null?y+=f:I instanceof Date?y+=u+I.toISOString()+u:I instanceof RegExp?y+=r.asString(I.source):y+=r.asString(I.toString()):y+=r.asString(I)),I=m.error,I!==void 0&&(!E&&(E=!0)||(y+=a),y+='"error":',typeof I!="string"?I===null?y+=f:I instanceof Date?y+=u+I.toISOString()+u:I instanceof RegExp?y+=r.asString(I.source):y+=r.asString(I.toString()):y+=r.asString(I)),I=m.message,I!==void 0&&(!E&&(E=!0)||(y+=a),y+='"message":',typeof I!="string"?I===null?y+=f:I instanceof Date?y+=u+I.toISOString()+u:I instanceof RegExp?y+=r.asString(I.source):y+=r.asString(I.toString()):y+=r.asString(I)),y+s}return h}(zde,Wde)});var zf=b((CXe,F4)=>{"use strict";var D4=require("node:http").STATUS_CODES,Xde=y1(),{kReplyHeaders:Bc,kReplyNextErrorHandler:mg,kReplyIsRunningOnErrorHook:Kde,kReplyHasStatusCode:Zde,kRouteContext:k4,kDisableRequestLogging:Eg}=mr(),{FST_ERR_REP_INVALID_PAYLOAD_TYPE:ehe,FST_ERR_FAILED_ERROR_SERIALIZATION:the}=Mr(),{getSchemaSerializer:rhe}=Wf(),bB=R4(),nhe={func:ihe,toJSON(){return this.func.name.toString()+"()"}};function she(e,t,r){e[Kde]=!1;let n=e[k4];if(e[mg]===!1){N4(t,e,function(o,a){try{o.raw.writeHead(o.raw.statusCode,o[Bc])}catch(c){o.log[Eg]||o.log.warn({req:o.request,res:o,err:c},c&&c.message),o.raw.writeHead(o.raw.statusCode)}o.raw.end(a)});return}let s=e[mg]||n.errorHandler;e[mg]=Object.getPrototypeOf(s),delete e[Bc]["content-type"],delete e[Bc]["content-length"];let i=s.func;if(!i){e[mg]=!1,N4(t,e,r);return}try{let o=i(t,e.request,e);o!==void 0&&(o!==null&&typeof o.then=="function"?Xde(o,e):e.send(o))}catch(o){e.send(o)}}function ihe(e,t,r){if(ahe(e,r),!r[Zde]||r.statusCode===200){let n=e.statusCode||e.status;r.code(n>=400?n:500)}r.statusCode<500?r.log[Eg]||r.log.info({res:r,err:e},e&&e.message):r.log[Eg]||r.log.error({req:t,res:r,err:e},e&&e.message),r.send(e)}function N4(e,t,r){let n=t.raw,s=t.statusCode;t[Bc]["content-type"]=t[Bc]["content-type"]??"application/json; charset=utf-8";let i;try{let o=rhe(t[k4],s,t[Bc]["content-type"]);i=o===!1?bB({error:D4[s+""],code:e.code,message:e.message,statusCode:s}):o(Object.create(e,{error:{value:D4[s+""]},message:{value:e.message},statusCode:{value:s}}))}catch(o){t.log[Eg]||t.log.error({err:o,statusCode:n.statusCode},"The serializer for the given status code failed"),t.code(500),i=bB(new the(o.message,e.message))}typeof i!="string"&&!Buffer.isBuffer(i)&&(i=bB(new ehe(typeof i))),t[Bc]["content-length"]=""+Buffer.byteLength(i),r(t,i)}function ohe(e=nhe,t){if(!t)return e;let r=Object.create(e);return r.func=t,r}function ahe(e,t){let r=t.raw,n=r.statusCode;n=n>=400?n:500,e!=null&&(e.headers!==void 0&&t.headers(e.headers),e.status>=400?n=e.status:e.statusCode>=400&&(n=e.statusCode)),r.statusCode=n}F4.exports={buildErrorHandler:ohe,handleError:she}});var xg=b((yXe,Bg)=>{"use strict";var QB=require("node:stream").finished,che=require("node:stream").Readable,{kFourOhFourContext:L4,kPublicRouteContext:O4,kReplyErrorHandlerCalled:Y4,kReplyHijacked:Xf,kReplyStartTime:Kf,kReplyEndTime:wB,kReplySerializer:oo,kReplySerializerDefault:yg,kReplyIsError:Ig,kReplyHeaders:Tt,kReplyTrailers:Cr,kReplyHasStatusCode:SB,kReplyIsRunningOnErrorHook:_B,kReplyNextErrorHandler:uhe,kDisableRequestLogging:$4,kSchemaResponse:bg,kReplyCacheSerializeFns:ca,kSchemaController:BB,kOptions:lhe,kRouteContext:He}=mr(),{onSendHookRunner:G4,onResponseHookRunner:Ahe,preHandlerHookRunner:fhe,preSerializationHookRunner:dhe}=na(),M4=x1()[Symbol.for("internals")],hhe=Jf(),TB=hhe.now,{handleError:P4}=zf(),{getSchemaSerializer:phe}=Wf(),xB={JSON:"application/json; charset=utf-8",PLAIN:"text/plain; charset=utf-8",OCTET:"application/octet-stream"},{FST_ERR_REP_INVALID_PAYLOAD_TYPE:ghe,FST_ERR_REP_RESPONSE_BODY_CONSUMED:mhe,FST_ERR_REP_ALREADY_SENT:j4,FST_ERR_REP_SENT_VALUE:Ehe,FST_ERR_SEND_INSIDE_ONERR:Che,FST_ERR_BAD_STATUS_CODE:yhe,FST_ERR_BAD_TRAILER_NAME:Ihe,FST_ERR_BAD_TRAILER_VALUE:bhe,FST_ERR_MISSING_SERIALIZATION_FN:Bhe,FST_ERR_MISSING_CONTENTTYPE_SERIALIZATION_FN:xhe}=Mr(),{FSTDEP010:vhe,FSTDEP013:Qhe,FSTDEP019:The,FSTDEP020:whe,FSTDEP021:She}=mi(),J4=Object.prototype.toString;function xt(e,t,r){this.raw=e,this[oo]=null,this[Y4]=!1,this[Ig]=!1,this[_B]=!1,this.request=t,this[Tt]={},this[Cr]=null,this[SB]=!1,this[Kf]=void 0,this.log=r}xt.props=[];Object.defineProperties(xt.prototype,{[He]:{get(){return this.request[He]}},context:{get(){return The(),this.request[He]}},elapsedTime:{get(){return this[Kf]===void 0?0:(this[wB]||TB())-this[Kf]}},server:{get(){return this.request[He].server}},sent:{enumerable:!0,get(){return(this[Xf]||this.raw.writableEnded)===!0},set(e){if(vhe(),e!==!0)throw new Ehe;if(this.sent&&this[Xf])throw new j4(this.request.url,this.request.method);this[Xf]=!0}},statusCode:{get(){return this.raw.statusCode},set(e){this.code(e)}},[O4]:{get(){return this.request[O4]}}});xt.prototype.hijack=function(){return this[Xf]=!0,this};xt.prototype.send=function(e){if(this[_B]===!0)throw new Che;if(this.sent)return this.log.warn({err:new j4(this.request.url,this.request.method)}),this;if(e instanceof Error||this[Ig]===!0)return this[Ig]=!1,Zf(this,e,xc),this;if(e===void 0)return xc(this,e),this;let t=this.getHeader("content-type"),r=t!==void 0;if(e!==null){if(typeof e.pipe=="function"||typeof e.getReader=="function"||J4.call(e)==="[object Response]")return xc(this,e),this;if(e?.buffer instanceof ArrayBuffer){r===!1&&(this[Tt]["content-type"]=xB.OCTET);let n=Buffer.isBuffer(e)?e:Buffer.from(e.buffer,e.byteOffset,e.byteLength);return xc(this,n),this}if(r===!1&&typeof e=="string")return this[Tt]["content-type"]=xB.PLAIN,xc(this,e),this}if(this[oo]!==null){if(typeof e!="string")return U4(this,e),this;e=this[oo](e)}else if(r===!1||t.indexOf("json")>-1){if(r===!1)this[Tt]["content-type"]=xB.JSON;else if(t.indexOf("charset")===-1){let n=t.trim();n.endsWith(";")?this[Tt]["content-type"]=`${n} charset=utf-8`:this[Tt]["content-type"]=`${n}; charset=utf-8`}if(typeof e!="string")return U4(this,e),this}return xc(this,e),this};xt.prototype.getHeader=function(e){e=e.toLowerCase();let t=this.raw,r=this[Tt][e];return r===void 0&&t.hasHeader(e)&&(r=t.getHeader(e)),r};xt.prototype.getHeaders=function(){return{...this.raw.getHeaders(),...this[Tt]}};xt.prototype.hasHeader=function(e){return e=e.toLowerCase(),this[Tt][e]!==void 0||this.raw.hasHeader(e)};xt.prototype.removeHeader=function(e){return delete this[Tt][e.toLowerCase()],this};xt.prototype.header=function(e,t=""){return e=e.toLowerCase(),this[Tt][e]&&e==="set-cookie"?(typeof this[Tt][e]=="string"&&(this[Tt][e]=[this[Tt][e]]),Array.isArray(t)?Array.prototype.push.apply(this[Tt][e],t):this[Tt][e].push(t)):this[Tt][e]=t,this};xt.prototype.headers=function(e){let t=Object.keys(e);for(var r=0;r!==t.length;++r){let n=t[r];this.header(n,e[n])}return this};var _he=new Set(["transfer-encoding","content-length","host","cache-control","max-forwards","te","authorization","set-cookie","content-encoding","content-type","content-range","trailer"]);xt.prototype.trailer=function(e,t){if(e=e.toLowerCase(),_he.has(e))throw new Ihe(e);if(typeof t!="function")throw new bhe(e,typeof t);return this[Cr]===null&&(this[Cr]={}),this[Cr][e]=t,this};xt.prototype.hasTrailer=function(e){return this[Cr]?.[e.toLowerCase()]!==void 0};xt.prototype.removeTrailer=function(e){return this[Cr]===null?this:(this[Cr][e.toLowerCase()]=void 0,this)};xt.prototype.code=function(e){let t=Number(e);if(isNaN(t)||t<100||t>599)throw new yhe(e||String(e));return this.raw.statusCode=t,this[SB]=!0,this};xt.prototype.status=xt.prototype.code;xt.prototype.getSerializationFunction=function(e,t){let r;return typeof e=="string"||typeof e=="number"?typeof t=="string"?r=this[He][bg]?.[e]?.[t]:r=this[He][bg]?.[e]:typeof e=="object"&&(r=this[He][ca]?.get(e)),r};xt.prototype.compileSerializationSchema=function(e,t=null,r=null){let{request:n}=this,{method:s,url:i}=n;if(this[He][ca]?.has(e))return this[He][ca].get(e);let a=(this[He].serializerCompiler||this.server[BB].serializerCompiler||this.server[BB].setupSerializer(this.server[lhe])||this.server[BB].serializerCompiler)({schema:e,method:s,url:i,httpStatus:t,contentType:r});return this[He][ca]==null&&(this[He][ca]=new WeakMap),this[He][ca].set(e,a),a};xt.prototype.serializeInput=function(e,t,r,n){let s=r,i;if(r=typeof t=="string"||typeof t=="number"?t:r,n=r&&s!==r?s:n,r!=null){if(n!=null?i=this[He][bg]?.[r]?.[n]:i=this[He][bg]?.[r],i==null)throw n?new xhe(r,n):new Bhe(r)}else this[He][ca]?.has(t)?i=this[He][ca].get(t):i=this.compileSerializationSchema(t,r,n);return i(e)};xt.prototype.serialize=function(e){return this[oo]!==null?this[oo](e):this[He]&&this[He][yg]?this[He][yg](e,this.raw.statusCode):X4(this[He],e,this.raw.statusCode)};xt.prototype.serializer=function(e){return this[oo]=e,this};xt.prototype.type=function(e){return this[Tt]["content-type"]=e,this};xt.prototype.redirect=function(e,t){if(typeof e=="number"){She();let r=t;t=e,e=r}return t||(t=this[SB]?this.raw.statusCode:302),this.header("location",e).code(t).send()};xt.prototype.callNotFound=function(){return Ohe(this),this};xt.prototype.getResponseTime=function(){return whe(),this.elapsedTime};xt.prototype.then=function(e,t){if(this.sent){e();return}QB(this.raw,r=>{r&&r.code!=="ERR_STREAM_PREMATURE_CLOSE"?t?t(r):this.log&&this.log.warn("unhandled rejection on reply.then"):e()})};function U4(e,t){e[He].preSerialization!==null?dhe(e[He].preSerialization,e.request,e,t,H4):H4(null,e.request,e,t)}function H4(e,t,r,n){if(e!=null){Zf(r,e);return}try{r[oo]!==null?n=r[oo](n):r[He]&&r[He][yg]?n=r[He][yg](n,r.raw.statusCode):n=X4(r[He],n,r.raw.statusCode,r[Tt]["content-type"])}catch(s){Rhe(s,r),Zf(r,s);return}xc(r,n)}function Rhe(e,t){e.serialization=t[He].config}function xc(e,t){e[He].onSend!==null?G4(e[He].onSend,e.request,e,t,Dhe):W4(e,t)}function Dhe(e,t,r,n){e!=null?Zf(r,e):W4(r,n)}function vB(e,t){let r=e.raw;try{r.writeHead(t,e[Tt])}catch(n){throw n.code==="ERR_HTTP_HEADERS_SENT"&&e.log.warn(`Reply was already sent, did you forget to "return reply" in the "${e.request.raw.url}" (${e.request.raw.method}) route?`),n}}function W4(e,t){let r=e.raw,n=e.request;if(e[Cr]!==null){let i=Object.keys(e[Cr]),o="";for(let a of i)typeof e[Cr][a]=="function"&&(o+=" ",o+=a);e.header("Transfer-Encoding","chunked"),e.header("Trailer",o.trim())}if(J4.call(t)==="[object Response]"){if(typeof t.status=="number"&&e.code(t.status),typeof t.headers=="object"&&typeof t.headers.forEach=="function")for(let[i,o]of t.headers)e.header(i,o);if(t.body!==null&&t.bodyUsed)throw new mhe;t=t.body}let s=r.statusCode;if(t==null){s>=200&&s!==204&&s!==304&&n.method!=="HEAD"&&e[Cr]===null&&(e[Tt]["content-length"]="0"),vB(e,s),Cg(t,r,e);return}if(s>=100&&s<200||s===204){e.removeHeader("content-type"),e.removeHeader("content-length"),vB(e,s),Cg(void 0,r,e),typeof t.resume=="function"&&(t.on("error",K4),t.resume());return}if(typeof t.pipe=="function"){z4(t,r,e);return}if(typeof t.getReader=="function"){Nhe(t,r,e);return}if(typeof t!="string"&&!Buffer.isBuffer(t))throw new ghe(typeof t);if(e[Cr]===null){let i=e[Tt]["content-length"];(!i||n.raw.method!=="HEAD"&&Number(i)!==Buffer.byteLength(t))&&(e[Tt]["content-length"]=""+Buffer.byteLength(t))}vB(e,s),r.write(t),Cg(t,r,e)}function q4(e,t,r){t.code==="ERR_STREAM_PREMATURE_CLOSE"?e[$4]||e.info({res:r},"stream closed prematurely"):e.warn({err:t},"response terminated with an error with headers already sent")}function Nhe(e,t,r){let n=che.fromWeb(e);z4(n,t,r)}function z4(e,t,r){let n=!0,s=!1;if(khe(e,t,r),QB(e,{readable:!0,writable:!1},function(i){n=!1,i!=null&&(t.headersSent||r.request.raw.aborted===!0?(s||(s=!0,q4(r.log,i,r)),t.destroy()):Zf(r,i))}),QB(t,function(i){n&&(i!=null&&t.headersSent&&!s&&(s=!0,q4(r.log,i,t)),typeof e.destroy=="function"?e.destroy():typeof e.close=="function"?e.close(K4):typeof e.abort=="function"?e.abort():r.log.warn("stream payload does not end properly"))}),t.headersSent)r.log.warn("response will send, but you shouldn't use res.writeHead in stream mode");else for(let i in r[Tt])t.setHeader(i,r[Tt][i]);e.pipe(t)}function Cg(e,t,r){if(r[Cr]===null){t.end(null,null,null);return}let n=Object.keys(r[Cr]),s={},i=0,o=!0;function a(){i===0&&(t.addTrailers(s),t.end(null,null,null))}for(let c of n){let u=function(A,f){i++,A?r.log.debug(A):s[c]=f,process.nextTick(a)};if(typeof r[Cr][c]!="function")continue;o=!1,i--;let l=r[Cr][c](r,e,u);typeof l=="object"&&typeof l.then=="function"?l.then(A=>u(null,A),u):l!=null&&(Qhe(),u(null,l))}o&&t.end(null,null,null)}function khe(e,t,r){r[Cr]!==null&&e.on("end",()=>Cg(null,t,r))}function Zf(e,t,r){e[He].onError!==null&&!e[uhe]?(e[_B]=!0,G4(e[He].onError,e.request,e,t,()=>P4(e,t,r))):P4(e,t,r)}function Fhe(e){e[Kf]=TB();let t=r=>{e[wB]=TB(),e.raw.removeListener("finish",t),e.raw.removeListener("error",t);let n=e[He];n&&n.onResponse!==null?Ahe(n.onResponse,e.request,e,V4):V4(r,e.request,e)};e.raw.on("finish",t),e.raw.on("error",t)}function V4(e,t,r){if(r.log[$4])return;let n=r.elapsedTime;if(e!=null){r.log.error({res:r,err:e,responseTime:n},"request errored");return}r.log.info({res:r,responseTime:n},"request completed")}function Lhe(e){let t=e.props.slice();function r(n,s,i){this.raw=n,this[Ig]=!1,this[Y4]=!1,this[Xf]=!1,this[oo]=null,this.request=s,this[Tt]={},this[Cr]=null,this[Kf]=void 0,this[wB]=void 0,this.log=i;for(var o,a=0;a{"use strict";Z4.exports=Mhe;function Mhe(e){if(!e)throw new TypeError("argument req is required");var t=Uhe(e.headers["x-forwarded-for"]||""),r=Phe(e),n=[r].concat(t);return n}function Phe(e){return e.socket?e.socket.remoteAddress:e.connection.remoteAddress}function Uhe(e){for(var t=e.length,r=[],n=e.length,s=e.length-1;s>=0;s--)switch(e.charCodeAt(s)){case 32:n===t&&(n=t=s);break;case 44:n!==t&&r.push(e.substring(n,t)),n=t=s;break;default:n=s;break}return n!==t&&r.push(e.substring(n,t)),r}});var rO=b((tO,ed)=>{(function(){var e,t,r,n,s,i,o,a,c;t={},a=this,typeof ed<"u"&&ed!==null&&ed.exports?ed.exports=t:a.ipaddr=t,o=function(u,l,A,f){var d,h;if(u.length!==l.length)throw new Error("ipaddr: cannot match CIDR for objects with different lengths");for(d=0;f>0;){if(h=A-f,h<0&&(h=0),u[d]>>h!==l[d]>>h)return!1;f-=A,d+=1}return!0},t.subnetMatch=function(u,l,A){var f,d,h,p,C;A==null&&(A="unicast");for(h in l)for(p=l[h],p[0]&&!(p[0]instanceof Array)&&(p=[p]),f=0,d=p.length;f=0;A=f+=-1)if(d=this.octets[A],d in C){if(p=C[d],h&&p!==0)return null;p!==8&&(h=!0),l+=p}else return null;return 32-l},u}(),r="(0?\\d+|0x[a-f0-9]+)",n={fourOctet:new RegExp("^"+r+"\\."+r+"\\."+r+"\\."+r+"$","i"),longValue:new RegExp("^"+r+"$","i")},t.IPv4.parser=function(u){var l,A,f,d,h;if(A=function(p){return p[0]==="0"&&p[1]!=="x"?parseInt(p,8):parseInt(p)},l=u.match(n.fourOctet))return function(){var p,C,m,I;for(m=l.slice(1,6),I=[],p=0,C=m.length;p4294967295||h<0)throw new Error("ipaddr: address outside defined range");return function(){var p,C;for(C=[],d=p=0;p<=24;d=p+=8)C.push(h>>d&255);return C}().reverse()}else return null},t.IPv6=function(){function u(l,A){var f,d,h,p,C,m;if(l.length===16)for(this.parts=[],f=d=0;d<=14;f=d+=2)this.parts.push(l[f]<<8|l[f+1]);else if(l.length===8)this.parts=l;else throw new Error("ipaddr: ipv6 part count should be 8 or 16");for(m=this.parts,h=0,p=m.length;hA&&(l=f.index,A=f[0].length);return A<0?h:h.substring(0,l)+"::"+h.substring(l+A)},u.prototype.toByteArray=function(){var l,A,f,d,h;for(l=[],h=this.parts,A=0,f=h.length;A>8),l.push(d&255);return l},u.prototype.toNormalizedString=function(){var l,A,f;return l=function(){var d,h,p,C;for(p=this.parts,C=[],d=0,h=p.length;d>8,l&255,A>>8,A&255])},u.prototype.prefixLengthFromSubnetMask=function(){var l,A,f,d,h,p,C;for(C={0:16,32768:15,49152:14,57344:13,61440:12,63488:11,64512:10,65024:9,65280:8,65408:7,65472:6,65504:5,65520:4,65528:3,65532:2,65534:1,65535:0},l=0,h=!1,A=f=7;f>=0;A=f+=-1)if(d=this.parts[A],d in C){if(p=C[d],h&&p!==0)return null;p!==16&&(h=!0),l+=p}else return null;return 128-l},u}(),s="(?:[0-9a-f]+::?)+",c="%[0-9a-z]{1,}",i={zoneIndex:new RegExp(c,"i"),native:new RegExp("^(::)?("+s+")?([0-9a-f]+)?(::)?("+c+")?$","i"),transitional:new RegExp("^((?:"+s+")|(?:::)(?:"+s+")?)"+(r+"\\."+r+"\\."+r+"\\."+r)+("("+c+")?$"),"i")},e=function(u,l){var A,f,d,h,p,C;if(u.indexOf("::")!==u.lastIndexOf("::"))return null;for(C=(u.match(i.zoneIndex)||[])[0],C&&(C=C.substring(1),u=u.replace(/%.+$/,"")),A=0,f=-1;(f=u.indexOf(":",f+1))>=0;)A++;if(u.substr(0,2)==="::"&&A--,u.substr(-2,2)==="::"&&A--,A>l)return null;for(p=l-A,h=":";p--;)h+="0:";return u=u.replace("::",h),u[0]===":"&&(u=u.slice(1)),u[u.length-1]===":"&&(u=u.slice(0,-1)),l=function(){var m,I,y,E;for(y=u.split(":"),E=[],m=0,I=y.length;m=0&&l<=32))return f=[this.parse(A[1]),l],Object.defineProperty(f,"toString",{value:function(){return this.join("/")}}),f;throw new Error("ipaddr: string is not formatted like an IPv4 CIDR range")},t.IPv4.subnetMaskFromPrefixLength=function(u){var l,A,f;if(u=parseInt(u),u<0||u>32)throw new Error("ipaddr: invalid IPv4 prefix length");for(f=[0,0,0,0],A=0,l=Math.floor(u/8);A=0&&l<=128))return f=[this.parse(A[1]),l],Object.defineProperty(f,"toString",{value:function(){return this.join("/")}}),f;throw new Error("ipaddr: string is not formatted like an IPv6 CIDR range")},t.isValid=function(u){return t.IPv6.isValid(u)||t.IPv4.isValid(u)},t.parse=function(u){if(t.IPv6.isValid(u))return t.IPv6.parse(u);if(t.IPv4.isValid(u))return t.IPv4.parse(u);throw new Error("ipaddr: the address has neither IPv6 nor IPv4 format")},t.parseCIDR=function(u){var l;try{return t.IPv6.parseCIDR(u)}catch(A){l=A;try{return t.IPv4.parseCIDR(u)}catch(f){throw l=f,new Error("ipaddr: the address has neither IPv6 nor IPv4 CIDR format")}}},t.fromByteArray=function(u){var l;if(l=u.length,l===4)return new t.IPv4(u);if(l===16)return new t.IPv6(u);throw new Error("ipaddr: the binary input is neither an IPv6 nor IPv4 address")},t.process=function(u){var l;return l=this.parse(u),l.kind()==="ipv6"&&l.isIPv4MappedAddress()?l.toIPv4Address():l}}).call(tO)});var aO=b((bXe,Tg)=>{"use strict";Tg.exports=jhe;Tg.exports.all=iO;Tg.exports.compile=oO;var Hhe=eO(),sO=rO(),qhe=/^[0-9]+$/,vg=sO.isValid,Qg=sO.parse,nO={linklocal:["169.254.0.0/16","fe80::/10"],loopback:["127.0.0.1/8","::1/128"],uniquelocal:["10.0.0.0/8","172.16.0.0/12","192.168.0.0/16","fc00::/7"]};function iO(e,t){var r=Hhe(e);if(!t)return r;typeof t!="function"&&(t=oO(t));for(var n=0;ns)throw new TypeError("invalid range on address: "+e);return[n,i]}function Ghe(e){var t=Qg(e),r=t.kind();return r==="ipv4"?t.prefixLengthFromSubnetMask():null}function jhe(e,t){if(!e)throw new TypeError("req argument is required");if(!t)throw new TypeError("trust argument is required");var r=iO(e,t),n=r[r.length-1];return n}function Jhe(){return!1}function Whe(e){return function(r){if(!vg(r))return!1;for(var n=Qg(r),s,i=n.kind(),o=0;o{var Xhe="2.0.0",Khe=Number.MAX_SAFE_INTEGER||9007199254740991,Zhe=16,e0e=250,t0e=["major","premajor","minor","preminor","patch","prepatch","prerelease"];cO.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:Zhe,MAX_SAFE_BUILD_LENGTH:e0e,MAX_SAFE_INTEGER:Khe,RELEASE_TYPES:t0e,SEMVER_SPEC_VERSION:Xhe,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}});var rd=b((xXe,uO)=>{var r0e=typeof process=="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...e)=>console.error("SEMVER",...e):()=>{};uO.exports=r0e});var Zu=b((ao,lO)=>{var{MAX_SAFE_COMPONENT_LENGTH:RB,MAX_SAFE_BUILD_LENGTH:n0e,MAX_LENGTH:s0e}=td(),i0e=rd();ao=lO.exports={};var o0e=ao.re=[],a0e=ao.safeRe=[],ce=ao.src=[],ue=ao.t={},c0e=0,DB="[a-zA-Z0-9-]",u0e=[["\\s",1],["\\d",s0e],[DB,n0e]],l0e=e=>{for(let[t,r]of u0e)e=e.split(`${t}*`).join(`${t}{0,${r}}`).split(`${t}+`).join(`${t}{1,${r}}`);return e},Ne=(e,t,r)=>{let n=l0e(t),s=c0e++;i0e(e,s,t),ue[e]=s,ce[s]=t,o0e[s]=new RegExp(t,r?"g":void 0),a0e[s]=new RegExp(n,r?"g":void 0)};Ne("NUMERICIDENTIFIER","0|[1-9]\\d*");Ne("NUMERICIDENTIFIERLOOSE","\\d+");Ne("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${DB}*`);Ne("MAINVERSION",`(${ce[ue.NUMERICIDENTIFIER]})\\.(${ce[ue.NUMERICIDENTIFIER]})\\.(${ce[ue.NUMERICIDENTIFIER]})`);Ne("MAINVERSIONLOOSE",`(${ce[ue.NUMERICIDENTIFIERLOOSE]})\\.(${ce[ue.NUMERICIDENTIFIERLOOSE]})\\.(${ce[ue.NUMERICIDENTIFIERLOOSE]})`);Ne("PRERELEASEIDENTIFIER",`(?:${ce[ue.NUMERICIDENTIFIER]}|${ce[ue.NONNUMERICIDENTIFIER]})`);Ne("PRERELEASEIDENTIFIERLOOSE",`(?:${ce[ue.NUMERICIDENTIFIERLOOSE]}|${ce[ue.NONNUMERICIDENTIFIER]})`);Ne("PRERELEASE",`(?:-(${ce[ue.PRERELEASEIDENTIFIER]}(?:\\.${ce[ue.PRERELEASEIDENTIFIER]})*))`);Ne("PRERELEASELOOSE",`(?:-?(${ce[ue.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${ce[ue.PRERELEASEIDENTIFIERLOOSE]})*))`);Ne("BUILDIDENTIFIER",`${DB}+`);Ne("BUILD",`(?:\\+(${ce[ue.BUILDIDENTIFIER]}(?:\\.${ce[ue.BUILDIDENTIFIER]})*))`);Ne("FULLPLAIN",`v?${ce[ue.MAINVERSION]}${ce[ue.PRERELEASE]}?${ce[ue.BUILD]}?`);Ne("FULL",`^${ce[ue.FULLPLAIN]}$`);Ne("LOOSEPLAIN",`[v=\\s]*${ce[ue.MAINVERSIONLOOSE]}${ce[ue.PRERELEASELOOSE]}?${ce[ue.BUILD]}?`);Ne("LOOSE",`^${ce[ue.LOOSEPLAIN]}$`);Ne("GTLT","((?:<|>)?=?)");Ne("XRANGEIDENTIFIERLOOSE",`${ce[ue.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);Ne("XRANGEIDENTIFIER",`${ce[ue.NUMERICIDENTIFIER]}|x|X|\\*`);Ne("XRANGEPLAIN",`[v=\\s]*(${ce[ue.XRANGEIDENTIFIER]})(?:\\.(${ce[ue.XRANGEIDENTIFIER]})(?:\\.(${ce[ue.XRANGEIDENTIFIER]})(?:${ce[ue.PRERELEASE]})?${ce[ue.BUILD]}?)?)?`);Ne("XRANGEPLAINLOOSE",`[v=\\s]*(${ce[ue.XRANGEIDENTIFIERLOOSE]})(?:\\.(${ce[ue.XRANGEIDENTIFIERLOOSE]})(?:\\.(${ce[ue.XRANGEIDENTIFIERLOOSE]})(?:${ce[ue.PRERELEASELOOSE]})?${ce[ue.BUILD]}?)?)?`);Ne("XRANGE",`^${ce[ue.GTLT]}\\s*${ce[ue.XRANGEPLAIN]}$`);Ne("XRANGELOOSE",`^${ce[ue.GTLT]}\\s*${ce[ue.XRANGEPLAINLOOSE]}$`);Ne("COERCEPLAIN",`(^|[^\\d])(\\d{1,${RB}})(?:\\.(\\d{1,${RB}}))?(?:\\.(\\d{1,${RB}}))?`);Ne("COERCE",`${ce[ue.COERCEPLAIN]}(?:$|[^\\d])`);Ne("COERCEFULL",ce[ue.COERCEPLAIN]+`(?:${ce[ue.PRERELEASE]})?(?:${ce[ue.BUILD]})?(?:$|[^\\d])`);Ne("COERCERTL",ce[ue.COERCE],!0);Ne("COERCERTLFULL",ce[ue.COERCEFULL],!0);Ne("LONETILDE","(?:~>?)");Ne("TILDETRIM",`(\\s*)${ce[ue.LONETILDE]}\\s+`,!0);ao.tildeTrimReplace="$1~";Ne("TILDE",`^${ce[ue.LONETILDE]}${ce[ue.XRANGEPLAIN]}$`);Ne("TILDELOOSE",`^${ce[ue.LONETILDE]}${ce[ue.XRANGEPLAINLOOSE]}$`);Ne("LONECARET","(?:\\^)");Ne("CARETTRIM",`(\\s*)${ce[ue.LONECARET]}\\s+`,!0);ao.caretTrimReplace="$1^";Ne("CARET",`^${ce[ue.LONECARET]}${ce[ue.XRANGEPLAIN]}$`);Ne("CARETLOOSE",`^${ce[ue.LONECARET]}${ce[ue.XRANGEPLAINLOOSE]}$`);Ne("COMPARATORLOOSE",`^${ce[ue.GTLT]}\\s*(${ce[ue.LOOSEPLAIN]})$|^$`);Ne("COMPARATOR",`^${ce[ue.GTLT]}\\s*(${ce[ue.FULLPLAIN]})$|^$`);Ne("COMPARATORTRIM",`(\\s*)${ce[ue.GTLT]}\\s*(${ce[ue.LOOSEPLAIN]}|${ce[ue.XRANGEPLAIN]})`,!0);ao.comparatorTrimReplace="$1$2$3";Ne("HYPHENRANGE",`^\\s*(${ce[ue.XRANGEPLAIN]})\\s+-\\s+(${ce[ue.XRANGEPLAIN]})\\s*$`);Ne("HYPHENRANGELOOSE",`^\\s*(${ce[ue.XRANGEPLAINLOOSE]})\\s+-\\s+(${ce[ue.XRANGEPLAINLOOSE]})\\s*$`);Ne("STAR","(<|>)?=?\\s*\\*");Ne("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$");Ne("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")});var wg=b((vXe,AO)=>{var A0e=Object.freeze({loose:!0}),f0e=Object.freeze({}),d0e=e=>e?typeof e!="object"?A0e:e:f0e;AO.exports=d0e});var NB=b((QXe,hO)=>{var fO=/^[0-9]+$/,dO=(e,t)=>{let r=fO.test(e),n=fO.test(t);return r&&n&&(e=+e,t=+t),e===t?0:r&&!n?-1:n&&!r?1:edO(t,e);hO.exports={compareIdentifiers:dO,rcompareIdentifiers:h0e}});var Ur=b((TXe,EO)=>{var Sg=rd(),{MAX_LENGTH:pO,MAX_SAFE_INTEGER:_g}=td(),{safeRe:gO,t:mO}=Zu(),p0e=wg(),{compareIdentifiers:el}=NB(),kB=class e{constructor(t,r){if(r=p0e(r),t instanceof e){if(t.loose===!!r.loose&&t.includePrerelease===!!r.includePrerelease)return t;t=t.version}else if(typeof t!="string")throw new TypeError(`Invalid version. Must be a string. Got type "${typeof t}".`);if(t.length>pO)throw new TypeError(`version is longer than ${pO} characters`);Sg("SemVer",t,r),this.options=r,this.loose=!!r.loose,this.includePrerelease=!!r.includePrerelease;let n=t.trim().match(r.loose?gO[mO.LOOSE]:gO[mO.FULL]);if(!n)throw new TypeError(`Invalid Version: ${t}`);if(this.raw=t,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>_g||this.major<0)throw new TypeError("Invalid major version");if(this.minor>_g||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>_g||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map(s=>{if(/^[0-9]+$/.test(s)){let i=+s;if(i>=0&&i<_g)return i}return s}):this.prerelease=[],this.build=n[5]?n[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(t){if(Sg("SemVer.compare",this.version,this.options,t),!(t instanceof e)){if(typeof t=="string"&&t===this.version)return 0;t=new e(t,this.options)}return t.version===this.version?0:this.compareMain(t)||this.comparePre(t)}compareMain(t){return t instanceof e||(t=new e(t,this.options)),el(this.major,t.major)||el(this.minor,t.minor)||el(this.patch,t.patch)}comparePre(t){if(t instanceof e||(t=new e(t,this.options)),this.prerelease.length&&!t.prerelease.length)return-1;if(!this.prerelease.length&&t.prerelease.length)return 1;if(!this.prerelease.length&&!t.prerelease.length)return 0;let r=0;do{let n=this.prerelease[r],s=t.prerelease[r];if(Sg("prerelease compare",r,n,s),n===void 0&&s===void 0)return 0;if(s===void 0)return 1;if(n===void 0)return-1;if(n===s)continue;return el(n,s)}while(++r)}compareBuild(t){t instanceof e||(t=new e(t,this.options));let r=0;do{let n=this.build[r],s=t.build[r];if(Sg("build compare",r,n,s),n===void 0&&s===void 0)return 0;if(s===void 0)return 1;if(n===void 0)return-1;if(n===s)continue;return el(n,s)}while(++r)}inc(t,r,n){switch(t){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",r,n);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",r,n);break;case"prepatch":this.prerelease.length=0,this.inc("patch",r,n),this.inc("pre",r,n);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",r,n),this.inc("pre",r,n);break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":{let s=Number(n)?1:0;if(!r&&n===!1)throw new Error("invalid increment argument: identifier is empty");if(this.prerelease.length===0)this.prerelease=[s];else{let i=this.prerelease.length;for(;--i>=0;)typeof this.prerelease[i]=="number"&&(this.prerelease[i]++,i=-2);if(i===-1){if(r===this.prerelease.join(".")&&n===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(s)}}if(r){let i=[r,s];n===!1&&(i=[r]),el(this.prerelease[0],r)===0?isNaN(this.prerelease[1])&&(this.prerelease=i):this.prerelease=i}break}default:throw new Error(`invalid increment argument: ${t}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}};EO.exports=kB});var vc=b((wXe,yO)=>{var CO=Ur(),g0e=(e,t,r=!1)=>{if(e instanceof CO)return e;try{return new CO(e,t)}catch(n){if(!r)return null;throw n}};yO.exports=g0e});var bO=b((SXe,IO)=>{var m0e=vc(),E0e=(e,t)=>{let r=m0e(e,t);return r?r.version:null};IO.exports=E0e});var xO=b((_Xe,BO)=>{var C0e=vc(),y0e=(e,t)=>{let r=C0e(e.trim().replace(/^[=v]+/,""),t);return r?r.version:null};BO.exports=y0e});var TO=b((RXe,QO)=>{var vO=Ur(),I0e=(e,t,r,n,s)=>{typeof r=="string"&&(s=n,n=r,r=void 0);try{return new vO(e instanceof vO?e.version:e,r).inc(t,n,s).version}catch{return null}};QO.exports=I0e});var _O=b((DXe,SO)=>{var wO=vc(),b0e=(e,t)=>{let r=wO(e,null,!0),n=wO(t,null,!0),s=r.compare(n);if(s===0)return null;let i=s>0,o=i?r:n,a=i?n:r,c=!!o.prerelease.length;if(!!a.prerelease.length&&!c)return!a.patch&&!a.minor?"major":o.patch?"patch":o.minor?"minor":"major";let l=c?"pre":"";return r.major!==n.major?l+"major":r.minor!==n.minor?l+"minor":r.patch!==n.patch?l+"patch":"prerelease"};SO.exports=b0e});var DO=b((NXe,RO)=>{var B0e=Ur(),x0e=(e,t)=>new B0e(e,t).major;RO.exports=x0e});var kO=b((kXe,NO)=>{var v0e=Ur(),Q0e=(e,t)=>new v0e(e,t).minor;NO.exports=Q0e});var LO=b((FXe,FO)=>{var T0e=Ur(),w0e=(e,t)=>new T0e(e,t).patch;FO.exports=w0e});var MO=b((LXe,OO)=>{var S0e=vc(),_0e=(e,t)=>{let r=S0e(e,t);return r&&r.prerelease.length?r.prerelease:null};OO.exports=_0e});var ls=b((OXe,UO)=>{var PO=Ur(),R0e=(e,t,r)=>new PO(e,r).compare(new PO(t,r));UO.exports=R0e});var qO=b((MXe,HO)=>{var D0e=ls(),N0e=(e,t,r)=>D0e(t,e,r);HO.exports=N0e});var YO=b((PXe,VO)=>{var k0e=ls(),F0e=(e,t)=>k0e(e,t,!0);VO.exports=F0e});var Rg=b((UXe,GO)=>{var $O=Ur(),L0e=(e,t,r)=>{let n=new $O(e,r),s=new $O(t,r);return n.compare(s)||n.compareBuild(s)};GO.exports=L0e});var JO=b((HXe,jO)=>{var O0e=Rg(),M0e=(e,t)=>e.sort((r,n)=>O0e(r,n,t));jO.exports=M0e});var zO=b((qXe,WO)=>{var P0e=Rg(),U0e=(e,t)=>e.sort((r,n)=>P0e(n,r,t));WO.exports=U0e});var nd=b((VXe,XO)=>{var H0e=ls(),q0e=(e,t,r)=>H0e(e,t,r)>0;XO.exports=q0e});var Dg=b((YXe,KO)=>{var V0e=ls(),Y0e=(e,t,r)=>V0e(e,t,r)<0;KO.exports=Y0e});var FB=b(($Xe,ZO)=>{var $0e=ls(),G0e=(e,t,r)=>$0e(e,t,r)===0;ZO.exports=G0e});var LB=b((GXe,e3)=>{var j0e=ls(),J0e=(e,t,r)=>j0e(e,t,r)!==0;e3.exports=J0e});var Ng=b((jXe,t3)=>{var W0e=ls(),z0e=(e,t,r)=>W0e(e,t,r)>=0;t3.exports=z0e});var kg=b((JXe,r3)=>{var X0e=ls(),K0e=(e,t,r)=>X0e(e,t,r)<=0;r3.exports=K0e});var OB=b((WXe,n3)=>{var Z0e=FB(),epe=LB(),tpe=nd(),rpe=Ng(),npe=Dg(),spe=kg(),ipe=(e,t,r,n)=>{switch(t){case"===":return typeof e=="object"&&(e=e.version),typeof r=="object"&&(r=r.version),e===r;case"!==":return typeof e=="object"&&(e=e.version),typeof r=="object"&&(r=r.version),e!==r;case"":case"=":case"==":return Z0e(e,r,n);case"!=":return epe(e,r,n);case">":return tpe(e,r,n);case">=":return rpe(e,r,n);case"<":return npe(e,r,n);case"<=":return spe(e,r,n);default:throw new TypeError(`Invalid operator: ${t}`)}};n3.exports=ipe});var i3=b((zXe,s3)=>{var ope=Ur(),ape=vc(),{safeRe:Fg,t:Lg}=Zu(),cpe=(e,t)=>{if(e instanceof ope)return e;if(typeof e=="number"&&(e=String(e)),typeof e!="string")return null;t=t||{};let r=null;if(!t.rtl)r=e.match(t.includePrerelease?Fg[Lg.COERCEFULL]:Fg[Lg.COERCE]);else{let c=t.includePrerelease?Fg[Lg.COERCERTLFULL]:Fg[Lg.COERCERTL],u;for(;(u=c.exec(e))&&(!r||r.index+r[0].length!==e.length);)(!r||u.index+u[0].length!==r.index+r[0].length)&&(r=u),c.lastIndex=u.index+u[1].length+u[2].length;c.lastIndex=-1}if(r===null)return null;let n=r[2],s=r[3]||"0",i=r[4]||"0",o=t.includePrerelease&&r[5]?`-${r[5]}`:"",a=t.includePrerelease&&r[6]?`+${r[6]}`:"";return ape(`${n}.${s}.${i}${o}${a}`,t)};s3.exports=cpe});var a3=b((XXe,o3)=>{var MB=class{constructor(){this.max=1e3,this.map=new Map}get(t){let r=this.map.get(t);if(r!==void 0)return this.map.delete(t),this.map.set(t,r),r}delete(t){return this.map.delete(t)}set(t,r){if(!this.delete(t)&&r!==void 0){if(this.map.size>=this.max){let s=this.map.keys().next().value;this.delete(s)}this.map.set(t,r)}return this}};o3.exports=MB});var As=b((KXe,A3)=>{var upe=/\s+/g,PB=class e{constructor(t,r){if(r=Ape(r),t instanceof e)return t.loose===!!r.loose&&t.includePrerelease===!!r.includePrerelease?t:new e(t.raw,r);if(t instanceof UB)return this.raw=t.value,this.set=[[t]],this.formatted=void 0,this;if(this.options=r,this.loose=!!r.loose,this.includePrerelease=!!r.includePrerelease,this.raw=t.trim().replace(upe," "),this.set=this.raw.split("||").map(n=>this.parseRange(n.trim())).filter(n=>n.length),!this.set.length)throw new TypeError(`Invalid SemVer Range: ${this.raw}`);if(this.set.length>1){let n=this.set[0];if(this.set=this.set.filter(s=>!u3(s[0])),this.set.length===0)this.set=[n];else if(this.set.length>1){for(let s of this.set)if(s.length===1&&Epe(s[0])){this.set=[s];break}}}this.formatted=void 0}get range(){if(this.formatted===void 0){this.formatted="";for(let t=0;t0&&(this.formatted+="||");let r=this.set[t];for(let n=0;n0&&(this.formatted+=" "),this.formatted+=r[n].toString().trim()}}return this.formatted}format(){return this.range}toString(){return this.range}parseRange(t){let n=((this.options.includePrerelease&&gpe)|(this.options.loose&&mpe))+":"+t,s=c3.get(n);if(s)return s;let i=this.options.loose,o=i?Cn[nn.HYPHENRANGELOOSE]:Cn[nn.HYPHENRANGE];t=t.replace(o,wpe(this.options.includePrerelease)),Dt("hyphen replace",t),t=t.replace(Cn[nn.COMPARATORTRIM],dpe),Dt("comparator trim",t),t=t.replace(Cn[nn.TILDETRIM],hpe),Dt("tilde trim",t),t=t.replace(Cn[nn.CARETTRIM],ppe),Dt("caret trim",t);let a=t.split(" ").map(A=>Cpe(A,this.options)).join(" ").split(/\s+/).map(A=>Tpe(A,this.options));i&&(a=a.filter(A=>(Dt("loose invalid filter",A,this.options),!!A.match(Cn[nn.COMPARATORLOOSE])))),Dt("range list",a);let c=new Map,u=a.map(A=>new UB(A,this.options));for(let A of u){if(u3(A))return[A];c.set(A.value,A)}c.size>1&&c.has("")&&c.delete("");let l=[...c.values()];return c3.set(n,l),l}intersects(t,r){if(!(t instanceof e))throw new TypeError("a Range is required");return this.set.some(n=>l3(n,r)&&t.set.some(s=>l3(s,r)&&n.every(i=>s.every(o=>i.intersects(o,r)))))}test(t){if(!t)return!1;if(typeof t=="string")try{t=new fpe(t,this.options)}catch{return!1}for(let r=0;re.value==="<0.0.0-0",Epe=e=>e.value==="",l3=(e,t)=>{let r=!0,n=e.slice(),s=n.pop();for(;r&&n.length;)r=n.every(i=>s.intersects(i,t)),s=n.pop();return r},Cpe=(e,t)=>(Dt("comp",e,t),e=bpe(e,t),Dt("caret",e),e=ype(e,t),Dt("tildes",e),e=xpe(e,t),Dt("xrange",e),e=Qpe(e,t),Dt("stars",e),e),sn=e=>!e||e.toLowerCase()==="x"||e==="*",ype=(e,t)=>e.trim().split(/\s+/).map(r=>Ipe(r,t)).join(" "),Ipe=(e,t)=>{let r=t.loose?Cn[nn.TILDELOOSE]:Cn[nn.TILDE];return e.replace(r,(n,s,i,o,a)=>{Dt("tilde",e,n,s,i,o,a);let c;return sn(s)?c="":sn(i)?c=`>=${s}.0.0 <${+s+1}.0.0-0`:sn(o)?c=`>=${s}.${i}.0 <${s}.${+i+1}.0-0`:a?(Dt("replaceTilde pr",a),c=`>=${s}.${i}.${o}-${a} <${s}.${+i+1}.0-0`):c=`>=${s}.${i}.${o} <${s}.${+i+1}.0-0`,Dt("tilde return",c),c})},bpe=(e,t)=>e.trim().split(/\s+/).map(r=>Bpe(r,t)).join(" "),Bpe=(e,t)=>{Dt("caret",e,t);let r=t.loose?Cn[nn.CARETLOOSE]:Cn[nn.CARET],n=t.includePrerelease?"-0":"";return e.replace(r,(s,i,o,a,c)=>{Dt("caret",e,s,i,o,a,c);let u;return sn(i)?u="":sn(o)?u=`>=${i}.0.0${n} <${+i+1}.0.0-0`:sn(a)?i==="0"?u=`>=${i}.${o}.0${n} <${i}.${+o+1}.0-0`:u=`>=${i}.${o}.0${n} <${+i+1}.0.0-0`:c?(Dt("replaceCaret pr",c),i==="0"?o==="0"?u=`>=${i}.${o}.${a}-${c} <${i}.${o}.${+a+1}-0`:u=`>=${i}.${o}.${a}-${c} <${i}.${+o+1}.0-0`:u=`>=${i}.${o}.${a}-${c} <${+i+1}.0.0-0`):(Dt("no pr"),i==="0"?o==="0"?u=`>=${i}.${o}.${a}${n} <${i}.${o}.${+a+1}-0`:u=`>=${i}.${o}.${a}${n} <${i}.${+o+1}.0-0`:u=`>=${i}.${o}.${a} <${+i+1}.0.0-0`),Dt("caret return",u),u})},xpe=(e,t)=>(Dt("replaceXRanges",e,t),e.split(/\s+/).map(r=>vpe(r,t)).join(" ")),vpe=(e,t)=>{e=e.trim();let r=t.loose?Cn[nn.XRANGELOOSE]:Cn[nn.XRANGE];return e.replace(r,(n,s,i,o,a,c)=>{Dt("xRange",e,n,s,i,o,a,c);let u=sn(i),l=u||sn(o),A=l||sn(a),f=A;return s==="="&&f&&(s=""),c=t.includePrerelease?"-0":"",u?s===">"||s==="<"?n="<0.0.0-0":n="*":s&&f?(l&&(o=0),a=0,s===">"?(s=">=",l?(i=+i+1,o=0,a=0):(o=+o+1,a=0)):s==="<="&&(s="<",l?i=+i+1:o=+o+1),s==="<"&&(c="-0"),n=`${s+i}.${o}.${a}${c}`):l?n=`>=${i}.0.0${c} <${+i+1}.0.0-0`:A&&(n=`>=${i}.${o}.0${c} <${i}.${+o+1}.0-0`),Dt("xRange return",n),n})},Qpe=(e,t)=>(Dt("replaceStars",e,t),e.trim().replace(Cn[nn.STAR],"")),Tpe=(e,t)=>(Dt("replaceGTE0",e,t),e.trim().replace(Cn[t.includePrerelease?nn.GTE0PRE:nn.GTE0],"")),wpe=e=>(t,r,n,s,i,o,a,c,u,l,A,f)=>(sn(n)?r="":sn(s)?r=`>=${n}.0.0${e?"-0":""}`:sn(i)?r=`>=${n}.${s}.0${e?"-0":""}`:o?r=`>=${r}`:r=`>=${r}${e?"-0":""}`,sn(u)?c="":sn(l)?c=`<${+u+1}.0.0-0`:sn(A)?c=`<${u}.${+l+1}.0-0`:f?c=`<=${u}.${l}.${A}-${f}`:e?c=`<${u}.${l}.${+A+1}-0`:c=`<=${c}`,`${r} ${c}`.trim()),Spe=(e,t,r)=>{for(let n=0;n0){let s=e[n].semver;if(s.major===t.major&&s.minor===t.minor&&s.patch===t.patch)return!0}return!1}return!0}});var sd=b((ZXe,m3)=>{var id=Symbol("SemVer ANY"),VB=class e{static get ANY(){return id}constructor(t,r){if(r=f3(r),t instanceof e){if(t.loose===!!r.loose)return t;t=t.value}t=t.trim().split(/\s+/).join(" "),qB("comparator",t,r),this.options=r,this.loose=!!r.loose,this.parse(t),this.semver===id?this.value="":this.value=this.operator+this.semver.version,qB("comp",this)}parse(t){let r=this.options.loose?d3[h3.COMPARATORLOOSE]:d3[h3.COMPARATOR],n=t.match(r);if(!n)throw new TypeError(`Invalid comparator: ${t}`);this.operator=n[1]!==void 0?n[1]:"",this.operator==="="&&(this.operator=""),n[2]?this.semver=new p3(n[2],this.options.loose):this.semver=id}toString(){return this.value}test(t){if(qB("Comparator.test",t,this.options.loose),this.semver===id||t===id)return!0;if(typeof t=="string")try{t=new p3(t,this.options)}catch{return!1}return HB(t,this.operator,this.semver,this.options)}intersects(t,r){if(!(t instanceof e))throw new TypeError("a Comparator is required");return this.operator===""?this.value===""?!0:new g3(t.value,r).test(this.value):t.operator===""?t.value===""?!0:new g3(this.value,r).test(t.semver):(r=f3(r),r.includePrerelease&&(this.value==="<0.0.0-0"||t.value==="<0.0.0-0")||!r.includePrerelease&&(this.value.startsWith("<0.0.0")||t.value.startsWith("<0.0.0"))?!1:!!(this.operator.startsWith(">")&&t.operator.startsWith(">")||this.operator.startsWith("<")&&t.operator.startsWith("<")||this.semver.version===t.semver.version&&this.operator.includes("=")&&t.operator.includes("=")||HB(this.semver,"<",t.semver,r)&&this.operator.startsWith(">")&&t.operator.startsWith("<")||HB(this.semver,">",t.semver,r)&&this.operator.startsWith("<")&&t.operator.startsWith(">")))}};m3.exports=VB;var f3=wg(),{safeRe:d3,t:h3}=Zu(),HB=OB(),qB=rd(),p3=Ur(),g3=As()});var od=b((eKe,E3)=>{var _pe=As(),Rpe=(e,t,r)=>{try{t=new _pe(t,r)}catch{return!1}return t.test(e)};E3.exports=Rpe});var y3=b((tKe,C3)=>{var Dpe=As(),Npe=(e,t)=>new Dpe(e,t).set.map(r=>r.map(n=>n.value).join(" ").trim().split(" "));C3.exports=Npe});var b3=b((rKe,I3)=>{var kpe=Ur(),Fpe=As(),Lpe=(e,t,r)=>{let n=null,s=null,i=null;try{i=new Fpe(t,r)}catch{return null}return e.forEach(o=>{i.test(o)&&(!n||s.compare(o)===-1)&&(n=o,s=new kpe(n,r))}),n};I3.exports=Lpe});var x3=b((nKe,B3)=>{var Ope=Ur(),Mpe=As(),Ppe=(e,t,r)=>{let n=null,s=null,i=null;try{i=new Mpe(t,r)}catch{return null}return e.forEach(o=>{i.test(o)&&(!n||s.compare(o)===1)&&(n=o,s=new Ope(n,r))}),n};B3.exports=Ppe});var T3=b((sKe,Q3)=>{var YB=Ur(),Upe=As(),v3=nd(),Hpe=(e,t)=>{e=new Upe(e,t);let r=new YB("0.0.0");if(e.test(r)||(r=new YB("0.0.0-0"),e.test(r)))return r;r=null;for(let n=0;n{let a=new YB(o.semver.version);switch(o.operator){case">":a.prerelease.length===0?a.patch++:a.prerelease.push(0),a.raw=a.format();case"":case">=":(!i||v3(a,i))&&(i=a);break;case"<":case"<=":break;default:throw new Error(`Unexpected operation: ${o.operator}`)}}),i&&(!r||v3(r,i))&&(r=i)}return r&&e.test(r)?r:null};Q3.exports=Hpe});var S3=b((iKe,w3)=>{var qpe=As(),Vpe=(e,t)=>{try{return new qpe(e,t).range||"*"}catch{return null}};w3.exports=Vpe});var Og=b((oKe,N3)=>{var Ype=Ur(),D3=sd(),{ANY:$pe}=D3,Gpe=As(),jpe=od(),_3=nd(),R3=Dg(),Jpe=kg(),Wpe=Ng(),zpe=(e,t,r,n)=>{e=new Ype(e,n),t=new Gpe(t,n);let s,i,o,a,c;switch(r){case">":s=_3,i=Jpe,o=R3,a=">",c=">=";break;case"<":s=R3,i=Wpe,o=_3,a="<",c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(jpe(e,t,n))return!1;for(let u=0;u{d.semver===$pe&&(d=new D3(">=0.0.0")),A=A||d,f=f||d,s(d.semver,A.semver,n)?A=d:o(d.semver,f.semver,n)&&(f=d)}),A.operator===a||A.operator===c||(!f.operator||f.operator===a)&&i(e,f.semver))return!1;if(f.operator===c&&o(e,f.semver))return!1}return!0};N3.exports=zpe});var F3=b((aKe,k3)=>{var Xpe=Og(),Kpe=(e,t,r)=>Xpe(e,t,">",r);k3.exports=Kpe});var O3=b((cKe,L3)=>{var Zpe=Og(),ege=(e,t,r)=>Zpe(e,t,"<",r);L3.exports=ege});var U3=b((uKe,P3)=>{var M3=As(),tge=(e,t,r)=>(e=new M3(e,r),t=new M3(t,r),e.intersects(t,r));P3.exports=tge});var q3=b((lKe,H3)=>{var rge=od(),nge=ls();H3.exports=(e,t,r)=>{let n=[],s=null,i=null,o=e.sort((l,A)=>nge(l,A,r));for(let l of o)rge(l,t,r)?(i=l,s||(s=l)):(i&&n.push([s,i]),i=null,s=null);s&&n.push([s,null]);let a=[];for(let[l,A]of n)l===A?a.push(l):!A&&l===o[0]?a.push("*"):A?l===o[0]?a.push(`<=${A}`):a.push(`${l} - ${A}`):a.push(`>=${l}`);let c=a.join(" || "),u=typeof t.raw=="string"?t.raw:String(t);return c.length{var V3=As(),GB=sd(),{ANY:$B}=GB,ad=od(),jB=ls(),sge=(e,t,r={})=>{if(e===t)return!0;e=new V3(e,r),t=new V3(t,r);let n=!1;e:for(let s of e.set){for(let i of t.set){let o=oge(s,i,r);if(n=n||o!==null,o)continue e}if(n)return!1}return!0},ige=[new GB(">=0.0.0-0")],Y3=[new GB(">=0.0.0")],oge=(e,t,r)=>{if(e===t)return!0;if(e.length===1&&e[0].semver===$B){if(t.length===1&&t[0].semver===$B)return!0;r.includePrerelease?e=ige:e=Y3}if(t.length===1&&t[0].semver===$B){if(r.includePrerelease)return!0;t=Y3}let n=new Set,s,i;for(let d of e)d.operator===">"||d.operator===">="?s=$3(s,d,r):d.operator==="<"||d.operator==="<="?i=G3(i,d,r):n.add(d.semver);if(n.size>1)return null;let o;if(s&&i){if(o=jB(s.semver,i.semver,r),o>0)return null;if(o===0&&(s.operator!==">="||i.operator!=="<="))return null}for(let d of n){if(s&&!ad(d,String(s),r)||i&&!ad(d,String(i),r))return null;for(let h of t)if(!ad(d,String(h),r))return!1;return!0}let a,c,u,l,A=i&&!r.includePrerelease&&i.semver.prerelease.length?i.semver:!1,f=s&&!r.includePrerelease&&s.semver.prerelease.length?s.semver:!1;A&&A.prerelease.length===1&&i.operator==="<"&&A.prerelease[0]===0&&(A=!1);for(let d of t){if(l=l||d.operator===">"||d.operator===">=",u=u||d.operator==="<"||d.operator==="<=",s){if(f&&d.semver.prerelease&&d.semver.prerelease.length&&d.semver.major===f.major&&d.semver.minor===f.minor&&d.semver.patch===f.patch&&(f=!1),d.operator===">"||d.operator===">="){if(a=$3(s,d,r),a===d&&a!==s)return!1}else if(s.operator===">="&&!ad(s.semver,String(d),r))return!1}if(i){if(A&&d.semver.prerelease&&d.semver.prerelease.length&&d.semver.major===A.major&&d.semver.minor===A.minor&&d.semver.patch===A.patch&&(A=!1),d.operator==="<"||d.operator==="<="){if(c=G3(i,d,r),c===d&&c!==i)return!1}else if(i.operator==="<="&&!ad(i.semver,String(d),r))return!1}if(!d.operator&&(i||s)&&o!==0)return!1}return!(s&&u&&!i&&o!==0||i&&l&&!s&&o!==0||f||A)},$3=(e,t,r)=>{if(!e)return t;let n=jB(e.semver,t.semver,r);return n>0?e:n<0||t.operator===">"&&e.operator===">="?t:e},G3=(e,t,r)=>{if(!e)return t;let n=jB(e.semver,t.semver,r);return n<0?e:n>0||t.operator==="<"&&e.operator==="<="?t:e};j3.exports=sge});var WB=b((fKe,X3)=>{var JB=Zu(),W3=td(),age=Ur(),z3=NB(),cge=vc(),uge=bO(),lge=xO(),Age=TO(),fge=_O(),dge=DO(),hge=kO(),pge=LO(),gge=MO(),mge=ls(),Ege=qO(),Cge=YO(),yge=Rg(),Ige=JO(),bge=zO(),Bge=nd(),xge=Dg(),vge=FB(),Qge=LB(),Tge=Ng(),wge=kg(),Sge=OB(),_ge=i3(),Rge=sd(),Dge=As(),Nge=od(),kge=y3(),Fge=b3(),Lge=x3(),Oge=T3(),Mge=S3(),Pge=Og(),Uge=F3(),Hge=O3(),qge=U3(),Vge=q3(),Yge=J3();X3.exports={parse:cge,valid:uge,clean:lge,inc:Age,diff:fge,major:dge,minor:hge,patch:pge,prerelease:gge,compare:mge,rcompare:Ege,compareLoose:Cge,compareBuild:yge,sort:Ige,rsort:bge,gt:Bge,lt:xge,eq:vge,neq:Qge,gte:Tge,lte:wge,cmp:Sge,coerce:_ge,Comparator:Rge,Range:Dge,satisfies:Nge,toComparators:kge,maxSatisfying:Fge,minSatisfying:Lge,minVersion:Oge,validRange:Mge,outside:Pge,gtr:Uge,ltr:Hge,intersects:qge,simplifyRange:Vge,subset:Yge,SemVer:age,re:JB.re,src:JB.src,tokens:JB.t,SEMVER_SPEC_VERSION:W3.SEMVER_SPEC_VERSION,RELEASE_TYPES:W3.RELEASE_TYPES,compareIdentifiers:z3.compareIdentifiers,rcompareIdentifiers:z3.rcompareIdentifiers}});var Pg=b((dKe,ZB)=>{"use strict";var Mg=aO(),$ge=WB(),{FSTDEP005:Gge,FSTDEP012:jge,FSTDEP015:Jge,FSTDEP016:Wge,FSTDEP017:zge,FSTDEP018:Xge}=mi(),{kHasBeenDecorated:Kge,kSchemaBody:Zge,kSchemaHeaders:eme,kSchemaParams:tme,kSchemaQuerystring:K3,kSchemaController:zB,kOptions:rme,kRequestCacheValidateFns:ua,kRouteContext:Xt,kPublicRouteContext:Z3,kRequestOriginalUrl:XB}=mr(),{FST_ERR_REQ_INVALID_VALIDATION_INVOCATION:nme}=Mr(),eM={body:Zge,headers:eme,params:tme,querystring:K3,query:K3};function KB(e,t,r,n,s,i){this.id=e,this[Xt]=i,this.params=t,this.raw=r,this.query=n,this.log=s,this.body=void 0}KB.props=[];function sme(e){if(typeof e=="function")return e;if(e===!0)return function(){return!0};if(typeof e=="number")return function(t,r){return rr.trim());return Mg.compile(t)}return Mg.compile(e)}function ime(e,t){return t?ome(e,t):rM(e)}function rM(e){let t=e.props.slice();function r(n,s,i,o,a,c){this.id=n,this[Xt]=c,this.params=s,this.raw=i,this.query=o,this.log=a,this.body=void 0;for(var u,l=0;le.config},schema:{get:()=>e.schema}}),Object.freeze(s)}},routerMethod:{get(){return Xge(),this[Xt].config?.method}},routeConfig:{get(){return Wge(),this[Xt][Z3]?.config}},routeSchema:{get(){return Jge(),this[Xt][Z3].schema}},is404:{get(){return this[Xt].config?.url===void 0}},connection:{get(){return $ge.gte(process.versions.node,"13.0.0")&&Gge(),this.raw.connection}},socket:{get(){return this.raw.socket}},ip:{get(){if(this.socket)return this.socket.remoteAddress}},hostname:{get(){return this.raw.headers.host||this.raw.headers[":authority"]}},protocol:{get(){if(this.socket)return this.socket.encrypted?"https":"http"}},headers:{get(){return this.additionalHeaders?Object.assign({},this.raw.headers,this.additionalHeaders):this.raw.headers},set(e){this.additionalHeaders=e}},getValidationFunction:{value:function(e){if(typeof e=="string"){let t=eM[e];return this[Xt][t]}else if(typeof e=="object")return this[Xt][ua]?.get(e)}},compileValidationSchema:{value:function(e,t=null){let{method:r,url:n}=this;if(this[Xt][ua]?.has(e))return this[Xt][ua].get(e);let i=(this[Xt].validatorCompiler||this.server[zB].validatorCompiler||this.server[zB].setupValidator(this.server[rme])||this.server[zB].validatorCompiler)({schema:e,method:r,url:n,httpPart:t});return this[Xt][ua]==null&&(this[Xt][ua]=new WeakMap),this[Xt][ua].set(e,i),i}},validateInput:{value:function(e,t,r){r=typeof t=="string"?t:r;let n=r!=null&&typeof r=="string"&&eM[r],s;if(n&&(s=this[Xt][n]),s==null&&(t==null||typeof t!="object"||Array.isArray(t)))throw new nme(r);return s==null&&(this[Xt][ua]?.has(t)?s=this[Xt][ua].get(t):s=this.compileValidationSchema(t,r)),s(e)}}});ZB.exports=KB;ZB.exports.buildRequest=ime});var Ug=b((hKe,nM)=>{"use strict";var{kFourOhFourContext:ame,kReplySerializerDefault:cme,kSchemaErrorFormatter:ume,kErrorHandler:lme,kChildLoggerFactory:Ame,kOptions:fme,kReply:dme,kRequest:hme,kBodyLimit:pme,kLogLevel:gme,kContentTypeParser:mme,kRouteByFastify:Eme,kRequestCacheValidateFns:Cme,kReplyCacheSerializeFns:yme,kPublicRouteContext:Ime}=mr();function bme({schema:e,handler:t,config:r,requestIdLogLabel:n,childLoggerFactory:s,errorHandler:i,bodyLimit:o,logLevel:a,logSerializers:c,attachValidation:u,validatorCompiler:l,serializerCompiler:A,replySerializer:f,schemaErrorFormatter:d,exposeHeadRoute:h,prefixTrailingSlash:p,server:C,isFastify:m}){this.schema=e,this.handler=t,this.Reply=C[dme],this.Request=C[hme],this.contentTypeParser=C[mme],this.onRequest=null,this.onSend=null,this.onError=null,this.onTimeout=null,this.preHandler=null,this.onResponse=null,this.preSerialization=null,this.onRequestAbort=null,this.config=r,this.errorHandler=i||C[lme],this.requestIdLogLabel=n||C[fme].requestIdLogLabel,this.childLoggerFactory=s||C[Ame],this._middie=null,this._parserOptions={limit:o||C[pme]},this.exposeHeadRoute=h,this.prefixTrailingSlash=p,this.logLevel=a||C[gme],this.logSerializers=c,this[ame]=null,this.attachValidation=u,this[cme]=f,this.schemaErrorFormatter=d||C[ume]||xme,this[Eme]=m,this[Cme]=null,this[yme]=null,this.validatorCompiler=l||null,this.serializerCompiler=A||null,this[Ime]=Bme(this),this.server=C}function Bme(e){return Object.create(null,{schema:{enumerable:!0,get(){return e.schema}},config:{enumerable:!0,get(){return e.config}}})}function xme(e,t){let r="",n=", ";for(var s=0;s!==e.length;++s){let i=e[s];r+=t+(i.instancePath||"")+" "+i.message+n}return new Error(r.slice(0,-n.length))}nM.exports=bme});var ex=b((pKe,sM)=>{"use strict";sM.exports={supportedMethods:["DELETE","GET","HEAD","PATCH","POST","PUT","OPTIONS","PROPFIND","PROPPATCH","MKCOL","COPY","MOVE","LOCK","UNLOCK","TRACE","SEARCH","REPORT","MKCALENDAR"]}});var ix=b((gKe,cM)=>{"use strict";var{kReply:tx,kRequest:rx,kState:vme,kHasBeenDecorated:Qme}=mr(),{FST_ERR_DEC_ALREADY_PRESENT:iM,FST_ERR_DEC_MISSING_DEPENDENCY:Tme,FST_ERR_DEC_AFTER_START:wme,FST_ERR_DEC_DEPENDENCY_INVALID_TYPE:Sme}=Mr(),{FSTDEP006:_me}=mi();function Rme(e,t,r,n){if(Object.prototype.hasOwnProperty.call(e,t))throw new iM(t);nx(e,t,n),r&&(typeof r.getter=="function"||typeof r.setter=="function")?Object.defineProperty(e,t,{get:r.getter,set:r.setter}):e[t]=r}function oM(e,t,r,n){let s=e.prototype;if(Object.prototype.hasOwnProperty.call(s,t)||qg(e,t))throw new iM(t);e[Qme]=!0,nx(e,t,n),r&&(typeof r.getter=="function"||typeof r.setter=="function")?Object.defineProperty(s,t,{get:r.getter,set:r.setter}):typeof r=="function"?s[t]=r:e.props.push({key:t,value:r})}function aM(e,t){typeof t=="object"&&t&&!(typeof t.getter=="function"||typeof t.setter=="function")&&_me(e)}function Dme(e,t,r){return sx(this,e),Rme(this,e,t,r),this}function Hg(e,t){return t?t in e||e.prototype&&t in e.prototype||qg(e,t):e in this}function qg(e,t){return e.props?e.props.find(({key:r})=>r===t):!1}function Nme(e){return e&&qg(this[rx],e)?!0:Hg(this[rx].prototype,e)}function kme(e){return e&&qg(this[tx],e)?!0:Hg(this[tx].prototype,e)}function nx(e,t,r){if(r!=null){if(!Array.isArray(r))throw new Sme(t);for(var n=0;n!==r.length;++n)if(!Hg(e,r[n]))throw new Tme(r[n])}}function Fme(e,t,r){return sx(this,e),aM(e,t),oM(this[tx],e,t,r),this}function Lme(e,t,r){return sx(this,e),aM(e,t),oM(this[rx],e,t,r),this}function sx(e,t){if(e[vme].started)throw new wme(t)}cM.exports={add:Dme,exist:Hg,existRequest:Nme,existReply:kme,dependencies:nx,decorateReply:Fme,decorateRequest:Lme}});var lM=b(Ii=>{"use strict";var ox=class{constructor(t=1e3,r=0){if(isNaN(t)||t<0)throw new Error("Invalid max value");if(isNaN(r)||r<0)throw new Error("Invalid ttl value");this.first=null,this.items=new Map,this.last=null,this.max=t,this.ttl=r}get size(){return this.items.size}clear(){this.items=new Map,this.first=null,this.last=null}delete(t){if(this.items.has(t)){let r=this.items.get(t);this.items.delete(t),r.prev!==null&&(r.prev.next=r.next),r.next!==null&&(r.next.prev=r.prev),this.first===r&&(this.first=r.next),this.last===r&&(this.last=r.prev)}}deleteMany(t){for(var r=0;r0){let t=this.first;this.items.delete(t.key),this.size===0?(this.first=null,this.last=null):(this.first=t.next,this.first.prev=null)}}expiresAt(t){if(this.items.has(t))return this.items.get(t).expiry}get(t){if(this.items.has(t)){let r=this.items.get(t);if(this.ttl>0&&r.expiry<=Date.now()){this.delete(t);return}return r.value}}getMany(t){let r=[];for(var n=0;n0?Date.now()+this.ttl:this.ttl;return}this.max>0&&this.size===this.max&&this.evict();let n={expiry:this.ttl>0?Date.now()+this.ttl:this.ttl,key:t,prev:this.last,next:null,value:r};this.items.set(t,n),this.size===1?this.first=n:this.last.next=n,this.last=n}},ax=class{constructor(t=1e3,r=0){if(isNaN(t)||t<0)throw new Error("Invalid max value");if(isNaN(r)||r<0)throw new Error("Invalid ttl value");this.first=null,this.items=new Map,this.last=null,this.max=t,this.ttl=r}get size(){return this.items.size}bumpLru(t){if(this.last===t)return;let r=this.last,n=t.next,s=t.prev;this.first===t&&(this.first=n),t.next=null,t.prev=r,r.next=t,s!==null&&(s.next=n),n!==null&&(n.prev=s),this.last=t}clear(){this.items=new Map,this.first=null,this.last=null}delete(t){if(this.items.has(t)){let r=this.items.get(t);this.items.delete(t),r.prev!==null&&(r.prev.next=r.next),r.next!==null&&(r.next.prev=r.prev),this.first===r&&(this.first=r.next),this.last===r&&(this.last=r.prev)}}deleteMany(t){for(var r=0;r0){let t=this.first;this.items.delete(t.key),this.size===0?(this.first=null,this.last=null):(this.first=t.next,this.first.prev=null)}}expiresAt(t){if(this.items.has(t))return this.items.get(t).expiry}get(t){if(this.items.has(t)){let r=this.items.get(t);if(this.ttl>0&&r.expiry<=Date.now()){this.delete(t);return}return this.bumpLru(r),r.value}}getMany(t){let r=[];for(var n=0;n0?Date.now()+this.ttl:this.ttl,this.last!==s&&this.bumpLru(s);return}this.max>0&&this.size===this.max&&this.evict();let n={expiry:this.ttl>0?Date.now()+this.ttl:this.ttl,key:t,prev:this.last,next:null,value:r};this.items.set(t,n),this.size===1?this.first=n:this.last.next=n,this.last=n}},cd=class{constructor(t=1e3,r=0){if(isNaN(t)||t<0)throw new Error("Invalid max value");if(isNaN(r)||r<0)throw new Error("Invalid ttl value");this.first=null,this.items=Object.create(null),this.last=null,this.size=0,this.max=t,this.ttl=r}bumpLru(t){if(this.last===t)return;let r=this.last,n=t.next,s=t.prev;this.first===t&&(this.first=n),t.next=null,t.prev=r,r.next=t,s!==null&&(s.next=n),n!==null&&(n.prev=s),this.last=t}clear(){this.items=Object.create(null),this.first=null,this.last=null,this.size=0}delete(t){if(Object.prototype.hasOwnProperty.call(this.items,t)){let r=this.items[t];delete this.items[t],this.size--,r.prev!==null&&(r.prev.next=r.next),r.next!==null&&(r.next.prev=r.prev),this.first===r&&(this.first=r.next),this.last===r&&(this.last=r.prev)}}deleteMany(t){for(var r=0;r0){let t=this.first;delete this.items[t.key],--this.size===0?(this.first=null,this.last=null):(this.first=t.next,this.first.prev=null)}}expiresAt(t){if(Object.prototype.hasOwnProperty.call(this.items,t))return this.items[t].expiry}get(t){if(Object.prototype.hasOwnProperty.call(this.items,t)){let r=this.items[t];if(this.ttl>0&&r.expiry<=Date.now()){this.delete(t);return}return this.bumpLru(r),r.value}}getMany(t){let r=[];for(var n=0;n0?Date.now()+this.ttl:this.ttl,this.last!==s&&this.bumpLru(s);return}this.max>0&&this.size===this.max&&this.evict();let n={expiry:this.ttl>0?Date.now()+this.ttl:this.ttl,key:t,prev:this.last,next:null,value:r};this.items[t]=n,++this.size===1?this.first=n:this.last.next=n,this.last=n}},Vg=class{constructor(){this.records={}}initForCache(t,r){this.records[t]={[r]:{cacheSize:0,hits:0,falsyHits:0,emptyHits:0,misses:0,expirations:0,evictions:0,invalidateOne:0,invalidateAll:0,sets:0}}}resetForCache(t){for(let r of Object.keys(this.records[t]))this.records[t][r]={cacheSize:0,hits:0,falsyHits:0,emptyHits:0,misses:0,expirations:0,evictions:0,invalidateOne:0,invalidateAll:0,sets:0}}getStatistics(){return this.records}};function uM(e){return`${e.getFullYear()}-${(e.getMonth()+1).toString().padStart(2,"0")}-${e.getDate().toString().padStart(2,"0")}`}var cx=class{constructor(t,r,n){this.cacheId=t,this.statisticTtlInHours=r,this.collectionStart=new Date,this.currentTimeStamp=uM(this.collectionStart),this.records=n||new Vg,this.records.initForCache(this.cacheId,this.currentTimeStamp)}get currentRecord(){return this.records.records[this.cacheId][this.currentTimeStamp]||(this.records.records[this.cacheId][this.currentTimeStamp]={cacheSize:0,hits:0,falsyHits:0,emptyHits:0,misses:0,expirations:0,evictions:0,sets:0,invalidateOne:0,invalidateAll:0}),this.records.records[this.cacheId][this.currentTimeStamp]}hoursPassed(){return(Date.now()-this.collectionStart)/1e3/60/60}addHit(){this.archiveIfNeeded(),this.currentRecord.hits++}addFalsyHit(){this.archiveIfNeeded(),this.currentRecord.falsyHits++}addEmptyHit(){this.archiveIfNeeded(),this.currentRecord.emptyHits++}addMiss(){this.archiveIfNeeded(),this.currentRecord.misses++}addEviction(){this.archiveIfNeeded(),this.currentRecord.evictions++}setCacheSize(t){this.archiveIfNeeded(),this.currentRecord.cacheSize=t}addExpiration(){this.archiveIfNeeded(),this.currentRecord.expirations++}addSet(){this.archiveIfNeeded(),this.currentRecord.sets++}addInvalidateOne(){this.archiveIfNeeded(),this.currentRecord.invalidateOne++}addInvalidateAll(){this.archiveIfNeeded(),this.currentRecord.invalidateAll++}getStatistics(){return this.records.getStatistics()}archiveIfNeeded(){this.hoursPassed()>=this.statisticTtlInHours&&(this.collectionStart=new Date,this.currentTimeStamp=uM(this.collectionStart),this.records.initForCache(this.cacheId,this.currentTimeStamp))}},Yg=class extends cd{constructor(t,r,n,s,i){if(super(t||1e3,r||0),!n)throw new Error("Cache id is mandatory");this.hitStatistics=new cx(n,i!==void 0?i:24,s)}getStatistics(){return this.hitStatistics.getStatistics()}set(t,r){super.set(t,r),this.hitStatistics.addSet(),this.hitStatistics.setCacheSize(this.size)}evict(){super.evict(),this.hitStatistics.addEviction(),this.hitStatistics.setCacheSize(this.size)}delete(t,r=!1){super.delete(t),r||this.hitStatistics.addInvalidateOne(),this.hitStatistics.setCacheSize(this.size)}clear(){super.clear(),this.hitStatistics.addInvalidateAll(),this.hitStatistics.setCacheSize(this.size)}get(t){if(Object.prototype.hasOwnProperty.call(this.items,t)){let r=this.items[t];if(this.ttl>0&&r.expiry<=Date.now()){this.delete(t,!0),this.hitStatistics.addExpiration();return}return this.bumpLru(r),r.value||this.hitStatistics.addFalsyHit(),(r.value===void 0||r.value===null||r.value==="")&&this.hitStatistics.addEmptyHit(),this.hitStatistics.addHit(),r.value}this.hitStatistics.addMiss()}},$g=class{constructor(t=1e3,r=0){if(isNaN(t)||t<0)throw new Error("Invalid max value");if(isNaN(r)||r<0)throw new Error("Invalid ttl value");this.first=null,this.items=Object.create(null),this.last=null,this.size=0,this.max=t,this.ttl=r}clear(){this.items=Object.create(null),this.first=null,this.last=null,this.size=0}delete(t){if(Object.prototype.hasOwnProperty.call(this.items,t)){let r=this.items[t];delete this.items[t],this.size--,r.prev!==null&&(r.prev.next=r.next),r.next!==null&&(r.next.prev=r.prev),this.first===r&&(this.first=r.next),this.last===r&&(this.last=r.prev)}}deleteMany(t){for(var r=0;r0){let t=this.first;delete this.items[t.key],--this.size===0?(this.first=null,this.last=null):(this.first=t.next,this.first.prev=null)}}expiresAt(t){if(Object.prototype.hasOwnProperty.call(this.items,t))return this.items[t].expiry}get(t){if(Object.prototype.hasOwnProperty.call(this.items,t)){let r=this.items[t];if(this.ttl>0&&r.expiry<=Date.now()){this.delete(t);return}return r.value}}getMany(t){let r=[];for(var n=0;n0?Date.now()+this.ttl:this.ttl;return}this.max>0&&this.size===this.max&&this.evict();let n={expiry:this.ttl>0?Date.now()+this.ttl:this.ttl,key:t,prev:this.last,next:null,value:r};this.items[t]=n,++this.size===1?this.first=n:this.last.next=n,this.last=n}};Ii.Fifo=$g;Ii.FifoMap=ox;Ii.FifoObject=$g;Ii.HitStatisticsRecord=Vg;Ii.Lru=cd;Ii.LruHitStatistics=Yg;Ii.LruMap=ax;Ii.LruObject=cd;Ii.LruObjectHitStatistics=Yg});var hM=b((EKe,ud)=>{"use strict";var Jg=function(){};Jg.prototype=Object.create(null);var Gg=/; *([!#$%&'*+.^\w`|~-]+)=("(?:[\v\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\v\u0020-\u00ff])*"|[!#$%&'*+.^\w`|~-]+) */gu,jg=/\\([\v\u0020-\u00ff])/gu,AM=/^[!#$%&'*+.^\w|~-]+\/[!#$%&'*+.^\w|~-]+$/u,Qc={type:"",parameters:new Jg};Object.freeze(Qc.parameters);Object.freeze(Qc);function fM(e){if(typeof e!="string")throw new TypeError("argument header is required and must be a string");let t=e.indexOf(";"),r=t!==-1?e.slice(0,t).trim():e.trim();if(AM.test(r)===!1)throw new TypeError("invalid media type");let n={type:r.toLowerCase(),parameters:new Jg};if(t===-1)return n;let s,i,o;for(Gg.lastIndex=t;i=Gg.exec(e);){if(i.index!==t)throw new TypeError("invalid parameter format");t+=i[0].length,s=i[1].toLowerCase(),o=i[2],o[0]==='"'&&(o=o.slice(1,o.length-1),jg.test(o)&&(o=o.replace(jg,"$1"))),n.parameters[s]=o}if(t!==e.length)throw new TypeError("invalid parameter format");return n}function dM(e){if(typeof e!="string")return Qc;let t=e.indexOf(";"),r=t!==-1?e.slice(0,t).trim():e.trim();if(AM.test(r)===!1)return Qc;let n={type:r.toLowerCase(),parameters:new Jg};if(t===-1)return n;let s,i,o;for(Gg.lastIndex=t;i=Gg.exec(e);){if(i.index!==t)return Qc;t+=i[0].length,s=i[1].toLowerCase(),o=i[2],o[0]==='"'&&(o=o.slice(1,o.length-1),jg.test(o)&&(o=o.replace(jg,"$1"))),n.parameters[s]=o}return t!==e.length?Qc:n}ud.exports.default={parse:fM,safeParse:dM};ud.exports.parse=fM;ud.exports.safeParse=dM;ud.exports.defaultContentType=Qc});var CM=b((CKe,tl)=>{"use strict";var Ome=typeof Buffer<"u",pM=/"(?:_|\\u005[Ff])(?:_|\\u005[Ff])(?:p|\\u0070)(?:r|\\u0072)(?:o|\\u006[Ff])(?:t|\\u0074)(?:o|\\u006[Ff])(?:_|\\u005[Ff])(?:_|\\u005[Ff])"\s*:/,gM=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/;function mM(e,t,r){r==null&&t!==null&&typeof t=="object"&&(r=t,t=void 0),Ome&&Buffer.isBuffer(e)&&(e=e.toString()),e&&e.charCodeAt(0)===65279&&(e=e.slice(1));let n=JSON.parse(e,t);if(n===null||typeof n!="object")return n;let s=r&&r.protoAction||"error",i=r&&r.constructorAction||"error";if(s==="ignore"&&i==="ignore")return n;if(s!=="ignore"&&i!=="ignore"){if(pM.test(e)===!1&&gM.test(e)===!1)return n}else if(s!=="ignore"&&i==="ignore"){if(pM.test(e)===!1)return n}else if(gM.test(e)===!1)return n;return EM(n,{protoAction:s,constructorAction:i,safe:r&&r.safe})}function EM(e,{protoAction:t="error",constructorAction:r="error",safe:n}={}){let s=[e];for(;s.length;){let i=s;s=[];for(let o of i){if(t!=="ignore"&&Object.prototype.hasOwnProperty.call(o,"__proto__")){if(n===!0)return null;if(t==="error")throw new SyntaxError("Object contains forbidden prototype property");delete o.__proto__}if(r!=="ignore"&&Object.prototype.hasOwnProperty.call(o,"constructor")&&Object.prototype.hasOwnProperty.call(o.constructor,"prototype")){if(n===!0)return null;if(r==="error")throw new SyntaxError("Object contains forbidden prototype property");delete o.constructor}for(let a in o){let c=o[a];c&&typeof c=="object"&&s.push(c)}}}return e}function ux(e,t,r){let n=Error.stackTraceLimit;Error.stackTraceLimit=0;try{return mM(e,t,r)}finally{Error.stackTraceLimit=n}}function Mme(e,t){let r=Error.stackTraceLimit;Error.stackTraceLimit=0;try{return mM(e,t,{safe:!0})}catch{return null}finally{Error.stackTraceLimit=r}}tl.exports=ux;tl.exports.default=ux;tl.exports.parse=ux;tl.exports.safeParse=Mme;tl.exports.scan=EM});var hx=b((yKe,Ad)=>{"use strict";var{AsyncResource:Pme}=require("node:async_hooks"),{FifoMap:IM}=lM(),{safeParse:bM,defaultContentType:Ume}=hM(),Hme=CM(),{kDefaultJsonParse:ld,kContentTypeParser:rl,kBodyLimit:qme,kRequestPayloadStream:BM,kState:Ax,kTestInternals:Vme,kReplyIsError:xM,kRouteContext:Yme}=mr(),{FST_ERR_CTP_INVALID_TYPE:vM,FST_ERR_CTP_EMPTY_TYPE:$me,FST_ERR_CTP_ALREADY_PRESENT:Gme,FST_ERR_CTP_INVALID_HANDLER:jme,FST_ERR_CTP_INVALID_PARSE_TYPE:Jme,FST_ERR_CTP_BODY_TOO_LARGE:yM,FST_ERR_CTP_INVALID_MEDIA_TYPE:Wme,FST_ERR_CTP_INVALID_CONTENT_LENGTH:zme,FST_ERR_CTP_EMPTY_JSON_BODY:Xme,FST_ERR_CTP_INSTANCE_ALREADY_STARTED:fx}=Mr();function co(e,t,r){this[ld]=TM(t,r),this.customParsers=new Map,this.customParsers.set("application/json",new lx(!0,!1,e,this[ld])),this.customParsers.set("text/plain",new lx(!0,!1,e,dx)),this.parserList=[new Wg("application/json"),new Wg("text/plain")],this.parserRegExpList=[],this.cache=new IM(100)}co.prototype.add=function(e,t,r){let n=typeof e=="string";if(!n&&!(e instanceof RegExp))throw new vM;if(n&&e.length===0)throw new $me;if(typeof r!="function")throw new jme;if(this.existingParser(e))throw new Gme(e);if(t.parseAs!==void 0&&t.parseAs!=="string"&&t.parseAs!=="buffer")throw new Jme(t.parseAs);let s=new lx(t.parseAs==="string",t.parseAs==="buffer",t.bodyLimit,r);n&&e==="*"?this.customParsers.set("",s):(n?this.parserList.unshift(new Wg(e)):(e.isEssence=e.source.indexOf(";")===-1,this.parserRegExpList.unshift(e)),this.customParsers.set(e.toString(),s))};co.prototype.hasParser=function(e){return this.customParsers.has(typeof e=="string"?e:e.toString())};co.prototype.existingParser=function(e){return e==="application/json"&&this.customParsers.has(e)?this.customParsers.get(e).fn!==this[ld]:e==="text/plain"&&this.customParsers.has(e)?this.customParsers.get(e).fn!==dx:this.hasParser(e)};co.prototype.getParser=function(e){if(this.hasParser(e))return this.customParsers.get(e);let t=this.cache.get(e);if(t!==void 0)return t;let r=bM(e);if(r===Ume)return this.customParsers.get("");for(var n=0;n!==this.parserList.length;++n){let i=this.parserList[n];if(nEe(r,i)){let o=this.customParsers.get(i.name);return this.cache.set(e,o),o}}for(var s=0;s!==this.parserRegExpList.length;++s){let i=this.parserRegExpList[s];if(sEe(e,r.type,i)){let o=this.customParsers.get(i.toString());return this.cache.set(e,o),o}}return this.customParsers.get("")};co.prototype.removeAll=function(){this.customParsers=new Map,this.parserRegExpList=[],this.parserList=[],this.cache=new IM(100)};co.prototype.remove=function(e){if(!(typeof e=="string"||e instanceof RegExp))throw new vM;let t=this.customParsers.delete(e.toString()),r=typeof e=="string"?this.parserList:this.parserRegExpList,n=r.findIndex(s=>s.toString()===e.toString());return n>-1&&r.splice(n,1),t||n>-1};co.prototype.run=function(e,t,r,n){let s=this.getParser(e);if(s===void 0){r.is404?t(r,n):n.send(new Wme(e||void 0));return}let i=new Pme("content-type-parser:run",r);if(s.asString===!0||s.asBuffer===!0)QM(r,n,n[Yme]._parserOptions,s,o);else{let a=s.fn(r,r[BM],o);a&&typeof a.then=="function"&&a.then(c=>o(null,c),o)}function o(a,c){i.runInAsyncScope(()=>{i.emitDestroy(),a?(n[xM]=!0,n.send(a)):(r.body=c,t(r,n))})}};function QM(e,t,r,n,s){let i=n.asString,o=r.limit===null?n.bodyLimit:r.limit,a=e.headers["content-length"]===void 0?NaN:Number(e.headers["content-length"]);if(a>o){t.header("connection","close"),t.send(new yM);return}let c=0,u=i===!0?"":[],l=e[BM]||e.raw;i===!0&&l.setEncoding("utf8"),l.on("data",A),l.on("end",f),l.on("error",f),l.resume();function A(d){c+=d.length;let{receivedEncodedLength:h=0}=l;if(c>o||h>o){l.removeListener("data",A),l.removeListener("end",f),l.removeListener("error",f),t.send(new yM);return}i===!0?u+=d:u.push(d)}function f(d){if(l.removeListener("data",A),l.removeListener("end",f),l.removeListener("error",f),d!==void 0){typeof d.statusCode=="number"&&d.statusCode>=400||(d.statusCode=400),t[xM]=!0,t.code(d.statusCode).send(d);return}if(i===!0&&(c=Buffer.byteLength(u)),!Number.isNaN(a)&&(l.receivedEncodedLength||c)!==a){t.header("connection","close"),t.send(new zme);return}i===!1&&(u=Buffer.concat(u));let h=n.fn(e,u,s);h&&typeof h.then=="function"&&h.then(p=>s(null,p),s)}}function TM(e,t){return r;function r(n,s,i){if(s===""||s==null||Buffer.isBuffer(s)&&s.length===0)return i(new Xme,void 0);let o;try{o=Hme.parse(s,{protoAction:e,constructorAction:t})}catch(a){return a.statusCode=400,i(a,void 0)}i(null,o)}}function dx(e,t,r){r(null,t)}function lx(e,t,r,n){this.asString=e,this.asBuffer=t,this.bodyLimit=r,this.fn=n}function Kme(e){let t=new co;return t[ld]=e[ld],t.customParsers=new Map(e.customParsers.entries()),t.parserList=e.parserList.slice(),t.parserRegExpList=e.parserRegExpList.slice(),t}function Zme(e,t,r){if(this[Ax].started)throw new fx("addContentTypeParser");return typeof t=="function"&&(r=t,t={}),t||(t={}),t.bodyLimit||(t.bodyLimit=this[qme]),Array.isArray(e)?e.forEach(n=>this[rl].add(n,t,r)):this[rl].add(e,t,r),this}function eEe(e){return this[rl].hasParser(e)}function tEe(e){if(this[Ax].started)throw new fx("removeContentTypeParser");if(Array.isArray(e))for(let t of e)this[rl].remove(t);else this[rl].remove(e)}function rEe(){if(this[Ax].started)throw new fx("removeAllContentTypeParsers");this[rl].removeAll()}function nEe(e,t){if(t.isEssence)return e.type.indexOf(t)!==-1;if(e.type.indexOf(t.type)===-1)return!1;for(let r of t.parameterKeys)if(!(r in e.parameters)||e.parameters[r]!==t.parameters[r])return!1;return!0}function sEe(e,t,r){return r.isEssence?r.test(t):r.test(e)}function Wg(e){this.name=e;let t=bM(e);if(this.isEssence=e.indexOf(";")===-1,this.isEssence===!1&&t.type===""){let r=e.split(";",1)[0];this.type=r===""?e:r}else this.type=t.type;this.parameters=t.parameters,this.parameterKeys=Object.keys(t.parameters)}Wg.prototype.toString=function(){return this.name};Ad.exports=co;Ad.exports.helpers={buildContentTypeParser:Kme,addContentTypeParser:Zme,hasContentTypeParser:eEe,removeContentTypeParser:tEe,removeAllContentTypeParsers:rEe};Ad.exports.defaultParsers={getDefaultJsonParser:TM,defaultTextParser:dx};Ad.exports[Vme]={rawBody:QM}});var la=b((IKe,wM)=>{"use strict";wM.exports=function e(t,r){if(t===r)return!0;if(t&&r&&typeof t=="object"&&typeof r=="object"){if(t.constructor!==r.constructor)return!1;var n,s,i;if(Array.isArray(t)){if(n=t.length,n!=r.length)return!1;for(s=n;s--!==0;)if(!e(t[s],r[s]))return!1;return!0}if(t.constructor===RegExp)return t.source===r.source&&t.flags===r.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===r.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===r.toString();if(i=Object.keys(t),n=i.length,n!==Object.keys(r).length)return!1;for(s=n;s--!==0;)if(!Object.prototype.hasOwnProperty.call(r,i[s]))return!1;for(s=n;s--!==0;){var o=i[s];if(!e(t[o],r[o]))return!1}return!0}return t!==t&&r!==r}});var DM=b((bKe,RM)=>{"use strict";var SM=la(),iEe=Symbol.for("json-schema-ref"),px=class{#e;#t;#s;#n;#r;constructor(t={}){this.#e={},this.#t={},this.#s=t.insertRefSymbol??!1,this.#n=t.allowEqualDuplicates??!0,this.#r=t.cloneSchemaWithoutRefs??!1}addSchema(t,r){t.$id!==void 0&&t.$id.charAt(0)!=="#"?r=t.$id:this.#u(t,r),this.#o(t,r)}getSchema(t,r="#"){let n=this.#e[t];if(n===void 0)throw new Error(`Cannot resolve ref "${t}${r}". Schema with id "${t}" is not found.`);return n.anchors[r]!==void 0?n.anchors[r]:_M(n.schema,r)}hasSchema(t){return this.#e[t]!==void 0}getSchemaRefs(t){let r=this.#e[t];if(r===void 0)throw new Error(`Schema with id "${t}" is not found.`);return r.refs}getSchemaDependencies(t,r={}){let n=this.#e[t];for(let s of n.refs){let i=s.schemaId;r[i]===void 0&&(r[i]=this.getSchema(i),this.getSchemaDependencies(i,r))}return r}derefSchema(t){if(this.#t[t]!==void 0)return;let r=this.#e[t];if(r===void 0)throw new Error(`Schema with id "${t}" is not found.`);!this.#r&&r.refs.length===0&&(this.#t[t]={schema:r.schema,anchors:r.anchors});let n=[];this.#a(r.schema,t,n);let s=this.getSchemaDependencies(t);for(let i in s){let o=s[i];this.#a(o,i,n)}for(let i of n){let{refSchemaId:o,refJsonPointer:a}=this.#i(i.ref,i.sourceSchemaId),c=this.getDerefSchema(o,a);if(c===null)throw new Error(`Cannot resolve ref "${i.ref}". Ref "${a}" is not found in schema "${o}".`);i.targetSchema=c,i.targetSchemaId=o}for(let i of n)this.#c(i,n)}getDerefSchema(t,r="#"){let n=this.#t[t];return n===void 0&&(this.derefSchema(t),n=this.#t[t]),n.anchors[r]!==void 0?n.anchors[r]:_M(n.schema,r)}#i(t,r){let n=t.indexOf("#");return n===-1?{refSchemaId:t,refJsonPointer:"#"}:n===0?{refSchemaId:r,refJsonPointer:t}:{refSchemaId:t.slice(0,n),refJsonPointer:t.slice(n)}}#o(t,r){let n=t.$id;n!==void 0&&typeof n=="string"&&(n.charAt(0)==="#"?this.#l(t,r,n):(this.#u(t,n),r=n));let s=t.$ref;if(s!==void 0&&typeof s=="string"){let{refSchemaId:i,refJsonPointer:o}=this.#i(s,r);this.#e[r].refs.push({schemaId:i,jsonPointer:o})}for(let i in t)typeof t[i]=="object"&&t[i]!==null&&this.#o(t[i],r)}#a(t,r,n=[]){let s=Array.isArray(t)?[...t]:{...t},i=s.$id;i!==void 0&&typeof i=="string"&&(i.charAt(0)==="#"?this.#f(s,r,i):(this.#A(s,i),r=i)),s.$ref!==void 0&&n.push({ref:s.$ref,sourceSchemaId:r,sourceSchema:s});for(let o in s){let a=s[o];typeof a=="object"&&a!==null&&(s[o]=this.#a(a,r,n))}return s}#c(t,r){let{sourceSchema:n,targetSchema:s}=t;if(n.$ref){if(this.#s&&(n[iEe]=n.$ref),delete n.$ref,s.$ref){let i=r.find(o=>o.sourceSchema===s);this.#c(i,r)}for(let i in s)if(i!=="$id"){if(n[i]!==void 0){if(SM(n[i],s[i]))continue;throw new Error(`Cannot resolve ref "${t.ref}". Property "${i}" is already exist in schema "${t.sourceSchemaId}".`)}n[i]=s[i]}t.isResolved=!0}}#u(t,r){let n=this.#e[r];if(n!==void 0){if(this.#n&&SM(t,n.schema))return;throw new Error(`There is already another schema with id "${r}".`)}this.#e[r]={schema:t,anchors:{},refs:[]}}#l(t,r,n){let{anchors:s}=this.#e[r];if(s[n]!==void 0)throw new Error(`There is already another anchor "${n}" in a schema "${r}".`);s[n]=t}#A(t,r){this.#t[r]===void 0&&(this.#t[r]={schema:t,anchors:{}})}#f(t,r,n){let{anchors:s}=this.#t[r];s[n]=t}};function _M(e,t){let r=t.split("/"),n=e;for(let s of r)if(!(s===""||s==="#")){if(typeof n!="object"||n===null)return null;n=n[s]}return n??null}RM.exports={RefResolver:px}});var nl=b(ot=>{"use strict";Object.defineProperty(ot,"__esModule",{value:!0});ot.regexpCode=ot.getEsmExportName=ot.getProperty=ot.safeStringify=ot.stringify=ot.strConcat=ot.addCodeArg=ot.str=ot._=ot.nil=ot._Code=ot.Name=ot.IDENTIFIER=ot._CodeOrName=void 0;var fd=class{};ot._CodeOrName=fd;ot.IDENTIFIER=/^[a-z$_][a-z$_0-9]*$/i;var Tc=class extends fd{constructor(t){if(super(),!ot.IDENTIFIER.test(t))throw new Error("CodeGen: name must be a valid identifier");this.str=t}toString(){return this.str}emptyStr(){return!1}get names(){return{[this.str]:1}}};ot.Name=Tc;var fs=class extends fd{constructor(t){super(),this._items=typeof t=="string"?[t]:t}toString(){return this.str}emptyStr(){if(this._items.length>1)return!1;let t=this._items[0];return t===""||t==='""'}get str(){var t;return(t=this._str)!==null&&t!==void 0?t:this._str=this._items.reduce((r,n)=>`${r}${n}`,"")}get names(){var t;return(t=this._names)!==null&&t!==void 0?t:this._names=this._items.reduce((r,n)=>(n instanceof Tc&&(r[n.str]=(r[n.str]||0)+1),r),{})}};ot._Code=fs;ot.nil=new fs("");function NM(e,...t){let r=[e[0]],n=0;for(;n{"use strict";Object.defineProperty(In,"__esModule",{value:!0});In.ValueScope=In.ValueScopeName=In.Scope=In.varKinds=In.UsedValueState=void 0;var yn=nl(),Ex=class extends Error{constructor(t){super(`CodeGen: "code" for ${t} not defined`),this.value=t.value}},zg;(function(e){e[e.Started=0]="Started",e[e.Completed=1]="Completed"})(zg||(In.UsedValueState=zg={}));In.varKinds={const:new yn.Name("const"),let:new yn.Name("let"),var:new yn.Name("var")};var Xg=class{constructor({prefixes:t,parent:r}={}){this._names={},this._prefixes=t,this._parent=r}toName(t){return t instanceof yn.Name?t:this.name(t)}name(t){return new yn.Name(this._newName(t))}_newName(t){let r=this._names[t]||this._nameGroup(t);return`${t}${r.index++}`}_nameGroup(t){var r,n;if(!((n=(r=this._parent)===null||r===void 0?void 0:r._prefixes)===null||n===void 0)&&n.has(t)||this._prefixes&&!this._prefixes.has(t))throw new Error(`CodeGen: prefix "${t}" is not allowed in this scope`);return this._names[t]={prefix:t,index:0}}};In.Scope=Xg;var Kg=class extends yn.Name{constructor(t,r){super(r),this.prefix=t}setValue(t,{property:r,itemIndex:n}){this.value=t,this.scopePath=(0,yn._)`.${new yn.Name(r)}[${n}]`}};In.ValueScopeName=Kg;var hEe=(0,yn._)`\n`,Cx=class extends Xg{constructor(t){super(t),this._values={},this._scope=t.scope,this.opts={...t,_n:t.lines?hEe:yn.nil}}get(){return this._scope}name(t){return new Kg(t,this._newName(t))}value(t,r){var n;if(r.ref===void 0)throw new Error("CodeGen: ref must be passed in value");let s=this.toName(t),{prefix:i}=s,o=(n=r.key)!==null&&n!==void 0?n:r.ref,a=this._values[i];if(a){let l=a.get(o);if(l)return l}else a=this._values[i]=new Map;a.set(o,s);let c=this._scope[i]||(this._scope[i]=[]),u=c.length;return c[u]=r.ref,s.setValue(r,{property:i,itemIndex:u}),s}getValue(t,r){let n=this._values[t];if(n)return n.get(r)}scopeRefs(t,r=this._values){return this._reduceValues(r,n=>{if(n.scopePath===void 0)throw new Error(`CodeGen: name "${n}" has no value`);return(0,yn._)`${t}${n.scopePath}`})}scopeCode(t=this._values,r,n){return this._reduceValues(t,s=>{if(s.value===void 0)throw new Error(`CodeGen: name "${s}" has no value`);return s.value.code},r,n)}_reduceValues(t,r,n={},s){let i=yn.nil;for(let o in t){let a=t[o];if(!a)continue;let c=n[o]=n[o]||new Map;a.forEach(u=>{if(c.has(u))return;c.set(u,zg.Started);let l=r(u);if(l){let A=this.opts.es5?In.varKinds.var:In.varKinds.const;i=(0,yn._)`${i}${A} ${u} = ${l};${this.opts._n}`}else if(l=s?.(u))i=(0,yn._)`${i}${l}${this.opts._n}`;else throw new Ex(u);c.set(u,zg.Completed)})}return i}};In.ValueScope=Cx});var ge=b(Ue=>{"use strict";Object.defineProperty(Ue,"__esModule",{value:!0});Ue.or=Ue.and=Ue.not=Ue.CodeGen=Ue.operators=Ue.varKinds=Ue.ValueScopeName=Ue.ValueScope=Ue.Scope=Ue.Name=Ue.regexpCode=Ue.stringify=Ue.getProperty=Ue.nil=Ue.strConcat=Ue.str=Ue._=void 0;var et=nl(),Vs=Zg(),Aa=nl();Object.defineProperty(Ue,"_",{enumerable:!0,get:function(){return Aa._}});Object.defineProperty(Ue,"str",{enumerable:!0,get:function(){return Aa.str}});Object.defineProperty(Ue,"strConcat",{enumerable:!0,get:function(){return Aa.strConcat}});Object.defineProperty(Ue,"nil",{enumerable:!0,get:function(){return Aa.nil}});Object.defineProperty(Ue,"getProperty",{enumerable:!0,get:function(){return Aa.getProperty}});Object.defineProperty(Ue,"stringify",{enumerable:!0,get:function(){return Aa.stringify}});Object.defineProperty(Ue,"regexpCode",{enumerable:!0,get:function(){return Aa.regexpCode}});Object.defineProperty(Ue,"Name",{enumerable:!0,get:function(){return Aa.Name}});var nm=Zg();Object.defineProperty(Ue,"Scope",{enumerable:!0,get:function(){return nm.Scope}});Object.defineProperty(Ue,"ValueScope",{enumerable:!0,get:function(){return nm.ValueScope}});Object.defineProperty(Ue,"ValueScopeName",{enumerable:!0,get:function(){return nm.ValueScopeName}});Object.defineProperty(Ue,"varKinds",{enumerable:!0,get:function(){return nm.varKinds}});Ue.operators={GT:new et._Code(">"),GTE:new et._Code(">="),LT:new et._Code("<"),LTE:new et._Code("<="),EQ:new et._Code("==="),NEQ:new et._Code("!=="),NOT:new et._Code("!"),OR:new et._Code("||"),AND:new et._Code("&&"),ADD:new et._Code("+")};var uo=class{optimizeNodes(){return this}optimizeNames(t,r){return this}},yx=class extends uo{constructor(t,r,n){super(),this.varKind=t,this.name=r,this.rhs=n}render({es5:t,_n:r}){let n=t?Vs.varKinds.var:this.varKind,s=this.rhs===void 0?"":` = ${this.rhs}`;return`${n} ${this.name}${s};`+r}optimizeNames(t,r){if(t[this.name.str])return this.rhs&&(this.rhs=il(this.rhs,t,r)),this}get names(){return this.rhs instanceof et._CodeOrName?this.rhs.names:{}}},em=class extends uo{constructor(t,r,n){super(),this.lhs=t,this.rhs=r,this.sideEffects=n}render({_n:t}){return`${this.lhs} = ${this.rhs};`+t}optimizeNames(t,r){if(!(this.lhs instanceof et.Name&&!t[this.lhs.str]&&!this.sideEffects))return this.rhs=il(this.rhs,t,r),this}get names(){let t=this.lhs instanceof et.Name?{}:{...this.lhs.names};return rm(t,this.rhs)}},Ix=class extends em{constructor(t,r,n,s){super(t,n,s),this.op=r}render({_n:t}){return`${this.lhs} ${this.op}= ${this.rhs};`+t}},bx=class extends uo{constructor(t){super(),this.label=t,this.names={}}render({_n:t}){return`${this.label}:`+t}},Bx=class extends uo{constructor(t){super(),this.label=t,this.names={}}render({_n:t}){return`break${this.label?` ${this.label}`:""};`+t}},xx=class extends uo{constructor(t){super(),this.error=t}render({_n:t}){return`throw ${this.error};`+t}get names(){return this.error.names}},vx=class extends uo{constructor(t){super(),this.code=t}render({_n:t}){return`${this.code};`+t}optimizeNodes(){return`${this.code}`?this:void 0}optimizeNames(t,r){return this.code=il(this.code,t,r),this}get names(){return this.code instanceof et._CodeOrName?this.code.names:{}}},hd=class extends uo{constructor(t=[]){super(),this.nodes=t}render(t){return this.nodes.reduce((r,n)=>r+n.render(t),"")}optimizeNodes(){let{nodes:t}=this,r=t.length;for(;r--;){let n=t[r].optimizeNodes();Array.isArray(n)?t.splice(r,1,...n):n?t[r]=n:t.splice(r,1)}return t.length>0?this:void 0}optimizeNames(t,r){let{nodes:n}=this,s=n.length;for(;s--;){let i=n[s];i.optimizeNames(t,r)||(pEe(t,i.names),n.splice(s,1))}return n.length>0?this:void 0}get names(){return this.nodes.reduce((t,r)=>_c(t,r.names),{})}},lo=class extends hd{render(t){return"{"+t._n+super.render(t)+"}"+t._n}},Qx=class extends hd{},sl=class extends lo{};sl.kind="else";var wc=class e extends lo{constructor(t,r){super(r),this.condition=t}render(t){let r=`if(${this.condition})`+super.render(t);return this.else&&(r+="else "+this.else.render(t)),r}optimizeNodes(){super.optimizeNodes();let t=this.condition;if(t===!0)return this.nodes;let r=this.else;if(r){let n=r.optimizeNodes();r=this.else=Array.isArray(n)?new sl(n):n}if(r)return t===!1?r instanceof e?r:r.nodes:this.nodes.length?this:new e(FM(t),r instanceof e?[r]:r.nodes);if(!(t===!1||!this.nodes.length))return this}optimizeNames(t,r){var n;if(this.else=(n=this.else)===null||n===void 0?void 0:n.optimizeNames(t,r),!!(super.optimizeNames(t,r)||this.else))return this.condition=il(this.condition,t,r),this}get names(){let t=super.names;return rm(t,this.condition),this.else&&_c(t,this.else.names),t}};wc.kind="if";var Sc=class extends lo{};Sc.kind="for";var Tx=class extends Sc{constructor(t){super(),this.iteration=t}render(t){return`for(${this.iteration})`+super.render(t)}optimizeNames(t,r){if(super.optimizeNames(t,r))return this.iteration=il(this.iteration,t,r),this}get names(){return _c(super.names,this.iteration.names)}},wx=class extends Sc{constructor(t,r,n,s){super(),this.varKind=t,this.name=r,this.from=n,this.to=s}render(t){let r=t.es5?Vs.varKinds.var:this.varKind,{name:n,from:s,to:i}=this;return`for(${r} ${n}=${s}; ${n}<${i}; ${n}++)`+super.render(t)}get names(){let t=rm(super.names,this.from);return rm(t,this.to)}},tm=class extends Sc{constructor(t,r,n,s){super(),this.loop=t,this.varKind=r,this.name=n,this.iterable=s}render(t){return`for(${this.varKind} ${this.name} ${this.loop} ${this.iterable})`+super.render(t)}optimizeNames(t,r){if(super.optimizeNames(t,r))return this.iterable=il(this.iterable,t,r),this}get names(){return _c(super.names,this.iterable.names)}},pd=class extends lo{constructor(t,r,n){super(),this.name=t,this.args=r,this.async=n}render(t){return`${this.async?"async ":""}function ${this.name}(${this.args})`+super.render(t)}};pd.kind="func";var gd=class extends hd{render(t){return"return "+super.render(t)}};gd.kind="return";var Sx=class extends lo{render(t){let r="try"+super.render(t);return this.catch&&(r+=this.catch.render(t)),this.finally&&(r+=this.finally.render(t)),r}optimizeNodes(){var t,r;return super.optimizeNodes(),(t=this.catch)===null||t===void 0||t.optimizeNodes(),(r=this.finally)===null||r===void 0||r.optimizeNodes(),this}optimizeNames(t,r){var n,s;return super.optimizeNames(t,r),(n=this.catch)===null||n===void 0||n.optimizeNames(t,r),(s=this.finally)===null||s===void 0||s.optimizeNames(t,r),this}get names(){let t=super.names;return this.catch&&_c(t,this.catch.names),this.finally&&_c(t,this.finally.names),t}},md=class extends lo{constructor(t){super(),this.error=t}render(t){return`catch(${this.error})`+super.render(t)}};md.kind="catch";var Ed=class extends lo{render(t){return"finally"+super.render(t)}};Ed.kind="finally";var _x=class{constructor(t,r={}){this._values={},this._blockStarts=[],this._constants={},this.opts={...r,_n:r.lines?` +`:""},this._extScope=t,this._scope=new Vs.Scope({parent:t}),this._nodes=[new Qx]}toString(){return this._root.render(this.opts)}name(t){return this._scope.name(t)}scopeName(t){return this._extScope.name(t)}scopeValue(t,r){let n=this._extScope.value(t,r);return(this._values[n.prefix]||(this._values[n.prefix]=new Set)).add(n),n}getScopeValue(t,r){return this._extScope.getValue(t,r)}scopeRefs(t){return this._extScope.scopeRefs(t,this._values)}scopeCode(){return this._extScope.scopeCode(this._values)}_def(t,r,n,s){let i=this._scope.toName(r);return n!==void 0&&s&&(this._constants[i.str]=n),this._leafNode(new yx(t,i,n)),i}const(t,r,n){return this._def(Vs.varKinds.const,t,r,n)}let(t,r,n){return this._def(Vs.varKinds.let,t,r,n)}var(t,r,n){return this._def(Vs.varKinds.var,t,r,n)}assign(t,r,n){return this._leafNode(new em(t,r,n))}add(t,r){return this._leafNode(new Ix(t,Ue.operators.ADD,r))}code(t){return typeof t=="function"?t():t!==et.nil&&this._leafNode(new vx(t)),this}object(...t){let r=["{"];for(let[n,s]of t)r.length>1&&r.push(","),r.push(n),(n!==s||this.opts.es5)&&(r.push(":"),(0,et.addCodeArg)(r,s));return r.push("}"),new et._Code(r)}if(t,r,n){if(this._blockNode(new wc(t)),r&&n)this.code(r).else().code(n).endIf();else if(r)this.code(r).endIf();else if(n)throw new Error('CodeGen: "else" body without "then" body');return this}elseIf(t){return this._elseNode(new wc(t))}else(){return this._elseNode(new sl)}endIf(){return this._endBlockNode(wc,sl)}_for(t,r){return this._blockNode(t),r&&this.code(r).endFor(),this}for(t,r){return this._for(new Tx(t),r)}forRange(t,r,n,s,i=this.opts.es5?Vs.varKinds.var:Vs.varKinds.let){let o=this._scope.toName(t);return this._for(new wx(i,o,r,n),()=>s(o))}forOf(t,r,n,s=Vs.varKinds.const){let i=this._scope.toName(t);if(this.opts.es5){let o=r instanceof et.Name?r:this.var("_arr",r);return this.forRange("_i",0,(0,et._)`${o}.length`,a=>{this.var(i,(0,et._)`${o}[${a}]`),n(i)})}return this._for(new tm("of",s,i,r),()=>n(i))}forIn(t,r,n,s=this.opts.es5?Vs.varKinds.var:Vs.varKinds.const){if(this.opts.ownProperties)return this.forOf(t,(0,et._)`Object.keys(${r})`,n);let i=this._scope.toName(t);return this._for(new tm("in",s,i,r),()=>n(i))}endFor(){return this._endBlockNode(Sc)}label(t){return this._leafNode(new bx(t))}break(t){return this._leafNode(new Bx(t))}return(t){let r=new gd;if(this._blockNode(r),this.code(t),r.nodes.length!==1)throw new Error('CodeGen: "return" should have one node');return this._endBlockNode(gd)}try(t,r,n){if(!r&&!n)throw new Error('CodeGen: "try" without "catch" and "finally"');let s=new Sx;if(this._blockNode(s),this.code(t),r){let i=this.name("e");this._currNode=s.catch=new md(i),r(i)}return n&&(this._currNode=s.finally=new Ed,this.code(n)),this._endBlockNode(md,Ed)}throw(t){return this._leafNode(new xx(t))}block(t,r){return this._blockStarts.push(this._nodes.length),t&&this.code(t).endBlock(r),this}endBlock(t){let r=this._blockStarts.pop();if(r===void 0)throw new Error("CodeGen: not in self-balancing block");let n=this._nodes.length-r;if(n<0||t!==void 0&&n!==t)throw new Error(`CodeGen: wrong number of nodes: ${n} vs ${t} expected`);return this._nodes.length=r,this}func(t,r=et.nil,n,s){return this._blockNode(new pd(t,r,n)),s&&this.code(s).endFunc(),this}endFunc(){return this._endBlockNode(pd)}optimize(t=1){for(;t-- >0;)this._root.optimizeNodes(),this._root.optimizeNames(this._root.names,this._constants)}_leafNode(t){return this._currNode.nodes.push(t),this}_blockNode(t){this._currNode.nodes.push(t),this._nodes.push(t)}_endBlockNode(t,r){let n=this._currNode;if(n instanceof t||r&&n instanceof r)return this._nodes.pop(),this;throw new Error(`CodeGen: not in block "${r?`${t.kind}/${r.kind}`:t.kind}"`)}_elseNode(t){let r=this._currNode;if(!(r instanceof wc))throw new Error('CodeGen: "else" without "if"');return this._currNode=r.else=t,this}get _root(){return this._nodes[0]}get _currNode(){let t=this._nodes;return t[t.length-1]}set _currNode(t){let r=this._nodes;r[r.length-1]=t}};Ue.CodeGen=_x;function _c(e,t){for(let r in t)e[r]=(e[r]||0)+(t[r]||0);return e}function rm(e,t){return t instanceof et._CodeOrName?_c(e,t.names):e}function il(e,t,r){if(e instanceof et.Name)return n(e);if(!s(e))return e;return new et._Code(e._items.reduce((i,o)=>(o instanceof et.Name&&(o=n(o)),o instanceof et._Code?i.push(...o._items):i.push(o),i),[]));function n(i){let o=r[i.str];return o===void 0||t[i.str]!==1?i:(delete t[i.str],o)}function s(i){return i instanceof et._Code&&i._items.some(o=>o instanceof et.Name&&t[o.str]===1&&r[o.str]!==void 0)}}function pEe(e,t){for(let r in t)e[r]=(e[r]||0)-(t[r]||0)}function FM(e){return typeof e=="boolean"||typeof e=="number"||e===null?!e:(0,et._)`!${Rx(e)}`}Ue.not=FM;var gEe=LM(Ue.operators.AND);function mEe(...e){return e.reduce(gEe)}Ue.and=mEe;var EEe=LM(Ue.operators.OR);function CEe(...e){return e.reduce(EEe)}Ue.or=CEe;function LM(e){return(t,r)=>t===et.nil?r:r===et.nil?t:(0,et._)`${Rx(t)} ${e} ${Rx(r)}`}function Rx(e){return e instanceof et.Name?e:(0,et._)`(${e})`}});var Pe=b(qe=>{"use strict";Object.defineProperty(qe,"__esModule",{value:!0});qe.checkStrictMode=qe.getErrorPath=qe.Type=qe.useFunc=qe.setEvaluated=qe.evaluatedPropsToName=qe.mergeEvaluated=qe.eachItem=qe.unescapeJsonPointer=qe.escapeJsonPointer=qe.escapeFragment=qe.unescapeFragment=qe.schemaRefOrVal=qe.schemaHasRulesButRef=qe.schemaHasRules=qe.checkUnknownRules=qe.alwaysValidSchema=qe.toHash=void 0;var vt=ge(),yEe=nl();function IEe(e){let t={};for(let r of e)t[r]=!0;return t}qe.toHash=IEe;function bEe(e,t){return typeof t=="boolean"?t:Object.keys(t).length===0?!0:(PM(e,t),!UM(t,e.self.RULES.all))}qe.alwaysValidSchema=bEe;function PM(e,t=e.schema){let{opts:r,self:n}=e;if(!r.strictSchema||typeof t=="boolean")return;let s=n.RULES.keywords;for(let i in t)s[i]||VM(e,`unknown keyword: "${i}"`)}qe.checkUnknownRules=PM;function UM(e,t){if(typeof e=="boolean")return!e;for(let r in e)if(t[r])return!0;return!1}qe.schemaHasRules=UM;function BEe(e,t){if(typeof e=="boolean")return!e;for(let r in e)if(r!=="$ref"&&t.all[r])return!0;return!1}qe.schemaHasRulesButRef=BEe;function xEe({topSchemaRef:e,schemaPath:t},r,n,s){if(!s){if(typeof r=="number"||typeof r=="boolean")return r;if(typeof r=="string")return(0,vt._)`${r}`}return(0,vt._)`${e}${t}${(0,vt.getProperty)(n)}`}qe.schemaRefOrVal=xEe;function vEe(e){return HM(decodeURIComponent(e))}qe.unescapeFragment=vEe;function QEe(e){return encodeURIComponent(Nx(e))}qe.escapeFragment=QEe;function Nx(e){return typeof e=="number"?`${e}`:e.replace(/~/g,"~0").replace(/\//g,"~1")}qe.escapeJsonPointer=Nx;function HM(e){return e.replace(/~1/g,"/").replace(/~0/g,"~")}qe.unescapeJsonPointer=HM;function TEe(e,t){if(Array.isArray(e))for(let r of e)t(r);else t(e)}qe.eachItem=TEe;function OM({mergeNames:e,mergeToName:t,mergeValues:r,resultToName:n}){return(s,i,o,a)=>{let c=o===void 0?i:o instanceof vt.Name?(i instanceof vt.Name?e(s,i,o):t(s,i,o),o):i instanceof vt.Name?(t(s,o,i),i):r(i,o);return a===vt.Name&&!(c instanceof vt.Name)?n(s,c):c}}qe.mergeEvaluated={props:OM({mergeNames:(e,t,r)=>e.if((0,vt._)`${r} !== true && ${t} !== undefined`,()=>{e.if((0,vt._)`${t} === true`,()=>e.assign(r,!0),()=>e.assign(r,(0,vt._)`${r} || {}`).code((0,vt._)`Object.assign(${r}, ${t})`))}),mergeToName:(e,t,r)=>e.if((0,vt._)`${r} !== true`,()=>{t===!0?e.assign(r,!0):(e.assign(r,(0,vt._)`${r} || {}`),kx(e,r,t))}),mergeValues:(e,t)=>e===!0?!0:{...e,...t},resultToName:qM}),items:OM({mergeNames:(e,t,r)=>e.if((0,vt._)`${r} !== true && ${t} !== undefined`,()=>e.assign(r,(0,vt._)`${t} === true ? true : ${r} > ${t} ? ${r} : ${t}`)),mergeToName:(e,t,r)=>e.if((0,vt._)`${r} !== true`,()=>e.assign(r,t===!0?!0:(0,vt._)`${r} > ${t} ? ${r} : ${t}`)),mergeValues:(e,t)=>e===!0?!0:Math.max(e,t),resultToName:(e,t)=>e.var("items",t)})};function qM(e,t){if(t===!0)return e.var("props",!0);let r=e.var("props",(0,vt._)`{}`);return t!==void 0&&kx(e,r,t),r}qe.evaluatedPropsToName=qM;function kx(e,t,r){Object.keys(r).forEach(n=>e.assign((0,vt._)`${t}${(0,vt.getProperty)(n)}`,!0))}qe.setEvaluated=kx;var MM={};function wEe(e,t){return e.scopeValue("func",{ref:t,code:MM[t.code]||(MM[t.code]=new yEe._Code(t.code))})}qe.useFunc=wEe;var Dx;(function(e){e[e.Num=0]="Num",e[e.Str=1]="Str"})(Dx||(qe.Type=Dx={}));function SEe(e,t,r){if(e instanceof vt.Name){let n=t===Dx.Num;return r?n?(0,vt._)`"[" + ${e} + "]"`:(0,vt._)`"['" + ${e} + "']"`:n?(0,vt._)`"/" + ${e}`:(0,vt._)`"/" + ${e}.replace(/~/g, "~0").replace(/\\//g, "~1")`}return r?(0,vt.getProperty)(e).toString():"/"+Nx(e)}qe.getErrorPath=SEe;function VM(e,t,r=e.opts.strictSchema){if(r){if(t=`strict mode: ${t}`,r===!0)throw new Error(t);e.self.logger.warn(t)}}qe.checkStrictMode=VM});var ds=b(Fx=>{"use strict";Object.defineProperty(Fx,"__esModule",{value:!0});var Hr=ge(),_Ee={data:new Hr.Name("data"),valCxt:new Hr.Name("valCxt"),instancePath:new Hr.Name("instancePath"),parentData:new Hr.Name("parentData"),parentDataProperty:new Hr.Name("parentDataProperty"),rootData:new Hr.Name("rootData"),dynamicAnchors:new Hr.Name("dynamicAnchors"),vErrors:new Hr.Name("vErrors"),errors:new Hr.Name("errors"),this:new Hr.Name("this"),self:new Hr.Name("self"),scope:new Hr.Name("scope"),json:new Hr.Name("json"),jsonPos:new Hr.Name("jsonPos"),jsonLen:new Hr.Name("jsonLen"),jsonPart:new Hr.Name("jsonPart")};Fx.default=_Ee});var Cd=b(qr=>{"use strict";Object.defineProperty(qr,"__esModule",{value:!0});qr.extendErrors=qr.resetErrorsCount=qr.reportExtraError=qr.reportError=qr.keyword$DataError=qr.keywordError=void 0;var nt=ge(),sm=Pe(),on=ds();qr.keywordError={message:({keyword:e})=>(0,nt.str)`must pass "${e}" keyword validation`};qr.keyword$DataError={message:({keyword:e,schemaType:t})=>t?(0,nt.str)`"${e}" keyword must be ${t} ($data)`:(0,nt.str)`"${e}" keyword is invalid ($data)`};function REe(e,t=qr.keywordError,r,n){let{it:s}=e,{gen:i,compositeRule:o,allErrors:a}=s,c=GM(e,t,r);n??(o||a)?YM(i,c):$M(s,(0,nt._)`[${c}]`)}qr.reportError=REe;function DEe(e,t=qr.keywordError,r){let{it:n}=e,{gen:s,compositeRule:i,allErrors:o}=n,a=GM(e,t,r);YM(s,a),i||o||$M(n,on.default.vErrors)}qr.reportExtraError=DEe;function NEe(e,t){e.assign(on.default.errors,t),e.if((0,nt._)`${on.default.vErrors} !== null`,()=>e.if(t,()=>e.assign((0,nt._)`${on.default.vErrors}.length`,t),()=>e.assign(on.default.vErrors,null)))}qr.resetErrorsCount=NEe;function kEe({gen:e,keyword:t,schemaValue:r,data:n,errsCount:s,it:i}){if(s===void 0)throw new Error("ajv implementation error");let o=e.name("err");e.forRange("i",s,on.default.errors,a=>{e.const(o,(0,nt._)`${on.default.vErrors}[${a}]`),e.if((0,nt._)`${o}.instancePath === undefined`,()=>e.assign((0,nt._)`${o}.instancePath`,(0,nt.strConcat)(on.default.instancePath,i.errorPath))),e.assign((0,nt._)`${o}.schemaPath`,(0,nt.str)`${i.errSchemaPath}/${t}`),i.opts.verbose&&(e.assign((0,nt._)`${o}.schema`,r),e.assign((0,nt._)`${o}.data`,n))})}qr.extendErrors=kEe;function YM(e,t){let r=e.const("err",t);e.if((0,nt._)`${on.default.vErrors} === null`,()=>e.assign(on.default.vErrors,(0,nt._)`[${r}]`),(0,nt._)`${on.default.vErrors}.push(${r})`),e.code((0,nt._)`${on.default.errors}++`)}function $M(e,t){let{gen:r,validateName:n,schemaEnv:s}=e;s.$async?r.throw((0,nt._)`new ${e.ValidationError}(${t})`):(r.assign((0,nt._)`${n}.errors`,t),r.return(!1))}var Rc={keyword:new nt.Name("keyword"),schemaPath:new nt.Name("schemaPath"),params:new nt.Name("params"),propertyName:new nt.Name("propertyName"),message:new nt.Name("message"),schema:new nt.Name("schema"),parentSchema:new nt.Name("parentSchema")};function GM(e,t,r){let{createErrors:n}=e.it;return n===!1?(0,nt._)`{}`:FEe(e,t,r)}function FEe(e,t,r={}){let{gen:n,it:s}=e,i=[LEe(s,r),OEe(e,r)];return MEe(e,t,i),n.object(...i)}function LEe({errorPath:e},{instancePath:t}){let r=t?(0,nt.str)`${e}${(0,sm.getErrorPath)(t,sm.Type.Str)}`:e;return[on.default.instancePath,(0,nt.strConcat)(on.default.instancePath,r)]}function OEe({keyword:e,it:{errSchemaPath:t}},{schemaPath:r,parentSchema:n}){let s=n?t:(0,nt.str)`${t}/${e}`;return r&&(s=(0,nt.str)`${s}${(0,sm.getErrorPath)(r,sm.Type.Str)}`),[Rc.schemaPath,s]}function MEe(e,{params:t,message:r},n){let{keyword:s,data:i,schemaValue:o,it:a}=e,{opts:c,propertyName:u,topSchemaRef:l,schemaPath:A}=a;n.push([Rc.keyword,s],[Rc.params,typeof t=="function"?t(e):t||(0,nt._)`{}`]),c.messages&&n.push([Rc.message,typeof r=="function"?r(e):r]),c.verbose&&n.push([Rc.schema,o],[Rc.parentSchema,(0,nt._)`${l}${A}`],[on.default.data,i]),u&&n.push([Rc.propertyName,u])}});var JM=b(ol=>{"use strict";Object.defineProperty(ol,"__esModule",{value:!0});ol.boolOrEmptySchema=ol.topBoolOrEmptySchema=void 0;var PEe=Cd(),UEe=ge(),HEe=ds(),qEe={message:"boolean schema is false"};function VEe(e){let{gen:t,schema:r,validateName:n}=e;r===!1?jM(e,!1):typeof r=="object"&&r.$async===!0?t.return(HEe.default.data):(t.assign((0,UEe._)`${n}.errors`,null),t.return(!0))}ol.topBoolOrEmptySchema=VEe;function YEe(e,t){let{gen:r,schema:n}=e;n===!1?(r.var(t,!1),jM(e)):r.var(t,!0)}ol.boolOrEmptySchema=YEe;function jM(e,t){let{gen:r,data:n}=e,s={gen:r,keyword:"false schema",data:n,schema:!1,schemaCode:!1,schemaValue:!1,params:{},it:e};(0,PEe.reportError)(s,qEe,void 0,t)}});var Lx=b(al=>{"use strict";Object.defineProperty(al,"__esModule",{value:!0});al.getRules=al.isJSONType=void 0;var $Ee=["string","number","integer","boolean","null","object","array"],GEe=new Set($Ee);function jEe(e){return typeof e=="string"&&GEe.has(e)}al.isJSONType=jEe;function JEe(){let e={number:{type:"number",rules:[]},string:{type:"string",rules:[]},array:{type:"array",rules:[]},object:{type:"object",rules:[]}};return{types:{...e,integer:!0,boolean:!0,null:!0},rules:[{rules:[]},e.number,e.string,e.array,e.object],post:{rules:[]},all:{},keywords:{}}}al.getRules=JEe});var Ox=b(fa=>{"use strict";Object.defineProperty(fa,"__esModule",{value:!0});fa.shouldUseRule=fa.shouldUseGroup=fa.schemaHasRulesForType=void 0;function WEe({schema:e,self:t},r){let n=t.RULES.types[r];return n&&n!==!0&&WM(e,n)}fa.schemaHasRulesForType=WEe;function WM(e,t){return t.rules.some(r=>zM(e,r))}fa.shouldUseGroup=WM;function zM(e,t){var r;return e[t.keyword]!==void 0||((r=t.definition.implements)===null||r===void 0?void 0:r.some(n=>e[n]!==void 0))}fa.shouldUseRule=zM});var yd=b(Vr=>{"use strict";Object.defineProperty(Vr,"__esModule",{value:!0});Vr.reportTypeError=Vr.checkDataTypes=Vr.checkDataType=Vr.coerceAndCheckDataType=Vr.getJSONTypes=Vr.getSchemaTypes=Vr.DataType=void 0;var zEe=Lx(),XEe=Ox(),KEe=Cd(),Oe=ge(),XM=Pe(),cl;(function(e){e[e.Correct=0]="Correct",e[e.Wrong=1]="Wrong"})(cl||(Vr.DataType=cl={}));function ZEe(e){let t=KM(e.type);if(t.includes("null")){if(e.nullable===!1)throw new Error("type: null contradicts nullable: false")}else{if(!t.length&&e.nullable!==void 0)throw new Error('"nullable" cannot be used without "type"');e.nullable===!0&&t.push("null")}return t}Vr.getSchemaTypes=ZEe;function KM(e){let t=Array.isArray(e)?e:e?[e]:[];if(t.every(zEe.isJSONType))return t;throw new Error("type must be JSONType or JSONType[]: "+t.join(","))}Vr.getJSONTypes=KM;function eCe(e,t){let{gen:r,data:n,opts:s}=e,i=tCe(t,s.coerceTypes),o=t.length>0&&!(i.length===0&&t.length===1&&(0,XEe.schemaHasRulesForType)(e,t[0]));if(o){let a=Px(t,n,s.strictNumbers,cl.Wrong);r.if(a,()=>{i.length?rCe(e,t,i):Ux(e)})}return o}Vr.coerceAndCheckDataType=eCe;var ZM=new Set(["string","number","integer","boolean","null"]);function tCe(e,t){return t?e.filter(r=>ZM.has(r)||t==="array"&&r==="array"):[]}function rCe(e,t,r){let{gen:n,data:s,opts:i}=e,o=n.let("dataType",(0,Oe._)`typeof ${s}`),a=n.let("coerced",(0,Oe._)`undefined`);i.coerceTypes==="array"&&n.if((0,Oe._)`${o} == 'object' && Array.isArray(${s}) && ${s}.length == 1`,()=>n.assign(s,(0,Oe._)`${s}[0]`).assign(o,(0,Oe._)`typeof ${s}`).if(Px(t,s,i.strictNumbers),()=>n.assign(a,s))),n.if((0,Oe._)`${a} !== undefined`);for(let u of r)(ZM.has(u)||u==="array"&&i.coerceTypes==="array")&&c(u);n.else(),Ux(e),n.endIf(),n.if((0,Oe._)`${a} !== undefined`,()=>{n.assign(s,a),nCe(e,a)});function c(u){switch(u){case"string":n.elseIf((0,Oe._)`${o} == "number" || ${o} == "boolean"`).assign(a,(0,Oe._)`"" + ${s}`).elseIf((0,Oe._)`${s} === null`).assign(a,(0,Oe._)`""`);return;case"number":n.elseIf((0,Oe._)`${o} == "boolean" || ${s} === null + || (${o} == "string" && ${s} && ${s} == +${s})`).assign(a,(0,Oe._)`+${s}`);return;case"integer":n.elseIf((0,Oe._)`${o} === "boolean" || ${s} === null + || (${o} === "string" && ${s} && ${s} == +${s} && !(${s} % 1))`).assign(a,(0,Oe._)`+${s}`);return;case"boolean":n.elseIf((0,Oe._)`${s} === "false" || ${s} === 0 || ${s} === null`).assign(a,!1).elseIf((0,Oe._)`${s} === "true" || ${s} === 1`).assign(a,!0);return;case"null":n.elseIf((0,Oe._)`${s} === "" || ${s} === 0 || ${s} === false`),n.assign(a,null);return;case"array":n.elseIf((0,Oe._)`${o} === "string" || ${o} === "number" + || ${o} === "boolean" || ${s} === null`).assign(a,(0,Oe._)`[${s}]`)}}}function nCe({gen:e,parentData:t,parentDataProperty:r},n){e.if((0,Oe._)`${t} !== undefined`,()=>e.assign((0,Oe._)`${t}[${r}]`,n))}function Mx(e,t,r,n=cl.Correct){let s=n===cl.Correct?Oe.operators.EQ:Oe.operators.NEQ,i;switch(e){case"null":return(0,Oe._)`${t} ${s} null`;case"array":i=(0,Oe._)`Array.isArray(${t})`;break;case"object":i=(0,Oe._)`${t} && typeof ${t} == "object" && !Array.isArray(${t})`;break;case"integer":i=o((0,Oe._)`!(${t} % 1) && !isNaN(${t})`);break;case"number":i=o();break;default:return(0,Oe._)`typeof ${t} ${s} ${e}`}return n===cl.Correct?i:(0,Oe.not)(i);function o(a=Oe.nil){return(0,Oe.and)((0,Oe._)`typeof ${t} == "number"`,a,r?(0,Oe._)`isFinite(${t})`:Oe.nil)}}Vr.checkDataType=Mx;function Px(e,t,r,n){if(e.length===1)return Mx(e[0],t,r,n);let s,i=(0,XM.toHash)(e);if(i.array&&i.object){let o=(0,Oe._)`typeof ${t} != "object"`;s=i.null?o:(0,Oe._)`!${t} || ${o}`,delete i.null,delete i.array,delete i.object}else s=Oe.nil;i.number&&delete i.integer;for(let o in i)s=(0,Oe.and)(s,Mx(o,t,r,n));return s}Vr.checkDataTypes=Px;var sCe={message:({schema:e})=>`must be ${e}`,params:({schema:e,schemaValue:t})=>typeof e=="string"?(0,Oe._)`{type: ${e}}`:(0,Oe._)`{type: ${t}}`};function Ux(e){let t=iCe(e);(0,KEe.reportError)(t,sCe)}Vr.reportTypeError=Ux;function iCe(e){let{gen:t,data:r,schema:n}=e,s=(0,XM.schemaRefOrVal)(e,n,"type");return{gen:t,keyword:"type",data:r,schema:n.type,schemaCode:s,schemaValue:s,parentSchema:n,params:{},it:e}}});var tP=b(im=>{"use strict";Object.defineProperty(im,"__esModule",{value:!0});im.assignDefaults=void 0;var ul=ge(),oCe=Pe();function aCe(e,t){let{properties:r,items:n}=e.schema;if(t==="object"&&r)for(let s in r)eP(e,s,r[s].default);else t==="array"&&Array.isArray(n)&&n.forEach((s,i)=>eP(e,i,s.default))}im.assignDefaults=aCe;function eP(e,t,r){let{gen:n,compositeRule:s,data:i,opts:o}=e;if(r===void 0)return;let a=(0,ul._)`${i}${(0,ul.getProperty)(t)}`;if(s){(0,oCe.checkStrictMode)(e,`default is ignored for: ${a}`);return}let c=(0,ul._)`${a} === undefined`;o.useDefaults==="empty"&&(c=(0,ul._)`${c} || ${a} === null || ${a} === ""`),n.if(c,(0,ul._)`${a} = ${(0,ul.stringify)(r)}`)}});var Sr=b(Ct=>{"use strict";Object.defineProperty(Ct,"__esModule",{value:!0});Ct.validateUnion=Ct.validateArray=Ct.usePattern=Ct.callValidateCode=Ct.schemaProperties=Ct.allSchemaProperties=Ct.noPropertyInData=Ct.propertyInData=Ct.isOwnProperty=Ct.hasPropFunc=Ct.reportMissingProp=Ct.checkMissingProp=Ct.checkReportMissingProp=void 0;var Nt=ge(),Hx=Pe(),da=ds(),cCe=Pe();function uCe(e,t){let{gen:r,data:n,it:s}=e;r.if(Vx(r,n,t,s.opts.ownProperties),()=>{e.setParams({missingProperty:(0,Nt._)`${t}`},!0),e.error()})}Ct.checkReportMissingProp=uCe;function lCe({gen:e,data:t,it:{opts:r}},n,s){return(0,Nt.or)(...n.map(i=>(0,Nt.and)(Vx(e,t,i,r.ownProperties),(0,Nt._)`${s} = ${i}`)))}Ct.checkMissingProp=lCe;function ACe(e,t){e.setParams({missingProperty:t},!0),e.error()}Ct.reportMissingProp=ACe;function rP(e){return e.scopeValue("func",{ref:Object.prototype.hasOwnProperty,code:(0,Nt._)`Object.prototype.hasOwnProperty`})}Ct.hasPropFunc=rP;function qx(e,t,r){return(0,Nt._)`${rP(e)}.call(${t}, ${r})`}Ct.isOwnProperty=qx;function fCe(e,t,r,n){let s=(0,Nt._)`${t}${(0,Nt.getProperty)(r)} !== undefined`;return n?(0,Nt._)`${s} && ${qx(e,t,r)}`:s}Ct.propertyInData=fCe;function Vx(e,t,r,n){let s=(0,Nt._)`${t}${(0,Nt.getProperty)(r)} === undefined`;return n?(0,Nt.or)(s,(0,Nt.not)(qx(e,t,r))):s}Ct.noPropertyInData=Vx;function nP(e){return e?Object.keys(e).filter(t=>t!=="__proto__"):[]}Ct.allSchemaProperties=nP;function dCe(e,t){return nP(t).filter(r=>!(0,Hx.alwaysValidSchema)(e,t[r]))}Ct.schemaProperties=dCe;function hCe({schemaCode:e,data:t,it:{gen:r,topSchemaRef:n,schemaPath:s,errorPath:i},it:o},a,c,u){let l=u?(0,Nt._)`${e}, ${t}, ${n}${s}`:t,A=[[da.default.instancePath,(0,Nt.strConcat)(da.default.instancePath,i)],[da.default.parentData,o.parentData],[da.default.parentDataProperty,o.parentDataProperty],[da.default.rootData,da.default.rootData]];o.opts.dynamicRef&&A.push([da.default.dynamicAnchors,da.default.dynamicAnchors]);let f=(0,Nt._)`${l}, ${r.object(...A)}`;return c!==Nt.nil?(0,Nt._)`${a}.call(${c}, ${f})`:(0,Nt._)`${a}(${f})`}Ct.callValidateCode=hCe;var pCe=(0,Nt._)`new RegExp`;function gCe({gen:e,it:{opts:t}},r){let n=t.unicodeRegExp?"u":"",{regExp:s}=t.code,i=s(r,n);return e.scopeValue("pattern",{key:i.toString(),ref:i,code:(0,Nt._)`${s.code==="new RegExp"?pCe:(0,cCe.useFunc)(e,s)}(${r}, ${n})`})}Ct.usePattern=gCe;function mCe(e){let{gen:t,data:r,keyword:n,it:s}=e,i=t.name("valid");if(s.allErrors){let a=t.let("valid",!0);return o(()=>t.assign(a,!1)),a}return t.var(i,!0),o(()=>t.break()),i;function o(a){let c=t.const("len",(0,Nt._)`${r}.length`);t.forRange("i",0,c,u=>{e.subschema({keyword:n,dataProp:u,dataPropType:Hx.Type.Num},i),t.if((0,Nt.not)(i),a)})}}Ct.validateArray=mCe;function ECe(e){let{gen:t,schema:r,keyword:n,it:s}=e;if(!Array.isArray(r))throw new Error("ajv implementation error");if(r.some(c=>(0,Hx.alwaysValidSchema)(s,c))&&!s.opts.unevaluated)return;let o=t.let("valid",!1),a=t.name("_valid");t.block(()=>r.forEach((c,u)=>{let l=e.subschema({keyword:n,schemaProp:u,compositeRule:!0},a);t.assign(o,(0,Nt._)`${o} || ${a}`),e.mergeValidEvaluated(l,a)||t.if((0,Nt.not)(o))})),e.result(o,()=>e.reset(),()=>e.error(!0))}Ct.validateUnion=ECe});var oP=b(bi=>{"use strict";Object.defineProperty(bi,"__esModule",{value:!0});bi.validateKeywordUsage=bi.validSchemaType=bi.funcKeywordCode=bi.macroKeywordCode=void 0;var an=ge(),Dc=ds(),CCe=Sr(),yCe=Cd();function ICe(e,t){let{gen:r,keyword:n,schema:s,parentSchema:i,it:o}=e,a=t.macro.call(o.self,s,i,o),c=iP(r,n,a);o.opts.validateSchema!==!1&&o.self.validateSchema(a,!0);let u=r.name("valid");e.subschema({schema:a,schemaPath:an.nil,errSchemaPath:`${o.errSchemaPath}/${n}`,topSchemaRef:c,compositeRule:!0},u),e.pass(u,()=>e.error(!0))}bi.macroKeywordCode=ICe;function bCe(e,t){var r;let{gen:n,keyword:s,schema:i,parentSchema:o,$data:a,it:c}=e;xCe(c,t);let u=!a&&t.compile?t.compile.call(c.self,i,o,c):t.validate,l=iP(n,s,u),A=n.let("valid");e.block$data(A,f),e.ok((r=t.valid)!==null&&r!==void 0?r:A);function f(){if(t.errors===!1)p(),t.modifying&&sP(e),C(()=>e.error());else{let m=t.async?d():h();t.modifying&&sP(e),C(()=>BCe(e,m))}}function d(){let m=n.let("ruleErrs",null);return n.try(()=>p((0,an._)`await `),I=>n.assign(A,!1).if((0,an._)`${I} instanceof ${c.ValidationError}`,()=>n.assign(m,(0,an._)`${I}.errors`),()=>n.throw(I))),m}function h(){let m=(0,an._)`${l}.errors`;return n.assign(m,null),p(an.nil),m}function p(m=t.async?(0,an._)`await `:an.nil){let I=c.opts.passContext?Dc.default.this:Dc.default.self,y=!("compile"in t&&!a||t.schema===!1);n.assign(A,(0,an._)`${m}${(0,CCe.callValidateCode)(e,l,I,y)}`,t.modifying)}function C(m){var I;n.if((0,an.not)((I=t.valid)!==null&&I!==void 0?I:A),m)}}bi.funcKeywordCode=bCe;function sP(e){let{gen:t,data:r,it:n}=e;t.if(n.parentData,()=>t.assign(r,(0,an._)`${n.parentData}[${n.parentDataProperty}]`))}function BCe(e,t){let{gen:r}=e;r.if((0,an._)`Array.isArray(${t})`,()=>{r.assign(Dc.default.vErrors,(0,an._)`${Dc.default.vErrors} === null ? ${t} : ${Dc.default.vErrors}.concat(${t})`).assign(Dc.default.errors,(0,an._)`${Dc.default.vErrors}.length`),(0,yCe.extendErrors)(e)},()=>e.error())}function xCe({schemaEnv:e},t){if(t.async&&!e.$async)throw new Error("async keyword in sync schema")}function iP(e,t,r){if(r===void 0)throw new Error(`keyword "${t}" failed to compile`);return e.scopeValue("keyword",typeof r=="function"?{ref:r}:{ref:r,code:(0,an.stringify)(r)})}function vCe(e,t,r=!1){return!t.length||t.some(n=>n==="array"?Array.isArray(e):n==="object"?e&&typeof e=="object"&&!Array.isArray(e):typeof e==n||r&&typeof e>"u")}bi.validSchemaType=vCe;function QCe({schema:e,opts:t,self:r,errSchemaPath:n},s,i){if(Array.isArray(s.keyword)?!s.keyword.includes(i):s.keyword!==i)throw new Error("ajv implementation error");let o=s.dependencies;if(o?.some(a=>!Object.prototype.hasOwnProperty.call(e,a)))throw new Error(`parent schema must have dependencies of ${i}: ${o.join(",")}`);if(s.validateSchema&&!s.validateSchema(e[i])){let c=`keyword "${i}" value is invalid at path "${n}": `+r.errorsText(s.validateSchema.errors);if(t.validateSchema==="log")r.logger.error(c);else throw new Error(c)}}bi.validateKeywordUsage=QCe});var cP=b(ha=>{"use strict";Object.defineProperty(ha,"__esModule",{value:!0});ha.extendSubschemaMode=ha.extendSubschemaData=ha.getSubschema=void 0;var Bi=ge(),aP=Pe();function TCe(e,{keyword:t,schemaProp:r,schema:n,schemaPath:s,errSchemaPath:i,topSchemaRef:o}){if(t!==void 0&&n!==void 0)throw new Error('both "keyword" and "schema" passed, only one allowed');if(t!==void 0){let a=e.schema[t];return r===void 0?{schema:a,schemaPath:(0,Bi._)`${e.schemaPath}${(0,Bi.getProperty)(t)}`,errSchemaPath:`${e.errSchemaPath}/${t}`}:{schema:a[r],schemaPath:(0,Bi._)`${e.schemaPath}${(0,Bi.getProperty)(t)}${(0,Bi.getProperty)(r)}`,errSchemaPath:`${e.errSchemaPath}/${t}/${(0,aP.escapeFragment)(r)}`}}if(n!==void 0){if(s===void 0||i===void 0||o===void 0)throw new Error('"schemaPath", "errSchemaPath" and "topSchemaRef" are required with "schema"');return{schema:n,schemaPath:s,topSchemaRef:o,errSchemaPath:i}}throw new Error('either "keyword" or "schema" must be passed')}ha.getSubschema=TCe;function wCe(e,t,{dataProp:r,dataPropType:n,data:s,dataTypes:i,propertyName:o}){if(s!==void 0&&r!==void 0)throw new Error('both "data" and "dataProp" passed, only one allowed');let{gen:a}=t;if(r!==void 0){let{errorPath:u,dataPathArr:l,opts:A}=t,f=a.let("data",(0,Bi._)`${t.data}${(0,Bi.getProperty)(r)}`,!0);c(f),e.errorPath=(0,Bi.str)`${u}${(0,aP.getErrorPath)(r,n,A.jsPropertySyntax)}`,e.parentDataProperty=(0,Bi._)`${r}`,e.dataPathArr=[...l,e.parentDataProperty]}if(s!==void 0){let u=s instanceof Bi.Name?s:a.let("data",s,!0);c(u),o!==void 0&&(e.propertyName=o)}i&&(e.dataTypes=i);function c(u){e.data=u,e.dataLevel=t.dataLevel+1,e.dataTypes=[],t.definedProperties=new Set,e.parentData=t.data,e.dataNames=[...t.dataNames,u]}}ha.extendSubschemaData=wCe;function SCe(e,{jtdDiscriminator:t,jtdMetadata:r,compositeRule:n,createErrors:s,allErrors:i}){n!==void 0&&(e.compositeRule=n),s!==void 0&&(e.createErrors=s),i!==void 0&&(e.allErrors=i),e.jtdDiscriminator=t,e.jtdMetadata=r}ha.extendSubschemaMode=SCe});var lP=b((OKe,uP)=>{"use strict";var pa=uP.exports=function(e,t,r){typeof t=="function"&&(r=t,t={}),r=t.cb||r;var n=typeof r=="function"?r:r.pre||function(){},s=r.post||function(){};om(t,n,s,e,"",e)};pa.keywords={additionalItems:!0,items:!0,contains:!0,additionalProperties:!0,propertyNames:!0,not:!0,if:!0,then:!0,else:!0};pa.arrayKeywords={items:!0,allOf:!0,anyOf:!0,oneOf:!0};pa.propsKeywords={$defs:!0,definitions:!0,properties:!0,patternProperties:!0,dependencies:!0};pa.skipKeywords={default:!0,enum:!0,const:!0,required:!0,maximum:!0,minimum:!0,exclusiveMaximum:!0,exclusiveMinimum:!0,multipleOf:!0,maxLength:!0,minLength:!0,pattern:!0,format:!0,maxItems:!0,minItems:!0,uniqueItems:!0,maxProperties:!0,minProperties:!0};function om(e,t,r,n,s,i,o,a,c,u){if(n&&typeof n=="object"&&!Array.isArray(n)){t(n,s,i,o,a,c,u);for(var l in n){var A=n[l];if(Array.isArray(A)){if(l in pa.arrayKeywords)for(var f=0;f{"use strict";Object.defineProperty(bn,"__esModule",{value:!0});bn.getSchemaRefs=bn.resolveUrl=bn.normalizeId=bn._getFullPath=bn.getFullPath=bn.inlineRef=void 0;var RCe=Pe(),DCe=la(),NCe=lP(),kCe=new Set(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum","const"]);function FCe(e,t=!0){return typeof e=="boolean"?!0:t===!0?!Yx(e):t?AP(e)<=t:!1}bn.inlineRef=FCe;var LCe=new Set(["$ref","$recursiveRef","$recursiveAnchor","$dynamicRef","$dynamicAnchor"]);function Yx(e){for(let t in e){if(LCe.has(t))return!0;let r=e[t];if(Array.isArray(r)&&r.some(Yx)||typeof r=="object"&&Yx(r))return!0}return!1}function AP(e){let t=0;for(let r in e){if(r==="$ref")return 1/0;if(t++,!kCe.has(r)&&(typeof e[r]=="object"&&(0,RCe.eachItem)(e[r],n=>t+=AP(n)),t===1/0))return 1/0}return t}function fP(e,t="",r){r!==!1&&(t=ll(t));let n=e.parse(t);return dP(e,n)}bn.getFullPath=fP;function dP(e,t){return e.serialize(t).split("#")[0]+"#"}bn._getFullPath=dP;var OCe=/#\/?$/;function ll(e){return e?e.replace(OCe,""):""}bn.normalizeId=ll;function MCe(e,t,r){return r=ll(r),e.resolve(t,r)}bn.resolveUrl=MCe;var PCe=/^[a-z_][-a-z0-9._]*$/i;function UCe(e,t){if(typeof e=="boolean")return{};let{schemaId:r,uriResolver:n}=this.opts,s=ll(e[r]||t),i={"":s},o=fP(n,s,!1),a={},c=new Set;return NCe(e,{allKeys:!0},(A,f,d,h)=>{if(h===void 0)return;let p=o+f,C=i[h];typeof A[r]=="string"&&(C=m.call(this,A[r])),I.call(this,A.$anchor),I.call(this,A.$dynamicAnchor),i[f]=C;function m(y){let E=this.opts.uriResolver.resolve;if(y=ll(C?E(C,y):y),c.has(y))throw l(y);c.add(y);let B=this.refs[y];return typeof B=="string"&&(B=this.refs[B]),typeof B=="object"?u(A,B.schema,y):y!==ll(p)&&(y[0]==="#"?(u(A,a[y],y),a[y]=A):this.refs[y]=p),y}function I(y){if(typeof y=="string"){if(!PCe.test(y))throw new Error(`invalid anchor "${y}"`);m.call(this,`#${y}`)}}}),a;function u(A,f,d){if(f!==void 0&&!DCe(A,f))throw l(d)}function l(A){return new Error(`reference "${A}" resolves to more than one schema`)}}bn.getSchemaRefs=UCe});var Al=b(ga=>{"use strict";Object.defineProperty(ga,"__esModule",{value:!0});ga.getData=ga.KeywordCxt=ga.validateFunctionCode=void 0;var EP=JM(),hP=yd(),Gx=Ox(),am=yd(),HCe=tP(),Bd=oP(),$x=cP(),fe=ge(),_e=ds(),qCe=Id(),Ao=Pe(),bd=Cd();function VCe(e){if(IP(e)&&(bP(e),yP(e))){GCe(e);return}CP(e,()=>(0,EP.topBoolOrEmptySchema)(e))}ga.validateFunctionCode=VCe;function CP({gen:e,validateName:t,schema:r,schemaEnv:n,opts:s},i){s.code.es5?e.func(t,(0,fe._)`${_e.default.data}, ${_e.default.valCxt}`,n.$async,()=>{e.code((0,fe._)`"use strict"; ${pP(r,s)}`),$Ce(e,s),e.code(i)}):e.func(t,(0,fe._)`${_e.default.data}, ${YCe(s)}`,n.$async,()=>e.code(pP(r,s)).code(i))}function YCe(e){return(0,fe._)`{${_e.default.instancePath}="", ${_e.default.parentData}, ${_e.default.parentDataProperty}, ${_e.default.rootData}=${_e.default.data}${e.dynamicRef?(0,fe._)`, ${_e.default.dynamicAnchors}={}`:fe.nil}}={}`}function $Ce(e,t){e.if(_e.default.valCxt,()=>{e.var(_e.default.instancePath,(0,fe._)`${_e.default.valCxt}.${_e.default.instancePath}`),e.var(_e.default.parentData,(0,fe._)`${_e.default.valCxt}.${_e.default.parentData}`),e.var(_e.default.parentDataProperty,(0,fe._)`${_e.default.valCxt}.${_e.default.parentDataProperty}`),e.var(_e.default.rootData,(0,fe._)`${_e.default.valCxt}.${_e.default.rootData}`),t.dynamicRef&&e.var(_e.default.dynamicAnchors,(0,fe._)`${_e.default.valCxt}.${_e.default.dynamicAnchors}`)},()=>{e.var(_e.default.instancePath,(0,fe._)`""`),e.var(_e.default.parentData,(0,fe._)`undefined`),e.var(_e.default.parentDataProperty,(0,fe._)`undefined`),e.var(_e.default.rootData,_e.default.data),t.dynamicRef&&e.var(_e.default.dynamicAnchors,(0,fe._)`{}`)})}function GCe(e){let{schema:t,opts:r,gen:n}=e;CP(e,()=>{r.$comment&&t.$comment&&xP(e),XCe(e),n.let(_e.default.vErrors,null),n.let(_e.default.errors,0),r.unevaluated&&jCe(e),BP(e),eye(e)})}function jCe(e){let{gen:t,validateName:r}=e;e.evaluated=t.const("evaluated",(0,fe._)`${r}.evaluated`),t.if((0,fe._)`${e.evaluated}.dynamicProps`,()=>t.assign((0,fe._)`${e.evaluated}.props`,(0,fe._)`undefined`)),t.if((0,fe._)`${e.evaluated}.dynamicItems`,()=>t.assign((0,fe._)`${e.evaluated}.items`,(0,fe._)`undefined`))}function pP(e,t){let r=typeof e=="object"&&e[t.schemaId];return r&&(t.code.source||t.code.process)?(0,fe._)`/*# sourceURL=${r} */`:fe.nil}function JCe(e,t){if(IP(e)&&(bP(e),yP(e))){WCe(e,t);return}(0,EP.boolOrEmptySchema)(e,t)}function yP({schema:e,self:t}){if(typeof e=="boolean")return!e;for(let r in e)if(t.RULES.all[r])return!0;return!1}function IP(e){return typeof e.schema!="boolean"}function WCe(e,t){let{schema:r,gen:n,opts:s}=e;s.$comment&&r.$comment&&xP(e),KCe(e),ZCe(e);let i=n.const("_errs",_e.default.errors);BP(e,i),n.var(t,(0,fe._)`${i} === ${_e.default.errors}`)}function bP(e){(0,Ao.checkUnknownRules)(e),zCe(e)}function BP(e,t){if(e.opts.jtd)return gP(e,[],!1,t);let r=(0,hP.getSchemaTypes)(e.schema),n=(0,hP.coerceAndCheckDataType)(e,r);gP(e,r,!n,t)}function zCe(e){let{schema:t,errSchemaPath:r,opts:n,self:s}=e;t.$ref&&n.ignoreKeywordsWithRef&&(0,Ao.schemaHasRulesButRef)(t,s.RULES)&&s.logger.warn(`$ref: keywords ignored in schema at path "${r}"`)}function XCe(e){let{schema:t,opts:r}=e;t.default!==void 0&&r.useDefaults&&r.strictSchema&&(0,Ao.checkStrictMode)(e,"default is ignored in the schema root")}function KCe(e){let t=e.schema[e.opts.schemaId];t&&(e.baseId=(0,qCe.resolveUrl)(e.opts.uriResolver,e.baseId,t))}function ZCe(e){if(e.schema.$async&&!e.schemaEnv.$async)throw new Error("async schema in sync schema")}function xP({gen:e,schemaEnv:t,schema:r,errSchemaPath:n,opts:s}){let i=r.$comment;if(s.$comment===!0)e.code((0,fe._)`${_e.default.self}.logger.log(${i})`);else if(typeof s.$comment=="function"){let o=(0,fe.str)`${n}/$comment`,a=e.scopeValue("root",{ref:t.root});e.code((0,fe._)`${_e.default.self}.opts.$comment(${i}, ${o}, ${a}.schema)`)}}function eye(e){let{gen:t,schemaEnv:r,validateName:n,ValidationError:s,opts:i}=e;r.$async?t.if((0,fe._)`${_e.default.errors} === 0`,()=>t.return(_e.default.data),()=>t.throw((0,fe._)`new ${s}(${_e.default.vErrors})`)):(t.assign((0,fe._)`${n}.errors`,_e.default.vErrors),i.unevaluated&&tye(e),t.return((0,fe._)`${_e.default.errors} === 0`))}function tye({gen:e,evaluated:t,props:r,items:n}){r instanceof fe.Name&&e.assign((0,fe._)`${t}.props`,r),n instanceof fe.Name&&e.assign((0,fe._)`${t}.items`,n)}function gP(e,t,r,n){let{gen:s,schema:i,data:o,allErrors:a,opts:c,self:u}=e,{RULES:l}=u;if(i.$ref&&(c.ignoreKeywordsWithRef||!(0,Ao.schemaHasRulesButRef)(i,l))){s.block(()=>QP(e,"$ref",l.all.$ref.definition));return}c.jtd||rye(e,t),s.block(()=>{for(let f of l.rules)A(f);A(l.post)});function A(f){(0,Gx.shouldUseGroup)(i,f)&&(f.type?(s.if((0,am.checkDataType)(f.type,o,c.strictNumbers)),mP(e,f),t.length===1&&t[0]===f.type&&r&&(s.else(),(0,am.reportTypeError)(e)),s.endIf()):mP(e,f),a||s.if((0,fe._)`${_e.default.errors} === ${n||0}`))}}function mP(e,t){let{gen:r,schema:n,opts:{useDefaults:s}}=e;s&&(0,HCe.assignDefaults)(e,t.type),r.block(()=>{for(let i of t.rules)(0,Gx.shouldUseRule)(n,i)&&QP(e,i.keyword,i.definition,t.type)})}function rye(e,t){e.schemaEnv.meta||!e.opts.strictTypes||(nye(e,t),e.opts.allowUnionTypes||sye(e,t),iye(e,e.dataTypes))}function nye(e,t){if(t.length){if(!e.dataTypes.length){e.dataTypes=t;return}t.forEach(r=>{vP(e.dataTypes,r)||jx(e,`type "${r}" not allowed by context "${e.dataTypes.join(",")}"`)}),aye(e,t)}}function sye(e,t){t.length>1&&!(t.length===2&&t.includes("null"))&&jx(e,"use allowUnionTypes to allow union type keyword")}function iye(e,t){let r=e.self.RULES.all;for(let n in r){let s=r[n];if(typeof s=="object"&&(0,Gx.shouldUseRule)(e.schema,s)){let{type:i}=s.definition;i.length&&!i.some(o=>oye(t,o))&&jx(e,`missing type "${i.join(",")}" for keyword "${n}"`)}}}function oye(e,t){return e.includes(t)||t==="number"&&e.includes("integer")}function vP(e,t){return e.includes(t)||t==="integer"&&e.includes("number")}function aye(e,t){let r=[];for(let n of e.dataTypes)vP(t,n)?r.push(n):t.includes("integer")&&n==="number"&&r.push("integer");e.dataTypes=r}function jx(e,t){let r=e.schemaEnv.baseId+e.errSchemaPath;t+=` at "${r}" (strictTypes)`,(0,Ao.checkStrictMode)(e,t,e.opts.strictTypes)}var cm=class{constructor(t,r,n){if((0,Bd.validateKeywordUsage)(t,r,n),this.gen=t.gen,this.allErrors=t.allErrors,this.keyword=n,this.data=t.data,this.schema=t.schema[n],this.$data=r.$data&&t.opts.$data&&this.schema&&this.schema.$data,this.schemaValue=(0,Ao.schemaRefOrVal)(t,this.schema,n,this.$data),this.schemaType=r.schemaType,this.parentSchema=t.schema,this.params={},this.it=t,this.def=r,this.$data)this.schemaCode=t.gen.const("vSchema",TP(this.$data,t));else if(this.schemaCode=this.schemaValue,!(0,Bd.validSchemaType)(this.schema,r.schemaType,r.allowUndefined))throw new Error(`${n} value must be ${JSON.stringify(r.schemaType)}`);("code"in r?r.trackErrors:r.errors!==!1)&&(this.errsCount=t.gen.const("_errs",_e.default.errors))}result(t,r,n){this.failResult((0,fe.not)(t),r,n)}failResult(t,r,n){this.gen.if(t),n?n():this.error(),r?(this.gen.else(),r(),this.allErrors&&this.gen.endIf()):this.allErrors?this.gen.endIf():this.gen.else()}pass(t,r){this.failResult((0,fe.not)(t),void 0,r)}fail(t){if(t===void 0){this.error(),this.allErrors||this.gen.if(!1);return}this.gen.if(t),this.error(),this.allErrors?this.gen.endIf():this.gen.else()}fail$data(t){if(!this.$data)return this.fail(t);let{schemaCode:r}=this;this.fail((0,fe._)`${r} !== undefined && (${(0,fe.or)(this.invalid$data(),t)})`)}error(t,r,n){if(r){this.setParams(r),this._error(t,n),this.setParams({});return}this._error(t,n)}_error(t,r){(t?bd.reportExtraError:bd.reportError)(this,this.def.error,r)}$dataError(){(0,bd.reportError)(this,this.def.$dataError||bd.keyword$DataError)}reset(){if(this.errsCount===void 0)throw new Error('add "trackErrors" to keyword definition');(0,bd.resetErrorsCount)(this.gen,this.errsCount)}ok(t){this.allErrors||this.gen.if(t)}setParams(t,r){r?Object.assign(this.params,t):this.params=t}block$data(t,r,n=fe.nil){this.gen.block(()=>{this.check$data(t,n),r()})}check$data(t=fe.nil,r=fe.nil){if(!this.$data)return;let{gen:n,schemaCode:s,schemaType:i,def:o}=this;n.if((0,fe.or)((0,fe._)`${s} === undefined`,r)),t!==fe.nil&&n.assign(t,!0),(i.length||o.validateSchema)&&(n.elseIf(this.invalid$data()),this.$dataError(),t!==fe.nil&&n.assign(t,!1)),n.else()}invalid$data(){let{gen:t,schemaCode:r,schemaType:n,def:s,it:i}=this;return(0,fe.or)(o(),a());function o(){if(n.length){if(!(r instanceof fe.Name))throw new Error("ajv implementation error");let c=Array.isArray(n)?n:[n];return(0,fe._)`${(0,am.checkDataTypes)(c,r,i.opts.strictNumbers,am.DataType.Wrong)}`}return fe.nil}function a(){if(s.validateSchema){let c=t.scopeValue("validate$data",{ref:s.validateSchema});return(0,fe._)`!${c}(${r})`}return fe.nil}}subschema(t,r){let n=(0,$x.getSubschema)(this.it,t);(0,$x.extendSubschemaData)(n,this.it,t),(0,$x.extendSubschemaMode)(n,t);let s={...this.it,...n,items:void 0,props:void 0};return JCe(s,r),s}mergeEvaluated(t,r){let{it:n,gen:s}=this;n.opts.unevaluated&&(n.props!==!0&&t.props!==void 0&&(n.props=Ao.mergeEvaluated.props(s,t.props,n.props,r)),n.items!==!0&&t.items!==void 0&&(n.items=Ao.mergeEvaluated.items(s,t.items,n.items,r)))}mergeValidEvaluated(t,r){let{it:n,gen:s}=this;if(n.opts.unevaluated&&(n.props!==!0||n.items!==!0))return s.if(r,()=>this.mergeEvaluated(t,fe.Name)),!0}};ga.KeywordCxt=cm;function QP(e,t,r,n){let s=new cm(e,r,t);"code"in r?r.code(s,n):s.$data&&r.validate?(0,Bd.funcKeywordCode)(s,r):"macro"in r?(0,Bd.macroKeywordCode)(s,r):(r.compile||r.validate)&&(0,Bd.funcKeywordCode)(s,r)}var cye=/^\/(?:[^~]|~0|~1)*$/,uye=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function TP(e,{dataLevel:t,dataNames:r,dataPathArr:n}){let s,i;if(e==="")return _e.default.rootData;if(e[0]==="/"){if(!cye.test(e))throw new Error(`Invalid JSON-pointer: ${e}`);s=e,i=_e.default.rootData}else{let u=uye.exec(e);if(!u)throw new Error(`Invalid JSON-pointer: ${e}`);let l=+u[1];if(s=u[2],s==="#"){if(l>=t)throw new Error(c("property/index",l));return n[t-l]}if(l>t)throw new Error(c("data",l));if(i=r[t-l],!s)return i}let o=i,a=s.split("/");for(let u of a)u&&(i=(0,fe._)`${i}${(0,fe.getProperty)((0,Ao.unescapeJsonPointer)(u))}`,o=(0,fe._)`${o} && ${i}`);return o;function c(u,l){return`Cannot access ${u} ${l} levels up, current level is ${t}`}}ga.getData=TP});var xd=b(Wx=>{"use strict";Object.defineProperty(Wx,"__esModule",{value:!0});var Jx=class extends Error{constructor(t){super("validation failed"),this.errors=t,this.ajv=this.validation=!0}};Wx.default=Jx});var fo=b(Kx=>{"use strict";Object.defineProperty(Kx,"__esModule",{value:!0});var zx=Id(),Xx=class extends Error{constructor(t,r,n,s){super(s||`can't resolve reference ${n} from id ${r}`),this.missingRef=(0,zx.resolveUrl)(t,r,n),this.missingSchema=(0,zx.normalizeId)((0,zx.getFullPath)(t,this.missingRef))}};Kx.default=Xx});var kc=b(hs=>{"use strict";Object.defineProperty(hs,"__esModule",{value:!0});hs.resolveSchema=hs.getCompilingSchema=hs.resolveRef=hs.compileSchema=hs.SchemaEnv=void 0;var Ys=ge(),lye=xd(),Nc=ds(),$s=Id(),wP=Pe(),Aye=Al(),fl=class{constructor(t){var r;this.refs={},this.dynamicAnchors={};let n;typeof t.schema=="object"&&(n=t.schema),this.schema=t.schema,this.schemaId=t.schemaId,this.root=t.root||this,this.baseId=(r=t.baseId)!==null&&r!==void 0?r:(0,$s.normalizeId)(n?.[t.schemaId||"$id"]),this.schemaPath=t.schemaPath,this.localRefs=t.localRefs,this.meta=t.meta,this.$async=n?.$async,this.refs={}}};hs.SchemaEnv=fl;function ev(e){let t=SP.call(this,e);if(t)return t;let r=(0,$s.getFullPath)(this.opts.uriResolver,e.root.baseId),{es5:n,lines:s}=this.opts.code,{ownProperties:i}=this.opts,o=new Ys.CodeGen(this.scope,{es5:n,lines:s,ownProperties:i}),a;e.$async&&(a=o.scopeValue("Error",{ref:lye.default,code:(0,Ys._)`require("ajv/dist/runtime/validation_error").default`}));let c=o.scopeName("validate");e.validateName=c;let u={gen:o,allErrors:this.opts.allErrors,data:Nc.default.data,parentData:Nc.default.parentData,parentDataProperty:Nc.default.parentDataProperty,dataNames:[Nc.default.data],dataPathArr:[Ys.nil],dataLevel:0,dataTypes:[],definedProperties:new Set,topSchemaRef:o.scopeValue("schema",this.opts.code.source===!0?{ref:e.schema,code:(0,Ys.stringify)(e.schema)}:{ref:e.schema}),validateName:c,ValidationError:a,schema:e.schema,schemaEnv:e,rootId:r,baseId:e.baseId||r,schemaPath:Ys.nil,errSchemaPath:e.schemaPath||(this.opts.jtd?"":"#"),errorPath:(0,Ys._)`""`,opts:this.opts,self:this},l;try{this._compilations.add(e),(0,Aye.validateFunctionCode)(u),o.optimize(this.opts.code.optimize);let A=o.toString();l=`${o.scopeRefs(Nc.default.scope)}return ${A}`,this.opts.code.process&&(l=this.opts.code.process(l,e));let d=new Function(`${Nc.default.self}`,`${Nc.default.scope}`,l)(this,this.scope.get());if(this.scope.value(c,{ref:d}),d.errors=null,d.schema=e.schema,d.schemaEnv=e,e.$async&&(d.$async=!0),this.opts.code.source===!0&&(d.source={validateName:c,validateCode:A,scopeValues:o._values}),this.opts.unevaluated){let{props:h,items:p}=u;d.evaluated={props:h instanceof Ys.Name?void 0:h,items:p instanceof Ys.Name?void 0:p,dynamicProps:h instanceof Ys.Name,dynamicItems:p instanceof Ys.Name},d.source&&(d.source.evaluated=(0,Ys.stringify)(d.evaluated))}return e.validate=d,e}catch(A){throw delete e.validate,delete e.validateName,l&&this.logger.error("Error compiling schema, function code:",l),A}finally{this._compilations.delete(e)}}hs.compileSchema=ev;function fye(e,t,r){var n;r=(0,$s.resolveUrl)(this.opts.uriResolver,t,r);let s=e.refs[r];if(s)return s;let i=pye.call(this,e,r);if(i===void 0){let o=(n=e.localRefs)===null||n===void 0?void 0:n[r],{schemaId:a}=this.opts;o&&(i=new fl({schema:o,schemaId:a,root:e,baseId:t}))}if(i!==void 0)return e.refs[r]=dye.call(this,i)}hs.resolveRef=fye;function dye(e){return(0,$s.inlineRef)(e.schema,this.opts.inlineRefs)?e.schema:e.validate?e:ev.call(this,e)}function SP(e){for(let t of this._compilations)if(hye(t,e))return t}hs.getCompilingSchema=SP;function hye(e,t){return e.schema===t.schema&&e.root===t.root&&e.baseId===t.baseId}function pye(e,t){let r;for(;typeof(r=this.refs[t])=="string";)t=r;return r||this.schemas[t]||um.call(this,e,t)}function um(e,t){let r=this.opts.uriResolver.parse(t),n=(0,$s._getFullPath)(this.opts.uriResolver,r),s=(0,$s.getFullPath)(this.opts.uriResolver,e.baseId,void 0);if(Object.keys(e.schema).length>0&&n===s)return Zx.call(this,r,e);let i=(0,$s.normalizeId)(n),o=this.refs[i]||this.schemas[i];if(typeof o=="string"){let a=um.call(this,e,o);return typeof a?.schema!="object"?void 0:Zx.call(this,r,a)}if(typeof o?.schema=="object"){if(o.validate||ev.call(this,o),i===(0,$s.normalizeId)(t)){let{schema:a}=o,{schemaId:c}=this.opts,u=a[c];return u&&(s=(0,$s.resolveUrl)(this.opts.uriResolver,s,u)),new fl({schema:a,schemaId:c,root:e,baseId:s})}return Zx.call(this,r,o)}}hs.resolveSchema=um;var gye=new Set(["properties","patternProperties","enum","dependencies","definitions"]);function Zx(e,{baseId:t,schema:r,root:n}){var s;if(((s=e.fragment)===null||s===void 0?void 0:s[0])!=="/")return;for(let a of e.fragment.slice(1).split("/")){if(typeof r=="boolean")return;let c=r[(0,wP.unescapeFragment)(a)];if(c===void 0)return;r=c;let u=typeof r=="object"&&r[this.opts.schemaId];!gye.has(a)&&u&&(t=(0,$s.resolveUrl)(this.opts.uriResolver,t,u))}let i;if(typeof r!="boolean"&&r.$ref&&!(0,wP.schemaHasRulesButRef)(r,this.RULES)){let a=(0,$s.resolveUrl)(this.opts.uriResolver,t,r.$ref);i=um.call(this,n,a)}let{schemaId:o}=this.opts;if(i=i||new fl({schema:r,schemaId:o,root:n,baseId:t}),i.schema!==i.root.schema)return i}});var _P=b((VKe,mye)=>{mye.exports={$id:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#",description:"Meta-schema for $data reference (JSON AnySchema extension proposal)",type:"object",required:["$data"],properties:{$data:{type:"string",anyOf:[{format:"relative-json-pointer"},{format:"json-pointer"}]}},additionalProperties:!1}});var DP=b((YKe,RP)=>{"use strict";var Eye={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};RP.exports={HEX:Eye}});var UP=b(($Ke,PP)=>{"use strict";var{HEX:Cye}=DP(),yye=/^(?:(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d{2}|[1-9]\d|\d)$/u;function LP(e){if(MP(e,".")<3)return{host:e,isIPV4:!1};let t=e.match(yye)||[],[r]=t;return r?{host:bye(r,"."),isIPV4:!0}:{host:e,isIPV4:!1}}function tv(e,t=!1){let r="",n=!0;for(let s of e){if(Cye[s]===void 0)return;s!=="0"&&n===!0&&(n=!1),n||(r+=s)}return t&&r.length===0&&(r="0"),r}function Iye(e){let t=0,r={error:!1,address:"",zone:""},n=[],s=[],i=!1,o=!1,a=!1;function c(){if(s.length){if(i===!1){let u=tv(s);if(u!==void 0)n.push(u);else return r.error=!0,!1}s.length=0}return!0}for(let u=0;u7){r.error=!0;break}u-1>=0&&e[u-1]===":"&&(o=!0);continue}else if(l==="%"){if(!c())break;i=!0}else{s.push(l);continue}}return s.length&&(i?r.zone=s.join(""):a?n.push(s.join("")):n.push(tv(s))),r.address=n.join(""),r}function OP(e){if(MP(e,":")<2)return{host:e,isIPV6:!1};let t=Iye(e);if(t.error)return{host:e,isIPV6:!1};{let r=t.address,n=t.address;return t.zone&&(r+="%"+t.zone,n+="%25"+t.zone),{host:r,escapedHost:n,isIPV6:!0}}}function bye(e,t){let r="",n=!0,s=e.length;for(let i=0;i{"use strict";var Tye=/^[\da-f]{8}\b-[\da-f]{4}\b-[\da-f]{4}\b-[\da-f]{4}\b-[\da-f]{12}$/iu,wye=/([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu;function HP(e){return typeof e.secure=="boolean"?e.secure:String(e.scheme).toLowerCase()==="wss"}function qP(e){return e.host||(e.error=e.error||"HTTP URIs must have a host."),e}function VP(e){let t=String(e.scheme).toLowerCase()==="https";return(e.port===(t?443:80)||e.port==="")&&(e.port=void 0),e.path||(e.path="/"),e}function Sye(e){return e.secure=HP(e),e.resourceName=(e.path||"/")+(e.query?"?"+e.query:""),e.path=void 0,e.query=void 0,e}function _ye(e){if((e.port===(HP(e)?443:80)||e.port==="")&&(e.port=void 0),typeof e.secure=="boolean"&&(e.scheme=e.secure?"wss":"ws",e.secure=void 0),e.resourceName){let[t,r]=e.resourceName.split("?");e.path=t&&t!=="/"?t:void 0,e.query=r,e.resourceName=void 0}return e.fragment=void 0,e}function Rye(e,t){if(!e.path)return e.error="URN can not be parsed",e;let r=e.path.match(wye);if(r){let n=t.scheme||e.scheme||"urn";e.nid=r[1].toLowerCase(),e.nss=r[2];let s=`${n}:${t.nid||e.nid}`,i=rv[s];e.path=void 0,i&&(e=i.parse(e,t))}else e.error=e.error||"URN can not be parsed.";return e}function Dye(e,t){let r=t.scheme||e.scheme||"urn",n=e.nid.toLowerCase(),s=`${r}:${t.nid||n}`,i=rv[s];i&&(e=i.serialize(e,t));let o=e,a=e.nss;return o.path=`${n||t.nid}:${a}`,t.skipEscape=!0,o}function Nye(e,t){let r=e;return r.uuid=r.nss,r.nss=void 0,!t.tolerant&&(!r.uuid||!Tye.test(r.uuid))&&(r.error=r.error||"UUID is not valid."),r}function kye(e){let t=e;return t.nss=(e.uuid||"").toLowerCase(),t}var YP={scheme:"http",domainHost:!0,parse:qP,serialize:VP},Fye={scheme:"https",domainHost:YP.domainHost,parse:qP,serialize:VP},lm={scheme:"ws",domainHost:!0,parse:Sye,serialize:_ye},Lye={scheme:"wss",domainHost:lm.domainHost,parse:lm.parse,serialize:lm.serialize},Oye={scheme:"urn",parse:Rye,serialize:Dye,skipNormalize:!0},Mye={scheme:"urn:uuid",parse:Nye,serialize:kye,skipNormalize:!0},rv={http:YP,https:Fye,ws:lm,wss:Lye,urn:Oye,"urn:uuid":Mye};$P.exports=rv});var JP=b((jKe,fm)=>{"use strict";var{normalizeIPv6:Pye,normalizeIPv4:Uye,removeDotSegments:vd,recomposeAuthority:Hye,normalizeComponentEncoding:Am}=UP(),nv=GP();function qye(e,t){return typeof e=="string"?e=xi(ho(e,t),t):typeof e=="object"&&(e=ho(xi(e,t),t)),e}function Vye(e,t,r){let n=Object.assign({scheme:"null"},r),s=jP(ho(e,n),ho(t,n),n,!0);return xi(s,{...n,skipEscape:!0})}function jP(e,t,r,n){let s={};return n||(e=ho(xi(e,r),r),t=ho(xi(t,r),r)),r=r||{},!r.tolerant&&t.scheme?(s.scheme=t.scheme,s.userinfo=t.userinfo,s.host=t.host,s.port=t.port,s.path=vd(t.path||""),s.query=t.query):(t.userinfo!==void 0||t.host!==void 0||t.port!==void 0?(s.userinfo=t.userinfo,s.host=t.host,s.port=t.port,s.path=vd(t.path||""),s.query=t.query):(t.path?(t.path.charAt(0)==="/"?s.path=vd(t.path):((e.userinfo!==void 0||e.host!==void 0||e.port!==void 0)&&!e.path?s.path="/"+t.path:e.path?s.path=e.path.slice(0,e.path.lastIndexOf("/")+1)+t.path:s.path=t.path,s.path=vd(s.path)),s.query=t.query):(s.path=e.path,t.query!==void 0?s.query=t.query:s.query=e.query),s.userinfo=e.userinfo,s.host=e.host,s.port=e.port),s.scheme=e.scheme),s.fragment=t.fragment,s}function Yye(e,t,r){return typeof e=="string"?(e=unescape(e),e=xi(Am(ho(e,r),!0),{...r,skipEscape:!0})):typeof e=="object"&&(e=xi(Am(e,!0),{...r,skipEscape:!0})),typeof t=="string"?(t=unescape(t),t=xi(Am(ho(t,r),!0),{...r,skipEscape:!0})):typeof t=="object"&&(t=xi(Am(t,!0),{...r,skipEscape:!0})),e.toLowerCase()===t.toLowerCase()}function xi(e,t){let r={host:e.host,scheme:e.scheme,userinfo:e.userinfo,port:e.port,path:e.path,query:e.query,nid:e.nid,nss:e.nss,uuid:e.uuid,fragment:e.fragment,reference:e.reference,resourceName:e.resourceName,secure:e.secure,error:""},n=Object.assign({},t),s=[],i=nv[(n.scheme||r.scheme||"").toLowerCase()];i&&i.serialize&&i.serialize(r,n),r.path!==void 0&&(n.skipEscape?r.path=unescape(r.path):(r.path=escape(r.path),r.scheme!==void 0&&(r.path=r.path.split("%3A").join(":")))),n.reference!=="suffix"&&r.scheme&&s.push(r.scheme,":");let o=Hye(r);if(o!==void 0&&(n.reference!=="suffix"&&s.push("//"),s.push(o),r.path&&r.path.charAt(0)!=="/"&&s.push("/")),r.path!==void 0){let a=r.path;!n.absolutePath&&(!i||!i.absolutePath)&&(a=vd(a)),o===void 0&&(a=a.replace(/^\/\//u,"/%2F")),s.push(a)}return r.query!==void 0&&s.push("?",r.query),r.fragment!==void 0&&s.push("#",r.fragment),s.join("")}var $ye=Array.from({length:127},(e,t)=>/[^!"$&'()*+,\-.;=_`a-z{}~]/u.test(String.fromCharCode(t)));function Gye(e){let t=0;for(let r=0,n=e.length;r126||$ye[t])return!0;return!1}var jye=/^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;function ho(e,t){let r=Object.assign({},t),n={scheme:void 0,userinfo:void 0,host:"",port:void 0,path:"",query:void 0,fragment:void 0},s=e.indexOf("%")!==-1,i=!1;r.reference==="suffix"&&(e=(r.scheme?r.scheme+":":"")+"//"+e);let o=e.match(jye);if(o){if(n.scheme=o[1],n.userinfo=o[3],n.host=o[4],n.port=parseInt(o[5],10),n.path=o[6]||"",n.query=o[7],n.fragment=o[8],isNaN(n.port)&&(n.port=o[5]),n.host){let c=Uye(n.host);if(c.isIPV4===!1){let u=Pye(c.host);n.host=u.host.toLowerCase(),i=u.isIPV6}else n.host=c.host,i=!0}n.scheme===void 0&&n.userinfo===void 0&&n.host===void 0&&n.port===void 0&&!n.path&&n.query===void 0?n.reference="same-document":n.scheme===void 0?n.reference="relative":n.fragment===void 0?n.reference="absolute":n.reference="uri",r.reference&&r.reference!=="suffix"&&r.reference!==n.reference&&(n.error=n.error||"URI is not a "+r.reference+" reference.");let a=nv[(r.scheme||n.scheme||"").toLowerCase()];if(!r.unicodeSupport&&(!a||!a.unicodeSupport)&&n.host&&(r.domainHost||a&&a.domainHost)&&i===!1&&Gye(n.host))try{n.host=URL.domainToASCII(n.host.toLowerCase())}catch(c){n.error=n.error||"Host's domain name can not be converted to ASCII: "+c}(!a||a&&!a.skipNormalize)&&(s&&n.scheme!==void 0&&(n.scheme=unescape(n.scheme)),s&&n.host!==void 0&&(n.host=unescape(n.host)),n.path&&n.path.length&&(n.path=escape(unescape(n.path))),n.fragment&&n.fragment.length&&(n.fragment=encodeURI(decodeURIComponent(n.fragment)))),a&&a.parse&&a.parse(n,r)}else n.error=n.error||"URI can not be parsed.";return n}var sv={SCHEMES:nv,normalize:qye,resolve:Vye,resolveComponents:jP,equal:Yye,serialize:xi,parse:ho};fm.exports=sv;fm.exports.default=sv;fm.exports.fastUri=sv});var zP=b(iv=>{"use strict";Object.defineProperty(iv,"__esModule",{value:!0});var WP=JP();WP.code='require("ajv/dist/runtime/uri").default';iv.default=WP});var cv=b(_r=>{"use strict";Object.defineProperty(_r,"__esModule",{value:!0});_r.CodeGen=_r.Name=_r.nil=_r.stringify=_r.str=_r._=_r.KeywordCxt=void 0;var Jye=Al();Object.defineProperty(_r,"KeywordCxt",{enumerable:!0,get:function(){return Jye.KeywordCxt}});var dl=ge();Object.defineProperty(_r,"_",{enumerable:!0,get:function(){return dl._}});Object.defineProperty(_r,"str",{enumerable:!0,get:function(){return dl.str}});Object.defineProperty(_r,"stringify",{enumerable:!0,get:function(){return dl.stringify}});Object.defineProperty(_r,"nil",{enumerable:!0,get:function(){return dl.nil}});Object.defineProperty(_r,"Name",{enumerable:!0,get:function(){return dl.Name}});Object.defineProperty(_r,"CodeGen",{enumerable:!0,get:function(){return dl.CodeGen}});var Wye=xd(),t6=fo(),zye=Lx(),Qd=kc(),Xye=ge(),Td=Id(),dm=yd(),av=Pe(),XP=_P(),Kye=zP(),r6=(e,t)=>new RegExp(e,t);r6.code="new RegExp";var Zye=["removeAdditional","useDefaults","coerceTypes"],eIe=new Set(["validate","serialize","parse","wrapper","root","schema","keyword","pattern","formats","validate$data","func","obj","Error"]),tIe={errorDataPath:"",format:"`validateFormats: false` can be used instead.",nullable:'"nullable" keyword is supported by default.',jsonPointers:"Deprecated jsPropertySyntax can be used instead.",extendRefs:"Deprecated ignoreKeywordsWithRef can be used instead.",missingRefs:"Pass empty schema with $id that should be ignored to ajv.addSchema.",processCode:"Use option `code: {process: (code, schemaEnv: object) => string}`",sourceCode:"Use option `code: {source: true}`",strictDefaults:"It is default now, see option `strict`.",strictKeywords:"It is default now, see option `strict`.",uniqueItems:'"uniqueItems" keyword is always validated.',unknownFormats:"Disable strict mode or pass `true` to `ajv.addFormat` (or `formats` option).",cache:"Map is used as cache, schema object as key.",serialize:"Map is used as cache, schema object as key.",ajvErrors:"It is default now."},rIe={ignoreKeywordsWithRef:"",jsPropertySyntax:"",unicode:'"minLength"/"maxLength" account for unicode characters by default.'},KP=200;function nIe(e){var t,r,n,s,i,o,a,c,u,l,A,f,d,h,p,C,m,I,y,E,B,v,x,Q,S;let T=e.strict,R=(t=e.code)===null||t===void 0?void 0:t.optimize,D=R===!0||R===void 0?1:R||0,k=(n=(r=e.code)===null||r===void 0?void 0:r.regExp)!==null&&n!==void 0?n:r6,F=(s=e.uriResolver)!==null&&s!==void 0?s:Kye.default;return{strictSchema:(o=(i=e.strictSchema)!==null&&i!==void 0?i:T)!==null&&o!==void 0?o:!0,strictNumbers:(c=(a=e.strictNumbers)!==null&&a!==void 0?a:T)!==null&&c!==void 0?c:!0,strictTypes:(l=(u=e.strictTypes)!==null&&u!==void 0?u:T)!==null&&l!==void 0?l:"log",strictTuples:(f=(A=e.strictTuples)!==null&&A!==void 0?A:T)!==null&&f!==void 0?f:"log",strictRequired:(h=(d=e.strictRequired)!==null&&d!==void 0?d:T)!==null&&h!==void 0?h:!1,code:e.code?{...e.code,optimize:D,regExp:k}:{optimize:D,regExp:k},loopRequired:(p=e.loopRequired)!==null&&p!==void 0?p:KP,loopEnum:(C=e.loopEnum)!==null&&C!==void 0?C:KP,meta:(m=e.meta)!==null&&m!==void 0?m:!0,messages:(I=e.messages)!==null&&I!==void 0?I:!0,inlineRefs:(y=e.inlineRefs)!==null&&y!==void 0?y:!0,schemaId:(E=e.schemaId)!==null&&E!==void 0?E:"$id",addUsedSchema:(B=e.addUsedSchema)!==null&&B!==void 0?B:!0,validateSchema:(v=e.validateSchema)!==null&&v!==void 0?v:!0,validateFormats:(x=e.validateFormats)!==null&&x!==void 0?x:!0,unicodeRegExp:(Q=e.unicodeRegExp)!==null&&Q!==void 0?Q:!0,int32range:(S=e.int32range)!==null&&S!==void 0?S:!0,uriResolver:F}}var wd=class{constructor(t={}){this.schemas={},this.refs={},this.formats={},this._compilations=new Set,this._loading={},this._cache=new Map,t=this.opts={...t,...nIe(t)};let{es5:r,lines:n}=this.opts.code;this.scope=new Xye.ValueScope({scope:{},prefixes:eIe,es5:r,lines:n}),this.logger=uIe(t.logger);let s=t.validateFormats;t.validateFormats=!1,this.RULES=(0,zye.getRules)(),ZP.call(this,tIe,t,"NOT SUPPORTED"),ZP.call(this,rIe,t,"DEPRECATED","warn"),this._metaOpts=aIe.call(this),t.formats&&iIe.call(this),this._addVocabularies(),this._addDefaultMetaSchema(),t.keywords&&oIe.call(this,t.keywords),typeof t.meta=="object"&&this.addMetaSchema(t.meta),sIe.call(this),t.validateFormats=s}_addVocabularies(){this.addKeyword("$async")}_addDefaultMetaSchema(){let{$data:t,meta:r,schemaId:n}=this.opts,s=XP;n==="id"&&(s={...XP},s.id=s.$id,delete s.$id),r&&t&&this.addMetaSchema(s,s[n],!1)}defaultMeta(){let{meta:t,schemaId:r}=this.opts;return this.opts.defaultMeta=typeof t=="object"?t[r]||t:void 0}validate(t,r){let n;if(typeof t=="string"){if(n=this.getSchema(t),!n)throw new Error(`no schema with key or ref "${t}"`)}else n=this.compile(t);let s=n(r);return"$async"in n||(this.errors=n.errors),s}compile(t,r){let n=this._addSchema(t,r);return n.validate||this._compileSchemaEnv(n)}compileAsync(t,r){if(typeof this.opts.loadSchema!="function")throw new Error("options.loadSchema should be a function");let{loadSchema:n}=this.opts;return s.call(this,t,r);async function s(l,A){await i.call(this,l.$schema);let f=this._addSchema(l,A);return f.validate||o.call(this,f)}async function i(l){l&&!this.getSchema(l)&&await s.call(this,{$ref:l},!0)}async function o(l){try{return this._compileSchemaEnv(l)}catch(A){if(!(A instanceof t6.default))throw A;return a.call(this,A),await c.call(this,A.missingSchema),o.call(this,l)}}function a({missingSchema:l,missingRef:A}){if(this.refs[l])throw new Error(`AnySchema ${l} is loaded but ${A} cannot be resolved`)}async function c(l){let A=await u.call(this,l);this.refs[l]||await i.call(this,A.$schema),this.refs[l]||this.addSchema(A,l,r)}async function u(l){let A=this._loading[l];if(A)return A;try{return await(this._loading[l]=n(l))}finally{delete this._loading[l]}}}addSchema(t,r,n,s=this.opts.validateSchema){if(Array.isArray(t)){for(let o of t)this.addSchema(o,void 0,n,s);return this}let i;if(typeof t=="object"){let{schemaId:o}=this.opts;if(i=t[o],i!==void 0&&typeof i!="string")throw new Error(`schema ${o} must be string`)}return r=(0,Td.normalizeId)(r||i),this._checkUnique(r),this.schemas[r]=this._addSchema(t,n,r,s,!0),this}addMetaSchema(t,r,n=this.opts.validateSchema){return this.addSchema(t,r,!0,n),this}validateSchema(t,r){if(typeof t=="boolean")return!0;let n;if(n=t.$schema,n!==void 0&&typeof n!="string")throw new Error("$schema must be a string");if(n=n||this.opts.defaultMeta||this.defaultMeta(),!n)return this.logger.warn("meta-schema not available"),this.errors=null,!0;let s=this.validate(n,t);if(!s&&r){let i="schema is invalid: "+this.errorsText();if(this.opts.validateSchema==="log")this.logger.error(i);else throw new Error(i)}return s}getSchema(t){let r;for(;typeof(r=e6.call(this,t))=="string";)t=r;if(r===void 0){let{schemaId:n}=this.opts,s=new Qd.SchemaEnv({schema:{},schemaId:n});if(r=Qd.resolveSchema.call(this,s,t),!r)return;this.refs[t]=r}return r.validate||this._compileSchemaEnv(r)}removeSchema(t){if(t instanceof RegExp)return this._removeAllSchemas(this.schemas,t),this._removeAllSchemas(this.refs,t),this;switch(typeof t){case"undefined":return this._removeAllSchemas(this.schemas),this._removeAllSchemas(this.refs),this._cache.clear(),this;case"string":{let r=e6.call(this,t);return typeof r=="object"&&this._cache.delete(r.schema),delete this.schemas[t],delete this.refs[t],this}case"object":{let r=t;this._cache.delete(r);let n=t[this.opts.schemaId];return n&&(n=(0,Td.normalizeId)(n),delete this.schemas[n],delete this.refs[n]),this}default:throw new Error("ajv.removeSchema: invalid parameter")}}addVocabulary(t){for(let r of t)this.addKeyword(r);return this}addKeyword(t,r){let n;if(typeof t=="string")n=t,typeof r=="object"&&(this.logger.warn("these parameters are deprecated, see docs for addKeyword"),r.keyword=n);else if(typeof t=="object"&&r===void 0){if(r=t,n=r.keyword,Array.isArray(n)&&!n.length)throw new Error("addKeywords: keyword must be string or non-empty array")}else throw new Error("invalid addKeywords parameters");if(AIe.call(this,n,r),!r)return(0,av.eachItem)(n,i=>ov.call(this,i)),this;dIe.call(this,r);let s={...r,type:(0,dm.getJSONTypes)(r.type),schemaType:(0,dm.getJSONTypes)(r.schemaType)};return(0,av.eachItem)(n,s.type.length===0?i=>ov.call(this,i,s):i=>s.type.forEach(o=>ov.call(this,i,s,o))),this}getKeyword(t){let r=this.RULES.all[t];return typeof r=="object"?r.definition:!!r}removeKeyword(t){let{RULES:r}=this;delete r.keywords[t],delete r.all[t];for(let n of r.rules){let s=n.rules.findIndex(i=>i.keyword===t);s>=0&&n.rules.splice(s,1)}return this}addFormat(t,r){return typeof r=="string"&&(r=new RegExp(r)),this.formats[t]=r,this}errorsText(t=this.errors,{separator:r=", ",dataVar:n="data"}={}){return!t||t.length===0?"No errors":t.map(s=>`${n}${s.instancePath} ${s.message}`).reduce((s,i)=>s+r+i)}$dataMetaSchema(t,r){let n=this.RULES.all;t=JSON.parse(JSON.stringify(t));for(let s of r){let i=s.split("/").slice(1),o=t;for(let a of i)o=o[a];for(let a in n){let c=n[a];if(typeof c!="object")continue;let{$data:u}=c.definition,l=o[a];u&&l&&(o[a]=n6(l))}}return t}_removeAllSchemas(t,r){for(let n in t){let s=t[n];(!r||r.test(n))&&(typeof s=="string"?delete t[n]:s&&!s.meta&&(this._cache.delete(s.schema),delete t[n]))}}_addSchema(t,r,n,s=this.opts.validateSchema,i=this.opts.addUsedSchema){let o,{schemaId:a}=this.opts;if(typeof t=="object")o=t[a];else{if(this.opts.jtd)throw new Error("schema must be object");if(typeof t!="boolean")throw new Error("schema must be object or boolean")}let c=this._cache.get(t);if(c!==void 0)return c;n=(0,Td.normalizeId)(o||n);let u=Td.getSchemaRefs.call(this,t,n);return c=new Qd.SchemaEnv({schema:t,schemaId:a,meta:r,baseId:n,localRefs:u}),this._cache.set(c.schema,c),i&&!n.startsWith("#")&&(n&&this._checkUnique(n),this.refs[n]=c),s&&this.validateSchema(t,!0),c}_checkUnique(t){if(this.schemas[t]||this.refs[t])throw new Error(`schema with key or id "${t}" already exists`)}_compileSchemaEnv(t){if(t.meta?this._compileMetaSchema(t):Qd.compileSchema.call(this,t),!t.validate)throw new Error("ajv implementation error");return t.validate}_compileMetaSchema(t){let r=this.opts;this.opts=this._metaOpts;try{Qd.compileSchema.call(this,t)}finally{this.opts=r}}};wd.ValidationError=Wye.default;wd.MissingRefError=t6.default;_r.default=wd;function ZP(e,t,r,n="error"){for(let s in e){let i=s;i in t&&this.logger[n](`${r}: option ${s}. ${e[i]}`)}}function e6(e){return e=(0,Td.normalizeId)(e),this.schemas[e]||this.refs[e]}function sIe(){let e=this.opts.schemas;if(e)if(Array.isArray(e))this.addSchema(e);else for(let t in e)this.addSchema(e[t],t)}function iIe(){for(let e in this.opts.formats){let t=this.opts.formats[e];t&&this.addFormat(e,t)}}function oIe(e){if(Array.isArray(e)){this.addVocabulary(e);return}this.logger.warn("keywords option as map is deprecated, pass array");for(let t in e){let r=e[t];r.keyword||(r.keyword=t),this.addKeyword(r)}}function aIe(){let e={...this.opts};for(let t of Zye)delete e[t];return e}var cIe={log(){},warn(){},error(){}};function uIe(e){if(e===!1)return cIe;if(e===void 0)return console;if(e.log&&e.warn&&e.error)return e;throw new Error("logger must implement log, warn and error methods")}var lIe=/^[a-z_$][a-z0-9_$:-]*$/i;function AIe(e,t){let{RULES:r}=this;if((0,av.eachItem)(e,n=>{if(r.keywords[n])throw new Error(`Keyword ${n} is already defined`);if(!lIe.test(n))throw new Error(`Keyword ${n} has invalid name`)}),!!t&&t.$data&&!("code"in t||"validate"in t))throw new Error('$data keyword must have "code" or "validate" function')}function ov(e,t,r){var n;let s=t?.post;if(r&&s)throw new Error('keyword with "post" flag cannot have "type"');let{RULES:i}=this,o=s?i.post:i.rules.find(({type:c})=>c===r);if(o||(o={type:r,rules:[]},i.rules.push(o)),i.keywords[e]=!0,!t)return;let a={keyword:e,definition:{...t,type:(0,dm.getJSONTypes)(t.type),schemaType:(0,dm.getJSONTypes)(t.schemaType)}};t.before?fIe.call(this,o,a,t.before):o.rules.push(a),i.all[e]=a,(n=t.implements)===null||n===void 0||n.forEach(c=>this.addKeyword(c))}function fIe(e,t,r){let n=e.rules.findIndex(s=>s.keyword===r);n>=0?e.rules.splice(n,0,t):(e.rules.push(t),this.logger.warn(`rule ${r} is not defined`))}function dIe(e){let{metaSchema:t}=e;t!==void 0&&(e.$data&&this.opts.$data&&(t=n6(t)),e.validateSchema=this.compile(t,!0))}var hIe={$ref:"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#"};function n6(e){return{anyOf:[e,hIe]}}});var s6=b(uv=>{"use strict";Object.defineProperty(uv,"__esModule",{value:!0});var pIe={keyword:"id",code(){throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')}};uv.default=pIe});var lv=b(Fc=>{"use strict";Object.defineProperty(Fc,"__esModule",{value:!0});Fc.callRef=Fc.getValidate=void 0;var gIe=fo(),i6=Sr(),Bn=ge(),hl=ds(),o6=kc(),hm=Pe(),mIe={keyword:"$ref",schemaType:"string",code(e){let{gen:t,schema:r,it:n}=e,{baseId:s,schemaEnv:i,validateName:o,opts:a,self:c}=n,{root:u}=i;if((r==="#"||r==="#/")&&s===u.baseId)return A();let l=o6.resolveRef.call(c,u,s,r);if(l===void 0)throw new gIe.default(n.opts.uriResolver,s,r);if(l instanceof o6.SchemaEnv)return f(l);return d(l);function A(){if(i===u)return pm(e,o,i,i.$async);let h=t.scopeValue("root",{ref:u});return pm(e,(0,Bn._)`${h}.validate`,u,u.$async)}function f(h){let p=a6(e,h);pm(e,p,h,h.$async)}function d(h){let p=t.scopeValue("schema",a.code.source===!0?{ref:h,code:(0,Bn.stringify)(h)}:{ref:h}),C=t.name("valid"),m=e.subschema({schema:h,dataTypes:[],schemaPath:Bn.nil,topSchemaRef:p,errSchemaPath:r},C);e.mergeEvaluated(m),e.ok(C)}}};function a6(e,t){let{gen:r}=e;return t.validate?r.scopeValue("validate",{ref:t.validate}):(0,Bn._)`${r.scopeValue("wrapper",{ref:t})}.validate`}Fc.getValidate=a6;function pm(e,t,r,n){let{gen:s,it:i}=e,{allErrors:o,schemaEnv:a,opts:c}=i,u=c.passContext?hl.default.this:Bn.nil;n?l():A();function l(){if(!a.$async)throw new Error("async schema referenced by sync schema");let h=s.let("valid");s.try(()=>{s.code((0,Bn._)`await ${(0,i6.callValidateCode)(e,t,u)}`),d(t),o||s.assign(h,!0)},p=>{s.if((0,Bn._)`!(${p} instanceof ${i.ValidationError})`,()=>s.throw(p)),f(p),o||s.assign(h,!1)}),e.ok(h)}function A(){e.result((0,i6.callValidateCode)(e,t,u),()=>d(t),()=>f(t))}function f(h){let p=(0,Bn._)`${h}.errors`;s.assign(hl.default.vErrors,(0,Bn._)`${hl.default.vErrors} === null ? ${p} : ${hl.default.vErrors}.concat(${p})`),s.assign(hl.default.errors,(0,Bn._)`${hl.default.vErrors}.length`)}function d(h){var p;if(!i.opts.unevaluated)return;let C=(p=r?.validate)===null||p===void 0?void 0:p.evaluated;if(i.props!==!0)if(C&&!C.dynamicProps)C.props!==void 0&&(i.props=hm.mergeEvaluated.props(s,C.props,i.props));else{let m=s.var("props",(0,Bn._)`${h}.evaluated.props`);i.props=hm.mergeEvaluated.props(s,m,i.props,Bn.Name)}if(i.items!==!0)if(C&&!C.dynamicItems)C.items!==void 0&&(i.items=hm.mergeEvaluated.items(s,C.items,i.items));else{let m=s.var("items",(0,Bn._)`${h}.evaluated.items`);i.items=hm.mergeEvaluated.items(s,m,i.items,Bn.Name)}}}Fc.callRef=pm;Fc.default=mIe});var c6=b(Av=>{"use strict";Object.defineProperty(Av,"__esModule",{value:!0});var EIe=s6(),CIe=lv(),yIe=["$schema","$id","$defs","$vocabulary",{keyword:"$comment"},"definitions",EIe.default,CIe.default];Av.default=yIe});var u6=b(fv=>{"use strict";Object.defineProperty(fv,"__esModule",{value:!0});var gm=ge(),ma=gm.operators,mm={maximum:{okStr:"<=",ok:ma.LTE,fail:ma.GT},minimum:{okStr:">=",ok:ma.GTE,fail:ma.LT},exclusiveMaximum:{okStr:"<",ok:ma.LT,fail:ma.GTE},exclusiveMinimum:{okStr:">",ok:ma.GT,fail:ma.LTE}},IIe={message:({keyword:e,schemaCode:t})=>(0,gm.str)`must be ${mm[e].okStr} ${t}`,params:({keyword:e,schemaCode:t})=>(0,gm._)`{comparison: ${mm[e].okStr}, limit: ${t}}`},bIe={keyword:Object.keys(mm),type:"number",schemaType:"number",$data:!0,error:IIe,code(e){let{keyword:t,data:r,schemaCode:n}=e;e.fail$data((0,gm._)`${r} ${mm[t].fail} ${n} || isNaN(${r})`)}};fv.default=bIe});var l6=b(dv=>{"use strict";Object.defineProperty(dv,"__esModule",{value:!0});var Sd=ge(),BIe={message:({schemaCode:e})=>(0,Sd.str)`must be multiple of ${e}`,params:({schemaCode:e})=>(0,Sd._)`{multipleOf: ${e}}`},xIe={keyword:"multipleOf",type:"number",schemaType:"number",$data:!0,error:BIe,code(e){let{gen:t,data:r,schemaCode:n,it:s}=e,i=s.opts.multipleOfPrecision,o=t.let("res"),a=i?(0,Sd._)`Math.abs(Math.round(${o}) - ${o}) > 1e-${i}`:(0,Sd._)`${o} !== parseInt(${o})`;e.fail$data((0,Sd._)`(${n} === 0 || (${o} = ${r}/${n}, ${a}))`)}};dv.default=xIe});var f6=b(hv=>{"use strict";Object.defineProperty(hv,"__esModule",{value:!0});function A6(e){let t=e.length,r=0,n=0,s;for(;n=55296&&s<=56319&&n{"use strict";Object.defineProperty(pv,"__esModule",{value:!0});var Lc=ge(),vIe=Pe(),QIe=f6(),TIe={message({keyword:e,schemaCode:t}){let r=e==="maxLength"?"more":"fewer";return(0,Lc.str)`must NOT have ${r} than ${t} characters`},params:({schemaCode:e})=>(0,Lc._)`{limit: ${e}}`},wIe={keyword:["maxLength","minLength"],type:"string",schemaType:"number",$data:!0,error:TIe,code(e){let{keyword:t,data:r,schemaCode:n,it:s}=e,i=t==="maxLength"?Lc.operators.GT:Lc.operators.LT,o=s.opts.unicode===!1?(0,Lc._)`${r}.length`:(0,Lc._)`${(0,vIe.useFunc)(e.gen,QIe.default)}(${r})`;e.fail$data((0,Lc._)`${o} ${i} ${n}`)}};pv.default=wIe});var h6=b(gv=>{"use strict";Object.defineProperty(gv,"__esModule",{value:!0});var SIe=Sr(),Em=ge(),_Ie={message:({schemaCode:e})=>(0,Em.str)`must match pattern "${e}"`,params:({schemaCode:e})=>(0,Em._)`{pattern: ${e}}`},RIe={keyword:"pattern",type:"string",schemaType:"string",$data:!0,error:_Ie,code(e){let{data:t,$data:r,schema:n,schemaCode:s,it:i}=e,o=i.opts.unicodeRegExp?"u":"",a=r?(0,Em._)`(new RegExp(${s}, ${o}))`:(0,SIe.usePattern)(e,n);e.fail$data((0,Em._)`!${a}.test(${t})`)}};gv.default=RIe});var p6=b(mv=>{"use strict";Object.defineProperty(mv,"__esModule",{value:!0});var _d=ge(),DIe={message({keyword:e,schemaCode:t}){let r=e==="maxProperties"?"more":"fewer";return(0,_d.str)`must NOT have ${r} than ${t} properties`},params:({schemaCode:e})=>(0,_d._)`{limit: ${e}}`},NIe={keyword:["maxProperties","minProperties"],type:"object",schemaType:"number",$data:!0,error:DIe,code(e){let{keyword:t,data:r,schemaCode:n}=e,s=t==="maxProperties"?_d.operators.GT:_d.operators.LT;e.fail$data((0,_d._)`Object.keys(${r}).length ${s} ${n}`)}};mv.default=NIe});var g6=b(Ev=>{"use strict";Object.defineProperty(Ev,"__esModule",{value:!0});var Rd=Sr(),Dd=ge(),kIe=Pe(),FIe={message:({params:{missingProperty:e}})=>(0,Dd.str)`must have required property '${e}'`,params:({params:{missingProperty:e}})=>(0,Dd._)`{missingProperty: ${e}}`},LIe={keyword:"required",type:"object",schemaType:"array",$data:!0,error:FIe,code(e){let{gen:t,schema:r,schemaCode:n,data:s,$data:i,it:o}=e,{opts:a}=o;if(!i&&r.length===0)return;let c=r.length>=a.loopRequired;if(o.allErrors?u():l(),a.strictRequired){let d=e.parentSchema.properties,{definedProperties:h}=e.it;for(let p of r)if(d?.[p]===void 0&&!h.has(p)){let C=o.schemaEnv.baseId+o.errSchemaPath,m=`required property "${p}" is not defined at "${C}" (strictRequired)`;(0,kIe.checkStrictMode)(o,m,o.opts.strictRequired)}}function u(){if(c||i)e.block$data(Dd.nil,A);else for(let d of r)(0,Rd.checkReportMissingProp)(e,d)}function l(){let d=t.let("missing");if(c||i){let h=t.let("valid",!0);e.block$data(h,()=>f(d,h)),e.ok(h)}else t.if((0,Rd.checkMissingProp)(e,r,d)),(0,Rd.reportMissingProp)(e,d),t.else()}function A(){t.forOf("prop",n,d=>{e.setParams({missingProperty:d}),t.if((0,Rd.noPropertyInData)(t,s,d,a.ownProperties),()=>e.error())})}function f(d,h){e.setParams({missingProperty:d}),t.forOf(d,n,()=>{t.assign(h,(0,Rd.propertyInData)(t,s,d,a.ownProperties)),t.if((0,Dd.not)(h),()=>{e.error(),t.break()})},Dd.nil)}}};Ev.default=LIe});var m6=b(Cv=>{"use strict";Object.defineProperty(Cv,"__esModule",{value:!0});var Nd=ge(),OIe={message({keyword:e,schemaCode:t}){let r=e==="maxItems"?"more":"fewer";return(0,Nd.str)`must NOT have ${r} than ${t} items`},params:({schemaCode:e})=>(0,Nd._)`{limit: ${e}}`},MIe={keyword:["maxItems","minItems"],type:"array",schemaType:"number",$data:!0,error:OIe,code(e){let{keyword:t,data:r,schemaCode:n}=e,s=t==="maxItems"?Nd.operators.GT:Nd.operators.LT;e.fail$data((0,Nd._)`${r}.length ${s} ${n}`)}};Cv.default=MIe});var kd=b(yv=>{"use strict";Object.defineProperty(yv,"__esModule",{value:!0});var E6=la();E6.code='require("ajv/dist/runtime/equal").default';yv.default=E6});var C6=b(bv=>{"use strict";Object.defineProperty(bv,"__esModule",{value:!0});var Iv=yd(),Rr=ge(),PIe=Pe(),UIe=kd(),HIe={message:({params:{i:e,j:t}})=>(0,Rr.str)`must NOT have duplicate items (items ## ${t} and ${e} are identical)`,params:({params:{i:e,j:t}})=>(0,Rr._)`{i: ${e}, j: ${t}}`},qIe={keyword:"uniqueItems",type:"array",schemaType:"boolean",$data:!0,error:HIe,code(e){let{gen:t,data:r,$data:n,schema:s,parentSchema:i,schemaCode:o,it:a}=e;if(!n&&!s)return;let c=t.let("valid"),u=i.items?(0,Iv.getSchemaTypes)(i.items):[];e.block$data(c,l,(0,Rr._)`${o} === false`),e.ok(c);function l(){let h=t.let("i",(0,Rr._)`${r}.length`),p=t.let("j");e.setParams({i:h,j:p}),t.assign(c,!0),t.if((0,Rr._)`${h} > 1`,()=>(A()?f:d)(h,p))}function A(){return u.length>0&&!u.some(h=>h==="object"||h==="array")}function f(h,p){let C=t.name("item"),m=(0,Iv.checkDataTypes)(u,C,a.opts.strictNumbers,Iv.DataType.Wrong),I=t.const("indices",(0,Rr._)`{}`);t.for((0,Rr._)`;${h}--;`,()=>{t.let(C,(0,Rr._)`${r}[${h}]`),t.if(m,(0,Rr._)`continue`),u.length>1&&t.if((0,Rr._)`typeof ${C} == "string"`,(0,Rr._)`${C} += "_"`),t.if((0,Rr._)`typeof ${I}[${C}] == "number"`,()=>{t.assign(p,(0,Rr._)`${I}[${C}]`),e.error(),t.assign(c,!1).break()}).code((0,Rr._)`${I}[${C}] = ${h}`)})}function d(h,p){let C=(0,PIe.useFunc)(t,UIe.default),m=t.name("outer");t.label(m).for((0,Rr._)`;${h}--;`,()=>t.for((0,Rr._)`${p} = ${h}; ${p}--;`,()=>t.if((0,Rr._)`${C}(${r}[${h}], ${r}[${p}])`,()=>{e.error(),t.assign(c,!1).break(m)})))}}};bv.default=qIe});var y6=b(xv=>{"use strict";Object.defineProperty(xv,"__esModule",{value:!0});var Bv=ge(),VIe=Pe(),YIe=kd(),$Ie={message:"must be equal to constant",params:({schemaCode:e})=>(0,Bv._)`{allowedValue: ${e}}`},GIe={keyword:"const",$data:!0,error:$Ie,code(e){let{gen:t,data:r,$data:n,schemaCode:s,schema:i}=e;n||i&&typeof i=="object"?e.fail$data((0,Bv._)`!${(0,VIe.useFunc)(t,YIe.default)}(${r}, ${s})`):e.fail((0,Bv._)`${i} !== ${r}`)}};xv.default=GIe});var I6=b(vv=>{"use strict";Object.defineProperty(vv,"__esModule",{value:!0});var Fd=ge(),jIe=Pe(),JIe=kd(),WIe={message:"must be equal to one of the allowed values",params:({schemaCode:e})=>(0,Fd._)`{allowedValues: ${e}}`},zIe={keyword:"enum",schemaType:"array",$data:!0,error:WIe,code(e){let{gen:t,data:r,$data:n,schema:s,schemaCode:i,it:o}=e;if(!n&&s.length===0)throw new Error("enum must have non-empty array");let a=s.length>=o.opts.loopEnum,c,u=()=>c??(c=(0,jIe.useFunc)(t,JIe.default)),l;if(a||n)l=t.let("valid"),e.block$data(l,A);else{if(!Array.isArray(s))throw new Error("ajv implementation error");let d=t.const("vSchema",i);l=(0,Fd.or)(...s.map((h,p)=>f(d,p)))}e.pass(l);function A(){t.assign(l,!1),t.forOf("v",i,d=>t.if((0,Fd._)`${u()}(${r}, ${d})`,()=>t.assign(l,!0).break()))}function f(d,h){let p=s[h];return typeof p=="object"&&p!==null?(0,Fd._)`${u()}(${r}, ${d}[${h}])`:(0,Fd._)`${r} === ${p}`}}};vv.default=zIe});var b6=b(Qv=>{"use strict";Object.defineProperty(Qv,"__esModule",{value:!0});var XIe=u6(),KIe=l6(),ZIe=d6(),ebe=h6(),tbe=p6(),rbe=g6(),nbe=m6(),sbe=C6(),ibe=y6(),obe=I6(),abe=[XIe.default,KIe.default,ZIe.default,ebe.default,tbe.default,rbe.default,nbe.default,sbe.default,{keyword:"type",schemaType:["string","array"]},{keyword:"nullable",schemaType:"boolean"},ibe.default,obe.default];Qv.default=abe});var wv=b(Ld=>{"use strict";Object.defineProperty(Ld,"__esModule",{value:!0});Ld.validateAdditionalItems=void 0;var Oc=ge(),Tv=Pe(),cbe={message:({params:{len:e}})=>(0,Oc.str)`must NOT have more than ${e} items`,params:({params:{len:e}})=>(0,Oc._)`{limit: ${e}}`},ube={keyword:"additionalItems",type:"array",schemaType:["boolean","object"],before:"uniqueItems",error:cbe,code(e){let{parentSchema:t,it:r}=e,{items:n}=t;if(!Array.isArray(n)){(0,Tv.checkStrictMode)(r,'"additionalItems" is ignored when "items" is not an array of schemas');return}B6(e,n)}};function B6(e,t){let{gen:r,schema:n,data:s,keyword:i,it:o}=e;o.items=!0;let a=r.const("len",(0,Oc._)`${s}.length`);if(n===!1)e.setParams({len:t.length}),e.pass((0,Oc._)`${a} <= ${t.length}`);else if(typeof n=="object"&&!(0,Tv.alwaysValidSchema)(o,n)){let u=r.var("valid",(0,Oc._)`${a} <= ${t.length}`);r.if((0,Oc.not)(u),()=>c(u)),e.ok(u)}function c(u){r.forRange("i",t.length,a,l=>{e.subschema({keyword:i,dataProp:l,dataPropType:Tv.Type.Num},u),o.allErrors||r.if((0,Oc.not)(u),()=>r.break())})}}Ld.validateAdditionalItems=B6;Ld.default=ube});var Sv=b(Od=>{"use strict";Object.defineProperty(Od,"__esModule",{value:!0});Od.validateTuple=void 0;var x6=ge(),Cm=Pe(),lbe=Sr(),Abe={keyword:"items",type:"array",schemaType:["object","array","boolean"],before:"uniqueItems",code(e){let{schema:t,it:r}=e;if(Array.isArray(t))return v6(e,"additionalItems",t);r.items=!0,!(0,Cm.alwaysValidSchema)(r,t)&&e.ok((0,lbe.validateArray)(e))}};function v6(e,t,r=e.schema){let{gen:n,parentSchema:s,data:i,keyword:o,it:a}=e;l(s),a.opts.unevaluated&&r.length&&a.items!==!0&&(a.items=Cm.mergeEvaluated.items(n,r.length,a.items));let c=n.name("valid"),u=n.const("len",(0,x6._)`${i}.length`);r.forEach((A,f)=>{(0,Cm.alwaysValidSchema)(a,A)||(n.if((0,x6._)`${u} > ${f}`,()=>e.subschema({keyword:o,schemaProp:f,dataProp:f},c)),e.ok(c))});function l(A){let{opts:f,errSchemaPath:d}=a,h=r.length,p=h===A.minItems&&(h===A.maxItems||A[t]===!1);if(f.strictTuples&&!p){let C=`"${o}" is ${h}-tuple, but minItems or maxItems/${t} are not specified or different at path "${d}"`;(0,Cm.checkStrictMode)(a,C,f.strictTuples)}}}Od.validateTuple=v6;Od.default=Abe});var Q6=b(_v=>{"use strict";Object.defineProperty(_v,"__esModule",{value:!0});var fbe=Sv(),dbe={keyword:"prefixItems",type:"array",schemaType:["array"],before:"uniqueItems",code:e=>(0,fbe.validateTuple)(e,"items")};_v.default=dbe});var w6=b(Rv=>{"use strict";Object.defineProperty(Rv,"__esModule",{value:!0});var T6=ge(),hbe=Pe(),pbe=Sr(),gbe=wv(),mbe={message:({params:{len:e}})=>(0,T6.str)`must NOT have more than ${e} items`,params:({params:{len:e}})=>(0,T6._)`{limit: ${e}}`},Ebe={keyword:"items",type:"array",schemaType:["object","boolean"],before:"uniqueItems",error:mbe,code(e){let{schema:t,parentSchema:r,it:n}=e,{prefixItems:s}=r;n.items=!0,!(0,hbe.alwaysValidSchema)(n,t)&&(s?(0,gbe.validateAdditionalItems)(e,s):e.ok((0,pbe.validateArray)(e)))}};Rv.default=Ebe});var S6=b(Dv=>{"use strict";Object.defineProperty(Dv,"__esModule",{value:!0});var ps=ge(),ym=Pe(),Cbe={message:({params:{min:e,max:t}})=>t===void 0?(0,ps.str)`must contain at least ${e} valid item(s)`:(0,ps.str)`must contain at least ${e} and no more than ${t} valid item(s)`,params:({params:{min:e,max:t}})=>t===void 0?(0,ps._)`{minContains: ${e}}`:(0,ps._)`{minContains: ${e}, maxContains: ${t}}`},ybe={keyword:"contains",type:"array",schemaType:["object","boolean"],before:"uniqueItems",trackErrors:!0,error:Cbe,code(e){let{gen:t,schema:r,parentSchema:n,data:s,it:i}=e,o,a,{minContains:c,maxContains:u}=n;i.opts.next?(o=c===void 0?1:c,a=u):o=1;let l=t.const("len",(0,ps._)`${s}.length`);if(e.setParams({min:o,max:a}),a===void 0&&o===0){(0,ym.checkStrictMode)(i,'"minContains" == 0 without "maxContains": "contains" keyword ignored');return}if(a!==void 0&&o>a){(0,ym.checkStrictMode)(i,'"minContains" > "maxContains" is always invalid'),e.fail();return}if((0,ym.alwaysValidSchema)(i,r)){let p=(0,ps._)`${l} >= ${o}`;a!==void 0&&(p=(0,ps._)`${p} && ${l} <= ${a}`),e.pass(p);return}i.items=!0;let A=t.name("valid");a===void 0&&o===1?d(A,()=>t.if(A,()=>t.break())):o===0?(t.let(A,!0),a!==void 0&&t.if((0,ps._)`${s}.length > 0`,f)):(t.let(A,!1),f()),e.result(A,()=>e.reset());function f(){let p=t.name("_valid"),C=t.let("count",0);d(p,()=>t.if(p,()=>h(C)))}function d(p,C){t.forRange("i",0,l,m=>{e.subschema({keyword:"contains",dataProp:m,dataPropType:ym.Type.Num,compositeRule:!0},p),C()})}function h(p){t.code((0,ps._)`${p}++`),a===void 0?t.if((0,ps._)`${p} >= ${o}`,()=>t.assign(A,!0).break()):(t.if((0,ps._)`${p} > ${a}`,()=>t.assign(A,!1).break()),o===1?t.assign(A,!0):t.if((0,ps._)`${p} >= ${o}`,()=>t.assign(A,!0)))}}};Dv.default=ybe});var D6=b(vi=>{"use strict";Object.defineProperty(vi,"__esModule",{value:!0});vi.validateSchemaDeps=vi.validatePropertyDeps=vi.error=void 0;var Nv=ge(),Ibe=Pe(),Md=Sr();vi.error={message:({params:{property:e,depsCount:t,deps:r}})=>{let n=t===1?"property":"properties";return(0,Nv.str)`must have ${n} ${r} when property ${e} is present`},params:({params:{property:e,depsCount:t,deps:r,missingProperty:n}})=>(0,Nv._)`{property: ${e}, + missingProperty: ${n}, + depsCount: ${t}, + deps: ${r}}`};var bbe={keyword:"dependencies",type:"object",schemaType:"object",error:vi.error,code(e){let[t,r]=Bbe(e);_6(e,t),R6(e,r)}};function Bbe({schema:e}){let t={},r={};for(let n in e){if(n==="__proto__")continue;let s=Array.isArray(e[n])?t:r;s[n]=e[n]}return[t,r]}function _6(e,t=e.schema){let{gen:r,data:n,it:s}=e;if(Object.keys(t).length===0)return;let i=r.let("missing");for(let o in t){let a=t[o];if(a.length===0)continue;let c=(0,Md.propertyInData)(r,n,o,s.opts.ownProperties);e.setParams({property:o,depsCount:a.length,deps:a.join(", ")}),s.allErrors?r.if(c,()=>{for(let u of a)(0,Md.checkReportMissingProp)(e,u)}):(r.if((0,Nv._)`${c} && (${(0,Md.checkMissingProp)(e,a,i)})`),(0,Md.reportMissingProp)(e,i),r.else())}}vi.validatePropertyDeps=_6;function R6(e,t=e.schema){let{gen:r,data:n,keyword:s,it:i}=e,o=r.name("valid");for(let a in t)(0,Ibe.alwaysValidSchema)(i,t[a])||(r.if((0,Md.propertyInData)(r,n,a,i.opts.ownProperties),()=>{let c=e.subschema({keyword:s,schemaProp:a},o);e.mergeValidEvaluated(c,o)},()=>r.var(o,!0)),e.ok(o))}vi.validateSchemaDeps=R6;vi.default=bbe});var k6=b(kv=>{"use strict";Object.defineProperty(kv,"__esModule",{value:!0});var N6=ge(),xbe=Pe(),vbe={message:"property name must be valid",params:({params:e})=>(0,N6._)`{propertyName: ${e.propertyName}}`},Qbe={keyword:"propertyNames",type:"object",schemaType:["object","boolean"],error:vbe,code(e){let{gen:t,schema:r,data:n,it:s}=e;if((0,xbe.alwaysValidSchema)(s,r))return;let i=t.name("valid");t.forIn("key",n,o=>{e.setParams({propertyName:o}),e.subschema({keyword:"propertyNames",data:o,dataTypes:["string"],propertyName:o,compositeRule:!0},i),t.if((0,N6.not)(i),()=>{e.error(!0),s.allErrors||t.break()})}),e.ok(i)}};kv.default=Qbe});var Lv=b(Fv=>{"use strict";Object.defineProperty(Fv,"__esModule",{value:!0});var Im=Sr(),Gs=ge(),Tbe=ds(),bm=Pe(),wbe={message:"must NOT have additional properties",params:({params:e})=>(0,Gs._)`{additionalProperty: ${e.additionalProperty}}`},Sbe={keyword:"additionalProperties",type:["object"],schemaType:["boolean","object"],allowUndefined:!0,trackErrors:!0,error:wbe,code(e){let{gen:t,schema:r,parentSchema:n,data:s,errsCount:i,it:o}=e;if(!i)throw new Error("ajv implementation error");let{allErrors:a,opts:c}=o;if(o.props=!0,c.removeAdditional!=="all"&&(0,bm.alwaysValidSchema)(o,r))return;let u=(0,Im.allSchemaProperties)(n.properties),l=(0,Im.allSchemaProperties)(n.patternProperties);A(),e.ok((0,Gs._)`${i} === ${Tbe.default.errors}`);function A(){t.forIn("key",s,C=>{!u.length&&!l.length?h(C):t.if(f(C),()=>h(C))})}function f(C){let m;if(u.length>8){let I=(0,bm.schemaRefOrVal)(o,n.properties,"properties");m=(0,Im.isOwnProperty)(t,I,C)}else u.length?m=(0,Gs.or)(...u.map(I=>(0,Gs._)`${C} === ${I}`)):m=Gs.nil;return l.length&&(m=(0,Gs.or)(m,...l.map(I=>(0,Gs._)`${(0,Im.usePattern)(e,I)}.test(${C})`))),(0,Gs.not)(m)}function d(C){t.code((0,Gs._)`delete ${s}[${C}]`)}function h(C){if(c.removeAdditional==="all"||c.removeAdditional&&r===!1){d(C);return}if(r===!1){e.setParams({additionalProperty:C}),e.error(),a||t.break();return}if(typeof r=="object"&&!(0,bm.alwaysValidSchema)(o,r)){let m=t.name("valid");c.removeAdditional==="failing"?(p(C,m,!1),t.if((0,Gs.not)(m),()=>{e.reset(),d(C)})):(p(C,m),a||t.if((0,Gs.not)(m),()=>t.break()))}}function p(C,m,I){let y={keyword:"additionalProperties",dataProp:C,dataPropType:bm.Type.Str};I===!1&&Object.assign(y,{compositeRule:!0,createErrors:!1,allErrors:!1}),e.subschema(y,m)}}};Fv.default=Sbe});var O6=b(Mv=>{"use strict";Object.defineProperty(Mv,"__esModule",{value:!0});var _be=Al(),F6=Sr(),Ov=Pe(),L6=Lv(),Rbe={keyword:"properties",type:"object",schemaType:"object",code(e){let{gen:t,schema:r,parentSchema:n,data:s,it:i}=e;i.opts.removeAdditional==="all"&&n.additionalProperties===void 0&&L6.default.code(new _be.KeywordCxt(i,L6.default,"additionalProperties"));let o=(0,F6.allSchemaProperties)(r);for(let A of o)i.definedProperties.add(A);i.opts.unevaluated&&o.length&&i.props!==!0&&(i.props=Ov.mergeEvaluated.props(t,(0,Ov.toHash)(o),i.props));let a=o.filter(A=>!(0,Ov.alwaysValidSchema)(i,r[A]));if(a.length===0)return;let c=t.name("valid");for(let A of a)u(A)?l(A):(t.if((0,F6.propertyInData)(t,s,A,i.opts.ownProperties)),l(A),i.allErrors||t.else().var(c,!0),t.endIf()),e.it.definedProperties.add(A),e.ok(c);function u(A){return i.opts.useDefaults&&!i.compositeRule&&r[A].default!==void 0}function l(A){e.subschema({keyword:"properties",schemaProp:A,dataProp:A},c)}}};Mv.default=Rbe});var H6=b(Pv=>{"use strict";Object.defineProperty(Pv,"__esModule",{value:!0});var M6=Sr(),Bm=ge(),P6=Pe(),U6=Pe(),Dbe={keyword:"patternProperties",type:"object",schemaType:"object",code(e){let{gen:t,schema:r,data:n,parentSchema:s,it:i}=e,{opts:o}=i,a=(0,M6.allSchemaProperties)(r),c=a.filter(p=>(0,P6.alwaysValidSchema)(i,r[p]));if(a.length===0||c.length===a.length&&(!i.opts.unevaluated||i.props===!0))return;let u=o.strictSchema&&!o.allowMatchingProperties&&s.properties,l=t.name("valid");i.props!==!0&&!(i.props instanceof Bm.Name)&&(i.props=(0,U6.evaluatedPropsToName)(t,i.props));let{props:A}=i;f();function f(){for(let p of a)u&&d(p),i.allErrors?h(p):(t.var(l,!0),h(p),t.if(l))}function d(p){for(let C in u)new RegExp(p).test(C)&&(0,P6.checkStrictMode)(i,`property ${C} matches pattern ${p} (use allowMatchingProperties)`)}function h(p){t.forIn("key",n,C=>{t.if((0,Bm._)`${(0,M6.usePattern)(e,p)}.test(${C})`,()=>{let m=c.includes(p);m||e.subschema({keyword:"patternProperties",schemaProp:p,dataProp:C,dataPropType:U6.Type.Str},l),i.opts.unevaluated&&A!==!0?t.assign((0,Bm._)`${A}[${C}]`,!0):!m&&!i.allErrors&&t.if((0,Bm.not)(l),()=>t.break())})})}}};Pv.default=Dbe});var q6=b(Uv=>{"use strict";Object.defineProperty(Uv,"__esModule",{value:!0});var Nbe=Pe(),kbe={keyword:"not",schemaType:["object","boolean"],trackErrors:!0,code(e){let{gen:t,schema:r,it:n}=e;if((0,Nbe.alwaysValidSchema)(n,r)){e.fail();return}let s=t.name("valid");e.subschema({keyword:"not",compositeRule:!0,createErrors:!1,allErrors:!1},s),e.failResult(s,()=>e.reset(),()=>e.error())},error:{message:"must NOT be valid"}};Uv.default=kbe});var V6=b(Hv=>{"use strict";Object.defineProperty(Hv,"__esModule",{value:!0});var Fbe=Sr(),Lbe={keyword:"anyOf",schemaType:"array",trackErrors:!0,code:Fbe.validateUnion,error:{message:"must match a schema in anyOf"}};Hv.default=Lbe});var Y6=b(qv=>{"use strict";Object.defineProperty(qv,"__esModule",{value:!0});var xm=ge(),Obe=Pe(),Mbe={message:"must match exactly one schema in oneOf",params:({params:e})=>(0,xm._)`{passingSchemas: ${e.passing}}`},Pbe={keyword:"oneOf",schemaType:"array",trackErrors:!0,error:Mbe,code(e){let{gen:t,schema:r,parentSchema:n,it:s}=e;if(!Array.isArray(r))throw new Error("ajv implementation error");if(s.opts.discriminator&&n.discriminator)return;let i=r,o=t.let("valid",!1),a=t.let("passing",null),c=t.name("_valid");e.setParams({passing:a}),t.block(u),e.result(o,()=>e.reset(),()=>e.error(!0));function u(){i.forEach((l,A)=>{let f;(0,Obe.alwaysValidSchema)(s,l)?t.var(c,!0):f=e.subschema({keyword:"oneOf",schemaProp:A,compositeRule:!0},c),A>0&&t.if((0,xm._)`${c} && ${o}`).assign(o,!1).assign(a,(0,xm._)`[${a}, ${A}]`).else(),t.if(c,()=>{t.assign(o,!0),t.assign(a,A),f&&e.mergeEvaluated(f,xm.Name)})})}}};qv.default=Pbe});var $6=b(Vv=>{"use strict";Object.defineProperty(Vv,"__esModule",{value:!0});var Ube=Pe(),Hbe={keyword:"allOf",schemaType:"array",code(e){let{gen:t,schema:r,it:n}=e;if(!Array.isArray(r))throw new Error("ajv implementation error");let s=t.name("valid");r.forEach((i,o)=>{if((0,Ube.alwaysValidSchema)(n,i))return;let a=e.subschema({keyword:"allOf",schemaProp:o},s);e.ok(s),e.mergeEvaluated(a)})}};Vv.default=Hbe});var J6=b(Yv=>{"use strict";Object.defineProperty(Yv,"__esModule",{value:!0});var vm=ge(),j6=Pe(),qbe={message:({params:e})=>(0,vm.str)`must match "${e.ifClause}" schema`,params:({params:e})=>(0,vm._)`{failingKeyword: ${e.ifClause}}`},Vbe={keyword:"if",schemaType:["object","boolean"],trackErrors:!0,error:qbe,code(e){let{gen:t,parentSchema:r,it:n}=e;r.then===void 0&&r.else===void 0&&(0,j6.checkStrictMode)(n,'"if" without "then" and "else" is ignored');let s=G6(n,"then"),i=G6(n,"else");if(!s&&!i)return;let o=t.let("valid",!0),a=t.name("_valid");if(c(),e.reset(),s&&i){let l=t.let("ifClause");e.setParams({ifClause:l}),t.if(a,u("then",l),u("else",l))}else s?t.if(a,u("then")):t.if((0,vm.not)(a),u("else"));e.pass(o,()=>e.error(!0));function c(){let l=e.subschema({keyword:"if",compositeRule:!0,createErrors:!1,allErrors:!1},a);e.mergeEvaluated(l)}function u(l,A){return()=>{let f=e.subschema({keyword:l},a);t.assign(o,a),e.mergeValidEvaluated(f,o),A?t.assign(A,(0,vm._)`${l}`):e.setParams({ifClause:l})}}}};function G6(e,t){let r=e.schema[t];return r!==void 0&&!(0,j6.alwaysValidSchema)(e,r)}Yv.default=Vbe});var W6=b($v=>{"use strict";Object.defineProperty($v,"__esModule",{value:!0});var Ybe=Pe(),$be={keyword:["then","else"],schemaType:["object","boolean"],code({keyword:e,parentSchema:t,it:r}){t.if===void 0&&(0,Ybe.checkStrictMode)(r,`"${e}" without "if" is ignored`)}};$v.default=$be});var z6=b(Gv=>{"use strict";Object.defineProperty(Gv,"__esModule",{value:!0});var Gbe=wv(),jbe=Q6(),Jbe=Sv(),Wbe=w6(),zbe=S6(),Xbe=D6(),Kbe=k6(),Zbe=Lv(),e1e=O6(),t1e=H6(),r1e=q6(),n1e=V6(),s1e=Y6(),i1e=$6(),o1e=J6(),a1e=W6();function c1e(e=!1){let t=[r1e.default,n1e.default,s1e.default,i1e.default,o1e.default,a1e.default,Kbe.default,Zbe.default,Xbe.default,e1e.default,t1e.default];return e?t.push(jbe.default,Wbe.default):t.push(Gbe.default,Jbe.default),t.push(zbe.default),t}Gv.default=c1e});var X6=b(jv=>{"use strict";Object.defineProperty(jv,"__esModule",{value:!0});var Kt=ge(),u1e={message:({schemaCode:e})=>(0,Kt.str)`must match format "${e}"`,params:({schemaCode:e})=>(0,Kt._)`{format: ${e}}`},l1e={keyword:"format",type:["number","string"],schemaType:"string",$data:!0,error:u1e,code(e,t){let{gen:r,data:n,$data:s,schema:i,schemaCode:o,it:a}=e,{opts:c,errSchemaPath:u,schemaEnv:l,self:A}=a;if(!c.validateFormats)return;s?f():d();function f(){let h=r.scopeValue("formats",{ref:A.formats,code:c.code.formats}),p=r.const("fDef",(0,Kt._)`${h}[${o}]`),C=r.let("fType"),m=r.let("format");r.if((0,Kt._)`typeof ${p} == "object" && !(${p} instanceof RegExp)`,()=>r.assign(C,(0,Kt._)`${p}.type || "string"`).assign(m,(0,Kt._)`${p}.validate`),()=>r.assign(C,(0,Kt._)`"string"`).assign(m,p)),e.fail$data((0,Kt.or)(I(),y()));function I(){return c.strictSchema===!1?Kt.nil:(0,Kt._)`${o} && !${m}`}function y(){let E=l.$async?(0,Kt._)`(${p}.async ? await ${m}(${n}) : ${m}(${n}))`:(0,Kt._)`${m}(${n})`,B=(0,Kt._)`(typeof ${m} == "function" ? ${E} : ${m}.test(${n}))`;return(0,Kt._)`${m} && ${m} !== true && ${C} === ${t} && !${B}`}}function d(){let h=A.formats[i];if(!h){I();return}if(h===!0)return;let[p,C,m]=y(h);p===t&&e.pass(E());function I(){if(c.strictSchema===!1){A.logger.warn(B());return}throw new Error(B());function B(){return`unknown format "${i}" ignored in schema at path "${u}"`}}function y(B){let v=B instanceof RegExp?(0,Kt.regexpCode)(B):c.code.formats?(0,Kt._)`${c.code.formats}${(0,Kt.getProperty)(i)}`:void 0,x=r.scopeValue("formats",{key:i,ref:B,code:v});return typeof B=="object"&&!(B instanceof RegExp)?[B.type||"string",B.validate,(0,Kt._)`${x}.validate`]:["string",B,x]}function E(){if(typeof h=="object"&&!(h instanceof RegExp)&&h.async){if(!l.$async)throw new Error("async format in sync schema");return(0,Kt._)`await ${m}(${n})`}return typeof C=="function"?(0,Kt._)`${m}(${n})`:(0,Kt._)`${m}.test(${n})`}}}};jv.default=l1e});var K6=b(Jv=>{"use strict";Object.defineProperty(Jv,"__esModule",{value:!0});var A1e=X6(),f1e=[A1e.default];Jv.default=f1e});var Z6=b(pl=>{"use strict";Object.defineProperty(pl,"__esModule",{value:!0});pl.contentVocabulary=pl.metadataVocabulary=void 0;pl.metadataVocabulary=["title","description","default","deprecated","readOnly","writeOnly","examples"];pl.contentVocabulary=["contentMediaType","contentEncoding","contentSchema"]});var t5=b(Wv=>{"use strict";Object.defineProperty(Wv,"__esModule",{value:!0});var d1e=c6(),h1e=b6(),p1e=z6(),g1e=K6(),e5=Z6(),m1e=[d1e.default,h1e.default,(0,p1e.default)(),g1e.default,e5.metadataVocabulary,e5.contentVocabulary];Wv.default=m1e});var zv=b(Qm=>{"use strict";Object.defineProperty(Qm,"__esModule",{value:!0});Qm.DiscrError=void 0;var r5;(function(e){e.Tag="tag",e.Mapping="mapping"})(r5||(Qm.DiscrError=r5={}))});var s5=b(Kv=>{"use strict";Object.defineProperty(Kv,"__esModule",{value:!0});var gl=ge(),Xv=zv(),n5=kc(),E1e=fo(),C1e=Pe(),y1e={message:({params:{discrError:e,tagName:t}})=>e===Xv.DiscrError.Tag?`tag "${t}" must be string`:`value of tag "${t}" must be in oneOf`,params:({params:{discrError:e,tag:t,tagName:r}})=>(0,gl._)`{error: ${e}, tag: ${r}, tagValue: ${t}}`},I1e={keyword:"discriminator",type:"object",schemaType:"object",error:y1e,code(e){let{gen:t,data:r,schema:n,parentSchema:s,it:i}=e,{oneOf:o}=s;if(!i.opts.discriminator)throw new Error("discriminator: requires discriminator option");let a=n.propertyName;if(typeof a!="string")throw new Error("discriminator: requires propertyName");if(n.mapping)throw new Error("discriminator: mapping is not supported");if(!o)throw new Error("discriminator: requires oneOf keyword");let c=t.let("valid",!1),u=t.const("tag",(0,gl._)`${r}${(0,gl.getProperty)(a)}`);t.if((0,gl._)`typeof ${u} == "string"`,()=>l(),()=>e.error(!1,{discrError:Xv.DiscrError.Tag,tag:u,tagName:a})),e.ok(c);function l(){let d=f();t.if(!1);for(let h in d)t.elseIf((0,gl._)`${u} === ${h}`),t.assign(c,A(d[h]));t.else(),e.error(!1,{discrError:Xv.DiscrError.Mapping,tag:u,tagName:a}),t.endIf()}function A(d){let h=t.name("valid"),p=e.subschema({keyword:"oneOf",schemaProp:d},h);return e.mergeEvaluated(p,gl.Name),h}function f(){var d;let h={},p=m(s),C=!0;for(let E=0;E{b1e.exports={$schema:"http://json-schema.org/draft-07/schema#",$id:"http://json-schema.org/draft-07/schema#",title:"Core schema meta-schema",definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},type:["object","boolean"],properties:{$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},default:!0}});var Pd=b((kt,Zv)=>{"use strict";Object.defineProperty(kt,"__esModule",{value:!0});kt.MissingRefError=kt.ValidationError=kt.CodeGen=kt.Name=kt.nil=kt.stringify=kt.str=kt._=kt.KeywordCxt=kt.Ajv=void 0;var B1e=cv(),x1e=t5(),v1e=s5(),o5=i5(),Q1e=["/properties"],Tm="http://json-schema.org/draft-07/schema",ml=class extends B1e.default{_addVocabularies(){super._addVocabularies(),x1e.default.forEach(t=>this.addVocabulary(t)),this.opts.discriminator&&this.addKeyword(v1e.default)}_addDefaultMetaSchema(){if(super._addDefaultMetaSchema(),!this.opts.meta)return;let t=this.opts.$data?this.$dataMetaSchema(o5,Q1e):o5;this.addMetaSchema(t,Tm,!1),this.refs["http://json-schema.org/schema"]=Tm}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(Tm)?Tm:void 0)}};kt.Ajv=ml;Zv.exports=kt=ml;Zv.exports.Ajv=ml;Object.defineProperty(kt,"__esModule",{value:!0});kt.default=ml;var T1e=Al();Object.defineProperty(kt,"KeywordCxt",{enumerable:!0,get:function(){return T1e.KeywordCxt}});var El=ge();Object.defineProperty(kt,"_",{enumerable:!0,get:function(){return El._}});Object.defineProperty(kt,"str",{enumerable:!0,get:function(){return El.str}});Object.defineProperty(kt,"stringify",{enumerable:!0,get:function(){return El.stringify}});Object.defineProperty(kt,"nil",{enumerable:!0,get:function(){return El.nil}});Object.defineProperty(kt,"Name",{enumerable:!0,get:function(){return El.Name}});Object.defineProperty(kt,"CodeGen",{enumerable:!0,get:function(){return El.CodeGen}});var w1e=xd();Object.defineProperty(kt,"ValidationError",{enumerable:!0,get:function(){return w1e.default}});var S1e=fo();Object.defineProperty(kt,"MissingRefError",{enumerable:!0,get:function(){return S1e.default}})});var c5=b((LZe,a5)=>{"use strict";var _1e={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};a5.exports={HEX:_1e}});var g5=b((OZe,p5)=>{"use strict";var{HEX:R1e}=c5();function f5(e){if(h5(e,".")<3)return{host:e,isIPV4:!1};let t=e.match(/^(\b[01]?\d{1,2}|\b2[0-4]\d|\b25[0-5])(\.([01]?\d{1,2}|2[0-4]\d|25[0-5])){3}$/u)||[],[r]=t;return r?{host:N1e(r,"."),isIPV4:!0}:{host:e,isIPV4:!1}}function eQ(e){let t="",r=!0;for(let n of e){if(n!=="0"&&r===!0&&(r=!1),R1e[n]===void 0)return;r||(t+=n)}return t}function D1e(e){let t=0,r={error:!1,address:"",zone:""},n=[],s=[],i=!1,o=!1,a=!1;function c(){if(s.length){if(i===!1){let u=eQ(s.join(""));if(u!==void 0)n.push(u);else return r.error=!0,!1}s.length=0}return!0}for(let u=0;u7){r.error=!0;break}u-1>=0&&e[u-1]===":"&&(o=!0);continue}else if(l==="%"){if(!c())break;i=!0}else{s.push(l);continue}}return s.length&&(i?r.zone=s.join(""):a?n.push(s.join("")):n.push(eQ(s.join("")))),r.address=n.join(""),r}function d5(e,t={}){if(h5(e,":")<2)return{host:e,isIPV6:!1};let r=D1e(e);if(r.error)return{host:e,isIPV6:!1};{let n=r.address,s=r.address;return r.zone&&(n+="%"+r.zone,s+="%25"+r.zone),{host:n,escapedHost:s,isIPV6:!0}}}function N1e(e,t){let r="",n=!0,s=e.length;for(let i=0;i{"use strict";var M1e=/^[\da-f]{8}\b-[\da-f]{4}\b-[\da-f]{4}\b-[\da-f]{4}\b-[\da-f]{12}$/iu,P1e=/([\da-z][\d\-a-z]{0,31}):((?:[\w!$'()*+,\-.:;=@]|%[\da-f]{2})+)/iu;function m5(e){return typeof e.secure=="boolean"?e.secure:String(e.scheme).toLowerCase()==="wss"}function E5(e){return e.host||(e.error=e.error||"HTTP URIs must have a host."),e}function C5(e){let t=String(e.scheme).toLowerCase()==="https";return(e.port===(t?443:80)||e.port==="")&&(e.port=void 0),e.path||(e.path="/"),e}function U1e(e){return e.secure=m5(e),e.resourceName=(e.path||"/")+(e.query?"?"+e.query:""),e.path=void 0,e.query=void 0,e}function H1e(e){if((e.port===(m5(e)?443:80)||e.port==="")&&(e.port=void 0),typeof e.secure=="boolean"&&(e.scheme=e.secure?"wss":"ws",e.secure=void 0),e.resourceName){let[t,r]=e.resourceName.split("?");e.path=t&&t!=="/"?t:void 0,e.query=r,e.resourceName=void 0}return e.fragment=void 0,e}function q1e(e,t){if(!e.path)return e.error="URN can not be parsed",e;let r=e.path.match(P1e);if(r){let n=t.scheme||e.scheme||"urn";e.nid=r[1].toLowerCase(),e.nss=r[2];let s=`${n}:${t.nid||e.nid}`,i=tQ[s];e.path=void 0,i&&(e=i.parse(e,t))}else e.error=e.error||"URN can not be parsed.";return e}function V1e(e,t){let r=t.scheme||e.scheme||"urn",n=e.nid.toLowerCase(),s=`${r}:${t.nid||n}`,i=tQ[s];i&&(e=i.serialize(e,t));let o=e,a=e.nss;return o.path=`${n||t.nid}:${a}`,t.skipEscape=!0,o}function Y1e(e,t){let r=e;return r.uuid=r.nss,r.nss=void 0,!t.tolerant&&(!r.uuid||!M1e.test(r.uuid))&&(r.error=r.error||"UUID is not valid."),r}function $1e(e){let t=e;return t.nss=(e.uuid||"").toLowerCase(),t}var y5={scheme:"http",domainHost:!0,parse:E5,serialize:C5},G1e={scheme:"https",domainHost:y5.domainHost,parse:E5,serialize:C5},wm={scheme:"ws",domainHost:!0,parse:U1e,serialize:H1e},j1e={scheme:"wss",domainHost:wm.domainHost,parse:wm.parse,serialize:wm.serialize},J1e={scheme:"urn",parse:q1e,serialize:V1e,skipNormalize:!0},W1e={scheme:"urn:uuid",parse:Y1e,serialize:$1e,skipNormalize:!0},tQ={http:y5,https:G1e,ws:wm,wss:j1e,urn:J1e,"urn:uuid":W1e};I5.exports=tQ});var nQ=b((PZe,_m)=>{"use strict";var{normalizeIPv6:z1e,normalizeIPv4:X1e,removeDotSegments:Ud,recomposeAuthority:K1e,normalizeComponentEncoding:Sm}=g5(),B5=b5();function Z1e(e,t){return typeof e=="string"?e=Qi(po(e,t),t):typeof e=="object"&&(e=po(Qi(e,t),t)),e}function eBe(e,t,r){let n=Object.assign({scheme:"null"},r),s=x5(po(e,n),po(t,n),n,!0);return Qi(s,{...n,skipEscape:!0})}function x5(e,t,r,n){let s={};return n||(e=po(Qi(e,r),r),t=po(Qi(t,r),r)),r=r||{},!r.tolerant&&t.scheme?(s.scheme=t.scheme,s.userinfo=t.userinfo,s.host=t.host,s.port=t.port,s.path=Ud(t.path||""),s.query=t.query):(t.userinfo!==void 0||t.host!==void 0||t.port!==void 0?(s.userinfo=t.userinfo,s.host=t.host,s.port=t.port,s.path=Ud(t.path||""),s.query=t.query):(t.path?(t.path.charAt(0)==="/"?s.path=Ud(t.path):((e.userinfo!==void 0||e.host!==void 0||e.port!==void 0)&&!e.path?s.path="/"+t.path:e.path?s.path=e.path.slice(0,e.path.lastIndexOf("/")+1)+t.path:s.path=t.path,s.path=Ud(s.path)),s.query=t.query):(s.path=e.path,t.query!==void 0?s.query=t.query:s.query=e.query),s.userinfo=e.userinfo,s.host=e.host,s.port=e.port),s.scheme=e.scheme),s.fragment=t.fragment,s}function tBe(e,t,r){return typeof e=="string"?(e=unescape(e),e=Qi(Sm(po(e,r),!0),{...r,skipEscape:!0})):typeof e=="object"&&(e=Qi(Sm(e,!0),{...r,skipEscape:!0})),typeof t=="string"?(t=unescape(t),t=Qi(Sm(po(t,r),!0),{...r,skipEscape:!0})):typeof t=="object"&&(t=Qi(Sm(t,!0),{...r,skipEscape:!0})),e.toLowerCase()===t.toLowerCase()}function Qi(e,t){let r={host:e.host,scheme:e.scheme,userinfo:e.userinfo,port:e.port,path:e.path,query:e.query,nid:e.nid,nss:e.nss,uuid:e.uuid,fragment:e.fragment,reference:e.reference,resourceName:e.resourceName,secure:e.secure,error:""},n=Object.assign({},t),s=[],i=B5[(n.scheme||r.scheme||"").toLowerCase()];i&&i.serialize&&i.serialize(r,n),r.path!==void 0&&(n.skipEscape?r.path=unescape(r.path):(r.path=escape(r.path),r.scheme!==void 0&&(r.path=r.path.split("%3A").join(":")))),n.reference!=="suffix"&&r.scheme&&(s.push(r.scheme),s.push(":"));let o=K1e(r,n);if(o!==void 0&&(n.reference!=="suffix"&&s.push("//"),s.push(o),r.path&&r.path.charAt(0)!=="/"&&s.push("/")),r.path!==void 0){let a=r.path;!n.absolutePath&&(!i||!i.absolutePath)&&(a=Ud(a)),o===void 0&&(a=a.replace(/^\/\//u,"/%2F")),s.push(a)}return r.query!==void 0&&(s.push("?"),s.push(r.query)),r.fragment!==void 0&&(s.push("#"),s.push(r.fragment)),s.join("")}var rBe=Array.from({length:127},(e,t)=>/[^!"$&'()*+,\-.;=_`a-z{}~]/u.test(String.fromCharCode(t)));function nBe(e){let t=0;for(let r=0,n=e.length;r126||rBe[t])return!0;return!1}var sBe=/^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;function po(e,t){let r=Object.assign({},t),n={scheme:void 0,userinfo:void 0,host:"",port:void 0,path:"",query:void 0,fragment:void 0},s=e.indexOf("%")!==-1;r.reference==="suffix"&&(e=(r.scheme?r.scheme+":":"")+"//"+e);let i=e.match(sBe);if(i){if(n.scheme=i[1],n.userinfo=i[3],n.host=i[4],n.port=parseInt(i[5],10),n.path=i[6]||"",n.query=i[7],n.fragment=i[8],isNaN(n.port)&&(n.port=i[5]),n.host){let a=X1e(n.host);a.isIPV4===!1?n.host=z1e(a.host,{isIPV4:!1}).host.toLowerCase():n.host=a.host}n.scheme===void 0&&n.userinfo===void 0&&n.host===void 0&&n.port===void 0&&!n.path&&n.query===void 0?n.reference="same-document":n.scheme===void 0?n.reference="relative":n.fragment===void 0?n.reference="absolute":n.reference="uri",r.reference&&r.reference!=="suffix"&&r.reference!==n.reference&&(n.error=n.error||"URI is not a "+r.reference+" reference.");let o=B5[(r.scheme||n.scheme||"").toLowerCase()];if(!r.unicodeSupport&&(!o||!o.unicodeSupport)&&n.host&&(r.domainHost||o&&o.domainHost)&&nBe(n.host))try{n.host=URL.domainToASCII(n.host.toLowerCase())}catch(a){n.error=n.error||"Host's domain name can not be converted to ASCII: "+a}(!o||o&&!o.skipNormalize)&&(s&&n.scheme!==void 0&&(n.scheme=unescape(n.scheme)),s&&n.userinfo!==void 0&&(n.userinfo=unescape(n.userinfo)),s&&n.host!==void 0&&(n.host=unescape(n.host)),n.path!==void 0&&n.path.length&&(n.path=escape(unescape(n.path))),n.fragment!==void 0&&n.fragment.length&&(n.fragment=encodeURI(decodeURI(n.fragment)))),o&&o.parse&&o.parse(n,r)}else n.error=n.error||"URI can not be parsed.";return n}var rQ={normalize:Z1e,resolve:eBe,resolveComponents:x5,equal:tBe,serialize:Qi,parse:po};_m.exports=rQ;_m.exports.default=rQ;_m.exports.fastUri=rQ});var Rm=b(wi=>{"use strict";Object.defineProperty(wi,"__esModule",{value:!0});wi.formatNames=wi.fastFormats=wi.fullFormats=void 0;function Ti(e,t){return{validate:e,compare:t}}wi.fullFormats={date:Ti(w5,aQ),time:Ti(iQ(!0),cQ),"date-time":Ti(v5(!0),_5),"iso-time":Ti(iQ(),S5),"iso-date-time":Ti(v5(),R5),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:lBe,"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,url:/^(?:https?|ftp):\/\/(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)(?:\.(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)*(?:\.(?:[a-z\u{00a1}-\u{ffff}]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/iu,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$/,ipv6:/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i,regex:mBe,uuid:/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,"json-pointer":/^(?:\/(?:[^~/]|~0|~1)*)*$/,"json-pointer-uri-fragment":/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,"relative-json-pointer":/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,byte:ABe,int32:{type:"number",validate:hBe},int64:{type:"number",validate:pBe},float:{type:"number",validate:T5},double:{type:"number",validate:T5},password:!0,binary:!0};wi.fastFormats={...wi.fullFormats,date:Ti(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,aQ),time:Ti(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,cQ),"date-time":Ti(/^\d\d\d\d-[0-1]\d-[0-3]\dt(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,_5),"iso-time":Ti(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,S5),"iso-date-time":Ti(/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,R5),uri:/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i};wi.formatNames=Object.keys(wi.fullFormats);function iBe(e){return e%4===0&&(e%100!==0||e%400===0)}var oBe=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,aBe=[0,31,28,31,30,31,30,31,31,30,31,30,31];function w5(e){let t=oBe.exec(e);if(!t)return!1;let r=+t[1],n=+t[2],s=+t[3];return n>=1&&n<=12&&s>=1&&s<=(n===2&&iBe(r)?29:aBe[n])}function aQ(e,t){if(e&&t)return e>t?1:e23||l>59||e&&!a)return!1;if(s<=23&&i<=59&&o<60)return!0;let A=i-l*c,f=s-u*c-(A<0?1:0);return(f===23||f===-1)&&(A===59||A===-1)&&o<61}}function cQ(e,t){if(!(e&&t))return;let r=new Date("2020-01-01T"+e).valueOf(),n=new Date("2020-01-01T"+t).valueOf();if(r&&n)return r-n}function S5(e,t){if(!(e&&t))return;let r=sQ.exec(e),n=sQ.exec(t);if(r&&n)return e=r[1]+r[2]+r[3],t=n[1]+n[2]+n[3],e>t?1:e=fBe}function pBe(e){return Number.isInteger(e)}function T5(){return!0}var gBe=/[^\\]\\Z/;function mBe(e){if(gBe.test(e))return!1;try{return new RegExp(e),!0}catch{return!1}}});var D5=b(Cl=>{"use strict";Object.defineProperty(Cl,"__esModule",{value:!0});Cl.formatLimitDefinition=void 0;var EBe=Pd(),js=ge(),Ea=js.operators,Dm={formatMaximum:{okStr:"<=",ok:Ea.LTE,fail:Ea.GT},formatMinimum:{okStr:">=",ok:Ea.GTE,fail:Ea.LT},formatExclusiveMaximum:{okStr:"<",ok:Ea.LT,fail:Ea.GTE},formatExclusiveMinimum:{okStr:">",ok:Ea.GT,fail:Ea.LTE}},CBe={message:({keyword:e,schemaCode:t})=>(0,js.str)`should be ${Dm[e].okStr} ${t}`,params:({keyword:e,schemaCode:t})=>(0,js._)`{comparison: ${Dm[e].okStr}, limit: ${t}}`};Cl.formatLimitDefinition={keyword:Object.keys(Dm),type:"string",schemaType:"string",$data:!0,error:CBe,code(e){let{gen:t,data:r,schemaCode:n,keyword:s,it:i}=e,{opts:o,self:a}=i;if(!o.validateFormats)return;let c=new EBe.KeywordCxt(i,a.RULES.all.format.definition,"format");c.$data?u():l();function u(){let f=t.scopeValue("formats",{ref:a.formats,code:o.code.formats}),d=t.const("fmt",(0,js._)`${f}[${c.schemaCode}]`);e.fail$data((0,js.or)((0,js._)`typeof ${d} != "object"`,(0,js._)`${d} instanceof RegExp`,(0,js._)`typeof ${d}.compare != "function"`,A(d)))}function l(){let f=c.schema,d=a.formats[f];if(!d||d===!0)return;if(typeof d!="object"||d instanceof RegExp||typeof d.compare!="function")throw new Error(`"${s}": format "${f}" does not define "compare" function`);let h=t.scopeValue("formats",{key:f,ref:d,code:o.code.formats?(0,js._)`${o.code.formats}${(0,js.getProperty)(f)}`:void 0});e.fail$data(A(h))}function A(f){return(0,js._)`${f}.compare(${r}, ${n}) ${Dm[s].fail} 0`}},dependencies:["format"]};var yBe=e=>(e.addKeyword(Cl.formatLimitDefinition),e);Cl.default=yBe});var L5=b((Hd,F5)=>{"use strict";Object.defineProperty(Hd,"__esModule",{value:!0});var yl=Rm(),IBe=D5(),uQ=ge(),N5=new uQ.Name("fullFormats"),bBe=new uQ.Name("fastFormats"),lQ=(e,t={keywords:!0})=>{if(Array.isArray(t))return k5(e,t,yl.fullFormats,N5),e;let[r,n]=t.mode==="fast"?[yl.fastFormats,bBe]:[yl.fullFormats,N5],s=t.formats||yl.formatNames;return k5(e,s,r,n),t.keywords&&(0,IBe.default)(e),e};lQ.get=(e,t="full")=>{let n=(t==="fast"?yl.fastFormats:yl.fullFormats)[e];if(!n)throw new Error(`Unknown format "${e}"`);return n};function k5(e,t,r,n){var s,i;(s=(i=e.opts.code).formats)!==null&&s!==void 0||(i.formats=(0,uQ._)`require("ajv-formats/dist/formats").${n}`);for(let o of t)e.addFormat(o,r[o])}F5.exports=Hd=lQ;Object.defineProperty(Hd,"__esModule",{value:!0});Hd.default=lQ});var fQ=b((qZe,O5)=>{"use strict";var BBe=Pd(),xBe=nQ(),vBe=L5(),QBe=fg()({proto:!0}),AQ=class e{constructor(t){this.ajv=new BBe({...t,strictSchema:!1,validateSchema:!1,allowUnionTypes:!0,uriResolver:xBe}),vBe(this.ajv),this.ajv.addKeyword({keyword:"fjs_type",type:"object",errors:!1,validate:(r,n)=>n instanceof Date}),this._ajvSchemas={},this._ajvOptions=t||{}}addSchema(t,r){let n=t.$id||r;if(t.$id!==void 0&&t.$id[0]==="#"&&(n=r+t.$id),this.ajv.refs[n]===void 0&&this.ajv.schemas[n]===void 0){let s=QBe(t);this.convertSchemaToAjvFormat(s),this.ajv.addSchema(s,n),this._ajvSchemas[n]=t}}validate(t,r){return this.ajv.validate(t,r)}convertSchemaToAjvFormat(t){if(t!==null){t.type==="string"?(t.fjs_type="string",t.type=["string","object"]):Array.isArray(t.type)&&t.type.includes("string")&&!t.type.includes("object")&&(t.fjs_type="string",t.type.push("object"));for(let r in t)typeof t[r]=="object"&&this.convertSchemaToAjvFormat(t[r])}}getState(){return{ajvOptions:this._ajvOptions,ajvSchemas:this._ajvSchemas}}static restoreFromState(t){let r=new e(t.ajvOptions);for(let[n,s]of Object.entries(t.ajvSchemas))r.ajv.addSchema(s,n);return r}};O5.exports=AQ});var P5=b((VZe,M5)=>{"use strict";var dQ=class e{constructor(t,r,n="#"){this.schema=t,this.schemaId=r,this.jsonPointer=n}getPropertyLocation(t){return new e(this.schema[t],this.schemaId,this.jsonPointer+"/"+t)}getSchemaRef(){return this.schemaId+this.jsonPointer}};M5.exports=dQ});var Y5=b((YZe,pQ)=>{"use strict";pQ.exports=re;pQ.exports.default=re;var TBe={$schema:"http://json-schema.org/draft-07/schema#",$id:"http://json-schema.org/draft-07/schema#",title:"Core schema meta-schema",definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:!0,default:[]}},type:["object","boolean"],properties:{$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:!0,readOnly:{type:"boolean",default:!1},examples:{type:"array",items:!0},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:!0},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:!1},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:!0,enum:{type:"array",items:!0,minItems:1,uniqueItems:!0},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:!0}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},default:!0},U5={enum:["array","boolean","integer","null","number","object","string"]},H5=/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,wBe=Rm().fullFormats.uri,q5=Rm().fullFormats.regex;function gs(e,{instancePath:t="",parentData:r,parentDataProperty:n,rootData:s=e}={}){let i=null,o=0,a=o;return typeof e=="number"&&!(e%1)&&!isNaN(e)&&isFinite(e)?o===a&&typeof e=="number"&&isFinite(e)&&(e<0||isNaN(e))?(gs.errors=[{instancePath:t,schemaPath:"#/definitions/nonNegativeInteger/minimum",keyword:"minimum",params:{comparison:">=",limit:0},message:"must be >= 0"}],!1):(gs.errors=i,o===0):(gs.errors=[{instancePath:t,schemaPath:"#/definitions/nonNegativeInteger/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1)}var hQ={validate:re};function cn(e,{instancePath:t="",parentData:r,parentDataProperty:n,rootData:s=e}={}){let i=null,o=0;if(o===0)if(Array.isArray(e)){if(e.length<1)return cn.errors=[{instancePath:t,schemaPath:"#/minItems",keyword:"minItems",params:{limit:1},message:"must NOT have fewer than 1 items"}],!1;{var a=!0;let c=e.length;for(let u=0;u",limit:0},message:"must be > 0"}],!1}else return re.errors=[{instancePath:t+"/multipleOf",schemaPath:"#/properties/multipleOf/type",keyword:"type",params:{type:"number"},message:"must be number"}],!1;var a=E===o}else var a=!0;if(a){if(e.maximum!==void 0){let y=e.maximum,E=o;if(!(typeof y=="number"&&isFinite(y)))return re.errors=[{instancePath:t+"/maximum",schemaPath:"#/properties/maximum/type",keyword:"type",params:{type:"number"},message:"must be number"}],!1;var a=E===o}else var a=!0;if(a){if(e.exclusiveMaximum!==void 0){let y=e.exclusiveMaximum,E=o;if(!(typeof y=="number"&&isFinite(y)))return re.errors=[{instancePath:t+"/exclusiveMaximum",schemaPath:"#/properties/exclusiveMaximum/type",keyword:"type",params:{type:"number"},message:"must be number"}],!1;var a=E===o}else var a=!0;if(a){if(e.minimum!==void 0){let y=e.minimum,E=o;if(!(typeof y=="number"&&isFinite(y)))return re.errors=[{instancePath:t+"/minimum",schemaPath:"#/properties/minimum/type",keyword:"type",params:{type:"number"},message:"must be number"}],!1;var a=E===o}else var a=!0;if(a){if(e.exclusiveMinimum!==void 0){let y=e.exclusiveMinimum,E=o;if(!(typeof y=="number"&&isFinite(y)))return re.errors=[{instancePath:t+"/exclusiveMinimum",schemaPath:"#/properties/exclusiveMinimum/type",keyword:"type",params:{type:"number"},message:"must be number"}],!1;var a=E===o}else var a=!0;if(a){if(e.maxLength!==void 0){let y=e.maxLength,E=o,B=o;if(!(typeof y=="number"&&!(y%1)&&!isNaN(y)&&isFinite(y)))return re.errors=[{instancePath:t+"/maxLength",schemaPath:"#/definitions/nonNegativeInteger/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;if(o===B&&typeof y=="number"&&isFinite(y)&&(y<0||isNaN(y)))return re.errors=[{instancePath:t+"/maxLength",schemaPath:"#/definitions/nonNegativeInteger/minimum",keyword:"minimum",params:{comparison:">=",limit:0},message:"must be >= 0"}],!1;var a=E===o}else var a=!0;if(a){if(e.minLength!==void 0){let y=o;gs(e.minLength,{instancePath:t+"/minLength",parentData:e,parentDataProperty:"minLength",rootData:s})||(i=i===null?gs.errors:i.concat(gs.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.pattern!==void 0){let y=e.pattern,E=o;if(o===E&&o===E)if(typeof y=="string"){if(!q5(y))return re.errors=[{instancePath:t+"/pattern",schemaPath:"#/properties/pattern/format",keyword:"format",params:{format:"regex"},message:'must match format "regex"'}],!1}else return re.errors=[{instancePath:t+"/pattern",schemaPath:"#/properties/pattern/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;var a=E===o}else var a=!0;if(a){if(e.additionalItems!==void 0){let y=o;re(e.additionalItems,{instancePath:t+"/additionalItems",parentData:e,parentDataProperty:"additionalItems",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.items!==void 0){let y=e.items,E=o,B=o,v=!1,x=o;re(y,{instancePath:t+"/items",parentData:e,parentDataProperty:"items",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var c=x===o;if(v=v||c,!v){let S=o;cn(y,{instancePath:t+"/items",parentData:e,parentDataProperty:"items",rootData:s})||(i=i===null?cn.errors:i.concat(cn.errors),o=i.length);var c=S===o;v=v||c}if(v)o=B,i!==null&&(B?i.length=B:i=null);else{let S={instancePath:t+"/items",schemaPath:"#/properties/items/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};return i===null?i=[S]:i.push(S),o++,re.errors=i,!1}var a=E===o}else var a=!0;if(a){if(e.maxItems!==void 0){let y=e.maxItems,E=o,B=o;if(!(typeof y=="number"&&!(y%1)&&!isNaN(y)&&isFinite(y)))return re.errors=[{instancePath:t+"/maxItems",schemaPath:"#/definitions/nonNegativeInteger/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;if(o===B&&typeof y=="number"&&isFinite(y)&&(y<0||isNaN(y)))return re.errors=[{instancePath:t+"/maxItems",schemaPath:"#/definitions/nonNegativeInteger/minimum",keyword:"minimum",params:{comparison:">=",limit:0},message:"must be >= 0"}],!1;var a=E===o}else var a=!0;if(a){if(e.minItems!==void 0){let y=o;gs(e.minItems,{instancePath:t+"/minItems",parentData:e,parentDataProperty:"minItems",rootData:s})||(i=i===null?gs.errors:i.concat(gs.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.uniqueItems!==void 0){let y=o;if(typeof e.uniqueItems!="boolean")return re.errors=[{instancePath:t+"/uniqueItems",schemaPath:"#/properties/uniqueItems/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;var a=y===o}else var a=!0;if(a){if(e.contains!==void 0){let y=o;re(e.contains,{instancePath:t+"/contains",parentData:e,parentDataProperty:"contains",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.maxProperties!==void 0){let y=e.maxProperties,E=o,B=o;if(!(typeof y=="number"&&!(y%1)&&!isNaN(y)&&isFinite(y)))return re.errors=[{instancePath:t+"/maxProperties",schemaPath:"#/definitions/nonNegativeInteger/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;if(o===B&&typeof y=="number"&&isFinite(y)&&(y<0||isNaN(y)))return re.errors=[{instancePath:t+"/maxProperties",schemaPath:"#/definitions/nonNegativeInteger/minimum",keyword:"minimum",params:{comparison:">=",limit:0},message:"must be >= 0"}],!1;var a=E===o}else var a=!0;if(a){if(e.minProperties!==void 0){let y=o;gs(e.minProperties,{instancePath:t+"/minProperties",parentData:e,parentDataProperty:"minProperties",rootData:s})||(i=i===null?gs.errors:i.concat(gs.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.required!==void 0){let y=e.required,E=o;if(o===o)if(Array.isArray(y)){var u=!0;let x=y.length;for(let Q=0;Q1){let T={};for(;Q--;){let R=y[Q];if(typeof R=="string"){if(typeof T[R]=="number"){return S=T[R],re.errors=[{instancePath:t+"/required",schemaPath:"#/definitions/stringArray/uniqueItems",keyword:"uniqueItems",params:{i:Q,j:S},message:"must NOT have duplicate items (items ## "+S+" and "+Q+" are identical)"}],!1;break}T[R]=Q}}}}}else return re.errors=[{instancePath:t+"/required",schemaPath:"#/definitions/stringArray/type",keyword:"type",params:{type:"array"},message:"must be array"}],!1;var a=E===o}else var a=!0;if(a){if(e.additionalProperties!==void 0){let y=o;re(e.additionalProperties,{instancePath:t+"/additionalProperties",parentData:e,parentDataProperty:"additionalProperties",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.definitions!==void 0){let y=e.definitions,E=o;if(o===E)if(y&&typeof y=="object"&&!Array.isArray(y))for(let v in y){let x=o;re(y[v],{instancePath:t+"/definitions/"+v.replace(/~/g,"~0").replace(/\//g,"~1"),parentData:y,parentDataProperty:v,rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var l=x===o;if(!l)break}else return re.errors=[{instancePath:t+"/definitions",schemaPath:"#/properties/definitions/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var a=E===o}else var a=!0;if(a){if(e.properties!==void 0){let y=e.properties,E=o;if(o===E)if(y&&typeof y=="object"&&!Array.isArray(y))for(let v in y){let x=o;re(y[v],{instancePath:t+"/properties/"+v.replace(/~/g,"~0").replace(/\//g,"~1"),parentData:y,parentDataProperty:v,rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var A=x===o;if(!A)break}else return re.errors=[{instancePath:t+"/properties",schemaPath:"#/properties/properties/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var a=E===o}else var a=!0;if(a){if(e.patternProperties!==void 0){let y=e.patternProperties,E=o;if(o===E)if(y&&typeof y=="object"&&!Array.isArray(y)){for(let v in y){let x=o;if(o===x&&typeof v=="string"&&!q5(v)){let Q={instancePath:t+"/patternProperties",schemaPath:"#/properties/patternProperties/propertyNames/format",keyword:"format",params:{format:"regex"},message:'must match format "regex"',propertyName:v};i===null?i=[Q]:i.push(Q),o++}var f=x===o;if(!f){let Q={instancePath:t+"/patternProperties",schemaPath:"#/properties/patternProperties/propertyNames",keyword:"propertyNames",params:{propertyName:v},message:"property name must be valid"};return i===null?i=[Q]:i.push(Q),o++,re.errors=i,!1;break}}if(f)for(let v in y){let x=o;re(y[v],{instancePath:t+"/patternProperties/"+v.replace(/~/g,"~0").replace(/\//g,"~1"),parentData:y,parentDataProperty:v,rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var d=x===o;if(!d)break}}else return re.errors=[{instancePath:t+"/patternProperties",schemaPath:"#/properties/patternProperties/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var a=E===o}else var a=!0;if(a){if(e.dependencies!==void 0){let y=e.dependencies,E=o;if(o===E)if(y&&typeof y=="object"&&!Array.isArray(y))for(let v in y){let x=y[v],Q=o,S=o,T=!1,R=o;re(x,{instancePath:t+"/dependencies/"+v.replace(/~/g,"~0").replace(/\//g,"~1"),parentData:y,parentDataProperty:v,rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var h=R===o;if(T=T||h,!T){let D=o;if(o===o)if(Array.isArray(x)){var p=!0;let j=x.length;for(let H=0;H1){let X={};for(;H--;){let L=x[H];if(typeof L=="string"){if(typeof X[L]=="number"){U=X[L];let Y={instancePath:t+"/dependencies/"+v.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/definitions/stringArray/uniqueItems",keyword:"uniqueItems",params:{i:H,j:U},message:"must NOT have duplicate items (items ## "+U+" and "+H+" are identical)"};i===null?i=[Y]:i.push(Y),o++;break}X[L]=H}}}}}else{let j={instancePath:t+"/dependencies/"+v.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/definitions/stringArray/type",keyword:"type",params:{type:"array"},message:"must be array"};i===null?i=[j]:i.push(j),o++}var h=D===o;T=T||h}if(T)o=S,i!==null&&(S?i.length=S:i=null);else{let D={instancePath:t+"/dependencies/"+v.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/dependencies/additionalProperties/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};return i===null?i=[D]:i.push(D),o++,re.errors=i,!1}var C=Q===o;if(!C)break}else return re.errors=[{instancePath:t+"/dependencies",schemaPath:"#/properties/dependencies/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var a=E===o}else var a=!0;if(a){if(e.propertyNames!==void 0){let y=o;re(e.propertyNames,{instancePath:t+"/propertyNames",parentData:e,parentDataProperty:"propertyNames",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.enum!==void 0){let y=e.enum,E=o;if(o===E)if(Array.isArray(y)){if(y.length<1)return re.errors=[{instancePath:t+"/enum",schemaPath:"#/properties/enum/minItems",keyword:"minItems",params:{limit:1},message:"must NOT have fewer than 1 items"}],!1;{let v=y.length,x;if(v>1){e:for(;v--;)for(x=v;x--;)if(V5(y[v],y[x])){return re.errors=[{instancePath:t+"/enum",schemaPath:"#/properties/enum/uniqueItems",keyword:"uniqueItems",params:{i:v,j:x},message:"must NOT have duplicate items (items ## "+x+" and "+v+" are identical)"}],!1;break e}}}}else return re.errors=[{instancePath:t+"/enum",schemaPath:"#/properties/enum/type",keyword:"type",params:{type:"array"},message:"must be array"}],!1;var a=E===o}else var a=!0;if(a){if(e.type!==void 0){let y=e.type,E=o,B=o,v=!1,x=o;if(!(y==="array"||y==="boolean"||y==="integer"||y==="null"||y==="number"||y==="object"||y==="string")){let S={instancePath:t+"/type",schemaPath:"#/definitions/simpleTypes/enum",keyword:"enum",params:{allowedValues:U5.enum},message:"must be equal to one of the allowed values"};i===null?i=[S]:i.push(S),o++}var m=x===o;if(v=v||m,!v){let S=o;if(o===S)if(Array.isArray(y))if(y.length<1){let R={instancePath:t+"/type",schemaPath:"#/properties/type/anyOf/1/minItems",keyword:"minItems",params:{limit:1},message:"must NOT have fewer than 1 items"};i===null?i=[R]:i.push(R),o++}else{var I=!0;let R=y.length;for(let D=0;D1){e:for(;D--;)for(k=D;k--;)if(V5(y[D],y[k])){let F={instancePath:t+"/type",schemaPath:"#/properties/type/anyOf/1/uniqueItems",keyword:"uniqueItems",params:{i:D,j:k},message:"must NOT have duplicate items (items ## "+k+" and "+D+" are identical)"};i===null?i=[F]:i.push(F),o++;break e}}}}else{let R={instancePath:t+"/type",schemaPath:"#/properties/type/anyOf/1/type",keyword:"type",params:{type:"array"},message:"must be array"};i===null?i=[R]:i.push(R),o++}var m=S===o;v=v||m}if(v)o=B,i!==null&&(B?i.length=B:i=null);else{let S={instancePath:t+"/type",schemaPath:"#/properties/type/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};return i===null?i=[S]:i.push(S),o++,re.errors=i,!1}var a=E===o}else var a=!0;if(a){if(e.format!==void 0){let y=o;if(typeof e.format!="string")return re.errors=[{instancePath:t+"/format",schemaPath:"#/properties/format/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;var a=y===o}else var a=!0;if(a){if(e.contentMediaType!==void 0){let y=o;if(typeof e.contentMediaType!="string")return re.errors=[{instancePath:t+"/contentMediaType",schemaPath:"#/properties/contentMediaType/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;var a=y===o}else var a=!0;if(a){if(e.contentEncoding!==void 0){let y=o;if(typeof e.contentEncoding!="string")return re.errors=[{instancePath:t+"/contentEncoding",schemaPath:"#/properties/contentEncoding/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;var a=y===o}else var a=!0;if(a){if(e.if!==void 0){let y=o;re(e.if,{instancePath:t+"/if",parentData:e,parentDataProperty:"if",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.then!==void 0){let y=o;re(e.then,{instancePath:t+"/then",parentData:e,parentDataProperty:"then",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.else!==void 0){let y=o;re(e.else,{instancePath:t+"/else",parentData:e,parentDataProperty:"else",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.allOf!==void 0){let y=o;cn(e.allOf,{instancePath:t+"/allOf",parentData:e,parentDataProperty:"allOf",rootData:s})||(i=i===null?cn.errors:i.concat(cn.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.anyOf!==void 0){let y=o;cn(e.anyOf,{instancePath:t+"/anyOf",parentData:e,parentDataProperty:"anyOf",rootData:s})||(i=i===null?cn.errors:i.concat(cn.errors),o=i.length);var a=y===o}else var a=!0;if(a){if(e.oneOf!==void 0){let y=o;cn(e.oneOf,{instancePath:t+"/oneOf",parentData:e,parentDataProperty:"oneOf",rootData:s})||(i=i===null?cn.errors:i.concat(cn.errors),o=i.length);var a=y===o}else var a=!0;if(a)if(e.not!==void 0){let y=o;re(e.not,{instancePath:t+"/not",parentData:e,parentDataProperty:"not",rootData:s})||(i=i===null?re.errors:i.concat(re.errors),o=i.length);var a=y===o}else var a=!0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}return re.errors=i,o===0}});var CQ=b(($Ze,$5)=>{"use strict";var gQ=class extends Error{constructor(t,r){super(),this.name="JsonSchemaMergeError",this.code="JSON_SCHEMA_MERGE_ERROR",this.message=`Failed to merge "${t}" keyword schemas.`,this.schemas=r}},mQ=class extends Error{constructor(t,r){super(),this.name="JsonSchemaMergeError",this.code="JSON_SCHEMA_MERGE_ERROR",this.message=`Resolver for "${t}" keyword not found.`,this.schemas=r}},EQ=class extends Error{constructor(t){super(),this.name="JsonSchemaMergeError",this.code="JSON_SCHEMA_MERGE_ERROR",this.message=`Invalid "onConflict" option: "${t}".`}};$5.exports={MergeError:gQ,ResolverNotFoundError:mQ,InvalidOnConflictOptionError:EQ}});var J5=b((GZe,j5)=>{"use strict";var SBe=la(),{MergeError:yQ}=CQ();function G5(e){let t=e[0];for(let r=1;re[r].includes(n));return t}function _Be(e,t,r){let n=G5(t);if(n.length===0)throw new yQ(e,t);r[e]=n}function RBe(e,t,r){for(let s=0;sc?n(c,a%c):a,s=(a,c)=>a*c/n(a,c),i=1;for(let a of t)for(;a*i%1!==0;)i*=10;let o=t[0]*i;for(let a of t)o=s(o,a*i);r[e]=o/i}function LBe(e,t,r){let n=t[0];for(let s=1;s{"use strict";var UBe=la(),Mt=J5(),Fm=CQ(),X5={$id:Mt.skip,type:Mt.hybridArraysIntersection,enum:Mt.arraysIntersection,minLength:Mt.maxNumber,maxLength:Mt.minNumber,minimum:Mt.maxNumber,maximum:Mt.minNumber,multipleOf:Mt.commonMultiple,exclusiveMinimum:Mt.maxNumber,exclusiveMaximum:Mt.minNumber,minItems:Mt.maxNumber,maxItems:Mt.minNumber,maxProperties:Mt.minNumber,minProperties:Mt.maxNumber,const:Mt.allEqual,default:Mt.allEqual,format:Mt.allEqual,required:Mt.arraysUnion,properties:GBe,patternProperties:km,additionalProperties:Nm,items:VBe,additionalItems:YBe,definitions:km,$defs:km,nullable:Mt.booleanAnd,oneOf:W5,anyOf:W5,allOf:Mt.arraysUnion,not:Nm,if:jBe,then:Mt.skip,else:Mt.skip,dependencies:z5,dependentRequired:z5,dependentSchemas:km,propertyNames:Nm,uniqueItems:Mt.booleanOr,contains:Nm};function Nm(e,t,r,n,s){r[e]=Js(t,s)}function HBe(e){let t=[[]];for(let r of e){let n=[];for(let s of t)for(let i of r)n.push([...s,i]);t=n}return t}function W5(e,t,r,n,s){if(t.length===1){r[e]=t[0];return}let i=HBe(t),o=[];for(let a of i)try{let c=Js(a,s);c!==void 0&&o.push(c)}catch(c){if(c instanceof Fm.MergeError)continue;throw c}r[e]=o}function qBe(e,t){let{items:r,additionalItems:n}=e;return Array.isArray(r)?t{"use strict";var{mergeSchemas:WBe}=eU();function zBe(e){return WBe(e,{onConflict:"skip"})}tU.exports=zBe});var nU=b((WZe,IQ)=>{"use strict";function XBe(e,t,r,n){let s="";t.validatorSchemasIds.size>0?(s+=`const Validator = require('fast-json-stringify/lib/validator') +`,s+=`const validatorState = ${JSON.stringify(n.getState())} +`,s+=`const validator = Validator.restoreFromState(validatorState) +`):s+=`const validator = null +`;let{schema:i,...o}=r.getState();return` + 'use strict' + + const Serializer = require('fast-json-stringify/lib/serializer') + const serializerState = ${JSON.stringify(o)} + const serializer = Serializer.restoreFromState(serializerState) + + ${s} + + module.exports = ${e.toString()}(validator, serializer)`}IQ.exports=XBe;IQ.exports.dependencies={Serializer:gg(),Validator:fQ()}});var fU=b((zZe,Il)=>{"use strict";var{RefResolver:KBe}=DM(),ZBe=gg(),exe=fQ(),Mc=P5(),sU=Y5(),txe=rU(),rxe=/'/g,Lm=2e4,oU="default",nxe=["floor","ceil","round","trunc"],aU=["default","json-stringify"],qd=0;function bQ(e,t){if(!sU(e)){t?t=`"${t}" `:t="";let r=sU.errors[0],n=new Error(`${t}schema is invalid: data${r.instancePath} ${r.message}`);throw n.errors=bQ.errors,n}}function Vd(e,t){let r=t.schema.$ref,n=r.indexOf("#");n===-1&&(n=r.length);let s=r.slice(0,n)||t.schemaId,i=r.slice(n)||"#",o=e.refResolver.getSchema(s,i);if(o===null)throw new Error(`Cannot find reference "${r}"`);let a=new Mc(o,s,i);return o.$ref!==void 0?Vd(e,a):a}function Om(e,t){let r=e.refResolver.getSchema(t,"#");return new Mc(r,t,"#")}function iU(e,t){return e.$id&&e.$id.charAt(0)!=="#"?e.$id:t}function BQ(e,t){bQ(e),t=t||{};let r={functions:[],functionsCounter:0,functionsNamesBySchema:new Map,options:t,refResolver:new KBe,rootSchemaId:e.$id||`__fjs_root_${qd++}`,validatorSchemasIds:new Set,mergedSchemasIds:new Map},n=iU(e,r.rootSchemaId);if(r.refResolver.hasSchema(n)||r.refResolver.addSchema(e,r.rootSchemaId),t.schema)for(let l in t.schema){let A=t.schema[l],f=iU(A,l);r.refResolver.hasSchema(f)||(bQ(A,l),r.refResolver.addSchema(A,l))}if(t.rounding&&!nxe.includes(t.rounding))throw new Error(`Unsupported integer rounding method ${t.rounding}`);if(t.largeArrayMechanism)if(aU.includes(t.largeArrayMechanism))oU=t.largeArrayMechanism;else throw new Error(`Unsupported large array mechanism ${t.largeArrayMechanism}`);if(t.largeArraySize)if(typeof t.largeArraySize=="string"&&Number.isFinite(Number.parseInt(t.largeArraySize,10)))Lm=Number.parseInt(t.largeArraySize,10);else if(typeof t.largeArraySize=="number"&&Number.isInteger(t.largeArraySize))Lm=t.largeArraySize;else if(typeof t.largeArraySize=="bigint")Lm=Number(t.largeArraySize);else throw new Error(`Unsupported large array size. Expected integer-like, got ${typeof t.largeArraySize} with value ${t.largeArraySize}`);let s=new Mc(e,r.rootSchemaId),i=Hn(r,s,"input"),o=` + const JSON_STR_BEGIN_OBJECT = '{' + const JSON_STR_END_OBJECT = '}' + const JSON_STR_BEGIN_ARRAY = '[' + const JSON_STR_END_ARRAY = ']' + const JSON_STR_COMMA = ',' + const JSON_STR_COLONS = ':' + const JSON_STR_QUOTE = '"' + const JSON_STR_EMPTY_OBJECT = JSON_STR_BEGIN_OBJECT + JSON_STR_END_OBJECT + const JSON_STR_EMPTY_ARRAY = JSON_STR_BEGIN_ARRAY + JSON_STR_END_ARRAY + const JSON_STR_EMPTY_STRING = JSON_STR_QUOTE + JSON_STR_QUOTE + const JSON_STR_NULL = 'null' + `;i==="json += anonymous0(input)"?o+=` + ${r.functions.join(` +`)} + const main = anonymous0 + return main + `:o+=` + function main (input) { + let json = '' + ${i} + return json + } + ${r.functions.join(` +`)} + return main + `;let a=new ZBe(t),c=new exe(t.ajv);for(let l of r.validatorSchemasIds){let A=r.refResolver.getSchema(l);c.addSchema(A,l);let f=r.refResolver.getSchemaDependencies(l);for(let[d,h]of Object.entries(f))c.addSchema(h,d)}if(t.debugMode&&(t.mode="debug"),t.mode==="debug")return{validator:c,serializer:a,code:`validator +serializer +${o}`,ajv:c.ajv};let u=new Function("validator","serializer",o);return t.mode==="standalone"?nU()(u,r,a,c):u(c,a)}var sxe=["properties","required","additionalProperties","patternProperties","maxProperties","minProperties","dependencies"],ixe=["items","additionalItems","maxItems","minItems","uniqueItems","contains"],oxe=["maxLength","minLength","pattern"],axe=["multipleOf","maximum","exclusiveMaximum","minimum","exclusiveMinimum"];function cxe(e){for(var t of sxe)if(t in e)return"object";for(var t of ixe)if(t in e)return"array";for(var t of oxe)if(t in e)return"string";for(var t of axe)if(t in e)return"number";return e.type}function uxe(e,t,r){let n=t.schema,s=Object.keys(n.properties||{}),i=` + const propertiesKeys = ${JSON.stringify(s)} + for (const [key, value] of Object.entries(obj)) { + if ( + propertiesKeys.includes(key) || + value === undefined || + typeof value === 'function' || + typeof value === 'symbol' + ) continue + `,o=t.getPropertyLocation("patternProperties"),a=o.schema;if(a!==void 0)for(let l in a){let A=o.getPropertyLocation(l);i+=` + if (/${l.replace(/\\*\//g,"\\/")}/.test(key)) { + ${r} + json += serializer.asString(key) + JSON_STR_COLONS + ${Hn(e,A,"value")} + continue + } + `}let u=t.getPropertyLocation("additionalProperties").schema;if(u!==void 0)if(u===!0)i+=` + ${r} + json += serializer.asString(key) + JSON_STR_COLONS + JSON.stringify(value) + `;else{let l=t.getPropertyLocation("additionalProperties");i+=` + ${r} + json += serializer.asString(key) + JSON_STR_COLONS + ${Hn(e,l,"value")} + `}return i+=` + } + `,i}function lxe(e,t){let r=t.schema,n=t.getPropertyLocation("properties"),s=r.required||[],i=Object.keys(r.properties||{}).sort((u,l)=>{let A=s.includes(u),f=s.includes(l);return A===f?0:A?-1:1}),o=s.includes(i[0]),a=`let value +`;for(let u of s)if(!i.includes(u)){let l=JSON.stringify(u);a+=`if (obj[${l}] === undefined) throw new Error('${l.replace(/'/g,"\\'")} is required!') +`}a+=`let json = JSON_STR_BEGIN_OBJECT +`;let c="";o||(a+=`let addComma = false +`,c="!addComma && (addComma = true) || (json += JSON_STR_COMMA)");for(let u of i){let l=n.getPropertyLocation(u);l.schema.$ref&&(l=Vd(e,l));let A=JSON.stringify(u),f=l.schema.default,d=s.includes(u);a+=` + value = obj[${A}] + if (value !== undefined) { + ${c} + json += ${JSON.stringify(A+":")} + ${Hn(e,l,"value")} + }`,f!==void 0?a+=` else { + ${c} + json += ${JSON.stringify(A+":"+JSON.stringify(f))} + } + `:d?a+=` else { + throw new Error('${A.replace(/'/g,"\\'")} is required!') + } + `:a+=` +`,o&&(c="json += ','")}return(r.patternProperties||r.additionalProperties)&&(a+=uxe(e,t,c)),a+=` + return json + JSON_STR_END_OBJECT + `,a}function Mm(e,t,r){for(let o=0;o ${s.length}) { + throw new Error(\`Item at ${s.length} does not match schema definition.\`) + } + `),oU==="json-stringify"&&(a+=`if (arrayLength >= ${Lm}) return JSON.stringify(obj) +`),a+=` + const arrayEnd = arrayLength - 1 + let value + let json = '' + `,Array.isArray(s)){for(let u=0;uuU(s,t)).join(" || ")})`)}return r}function lU(e){return"anonymous"+e.functionsCounter++}function hxe(e,t,r){let s=t.schema.type.sort(a=>a==="null"?-1:1),i="";s.forEach((a,c)=>{t.schema={...t.schema,type:a};let u=AU(e,t,r),l=c===0?"if":"else if";switch(a){case"null":i+=` + ${l} (${r} === null) + ${u} + `;break;case"string":{i+=` + ${l}( + typeof ${r} === "string" || + ${r} === null || + ${r} instanceof Date || + ${r} instanceof RegExp || + ( + typeof ${r} === "object" && + typeof ${r}.toString === "function" && + ${r}.toString !== Object.prototype.toString + ) + ) + ${u} + `;break}case"array":{i+=` + ${l}(Array.isArray(${r})) + ${u} + `;break}case"integer":{i+=` + ${l}(Number.isInteger(${r}) || ${r} === null) + ${u} + `;break}default:{i+=` + ${l}(typeof ${r} === "${a}" || ${r} === null) + ${u} + `;break}}});let o=t.getSchemaRef();return o.startsWith(e.rootSchemaId)&&(o=o.replace(e.rootSchemaId,"")),i+=` + else throw new TypeError(\`The value of '${o}' does not match schema definition.\`) + `,i}function AU(e,t,r){let n=t.schema;switch(n.type){case"null":return"json += JSON_STR_NULL";case"string":return n.format==="date-time"?`json += serializer.asDateTime(${r})`:n.format==="date"?`json += serializer.asDate(${r})`:n.format==="time"?`json += serializer.asTime(${r})`:n.format==="unsafe"?`json += serializer.asUnsafeString(${r})`:` + if (typeof ${r} !== 'string') { + if (${r} === null) { + json += JSON_STR_EMPTY_STRING + } else if (${r} instanceof Date) { + json += JSON_STR_QUOTE + ${r}.toISOString() + JSON_STR_QUOTE + } else if (${r} instanceof RegExp) { + json += serializer.asString(${r}.source) + } else { + json += serializer.asString(${r}.toString()) + } + } else { + json += serializer.asString(${r}) + } + `;case"integer":return`json += serializer.asInteger(${r})`;case"number":return`json += serializer.asNumber(${r})`;case"boolean":return`json += serializer.asBoolean(${r})`;case"object":return`json += ${fxe(e,t)}(${r})`;case"array":return`json += ${dxe(e,t)}(${r})`;case void 0:return`json += JSON.stringify(${r})`;default:throw new Error(`${n.type} unsupported`)}}function pxe(e,t){let r=e.schema,n=r.type,s=Array.isArray(n)&&n.includes("null"),i="";return s&&(i+=` + if (${t} === null) { + json += JSON_STR_NULL + } else { + `),i+=`json += '${JSON.stringify(r.const).replace(rxe,"\\'")}'`,s&&(i+=` + } + `),i}function gxe(e,t,r){let n=t.schema,s=e.mergedSchemasIds.get(n);if(s){let l=Om(e,s);return Hn(e,l,r)}s=`__fjs_merged_${qd++}`,e.mergedSchemasIds.set(n,s);let{allOf:i,...o}=t.schema,a=[new Mc(o,t.schemaId,t.jsonPointer)],c=t.getPropertyLocation("allOf");for(let l=0;l{"use strict";var Cxe=vQ();function dU(e={readMode:!0}){if(e.readMode===!0&&typeof e.restoreFunction!="function")throw new Error("You must provide a function for the restoreFunction-option when readMode ON");if(e.readMode!==!0&&typeof e.storeFunction!="function")throw new Error("You must provide a function for the storeFunction-option when readMode OFF");if(e.readMode===!0)return function(){return function(n){return e.restoreFunction(n)}};let t=Cxe();return function(n,s={}){s.mode="standalone";let i=t(n,s);return function(o){let a=i(o);return e.storeFunction(o,a),new Function(a)}}}xQ.exports=dU;xQ.exports.default=dU});var vQ=b((KZe,Yd)=>{"use strict";var yxe=fU();function QQ(){return function(t,r){let n=Object.assign({},r,{schema:t});return Ixe.bind(null,n)}}function Ixe(e,{schema:t}){return e.schema&&t.$id&&e.schema[t.$id]&&(e.schema={...e.schema},delete e.schema[t.$id]),yxe(t,e)}Yd.exports=QQ;Yd.exports.default=QQ;Yd.exports.SerializerSelector=QQ;Yd.exports.StandaloneSerializer=hU()});var go=b($d=>{"use strict";Object.defineProperty($d,"__esModule",{value:!0});$d.checkMetadata=void 0;var bxe=Pe(),Bxe={keyword:"metadata",schemaType:"object",code(e){pU(e);let{gen:t,schema:r,it:n}=e;if((0,bxe.alwaysValidSchema)(n,r))return;let s=t.name("valid");e.subschema({keyword:"metadata",jtdMetadata:!0},s),e.ok(s)}};function pU({it:e,keyword:t},r){if(e.jtdMetadata!==r)throw new Error(`JTD: "${t}" cannot be used in this schema location`)}$d.checkMetadata=pU;$d.default=Bxe});var Pm=b(jd=>{"use strict";Object.defineProperty(jd,"__esModule",{value:!0});jd.hasRef=void 0;var gU=kc(),Gd=ge(),xxe=fo(),mU=ds(),EU=lv(),vxe=go(),Qxe={keyword:"ref",schemaType:"string",code(e){(0,vxe.checkMetadata)(e);let{gen:t,data:r,schema:n,parentSchema:s,it:i}=e,{schemaEnv:{root:o}}=i,a=t.name("valid");s.nullable?(t.var(a,(0,Gd._)`${r} === null`),t.if((0,Gd.not)(a),c)):(t.var(a,!1),c()),e.ok(a);function c(){var A;let f=(A=o.schema.definitions)===null||A===void 0?void 0:A[n];if(!f)throw new xxe.default(i.opts.uriResolver,"",n,`No definition ${n}`);TQ(f)||!i.opts.inlineRefs?u(f):l(f)}function u(A){let f=gU.compileSchema.call(i.self,new gU.SchemaEnv({schema:A,root:o,schemaPath:`/definitions/${n}`})),d=(0,EU.getValidate)(e,f),h=t.const("_errs",mU.default.errors);(0,EU.callRef)(e,d,f,f.$async),t.assign(a,(0,Gd._)`${h} === ${mU.default.errors}`)}function l(A){let f=t.scopeValue("schema",i.opts.code.source===!0?{ref:A,code:(0,Gd.stringify)(A)}:{ref:A});e.subschema({schema:A,dataTypes:[],schemaPath:Gd.nil,topSchemaRef:f,errSchemaPath:`/definitions/${n}`},a)}}};function TQ(e){for(let t in e){let r;if(t==="ref"||typeof(r=e[t])=="object"&&TQ(r))return!0}return!1}jd.hasRef=TQ;jd.default=Qxe});var SQ=b(wQ=>{"use strict";Object.defineProperty(wQ,"__esModule",{value:!0});var Txe=/t|\s/i,wxe=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,Sxe=/^(\d\d):(\d\d):(\d\d)(?:\.\d+)?(?:z|([+-]\d\d)(?::?(\d\d))?)$/i,_xe=[0,31,28,31,30,31,30,31,31,30,31,30,31];function yU(e,t){let r=e.split(Txe);return r.length===2&&CU(r[0])&&Rxe(r[1])||t&&r.length===1&&CU(r[0])}wQ.default=yU;function CU(e){let t=wxe.exec(e);if(!t)return!1;let r=+t[1],n=+t[2],s=+t[3];return n>=1&&n<=12&&s>=1&&(s<=_xe[n]||n===2&&s===29&&(r%100===0?r%400===0:r%4===0))}function Rxe(e){let t=Sxe.exec(e);if(!t)return!1;let r=+t[1],n=+t[2],s=+t[3],i=+(t[4]||0),o=+(t[5]||0);return r<=23&&n<=59&&s<=59||r-i===23&&n-o===59&&s===60}yU.code='require("ajv/dist/runtime/timestamp").default'});var bl=b(Ca=>{"use strict";Object.defineProperty(Ca,"__esModule",{value:!0});Ca.typeErrorParams=Ca.typeErrorMessage=Ca.typeError=void 0;var Dxe=ge();function Nxe(e){return{message:t=>IU(t,e),params:t=>bU(t,e)}}Ca.typeError=Nxe;function IU({parentSchema:e},t){return e?.nullable?`must be ${t} or null`:`must be ${t}`}Ca.typeErrorMessage=IU;function bU({parentSchema:e},t){return(0,Dxe._)`{type: ${t}, nullable: ${!!e?.nullable}}`}Ca.typeErrorParams=bU});var _Q=b(Bl=>{"use strict";Object.defineProperty(Bl,"__esModule",{value:!0});Bl.intRange=void 0;var qn=ge(),kxe=SQ(),Fxe=Pe(),Lxe=go(),BU=bl();Bl.intRange={int8:[-128,127,3],uint8:[0,255,3],int16:[-32768,32767,5],uint16:[0,65535,5],int32:[-2147483648,2147483647,10],uint32:[0,4294967295,10]};var Oxe={message:e=>(0,BU.typeErrorMessage)(e,e.schema),params:e=>(0,BU.typeErrorParams)(e,e.schema)};function Mxe(e){let{gen:t,data:r,it:n}=e,{timestamp:s,allowDate:i}=n.opts;if(s==="date")return(0,qn._)`${r} instanceof Date `;let o=(0,Fxe.useFunc)(t,kxe.default),a=i?(0,qn._)`, true`:qn.nil,c=(0,qn._)`typeof ${r} == "string" && ${o}(${r}${a})`;return s==="string"?c:(0,qn.or)((0,qn._)`${r} instanceof Date`,c)}var Pxe={keyword:"type",schemaType:"string",error:Oxe,code(e){(0,Lxe.checkMetadata)(e);let{data:t,schema:r,parentSchema:n,it:s}=e,i;switch(r){case"boolean":case"string":i=(0,qn._)`typeof ${t} == ${r}`;break;case"timestamp":{i=Mxe(e);break}case"float32":case"float64":i=(0,qn._)`typeof ${t} == "number"`;break;default:{let o=r;if(i=(0,qn._)`typeof ${t} == "number" && isFinite(${t}) && !(${t} % 1)`,!s.opts.int32range&&(o==="int32"||o==="uint32"))o==="uint32"&&(i=(0,qn._)`${i} && ${t} >= 0`);else{let[a,c]=Bl.intRange[o];i=(0,qn._)`${i} && ${t} >= ${a} && ${t} <= ${c}`}}}e.pass(n.nullable?(0,qn.or)((0,qn._)`${t} === null`,i):i)}};Bl.default=Pxe});var vl=b(xl=>{"use strict";Object.defineProperty(xl,"__esModule",{value:!0});xl.checkNullableObject=xl.checkNullable=void 0;var Um=ge();function xU({gen:e,data:t,parentSchema:r},n=Um.nil){let s=e.name("valid");return r.nullable?(e.let(s,(0,Um._)`${t} === null`),n=(0,Um.not)(s)):e.let(s,!1),[s,n]}xl.checkNullable=xU;function Uxe(e,t){let[r,n]=xU(e,t);return[r,(0,Um._)`${n} && typeof ${e.data} == "object" && !Array.isArray(${e.data})`]}xl.checkNullableObject=Uxe});var vU=b(RQ=>{"use strict";Object.defineProperty(RQ,"__esModule",{value:!0});var ya=ge(),Hxe=go(),qxe=vl(),Vxe={message:"must be equal to one of the allowed values",params:({schemaCode:e})=>(0,ya._)`{allowedValues: ${e}}`},Yxe={keyword:"enum",schemaType:"array",error:Vxe,code(e){(0,Hxe.checkMetadata)(e);let{gen:t,data:r,schema:n,schemaValue:s,parentSchema:i,it:o}=e;if(n.length===0)throw new Error("enum must have non-empty array");if(n.length!==new Set(n).size)throw new Error("enum items must be unique");let a,c=(0,ya._)`typeof ${r} == "string"`;if(n.length>=o.opts.loopEnum){let l;[a,l]=(0,qxe.checkNullable)(e,c),t.if(l,u)}else{if(!Array.isArray(n))throw new Error("ajv implementation error");a=(0,ya.and)(c,(0,ya.or)(...n.map(l=>(0,ya._)`${r} === ${l}`))),i.nullable&&(a=(0,ya.or)((0,ya._)`${r} === null`,a))}e.pass(a);function u(){t.forOf("v",s,l=>t.if((0,ya._)`${a} = ${r} === ${l}`,()=>t.break()))}}};RQ.default=Yxe});var TU=b(DQ=>{"use strict";Object.defineProperty(DQ,"__esModule",{value:!0});var $xe=Pe(),Gxe=Sr(),QU=ge(),jxe=go(),Jxe=vl(),Wxe=bl(),zxe={keyword:"elements",schemaType:"object",error:(0,Wxe.typeError)("array"),code(e){(0,jxe.checkMetadata)(e);let{gen:t,data:r,schema:n,it:s}=e;if((0,$xe.alwaysValidSchema)(s,n))return;let[i]=(0,Jxe.checkNullable)(e);t.if((0,QU.not)(i),()=>t.if((0,QU._)`Array.isArray(${r})`,()=>t.assign(i,(0,Gxe.validateArray)(e)),()=>e.error())),e.ok(i)}};DQ.default=zxe});var kQ=b(Ia=>{"use strict";Object.defineProperty(Ia,"__esModule",{value:!0});Ia.validateProperties=Ia.error=void 0;var NQ=Sr(),wU=Pe(),mo=ge(),Xxe=go(),Kxe=vl(),SU=bl(),Ql;(function(e){e.Additional="additional",e.Missing="missing"})(Ql||(Ql={}));Ia.error={message:e=>{let{params:t}=e;return t.propError?t.propError===Ql.Additional?"must NOT have additional properties":`must have property '${t.missingProperty}'`:(0,SU.typeErrorMessage)(e,"object")},params:e=>{let{params:t}=e;return t.propError?t.propError===Ql.Additional?(0,mo._)`{error: ${t.propError}, additionalProperty: ${t.additionalProperty}}`:(0,mo._)`{error: ${t.propError}, missingProperty: ${t.missingProperty}}`:(0,SU.typeErrorParams)(e,"object")}};var Zxe={keyword:"properties",schemaType:"object",error:Ia.error,code:_U};function _U(e){(0,Xxe.checkMetadata)(e);let{gen:t,data:r,parentSchema:n,it:s}=e,{additionalProperties:i,nullable:o}=n;if(s.jtdDiscriminator&&o)throw new Error("JTD: nullable inside discriminator mapping");if(d())throw new Error("JTD: properties and optionalProperties have common members");let[a,c]=h("properties"),[u,l]=h("optionalProperties");if(c.length===0&&l.length===0&&i)return;let[A,f]=s.jtdDiscriminator===void 0?(0,Kxe.checkNullableObject)(e,r):[t.let("valid",!1),!0];t.if(f,()=>t.assign(A,!0).block(()=>{p(c,"properties",!0),p(l,"optionalProperties"),i||m()})),e.pass(A);function d(){let y=n.properties,E=n.optionalProperties;if(!(y&&E))return!1;for(let B in y)if(Object.prototype.hasOwnProperty.call(E,B))return!0;return!1}function h(y){let E=n[y],B=E?(0,NQ.allSchemaProperties)(E):[];if(s.jtdDiscriminator&&B.some(x=>x===s.jtdDiscriminator))throw new Error(`JTD: discriminator tag used in ${y}`);let v=B.filter(x=>!(0,wU.alwaysValidSchema)(s,E[x]));return[B,v]}function p(y,E,B){let v=t.var("valid");for(let Q of y)t.if((0,NQ.propertyInData)(t,r,Q,s.opts.ownProperties),()=>C(Q,E,v),()=>x(Q)),e.ok(v);function x(Q){B?(t.assign(v,!1),e.error(!1,{propError:Ql.Missing,missingProperty:Q},{schemaPath:Q})):t.assign(v,!0)}}function C(y,E,B){e.subschema({keyword:E,schemaProp:y,dataProp:y},B)}function m(){t.forIn("key",r,y=>{let E=I(y,a,"properties",s.jtdDiscriminator),B=I(y,u,"optionalProperties"),v=E===!0?B:B===!0?E:(0,mo.and)(E,B);t.if(v,()=>{s.opts.removeAdditional?t.code((0,mo._)`delete ${r}[${y}]`):(e.error(!1,{propError:Ql.Additional,additionalProperty:y},{instancePath:y,parentSchema:!0}),s.opts.allErrors||t.break())})})}function I(y,E,B,v){let x;if(E.length>8){let Q=(0,wU.schemaRefOrVal)(s,n[B],B);x=(0,mo.not)((0,NQ.isOwnProperty)(t,Q,y)),v!==void 0&&(x=(0,mo.and)(x,(0,mo._)`${y} !== ${v}`))}else if(E.length||v!==void 0){let Q=v===void 0?E:[v].concat(E);x=(0,mo.and)(...Q.map(S=>(0,mo._)`${y} !== ${S}`))}else x=!0;return x}}Ia.validateProperties=_U;Ia.default=Zxe});var DU=b(FQ=>{"use strict";Object.defineProperty(FQ,"__esModule",{value:!0});var RU=kQ(),eve={keyword:"optionalProperties",schemaType:"object",error:RU.error,code(e){e.parentSchema.properties||(0,RU.validateProperties)(e)}};FQ.default=eve});var kU=b(LQ=>{"use strict";Object.defineProperty(LQ,"__esModule",{value:!0});var Pc=ge(),tve=go(),rve=vl(),NU=bl(),Hm=zv(),nve={message:e=>{let{schema:t,params:r}=e;return r.discrError?r.discrError===Hm.DiscrError.Tag?`tag "${t}" must be string`:`value of tag "${t}" must be in mapping`:(0,NU.typeErrorMessage)(e,"object")},params:e=>{let{schema:t,params:r}=e;return r.discrError?(0,Pc._)`{error: ${r.discrError}, tag: ${t}, tagValue: ${r.tag}}`:(0,NU.typeErrorParams)(e,"object")}},sve={keyword:"discriminator",schemaType:"string",implements:["mapping"],error:nve,code(e){(0,tve.checkMetadata)(e);let{gen:t,data:r,schema:n,parentSchema:s}=e,[i,o]=(0,rve.checkNullableObject)(e,r);t.if(o),a(),t.elseIf((0,Pc.not)(i)),e.error(),t.endIf(),e.ok(i);function a(){let l=t.const("tag",(0,Pc._)`${r}${(0,Pc.getProperty)(n)}`);t.if((0,Pc._)`${l} === undefined`),e.error(!1,{discrError:Hm.DiscrError.Tag,tag:l}),t.elseIf((0,Pc._)`typeof ${l} == "string"`),c(l),t.else(),e.error(!1,{discrError:Hm.DiscrError.Tag,tag:l},{instancePath:n}),t.endIf()}function c(l){t.if(!1);for(let A in s.mapping)t.elseIf((0,Pc._)`${l} === ${A}`),t.assign(i,u(A));t.else(),e.error(!1,{discrError:Hm.DiscrError.Mapping,tag:l},{instancePath:n,schemaPath:"mapping",parentSchema:!0}),t.endIf()}function u(l){let A=t.name("valid");return e.subschema({keyword:"mapping",schemaProp:l,jtdDiscriminator:n},A),A}}};LQ.default=sve});var LU=b(OQ=>{"use strict";Object.defineProperty(OQ,"__esModule",{value:!0});var FU=Pe(),qm=ge(),ive=go(),ove=vl(),ave=bl(),cve={keyword:"values",schemaType:"object",error:(0,ave.typeError)("object"),code(e){(0,ive.checkMetadata)(e);let{gen:t,data:r,schema:n,it:s}=e,[i,o]=(0,ove.checkNullableObject)(e,r);(0,FU.alwaysValidSchema)(s,n)?t.if((0,qm.not)((0,qm.or)(o,i)),()=>e.error()):(t.if(o),t.assign(i,a()),t.elseIf((0,qm.not)(i)),e.error(),t.endIf()),e.ok(i);function a(){let c=t.name("valid");if(s.allErrors){let l=t.let("valid",!0);return u(()=>t.assign(l,!1)),l}return t.var(c,!0),u(()=>t.break()),c;function u(l){t.forIn("key",r,A=>{e.subschema({keyword:"values",dataProp:A,dataPropType:FU.Type.Str},c),t.if((0,qm.not)(c),l)})}}}};OQ.default=cve});var OU=b(MQ=>{"use strict";Object.defineProperty(MQ,"__esModule",{value:!0});var uve=Sr(),lve={keyword:"union",schemaType:"array",trackErrors:!0,code:uve.validateUnion,error:{message:"must match a schema in union"}};MQ.default=lve});var MU=b(PQ=>{"use strict";Object.defineProperty(PQ,"__esModule",{value:!0});var Ave=Pm(),fve=_Q(),dve=vU(),hve=TU(),pve=kQ(),gve=DU(),mve=kU(),Eve=LU(),Cve=OU(),yve=go(),Ive=["definitions",Ave.default,fve.default,dve.default,hve.default,pve.default,gve.default,mve.default,Eve.default,Cve.default,yve.default,{keyword:"additionalProperties",schemaType:"boolean"},{keyword:"nullable",schemaType:"boolean"}];PQ.default=Ive});var qU=b(UQ=>{"use strict";Object.defineProperty(UQ,"__esModule",{value:!0});var Eo=e=>{let t={nullable:{type:"boolean"},metadata:{optionalProperties:{union:{elements:{ref:"schema"}}},additionalProperties:!0}};return e&&(t.definitions={values:{ref:"schema"}}),t},bve=e=>({optionalProperties:Eo(e)}),Bve=e=>({properties:{ref:{type:"string"}},optionalProperties:Eo(e)}),xve=e=>({properties:{type:{enum:["boolean","timestamp","string","float32","float64","int8","uint8","int16","uint16","int32","uint32"]}},optionalProperties:Eo(e)}),vve=e=>({properties:{enum:{elements:{type:"string"}}},optionalProperties:Eo(e)}),Qve=e=>({properties:{elements:{ref:"schema"}},optionalProperties:Eo(e)}),UU=e=>({properties:{properties:{values:{ref:"schema"}}},optionalProperties:{optionalProperties:{values:{ref:"schema"}},additionalProperties:{type:"boolean"},...Eo(e)}}),HU=e=>({properties:{optionalProperties:{values:{ref:"schema"}}},optionalProperties:{additionalProperties:{type:"boolean"},...Eo(e)}}),Tve=e=>({properties:{discriminator:{type:"string"},mapping:{values:{metadata:{union:[UU(!1),HU(!1)]}}}},optionalProperties:Eo(e)}),wve=e=>({properties:{values:{ref:"schema"}},optionalProperties:Eo(e)}),PU=e=>({metadata:{union:[bve,Bve,xve,vve,Qve,UU,HU,Tve,wve].map(t=>t(e))}}),Sve={definitions:{schema:PU(!1)},...PU(!0)};UQ.default=Sve});var HQ=b(Vm=>{"use strict";Object.defineProperty(Vm,"__esModule",{value:!0});Vm.jtdForms=void 0;Vm.jtdForms=["elements","values","discriminator","properties","optionalProperties","enum","type","ref"]});var YU=b(VQ=>{"use strict";Object.defineProperty(VQ,"__esModule",{value:!0});var qQ=/[\\"\u0000-\u001f\u007f-\u009f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,_ve={"\b":"\\b"," ":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"};function VU(e){return qQ.lastIndex=0,'"'+(qQ.test(e)?e.replace(qQ,t=>{let r=_ve[t];return typeof r=="string"?r:"\\u"+("0000"+t.charCodeAt(0).toString(16)).slice(-4)}):e)+'"'}VQ.default=VU;VU.code='require("ajv/dist/runtime/quote").default'});var zU=b($Q=>{"use strict";Object.defineProperty($Q,"__esModule",{value:!0});var Rve=HQ(),GU=kc(),je=ge(),Dve=fo(),wt=ds(),Nve=Sr(),kve=Pm(),Fve=Pe(),Lve=YU(),Ove={elements:Pve,values:Uve,discriminator:Hve,properties:$U,optionalProperties:$U,enum:Jd,type:qve,ref:Yve};function jU(e,t){let r=GU.getCompilingSchema.call(this,e);if(r)return r;let{es5:n,lines:s}=this.opts.code,{ownProperties:i}=this.opts,o=new je.CodeGen(this.scope,{es5:n,lines:s,ownProperties:i}),a=o.scopeName("serialize"),c={self:this,gen:o,schema:e.schema,schemaEnv:e,definitions:t,data:wt.default.data},u;try{this._compilations.add(e),e.serializeName=a,o.func(a,wt.default.data,!1,()=>{o.let(wt.default.json,(0,je.str)``),Wd(c),o.return(wt.default.json)}),o.optimize(this.opts.code.optimize);let l=o.toString();u=`${o.scopeRefs(wt.default.scope)}return ${l}`;let f=new Function(`${wt.default.scope}`,u)(this.scope.get());this.scope.value(a,{ref:f}),e.serialize=f}catch(l){throw u&&this.logger.error("Error compiling serializer, function code:",u),delete e.serialize,delete e.serializeName,l}finally{this._compilations.delete(e)}return e}$Q.default=jU;function Wd(e){let t;for(let r of Rve.jtdForms)if(r in e.schema){t=r;break}Mve(e,t?Ove[t]:Gve)}function Mve(e,t){let{gen:r,schema:n,data:s}=e;if(!n.nullable)return t(e);r.if((0,je._)`${s} === undefined || ${s} === null`,()=>r.add(wt.default.json,(0,je._)`"null"`),()=>t(e))}function Pve(e){let{gen:t,schema:r,data:n}=e;t.add(wt.default.json,(0,je.str)`[`);let s=t.let("first",!0);t.forOf("el",n,i=>{YQ(e,s),Wd({...e,schema:r.elements,data:i})}),t.add(wt.default.json,(0,je.str)`]`)}function Uve(e){let{gen:t,schema:r,data:n}=e;t.add(wt.default.json,(0,je.str)`{`);let s=t.let("first",!0);t.forIn("key",n,i=>JU(e,i,r.values,s)),t.add(wt.default.json,(0,je.str)`}`)}function JU(e,t,r,n){let{gen:s,data:i}=e;YQ(e,n),Jd({...e,data:t}),s.add(wt.default.json,(0,je.str)`:`);let o=s.const("value",(0,je._)`${i}${(0,je.getProperty)(t)}`);Wd({...e,schema:r,data:o})}function Hve(e){let{gen:t,schema:r,data:n}=e,{discriminator:s}=r;t.add(wt.default.json,(0,je.str)`{${JSON.stringify(s)}:`);let i=t.const("tag",(0,je._)`${n}${(0,je.getProperty)(s)}`);Jd({...e,data:i}),t.if(!1);for(let o in r.mapping){t.elseIf((0,je._)`${i} === ${o}`);let a=r.mapping[o];WU({...e,schema:a},s)}t.endIf(),t.add(wt.default.json,(0,je.str)`}`)}function $U(e){let{gen:t}=e;t.add(wt.default.json,(0,je.str)`{`),WU(e),t.add(wt.default.json,(0,je.str)`}`)}function WU(e,t){let{gen:r,schema:n,data:s}=e,{properties:i,optionalProperties:o}=n,a=f(i),c=f(o),u=d(a.concat(c)),l=!t,A;for(let m of a)l?l=!1:r.add(wt.default.json,(0,je.str)`,`),p(m,i[m],h(m));l&&(A=r.let("first",!0));for(let m of c){let I=h(m);r.if((0,je.and)((0,je._)`${I} !== undefined`,(0,Nve.isOwnProperty)(r,s,m)),()=>{YQ(e,A),p(m,o[m],I)})}n.additionalProperties&&r.forIn("key",s,m=>r.if(C(m,u),()=>JU(e,m,{},A)));function f(m){return m?Object.keys(m):[]}function d(m){if(t&&m.push(t),new Set(m).size!==m.length)throw new Error("JTD: properties/optionalProperties/disciminator overlap");return m}function h(m){return r.const("value",(0,je._)`${s}${(0,je.getProperty)(m)}`)}function p(m,I,y){r.add(wt.default.json,(0,je.str)`${JSON.stringify(m)}:`),Wd({...e,schema:I,data:y})}function C(m,I){return I.length?(0,je.and)(...I.map(y=>(0,je._)`${m} !== ${y}`)):!0}}function qve(e){let{gen:t,schema:r,data:n}=e;switch(r.type){case"boolean":t.add(wt.default.json,(0,je._)`${n} ? "true" : "false"`);break;case"string":Jd(e);break;case"timestamp":t.if((0,je._)`${n} instanceof Date`,()=>t.add(wt.default.json,(0,je._)`'"' + ${n}.toISOString() + '"'`),()=>Jd(e));break;default:Vve(e)}}function Jd({gen:e,data:t}){e.add(wt.default.json,(0,je._)`${(0,Fve.useFunc)(e,Lve.default)}(${t})`)}function Vve({gen:e,data:t}){e.add(wt.default.json,(0,je._)`"" + ${t}`)}function Yve(e){let{gen:t,self:r,data:n,definitions:s,schema:i,schemaEnv:o}=e,{ref:a}=i,c=s[a];if(!c)throw new Dve.default(r.opts.uriResolver,"",a,`No definition ${a}`);if(!(0,kve.hasRef)(c))return Wd({...e,schema:c});let{root:u}=o,l=jU.call(r,new GU.SchemaEnv({schema:c,root:u}),s);t.add(wt.default.json,(0,je._)`${$ve(t,l)}(${n})`)}function $ve(e,t){return t.serialize?e.scopeValue("serialize",{ref:t.serialize}):(0,je._)`${e.scopeValue("wrapper",{ref:t})}.serialize`}function Gve({gen:e,data:t}){e.add(wt.default.json,(0,je._)`JSON.stringify(${t})`)}function YQ({gen:e},t){t?e.if(t,()=>e.assign(t,!1),()=>e.add(wt.default.json,(0,je.str)`,`)):e.add(wt.default.json,(0,je.str)`,`)}});var KU=b(Ba=>{"use strict";Object.defineProperty(Ba,"__esModule",{value:!0});Ba.parseJsonString=Ba.parseJsonNumber=Ba.parseJson=void 0;var jve=/position\s(\d+)(?: \(line \d+ column \d+\))?$/;function Co(e,t){let r;Co.message=void 0;let n;t&&(e=e.slice(t));try{return Co.position=t+e.length,JSON.parse(e)}catch(s){if(n=jve.exec(s.message),!n){Co.message="unexpected end";return}r=+n[1];let i=e[r];e=e.slice(0,r),Co.position=t+r;try{return JSON.parse(e)}catch{Co.message=`unexpected token ${i}`;return}}}Ba.parseJson=Co;Co.message=void 0;Co.position=0;Co.code='require("ajv/dist/runtime/parseJson").parseJson';function yo(e,t,r){let n="",s;if(yo.message=void 0,e[t]==="-"&&(n+="-",t++),e[t]==="0")n+="0",t++;else if(!i(r)){o();return}if(r)return yo.position=t,+n;if(e[t]==="."&&(n+=".",t++,!i())){o();return}if(s=e[t],(s==="e"||s==="E")&&(n+="e",t++,s=e[t],(s==="+"||s==="-")&&(n+=s,t++),!i())){o();return}return yo.position=t,+n;function i(a){let c=!1;for(;s=e[t],s>="0"&&s<="9"&&(a===void 0||a-- >0);)c=!0,n+=s,t++;return c}function o(){yo.position=t,yo.message=t="a"&&n<="f")o+=n.charCodeAt(0)-Jve+10;else if(n>="0"&&n<="9")o+=n.charCodeAt(0)-Wve;else{s(`unexpected token ${n}`);return}t++}r+=String.fromCharCode(o)}else{s(`unexpected token ${n}`);return}else if(n===void 0){s("unexpected end");return}else if(n.charCodeAt(0)>=32)r+=n;else{s(`unexpected token ${n}`);return}return ba.position=t,r;function s(i){ba.position=t,ba.message=i}}Ba.parseJsonString=ba;ba.message=void 0;ba.position=0;ba.code='require("ajv/dist/runtime/parseJson").parseJsonString'});var u9=b(ZQ=>{"use strict";Object.defineProperty(ZQ,"__esModule",{value:!0});var zve=HQ(),r9=kc(),he=ge(),Xve=fo(),$e=ds(),Kve=Sr(),Zve=Pm(),eQe=_Q(),JQ=KU(),n9=Pe(),tQe=SQ(),rQe={elements:oQe,values:aQe,discriminator:uQe,properties:ZU,optionalProperties:ZU,enum:AQe,type:lQe,ref:fQe};function s9(e,t){let r=r9.getCompilingSchema.call(this,e);if(r)return r;let{es5:n,lines:s}=this.opts.code,{ownProperties:i}=this.opts,o=new he.CodeGen(this.scope,{es5:n,lines:s,ownProperties:i}),a=o.scopeName("parse"),c={self:this,gen:o,schema:e.schema,schemaEnv:e,definitions:t,data:$e.default.data,parseName:a,char:o.name("c")},u;try{this._compilations.add(e),e.parseName=a,nQe(c),o.optimize(this.opts.code.optimize);let l=o.toString();u=`${o.scopeRefs($e.default.scope)}return ${l}`;let f=new Function(`${$e.default.scope}`,u)(this.scope.get());this.scope.value(a,{ref:f}),e.parse=f}catch(l){throw u&&this.logger.error("Error compiling parser, function code:",u),delete e.parse,delete e.parseName,l}finally{this._compilations.delete(e)}return e}ZQ.default=s9;var jQ=(0,he._)`undefined`;function nQe(e){let{gen:t,parseName:r,char:n}=e;t.func(r,(0,he._)`${$e.default.json}, ${$e.default.jsonPos}, ${$e.default.jsonPart}`,!1,()=>{t.let($e.default.data),t.let(n),t.assign((0,he._)`${r}.message`,jQ),t.assign((0,he._)`${r}.position`,jQ),t.assign($e.default.jsonPos,(0,he._)`${$e.default.jsonPos} || 0`),t.const($e.default.jsonLen,(0,he._)`${$e.default.json}.length`),Ym(e),KQ(e),t.if($e.default.jsonPart,()=>{t.assign((0,he._)`${r}.position`,$e.default.jsonPos),t.return($e.default.data)}),t.if((0,he._)`${$e.default.jsonPos} === ${$e.default.jsonLen}`,()=>t.return($e.default.data)),Tl(e)})}function Ym(e){let t;for(let r of zve.jtdForms)if(r in e.schema){t=r;break}t?iQe(e,rQe[t]):zQ(e)}var sQe=t9(!0,t9(!1,Tl));function iQe(e,t){let{gen:r,schema:n,data:s}=e;if(!n.nullable)return t(e);zd(e,"null",t,()=>r.assign(s,null))}function oQe(e){let{gen:t,schema:r,data:n}=e;Si(e,"[");let s=t.let("i",0);t.assign(n,(0,he._)`[]`),WQ(e,"]",()=>{let i=t.let("el");Ym({...e,schema:r.elements,data:i}),t.assign((0,he._)`${n}[${s}++]`,i)})}function aQe(e){let{gen:t,schema:r,data:n}=e;Si(e,"{"),t.assign(n,(0,he._)`{}`),WQ(e,"}",()=>cQe(e,r.values))}function WQ(e,t,r){i9(e,t,r),Si(e,t)}function i9(e,t,r){let{gen:n}=e;n.for((0,he._)`;${$e.default.jsonPos}<${$e.default.jsonLen} && ${$m(1)}!==${t};`,()=>{r(),zd(e,",",()=>n.break(),s)});function s(){zd(e,t,()=>{},Tl)}}function cQe(e,t){let{gen:r}=e,n=r.let("key");Uc({...e,data:n}),Si(e,":"),a9(e,n,t)}function uQe(e){let{gen:t,data:r,schema:n}=e,{discriminator:s,mapping:i}=n;Si(e,"{"),t.assign(r,(0,he._)`{}`);let o=t.const("pos",$e.default.jsonPos),a=t.let("value"),c=t.let("tag");i9(e,"}",()=>{let u=t.let("key");Uc({...e,data:u}),Si(e,":"),t.if((0,he._)`${u} === ${s}`,()=>{Uc({...e,data:c}),t.assign((0,he._)`${r}[${u}]`,c),t.break()},()=>zQ({...e,data:a}))}),t.assign($e.default.jsonPos,o),t.if((0,he._)`${c} === undefined`),Io(e,(0,he.str)`discriminator tag not found`);for(let u in i)t.elseIf((0,he._)`${c} === ${u}`),o9({...e,schema:i[u]},s);t.else(),Io(e,(0,he.str)`discriminator value not in schema`),t.endIf()}function ZU(e){let{gen:t,data:r}=e;Si(e,"{"),t.assign(r,(0,he._)`{}`),o9(e)}function o9(e,t){let{gen:r,schema:n,data:s}=e,{properties:i,optionalProperties:o,additionalProperties:a}=n;if(WQ(e,"}",()=>{let c=r.let("key");if(Uc({...e,data:c}),Si(e,":"),r.if(!1),e9(e,c,i),e9(e,c,o),t){r.elseIf((0,he._)`${c} === ${t}`);let u=r.let("tag");Uc({...e,data:u})}r.else(),a?zQ({...e,data:(0,he._)`${s}[${c}]`}):Io(e,(0,he.str)`property ${c} not allowed`),r.endIf()}),i){let c=(0,Kve.hasPropFunc)(r),u=(0,he.and)(...Object.keys(i).map(l=>(0,he._)`${c}.call(${s}, ${l})`));r.if((0,he.not)(u),()=>Io(e,(0,he.str)`missing required properties`))}}function e9(e,t,r={}){let{gen:n}=e;for(let s in r)n.elseIf((0,he._)`${t} === ${s}`),a9(e,t,r[s])}function a9(e,t,r){Ym({...e,schema:r,data:(0,he._)`${e.data}[${t}]`})}function lQe(e){let{gen:t,schema:r,data:n,self:s}=e;switch(r.type){case"boolean":sQe(e);break;case"string":Uc(e);break;case"timestamp":{Uc(e);let i=(0,n9.useFunc)(t,tQe.default),{allowDate:o,parseDate:a}=s.opts,c=o?(0,he._)`!${i}(${n}, true)`:(0,he._)`!${i}(${n})`,u=a?(0,he.or)(c,(0,he._)`(${n} = new Date(${n}), false)`,(0,he._)`isNaN(${n}.valueOf())`):c;t.if(u,()=>Io(e,(0,he.str)`invalid timestamp`));break}case"float32":case"float64":GQ(e);break;default:{let i=r.type;if(!s.opts.int32range&&(i==="int32"||i==="uint32"))GQ(e,16),i==="uint32"&&t.if((0,he._)`${n} < 0`,()=>Io(e,(0,he.str)`integer out of range`));else{let[o,a,c]=eQe.intRange[i];GQ(e,c),t.if((0,he._)`${n} < ${o} || ${n} > ${a}`,()=>Io(e,(0,he.str)`integer out of range`))}}}}function Uc(e){Si(e,'"'),XQ(e,JQ.parseJsonString)}function AQe(e){let{gen:t,data:r,schema:n}=e,s=n.enum;Si(e,'"'),t.if(!1);for(let i of s){let o=JSON.stringify(i).slice(1);t.elseIf((0,he._)`${$m(o.length)} === ${o}`),t.assign(r,(0,he.str)`${i}`),t.add($e.default.jsonPos,o.length)}t.else(),Tl(e),t.endIf()}function GQ(e,t){let{gen:r}=e;KQ(e),r.if((0,he._)`"-0123456789".indexOf(${$m(1)}) < 0`,()=>Tl(e),()=>XQ(e,JQ.parseJsonNumber,t))}function t9(e,t){return r=>{let{gen:n,data:s}=r;zd(r,`${e}`,()=>t(r),()=>n.assign(s,e))}}function fQe(e){let{gen:t,self:r,definitions:n,schema:s,schemaEnv:i}=e,{ref:o}=s,a=n[o];if(!a)throw new Xve.default(r.opts.uriResolver,"",o,`No definition ${o}`);if(!(0,Zve.hasRef)(a))return Ym({...e,schema:a});let{root:c}=i,u=s9.call(r,new r9.SchemaEnv({schema:a,root:c}),n);c9(e,dQe(t,u),!0)}function dQe(e,t){return t.parse?e.scopeValue("parse",{ref:t.parse}):(0,he._)`${e.scopeValue("wrapper",{ref:t})}.parse`}function zQ(e){XQ(e,JQ.parseJson)}function XQ(e,t,r){c9(e,(0,n9.useFunc)(e.gen,t),r)}function c9(e,t,r){let{gen:n,data:s}=e;n.assign(s,(0,he._)`${t}(${$e.default.json}, ${$e.default.jsonPos}${r?(0,he._)`, ${r}`:he.nil})`),n.assign($e.default.jsonPos,(0,he._)`${t}.position`),n.if((0,he._)`${s} === undefined`,()=>Io(e,(0,he._)`${t}.message`))}function Si(e,t){zd(e,t,Tl)}function zd(e,t,r,n){let{gen:s}=e,i=t.length;KQ(e),s.if((0,he._)`${$m(i)} === ${t}`,()=>{s.add($e.default.jsonPos,i),n?.(e)},()=>r(e))}function KQ({gen:e,char:t}){e.code((0,he._)`while((${t}=${$e.default.json}[${$e.default.jsonPos}],${t}===" "||${t}==="\\n"||${t}==="\\r"||${t}==="\\t"))${$e.default.jsonPos}++;`)}function $m(e){return e===1?(0,he._)`${$e.default.json}[${$e.default.jsonPos}]`:(0,he._)`${$e.default.json}.slice(${$e.default.jsonPos}, ${$e.default.jsonPos}+${e})`}function Tl(e){Io(e,(0,he._)`"unexpected token " + ${$e.default.json}[${$e.default.jsonPos}]`)}function Io({gen:e,parseName:t},r){e.assign((0,he._)`${t}.message`,r),e.assign((0,he._)`${t}.position`,$e.default.jsonPos),e.return(jQ)}});var rT=b((Ft,tT)=>{"use strict";Object.defineProperty(Ft,"__esModule",{value:!0});Ft.MissingRefError=Ft.ValidationError=Ft.CodeGen=Ft.Name=Ft.nil=Ft.stringify=Ft.str=Ft._=Ft.KeywordCxt=Ft.Ajv=void 0;var hQe=cv(),pQe=MU(),gQe=qU(),mQe=zU(),EQe=u9(),eT="JTD-meta-schema",wl=class extends hQe.default{constructor(t={}){super({...t,jtd:!0})}_addVocabularies(){super._addVocabularies(),this.addVocabulary(pQe.default)}_addDefaultMetaSchema(){super._addDefaultMetaSchema(),this.opts.meta&&this.addMetaSchema(gQe.default,eT,!1)}defaultMeta(){return this.opts.defaultMeta=super.defaultMeta()||(this.getSchema(eT)?eT:void 0)}compileSerializer(t){let r=this._addSchema(t);return r.serialize||this._compileSerializer(r)}compileParser(t){let r=this._addSchema(t);return r.parse||this._compileParser(r)}_compileSerializer(t){if(mQe.default.call(this,t,t.schema.definitions||{}),!t.serialize)throw new Error("ajv implementation error");return t.serialize}_compileParser(t){if(EQe.default.call(this,t,t.schema.definitions||{}),!t.parse)throw new Error("ajv implementation error");return t.parse}};Ft.Ajv=wl;tT.exports=Ft=wl;tT.exports.Ajv=wl;Object.defineProperty(Ft,"__esModule",{value:!0});Ft.default=wl;var CQe=Al();Object.defineProperty(Ft,"KeywordCxt",{enumerable:!0,get:function(){return CQe.KeywordCxt}});var Sl=ge();Object.defineProperty(Ft,"_",{enumerable:!0,get:function(){return Sl._}});Object.defineProperty(Ft,"str",{enumerable:!0,get:function(){return Sl.str}});Object.defineProperty(Ft,"stringify",{enumerable:!0,get:function(){return Sl.stringify}});Object.defineProperty(Ft,"nil",{enumerable:!0,get:function(){return Sl.nil}});Object.defineProperty(Ft,"Name",{enumerable:!0,get:function(){return Sl.Name}});Object.defineProperty(Ft,"CodeGen",{enumerable:!0,get:function(){return Sl.CodeGen}});var yQe=xd();Object.defineProperty(Ft,"ValidationError",{enumerable:!0,get:function(){return yQe.default}});var IQe=fo();Object.defineProperty(Ft,"MissingRefError",{enumerable:!0,get:function(){return IQe.default}})});var nT=b((yet,l9)=>{"use strict";var bQe=nQ();l9.exports=Object.freeze({coerceTypes:"array",useDefaults:!0,removeAdditional:!0,uriResolver:bQe,addUsedSchema:!1,allErrors:!1})});var g9=b(_i=>{"use strict";Object.defineProperty(_i,"__esModule",{value:!0});_i.formatNames=_i.fastFormats=_i.fullFormats=void 0;function _l(e,t){return{validate:e,compare:t}}_i.fullFormats={date:_l(d9,oT),time:_l(h9,aT),"date-time":_l(QQe,p9),duration:/^P(?!$)((\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+S)?)?|(\d+W)?)$/,uri:SQe,"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,url:/^(?:https?|ftp):\/\/(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)(?:\.(?:[a-z0-9\u{00a1}-\u{ffff}]+-)*[a-z0-9\u{00a1}-\u{ffff}]+)*(?:\.(?:[a-z\u{00a1}-\u{ffff}]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/iu,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:/^(?=.{1,253}\.?$)[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*\.?$/i,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i,regex:LQe,uuid:/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,"json-pointer":/^(?:\/(?:[^~/]|~0|~1)*)*$/,"json-pointer-uri-fragment":/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,"relative-json-pointer":/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/,byte:_Qe,int32:{type:"number",validate:NQe},int64:{type:"number",validate:kQe},float:{type:"number",validate:f9},double:{type:"number",validate:f9},password:!0,binary:!0};_i.fastFormats={..._i.fullFormats,date:_l(/^\d\d\d\d-[0-1]\d-[0-3]\d$/,oT),time:_l(/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)?$/i,aT),"date-time":_l(/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d(?::?\d\d)?)$/i,p9),uri:/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+\-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i};_i.formatNames=Object.keys(_i.fullFormats);function BQe(e){return e%4===0&&(e%100!==0||e%400===0)}var xQe=/^(\d\d\d\d)-(\d\d)-(\d\d)$/,vQe=[0,31,28,31,30,31,30,31,31,30,31,30,31];function d9(e){let t=xQe.exec(e);if(!t)return!1;let r=+t[1],n=+t[2],s=+t[3];return n>=1&&n<=12&&s>=1&&s<=(n===2&&BQe(r)?29:vQe[n])}function oT(e,t){if(e&&t)return e>t?1:et?1:e=RQe}function kQe(e){return Number.isInteger(e)}function f9(){return!0}var FQe=/[^\\]\\Z/;function LQe(e){if(FQe.test(e))return!1;try{return new RegExp(e),!0}catch{return!1}}});var m9=b(Rl=>{"use strict";Object.defineProperty(Rl,"__esModule",{value:!0});Rl.formatLimitDefinition=void 0;var OQe=Pd(),Ws=ge(),xa=Ws.operators,Gm={formatMaximum:{okStr:"<=",ok:xa.LTE,fail:xa.GT},formatMinimum:{okStr:">=",ok:xa.GTE,fail:xa.LT},formatExclusiveMaximum:{okStr:"<",ok:xa.LT,fail:xa.GTE},formatExclusiveMinimum:{okStr:">",ok:xa.GT,fail:xa.LTE}},MQe={message:({keyword:e,schemaCode:t})=>Ws.str`should be ${Gm[e].okStr} ${t}`,params:({keyword:e,schemaCode:t})=>Ws._`{comparison: ${Gm[e].okStr}, limit: ${t}}`};Rl.formatLimitDefinition={keyword:Object.keys(Gm),type:"string",schemaType:"string",$data:!0,error:MQe,code(e){let{gen:t,data:r,schemaCode:n,keyword:s,it:i}=e,{opts:o,self:a}=i;if(!o.validateFormats)return;let c=new OQe.KeywordCxt(i,a.RULES.all.format.definition,"format");c.$data?u():l();function u(){let f=t.scopeValue("formats",{ref:a.formats,code:o.code.formats}),d=t.const("fmt",Ws._`${f}[${c.schemaCode}]`);e.fail$data(Ws.or(Ws._`typeof ${d} != "object"`,Ws._`${d} instanceof RegExp`,Ws._`typeof ${d}.compare != "function"`,A(d)))}function l(){let f=c.schema,d=a.formats[f];if(!d||d===!0)return;if(typeof d!="object"||d instanceof RegExp||typeof d.compare!="function")throw new Error(`"${s}": format "${f}" does not define "compare" function`);let h=t.scopeValue("formats",{key:f,ref:d,code:o.code.formats?Ws._`${o.code.formats}${Ws.getProperty(f)}`:void 0});e.fail$data(A(h))}function A(f){return Ws._`${f}.compare(${r}, ${n}) ${Gm[s].fail} 0`}},dependencies:["format"]};var PQe=e=>(e.addKeyword(Rl.formatLimitDefinition),e);Rl.default=PQe});var I9=b((Xd,y9)=>{"use strict";Object.defineProperty(Xd,"__esModule",{value:!0});var Dl=g9(),UQe=m9(),cT=ge(),E9=new cT.Name("fullFormats"),HQe=new cT.Name("fastFormats"),uT=(e,t={keywords:!0})=>{if(Array.isArray(t))return C9(e,t,Dl.fullFormats,E9),e;let[r,n]=t.mode==="fast"?[Dl.fastFormats,HQe]:[Dl.fullFormats,E9],s=t.formats||Dl.formatNames;return C9(e,s,r,n),t.keywords&&UQe.default(e),e};uT.get=(e,t="full")=>{let n=(t==="fast"?Dl.fastFormats:Dl.fullFormats)[e];if(!n)throw new Error(`Unknown format "${e}"`);return n};function C9(e,t,r,n){var s,i;(s=(i=e.opts.code).formats)!==null&&s!==void 0||(i.formats=cT._`require("ajv-formats/dist/formats").${n}`);for(let o of t)e.addFormat(o,r[o])}y9.exports=Xd=uT;Object.defineProperty(Xd,"__esModule",{value:!0});Xd.default=uT});var x9=b((Bet,B9)=>{"use strict";var qQe=Pd().default,VQe=rT(),b9=nT(),lT=class{constructor(t,r){r.mode==="JTD"?this.ajv=new VQe(Object.assign({},b9,r.customOptions)):this.ajv=new qQe(Object.assign({},b9,r.customOptions));let n=!0;if(r.plugins&&r.plugins.length>0)for(let i of r.plugins)Array.isArray(i)?(n=n&&i[0].name!=="formatsPlugin",i[0](this.ajv,i[1])):(n=n&&i.name!=="formatsPlugin",i(this.ajv));n&&I9()(this.ajv),r.onCreate?.(this.ajv);let s=Object.values(t);for(let i of s)this.ajv.addSchema(i)}buildValidatorFunction({schema:t}){if(t.$id){let r=this.ajv.getSchema(t.$id);if(r)return r}return this.ajv.compile(t)}};B9.exports=lT});var Q9=b((xet,v9)=>{"use strict";var YQe=rT(),$Qe=nT(),AT=class{constructor(t,r){this.ajv=new YQe(Object.assign({},$Qe,r))}buildSerializerFunction({schema:t}){return this.ajv.compileSerializer(t)}};v9.exports=AT});var S9=b((Zd,w9)=>{"use strict";Object.defineProperty(Zd,"__esModule",{value:!0});var Kd=Zg(),zs=nl();function T9(e,t){if(!e.opts.code.source)throw new Error("moduleCode: ajv instance must have code.source option");let{_n:r}=e.scope.opts;return typeof t=="function"?s(t.source):t!==void 0?i(t,n):i(e.schemas,a=>a.meta?void 0:e.compile(a.schema));function n(a){let c=e.getSchema(a);if(!c)throw new Error(`moduleCode: no schema with id ${a}`);return c}function s(a){let c={},u=a?.validateName,l=o(c,a);return e.opts.code.esm?`"use strict";${r}export const validate = ${u};${r}export default ${u};${r}${l}`:`"use strict";${r}module.exports = ${u};${r}module.exports.default = ${u};${r}${l}`}function i(a,c){var u;let l={},A=(0,zs._)`"use strict";`;for(let f in a){let d=c(a[f]);if(d){let h=o(l,d.source),p=e.opts.code.esm?(0,zs._)`export const ${(0,zs.getEsmExportName)(f)}`:(0,zs._)`exports${(0,zs.getProperty)(f)}`;A=(0,zs._)`${A}${r}${p} = ${(u=d.source)===null||u===void 0?void 0:u.validateName};${r}${h}`}}return`${A}`}function o(a,c){if(!c)throw new Error('moduleCode: function does not have "source" property');if(f(c.validateName)===Kd.UsedValueState.Completed)return zs.nil;d(c.validateName,Kd.UsedValueState.Started);let u=e.scope.scopeCode(c.scopeValues,a,A),l=new zs._Code(`${u}${r}${c.validateCode}`);return c.evaluated?(0,zs._)`${l}${c.validateName}.evaluated = ${c.evaluated};${r}`:l;function A(h){var p;let C=(p=h.value)===null||p===void 0?void 0:p.ref;if(h.prefix==="validate"&&typeof C=="function")return o(a,C.source);if((h.prefix==="root"||h.prefix==="wrapper")&&typeof C=="object"){let{validate:m,validateName:I}=C;if(!I)throw new Error("ajv internal error");let y=e.opts.code.es5?Kd.varKinds.var:Kd.varKinds.const,E=(0,zs._)`${y} ${h} = {validate: ${I}};`;if(f(I)===Kd.UsedValueState.Started)return E;let B=o(a,m?.source);return(0,zs._)`${E}${r}${B}`}}function f(h){var p;return(p=a[h.prefix])===null||p===void 0?void 0:p.get(h)}function d(h,p){let{prefix:C}=h;(a[C]=a[C]||new Map).set(h,p)}}}w9.exports=Zd=T9;Object.defineProperty(Zd,"__esModule",{value:!0});Zd.default=T9});var D9=b((vet,R9)=>{"use strict";var _9=fT(),GQe=S9().default;function jQe(e={readMode:!0}){if(e.readMode===!0&&!e.restoreFunction)throw new Error("You must provide a restoreFunction options when readMode ON");if(e.readMode!==!0&&!e.storeFunction)throw new Error("You must provide a storeFunction options when readMode OFF");if(e.readMode===!0)return function(){return function(n){return e.restoreFunction(n)}};let t=_9();return function(n,s={}){(!s.customOptions||!s.customOptions.code)&&(s.customOptions=Object.assign({},s.customOptions,{code:{source:!0}}));let i=t(n,s);return function(o){let a=i(o),c=GQe(i[_9.AjvReference].ajv,a);return e.storeFunction(o,c),a}}}R9.exports=jQe});var fT=b((Qet,Nl)=>{"use strict";var k9=Symbol.for("fastify.ajv-compiler.reference"),JQe=x9(),WQe=Q9();function dT(e){let t=new Map,r=new Map;return e&&e.jtdSerializer===!0?function(s,i){let o=N9({},i);if(r.has(o))return r.get(o);let a=new WQe(s,i),c=a.buildSerializerFunction.bind(a);return r.set(o,c),c}:function(s,i){let o=N9(s,i.customOptions);if(t.has(o))return t.get(o);let a=new JQe(s,i),c=a.buildValidatorFunction.bind(a);return t.set(o,c),i.customOptions.code!==void 0&&(c[k9]=a),c}}function N9(e,t){let r=JSON.stringify(e),n=JSON.stringify(t);return`${r}${n}`}Nl.exports=dT;Nl.exports.default=dT;Nl.exports.AjvCompiler=dT;Nl.exports.AjvReference=k9;Nl.exports.StandaloneValidator=D9()});var hT=b((Tet,F9)=>{"use strict";var{buildSchemas:zQe}=Wf(),XQe=vQ(),KQe=fT();function ZQe(e,t){if(e)return new kl(e,t);let r=Object.assign({buildValidator:null,buildSerializer:null},t?.compilersFactory);r.buildValidator||(r.buildValidator=KQe()),r.buildSerializer||(r.buildSerializer=XQe());let n={bucket:t&&t.bucket||zQe,compilersFactory:r,isCustomValidatorCompiler:typeof t?.compilersFactory?.buildValidator=="function",isCustomSerializerCompiler:typeof t?.compilersFactory?.buildValidator=="function"};return new kl(void 0,n)}var kl=class{constructor(t,r){this.opts=r||t?.opts,this.addedSchemas=!1,this.compilersFactory=this.opts.compilersFactory,t?(this.schemaBucket=this.opts.bucket(t.getSchemas()),this.validatorCompiler=t.getValidatorCompiler(),this.serializerCompiler=t.getSerializerCompiler(),this.isCustomValidatorCompiler=t.isCustomValidatorCompiler,this.isCustomSerializerCompiler=t.isCustomSerializerCompiler,this.parent=t):(this.schemaBucket=this.opts.bucket(),this.isCustomValidatorCompiler=this.opts.isCustomValidatorCompiler||!1,this.isCustomSerializerCompiler=this.opts.isCustomSerializerCompiler||!1)}add(t){return this.addedSchemas=!0,this.schemaBucket.add(t)}getSchema(t){return this.schemaBucket.getSchema(t)}getSchemas(){return this.schemaBucket.getSchemas()}setValidatorCompiler(t){this.compilersFactory=Object.assign({},this.compilersFactory,{buildValidator:()=>t}),this.validatorCompiler=t,this.isCustomValidatorCompiler=!0}setSerializerCompiler(t){this.compilersFactory=Object.assign({},this.compilersFactory,{buildSerializer:()=>t}),this.serializerCompiler=t,this.isCustomSerializerCompiler=!0}getValidatorCompiler(){return this.validatorCompiler||this.parent&&this.parent.getValidatorCompiler()}getSerializerCompiler(){return this.serializerCompiler||this.parent&&this.parent.getSerializerCompiler()}getSerializerBuilder(){return this.compilersFactory.buildSerializer||this.parent&&this.parent.getSerializerBuilder()}getValidatorBuilder(){return this.compilersFactory.buildValidator||this.parent&&this.parent.getValidatorBuilder()}setupValidator(t){this.validatorCompiler!==void 0&&!this.addedSchemas||(this.validatorCompiler=this.getValidatorBuilder()(this.schemaBucket.getSchemas(),t.ajv))}setupSerializer(t){this.serializerCompiler!==void 0&&!this.addedSchemas||(this.serializerCompiler=this.getSerializerBuilder()(this.schemaBucket.getSchemas(),t.serializerOpts))}};kl.buildSchemaController=ZQe;F9.exports=kl});var yT=b((wet,CT)=>{"use strict";var pT=WB(),mT=require("node:assert"),ET=Symbol.for("registered-plugin"),{kTestInternals:eTe}=mr(),{exist:tTe,existReply:rTe,existRequest:nTe}=ix(),{FST_ERR_PLUGIN_VERSION_MISMATCH:sTe,FST_ERR_PLUGIN_NOT_PRESENT_IN_INSTANCE:iTe}=Mr(),{FSTWRN002:oTe}=mi();function eh(e){return e[Symbol.for("plugin-meta")]}function L9(e){let t=O9(e);if(t)return t;let r=require.cache;if(r){let n=Object.keys(r);for(let s=0;st.trim()).join(" -- ")}function O9(e){return e[Symbol.for("fastify.display-name")]}function M9(e){return!!e[Symbol.for("skip-override")]}function P9(e){let t=eh(e);if(!t)return;let r=t.dependencies;r&&(mT(Array.isArray(r),"The dependencies should be an array of strings"),r.forEach(n=>{mT(this[ET].indexOf(n)>-1,`The dependency '${n}' of plugin '${t.name}' is not registered`)}))}function U9(e){let t=eh(e);if(!t)return;let{decorators:r,name:n}=t;r&&(r.fastify&&gT(this,"Fastify",r.fastify,n),r.reply&&gT(this,"Reply",r.reply,n),r.request&&gT(this,"Request",r.request,n))}var cTe={Fastify:tTe,Request:nTe,Reply:rTe};function gT(e,t,r,n){mT(Array.isArray(r),"The decorators should be an array of strings"),r.forEach(s=>{let i=typeof n=="string"?` required by '${n}'`:"";if(!cTe[t].call(e,s))throw new iTe(s,i,t)})}function uTe(e){let t=eh(e);if(!t)return;let r=t.fastify,n=/-rc.+$/.test(this.version);if(!(n===!0&&pT.gt(this.version,pT.coerce(r))===!0)&&r&&pT.satisfies(this.version,r,{includePrerelease:n})===!1)throw new sTe(t.name,r,this.version)}function lTe(e){let t=eh(e);if(!t)return;let r=t.name;if(r)return this[ET].push(r),r}function ATe(e,t){e.constructor.name==="AsyncFunction"&&e.length===3&&oTe(t||"anonymous")}function fTe(e){let t=lTe.call(this,e)||L9(e);return ATe.call(this,e,t),uTe.call(this,e),U9.call(this,e),P9.call(this,e),M9(e)}CT.exports={getPluginName:L9,getFuncPreview:aTe,kRegisteredPlugins:ET,getDisplayName:O9,registerPlugin:fTe};CT.exports[eTe]={shouldSkipOverride:M9,getMeta:eh,checkDecorators:U9,checkDependencies:P9}});var jm=b((_et,H9)=>{"use strict";function dTe(e,t){let r=t||pTe();return e?gTe(e,r):r}function hTe(e,t){return e.genReqId(t)}function pTe(){let t=0;return function(){return t=t+1&2147483647,`req-${t.toString(36)}`}}function gTe(e,t){return function(r){return r.headers[e]||t(r)}}H9.exports={getGenReqId:hTe,reqIdGenFactory:dTe}});var $9=b((Ret,Y9)=>{"use strict";var q9=12,mTe=0,IT=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,10,9,9,9,11,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,24,36,48,60,72,84,96,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,24,24,24,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0,0,0,48,48,48,0,0,0,0,0,0,0,0,0,0,48,48,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,127,63,63,63,0,31,15,15,15,7,7,7];function ETe(e){var t=e.indexOf("%");if(t===-1)return e;for(var r=e.length,n="",s=0,i=0,o=t,a=q9;t>-1&&t>10),56320+(i&1023)),i=0,s=t+3,t=o=e.indexOf("%",s);else{if(a===mTe)return null;if(t+=3,t{"use strict";var G9=$9(),j9=/\+/g,J9=function(){};J9.prototype=Object.create(null);function yTe(e){let t=new J9;if(typeof e!="string")return t;let r=e.length,n="",s="",i=-1,o=-1,a=!1,c=!1,u=!1,l=!1,A=!1,f=0;for(let d=0;di,A||(o=d),n=e.slice(i+1,o),A||n.length>0){u&&(n=n.replace(j9," ")),a&&(n=G9(n)||n),A&&(s=e.slice(o+1,d),l&&(s=s.replace(j9," ")),c&&(s=G9(s)||s));let h=t[n];h===void 0?t[n]=s:h.pop?h.push(s):t[n]=[h,s]}s="",i=d,o=d,a=!1,c=!1,u=!1,l=!1}else f===61?o<=i?o=d:c=!0:f===43?o>i?l=!0:u=!0:f===37&&(o>i?c=!0:a=!0);return t}W9.exports=yTe});var K9=b((Net,X9)=>{var Ri=Array.from({length:256},(e,t)=>"%"+((t<16?"0":"")+t.toString(16)).toUpperCase()),ITe=new Int8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0]);function bTe(e){let t=e.length;if(t===0)return"";let r="",n=0,s=0;e:for(;s>6]+Ri[128|i&63];continue}if(i<55296||i>=57344){n=s+1,r+=Ri[224|i>>12]+Ri[128|i>>6&63]+Ri[128|i&63];continue}if(++s,s>=t)throw new Error("URI malformed");let o=e.charCodeAt(s)&1023;n=s+1,i=65536+((i&1023)<<10|o),r+=Ri[240|i>>18]+Ri[128|i>>12&63]+Ri[128|i>>6&63]+Ri[128|i&63]}return n===0?e:n{"use strict";var{encodeString:bT}=K9();function Z9(e){let t=typeof e;return t==="string"?bT(e):t==="bigint"?e.toString():t==="boolean"?e?"true":"false":t==="number"&&Number.isFinite(e)?e<1e21?""+e:bT(""+e):""}function BTe(e){let t="";if(e===null||typeof e!="object")return t;let r="&",n=Object.keys(e),s=n.length,i=0;for(let o=0;o{"use strict";var rH=z9(),nH=tH(),sH={parse:rH,stringify:nH};th.exports=sH;th.exports.default=sH;th.exports.parse=rH;th.exports.stringify=nH});var aH=b(oH=>{"use strict";Object.defineProperty(oH,"__esModule",{value:!0})});var cH=b(rh=>{"use strict";Object.defineProperty(rh,"__esModule",{value:!0});rh.types=void 0;var xTe;(function(e){e[e.ROOT=0]="ROOT",e[e.GROUP=1]="GROUP",e[e.POSITION=2]="POSITION",e[e.SET=3]="SET",e[e.RANGE=4]="RANGE",e[e.REPETITION=5]="REPETITION",e[e.REFERENCE=6]="REFERENCE",e[e.CHAR=7]="CHAR"})(xTe=rh.types||(rh.types={}))});var lH=b(uH=>{"use strict";Object.defineProperty(uH,"__esModule",{value:!0})});var Bo=b(bo=>{"use strict";var vTe=bo&&bo.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),BT=bo&&bo.__exportStar||function(e,t){for(var r in e)r!=="default"&&!Object.prototype.hasOwnProperty.call(t,r)&&vTe(t,e,r)};Object.defineProperty(bo,"__esModule",{value:!0});BT(aH(),bo);BT(cH(),bo);BT(lH(),bo)});var Jm=b(Yr=>{"use strict";Object.defineProperty(Yr,"__esModule",{value:!0});Yr.anyChar=Yr.notWhitespace=Yr.whitespace=Yr.notInts=Yr.ints=Yr.notWords=Yr.words=void 0;var ft=Bo(),AH=()=>[{type:ft.types.RANGE,from:48,to:57}],fH=()=>[{type:ft.types.CHAR,value:95},{type:ft.types.RANGE,from:97,to:122},{type:ft.types.RANGE,from:65,to:90},{type:ft.types.RANGE,from:48,to:57}],dH=()=>[{type:ft.types.CHAR,value:9},{type:ft.types.CHAR,value:10},{type:ft.types.CHAR,value:11},{type:ft.types.CHAR,value:12},{type:ft.types.CHAR,value:13},{type:ft.types.CHAR,value:32},{type:ft.types.CHAR,value:160},{type:ft.types.CHAR,value:5760},{type:ft.types.RANGE,from:8192,to:8202},{type:ft.types.CHAR,value:8232},{type:ft.types.CHAR,value:8233},{type:ft.types.CHAR,value:8239},{type:ft.types.CHAR,value:8287},{type:ft.types.CHAR,value:12288},{type:ft.types.CHAR,value:65279}],QTe=()=>[{type:ft.types.CHAR,value:10},{type:ft.types.CHAR,value:13},{type:ft.types.CHAR,value:8232},{type:ft.types.CHAR,value:8233}];Yr.words=()=>({type:ft.types.SET,set:fH(),not:!1});Yr.notWords=()=>({type:ft.types.SET,set:fH(),not:!0});Yr.ints=()=>({type:ft.types.SET,set:AH(),not:!1});Yr.notInts=()=>({type:ft.types.SET,set:AH(),not:!0});Yr.whitespace=()=>({type:ft.types.SET,set:dH(),not:!1});Yr.notWhitespace=()=>({type:ft.types.SET,set:dH(),not:!0});Yr.anyChar=()=>({type:ft.types.SET,set:QTe(),not:!0})});var pH=b(ms=>{"use strict";var TTe=ms&&ms.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),wTe=ms&&ms.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),STe=ms&&ms.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&TTe(t,e,r);return wTe(t,e),t};Object.defineProperty(ms,"__esModule",{value:!0});ms.tokenizeClass=ms.strToChars=void 0;var hH=Bo(),Fl=STe(Jm()),_Te="@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^ ?";ms.strToChars=e=>{let t=/(\[\\b\])|(\\)?\\(?:u([A-F0-9]{4})|x([A-F0-9]{2})|c([@A-Z[\\\]^?])|([0tnvfr]))/g;return e.replace(t,(r,n,s,i,o,a,c)=>{if(s)return r;let u=n?8:i?parseInt(i,16):o?parseInt(o,16):a?_Te.indexOf(a):{0:0,t:9,n:10,v:11,f:12,r:13}[c],l=String.fromCharCode(u);return/[[\]{}^$.|?*+()]/.test(l)?`\\${l}`:l})};ms.tokenizeClass=(e,t)=>{var r,n,s,i,o,a,c;let u=[],l,A,f=/\\(?:(w)|(d)|(s)|(W)|(D)|(S))|((?:(?:\\)(.)|([^\]\\]))-(((?:\\)])|(((?:\\)?([^\]])))))|(\])|(?:\\)?([^])/g;for(;(l=f.exec(e))!==null;){let d=(c=(a=(o=(i=(s=(n=(r=l[1]&&Fl.words())!==null&&r!==void 0?r:l[2]&&Fl.ints())!==null&&n!==void 0?n:l[3]&&Fl.whitespace())!==null&&s!==void 0?s:l[4]&&Fl.notWords())!==null&&i!==void 0?i:l[5]&&Fl.notInts())!==null&&o!==void 0?o:l[6]&&Fl.notWhitespace())!==null&&a!==void 0?a:l[7]&&{type:hH.types.RANGE,from:(l[8]||l[9]).charCodeAt(0),to:(A=l[10]).charCodeAt(A.length-1)})!==null&&c!==void 0?c:(A=l[16])&&{type:hH.types.CHAR,value:A.charCodeAt(0)};if(d)u.push(d);else return[u,f.lastIndex]}throw new SyntaxError(`Invalid regular expression: /${t}/: Unterminated character class`)}});var xT=b(Di=>{"use strict";var RTe=Di&&Di.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),DTe=Di&&Di.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),mH=Di&&Di.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&RTe(t,e,r);return DTe(t,e),t};Object.defineProperty(Di,"__esModule",{value:!0});Di.tokenizer=void 0;var gH=mH(pH()),Dr=Bo(),Hc=mH(Jm());Di.tokenizer=e=>{let t=0,r,n={type:Dr.types.ROOT,stack:[]},s=n,i=n.stack,o=[],a=[],c=0,u=A=>{throw new SyntaxError(`Invalid regular expression: /${e}/: Nothing to repeat at column ${A-1}`)},l=gH.strToChars(e);for(;ts){let i=r.stack.splice(r.index+1);for(let o of n.slice(s))r.stack.push({type:Dr.types.CHAR,value:o.charCodeAt(0)});r.stack.push(...i)}}}}});var CH=b($r=>{"use strict";var kTe=$r&&$r.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),FTe=$r&&$r.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),LTe=$r&&$r.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&kTe(t,e,r);return FTe(t,e),t};Object.defineProperty($r,"__esModule",{value:!0});$r.NOTANYCHAR=$r.WHITESPACE=$r.WORDS=$r.INTS=void 0;var Wm=LTe(Jm()),EH=Bo();function zm(e){let t={},r=0;for(let n of e)n.type===EH.types.CHAR&&(t[n.value]=!0),n.type===EH.types.RANGE&&(t[`${n.from}-${n.to}`]=!0),r+=1;return{lookup:()=>Object.assign({},t),len:r}}$r.INTS=zm(Wm.ints().set);$r.WORDS=zm(Wm.words().set);$r.WHITESPACE=zm(Wm.whitespace().set);$r.NOTANYCHAR=zm(Wm.anyChar().set)});var IH=b(Es=>{"use strict";var OTe=Es&&Es.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),MTe=Es&&Es.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),PTe=Es&&Es.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&OTe(t,e,r);return MTe(t,e),t};Object.defineProperty(Es,"__esModule",{value:!0});Es.writeSetTokens=Es.setChar=void 0;var eE=Bo(),Xm=PTe(CH());function Zm(e){return e===94?"\\^":e===92?"\\\\":e===93?"\\]":e===45?"\\-":String.fromCharCode(e)}Es.setChar=Zm;function Km(e,{lookup:t,len:r}){if(r!==e.length)return!1;let n=t();for(let s of e){if(s.type===eE.types.SET)return!1;let i=s.type===eE.types.CHAR?s.value:`${s.from}-${s.to}`;if(n[i])n[i]=!1;else return!1}return!0}function yH(e,t=!1){if(Km(e.set,Xm.INTS))return e.not?"\\D":"\\d";if(Km(e.set,Xm.WORDS))return e.not?"\\W":"\\w";if(e.not&&Km(e.set,Xm.NOTANYCHAR))return".";if(Km(e.set,Xm.WHITESPACE))return e.not?"\\S":"\\s";let r="";for(let s=0;s{"use strict";Object.defineProperty(Ll,"__esModule",{value:!0});Ll.reconstruct=void 0;var va=Bo(),vT=IH(),bH=e=>e.map(Ll.reconstruct).join(""),BH=e=>{if("options"in e)return e.options.map(bH).join("|");if("stack"in e)return bH(e.stack);throw new Error("options or stack must be Root or Group token")};Ll.reconstruct=e=>{switch(e.type){case va.types.ROOT:return BH(e);case va.types.CHAR:{let t=String.fromCharCode(e.value);return(/[[\\{}$^.|?*+()]/.test(t)?"\\":"")+t}case va.types.POSITION:return e.value==="^"||e.value==="$"?e.value:`\\${e.value}`;case va.types.REFERENCE:return`\\${e.value}`;case va.types.SET:return vT.writeSetTokens(e);case va.types.GROUP:return`(${e.remember?"":e.followedBy?"?=":e.notFollowedBy?"?!":"?:"}${BH(e)})`;case va.types.REPETITION:{let{min:t,max:r}=e,n;return t===0&&r===1?n="?":t===1&&r===1/0?n="+":t===0&&r===1/0?n="*":r===1/0?n=`{${t},}`:t===r?n=`{${t}}`:n=`{${t},${r}}`,`${Ll.reconstruct(e.value)}${n}`}case va.types.RANGE:return`${vT.setChar(e.from)}-${vT.setChar(e.to)}`;default:throw new Error(`Invalid token type ${e}`)}}});var QH=b((Cs,tE)=>{"use strict";var HTe=Cs&&Cs.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r),Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[r]}})}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),TT=Cs&&Cs.__exportStar||function(e,t){for(var r in e)r!=="default"&&!Object.prototype.hasOwnProperty.call(t,r)&&HTe(t,e,r)};Object.defineProperty(Cs,"__esModule",{value:!0});Cs.types=void 0;var xH=Bo();Object.defineProperty(Cs,"types",{enumerable:!0,get:function(){return xH.types}});TT(xT(),Cs);TT(QT(),Cs);var vH=xT(),qTe=QT();TT(Bo(),Cs);Cs.default=vH.tokenizer;tE.exports=vH.tokenizer;tE.exports.types=xH.types;tE.exports.reconstruct=qTe.reconstruct});var wH=b((Get,rE)=>{"use strict";var TH=QH(),VTe=TH.types;function wT(e,t){t||(t={});let r=t.limit===void 0?25:t.limit;YTe(e)?e=e.source:typeof e!="string"&&(e=String(e));try{e=TH(e)}catch{return!1}let n=0;return function s(i,o){let a,c,u;if(i.type===VTe.REPETITION&&(o++,n++,o>1||n>r))return!1;if(i.options){for(a=0,u=i.options.length;a{"use strict";SH.exports={name:"__fmw_internal_strategy_merged_tree_http_method__",storage:function(){let e={};return{get:t=>e[t]||null,set:(t,r)=>{e[t]=r}}},deriveConstraint:e=>e.method,mustMatchWhenDerived:!0}});var LH=b((Jet,FH)=>{"use strict";var _H=la(),RH=nE(),DH=Symbol("treeData");function NH(e,t=""){let r="",n=Object.keys(e);for(let s=0;skH(t)):typeof e=="symbol"?e.toString():typeof e=="function"?$Te(e):e}function GTe(e,t){if(!t.includeMeta)return{};let r=t.buildPrettyMeta(e),n={},s=t.includeMeta;Array.isArray(s)||(s=Reflect.ownKeys(r));for(let i of s){if(!Object.prototype.hasOwnProperty.call(r,i))continue;let o=i.toString(),a=r[i];if(a!=null){let c=JSON.stringify(kH(a));n[o]=c}}return n}function jTe(e){let t="";for(let[r,n]of Object.entries(e))t+=` +\u2022 (${r}) ${n}`;return t}function JTe(e){let t={...e.opts.constraints},r=t[RH.name];return delete t[RH.name],{...e,method:r,opts:{constraints:t}}}function WTe(e){let t=` (${e.method})`,r=e.opts.constraints||{};return Object.keys(r).length!==0&&(t+=" "+JSON.stringify(r)),t+=jTe(e.metaData),t}function zTe(e){return e.reduce((t,r)=>{for(let n of t)if(_H(r.opts.constraints,n.opts.constraints)&&_H(r.metaData,n.metaData))return n.method+=", "+r.method,t;return t.push(r),t},[])}function XTe(e,t,r){let n=e.routes;return r.method===void 0&&(n=n.map(JTe)),n=n.map(s=>(s.metaData=GTe(s,r),s)),r.method===void 0&&(n=zTe(n)),n.map(WTe).join(` +${t}`)}function sE(e,t,r,n){if((e.isLeafNode||n.commonPrefix!==!1)&&(r=r||"(empty root node)",t=t[r]={},e.isLeafNode&&(t[DH]=XTe(e,r,n)),r=""),e.staticChildren)for(let s of Object.values(e.staticChildren))sE(s,t,r+s.prefix,n);if(e.parametricChildren)for(let s of Object.values(e.parametricChildren)){let i=Array.from(s.nodePaths).join("|");sE(s,t,r+i,n)}e.wildcardChild&&sE(e.wildcardChild,t,"*",n)}function KTe(e,t){let r={};return sE(e,r,e.prefix,t),NH(r)}FH.exports={prettyPrintTree:KTe}});var MH=b((Wet,OH)=>{"use strict";var ZTe=nE(),ST=class{constructor(){this.unconstrainedHandler=null,this.constraints=[],this.handlers=[],this.constrainedHandlerStores=null}getMatchingHandler(t){return t===void 0?this.unconstrainedHandler:this._getHandlerMatchingConstraints(t)}addHandler(t,r){let n=r.params,s=r.opts.constraints||{},i={params:n,constraints:s,handler:r.handler,store:r.store||null,_createParamsObject:this._compileCreateParamsObject(n)},o=Object.keys(s);o.length===0&&(this.unconstrainedHandler=i);for(let c of o)this.constraints.includes(c)||(c==="version"?this.constraints.unshift(c):this.constraints.push(c));let a=o.includes(ZTe.name);if(!a&&this.handlers.length>=31)throw new Error("find-my-way supports a maximum of 31 route handlers per node when there are constraints, limit reached");this.handlers.push(i),this.handlers.sort((c,u)=>Object.keys(c.constraints).length-Object.keys(u.constraints).length),a||this._compileGetHandlerMatchingConstraints(t,s)}_compileCreateParamsObject(t){let r=[];for(let n=0;n{"use strict";var ewe=MH(),lE={STATIC:0,PARAMETRIC:1,WILDCARD:2},iE=class{constructor(){this.isLeafNode=!1,this.routes=null,this.handlerStorage=null}addRoute(t,r){this.routes===null&&(this.routes=[]),this.handlerStorage===null&&(this.handlerStorage=new ewe),this.isLeafNode=!0,this.routes.push(t),this.handlerStorage.addHandler(r,t)}},oE=class extends iE{constructor(){super(),this.staticChildren={}}findStaticMatchingChild(t,r){let n=this.staticChildren[t.charAt(r)];return n===void 0||!n.matchPrefix(t,r)?null:n}getStaticChild(t,r=0){if(t.length===r)return this;let n=this.findStaticMatchingChild(t,r);return n?n.getStaticChild(t,r+n.prefix.length):null}createStaticChild(t){if(t.length===0)return this;let r=this.staticChildren[t.charAt(0)];if(r){let s=1;for(;s(s.regex&&s.regex.source)===r);return n||null}createParametricChild(t,r,n){let s=this.getParametricChild(t);return s?(s.nodePaths.add(n),s):(s=new cE(t,r,n),this.parametricChildren.push(s),this.parametricChildren.sort((i,o)=>i.isRegex?o.isRegex?i.staticSuffix===null?1:o.staticSuffix===null?-1:o.staticSuffix.endsWith(i.staticSuffix)?1:i.staticSuffix.endsWith(o.staticSuffix)?-1:0:-1:1),s)}getWildcardChild(){return this.wildcardChild}createWildcardChild(){return this.wildcardChild=this.getWildcardChild()||new uE,this.wildcardChild}split(t,r){let n=this.prefix.slice(0,r),s=this.prefix.slice(r);this.prefix=s,this._compilePrefixMatch();let i=new e(n);return i.staticChildren[s.charAt(0)]=this,t.staticChildren[n.charAt(0)]=i,i}getNextNode(t,r,n,s){let i=this.findStaticMatchingChild(t,r),o=0;if(i===null){if(this.parametricChildren.length===0)return this.wildcardChild;i=this.parametricChildren[0],o=1}this.wildcardChild!==null&&n.push({paramsCount:s,brotherPathIndex:r,brotherNode:this.wildcardChild});for(let a=this.parametricChildren.length-1;a>=o;a--)n.push({paramsCount:s,brotherPathIndex:r,brotherNode:this.parametricChildren[a]});return i}_compilePrefixMatch(){if(this.prefix.length===1){this.matchPrefix=()=>!0;return}let t=[];for(let r=1;r{"use strict";var twe=require("node:assert");function nh(){if(!(this instanceof nh))return new nh;this.store={},this.maxMajor=0,this.maxMinors={},this.maxPatches={}}nh.prototype.set=function(e,t){if(typeof e!="string")throw new TypeError("Version should be a string");let[r,n,s]=e.split(".");if(isNaN(r))throw new TypeError("Major version must be a numeric value");return r=Number(r),n=Number(n)||0,s=Number(s)||0,r>=this.maxMajor&&(this.maxMajor=r,this.store.x=t,this.store["*"]=t,this.store["x.x"]=t,this.store["x.x.x"]=t),n>=(this.maxMinors[r]||0)&&(this.maxMinors[r]=n,this.store[`${r}.x`]=t,this.store[`${r}.x.x`]=t),s>=(this.maxPatches[`${r}.${n}`]||0)&&(this.maxPatches[`${r}.${n}`]=s,this.store[`${r}.${n}.x`]=t),this.store[`${r}.${n}.${s}`]=t,this};nh.prototype.get=function(e){return this.store[e]};HH.exports={name:"version",mustMatchWhenDerived:!0,storage:nh,validate(e){twe(typeof e=="string","Version should be a string")}}});var YH=b((Ket,VH)=>{"use strict";var rwe=require("node:assert");function nwe(){let e={},t=[];return{get:r=>{let n=e[r];if(n)return n;for(let s of t)if(s.host.test(r))return s.value},set:(r,n)=>{r instanceof RegExp?t.push({host:r,value:n}):e[r]=n}}}VH.exports={name:"host",mustMatchWhenDerived:!1,storage:nwe,validate(e){rwe(typeof e=="string"||Object.prototype.toString.call(e)==="[object RegExp]","Host should be a string or a RegExp")}}});var GH=b((Zet,$H)=>{"use strict";var swe=qH(),iwe=YH(),_T=require("node:assert"),RT=class{constructor(t){if(this.strategies={version:swe,host:iwe},this.strategiesInUse=new Set,this.asyncStrategiesInUse=new Set,t)for(let r of Object.values(t))this.addConstraintStrategy(r)}isStrategyUsed(t){return this.strategiesInUse.has(t)||this.asyncStrategiesInUse.has(t)}hasConstraintStrategy(t){let r=this.strategies[t];return r!==void 0?r.isCustom||this.isStrategyUsed(t):!1}addConstraintStrategy(t){if(_T(typeof t.name=="string"&&t.name!=="","strategy.name is required."),_T(t.storage&&typeof t.storage=="function","strategy.storage function is required."),_T(t.deriveConstraint&&typeof t.deriveConstraint=="function","strategy.deriveConstraint function is required."),this.strategies[t.name]&&this.strategies[t.name].isCustom)throw new Error(`There already exists a custom constraint with the name ${t.name}.`);if(this.isStrategyUsed(t.name))throw new Error(`There already exists a route with ${t.name} constraint.`);t.isCustom=!0,t.isAsync=t.deriveConstraint.length===3,this.strategies[t.name]=t,t.mustMatchWhenDerived&&this.noteUsage({[t.name]:t})}deriveConstraints(t,r,n){let s=this.deriveSyncConstraints(t,r);if(n===void 0)return s;this.deriveAsyncConstraints(s,t,r,n)}deriveSyncConstraints(t,r){}noteUsage(t){if(t){let r=this.strategiesInUse.size;for(let n in t)this.strategies[n].isAsync?this.asyncStrategiesInUse.add(n):this.strategiesInUse.add(n);r!==this.strategiesInUse.size&&this._buildDeriveConstraints()}}newStoreForConstraint(t){if(!this.strategies[t])throw new Error(`No strategy registered for constraint key ${t}`);return this.strategies[t].storage()}validateConstraints(t){for(let r in t){let n=t[r];if(typeof n>"u")throw new Error("Can't pass an undefined constraint value, must pass null or no key at all");let s=this.strategies[r];if(!s)throw new Error(`No strategy registered for constraint key ${r}`);s.validate&&s.validate(n)}}deriveAsyncConstraints(t,r,n,s){let i=this.asyncStrategiesInUse.size;if(i===0){s(null,t);return}t=t||{};for(let o of this.asyncStrategiesInUse)this.strategies[o].deriveConstraint(r,n,(c,u)=>{if(c!==null){s(c);return}t[o]=u,--i===0&&s(null,t)})}_buildDeriveConstraints(){if(this.strategiesInUse.size===0)return;let t=["return {"];for(let r of this.strategiesInUse){let n=this.strategies[r];n.isCustom?t.push(` ${n.name}: this.strategies.${r}.deriveConstraint(req, ctx),`):r==="version"?t.push(" version: req.headers['accept-version'],"):t.push(" host: req.headers.host || req.headers[':authority'],")}t.push("}"),this.deriveSyncConstraints=new Function("req","ctx",t.join(` +`)).bind(this)}};$H.exports=RT});var JH=b((ett,jH)=>{"use strict";var owe=["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE"];jH.exports=owe});var XH=b((ttt,zH)=>{"use strict";function WH(e,t){return e===50?t===53?"%":t===51?"#":t===52?"$":t===54?"&":t===66||t===98?"+":t===67||t===99?",":t===70||t===102?"/":null:e===51?t===65||t===97?":":t===66||t===98?";":t===68||t===100?"=":t===70||t===102?"?":null:e===52&&t===48?"@":null}function awe(e,t){let r=!1,n=!1,s="";for(let o=1;o{"use strict";var Zt=require("node:assert"),uwe=iH(),AE=wH(),NT=la(),{prettyPrintTree:lwe}=LH(),{StaticNode:KH,NODE_TYPES:ZH}=UH(),Awe=GH(),Ol=JH(),DT=nE(),{safeDecodeURI:fwe,safeDecodeURIComponent:eq}=XH(),tq=/^https?:\/\/.*?\//,qc=/(\/:[^/()]*?)\?(\/?)/;if(!AE(tq))throw new Error("the FULL_PATH_REGEXP is not safe, update this module");if(!AE(qc))throw new Error("the OPTIONAL_PARAM_REGEXP is not safe, update this module");function qt(e){if(!(this instanceof qt))return new qt(e);e=e||{},this._opts=e,e.defaultRoute?(Zt(typeof e.defaultRoute=="function","The default route must be a function"),this.defaultRoute=e.defaultRoute):this.defaultRoute=null,e.onBadUrl?(Zt(typeof e.onBadUrl=="function","The bad url handler must be a function"),this.onBadUrl=e.onBadUrl):this.onBadUrl=null,e.buildPrettyMeta?(Zt(typeof e.buildPrettyMeta=="function","buildPrettyMeta must be a function"),this.buildPrettyMeta=e.buildPrettyMeta):this.buildPrettyMeta=dwe,e.querystringParser?(Zt(typeof e.querystringParser=="function","querystringParser must be a function"),this.querystringParser=e.querystringParser):this.querystringParser=t=>t===""?{}:uwe.parse(t),this.caseSensitive=e.caseSensitive===void 0?!0:e.caseSensitive,this.ignoreTrailingSlash=e.ignoreTrailingSlash||!1,this.ignoreDuplicateSlashes=e.ignoreDuplicateSlashes||!1,this.maxParamLength=e.maxParamLength||100,this.allowUnsafeRegex=e.allowUnsafeRegex||!1,this.constrainer=new Awe(e.constraints),this.useSemicolonDelimiter=e.useSemicolonDelimiter||!1,this.routes=[],this.trees={}}qt.prototype.on=function(t,r,n,s,i){typeof n=="function"&&(s!==void 0&&(i=s),s=n,n={}),Zt(typeof r=="string","Path should be a string"),Zt(r.length>0,"The path could not be empty"),Zt(r[0]==="/"||r[0]==="*","The first character of a path should be `/` or `*`"),Zt(typeof s=="function","Handler should be a function");let o=r.match(qc);if(o){Zt(r.length===o.index+o[0].length,"Optional Parameter needs to be the last parameter of the path");let u=r.replace(qc,"$1$2"),l=r.replace(qc,"$2")||"/";this.on(t,u,n,s,i),this.on(t,l,n,s,i);return}let a=r;this.ignoreDuplicateSlashes&&(r=kT(r)),this.ignoreTrailingSlash&&(r=FT(r));let c=Array.isArray(t)?t:[t];for(let u of c)Zt(typeof u=="string","Method should be a string"),Zt(Ol.includes(u),`Method '${u}' is not an http method.`),this._on(u,r,n,s,i,a)};qt.prototype._on=function(t,r,n,s,i){let o={};n.constraints!==void 0&&(Zt(typeof n.constraints=="object"&&n.constraints!==null,"Constraints should be an object"),Object.keys(n.constraints).length!==0&&(o=n.constraints)),this.constrainer.validateConstraints(o),this.constrainer.noteUsage(o),this.trees[t]===void 0&&(this.trees[t]=new KH("/"));let a=r;if(a==="*"&&this.trees[t].prefix.length!==0){let f=this.trees[t];this.trees[t]=new KH(""),this.trees[t].staticChildren["/"]=f}let c=this.trees[t],u=c.prefix.length,l=[];for(let f=0;f<=a.length;f++){if(a.charCodeAt(f)===58&&a.charCodeAt(f+1)===58){f++;continue}let d=a.charCodeAt(f)===58&&a.charCodeAt(f+1)!==58,h=a.charCodeAt(f)===42;if(d||h||f===a.length&&f!==u){let p=a.slice(u,f);this.caseSensitive||(p=p.toLowerCase()),p=p.split("::").join(":"),p=p.split("%").join("%25"),c=c.createStaticChild(p)}if(d){let p=!1,C=!0,m="",I=[],y=f+1;for(let E=y;;E++){let B=a.charCodeAt(E),v=B===40,x=B===45||B===46,Q=B===47||E===a.length;if(v||x||Q){let S=a.slice(y,E);if(l.push(S),p=p||v||x,v){let D=sq(a,E),k=a.slice(E,D+1);this.allowUnsafeRegex||Zt(AE(new RegExp(k)),`The regex '${k}' is not safe!`),I.push(nq(k)),E=D+1,C=!0}else I.push(C?"(.*?)":`(${m}|(?:(?!${m}).)*)`),C=!1;let T=E;for(;E0,"The path could not be empty"),Zt(r[0]==="/"||r[0]==="*","The first character of a path should be `/` or `*`"),Zt(typeof n>"u"||typeof n=="object"&&!Array.isArray(n)&&n!==null,"Constraints should be an object or undefined.");let s=r.match(qc);if(s){Zt(r.length===s.index+s[0].length,"Optional Parameter needs to be the last parameter of the path");let o=r.replace(qc,"$1$2"),a=r.replace(qc,"$2");this.off(t,o,n),this.off(t,a,n);return}this.ignoreDuplicateSlashes&&(r=kT(r)),this.ignoreTrailingSlash&&(r=FT(r));let i=Array.isArray(t)?t:[t];for(let o of i)this._off(o,r,n)};qt.prototype._off=function(t,r,n){Zt(typeof t=="string","Method should be a string"),Zt(Ol.includes(t),`Method '${t}' is not an http method.`);function s(c){return t!==c.method||r!==c.path}function i(c){return s(c)||!NT(n,c.opts.constraints||{})}let o=n?i:s,a=this.routes.filter(o);this._rebuild(a)};qt.prototype.lookup=function(t,r,n,s){if(typeof n=="function"&&(s=n,n=void 0),s===void 0){let i=this.constrainer.deriveConstraints(t,n),o=this.find(t.method,t.url,i);return this.callHandler(o,t,r,n)}this.constrainer.deriveConstraints(t,n,(i,o)=>{if(i!==null){s(i);return}try{let a=this.find(t.method,t.url,o),c=this.callHandler(a,t,r,n);s(null,c)}catch(a){s(a)}})};qt.prototype.callHandler=function(t,r,n,s){return t===null?this._defaultRoute(r,n,s):s===void 0?t.handler(r,n,t.params,t.store,t.searchParams):t.handler.call(s,r,n,t.params,t.store,t.searchParams)};qt.prototype.find=function(t,r,n){let s=this.trees[t];if(s===void 0)return null;r.charCodeAt(0)!==47&&(r=r.replace(tq,"/")),this.ignoreDuplicateSlashes&&(r=kT(r));let i,o,a;try{i=fwe(r,this.useSemicolonDelimiter),r=i.path,o=i.querystring,a=i.shouldDecodeParam}catch{return this._onBadUrl(r)}this.ignoreTrailingSlash&&(r=FT(r));let c=r;this.caseSensitive===!1&&(r=r.toLowerCase());let u=this.maxParamLength,l=s.prefix.length,A=[],f=r.length,d=[];for(;;){if(l===f&&s.isLeafNode){let m=s.handlerStorage.getMatchingHandler(n);if(m!==null)return{handler:m.handler,store:m.store,params:m._createParamsObject(A),searchParams:this.querystringParser(o)}}let h=s.getNextNode(r,l,d,A.length);if(h===null){if(d.length===0)return null;let m=d.pop();l=m.brotherPathIndex,A.splice(m.paramsCount),h=m.brotherNode}if(s=h,s.kind===ZH.STATIC){l+=s.prefix.length;continue}if(s.kind===ZH.WILDCARD){let m=c.slice(l);a&&(m=eq(m)),A.push(m),l=f;continue}let p=c.indexOf("/",l);p===-1&&(p=f);let C=c.slice(l,p);if(a&&(C=eq(C)),s.isRegex){let m=s.regex.exec(C);if(m===null)continue;for(let I=1;Iu)return null;A.push(y)}}else{if(C.length>u)return null;A.push(C)}l=p}};qt.prototype._rebuild=function(e){this.reset();for(let t of e){let{method:r,path:n,opts:s,handler:i,store:o}=t;this._on(r,n,s,i,o)}};qt.prototype._defaultRoute=function(e,t,r){if(this.defaultRoute!==null)return r===void 0?this.defaultRoute(e,t):this.defaultRoute.call(r,e,t);t.statusCode=404,t.end()};qt.prototype._onBadUrl=function(e){if(this.onBadUrl===null)return null;let t=this.onBadUrl;return{handler:(r,n,s)=>t(e,r,n),params:{},store:null}};qt.prototype.prettyPrint=function(e={}){let t=e.method;e.buildPrettyMeta=this.buildPrettyMeta.bind(this);let r=null;if(t===void 0){let{version:n,host:s,...i}=this.constrainer.strategies;i[DT.name]=DT;let o=new qt({...this._opts,constraints:i}),a=this.routes.map(c=>{let u={...c.opts.constraints,[DT.name]:c.method};return{...c,method:"MERGED",opts:{constraints:u}}});o._rebuild(a),r=o.trees.MERGED}else r=this.trees[t];return r==null?"(empty tree)":lwe(r,e)};for(let e in Ol){if(!Ol.hasOwnProperty(e))continue;let t=Ol[e],r=t.toLowerCase();qt.prototype[r]=function(n,s,i){return this.on(t,n,s,i)}}qt.prototype.all=function(e,t,r){this.on(Ol,e,t,r)};iq.exports=qt;function rq(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function kT(e){return e.replace(/\/\/+/g,"/")}function FT(e){return e.length>1&&e.charCodeAt(e.length-1)===47?e.slice(0,-1):e}function nq(e){return e.charCodeAt(1)===94&&(e=e.slice(0,1)+e.slice(2)),e.charCodeAt(e.length-2)===36&&(e=e.slice(0,e.length-2)+e.slice(e.length-1)),e}function sq(e,t){let r=1;for(;t{"use strict";function OT(e,t,r,n){if(r===void 0)return t.header("content-length","0"),n(null,null);if(typeof r.resume=="function")return r.on("error",i=>{t.log.error({err:i},"Error on Stream found for HEAD route")}),r.resume(),n(null,null);let s=""+Buffer.byteLength(r);t.header("content-length",s),n(null,null)}function hwe(e){return e==null?OT:Array.isArray(e)?[...e,OT]:[e,OT]}oq.exports={parseHeadOnSendHandlers:hwe}});var xq=b((stt,Bq)=>{"use strict";var pwe=LT(),gwe=Ug(),cq=x1(),{onRequestAbortHookRunner:mwe,lifecycleHooks:uq,preParsingHookRunner:Ewe,onTimeoutHookRunner:Cwe,onRequestHookRunner:ywe}=na(),{supportedMethods:Iwe}=ex(),{normalizeSchema:bwe}=Wf(),{parseHeadOnSendHandlers:Bwe}=aq(),{FSTDEP007:xwe,FSTDEP008:vwe,FSTDEP014:lq}=mi(),{compileSchemasForValidation:Qwe,compileSchemasForSerialization:Twe}=C1(),{FST_ERR_SCH_VALIDATION_BUILD:wwe,FST_ERR_SCH_SERIALIZATION_BUILD:Swe,FST_ERR_DEFAULT_ROUTE_INVALID_TYPE:_we,FST_ERR_DUPLICATED_ROUTE:Rwe,FST_ERR_INVALID_URL:Dwe,FST_ERR_HOOK_INVALID_HANDLER:Aq,FST_ERR_ROUTE_OPTIONS_NOT_OBJ:Nwe,FST_ERR_ROUTE_DUPLICATED_HANDLER:kwe,FST_ERR_ROUTE_HANDLER_NOT_FN:fq,FST_ERR_ROUTE_MISSING_HANDLER:Fwe,FST_ERR_ROUTE_METHOD_NOT_SUPPORTED:Lwe,FST_ERR_ROUTE_METHOD_INVALID:Owe,FST_ERR_ROUTE_BODY_VALIDATION_SCHEMA_NOT_SUPPORTED:Mwe,FST_ERR_ROUTE_BODY_LIMIT_OPTION_NOT_INT:Pwe,FST_ERR_HOOK_INVALID_ASYNC_HANDLER:MT}=Mr(),{kRoutePrefix:Uwe,kLogLevel:Hwe,kLogSerializers:dq,kHooks:hq,kSchemaController:qwe,kOptions:pq,kReplySerializerDefault:PT,kReplyIsError:Vwe,kRequestPayloadStream:Ywe,kDisableRequestLogging:$we,kSchemaErrorFormatter:Gwe,kErrorHandler:gq,kHasBeenDecorated:mq,kRequestAcceptVersion:UT,kRouteByFastify:HT,kRouteContext:Eq}=mr(),{buildErrorHandler:jwe}=zf(),{createChildLogger:Jwe}=Jf(),{getGenReqId:Wwe}=jm();function zwe(e){let t=pwe(e.config),r,n,s,i,o,a,c,u,l,A,f,d,h,p=!1;return{setup(Q,S){r=S.avvio,n=S.fourOhFour,s=S.logger,i=S.hasLogger,o=S.setupResponseListeners,a=S.throwIfAlreadyStarted,d=S.validateHTTPVersion,f=Q.exposeHeadRoutes,c=Q.disableRequestLogging,u=Q.ignoreTrailingSlash,l=Q.ignoreDuplicateSlashes,A=Object.prototype.hasOwnProperty.call(Q,"return503OnClosing")?Q.return503OnClosing:!0,h=S.keepAliveConnections},routing:t.lookup.bind(t),route:v,hasRoute:E,prepareRoute:y,getDefaultRoute:function(){return lq(),t.defaultRoute},setDefaultRoute:function(Q){if(lq(),typeof Q!="function")throw new _we;t.defaultRoute=Q},routeHandler:x,closeRoutes:()=>{p=!0},printRoutes:t.prettyPrint.bind(t),addConstraintStrategy:C,hasConstraintStrategy:m,isAsyncConstraint:I,findRoute:B};function C(Q){return a("Cannot add constraint strategy!"),t.addConstraintStrategy(Q)}function m(Q){return t.hasConstraintStrategy(Q)}function I(){return t.constrainer.asyncStrategiesInUse.size>0}function y({method:Q,url:S,options:T,handler:R,isFastify:D}){if(typeof S!="string")throw new Dwe(typeof S);if(!R&&typeof T=="function")R=T,T={};else if(R&&typeof R=="function"){if(Object.prototype.toString.call(T)!=="[object Object]")throw new Nwe(Q,S);if(T.handler)throw typeof T.handler=="function"?new kwe(Q,S):new fq(Q,S)}return T=Object.assign({},T,{method:Q,url:S,path:S,handler:R||T&&T.handler}),v.call(this,{options:T,isFastify:D})}function E({options:Q}){let S=Q.method?.toUpperCase()??"";return B({...Q,method:S})!==null}function B(Q){let S=t.find(Q.method,Q.url||"",Q.constraints);return S?{handler:S.handler,params:S.params,searchParams:S.searchParams}:null}function v({options:Q,isFastify:S}){let T={...Q},{exposeHeadRoute:R}=T,k=R!=null?R:f,F=T.method==="GET"||Array.isArray(T.method)&&T.method.includes("GET"),j=T.method==="HEAD"||Array.isArray(T.method)&&T.method.includes("HEAD"),H=k&&F?{...Q}:null;a("Cannot add route!");let U=T.url||T.path||"";if(Array.isArray(T.method))for(var X=0;X0&&T.method!=="HEAD")switch(T.prefixTrailingSlash){case"slash":Y.call(this,{path:U,isFastify:S});break;case"no-slash":Y.call(this,{path:"",isFastify:S});break;case"both":default:Y.call(this,{path:"",isFastify:S}),u!==!0&&(l!==!0||!L.endsWith("/"))&&Y.call(this,{path:U,prefixing:!0,isFastify:S})}else U[0]==="/"&&L.endsWith("/")?Y.call(this,{path:U.slice(1),isFastify:S}):Y.call(this,{path:U,isFastify:S});return this;function Y({path:G,prefixing:q=!1,isFastify:Ge=!1}){let ve=L+G;if(T.url=ve,T.path=ve,T.routePath=G,T.prefix=L,T.logLevel=T.logLevel||this[Hwe],(this[dq]||T.logSerializers)&&(T.logSerializers=Object.assign(Object.create(this[dq]),T.logSerializers)),T.attachValidation==null&&(T.attachValidation=!1),q===!1)for(let lt of this[hq].onRoute)lt.call(this,T);for(let lt of uq)if(T&< in T){if(Array.isArray(T[lt]))for(let Re of T[lt]){if(typeof Re!="function")throw new Aq(lt,Object.prototype.toString.call(Re));if(lt==="onSend"||lt==="preSerialization"||lt==="onError"||lt==="preParsing"){if(Re.constructor.name==="AsyncFunction"&&Re.length===4)throw new MT}else if(lt==="onRequestAbort"){if(Re.constructor.name==="AsyncFunction"&&Re.length!==1)throw new MT}else if(Re.constructor.name==="AsyncFunction"&&Re.length===3)throw new MT}else if(T[lt]!==void 0&&typeof T[lt]!="function")throw new Aq(lt,Object.prototype.toString.call(T[lt]))}let Ce=T.constraints||{},ye={...T.config,url:ve,method:T.method},Se=new gwe({schema:T.schema,handler:T.handler.bind(this),config:ye,errorHandler:T.errorHandler,childLoggerFactory:T.childLoggerFactory,bodyLimit:T.bodyLimit,logLevel:T.logLevel,logSerializers:T.logSerializers,attachValidation:T.attachValidation,schemaErrorFormatter:T.schemaErrorFormatter,replySerializer:this[PT],validatorCompiler:T.validatorCompiler,serializerCompiler:T.serializerCompiler,exposeHeadRoute:k,prefixTrailingSlash:T.prefixTrailingSlash||"both",server:this,isFastify:Ge});T.version&&(vwe(),Ce.version=T.version);let be=t.findRoute("HEAD",T.url,Ce),Pn=be!==null;j&&Pn&&!Se[HT]&&be.store[HT]&&t.off("HEAD",T.url,Ce);try{t.on(T.method,T.url,{constraints:Ce},x,Se)}catch(lt){if(!Se[HT])throw lt.message.includes(`Method '${T.method}' already declared for route`)?new Rwe(T.method,T.url):lt}if(this.after((lt,Re)=>{Se.errorHandler=T.errorHandler?jwe(this[gq],T.errorHandler):this[gq],Se._parserOptions.limit=T.bodyLimit||null,Se.logLevel=T.logLevel,Se.logSerializers=T.logSerializers,Se.attachValidation=T.attachValidation,Se[PT]=this[PT],Se.schemaErrorFormatter=T.schemaErrorFormatter||this[Gwe]||Se.schemaErrorFormatter,r.once("preReady",()=>{for(let P of uq){let K=this[hq][P].concat(T[P]||[]).map(oe=>oe.bind(this));Se[P]=K.length?K:null}for(;!Se.Request[mq]&&Se.Request.parent;)Se.Request=Se.Request.parent;for(;!Se.Reply[mq]&&Se.Reply.parent;)Se.Reply=Se.Reply.parent;if(n.setContext(this,Se),T.schema){Se.schema=bwe(T,Se.schema,this.initialConfig);let P=this[qwe];!T.validatorCompiler&&(T.schema.body||T.schema.headers||T.schema.querystring||T.schema.params)&&P.setupValidator(this[pq]);try{let K=typeof T?.validatorCompiler=="function"||P.isCustomValidatorCompiler;Qwe(Se,T.validatorCompiler||P.validatorCompiler,K)}catch(K){throw new wwe(T.method,ve,K.message)}T.schema.response&&!T.serializerCompiler&&P.setupSerializer(this[pq]);try{Twe(Se,T.serializerCompiler||P.serializerCompiler)}catch(K){throw new Swe(T.method,ve,K.message)}}}),Re(lt)}),k&&F&&!j&&!Pn){let lt=Bwe(H.onSend);y.call(this,{method:"HEAD",url:G,options:{...H,onSend:lt},isFastify:!0})}else Pn&&R&&xwe()}}function x(Q,S,T,R,D){let k=Wwe(R.server,Q),F={level:R.logLevel};R.logSerializers&&(F.serializers=R.logSerializers);let j=Jwe(R,s,Q,k,F);if(j[$we]=c,!d(Q.httpVersion)){j.info({res:{statusCode:505}},"request aborted - invalid HTTP version");let L='{"error":"HTTP Version Not Supported","message":"HTTP Version Not Supported","statusCode":505}',Y={"Content-Type":"application/json","Content-Length":L.length};S.writeHead(505,Y),S.end(L);return}if(p===!0&&(Q.httpVersionMajor!==2&&S.setHeader("Connection","close"),A)){let L={"Content-Type":"application/json","Content-Length":"80"};S.writeHead(503,L),S.end('{"error":"Service Unavailable","message":"Service Unavailable","statusCode":503}'),j.info({res:{statusCode:503}},"request aborted - refusing to accept new requests as server is closing");return}String.prototype.toLowerCase.call(Q.headers.connection||"")==="keep-alive"&&h.has(Q.socket)===!1&&(h.add(Q.socket),Q.socket.on("close",Zwe.bind({keepAliveConnections:h,socket:Q.socket}))),Q.headers[UT]!==void 0&&(Q.headers["accept-version"]=Q.headers[UT],Q.headers[UT]=void 0);let U=new R.Request(k,T,Q,D,j,R),X=new R.Reply(S,U,j);c===!1&&j.info({req:U},"incoming request"),(i===!0||R.onResponse!==null)&&o(X),R.onRequest!==null?ywe(R.onRequest,U,X,Iq):Iq(null,U,X),R.onRequestAbort!==null&&Q.on("close",()=>{Q.aborted&&mwe(R.onRequestAbort,U,Xwe.bind(null,X))}),R.onTimeout!==null&&(U.raw.socket._meta||U.raw.socket.on("timeout",Kwe),U.raw.socket._meta={context:R,request:U,reply:X})}}function Xwe(e,t){t&&e.log.error({err:t},"onRequestAborted hook failed")}function Kwe(){let{context:e,request:t,reply:r}=this._meta;Cwe(e.onTimeout,t,r,eSe)}function Cq(e){if(typeof e!="string")throw new Owe;if(e=e.toUpperCase(),Iwe.indexOf(e)===-1)throw new Lwe(e);return e}function yq(e,t,r){if((e==="GET"||e==="HEAD")&&r&&r.body)throw new Mwe(e,t)}function bq(e){if(e!==void 0&&(!Number.isInteger(e)||e<=0))throw new Pwe(e)}function Iq(e,t,r){if(r.sent!==!0){if(e!=null){r[Vwe]=!0,r.send(e);return}t[Ywe]=t.raw,t[Eq].preParsing!==null?Ewe(t[Eq].preParsing,t,r,cq):cq(null,t,r)}}function Zwe(){this.keepAliveConnections.delete(this.socket)}function eSe(){}Bq.exports={buildRouting:zwe,validateBodyLimitOption:bq}});var Rq=b((itt,_q)=>{"use strict";var tSe=LT(),vq=xg(),Qq=Pg(),rSe=Ug(),{kRoutePrefix:nSe,kCanSetNotFoundHandler:sh,kFourOhFourLevelInstance:ih,kFourOhFourContext:Ni,kHooks:sSe,kErrorHandler:Tq}=mr(),{lifecycleHooks:iSe}=na(),{buildErrorHandler:oSe}=zf(),{FST_ERR_NOT_FOUND:aSe}=Mr(),{createChildLogger:wq}=Jf(),{getGenReqId:Sq}=jm();function cSe(e){let{logger:t,disableRequestLogging:r}=e,n=tSe({onBadUrl:a(),defaultRoute:A}),s=null;return{router:n,setNotFoundHandler:u,setContext:c,arrange404:i};function i(f){f[ih]=f,f[sh]=!0,n.onBadUrl=n.onBadUrl.bind(f),n.defaultRoute=n.defaultRoute.bind(f)}function o(f,d){let{url:h,method:p}=f.raw,C=`Route ${p}:${h} not found`;r||f.log.info(C),d.code(404).send({message:C,error:"Not Found",statusCode:404})}function a(){return function(d,h,p){let C=this[ih][Ni],m=Sq(C.server,h),I=wq(C,t,h,m),y=new Qq(m,null,h,null,I,C),E=new vq(p,y,I);s(y,E)}}function c(f,d){let h=Object.assign({},f[Ni]);h.onSend=d.onSend,d[Ni]=h}function u(f,d,h,p){this[sh]===void 0&&(this[sh]=!0),this[Ni]===void 0&&(this[Ni]=null);let C=this,m=this[nSe]||"/";if(this[sh]===!1)throw new Error(`Not found handler already set for Fastify instance with prefix: '${m}'`);typeof f=="object"&&(f.preHandler&&(Array.isArray(f.preHandler)?f.preHandler=f.preHandler.map(I=>I.bind(C)):f.preHandler=f.preHandler.bind(C)),f.preValidation&&(Array.isArray(f.preValidation)?f.preValidation=f.preValidation.map(I=>I.bind(C)):f.preValidation=f.preValidation.bind(C))),typeof f=="function"&&(d=f,f=void 0),f=f||{},d?(this[ih][sh]=!1,d=d.bind(this),s=d):(d=o,s=o),this.after((I,y)=>{l.call(this,m,f,d,h,p),y(I)})}function l(f,d,h,p,C){let m=new rSe({schema:d.schema,handler:h,config:d.config||{},server:this});if(p.once("preReady",()=>{let I=this[Ni];for(let y of iSe){let E=this[sSe][y].concat(d[y]||[]).map(B=>B.bind(this));I[y]=E.length?E:null}I.errorHandler=d.errorHandler?oSe(this[Tq],d.errorHandler):this[Tq]}),this[Ni]!==null&&f==="/"){Object.assign(this[Ni],m);return}this[ih][Ni]=m,n.all(f+(f.endsWith("/")?"*":"/*"),C,m),n.all(f,C,m)}function A(f,d){let h=this[ih][Ni],p=Sq(h.server,f),C=wq(h,t,f,p);C.info({req:f},"incoming request");let m=new Qq(p,null,f,null,C,h),I=new vq(d,m,C);m.log.warn("the default handler for 404 did not catch this, this is likely a fastify bug, please report it"),m.log.warn(n.prettyPrint()),I.code(404).send(new aSe)}}_q.exports=cSe});var Nq=b((ott,fE)=>{"use strict";fE.exports=at;fE.exports.default=at;var Dq={type:"object",additionalProperties:!1,properties:{connectionTimeout:{type:"integer",default:0},keepAliveTimeout:{type:"integer",default:72e3},forceCloseConnections:{oneOf:[{type:"string",pattern:"idle"},{type:"boolean"}]},maxRequestsPerSocket:{type:"integer",default:0,nullable:!0},requestTimeout:{type:"integer",default:0},bodyLimit:{type:"integer",default:1048576},caseSensitive:{type:"boolean",default:!0},allowUnsafeRegex:{type:"boolean",default:!1},http2:{type:"boolean"},https:{if:{not:{oneOf:[{type:"boolean"},{type:"null"},{type:"object",additionalProperties:!1,required:["allowHTTP1"],properties:{allowHTTP1:{type:"boolean"}}}]}},then:{setDefaultValue:!0}},ignoreTrailingSlash:{type:"boolean",default:!1},ignoreDuplicateSlashes:{type:"boolean",default:!1},disableRequestLogging:{type:"boolean",default:!1},jsonShorthand:{type:"boolean",default:!0},maxParamLength:{type:"integer",default:100},onProtoPoisoning:{type:"string",default:"error"},onConstructorPoisoning:{type:"string",default:"error"},pluginTimeout:{type:"integer",default:1e4},requestIdHeader:{anyOf:[{enum:[!1]},{type:"string"}],default:"request-id"},requestIdLogLabel:{type:"string",default:"reqId"},http2SessionTimeout:{type:"integer",default:72e3},exposeHeadRoutes:{type:"boolean",default:!0},useSemicolonDelimiter:{type:"boolean",default:!0},versioning:{type:"object",additionalProperties:!0,required:["storage","deriveVersion"],properties:{storage:{},deriveVersion:{}}},constraints:{type:"object",additionalProperties:{type:"object",required:["name","storage","validate","deriveConstraint"],additionalProperties:!0,properties:{name:{type:"string"},storage:{},validate:{},deriveConstraint:{}}}}}},uSe=Object.prototype.hasOwnProperty,lSe=new RegExp("idle","u");function at(e,{instancePath:t="",parentData:r,parentDataProperty:n,rootData:s=e}={}){let i=null,o=0;if(o===0)if(e&&typeof e=="object"&&!Array.isArray(e)){e.connectionTimeout===void 0&&(e.connectionTimeout=0),e.keepAliveTimeout===void 0&&(e.keepAliveTimeout=72e3),e.maxRequestsPerSocket===void 0&&(e.maxRequestsPerSocket=0),e.requestTimeout===void 0&&(e.requestTimeout=0),e.bodyLimit===void 0&&(e.bodyLimit=1048576),e.caseSensitive===void 0&&(e.caseSensitive=!0),e.allowUnsafeRegex===void 0&&(e.allowUnsafeRegex=!1),e.ignoreTrailingSlash===void 0&&(e.ignoreTrailingSlash=!1),e.ignoreDuplicateSlashes===void 0&&(e.ignoreDuplicateSlashes=!1),e.disableRequestLogging===void 0&&(e.disableRequestLogging=!1),e.jsonShorthand===void 0&&(e.jsonShorthand=!0),e.maxParamLength===void 0&&(e.maxParamLength=100),e.onProtoPoisoning===void 0&&(e.onProtoPoisoning="error"),e.onConstructorPoisoning===void 0&&(e.onConstructorPoisoning="error"),e.pluginTimeout===void 0&&(e.pluginTimeout=1e4),e.requestIdHeader===void 0&&(e.requestIdHeader="request-id"),e.requestIdLogLabel===void 0&&(e.requestIdLogLabel="reqId"),e.http2SessionTimeout===void 0&&(e.http2SessionTimeout=72e3),e.exposeHeadRoutes===void 0&&(e.exposeHeadRoutes=!0),e.useSemicolonDelimiter===void 0&&(e.useSemicolonDelimiter=!0);let h=o;for(let p in e)uSe.call(Dq.properties,p)||delete e[p];if(h===o){let p=e.connectionTimeout,C=o;if(!(typeof p=="number"&&!(p%1)&&!isNaN(p)&&isFinite(p))){let m=typeof p,I;if(I===void 0)if(m==="boolean"||p===null||m==="string"&&p&&p==+p&&!(p%1))I=+p;else return at.errors=[{instancePath:t+"/connectionTimeout",schemaPath:"#/properties/connectionTimeout/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;I!==void 0&&(p=I,e!==void 0&&(e.connectionTimeout=I))}var a=C===o;if(a){let m=e.keepAliveTimeout,I=o;if(!(typeof m=="number"&&!(m%1)&&!isNaN(m)&&isFinite(m))){let E=typeof m,B;if(B===void 0)if(E==="boolean"||m===null||E==="string"&&m&&m==+m&&!(m%1))B=+m;else return at.errors=[{instancePath:t+"/keepAliveTimeout",schemaPath:"#/properties/keepAliveTimeout/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;B!==void 0&&(m=B,e!==void 0&&(e.keepAliveTimeout=B))}var a=I===o;if(a){if(e.forceCloseConnections!==void 0){let E=e.forceCloseConnections,B=o,v=o,x=!1,Q=null,S=o;if(typeof E!="string"){let D=typeof E,k;if(k===void 0)if(D=="number"||D=="boolean")k=""+E;else if(E===null)k="";else{let F={instancePath:t+"/forceCloseConnections",schemaPath:"#/properties/forceCloseConnections/oneOf/0/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[F]:i.push(F),o++}k!==void 0&&(E=k,e!==void 0&&(e.forceCloseConnections=k))}if(o===S&&typeof E=="string"&&!lSe.test(E)){let D={instancePath:t+"/forceCloseConnections",schemaPath:"#/properties/forceCloseConnections/oneOf/0/pattern",keyword:"pattern",params:{pattern:"idle"},message:'must match pattern "idle"'};i===null?i=[D]:i.push(D),o++}var c=S===o;c&&(x=!0,Q=0);let T=o;if(typeof E!="boolean"){let D;if(D===void 0)if(E==="false"||E===0||E===null)D=!1;else if(E==="true"||E===1)D=!0;else{let k={instancePath:t+"/forceCloseConnections",schemaPath:"#/properties/forceCloseConnections/oneOf/1/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"};i===null?i=[k]:i.push(k),o++}D!==void 0&&(E=D,e!==void 0&&(e.forceCloseConnections=D))}var c=T===o;if(c&&x?(x=!1,Q=[Q,1]):c&&(x=!0,Q=1),x)o=v,i!==null&&(v?i.length=v:i=null);else{let D={instancePath:t+"/forceCloseConnections",schemaPath:"#/properties/forceCloseConnections/oneOf",keyword:"oneOf",params:{passingSchemas:Q},message:"must match exactly one schema in oneOf"};return i===null?i=[D]:i.push(D),o++,at.errors=i,!1}var a=B===o}else var a=!0;if(a){let E=e.maxRequestsPerSocket,B=o;if(!(typeof E=="number"&&!(E%1)&&!isNaN(E)&&isFinite(E))&&E!==null){let x=typeof E,Q;if(Q===void 0)if(x==="boolean"||E===null||x==="string"&&E&&E==+E&&!(E%1))Q=+E;else if(E===""||E===0||E===!1)Q=null;else return at.errors=[{instancePath:t+"/maxRequestsPerSocket",schemaPath:"#/properties/maxRequestsPerSocket/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;Q!==void 0&&(E=Q,e!==void 0&&(e.maxRequestsPerSocket=Q))}var a=B===o;if(a){let x=e.requestTimeout,Q=o;if(!(typeof x=="number"&&!(x%1)&&!isNaN(x)&&isFinite(x))){let T=typeof x,R;if(R===void 0)if(T==="boolean"||x===null||T==="string"&&x&&x==+x&&!(x%1))R=+x;else return at.errors=[{instancePath:t+"/requestTimeout",schemaPath:"#/properties/requestTimeout/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;R!==void 0&&(x=R,e!==void 0&&(e.requestTimeout=R))}var a=Q===o;if(a){let T=e.bodyLimit,R=o;if(!(typeof T=="number"&&!(T%1)&&!isNaN(T)&&isFinite(T))){let k=typeof T,F;if(F===void 0)if(k==="boolean"||T===null||k==="string"&&T&&T==+T&&!(T%1))F=+T;else return at.errors=[{instancePath:t+"/bodyLimit",schemaPath:"#/properties/bodyLimit/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;F!==void 0&&(T=F,e!==void 0&&(e.bodyLimit=F))}var a=R===o;if(a){let k=e.caseSensitive,F=o;if(typeof k!="boolean"){let H;if(H===void 0)if(k==="false"||k===0||k===null)H=!1;else if(k==="true"||k===1)H=!0;else return at.errors=[{instancePath:t+"/caseSensitive",schemaPath:"#/properties/caseSensitive/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;H!==void 0&&(k=H,e!==void 0&&(e.caseSensitive=H))}var a=F===o;if(a){let H=e.allowUnsafeRegex,U=o;if(typeof H!="boolean"){let L;if(L===void 0)if(H==="false"||H===0||H===null)L=!1;else if(H==="true"||H===1)L=!0;else return at.errors=[{instancePath:t+"/allowUnsafeRegex",schemaPath:"#/properties/allowUnsafeRegex/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;L!==void 0&&(H=L,e!==void 0&&(e.allowUnsafeRegex=L))}var a=U===o;if(a){if(e.http2!==void 0){let L=e.http2,Y=o;if(typeof L!="boolean"){let q;if(q===void 0)if(L==="false"||L===0||L===null)q=!1;else if(L==="true"||L===1)q=!0;else return at.errors=[{instancePath:t+"/http2",schemaPath:"#/properties/http2/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;q!==void 0&&(L=q,e!==void 0&&(e.http2=q))}var a=Y===o}else var a=!0;if(a){if(e.https!==void 0){let L=e.https,Y=o,G=o,q=!0,Ge=o,ve=o,Ce=o,ye=o,Se=!1,be=null,Pn=o;if(typeof L!="boolean"){let P;if(P===void 0)if(L==="false"||L===0||L===null)P=!1;else if(L==="true"||L===1)P=!0;else{let K={};i===null?i=[K]:i.push(K),o++}P!==void 0&&(L=P,e!==void 0&&(e.https=P))}var u=Pn===o;u&&(Se=!0,be=0);let lt=o;if(L!==null){let P;if(P===void 0)if(L===""||L===0||L===!1)P=null;else{let K={};i===null?i=[K]:i.push(K),o++}P!==void 0&&(L=P,e!==void 0&&(e.https=P))}var u=lt===o;if(u&&Se)Se=!1,be=[be,1];else{u&&(Se=!0,be=1);let P=o;if(o===P)if(L&&typeof L=="object"&&!Array.isArray(L)){let oe;if(L.allowHTTP1===void 0&&(oe="allowHTTP1")){let le={};i===null?i=[le]:i.push(le),o++}else{let le=o;for(let Le in L)Le!=="allowHTTP1"&&delete L[Le];if(le===o&&L.allowHTTP1!==void 0){let Le=L.allowHTTP1;if(typeof Le!="boolean"){let de;if(de===void 0)if(Le==="false"||Le===0||Le===null)de=!1;else if(Le==="true"||Le===1)de=!0;else{let At={};i===null?i=[At]:i.push(At),o++}de!==void 0&&(Le=de,L!==void 0&&(L.allowHTTP1=de))}}}}else{let oe={};i===null?i=[oe]:i.push(oe),o++}var u=P===o;u&&Se?(Se=!1,be=[be,2]):u&&(Se=!0,be=2)}if(Se)o=ye,i!==null&&(ye?i.length=ye:i=null);else{let P={};i===null?i=[P]:i.push(P),o++}var l=Ce===o;if(l){let P={};i===null?i=[P]:i.push(P),o++}else o=ve,i!==null&&(ve?i.length=ve:i=null);var A=Ge===o;if(o=G,i!==null&&(G?i.length=G:i=null),A){let P=o;e.https=!0;var A=P===o;q=A}if(!q){let P={instancePath:t+"/https",schemaPath:"#/properties/https/if",keyword:"if",params:{failingKeyword:"then"},message:'must match "then" schema'};return i===null?i=[P]:i.push(P),o++,at.errors=i,!1}var a=Y===o}else var a=!0;if(a){let L=e.ignoreTrailingSlash,Y=o;if(typeof L!="boolean"){let q;if(q===void 0)if(L==="false"||L===0||L===null)q=!1;else if(L==="true"||L===1)q=!0;else return at.errors=[{instancePath:t+"/ignoreTrailingSlash",schemaPath:"#/properties/ignoreTrailingSlash/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;q!==void 0&&(L=q,e!==void 0&&(e.ignoreTrailingSlash=q))}var a=Y===o;if(a){let q=e.ignoreDuplicateSlashes,Ge=o;if(typeof q!="boolean"){let Ce;if(Ce===void 0)if(q==="false"||q===0||q===null)Ce=!1;else if(q==="true"||q===1)Ce=!0;else return at.errors=[{instancePath:t+"/ignoreDuplicateSlashes",schemaPath:"#/properties/ignoreDuplicateSlashes/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;Ce!==void 0&&(q=Ce,e!==void 0&&(e.ignoreDuplicateSlashes=Ce))}var a=Ge===o;if(a){let Ce=e.disableRequestLogging,ye=o;if(typeof Ce!="boolean"){let be;if(be===void 0)if(Ce==="false"||Ce===0||Ce===null)be=!1;else if(Ce==="true"||Ce===1)be=!0;else return at.errors=[{instancePath:t+"/disableRequestLogging",schemaPath:"#/properties/disableRequestLogging/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;be!==void 0&&(Ce=be,e!==void 0&&(e.disableRequestLogging=be))}var a=ye===o;if(a){let be=e.jsonShorthand,Pn=o;if(typeof be!="boolean"){let Re;if(Re===void 0)if(be==="false"||be===0||be===null)Re=!1;else if(be==="true"||be===1)Re=!0;else return at.errors=[{instancePath:t+"/jsonShorthand",schemaPath:"#/properties/jsonShorthand/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;Re!==void 0&&(be=Re,e!==void 0&&(e.jsonShorthand=Re))}var a=Pn===o;if(a){let Re=e.maxParamLength,P=o;if(!(typeof Re=="number"&&!(Re%1)&&!isNaN(Re)&&isFinite(Re))){let oe=typeof Re,le;if(le===void 0)if(oe==="boolean"||Re===null||oe==="string"&&Re&&Re==+Re&&!(Re%1))le=+Re;else return at.errors=[{instancePath:t+"/maxParamLength",schemaPath:"#/properties/maxParamLength/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;le!==void 0&&(Re=le,e!==void 0&&(e.maxParamLength=le))}var a=P===o;if(a){let oe=e.onProtoPoisoning,le=o;if(typeof oe!="string"){let de=typeof oe,At;if(At===void 0)if(de=="number"||de=="boolean")At=""+oe;else if(oe===null)At="";else return at.errors=[{instancePath:t+"/onProtoPoisoning",schemaPath:"#/properties/onProtoPoisoning/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;At!==void 0&&(oe=At,e!==void 0&&(e.onProtoPoisoning=At))}var a=le===o;if(a){let de=e.onConstructorPoisoning,At=o;if(typeof de!="string"){let rt=typeof de,fr;if(fr===void 0)if(rt=="number"||rt=="boolean")fr=""+de;else if(de===null)fr="";else return at.errors=[{instancePath:t+"/onConstructorPoisoning",schemaPath:"#/properties/onConstructorPoisoning/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;fr!==void 0&&(de=fr,e!==void 0&&(e.onConstructorPoisoning=fr))}var a=At===o;if(a){let rt=e.pluginTimeout,fr=o;if(!(typeof rt=="number"&&!(rt%1)&&!isNaN(rt)&&isFinite(rt))){let is=typeof rt,gn;if(gn===void 0)if(is==="boolean"||rt===null||is==="string"&&rt&&rt==+rt&&!(rt%1))gn=+rt;else return at.errors=[{instancePath:t+"/pluginTimeout",schemaPath:"#/properties/pluginTimeout/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;gn!==void 0&&(rt=gn,e!==void 0&&(e.pluginTimeout=gn))}var a=fr===o;if(a){let is=e.requestIdHeader,gn=o,no=o,ea=!1,_p=o;if(is!==!1){let nr={instancePath:t+"/requestIdHeader",schemaPath:"#/properties/requestIdHeader/anyOf/0/enum",keyword:"enum",params:{allowedValues:Dq.properties.requestIdHeader.anyOf[0].enum},message:"must be equal to one of the allowed values"};i===null?i=[nr]:i.push(nr),o++}var f=_p===o;if(ea=ea||f,!ea){let nr=o;if(typeof is!="string"){let Rp=typeof is,Rt;if(Rt===void 0)if(Rp=="number"||Rp=="boolean")Rt=""+is;else if(is===null)Rt="";else{let mn={instancePath:t+"/requestIdHeader",schemaPath:"#/properties/requestIdHeader/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[mn]:i.push(mn),o++}Rt!==void 0&&(is=Rt,e!==void 0&&(e.requestIdHeader=Rt))}var f=nr===o;ea=ea||f}if(ea)o=no,i!==null&&(no?i.length=no:i=null);else{let nr={instancePath:t+"/requestIdHeader",schemaPath:"#/properties/requestIdHeader/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};return i===null?i=[nr]:i.push(nr),o++,at.errors=i,!1}var a=gn===o;if(a){let nr=e.requestIdLogLabel,hc=o;if(typeof nr!="string"){let Rt=typeof nr,mn;if(mn===void 0)if(Rt=="number"||Rt=="boolean")mn=""+nr;else if(nr===null)mn="";else return at.errors=[{instancePath:t+"/requestIdLogLabel",schemaPath:"#/properties/requestIdLogLabel/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;mn!==void 0&&(nr=mn,e!==void 0&&(e.requestIdLogLabel=mn))}var a=hc===o;if(a){let Rt=e.http2SessionTimeout,mn=o;if(!(typeof Rt=="number"&&!(Rt%1)&&!isNaN(Rt)&&isFinite(Rt))){let os=typeof Rt,gi;if(gi===void 0)if(os==="boolean"||Rt===null||os==="string"&&Rt&&Rt==+Rt&&!(Rt%1))gi=+Rt;else return at.errors=[{instancePath:t+"/http2SessionTimeout",schemaPath:"#/properties/http2SessionTimeout/type",keyword:"type",params:{type:"integer"},message:"must be integer"}],!1;gi!==void 0&&(Rt=gi,e!==void 0&&(e.http2SessionTimeout=gi))}var a=mn===o;if(a){let os=e.exposeHeadRoutes,gi=o;if(typeof os!="boolean"){let Tr;if(Tr===void 0)if(os==="false"||os===0||os===null)Tr=!1;else if(os==="true"||os===1)Tr=!0;else return at.errors=[{instancePath:t+"/exposeHeadRoutes",schemaPath:"#/properties/exposeHeadRoutes/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;Tr!==void 0&&(os=Tr,e!==void 0&&(e.exposeHeadRoutes=Tr))}var a=gi===o;if(a){let Tr=e.useSemicolonDelimiter,e1=o;if(typeof Tr!="boolean"){let sr;if(sr===void 0)if(Tr==="false"||Tr===0||Tr===null)sr=!1;else if(Tr==="true"||Tr===1)sr=!0;else return at.errors=[{instancePath:t+"/useSemicolonDelimiter",schemaPath:"#/properties/useSemicolonDelimiter/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;sr!==void 0&&(Tr=sr,e!==void 0&&(e.useSemicolonDelimiter=sr))}var a=e1===o;if(a){if(e.versioning!==void 0){let sr=e.versioning,pc=o;if(o===pc)if(sr&&typeof sr=="object"&&!Array.isArray(sr)){let as;if(sr.storage===void 0&&(as="storage")||sr.deriveVersion===void 0&&(as="deriveVersion"))return at.errors=[{instancePath:t+"/versioning",schemaPath:"#/properties/versioning/required",keyword:"required",params:{missingProperty:as},message:"must have required property '"+as+"'"}],!1}else return at.errors=[{instancePath:t+"/versioning",schemaPath:"#/properties/versioning/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var a=pc===o}else var a=!0;if(a)if(e.constraints!==void 0){let sr=e.constraints,pc=o;if(o===pc)if(sr&&typeof sr=="object"&&!Array.isArray(sr))for(let as in sr){let Un=sr[as],Dp=o;if(o===Dp)if(Un&&typeof Un=="object"&&!Array.isArray(Un)){let so;if(Un.name===void 0&&(so="name")||Un.storage===void 0&&(so="storage")||Un.validate===void 0&&(so="validate")||Un.deriveConstraint===void 0&&(so="deriveConstraint"))return at.errors=[{instancePath:t+"/constraints/"+as.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/constraints/additionalProperties/required",keyword:"required",params:{missingProperty:so},message:"must have required property '"+so+"'"}],!1;if(Un.name!==void 0){let gc=Un.name;if(typeof gc!="string"){let Pf=typeof gc,ir;if(ir===void 0)if(Pf=="number"||Pf=="boolean")ir=""+gc;else if(gc===null)ir="";else return at.errors=[{instancePath:t+"/constraints/"+as.replace(/~/g,"~0").replace(/\//g,"~1")+"/name",schemaPath:"#/properties/constraints/additionalProperties/properties/name/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;ir!==void 0&&(gc=ir,Un!==void 0&&(Un.name=ir))}}}else return at.errors=[{instancePath:t+"/constraints/"+as.replace(/~/g,"~0").replace(/\//g,"~1"),schemaPath:"#/properties/constraints/additionalProperties/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var d=Dp===o;if(!d)break}else return at.errors=[{instancePath:t+"/constraints",schemaPath:"#/properties/constraints/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var a=pc===o}else var a=!0}}}}}}}}}}}}}}}}}}}}}}}}}else return at.errors=[{instancePath:t,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;return at.errors=i,o===0}fE.exports.defaultInitOptions={connectionTimeout:0,keepAliveTimeout:72e3,maxRequestsPerSocket:0,requestTimeout:0,bodyLimit:1048576,caseSensitive:!0,allowUnsafeRegex:!1,disableRequestLogging:!1,jsonShorthand:!0,ignoreTrailingSlash:!1,ignoreDuplicateSlashes:!1,maxParamLength:100,onProtoPoisoning:"error",onConstructorPoisoning:"error",pluginTimeout:1e4,requestIdHeader:"request-id",requestIdLogLabel:"reqId",http2SessionTimeout:72e3,exposeHeadRoutes:!0,useSemicolonDelimiter:!0}});var kq=b((att,hE)=>{"use strict";var dE=Nq(),ASe=fg()({circles:!0,proto:!1}),{FST_ERR_INIT_OPTS_INVALID:fSe}=Mr();function dSe(e){let t=ASe(e);if(!dE(t)){let r=new fSe(JSON.stringify(dE.errors.map(n=>n.message)));throw r.errors=dE.errors,r}return qT(t)}function qT(e){let t=Object.getOwnPropertyNames(e);for(let r of t){let n=e[r];ArrayBuffer.isView(n)&&!(n instanceof DataView)||(e[r]=n&&typeof n=="object"?qT(n):n)}return Object.freeze(e)}hE.exports=dSe;hE.exports.defaultInitOptions=dE.defaultInitOptions;hE.exports.utils={deepFreezeObject:qT}});var Vq=b((ctt,qq)=>{"use strict";var{kAvvioBoot:hSe,kChildren:Fq,kRoutePrefix:Lq,kLogLevel:Oq,kLogSerializers:VT,kHooks:YT,kSchemaController:Ml,kContentTypeParser:Mq,kReply:Pq,kRequest:Uq,kFourOhFour:pSe,kPluginNameChain:Hq}=mr(),gSe=xg(),mSe=Pg(),ESe=hT(),CSe=hx(),{buildHooks:ySe}=na(),oh=yT();qq.exports=function(t,r,n){let s=oh.registerPlugin.call(t,r),i=oh.getPluginName(r)||oh.getFuncPreview(r);if(s)return t[Hq].push(i),t;let o=Object.create(t);t[Fq].push(o),o.ready=t[hSe].bind(o),o[Fq]=[],o[Pq]=gSe.buildReply(o[Pq]),o[Uq]=mSe.buildRequest(o[Uq]),o[Mq]=CSe.helpers.buildContentTypeParser(o[Mq]),o[YT]=ySe(o[YT]),o[Lq]=ISe(o[Lq],n.prefix),o[Oq]=n.logLevel||o[Oq],o[Ml]=ESe.buildSchemaController(t[Ml]),o.getSchema=o[Ml].getSchema.bind(o[Ml]),o.getSchemas=o[Ml].getSchemas.bind(o[Ml]),o[oh.kRegisteredPlugins]=Object.create(o[oh.kRegisteredPlugins]),o[Hq]=[i],(o[VT]||n.logSerializers)&&(o[VT]=Object.assign(Object.create(o[VT]),n.logSerializers)),n.prefix&&o[pSe].arrange404(o);for(let a of o[YT].onRegister)a.call(this,o,n);return o};function ISe(e,t){return t?(e.endsWith("/")&&t[0]==="/"?t=t.slice(1):t[0]!=="/"&&(t="/"+t),e+t):e}});var $q=b((utt,Yq)=>{"use strict";Yq.exports=function(){return{[Symbol.iterator]:function*(){},add(){},delete(){},has(){return!0}}}});var Jq=b($T=>{"use strict";$T.parse=wSe;$T.serialize=SSe;var bSe=Object.prototype.toString,BSe=Object.prototype.hasOwnProperty,xSe=/^[!#$%&'*+\-.^_`|~0-9A-Za-z]+$/,vSe=/^("?)[\u0021\u0023-\u002B\u002D-\u003A\u003C-\u005B\u005D-\u007E]*\1$/,QSe=/^([.]?[a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)([.][a-z0-9]([a-z0-9-]{0,61}[a-z0-9])?)*$/i,TSe=/^[\u0020-\u003A\u003D-\u007E]*$/;function wSe(e,t){if(typeof e!="string")throw new TypeError("argument str must be a string");var r={},n=e.length;if(n<2)return r;var s=t&&t.decode||_Se,i=0,o=0,a=0;do{if(o=e.indexOf("=",i),o===-1)break;if(a=e.indexOf(";",i),a===-1)a=n;else if(o>a){i=e.lastIndexOf(";",o-1)+1;continue}var c=Gq(e,i,o),u=jq(e,o,c),l=e.slice(c,u);if(!BSe.call(r,l)){var A=Gq(e,o+1,a),f=jq(e,a,A);e.charCodeAt(A)===34&&e.charCodeAt(f-1)===34&&(A++,f--);var d=e.slice(A,f);r[l]=DSe(d,s)}i=a+1}while(ir;){var n=e.charCodeAt(--t);if(n!==32&&n!==9)return t+1}return r}function SSe(e,t,r){var n=r&&r.encode||encodeURIComponent;if(typeof n!="function")throw new TypeError("option encode is invalid");if(!xSe.test(e))throw new TypeError("argument name is invalid");var s=n(t);if(!vSe.test(s))throw new TypeError("argument val is invalid");var i=e+"="+s;if(!r)return i;if(r.maxAge!=null){var o=Math.floor(r.maxAge);if(!isFinite(o))throw new TypeError("option maxAge is invalid");i+="; Max-Age="+o}if(r.domain){if(!QSe.test(r.domain))throw new TypeError("option domain is invalid");i+="; Domain="+r.domain}if(r.path){if(!TSe.test(r.path))throw new TypeError("option path is invalid");i+="; Path="+r.path}if(r.expires){var a=r.expires;if(!RSe(a)||isNaN(a.valueOf()))throw new TypeError("option expires is invalid");i+="; Expires="+a.toUTCString()}if(r.httpOnly&&(i+="; HttpOnly"),r.secure&&(i+="; Secure"),r.partitioned&&(i+="; Partitioned"),r.priority){var c=typeof r.priority=="string"?r.priority.toLowerCase():r.priority;switch(c){case"low":i+="; Priority=Low";break;case"medium":i+="; Priority=Medium";break;case"high":i+="; Priority=High";break;default:throw new TypeError("option priority is invalid")}}if(r.sameSite){var u=typeof r.sameSite=="string"?r.sameSite.toLowerCase():r.sameSite;switch(u){case!0:i+="; SameSite=Strict";break;case"lax":i+="; SameSite=Lax";break;case"strict":i+="; SameSite=Strict";break;case"none":i+="; SameSite=None";break;default:throw new TypeError("option sameSite is invalid")}}return i}function _Se(e){return e.indexOf("%")!==-1?decodeURIComponent(e):e}function RSe(e){return bSe.call(e)==="[object Date]"}function DSe(e,t){try{return t(e)}catch{return e}}});var Xq=b((Att,zq)=>{"use strict";var{URL:Wq}=require("node:url"),GT="http://localhost";zq.exports=function(t,r){(typeof t=="string"||Object.prototype.toString.call(t)==="[object String]")&&t.startsWith("//")&&(t=GT+t);let n=typeof t=="object"?Object.assign(new Wq(GT),t):new Wq(t,GT);if(typeof r=="string"){r=new URLSearchParams(r);for(let s of r.keys()){n.searchParams.delete(s);for(let i of r.getAll(s))n.searchParams.append(s,i)}}else{let s=Object.assign({},t.query,r);for(let i in s){let o=s[i];if(Array.isArray(o)){n.searchParams.delete(i);for(let a of o)n.searchParams.append(i,a)}else n.searchParams.set(i,o)}}return n}});var Kq=b((ftt,jT)=>{"use strict";var{randomUUID:NSe}=require("node:crypto"),{Readable:kSe}=require("node:stream"),Pl;function FSe(e){return e&&typeof e=="object"&&typeof e.append=="function"&&typeof e.delete=="function"&&typeof e.get=="function"&&typeof e.getAll=="function"&&typeof e.has=="function"&&typeof e.set=="function"&&e[Symbol.toStringTag]==="FormData"}function LSe(e){Pl=Pl??new TextEncoder;let t=`----formdata-${NSe()}`,r=`--${t}\r +Content-Disposition: form-data`;let n=c=>c.replace(/\n/g,"%0A").replace(/\r/g,"%0D").replace(/"/g,"%22"),s=c=>c.replace(/\r?\n|\r/g,`\r +`),i=new Uint8Array([13,10]);async function*o(){for(let[c,u]of e)if(typeof u=="string")yield Pl.encode(`${r}; name="${n(s(c))}"\r +\r +`),yield Pl.encode(`${s(u)}\r +`);else{let l=`${r}; name="${n(s(c))}"`;u.name&&(l+=`; filename="${n(u.name)}"`),l+=`\r +Content-Type: ${u.type||"application/octet-stream"}\r +\r +`,yield Pl.encode(l),u.stream?yield*u.stream():yield u,yield i}yield Pl.encode(`--${t}--`)}return{stream:kSe.from(o()),contentType:`multipart/form-data; boundary=${t}`}}jT.exports.isFormDataLike=FSe;jT.exports.formDataToStream=LSe});var tV=b((dtt,pE)=>{"use strict";var{Readable:Zq,addAbortSignal:OSe}=require("node:stream"),WT=require("node:util"),MSe=Jq(),PSe=require("node:assert"),{createDeprecation:USe}=h1(),HSe=Xq(),{isFormDataLike:qSe,formDataToStream:VSe}=Kq(),{EventEmitter:YSe}=require("node:events"),$Se=USe({name:"FastifyDeprecationLightMyRequest",code:"FST_LIGHTMYREQUEST_DEP01",message:'You are accessing "request.connection", use "request.socket" instead.'});function GSe(e){return e.port?e.host:e.hostname+(e.protocol==="https:"?":443":":80")}var JT=class extends YSe{constructor(t){super(),this.remoteAddress=t}};function eV(e){return new t(this);function t(r){ki.call(r,{...e,Request:void 0}),Object.assign(this,r);for(let n of Object.keys(ki.prototype))this.constructor.prototype[n]=ki.prototype[n];return WT.inherits(this.constructor,e.Request),this}}function ki(e){Zq.call(this,{autoDestroy:!1});let t=HSe(e.url||e.path,e.query);this.url=t.pathname+t.search,this.aborted=!1,this.httpVersionMajor=1,this.httpVersionMinor=1,this.httpVersion="1.1",this.method=e.method?e.method.toUpperCase():"GET",this.headers={},this.rawHeaders=[];let r=e.headers||{};for(let o in r){let a=o.toLowerCase();if((a==="user-agent"||a==="content-type")&&r[o]===void 0){this.headers[a]=void 0;continue}let c=r[o];PSe(c!==void 0,'invalid value "undefined" for header '+o),this.headers[a]=""+c}if("user-agent"in this.headers||(this.headers["user-agent"]="lightMyRequest"),this.headers.host=this.headers.host||e.authority||GSe(t),e.cookies){let{cookies:o}=e,a=Object.keys(o).map(c=>MSe.serialize(c,o[c]));this.headers.cookie&&a.unshift(this.headers.cookie),this.headers.cookie=a.join("; ")}this.socket=new JT(e.remoteAddress||"127.0.0.1"),Object.defineProperty(this,"connection",{get(){return $Se(),this.socket},configurable:!0});let n=e.payload||e.body||null,s=n&&typeof n.resume=="function";if(qSe(n)){let o=VSe(n);n=o.stream,s=!0,this.headers["content-type"]=o.contentType}n&&typeof n!="string"&&!s&&!Buffer.isBuffer(n)&&(n=JSON.stringify(n),"content-type"in this.headers||(this.headers["content-type"]="application/json")),n&&!s&&!Object.prototype.hasOwnProperty.call(this.headers,"content-length")&&(this.headers["content-length"]=(Buffer.isBuffer(n)?n.length:Buffer.byteLength(n)).toString());for(let o of Object.keys(this.headers))this.rawHeaders.push(o,this.headers[o]);this._lightMyRequest={payload:n,isDone:!1,simulate:e.simulate||{}};let i=e.signal;return i&&OSe(i,this),this}WT.inherits(ki,Zq);WT.inherits(eV,ki);ki.prototype.prepare=function(e){let t=this._lightMyRequest.payload;if(!t||typeof t.resume!="function")return e();let r=[];t.on("data",n=>r.push(Buffer.from(n))),t.on("end",()=>{let n=Buffer.concat(r);return this.headers["content-length"]=this.headers["content-length"]||""+n.length,this._lightMyRequest.payload=n,e()}),t.resume()};ki.prototype._read=function(e){setImmediate(()=>{if(this._lightMyRequest.isDone){this._lightMyRequest.simulate.end!==!1&&this.push(null);return}this._lightMyRequest.isDone=!0,this._lightMyRequest.payload&&(this._lightMyRequest.simulate.split?(this.push(this._lightMyRequest.payload.slice(0,1)),this.push(this._lightMyRequest.payload.slice(1))):this.push(this._lightMyRequest.payload)),this._lightMyRequest.simulate.error&&this.emit("error",new Error("Simulated")),this._lightMyRequest.simulate.close&&this.emit("close"),this._lightMyRequest.simulate.end!==!1&&this.push(null)})};ki.prototype.destroy=function(e){this.destroyed||this._lightMyRequest.isDone||(this.destroyed=!0,e&&(this._error=!0,process.nextTick(()=>this.emit("error",e))),process.nextTick(()=>this.emit("close")))};pE.exports=ki;pE.exports.Request=ki;pE.exports.CustomRequest=eV});var nV=b((htt,ah)=>{"use strict";var gE={decodeValues:!0,map:!1,silent:!1};function zT(e){return typeof e=="string"&&!!e.trim()}function XT(e,t){var r=e.split(";").filter(zT),n=r.shift(),s=jSe(n),i=s.name,o=s.value;t=t?Object.assign({},gE,t):gE;try{o=t.decodeValues?decodeURIComponent(o):o}catch(c){console.error("set-cookie-parser encountered an error while decoding a cookie with value '"+o+"'. Set options.decodeValues to false to disable this feature.",c)}var a={name:i,value:o};return r.forEach(function(c){var u=c.split("="),l=u.shift().trimLeft().toLowerCase(),A=u.join("=");l==="expires"?a.expires=new Date(A):l==="max-age"?a.maxAge=parseInt(A,10):l==="secure"?a.secure=!0:l==="httponly"?a.httpOnly=!0:l==="samesite"?a.sameSite=A:l==="partitioned"?a.partitioned=!0:a[l]=A}),a}function jSe(e){var t="",r="",n=e.split("=");return n.length>1?(t=n.shift(),r=n.join("=")):r=e,{name:t,value:r}}function rV(e,t){if(t=t?Object.assign({},gE,t):gE,!e)return t.map?{}:[];if(e.headers)if(typeof e.headers.getSetCookie=="function")e=e.headers.getSetCookie();else if(e.headers["set-cookie"])e=e.headers["set-cookie"];else{var r=e.headers[Object.keys(e.headers).find(function(s){return s.toLowerCase()==="set-cookie"})];!r&&e.headers.cookie&&!t.silent&&console.warn("Warning: set-cookie-parser appears to have been called on a request object. It is designed to parse Set-Cookie headers from responses, not Cookie headers from requests. Set the option {silent: true} to suppress this warning."),e=r}if(Array.isArray(e)||(e=[e]),t.map){var n={};return e.filter(zT).reduce(function(s,i){var o=XT(i,t);return s[o.name]=o,s},n)}else return e.filter(zT).map(function(s){return XT(s,t)})}function JSe(e){if(Array.isArray(e))return e;if(typeof e!="string")return[];var t=[],r=0,n,s,i,o,a;function c(){for(;r=e.length)&&t.push(e.substring(n,e.length))}return t}ah.exports=rV;ah.exports.parse=rV;ah.exports.parseString=XT;ah.exports.splitCookiesString=JSe});var oV=b((ptt,iV)=>{"use strict";var ch=require("node:http"),{Writable:WSe,Readable:zSe}=require("node:stream"),XSe=require("node:util"),KSe=nV();function Qa(e,t,r){ch.ServerResponse.call(this,e),this._lightMyRequest={headers:null,trailers:{},payloadChunks:[]},this.setHeader("foo","bar"),this.removeHeader("foo"),this.assignSocket(e2e()),this._promiseCallback=typeof r=="function";let n=!1,s=o=>{if(n=!0,this._promiseCallback)return process.nextTick(()=>t(o));process.nextTick(()=>t(null,o))},i=o=>{if(!n){if(n=!0,this._promiseCallback)return process.nextTick(()=>r(o));process.nextTick(()=>t(o,null))}};this.once("finish",()=>{let o=ZSe(this);o.raw.req=e,s(o)}),this.connection.once("error",i),this.once("error",i),this.once("close",i)}XSe.inherits(Qa,ch.ServerResponse);Qa.prototype.setTimeout=function(e,t){return this.timeoutHandle=setTimeout(()=>{this.emit("timeout")},e),this.on("timeout",t),this};Qa.prototype.writeHead=function(){let e=ch.ServerResponse.prototype.writeHead.apply(this,arguments);return sV(this),e};Qa.prototype.write=function(e,t,r){return this.timeoutHandle&&clearTimeout(this.timeoutHandle),ch.ServerResponse.prototype.write.call(this,e,t,r),this._lightMyRequest.payloadChunks.push(Buffer.from(e,t)),!0};Qa.prototype.end=function(e,t,r){e&&this.write(e,t),ch.ServerResponse.prototype.end.call(this,r),this.emit("finish"),this.destroy()};Qa.prototype.destroy=function(e){this.destroyed||(this.destroyed=!0,e&&process.nextTick(()=>this.emit("error",e)),process.nextTick(()=>this.emit("close")))};Qa.prototype.addTrailers=function(e){for(let t in e)this._lightMyRequest.trailers[t.toLowerCase().trim()]=e[t].toString().trim()};function ZSe(e){e._lightMyRequest.headers===null&&sV(e),t2e(e);let t={raw:{res:e},headers:e._lightMyRequest.headers,statusCode:e.statusCode,statusMessage:e.statusMessage,trailers:{},get cookies(){return KSe.parse(this)}},r=Buffer.concat(e._lightMyRequest.payloadChunks);return t.rawPayload=r,t.payload=r.toString(),t.body=t.payload,t.trailers=e._lightMyRequest.trailers,t.json=function(){return JSON.parse(t.payload)},t.stream=function(){return zSe.from(e._lightMyRequest.payloadChunks)},t}function e2e(){return new WSe({write(e,t,r){setImmediate(r)}})}function t2e(e){let t=e._lightMyRequest.headers;for(let r of Object.keys(t)){let n=t[r];Array.isArray(n)?t[r]=n.map(s=>""+s):t[r]=""+n}}function sV(e){e._lightMyRequest.headers=Object.assign({},e.getHeaders()),["Date","Connection","Transfer-Encoding"].forEach(t=>{let r=new RegExp("\\r\\n"+t+": ([^\\r]*)\\r\\n"),n=e._header.match(r);n&&(e._lightMyRequest.headers[t.toLowerCase()]=n[1])})}iV.exports=Qa});var aV=b((gtt,KT)=>{"use strict";KT.exports=or;KT.exports.default=or;var r2e={type:"object",properties:{url:{oneOf:[{type:"string"},{type:"object",properties:{protocol:{type:"string"},hostname:{type:"string"},pathname:{type:"string"}},additionalProperties:!0,required:["pathname"]}]},path:{oneOf:[{type:"string"},{type:"object",properties:{protocol:{type:"string"},hostname:{type:"string"},pathname:{type:"string"}},additionalProperties:!0,required:["pathname"]}]},cookies:{type:"object",additionalProperties:!0},headers:{type:"object",additionalProperties:!0},query:{anyOf:[{type:"object",additionalProperties:!0},{type:"string"}]},simulate:{type:"object",properties:{end:{type:"boolean"},split:{type:"boolean"},error:{type:"boolean"},close:{type:"boolean"}}},authority:{type:"string"},remoteAddress:{type:"string"},method:{type:"string",enum:["ACL","BIND","CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LINK","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCALENDAR","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REBIND","REPORT","SEARCH","SOURCE","SUBSCRIBE","TRACE","UNBIND","UNLINK","UNLOCK","UNSUBSCRIBE","acl","bind","checkout","connect","copy","delete","get","head","link","lock","m-search","merge","mkactivity","mkcalendar","mkcol","move","notify","options","patch","post","propfind","proppatch","purge","put","rebind","report","search","source","subscribe","trace","unbind","unlink","unlock","unsubscribe"]},validate:{type:"boolean"}},additionalProperties:!0,oneOf:[{required:["url"]},{required:["path"]}]};function or(e,{instancePath:t="",parentData:r,parentDataProperty:n,rootData:s=e}={}){let i=null,o=0,a=o,c=!1,u=null,l=o;if(e&&typeof e=="object"&&!Array.isArray(e)){let E;if(e.url===void 0&&(E="url")){let B={instancePath:t,schemaPath:"#/oneOf/0/required",keyword:"required",params:{missingProperty:E},message:"must have required property '"+E+"'"};i===null?i=[B]:i.push(B),o++}}var f=l===o;f&&(c=!0,u=0);let A=o;if(e&&typeof e=="object"&&!Array.isArray(e)){let E;if(e.path===void 0&&(E="path")){let B={instancePath:t,schemaPath:"#/oneOf/1/required",keyword:"required",params:{missingProperty:E},message:"must have required property '"+E+"'"};i===null?i=[B]:i.push(B),o++}}var f=A===o;if(f&&c?(c=!1,u=[u,1]):f&&(c=!0,u=1),c)o=a,i!==null&&(a?i.length=a:i=null);else{let E={instancePath:t,schemaPath:"#/oneOf",keyword:"oneOf",params:{passingSchemas:u},message:"must match exactly one schema in oneOf"};return i===null?i=[E]:i.push(E),o++,or.errors=i,!1}if(o===0)if(e&&typeof e=="object"&&!Array.isArray(e)){if(e.url!==void 0){let E=e.url,B=o,v=o,x=!1,Q=null,S=o;if(typeof E!="string"){let R=typeof E,D;if(D===void 0)if(R=="number"||R=="boolean")D=""+E;else if(E===null)D="";else{let k={instancePath:t+"/url",schemaPath:"#/properties/url/oneOf/0/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[k]:i.push(k),o++}D!==void 0&&(E=D,e!==void 0&&(e.url=D))}var h=S===o;h&&(x=!0,Q=0);let T=o;if(o===T)if(E&&typeof E=="object"&&!Array.isArray(E)){let R;if(E.pathname===void 0&&(R="pathname")){let D={instancePath:t+"/url",schemaPath:"#/properties/url/oneOf/1/required",keyword:"required",params:{missingProperty:R},message:"must have required property '"+R+"'"};i===null?i=[D]:i.push(D),o++}else{if(E.protocol!==void 0){let D=E.protocol,k=o;if(typeof D!="string"){let F=typeof D,j;if(j===void 0)if(F=="number"||F=="boolean")j=""+D;else if(D===null)j="";else{let H={instancePath:t+"/url/protocol",schemaPath:"#/properties/url/oneOf/1/properties/protocol/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[H]:i.push(H),o++}j!==void 0&&(D=j,E!==void 0&&(E.protocol=j))}var d=k===o}else var d=!0;if(d){if(E.hostname!==void 0){let D=E.hostname,k=o;if(typeof D!="string"){let j=typeof D,H;if(H===void 0)if(j=="number"||j=="boolean")H=""+D;else if(D===null)H="";else{let U={instancePath:t+"/url/hostname",schemaPath:"#/properties/url/oneOf/1/properties/hostname/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[U]:i.push(U),o++}H!==void 0&&(D=H,E!==void 0&&(E.hostname=H))}var d=k===o}else var d=!0;if(d)if(E.pathname!==void 0){let D=E.pathname,k=o;if(typeof D!="string"){let j=typeof D,H;if(H===void 0)if(j=="number"||j=="boolean")H=""+D;else if(D===null)H="";else{let U={instancePath:t+"/url/pathname",schemaPath:"#/properties/url/oneOf/1/properties/pathname/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[U]:i.push(U),o++}H!==void 0&&(D=H,E!==void 0&&(E.pathname=H))}var d=k===o}else var d=!0}}}else{let R={instancePath:t+"/url",schemaPath:"#/properties/url/oneOf/1/type",keyword:"type",params:{type:"object"},message:"must be object"};i===null?i=[R]:i.push(R),o++}var h=T===o;if(h&&x?(x=!1,Q=[Q,1]):h&&(x=!0,Q=1),x)o=v,i!==null&&(v?i.length=v:i=null);else{let R={instancePath:t+"/url",schemaPath:"#/properties/url/oneOf",keyword:"oneOf",params:{passingSchemas:Q},message:"must match exactly one schema in oneOf"};return i===null?i=[R]:i.push(R),o++,or.errors=i,!1}var p=B===o}else var p=!0;if(p){if(e.path!==void 0){let E=e.path,B=o,v=o,x=!1,Q=null,S=o;if(typeof E!="string"){let D=typeof E,k;if(k===void 0)if(D=="number"||D=="boolean")k=""+E;else if(E===null)k="";else{let F={instancePath:t+"/path",schemaPath:"#/properties/path/oneOf/0/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[F]:i.push(F),o++}k!==void 0&&(E=k,e!==void 0&&(e.path=k))}var m=S===o;m&&(x=!0,Q=0);let T=o;if(o===T)if(E&&typeof E=="object"&&!Array.isArray(E)){let D;if(E.pathname===void 0&&(D="pathname")){let k={instancePath:t+"/path",schemaPath:"#/properties/path/oneOf/1/required",keyword:"required",params:{missingProperty:D},message:"must have required property '"+D+"'"};i===null?i=[k]:i.push(k),o++}else{if(E.protocol!==void 0){let k=E.protocol,F=o;if(typeof k!="string"){let j=typeof k,H;if(H===void 0)if(j=="number"||j=="boolean")H=""+k;else if(k===null)H="";else{let U={instancePath:t+"/path/protocol",schemaPath:"#/properties/path/oneOf/1/properties/protocol/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[U]:i.push(U),o++}H!==void 0&&(k=H,E!==void 0&&(E.protocol=H))}var C=F===o}else var C=!0;if(C){if(E.hostname!==void 0){let k=E.hostname,F=o;if(typeof k!="string"){let H=typeof k,U;if(U===void 0)if(H=="number"||H=="boolean")U=""+k;else if(k===null)U="";else{let X={instancePath:t+"/path/hostname",schemaPath:"#/properties/path/oneOf/1/properties/hostname/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[X]:i.push(X),o++}U!==void 0&&(k=U,E!==void 0&&(E.hostname=U))}var C=F===o}else var C=!0;if(C)if(E.pathname!==void 0){let k=E.pathname,F=o;if(typeof k!="string"){let H=typeof k,U;if(U===void 0)if(H=="number"||H=="boolean")U=""+k;else if(k===null)U="";else{let X={instancePath:t+"/path/pathname",schemaPath:"#/properties/path/oneOf/1/properties/pathname/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[X]:i.push(X),o++}U!==void 0&&(k=U,E!==void 0&&(E.pathname=U))}var C=F===o}else var C=!0}}}else{let D={instancePath:t+"/path",schemaPath:"#/properties/path/oneOf/1/type",keyword:"type",params:{type:"object"},message:"must be object"};i===null?i=[D]:i.push(D),o++}var m=T===o;if(m&&x?(x=!1,Q=[Q,1]):m&&(x=!0,Q=1),x)o=v,i!==null&&(v?i.length=v:i=null);else{let D={instancePath:t+"/path",schemaPath:"#/properties/path/oneOf",keyword:"oneOf",params:{passingSchemas:Q},message:"must match exactly one schema in oneOf"};return i===null?i=[D]:i.push(D),o++,or.errors=i,!1}var p=B===o}else var p=!0;if(p){if(e.cookies!==void 0){let E=e.cookies,B=o;if(o===B&&!(E&&typeof E=="object"&&!Array.isArray(E)))return or.errors=[{instancePath:t+"/cookies",schemaPath:"#/properties/cookies/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var p=B===o}else var p=!0;if(p){if(e.headers!==void 0){let E=e.headers,B=o;if(o===B&&!(E&&typeof E=="object"&&!Array.isArray(E)))return or.errors=[{instancePath:t+"/headers",schemaPath:"#/properties/headers/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var p=B===o}else var p=!0;if(p){if(e.query!==void 0){let E=e.query,B=o,v=o,x=!1,Q=o;if(o===Q&&!(E&&typeof E=="object"&&!Array.isArray(E))){let T={instancePath:t+"/query",schemaPath:"#/properties/query/anyOf/0/type",keyword:"type",params:{type:"object"},message:"must be object"};i===null?i=[T]:i.push(T),o++}var I=Q===o;if(x=x||I,!x){let T=o;if(typeof E!="string"){let D=typeof E,k;if(k===void 0)if(D=="number"||D=="boolean")k=""+E;else if(E===null)k="";else{let F={instancePath:t+"/query",schemaPath:"#/properties/query/anyOf/1/type",keyword:"type",params:{type:"string"},message:"must be string"};i===null?i=[F]:i.push(F),o++}k!==void 0&&(E=k,e!==void 0&&(e.query=k))}var I=T===o;x=x||I}if(x)o=v,i!==null&&(v?i.length=v:i=null);else{let T={instancePath:t+"/query",schemaPath:"#/properties/query/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};return i===null?i=[T]:i.push(T),o++,or.errors=i,!1}var p=B===o}else var p=!0;if(p){if(e.simulate!==void 0){let E=e.simulate,B=o;if(o===B)if(E&&typeof E=="object"&&!Array.isArray(E)){if(E.end!==void 0){let x=E.end,Q=o;if(typeof x!="boolean"){let S;if(S===void 0)if(x==="false"||x===0||x===null)S=!1;else if(x==="true"||x===1)S=!0;else return or.errors=[{instancePath:t+"/simulate/end",schemaPath:"#/properties/simulate/properties/end/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;S!==void 0&&(x=S,E!==void 0&&(E.end=S))}var y=Q===o}else var y=!0;if(y){if(E.split!==void 0){let x=E.split,Q=o;if(typeof x!="boolean"){let T;if(T===void 0)if(x==="false"||x===0||x===null)T=!1;else if(x==="true"||x===1)T=!0;else return or.errors=[{instancePath:t+"/simulate/split",schemaPath:"#/properties/simulate/properties/split/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;T!==void 0&&(x=T,E!==void 0&&(E.split=T))}var y=Q===o}else var y=!0;if(y){if(E.error!==void 0){let x=E.error,Q=o;if(typeof x!="boolean"){let T;if(T===void 0)if(x==="false"||x===0||x===null)T=!1;else if(x==="true"||x===1)T=!0;else return or.errors=[{instancePath:t+"/simulate/error",schemaPath:"#/properties/simulate/properties/error/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;T!==void 0&&(x=T,E!==void 0&&(E.error=T))}var y=Q===o}else var y=!0;if(y)if(E.close!==void 0){let x=E.close,Q=o;if(typeof x!="boolean"){let T;if(T===void 0)if(x==="false"||x===0||x===null)T=!1;else if(x==="true"||x===1)T=!0;else return or.errors=[{instancePath:t+"/simulate/close",schemaPath:"#/properties/simulate/properties/close/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;T!==void 0&&(x=T,E!==void 0&&(E.close=T))}var y=Q===o}else var y=!0}}}else return or.errors=[{instancePath:t+"/simulate",schemaPath:"#/properties/simulate/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;var p=B===o}else var p=!0;if(p){if(e.authority!==void 0){let E=e.authority,B=o;if(typeof E!="string"){let x=typeof E,Q;if(Q===void 0)if(x=="number"||x=="boolean")Q=""+E;else if(E===null)Q="";else return or.errors=[{instancePath:t+"/authority",schemaPath:"#/properties/authority/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;Q!==void 0&&(E=Q,e!==void 0&&(e.authority=Q))}var p=B===o}else var p=!0;if(p){if(e.remoteAddress!==void 0){let E=e.remoteAddress,B=o;if(typeof E!="string"){let x=typeof E,Q;if(Q===void 0)if(x=="number"||x=="boolean")Q=""+E;else if(E===null)Q="";else return or.errors=[{instancePath:t+"/remoteAddress",schemaPath:"#/properties/remoteAddress/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;Q!==void 0&&(E=Q,e!==void 0&&(e.remoteAddress=Q))}var p=B===o}else var p=!0;if(p){if(e.method!==void 0){let E=e.method,B=o;if(typeof E!="string"){let x=typeof E,Q;if(Q===void 0)if(x=="number"||x=="boolean")Q=""+E;else if(E===null)Q="";else return or.errors=[{instancePath:t+"/method",schemaPath:"#/properties/method/type",keyword:"type",params:{type:"string"},message:"must be string"}],!1;Q!==void 0&&(E=Q,e!==void 0&&(e.method=Q))}if(!(E==="ACL"||E==="BIND"||E==="CHECKOUT"||E==="CONNECT"||E==="COPY"||E==="DELETE"||E==="GET"||E==="HEAD"||E==="LINK"||E==="LOCK"||E==="M-SEARCH"||E==="MERGE"||E==="MKACTIVITY"||E==="MKCALENDAR"||E==="MKCOL"||E==="MOVE"||E==="NOTIFY"||E==="OPTIONS"||E==="PATCH"||E==="POST"||E==="PROPFIND"||E==="PROPPATCH"||E==="PURGE"||E==="PUT"||E==="REBIND"||E==="REPORT"||E==="SEARCH"||E==="SOURCE"||E==="SUBSCRIBE"||E==="TRACE"||E==="UNBIND"||E==="UNLINK"||E==="UNLOCK"||E==="UNSUBSCRIBE"||E==="acl"||E==="bind"||E==="checkout"||E==="connect"||E==="copy"||E==="delete"||E==="get"||E==="head"||E==="link"||E==="lock"||E==="m-search"||E==="merge"||E==="mkactivity"||E==="mkcalendar"||E==="mkcol"||E==="move"||E==="notify"||E==="options"||E==="patch"||E==="post"||E==="propfind"||E==="proppatch"||E==="purge"||E==="put"||E==="rebind"||E==="report"||E==="search"||E==="source"||E==="subscribe"||E==="trace"||E==="unbind"||E==="unlink"||E==="unlock"||E==="unsubscribe"))return or.errors=[{instancePath:t+"/method",schemaPath:"#/properties/method/enum",keyword:"enum",params:{allowedValues:r2e.properties.method.enum},message:"must be equal to one of the allowed values"}],!1;var p=B===o}else var p=!0;if(p)if(e.validate!==void 0){let E=e.validate,B=o;if(typeof E!="boolean"){let x;if(x===void 0)if(E==="false"||E===0||E===null)x=!1;else if(E==="true"||E===1)x=!0;else return or.errors=[{instancePath:t+"/validate",schemaPath:"#/properties/validate/type",keyword:"type",params:{type:"boolean"},message:"must be boolean"}],!1;x!==void 0&&(E=x,e!==void 0&&(e.validate=x))}var p=B===o}else var p=!0}}}}}}}}}else return or.errors=[{instancePath:t,schemaPath:"#/type",keyword:"type",params:{type:"object"},message:"must be object"}],!1;return or.errors=i,o===0}});var lV=b((mtt,lh)=>{"use strict";var n2e=require("node:assert"),ZT=tV(),mE=oV(),CE="The dispatch function has already been invoked",cV=aV();function ew(e,t,r){return r===void 0?new uh(e,t):EE(e,t,r)}function uV(e,t,r,n){return r.once("error",function(s){this.destroyed&&n.destroy(s)}),r.once("close",function(){this.destroyed&&!this._error&&n.destroy()}),r.prepare(()=>e.call(t,r,n))}function EE(e,t,r){if(t=typeof t=="string"?{url:t}:t,t.validate!==!1&&(n2e(typeof e=="function","dispatchFunc should be a function"),!cV(t)))throw new Error(cV.errors.map(o=>o.message));let n=t.server||{},s=t.Request?ZT.CustomRequest:ZT;if(e.request&&e.request.app===e&&(Object.setPrototypeOf(Object.getPrototypeOf(e.request),s.prototype),Object.setPrototypeOf(Object.getPrototypeOf(e.response),mE.prototype)),typeof r=="function"){let i=new s(t),o=new mE(i,r);return uV(e,n,i,o)}else return new Promise((i,o)=>{let a=new s(t),c=new mE(a,i,o);uV(e,n,a,c)})}function uh(e,t){typeof t=="string"?this.option={url:t}:this.option=Object.assign({},t),this.dispatch=e,this._hasInvoked=!1,this._promise=null,this.option.autoStart!==!1&&process.nextTick(()=>{this._hasInvoked||this.end()})}var s2e=["delete","get","head","options","patch","post","put","trace"];s2e.forEach(e=>{uh.prototype[e]=function(t){if(this._hasInvoked===!0||this._promise)throw new Error(CE);return this.option.url=t,this.option.method=e.toUpperCase(),this}});var i2e=["body","cookies","headers","payload","query"];i2e.forEach(e=>{uh.prototype[e]=function(t){if(this._hasInvoked===!0||this._promise)throw new Error(CE);return this.option[e]=t,this}});uh.prototype.end=function(e){if(this._hasInvoked===!0||this._promise)throw new Error(CE);if(this._hasInvoked=!0,typeof e=="function")EE(this.dispatch,this.option,e);else return this._promise=EE(this.dispatch,this.option),this._promise};Object.getOwnPropertyNames(Promise.prototype).forEach(e=>{e!=="constructor"&&(uh.prototype[e]=function(...t){if(!this._promise){if(this._hasInvoked===!0)throw new Error(CE);this._hasInvoked=!0,this._promise=EE(this.dispatch,this.option)}return this._promise[e](...t)})});function o2e(e){return e instanceof ZT||e instanceof mE||e&&e.constructor&&e.constructor.name==="_CustomLMRRequest"}lh.exports=ew;lh.exports.default=ew;lh.exports.inject=ew;lh.exports.isInjection=o2e});var vV=b((Ett,ph)=>{"use strict";var a2e="4.29.0",c2e=SF(),tw=require("node:http"),Ah,{kAvvioBoot:fh,kChildren:rw,kServerBindings:AV,kBodyLimit:u2e,kRoutePrefix:fV,kLogLevel:l2e,kLogSerializers:A2e,kHooks:nw,kSchemaController:Ta,kRequestAcceptVersion:f2e,kReplySerializerDefault:dV,kContentTypeParser:d2e,kReply:h2e,kRequest:p2e,kFourOhFour:g2e,kState:er,kOptions:sw,kPluginNameChain:dh,kSchemaErrorFormatter:iw,kErrorHandler:yE,kKeepAliveConnections:ow,kChildLoggerFactory:aw,kGenReqId:cw}=mr(),{createServer:m2e,compileValidateHTTPVersion:E2e}=KF(),hh=xg(),IE=Pg(),C2e=Ug(),{supportedMethods:y2e}=ex(),Ul=ix(),Vc=hx(),hV=hT(),{Hooks:I2e,hookRunnerApplication:pV,supportedHooks:uw}=na(),{createLogger:b2e,createChildLogger:gV,defaultChildLoggerFactory:B2e}=Jf(),mV=yT(),{getGenReqId:EV,reqIdGenFactory:CV}=jm(),{buildRouting:x2e,validateBodyLimitOption:v2e}=xq(),Q2e=Rq(),xV=kq(),T2e=Vq(),{FSTDEP009:w2e}=mi(),S2e=$q(),{appendStackTrace:_2e,AVVIO_ERRORS_MAP:yV,...Yc}=Mr(),{defaultInitOptions:xn}=xV,{FST_ERR_ASYNC_CONSTRAINT:R2e,FST_ERR_BAD_URL:D2e,FST_ERR_FORCE_CLOSE_CONNECTIONS_IDLE_NOT_AVAILABLE:N2e,FST_ERR_OPTIONS_NOT_OBJ:k2e,FST_ERR_QSP_NOT_FN:F2e,FST_ERR_SCHEMA_CONTROLLER_BUCKET_OPT_NOT_FN:L2e,FST_ERR_AJV_CUSTOM_OPTIONS_OPT_NOT_OBJ:O2e,FST_ERR_AJV_CUSTOM_OPTIONS_OPT_NOT_ARR:M2e,FST_ERR_VERSION_CONSTRAINT_NOT_STR:P2e,FST_ERR_INSTANCE_ALREADY_LISTENING:U2e,FST_ERR_REOPENED_CLOSE_SERVER:H2e,FST_ERR_ROUTE_REWRITE_NOT_STR:q2e,FST_ERR_SCHEMA_ERROR_FORMATTER_NOT_FN:IV,FST_ERR_ERROR_HANDLER_NOT_FN:V2e}=Yc,{buildErrorHandler:bV}=zf();function Y2e(e){let t={};return["errorHandler","logLevel","logSerializers"].concat(uw).forEach(n=>{t[n]=e.store[n]}),Object.assign({},t)}function lw(e){if(e=e||{},typeof e!="object")throw new k2e;if(e.querystringParser&&typeof e.querystringParser!="function")throw new F2e(typeof e.querystringParser);if(e.schemaController&&e.schemaController.bucket&&typeof e.schemaController.bucket!="function")throw new L2e(typeof e.schemaController.bucket);v2e(e.bodyLimit);let t=e.requestIdHeader===!1?!1:(e.requestIdHeader||xn.requestIdHeader).toLowerCase(),r=CV(t,e.genReqId),n=e.requestIdLogLabel||"reqId",s=e.bodyLimit||xn.bodyLimit,i=e.disableRequestLogging||!1,o=Object.assign({customOptions:{},plugins:[]},e.ajv),a=e.frameworkErrors;if(!o.customOptions||Object.prototype.toString.call(o.customOptions)!=="[object Object]")throw new O2e(typeof o.customOptions);if(!o.plugins||!Array.isArray(o.plugins))throw new M2e(typeof o.plugins);let{logger:c,hasLogger:u}=b2e(e);e.connectionTimeout=e.connectionTimeout||xn.connectionTimeout,e.keepAliveTimeout=e.keepAliveTimeout||xn.keepAliveTimeout,e.maxRequestsPerSocket=e.maxRequestsPerSocket||xn.maxRequestsPerSocket,e.requestTimeout=e.requestTimeout||xn.requestTimeout,e.logger=c,e.requestIdHeader=t,e.requestIdLogLabel=n,e.disableRequestLogging=i,e.ajv=o,e.clientErrorHandler=e.clientErrorHandler||U;let l=xV(e);e.exposeHeadRoutes=l.exposeHeadRoutes;let A=e.constraints;e.versioning&&(w2e(),A={...A,version:{name:"version",mustMatchWhenDerived:!0,storage:e.versioning.storage,deriveConstraint:e.versioning.deriveVersion,validate(P){if(typeof P!="string")throw new P2e}}});let f=x2e({config:{defaultRoute:X,onBadUrl:L,constraints:A,ignoreTrailingSlash:e.ignoreTrailingSlash||xn.ignoreTrailingSlash,ignoreDuplicateSlashes:e.ignoreDuplicateSlashes||xn.ignoreDuplicateSlashes,maxParamLength:e.maxParamLength||xn.maxParamLength,caseSensitive:e.caseSensitive,allowUnsafeRegex:e.allowUnsafeRegex||xn.allowUnsafeRegex,buildPrettyMeta:Y2e,querystringParser:e.querystringParser,useSemicolonDelimiter:e.useSemicolonDelimiter??xn.useSemicolonDelimiter}}),d=Q2e(e),h=lt(f,e);e.http2SessionTimeout=l.http2SessionTimeout;let{server:p,listen:C}=m2e(e,h),m=typeof p.closeAllConnections=="function",I=typeof p.closeIdleConnections=="function",y=e.forceCloseConnections;if(y==="idle"&&!I)throw new N2e;typeof y!="boolean"&&(y=I?"idle":!1);let E=!m&&y===!0?new Set:S2e(),B=hh.setupResponseListeners,v=hV.buildSchemaController(null,e.schemaController),x={[er]:{listening:!1,closing:!1,started:!1,ready:!1,booting:!1,readyPromise:null},[ow]:E,[sw]:e,[rw]:[],[AV]:[],[u2e]:s,[fV]:"",[l2e]:"",[A2e]:null,[nw]:new I2e,[Ta]:v,[iw]:null,[yE]:bV(),[aw]:B2e,[dV]:null,[d2e]:new Vc(s,e.onProtoPoisoning||xn.onProtoPoisoning,e.onConstructorPoisoning||xn.onConstructorPoisoning),[h2e]:hh.buildReply(hh),[p2e]:IE.buildRequest(IE,e.trustProxy),[g2e]:d,[mV.kRegisteredPlugins]:[],[dh]:["fastify"],[fh]:null,[cw]:r,routing:h,getDefaultRoute:f.getDefaultRoute.bind(f),setDefaultRoute:f.setDefaultRoute.bind(f),delete:function(K,oe,le){return f.prepareRoute.call(this,{method:"DELETE",url:K,options:oe,handler:le})},get:function(K,oe,le){return f.prepareRoute.call(this,{method:"GET",url:K,options:oe,handler:le})},head:function(K,oe,le){return f.prepareRoute.call(this,{method:"HEAD",url:K,options:oe,handler:le})},patch:function(K,oe,le){return f.prepareRoute.call(this,{method:"PATCH",url:K,options:oe,handler:le})},post:function(K,oe,le){return f.prepareRoute.call(this,{method:"POST",url:K,options:oe,handler:le})},put:function(K,oe,le){return f.prepareRoute.call(this,{method:"PUT",url:K,options:oe,handler:le})},options:function(K,oe,le){return f.prepareRoute.call(this,{method:"OPTIONS",url:K,options:oe,handler:le})},all:function(K,oe,le){return f.prepareRoute.call(this,{method:y2e,url:K,options:oe,handler:le})},route:function(K){return f.route.call(this,{options:K})},hasRoute:function(K){return f.hasRoute.call(this,{options:K})},findRoute:function(K){return f.findRoute(K)},log:c,withTypeProvider:F,addHook:j,addSchema:H,getSchema:v.getSchema.bind(v),getSchemas:v.getSchemas.bind(v),setValidatorCompiler:q,setSerializerCompiler:ve,setSchemaController:Ce,setReplySerializer:ye,setSchemaErrorFormatter:Ge,setGenReqId:Re,addContentTypeParser:Vc.helpers.addContentTypeParser,hasContentTypeParser:Vc.helpers.hasContentTypeParser,getDefaultJsonParser:Vc.defaultParsers.getDefaultJsonParser,defaultTextParser:Vc.defaultParsers.defaultTextParser,removeContentTypeParser:Vc.helpers.removeContentTypeParser,removeAllContentTypeParsers:Vc.helpers.removeAllContentTypeParsers,register:null,after:null,ready:null,onClose:null,close:null,printPlugins:null,hasPlugin:function(P){return this[mV.kRegisteredPlugins].includes(P)||this[dh].includes(P)},listen:C,server:p,addresses:function(){let P=this[AV].map(K=>K.address());return P.push(this.server.address()),P.filter(K=>K)},decorate:Ul.add,hasDecorator:Ul.exist,decorateReply:Ul.decorateReply,decorateRequest:Ul.decorateRequest,hasRequestDecorator:Ul.existRequest,hasReplyDecorator:Ul.existReply,inject:D,printRoutes:Pn,setNotFoundHandler:G,setErrorHandler:Se,setChildLoggerFactory:be,initialConfig:l,addConstraintStrategy:f.addConstraintStrategy.bind(f),hasConstraintStrategy:f.hasConstraintStrategy.bind(f)};Object.defineProperties(x,{listeningOrigin:{get(){let P=this.addresses().slice(-1).pop();if(typeof P=="string")return P;let K=P.family==="IPv6"?`[${P.address}]`:P.address;return`${this[sw].https?"https":"http"}://${K}:${P.port}`}},pluginName:{configurable:!0,get(){return this[dh].length>1?this[dh].join(" -> "):this[dh][0]}},prefix:{configurable:!0,get(){return this[fV]}},validatorCompiler:{configurable:!0,get(){return this[Ta].getValidatorCompiler()}},serializerCompiler:{configurable:!0,get(){return this[Ta].getSerializerCompiler()}},childLoggerFactory:{configurable:!0,get(){return this[aw]}},version:{configurable:!0,get(){return a2e}},errorHandler:{configurable:!0,get(){return this[yE].func}},genReqId:{configurable:!0,get(){return this[cw]}}}),e.schemaErrorFormatter&&(BV(e.schemaErrorFormatter),x[iw]=e.schemaErrorFormatter.bind(x));let Q=Number(e.pluginTimeout),S=c2e(x,{autostart:!1,timeout:isNaN(Q)===!1?Q:xn.pluginTimeout,expose:{use:"register"}});S.override=T2e,S.on("start",()=>x[er].started=!0),x[fh]=x.ready,x.ready=k,x.printPlugins=S.prettyPrint.bind(S),S.once("preReady",()=>{x.onClose((P,K)=>{x[er].closing=!0,f.closeRoutes(),pV("preClose",x[fh],x,function(){if(x[er].listening){if(y==="idle")P.server.closeIdleConnections();else if(m&&y)P.server.closeAllConnections();else if(y===!0)for(let oe of x[ow])oe.destroy(),x[ow].delete(oe)}!e.serverFactory||x[er].listening?P.server.close(function(oe){oe&&oe.code!=="ERR_SERVER_NOT_RUNNING"?K(null):K()}):process.nextTick(K,null)})})});let T=new C2e({server:x,config:{}});x.setNotFoundHandler(),d.arrange404(x),f.setup(e,{avvio:S,fourOhFour:d,logger:c,hasLogger:u,setupResponseListeners:B,throwIfAlreadyStarted:R,validateHTTPVersion:E2e(e),keepAliveConnections:E}),p.on("clientError",e.clientErrorHandler.bind(x));try{let K=require("node:diagnostics_channel").channel("fastify.initialization");K.hasSubscribers&&K.publish({fastify:x})}catch{}return"asyncDispose"in Symbol&&(x[Symbol.asyncDispose]=function(){return x.close()}),x;function R(P){if(x[er].started)throw new U2e(P)}function D(P,K){if(Ah===void 0&&(Ah=lV()),x[er].started){if(x[er].closing){let oe=new H2e;if(K){K(oe);return}else return Promise.reject(oe)}return Ah(h,P,K)}if(K)this.ready(oe=>{oe?K(oe,null):Ah(h,P,K)});else return Ah((oe,le)=>{this.ready(function(Le){if(Le){le.emit("error",Le);return}h(oe,le)})},P)}function k(P){if(this[er].readyPromise!==null){if(P!=null){this[er].readyPromise.then(()=>P(null,x),P);return}return this[er].readyPromise}let K,oe;if(process.nextTick(le),this[er].readyPromise=new Promise(function(de,At){K=de,oe=At}),P)this[er].readyPromise.then(()=>P(null,x),P);else return this[er].readyPromise;function le(){x[fh]((de,At)=>{de||x[er].started||x[er].ready||x[er].booting?Le(de):(x[er].booting=!0,pV("onReady",x[fh],x,Le)),At()})}function Le(de){if(de=de!=null&&yV[de.code]!=null?_2e(de,new yV[de.code](de.message)):de,de)return oe(de);K(x),x[er].booting=!1,x[er].ready=!0,x[er].promise=null}}function F(){return this}function j(P,K){if(R('Cannot call "addHook"!'),K==null)throw new Yc.FST_ERR_HOOK_INVALID_HANDLER(P,K);if(P==="onSend"||P==="preSerialization"||P==="onError"||P==="preParsing"){if(K.constructor.name==="AsyncFunction"&&K.length===4)throw new Yc.FST_ERR_HOOK_INVALID_ASYNC_HANDLER}else if(P==="onReady"||P==="onListen"){if(K.constructor.name==="AsyncFunction"&&K.length!==0)throw new Yc.FST_ERR_HOOK_INVALID_ASYNC_HANDLER}else if(P==="onRequestAbort"){if(K.constructor.name==="AsyncFunction"&&K.length!==1)throw new Yc.FST_ERR_HOOK_INVALID_ASYNC_HANDLER}else if(K.constructor.name==="AsyncFunction"&&K.length===3)throw new Yc.FST_ERR_HOOK_INVALID_ASYNC_HANDLER;return P==="onClose"?this.onClose(K.bind(this)):P==="onReady"||P==="onListen"||P==="onRoute"?this[nw].add(P,K):this.after((le,Le)=>{oe.call(this,P,K),Le(le)}),this;function oe(le,Le){this[nw].add(le,Le),this[rw].forEach(de=>oe.call(de,le,Le))}}function H(P){return R('Cannot call "addSchema"!'),this[Ta].add(P),this[rw].forEach(K=>K.addSchema(P)),this}function U(P,K){if(P.code==="ECONNRESET"||K.destroyed)return;let oe,le,Le,de;P.code==="ERR_HTTP_REQUEST_TIMEOUT"?(le="408",Le=tw.STATUS_CODES[le],oe=`{"error":"${Le}","message":"Client Timeout","statusCode":408}`,de="timeout"):P.code==="HPE_HEADER_OVERFLOW"?(le="431",Le=tw.STATUS_CODES[le],oe=`{"error":"${Le}","message":"Exceeded maximum allowed HTTP header size","statusCode":431}`,de="header_overflow"):(le="400",Le=tw.STATUS_CODES[le],oe=`{"error":"${Le}","message":"Client Error","statusCode":400}`,de="error"),this.log.trace({err:P},`client ${de}`),K.writable&&K.write(`HTTP/1.1 ${le} ${Le}\r +Content-Length: ${oe.length}\r +Content-Type: application/json\r +\r +${oe}`),K.destroy(P)}function X(P,K){P.headers["accept-version"]!==void 0&&(P.headers[f2e]=P.headers["accept-version"],P.headers["accept-version"]=void 0),d.router.lookup(P,K)}function L(P,K,oe){if(a){let Le=EV(T.server,K),de=gV(T,c,K,Le),At=new IE(Le,null,K,null,de,T),Jt=new hh(oe,At,de);return i===!1&&de.info({req:At},"incoming request"),a(new D2e(P),At,Jt)}let le=`{"error":"Bad Request","code":"FST_ERR_BAD_URL","message":"'${P}' is not a valid url component","statusCode":400}`;oe.writeHead(400,{"Content-Type":"application/json","Content-Length":le.length}),oe.end(le)}function Y(P,K,oe){if(P!==!1)return function(Le){if(Le){if(a){let At=EV(T.server,K),Jt=gV(T,c,K,At),rt=new IE(At,null,K,null,Jt,T),fr=new hh(oe,rt,Jt);return i===!1&&Jt.info({req:rt},"incoming request"),a(new R2e,rt,fr)}let de='{"error":"Internal Server Error","message":"Unexpected error from async constraint","statusCode":500}';oe.writeHead(500,{"Content-Type":"application/json","Content-Length":de.length}),oe.end(de)}}}function G(P,K){return R('Cannot call "setNotFoundHandler"!'),d.setNotFoundHandler.call(this,P,K,S,f.routeHandler),this}function q(P){return R('Cannot call "setValidatorCompiler"!'),this[Ta].setValidatorCompiler(P),this}function Ge(P){return R('Cannot call "setSchemaErrorFormatter"!'),BV(P),this[iw]=P.bind(this),this}function ve(P){return R('Cannot call "setSerializerCompiler"!'),this[Ta].setSerializerCompiler(P),this}function Ce(P){R('Cannot call "setSchemaController"!');let K=this[Ta],oe=hV.buildSchemaController(K,Object.assign({},K.opts,P));return this[Ta]=oe,this.getSchema=oe.getSchema.bind(oe),this.getSchemas=oe.getSchemas.bind(oe),this}function ye(P){return R('Cannot call "setReplySerializer"!'),this[dV]=P,this}function Se(P){if(R('Cannot call "setErrorHandler"!'),typeof P!="function")throw new V2e;return this[yE]=bV(this[yE],P.bind(this)),this}function be(P){return R('Cannot call "setChildLoggerFactory"!'),this[aw]=P,this}function Pn(P={}){return P.includeMeta=P.includeHooks?P.includeMeta?uw.concat(P.includeMeta):uw:P.includeMeta,f.printRoutes(P)}function lt(P,{rewriteUrl:K,logger:oe}){let le;return function(de,At){if(le===void 0&&(le=P.isAsyncConstraint()),K){de.originalUrl=de.url;let Jt=K.call(x,de);if(typeof Jt=="string")de.url=Jt;else{let rt=new q2e(de.url,typeof Jt);de.destroy(rt)}}P.routing(de,At,Y(le,de,At))}}function Re(P){return R('Cannot call "setGenReqId"!'),this[cw]=CV(this[sw].requestIdHeader,P),this}}function BV(e){if(typeof e!="function")throw new IV(typeof e);if(e.constructor.name==="AsyncFunction")throw new IV("AsyncFunction")}ph.exports=lw;ph.exports.errorCodes=Yc;ph.exports.fastify=lw;ph.exports.default=lw});var UV=b((vtt,PV)=>{var MV=require("stream").Stream,F_e=require("util");PV.exports=Ks;function Ks(){this.source=null,this.dataSize=0,this.maxDataSize=1024*1024,this.pauseStream=!0,this._maxDataSizeExceeded=!1,this._released=!1,this._bufferedEvents=[]}F_e.inherits(Ks,MV);Ks.create=function(e,t){var r=new this;t=t||{};for(var n in t)r[n]=t[n];r.source=e;var s=e.emit;return e.emit=function(){return r._handleEmit(arguments),s.apply(e,arguments)},e.on("error",function(){}),r.pauseStream&&e.pause(),r};Object.defineProperty(Ks.prototype,"readable",{configurable:!0,enumerable:!0,get:function(){return this.source.readable}});Ks.prototype.setEncoding=function(){return this.source.setEncoding.apply(this.source,arguments)};Ks.prototype.resume=function(){this._released||this.release(),this.source.resume()};Ks.prototype.pause=function(){this.source.pause()};Ks.prototype.release=function(){this._released=!0,this._bufferedEvents.forEach(function(e){this.emit.apply(this,e)}.bind(this)),this._bufferedEvents=[]};Ks.prototype.pipe=function(){var e=MV.prototype.pipe.apply(this,arguments);return this.resume(),e};Ks.prototype._handleEmit=function(e){if(this._released){this.emit.apply(this,e);return}e[0]==="data"&&(this.dataSize+=e[1].length,this._checkIfMaxDataSizeExceeded()),this._bufferedEvents.push(e)};Ks.prototype._checkIfMaxDataSizeExceeded=function(){if(!this._maxDataSizeExceeded&&!(this.dataSize<=this.maxDataSize)){this._maxDataSizeExceeded=!0;var e="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this.emit("error",new Error(e))}}});var YV=b((Qtt,VV)=>{var L_e=require("util"),qV=require("stream").Stream,HV=UV();VV.exports=Vt;function Vt(){this.writable=!1,this.readable=!0,this.dataSize=0,this.maxDataSize=2*1024*1024,this.pauseStreams=!0,this._released=!1,this._streams=[],this._currentStream=null,this._insideLoop=!1,this._pendingNext=!1}L_e.inherits(Vt,qV);Vt.create=function(e){var t=new this;e=e||{};for(var r in e)t[r]=e[r];return t};Vt.isStreamLike=function(e){return typeof e!="function"&&typeof e!="string"&&typeof e!="boolean"&&typeof e!="number"&&!Buffer.isBuffer(e)};Vt.prototype.append=function(e){var t=Vt.isStreamLike(e);if(t){if(!(e instanceof HV)){var r=HV.create(e,{maxDataSize:1/0,pauseStream:this.pauseStreams});e.on("data",this._checkDataSize.bind(this)),e=r}this._handleErrors(e),this.pauseStreams&&e.pause()}return this._streams.push(e),this};Vt.prototype.pipe=function(e,t){return qV.prototype.pipe.call(this,e,t),this.resume(),e};Vt.prototype._getNext=function(){if(this._currentStream=null,this._insideLoop){this._pendingNext=!0;return}this._insideLoop=!0;try{do this._pendingNext=!1,this._realGetNext();while(this._pendingNext)}finally{this._insideLoop=!1}};Vt.prototype._realGetNext=function(){var e=this._streams.shift();if(typeof e>"u"){this.end();return}if(typeof e!="function"){this._pipeNext(e);return}var t=e;t(function(r){var n=Vt.isStreamLike(r);n&&(r.on("data",this._checkDataSize.bind(this)),this._handleErrors(r)),this._pipeNext(r)}.bind(this))};Vt.prototype._pipeNext=function(e){this._currentStream=e;var t=Vt.isStreamLike(e);if(t){e.on("end",this._getNext.bind(this)),e.pipe(this,{end:!1});return}var r=e;this.write(r),this._getNext()};Vt.prototype._handleErrors=function(e){var t=this;e.on("error",function(r){t._emitError(r)})};Vt.prototype.write=function(e){this.emit("data",e)};Vt.prototype.pause=function(){this.pauseStreams&&(this.pauseStreams&&this._currentStream&&typeof this._currentStream.pause=="function"&&this._currentStream.pause(),this.emit("pause"))};Vt.prototype.resume=function(){this._released||(this._released=!0,this.writable=!0,this._getNext()),this.pauseStreams&&this._currentStream&&typeof this._currentStream.resume=="function"&&this._currentStream.resume(),this.emit("resume")};Vt.prototype.end=function(){this._reset(),this.emit("end")};Vt.prototype.destroy=function(){this._reset(),this.emit("close")};Vt.prototype._reset=function(){this.writable=!1,this._streams=[],this._currentStream=null};Vt.prototype._checkDataSize=function(){if(this._updateDataSize(),!(this.dataSize<=this.maxDataSize)){var e="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this._emitError(new Error(e))}};Vt.prototype._updateDataSize=function(){this.dataSize=0;var e=this;this._streams.forEach(function(t){t.dataSize&&(e.dataSize+=t.dataSize)}),this._currentStream&&this._currentStream.dataSize&&(this.dataSize+=this._currentStream.dataSize)};Vt.prototype._emitError=function(e){this._reset(),this.emit("error",e)}});var $V=b((Ttt,O_e)=>{O_e.exports={"application/1d-interleaved-parityfec":{source:"iana"},"application/3gpdash-qoe-report+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/3gpp-ims+xml":{source:"iana",compressible:!0},"application/3gpphal+json":{source:"iana",compressible:!0},"application/3gpphalforms+json":{source:"iana",compressible:!0},"application/a2l":{source:"iana"},"application/ace+cbor":{source:"iana"},"application/activemessage":{source:"iana"},"application/activity+json":{source:"iana",compressible:!0},"application/alto-costmap+json":{source:"iana",compressible:!0},"application/alto-costmapfilter+json":{source:"iana",compressible:!0},"application/alto-directory+json":{source:"iana",compressible:!0},"application/alto-endpointcost+json":{source:"iana",compressible:!0},"application/alto-endpointcostparams+json":{source:"iana",compressible:!0},"application/alto-endpointprop+json":{source:"iana",compressible:!0},"application/alto-endpointpropparams+json":{source:"iana",compressible:!0},"application/alto-error+json":{source:"iana",compressible:!0},"application/alto-networkmap+json":{source:"iana",compressible:!0},"application/alto-networkmapfilter+json":{source:"iana",compressible:!0},"application/alto-updatestreamcontrol+json":{source:"iana",compressible:!0},"application/alto-updatestreamparams+json":{source:"iana",compressible:!0},"application/aml":{source:"iana"},"application/andrew-inset":{source:"iana",extensions:["ez"]},"application/applefile":{source:"iana"},"application/applixware":{source:"apache",extensions:["aw"]},"application/at+jwt":{source:"iana"},"application/atf":{source:"iana"},"application/atfx":{source:"iana"},"application/atom+xml":{source:"iana",compressible:!0,extensions:["atom"]},"application/atomcat+xml":{source:"iana",compressible:!0,extensions:["atomcat"]},"application/atomdeleted+xml":{source:"iana",compressible:!0,extensions:["atomdeleted"]},"application/atomicmail":{source:"iana"},"application/atomsvc+xml":{source:"iana",compressible:!0,extensions:["atomsvc"]},"application/atsc-dwd+xml":{source:"iana",compressible:!0,extensions:["dwd"]},"application/atsc-dynamic-event-message":{source:"iana"},"application/atsc-held+xml":{source:"iana",compressible:!0,extensions:["held"]},"application/atsc-rdt+json":{source:"iana",compressible:!0},"application/atsc-rsat+xml":{source:"iana",compressible:!0,extensions:["rsat"]},"application/atxml":{source:"iana"},"application/auth-policy+xml":{source:"iana",compressible:!0},"application/bacnet-xdd+zip":{source:"iana",compressible:!1},"application/batch-smtp":{source:"iana"},"application/bdoc":{compressible:!1,extensions:["bdoc"]},"application/beep+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/calendar+json":{source:"iana",compressible:!0},"application/calendar+xml":{source:"iana",compressible:!0,extensions:["xcs"]},"application/call-completion":{source:"iana"},"application/cals-1840":{source:"iana"},"application/captive+json":{source:"iana",compressible:!0},"application/cbor":{source:"iana"},"application/cbor-seq":{source:"iana"},"application/cccex":{source:"iana"},"application/ccmp+xml":{source:"iana",compressible:!0},"application/ccxml+xml":{source:"iana",compressible:!0,extensions:["ccxml"]},"application/cdfx+xml":{source:"iana",compressible:!0,extensions:["cdfx"]},"application/cdmi-capability":{source:"iana",extensions:["cdmia"]},"application/cdmi-container":{source:"iana",extensions:["cdmic"]},"application/cdmi-domain":{source:"iana",extensions:["cdmid"]},"application/cdmi-object":{source:"iana",extensions:["cdmio"]},"application/cdmi-queue":{source:"iana",extensions:["cdmiq"]},"application/cdni":{source:"iana"},"application/cea":{source:"iana"},"application/cea-2018+xml":{source:"iana",compressible:!0},"application/cellml+xml":{source:"iana",compressible:!0},"application/cfw":{source:"iana"},"application/city+json":{source:"iana",compressible:!0},"application/clr":{source:"iana"},"application/clue+xml":{source:"iana",compressible:!0},"application/clue_info+xml":{source:"iana",compressible:!0},"application/cms":{source:"iana"},"application/cnrp+xml":{source:"iana",compressible:!0},"application/coap-group+json":{source:"iana",compressible:!0},"application/coap-payload":{source:"iana"},"application/commonground":{source:"iana"},"application/conference-info+xml":{source:"iana",compressible:!0},"application/cose":{source:"iana"},"application/cose-key":{source:"iana"},"application/cose-key-set":{source:"iana"},"application/cpl+xml":{source:"iana",compressible:!0,extensions:["cpl"]},"application/csrattrs":{source:"iana"},"application/csta+xml":{source:"iana",compressible:!0},"application/cstadata+xml":{source:"iana",compressible:!0},"application/csvm+json":{source:"iana",compressible:!0},"application/cu-seeme":{source:"apache",extensions:["cu"]},"application/cwt":{source:"iana"},"application/cybercash":{source:"iana"},"application/dart":{compressible:!0},"application/dash+xml":{source:"iana",compressible:!0,extensions:["mpd"]},"application/dash-patch+xml":{source:"iana",compressible:!0,extensions:["mpp"]},"application/dashdelta":{source:"iana"},"application/davmount+xml":{source:"iana",compressible:!0,extensions:["davmount"]},"application/dca-rft":{source:"iana"},"application/dcd":{source:"iana"},"application/dec-dx":{source:"iana"},"application/dialog-info+xml":{source:"iana",compressible:!0},"application/dicom":{source:"iana"},"application/dicom+json":{source:"iana",compressible:!0},"application/dicom+xml":{source:"iana",compressible:!0},"application/dii":{source:"iana"},"application/dit":{source:"iana"},"application/dns":{source:"iana"},"application/dns+json":{source:"iana",compressible:!0},"application/dns-message":{source:"iana"},"application/docbook+xml":{source:"apache",compressible:!0,extensions:["dbk"]},"application/dots+cbor":{source:"iana"},"application/dskpp+xml":{source:"iana",compressible:!0},"application/dssc+der":{source:"iana",extensions:["dssc"]},"application/dssc+xml":{source:"iana",compressible:!0,extensions:["xdssc"]},"application/dvcs":{source:"iana"},"application/ecmascript":{source:"iana",compressible:!0,extensions:["es","ecma"]},"application/edi-consent":{source:"iana"},"application/edi-x12":{source:"iana",compressible:!1},"application/edifact":{source:"iana",compressible:!1},"application/efi":{source:"iana"},"application/elm+json":{source:"iana",charset:"UTF-8",compressible:!0},"application/elm+xml":{source:"iana",compressible:!0},"application/emergencycalldata.cap+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/emergencycalldata.comment+xml":{source:"iana",compressible:!0},"application/emergencycalldata.control+xml":{source:"iana",compressible:!0},"application/emergencycalldata.deviceinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.ecall.msd":{source:"iana"},"application/emergencycalldata.providerinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.serviceinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.subscriberinfo+xml":{source:"iana",compressible:!0},"application/emergencycalldata.veds+xml":{source:"iana",compressible:!0},"application/emma+xml":{source:"iana",compressible:!0,extensions:["emma"]},"application/emotionml+xml":{source:"iana",compressible:!0,extensions:["emotionml"]},"application/encaprtp":{source:"iana"},"application/epp+xml":{source:"iana",compressible:!0},"application/epub+zip":{source:"iana",compressible:!1,extensions:["epub"]},"application/eshop":{source:"iana"},"application/exi":{source:"iana",extensions:["exi"]},"application/expect-ct-report+json":{source:"iana",compressible:!0},"application/express":{source:"iana",extensions:["exp"]},"application/fastinfoset":{source:"iana"},"application/fastsoap":{source:"iana"},"application/fdt+xml":{source:"iana",compressible:!0,extensions:["fdt"]},"application/fhir+json":{source:"iana",charset:"UTF-8",compressible:!0},"application/fhir+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/fido.trusted-apps+json":{compressible:!0},"application/fits":{source:"iana"},"application/flexfec":{source:"iana"},"application/font-sfnt":{source:"iana"},"application/font-tdpfr":{source:"iana",extensions:["pfr"]},"application/font-woff":{source:"iana",compressible:!1},"application/framework-attributes+xml":{source:"iana",compressible:!0},"application/geo+json":{source:"iana",compressible:!0,extensions:["geojson"]},"application/geo+json-seq":{source:"iana"},"application/geopackage+sqlite3":{source:"iana"},"application/geoxacml+xml":{source:"iana",compressible:!0},"application/gltf-buffer":{source:"iana"},"application/gml+xml":{source:"iana",compressible:!0,extensions:["gml"]},"application/gpx+xml":{source:"apache",compressible:!0,extensions:["gpx"]},"application/gxf":{source:"apache",extensions:["gxf"]},"application/gzip":{source:"iana",compressible:!1,extensions:["gz"]},"application/h224":{source:"iana"},"application/held+xml":{source:"iana",compressible:!0},"application/hjson":{extensions:["hjson"]},"application/http":{source:"iana"},"application/hyperstudio":{source:"iana",extensions:["stk"]},"application/ibe-key-request+xml":{source:"iana",compressible:!0},"application/ibe-pkg-reply+xml":{source:"iana",compressible:!0},"application/ibe-pp-data":{source:"iana"},"application/iges":{source:"iana"},"application/im-iscomposing+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/index":{source:"iana"},"application/index.cmd":{source:"iana"},"application/index.obj":{source:"iana"},"application/index.response":{source:"iana"},"application/index.vnd":{source:"iana"},"application/inkml+xml":{source:"iana",compressible:!0,extensions:["ink","inkml"]},"application/iotp":{source:"iana"},"application/ipfix":{source:"iana",extensions:["ipfix"]},"application/ipp":{source:"iana"},"application/isup":{source:"iana"},"application/its+xml":{source:"iana",compressible:!0,extensions:["its"]},"application/java-archive":{source:"apache",compressible:!1,extensions:["jar","war","ear"]},"application/java-serialized-object":{source:"apache",compressible:!1,extensions:["ser"]},"application/java-vm":{source:"apache",compressible:!1,extensions:["class"]},"application/javascript":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["js","mjs"]},"application/jf2feed+json":{source:"iana",compressible:!0},"application/jose":{source:"iana"},"application/jose+json":{source:"iana",compressible:!0},"application/jrd+json":{source:"iana",compressible:!0},"application/jscalendar+json":{source:"iana",compressible:!0},"application/json":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["json","map"]},"application/json-patch+json":{source:"iana",compressible:!0},"application/json-seq":{source:"iana"},"application/json5":{extensions:["json5"]},"application/jsonml+json":{source:"apache",compressible:!0,extensions:["jsonml"]},"application/jwk+json":{source:"iana",compressible:!0},"application/jwk-set+json":{source:"iana",compressible:!0},"application/jwt":{source:"iana"},"application/kpml-request+xml":{source:"iana",compressible:!0},"application/kpml-response+xml":{source:"iana",compressible:!0},"application/ld+json":{source:"iana",compressible:!0,extensions:["jsonld"]},"application/lgr+xml":{source:"iana",compressible:!0,extensions:["lgr"]},"application/link-format":{source:"iana"},"application/load-control+xml":{source:"iana",compressible:!0},"application/lost+xml":{source:"iana",compressible:!0,extensions:["lostxml"]},"application/lostsync+xml":{source:"iana",compressible:!0},"application/lpf+zip":{source:"iana",compressible:!1},"application/lxf":{source:"iana"},"application/mac-binhex40":{source:"iana",extensions:["hqx"]},"application/mac-compactpro":{source:"apache",extensions:["cpt"]},"application/macwriteii":{source:"iana"},"application/mads+xml":{source:"iana",compressible:!0,extensions:["mads"]},"application/manifest+json":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["webmanifest"]},"application/marc":{source:"iana",extensions:["mrc"]},"application/marcxml+xml":{source:"iana",compressible:!0,extensions:["mrcx"]},"application/mathematica":{source:"iana",extensions:["ma","nb","mb"]},"application/mathml+xml":{source:"iana",compressible:!0,extensions:["mathml"]},"application/mathml-content+xml":{source:"iana",compressible:!0},"application/mathml-presentation+xml":{source:"iana",compressible:!0},"application/mbms-associated-procedure-description+xml":{source:"iana",compressible:!0},"application/mbms-deregister+xml":{source:"iana",compressible:!0},"application/mbms-envelope+xml":{source:"iana",compressible:!0},"application/mbms-msk+xml":{source:"iana",compressible:!0},"application/mbms-msk-response+xml":{source:"iana",compressible:!0},"application/mbms-protection-description+xml":{source:"iana",compressible:!0},"application/mbms-reception-report+xml":{source:"iana",compressible:!0},"application/mbms-register+xml":{source:"iana",compressible:!0},"application/mbms-register-response+xml":{source:"iana",compressible:!0},"application/mbms-schedule+xml":{source:"iana",compressible:!0},"application/mbms-user-service-description+xml":{source:"iana",compressible:!0},"application/mbox":{source:"iana",extensions:["mbox"]},"application/media-policy-dataset+xml":{source:"iana",compressible:!0,extensions:["mpf"]},"application/media_control+xml":{source:"iana",compressible:!0},"application/mediaservercontrol+xml":{source:"iana",compressible:!0,extensions:["mscml"]},"application/merge-patch+json":{source:"iana",compressible:!0},"application/metalink+xml":{source:"apache",compressible:!0,extensions:["metalink"]},"application/metalink4+xml":{source:"iana",compressible:!0,extensions:["meta4"]},"application/mets+xml":{source:"iana",compressible:!0,extensions:["mets"]},"application/mf4":{source:"iana"},"application/mikey":{source:"iana"},"application/mipc":{source:"iana"},"application/missing-blocks+cbor-seq":{source:"iana"},"application/mmt-aei+xml":{source:"iana",compressible:!0,extensions:["maei"]},"application/mmt-usd+xml":{source:"iana",compressible:!0,extensions:["musd"]},"application/mods+xml":{source:"iana",compressible:!0,extensions:["mods"]},"application/moss-keys":{source:"iana"},"application/moss-signature":{source:"iana"},"application/mosskey-data":{source:"iana"},"application/mosskey-request":{source:"iana"},"application/mp21":{source:"iana",extensions:["m21","mp21"]},"application/mp4":{source:"iana",extensions:["mp4s","m4p"]},"application/mpeg4-generic":{source:"iana"},"application/mpeg4-iod":{source:"iana"},"application/mpeg4-iod-xmt":{source:"iana"},"application/mrb-consumer+xml":{source:"iana",compressible:!0},"application/mrb-publish+xml":{source:"iana",compressible:!0},"application/msc-ivr+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/msc-mixer+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/msword":{source:"iana",compressible:!1,extensions:["doc","dot"]},"application/mud+json":{source:"iana",compressible:!0},"application/multipart-core":{source:"iana"},"application/mxf":{source:"iana",extensions:["mxf"]},"application/n-quads":{source:"iana",extensions:["nq"]},"application/n-triples":{source:"iana",extensions:["nt"]},"application/nasdata":{source:"iana"},"application/news-checkgroups":{source:"iana",charset:"US-ASCII"},"application/news-groupinfo":{source:"iana",charset:"US-ASCII"},"application/news-transmission":{source:"iana"},"application/nlsml+xml":{source:"iana",compressible:!0},"application/node":{source:"iana",extensions:["cjs"]},"application/nss":{source:"iana"},"application/oauth-authz-req+jwt":{source:"iana"},"application/oblivious-dns-message":{source:"iana"},"application/ocsp-request":{source:"iana"},"application/ocsp-response":{source:"iana"},"application/octet-stream":{source:"iana",compressible:!1,extensions:["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"]},"application/oda":{source:"iana",extensions:["oda"]},"application/odm+xml":{source:"iana",compressible:!0},"application/odx":{source:"iana"},"application/oebps-package+xml":{source:"iana",compressible:!0,extensions:["opf"]},"application/ogg":{source:"iana",compressible:!1,extensions:["ogx"]},"application/omdoc+xml":{source:"apache",compressible:!0,extensions:["omdoc"]},"application/onenote":{source:"apache",extensions:["onetoc","onetoc2","onetmp","onepkg"]},"application/opc-nodeset+xml":{source:"iana",compressible:!0},"application/oscore":{source:"iana"},"application/oxps":{source:"iana",extensions:["oxps"]},"application/p21":{source:"iana"},"application/p21+zip":{source:"iana",compressible:!1},"application/p2p-overlay+xml":{source:"iana",compressible:!0,extensions:["relo"]},"application/parityfec":{source:"iana"},"application/passport":{source:"iana"},"application/patch-ops-error+xml":{source:"iana",compressible:!0,extensions:["xer"]},"application/pdf":{source:"iana",compressible:!1,extensions:["pdf"]},"application/pdx":{source:"iana"},"application/pem-certificate-chain":{source:"iana"},"application/pgp-encrypted":{source:"iana",compressible:!1,extensions:["pgp"]},"application/pgp-keys":{source:"iana",extensions:["asc"]},"application/pgp-signature":{source:"iana",extensions:["asc","sig"]},"application/pics-rules":{source:"apache",extensions:["prf"]},"application/pidf+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/pidf-diff+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/pkcs10":{source:"iana",extensions:["p10"]},"application/pkcs12":{source:"iana"},"application/pkcs7-mime":{source:"iana",extensions:["p7m","p7c"]},"application/pkcs7-signature":{source:"iana",extensions:["p7s"]},"application/pkcs8":{source:"iana",extensions:["p8"]},"application/pkcs8-encrypted":{source:"iana"},"application/pkix-attr-cert":{source:"iana",extensions:["ac"]},"application/pkix-cert":{source:"iana",extensions:["cer"]},"application/pkix-crl":{source:"iana",extensions:["crl"]},"application/pkix-pkipath":{source:"iana",extensions:["pkipath"]},"application/pkixcmp":{source:"iana",extensions:["pki"]},"application/pls+xml":{source:"iana",compressible:!0,extensions:["pls"]},"application/poc-settings+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/postscript":{source:"iana",compressible:!0,extensions:["ai","eps","ps"]},"application/ppsp-tracker+json":{source:"iana",compressible:!0},"application/problem+json":{source:"iana",compressible:!0},"application/problem+xml":{source:"iana",compressible:!0},"application/provenance+xml":{source:"iana",compressible:!0,extensions:["provx"]},"application/prs.alvestrand.titrax-sheet":{source:"iana"},"application/prs.cww":{source:"iana",extensions:["cww"]},"application/prs.cyn":{source:"iana",charset:"7-BIT"},"application/prs.hpub+zip":{source:"iana",compressible:!1},"application/prs.nprend":{source:"iana"},"application/prs.plucker":{source:"iana"},"application/prs.rdf-xml-crypt":{source:"iana"},"application/prs.xsf+xml":{source:"iana",compressible:!0},"application/pskc+xml":{source:"iana",compressible:!0,extensions:["pskcxml"]},"application/pvd+json":{source:"iana",compressible:!0},"application/qsig":{source:"iana"},"application/raml+yaml":{compressible:!0,extensions:["raml"]},"application/raptorfec":{source:"iana"},"application/rdap+json":{source:"iana",compressible:!0},"application/rdf+xml":{source:"iana",compressible:!0,extensions:["rdf","owl"]},"application/reginfo+xml":{source:"iana",compressible:!0,extensions:["rif"]},"application/relax-ng-compact-syntax":{source:"iana",extensions:["rnc"]},"application/remote-printing":{source:"iana"},"application/reputon+json":{source:"iana",compressible:!0},"application/resource-lists+xml":{source:"iana",compressible:!0,extensions:["rl"]},"application/resource-lists-diff+xml":{source:"iana",compressible:!0,extensions:["rld"]},"application/rfc+xml":{source:"iana",compressible:!0},"application/riscos":{source:"iana"},"application/rlmi+xml":{source:"iana",compressible:!0},"application/rls-services+xml":{source:"iana",compressible:!0,extensions:["rs"]},"application/route-apd+xml":{source:"iana",compressible:!0,extensions:["rapd"]},"application/route-s-tsid+xml":{source:"iana",compressible:!0,extensions:["sls"]},"application/route-usd+xml":{source:"iana",compressible:!0,extensions:["rusd"]},"application/rpki-ghostbusters":{source:"iana",extensions:["gbr"]},"application/rpki-manifest":{source:"iana",extensions:["mft"]},"application/rpki-publication":{source:"iana"},"application/rpki-roa":{source:"iana",extensions:["roa"]},"application/rpki-updown":{source:"iana"},"application/rsd+xml":{source:"apache",compressible:!0,extensions:["rsd"]},"application/rss+xml":{source:"apache",compressible:!0,extensions:["rss"]},"application/rtf":{source:"iana",compressible:!0,extensions:["rtf"]},"application/rtploopback":{source:"iana"},"application/rtx":{source:"iana"},"application/samlassertion+xml":{source:"iana",compressible:!0},"application/samlmetadata+xml":{source:"iana",compressible:!0},"application/sarif+json":{source:"iana",compressible:!0},"application/sarif-external-properties+json":{source:"iana",compressible:!0},"application/sbe":{source:"iana"},"application/sbml+xml":{source:"iana",compressible:!0,extensions:["sbml"]},"application/scaip+xml":{source:"iana",compressible:!0},"application/scim+json":{source:"iana",compressible:!0},"application/scvp-cv-request":{source:"iana",extensions:["scq"]},"application/scvp-cv-response":{source:"iana",extensions:["scs"]},"application/scvp-vp-request":{source:"iana",extensions:["spq"]},"application/scvp-vp-response":{source:"iana",extensions:["spp"]},"application/sdp":{source:"iana",extensions:["sdp"]},"application/secevent+jwt":{source:"iana"},"application/senml+cbor":{source:"iana"},"application/senml+json":{source:"iana",compressible:!0},"application/senml+xml":{source:"iana",compressible:!0,extensions:["senmlx"]},"application/senml-etch+cbor":{source:"iana"},"application/senml-etch+json":{source:"iana",compressible:!0},"application/senml-exi":{source:"iana"},"application/sensml+cbor":{source:"iana"},"application/sensml+json":{source:"iana",compressible:!0},"application/sensml+xml":{source:"iana",compressible:!0,extensions:["sensmlx"]},"application/sensml-exi":{source:"iana"},"application/sep+xml":{source:"iana",compressible:!0},"application/sep-exi":{source:"iana"},"application/session-info":{source:"iana"},"application/set-payment":{source:"iana"},"application/set-payment-initiation":{source:"iana",extensions:["setpay"]},"application/set-registration":{source:"iana"},"application/set-registration-initiation":{source:"iana",extensions:["setreg"]},"application/sgml":{source:"iana"},"application/sgml-open-catalog":{source:"iana"},"application/shf+xml":{source:"iana",compressible:!0,extensions:["shf"]},"application/sieve":{source:"iana",extensions:["siv","sieve"]},"application/simple-filter+xml":{source:"iana",compressible:!0},"application/simple-message-summary":{source:"iana"},"application/simplesymbolcontainer":{source:"iana"},"application/sipc":{source:"iana"},"application/slate":{source:"iana"},"application/smil":{source:"iana"},"application/smil+xml":{source:"iana",compressible:!0,extensions:["smi","smil"]},"application/smpte336m":{source:"iana"},"application/soap+fastinfoset":{source:"iana"},"application/soap+xml":{source:"iana",compressible:!0},"application/sparql-query":{source:"iana",extensions:["rq"]},"application/sparql-results+xml":{source:"iana",compressible:!0,extensions:["srx"]},"application/spdx+json":{source:"iana",compressible:!0},"application/spirits-event+xml":{source:"iana",compressible:!0},"application/sql":{source:"iana"},"application/srgs":{source:"iana",extensions:["gram"]},"application/srgs+xml":{source:"iana",compressible:!0,extensions:["grxml"]},"application/sru+xml":{source:"iana",compressible:!0,extensions:["sru"]},"application/ssdl+xml":{source:"apache",compressible:!0,extensions:["ssdl"]},"application/ssml+xml":{source:"iana",compressible:!0,extensions:["ssml"]},"application/stix+json":{source:"iana",compressible:!0},"application/swid+xml":{source:"iana",compressible:!0,extensions:["swidtag"]},"application/tamp-apex-update":{source:"iana"},"application/tamp-apex-update-confirm":{source:"iana"},"application/tamp-community-update":{source:"iana"},"application/tamp-community-update-confirm":{source:"iana"},"application/tamp-error":{source:"iana"},"application/tamp-sequence-adjust":{source:"iana"},"application/tamp-sequence-adjust-confirm":{source:"iana"},"application/tamp-status-query":{source:"iana"},"application/tamp-status-response":{source:"iana"},"application/tamp-update":{source:"iana"},"application/tamp-update-confirm":{source:"iana"},"application/tar":{compressible:!0},"application/taxii+json":{source:"iana",compressible:!0},"application/td+json":{source:"iana",compressible:!0},"application/tei+xml":{source:"iana",compressible:!0,extensions:["tei","teicorpus"]},"application/tetra_isi":{source:"iana"},"application/thraud+xml":{source:"iana",compressible:!0,extensions:["tfi"]},"application/timestamp-query":{source:"iana"},"application/timestamp-reply":{source:"iana"},"application/timestamped-data":{source:"iana",extensions:["tsd"]},"application/tlsrpt+gzip":{source:"iana"},"application/tlsrpt+json":{source:"iana",compressible:!0},"application/tnauthlist":{source:"iana"},"application/token-introspection+jwt":{source:"iana"},"application/toml":{compressible:!0,extensions:["toml"]},"application/trickle-ice-sdpfrag":{source:"iana"},"application/trig":{source:"iana",extensions:["trig"]},"application/ttml+xml":{source:"iana",compressible:!0,extensions:["ttml"]},"application/tve-trigger":{source:"iana"},"application/tzif":{source:"iana"},"application/tzif-leap":{source:"iana"},"application/ubjson":{compressible:!1,extensions:["ubj"]},"application/ulpfec":{source:"iana"},"application/urc-grpsheet+xml":{source:"iana",compressible:!0},"application/urc-ressheet+xml":{source:"iana",compressible:!0,extensions:["rsheet"]},"application/urc-targetdesc+xml":{source:"iana",compressible:!0,extensions:["td"]},"application/urc-uisocketdesc+xml":{source:"iana",compressible:!0},"application/vcard+json":{source:"iana",compressible:!0},"application/vcard+xml":{source:"iana",compressible:!0},"application/vemmi":{source:"iana"},"application/vividence.scriptfile":{source:"apache"},"application/vnd.1000minds.decision-model+xml":{source:"iana",compressible:!0,extensions:["1km"]},"application/vnd.3gpp-prose+xml":{source:"iana",compressible:!0},"application/vnd.3gpp-prose-pc3ch+xml":{source:"iana",compressible:!0},"application/vnd.3gpp-v2x-local-service-information":{source:"iana"},"application/vnd.3gpp.5gnas":{source:"iana"},"application/vnd.3gpp.access-transfer-events+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.bsf+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.gmop+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.gtpc":{source:"iana"},"application/vnd.3gpp.interworking-data":{source:"iana"},"application/vnd.3gpp.lpp":{source:"iana"},"application/vnd.3gpp.mc-signalling-ear":{source:"iana"},"application/vnd.3gpp.mcdata-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-payload":{source:"iana"},"application/vnd.3gpp.mcdata-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-signalling":{source:"iana"},"application/vnd.3gpp.mcdata-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcdata-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-floor-request+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-location-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-mbms-usage-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-signed+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-ue-init-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcptt-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-affiliation-command+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-affiliation-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-location-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-mbms-usage-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-service-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-transmission-request+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-ue-config+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mcvideo-user-profile+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.mid-call+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.ngap":{source:"iana"},"application/vnd.3gpp.pfcp":{source:"iana"},"application/vnd.3gpp.pic-bw-large":{source:"iana",extensions:["plb"]},"application/vnd.3gpp.pic-bw-small":{source:"iana",extensions:["psb"]},"application/vnd.3gpp.pic-bw-var":{source:"iana",extensions:["pvb"]},"application/vnd.3gpp.s1ap":{source:"iana"},"application/vnd.3gpp.sms":{source:"iana"},"application/vnd.3gpp.sms+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.srvcc-ext+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.srvcc-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.state-and-event-info+xml":{source:"iana",compressible:!0},"application/vnd.3gpp.ussd+xml":{source:"iana",compressible:!0},"application/vnd.3gpp2.bcmcsinfo+xml":{source:"iana",compressible:!0},"application/vnd.3gpp2.sms":{source:"iana"},"application/vnd.3gpp2.tcap":{source:"iana",extensions:["tcap"]},"application/vnd.3lightssoftware.imagescal":{source:"iana"},"application/vnd.3m.post-it-notes":{source:"iana",extensions:["pwn"]},"application/vnd.accpac.simply.aso":{source:"iana",extensions:["aso"]},"application/vnd.accpac.simply.imp":{source:"iana",extensions:["imp"]},"application/vnd.acucobol":{source:"iana",extensions:["acu"]},"application/vnd.acucorp":{source:"iana",extensions:["atc","acutc"]},"application/vnd.adobe.air-application-installer-package+zip":{source:"apache",compressible:!1,extensions:["air"]},"application/vnd.adobe.flash.movie":{source:"iana"},"application/vnd.adobe.formscentral.fcdt":{source:"iana",extensions:["fcdt"]},"application/vnd.adobe.fxp":{source:"iana",extensions:["fxp","fxpl"]},"application/vnd.adobe.partial-upload":{source:"iana"},"application/vnd.adobe.xdp+xml":{source:"iana",compressible:!0,extensions:["xdp"]},"application/vnd.adobe.xfdf":{source:"iana",extensions:["xfdf"]},"application/vnd.aether.imp":{source:"iana"},"application/vnd.afpc.afplinedata":{source:"iana"},"application/vnd.afpc.afplinedata-pagedef":{source:"iana"},"application/vnd.afpc.cmoca-cmresource":{source:"iana"},"application/vnd.afpc.foca-charset":{source:"iana"},"application/vnd.afpc.foca-codedfont":{source:"iana"},"application/vnd.afpc.foca-codepage":{source:"iana"},"application/vnd.afpc.modca":{source:"iana"},"application/vnd.afpc.modca-cmtable":{source:"iana"},"application/vnd.afpc.modca-formdef":{source:"iana"},"application/vnd.afpc.modca-mediummap":{source:"iana"},"application/vnd.afpc.modca-objectcontainer":{source:"iana"},"application/vnd.afpc.modca-overlay":{source:"iana"},"application/vnd.afpc.modca-pagesegment":{source:"iana"},"application/vnd.age":{source:"iana",extensions:["age"]},"application/vnd.ah-barcode":{source:"iana"},"application/vnd.ahead.space":{source:"iana",extensions:["ahead"]},"application/vnd.airzip.filesecure.azf":{source:"iana",extensions:["azf"]},"application/vnd.airzip.filesecure.azs":{source:"iana",extensions:["azs"]},"application/vnd.amadeus+json":{source:"iana",compressible:!0},"application/vnd.amazon.ebook":{source:"apache",extensions:["azw"]},"application/vnd.amazon.mobi8-ebook":{source:"iana"},"application/vnd.americandynamics.acc":{source:"iana",extensions:["acc"]},"application/vnd.amiga.ami":{source:"iana",extensions:["ami"]},"application/vnd.amundsen.maze+xml":{source:"iana",compressible:!0},"application/vnd.android.ota":{source:"iana"},"application/vnd.android.package-archive":{source:"apache",compressible:!1,extensions:["apk"]},"application/vnd.anki":{source:"iana"},"application/vnd.anser-web-certificate-issue-initiation":{source:"iana",extensions:["cii"]},"application/vnd.anser-web-funds-transfer-initiation":{source:"apache",extensions:["fti"]},"application/vnd.antix.game-component":{source:"iana",extensions:["atx"]},"application/vnd.apache.arrow.file":{source:"iana"},"application/vnd.apache.arrow.stream":{source:"iana"},"application/vnd.apache.thrift.binary":{source:"iana"},"application/vnd.apache.thrift.compact":{source:"iana"},"application/vnd.apache.thrift.json":{source:"iana"},"application/vnd.api+json":{source:"iana",compressible:!0},"application/vnd.aplextor.warrp+json":{source:"iana",compressible:!0},"application/vnd.apothekende.reservation+json":{source:"iana",compressible:!0},"application/vnd.apple.installer+xml":{source:"iana",compressible:!0,extensions:["mpkg"]},"application/vnd.apple.keynote":{source:"iana",extensions:["key"]},"application/vnd.apple.mpegurl":{source:"iana",extensions:["m3u8"]},"application/vnd.apple.numbers":{source:"iana",extensions:["numbers"]},"application/vnd.apple.pages":{source:"iana",extensions:["pages"]},"application/vnd.apple.pkpass":{compressible:!1,extensions:["pkpass"]},"application/vnd.arastra.swi":{source:"iana"},"application/vnd.aristanetworks.swi":{source:"iana",extensions:["swi"]},"application/vnd.artisan+json":{source:"iana",compressible:!0},"application/vnd.artsquare":{source:"iana"},"application/vnd.astraea-software.iota":{source:"iana",extensions:["iota"]},"application/vnd.audiograph":{source:"iana",extensions:["aep"]},"application/vnd.autopackage":{source:"iana"},"application/vnd.avalon+json":{source:"iana",compressible:!0},"application/vnd.avistar+xml":{source:"iana",compressible:!0},"application/vnd.balsamiq.bmml+xml":{source:"iana",compressible:!0,extensions:["bmml"]},"application/vnd.balsamiq.bmpr":{source:"iana"},"application/vnd.banana-accounting":{source:"iana"},"application/vnd.bbf.usp.error":{source:"iana"},"application/vnd.bbf.usp.msg":{source:"iana"},"application/vnd.bbf.usp.msg+json":{source:"iana",compressible:!0},"application/vnd.bekitzur-stech+json":{source:"iana",compressible:!0},"application/vnd.bint.med-content":{source:"iana"},"application/vnd.biopax.rdf+xml":{source:"iana",compressible:!0},"application/vnd.blink-idb-value-wrapper":{source:"iana"},"application/vnd.blueice.multipass":{source:"iana",extensions:["mpm"]},"application/vnd.bluetooth.ep.oob":{source:"iana"},"application/vnd.bluetooth.le.oob":{source:"iana"},"application/vnd.bmi":{source:"iana",extensions:["bmi"]},"application/vnd.bpf":{source:"iana"},"application/vnd.bpf3":{source:"iana"},"application/vnd.businessobjects":{source:"iana",extensions:["rep"]},"application/vnd.byu.uapi+json":{source:"iana",compressible:!0},"application/vnd.cab-jscript":{source:"iana"},"application/vnd.canon-cpdl":{source:"iana"},"application/vnd.canon-lips":{source:"iana"},"application/vnd.capasystems-pg+json":{source:"iana",compressible:!0},"application/vnd.cendio.thinlinc.clientconf":{source:"iana"},"application/vnd.century-systems.tcp_stream":{source:"iana"},"application/vnd.chemdraw+xml":{source:"iana",compressible:!0,extensions:["cdxml"]},"application/vnd.chess-pgn":{source:"iana"},"application/vnd.chipnuts.karaoke-mmd":{source:"iana",extensions:["mmd"]},"application/vnd.ciedi":{source:"iana"},"application/vnd.cinderella":{source:"iana",extensions:["cdy"]},"application/vnd.cirpack.isdn-ext":{source:"iana"},"application/vnd.citationstyles.style+xml":{source:"iana",compressible:!0,extensions:["csl"]},"application/vnd.claymore":{source:"iana",extensions:["cla"]},"application/vnd.cloanto.rp9":{source:"iana",extensions:["rp9"]},"application/vnd.clonk.c4group":{source:"iana",extensions:["c4g","c4d","c4f","c4p","c4u"]},"application/vnd.cluetrust.cartomobile-config":{source:"iana",extensions:["c11amc"]},"application/vnd.cluetrust.cartomobile-config-pkg":{source:"iana",extensions:["c11amz"]},"application/vnd.coffeescript":{source:"iana"},"application/vnd.collabio.xodocuments.document":{source:"iana"},"application/vnd.collabio.xodocuments.document-template":{source:"iana"},"application/vnd.collabio.xodocuments.presentation":{source:"iana"},"application/vnd.collabio.xodocuments.presentation-template":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet-template":{source:"iana"},"application/vnd.collection+json":{source:"iana",compressible:!0},"application/vnd.collection.doc+json":{source:"iana",compressible:!0},"application/vnd.collection.next+json":{source:"iana",compressible:!0},"application/vnd.comicbook+zip":{source:"iana",compressible:!1},"application/vnd.comicbook-rar":{source:"iana"},"application/vnd.commerce-battelle":{source:"iana"},"application/vnd.commonspace":{source:"iana",extensions:["csp"]},"application/vnd.contact.cmsg":{source:"iana",extensions:["cdbcmsg"]},"application/vnd.coreos.ignition+json":{source:"iana",compressible:!0},"application/vnd.cosmocaller":{source:"iana",extensions:["cmc"]},"application/vnd.crick.clicker":{source:"iana",extensions:["clkx"]},"application/vnd.crick.clicker.keyboard":{source:"iana",extensions:["clkk"]},"application/vnd.crick.clicker.palette":{source:"iana",extensions:["clkp"]},"application/vnd.crick.clicker.template":{source:"iana",extensions:["clkt"]},"application/vnd.crick.clicker.wordbank":{source:"iana",extensions:["clkw"]},"application/vnd.criticaltools.wbs+xml":{source:"iana",compressible:!0,extensions:["wbs"]},"application/vnd.cryptii.pipe+json":{source:"iana",compressible:!0},"application/vnd.crypto-shade-file":{source:"iana"},"application/vnd.cryptomator.encrypted":{source:"iana"},"application/vnd.cryptomator.vault":{source:"iana"},"application/vnd.ctc-posml":{source:"iana",extensions:["pml"]},"application/vnd.ctct.ws+xml":{source:"iana",compressible:!0},"application/vnd.cups-pdf":{source:"iana"},"application/vnd.cups-postscript":{source:"iana"},"application/vnd.cups-ppd":{source:"iana",extensions:["ppd"]},"application/vnd.cups-raster":{source:"iana"},"application/vnd.cups-raw":{source:"iana"},"application/vnd.curl":{source:"iana"},"application/vnd.curl.car":{source:"apache",extensions:["car"]},"application/vnd.curl.pcurl":{source:"apache",extensions:["pcurl"]},"application/vnd.cyan.dean.root+xml":{source:"iana",compressible:!0},"application/vnd.cybank":{source:"iana"},"application/vnd.cyclonedx+json":{source:"iana",compressible:!0},"application/vnd.cyclonedx+xml":{source:"iana",compressible:!0},"application/vnd.d2l.coursepackage1p0+zip":{source:"iana",compressible:!1},"application/vnd.d3m-dataset":{source:"iana"},"application/vnd.d3m-problem":{source:"iana"},"application/vnd.dart":{source:"iana",compressible:!0,extensions:["dart"]},"application/vnd.data-vision.rdz":{source:"iana",extensions:["rdz"]},"application/vnd.datapackage+json":{source:"iana",compressible:!0},"application/vnd.dataresource+json":{source:"iana",compressible:!0},"application/vnd.dbf":{source:"iana",extensions:["dbf"]},"application/vnd.debian.binary-package":{source:"iana"},"application/vnd.dece.data":{source:"iana",extensions:["uvf","uvvf","uvd","uvvd"]},"application/vnd.dece.ttml+xml":{source:"iana",compressible:!0,extensions:["uvt","uvvt"]},"application/vnd.dece.unspecified":{source:"iana",extensions:["uvx","uvvx"]},"application/vnd.dece.zip":{source:"iana",extensions:["uvz","uvvz"]},"application/vnd.denovo.fcselayout-link":{source:"iana",extensions:["fe_launch"]},"application/vnd.desmume.movie":{source:"iana"},"application/vnd.dir-bi.plate-dl-nosuffix":{source:"iana"},"application/vnd.dm.delegation+xml":{source:"iana",compressible:!0},"application/vnd.dna":{source:"iana",extensions:["dna"]},"application/vnd.document+json":{source:"iana",compressible:!0},"application/vnd.dolby.mlp":{source:"apache",extensions:["mlp"]},"application/vnd.dolby.mobile.1":{source:"iana"},"application/vnd.dolby.mobile.2":{source:"iana"},"application/vnd.doremir.scorecloud-binary-document":{source:"iana"},"application/vnd.dpgraph":{source:"iana",extensions:["dpg"]},"application/vnd.dreamfactory":{source:"iana",extensions:["dfac"]},"application/vnd.drive+json":{source:"iana",compressible:!0},"application/vnd.ds-keypoint":{source:"apache",extensions:["kpxx"]},"application/vnd.dtg.local":{source:"iana"},"application/vnd.dtg.local.flash":{source:"iana"},"application/vnd.dtg.local.html":{source:"iana"},"application/vnd.dvb.ait":{source:"iana",extensions:["ait"]},"application/vnd.dvb.dvbisl+xml":{source:"iana",compressible:!0},"application/vnd.dvb.dvbj":{source:"iana"},"application/vnd.dvb.esgcontainer":{source:"iana"},"application/vnd.dvb.ipdcdftnotifaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess2":{source:"iana"},"application/vnd.dvb.ipdcesgpdd":{source:"iana"},"application/vnd.dvb.ipdcroaming":{source:"iana"},"application/vnd.dvb.iptv.alfec-base":{source:"iana"},"application/vnd.dvb.iptv.alfec-enhancement":{source:"iana"},"application/vnd.dvb.notif-aggregate-root+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-container+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-generic+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-msglist+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-registration-request+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-ia-registration-response+xml":{source:"iana",compressible:!0},"application/vnd.dvb.notif-init+xml":{source:"iana",compressible:!0},"application/vnd.dvb.pfr":{source:"iana"},"application/vnd.dvb.service":{source:"iana",extensions:["svc"]},"application/vnd.dxr":{source:"iana"},"application/vnd.dynageo":{source:"iana",extensions:["geo"]},"application/vnd.dzr":{source:"iana"},"application/vnd.easykaraoke.cdgdownload":{source:"iana"},"application/vnd.ecdis-update":{source:"iana"},"application/vnd.ecip.rlp":{source:"iana"},"application/vnd.eclipse.ditto+json":{source:"iana",compressible:!0},"application/vnd.ecowin.chart":{source:"iana",extensions:["mag"]},"application/vnd.ecowin.filerequest":{source:"iana"},"application/vnd.ecowin.fileupdate":{source:"iana"},"application/vnd.ecowin.series":{source:"iana"},"application/vnd.ecowin.seriesrequest":{source:"iana"},"application/vnd.ecowin.seriesupdate":{source:"iana"},"application/vnd.efi.img":{source:"iana"},"application/vnd.efi.iso":{source:"iana"},"application/vnd.emclient.accessrequest+xml":{source:"iana",compressible:!0},"application/vnd.enliven":{source:"iana",extensions:["nml"]},"application/vnd.enphase.envoy":{source:"iana"},"application/vnd.eprints.data+xml":{source:"iana",compressible:!0},"application/vnd.epson.esf":{source:"iana",extensions:["esf"]},"application/vnd.epson.msf":{source:"iana",extensions:["msf"]},"application/vnd.epson.quickanime":{source:"iana",extensions:["qam"]},"application/vnd.epson.salt":{source:"iana",extensions:["slt"]},"application/vnd.epson.ssf":{source:"iana",extensions:["ssf"]},"application/vnd.ericsson.quickcall":{source:"iana"},"application/vnd.espass-espass+zip":{source:"iana",compressible:!1},"application/vnd.eszigno3+xml":{source:"iana",compressible:!0,extensions:["es3","et3"]},"application/vnd.etsi.aoc+xml":{source:"iana",compressible:!0},"application/vnd.etsi.asic-e+zip":{source:"iana",compressible:!1},"application/vnd.etsi.asic-s+zip":{source:"iana",compressible:!1},"application/vnd.etsi.cug+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvcommand+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvdiscovery+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvprofile+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-bc+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-cod+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsad-npvr+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvservice+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvsync+xml":{source:"iana",compressible:!0},"application/vnd.etsi.iptvueprofile+xml":{source:"iana",compressible:!0},"application/vnd.etsi.mcid+xml":{source:"iana",compressible:!0},"application/vnd.etsi.mheg5":{source:"iana"},"application/vnd.etsi.overload-control-policy-dataset+xml":{source:"iana",compressible:!0},"application/vnd.etsi.pstn+xml":{source:"iana",compressible:!0},"application/vnd.etsi.sci+xml":{source:"iana",compressible:!0},"application/vnd.etsi.simservs+xml":{source:"iana",compressible:!0},"application/vnd.etsi.timestamp-token":{source:"iana"},"application/vnd.etsi.tsl+xml":{source:"iana",compressible:!0},"application/vnd.etsi.tsl.der":{source:"iana"},"application/vnd.eu.kasparian.car+json":{source:"iana",compressible:!0},"application/vnd.eudora.data":{source:"iana"},"application/vnd.evolv.ecig.profile":{source:"iana"},"application/vnd.evolv.ecig.settings":{source:"iana"},"application/vnd.evolv.ecig.theme":{source:"iana"},"application/vnd.exstream-empower+zip":{source:"iana",compressible:!1},"application/vnd.exstream-package":{source:"iana"},"application/vnd.ezpix-album":{source:"iana",extensions:["ez2"]},"application/vnd.ezpix-package":{source:"iana",extensions:["ez3"]},"application/vnd.f-secure.mobile":{source:"iana"},"application/vnd.familysearch.gedcom+zip":{source:"iana",compressible:!1},"application/vnd.fastcopy-disk-image":{source:"iana"},"application/vnd.fdf":{source:"iana",extensions:["fdf"]},"application/vnd.fdsn.mseed":{source:"iana",extensions:["mseed"]},"application/vnd.fdsn.seed":{source:"iana",extensions:["seed","dataless"]},"application/vnd.ffsns":{source:"iana"},"application/vnd.ficlab.flb+zip":{source:"iana",compressible:!1},"application/vnd.filmit.zfc":{source:"iana"},"application/vnd.fints":{source:"iana"},"application/vnd.firemonkeys.cloudcell":{source:"iana"},"application/vnd.flographit":{source:"iana",extensions:["gph"]},"application/vnd.fluxtime.clip":{source:"iana",extensions:["ftc"]},"application/vnd.font-fontforge-sfd":{source:"iana"},"application/vnd.framemaker":{source:"iana",extensions:["fm","frame","maker","book"]},"application/vnd.frogans.fnc":{source:"iana",extensions:["fnc"]},"application/vnd.frogans.ltf":{source:"iana",extensions:["ltf"]},"application/vnd.fsc.weblaunch":{source:"iana",extensions:["fsc"]},"application/vnd.fujifilm.fb.docuworks":{source:"iana"},"application/vnd.fujifilm.fb.docuworks.binder":{source:"iana"},"application/vnd.fujifilm.fb.docuworks.container":{source:"iana"},"application/vnd.fujifilm.fb.jfi+xml":{source:"iana",compressible:!0},"application/vnd.fujitsu.oasys":{source:"iana",extensions:["oas"]},"application/vnd.fujitsu.oasys2":{source:"iana",extensions:["oa2"]},"application/vnd.fujitsu.oasys3":{source:"iana",extensions:["oa3"]},"application/vnd.fujitsu.oasysgp":{source:"iana",extensions:["fg5"]},"application/vnd.fujitsu.oasysprs":{source:"iana",extensions:["bh2"]},"application/vnd.fujixerox.art-ex":{source:"iana"},"application/vnd.fujixerox.art4":{source:"iana"},"application/vnd.fujixerox.ddd":{source:"iana",extensions:["ddd"]},"application/vnd.fujixerox.docuworks":{source:"iana",extensions:["xdw"]},"application/vnd.fujixerox.docuworks.binder":{source:"iana",extensions:["xbd"]},"application/vnd.fujixerox.docuworks.container":{source:"iana"},"application/vnd.fujixerox.hbpl":{source:"iana"},"application/vnd.fut-misnet":{source:"iana"},"application/vnd.futoin+cbor":{source:"iana"},"application/vnd.futoin+json":{source:"iana",compressible:!0},"application/vnd.fuzzysheet":{source:"iana",extensions:["fzs"]},"application/vnd.genomatix.tuxedo":{source:"iana",extensions:["txd"]},"application/vnd.gentics.grd+json":{source:"iana",compressible:!0},"application/vnd.geo+json":{source:"iana",compressible:!0},"application/vnd.geocube+xml":{source:"iana",compressible:!0},"application/vnd.geogebra.file":{source:"iana",extensions:["ggb"]},"application/vnd.geogebra.slides":{source:"iana"},"application/vnd.geogebra.tool":{source:"iana",extensions:["ggt"]},"application/vnd.geometry-explorer":{source:"iana",extensions:["gex","gre"]},"application/vnd.geonext":{source:"iana",extensions:["gxt"]},"application/vnd.geoplan":{source:"iana",extensions:["g2w"]},"application/vnd.geospace":{source:"iana",extensions:["g3w"]},"application/vnd.gerber":{source:"iana"},"application/vnd.globalplatform.card-content-mgt":{source:"iana"},"application/vnd.globalplatform.card-content-mgt-response":{source:"iana"},"application/vnd.gmx":{source:"iana",extensions:["gmx"]},"application/vnd.google-apps.document":{compressible:!1,extensions:["gdoc"]},"application/vnd.google-apps.presentation":{compressible:!1,extensions:["gslides"]},"application/vnd.google-apps.spreadsheet":{compressible:!1,extensions:["gsheet"]},"application/vnd.google-earth.kml+xml":{source:"iana",compressible:!0,extensions:["kml"]},"application/vnd.google-earth.kmz":{source:"iana",compressible:!1,extensions:["kmz"]},"application/vnd.gov.sk.e-form+xml":{source:"iana",compressible:!0},"application/vnd.gov.sk.e-form+zip":{source:"iana",compressible:!1},"application/vnd.gov.sk.xmldatacontainer+xml":{source:"iana",compressible:!0},"application/vnd.grafeq":{source:"iana",extensions:["gqf","gqs"]},"application/vnd.gridmp":{source:"iana"},"application/vnd.groove-account":{source:"iana",extensions:["gac"]},"application/vnd.groove-help":{source:"iana",extensions:["ghf"]},"application/vnd.groove-identity-message":{source:"iana",extensions:["gim"]},"application/vnd.groove-injector":{source:"iana",extensions:["grv"]},"application/vnd.groove-tool-message":{source:"iana",extensions:["gtm"]},"application/vnd.groove-tool-template":{source:"iana",extensions:["tpl"]},"application/vnd.groove-vcard":{source:"iana",extensions:["vcg"]},"application/vnd.hal+json":{source:"iana",compressible:!0},"application/vnd.hal+xml":{source:"iana",compressible:!0,extensions:["hal"]},"application/vnd.handheld-entertainment+xml":{source:"iana",compressible:!0,extensions:["zmm"]},"application/vnd.hbci":{source:"iana",extensions:["hbci"]},"application/vnd.hc+json":{source:"iana",compressible:!0},"application/vnd.hcl-bireports":{source:"iana"},"application/vnd.hdt":{source:"iana"},"application/vnd.heroku+json":{source:"iana",compressible:!0},"application/vnd.hhe.lesson-player":{source:"iana",extensions:["les"]},"application/vnd.hl7cda+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.hl7v2+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.hp-hpgl":{source:"iana",extensions:["hpgl"]},"application/vnd.hp-hpid":{source:"iana",extensions:["hpid"]},"application/vnd.hp-hps":{source:"iana",extensions:["hps"]},"application/vnd.hp-jlyt":{source:"iana",extensions:["jlt"]},"application/vnd.hp-pcl":{source:"iana",extensions:["pcl"]},"application/vnd.hp-pclxl":{source:"iana",extensions:["pclxl"]},"application/vnd.httphone":{source:"iana"},"application/vnd.hydrostatix.sof-data":{source:"iana",extensions:["sfd-hdstx"]},"application/vnd.hyper+json":{source:"iana",compressible:!0},"application/vnd.hyper-item+json":{source:"iana",compressible:!0},"application/vnd.hyperdrive+json":{source:"iana",compressible:!0},"application/vnd.hzn-3d-crossword":{source:"iana"},"application/vnd.ibm.afplinedata":{source:"iana"},"application/vnd.ibm.electronic-media":{source:"iana"},"application/vnd.ibm.minipay":{source:"iana",extensions:["mpy"]},"application/vnd.ibm.modcap":{source:"iana",extensions:["afp","listafp","list3820"]},"application/vnd.ibm.rights-management":{source:"iana",extensions:["irm"]},"application/vnd.ibm.secure-container":{source:"iana",extensions:["sc"]},"application/vnd.iccprofile":{source:"iana",extensions:["icc","icm"]},"application/vnd.ieee.1905":{source:"iana"},"application/vnd.igloader":{source:"iana",extensions:["igl"]},"application/vnd.imagemeter.folder+zip":{source:"iana",compressible:!1},"application/vnd.imagemeter.image+zip":{source:"iana",compressible:!1},"application/vnd.immervision-ivp":{source:"iana",extensions:["ivp"]},"application/vnd.immervision-ivu":{source:"iana",extensions:["ivu"]},"application/vnd.ims.imsccv1p1":{source:"iana"},"application/vnd.ims.imsccv1p2":{source:"iana"},"application/vnd.ims.imsccv1p3":{source:"iana"},"application/vnd.ims.lis.v2.result+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolconsumerprofile+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolproxy+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolproxy.id+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolsettings+json":{source:"iana",compressible:!0},"application/vnd.ims.lti.v2.toolsettings.simple+json":{source:"iana",compressible:!0},"application/vnd.informedcontrol.rms+xml":{source:"iana",compressible:!0},"application/vnd.informix-visionary":{source:"iana"},"application/vnd.infotech.project":{source:"iana"},"application/vnd.infotech.project+xml":{source:"iana",compressible:!0},"application/vnd.innopath.wamp.notification":{source:"iana"},"application/vnd.insors.igm":{source:"iana",extensions:["igm"]},"application/vnd.intercon.formnet":{source:"iana",extensions:["xpw","xpx"]},"application/vnd.intergeo":{source:"iana",extensions:["i2g"]},"application/vnd.intertrust.digibox":{source:"iana"},"application/vnd.intertrust.nncp":{source:"iana"},"application/vnd.intu.qbo":{source:"iana",extensions:["qbo"]},"application/vnd.intu.qfx":{source:"iana",extensions:["qfx"]},"application/vnd.iptc.g2.catalogitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.conceptitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.knowledgeitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.newsitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.newsmessage+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.packageitem+xml":{source:"iana",compressible:!0},"application/vnd.iptc.g2.planningitem+xml":{source:"iana",compressible:!0},"application/vnd.ipunplugged.rcprofile":{source:"iana",extensions:["rcprofile"]},"application/vnd.irepository.package+xml":{source:"iana",compressible:!0,extensions:["irp"]},"application/vnd.is-xpr":{source:"iana",extensions:["xpr"]},"application/vnd.isac.fcs":{source:"iana",extensions:["fcs"]},"application/vnd.iso11783-10+zip":{source:"iana",compressible:!1},"application/vnd.jam":{source:"iana",extensions:["jam"]},"application/vnd.japannet-directory-service":{source:"iana"},"application/vnd.japannet-jpnstore-wakeup":{source:"iana"},"application/vnd.japannet-payment-wakeup":{source:"iana"},"application/vnd.japannet-registration":{source:"iana"},"application/vnd.japannet-registration-wakeup":{source:"iana"},"application/vnd.japannet-setstore-wakeup":{source:"iana"},"application/vnd.japannet-verification":{source:"iana"},"application/vnd.japannet-verification-wakeup":{source:"iana"},"application/vnd.jcp.javame.midlet-rms":{source:"iana",extensions:["rms"]},"application/vnd.jisp":{source:"iana",extensions:["jisp"]},"application/vnd.joost.joda-archive":{source:"iana",extensions:["joda"]},"application/vnd.jsk.isdn-ngn":{source:"iana"},"application/vnd.kahootz":{source:"iana",extensions:["ktz","ktr"]},"application/vnd.kde.karbon":{source:"iana",extensions:["karbon"]},"application/vnd.kde.kchart":{source:"iana",extensions:["chrt"]},"application/vnd.kde.kformula":{source:"iana",extensions:["kfo"]},"application/vnd.kde.kivio":{source:"iana",extensions:["flw"]},"application/vnd.kde.kontour":{source:"iana",extensions:["kon"]},"application/vnd.kde.kpresenter":{source:"iana",extensions:["kpr","kpt"]},"application/vnd.kde.kspread":{source:"iana",extensions:["ksp"]},"application/vnd.kde.kword":{source:"iana",extensions:["kwd","kwt"]},"application/vnd.kenameaapp":{source:"iana",extensions:["htke"]},"application/vnd.kidspiration":{source:"iana",extensions:["kia"]},"application/vnd.kinar":{source:"iana",extensions:["kne","knp"]},"application/vnd.koan":{source:"iana",extensions:["skp","skd","skt","skm"]},"application/vnd.kodak-descriptor":{source:"iana",extensions:["sse"]},"application/vnd.las":{source:"iana"},"application/vnd.las.las+json":{source:"iana",compressible:!0},"application/vnd.las.las+xml":{source:"iana",compressible:!0,extensions:["lasxml"]},"application/vnd.laszip":{source:"iana"},"application/vnd.leap+json":{source:"iana",compressible:!0},"application/vnd.liberty-request+xml":{source:"iana",compressible:!0},"application/vnd.llamagraphics.life-balance.desktop":{source:"iana",extensions:["lbd"]},"application/vnd.llamagraphics.life-balance.exchange+xml":{source:"iana",compressible:!0,extensions:["lbe"]},"application/vnd.logipipe.circuit+zip":{source:"iana",compressible:!1},"application/vnd.loom":{source:"iana"},"application/vnd.lotus-1-2-3":{source:"iana",extensions:["123"]},"application/vnd.lotus-approach":{source:"iana",extensions:["apr"]},"application/vnd.lotus-freelance":{source:"iana",extensions:["pre"]},"application/vnd.lotus-notes":{source:"iana",extensions:["nsf"]},"application/vnd.lotus-organizer":{source:"iana",extensions:["org"]},"application/vnd.lotus-screencam":{source:"iana",extensions:["scm"]},"application/vnd.lotus-wordpro":{source:"iana",extensions:["lwp"]},"application/vnd.macports.portpkg":{source:"iana",extensions:["portpkg"]},"application/vnd.mapbox-vector-tile":{source:"iana",extensions:["mvt"]},"application/vnd.marlin.drm.actiontoken+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.conftoken+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.license+xml":{source:"iana",compressible:!0},"application/vnd.marlin.drm.mdcf":{source:"iana"},"application/vnd.mason+json":{source:"iana",compressible:!0},"application/vnd.maxar.archive.3tz+zip":{source:"iana",compressible:!1},"application/vnd.maxmind.maxmind-db":{source:"iana"},"application/vnd.mcd":{source:"iana",extensions:["mcd"]},"application/vnd.medcalcdata":{source:"iana",extensions:["mc1"]},"application/vnd.mediastation.cdkey":{source:"iana",extensions:["cdkey"]},"application/vnd.meridian-slingshot":{source:"iana"},"application/vnd.mfer":{source:"iana",extensions:["mwf"]},"application/vnd.mfmp":{source:"iana",extensions:["mfm"]},"application/vnd.micro+json":{source:"iana",compressible:!0},"application/vnd.micrografx.flo":{source:"iana",extensions:["flo"]},"application/vnd.micrografx.igx":{source:"iana",extensions:["igx"]},"application/vnd.microsoft.portable-executable":{source:"iana"},"application/vnd.microsoft.windows.thumbnail-cache":{source:"iana"},"application/vnd.miele+json":{source:"iana",compressible:!0},"application/vnd.mif":{source:"iana",extensions:["mif"]},"application/vnd.minisoft-hp3000-save":{source:"iana"},"application/vnd.mitsubishi.misty-guard.trustweb":{source:"iana"},"application/vnd.mobius.daf":{source:"iana",extensions:["daf"]},"application/vnd.mobius.dis":{source:"iana",extensions:["dis"]},"application/vnd.mobius.mbk":{source:"iana",extensions:["mbk"]},"application/vnd.mobius.mqy":{source:"iana",extensions:["mqy"]},"application/vnd.mobius.msl":{source:"iana",extensions:["msl"]},"application/vnd.mobius.plc":{source:"iana",extensions:["plc"]},"application/vnd.mobius.txf":{source:"iana",extensions:["txf"]},"application/vnd.mophun.application":{source:"iana",extensions:["mpn"]},"application/vnd.mophun.certificate":{source:"iana",extensions:["mpc"]},"application/vnd.motorola.flexsuite":{source:"iana"},"application/vnd.motorola.flexsuite.adsi":{source:"iana"},"application/vnd.motorola.flexsuite.fis":{source:"iana"},"application/vnd.motorola.flexsuite.gotap":{source:"iana"},"application/vnd.motorola.flexsuite.kmr":{source:"iana"},"application/vnd.motorola.flexsuite.ttc":{source:"iana"},"application/vnd.motorola.flexsuite.wem":{source:"iana"},"application/vnd.motorola.iprm":{source:"iana"},"application/vnd.mozilla.xul+xml":{source:"iana",compressible:!0,extensions:["xul"]},"application/vnd.ms-3mfdocument":{source:"iana"},"application/vnd.ms-artgalry":{source:"iana",extensions:["cil"]},"application/vnd.ms-asf":{source:"iana"},"application/vnd.ms-cab-compressed":{source:"iana",extensions:["cab"]},"application/vnd.ms-color.iccprofile":{source:"apache"},"application/vnd.ms-excel":{source:"iana",compressible:!1,extensions:["xls","xlm","xla","xlc","xlt","xlw"]},"application/vnd.ms-excel.addin.macroenabled.12":{source:"iana",extensions:["xlam"]},"application/vnd.ms-excel.sheet.binary.macroenabled.12":{source:"iana",extensions:["xlsb"]},"application/vnd.ms-excel.sheet.macroenabled.12":{source:"iana",extensions:["xlsm"]},"application/vnd.ms-excel.template.macroenabled.12":{source:"iana",extensions:["xltm"]},"application/vnd.ms-fontobject":{source:"iana",compressible:!0,extensions:["eot"]},"application/vnd.ms-htmlhelp":{source:"iana",extensions:["chm"]},"application/vnd.ms-ims":{source:"iana",extensions:["ims"]},"application/vnd.ms-lrm":{source:"iana",extensions:["lrm"]},"application/vnd.ms-office.activex+xml":{source:"iana",compressible:!0},"application/vnd.ms-officetheme":{source:"iana",extensions:["thmx"]},"application/vnd.ms-opentype":{source:"apache",compressible:!0},"application/vnd.ms-outlook":{compressible:!1,extensions:["msg"]},"application/vnd.ms-package.obfuscated-opentype":{source:"apache"},"application/vnd.ms-pki.seccat":{source:"apache",extensions:["cat"]},"application/vnd.ms-pki.stl":{source:"apache",extensions:["stl"]},"application/vnd.ms-playready.initiator+xml":{source:"iana",compressible:!0},"application/vnd.ms-powerpoint":{source:"iana",compressible:!1,extensions:["ppt","pps","pot"]},"application/vnd.ms-powerpoint.addin.macroenabled.12":{source:"iana",extensions:["ppam"]},"application/vnd.ms-powerpoint.presentation.macroenabled.12":{source:"iana",extensions:["pptm"]},"application/vnd.ms-powerpoint.slide.macroenabled.12":{source:"iana",extensions:["sldm"]},"application/vnd.ms-powerpoint.slideshow.macroenabled.12":{source:"iana",extensions:["ppsm"]},"application/vnd.ms-powerpoint.template.macroenabled.12":{source:"iana",extensions:["potm"]},"application/vnd.ms-printdevicecapabilities+xml":{source:"iana",compressible:!0},"application/vnd.ms-printing.printticket+xml":{source:"apache",compressible:!0},"application/vnd.ms-printschematicket+xml":{source:"iana",compressible:!0},"application/vnd.ms-project":{source:"iana",extensions:["mpp","mpt"]},"application/vnd.ms-tnef":{source:"iana"},"application/vnd.ms-windows.devicepairing":{source:"iana"},"application/vnd.ms-windows.nwprinting.oob":{source:"iana"},"application/vnd.ms-windows.printerpairing":{source:"iana"},"application/vnd.ms-windows.wsd.oob":{source:"iana"},"application/vnd.ms-wmdrm.lic-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.lic-resp":{source:"iana"},"application/vnd.ms-wmdrm.meter-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.meter-resp":{source:"iana"},"application/vnd.ms-word.document.macroenabled.12":{source:"iana",extensions:["docm"]},"application/vnd.ms-word.template.macroenabled.12":{source:"iana",extensions:["dotm"]},"application/vnd.ms-works":{source:"iana",extensions:["wps","wks","wcm","wdb"]},"application/vnd.ms-wpl":{source:"iana",extensions:["wpl"]},"application/vnd.ms-xpsdocument":{source:"iana",compressible:!1,extensions:["xps"]},"application/vnd.msa-disk-image":{source:"iana"},"application/vnd.mseq":{source:"iana",extensions:["mseq"]},"application/vnd.msign":{source:"iana"},"application/vnd.multiad.creator":{source:"iana"},"application/vnd.multiad.creator.cif":{source:"iana"},"application/vnd.music-niff":{source:"iana"},"application/vnd.musician":{source:"iana",extensions:["mus"]},"application/vnd.muvee.style":{source:"iana",extensions:["msty"]},"application/vnd.mynfc":{source:"iana",extensions:["taglet"]},"application/vnd.nacamar.ybrid+json":{source:"iana",compressible:!0},"application/vnd.ncd.control":{source:"iana"},"application/vnd.ncd.reference":{source:"iana"},"application/vnd.nearst.inv+json":{source:"iana",compressible:!0},"application/vnd.nebumind.line":{source:"iana"},"application/vnd.nervana":{source:"iana"},"application/vnd.netfpx":{source:"iana"},"application/vnd.neurolanguage.nlu":{source:"iana",extensions:["nlu"]},"application/vnd.nimn":{source:"iana"},"application/vnd.nintendo.nitro.rom":{source:"iana"},"application/vnd.nintendo.snes.rom":{source:"iana"},"application/vnd.nitf":{source:"iana",extensions:["ntf","nitf"]},"application/vnd.noblenet-directory":{source:"iana",extensions:["nnd"]},"application/vnd.noblenet-sealer":{source:"iana",extensions:["nns"]},"application/vnd.noblenet-web":{source:"iana",extensions:["nnw"]},"application/vnd.nokia.catalogs":{source:"iana"},"application/vnd.nokia.conml+wbxml":{source:"iana"},"application/vnd.nokia.conml+xml":{source:"iana",compressible:!0},"application/vnd.nokia.iptv.config+xml":{source:"iana",compressible:!0},"application/vnd.nokia.isds-radio-presets":{source:"iana"},"application/vnd.nokia.landmark+wbxml":{source:"iana"},"application/vnd.nokia.landmark+xml":{source:"iana",compressible:!0},"application/vnd.nokia.landmarkcollection+xml":{source:"iana",compressible:!0},"application/vnd.nokia.n-gage.ac+xml":{source:"iana",compressible:!0,extensions:["ac"]},"application/vnd.nokia.n-gage.data":{source:"iana",extensions:["ngdat"]},"application/vnd.nokia.n-gage.symbian.install":{source:"iana",extensions:["n-gage"]},"application/vnd.nokia.ncd":{source:"iana"},"application/vnd.nokia.pcd+wbxml":{source:"iana"},"application/vnd.nokia.pcd+xml":{source:"iana",compressible:!0},"application/vnd.nokia.radio-preset":{source:"iana",extensions:["rpst"]},"application/vnd.nokia.radio-presets":{source:"iana",extensions:["rpss"]},"application/vnd.novadigm.edm":{source:"iana",extensions:["edm"]},"application/vnd.novadigm.edx":{source:"iana",extensions:["edx"]},"application/vnd.novadigm.ext":{source:"iana",extensions:["ext"]},"application/vnd.ntt-local.content-share":{source:"iana"},"application/vnd.ntt-local.file-transfer":{source:"iana"},"application/vnd.ntt-local.ogw_remote-access":{source:"iana"},"application/vnd.ntt-local.sip-ta_remote":{source:"iana"},"application/vnd.ntt-local.sip-ta_tcp_stream":{source:"iana"},"application/vnd.oasis.opendocument.chart":{source:"iana",extensions:["odc"]},"application/vnd.oasis.opendocument.chart-template":{source:"iana",extensions:["otc"]},"application/vnd.oasis.opendocument.database":{source:"iana",extensions:["odb"]},"application/vnd.oasis.opendocument.formula":{source:"iana",extensions:["odf"]},"application/vnd.oasis.opendocument.formula-template":{source:"iana",extensions:["odft"]},"application/vnd.oasis.opendocument.graphics":{source:"iana",compressible:!1,extensions:["odg"]},"application/vnd.oasis.opendocument.graphics-template":{source:"iana",extensions:["otg"]},"application/vnd.oasis.opendocument.image":{source:"iana",extensions:["odi"]},"application/vnd.oasis.opendocument.image-template":{source:"iana",extensions:["oti"]},"application/vnd.oasis.opendocument.presentation":{source:"iana",compressible:!1,extensions:["odp"]},"application/vnd.oasis.opendocument.presentation-template":{source:"iana",extensions:["otp"]},"application/vnd.oasis.opendocument.spreadsheet":{source:"iana",compressible:!1,extensions:["ods"]},"application/vnd.oasis.opendocument.spreadsheet-template":{source:"iana",extensions:["ots"]},"application/vnd.oasis.opendocument.text":{source:"iana",compressible:!1,extensions:["odt"]},"application/vnd.oasis.opendocument.text-master":{source:"iana",extensions:["odm"]},"application/vnd.oasis.opendocument.text-template":{source:"iana",extensions:["ott"]},"application/vnd.oasis.opendocument.text-web":{source:"iana",extensions:["oth"]},"application/vnd.obn":{source:"iana"},"application/vnd.ocf+cbor":{source:"iana"},"application/vnd.oci.image.manifest.v1+json":{source:"iana",compressible:!0},"application/vnd.oftn.l10n+json":{source:"iana",compressible:!0},"application/vnd.oipf.contentaccessdownload+xml":{source:"iana",compressible:!0},"application/vnd.oipf.contentaccessstreaming+xml":{source:"iana",compressible:!0},"application/vnd.oipf.cspg-hexbinary":{source:"iana"},"application/vnd.oipf.dae.svg+xml":{source:"iana",compressible:!0},"application/vnd.oipf.dae.xhtml+xml":{source:"iana",compressible:!0},"application/vnd.oipf.mippvcontrolmessage+xml":{source:"iana",compressible:!0},"application/vnd.oipf.pae.gem":{source:"iana"},"application/vnd.oipf.spdiscovery+xml":{source:"iana",compressible:!0},"application/vnd.oipf.spdlist+xml":{source:"iana",compressible:!0},"application/vnd.oipf.ueprofile+xml":{source:"iana",compressible:!0},"application/vnd.oipf.userprofile+xml":{source:"iana",compressible:!0},"application/vnd.olpc-sugar":{source:"iana",extensions:["xo"]},"application/vnd.oma-scws-config":{source:"iana"},"application/vnd.oma-scws-http-request":{source:"iana"},"application/vnd.oma-scws-http-response":{source:"iana"},"application/vnd.oma.bcast.associated-procedure-parameter+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.drm-trigger+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.imd+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.ltkm":{source:"iana"},"application/vnd.oma.bcast.notification+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.provisioningtrigger":{source:"iana"},"application/vnd.oma.bcast.sgboot":{source:"iana"},"application/vnd.oma.bcast.sgdd+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.sgdu":{source:"iana"},"application/vnd.oma.bcast.simple-symbol-container":{source:"iana"},"application/vnd.oma.bcast.smartcard-trigger+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.sprov+xml":{source:"iana",compressible:!0},"application/vnd.oma.bcast.stkm":{source:"iana"},"application/vnd.oma.cab-address-book+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-feature-handler+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-pcc+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-subs-invite+xml":{source:"iana",compressible:!0},"application/vnd.oma.cab-user-prefs+xml":{source:"iana",compressible:!0},"application/vnd.oma.dcd":{source:"iana"},"application/vnd.oma.dcdc":{source:"iana"},"application/vnd.oma.dd2+xml":{source:"iana",compressible:!0,extensions:["dd2"]},"application/vnd.oma.drm.risd+xml":{source:"iana",compressible:!0},"application/vnd.oma.group-usage-list+xml":{source:"iana",compressible:!0},"application/vnd.oma.lwm2m+cbor":{source:"iana"},"application/vnd.oma.lwm2m+json":{source:"iana",compressible:!0},"application/vnd.oma.lwm2m+tlv":{source:"iana"},"application/vnd.oma.pal+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.detailed-progress-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.final-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.groups+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.invocation-descriptor+xml":{source:"iana",compressible:!0},"application/vnd.oma.poc.optimized-progress-report+xml":{source:"iana",compressible:!0},"application/vnd.oma.push":{source:"iana"},"application/vnd.oma.scidm.messages+xml":{source:"iana",compressible:!0},"application/vnd.oma.xcap-directory+xml":{source:"iana",compressible:!0},"application/vnd.omads-email+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omads-file+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omads-folder+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.omaloc-supl-init":{source:"iana"},"application/vnd.onepager":{source:"iana"},"application/vnd.onepagertamp":{source:"iana"},"application/vnd.onepagertamx":{source:"iana"},"application/vnd.onepagertat":{source:"iana"},"application/vnd.onepagertatp":{source:"iana"},"application/vnd.onepagertatx":{source:"iana"},"application/vnd.openblox.game+xml":{source:"iana",compressible:!0,extensions:["obgx"]},"application/vnd.openblox.game-binary":{source:"iana"},"application/vnd.openeye.oeb":{source:"iana"},"application/vnd.openofficeorg.extension":{source:"apache",extensions:["oxt"]},"application/vnd.openstreetmap.data+xml":{source:"iana",compressible:!0,extensions:["osm"]},"application/vnd.opentimestamps.ots":{source:"iana"},"application/vnd.openxmlformats-officedocument.custom-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.customxmlproperties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawing+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.chart+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.extended-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{source:"iana",compressible:!1,extensions:["pptx"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slide":{source:"iana",extensions:["sldx"]},"application/vnd.openxmlformats-officedocument.presentationml.slide+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slideshow":{source:"iana",extensions:["ppsx"]},"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.tags+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.template":{source:"iana",extensions:["potx"]},"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{source:"iana",compressible:!1,extensions:["xlsx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.template":{source:"iana",extensions:["xltx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.theme+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.themeoverride+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.vmldrawing":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{source:"iana",compressible:!1,extensions:["docx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.template":{source:"iana",extensions:["dotx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.core-properties+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml":{source:"iana",compressible:!0},"application/vnd.openxmlformats-package.relationships+xml":{source:"iana",compressible:!0},"application/vnd.oracle.resource+json":{source:"iana",compressible:!0},"application/vnd.orange.indata":{source:"iana"},"application/vnd.osa.netdeploy":{source:"iana"},"application/vnd.osgeo.mapguide.package":{source:"iana",extensions:["mgp"]},"application/vnd.osgi.bundle":{source:"iana"},"application/vnd.osgi.dp":{source:"iana",extensions:["dp"]},"application/vnd.osgi.subsystem":{source:"iana",extensions:["esa"]},"application/vnd.otps.ct-kip+xml":{source:"iana",compressible:!0},"application/vnd.oxli.countgraph":{source:"iana"},"application/vnd.pagerduty+json":{source:"iana",compressible:!0},"application/vnd.palm":{source:"iana",extensions:["pdb","pqa","oprc"]},"application/vnd.panoply":{source:"iana"},"application/vnd.paos.xml":{source:"iana"},"application/vnd.patentdive":{source:"iana"},"application/vnd.patientecommsdoc":{source:"iana"},"application/vnd.pawaafile":{source:"iana",extensions:["paw"]},"application/vnd.pcos":{source:"iana"},"application/vnd.pg.format":{source:"iana",extensions:["str"]},"application/vnd.pg.osasli":{source:"iana",extensions:["ei6"]},"application/vnd.piaccess.application-licence":{source:"iana"},"application/vnd.picsel":{source:"iana",extensions:["efif"]},"application/vnd.pmi.widget":{source:"iana",extensions:["wg"]},"application/vnd.poc.group-advertisement+xml":{source:"iana",compressible:!0},"application/vnd.pocketlearn":{source:"iana",extensions:["plf"]},"application/vnd.powerbuilder6":{source:"iana",extensions:["pbd"]},"application/vnd.powerbuilder6-s":{source:"iana"},"application/vnd.powerbuilder7":{source:"iana"},"application/vnd.powerbuilder7-s":{source:"iana"},"application/vnd.powerbuilder75":{source:"iana"},"application/vnd.powerbuilder75-s":{source:"iana"},"application/vnd.preminet":{source:"iana"},"application/vnd.previewsystems.box":{source:"iana",extensions:["box"]},"application/vnd.proteus.magazine":{source:"iana",extensions:["mgz"]},"application/vnd.psfs":{source:"iana"},"application/vnd.publishare-delta-tree":{source:"iana",extensions:["qps"]},"application/vnd.pvi.ptid1":{source:"iana",extensions:["ptid"]},"application/vnd.pwg-multiplexed":{source:"iana"},"application/vnd.pwg-xhtml-print+xml":{source:"iana",compressible:!0},"application/vnd.qualcomm.brew-app-res":{source:"iana"},"application/vnd.quarantainenet":{source:"iana"},"application/vnd.quark.quarkxpress":{source:"iana",extensions:["qxd","qxt","qwd","qwt","qxl","qxb"]},"application/vnd.quobject-quoxdocument":{source:"iana"},"application/vnd.radisys.moml+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-conf+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-conn+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-dialog+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-audit-stream+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-conf+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-base+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-fax-detect+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-fax-sendrecv+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-group+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-speech+xml":{source:"iana",compressible:!0},"application/vnd.radisys.msml-dialog-transform+xml":{source:"iana",compressible:!0},"application/vnd.rainstor.data":{source:"iana"},"application/vnd.rapid":{source:"iana"},"application/vnd.rar":{source:"iana",extensions:["rar"]},"application/vnd.realvnc.bed":{source:"iana",extensions:["bed"]},"application/vnd.recordare.musicxml":{source:"iana",extensions:["mxl"]},"application/vnd.recordare.musicxml+xml":{source:"iana",compressible:!0,extensions:["musicxml"]},"application/vnd.renlearn.rlprint":{source:"iana"},"application/vnd.resilient.logic":{source:"iana"},"application/vnd.restful+json":{source:"iana",compressible:!0},"application/vnd.rig.cryptonote":{source:"iana",extensions:["cryptonote"]},"application/vnd.rim.cod":{source:"apache",extensions:["cod"]},"application/vnd.rn-realmedia":{source:"apache",extensions:["rm"]},"application/vnd.rn-realmedia-vbr":{source:"apache",extensions:["rmvb"]},"application/vnd.route66.link66+xml":{source:"iana",compressible:!0,extensions:["link66"]},"application/vnd.rs-274x":{source:"iana"},"application/vnd.ruckus.download":{source:"iana"},"application/vnd.s3sms":{source:"iana"},"application/vnd.sailingtracker.track":{source:"iana",extensions:["st"]},"application/vnd.sar":{source:"iana"},"application/vnd.sbm.cid":{source:"iana"},"application/vnd.sbm.mid2":{source:"iana"},"application/vnd.scribus":{source:"iana"},"application/vnd.sealed.3df":{source:"iana"},"application/vnd.sealed.csf":{source:"iana"},"application/vnd.sealed.doc":{source:"iana"},"application/vnd.sealed.eml":{source:"iana"},"application/vnd.sealed.mht":{source:"iana"},"application/vnd.sealed.net":{source:"iana"},"application/vnd.sealed.ppt":{source:"iana"},"application/vnd.sealed.tiff":{source:"iana"},"application/vnd.sealed.xls":{source:"iana"},"application/vnd.sealedmedia.softseal.html":{source:"iana"},"application/vnd.sealedmedia.softseal.pdf":{source:"iana"},"application/vnd.seemail":{source:"iana",extensions:["see"]},"application/vnd.seis+json":{source:"iana",compressible:!0},"application/vnd.sema":{source:"iana",extensions:["sema"]},"application/vnd.semd":{source:"iana",extensions:["semd"]},"application/vnd.semf":{source:"iana",extensions:["semf"]},"application/vnd.shade-save-file":{source:"iana"},"application/vnd.shana.informed.formdata":{source:"iana",extensions:["ifm"]},"application/vnd.shana.informed.formtemplate":{source:"iana",extensions:["itp"]},"application/vnd.shana.informed.interchange":{source:"iana",extensions:["iif"]},"application/vnd.shana.informed.package":{source:"iana",extensions:["ipk"]},"application/vnd.shootproof+json":{source:"iana",compressible:!0},"application/vnd.shopkick+json":{source:"iana",compressible:!0},"application/vnd.shp":{source:"iana"},"application/vnd.shx":{source:"iana"},"application/vnd.sigrok.session":{source:"iana"},"application/vnd.simtech-mindmapper":{source:"iana",extensions:["twd","twds"]},"application/vnd.siren+json":{source:"iana",compressible:!0},"application/vnd.smaf":{source:"iana",extensions:["mmf"]},"application/vnd.smart.notebook":{source:"iana"},"application/vnd.smart.teacher":{source:"iana",extensions:["teacher"]},"application/vnd.snesdev-page-table":{source:"iana"},"application/vnd.software602.filler.form+xml":{source:"iana",compressible:!0,extensions:["fo"]},"application/vnd.software602.filler.form-xml-zip":{source:"iana"},"application/vnd.solent.sdkm+xml":{source:"iana",compressible:!0,extensions:["sdkm","sdkd"]},"application/vnd.spotfire.dxp":{source:"iana",extensions:["dxp"]},"application/vnd.spotfire.sfs":{source:"iana",extensions:["sfs"]},"application/vnd.sqlite3":{source:"iana"},"application/vnd.sss-cod":{source:"iana"},"application/vnd.sss-dtf":{source:"iana"},"application/vnd.sss-ntf":{source:"iana"},"application/vnd.stardivision.calc":{source:"apache",extensions:["sdc"]},"application/vnd.stardivision.draw":{source:"apache",extensions:["sda"]},"application/vnd.stardivision.impress":{source:"apache",extensions:["sdd"]},"application/vnd.stardivision.math":{source:"apache",extensions:["smf"]},"application/vnd.stardivision.writer":{source:"apache",extensions:["sdw","vor"]},"application/vnd.stardivision.writer-global":{source:"apache",extensions:["sgl"]},"application/vnd.stepmania.package":{source:"iana",extensions:["smzip"]},"application/vnd.stepmania.stepchart":{source:"iana",extensions:["sm"]},"application/vnd.street-stream":{source:"iana"},"application/vnd.sun.wadl+xml":{source:"iana",compressible:!0,extensions:["wadl"]},"application/vnd.sun.xml.calc":{source:"apache",extensions:["sxc"]},"application/vnd.sun.xml.calc.template":{source:"apache",extensions:["stc"]},"application/vnd.sun.xml.draw":{source:"apache",extensions:["sxd"]},"application/vnd.sun.xml.draw.template":{source:"apache",extensions:["std"]},"application/vnd.sun.xml.impress":{source:"apache",extensions:["sxi"]},"application/vnd.sun.xml.impress.template":{source:"apache",extensions:["sti"]},"application/vnd.sun.xml.math":{source:"apache",extensions:["sxm"]},"application/vnd.sun.xml.writer":{source:"apache",extensions:["sxw"]},"application/vnd.sun.xml.writer.global":{source:"apache",extensions:["sxg"]},"application/vnd.sun.xml.writer.template":{source:"apache",extensions:["stw"]},"application/vnd.sus-calendar":{source:"iana",extensions:["sus","susp"]},"application/vnd.svd":{source:"iana",extensions:["svd"]},"application/vnd.swiftview-ics":{source:"iana"},"application/vnd.sycle+xml":{source:"iana",compressible:!0},"application/vnd.syft+json":{source:"iana",compressible:!0},"application/vnd.symbian.install":{source:"apache",extensions:["sis","sisx"]},"application/vnd.syncml+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["xsm"]},"application/vnd.syncml.dm+wbxml":{source:"iana",charset:"UTF-8",extensions:["bdm"]},"application/vnd.syncml.dm+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["xdm"]},"application/vnd.syncml.dm.notification":{source:"iana"},"application/vnd.syncml.dmddf+wbxml":{source:"iana"},"application/vnd.syncml.dmddf+xml":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["ddf"]},"application/vnd.syncml.dmtnds+wbxml":{source:"iana"},"application/vnd.syncml.dmtnds+xml":{source:"iana",charset:"UTF-8",compressible:!0},"application/vnd.syncml.ds.notification":{source:"iana"},"application/vnd.tableschema+json":{source:"iana",compressible:!0},"application/vnd.tao.intent-module-archive":{source:"iana",extensions:["tao"]},"application/vnd.tcpdump.pcap":{source:"iana",extensions:["pcap","cap","dmp"]},"application/vnd.think-cell.ppttc+json":{source:"iana",compressible:!0},"application/vnd.tmd.mediaflex.api+xml":{source:"iana",compressible:!0},"application/vnd.tml":{source:"iana"},"application/vnd.tmobile-livetv":{source:"iana",extensions:["tmo"]},"application/vnd.tri.onesource":{source:"iana"},"application/vnd.trid.tpt":{source:"iana",extensions:["tpt"]},"application/vnd.triscape.mxs":{source:"iana",extensions:["mxs"]},"application/vnd.trueapp":{source:"iana",extensions:["tra"]},"application/vnd.truedoc":{source:"iana"},"application/vnd.ubisoft.webplayer":{source:"iana"},"application/vnd.ufdl":{source:"iana",extensions:["ufd","ufdl"]},"application/vnd.uiq.theme":{source:"iana",extensions:["utz"]},"application/vnd.umajin":{source:"iana",extensions:["umj"]},"application/vnd.unity":{source:"iana",extensions:["unityweb"]},"application/vnd.uoml+xml":{source:"iana",compressible:!0,extensions:["uoml"]},"application/vnd.uplanet.alert":{source:"iana"},"application/vnd.uplanet.alert-wbxml":{source:"iana"},"application/vnd.uplanet.bearer-choice":{source:"iana"},"application/vnd.uplanet.bearer-choice-wbxml":{source:"iana"},"application/vnd.uplanet.cacheop":{source:"iana"},"application/vnd.uplanet.cacheop-wbxml":{source:"iana"},"application/vnd.uplanet.channel":{source:"iana"},"application/vnd.uplanet.channel-wbxml":{source:"iana"},"application/vnd.uplanet.list":{source:"iana"},"application/vnd.uplanet.list-wbxml":{source:"iana"},"application/vnd.uplanet.listcmd":{source:"iana"},"application/vnd.uplanet.listcmd-wbxml":{source:"iana"},"application/vnd.uplanet.signal":{source:"iana"},"application/vnd.uri-map":{source:"iana"},"application/vnd.valve.source.material":{source:"iana"},"application/vnd.vcx":{source:"iana",extensions:["vcx"]},"application/vnd.vd-study":{source:"iana"},"application/vnd.vectorworks":{source:"iana"},"application/vnd.vel+json":{source:"iana",compressible:!0},"application/vnd.verimatrix.vcas":{source:"iana"},"application/vnd.veritone.aion+json":{source:"iana",compressible:!0},"application/vnd.veryant.thin":{source:"iana"},"application/vnd.ves.encrypted":{source:"iana"},"application/vnd.vidsoft.vidconference":{source:"iana"},"application/vnd.visio":{source:"iana",extensions:["vsd","vst","vss","vsw"]},"application/vnd.visionary":{source:"iana",extensions:["vis"]},"application/vnd.vividence.scriptfile":{source:"iana"},"application/vnd.vsf":{source:"iana",extensions:["vsf"]},"application/vnd.wap.sic":{source:"iana"},"application/vnd.wap.slc":{source:"iana"},"application/vnd.wap.wbxml":{source:"iana",charset:"UTF-8",extensions:["wbxml"]},"application/vnd.wap.wmlc":{source:"iana",extensions:["wmlc"]},"application/vnd.wap.wmlscriptc":{source:"iana",extensions:["wmlsc"]},"application/vnd.webturbo":{source:"iana",extensions:["wtb"]},"application/vnd.wfa.dpp":{source:"iana"},"application/vnd.wfa.p2p":{source:"iana"},"application/vnd.wfa.wsc":{source:"iana"},"application/vnd.windows.devicepairing":{source:"iana"},"application/vnd.wmc":{source:"iana"},"application/vnd.wmf.bootstrap":{source:"iana"},"application/vnd.wolfram.mathematica":{source:"iana"},"application/vnd.wolfram.mathematica.package":{source:"iana"},"application/vnd.wolfram.player":{source:"iana",extensions:["nbp"]},"application/vnd.wordperfect":{source:"iana",extensions:["wpd"]},"application/vnd.wqd":{source:"iana",extensions:["wqd"]},"application/vnd.wrq-hp3000-labelled":{source:"iana"},"application/vnd.wt.stf":{source:"iana",extensions:["stf"]},"application/vnd.wv.csp+wbxml":{source:"iana"},"application/vnd.wv.csp+xml":{source:"iana",compressible:!0},"application/vnd.wv.ssp+xml":{source:"iana",compressible:!0},"application/vnd.xacml+json":{source:"iana",compressible:!0},"application/vnd.xara":{source:"iana",extensions:["xar"]},"application/vnd.xfdl":{source:"iana",extensions:["xfdl"]},"application/vnd.xfdl.webform":{source:"iana"},"application/vnd.xmi+xml":{source:"iana",compressible:!0},"application/vnd.xmpie.cpkg":{source:"iana"},"application/vnd.xmpie.dpkg":{source:"iana"},"application/vnd.xmpie.plan":{source:"iana"},"application/vnd.xmpie.ppkg":{source:"iana"},"application/vnd.xmpie.xlim":{source:"iana"},"application/vnd.yamaha.hv-dic":{source:"iana",extensions:["hvd"]},"application/vnd.yamaha.hv-script":{source:"iana",extensions:["hvs"]},"application/vnd.yamaha.hv-voice":{source:"iana",extensions:["hvp"]},"application/vnd.yamaha.openscoreformat":{source:"iana",extensions:["osf"]},"application/vnd.yamaha.openscoreformat.osfpvg+xml":{source:"iana",compressible:!0,extensions:["osfpvg"]},"application/vnd.yamaha.remote-setup":{source:"iana"},"application/vnd.yamaha.smaf-audio":{source:"iana",extensions:["saf"]},"application/vnd.yamaha.smaf-phrase":{source:"iana",extensions:["spf"]},"application/vnd.yamaha.through-ngn":{source:"iana"},"application/vnd.yamaha.tunnel-udpencap":{source:"iana"},"application/vnd.yaoweme":{source:"iana"},"application/vnd.yellowriver-custom-menu":{source:"iana",extensions:["cmp"]},"application/vnd.youtube.yt":{source:"iana"},"application/vnd.zul":{source:"iana",extensions:["zir","zirz"]},"application/vnd.zzazz.deck+xml":{source:"iana",compressible:!0,extensions:["zaz"]},"application/voicexml+xml":{source:"iana",compressible:!0,extensions:["vxml"]},"application/voucher-cms+json":{source:"iana",compressible:!0},"application/vq-rtcpxr":{source:"iana"},"application/wasm":{source:"iana",compressible:!0,extensions:["wasm"]},"application/watcherinfo+xml":{source:"iana",compressible:!0,extensions:["wif"]},"application/webpush-options+json":{source:"iana",compressible:!0},"application/whoispp-query":{source:"iana"},"application/whoispp-response":{source:"iana"},"application/widget":{source:"iana",extensions:["wgt"]},"application/winhlp":{source:"apache",extensions:["hlp"]},"application/wita":{source:"iana"},"application/wordperfect5.1":{source:"iana"},"application/wsdl+xml":{source:"iana",compressible:!0,extensions:["wsdl"]},"application/wspolicy+xml":{source:"iana",compressible:!0,extensions:["wspolicy"]},"application/x-7z-compressed":{source:"apache",compressible:!1,extensions:["7z"]},"application/x-abiword":{source:"apache",extensions:["abw"]},"application/x-ace-compressed":{source:"apache",extensions:["ace"]},"application/x-amf":{source:"apache"},"application/x-apple-diskimage":{source:"apache",extensions:["dmg"]},"application/x-arj":{compressible:!1,extensions:["arj"]},"application/x-authorware-bin":{source:"apache",extensions:["aab","x32","u32","vox"]},"application/x-authorware-map":{source:"apache",extensions:["aam"]},"application/x-authorware-seg":{source:"apache",extensions:["aas"]},"application/x-bcpio":{source:"apache",extensions:["bcpio"]},"application/x-bdoc":{compressible:!1,extensions:["bdoc"]},"application/x-bittorrent":{source:"apache",extensions:["torrent"]},"application/x-blorb":{source:"apache",extensions:["blb","blorb"]},"application/x-bzip":{source:"apache",compressible:!1,extensions:["bz"]},"application/x-bzip2":{source:"apache",compressible:!1,extensions:["bz2","boz"]},"application/x-cbr":{source:"apache",extensions:["cbr","cba","cbt","cbz","cb7"]},"application/x-cdlink":{source:"apache",extensions:["vcd"]},"application/x-cfs-compressed":{source:"apache",extensions:["cfs"]},"application/x-chat":{source:"apache",extensions:["chat"]},"application/x-chess-pgn":{source:"apache",extensions:["pgn"]},"application/x-chrome-extension":{extensions:["crx"]},"application/x-cocoa":{source:"nginx",extensions:["cco"]},"application/x-compress":{source:"apache"},"application/x-conference":{source:"apache",extensions:["nsc"]},"application/x-cpio":{source:"apache",extensions:["cpio"]},"application/x-csh":{source:"apache",extensions:["csh"]},"application/x-deb":{compressible:!1},"application/x-debian-package":{source:"apache",extensions:["deb","udeb"]},"application/x-dgc-compressed":{source:"apache",extensions:["dgc"]},"application/x-director":{source:"apache",extensions:["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"]},"application/x-doom":{source:"apache",extensions:["wad"]},"application/x-dtbncx+xml":{source:"apache",compressible:!0,extensions:["ncx"]},"application/x-dtbook+xml":{source:"apache",compressible:!0,extensions:["dtb"]},"application/x-dtbresource+xml":{source:"apache",compressible:!0,extensions:["res"]},"application/x-dvi":{source:"apache",compressible:!1,extensions:["dvi"]},"application/x-envoy":{source:"apache",extensions:["evy"]},"application/x-eva":{source:"apache",extensions:["eva"]},"application/x-font-bdf":{source:"apache",extensions:["bdf"]},"application/x-font-dos":{source:"apache"},"application/x-font-framemaker":{source:"apache"},"application/x-font-ghostscript":{source:"apache",extensions:["gsf"]},"application/x-font-libgrx":{source:"apache"},"application/x-font-linux-psf":{source:"apache",extensions:["psf"]},"application/x-font-pcf":{source:"apache",extensions:["pcf"]},"application/x-font-snf":{source:"apache",extensions:["snf"]},"application/x-font-speedo":{source:"apache"},"application/x-font-sunos-news":{source:"apache"},"application/x-font-type1":{source:"apache",extensions:["pfa","pfb","pfm","afm"]},"application/x-font-vfont":{source:"apache"},"application/x-freearc":{source:"apache",extensions:["arc"]},"application/x-futuresplash":{source:"apache",extensions:["spl"]},"application/x-gca-compressed":{source:"apache",extensions:["gca"]},"application/x-glulx":{source:"apache",extensions:["ulx"]},"application/x-gnumeric":{source:"apache",extensions:["gnumeric"]},"application/x-gramps-xml":{source:"apache",extensions:["gramps"]},"application/x-gtar":{source:"apache",extensions:["gtar"]},"application/x-gzip":{source:"apache"},"application/x-hdf":{source:"apache",extensions:["hdf"]},"application/x-httpd-php":{compressible:!0,extensions:["php"]},"application/x-install-instructions":{source:"apache",extensions:["install"]},"application/x-iso9660-image":{source:"apache",extensions:["iso"]},"application/x-iwork-keynote-sffkey":{extensions:["key"]},"application/x-iwork-numbers-sffnumbers":{extensions:["numbers"]},"application/x-iwork-pages-sffpages":{extensions:["pages"]},"application/x-java-archive-diff":{source:"nginx",extensions:["jardiff"]},"application/x-java-jnlp-file":{source:"apache",compressible:!1,extensions:["jnlp"]},"application/x-javascript":{compressible:!0},"application/x-keepass2":{extensions:["kdbx"]},"application/x-latex":{source:"apache",compressible:!1,extensions:["latex"]},"application/x-lua-bytecode":{extensions:["luac"]},"application/x-lzh-compressed":{source:"apache",extensions:["lzh","lha"]},"application/x-makeself":{source:"nginx",extensions:["run"]},"application/x-mie":{source:"apache",extensions:["mie"]},"application/x-mobipocket-ebook":{source:"apache",extensions:["prc","mobi"]},"application/x-mpegurl":{compressible:!1},"application/x-ms-application":{source:"apache",extensions:["application"]},"application/x-ms-shortcut":{source:"apache",extensions:["lnk"]},"application/x-ms-wmd":{source:"apache",extensions:["wmd"]},"application/x-ms-wmz":{source:"apache",extensions:["wmz"]},"application/x-ms-xbap":{source:"apache",extensions:["xbap"]},"application/x-msaccess":{source:"apache",extensions:["mdb"]},"application/x-msbinder":{source:"apache",extensions:["obd"]},"application/x-mscardfile":{source:"apache",extensions:["crd"]},"application/x-msclip":{source:"apache",extensions:["clp"]},"application/x-msdos-program":{extensions:["exe"]},"application/x-msdownload":{source:"apache",extensions:["exe","dll","com","bat","msi"]},"application/x-msmediaview":{source:"apache",extensions:["mvb","m13","m14"]},"application/x-msmetafile":{source:"apache",extensions:["wmf","wmz","emf","emz"]},"application/x-msmoney":{source:"apache",extensions:["mny"]},"application/x-mspublisher":{source:"apache",extensions:["pub"]},"application/x-msschedule":{source:"apache",extensions:["scd"]},"application/x-msterminal":{source:"apache",extensions:["trm"]},"application/x-mswrite":{source:"apache",extensions:["wri"]},"application/x-netcdf":{source:"apache",extensions:["nc","cdf"]},"application/x-ns-proxy-autoconfig":{compressible:!0,extensions:["pac"]},"application/x-nzb":{source:"apache",extensions:["nzb"]},"application/x-perl":{source:"nginx",extensions:["pl","pm"]},"application/x-pilot":{source:"nginx",extensions:["prc","pdb"]},"application/x-pkcs12":{source:"apache",compressible:!1,extensions:["p12","pfx"]},"application/x-pkcs7-certificates":{source:"apache",extensions:["p7b","spc"]},"application/x-pkcs7-certreqresp":{source:"apache",extensions:["p7r"]},"application/x-pki-message":{source:"iana"},"application/x-rar-compressed":{source:"apache",compressible:!1,extensions:["rar"]},"application/x-redhat-package-manager":{source:"nginx",extensions:["rpm"]},"application/x-research-info-systems":{source:"apache",extensions:["ris"]},"application/x-sea":{source:"nginx",extensions:["sea"]},"application/x-sh":{source:"apache",compressible:!0,extensions:["sh"]},"application/x-shar":{source:"apache",extensions:["shar"]},"application/x-shockwave-flash":{source:"apache",compressible:!1,extensions:["swf"]},"application/x-silverlight-app":{source:"apache",extensions:["xap"]},"application/x-sql":{source:"apache",extensions:["sql"]},"application/x-stuffit":{source:"apache",compressible:!1,extensions:["sit"]},"application/x-stuffitx":{source:"apache",extensions:["sitx"]},"application/x-subrip":{source:"apache",extensions:["srt"]},"application/x-sv4cpio":{source:"apache",extensions:["sv4cpio"]},"application/x-sv4crc":{source:"apache",extensions:["sv4crc"]},"application/x-t3vm-image":{source:"apache",extensions:["t3"]},"application/x-tads":{source:"apache",extensions:["gam"]},"application/x-tar":{source:"apache",compressible:!0,extensions:["tar"]},"application/x-tcl":{source:"apache",extensions:["tcl","tk"]},"application/x-tex":{source:"apache",extensions:["tex"]},"application/x-tex-tfm":{source:"apache",extensions:["tfm"]},"application/x-texinfo":{source:"apache",extensions:["texinfo","texi"]},"application/x-tgif":{source:"apache",extensions:["obj"]},"application/x-ustar":{source:"apache",extensions:["ustar"]},"application/x-virtualbox-hdd":{compressible:!0,extensions:["hdd"]},"application/x-virtualbox-ova":{compressible:!0,extensions:["ova"]},"application/x-virtualbox-ovf":{compressible:!0,extensions:["ovf"]},"application/x-virtualbox-vbox":{compressible:!0,extensions:["vbox"]},"application/x-virtualbox-vbox-extpack":{compressible:!1,extensions:["vbox-extpack"]},"application/x-virtualbox-vdi":{compressible:!0,extensions:["vdi"]},"application/x-virtualbox-vhd":{compressible:!0,extensions:["vhd"]},"application/x-virtualbox-vmdk":{compressible:!0,extensions:["vmdk"]},"application/x-wais-source":{source:"apache",extensions:["src"]},"application/x-web-app-manifest+json":{compressible:!0,extensions:["webapp"]},"application/x-www-form-urlencoded":{source:"iana",compressible:!0},"application/x-x509-ca-cert":{source:"iana",extensions:["der","crt","pem"]},"application/x-x509-ca-ra-cert":{source:"iana"},"application/x-x509-next-ca-cert":{source:"iana"},"application/x-xfig":{source:"apache",extensions:["fig"]},"application/x-xliff+xml":{source:"apache",compressible:!0,extensions:["xlf"]},"application/x-xpinstall":{source:"apache",compressible:!1,extensions:["xpi"]},"application/x-xz":{source:"apache",extensions:["xz"]},"application/x-zmachine":{source:"apache",extensions:["z1","z2","z3","z4","z5","z6","z7","z8"]},"application/x400-bp":{source:"iana"},"application/xacml+xml":{source:"iana",compressible:!0},"application/xaml+xml":{source:"apache",compressible:!0,extensions:["xaml"]},"application/xcap-att+xml":{source:"iana",compressible:!0,extensions:["xav"]},"application/xcap-caps+xml":{source:"iana",compressible:!0,extensions:["xca"]},"application/xcap-diff+xml":{source:"iana",compressible:!0,extensions:["xdf"]},"application/xcap-el+xml":{source:"iana",compressible:!0,extensions:["xel"]},"application/xcap-error+xml":{source:"iana",compressible:!0},"application/xcap-ns+xml":{source:"iana",compressible:!0,extensions:["xns"]},"application/xcon-conference-info+xml":{source:"iana",compressible:!0},"application/xcon-conference-info-diff+xml":{source:"iana",compressible:!0},"application/xenc+xml":{source:"iana",compressible:!0,extensions:["xenc"]},"application/xhtml+xml":{source:"iana",compressible:!0,extensions:["xhtml","xht"]},"application/xhtml-voice+xml":{source:"apache",compressible:!0},"application/xliff+xml":{source:"iana",compressible:!0,extensions:["xlf"]},"application/xml":{source:"iana",compressible:!0,extensions:["xml","xsl","xsd","rng"]},"application/xml-dtd":{source:"iana",compressible:!0,extensions:["dtd"]},"application/xml-external-parsed-entity":{source:"iana"},"application/xml-patch+xml":{source:"iana",compressible:!0},"application/xmpp+xml":{source:"iana",compressible:!0},"application/xop+xml":{source:"iana",compressible:!0,extensions:["xop"]},"application/xproc+xml":{source:"apache",compressible:!0,extensions:["xpl"]},"application/xslt+xml":{source:"iana",compressible:!0,extensions:["xsl","xslt"]},"application/xspf+xml":{source:"apache",compressible:!0,extensions:["xspf"]},"application/xv+xml":{source:"iana",compressible:!0,extensions:["mxml","xhvml","xvml","xvm"]},"application/yang":{source:"iana",extensions:["yang"]},"application/yang-data+json":{source:"iana",compressible:!0},"application/yang-data+xml":{source:"iana",compressible:!0},"application/yang-patch+json":{source:"iana",compressible:!0},"application/yang-patch+xml":{source:"iana",compressible:!0},"application/yin+xml":{source:"iana",compressible:!0,extensions:["yin"]},"application/zip":{source:"iana",compressible:!1,extensions:["zip"]},"application/zlib":{source:"iana"},"application/zstd":{source:"iana"},"audio/1d-interleaved-parityfec":{source:"iana"},"audio/32kadpcm":{source:"iana"},"audio/3gpp":{source:"iana",compressible:!1,extensions:["3gpp"]},"audio/3gpp2":{source:"iana"},"audio/aac":{source:"iana"},"audio/ac3":{source:"iana"},"audio/adpcm":{source:"apache",extensions:["adp"]},"audio/amr":{source:"iana",extensions:["amr"]},"audio/amr-wb":{source:"iana"},"audio/amr-wb+":{source:"iana"},"audio/aptx":{source:"iana"},"audio/asc":{source:"iana"},"audio/atrac-advanced-lossless":{source:"iana"},"audio/atrac-x":{source:"iana"},"audio/atrac3":{source:"iana"},"audio/basic":{source:"iana",compressible:!1,extensions:["au","snd"]},"audio/bv16":{source:"iana"},"audio/bv32":{source:"iana"},"audio/clearmode":{source:"iana"},"audio/cn":{source:"iana"},"audio/dat12":{source:"iana"},"audio/dls":{source:"iana"},"audio/dsr-es201108":{source:"iana"},"audio/dsr-es202050":{source:"iana"},"audio/dsr-es202211":{source:"iana"},"audio/dsr-es202212":{source:"iana"},"audio/dv":{source:"iana"},"audio/dvi4":{source:"iana"},"audio/eac3":{source:"iana"},"audio/encaprtp":{source:"iana"},"audio/evrc":{source:"iana"},"audio/evrc-qcp":{source:"iana"},"audio/evrc0":{source:"iana"},"audio/evrc1":{source:"iana"},"audio/evrcb":{source:"iana"},"audio/evrcb0":{source:"iana"},"audio/evrcb1":{source:"iana"},"audio/evrcnw":{source:"iana"},"audio/evrcnw0":{source:"iana"},"audio/evrcnw1":{source:"iana"},"audio/evrcwb":{source:"iana"},"audio/evrcwb0":{source:"iana"},"audio/evrcwb1":{source:"iana"},"audio/evs":{source:"iana"},"audio/flexfec":{source:"iana"},"audio/fwdred":{source:"iana"},"audio/g711-0":{source:"iana"},"audio/g719":{source:"iana"},"audio/g722":{source:"iana"},"audio/g7221":{source:"iana"},"audio/g723":{source:"iana"},"audio/g726-16":{source:"iana"},"audio/g726-24":{source:"iana"},"audio/g726-32":{source:"iana"},"audio/g726-40":{source:"iana"},"audio/g728":{source:"iana"},"audio/g729":{source:"iana"},"audio/g7291":{source:"iana"},"audio/g729d":{source:"iana"},"audio/g729e":{source:"iana"},"audio/gsm":{source:"iana"},"audio/gsm-efr":{source:"iana"},"audio/gsm-hr-08":{source:"iana"},"audio/ilbc":{source:"iana"},"audio/ip-mr_v2.5":{source:"iana"},"audio/isac":{source:"apache"},"audio/l16":{source:"iana"},"audio/l20":{source:"iana"},"audio/l24":{source:"iana",compressible:!1},"audio/l8":{source:"iana"},"audio/lpc":{source:"iana"},"audio/melp":{source:"iana"},"audio/melp1200":{source:"iana"},"audio/melp2400":{source:"iana"},"audio/melp600":{source:"iana"},"audio/mhas":{source:"iana"},"audio/midi":{source:"apache",extensions:["mid","midi","kar","rmi"]},"audio/mobile-xmf":{source:"iana",extensions:["mxmf"]},"audio/mp3":{compressible:!1,extensions:["mp3"]},"audio/mp4":{source:"iana",compressible:!1,extensions:["m4a","mp4a"]},"audio/mp4a-latm":{source:"iana"},"audio/mpa":{source:"iana"},"audio/mpa-robust":{source:"iana"},"audio/mpeg":{source:"iana",compressible:!1,extensions:["mpga","mp2","mp2a","mp3","m2a","m3a"]},"audio/mpeg4-generic":{source:"iana"},"audio/musepack":{source:"apache"},"audio/ogg":{source:"iana",compressible:!1,extensions:["oga","ogg","spx","opus"]},"audio/opus":{source:"iana"},"audio/parityfec":{source:"iana"},"audio/pcma":{source:"iana"},"audio/pcma-wb":{source:"iana"},"audio/pcmu":{source:"iana"},"audio/pcmu-wb":{source:"iana"},"audio/prs.sid":{source:"iana"},"audio/qcelp":{source:"iana"},"audio/raptorfec":{source:"iana"},"audio/red":{source:"iana"},"audio/rtp-enc-aescm128":{source:"iana"},"audio/rtp-midi":{source:"iana"},"audio/rtploopback":{source:"iana"},"audio/rtx":{source:"iana"},"audio/s3m":{source:"apache",extensions:["s3m"]},"audio/scip":{source:"iana"},"audio/silk":{source:"apache",extensions:["sil"]},"audio/smv":{source:"iana"},"audio/smv-qcp":{source:"iana"},"audio/smv0":{source:"iana"},"audio/sofa":{source:"iana"},"audio/sp-midi":{source:"iana"},"audio/speex":{source:"iana"},"audio/t140c":{source:"iana"},"audio/t38":{source:"iana"},"audio/telephone-event":{source:"iana"},"audio/tetra_acelp":{source:"iana"},"audio/tetra_acelp_bb":{source:"iana"},"audio/tone":{source:"iana"},"audio/tsvcis":{source:"iana"},"audio/uemclip":{source:"iana"},"audio/ulpfec":{source:"iana"},"audio/usac":{source:"iana"},"audio/vdvi":{source:"iana"},"audio/vmr-wb":{source:"iana"},"audio/vnd.3gpp.iufp":{source:"iana"},"audio/vnd.4sb":{source:"iana"},"audio/vnd.audiokoz":{source:"iana"},"audio/vnd.celp":{source:"iana"},"audio/vnd.cisco.nse":{source:"iana"},"audio/vnd.cmles.radio-events":{source:"iana"},"audio/vnd.cns.anp1":{source:"iana"},"audio/vnd.cns.inf1":{source:"iana"},"audio/vnd.dece.audio":{source:"iana",extensions:["uva","uvva"]},"audio/vnd.digital-winds":{source:"iana",extensions:["eol"]},"audio/vnd.dlna.adts":{source:"iana"},"audio/vnd.dolby.heaac.1":{source:"iana"},"audio/vnd.dolby.heaac.2":{source:"iana"},"audio/vnd.dolby.mlp":{source:"iana"},"audio/vnd.dolby.mps":{source:"iana"},"audio/vnd.dolby.pl2":{source:"iana"},"audio/vnd.dolby.pl2x":{source:"iana"},"audio/vnd.dolby.pl2z":{source:"iana"},"audio/vnd.dolby.pulse.1":{source:"iana"},"audio/vnd.dra":{source:"iana",extensions:["dra"]},"audio/vnd.dts":{source:"iana",extensions:["dts"]},"audio/vnd.dts.hd":{source:"iana",extensions:["dtshd"]},"audio/vnd.dts.uhd":{source:"iana"},"audio/vnd.dvb.file":{source:"iana"},"audio/vnd.everad.plj":{source:"iana"},"audio/vnd.hns.audio":{source:"iana"},"audio/vnd.lucent.voice":{source:"iana",extensions:["lvp"]},"audio/vnd.ms-playready.media.pya":{source:"iana",extensions:["pya"]},"audio/vnd.nokia.mobile-xmf":{source:"iana"},"audio/vnd.nortel.vbk":{source:"iana"},"audio/vnd.nuera.ecelp4800":{source:"iana",extensions:["ecelp4800"]},"audio/vnd.nuera.ecelp7470":{source:"iana",extensions:["ecelp7470"]},"audio/vnd.nuera.ecelp9600":{source:"iana",extensions:["ecelp9600"]},"audio/vnd.octel.sbc":{source:"iana"},"audio/vnd.presonus.multitrack":{source:"iana"},"audio/vnd.qcelp":{source:"iana"},"audio/vnd.rhetorex.32kadpcm":{source:"iana"},"audio/vnd.rip":{source:"iana",extensions:["rip"]},"audio/vnd.rn-realaudio":{compressible:!1},"audio/vnd.sealedmedia.softseal.mpeg":{source:"iana"},"audio/vnd.vmx.cvsd":{source:"iana"},"audio/vnd.wave":{compressible:!1},"audio/vorbis":{source:"iana",compressible:!1},"audio/vorbis-config":{source:"iana"},"audio/wav":{compressible:!1,extensions:["wav"]},"audio/wave":{compressible:!1,extensions:["wav"]},"audio/webm":{source:"apache",compressible:!1,extensions:["weba"]},"audio/x-aac":{source:"apache",compressible:!1,extensions:["aac"]},"audio/x-aiff":{source:"apache",extensions:["aif","aiff","aifc"]},"audio/x-caf":{source:"apache",compressible:!1,extensions:["caf"]},"audio/x-flac":{source:"apache",extensions:["flac"]},"audio/x-m4a":{source:"nginx",extensions:["m4a"]},"audio/x-matroska":{source:"apache",extensions:["mka"]},"audio/x-mpegurl":{source:"apache",extensions:["m3u"]},"audio/x-ms-wax":{source:"apache",extensions:["wax"]},"audio/x-ms-wma":{source:"apache",extensions:["wma"]},"audio/x-pn-realaudio":{source:"apache",extensions:["ram","ra"]},"audio/x-pn-realaudio-plugin":{source:"apache",extensions:["rmp"]},"audio/x-realaudio":{source:"nginx",extensions:["ra"]},"audio/x-tta":{source:"apache"},"audio/x-wav":{source:"apache",extensions:["wav"]},"audio/xm":{source:"apache",extensions:["xm"]},"chemical/x-cdx":{source:"apache",extensions:["cdx"]},"chemical/x-cif":{source:"apache",extensions:["cif"]},"chemical/x-cmdf":{source:"apache",extensions:["cmdf"]},"chemical/x-cml":{source:"apache",extensions:["cml"]},"chemical/x-csml":{source:"apache",extensions:["csml"]},"chemical/x-pdb":{source:"apache"},"chemical/x-xyz":{source:"apache",extensions:["xyz"]},"font/collection":{source:"iana",extensions:["ttc"]},"font/otf":{source:"iana",compressible:!0,extensions:["otf"]},"font/sfnt":{source:"iana"},"font/ttf":{source:"iana",compressible:!0,extensions:["ttf"]},"font/woff":{source:"iana",extensions:["woff"]},"font/woff2":{source:"iana",extensions:["woff2"]},"image/aces":{source:"iana",extensions:["exr"]},"image/apng":{compressible:!1,extensions:["apng"]},"image/avci":{source:"iana",extensions:["avci"]},"image/avcs":{source:"iana",extensions:["avcs"]},"image/avif":{source:"iana",compressible:!1,extensions:["avif"]},"image/bmp":{source:"iana",compressible:!0,extensions:["bmp"]},"image/cgm":{source:"iana",extensions:["cgm"]},"image/dicom-rle":{source:"iana",extensions:["drle"]},"image/emf":{source:"iana",extensions:["emf"]},"image/fits":{source:"iana",extensions:["fits"]},"image/g3fax":{source:"iana",extensions:["g3"]},"image/gif":{source:"iana",compressible:!1,extensions:["gif"]},"image/heic":{source:"iana",extensions:["heic"]},"image/heic-sequence":{source:"iana",extensions:["heics"]},"image/heif":{source:"iana",extensions:["heif"]},"image/heif-sequence":{source:"iana",extensions:["heifs"]},"image/hej2k":{source:"iana",extensions:["hej2"]},"image/hsj2":{source:"iana",extensions:["hsj2"]},"image/ief":{source:"iana",extensions:["ief"]},"image/jls":{source:"iana",extensions:["jls"]},"image/jp2":{source:"iana",compressible:!1,extensions:["jp2","jpg2"]},"image/jpeg":{source:"iana",compressible:!1,extensions:["jpeg","jpg","jpe"]},"image/jph":{source:"iana",extensions:["jph"]},"image/jphc":{source:"iana",extensions:["jhc"]},"image/jpm":{source:"iana",compressible:!1,extensions:["jpm"]},"image/jpx":{source:"iana",compressible:!1,extensions:["jpx","jpf"]},"image/jxr":{source:"iana",extensions:["jxr"]},"image/jxra":{source:"iana",extensions:["jxra"]},"image/jxrs":{source:"iana",extensions:["jxrs"]},"image/jxs":{source:"iana",extensions:["jxs"]},"image/jxsc":{source:"iana",extensions:["jxsc"]},"image/jxsi":{source:"iana",extensions:["jxsi"]},"image/jxss":{source:"iana",extensions:["jxss"]},"image/ktx":{source:"iana",extensions:["ktx"]},"image/ktx2":{source:"iana",extensions:["ktx2"]},"image/naplps":{source:"iana"},"image/pjpeg":{compressible:!1},"image/png":{source:"iana",compressible:!1,extensions:["png"]},"image/prs.btif":{source:"iana",extensions:["btif"]},"image/prs.pti":{source:"iana",extensions:["pti"]},"image/pwg-raster":{source:"iana"},"image/sgi":{source:"apache",extensions:["sgi"]},"image/svg+xml":{source:"iana",compressible:!0,extensions:["svg","svgz"]},"image/t38":{source:"iana",extensions:["t38"]},"image/tiff":{source:"iana",compressible:!1,extensions:["tif","tiff"]},"image/tiff-fx":{source:"iana",extensions:["tfx"]},"image/vnd.adobe.photoshop":{source:"iana",compressible:!0,extensions:["psd"]},"image/vnd.airzip.accelerator.azv":{source:"iana",extensions:["azv"]},"image/vnd.cns.inf2":{source:"iana"},"image/vnd.dece.graphic":{source:"iana",extensions:["uvi","uvvi","uvg","uvvg"]},"image/vnd.djvu":{source:"iana",extensions:["djvu","djv"]},"image/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"image/vnd.dwg":{source:"iana",extensions:["dwg"]},"image/vnd.dxf":{source:"iana",extensions:["dxf"]},"image/vnd.fastbidsheet":{source:"iana",extensions:["fbs"]},"image/vnd.fpx":{source:"iana",extensions:["fpx"]},"image/vnd.fst":{source:"iana",extensions:["fst"]},"image/vnd.fujixerox.edmics-mmr":{source:"iana",extensions:["mmr"]},"image/vnd.fujixerox.edmics-rlc":{source:"iana",extensions:["rlc"]},"image/vnd.globalgraphics.pgb":{source:"iana"},"image/vnd.microsoft.icon":{source:"iana",compressible:!0,extensions:["ico"]},"image/vnd.mix":{source:"iana"},"image/vnd.mozilla.apng":{source:"iana"},"image/vnd.ms-dds":{compressible:!0,extensions:["dds"]},"image/vnd.ms-modi":{source:"iana",extensions:["mdi"]},"image/vnd.ms-photo":{source:"apache",extensions:["wdp"]},"image/vnd.net-fpx":{source:"iana",extensions:["npx"]},"image/vnd.pco.b16":{source:"iana",extensions:["b16"]},"image/vnd.radiance":{source:"iana"},"image/vnd.sealed.png":{source:"iana"},"image/vnd.sealedmedia.softseal.gif":{source:"iana"},"image/vnd.sealedmedia.softseal.jpg":{source:"iana"},"image/vnd.svf":{source:"iana"},"image/vnd.tencent.tap":{source:"iana",extensions:["tap"]},"image/vnd.valve.source.texture":{source:"iana",extensions:["vtf"]},"image/vnd.wap.wbmp":{source:"iana",extensions:["wbmp"]},"image/vnd.xiff":{source:"iana",extensions:["xif"]},"image/vnd.zbrush.pcx":{source:"iana",extensions:["pcx"]},"image/webp":{source:"apache",extensions:["webp"]},"image/wmf":{source:"iana",extensions:["wmf"]},"image/x-3ds":{source:"apache",extensions:["3ds"]},"image/x-cmu-raster":{source:"apache",extensions:["ras"]},"image/x-cmx":{source:"apache",extensions:["cmx"]},"image/x-freehand":{source:"apache",extensions:["fh","fhc","fh4","fh5","fh7"]},"image/x-icon":{source:"apache",compressible:!0,extensions:["ico"]},"image/x-jng":{source:"nginx",extensions:["jng"]},"image/x-mrsid-image":{source:"apache",extensions:["sid"]},"image/x-ms-bmp":{source:"nginx",compressible:!0,extensions:["bmp"]},"image/x-pcx":{source:"apache",extensions:["pcx"]},"image/x-pict":{source:"apache",extensions:["pic","pct"]},"image/x-portable-anymap":{source:"apache",extensions:["pnm"]},"image/x-portable-bitmap":{source:"apache",extensions:["pbm"]},"image/x-portable-graymap":{source:"apache",extensions:["pgm"]},"image/x-portable-pixmap":{source:"apache",extensions:["ppm"]},"image/x-rgb":{source:"apache",extensions:["rgb"]},"image/x-tga":{source:"apache",extensions:["tga"]},"image/x-xbitmap":{source:"apache",extensions:["xbm"]},"image/x-xcf":{compressible:!1},"image/x-xpixmap":{source:"apache",extensions:["xpm"]},"image/x-xwindowdump":{source:"apache",extensions:["xwd"]},"message/cpim":{source:"iana"},"message/delivery-status":{source:"iana"},"message/disposition-notification":{source:"iana",extensions:["disposition-notification"]},"message/external-body":{source:"iana"},"message/feedback-report":{source:"iana"},"message/global":{source:"iana",extensions:["u8msg"]},"message/global-delivery-status":{source:"iana",extensions:["u8dsn"]},"message/global-disposition-notification":{source:"iana",extensions:["u8mdn"]},"message/global-headers":{source:"iana",extensions:["u8hdr"]},"message/http":{source:"iana",compressible:!1},"message/imdn+xml":{source:"iana",compressible:!0},"message/news":{source:"iana"},"message/partial":{source:"iana",compressible:!1},"message/rfc822":{source:"iana",compressible:!0,extensions:["eml","mime"]},"message/s-http":{source:"iana"},"message/sip":{source:"iana"},"message/sipfrag":{source:"iana"},"message/tracking-status":{source:"iana"},"message/vnd.si.simp":{source:"iana"},"message/vnd.wfa.wsc":{source:"iana",extensions:["wsc"]},"model/3mf":{source:"iana",extensions:["3mf"]},"model/e57":{source:"iana"},"model/gltf+json":{source:"iana",compressible:!0,extensions:["gltf"]},"model/gltf-binary":{source:"iana",compressible:!0,extensions:["glb"]},"model/iges":{source:"iana",compressible:!1,extensions:["igs","iges"]},"model/mesh":{source:"iana",compressible:!1,extensions:["msh","mesh","silo"]},"model/mtl":{source:"iana",extensions:["mtl"]},"model/obj":{source:"iana",extensions:["obj"]},"model/step":{source:"iana"},"model/step+xml":{source:"iana",compressible:!0,extensions:["stpx"]},"model/step+zip":{source:"iana",compressible:!1,extensions:["stpz"]},"model/step-xml+zip":{source:"iana",compressible:!1,extensions:["stpxz"]},"model/stl":{source:"iana",extensions:["stl"]},"model/vnd.collada+xml":{source:"iana",compressible:!0,extensions:["dae"]},"model/vnd.dwf":{source:"iana",extensions:["dwf"]},"model/vnd.flatland.3dml":{source:"iana"},"model/vnd.gdl":{source:"iana",extensions:["gdl"]},"model/vnd.gs-gdl":{source:"apache"},"model/vnd.gs.gdl":{source:"iana"},"model/vnd.gtw":{source:"iana",extensions:["gtw"]},"model/vnd.moml+xml":{source:"iana",compressible:!0},"model/vnd.mts":{source:"iana",extensions:["mts"]},"model/vnd.opengex":{source:"iana",extensions:["ogex"]},"model/vnd.parasolid.transmit.binary":{source:"iana",extensions:["x_b"]},"model/vnd.parasolid.transmit.text":{source:"iana",extensions:["x_t"]},"model/vnd.pytha.pyox":{source:"iana"},"model/vnd.rosette.annotated-data-model":{source:"iana"},"model/vnd.sap.vds":{source:"iana",extensions:["vds"]},"model/vnd.usdz+zip":{source:"iana",compressible:!1,extensions:["usdz"]},"model/vnd.valve.source.compiled-map":{source:"iana",extensions:["bsp"]},"model/vnd.vtu":{source:"iana",extensions:["vtu"]},"model/vrml":{source:"iana",compressible:!1,extensions:["wrl","vrml"]},"model/x3d+binary":{source:"apache",compressible:!1,extensions:["x3db","x3dbz"]},"model/x3d+fastinfoset":{source:"iana",extensions:["x3db"]},"model/x3d+vrml":{source:"apache",compressible:!1,extensions:["x3dv","x3dvz"]},"model/x3d+xml":{source:"iana",compressible:!0,extensions:["x3d","x3dz"]},"model/x3d-vrml":{source:"iana",extensions:["x3dv"]},"multipart/alternative":{source:"iana",compressible:!1},"multipart/appledouble":{source:"iana"},"multipart/byteranges":{source:"iana"},"multipart/digest":{source:"iana"},"multipart/encrypted":{source:"iana",compressible:!1},"multipart/form-data":{source:"iana",compressible:!1},"multipart/header-set":{source:"iana"},"multipart/mixed":{source:"iana"},"multipart/multilingual":{source:"iana"},"multipart/parallel":{source:"iana"},"multipart/related":{source:"iana",compressible:!1},"multipart/report":{source:"iana"},"multipart/signed":{source:"iana",compressible:!1},"multipart/vnd.bint.med-plus":{source:"iana"},"multipart/voice-message":{source:"iana"},"multipart/x-mixed-replace":{source:"iana"},"text/1d-interleaved-parityfec":{source:"iana"},"text/cache-manifest":{source:"iana",compressible:!0,extensions:["appcache","manifest"]},"text/calendar":{source:"iana",extensions:["ics","ifb"]},"text/calender":{compressible:!0},"text/cmd":{compressible:!0},"text/coffeescript":{extensions:["coffee","litcoffee"]},"text/cql":{source:"iana"},"text/cql-expression":{source:"iana"},"text/cql-identifier":{source:"iana"},"text/css":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["css"]},"text/csv":{source:"iana",compressible:!0,extensions:["csv"]},"text/csv-schema":{source:"iana"},"text/directory":{source:"iana"},"text/dns":{source:"iana"},"text/ecmascript":{source:"iana"},"text/encaprtp":{source:"iana"},"text/enriched":{source:"iana"},"text/fhirpath":{source:"iana"},"text/flexfec":{source:"iana"},"text/fwdred":{source:"iana"},"text/gff3":{source:"iana"},"text/grammar-ref-list":{source:"iana"},"text/html":{source:"iana",compressible:!0,extensions:["html","htm","shtml"]},"text/jade":{extensions:["jade"]},"text/javascript":{source:"iana",compressible:!0},"text/jcr-cnd":{source:"iana"},"text/jsx":{compressible:!0,extensions:["jsx"]},"text/less":{compressible:!0,extensions:["less"]},"text/markdown":{source:"iana",compressible:!0,extensions:["markdown","md"]},"text/mathml":{source:"nginx",extensions:["mml"]},"text/mdx":{compressible:!0,extensions:["mdx"]},"text/mizar":{source:"iana"},"text/n3":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["n3"]},"text/parameters":{source:"iana",charset:"UTF-8"},"text/parityfec":{source:"iana"},"text/plain":{source:"iana",compressible:!0,extensions:["txt","text","conf","def","list","log","in","ini"]},"text/provenance-notation":{source:"iana",charset:"UTF-8"},"text/prs.fallenstein.rst":{source:"iana"},"text/prs.lines.tag":{source:"iana",extensions:["dsc"]},"text/prs.prop.logic":{source:"iana"},"text/raptorfec":{source:"iana"},"text/red":{source:"iana"},"text/rfc822-headers":{source:"iana"},"text/richtext":{source:"iana",compressible:!0,extensions:["rtx"]},"text/rtf":{source:"iana",compressible:!0,extensions:["rtf"]},"text/rtp-enc-aescm128":{source:"iana"},"text/rtploopback":{source:"iana"},"text/rtx":{source:"iana"},"text/sgml":{source:"iana",extensions:["sgml","sgm"]},"text/shaclc":{source:"iana"},"text/shex":{source:"iana",extensions:["shex"]},"text/slim":{extensions:["slim","slm"]},"text/spdx":{source:"iana",extensions:["spdx"]},"text/strings":{source:"iana"},"text/stylus":{extensions:["stylus","styl"]},"text/t140":{source:"iana"},"text/tab-separated-values":{source:"iana",compressible:!0,extensions:["tsv"]},"text/troff":{source:"iana",extensions:["t","tr","roff","man","me","ms"]},"text/turtle":{source:"iana",charset:"UTF-8",extensions:["ttl"]},"text/ulpfec":{source:"iana"},"text/uri-list":{source:"iana",compressible:!0,extensions:["uri","uris","urls"]},"text/vcard":{source:"iana",compressible:!0,extensions:["vcard"]},"text/vnd.a":{source:"iana"},"text/vnd.abc":{source:"iana"},"text/vnd.ascii-art":{source:"iana"},"text/vnd.curl":{source:"iana",extensions:["curl"]},"text/vnd.curl.dcurl":{source:"apache",extensions:["dcurl"]},"text/vnd.curl.mcurl":{source:"apache",extensions:["mcurl"]},"text/vnd.curl.scurl":{source:"apache",extensions:["scurl"]},"text/vnd.debian.copyright":{source:"iana",charset:"UTF-8"},"text/vnd.dmclientscript":{source:"iana"},"text/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"text/vnd.esmertec.theme-descriptor":{source:"iana",charset:"UTF-8"},"text/vnd.familysearch.gedcom":{source:"iana",extensions:["ged"]},"text/vnd.ficlab.flt":{source:"iana"},"text/vnd.fly":{source:"iana",extensions:["fly"]},"text/vnd.fmi.flexstor":{source:"iana",extensions:["flx"]},"text/vnd.gml":{source:"iana"},"text/vnd.graphviz":{source:"iana",extensions:["gv"]},"text/vnd.hans":{source:"iana"},"text/vnd.hgl":{source:"iana"},"text/vnd.in3d.3dml":{source:"iana",extensions:["3dml"]},"text/vnd.in3d.spot":{source:"iana",extensions:["spot"]},"text/vnd.iptc.newsml":{source:"iana"},"text/vnd.iptc.nitf":{source:"iana"},"text/vnd.latex-z":{source:"iana"},"text/vnd.motorola.reflex":{source:"iana"},"text/vnd.ms-mediapackage":{source:"iana"},"text/vnd.net2phone.commcenter.command":{source:"iana"},"text/vnd.radisys.msml-basic-layout":{source:"iana"},"text/vnd.senx.warpscript":{source:"iana"},"text/vnd.si.uricatalogue":{source:"iana"},"text/vnd.sosi":{source:"iana"},"text/vnd.sun.j2me.app-descriptor":{source:"iana",charset:"UTF-8",extensions:["jad"]},"text/vnd.trolltech.linguist":{source:"iana",charset:"UTF-8"},"text/vnd.wap.si":{source:"iana"},"text/vnd.wap.sl":{source:"iana"},"text/vnd.wap.wml":{source:"iana",extensions:["wml"]},"text/vnd.wap.wmlscript":{source:"iana",extensions:["wmls"]},"text/vtt":{source:"iana",charset:"UTF-8",compressible:!0,extensions:["vtt"]},"text/x-asm":{source:"apache",extensions:["s","asm"]},"text/x-c":{source:"apache",extensions:["c","cc","cxx","cpp","h","hh","dic"]},"text/x-component":{source:"nginx",extensions:["htc"]},"text/x-fortran":{source:"apache",extensions:["f","for","f77","f90"]},"text/x-gwt-rpc":{compressible:!0},"text/x-handlebars-template":{extensions:["hbs"]},"text/x-java-source":{source:"apache",extensions:["java"]},"text/x-jquery-tmpl":{compressible:!0},"text/x-lua":{extensions:["lua"]},"text/x-markdown":{compressible:!0,extensions:["mkd"]},"text/x-nfo":{source:"apache",extensions:["nfo"]},"text/x-opml":{source:"apache",extensions:["opml"]},"text/x-org":{compressible:!0,extensions:["org"]},"text/x-pascal":{source:"apache",extensions:["p","pas"]},"text/x-processing":{compressible:!0,extensions:["pde"]},"text/x-sass":{extensions:["sass"]},"text/x-scss":{extensions:["scss"]},"text/x-setext":{source:"apache",extensions:["etx"]},"text/x-sfv":{source:"apache",extensions:["sfv"]},"text/x-suse-ymp":{compressible:!0,extensions:["ymp"]},"text/x-uuencode":{source:"apache",extensions:["uu"]},"text/x-vcalendar":{source:"apache",extensions:["vcs"]},"text/x-vcard":{source:"apache",extensions:["vcf"]},"text/xml":{source:"iana",compressible:!0,extensions:["xml"]},"text/xml-external-parsed-entity":{source:"iana"},"text/yaml":{compressible:!0,extensions:["yaml","yml"]},"video/1d-interleaved-parityfec":{source:"iana"},"video/3gpp":{source:"iana",extensions:["3gp","3gpp"]},"video/3gpp-tt":{source:"iana"},"video/3gpp2":{source:"iana",extensions:["3g2"]},"video/av1":{source:"iana"},"video/bmpeg":{source:"iana"},"video/bt656":{source:"iana"},"video/celb":{source:"iana"},"video/dv":{source:"iana"},"video/encaprtp":{source:"iana"},"video/ffv1":{source:"iana"},"video/flexfec":{source:"iana"},"video/h261":{source:"iana",extensions:["h261"]},"video/h263":{source:"iana",extensions:["h263"]},"video/h263-1998":{source:"iana"},"video/h263-2000":{source:"iana"},"video/h264":{source:"iana",extensions:["h264"]},"video/h264-rcdo":{source:"iana"},"video/h264-svc":{source:"iana"},"video/h265":{source:"iana"},"video/iso.segment":{source:"iana",extensions:["m4s"]},"video/jpeg":{source:"iana",extensions:["jpgv"]},"video/jpeg2000":{source:"iana"},"video/jpm":{source:"apache",extensions:["jpm","jpgm"]},"video/jxsv":{source:"iana"},"video/mj2":{source:"iana",extensions:["mj2","mjp2"]},"video/mp1s":{source:"iana"},"video/mp2p":{source:"iana"},"video/mp2t":{source:"iana",extensions:["ts"]},"video/mp4":{source:"iana",compressible:!1,extensions:["mp4","mp4v","mpg4"]},"video/mp4v-es":{source:"iana"},"video/mpeg":{source:"iana",compressible:!1,extensions:["mpeg","mpg","mpe","m1v","m2v"]},"video/mpeg4-generic":{source:"iana"},"video/mpv":{source:"iana"},"video/nv":{source:"iana"},"video/ogg":{source:"iana",compressible:!1,extensions:["ogv"]},"video/parityfec":{source:"iana"},"video/pointer":{source:"iana"},"video/quicktime":{source:"iana",compressible:!1,extensions:["qt","mov"]},"video/raptorfec":{source:"iana"},"video/raw":{source:"iana"},"video/rtp-enc-aescm128":{source:"iana"},"video/rtploopback":{source:"iana"},"video/rtx":{source:"iana"},"video/scip":{source:"iana"},"video/smpte291":{source:"iana"},"video/smpte292m":{source:"iana"},"video/ulpfec":{source:"iana"},"video/vc1":{source:"iana"},"video/vc2":{source:"iana"},"video/vnd.cctv":{source:"iana"},"video/vnd.dece.hd":{source:"iana",extensions:["uvh","uvvh"]},"video/vnd.dece.mobile":{source:"iana",extensions:["uvm","uvvm"]},"video/vnd.dece.mp4":{source:"iana"},"video/vnd.dece.pd":{source:"iana",extensions:["uvp","uvvp"]},"video/vnd.dece.sd":{source:"iana",extensions:["uvs","uvvs"]},"video/vnd.dece.video":{source:"iana",extensions:["uvv","uvvv"]},"video/vnd.directv.mpeg":{source:"iana"},"video/vnd.directv.mpeg-tts":{source:"iana"},"video/vnd.dlna.mpeg-tts":{source:"iana"},"video/vnd.dvb.file":{source:"iana",extensions:["dvb"]},"video/vnd.fvt":{source:"iana",extensions:["fvt"]},"video/vnd.hns.video":{source:"iana"},"video/vnd.iptvforum.1dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.1dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.2dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.2dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.ttsavc":{source:"iana"},"video/vnd.iptvforum.ttsmpeg2":{source:"iana"},"video/vnd.motorola.video":{source:"iana"},"video/vnd.motorola.videop":{source:"iana"},"video/vnd.mpegurl":{source:"iana",extensions:["mxu","m4u"]},"video/vnd.ms-playready.media.pyv":{source:"iana",extensions:["pyv"]},"video/vnd.nokia.interleaved-multimedia":{source:"iana"},"video/vnd.nokia.mp4vr":{source:"iana"},"video/vnd.nokia.videovoip":{source:"iana"},"video/vnd.objectvideo":{source:"iana"},"video/vnd.radgamettools.bink":{source:"iana"},"video/vnd.radgamettools.smacker":{source:"iana"},"video/vnd.sealed.mpeg1":{source:"iana"},"video/vnd.sealed.mpeg4":{source:"iana"},"video/vnd.sealed.swf":{source:"iana"},"video/vnd.sealedmedia.softseal.mov":{source:"iana"},"video/vnd.uvvu.mp4":{source:"iana",extensions:["uvu","uvvu"]},"video/vnd.vivo":{source:"iana",extensions:["viv"]},"video/vnd.youtube.yt":{source:"iana"},"video/vp8":{source:"iana"},"video/vp9":{source:"iana"},"video/webm":{source:"apache",compressible:!1,extensions:["webm"]},"video/x-f4v":{source:"apache",extensions:["f4v"]},"video/x-fli":{source:"apache",extensions:["fli"]},"video/x-flv":{source:"apache",compressible:!1,extensions:["flv"]},"video/x-m4v":{source:"apache",extensions:["m4v"]},"video/x-matroska":{source:"apache",compressible:!1,extensions:["mkv","mk3d","mks"]},"video/x-mng":{source:"apache",extensions:["mng"]},"video/x-ms-asf":{source:"apache",extensions:["asf","asx"]},"video/x-ms-vob":{source:"apache",extensions:["vob"]},"video/x-ms-wm":{source:"apache",extensions:["wm"]},"video/x-ms-wmv":{source:"apache",compressible:!1,extensions:["wmv"]},"video/x-ms-wmx":{source:"apache",extensions:["wmx"]},"video/x-ms-wvx":{source:"apache",extensions:["wvx"]},"video/x-msvideo":{source:"apache",extensions:["avi"]},"video/x-sgi-movie":{source:"apache",extensions:["movie"]},"video/x-smv":{source:"apache",extensions:["smv"]},"x-conference/x-cooltalk":{source:"apache",extensions:["ice"]},"x-shader/x-fragment":{compressible:!0},"x-shader/x-vertex":{compressible:!0}}});var jV=b((wtt,GV)=>{GV.exports=$V()});var zV=b(vn=>{"use strict";var TE=jV(),M_e=require("path").extname,JV=/^\s*([^;\s]*)(?:;|\s|$)/,P_e=/^text\//i;vn.charset=WV;vn.charsets={lookup:WV};vn.contentType=U_e;vn.extension=H_e;vn.extensions=Object.create(null);vn.lookup=q_e;vn.types=Object.create(null);V_e(vn.extensions,vn.types);function WV(e){if(!e||typeof e!="string")return!1;var t=JV.exec(e),r=t&&TE[t[1].toLowerCase()];return r&&r.charset?r.charset:t&&P_e.test(t[1])?"UTF-8":!1}function U_e(e){if(!e||typeof e!="string")return!1;var t=e.indexOf("/")===-1?vn.lookup(e):e;if(!t)return!1;if(t.indexOf("charset")===-1){var r=vn.charset(t);r&&(t+="; charset="+r.toLowerCase())}return t}function H_e(e){if(!e||typeof e!="string")return!1;var t=JV.exec(e),r=t&&vn.extensions[t[1].toLowerCase()];return!r||!r.length?!1:r[0]}function q_e(e){if(!e||typeof e!="string")return!1;var t=M_e("x."+e).toLowerCase().substr(1);return t&&vn.types[t]||!1}function V_e(e,t){var r=["nginx","apache",void 0,"iana"];Object.keys(TE).forEach(function(s){var i=TE[s],o=i.extensions;if(!(!o||!o.length)){e[s]=o;for(var a=0;al||u===l&&t[c].substr(0,12)==="application/"))continue}t[c]=s}}})}});var KV=b((_tt,XV)=>{XV.exports=Y_e;function Y_e(e){var t=typeof setImmediate=="function"?setImmediate:typeof process=="object"&&typeof process.nextTick=="function"?process.nextTick:null;t?t(e):setTimeout(e,0)}});var hw=b((Rtt,e7)=>{var ZV=KV();e7.exports=$_e;function $_e(e){var t=!1;return ZV(function(){t=!0}),function(n,s){t?e(n,s):ZV(function(){e(n,s)})}}});var pw=b((Dtt,t7)=>{t7.exports=G_e;function G_e(e){Object.keys(e.jobs).forEach(j_e.bind(e)),e.jobs={}}function j_e(e){typeof this.jobs[e]=="function"&&this.jobs[e]()}});var gw=b((Ntt,n7)=>{var r7=hw(),J_e=pw();n7.exports=W_e;function W_e(e,t,r,n){var s=r.keyedList?r.keyedList[r.index]:r.index;r.jobs[s]=z_e(t,s,e[s],function(i,o){s in r.jobs&&(delete r.jobs[s],i?J_e(r):r.results[s]=o,n(i,r.results))})}function z_e(e,t,r,n){var s;return e.length==2?s=e(r,r7(n)):s=e(r,t,r7(n)),s}});var mw=b((ktt,s7)=>{s7.exports=X_e;function X_e(e,t){var r=!Array.isArray(e),n={index:0,keyedList:r||t?Object.keys(e):null,jobs:{},results:r?{}:[],size:r?Object.keys(e).length:e.length};return t&&n.keyedList.sort(r?t:function(s,i){return t(e[s],e[i])}),n}});var Ew=b((Ftt,i7)=>{var K_e=pw(),Z_e=hw();i7.exports=eRe;function eRe(e){Object.keys(this.jobs).length&&(this.index=this.size,K_e(this),Z_e(e)(null,this.results))}});var a7=b((Ltt,o7)=>{var tRe=gw(),rRe=mw(),nRe=Ew();o7.exports=sRe;function sRe(e,t,r){for(var n=rRe(e);n.index<(n.keyedList||e).length;)tRe(e,t,n,function(s,i){if(s){r(s,i);return}if(Object.keys(n.jobs).length===0){r(null,n.results);return}}),n.index++;return nRe.bind(n,r)}});var Cw=b((Ott,wE)=>{var c7=gw(),iRe=mw(),oRe=Ew();wE.exports=aRe;wE.exports.ascending=u7;wE.exports.descending=cRe;function aRe(e,t,r,n){var s=iRe(e,r);return c7(e,t,s,function i(o,a){if(o){n(o,a);return}if(s.index++,s.index<(s.keyedList||e).length){c7(e,t,s,i);return}n(null,s.results)}),oRe.bind(s,n)}function u7(e,t){return et?1:0}function cRe(e,t){return-1*u7(e,t)}});var A7=b((Mtt,l7)=>{var uRe=Cw();l7.exports=lRe;function lRe(e,t,r){return uRe(e,t,null,r)}});var d7=b((Ptt,f7)=>{f7.exports={parallel:a7(),serial:A7(),serialOrdered:Cw()}});var p7=b((Utt,h7)=>{h7.exports=function(e,t){return Object.keys(t).forEach(function(r){e[r]=e[r]||t[r]}),e}});var m7=b((Htt,g7)=>{var Bw=YV(),ARe=require("util"),yw=require("path"),fRe=require("http"),dRe=require("https"),hRe=require("url").parse,pRe=require("fs"),gRe=require("stream").Stream,Iw=zV(),mRe=d7(),bw=p7();g7.exports=ct;ARe.inherits(ct,Bw);function ct(e){if(!(this instanceof ct))return new ct(e);this._overheadLength=0,this._valueLength=0,this._valuesToMeasure=[],Bw.call(this),e=e||{};for(var t in e)this[t]=e[t]}ct.LINE_BREAK=`\r +`;ct.DEFAULT_CONTENT_TYPE="application/octet-stream";ct.prototype.append=function(e,t,r){r=r||{},typeof r=="string"&&(r={filename:r});var n=Bw.prototype.append.bind(this);if(typeof t=="number"&&(t=""+t),Array.isArray(t)){this._error(new Error("Arrays are not supported."));return}var s=this._multiPartHeader(e,t,r),i=this._multiPartFooter();n(s),n(t),n(i),this._trackLength(s,t,r)};ct.prototype._trackLength=function(e,t,r){var n=0;r.knownLength!=null?n+=+r.knownLength:Buffer.isBuffer(t)?n=t.length:typeof t=="string"&&(n=Buffer.byteLength(t)),this._valueLength+=n,this._overheadLength+=Buffer.byteLength(e)+ct.LINE_BREAK.length,!(!t||!t.path&&!(t.readable&&t.hasOwnProperty("httpVersion"))&&!(t instanceof gRe))&&(r.knownLength||this._valuesToMeasure.push(t))};ct.prototype._lengthRetriever=function(e,t){e.hasOwnProperty("fd")?e.end!=null&&e.end!=1/0&&e.start!=null?t(null,e.end+1-(e.start?e.start:0)):pRe.stat(e.path,function(r,n){var s;if(r){t(r);return}s=n.size-(e.start?e.start:0),t(null,s)}):e.hasOwnProperty("httpVersion")?t(null,+e.headers["content-length"]):e.hasOwnProperty("httpModule")?(e.on("response",function(r){e.pause(),t(null,+r.headers["content-length"])}),e.resume()):t("Unknown stream")};ct.prototype._multiPartHeader=function(e,t,r){if(typeof r.header=="string")return r.header;var n=this._getContentDisposition(t,r),s=this._getContentType(t,r),i="",o={"Content-Disposition":["form-data",'name="'+e+'"'].concat(n||[]),"Content-Type":[].concat(s||[])};typeof r.header=="object"&&bw(o,r.header);var a;for(var c in o)o.hasOwnProperty(c)&&(a=o[c],a!=null&&(Array.isArray(a)||(a=[a]),a.length&&(i+=c+": "+a.join("; ")+ct.LINE_BREAK)));return"--"+this.getBoundary()+ct.LINE_BREAK+i+ct.LINE_BREAK};ct.prototype._getContentDisposition=function(e,t){var r,n;return typeof t.filepath=="string"?r=yw.normalize(t.filepath).replace(/\\/g,"/"):t.filename||e.name||e.path?r=yw.basename(t.filename||e.name||e.path):e.readable&&e.hasOwnProperty("httpVersion")&&(r=yw.basename(e.client._httpMessage.path||"")),r&&(n='filename="'+r+'"'),n};ct.prototype._getContentType=function(e,t){var r=t.contentType;return!r&&e.name&&(r=Iw.lookup(e.name)),!r&&e.path&&(r=Iw.lookup(e.path)),!r&&e.readable&&e.hasOwnProperty("httpVersion")&&(r=e.headers["content-type"]),!r&&(t.filepath||t.filename)&&(r=Iw.lookup(t.filepath||t.filename)),!r&&typeof e=="object"&&(r=ct.DEFAULT_CONTENT_TYPE),r};ct.prototype._multiPartFooter=function(){return function(e){var t=ct.LINE_BREAK,r=this._streams.length===0;r&&(t+=this._lastBoundary()),e(t)}.bind(this)};ct.prototype._lastBoundary=function(){return"--"+this.getBoundary()+"--"+ct.LINE_BREAK};ct.prototype.getHeaders=function(e){var t,r={"content-type":"multipart/form-data; boundary="+this.getBoundary()};for(t in e)e.hasOwnProperty(t)&&(r[t.toLowerCase()]=e[t]);return r};ct.prototype.setBoundary=function(e){this._boundary=e};ct.prototype.getBoundary=function(){return this._boundary||this._generateBoundary(),this._boundary};ct.prototype.getBuffer=function(){for(var e=new Buffer.alloc(0),t=this.getBoundary(),r=0,n=this._streams.length;r{"use strict";var kRe=require("url").parse,FRe={ftp:21,gopher:70,http:80,https:443,ws:80,wss:443},LRe=String.prototype.endsWith||function(e){return e.length<=this.length&&this.indexOf(e,this.length-e.length)!==-1};function ORe(e){var t=typeof e=="string"?kRe(e):e||{},r=t.protocol,n=t.host,s=t.port;if(typeof n!="string"||!n||typeof r!="string"||(r=r.split(":",1)[0],n=n.replace(/:\d*$/,""),s=parseInt(s)||FRe[r]||0,!MRe(n,s)))return"";var i=Gl("npm_config_"+r+"_proxy")||Gl(r+"_proxy")||Gl("npm_config_proxy")||Gl("all_proxy");return i&&i.indexOf("://")===-1&&(i=r+"://"+i),i}function MRe(e,t){var r=(Gl("npm_config_no_proxy")||Gl("no_proxy")).toLowerCase();return r?r==="*"?!1:r.split(/[,\s]/).every(function(n){if(!n)return!0;var s=n.match(/^(.+):(\d+)$/),i=s?s[1]:n,o=s?parseInt(s[2]):0;return o&&o!==t?!0:/^[.*]/.test(i)?(i.charAt(0)==="*"&&(i=i.slice(1)),!LRe.call(e,i)):e!==i}):!0}function Gl(e){return process.env[e.toLowerCase()]||process.env[e.toUpperCase()]||""}R7.getProxyForUrl=ORe});var k7=b((qrt,N7)=>{var jl=1e3,Jl=jl*60,Wl=Jl*60,Jc=Wl*24,PRe=Jc*7,URe=Jc*365.25;N7.exports=function(e,t){t=t||{};var r=typeof e;if(r==="string"&&e.length>0)return HRe(e);if(r==="number"&&isFinite(e))return t.long?VRe(e):qRe(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))};function HRe(e){if(e=String(e),!(e.length>100)){var t=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(t){var r=parseFloat(t[1]),n=(t[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return r*URe;case"weeks":case"week":case"w":return r*PRe;case"days":case"day":case"d":return r*Jc;case"hours":case"hour":case"hrs":case"hr":case"h":return r*Wl;case"minutes":case"minute":case"mins":case"min":case"m":return r*Jl;case"seconds":case"second":case"secs":case"sec":case"s":return r*jl;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return r;default:return}}}}function qRe(e){var t=Math.abs(e);return t>=Jc?Math.round(e/Jc)+"d":t>=Wl?Math.round(e/Wl)+"h":t>=Jl?Math.round(e/Jl)+"m":t>=jl?Math.round(e/jl)+"s":e+"ms"}function VRe(e){var t=Math.abs(e);return t>=Jc?DE(e,t,Jc,"day"):t>=Wl?DE(e,t,Wl,"hour"):t>=Jl?DE(e,t,Jl,"minute"):t>=jl?DE(e,t,jl,"second"):e+" ms"}function DE(e,t,r,n){var s=t>=r*1.5;return Math.round(e/r)+" "+n+(s?"s":"")}});var Fw=b((Vrt,F7)=>{function YRe(e){r.debug=r,r.default=r,r.coerce=c,r.disable=o,r.enable=s,r.enabled=a,r.humanize=k7(),r.destroy=u,Object.keys(e).forEach(l=>{r[l]=e[l]}),r.names=[],r.skips=[],r.formatters={};function t(l){let A=0;for(let f=0;f{if(v==="%%")return"%";E++;let Q=r.formatters[x];if(typeof Q=="function"){let S=C[E];v=Q.call(m,S),C.splice(E,1),E--}return v}),r.formatArgs.call(m,C),(m.log||r.log).apply(m,C)}return p.namespace=l,p.useColors=r.useColors(),p.color=r.selectColor(l),p.extend=n,p.destroy=r.destroy,Object.defineProperty(p,"enabled",{enumerable:!0,configurable:!1,get:()=>f!==null?f:(d!==r.namespaces&&(d=r.namespaces,h=r.enabled(l)),h),set:C=>{f=C}}),typeof r.init=="function"&&r.init(p),p}function n(l,A){let f=r(this.namespace+(typeof A>"u"?":":A)+l);return f.log=this.log,f}function s(l){r.save(l),r.namespaces=l,r.names=[],r.skips=[];let A=(typeof l=="string"?l:"").trim().replace(" ",",").split(",").filter(Boolean);for(let f of A)f[0]==="-"?r.skips.push(f.slice(1)):r.names.push(f)}function i(l,A){let f=0,d=0,h=-1,p=0;for(;f"-"+A)].join(",");return r.enable(""),l}function a(l){for(let A of r.skips)if(i(l,A))return!1;for(let A of r.names)if(i(l,A))return!0;return!1}function c(l){return l instanceof Error?l.stack||l.message:l}function u(){console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.")}return r.enable(r.load()),r}F7.exports=YRe});var L7=b(($n,NE)=>{$n.formatArgs=GRe;$n.save=jRe;$n.load=JRe;$n.useColors=$Re;$n.storage=WRe();$n.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})();$n.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function $Re(){if(typeof window<"u"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs))return!0;if(typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))return!1;let e;return typeof document<"u"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window<"u"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator<"u"&&navigator.userAgent&&(e=navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/))&&parseInt(e[1],10)>=31||typeof navigator<"u"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function GRe(e){if(e[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+e[0]+(this.useColors?"%c ":" ")+"+"+NE.exports.humanize(this.diff),!this.useColors)return;let t="color: "+this.color;e.splice(1,0,t,"color: inherit");let r=0,n=0;e[0].replace(/%[a-zA-Z%]/g,s=>{s!=="%%"&&(r++,s==="%c"&&(n=r))}),e.splice(n,0,t)}$n.log=console.debug||console.log||(()=>{});function jRe(e){try{e?$n.storage.setItem("debug",e):$n.storage.removeItem("debug")}catch{}}function JRe(){let e;try{e=$n.storage.getItem("debug")}catch{}return!e&&typeof process<"u"&&"env"in process&&(e=process.env.DEBUG),e}function WRe(){try{return localStorage}catch{}}NE.exports=Fw()($n);var{formatters:zRe}=NE.exports;zRe.j=function(e){try{return JSON.stringify(e)}catch(t){return"[UnexpectedJSONParseError]: "+t.message}}});var M7=b((Yrt,O7)=>{"use strict";O7.exports=(e,t)=>{t=t||process.argv;let r=e.startsWith("-")?"":e.length===1?"-":"--",n=t.indexOf(r+e),s=t.indexOf("--");return n!==-1&&(s===-1?!0:n{"use strict";var XRe=require("os"),Zs=M7(),Gr=process.env,zl;Zs("no-color")||Zs("no-colors")||Zs("color=false")?zl=!1:(Zs("color")||Zs("colors")||Zs("color=true")||Zs("color=always"))&&(zl=!0);"FORCE_COLOR"in Gr&&(zl=Gr.FORCE_COLOR.length===0||parseInt(Gr.FORCE_COLOR,10)!==0);function KRe(e){return e===0?!1:{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function ZRe(e){if(zl===!1)return 0;if(Zs("color=16m")||Zs("color=full")||Zs("color=truecolor"))return 3;if(Zs("color=256"))return 2;if(e&&!e.isTTY&&zl!==!0)return 0;let t=zl?1:0;if(process.platform==="win32"){let r=XRe.release().split(".");return Number(process.versions.node.split(".")[0])>=8&&Number(r[0])>=10&&Number(r[2])>=10586?Number(r[2])>=14931?3:2:1}if("CI"in Gr)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(r=>r in Gr)||Gr.CI_NAME==="codeship"?1:t;if("TEAMCITY_VERSION"in Gr)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(Gr.TEAMCITY_VERSION)?1:0;if(Gr.COLORTERM==="truecolor")return 3;if("TERM_PROGRAM"in Gr){let r=parseInt((Gr.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(Gr.TERM_PROGRAM){case"iTerm.app":return r>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(Gr.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(Gr.TERM)||"COLORTERM"in Gr?1:(Gr.TERM==="dumb",t)}function Lw(e){let t=ZRe(e);return KRe(t)}P7.exports={supportsColor:Lw,stdout:Lw(process.stdout),stderr:Lw(process.stderr)}});var q7=b((yr,FE)=>{var eDe=require("tty"),kE=require("util");yr.init=aDe;yr.log=sDe;yr.formatArgs=rDe;yr.save=iDe;yr.load=oDe;yr.useColors=tDe;yr.destroy=kE.deprecate(()=>{},"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");yr.colors=[6,2,3,4,5,1];try{let e=U7();e&&(e.stderr||e).level>=2&&(yr.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch{}yr.inspectOpts=Object.keys(process.env).filter(e=>/^debug_/i.test(e)).reduce((e,t)=>{let r=t.substring(6).toLowerCase().replace(/_([a-z])/g,(s,i)=>i.toUpperCase()),n=process.env[t];return/^(yes|on|true|enabled)$/i.test(n)?n=!0:/^(no|off|false|disabled)$/i.test(n)?n=!1:n==="null"?n=null:n=Number(n),e[r]=n,e},{});function tDe(){return"colors"in yr.inspectOpts?!!yr.inspectOpts.colors:eDe.isatty(process.stderr.fd)}function rDe(e){let{namespace:t,useColors:r}=this;if(r){let n=this.color,s="\x1B[3"+(n<8?n:"8;5;"+n),i=` ${s};1m${t} \x1B[0m`;e[0]=i+e[0].split(` +`).join(` +`+i),e.push(s+"m+"+FE.exports.humanize(this.diff)+"\x1B[0m")}else e[0]=nDe()+t+" "+e[0]}function nDe(){return yr.inspectOpts.hideDate?"":new Date().toISOString()+" "}function sDe(...e){return process.stderr.write(kE.formatWithOptions(yr.inspectOpts,...e)+` +`)}function iDe(e){e?process.env.DEBUG=e:delete process.env.DEBUG}function oDe(){return process.env.DEBUG}function aDe(e){e.inspectOpts={};let t=Object.keys(yr.inspectOpts);for(let r=0;rt.trim()).join(" ")};H7.O=function(e){return this.inspectOpts.colors=this.useColors,kE.inspect(e,this.inspectOpts)}});var V7=b((Grt,Ow)=>{typeof process>"u"||process.type==="renderer"||process.browser===!0||process.__nwjs?Ow.exports=L7():Ow.exports=q7()});var $7=b((jrt,Y7)=>{var bh;Y7.exports=function(){if(!bh){try{bh=V7()("follow-redirects")}catch{}typeof bh!="function"&&(bh=function(){})}bh.apply(null,arguments)}});var z7=b((Jrt,Ww)=>{var xh=require("url"),Bh=xh.URL,cDe=require("http"),uDe=require("https"),qw=require("stream").Writable,Vw=require("assert"),G7=$7();(function(){var t=typeof process<"u",r=typeof window<"u"&&typeof document<"u",n=zc(Error.captureStackTrace);!t&&(r||!n)&&console.warn("The follow-redirects package should be excluded from browser builds.")})();var Yw=!1;try{Vw(new Bh(""))}catch(e){Yw=e.code==="ERR_INVALID_URL"}var lDe=["auth","host","hostname","href","path","pathname","port","protocol","query","search","hash"],$w=["abort","aborted","connect","error","socket","timeout"],Gw=Object.create(null);$w.forEach(function(e){Gw[e]=function(t,r,n){this._redirectable.emit(e,t,r,n)}});var Pw=vh("ERR_INVALID_URL","Invalid URL",TypeError),Uw=vh("ERR_FR_REDIRECTION_FAILURE","Redirected request failed"),ADe=vh("ERR_FR_TOO_MANY_REDIRECTS","Maximum number of redirects exceeded",Uw),fDe=vh("ERR_FR_MAX_BODY_LENGTH_EXCEEDED","Request body larger than maxBodyLength limit"),dDe=vh("ERR_STREAM_WRITE_AFTER_END","write after end"),hDe=qw.prototype.destroy||J7;function Qn(e,t){qw.call(this),this._sanitizeOptions(e),this._options=e,this._ended=!1,this._ending=!1,this._redirectCount=0,this._redirects=[],this._requestBodyLength=0,this._requestBodyBuffers=[],t&&this.on("response",t);var r=this;this._onNativeResponse=function(n){try{r._processResponse(n)}catch(s){r.emit("error",s instanceof Uw?s:new Uw({cause:s}))}},this._performRequest()}Qn.prototype=Object.create(qw.prototype);Qn.prototype.abort=function(){Jw(this._currentRequest),this._currentRequest.abort(),this.emit("abort")};Qn.prototype.destroy=function(e){return Jw(this._currentRequest,e),hDe.call(this,e),this};Qn.prototype.write=function(e,t,r){if(this._ending)throw new dDe;if(!Wc(e)&&!mDe(e))throw new TypeError("data should be a string, Buffer or Uint8Array");if(zc(t)&&(r=t,t=null),e.length===0){r&&r();return}this._requestBodyLength+e.length<=this._options.maxBodyLength?(this._requestBodyLength+=e.length,this._requestBodyBuffers.push({data:e,encoding:t}),this._currentRequest.write(e,t,r)):(this.emit("error",new fDe),this.abort())};Qn.prototype.end=function(e,t,r){if(zc(e)?(r=e,e=t=null):zc(t)&&(r=t,t=null),!e)this._ended=this._ending=!0,this._currentRequest.end(null,null,r);else{var n=this,s=this._currentRequest;this.write(e,t,function(){n._ended=!0,s.end(null,null,r)}),this._ending=!0}};Qn.prototype.setHeader=function(e,t){this._options.headers[e]=t,this._currentRequest.setHeader(e,t)};Qn.prototype.removeHeader=function(e){delete this._options.headers[e],this._currentRequest.removeHeader(e)};Qn.prototype.setTimeout=function(e,t){var r=this;function n(o){o.setTimeout(e),o.removeListener("timeout",o.destroy),o.addListener("timeout",o.destroy)}function s(o){r._timeout&&clearTimeout(r._timeout),r._timeout=setTimeout(function(){r.emit("timeout"),i()},e),n(o)}function i(){r._timeout&&(clearTimeout(r._timeout),r._timeout=null),r.removeListener("abort",i),r.removeListener("error",i),r.removeListener("response",i),r.removeListener("close",i),t&&r.removeListener("timeout",t),r.socket||r._currentRequest.removeListener("socket",s)}return t&&this.on("timeout",t),this.socket?s(this.socket):this._currentRequest.once("socket",s),this.on("socket",n),this.on("abort",i),this.on("error",i),this.on("response",i),this.on("close",i),this};["flushHeaders","getHeader","setNoDelay","setSocketKeepAlive"].forEach(function(e){Qn.prototype[e]=function(t,r){return this._currentRequest[e](t,r)}});["aborted","connection","socket"].forEach(function(e){Object.defineProperty(Qn.prototype,e,{get:function(){return this._currentRequest[e]}})});Qn.prototype._sanitizeOptions=function(e){if(e.headers||(e.headers={}),e.host&&(e.hostname||(e.hostname=e.host),delete e.host),!e.pathname&&e.path){var t=e.path.indexOf("?");t<0?e.pathname=e.path:(e.pathname=e.path.substring(0,t),e.search=e.path.substring(t))}};Qn.prototype._performRequest=function(){var e=this._options.protocol,t=this._options.nativeProtocols[e];if(!t)throw new TypeError("Unsupported protocol "+e);if(this._options.agents){var r=e.slice(0,-1);this._options.agent=this._options.agents[r]}var n=this._currentRequest=t.request(this._options,this._onNativeResponse);n._redirectable=this;for(var s of $w)n.on(s,Gw[s]);if(this._currentUrl=/^\//.test(this._options.path)?xh.format(this._options):this._options.path,this._isRedirect){var i=0,o=this,a=this._requestBodyBuffers;(function c(u){if(n===o._currentRequest)if(u)o.emit("error",u);else if(i=400){e.responseUrl=this._currentUrl,e.redirects=this._redirects,this.emit("response",e),this._requestBodyBuffers=[];return}if(Jw(this._currentRequest),e.destroy(),++this._redirectCount>this._options.maxRedirects)throw new ADe;var n,s=this._options.beforeRedirect;s&&(n=Object.assign({Host:e.req.getHeader("host")},this._options.headers));var i=this._options.method;((t===301||t===302)&&this._options.method==="POST"||t===303&&!/^(?:GET|HEAD)$/.test(this._options.method))&&(this._options.method="GET",this._requestBodyBuffers=[],Mw(/^content-/i,this._options.headers));var o=Mw(/^host$/i,this._options.headers),a=jw(this._currentUrl),c=o||a.host,u=/^\w+:/.test(r)?this._currentUrl:xh.format(Object.assign(a,{host:c})),l=pDe(r,u);if(G7("redirecting to",l.href),this._isRedirect=!0,Hw(l,this._options),(l.protocol!==a.protocol&&l.protocol!=="https:"||l.host!==c&&!gDe(l.host,c))&&Mw(/^(?:(?:proxy-)?authorization|cookie)$/i,this._options.headers),zc(s)){var A={headers:e.headers,statusCode:t},f={url:u,method:i,headers:n};s(this._options,A,f),this._sanitizeOptions(this._options)}this._performRequest()};function j7(e){var t={maxRedirects:21,maxBodyLength:10485760},r={};return Object.keys(e).forEach(function(n){var s=n+":",i=r[s]=e[n],o=t[n]=Object.create(i);function a(u,l,A){return EDe(u)?u=Hw(u):Wc(u)?u=Hw(jw(u)):(A=l,l=W7(u),u={protocol:s}),zc(l)&&(A=l,l=null),l=Object.assign({maxRedirects:t.maxRedirects,maxBodyLength:t.maxBodyLength},u,l),l.nativeProtocols=r,!Wc(l.host)&&!Wc(l.hostname)&&(l.hostname="::1"),Vw.equal(l.protocol,s,"protocol mismatch"),G7("options",l),new Qn(l,A)}function c(u,l,A){var f=o.request(u,l,A);return f.end(),f}Object.defineProperties(o,{request:{value:a,configurable:!0,enumerable:!0,writable:!0},get:{value:c,configurable:!0,enumerable:!0,writable:!0}})}),t}function J7(){}function jw(e){var t;if(Yw)t=new Bh(e);else if(t=W7(xh.parse(e)),!Wc(t.protocol))throw new Pw({input:e});return t}function pDe(e,t){return Yw?new Bh(e,t):jw(xh.resolve(t,e))}function W7(e){if(/^\[/.test(e.hostname)&&!/^\[[:0-9a-f]+\]$/i.test(e.hostname))throw new Pw({input:e.href||e});if(/^\[/.test(e.host)&&!/^\[[:0-9a-f]+\](:\d+)?$/i.test(e.host))throw new Pw({input:e.href||e});return e}function Hw(e,t){var r=t||{};for(var n of lDe)r[n]=e[n];return r.hostname.startsWith("[")&&(r.hostname=r.hostname.slice(1,-1)),r.port!==""&&(r.port=Number(r.port)),r.path=r.search?r.pathname+r.search:r.pathname,r}function Mw(e,t){var r;for(var n in t)e.test(n)&&(r=t[n],delete t[n]);return r===null||typeof r>"u"?void 0:String(r).trim()}function vh(e,t,r){function n(s){zc(Error.captureStackTrace)&&Error.captureStackTrace(this,this.constructor),Object.assign(this,s||{}),this.code=e,this.message=this.cause?t+": "+this.cause.message:t}return n.prototype=new(r||Error),Object.defineProperties(n.prototype,{constructor:{value:n,enumerable:!1},name:{value:"Error ["+e+"]",enumerable:!1}}),n}function Jw(e,t){for(var r of $w)e.removeListener(r,Gw[r]);e.on("error",J7),e.destroy(t)}function gDe(e,t){Vw(Wc(e)&&Wc(t));var r=e.length-t.length-1;return r>0&&e[r]==="."&&e.endsWith(t)}function Wc(e){return typeof e=="string"||e instanceof String}function zc(e){return typeof e=="function"}function mDe(e){return typeof e=="object"&&"length"in e}function EDe(e){return Bh&&e instanceof Bh}Ww.exports=j7({http:cDe,https:uDe});Ww.exports.wrap=j7});var Je=b((VE,LY)=>{(function(e,t){typeof VE=="object"?LY.exports=VE=t():typeof define=="function"&&define.amd?define([],t):e.CryptoJS=t()})(VE,function(){var e=e||function(t,r){var n;if(typeof window<"u"&&window.crypto&&(n=window.crypto),typeof self<"u"&&self.crypto&&(n=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(n=globalThis.crypto),!n&&typeof window<"u"&&window.msCrypto&&(n=window.msCrypto),!n&&typeof global<"u"&&global.crypto&&(n=global.crypto),!n&&typeof require=="function")try{n=require("crypto")}catch{}var s=function(){if(n){if(typeof n.getRandomValues=="function")try{return n.getRandomValues(new Uint32Array(1))[0]}catch{}if(typeof n.randomBytes=="function")try{return n.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},i=Object.create||function(){function m(){}return function(I){var y;return m.prototype=I,y=new m,m.prototype=null,y}}(),o={},a=o.lib={},c=a.Base=function(){return{extend:function(m){var I=i(this);return m&&I.mixIn(m),(!I.hasOwnProperty("init")||this.init===I.init)&&(I.init=function(){I.$super.init.apply(this,arguments)}),I.init.prototype=I,I.$super=this,I},create:function(){var m=this.extend();return m.init.apply(m,arguments),m},init:function(){},mixIn:function(m){for(var I in m)m.hasOwnProperty(I)&&(this[I]=m[I]);m.hasOwnProperty("toString")&&(this.toString=m.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),u=a.WordArray=c.extend({init:function(m,I){m=this.words=m||[],I!=r?this.sigBytes=I:this.sigBytes=m.length*4},toString:function(m){return(m||A).stringify(this)},concat:function(m){var I=this.words,y=m.words,E=this.sigBytes,B=m.sigBytes;if(this.clamp(),E%4)for(var v=0;v>>2]>>>24-v%4*8&255;I[E+v>>>2]|=x<<24-(E+v)%4*8}else for(var Q=0;Q>>2]=y[Q>>>2];return this.sigBytes+=B,this},clamp:function(){var m=this.words,I=this.sigBytes;m[I>>>2]&=4294967295<<32-I%4*8,m.length=t.ceil(I/4)},clone:function(){var m=c.clone.call(this);return m.words=this.words.slice(0),m},random:function(m){for(var I=[],y=0;y>>2]>>>24-B%4*8&255;E.push((v>>>4).toString(16)),E.push((v&15).toString(16))}return E.join("")},parse:function(m){for(var I=m.length,y=[],E=0;E>>3]|=parseInt(m.substr(E,2),16)<<24-E%8*4;return new u.init(y,I/2)}},f=l.Latin1={stringify:function(m){for(var I=m.words,y=m.sigBytes,E=[],B=0;B>>2]>>>24-B%4*8&255;E.push(String.fromCharCode(v))}return E.join("")},parse:function(m){for(var I=m.length,y=[],E=0;E>>2]|=(m.charCodeAt(E)&255)<<24-E%4*8;return new u.init(y,I)}},d=l.Utf8={stringify:function(m){try{return decodeURIComponent(escape(f.stringify(m)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(m){return f.parse(unescape(encodeURIComponent(m)))}},h=a.BufferedBlockAlgorithm=c.extend({reset:function(){this._data=new u.init,this._nDataBytes=0},_append:function(m){typeof m=="string"&&(m=d.parse(m)),this._data.concat(m),this._nDataBytes+=m.sigBytes},_process:function(m){var I,y=this._data,E=y.words,B=y.sigBytes,v=this.blockSize,x=v*4,Q=B/x;m?Q=t.ceil(Q):Q=t.max((Q|0)-this._minBufferSize,0);var S=Q*v,T=t.min(S*4,B);if(S){for(var R=0;R{(function(e,t){typeof YE=="object"?OY.exports=YE=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(YE,function(e){return function(t){var r=e,n=r.lib,s=n.Base,i=n.WordArray,o=r.x64={},a=o.Word=s.extend({init:function(u,l){this.high=u,this.low=l}}),c=o.WordArray=s.extend({init:function(u,l){u=this.words=u||[],l!=t?this.sigBytes=l:this.sigBytes=u.length*8},toX32:function(){for(var u=this.words,l=u.length,A=[],f=0;f{(function(e,t){typeof $E=="object"?MY.exports=$E=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})($E,function(e){return function(){if(typeof ArrayBuffer=="function"){var t=e,r=t.lib,n=r.WordArray,s=n.init,i=n.init=function(o){if(o instanceof ArrayBuffer&&(o=new Uint8Array(o)),(o instanceof Int8Array||typeof Uint8ClampedArray<"u"&&o instanceof Uint8ClampedArray||o instanceof Int16Array||o instanceof Uint16Array||o instanceof Int32Array||o instanceof Uint32Array||o instanceof Float32Array||o instanceof Float64Array)&&(o=new Uint8Array(o.buffer,o.byteOffset,o.byteLength)),o instanceof Uint8Array){for(var a=o.byteLength,c=[],u=0;u>>2]|=o[u]<<24-u%4*8;s.call(this,c,a)}else s.apply(this,arguments)};i.prototype=n}}(),e.lib.WordArray})});var HY=b((GE,UY)=>{(function(e,t){typeof GE=="object"?UY.exports=GE=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(GE,function(e){return function(){var t=e,r=t.lib,n=r.WordArray,s=t.enc,i=s.Utf16=s.Utf16BE={stringify:function(a){for(var c=a.words,u=a.sigBytes,l=[],A=0;A>>2]>>>16-A%4*8&65535;l.push(String.fromCharCode(f))}return l.join("")},parse:function(a){for(var c=a.length,u=[],l=0;l>>1]|=a.charCodeAt(l)<<16-l%2*16;return n.create(u,c*2)}};s.Utf16LE={stringify:function(a){for(var c=a.words,u=a.sigBytes,l=[],A=0;A>>2]>>>16-A%4*8&65535);l.push(String.fromCharCode(f))}return l.join("")},parse:function(a){for(var c=a.length,u=[],l=0;l>>1]|=o(a.charCodeAt(l)<<16-l%2*16);return n.create(u,c*2)}};function o(a){return a<<8&4278255360|a>>>8&16711935}}(),e.enc.Utf16})});var _a=b((jE,qY)=>{(function(e,t){typeof jE=="object"?qY.exports=jE=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(jE,function(e){return function(){var t=e,r=t.lib,n=r.WordArray,s=t.enc,i=s.Base64={stringify:function(a){var c=a.words,u=a.sigBytes,l=this._map;a.clamp();for(var A=[],f=0;f>>2]>>>24-f%4*8&255,h=c[f+1>>>2]>>>24-(f+1)%4*8&255,p=c[f+2>>>2]>>>24-(f+2)%4*8&255,C=d<<16|h<<8|p,m=0;m<4&&f+m*.75>>6*(3-m)&63));var I=l.charAt(64);if(I)for(;A.length%4;)A.push(I);return A.join("")},parse:function(a){var c=a.length,u=this._map,l=this._reverseMap;if(!l){l=this._reverseMap=[];for(var A=0;A>>6-f%4*2,p=d|h;l[A>>>2]|=p<<24-A%4*8,A++}return n.create(l,A)}}(),e.enc.Base64})});var YY=b((JE,VY)=>{(function(e,t){typeof JE=="object"?VY.exports=JE=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(JE,function(e){return function(){var t=e,r=t.lib,n=r.WordArray,s=t.enc,i=s.Base64url={stringify:function(a,c){c===void 0&&(c=!0);var u=a.words,l=a.sigBytes,A=c?this._safe_map:this._map;a.clamp();for(var f=[],d=0;d>>2]>>>24-d%4*8&255,p=u[d+1>>>2]>>>24-(d+1)%4*8&255,C=u[d+2>>>2]>>>24-(d+2)%4*8&255,m=h<<16|p<<8|C,I=0;I<4&&d+I*.75>>6*(3-I)&63));var y=A.charAt(64);if(y)for(;f.length%4;)f.push(y);return f.join("")},parse:function(a,c){c===void 0&&(c=!0);var u=a.length,l=c?this._safe_map:this._map,A=this._reverseMap;if(!A){A=this._reverseMap=[];for(var f=0;f>>6-f%4*2,p=d|h;l[A>>>2]|=p<<24-A%4*8,A++}return n.create(l,A)}}(),e.enc.Base64url})});var Ra=b((WE,$Y)=>{(function(e,t){typeof WE=="object"?$Y.exports=WE=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(WE,function(e){return function(t){var r=e,n=r.lib,s=n.WordArray,i=n.Hasher,o=r.algo,a=[];(function(){for(var d=0;d<64;d++)a[d]=t.abs(t.sin(d+1))*4294967296|0})();var c=o.MD5=i.extend({_doReset:function(){this._hash=new s.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(d,h){for(var p=0;p<16;p++){var C=h+p,m=d[C];d[C]=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360}var I=this._hash.words,y=d[h+0],E=d[h+1],B=d[h+2],v=d[h+3],x=d[h+4],Q=d[h+5],S=d[h+6],T=d[h+7],R=d[h+8],D=d[h+9],k=d[h+10],F=d[h+11],j=d[h+12],H=d[h+13],U=d[h+14],X=d[h+15],L=I[0],Y=I[1],G=I[2],q=I[3];L=u(L,Y,G,q,y,7,a[0]),q=u(q,L,Y,G,E,12,a[1]),G=u(G,q,L,Y,B,17,a[2]),Y=u(Y,G,q,L,v,22,a[3]),L=u(L,Y,G,q,x,7,a[4]),q=u(q,L,Y,G,Q,12,a[5]),G=u(G,q,L,Y,S,17,a[6]),Y=u(Y,G,q,L,T,22,a[7]),L=u(L,Y,G,q,R,7,a[8]),q=u(q,L,Y,G,D,12,a[9]),G=u(G,q,L,Y,k,17,a[10]),Y=u(Y,G,q,L,F,22,a[11]),L=u(L,Y,G,q,j,7,a[12]),q=u(q,L,Y,G,H,12,a[13]),G=u(G,q,L,Y,U,17,a[14]),Y=u(Y,G,q,L,X,22,a[15]),L=l(L,Y,G,q,E,5,a[16]),q=l(q,L,Y,G,S,9,a[17]),G=l(G,q,L,Y,F,14,a[18]),Y=l(Y,G,q,L,y,20,a[19]),L=l(L,Y,G,q,Q,5,a[20]),q=l(q,L,Y,G,k,9,a[21]),G=l(G,q,L,Y,X,14,a[22]),Y=l(Y,G,q,L,x,20,a[23]),L=l(L,Y,G,q,D,5,a[24]),q=l(q,L,Y,G,U,9,a[25]),G=l(G,q,L,Y,v,14,a[26]),Y=l(Y,G,q,L,R,20,a[27]),L=l(L,Y,G,q,H,5,a[28]),q=l(q,L,Y,G,B,9,a[29]),G=l(G,q,L,Y,T,14,a[30]),Y=l(Y,G,q,L,j,20,a[31]),L=A(L,Y,G,q,Q,4,a[32]),q=A(q,L,Y,G,R,11,a[33]),G=A(G,q,L,Y,F,16,a[34]),Y=A(Y,G,q,L,U,23,a[35]),L=A(L,Y,G,q,E,4,a[36]),q=A(q,L,Y,G,x,11,a[37]),G=A(G,q,L,Y,T,16,a[38]),Y=A(Y,G,q,L,k,23,a[39]),L=A(L,Y,G,q,H,4,a[40]),q=A(q,L,Y,G,y,11,a[41]),G=A(G,q,L,Y,v,16,a[42]),Y=A(Y,G,q,L,S,23,a[43]),L=A(L,Y,G,q,D,4,a[44]),q=A(q,L,Y,G,j,11,a[45]),G=A(G,q,L,Y,X,16,a[46]),Y=A(Y,G,q,L,B,23,a[47]),L=f(L,Y,G,q,y,6,a[48]),q=f(q,L,Y,G,T,10,a[49]),G=f(G,q,L,Y,U,15,a[50]),Y=f(Y,G,q,L,Q,21,a[51]),L=f(L,Y,G,q,j,6,a[52]),q=f(q,L,Y,G,v,10,a[53]),G=f(G,q,L,Y,k,15,a[54]),Y=f(Y,G,q,L,E,21,a[55]),L=f(L,Y,G,q,R,6,a[56]),q=f(q,L,Y,G,X,10,a[57]),G=f(G,q,L,Y,S,15,a[58]),Y=f(Y,G,q,L,H,21,a[59]),L=f(L,Y,G,q,x,6,a[60]),q=f(q,L,Y,G,F,10,a[61]),G=f(G,q,L,Y,B,15,a[62]),Y=f(Y,G,q,L,D,21,a[63]),I[0]=I[0]+L|0,I[1]=I[1]+Y|0,I[2]=I[2]+G|0,I[3]=I[3]+q|0},_doFinalize:function(){var d=this._data,h=d.words,p=this._nDataBytes*8,C=d.sigBytes*8;h[C>>>5]|=128<<24-C%32;var m=t.floor(p/4294967296),I=p;h[(C+64>>>9<<4)+15]=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360,h[(C+64>>>9<<4)+14]=(I<<8|I>>>24)&16711935|(I<<24|I>>>8)&4278255360,d.sigBytes=(h.length+1)*4,this._process();for(var y=this._hash,E=y.words,B=0;B<4;B++){var v=E[B];E[B]=(v<<8|v>>>24)&16711935|(v<<24|v>>>8)&4278255360}return y},clone:function(){var d=i.clone.call(this);return d._hash=this._hash.clone(),d}});function u(d,h,p,C,m,I,y){var E=d+(h&p|~h&C)+m+y;return(E<>>32-I)+h}function l(d,h,p,C,m,I,y){var E=d+(h&C|p&~C)+m+y;return(E<>>32-I)+h}function A(d,h,p,C,m,I,y){var E=d+(h^p^C)+m+y;return(E<>>32-I)+h}function f(d,h,p,C,m,I,y){var E=d+(p^(h|~C))+m+y;return(E<>>32-I)+h}r.MD5=i._createHelper(c),r.HmacMD5=i._createHmacHelper(c)}(Math),e.MD5})});var lS=b((zE,GY)=>{(function(e,t){typeof zE=="object"?GY.exports=zE=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(zE,function(e){return function(){var t=e,r=t.lib,n=r.WordArray,s=r.Hasher,i=t.algo,o=[],a=i.SHA1=s.extend({_doReset:function(){this._hash=new n.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(c,u){for(var l=this._hash.words,A=l[0],f=l[1],d=l[2],h=l[3],p=l[4],C=0;C<80;C++){if(C<16)o[C]=c[u+C]|0;else{var m=o[C-3]^o[C-8]^o[C-14]^o[C-16];o[C]=m<<1|m>>>31}var I=(A<<5|A>>>27)+p+o[C];C<20?I+=(f&d|~f&h)+1518500249:C<40?I+=(f^d^h)+1859775393:C<60?I+=(f&d|f&h|d&h)-1894007588:I+=(f^d^h)-899497514,p=h,h=d,d=f<<30|f>>>2,f=A,A=I}l[0]=l[0]+A|0,l[1]=l[1]+f|0,l[2]=l[2]+d|0,l[3]=l[3]+h|0,l[4]=l[4]+p|0},_doFinalize:function(){var c=this._data,u=c.words,l=this._nDataBytes*8,A=c.sigBytes*8;return u[A>>>5]|=128<<24-A%32,u[(A+64>>>9<<4)+14]=Math.floor(l/4294967296),u[(A+64>>>9<<4)+15]=l,c.sigBytes=u.length*4,this._process(),this._hash},clone:function(){var c=s.clone.call(this);return c._hash=this._hash.clone(),c}});t.SHA1=s._createHelper(a),t.HmacSHA1=s._createHmacHelper(a)}(),e.SHA1})});var KE=b((XE,jY)=>{(function(e,t){typeof XE=="object"?jY.exports=XE=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(XE,function(e){return function(t){var r=e,n=r.lib,s=n.WordArray,i=n.Hasher,o=r.algo,a=[],c=[];(function(){function A(p){for(var C=t.sqrt(p),m=2;m<=C;m++)if(!(p%m))return!1;return!0}function f(p){return(p-(p|0))*4294967296|0}for(var d=2,h=0;h<64;)A(d)&&(h<8&&(a[h]=f(t.pow(d,1/2))),c[h]=f(t.pow(d,1/3)),h++),d++})();var u=[],l=o.SHA256=i.extend({_doReset:function(){this._hash=new s.init(a.slice(0))},_doProcessBlock:function(A,f){for(var d=this._hash.words,h=d[0],p=d[1],C=d[2],m=d[3],I=d[4],y=d[5],E=d[6],B=d[7],v=0;v<64;v++){if(v<16)u[v]=A[f+v]|0;else{var x=u[v-15],Q=(x<<25|x>>>7)^(x<<14|x>>>18)^x>>>3,S=u[v-2],T=(S<<15|S>>>17)^(S<<13|S>>>19)^S>>>10;u[v]=Q+u[v-7]+T+u[v-16]}var R=I&y^~I&E,D=h&p^h&C^p&C,k=(h<<30|h>>>2)^(h<<19|h>>>13)^(h<<10|h>>>22),F=(I<<26|I>>>6)^(I<<21|I>>>11)^(I<<7|I>>>25),j=B+F+R+c[v]+u[v],H=k+D;B=E,E=y,y=I,I=m+j|0,m=C,C=p,p=h,h=j+H|0}d[0]=d[0]+h|0,d[1]=d[1]+p|0,d[2]=d[2]+C|0,d[3]=d[3]+m|0,d[4]=d[4]+I|0,d[5]=d[5]+y|0,d[6]=d[6]+E|0,d[7]=d[7]+B|0},_doFinalize:function(){var A=this._data,f=A.words,d=this._nDataBytes*8,h=A.sigBytes*8;return f[h>>>5]|=128<<24-h%32,f[(h+64>>>9<<4)+14]=t.floor(d/4294967296),f[(h+64>>>9<<4)+15]=d,A.sigBytes=f.length*4,this._process(),this._hash},clone:function(){var A=i.clone.call(this);return A._hash=this._hash.clone(),A}});r.SHA256=i._createHelper(l),r.HmacSHA256=i._createHmacHelper(l)}(Math),e.SHA256})});var WY=b((ZE,JY)=>{(function(e,t,r){typeof ZE=="object"?JY.exports=ZE=t(Je(),KE()):typeof define=="function"&&define.amd?define(["./core","./sha256"],t):t(e.CryptoJS)})(ZE,function(e){return function(){var t=e,r=t.lib,n=r.WordArray,s=t.algo,i=s.SHA256,o=s.SHA224=i.extend({_doReset:function(){this._hash=new n.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var a=i._doFinalize.call(this);return a.sigBytes-=4,a}});t.SHA224=i._createHelper(o),t.HmacSHA224=i._createHmacHelper(o)}(),e.SHA224})});var AS=b((eC,zY)=>{(function(e,t,r){typeof eC=="object"?zY.exports=eC=t(Je(),_h()):typeof define=="function"&&define.amd?define(["./core","./x64-core"],t):t(e.CryptoJS)})(eC,function(e){return function(){var t=e,r=t.lib,n=r.Hasher,s=t.x64,i=s.Word,o=s.WordArray,a=t.algo;function c(){return i.create.apply(i,arguments)}var u=[c(1116352408,3609767458),c(1899447441,602891725),c(3049323471,3964484399),c(3921009573,2173295548),c(961987163,4081628472),c(1508970993,3053834265),c(2453635748,2937671579),c(2870763221,3664609560),c(3624381080,2734883394),c(310598401,1164996542),c(607225278,1323610764),c(1426881987,3590304994),c(1925078388,4068182383),c(2162078206,991336113),c(2614888103,633803317),c(3248222580,3479774868),c(3835390401,2666613458),c(4022224774,944711139),c(264347078,2341262773),c(604807628,2007800933),c(770255983,1495990901),c(1249150122,1856431235),c(1555081692,3175218132),c(1996064986,2198950837),c(2554220882,3999719339),c(2821834349,766784016),c(2952996808,2566594879),c(3210313671,3203337956),c(3336571891,1034457026),c(3584528711,2466948901),c(113926993,3758326383),c(338241895,168717936),c(666307205,1188179964),c(773529912,1546045734),c(1294757372,1522805485),c(1396182291,2643833823),c(1695183700,2343527390),c(1986661051,1014477480),c(2177026350,1206759142),c(2456956037,344077627),c(2730485921,1290863460),c(2820302411,3158454273),c(3259730800,3505952657),c(3345764771,106217008),c(3516065817,3606008344),c(3600352804,1432725776),c(4094571909,1467031594),c(275423344,851169720),c(430227734,3100823752),c(506948616,1363258195),c(659060556,3750685593),c(883997877,3785050280),c(958139571,3318307427),c(1322822218,3812723403),c(1537002063,2003034995),c(1747873779,3602036899),c(1955562222,1575990012),c(2024104815,1125592928),c(2227730452,2716904306),c(2361852424,442776044),c(2428436474,593698344),c(2756734187,3733110249),c(3204031479,2999351573),c(3329325298,3815920427),c(3391569614,3928383900),c(3515267271,566280711),c(3940187606,3454069534),c(4118630271,4000239992),c(116418474,1914138554),c(174292421,2731055270),c(289380356,3203993006),c(460393269,320620315),c(685471733,587496836),c(852142971,1086792851),c(1017036298,365543100),c(1126000580,2618297676),c(1288033470,3409855158),c(1501505948,4234509866),c(1607167915,987167468),c(1816402316,1246189591)],l=[];(function(){for(var f=0;f<80;f++)l[f]=c()})();var A=a.SHA512=n.extend({_doReset:function(){this._hash=new o.init([new i.init(1779033703,4089235720),new i.init(3144134277,2227873595),new i.init(1013904242,4271175723),new i.init(2773480762,1595750129),new i.init(1359893119,2917565137),new i.init(2600822924,725511199),new i.init(528734635,4215389547),new i.init(1541459225,327033209)])},_doProcessBlock:function(f,d){for(var h=this._hash.words,p=h[0],C=h[1],m=h[2],I=h[3],y=h[4],E=h[5],B=h[6],v=h[7],x=p.high,Q=p.low,S=C.high,T=C.low,R=m.high,D=m.low,k=I.high,F=I.low,j=y.high,H=y.low,U=E.high,X=E.low,L=B.high,Y=B.low,G=v.high,q=v.low,Ge=x,ve=Q,Ce=S,ye=T,Se=R,be=D,Pn=k,lt=F,Re=j,P=H,K=U,oe=X,le=L,Le=Y,de=G,At=q,Jt=0;Jt<80;Jt++){var rt,fr,Sp=l[Jt];if(Jt<16)fr=Sp.high=f[d+Jt*2]|0,rt=Sp.low=f[d+Jt*2+1]|0;else{var is=l[Jt-15],gn=is.high,no=is.low,ea=(gn>>>1|no<<31)^(gn>>>8|no<<24)^gn>>>7,_p=(no>>>1|gn<<31)^(no>>>8|gn<<24)^(no>>>7|gn<<25),Vk=l[Jt-2],nr=Vk.high,hc=Vk.low,Rp=(nr>>>19|hc<<13)^(nr<<3|hc>>>29)^nr>>>6,Rt=(hc>>>19|nr<<13)^(hc<<3|nr>>>29)^(hc>>>6|nr<<26),mn=l[Jt-7],Coe=mn.high,os=mn.low,gi=l[Jt-16],yoe=gi.high,Tr=gi.low;rt=_p+os,fr=ea+Coe+(rt>>>0<_p>>>0?1:0),rt=rt+Rt,fr=fr+Rp+(rt>>>0>>0?1:0),rt=rt+Tr,fr=fr+yoe+(rt>>>0>>0?1:0),Sp.high=fr,Sp.low=rt}var e1=Re&K^~Re&le,Yk=P&oe^~P&Le,sr=Ge&Ce^Ge&Se^Ce&Se,pc=ve&ye^ve&be^ye&be,Ioe=(Ge>>>28|ve<<4)^(Ge<<30|ve>>>2)^(Ge<<25|ve>>>7),as=(ve>>>28|Ge<<4)^(ve<<30|Ge>>>2)^(ve<<25|Ge>>>7),Un=(Re>>>14|P<<18)^(Re>>>18|P<<14)^(Re<<23|P>>>9),Dp=(P>>>14|Re<<18)^(P>>>18|Re<<14)^(P<<23|Re>>>9),so=u[Jt],gc=so.high,Pf=so.low,ir=At+Dp,ta=de+Un+(ir>>>0>>0?1:0),ir=ir+Yk,ta=ta+e1+(ir>>>0>>0?1:0),ir=ir+Pf,ta=ta+gc+(ir>>>0>>0?1:0),ir=ir+rt,ta=ta+fr+(ir>>>0>>0?1:0),$k=as+pc,boe=Ioe+sr+($k>>>0>>0?1:0);de=le,At=Le,le=K,Le=oe,K=Re,oe=P,P=lt+ir|0,Re=Pn+ta+(P>>>0>>0?1:0)|0,Pn=Se,lt=be,Se=Ce,be=ye,Ce=Ge,ye=ve,ve=ir+$k|0,Ge=ta+boe+(ve>>>0>>0?1:0)|0}Q=p.low=Q+ve,p.high=x+Ge+(Q>>>0>>0?1:0),T=C.low=T+ye,C.high=S+Ce+(T>>>0>>0?1:0),D=m.low=D+be,m.high=R+Se+(D>>>0>>0?1:0),F=I.low=F+lt,I.high=k+Pn+(F>>>0>>0?1:0),H=y.low=H+P,y.high=j+Re+(H>>>0

    >>0?1:0),X=E.low=X+oe,E.high=U+K+(X>>>0>>0?1:0),Y=B.low=Y+Le,B.high=L+le+(Y>>>0>>0?1:0),q=v.low=q+At,v.high=G+de+(q>>>0>>0?1:0)},_doFinalize:function(){var f=this._data,d=f.words,h=this._nDataBytes*8,p=f.sigBytes*8;d[p>>>5]|=128<<24-p%32,d[(p+128>>>10<<5)+30]=Math.floor(h/4294967296),d[(p+128>>>10<<5)+31]=h,f.sigBytes=d.length*4,this._process();var C=this._hash.toX32();return C},clone:function(){var f=n.clone.call(this);return f._hash=this._hash.clone(),f},blockSize:1024/32});t.SHA512=n._createHelper(A),t.HmacSHA512=n._createHmacHelper(A)}(),e.SHA512})});var KY=b((tC,XY)=>{(function(e,t,r){typeof tC=="object"?XY.exports=tC=t(Je(),_h(),AS()):typeof define=="function"&&define.amd?define(["./core","./x64-core","./sha512"],t):t(e.CryptoJS)})(tC,function(e){return function(){var t=e,r=t.x64,n=r.Word,s=r.WordArray,i=t.algo,o=i.SHA512,a=i.SHA384=o.extend({_doReset:function(){this._hash=new s.init([new n.init(3418070365,3238371032),new n.init(1654270250,914150663),new n.init(2438529370,812702999),new n.init(355462360,4144912697),new n.init(1731405415,4290775857),new n.init(2394180231,1750603025),new n.init(3675008525,1694076839),new n.init(1203062813,3204075428)])},_doFinalize:function(){var c=o._doFinalize.call(this);return c.sigBytes-=16,c}});t.SHA384=o._createHelper(a),t.HmacSHA384=o._createHmacHelper(a)}(),e.SHA384})});var e$=b((rC,ZY)=>{(function(e,t,r){typeof rC=="object"?ZY.exports=rC=t(Je(),_h()):typeof define=="function"&&define.amd?define(["./core","./x64-core"],t):t(e.CryptoJS)})(rC,function(e){return function(t){var r=e,n=r.lib,s=n.WordArray,i=n.Hasher,o=r.x64,a=o.Word,c=r.algo,u=[],l=[],A=[];(function(){for(var h=1,p=0,C=0;C<24;C++){u[h+5*p]=(C+1)*(C+2)/2%64;var m=p%5,I=(2*h+3*p)%5;h=m,p=I}for(var h=0;h<5;h++)for(var p=0;p<5;p++)l[h+5*p]=p+(2*h+3*p)%5*5;for(var y=1,E=0;E<24;E++){for(var B=0,v=0,x=0;x<7;x++){if(y&1){var Q=(1<>>24)&16711935|(y<<24|y>>>8)&4278255360,E=(E<<8|E>>>24)&16711935|(E<<24|E>>>8)&4278255360;var B=C[I];B.high^=E,B.low^=y}for(var v=0;v<24;v++){for(var x=0;x<5;x++){for(var Q=0,S=0,T=0;T<5;T++){var B=C[x+5*T];Q^=B.high,S^=B.low}var R=f[x];R.high=Q,R.low=S}for(var x=0;x<5;x++)for(var D=f[(x+4)%5],k=f[(x+1)%5],F=k.high,j=k.low,Q=D.high^(F<<1|j>>>31),S=D.low^(j<<1|F>>>31),T=0;T<5;T++){var B=C[x+5*T];B.high^=Q,B.low^=S}for(var H=1;H<25;H++){var Q,S,B=C[H],U=B.high,X=B.low,L=u[H];L<32?(Q=U<>>32-L,S=X<>>32-L):(Q=X<>>64-L,S=U<>>64-L);var Y=f[l[H]];Y.high=Q,Y.low=S}var G=f[0],q=C[0];G.high=q.high,G.low=q.low;for(var x=0;x<5;x++)for(var T=0;T<5;T++){var H=x+5*T,B=C[H],Ge=f[H],ve=f[(x+1)%5+5*T],Ce=f[(x+2)%5+5*T];B.high=Ge.high^~ve.high&Ce.high,B.low=Ge.low^~ve.low&Ce.low}var B=C[0],ye=A[v];B.high^=ye.high,B.low^=ye.low}},_doFinalize:function(){var h=this._data,p=h.words,C=this._nDataBytes*8,m=h.sigBytes*8,I=this.blockSize*32;p[m>>>5]|=1<<24-m%32,p[(t.ceil((m+1)/I)*I>>>5)-1]|=128,h.sigBytes=p.length*4,this._process();for(var y=this._state,E=this.cfg.outputLength/8,B=E/8,v=[],x=0;x>>24)&16711935|(S<<24|S>>>8)&4278255360,T=(T<<8|T>>>24)&16711935|(T<<24|T>>>8)&4278255360,v.push(T),v.push(S)}return new s.init(v,E)},clone:function(){for(var h=i.clone.call(this),p=h._state=this._state.slice(0),C=0;C<25;C++)p[C]=p[C].clone();return h}});r.SHA3=i._createHelper(d),r.HmacSHA3=i._createHmacHelper(d)}(Math),e.SHA3})});var r$=b((nC,t$)=>{(function(e,t){typeof nC=="object"?t$.exports=nC=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(nC,function(e){return function(t){var r=e,n=r.lib,s=n.WordArray,i=n.Hasher,o=r.algo,a=s.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),c=s.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),u=s.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),l=s.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),A=s.create([0,1518500249,1859775393,2400959708,2840853838]),f=s.create([1352829926,1548603684,1836072691,2053994217,0]),d=o.RIPEMD160=i.extend({_doReset:function(){this._hash=s.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(E,B){for(var v=0;v<16;v++){var x=B+v,Q=E[x];E[x]=(Q<<8|Q>>>24)&16711935|(Q<<24|Q>>>8)&4278255360}var S=this._hash.words,T=A.words,R=f.words,D=a.words,k=c.words,F=u.words,j=l.words,H,U,X,L,Y,G,q,Ge,ve,Ce;G=H=S[0],q=U=S[1],Ge=X=S[2],ve=L=S[3],Ce=Y=S[4];for(var ye,v=0;v<80;v+=1)ye=H+E[B+D[v]]|0,v<16?ye+=h(U,X,L)+T[0]:v<32?ye+=p(U,X,L)+T[1]:v<48?ye+=C(U,X,L)+T[2]:v<64?ye+=m(U,X,L)+T[3]:ye+=I(U,X,L)+T[4],ye=ye|0,ye=y(ye,F[v]),ye=ye+Y|0,H=Y,Y=L,L=y(X,10),X=U,U=ye,ye=G+E[B+k[v]]|0,v<16?ye+=I(q,Ge,ve)+R[0]:v<32?ye+=m(q,Ge,ve)+R[1]:v<48?ye+=C(q,Ge,ve)+R[2]:v<64?ye+=p(q,Ge,ve)+R[3]:ye+=h(q,Ge,ve)+R[4],ye=ye|0,ye=y(ye,j[v]),ye=ye+Ce|0,G=Ce,Ce=ve,ve=y(Ge,10),Ge=q,q=ye;ye=S[1]+X+ve|0,S[1]=S[2]+L+Ce|0,S[2]=S[3]+Y+G|0,S[3]=S[4]+H+q|0,S[4]=S[0]+U+Ge|0,S[0]=ye},_doFinalize:function(){var E=this._data,B=E.words,v=this._nDataBytes*8,x=E.sigBytes*8;B[x>>>5]|=128<<24-x%32,B[(x+64>>>9<<4)+14]=(v<<8|v>>>24)&16711935|(v<<24|v>>>8)&4278255360,E.sigBytes=(B.length+1)*4,this._process();for(var Q=this._hash,S=Q.words,T=0;T<5;T++){var R=S[T];S[T]=(R<<8|R>>>24)&16711935|(R<<24|R>>>8)&4278255360}return Q},clone:function(){var E=i.clone.call(this);return E._hash=this._hash.clone(),E}});function h(E,B,v){return E^B^v}function p(E,B,v){return E&B|~E&v}function C(E,B,v){return(E|~B)^v}function m(E,B,v){return E&v|B&~v}function I(E,B,v){return E^(B|~v)}function y(E,B){return E<>>32-B}r.RIPEMD160=i._createHelper(d),r.HmacRIPEMD160=i._createHmacHelper(d)}(Math),e.RIPEMD160})});var iC=b((sC,n$)=>{(function(e,t){typeof sC=="object"?n$.exports=sC=t(Je()):typeof define=="function"&&define.amd?define(["./core"],t):t(e.CryptoJS)})(sC,function(e){(function(){var t=e,r=t.lib,n=r.Base,s=t.enc,i=s.Utf8,o=t.algo,a=o.HMAC=n.extend({init:function(c,u){c=this._hasher=new c.init,typeof u=="string"&&(u=i.parse(u));var l=c.blockSize,A=l*4;u.sigBytes>A&&(u=c.finalize(u)),u.clamp();for(var f=this._oKey=u.clone(),d=this._iKey=u.clone(),h=f.words,p=d.words,C=0;C{(function(e,t,r){typeof oC=="object"?s$.exports=oC=t(Je(),KE(),iC()):typeof define=="function"&&define.amd?define(["./core","./sha256","./hmac"],t):t(e.CryptoJS)})(oC,function(e){return function(){var t=e,r=t.lib,n=r.Base,s=r.WordArray,i=t.algo,o=i.SHA256,a=i.HMAC,c=i.PBKDF2=n.extend({cfg:n.extend({keySize:128/32,hasher:o,iterations:25e4}),init:function(u){this.cfg=this.cfg.extend(u)},compute:function(u,l){for(var A=this.cfg,f=a.create(A.hasher,u),d=s.create(),h=s.create([1]),p=d.words,C=h.words,m=A.keySize,I=A.iterations;p.length{(function(e,t,r){typeof aC=="object"?o$.exports=aC=t(Je(),lS(),iC()):typeof define=="function"&&define.amd?define(["./core","./sha1","./hmac"],t):t(e.CryptoJS)})(aC,function(e){return function(){var t=e,r=t.lib,n=r.Base,s=r.WordArray,i=t.algo,o=i.MD5,a=i.EvpKDF=n.extend({cfg:n.extend({keySize:128/32,hasher:o,iterations:1}),init:function(c){this.cfg=this.cfg.extend(c)},compute:function(c,u){for(var l,A=this.cfg,f=A.hasher.create(),d=s.create(),h=d.words,p=A.keySize,C=A.iterations;h.length{(function(e,t,r){typeof cC=="object"?a$.exports=cC=t(Je(),Qo()):typeof define=="function"&&define.amd?define(["./core","./evpkdf"],t):t(e.CryptoJS)})(cC,function(e){e.lib.Cipher||function(t){var r=e,n=r.lib,s=n.Base,i=n.WordArray,o=n.BufferedBlockAlgorithm,a=r.enc,c=a.Utf8,u=a.Base64,l=r.algo,A=l.EvpKDF,f=n.Cipher=o.extend({cfg:s.extend(),createEncryptor:function(R,D){return this.create(this._ENC_XFORM_MODE,R,D)},createDecryptor:function(R,D){return this.create(this._DEC_XFORM_MODE,R,D)},init:function(R,D,k){this.cfg=this.cfg.extend(k),this._xformMode=R,this._key=D,this.reset()},reset:function(){o.reset.call(this),this._doReset()},process:function(R){return this._append(R),this._process()},finalize:function(R){R&&this._append(R);var D=this._doFinalize();return D},keySize:128/32,ivSize:128/32,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function R(D){return typeof D=="string"?T:x}return function(D){return{encrypt:function(k,F,j){return R(F).encrypt(D,k,F,j)},decrypt:function(k,F,j){return R(F).decrypt(D,k,F,j)}}}}()}),d=n.StreamCipher=f.extend({_doFinalize:function(){var R=this._process(!0);return R},blockSize:1}),h=r.mode={},p=n.BlockCipherMode=s.extend({createEncryptor:function(R,D){return this.Encryptor.create(R,D)},createDecryptor:function(R,D){return this.Decryptor.create(R,D)},init:function(R,D){this._cipher=R,this._iv=D}}),C=h.CBC=function(){var R=p.extend();R.Encryptor=R.extend({processBlock:function(k,F){var j=this._cipher,H=j.blockSize;D.call(this,k,F,H),j.encryptBlock(k,F),this._prevBlock=k.slice(F,F+H)}}),R.Decryptor=R.extend({processBlock:function(k,F){var j=this._cipher,H=j.blockSize,U=k.slice(F,F+H);j.decryptBlock(k,F),D.call(this,k,F,H),this._prevBlock=U}});function D(k,F,j){var H,U=this._iv;U?(H=U,this._iv=t):H=this._prevBlock;for(var X=0;X>>2]&255;R.sigBytes-=D}},y=n.BlockCipher=f.extend({cfg:f.cfg.extend({mode:C,padding:I}),reset:function(){var R;f.reset.call(this);var D=this.cfg,k=D.iv,F=D.mode;this._xformMode==this._ENC_XFORM_MODE?R=F.createEncryptor:(R=F.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==R?this._mode.init(this,k&&k.words):(this._mode=R.call(F,this,k&&k.words),this._mode.__creator=R)},_doProcessBlock:function(R,D){this._mode.processBlock(R,D)},_doFinalize:function(){var R,D=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(D.pad(this._data,this.blockSize),R=this._process(!0)):(R=this._process(!0),D.unpad(R)),R},blockSize:128/32}),E=n.CipherParams=s.extend({init:function(R){this.mixIn(R)},toString:function(R){return(R||this.formatter).stringify(this)}}),B=r.format={},v=B.OpenSSL={stringify:function(R){var D,k=R.ciphertext,F=R.salt;return F?D=i.create([1398893684,1701076831]).concat(F).concat(k):D=k,D.toString(u)},parse:function(R){var D,k=u.parse(R),F=k.words;return F[0]==1398893684&&F[1]==1701076831&&(D=i.create(F.slice(2,4)),F.splice(0,4),k.sigBytes-=16),E.create({ciphertext:k,salt:D})}},x=n.SerializableCipher=s.extend({cfg:s.extend({format:v}),encrypt:function(R,D,k,F){F=this.cfg.extend(F);var j=R.createEncryptor(k,F),H=j.finalize(D),U=j.cfg;return E.create({ciphertext:H,key:k,iv:U.iv,algorithm:R,mode:U.mode,padding:U.padding,blockSize:R.blockSize,formatter:F.format})},decrypt:function(R,D,k,F){F=this.cfg.extend(F),D=this._parse(D,F.format);var j=R.createDecryptor(k,F).finalize(D.ciphertext);return j},_parse:function(R,D){return typeof R=="string"?D.parse(R,this):R}}),Q=r.kdf={},S=Q.OpenSSL={execute:function(R,D,k,F,j){if(F||(F=i.random(64/8)),j)var H=A.create({keySize:D+k,hasher:j}).compute(R,F);else var H=A.create({keySize:D+k}).compute(R,F);var U=i.create(H.words.slice(D),k*4);return H.sigBytes=D*4,E.create({key:H,iv:U,salt:F})}},T=n.PasswordBasedCipher=x.extend({cfg:x.cfg.extend({kdf:S}),encrypt:function(R,D,k,F){F=this.cfg.extend(F);var j=F.kdf.execute(k,R.keySize,R.ivSize,F.salt,F.hasher);F.iv=j.iv;var H=x.encrypt.call(this,R,D,j.key,F);return H.mixIn(j),H},decrypt:function(R,D,k,F){F=this.cfg.extend(F),D=this._parse(D,F.format);var j=F.kdf.execute(k,R.keySize,R.ivSize,D.salt,F.hasher);F.iv=j.iv;var H=x.decrypt.call(this,R,D,j.key,F);return H}})}()})});var u$=b((uC,c$)=>{(function(e,t,r){typeof uC=="object"?c$.exports=uC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(uC,function(e){return e.mode.CFB=function(){var t=e.lib.BlockCipherMode.extend();t.Encryptor=t.extend({processBlock:function(n,s){var i=this._cipher,o=i.blockSize;r.call(this,n,s,o,i),this._prevBlock=n.slice(s,s+o)}}),t.Decryptor=t.extend({processBlock:function(n,s){var i=this._cipher,o=i.blockSize,a=n.slice(s,s+o);r.call(this,n,s,o,i),this._prevBlock=a}});function r(n,s,i,o){var a,c=this._iv;c?(a=c.slice(0),this._iv=void 0):a=this._prevBlock,o.encryptBlock(a,0);for(var u=0;u{(function(e,t,r){typeof lC=="object"?l$.exports=lC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(lC,function(e){return e.mode.CTR=function(){var t=e.lib.BlockCipherMode.extend(),r=t.Encryptor=t.extend({processBlock:function(n,s){var i=this._cipher,o=i.blockSize,a=this._iv,c=this._counter;a&&(c=this._counter=a.slice(0),this._iv=void 0);var u=c.slice(0);i.encryptBlock(u,0),c[o-1]=c[o-1]+1|0;for(var l=0;l{(function(e,t,r){typeof AC=="object"?f$.exports=AC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(AC,function(e){return e.mode.CTRGladman=function(){var t=e.lib.BlockCipherMode.extend();function r(i){if((i>>24&255)===255){var o=i>>16&255,a=i>>8&255,c=i&255;o===255?(o=0,a===255?(a=0,c===255?c=0:++c):++a):++o,i=0,i+=o<<16,i+=a<<8,i+=c}else i+=1<<24;return i}function n(i){return(i[0]=r(i[0]))===0&&(i[1]=r(i[1])),i}var s=t.Encryptor=t.extend({processBlock:function(i,o){var a=this._cipher,c=a.blockSize,u=this._iv,l=this._counter;u&&(l=this._counter=u.slice(0),this._iv=void 0),n(l);var A=l.slice(0);a.encryptBlock(A,0);for(var f=0;f{(function(e,t,r){typeof fC=="object"?h$.exports=fC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(fC,function(e){return e.mode.OFB=function(){var t=e.lib.BlockCipherMode.extend(),r=t.Encryptor=t.extend({processBlock:function(n,s){var i=this._cipher,o=i.blockSize,a=this._iv,c=this._keystream;a&&(c=this._keystream=a.slice(0),this._iv=void 0),i.encryptBlock(c,0);for(var u=0;u{(function(e,t,r){typeof dC=="object"?g$.exports=dC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(dC,function(e){return e.mode.ECB=function(){var t=e.lib.BlockCipherMode.extend();return t.Encryptor=t.extend({processBlock:function(r,n){this._cipher.encryptBlock(r,n)}}),t.Decryptor=t.extend({processBlock:function(r,n){this._cipher.decryptBlock(r,n)}}),t}(),e.mode.ECB})});var C$=b((hC,E$)=>{(function(e,t,r){typeof hC=="object"?E$.exports=hC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(hC,function(e){return e.pad.AnsiX923={pad:function(t,r){var n=t.sigBytes,s=r*4,i=s-n%s,o=n+i-1;t.clamp(),t.words[o>>>2]|=i<<24-o%4*8,t.sigBytes+=i},unpad:function(t){var r=t.words[t.sigBytes-1>>>2]&255;t.sigBytes-=r}},e.pad.Ansix923})});var I$=b((pC,y$)=>{(function(e,t,r){typeof pC=="object"?y$.exports=pC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(pC,function(e){return e.pad.Iso10126={pad:function(t,r){var n=r*4,s=n-t.sigBytes%n;t.concat(e.lib.WordArray.random(s-1)).concat(e.lib.WordArray.create([s<<24],1))},unpad:function(t){var r=t.words[t.sigBytes-1>>>2]&255;t.sigBytes-=r}},e.pad.Iso10126})});var B$=b((gC,b$)=>{(function(e,t,r){typeof gC=="object"?b$.exports=gC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(gC,function(e){return e.pad.Iso97971={pad:function(t,r){t.concat(e.lib.WordArray.create([2147483648],1)),e.pad.ZeroPadding.pad(t,r)},unpad:function(t){e.pad.ZeroPadding.unpad(t),t.sigBytes--}},e.pad.Iso97971})});var v$=b((mC,x$)=>{(function(e,t,r){typeof mC=="object"?x$.exports=mC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(mC,function(e){return e.pad.ZeroPadding={pad:function(t,r){var n=r*4;t.clamp(),t.sigBytes+=n-(t.sigBytes%n||n)},unpad:function(t){for(var r=t.words,n=t.sigBytes-1,n=t.sigBytes-1;n>=0;n--)if(r[n>>>2]>>>24-n%4*8&255){t.sigBytes=n+1;break}}},e.pad.ZeroPadding})});var T$=b((EC,Q$)=>{(function(e,t,r){typeof EC=="object"?Q$.exports=EC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(EC,function(e){return e.pad.NoPadding={pad:function(){},unpad:function(){}},e.pad.NoPadding})});var S$=b((CC,w$)=>{(function(e,t,r){typeof CC=="object"?w$.exports=CC=t(Je(),dr()):typeof define=="function"&&define.amd?define(["./core","./cipher-core"],t):t(e.CryptoJS)})(CC,function(e){return function(t){var r=e,n=r.lib,s=n.CipherParams,i=r.enc,o=i.Hex,a=r.format,c=a.Hex={stringify:function(u){return u.ciphertext.toString(o)},parse:function(u){var l=o.parse(u);return s.create({ciphertext:l})}}}(),e.format.Hex})});var R$=b((yC,_$)=>{(function(e,t,r){typeof yC=="object"?_$.exports=yC=t(Je(),_a(),Ra(),Qo(),dr()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],t):t(e.CryptoJS)})(yC,function(e){return function(){var t=e,r=t.lib,n=r.BlockCipher,s=t.algo,i=[],o=[],a=[],c=[],u=[],l=[],A=[],f=[],d=[],h=[];(function(){for(var m=[],I=0;I<256;I++)I<128?m[I]=I<<1:m[I]=I<<1^283;for(var y=0,E=0,I=0;I<256;I++){var B=E^E<<1^E<<2^E<<3^E<<4;B=B>>>8^B&255^99,i[y]=B,o[B]=y;var v=m[y],x=m[v],Q=m[x],S=m[B]*257^B*16843008;a[y]=S<<24|S>>>8,c[y]=S<<16|S>>>16,u[y]=S<<8|S>>>24,l[y]=S;var S=Q*16843009^x*65537^v*257^y*16843008;A[B]=S<<24|S>>>8,f[B]=S<<16|S>>>16,d[B]=S<<8|S>>>24,h[B]=S,y?(y=v^m[m[m[Q^v]]],E^=m[m[E]]):y=E=1}})();var p=[0,1,2,4,8,16,32,64,128,27,54],C=s.AES=n.extend({_doReset:function(){var m;if(!(this._nRounds&&this._keyPriorReset===this._key)){for(var I=this._keyPriorReset=this._key,y=I.words,E=I.sigBytes/4,B=this._nRounds=E+6,v=(B+1)*4,x=this._keySchedule=[],Q=0;Q6&&Q%E==4&&(m=i[m>>>24]<<24|i[m>>>16&255]<<16|i[m>>>8&255]<<8|i[m&255]):(m=m<<8|m>>>24,m=i[m>>>24]<<24|i[m>>>16&255]<<16|i[m>>>8&255]<<8|i[m&255],m^=p[Q/E|0]<<24),x[Q]=x[Q-E]^m);for(var S=this._invKeySchedule=[],T=0;T>>24]]^f[i[m>>>16&255]]^d[i[m>>>8&255]]^h[i[m&255]]}}},encryptBlock:function(m,I){this._doCryptBlock(m,I,this._keySchedule,a,c,u,l,i)},decryptBlock:function(m,I){var y=m[I+1];m[I+1]=m[I+3],m[I+3]=y,this._doCryptBlock(m,I,this._invKeySchedule,A,f,d,h,o);var y=m[I+1];m[I+1]=m[I+3],m[I+3]=y},_doCryptBlock:function(m,I,y,E,B,v,x,Q){for(var S=this._nRounds,T=m[I]^y[0],R=m[I+1]^y[1],D=m[I+2]^y[2],k=m[I+3]^y[3],F=4,j=1;j>>24]^B[R>>>16&255]^v[D>>>8&255]^x[k&255]^y[F++],U=E[R>>>24]^B[D>>>16&255]^v[k>>>8&255]^x[T&255]^y[F++],X=E[D>>>24]^B[k>>>16&255]^v[T>>>8&255]^x[R&255]^y[F++],L=E[k>>>24]^B[T>>>16&255]^v[R>>>8&255]^x[D&255]^y[F++];T=H,R=U,D=X,k=L}var H=(Q[T>>>24]<<24|Q[R>>>16&255]<<16|Q[D>>>8&255]<<8|Q[k&255])^y[F++],U=(Q[R>>>24]<<24|Q[D>>>16&255]<<16|Q[k>>>8&255]<<8|Q[T&255])^y[F++],X=(Q[D>>>24]<<24|Q[k>>>16&255]<<16|Q[T>>>8&255]<<8|Q[R&255])^y[F++],L=(Q[k>>>24]<<24|Q[T>>>16&255]<<16|Q[R>>>8&255]<<8|Q[D&255])^y[F++];m[I]=H,m[I+1]=U,m[I+2]=X,m[I+3]=L},keySize:256/32});t.AES=n._createHelper(C)}(),e.AES})});var N$=b((IC,D$)=>{(function(e,t,r){typeof IC=="object"?D$.exports=IC=t(Je(),_a(),Ra(),Qo(),dr()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],t):t(e.CryptoJS)})(IC,function(e){return function(){var t=e,r=t.lib,n=r.WordArray,s=r.BlockCipher,i=t.algo,o=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],a=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],c=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],u=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],l=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],A=i.DES=s.extend({_doReset:function(){for(var p=this._key,C=p.words,m=[],I=0;I<56;I++){var y=o[I]-1;m[I]=C[y>>>5]>>>31-y%32&1}for(var E=this._subKeys=[],B=0;B<16;B++){for(var v=E[B]=[],x=c[B],I=0;I<24;I++)v[I/6|0]|=m[(a[I]-1+x)%28]<<31-I%6,v[4+(I/6|0)]|=m[28+(a[I+24]-1+x)%28]<<31-I%6;v[0]=v[0]<<1|v[0]>>>31;for(var I=1;I<7;I++)v[I]=v[I]>>>(I-1)*4+3;v[7]=v[7]<<5|v[7]>>>27}for(var Q=this._invSubKeys=[],I=0;I<16;I++)Q[I]=E[15-I]},encryptBlock:function(p,C){this._doCryptBlock(p,C,this._subKeys)},decryptBlock:function(p,C){this._doCryptBlock(p,C,this._invSubKeys)},_doCryptBlock:function(p,C,m){this._lBlock=p[C],this._rBlock=p[C+1],f.call(this,4,252645135),f.call(this,16,65535),d.call(this,2,858993459),d.call(this,8,16711935),f.call(this,1,1431655765);for(var I=0;I<16;I++){for(var y=m[I],E=this._lBlock,B=this._rBlock,v=0,x=0;x<8;x++)v|=u[x][((B^y[x])&l[x])>>>0];this._lBlock=B,this._rBlock=E^v}var Q=this._lBlock;this._lBlock=this._rBlock,this._rBlock=Q,f.call(this,1,1431655765),d.call(this,8,16711935),d.call(this,2,858993459),f.call(this,16,65535),f.call(this,4,252645135),p[C]=this._lBlock,p[C+1]=this._rBlock},keySize:64/32,ivSize:64/32,blockSize:64/32});function f(p,C){var m=(this._lBlock>>>p^this._rBlock)&C;this._rBlock^=m,this._lBlock^=m<>>p^this._lBlock)&C;this._lBlock^=m,this._rBlock^=m<192.");var m=C.slice(0,2),I=C.length<4?C.slice(0,2):C.slice(2,4),y=C.length<6?C.slice(0,2):C.slice(4,6);this._des1=A.createEncryptor(n.create(m)),this._des2=A.createEncryptor(n.create(I)),this._des3=A.createEncryptor(n.create(y))},encryptBlock:function(p,C){this._des1.encryptBlock(p,C),this._des2.decryptBlock(p,C),this._des3.encryptBlock(p,C)},decryptBlock:function(p,C){this._des3.decryptBlock(p,C),this._des2.encryptBlock(p,C),this._des1.decryptBlock(p,C)},keySize:192/32,ivSize:64/32,blockSize:64/32});t.TripleDES=s._createHelper(h)}(),e.TripleDES})});var F$=b((bC,k$)=>{(function(e,t,r){typeof bC=="object"?k$.exports=bC=t(Je(),_a(),Ra(),Qo(),dr()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],t):t(e.CryptoJS)})(bC,function(e){return function(){var t=e,r=t.lib,n=r.StreamCipher,s=t.algo,i=s.RC4=n.extend({_doReset:function(){for(var c=this._key,u=c.words,l=c.sigBytes,A=this._S=[],f=0;f<256;f++)A[f]=f;for(var f=0,d=0;f<256;f++){var h=f%l,p=u[h>>>2]>>>24-h%4*8&255;d=(d+A[f]+p)%256;var C=A[f];A[f]=A[d],A[d]=C}this._i=this._j=0},_doProcessBlock:function(c,u){c[u]^=o.call(this)},keySize:256/32,ivSize:0});function o(){for(var c=this._S,u=this._i,l=this._j,A=0,f=0;f<4;f++){u=(u+1)%256,l=(l+c[u])%256;var d=c[u];c[u]=c[l],c[l]=d,A|=c[(c[u]+c[l])%256]<<24-f*8}return this._i=u,this._j=l,A}t.RC4=n._createHelper(i);var a=s.RC4Drop=i.extend({cfg:i.cfg.extend({drop:192}),_doReset:function(){i._doReset.call(this);for(var c=this.cfg.drop;c>0;c--)o.call(this)}});t.RC4Drop=n._createHelper(a)}(),e.RC4})});var O$=b((BC,L$)=>{(function(e,t,r){typeof BC=="object"?L$.exports=BC=t(Je(),_a(),Ra(),Qo(),dr()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],t):t(e.CryptoJS)})(BC,function(e){return function(){var t=e,r=t.lib,n=r.StreamCipher,s=t.algo,i=[],o=[],a=[],c=s.Rabbit=n.extend({_doReset:function(){for(var l=this._key.words,A=this.cfg.iv,f=0;f<4;f++)l[f]=(l[f]<<8|l[f]>>>24)&16711935|(l[f]<<24|l[f]>>>8)&4278255360;var d=this._X=[l[0],l[3]<<16|l[2]>>>16,l[1],l[0]<<16|l[3]>>>16,l[2],l[1]<<16|l[0]>>>16,l[3],l[2]<<16|l[1]>>>16],h=this._C=[l[2]<<16|l[2]>>>16,l[0]&4294901760|l[1]&65535,l[3]<<16|l[3]>>>16,l[1]&4294901760|l[2]&65535,l[0]<<16|l[0]>>>16,l[2]&4294901760|l[3]&65535,l[1]<<16|l[1]>>>16,l[3]&4294901760|l[0]&65535];this._b=0;for(var f=0;f<4;f++)u.call(this);for(var f=0;f<8;f++)h[f]^=d[f+4&7];if(A){var p=A.words,C=p[0],m=p[1],I=(C<<8|C>>>24)&16711935|(C<<24|C>>>8)&4278255360,y=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360,E=I>>>16|y&4294901760,B=y<<16|I&65535;h[0]^=I,h[1]^=E,h[2]^=y,h[3]^=B,h[4]^=I,h[5]^=E,h[6]^=y,h[7]^=B;for(var f=0;f<4;f++)u.call(this)}},_doProcessBlock:function(l,A){var f=this._X;u.call(this),i[0]=f[0]^f[5]>>>16^f[3]<<16,i[1]=f[2]^f[7]>>>16^f[5]<<16,i[2]=f[4]^f[1]>>>16^f[7]<<16,i[3]=f[6]^f[3]>>>16^f[1]<<16;for(var d=0;d<4;d++)i[d]=(i[d]<<8|i[d]>>>24)&16711935|(i[d]<<24|i[d]>>>8)&4278255360,l[A+d]^=i[d]},blockSize:128/32,ivSize:64/32});function u(){for(var l=this._X,A=this._C,f=0;f<8;f++)o[f]=A[f];A[0]=A[0]+1295307597+this._b|0,A[1]=A[1]+3545052371+(A[0]>>>0>>0?1:0)|0,A[2]=A[2]+886263092+(A[1]>>>0>>0?1:0)|0,A[3]=A[3]+1295307597+(A[2]>>>0>>0?1:0)|0,A[4]=A[4]+3545052371+(A[3]>>>0>>0?1:0)|0,A[5]=A[5]+886263092+(A[4]>>>0>>0?1:0)|0,A[6]=A[6]+1295307597+(A[5]>>>0>>0?1:0)|0,A[7]=A[7]+3545052371+(A[6]>>>0>>0?1:0)|0,this._b=A[7]>>>0>>0?1:0;for(var f=0;f<8;f++){var d=l[f]+A[f],h=d&65535,p=d>>>16,C=((h*h>>>17)+h*p>>>15)+p*p,m=((d&4294901760)*d|0)+((d&65535)*d|0);a[f]=C^m}l[0]=a[0]+(a[7]<<16|a[7]>>>16)+(a[6]<<16|a[6]>>>16)|0,l[1]=a[1]+(a[0]<<8|a[0]>>>24)+a[7]|0,l[2]=a[2]+(a[1]<<16|a[1]>>>16)+(a[0]<<16|a[0]>>>16)|0,l[3]=a[3]+(a[2]<<8|a[2]>>>24)+a[1]|0,l[4]=a[4]+(a[3]<<16|a[3]>>>16)+(a[2]<<16|a[2]>>>16)|0,l[5]=a[5]+(a[4]<<8|a[4]>>>24)+a[3]|0,l[6]=a[6]+(a[5]<<16|a[5]>>>16)+(a[4]<<16|a[4]>>>16)|0,l[7]=a[7]+(a[6]<<8|a[6]>>>24)+a[5]|0}t.Rabbit=n._createHelper(c)}(),e.Rabbit})});var P$=b((xC,M$)=>{(function(e,t,r){typeof xC=="object"?M$.exports=xC=t(Je(),_a(),Ra(),Qo(),dr()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],t):t(e.CryptoJS)})(xC,function(e){return function(){var t=e,r=t.lib,n=r.StreamCipher,s=t.algo,i=[],o=[],a=[],c=s.RabbitLegacy=n.extend({_doReset:function(){var l=this._key.words,A=this.cfg.iv,f=this._X=[l[0],l[3]<<16|l[2]>>>16,l[1],l[0]<<16|l[3]>>>16,l[2],l[1]<<16|l[0]>>>16,l[3],l[2]<<16|l[1]>>>16],d=this._C=[l[2]<<16|l[2]>>>16,l[0]&4294901760|l[1]&65535,l[3]<<16|l[3]>>>16,l[1]&4294901760|l[2]&65535,l[0]<<16|l[0]>>>16,l[2]&4294901760|l[3]&65535,l[1]<<16|l[1]>>>16,l[3]&4294901760|l[0]&65535];this._b=0;for(var h=0;h<4;h++)u.call(this);for(var h=0;h<8;h++)d[h]^=f[h+4&7];if(A){var p=A.words,C=p[0],m=p[1],I=(C<<8|C>>>24)&16711935|(C<<24|C>>>8)&4278255360,y=(m<<8|m>>>24)&16711935|(m<<24|m>>>8)&4278255360,E=I>>>16|y&4294901760,B=y<<16|I&65535;d[0]^=I,d[1]^=E,d[2]^=y,d[3]^=B,d[4]^=I,d[5]^=E,d[6]^=y,d[7]^=B;for(var h=0;h<4;h++)u.call(this)}},_doProcessBlock:function(l,A){var f=this._X;u.call(this),i[0]=f[0]^f[5]>>>16^f[3]<<16,i[1]=f[2]^f[7]>>>16^f[5]<<16,i[2]=f[4]^f[1]>>>16^f[7]<<16,i[3]=f[6]^f[3]>>>16^f[1]<<16;for(var d=0;d<4;d++)i[d]=(i[d]<<8|i[d]>>>24)&16711935|(i[d]<<24|i[d]>>>8)&4278255360,l[A+d]^=i[d]},blockSize:128/32,ivSize:64/32});function u(){for(var l=this._X,A=this._C,f=0;f<8;f++)o[f]=A[f];A[0]=A[0]+1295307597+this._b|0,A[1]=A[1]+3545052371+(A[0]>>>0>>0?1:0)|0,A[2]=A[2]+886263092+(A[1]>>>0>>0?1:0)|0,A[3]=A[3]+1295307597+(A[2]>>>0>>0?1:0)|0,A[4]=A[4]+3545052371+(A[3]>>>0>>0?1:0)|0,A[5]=A[5]+886263092+(A[4]>>>0>>0?1:0)|0,A[6]=A[6]+1295307597+(A[5]>>>0>>0?1:0)|0,A[7]=A[7]+3545052371+(A[6]>>>0>>0?1:0)|0,this._b=A[7]>>>0>>0?1:0;for(var f=0;f<8;f++){var d=l[f]+A[f],h=d&65535,p=d>>>16,C=((h*h>>>17)+h*p>>>15)+p*p,m=((d&4294901760)*d|0)+((d&65535)*d|0);a[f]=C^m}l[0]=a[0]+(a[7]<<16|a[7]>>>16)+(a[6]<<16|a[6]>>>16)|0,l[1]=a[1]+(a[0]<<8|a[0]>>>24)+a[7]|0,l[2]=a[2]+(a[1]<<16|a[1]>>>16)+(a[0]<<16|a[0]>>>16)|0,l[3]=a[3]+(a[2]<<8|a[2]>>>24)+a[1]|0,l[4]=a[4]+(a[3]<<16|a[3]>>>16)+(a[2]<<16|a[2]>>>16)|0,l[5]=a[5]+(a[4]<<8|a[4]>>>24)+a[3]|0,l[6]=a[6]+(a[5]<<16|a[5]>>>16)+(a[4]<<16|a[4]>>>16)|0,l[7]=a[7]+(a[6]<<8|a[6]>>>24)+a[5]|0}t.RabbitLegacy=n._createHelper(c)}(),e.RabbitLegacy})});var H$=b((vC,U$)=>{(function(e,t,r){typeof vC=="object"?U$.exports=vC=t(Je(),_a(),Ra(),Qo(),dr()):typeof define=="function"&&define.amd?define(["./core","./enc-base64","./md5","./evpkdf","./cipher-core"],t):t(e.CryptoJS)})(vC,function(e){return function(){var t=e,r=t.lib,n=r.BlockCipher,s=t.algo;let i=16,o=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],a=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]];var c={pbox:[],sbox:[]};function u(h,p){let C=p>>24&255,m=p>>16&255,I=p>>8&255,y=p&255,E=h.sbox[0][C]+h.sbox[1][m];return E=E^h.sbox[2][I],E=E+h.sbox[3][y],E}function l(h,p,C){let m=p,I=C,y;for(let E=0;E1;--E)m=m^h.pbox[E],I=u(h,m)^I,y=m,m=I,I=y;return y=m,m=I,I=y,I=I^h.pbox[1],m=m^h.pbox[0],{left:m,right:I}}function f(h,p,C){for(let B=0;B<4;B++){h.sbox[B]=[];for(let v=0;v<256;v++)h.sbox[B][v]=a[B][v]}let m=0;for(let B=0;B=C&&(m=0);let I=0,y=0,E=0;for(let B=0;B{(function(e,t,r){typeof QC=="object"?q$.exports=QC=t(Je(),_h(),PY(),HY(),_a(),YY(),Ra(),lS(),KE(),WY(),AS(),KY(),e$(),r$(),iC(),i$(),Qo(),dr(),u$(),A$(),d$(),p$(),m$(),C$(),I$(),B$(),v$(),T$(),S$(),R$(),N$(),F$(),O$(),P$(),H$()):typeof define=="function"&&define.amd?define(["./core","./x64-core","./lib-typedarrays","./enc-utf16","./enc-base64","./enc-base64url","./md5","./sha1","./sha256","./sha224","./sha512","./sha384","./sha3","./ripemd160","./hmac","./pbkdf2","./evpkdf","./cipher-core","./mode-cfb","./mode-ctr","./mode-ctr-gladman","./mode-ofb","./mode-ecb","./pad-ansix923","./pad-iso10126","./pad-iso97971","./pad-zeropadding","./pad-nopadding","./format-hex","./aes","./tripledes","./rc4","./rabbit","./rabbit-legacy","./blowfish"],t):e.CryptoJS=t(e.CryptoJS)})(QC,function(e){return e})});var VC=b(Mi=>{"use strict";Object.defineProperty(Mi,"__esModule",{value:!0});Mi.AttributeAction=Mi.IgnoreCaseMode=Mi.SelectorType=void 0;var ske;(function(e){e.Attribute="attribute",e.Pseudo="pseudo",e.PseudoElement="pseudo-element",e.Tag="tag",e.Universal="universal",e.Adjacent="adjacent",e.Child="child",e.Descendant="descendant",e.Parent="parent",e.Sibling="sibling",e.ColumnCombinator="column-combinator"})(ske=Mi.SelectorType||(Mi.SelectorType={}));Mi.IgnoreCaseMode={Unknown:null,QuirksMode:"quirks",IgnoreCase:!0,CaseSensitive:!1};var ike;(function(e){e.Any="any",e.Element="element",e.End="end",e.Equals="equals",e.Exists="exists",e.Hyphen="hyphen",e.Not="not",e.Start="start"})(ike=Mi.AttributeAction||(Mi.AttributeAction={}))});var LG=b(dA=>{"use strict";Object.defineProperty(dA,"__esModule",{value:!0});dA.parse=dA.isTraversal=void 0;var dt=VC(),DG=/^[^\\#]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\-\u00b0-\uFFFF])+/,oke=/\\([\da-f]{1,6}\s?|(\s)|.)/gi,ake=new Map([[126,dt.AttributeAction.Element],[94,dt.AttributeAction.Start],[36,dt.AttributeAction.End],[42,dt.AttributeAction.Any],[33,dt.AttributeAction.Not],[124,dt.AttributeAction.Hyphen]]),cke=new Set(["has","not","matches","is","where","host","host-context"]);function kG(e){switch(e.type){case dt.SelectorType.Adjacent:case dt.SelectorType.Child:case dt.SelectorType.Descendant:case dt.SelectorType.Parent:case dt.SelectorType.Sibling:case dt.SelectorType.ColumnCombinator:return!0;default:return!1}}dA.isTraversal=kG;var uke=new Set(["contains","icontains"]);function lke(e,t,r){var n=parseInt(t,16)-65536;return n!==n||r?t:n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,n&1023|56320)}function qh(e){return e.replace(oke,lke)}function RS(e){return e===39||e===34}function NG(e){return e===32||e===9||e===10||e===12||e===13}function Ake(e){var t=[],r=FG(t,"".concat(e),0);if(r0&&r0&&kG(n[n.length-1]))throw new Error("Did not expect successive traversals.")}function u(k){if(n.length>0&&n[n.length-1].type===dt.SelectorType.Descendant){n[n.length-1].type=k;return}c(),n.push({type:k})}function l(k,F){n.push({type:dt.SelectorType.Attribute,name:k,action:F,value:s(1),namespace:null,ignoreCase:"quirks"})}function A(){if(n.length&&n[n.length-1].type===dt.SelectorType.Descendant&&n.pop(),n.length===0)throw new Error("Empty sub-selector");e.push(n)}if(i(0),t.length===r)return r;e:for(;r{"use strict";var YC=pA&&pA.__spreadArray||function(e,t,r){if(r||arguments.length===2)for(var n=0,s=t.length,i;n ":" > ";case Yt.SelectorType.Parent:return t===0?"< ":" < ";case Yt.SelectorType.Sibling:return t===0?"~ ":" ~ ";case Yt.SelectorType.Adjacent:return t===0?"+ ":" + ";case Yt.SelectorType.Descendant:return" ";case Yt.SelectorType.ColumnCombinator:return t===0?"|| ":" || ";case Yt.SelectorType.Universal:return e.namespace==="*"&&t+10?n+e.slice(r):e}});var gA=b(jn=>{"use strict";var pke=jn&&jn.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(t,r);(!s||("get"in s?!t.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,s)}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),gke=jn&&jn.__exportStar||function(e,t){for(var r in e)r!=="default"&&!Object.prototype.hasOwnProperty.call(t,r)&&pke(t,e,r)};Object.defineProperty(jn,"__esModule",{value:!0});jn.stringify=jn.parse=jn.isTraversal=void 0;gke(VC(),jn);var YG=LG();Object.defineProperty(jn,"isTraversal",{enumerable:!0,get:function(){return YG.isTraversal}});Object.defineProperty(jn,"parse",{enumerable:!0,get:function(){return YG.parse}});var mke=VG();Object.defineProperty(jn,"stringify",{enumerable:!0,get:function(){return mke.stringify}})});var Oa=b((iat,$G)=>{$G.exports={trueFunc:function(){return!0},falseFunc:function(){return!1}}});var Do=b((xut,CJ)=>{"use strict";var yy=require("buffer"),vA=yy.Buffer,ws={},Ss;for(Ss in yy)yy.hasOwnProperty(Ss)&&(Ss==="SlowBuffer"||Ss==="Buffer"||(ws[Ss]=yy[Ss]));var QA=ws.Buffer={};for(Ss in vA)vA.hasOwnProperty(Ss)&&(Ss==="allocUnsafe"||Ss==="allocUnsafeSlow"||(QA[Ss]=vA[Ss]));ws.Buffer.prototype=vA.prototype;(!QA.from||QA.from===Uint8Array.from)&&(QA.from=function(e,t,r){if(typeof e=="number")throw new TypeError('The "value" argument must not be of type number. Received type '+typeof e);if(e&&typeof e.length>"u")throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);return vA(e,t,r)});QA.alloc||(QA.alloc=function(e,t,r){if(typeof e!="number")throw new TypeError('The "size" argument must be of type number. Received type '+typeof e);if(e<0||e>=2*(1<<30))throw new RangeError('The value "'+e+'" is invalid for option "size"');var n=vA(e);return!t||t.length===0?n.fill(0):typeof r=="string"?n.fill(t,r):n.fill(t),n});if(!ws.kStringMaxLength)try{ws.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch{}ws.constants||(ws.constants={MAX_LENGTH:ws.kMaxLength},ws.kStringMaxLength&&(ws.constants.MAX_STRING_LENGTH=ws.kStringMaxLength));CJ.exports=ws});var IJ=b(m2=>{"use strict";var yJ="\uFEFF";m2.PrependBOM=p2;function p2(e,t){this.encoder=e,this.addBOM=!0}p2.prototype.write=function(e){return this.addBOM&&(e=yJ+e,this.addBOM=!1),this.encoder.write(e)};p2.prototype.end=function(){return this.encoder.end()};m2.StripBOM=g2;function g2(e,t){this.decoder=e,this.pass=!1,this.options=t||{}}g2.prototype.write=function(e){var t=this.decoder.write(e);return this.pass||!t||(t[0]===yJ&&(t=t.slice(1),typeof this.options.stripBOM=="function"&&this.options.stripBOM()),this.pass=!0),t};g2.prototype.end=function(){return this.decoder.end()}});var BJ=b((Qut,bJ)=>{"use strict";var uu=Do().Buffer;bJ.exports={utf8:{type:"_internal",bomAware:!0},cesu8:{type:"_internal",bomAware:!0},unicode11utf8:"utf8",ucs2:{type:"_internal",bomAware:!0},utf16le:"ucs2",binary:{type:"_internal"},base64:{type:"_internal"},hex:{type:"_internal"},_internal:C2};function C2(e,t){this.enc=e.encodingName,this.bomAware=e.bomAware,this.enc==="base64"?this.encoder=b2:this.enc==="cesu8"&&(this.enc="utf8",this.encoder=B2,uu.from("eda0bdedb2a9","hex").toString()!=="\u{1F4A9}"&&(this.decoder=x2,this.defaultCharUnicode=t.defaultCharUnicode))}C2.prototype.encoder=I2;C2.prototype.decoder=y2;var E2=require("string_decoder").StringDecoder;E2.prototype.end||(E2.prototype.end=function(){});function y2(e,t){this.decoder=new E2(t.enc)}y2.prototype.write=function(e){return uu.isBuffer(e)||(e=uu.from(e)),this.decoder.write(e)};y2.prototype.end=function(){return this.decoder.end()};function I2(e,t){this.enc=t.enc}I2.prototype.write=function(e){return uu.from(e,this.enc)};I2.prototype.end=function(){};function b2(e,t){this.prevStr=""}b2.prototype.write=function(e){e=this.prevStr+e;var t=e.length-e.length%4;return this.prevStr=e.slice(t),e=e.slice(0,t),uu.from(e,"base64")};b2.prototype.end=function(){return uu.from(this.prevStr,"base64")};function B2(e,t){}B2.prototype.write=function(e){for(var t=uu.alloc(e.length*3),r=0,n=0;n>>6),t[r++]=128+(s&63)):(t[r++]=224+(s>>>12),t[r++]=128+(s>>>6&63),t[r++]=128+(s&63))}return t.slice(0,r)};B2.prototype.end=function(){};function x2(e,t){this.acc=0,this.contBytes=0,this.accBytes=0,this.defaultCharUnicode=t.defaultCharUnicode}x2.prototype.write=function(e){for(var t=this.acc,r=this.contBytes,n=this.accBytes,s="",i=0;i0&&(s+=this.defaultCharUnicode,r=0),o<128?s+=String.fromCharCode(o):o<224?(t=o&31,r=1,n=1):o<240?(t=o&15,r=2,n=1):s+=this.defaultCharUnicode):r>0?(t=t<<6|o&63,r--,n++,r===0&&(n===2&&t<128&&t>0?s+=this.defaultCharUnicode:n===3&&t<2048?s+=this.defaultCharUnicode:s+=String.fromCharCode(t))):s+=this.defaultCharUnicode}return this.acc=t,this.contBytes=r,this.accBytes=n,s};x2.prototype.end=function(){var e=0;return this.contBytes>0&&(e+=this.defaultCharUnicode),e}});var QJ=b(Va=>{"use strict";var Iy=Do().Buffer;Va._utf32=v2;function v2(e,t){this.iconv=t,this.bomAware=!0,this.isLE=e.isLE}Va.utf32le={type:"_utf32",isLE:!0};Va.utf32be={type:"_utf32",isLE:!1};Va.ucs4le="utf32le";Va.ucs4be="utf32be";v2.prototype.encoder=Q2;v2.prototype.decoder=T2;function Q2(e,t){this.isLE=t.isLE,this.highSurrogate=0}Q2.prototype.write=function(e){for(var t=Iy.from(e,"ucs2"),r=Iy.alloc(t.length*2),n=this.isLE?r.writeUInt32LE:r.writeUInt32BE,s=0,i=0;i0){for(;t1114111)&&(r=n),r>=65536){r-=65536;var s=55296|r>>10;e[t++]=s&255,e[t++]=s>>8;var r=56320|r&1023}return e[t++]=r&255,e[t++]=r>>8,t}T2.prototype.end=function(){this.overflow.length=0};Va.utf32=w2;Va.ucs4="utf32";function w2(e,t){this.iconv=t}w2.prototype.encoder=S2;w2.prototype.decoder=_2;function S2(e,t){e=e||{},e.addBOM===void 0&&(e.addBOM=!0),this.encoder=t.iconv.getEncoder(e.defaultEncoding||"utf-32le",e)}S2.prototype.write=function(e){return this.encoder.write(e)};S2.prototype.end=function(){return this.encoder.end()};function _2(e,t){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=e||{},this.iconv=t.iconv}_2.prototype.write=function(e){if(!this.decoder){if(this.initialBufs.push(e),this.initialBufsLen+=e.length,this.initialBufsLen<32)return"";var t=vJ(this.initialBufs,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(t,this.options);for(var r="",n=0;n16)&&i++,(r[3]!==0||r[2]>16)&&s++,r[0]===0&&r[1]===0&&(r[2]!==0||r[3]!==0)&&a++,(r[0]!==0||r[1]!==0)&&r[2]===0&&r[3]===0&&o++,r.length=0,n++,n>=100)break e}return a-i>o-s?"utf-32be":a-i{"use strict";var TJ=Do().Buffer;L2.utf16be=by;function by(){}by.prototype.encoder=R2;by.prototype.decoder=D2;by.prototype.bomAware=!0;function R2(){}R2.prototype.write=function(e){for(var t=TJ.from(e,"ucs2"),r=0;r=100)break e}return i>s?"utf-16be":i{"use strict";var Hi=Do().Buffer;vy.utf7=By;vy.unicode11utf7="utf7";function By(e,t){this.iconv=t}By.prototype.encoder=M2;By.prototype.decoder=P2;By.prototype.bomAware=!0;var m4e=/[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g;function M2(e,t){this.iconv=t.iconv}M2.prototype.write=function(e){return Hi.from(e.replace(m4e,function(t){return"+"+(t==="+"?"":this.iconv.encode(t,"utf16-be").toString("base64").replace(/=+$/,""))+"-"}.bind(this)))};M2.prototype.end=function(){};function P2(e,t){this.iconv=t.iconv,this.inBase64=!1,this.base64Accum=""}var E4e=/[A-Za-z0-9\/+]/,U2=[];for(o0=0;o0<256;o0++)U2[o0]=E4e.test(String.fromCharCode(o0));var o0,C4e=43,lu=45,O2=38;P2.prototype.write=function(e){for(var t="",r=0,n=this.inBase64,s=this.base64Accum,i=0;i0&&(e=this.iconv.decode(Hi.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",e};vy.utf7imap=xy;function xy(e,t){this.iconv=t}xy.prototype.encoder=H2;xy.prototype.decoder=q2;xy.prototype.bomAware=!0;function H2(e,t){this.iconv=t.iconv,this.inBase64=!1,this.base64Accum=Hi.alloc(6),this.base64AccumIdx=0}H2.prototype.write=function(e){for(var t=this.inBase64,r=this.base64Accum,n=this.base64AccumIdx,s=Hi.alloc(e.length*5+10),i=0,o=0;o0&&(i+=s.write(r.slice(0,n).toString("base64").replace(/\//g,",").replace(/=+$/,""),i),n=0),s[i++]=lu,t=!1),t||(s[i++]=a,a===O2&&(s[i++]=lu))):(t||(s[i++]=O2,t=!0),t&&(r[n++]=a>>8,r[n++]=a&255,n==r.length&&(i+=s.write(r.toString("base64").replace(/\//g,","),i),n=0)))}return this.inBase64=t,this.base64AccumIdx=n,s.slice(0,i)};H2.prototype.end=function(){var e=Hi.alloc(10),t=0;return this.inBase64&&(this.base64AccumIdx>0&&(t+=e.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),t),this.base64AccumIdx=0),e[t++]=lu,this.inBase64=!1),e.slice(0,t)};function q2(e,t){this.iconv=t.iconv,this.inBase64=!1,this.base64Accum=""}var _J=U2.slice();_J[44]=!0;q2.prototype.write=function(e){for(var t="",r=0,n=this.inBase64,s=this.base64Accum,i=0;i0&&(e=this.iconv.decode(Hi.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",e}});var NJ=b(DJ=>{"use strict";var Qy=Do().Buffer;DJ._sbcs=V2;function V2(e,t){if(!e)throw new Error("SBCS codec is called without the data.");if(!e.chars||e.chars.length!==128&&e.chars.length!==256)throw new Error("Encoding '"+e.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(e.chars.length===128){for(var r="",n=0;n<128;n++)r+=String.fromCharCode(n);e.chars=r+e.chars}this.decodeBuf=Qy.from(e.chars,"ucs2");for(var s=Qy.alloc(65536,t.defaultCharSingleByte.charCodeAt(0)),n=0;n{"use strict";kJ.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"\xC4\u0100\u0101\xC9\u0104\xD6\xDC\xE1\u0105\u010C\xE4\u010D\u0106\u0107\xE9\u0179\u017A\u010E\xED\u010F\u0112\u0113\u0116\xF3\u0117\xF4\xF6\xF5\xFA\u011A\u011B\xFC\u2020\xB0\u0118\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\u0119\xA8\u2260\u0123\u012E\u012F\u012A\u2264\u2265\u012B\u0136\u2202\u2211\u0142\u013B\u013C\u013D\u013E\u0139\u013A\u0145\u0146\u0143\xAC\u221A\u0144\u0147\u2206\xAB\xBB\u2026\xA0\u0148\u0150\xD5\u0151\u014C\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\u014D\u0154\u0155\u0158\u2039\u203A\u0159\u0156\u0157\u0160\u201A\u201E\u0161\u015A\u015B\xC1\u0164\u0165\xCD\u017D\u017E\u016A\xD3\xD4\u016B\u016E\xDA\u016F\u0170\u0171\u0172\u0173\xDD\xFD\u0137\u017B\u0141\u017C\u0122\u02C7"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F\u0401\u0451\u0404\u0454\u0407\u0457\u040E\u045E\xB0\u2219\xB7\u221A\u2116\u20AC\u25A0\xA0"},mik:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F\u2514\u2534\u252C\u251C\u2500\u253C\u2563\u2551\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2510\u2591\u2592\u2593\u2502\u2524\u2116\xA7\u2557\u255D\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},cp720:{type:"_sbcs",chars:"\x80\x81\xE9\xE2\x84\xE0\x86\xE7\xEA\xEB\xE8\xEF\xEE\x8D\x8E\x8F\x90\u0651\u0652\xF4\xA4\u0640\xFB\xF9\u0621\u0622\u0623\u0624\xA3\u0625\u0626\u0627\u0628\u0629\u062A\u062B\u062C\u062D\u062E\u062F\u0630\u0631\u0632\u0633\u0634\u0635\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u0636\u0637\u0638\u0639\u063A\u0641\xB5\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064A\u2261\u064B\u064C\u064D\u064E\u064F\u0650\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}});var OJ=b((Dut,LJ)=>{"use strict";LJ.exports={437:"cp437",737:"cp737",775:"cp775",850:"cp850",852:"cp852",855:"cp855",856:"cp856",857:"cp857",858:"cp858",860:"cp860",861:"cp861",862:"cp862",863:"cp863",864:"cp864",865:"cp865",866:"cp866",869:"cp869",874:"windows874",922:"cp922",1046:"cp1046",1124:"cp1124",1125:"cp1125",1129:"cp1129",1133:"cp1133",1161:"cp1161",1162:"cp1162",1163:"cp1163",1250:"windows1250",1251:"windows1251",1252:"windows1252",1253:"windows1253",1254:"windows1254",1255:"windows1255",1256:"windows1256",1257:"windows1257",1258:"windows1258",28591:"iso88591",28592:"iso88592",28593:"iso88593",28594:"iso88594",28595:"iso88595",28596:"iso88596",28597:"iso88597",28598:"iso88598",28599:"iso88599",28600:"iso885910",28601:"iso885911",28603:"iso885913",28604:"iso885914",28605:"iso885915",28606:"iso885916",windows874:{type:"_sbcs",chars:"\u20AC\uFFFD\uFFFD\uFFFD\uFFFD\u2026\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\xA0\u0E01\u0E02\u0E03\u0E04\u0E05\u0E06\u0E07\u0E08\u0E09\u0E0A\u0E0B\u0E0C\u0E0D\u0E0E\u0E0F\u0E10\u0E11\u0E12\u0E13\u0E14\u0E15\u0E16\u0E17\u0E18\u0E19\u0E1A\u0E1B\u0E1C\u0E1D\u0E1E\u0E1F\u0E20\u0E21\u0E22\u0E23\u0E24\u0E25\u0E26\u0E27\u0E28\u0E29\u0E2A\u0E2B\u0E2C\u0E2D\u0E2E\u0E2F\u0E30\u0E31\u0E32\u0E33\u0E34\u0E35\u0E36\u0E37\u0E38\u0E39\u0E3A\uFFFD\uFFFD\uFFFD\uFFFD\u0E3F\u0E40\u0E41\u0E42\u0E43\u0E44\u0E45\u0E46\u0E47\u0E48\u0E49\u0E4A\u0E4B\u0E4C\u0E4D\u0E4E\u0E4F\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59\u0E5A\u0E5B\uFFFD\uFFFD\uFFFD\uFFFD"},win874:"windows874",cp874:"windows874",windows1250:{type:"_sbcs",chars:"\u20AC\uFFFD\u201A\uFFFD\u201E\u2026\u2020\u2021\uFFFD\u2030\u0160\u2039\u015A\u0164\u017D\u0179\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\uFFFD\u2122\u0161\u203A\u015B\u0165\u017E\u017A\xA0\u02C7\u02D8\u0141\xA4\u0104\xA6\xA7\xA8\xA9\u015E\xAB\xAC\xAD\xAE\u017B\xB0\xB1\u02DB\u0142\xB4\xB5\xB6\xB7\xB8\u0105\u015F\xBB\u013D\u02DD\u013E\u017C\u0154\xC1\xC2\u0102\xC4\u0139\u0106\xC7\u010C\xC9\u0118\xCB\u011A\xCD\xCE\u010E\u0110\u0143\u0147\xD3\xD4\u0150\xD6\xD7\u0158\u016E\xDA\u0170\xDC\xDD\u0162\xDF\u0155\xE1\xE2\u0103\xE4\u013A\u0107\xE7\u010D\xE9\u0119\xEB\u011B\xED\xEE\u010F\u0111\u0144\u0148\xF3\xF4\u0151\xF6\xF7\u0159\u016F\xFA\u0171\xFC\xFD\u0163\u02D9"},win1250:"windows1250",cp1250:"windows1250",windows1251:{type:"_sbcs",chars:"\u0402\u0403\u201A\u0453\u201E\u2026\u2020\u2021\u20AC\u2030\u0409\u2039\u040A\u040C\u040B\u040F\u0452\u2018\u2019\u201C\u201D\u2022\u2013\u2014\uFFFD\u2122\u0459\u203A\u045A\u045C\u045B\u045F\xA0\u040E\u045E\u0408\xA4\u0490\xA6\xA7\u0401\xA9\u0404\xAB\xAC\xAD\xAE\u0407\xB0\xB1\u0406\u0456\u0491\xB5\xB6\xB7\u0451\u2116\u0454\xBB\u0458\u0405\u0455\u0457\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F"},win1251:"windows1251",cp1251:"windows1251",windows1252:{type:"_sbcs",chars:"\u20AC\uFFFD\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0160\u2039\u0152\uFFFD\u017D\uFFFD\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\u0161\u203A\u0153\uFFFD\u017E\u0178\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF"},win1252:"windows1252",cp1252:"windows1252",windows1253:{type:"_sbcs",chars:"\u20AC\uFFFD\u201A\u0192\u201E\u2026\u2020\u2021\uFFFD\u2030\uFFFD\u2039\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\uFFFD\u2122\uFFFD\u203A\uFFFD\uFFFD\uFFFD\uFFFD\xA0\u0385\u0386\xA3\xA4\xA5\xA6\xA7\xA8\xA9\uFFFD\xAB\xAC\xAD\xAE\u2015\xB0\xB1\xB2\xB3\u0384\xB5\xB6\xB7\u0388\u0389\u038A\xBB\u038C\xBD\u038E\u038F\u0390\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039A\u039B\u039C\u039D\u039E\u039F\u03A0\u03A1\uFFFD\u03A3\u03A4\u03A5\u03A6\u03A7\u03A8\u03A9\u03AA\u03AB\u03AC\u03AD\u03AE\u03AF\u03B0\u03B1\u03B2\u03B3\u03B4\u03B5\u03B6\u03B7\u03B8\u03B9\u03BA\u03BB\u03BC\u03BD\u03BE\u03BF\u03C0\u03C1\u03C2\u03C3\u03C4\u03C5\u03C6\u03C7\u03C8\u03C9\u03CA\u03CB\u03CC\u03CD\u03CE\uFFFD"},win1253:"windows1253",cp1253:"windows1253",windows1254:{type:"_sbcs",chars:"\u20AC\uFFFD\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0160\u2039\u0152\uFFFD\uFFFD\uFFFD\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\u0161\u203A\u0153\uFFFD\uFFFD\u0178\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\u011E\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\u0130\u015E\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\u011F\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\u0131\u015F\xFF"},win1254:"windows1254",cp1254:"windows1254",windows1255:{type:"_sbcs",chars:"\u20AC\uFFFD\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\uFFFD\u2039\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\uFFFD\u203A\uFFFD\uFFFD\uFFFD\uFFFD\xA0\xA1\xA2\xA3\u20AA\xA5\xA6\xA7\xA8\xA9\xD7\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xF7\xBB\xBC\xBD\xBE\xBF\u05B0\u05B1\u05B2\u05B3\u05B4\u05B5\u05B6\u05B7\u05B8\u05B9\u05BA\u05BB\u05BC\u05BD\u05BE\u05BF\u05C0\u05C1\u05C2\u05C3\u05F0\u05F1\u05F2\u05F3\u05F4\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u05D0\u05D1\u05D2\u05D3\u05D4\u05D5\u05D6\u05D7\u05D8\u05D9\u05DA\u05DB\u05DC\u05DD\u05DE\u05DF\u05E0\u05E1\u05E2\u05E3\u05E4\u05E5\u05E6\u05E7\u05E8\u05E9\u05EA\uFFFD\uFFFD\u200E\u200F\uFFFD"},win1255:"windows1255",cp1255:"windows1255",windows1256:{type:"_sbcs",chars:"\u20AC\u067E\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0679\u2039\u0152\u0686\u0698\u0688\u06AF\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u06A9\u2122\u0691\u203A\u0153\u200C\u200D\u06BA\xA0\u060C\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\u06BE\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\u061B\xBB\xBC\xBD\xBE\u061F\u06C1\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062A\u062B\u062C\u062D\u062E\u062F\u0630\u0631\u0632\u0633\u0634\u0635\u0636\xD7\u0637\u0638\u0639\u063A\u0640\u0641\u0642\u0643\xE0\u0644\xE2\u0645\u0646\u0647\u0648\xE7\xE8\xE9\xEA\xEB\u0649\u064A\xEE\xEF\u064B\u064C\u064D\u064E\xF4\u064F\u0650\xF7\u0651\xF9\u0652\xFB\xFC\u200E\u200F\u06D2"},win1256:"windows1256",cp1256:"windows1256",windows1257:{type:"_sbcs",chars:"\u20AC\uFFFD\u201A\uFFFD\u201E\u2026\u2020\u2021\uFFFD\u2030\uFFFD\u2039\uFFFD\xA8\u02C7\xB8\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\uFFFD\u2122\uFFFD\u203A\uFFFD\xAF\u02DB\uFFFD\xA0\uFFFD\xA2\xA3\xA4\uFFFD\xA6\xA7\xD8\xA9\u0156\xAB\xAC\xAD\xAE\xC6\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xF8\xB9\u0157\xBB\xBC\xBD\xBE\xE6\u0104\u012E\u0100\u0106\xC4\xC5\u0118\u0112\u010C\xC9\u0179\u0116\u0122\u0136\u012A\u013B\u0160\u0143\u0145\xD3\u014C\xD5\xD6\xD7\u0172\u0141\u015A\u016A\xDC\u017B\u017D\xDF\u0105\u012F\u0101\u0107\xE4\xE5\u0119\u0113\u010D\xE9\u017A\u0117\u0123\u0137\u012B\u013C\u0161\u0144\u0146\xF3\u014D\xF5\xF6\xF7\u0173\u0142\u015B\u016B\xFC\u017C\u017E\u02D9"},win1257:"windows1257",cp1257:"windows1257",windows1258:{type:"_sbcs",chars:"\u20AC\uFFFD\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\uFFFD\u2039\u0152\uFFFD\uFFFD\uFFFD\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\uFFFD\u203A\u0153\uFFFD\uFFFD\u0178\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\u0102\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\u0300\xCD\xCE\xCF\u0110\xD1\u0309\xD3\xD4\u01A0\xD6\xD7\xD8\xD9\xDA\xDB\xDC\u01AF\u0303\xDF\xE0\xE1\xE2\u0103\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\u0301\xED\xEE\xEF\u0111\xF1\u0323\xF3\xF4\u01A1\xF6\xF7\xF8\xF9\xFA\xFB\xFC\u01B0\u20AB\xFF"},win1258:"windows1258",cp1258:"windows1258",iso88591:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF"},cp28591:"iso88591",iso88592:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0104\u02D8\u0141\xA4\u013D\u015A\xA7\xA8\u0160\u015E\u0164\u0179\xAD\u017D\u017B\xB0\u0105\u02DB\u0142\xB4\u013E\u015B\u02C7\xB8\u0161\u015F\u0165\u017A\u02DD\u017E\u017C\u0154\xC1\xC2\u0102\xC4\u0139\u0106\xC7\u010C\xC9\u0118\xCB\u011A\xCD\xCE\u010E\u0110\u0143\u0147\xD3\xD4\u0150\xD6\xD7\u0158\u016E\xDA\u0170\xDC\xDD\u0162\xDF\u0155\xE1\xE2\u0103\xE4\u013A\u0107\xE7\u010D\xE9\u0119\xEB\u011B\xED\xEE\u010F\u0111\u0144\u0148\xF3\xF4\u0151\xF6\xF7\u0159\u016F\xFA\u0171\xFC\xFD\u0163\u02D9"},cp28592:"iso88592",iso88593:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0126\u02D8\xA3\xA4\uFFFD\u0124\xA7\xA8\u0130\u015E\u011E\u0134\xAD\uFFFD\u017B\xB0\u0127\xB2\xB3\xB4\xB5\u0125\xB7\xB8\u0131\u015F\u011F\u0135\xBD\uFFFD\u017C\xC0\xC1\xC2\uFFFD\xC4\u010A\u0108\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\uFFFD\xD1\xD2\xD3\xD4\u0120\xD6\xD7\u011C\xD9\xDA\xDB\xDC\u016C\u015C\xDF\xE0\xE1\xE2\uFFFD\xE4\u010B\u0109\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\uFFFD\xF1\xF2\xF3\xF4\u0121\xF6\xF7\u011D\xF9\xFA\xFB\xFC\u016D\u015D\u02D9"},cp28593:"iso88593",iso88594:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0104\u0138\u0156\xA4\u0128\u013B\xA7\xA8\u0160\u0112\u0122\u0166\xAD\u017D\xAF\xB0\u0105\u02DB\u0157\xB4\u0129\u013C\u02C7\xB8\u0161\u0113\u0123\u0167\u014A\u017E\u014B\u0100\xC1\xC2\xC3\xC4\xC5\xC6\u012E\u010C\xC9\u0118\xCB\u0116\xCD\xCE\u012A\u0110\u0145\u014C\u0136\xD4\xD5\xD6\xD7\xD8\u0172\xDA\xDB\xDC\u0168\u016A\xDF\u0101\xE1\xE2\xE3\xE4\xE5\xE6\u012F\u010D\xE9\u0119\xEB\u0117\xED\xEE\u012B\u0111\u0146\u014D\u0137\xF4\xF5\xF6\xF7\xF8\u0173\xFA\xFB\xFC\u0169\u016B\u02D9"},cp28594:"iso88594",iso88595:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0401\u0402\u0403\u0404\u0405\u0406\u0407\u0408\u0409\u040A\u040B\u040C\xAD\u040E\u040F\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F\u2116\u0451\u0452\u0453\u0454\u0455\u0456\u0457\u0458\u0459\u045A\u045B\u045C\xA7\u045E\u045F"},cp28595:"iso88595",iso88596:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\uFFFD\uFFFD\uFFFD\xA4\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u060C\xAD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u061B\uFFFD\uFFFD\uFFFD\u061F\uFFFD\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062A\u062B\u062C\u062D\u062E\u062F\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\u0638\u0639\u063A\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064A\u064B\u064C\u064D\u064E\u064F\u0650\u0651\u0652\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD"},cp28596:"iso88596",iso88597:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u2018\u2019\xA3\u20AC\u20AF\xA6\xA7\xA8\xA9\u037A\xAB\xAC\xAD\uFFFD\u2015\xB0\xB1\xB2\xB3\u0384\u0385\u0386\xB7\u0388\u0389\u038A\xBB\u038C\xBD\u038E\u038F\u0390\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039A\u039B\u039C\u039D\u039E\u039F\u03A0\u03A1\uFFFD\u03A3\u03A4\u03A5\u03A6\u03A7\u03A8\u03A9\u03AA\u03AB\u03AC\u03AD\u03AE\u03AF\u03B0\u03B1\u03B2\u03B3\u03B4\u03B5\u03B6\u03B7\u03B8\u03B9\u03BA\u03BB\u03BC\u03BD\u03BE\u03BF\u03C0\u03C1\u03C2\u03C3\u03C4\u03C5\u03C6\u03C7\u03C8\u03C9\u03CA\u03CB\u03CC\u03CD\u03CE\uFFFD"},cp28597:"iso88597",iso88598:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\uFFFD\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xD7\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xF7\xBB\xBC\xBD\xBE\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u2017\u05D0\u05D1\u05D2\u05D3\u05D4\u05D5\u05D6\u05D7\u05D8\u05D9\u05DA\u05DB\u05DC\u05DD\u05DE\u05DF\u05E0\u05E1\u05E2\u05E3\u05E4\u05E5\u05E6\u05E7\u05E8\u05E9\u05EA\uFFFD\uFFFD\u200E\u200F\uFFFD"},cp28598:"iso88598",iso88599:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\u011E\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\u0130\u015E\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\u011F\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\u0131\u015F\xFF"},cp28599:"iso88599",iso885910:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0104\u0112\u0122\u012A\u0128\u0136\xA7\u013B\u0110\u0160\u0166\u017D\xAD\u016A\u014A\xB0\u0105\u0113\u0123\u012B\u0129\u0137\xB7\u013C\u0111\u0161\u0167\u017E\u2015\u016B\u014B\u0100\xC1\xC2\xC3\xC4\xC5\xC6\u012E\u010C\xC9\u0118\xCB\u0116\xCD\xCE\xCF\xD0\u0145\u014C\xD3\xD4\xD5\xD6\u0168\xD8\u0172\xDA\xDB\xDC\xDD\xDE\xDF\u0101\xE1\xE2\xE3\xE4\xE5\xE6\u012F\u010D\xE9\u0119\xEB\u0117\xED\xEE\xEF\xF0\u0146\u014D\xF3\xF4\xF5\xF6\u0169\xF8\u0173\xFA\xFB\xFC\xFD\xFE\u0138"},cp28600:"iso885910",iso885911:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0E01\u0E02\u0E03\u0E04\u0E05\u0E06\u0E07\u0E08\u0E09\u0E0A\u0E0B\u0E0C\u0E0D\u0E0E\u0E0F\u0E10\u0E11\u0E12\u0E13\u0E14\u0E15\u0E16\u0E17\u0E18\u0E19\u0E1A\u0E1B\u0E1C\u0E1D\u0E1E\u0E1F\u0E20\u0E21\u0E22\u0E23\u0E24\u0E25\u0E26\u0E27\u0E28\u0E29\u0E2A\u0E2B\u0E2C\u0E2D\u0E2E\u0E2F\u0E30\u0E31\u0E32\u0E33\u0E34\u0E35\u0E36\u0E37\u0E38\u0E39\u0E3A\uFFFD\uFFFD\uFFFD\uFFFD\u0E3F\u0E40\u0E41\u0E42\u0E43\u0E44\u0E45\u0E46\u0E47\u0E48\u0E49\u0E4A\u0E4B\u0E4C\u0E4D\u0E4E\u0E4F\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59\u0E5A\u0E5B\uFFFD\uFFFD\uFFFD\uFFFD"},cp28601:"iso885911",iso885913:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u201D\xA2\xA3\xA4\u201E\xA6\xA7\xD8\xA9\u0156\xAB\xAC\xAD\xAE\xC6\xB0\xB1\xB2\xB3\u201C\xB5\xB6\xB7\xF8\xB9\u0157\xBB\xBC\xBD\xBE\xE6\u0104\u012E\u0100\u0106\xC4\xC5\u0118\u0112\u010C\xC9\u0179\u0116\u0122\u0136\u012A\u013B\u0160\u0143\u0145\xD3\u014C\xD5\xD6\xD7\u0172\u0141\u015A\u016A\xDC\u017B\u017D\xDF\u0105\u012F\u0101\u0107\xE4\xE5\u0119\u0113\u010D\xE9\u017A\u0117\u0123\u0137\u012B\u013C\u0161\u0144\u0146\xF3\u014D\xF5\xF6\xF7\u0173\u0142\u015B\u016B\xFC\u017C\u017E\u2019"},cp28603:"iso885913",iso885914:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u1E02\u1E03\xA3\u010A\u010B\u1E0A\xA7\u1E80\xA9\u1E82\u1E0B\u1EF2\xAD\xAE\u0178\u1E1E\u1E1F\u0120\u0121\u1E40\u1E41\xB6\u1E56\u1E81\u1E57\u1E83\u1E60\u1EF3\u1E84\u1E85\u1E61\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\u0174\xD1\xD2\xD3\xD4\xD5\xD6\u1E6A\xD8\xD9\xDA\xDB\xDC\xDD\u0176\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\u0175\xF1\xF2\xF3\xF4\xF5\xF6\u1E6B\xF8\xF9\xFA\xFB\xFC\xFD\u0177\xFF"},cp28604:"iso885914",iso885915:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xA1\xA2\xA3\u20AC\xA5\u0160\xA7\u0161\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\u017D\xB5\xB6\xB7\u017E\xB9\xBA\xBB\u0152\u0153\u0178\xBF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF"},cp28605:"iso885915",iso885916:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0104\u0105\u0141\u20AC\u201E\u0160\xA7\u0161\xA9\u0218\xAB\u0179\xAD\u017A\u017B\xB0\xB1\u010C\u0142\u017D\u201D\xB6\xB7\u017E\u010D\u0219\xBB\u0152\u0153\u0178\u017C\xC0\xC1\xC2\u0102\xC4\u0106\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\u0110\u0143\xD2\xD3\xD4\u0150\xD6\u015A\u0170\xD9\xDA\xDB\xDC\u0118\u021A\xDF\xE0\xE1\xE2\u0103\xE4\u0107\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\u0111\u0144\xF2\xF3\xF4\u0151\xF6\u015B\u0171\xF9\xFA\xFB\xFC\u0119\u021B\xFF"},cp28606:"iso885916",cp437:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xA2\xA3\xA5\u20A7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm437:"cp437",csibm437:"cp437",cp737:{type:"_sbcs",chars:"\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039A\u039B\u039C\u039D\u039E\u039F\u03A0\u03A1\u03A3\u03A4\u03A5\u03A6\u03A7\u03A8\u03A9\u03B1\u03B2\u03B3\u03B4\u03B5\u03B6\u03B7\u03B8\u03B9\u03BA\u03BB\u03BC\u03BD\u03BE\u03BF\u03C0\u03C1\u03C3\u03C2\u03C4\u03C5\u03C6\u03C7\u03C8\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03C9\u03AC\u03AD\u03AE\u03CA\u03AF\u03CC\u03CD\u03CB\u03CE\u0386\u0388\u0389\u038A\u038C\u038E\u038F\xB1\u2265\u2264\u03AA\u03AB\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm737:"cp737",csibm737:"cp737",cp775:{type:"_sbcs",chars:"\u0106\xFC\xE9\u0101\xE4\u0123\xE5\u0107\u0142\u0113\u0156\u0157\u012B\u0179\xC4\xC5\xC9\xE6\xC6\u014D\xF6\u0122\xA2\u015A\u015B\xD6\xDC\xF8\xA3\xD8\xD7\xA4\u0100\u012A\xF3\u017B\u017C\u017A\u201D\xA6\xA9\xAE\xAC\xBD\xBC\u0141\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u0104\u010C\u0118\u0116\u2563\u2551\u2557\u255D\u012E\u0160\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u0172\u016A\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u017D\u0105\u010D\u0119\u0117\u012F\u0161\u0173\u016B\u017E\u2518\u250C\u2588\u2584\u258C\u2590\u2580\xD3\xDF\u014C\u0143\xF5\xD5\xB5\u0144\u0136\u0137\u013B\u013C\u0146\u0112\u0145\u2019\xAD\xB1\u201C\xBE\xB6\xA7\xF7\u201E\xB0\u2219\xB7\xB9\xB3\xB2\u25A0\xA0"},ibm775:"cp775",csibm775:"cp775",cp850:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xF8\xA3\xD8\xD7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\xAE\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\xC1\xC2\xC0\xA9\u2563\u2551\u2557\u255D\xA2\xA5\u2510\u2514\u2534\u252C\u251C\u2500\u253C\xE3\xC3\u255A\u2554\u2569\u2566\u2560\u2550\u256C\xA4\xF0\xD0\xCA\xCB\xC8\u0131\xCD\xCE\xCF\u2518\u250C\u2588\u2584\xA6\xCC\u2580\xD3\xDF\xD4\xD2\xF5\xD5\xB5\xFE\xDE\xDA\xDB\xD9\xFD\xDD\xAF\xB4\xAD\xB1\u2017\xBE\xB6\xA7\xF7\xB8\xB0\xA8\xB7\xB9\xB3\xB2\u25A0\xA0"},ibm850:"cp850",csibm850:"cp850",cp852:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\u016F\u0107\xE7\u0142\xEB\u0150\u0151\xEE\u0179\xC4\u0106\xC9\u0139\u013A\xF4\xF6\u013D\u013E\u015A\u015B\xD6\xDC\u0164\u0165\u0141\xD7\u010D\xE1\xED\xF3\xFA\u0104\u0105\u017D\u017E\u0118\u0119\xAC\u017A\u010C\u015F\xAB\xBB\u2591\u2592\u2593\u2502\u2524\xC1\xC2\u011A\u015E\u2563\u2551\u2557\u255D\u017B\u017C\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u0102\u0103\u255A\u2554\u2569\u2566\u2560\u2550\u256C\xA4\u0111\u0110\u010E\xCB\u010F\u0147\xCD\xCE\u011B\u2518\u250C\u2588\u2584\u0162\u016E\u2580\xD3\xDF\xD4\u0143\u0144\u0148\u0160\u0161\u0154\xDA\u0155\u0170\xFD\xDD\u0163\xB4\xAD\u02DD\u02DB\u02C7\u02D8\xA7\xF7\xB8\xB0\xA8\u02D9\u0171\u0158\u0159\u25A0\xA0"},ibm852:"cp852",csibm852:"cp852",cp855:{type:"_sbcs",chars:"\u0452\u0402\u0453\u0403\u0451\u0401\u0454\u0404\u0455\u0405\u0456\u0406\u0457\u0407\u0458\u0408\u0459\u0409\u045A\u040A\u045B\u040B\u045C\u040C\u045E\u040E\u045F\u040F\u044E\u042E\u044A\u042A\u0430\u0410\u0431\u0411\u0446\u0426\u0434\u0414\u0435\u0415\u0444\u0424\u0433\u0413\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u0445\u0425\u0438\u0418\u2563\u2551\u2557\u255D\u0439\u0419\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u043A\u041A\u255A\u2554\u2569\u2566\u2560\u2550\u256C\xA4\u043B\u041B\u043C\u041C\u043D\u041D\u043E\u041E\u043F\u2518\u250C\u2588\u2584\u041F\u044F\u2580\u042F\u0440\u0420\u0441\u0421\u0442\u0422\u0443\u0423\u0436\u0416\u0432\u0412\u044C\u042C\u2116\xAD\u044B\u042B\u0437\u0417\u0448\u0428\u044D\u042D\u0449\u0429\u0447\u0427\xA7\u25A0\xA0"},ibm855:"cp855",csibm855:"cp855",cp856:{type:"_sbcs",chars:"\u05D0\u05D1\u05D2\u05D3\u05D4\u05D5\u05D6\u05D7\u05D8\u05D9\u05DA\u05DB\u05DC\u05DD\u05DE\u05DF\u05E0\u05E1\u05E2\u05E3\u05E4\u05E5\u05E6\u05E7\u05E8\u05E9\u05EA\uFFFD\xA3\uFFFD\xD7\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\xAE\xAC\xBD\xBC\uFFFD\xAB\xBB\u2591\u2592\u2593\u2502\u2524\uFFFD\uFFFD\uFFFD\xA9\u2563\u2551\u2557\u255D\xA2\xA5\u2510\u2514\u2534\u252C\u251C\u2500\u253C\uFFFD\uFFFD\u255A\u2554\u2569\u2566\u2560\u2550\u256C\xA4\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u2518\u250C\u2588\u2584\xA6\uFFFD\u2580\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\xB5\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\xAF\xB4\xAD\xB1\u2017\xBE\xB6\xA7\xF7\xB8\xB0\xA8\xB7\xB9\xB3\xB2\u25A0\xA0"},ibm856:"cp856",csibm856:"cp856",cp857:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\u0131\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\u0130\xD6\xDC\xF8\xA3\xD8\u015E\u015F\xE1\xED\xF3\xFA\xF1\xD1\u011E\u011F\xBF\xAE\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\xC1\xC2\xC0\xA9\u2563\u2551\u2557\u255D\xA2\xA5\u2510\u2514\u2534\u252C\u251C\u2500\u253C\xE3\xC3\u255A\u2554\u2569\u2566\u2560\u2550\u256C\xA4\xBA\xAA\xCA\xCB\xC8\uFFFD\xCD\xCE\xCF\u2518\u250C\u2588\u2584\xA6\xCC\u2580\xD3\xDF\xD4\xD2\xF5\xD5\xB5\uFFFD\xD7\xDA\xDB\xD9\xEC\xFF\xAF\xB4\xAD\xB1\uFFFD\xBE\xB6\xA7\xF7\xB8\xB0\xA8\xB7\xB9\xB3\xB2\u25A0\xA0"},ibm857:"cp857",csibm857:"cp857",cp858:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xF8\xA3\xD8\xD7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\xAE\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\xC1\xC2\xC0\xA9\u2563\u2551\u2557\u255D\xA2\xA5\u2510\u2514\u2534\u252C\u251C\u2500\u253C\xE3\xC3\u255A\u2554\u2569\u2566\u2560\u2550\u256C\xA4\xF0\xD0\xCA\xCB\xC8\u20AC\xCD\xCE\xCF\u2518\u250C\u2588\u2584\xA6\xCC\u2580\xD3\xDF\xD4\xD2\xF5\xD5\xB5\xFE\xDE\xDA\xDB\xD9\xFD\xDD\xAF\xB4\xAD\xB1\u2017\xBE\xB6\xA7\xF7\xB8\xB0\xA8\xB7\xB9\xB3\xB2\u25A0\xA0"},ibm858:"cp858",csibm858:"cp858",cp860:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE3\xE0\xC1\xE7\xEA\xCA\xE8\xCD\xD4\xEC\xC3\xC2\xC9\xC0\xC8\xF4\xF5\xF2\xDA\xF9\xCC\xD5\xDC\xA2\xA3\xD9\u20A7\xD3\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\xD2\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm860:"cp860",csibm860:"cp860",cp861:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xD0\xF0\xDE\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xFE\xFB\xDD\xFD\xD6\xDC\xF8\xA3\xD8\u20A7\u0192\xE1\xED\xF3\xFA\xC1\xCD\xD3\xDA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm861:"cp861",csibm861:"cp861",cp862:{type:"_sbcs",chars:"\u05D0\u05D1\u05D2\u05D3\u05D4\u05D5\u05D6\u05D7\u05D8\u05D9\u05DA\u05DB\u05DC\u05DD\u05DE\u05DF\u05E0\u05E1\u05E2\u05E3\u05E4\u05E5\u05E6\u05E7\u05E8\u05E9\u05EA\xA2\xA3\xA5\u20A7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm862:"cp862",csibm862:"cp862",cp863:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xC2\xE0\xB6\xE7\xEA\xEB\xE8\xEF\xEE\u2017\xC0\xA7\xC9\xC8\xCA\xF4\xCB\xCF\xFB\xF9\xA4\xD4\xDC\xA2\xA3\xD9\xDB\u0192\xA6\xB4\xF3\xFA\xA8\xB8\xB3\xAF\xCE\u2310\xAC\xBD\xBC\xBE\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm863:"cp863",csibm863:"cp863",cp864:{type:"_sbcs",chars:`\0\x07\b +\v\f\r\x1B !"#$\u066A&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}~\x7F\xB0\xB7\u2219\u221A\u2592\u2500\u2502\u253C\u2524\u252C\u251C\u2534\u2510\u250C\u2514\u2518\u03B2\u221E\u03C6\xB1\xBD\xBC\u2248\xAB\xBB\uFEF7\uFEF8\uFFFD\uFFFD\uFEFB\uFEFC\uFFFD\xA0\xAD\uFE82\xA3\xA4\uFE84\uFFFD\uFFFD\uFE8E\uFE8F\uFE95\uFE99\u060C\uFE9D\uFEA1\uFEA5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\uFED1\u061B\uFEB1\uFEB5\uFEB9\u061F\xA2\uFE80\uFE81\uFE83\uFE85\uFECA\uFE8B\uFE8D\uFE91\uFE93\uFE97\uFE9B\uFE9F\uFEA3\uFEA7\uFEA9\uFEAB\uFEAD\uFEAF\uFEB3\uFEB7\uFEBB\uFEBF\uFEC1\uFEC5\uFECB\uFECF\xA6\xAC\xF7\xD7\uFEC9\u0640\uFED3\uFED7\uFEDB\uFEDF\uFEE3\uFEE7\uFEEB\uFEED\uFEEF\uFEF3\uFEBD\uFECC\uFECE\uFECD\uFEE1\uFE7D\u0651\uFEE5\uFEE9\uFEEC\uFEF0\uFEF2\uFED0\uFED5\uFEF5\uFEF6\uFEDD\uFED9\uFEF1\u25A0\uFFFD`},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"\xC7\xFC\xE9\xE2\xE4\xE0\xE5\xE7\xEA\xEB\xE8\xEF\xEE\xEC\xC4\xC5\xC9\xE6\xC6\xF4\xF6\xF2\xFB\xF9\xFF\xD6\xDC\xF8\xA3\xD8\u20A7\u0192\xE1\xED\xF3\xFA\xF1\xD1\xAA\xBA\xBF\u2310\xAC\xBD\xBC\xA1\xAB\xA4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u03B1\xDF\u0393\u03C0\u03A3\u03C3\xB5\u03C4\u03A6\u0398\u03A9\u03B4\u221E\u03C6\u03B5\u2229\u2261\xB1\u2265\u2264\u2320\u2321\xF7\u2248\xB0\u2219\xB7\u221A\u207F\xB2\u25A0\xA0"},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F\u0401\u0451\u0404\u0454\u0407\u0457\u040E\u045E\xB0\u2219\xB7\u221A\u2116\xA4\u25A0\xA0"},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0386\uFFFD\xB7\xAC\xA6\u2018\u2019\u0388\u2015\u0389\u038A\u03AA\u038C\uFFFD\uFFFD\u038E\u03AB\xA9\u038F\xB2\xB3\u03AC\xA3\u03AD\u03AE\u03AF\u03CA\u0390\u03CC\u03CD\u0391\u0392\u0393\u0394\u0395\u0396\u0397\xBD\u0398\u0399\xAB\xBB\u2591\u2592\u2593\u2502\u2524\u039A\u039B\u039C\u039D\u2563\u2551\u2557\u255D\u039E\u039F\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u03A0\u03A1\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u03A3\u03A4\u03A5\u03A6\u03A7\u03A8\u03A9\u03B1\u03B2\u03B3\u2518\u250C\u2588\u2584\u03B4\u03B5\u2580\u03B6\u03B7\u03B8\u03B9\u03BA\u03BB\u03BC\u03BD\u03BE\u03BF\u03C0\u03C1\u03C3\u03C2\u03C4\u0384\xAD\xB1\u03C5\u03C6\u03C7\xA7\u03C8\u0385\xB0\xA8\u03C9\u03CB\u03B0\u03CE\u25A0\xA0"},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\u203E\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF\u0160\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\xDD\u017D\xDF\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\u0161\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\u017E\xFF"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"\uFE88\xD7\xF7\uF8F6\uF8F5\uF8F4\uF8F7\uFE71\x88\u25A0\u2502\u2500\u2510\u250C\u2514\u2518\uFE79\uFE7B\uFE7D\uFE7F\uFE77\uFE8A\uFEF0\uFEF3\uFEF2\uFECE\uFECF\uFED0\uFEF6\uFEF8\uFEFA\uFEFC\xA0\uF8FA\uF8F9\uF8F8\xA4\uF8FB\uFE8B\uFE91\uFE97\uFE9B\uFE9F\uFEA3\u060C\xAD\uFEA7\uFEB3\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\uFEB7\u061B\uFEBB\uFEBF\uFECA\u061F\uFECB\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062A\u062B\u062C\u062D\u062E\u062F\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\uFEC7\u0639\u063A\uFECC\uFE82\uFE84\uFE8E\uFED3\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064A\u064B\u064C\u064D\u064E\u064F\u0650\u0651\u0652\uFED7\uFEDB\uFEDF\uF8FC\uFEF5\uFEF7\uFEF9\uFEFB\uFEE3\uFEE7\uFEEC\uFEE9\uFFFD"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0401\u0402\u0490\u0404\u0405\u0406\u0407\u0408\u0409\u040A\u040B\u040C\xAD\u040E\u040F\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F\u2116\u0451\u0452\u0491\u0454\u0455\u0456\u0457\u0458\u0459\u045A\u045B\u045C\xA7\u045E\u045F"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255D\u255C\u255B\u2510\u2514\u2534\u252C\u251C\u2500\u253C\u255E\u255F\u255A\u2554\u2569\u2566\u2560\u2550\u256C\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256B\u256A\u2518\u250C\u2588\u2584\u258C\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F\u0401\u0451\u0490\u0491\u0404\u0454\u0406\u0456\u0407\u0457\xB7\u221A\u2116\xA4\u25A0\xA0"},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\u0153\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\u0178\xB5\xB6\xB7\u0152\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\u0102\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\u0300\xCD\xCE\xCF\u0110\xD1\u0309\xD3\xD4\u01A0\xD6\xD7\xD8\xD9\xDA\xDB\xDC\u01AF\u0303\xDF\xE0\xE1\xE2\u0103\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\u0301\xED\xEE\xEF\u0111\xF1\u0323\xF3\xF4\u01A1\xF6\xF7\xF8\xF9\xFA\xFB\xFC\u01B0\u20AB\xFF"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0E81\u0E82\u0E84\u0E87\u0E88\u0EAA\u0E8A\u0E8D\u0E94\u0E95\u0E96\u0E97\u0E99\u0E9A\u0E9B\u0E9C\u0E9D\u0E9E\u0E9F\u0EA1\u0EA2\u0EA3\u0EA5\u0EA7\u0EAB\u0EAD\u0EAE\uFFFD\uFFFD\uFFFD\u0EAF\u0EB0\u0EB2\u0EB3\u0EB4\u0EB5\u0EB6\u0EB7\u0EB8\u0EB9\u0EBC\u0EB1\u0EBB\u0EBD\uFFFD\uFFFD\uFFFD\u0EC0\u0EC1\u0EC2\u0EC3\u0EC4\u0EC8\u0EC9\u0ECA\u0ECB\u0ECC\u0ECD\u0EC6\uFFFD\u0EDC\u0EDD\u20AD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0ED0\u0ED1\u0ED2\u0ED3\u0ED4\u0ED5\u0ED6\u0ED7\u0ED8\u0ED9\uFFFD\uFFFD\xA2\xAC\xA6\uFFFD"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0E48\u0E01\u0E02\u0E03\u0E04\u0E05\u0E06\u0E07\u0E08\u0E09\u0E0A\u0E0B\u0E0C\u0E0D\u0E0E\u0E0F\u0E10\u0E11\u0E12\u0E13\u0E14\u0E15\u0E16\u0E17\u0E18\u0E19\u0E1A\u0E1B\u0E1C\u0E1D\u0E1E\u0E1F\u0E20\u0E21\u0E22\u0E23\u0E24\u0E25\u0E26\u0E27\u0E28\u0E29\u0E2A\u0E2B\u0E2C\u0E2D\u0E2E\u0E2F\u0E30\u0E31\u0E32\u0E33\u0E34\u0E35\u0E36\u0E37\u0E38\u0E39\u0E3A\u0E49\u0E4A\u0E4B\u20AC\u0E3F\u0E40\u0E41\u0E42\u0E43\u0E44\u0E45\u0E46\u0E47\u0E48\u0E49\u0E4A\u0E4B\u0E4C\u0E4D\u0E4E\u0E4F\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59\u0E5A\u0E5B\xA2\xAC\xA6\xA0"},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"\u20AC\x81\x82\x83\x84\u2026\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\u2018\u2019\u201C\u201D\u2022\u2013\u2014\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\u0E01\u0E02\u0E03\u0E04\u0E05\u0E06\u0E07\u0E08\u0E09\u0E0A\u0E0B\u0E0C\u0E0D\u0E0E\u0E0F\u0E10\u0E11\u0E12\u0E13\u0E14\u0E15\u0E16\u0E17\u0E18\u0E19\u0E1A\u0E1B\u0E1C\u0E1D\u0E1E\u0E1F\u0E20\u0E21\u0E22\u0E23\u0E24\u0E25\u0E26\u0E27\u0E28\u0E29\u0E2A\u0E2B\u0E2C\u0E2D\u0E2E\u0E2F\u0E30\u0E31\u0E32\u0E33\u0E34\u0E35\u0E36\u0E37\u0E38\u0E39\u0E3A\uFFFD\uFFFD\uFFFD\uFFFD\u0E3F\u0E40\u0E41\u0E42\u0E43\u0E44\u0E45\u0E46\u0E47\u0E48\u0E49\u0E4A\u0E4B\u0E4C\u0E4D\u0E4E\u0E4F\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59\u0E5A\u0E5B\uFFFD\uFFFD\uFFFD\uFFFD"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xA1\xA2\xA3\u20AC\xA5\xA6\xA7\u0153\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\u0178\xB5\xB6\xB7\u0152\xB9\xBA\xBB\xBC\xBD\xBE\xBF\xC0\xC1\xC2\u0102\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\u0300\xCD\xCE\xCF\u0110\xD1\u0309\xD3\xD4\u01A0\xD6\xD7\xD8\xD9\xDA\xDB\xDC\u01AF\u0303\xDF\xE0\xE1\xE2\u0103\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\u0301\xED\xEE\xEF\u0111\xF1\u0323\xF3\xF4\u01A1\xF6\xF7\xF8\xF9\xFA\xFB\xFC\u01B0\u20AB\xFF"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\u0160\u2122\xB4\xA8\u2260\u017D\xD8\u221E\xB1\u2264\u2265\u2206\xB5\u2202\u2211\u220F\u0161\u222B\xAA\xBA\u2126\u017E\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u0106\xAB\u010C\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u0110\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\uFFFD\xA9\u2044\xA4\u2039\u203A\xC6\xBB\u2013\xB7\u201A\u201E\u2030\xC2\u0107\xC1\u010D\xC8\xCD\xCE\xCF\xCC\xD3\xD4\u0111\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u03C0\xCB\u02DA\xB8\xCA\xE6\u02C7"},maccyrillic:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u2020\xB0\xA2\xA3\xA7\u2022\xB6\u0406\xAE\xA9\u2122\u0402\u0452\u2260\u0403\u0453\u221E\xB1\u2264\u2265\u0456\xB5\u2202\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040A\u045A\u0458\u0405\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\u040B\u045B\u040C\u045C\u0455\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u201E\u040E\u045E\u040F\u045F\u2116\u0401\u0451\u044F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\xA4"},macgreek:{type:"_sbcs",chars:"\xC4\xB9\xB2\xC9\xB3\xD6\xDC\u0385\xE0\xE2\xE4\u0384\xA8\xE7\xE9\xE8\xEA\xEB\xA3\u2122\xEE\xEF\u2022\xBD\u2030\xF4\xF6\xA6\xAD\xF9\xFB\xFC\u2020\u0393\u0394\u0398\u039B\u039E\u03A0\xDF\xAE\xA9\u03A3\u03AA\xA7\u2260\xB0\u0387\u0391\xB1\u2264\u2265\xA5\u0392\u0395\u0396\u0397\u0399\u039A\u039C\u03A6\u03AB\u03A8\u03A9\u03AC\u039D\xAC\u039F\u03A1\u2248\u03A4\xAB\xBB\u2026\xA0\u03A5\u03A7\u0386\u0388\u0153\u2013\u2015\u201C\u201D\u2018\u2019\xF7\u0389\u038A\u038C\u038E\u03AD\u03AE\u03AF\u03CC\u038F\u03CD\u03B1\u03B2\u03C8\u03B4\u03B5\u03C6\u03B3\u03B7\u03B9\u03BE\u03BA\u03BB\u03BC\u03BD\u03BF\u03C0\u03CE\u03C1\u03C3\u03C4\u03B8\u03C9\u03C2\u03C7\u03C5\u03B6\u03CA\u03CB\u0390\u03B0\uFFFD"},maciceland:{type:"_sbcs",chars:"\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\xDD\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u2126\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\xA4\xD0\xF0\xDE\xFE\xFD\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uFFFD\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7"},macroman:{type:"_sbcs",chars:"\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u2126\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\xA4\u2039\u203A\uFB01\uFB02\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uFFFD\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7"},macromania:{type:"_sbcs",chars:"\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\u0102\u015E\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u2126\u0103\u015F\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\xA4\u2039\u203A\u0162\u0163\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uFFFD\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7"},macthai:{type:"_sbcs",chars:"\xAB\xBB\u2026\uF88C\uF88F\uF892\uF895\uF898\uF88B\uF88E\uF891\uF894\uF897\u201C\u201D\uF899\uFFFD\u2022\uF884\uF889\uF885\uF886\uF887\uF888\uF88A\uF88D\uF890\uF893\uF896\u2018\u2019\uFFFD\xA0\u0E01\u0E02\u0E03\u0E04\u0E05\u0E06\u0E07\u0E08\u0E09\u0E0A\u0E0B\u0E0C\u0E0D\u0E0E\u0E0F\u0E10\u0E11\u0E12\u0E13\u0E14\u0E15\u0E16\u0E17\u0E18\u0E19\u0E1A\u0E1B\u0E1C\u0E1D\u0E1E\u0E1F\u0E20\u0E21\u0E22\u0E23\u0E24\u0E25\u0E26\u0E27\u0E28\u0E29\u0E2A\u0E2B\u0E2C\u0E2D\u0E2E\u0E2F\u0E30\u0E31\u0E32\u0E33\u0E34\u0E35\u0E36\u0E37\u0E38\u0E39\u0E3A\uFEFF\u200B\u2013\u2014\u0E3F\u0E40\u0E41\u0E42\u0E43\u0E44\u0E45\u0E46\u0E47\u0E48\u0E49\u0E4A\u0E4B\u0E4C\u0E4D\u2122\u0E4F\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59\xAE\xA9\uFFFD\uFFFD\uFFFD\uFFFD"},macturkish:{type:"_sbcs",chars:"\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u2126\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u011E\u011F\u0130\u0131\u015E\u015F\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uFFFD\xD2\xDA\xDB\xD9\uFFFD\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7"},macukraine:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u2020\xB0\u0490\xA3\xA7\u2022\xB6\u0406\xAE\xA9\u2122\u0402\u0452\u2260\u0403\u0453\u221E\xB1\u2264\u2265\u0456\xB5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040A\u045A\u0458\u0405\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\u040B\u045B\u040C\u045C\u0455\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u201E\u040E\u045E\u040F\u045F\u2116\u0401\u0451\u044F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\xA4"},koi8r:{type:"_sbcs",chars:"\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2580\u2584\u2588\u258C\u2590\u2591\u2592\u2593\u2320\u25A0\u2219\u221A\u2248\u2264\u2265\xA0\u2321\xB0\xB2\xB7\xF7\u2550\u2551\u2552\u0451\u2553\u2554\u2555\u2556\u2557\u2558\u2559\u255A\u255B\u255C\u255D\u255E\u255F\u2560\u2561\u0401\u2562\u2563\u2564\u2565\u2566\u2567\u2568\u2569\u256A\u256B\u256C\xA9\u044E\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u044F\u0440\u0441\u0442\u0443\u0436\u0432\u044C\u044B\u0437\u0448\u044D\u0449\u0447\u044A\u042E\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u042F\u0420\u0421\u0422\u0423\u0416\u0412\u042C\u042B\u0417\u0428\u042D\u0429\u0427\u042A"},koi8u:{type:"_sbcs",chars:"\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2580\u2584\u2588\u258C\u2590\u2591\u2592\u2593\u2320\u25A0\u2219\u221A\u2248\u2264\u2265\xA0\u2321\xB0\xB2\xB7\xF7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255A\u255B\u0491\u255D\u255E\u255F\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256A\u0490\u256C\xA9\u044E\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u044F\u0440\u0441\u0442\u0443\u0436\u0432\u044C\u044B\u0437\u0448\u044D\u0449\u0447\u044A\u042E\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u042F\u0420\u0421\u0422\u0423\u0416\u0412\u042C\u042B\u0417\u0428\u042D\u0429\u0427\u042A"},koi8ru:{type:"_sbcs",chars:"\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2580\u2584\u2588\u258C\u2590\u2591\u2592\u2593\u2320\u25A0\u2219\u221A\u2248\u2264\u2265\xA0\u2321\xB0\xB2\xB7\xF7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255A\u255B\u0491\u045E\u255E\u255F\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256A\u0490\u040E\xA9\u044E\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u044F\u0440\u0441\u0442\u0443\u0436\u0432\u044C\u044B\u0437\u0448\u044D\u0449\u0447\u044A\u042E\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u042F\u0420\u0421\u0422\u0423\u0416\u0412\u042C\u042B\u0417\u0428\u042D\u0429\u0427\u042A"},koi8t:{type:"_sbcs",chars:"\u049B\u0493\u201A\u0492\u201E\u2026\u2020\u2021\uFFFD\u2030\u04B3\u2039\u04B2\u04B7\u04B6\uFFFD\u049A\u2018\u2019\u201C\u201D\u2022\u2013\u2014\uFFFD\u2122\uFFFD\u203A\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u04EF\u04EE\u0451\xA4\u04E3\xA6\xA7\uFFFD\uFFFD\uFFFD\xAB\xAC\xAD\xAE\uFFFD\xB0\xB1\xB2\u0401\uFFFD\u04E2\xB6\xB7\uFFFD\u2116\uFFFD\xBB\uFFFD\uFFFD\uFFFD\xA9\u044E\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u044F\u0440\u0441\u0442\u0443\u0436\u0432\u044C\u044B\u0437\u0448\u044D\u0449\u0447\u044A\u042E\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u042F\u0420\u0421\u0422\u0423\u0416\u0412\u042C\u042B\u0417\u0428\u042D\u0429\u0427\u042A"},armscii8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\uFFFD\u0587\u0589)(\xBB\xAB\u2014.\u055D,-\u058A\u2026\u055C\u055B\u055E\u0531\u0561\u0532\u0562\u0533\u0563\u0534\u0564\u0535\u0565\u0536\u0566\u0537\u0567\u0538\u0568\u0539\u0569\u053A\u056A\u053B\u056B\u053C\u056C\u053D\u056D\u053E\u056E\u053F\u056F\u0540\u0570\u0541\u0571\u0542\u0572\u0543\u0573\u0544\u0574\u0545\u0575\u0546\u0576\u0547\u0577\u0548\u0578\u0549\u0579\u054A\u057A\u054B\u057B\u054C\u057C\u054D\u057D\u054E\u057E\u054F\u057F\u0550\u0580\u0551\u0581\u0552\u0582\u0553\u0583\u0554\u0584\u0555\u0585\u0556\u0586\u055A\uFFFD"},rk1048:{type:"_sbcs",chars:"\u0402\u0403\u201A\u0453\u201E\u2026\u2020\u2021\u20AC\u2030\u0409\u2039\u040A\u049A\u04BA\u040F\u0452\u2018\u2019\u201C\u201D\u2022\u2013\u2014\uFFFD\u2122\u0459\u203A\u045A\u049B\u04BB\u045F\xA0\u04B0\u04B1\u04D8\xA4\u04E8\xA6\xA7\u0401\xA9\u0492\xAB\xAC\xAD\xAE\u04AE\xB0\xB1\u0406\u0456\u04E9\xB5\xB6\xB7\u0451\u2116\u0493\xBB\u04D9\u04A2\u04A3\u04AF\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F"},tcvn:{type:"_sbcs",chars:`\0\xDA\u1EE4\u1EEA\u1EEC\u1EEE\x07\b +\v\f\r\u1EE8\u1EF0\u1EF2\u1EF6\u1EF8\xDD\u1EF4\x1B !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}~\x7F\xC0\u1EA2\xC3\xC1\u1EA0\u1EB6\u1EAC\xC8\u1EBA\u1EBC\xC9\u1EB8\u1EC6\xCC\u1EC8\u0128\xCD\u1ECA\xD2\u1ECE\xD5\xD3\u1ECC\u1ED8\u1EDC\u1EDE\u1EE0\u1EDA\u1EE2\xD9\u1EE6\u0168\xA0\u0102\xC2\xCA\xD4\u01A0\u01AF\u0110\u0103\xE2\xEA\xF4\u01A1\u01B0\u0111\u1EB0\u0300\u0309\u0303\u0301\u0323\xE0\u1EA3\xE3\xE1\u1EA1\u1EB2\u1EB1\u1EB3\u1EB5\u1EAF\u1EB4\u1EAE\u1EA6\u1EA8\u1EAA\u1EA4\u1EC0\u1EB7\u1EA7\u1EA9\u1EAB\u1EA5\u1EAD\xE8\u1EC2\u1EBB\u1EBD\xE9\u1EB9\u1EC1\u1EC3\u1EC5\u1EBF\u1EC7\xEC\u1EC9\u1EC4\u1EBE\u1ED2\u0129\xED\u1ECB\xF2\u1ED4\u1ECF\xF5\xF3\u1ECD\u1ED3\u1ED5\u1ED7\u1ED1\u1ED9\u1EDD\u1EDF\u1EE1\u1EDB\u1EE3\xF9\u1ED6\u1EE7\u0169\xFA\u1EE5\u1EEB\u1EED\u1EEF\u1EE9\u1EF1\u1EF3\u1EF7\u1EF9\xFD\u1EF5\u1ED0`},georgianacademy:{type:"_sbcs",chars:"\x80\x81\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0160\u2039\u0152\x8D\x8E\x8F\x90\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\u0161\u203A\u0153\x9D\x9E\u0178\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\u10D0\u10D1\u10D2\u10D3\u10D4\u10D5\u10D6\u10D7\u10D8\u10D9\u10DA\u10DB\u10DC\u10DD\u10DE\u10DF\u10E0\u10E1\u10E2\u10E3\u10E4\u10E5\u10E6\u10E7\u10E8\u10E9\u10EA\u10EB\u10EC\u10ED\u10EE\u10EF\u10F0\u10F1\u10F2\u10F3\u10F4\u10F5\u10F6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF"},georgianps:{type:"_sbcs",chars:"\x80\x81\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0160\u2039\u0152\x8D\x8E\x8F\x90\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\u0161\u203A\u0153\x9D\x9E\u0178\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF\u10D0\u10D1\u10D2\u10D3\u10D4\u10D5\u10D6\u10F1\u10D7\u10D8\u10D9\u10DA\u10DB\u10DC\u10F2\u10DD\u10DE\u10DF\u10E0\u10E1\u10E2\u10F3\u10E3\u10E4\u10E5\u10E6\u10E7\u10E8\u10E9\u10EA\u10EB\u10EC\u10ED\u10EE\u10F4\u10EF\u10F0\u10F5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF"},pt154:{type:"_sbcs",chars:"\u0496\u0492\u04EE\u0493\u201E\u2026\u04B6\u04AE\u04B2\u04AF\u04A0\u04E2\u04A2\u049A\u04BA\u04B8\u0497\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u04B3\u04B7\u04A1\u04E3\u04A3\u049B\u04BB\u04B9\xA0\u040E\u045E\u0408\u04E8\u0498\u04B0\xA7\u0401\xA9\u04D8\xAB\xAC\u04EF\xAE\u049C\xB0\u04B1\u0406\u0456\u0499\u04E9\xB6\xB7\u0451\u2116\u04D9\xBB\u0458\u04AA\u04AB\u049D\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E\u044F"},viscii:{type:"_sbcs",chars:`\0\u1EB2\u1EB4\u1EAA\x07\b +\v\f\r\u1EF6\u1EF8\x1B\u1EF4 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}~\x7F\u1EA0\u1EAE\u1EB0\u1EB6\u1EA4\u1EA6\u1EA8\u1EAC\u1EBC\u1EB8\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EE2\u1EDA\u1EDC\u1EDE\u1ECA\u1ECE\u1ECC\u1EC8\u1EE6\u0168\u1EE4\u1EF2\xD5\u1EAF\u1EB1\u1EB7\u1EA5\u1EA7\u1EA9\u1EAD\u1EBD\u1EB9\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1ED1\u1ED3\u1ED5\u1ED7\u1EE0\u01A0\u1ED9\u1EDD\u1EDF\u1ECB\u1EF0\u1EE8\u1EEA\u1EEC\u01A1\u1EDB\u01AF\xC0\xC1\xC2\xC3\u1EA2\u0102\u1EB3\u1EB5\xC8\xC9\xCA\u1EBA\xCC\xCD\u0128\u1EF3\u0110\u1EE9\xD2\xD3\xD4\u1EA1\u1EF7\u1EEB\u1EED\xD9\xDA\u1EF9\u1EF5\xDD\u1EE1\u01B0\xE0\xE1\xE2\xE3\u1EA3\u0103\u1EEF\u1EAB\xE8\xE9\xEA\u1EBB\xEC\xED\u0129\u1EC9\u0111\u1EF1\xF2\xF3\xF4\xF5\u1ECF\u1ECD\u1EE5\xF9\xFA\u0169\u1EE7\xFD\u1EE3\u1EEE`},iso646cn:{type:"_sbcs",chars:`\0\x07\b +\v\f\r\x1B !"#\xA5%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\`abcdefghijklmnopqrstuvwxyz{|}\u203E\x7F\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD`},iso646jp:{type:"_sbcs",chars:`\0\x07\b +\v\f\r\x1B !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\xA5]^_\`abcdefghijklmnopqrstuvwxyz{|}\u203E\x7F\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD`},hproman8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F\xA0\xC0\xC2\xC8\xCA\xCB\xCE\xCF\xB4\u02CB\u02C6\xA8\u02DC\xD9\xDB\u20A4\xAF\xDD\xFD\xB0\xC7\xE7\xD1\xF1\xA1\xBF\xA4\xA3\xA5\xA7\u0192\xA2\xE2\xEA\xF4\xFB\xE1\xE9\xF3\xFA\xE0\xE8\xF2\xF9\xE4\xEB\xF6\xFC\xC5\xEE\xD8\xC6\xE5\xED\xF8\xE6\xC4\xEC\xD6\xDC\xC9\xEF\xDF\xD4\xC1\xC3\xE3\xD0\xF0\xCD\xCC\xD3\xD2\xD5\xF5\u0160\u0161\xDA\u0178\xFF\xDE\xFE\xB7\xB5\xB6\xBE\u2014\xBC\xBD\xAA\xBA\xAB\u25A0\xBB\xB1\uFFFD"},macintosh:{type:"_sbcs",chars:"\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u2126\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\xA4\u2039\u203A\uFB01\uFB02\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uFFFD\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7"},ascii:{type:"_sbcs",chars:"\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD"},tis620:{type:"_sbcs",chars:"\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\uFFFD\u0E01\u0E02\u0E03\u0E04\u0E05\u0E06\u0E07\u0E08\u0E09\u0E0A\u0E0B\u0E0C\u0E0D\u0E0E\u0E0F\u0E10\u0E11\u0E12\u0E13\u0E14\u0E15\u0E16\u0E17\u0E18\u0E19\u0E1A\u0E1B\u0E1C\u0E1D\u0E1E\u0E1F\u0E20\u0E21\u0E22\u0E23\u0E24\u0E25\u0E26\u0E27\u0E28\u0E29\u0E2A\u0E2B\u0E2C\u0E2D\u0E2E\u0E2F\u0E30\u0E31\u0E32\u0E33\u0E34\u0E35\u0E36\u0E37\u0E38\u0E39\u0E3A\uFFFD\uFFFD\uFFFD\uFFFD\u0E3F\u0E40\u0E41\u0E42\u0E43\u0E44\u0E45\u0E46\u0E47\u0E48\u0E49\u0E4A\u0E4B\u0E4C\u0E4D\u0E4E\u0E4F\u0E50\u0E51\u0E52\u0E53\u0E54\u0E55\u0E56\u0E57\u0E58\u0E59\u0E5A\u0E5B\uFFFD\uFFFD\uFFFD\uFFFD"}}});var UJ=b(PJ=>{"use strict";var G2=Do().Buffer;PJ._dbcs=No;var Lr=-1,MJ=-2,_s=-10,An=-1e3,TA=new Array(256),a0=-1;for(Ty=0;Ty<256;Ty++)TA[Ty]=Lr;var Ty;function No(e,t){if(this.encodingName=e.encodingName,!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var r=e.table();this.decodeTables=[],this.decodeTables[0]=TA.slice(0),this.decodeTableSeq=[];for(var n=0;nAn)throw new Error("gb18030 decode tables conflict at byte 2");for(var u=this.decodeTables[An-a[c]],l=129;l<=254;l++){if(u[l]===Lr)u[l]=An-i;else{if(u[l]===An-i)continue;if(u[l]>An)throw new Error("gb18030 decode tables conflict at byte 3")}for(var A=this.decodeTables[An-u[l]],f=48;f<=57;f++)A[f]===Lr&&(A[f]=MJ)}}}this.defaultCharUnicode=t.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var d={};if(e.encodeSkipVals)for(var n=0;n0;e>>>=8)t.push(e&255);t.length==0&&t.push(0);for(var r=this.decodeTables[0],n=t.length-1;n>0;n--){var s=r[t[n]];if(s==Lr)r[t[n]]=An-this.decodeTables.length,this.decodeTables.push(r=TA.slice(0));else if(s<=An)r=this.decodeTables[An-s];else throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16))}return r};No.prototype._addDecodeChunk=function(e){var t=parseInt(e[0],16),r=this._getDecodeTrieNode(t);t=t&255;for(var n=1;n255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+t)};No.prototype._getEncodeBucket=function(e){var t=e>>8;return this.encodeTable[t]===void 0&&(this.encodeTable[t]=TA.slice(0)),this.encodeTable[t]};No.prototype._setEncodeChar=function(e,t){var r=this._getEncodeBucket(e),n=e&255;r[n]<=_s?this.encodeTableSeq[_s-r[n]][a0]=t:r[n]==Lr&&(r[n]=t)};No.prototype._setEncodeSequence=function(e,t){var r=e[0],n=this._getEncodeBucket(r),s=r&255,i;n[s]<=_s?i=this.encodeTableSeq[_s-n[s]]:(i={},n[s]!==Lr&&(i[a0]=n[s]),n[s]=_s-this.encodeTableSeq.length,this.encodeTableSeq.push(i));for(var o=1;o=0)this._setEncodeChar(a,c),s=!0;else if(a<=An){var u=An-a;if(!i[u]){var l=c<<8>>>0;this._fillEncodeTable(u,l,r)?s=!0:i[u]=!0}}else a<=_s&&(this._setEncodeSequence(this.decodeTableSeq[_s-a],c),s=!0)}return s};function wy(e,t){this.leadSurrogate=-1,this.seqObj=void 0,this.encodeTable=t.encodeTable,this.encodeTableSeq=t.encodeTableSeq,this.defaultCharSingleByte=t.defCharSB,this.gb18030=t.gb18030}wy.prototype.write=function(e){for(var t=G2.alloc(e.length*(this.gb18030?4:3)),r=this.leadSurrogate,n=this.seqObj,s=-1,i=0,o=0;;){if(s===-1){if(i==e.length)break;var a=e.charCodeAt(i++)}else{var a=s;s=-1}if(55296<=a&&a<57344)if(a<56320)if(r===-1){r=a;continue}else r=a,a=Lr;else r!==-1?(a=65536+(r-55296)*1024+(a-56320),r=-1):a=Lr;else r!==-1&&(s=a,a=Lr,r=-1);var c=Lr;if(n!==void 0&&a!=Lr){var u=n[a];if(typeof u=="object"){n=u;continue}else typeof u=="number"?c=u:u==null&&(u=n[a0],u!==void 0&&(c=u,s=a));n=void 0}else if(a>=0){var l=this.encodeTable[a>>8];if(l!==void 0&&(c=l[a&255]),c<=_s){n=this.encodeTableSeq[_s-c];continue}if(c==Lr&&this.gb18030){var A=J2(this.gb18030.uChars,a);if(A!=-1){var c=this.gb18030.gbChars[A]+(a-this.gb18030.uChars[A]);t[o++]=129+Math.floor(c/12600),c=c%12600,t[o++]=48+Math.floor(c/1260),c=c%1260,t[o++]=129+Math.floor(c/10),c=c%10,t[o++]=48+c;continue}}}c===Lr&&(c=this.defaultCharSingleByte),c<256?t[o++]=c:c<65536?(t[o++]=c>>8,t[o++]=c&255):c<16777216?(t[o++]=c>>16,t[o++]=c>>8&255,t[o++]=c&255):(t[o++]=c>>>24,t[o++]=c>>>16&255,t[o++]=c>>>8&255,t[o++]=c&255)}return this.seqObj=n,this.leadSurrogate=r,t.slice(0,o)};wy.prototype.end=function(){if(!(this.leadSurrogate===-1&&this.seqObj===void 0)){var e=G2.alloc(10),t=0;if(this.seqObj){var r=this.seqObj[a0];r!==void 0&&(r<256?e[t++]=r:(e[t++]=r>>8,e[t++]=r&255)),this.seqObj=void 0}return this.leadSurrogate!==-1&&(e[t++]=this.defaultCharSingleByte,this.leadSurrogate=-1),e.slice(0,t)}};wy.prototype.findIdx=J2;function j2(e,t){this.nodeIdx=0,this.prevBytes=[],this.decodeTables=t.decodeTables,this.decodeTableSeq=t.decodeTableSeq,this.defaultCharUnicode=t.defaultCharUnicode,this.gb18030=t.gb18030}j2.prototype.write=function(e){for(var t=G2.alloc(e.length*2),r=this.nodeIdx,n=this.prevBytes,s=this.prevBytes.length,i=-this.prevBytes.length,o,a=0,c=0;a=0?e[a]:n[a+s],o=this.decodeTables[r][u];if(!(o>=0))if(o===Lr)o=this.defaultCharUnicode.charCodeAt(0),a=i;else if(o===MJ){if(a>=3)var l=(e[a-3]-129)*12600+(e[a-2]-48)*1260+(e[a-1]-129)*10+(u-48);else var l=(n[a-3+s]-129)*12600+((a-2>=0?e[a-2]:n[a-2+s])-48)*1260+((a-1>=0?e[a-1]:n[a-1+s])-129)*10+(u-48);var A=J2(this.gb18030.gbChars,l);o=this.gb18030.uChars[A]+l-this.gb18030.gbChars[A]}else if(o<=An){r=An-o;continue}else if(o<=_s){for(var f=this.decodeTableSeq[_s-o],d=0;d>8;o=f[f.length-1]}else throw new Error("iconv-lite internal error: invalid decoding table value "+o+" at "+r+"/"+u);if(o>=65536){o-=65536;var h=55296|o>>10;t[c++]=h&255,t[c++]=h>>8,o=56320|o&1023}t[c++]=o&255,t[c++]=o>>8,r=0,i=a+1}return this.nodeIdx=r,this.prevBytes=i>=0?Array.prototype.slice.call(e,i):n.slice(i+s).concat(Array.prototype.slice.call(e)),t.slice(0,c).toString("ucs2")};j2.prototype.end=function(){for(var e="";this.prevBytes.length>0;){e+=this.defaultCharUnicode;var t=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,t.length>0&&(e+=this.write(t))}return this.prevBytes=[],this.nodeIdx=0,e};function J2(e,t){if(e[0]>t)return-1;for(var r=0,n=e.length;r>1);e[s]<=t?r=s:n=s}return r}});var HJ=b((kut,y4e)=>{y4e.exports=[["0","\0",128],["a1","\uFF61",62],["8140","\u3000\u3001\u3002\uFF0C\uFF0E\u30FB\uFF1A\uFF1B\uFF1F\uFF01\u309B\u309C\xB4\uFF40\xA8\uFF3E\uFFE3\uFF3F\u30FD\u30FE\u309D\u309E\u3003\u4EDD\u3005\u3006\u3007\u30FC\u2015\u2010\uFF0F\uFF3C\uFF5E\u2225\uFF5C\u2026\u2025\u2018\u2019\u201C\u201D\uFF08\uFF09\u3014\u3015\uFF3B\uFF3D\uFF5B\uFF5D\u3008",9,"\uFF0B\uFF0D\xB1\xD7"],["8180","\xF7\uFF1D\u2260\uFF1C\uFF1E\u2266\u2267\u221E\u2234\u2642\u2640\xB0\u2032\u2033\u2103\uFFE5\uFF04\uFFE0\uFFE1\uFF05\uFF03\uFF06\uFF0A\uFF20\xA7\u2606\u2605\u25CB\u25CF\u25CE\u25C7\u25C6\u25A1\u25A0\u25B3\u25B2\u25BD\u25BC\u203B\u3012\u2192\u2190\u2191\u2193\u3013"],["81b8","\u2208\u220B\u2286\u2287\u2282\u2283\u222A\u2229"],["81c8","\u2227\u2228\uFFE2\u21D2\u21D4\u2200\u2203"],["81da","\u2220\u22A5\u2312\u2202\u2207\u2261\u2252\u226A\u226B\u221A\u223D\u221D\u2235\u222B\u222C"],["81f0","\u212B\u2030\u266F\u266D\u266A\u2020\u2021\xB6"],["81fc","\u25EF"],["824f","\uFF10",9],["8260","\uFF21",25],["8281","\uFF41",25],["829f","\u3041",82],["8340","\u30A1",62],["8380","\u30E0",22],["839f","\u0391",16,"\u03A3",6],["83bf","\u03B1",16,"\u03C3",6],["8440","\u0410",5,"\u0401\u0416",25],["8470","\u0430",5,"\u0451\u0436",7],["8480","\u043E",17],["849f","\u2500\u2502\u250C\u2510\u2518\u2514\u251C\u252C\u2524\u2534\u253C\u2501\u2503\u250F\u2513\u251B\u2517\u2523\u2533\u252B\u253B\u254B\u2520\u252F\u2528\u2537\u253F\u251D\u2530\u2525\u2538\u2542"],["8740","\u2460",19,"\u2160",9],["875f","\u3349\u3314\u3322\u334D\u3318\u3327\u3303\u3336\u3351\u3357\u330D\u3326\u3323\u332B\u334A\u333B\u339C\u339D\u339E\u338E\u338F\u33C4\u33A1"],["877e","\u337B"],["8780","\u301D\u301F\u2116\u33CD\u2121\u32A4",4,"\u3231\u3232\u3239\u337E\u337D\u337C\u2252\u2261\u222B\u222E\u2211\u221A\u22A5\u2220\u221F\u22BF\u2235\u2229\u222A"],["889f","\u4E9C\u5516\u5A03\u963F\u54C0\u611B\u6328\u59F6\u9022\u8475\u831C\u7A50\u60AA\u63E1\u6E25\u65ED\u8466\u82A6\u9BF5\u6893\u5727\u65A1\u6271\u5B9B\u59D0\u867B\u98F4\u7D62\u7DBE\u9B8E\u6216\u7C9F\u88B7\u5B89\u5EB5\u6309\u6697\u6848\u95C7\u978D\u674F\u4EE5\u4F0A\u4F4D\u4F9D\u5049\u56F2\u5937\u59D4\u5A01\u5C09\u60DF\u610F\u6170\u6613\u6905\u70BA\u754F\u7570\u79FB\u7DAD\u7DEF\u80C3\u840E\u8863\u8B02\u9055\u907A\u533B\u4E95\u4EA5\u57DF\u80B2\u90C1\u78EF\u4E00\u58F1\u6EA2\u9038\u7A32\u8328\u828B\u9C2F\u5141\u5370\u54BD\u54E1\u56E0\u59FB\u5F15\u98F2\u6DEB\u80E4\u852D"],["8940","\u9662\u9670\u96A0\u97FB\u540B\u53F3\u5B87\u70CF\u7FBD\u8FC2\u96E8\u536F\u9D5C\u7ABA\u4E11\u7893\u81FC\u6E26\u5618\u5504\u6B1D\u851A\u9C3B\u59E5\u53A9\u6D66\u74DC\u958F\u5642\u4E91\u904B\u96F2\u834F\u990C\u53E1\u55B6\u5B30\u5F71\u6620\u66F3\u6804\u6C38\u6CF3\u6D29\u745B\u76C8\u7A4E\u9834\u82F1\u885B\u8A60\u92ED\u6DB2\u75AB\u76CA\u99C5\u60A6\u8B01\u8D8A\u95B2\u698E\u53AD\u5186"],["8980","\u5712\u5830\u5944\u5BB4\u5EF6\u6028\u63A9\u63F4\u6CBF\u6F14\u708E\u7114\u7159\u71D5\u733F\u7E01\u8276\u82D1\u8597\u9060\u925B\u9D1B\u5869\u65BC\u6C5A\u7525\u51F9\u592E\u5965\u5F80\u5FDC\u62BC\u65FA\u6A2A\u6B27\u6BB4\u738B\u7FC1\u8956\u9D2C\u9D0E\u9EC4\u5CA1\u6C96\u837B\u5104\u5C4B\u61B6\u81C6\u6876\u7261\u4E59\u4FFA\u5378\u6069\u6E29\u7A4F\u97F3\u4E0B\u5316\u4EEE\u4F55\u4F3D\u4FA1\u4F73\u52A0\u53EF\u5609\u590F\u5AC1\u5BB6\u5BE1\u79D1\u6687\u679C\u67B6\u6B4C\u6CB3\u706B\u73C2\u798D\u79BE\u7A3C\u7B87\u82B1\u82DB\u8304\u8377\u83EF\u83D3\u8766\u8AB2\u5629\u8CA8\u8FE6\u904E\u971E\u868A\u4FC4\u5CE8\u6211\u7259\u753B\u81E5\u82BD\u86FE\u8CC0\u96C5\u9913\u99D5\u4ECB\u4F1A\u89E3\u56DE\u584A\u58CA\u5EFB\u5FEB\u602A\u6094\u6062\u61D0\u6212\u62D0\u6539"],["8a40","\u9B41\u6666\u68B0\u6D77\u7070\u754C\u7686\u7D75\u82A5\u87F9\u958B\u968E\u8C9D\u51F1\u52BE\u5916\u54B3\u5BB3\u5D16\u6168\u6982\u6DAF\u788D\u84CB\u8857\u8A72\u93A7\u9AB8\u6D6C\u99A8\u86D9\u57A3\u67FF\u86CE\u920E\u5283\u5687\u5404\u5ED3\u62E1\u64B9\u683C\u6838\u6BBB\u7372\u78BA\u7A6B\u899A\u89D2\u8D6B\u8F03\u90ED\u95A3\u9694\u9769\u5B66\u5CB3\u697D\u984D\u984E\u639B\u7B20\u6A2B"],["8a80","\u6A7F\u68B6\u9C0D\u6F5F\u5272\u559D\u6070\u62EC\u6D3B\u6E07\u6ED1\u845B\u8910\u8F44\u4E14\u9C39\u53F6\u691B\u6A3A\u9784\u682A\u515C\u7AC3\u84B2\u91DC\u938C\u565B\u9D28\u6822\u8305\u8431\u7CA5\u5208\u82C5\u74E6\u4E7E\u4F83\u51A0\u5BD2\u520A\u52D8\u52E7\u5DFB\u559A\u582A\u59E6\u5B8C\u5B98\u5BDB\u5E72\u5E79\u60A3\u611F\u6163\u61BE\u63DB\u6562\u67D1\u6853\u68FA\u6B3E\u6B53\u6C57\u6F22\u6F97\u6F45\u74B0\u7518\u76E3\u770B\u7AFF\u7BA1\u7C21\u7DE9\u7F36\u7FF0\u809D\u8266\u839E\u89B3\u8ACC\u8CAB\u9084\u9451\u9593\u9591\u95A2\u9665\u97D3\u9928\u8218\u4E38\u542B\u5CB8\u5DCC\u73A9\u764C\u773C\u5CA9\u7FEB\u8D0B\u96C1\u9811\u9854\u9858\u4F01\u4F0E\u5371\u559C\u5668\u57FA\u5947\u5B09\u5BC4\u5C90\u5E0C\u5E7E\u5FCC\u63EE\u673A\u65D7\u65E2\u671F\u68CB\u68C4"],["8b40","\u6A5F\u5E30\u6BC5\u6C17\u6C7D\u757F\u7948\u5B63\u7A00\u7D00\u5FBD\u898F\u8A18\u8CB4\u8D77\u8ECC\u8F1D\u98E2\u9A0E\u9B3C\u4E80\u507D\u5100\u5993\u5B9C\u622F\u6280\u64EC\u6B3A\u72A0\u7591\u7947\u7FA9\u87FB\u8ABC\u8B70\u63AC\u83CA\u97A0\u5409\u5403\u55AB\u6854\u6A58\u8A70\u7827\u6775\u9ECD\u5374\u5BA2\u811A\u8650\u9006\u4E18\u4E45\u4EC7\u4F11\u53CA\u5438\u5BAE\u5F13\u6025\u6551"],["8b80","\u673D\u6C42\u6C72\u6CE3\u7078\u7403\u7A76\u7AAE\u7B08\u7D1A\u7CFE\u7D66\u65E7\u725B\u53BB\u5C45\u5DE8\u62D2\u62E0\u6319\u6E20\u865A\u8A31\u8DDD\u92F8\u6F01\u79A6\u9B5A\u4EA8\u4EAB\u4EAC\u4F9B\u4FA0\u50D1\u5147\u7AF6\u5171\u51F6\u5354\u5321\u537F\u53EB\u55AC\u5883\u5CE1\u5F37\u5F4A\u602F\u6050\u606D\u631F\u6559\u6A4B\u6CC1\u72C2\u72ED\u77EF\u80F8\u8105\u8208\u854E\u90F7\u93E1\u97FF\u9957\u9A5A\u4EF0\u51DD\u5C2D\u6681\u696D\u5C40\u66F2\u6975\u7389\u6850\u7C81\u50C5\u52E4\u5747\u5DFE\u9326\u65A4\u6B23\u6B3D\u7434\u7981\u79BD\u7B4B\u7DCA\u82B9\u83CC\u887F\u895F\u8B39\u8FD1\u91D1\u541F\u9280\u4E5D\u5036\u53E5\u533A\u72D7\u7396\u77E9\u82E6\u8EAF\u99C6\u99C8\u99D2\u5177\u611A\u865E\u55B0\u7A7A\u5076\u5BD3\u9047\u9685\u4E32\u6ADB\u91E7\u5C51\u5C48"],["8c40","\u6398\u7A9F\u6C93\u9774\u8F61\u7AAA\u718A\u9688\u7C82\u6817\u7E70\u6851\u936C\u52F2\u541B\u85AB\u8A13\u7FA4\u8ECD\u90E1\u5366\u8888\u7941\u4FC2\u50BE\u5211\u5144\u5553\u572D\u73EA\u578B\u5951\u5F62\u5F84\u6075\u6176\u6167\u61A9\u63B2\u643A\u656C\u666F\u6842\u6E13\u7566\u7A3D\u7CFB\u7D4C\u7D99\u7E4B\u7F6B\u830E\u834A\u86CD\u8A08\u8A63\u8B66\u8EFD\u981A\u9D8F\u82B8\u8FCE\u9BE8"],["8c80","\u5287\u621F\u6483\u6FC0\u9699\u6841\u5091\u6B20\u6C7A\u6F54\u7A74\u7D50\u8840\u8A23\u6708\u4EF6\u5039\u5026\u5065\u517C\u5238\u5263\u55A7\u570F\u5805\u5ACC\u5EFA\u61B2\u61F8\u62F3\u6372\u691C\u6A29\u727D\u72AC\u732E\u7814\u786F\u7D79\u770C\u80A9\u898B\u8B19\u8CE2\u8ED2\u9063\u9375\u967A\u9855\u9A13\u9E78\u5143\u539F\u53B3\u5E7B\u5F26\u6E1B\u6E90\u7384\u73FE\u7D43\u8237\u8A00\u8AFA\u9650\u4E4E\u500B\u53E4\u547C\u56FA\u59D1\u5B64\u5DF1\u5EAB\u5F27\u6238\u6545\u67AF\u6E56\u72D0\u7CCA\u88B4\u80A1\u80E1\u83F0\u864E\u8A87\u8DE8\u9237\u96C7\u9867\u9F13\u4E94\u4E92\u4F0D\u5348\u5449\u543E\u5A2F\u5F8C\u5FA1\u609F\u68A7\u6A8E\u745A\u7881\u8A9E\u8AA4\u8B77\u9190\u4E5E\u9BC9\u4EA4\u4F7C\u4FAF\u5019\u5016\u5149\u516C\u529F\u52B9\u52FE\u539A\u53E3\u5411"],["8d40","\u540E\u5589\u5751\u57A2\u597D\u5B54\u5B5D\u5B8F\u5DE5\u5DE7\u5DF7\u5E78\u5E83\u5E9A\u5EB7\u5F18\u6052\u614C\u6297\u62D8\u63A7\u653B\u6602\u6643\u66F4\u676D\u6821\u6897\u69CB\u6C5F\u6D2A\u6D69\u6E2F\u6E9D\u7532\u7687\u786C\u7A3F\u7CE0\u7D05\u7D18\u7D5E\u7DB1\u8015\u8003\u80AF\u80B1\u8154\u818F\u822A\u8352\u884C\u8861\u8B1B\u8CA2\u8CFC\u90CA\u9175\u9271\u783F\u92FC\u95A4\u964D"],["8d80","\u9805\u9999\u9AD8\u9D3B\u525B\u52AB\u53F7\u5408\u58D5\u62F7\u6FE0\u8C6A\u8F5F\u9EB9\u514B\u523B\u544A\u56FD\u7A40\u9177\u9D60\u9ED2\u7344\u6F09\u8170\u7511\u5FFD\u60DA\u9AA8\u72DB\u8FBC\u6B64\u9803\u4ECA\u56F0\u5764\u58BE\u5A5A\u6068\u61C7\u660F\u6606\u6839\u68B1\u6DF7\u75D5\u7D3A\u826E\u9B42\u4E9B\u4F50\u53C9\u5506\u5D6F\u5DE6\u5DEE\u67FB\u6C99\u7473\u7802\u8A50\u9396\u88DF\u5750\u5EA7\u632B\u50B5\u50AC\u518D\u6700\u54C9\u585E\u59BB\u5BB0\u5F69\u624D\u63A1\u683D\u6B73\u6E08\u707D\u91C7\u7280\u7815\u7826\u796D\u658E\u7D30\u83DC\u88C1\u8F09\u969B\u5264\u5728\u6750\u7F6A\u8CA1\u51B4\u5742\u962A\u583A\u698A\u80B4\u54B2\u5D0E\u57FC\u7895\u9DFA\u4F5C\u524A\u548B\u643E\u6628\u6714\u67F5\u7A84\u7B56\u7D22\u932F\u685C\u9BAD\u7B39\u5319\u518A\u5237"],["8e40","\u5BDF\u62F6\u64AE\u64E6\u672D\u6BBA\u85A9\u96D1\u7690\u9BD6\u634C\u9306\u9BAB\u76BF\u6652\u4E09\u5098\u53C2\u5C71\u60E8\u6492\u6563\u685F\u71E6\u73CA\u7523\u7B97\u7E82\u8695\u8B83\u8CDB\u9178\u9910\u65AC\u66AB\u6B8B\u4ED5\u4ED4\u4F3A\u4F7F\u523A\u53F8\u53F2\u55E3\u56DB\u58EB\u59CB\u59C9\u59FF\u5B50\u5C4D\u5E02\u5E2B\u5FD7\u601D\u6307\u652F\u5B5C\u65AF\u65BD\u65E8\u679D\u6B62"],["8e80","\u6B7B\u6C0F\u7345\u7949\u79C1\u7CF8\u7D19\u7D2B\u80A2\u8102\u81F3\u8996\u8A5E\u8A69\u8A66\u8A8C\u8AEE\u8CC7\u8CDC\u96CC\u98FC\u6B6F\u4E8B\u4F3C\u4F8D\u5150\u5B57\u5BFA\u6148\u6301\u6642\u6B21\u6ECB\u6CBB\u723E\u74BD\u75D4\u78C1\u793A\u800C\u8033\u81EA\u8494\u8F9E\u6C50\u9E7F\u5F0F\u8B58\u9D2B\u7AFA\u8EF8\u5B8D\u96EB\u4E03\u53F1\u57F7\u5931\u5AC9\u5BA4\u6089\u6E7F\u6F06\u75BE\u8CEA\u5B9F\u8500\u7BE0\u5072\u67F4\u829D\u5C61\u854A\u7E1E\u820E\u5199\u5C04\u6368\u8D66\u659C\u716E\u793E\u7D17\u8005\u8B1D\u8ECA\u906E\u86C7\u90AA\u501F\u52FA\u5C3A\u6753\u707C\u7235\u914C\u91C8\u932B\u82E5\u5BC2\u5F31\u60F9\u4E3B\u53D6\u5B88\u624B\u6731\u6B8A\u72E9\u73E0\u7A2E\u816B\u8DA3\u9152\u9996\u5112\u53D7\u546A\u5BFF\u6388\u6A39\u7DAC\u9700\u56DA\u53CE\u5468"],["8f40","\u5B97\u5C31\u5DDE\u4FEE\u6101\u62FE\u6D32\u79C0\u79CB\u7D42\u7E4D\u7FD2\u81ED\u821F\u8490\u8846\u8972\u8B90\u8E74\u8F2F\u9031\u914B\u916C\u96C6\u919C\u4EC0\u4F4F\u5145\u5341\u5F93\u620E\u67D4\u6C41\u6E0B\u7363\u7E26\u91CD\u9283\u53D4\u5919\u5BBF\u6DD1\u795D\u7E2E\u7C9B\u587E\u719F\u51FA\u8853\u8FF0\u4FCA\u5CFB\u6625\u77AC\u7AE3\u821C\u99FF\u51C6\u5FAA\u65EC\u696F\u6B89\u6DF3"],["8f80","\u6E96\u6F64\u76FE\u7D14\u5DE1\u9075\u9187\u9806\u51E6\u521D\u6240\u6691\u66D9\u6E1A\u5EB6\u7DD2\u7F72\u66F8\u85AF\u85F7\u8AF8\u52A9\u53D9\u5973\u5E8F\u5F90\u6055\u92E4\u9664\u50B7\u511F\u52DD\u5320\u5347\u53EC\u54E8\u5546\u5531\u5617\u5968\u59BE\u5A3C\u5BB5\u5C06\u5C0F\u5C11\u5C1A\u5E84\u5E8A\u5EE0\u5F70\u627F\u6284\u62DB\u638C\u6377\u6607\u660C\u662D\u6676\u677E\u68A2\u6A1F\u6A35\u6CBC\u6D88\u6E09\u6E58\u713C\u7126\u7167\u75C7\u7701\u785D\u7901\u7965\u79F0\u7AE0\u7B11\u7CA7\u7D39\u8096\u83D6\u848B\u8549\u885D\u88F3\u8A1F\u8A3C\u8A54\u8A73\u8C61\u8CDE\u91A4\u9266\u937E\u9418\u969C\u9798\u4E0A\u4E08\u4E1E\u4E57\u5197\u5270\u57CE\u5834\u58CC\u5B22\u5E38\u60C5\u64FE\u6761\u6756\u6D44\u72B6\u7573\u7A63\u84B8\u8B72\u91B8\u9320\u5631\u57F4\u98FE"],["9040","\u62ED\u690D\u6B96\u71ED\u7E54\u8077\u8272\u89E6\u98DF\u8755\u8FB1\u5C3B\u4F38\u4FE1\u4FB5\u5507\u5A20\u5BDD\u5BE9\u5FC3\u614E\u632F\u65B0\u664B\u68EE\u699B\u6D78\u6DF1\u7533\u75B9\u771F\u795E\u79E6\u7D33\u81E3\u82AF\u85AA\u89AA\u8A3A\u8EAB\u8F9B\u9032\u91DD\u9707\u4EBA\u4EC1\u5203\u5875\u58EC\u5C0B\u751A\u5C3D\u814E\u8A0A\u8FC5\u9663\u976D\u7B25\u8ACF\u9808\u9162\u56F3\u53A8"],["9080","\u9017\u5439\u5782\u5E25\u63A8\u6C34\u708A\u7761\u7C8B\u7FE0\u8870\u9042\u9154\u9310\u9318\u968F\u745E\u9AC4\u5D07\u5D69\u6570\u67A2\u8DA8\u96DB\u636E\u6749\u6919\u83C5\u9817\u96C0\u88FE\u6F84\u647A\u5BF8\u4E16\u702C\u755D\u662F\u51C4\u5236\u52E2\u59D3\u5F81\u6027\u6210\u653F\u6574\u661F\u6674\u68F2\u6816\u6B63\u6E05\u7272\u751F\u76DB\u7CBE\u8056\u58F0\u88FD\u897F\u8AA0\u8A93\u8ACB\u901D\u9192\u9752\u9759\u6589\u7A0E\u8106\u96BB\u5E2D\u60DC\u621A\u65A5\u6614\u6790\u77F3\u7A4D\u7C4D\u7E3E\u810A\u8CAC\u8D64\u8DE1\u8E5F\u78A9\u5207\u62D9\u63A5\u6442\u6298\u8A2D\u7A83\u7BC0\u8AAC\u96EA\u7D76\u820C\u8749\u4ED9\u5148\u5343\u5360\u5BA3\u5C02\u5C16\u5DDD\u6226\u6247\u64B0\u6813\u6834\u6CC9\u6D45\u6D17\u67D3\u6F5C\u714E\u717D\u65CB\u7A7F\u7BAD\u7DDA"],["9140","\u7E4A\u7FA8\u817A\u821B\u8239\u85A6\u8A6E\u8CCE\u8DF5\u9078\u9077\u92AD\u9291\u9583\u9BAE\u524D\u5584\u6F38\u7136\u5168\u7985\u7E55\u81B3\u7CCE\u564C\u5851\u5CA8\u63AA\u66FE\u66FD\u695A\u72D9\u758F\u758E\u790E\u7956\u79DF\u7C97\u7D20\u7D44\u8607\u8A34\u963B\u9061\u9F20\u50E7\u5275\u53CC\u53E2\u5009\u55AA\u58EE\u594F\u723D\u5B8B\u5C64\u531D\u60E3\u60F3\u635C\u6383\u633F\u63BB"],["9180","\u64CD\u65E9\u66F9\u5DE3\u69CD\u69FD\u6F15\u71E5\u4E89\u75E9\u76F8\u7A93\u7CDF\u7DCF\u7D9C\u8061\u8349\u8358\u846C\u84BC\u85FB\u88C5\u8D70\u9001\u906D\u9397\u971C\u9A12\u50CF\u5897\u618E\u81D3\u8535\u8D08\u9020\u4FC3\u5074\u5247\u5373\u606F\u6349\u675F\u6E2C\u8DB3\u901F\u4FD7\u5C5E\u8CCA\u65CF\u7D9A\u5352\u8896\u5176\u63C3\u5B58\u5B6B\u5C0A\u640D\u6751\u905C\u4ED6\u591A\u592A\u6C70\u8A51\u553E\u5815\u59A5\u60F0\u6253\u67C1\u8235\u6955\u9640\u99C4\u9A28\u4F53\u5806\u5BFE\u8010\u5CB1\u5E2F\u5F85\u6020\u614B\u6234\u66FF\u6CF0\u6EDE\u80CE\u817F\u82D4\u888B\u8CB8\u9000\u902E\u968A\u9EDB\u9BDB\u4EE3\u53F0\u5927\u7B2C\u918D\u984C\u9DF9\u6EDD\u7027\u5353\u5544\u5B85\u6258\u629E\u62D3\u6CA2\u6FEF\u7422\u8A17\u9438\u6FC1\u8AFE\u8338\u51E7\u86F8\u53EA"],["9240","\u53E9\u4F46\u9054\u8FB0\u596A\u8131\u5DFD\u7AEA\u8FBF\u68DA\u8C37\u72F8\u9C48\u6A3D\u8AB0\u4E39\u5358\u5606\u5766\u62C5\u63A2\u65E6\u6B4E\u6DE1\u6E5B\u70AD\u77ED\u7AEF\u7BAA\u7DBB\u803D\u80C6\u86CB\u8A95\u935B\u56E3\u58C7\u5F3E\u65AD\u6696\u6A80\u6BB5\u7537\u8AC7\u5024\u77E5\u5730\u5F1B\u6065\u667A\u6C60\u75F4\u7A1A\u7F6E\u81F4\u8718\u9045\u99B3\u7BC9\u755C\u7AF9\u7B51\u84C4"],["9280","\u9010\u79E9\u7A92\u8336\u5AE1\u7740\u4E2D\u4EF2\u5B99\u5FE0\u62BD\u663C\u67F1\u6CE8\u866B\u8877\u8A3B\u914E\u92F3\u99D0\u6A17\u7026\u732A\u82E7\u8457\u8CAF\u4E01\u5146\u51CB\u558B\u5BF5\u5E16\u5E33\u5E81\u5F14\u5F35\u5F6B\u5FB4\u61F2\u6311\u66A2\u671D\u6F6E\u7252\u753A\u773A\u8074\u8139\u8178\u8776\u8ABF\u8ADC\u8D85\u8DF3\u929A\u9577\u9802\u9CE5\u52C5\u6357\u76F4\u6715\u6C88\u73CD\u8CC3\u93AE\u9673\u6D25\u589C\u690E\u69CC\u8FFD\u939A\u75DB\u901A\u585A\u6802\u63B4\u69FB\u4F43\u6F2C\u67D8\u8FBB\u8526\u7DB4\u9354\u693F\u6F70\u576A\u58F7\u5B2C\u7D2C\u722A\u540A\u91E3\u9DB4\u4EAD\u4F4E\u505C\u5075\u5243\u8C9E\u5448\u5824\u5B9A\u5E1D\u5E95\u5EAD\u5EF7\u5F1F\u608C\u62B5\u633A\u63D0\u68AF\u6C40\u7887\u798E\u7A0B\u7DE0\u8247\u8A02\u8AE6\u8E44\u9013"],["9340","\u90B8\u912D\u91D8\u9F0E\u6CE5\u6458\u64E2\u6575\u6EF4\u7684\u7B1B\u9069\u93D1\u6EBA\u54F2\u5FB9\u64A4\u8F4D\u8FED\u9244\u5178\u586B\u5929\u5C55\u5E97\u6DFB\u7E8F\u751C\u8CBC\u8EE2\u985B\u70B9\u4F1D\u6BBF\u6FB1\u7530\u96FB\u514E\u5410\u5835\u5857\u59AC\u5C60\u5F92\u6597\u675C\u6E21\u767B\u83DF\u8CED\u9014\u90FD\u934D\u7825\u783A\u52AA\u5EA6\u571F\u5974\u6012\u5012\u515A\u51AC"],["9380","\u51CD\u5200\u5510\u5854\u5858\u5957\u5B95\u5CF6\u5D8B\u60BC\u6295\u642D\u6771\u6843\u68BC\u68DF\u76D7\u6DD8\u6E6F\u6D9B\u706F\u71C8\u5F53\u75D8\u7977\u7B49\u7B54\u7B52\u7CD6\u7D71\u5230\u8463\u8569\u85E4\u8A0E\u8B04\u8C46\u8E0F\u9003\u900F\u9419\u9676\u982D\u9A30\u95D8\u50CD\u52D5\u540C\u5802\u5C0E\u61A7\u649E\u6D1E\u77B3\u7AE5\u80F4\u8404\u9053\u9285\u5CE0\u9D07\u533F\u5F97\u5FB3\u6D9C\u7279\u7763\u79BF\u7BE4\u6BD2\u72EC\u8AAD\u6803\u6A61\u51F8\u7A81\u6934\u5C4A\u9CF6\u82EB\u5BC5\u9149\u701E\u5678\u5C6F\u60C7\u6566\u6C8C\u8C5A\u9041\u9813\u5451\u66C7\u920D\u5948\u90A3\u5185\u4E4D\u51EA\u8599\u8B0E\u7058\u637A\u934B\u6962\u99B4\u7E04\u7577\u5357\u6960\u8EDF\u96E3\u6C5D\u4E8C\u5C3C\u5F10\u8FE9\u5302\u8CD1\u8089\u8679\u5EFF\u65E5\u4E73\u5165"],["9440","\u5982\u5C3F\u97EE\u4EFB\u598A\u5FCD\u8A8D\u6FE1\u79B0\u7962\u5BE7\u8471\u732B\u71B1\u5E74\u5FF5\u637B\u649A\u71C3\u7C98\u4E43\u5EFC\u4E4B\u57DC\u56A2\u60A9\u6FC3\u7D0D\u80FD\u8133\u81BF\u8FB2\u8997\u86A4\u5DF4\u628A\u64AD\u8987\u6777\u6CE2\u6D3E\u7436\u7834\u5A46\u7F75\u82AD\u99AC\u4FF3\u5EC3\u62DD\u6392\u6557\u676F\u76C3\u724C\u80CC\u80BA\u8F29\u914D\u500D\u57F9\u5A92\u6885"],["9480","\u6973\u7164\u72FD\u8CB7\u58F2\u8CE0\u966A\u9019\u877F\u79E4\u77E7\u8429\u4F2F\u5265\u535A\u62CD\u67CF\u6CCA\u767D\u7B94\u7C95\u8236\u8584\u8FEB\u66DD\u6F20\u7206\u7E1B\u83AB\u99C1\u9EA6\u51FD\u7BB1\u7872\u7BB8\u8087\u7B48\u6AE8\u5E61\u808C\u7551\u7560\u516B\u9262\u6E8C\u767A\u9197\u9AEA\u4F10\u7F70\u629C\u7B4F\u95A5\u9CE9\u567A\u5859\u86E4\u96BC\u4F34\u5224\u534A\u53CD\u53DB\u5E06\u642C\u6591\u677F\u6C3E\u6C4E\u7248\u72AF\u73ED\u7554\u7E41\u822C\u85E9\u8CA9\u7BC4\u91C6\u7169\u9812\u98EF\u633D\u6669\u756A\u76E4\u78D0\u8543\u86EE\u532A\u5351\u5426\u5983\u5E87\u5F7C\u60B2\u6249\u6279\u62AB\u6590\u6BD4\u6CCC\u75B2\u76AE\u7891\u79D8\u7DCB\u7F77\u80A5\u88AB\u8AB9\u8CBB\u907F\u975E\u98DB\u6A0B\u7C38\u5099\u5C3E\u5FAE\u6787\u6BD8\u7435\u7709\u7F8E"],["9540","\u9F3B\u67CA\u7A17\u5339\u758B\u9AED\u5F66\u819D\u83F1\u8098\u5F3C\u5FC5\u7562\u7B46\u903C\u6867\u59EB\u5A9B\u7D10\u767E\u8B2C\u4FF5\u5F6A\u6A19\u6C37\u6F02\u74E2\u7968\u8868\u8A55\u8C79\u5EDF\u63CF\u75C5\u79D2\u82D7\u9328\u92F2\u849C\u86ED\u9C2D\u54C1\u5F6C\u658C\u6D5C\u7015\u8CA7\u8CD3\u983B\u654F\u74F6\u4E0D\u4ED8\u57E0\u592B\u5A66\u5BCC\u51A8\u5E03\u5E9C\u6016\u6276\u6577"],["9580","\u65A7\u666E\u6D6E\u7236\u7B26\u8150\u819A\u8299\u8B5C\u8CA0\u8CE6\u8D74\u961C\u9644\u4FAE\u64AB\u6B66\u821E\u8461\u856A\u90E8\u5C01\u6953\u98A8\u847A\u8557\u4F0F\u526F\u5FA9\u5E45\u670D\u798F\u8179\u8907\u8986\u6DF5\u5F17\u6255\u6CB8\u4ECF\u7269\u9B92\u5206\u543B\u5674\u58B3\u61A4\u626E\u711A\u596E\u7C89\u7CDE\u7D1B\u96F0\u6587\u805E\u4E19\u4F75\u5175\u5840\u5E63\u5E73\u5F0A\u67C4\u4E26\u853D\u9589\u965B\u7C73\u9801\u50FB\u58C1\u7656\u78A7\u5225\u77A5\u8511\u7B86\u504F\u5909\u7247\u7BC7\u7DE8\u8FBA\u8FD4\u904D\u4FBF\u52C9\u5A29\u5F01\u97AD\u4FDD\u8217\u92EA\u5703\u6355\u6B69\u752B\u88DC\u8F14\u7A42\u52DF\u5893\u6155\u620A\u66AE\u6BCD\u7C3F\u83E9\u5023\u4FF8\u5305\u5446\u5831\u5949\u5B9D\u5CF0\u5CEF\u5D29\u5E96\u62B1\u6367\u653E\u65B9\u670B"],["9640","\u6CD5\u6CE1\u70F9\u7832\u7E2B\u80DE\u82B3\u840C\u84EC\u8702\u8912\u8A2A\u8C4A\u90A6\u92D2\u98FD\u9CF3\u9D6C\u4E4F\u4EA1\u508D\u5256\u574A\u59A8\u5E3D\u5FD8\u5FD9\u623F\u66B4\u671B\u67D0\u68D2\u5192\u7D21\u80AA\u81A8\u8B00\u8C8C\u8CBF\u927E\u9632\u5420\u982C\u5317\u50D5\u535C\u58A8\u64B2\u6734\u7267\u7766\u7A46\u91E6\u52C3\u6CA1\u6B86\u5800\u5E4C\u5954\u672C\u7FFB\u51E1\u76C6"],["9680","\u6469\u78E8\u9B54\u9EBB\u57CB\u59B9\u6627\u679A\u6BCE\u54E9\u69D9\u5E55\u819C\u6795\u9BAA\u67FE\u9C52\u685D\u4EA6\u4FE3\u53C8\u62B9\u672B\u6CAB\u8FC4\u4FAD\u7E6D\u9EBF\u4E07\u6162\u6E80\u6F2B\u8513\u5473\u672A\u9B45\u5DF3\u7B95\u5CAC\u5BC6\u871C\u6E4A\u84D1\u7A14\u8108\u5999\u7C8D\u6C11\u7720\u52D9\u5922\u7121\u725F\u77DB\u9727\u9D61\u690B\u5A7F\u5A18\u51A5\u540D\u547D\u660E\u76DF\u8FF7\u9298\u9CF4\u59EA\u725D\u6EC5\u514D\u68C9\u7DBF\u7DEC\u9762\u9EBA\u6478\u6A21\u8302\u5984\u5B5F\u6BDB\u731B\u76F2\u7DB2\u8017\u8499\u5132\u6728\u9ED9\u76EE\u6762\u52FF\u9905\u5C24\u623B\u7C7E\u8CB0\u554F\u60B6\u7D0B\u9580\u5301\u4E5F\u51B6\u591C\u723A\u8036\u91CE\u5F25\u77E2\u5384\u5F79\u7D04\u85AC\u8A33\u8E8D\u9756\u67F3\u85AE\u9453\u6109\u6108\u6CB9\u7652"],["9740","\u8AED\u8F38\u552F\u4F51\u512A\u52C7\u53CB\u5BA5\u5E7D\u60A0\u6182\u63D6\u6709\u67DA\u6E67\u6D8C\u7336\u7337\u7531\u7950\u88D5\u8A98\u904A\u9091\u90F5\u96C4\u878D\u5915\u4E88\u4F59\u4E0E\u8A89\u8F3F\u9810\u50AD\u5E7C\u5996\u5BB9\u5EB8\u63DA\u63FA\u64C1\u66DC\u694A\u69D8\u6D0B\u6EB6\u7194\u7528\u7AAF\u7F8A\u8000\u8449\u84C9\u8981\u8B21\u8E0A\u9065\u967D\u990A\u617E\u6291\u6B32"],["9780","\u6C83\u6D74\u7FCC\u7FFC\u6DC0\u7F85\u87BA\u88F8\u6765\u83B1\u983C\u96F7\u6D1B\u7D61\u843D\u916A\u4E71\u5375\u5D50\u6B04\u6FEB\u85CD\u862D\u89A7\u5229\u540F\u5C65\u674E\u68A8\u7406\u7483\u75E2\u88CF\u88E1\u91CC\u96E2\u9678\u5F8B\u7387\u7ACB\u844E\u63A0\u7565\u5289\u6D41\u6E9C\u7409\u7559\u786B\u7C92\u9686\u7ADC\u9F8D\u4FB6\u616E\u65C5\u865C\u4E86\u4EAE\u50DA\u4E21\u51CC\u5BEE\u6599\u6881\u6DBC\u731F\u7642\u77AD\u7A1C\u7CE7\u826F\u8AD2\u907C\u91CF\u9675\u9818\u529B\u7DD1\u502B\u5398\u6797\u6DCB\u71D0\u7433\u81E8\u8F2A\u96A3\u9C57\u9E9F\u7460\u5841\u6D99\u7D2F\u985E\u4EE4\u4F36\u4F8B\u51B7\u52B1\u5DBA\u601C\u73B2\u793C\u82D3\u9234\u96B7\u96F6\u970A\u9E97\u9F62\u66A6\u6B74\u5217\u52A3\u70C8\u88C2\u5EC9\u604B\u6190\u6F23\u7149\u7C3E\u7DF4\u806F"],["9840","\u84EE\u9023\u932C\u5442\u9B6F\u6AD3\u7089\u8CC2\u8DEF\u9732\u52B4\u5A41\u5ECA\u5F04\u6717\u697C\u6994\u6D6A\u6F0F\u7262\u72FC\u7BED\u8001\u807E\u874B\u90CE\u516D\u9E93\u7984\u808B\u9332\u8AD6\u502D\u548C\u8A71\u6B6A\u8CC4\u8107\u60D1\u67A0\u9DF2\u4E99\u4E98\u9C10\u8A6B\u85C1\u8568\u6900\u6E7E\u7897\u8155"],["989f","\u5F0C\u4E10\u4E15\u4E2A\u4E31\u4E36\u4E3C\u4E3F\u4E42\u4E56\u4E58\u4E82\u4E85\u8C6B\u4E8A\u8212\u5F0D\u4E8E\u4E9E\u4E9F\u4EA0\u4EA2\u4EB0\u4EB3\u4EB6\u4ECE\u4ECD\u4EC4\u4EC6\u4EC2\u4ED7\u4EDE\u4EED\u4EDF\u4EF7\u4F09\u4F5A\u4F30\u4F5B\u4F5D\u4F57\u4F47\u4F76\u4F88\u4F8F\u4F98\u4F7B\u4F69\u4F70\u4F91\u4F6F\u4F86\u4F96\u5118\u4FD4\u4FDF\u4FCE\u4FD8\u4FDB\u4FD1\u4FDA\u4FD0\u4FE4\u4FE5\u501A\u5028\u5014\u502A\u5025\u5005\u4F1C\u4FF6\u5021\u5029\u502C\u4FFE\u4FEF\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505A\u5056\u506C\u5078\u5080\u509A\u5085\u50B4\u50B2"],["9940","\u50C9\u50CA\u50B3\u50C2\u50D6\u50DE\u50E5\u50ED\u50E3\u50EE\u50F9\u50F5\u5109\u5101\u5102\u5116\u5115\u5114\u511A\u5121\u513A\u5137\u513C\u513B\u513F\u5140\u5152\u514C\u5154\u5162\u7AF8\u5169\u516A\u516E\u5180\u5182\u56D8\u518C\u5189\u518F\u5191\u5193\u5195\u5196\u51A4\u51A6\u51A2\u51A9\u51AA\u51AB\u51B3\u51B1\u51B2\u51B0\u51B5\u51BD\u51C5\u51C9\u51DB\u51E0\u8655\u51E9\u51ED"],["9980","\u51F0\u51F5\u51FE\u5204\u520B\u5214\u520E\u5227\u522A\u522E\u5233\u5239\u524F\u5244\u524B\u524C\u525E\u5254\u526A\u5274\u5269\u5273\u527F\u527D\u528D\u5294\u5292\u5271\u5288\u5291\u8FA8\u8FA7\u52AC\u52AD\u52BC\u52B5\u52C1\u52CD\u52D7\u52DE\u52E3\u52E6\u98ED\u52E0\u52F3\u52F5\u52F8\u52F9\u5306\u5308\u7538\u530D\u5310\u530F\u5315\u531A\u5323\u532F\u5331\u5333\u5338\u5340\u5346\u5345\u4E17\u5349\u534D\u51D6\u535E\u5369\u536E\u5918\u537B\u5377\u5382\u5396\u53A0\u53A6\u53A5\u53AE\u53B0\u53B6\u53C3\u7C12\u96D9\u53DF\u66FC\u71EE\u53EE\u53E8\u53ED\u53FA\u5401\u543D\u5440\u542C\u542D\u543C\u542E\u5436\u5429\u541D\u544E\u548F\u5475\u548E\u545F\u5471\u5477\u5470\u5492\u547B\u5480\u5476\u5484\u5490\u5486\u54C7\u54A2\u54B8\u54A5\u54AC\u54C4\u54C8\u54A8"],["9a40","\u54AB\u54C2\u54A4\u54BE\u54BC\u54D8\u54E5\u54E6\u550F\u5514\u54FD\u54EE\u54ED\u54FA\u54E2\u5539\u5540\u5563\u554C\u552E\u555C\u5545\u5556\u5557\u5538\u5533\u555D\u5599\u5580\u54AF\u558A\u559F\u557B\u557E\u5598\u559E\u55AE\u557C\u5583\u55A9\u5587\u55A8\u55DA\u55C5\u55DF\u55C4\u55DC\u55E4\u55D4\u5614\u55F7\u5616\u55FE\u55FD\u561B\u55F9\u564E\u5650\u71DF\u5634\u5636\u5632\u5638"],["9a80","\u566B\u5664\u562F\u566C\u566A\u5686\u5680\u568A\u56A0\u5694\u568F\u56A5\u56AE\u56B6\u56B4\u56C2\u56BC\u56C1\u56C3\u56C0\u56C8\u56CE\u56D1\u56D3\u56D7\u56EE\u56F9\u5700\u56FF\u5704\u5709\u5708\u570B\u570D\u5713\u5718\u5716\u55C7\u571C\u5726\u5737\u5738\u574E\u573B\u5740\u574F\u5769\u57C0\u5788\u5761\u577F\u5789\u5793\u57A0\u57B3\u57A4\u57AA\u57B0\u57C3\u57C6\u57D4\u57D2\u57D3\u580A\u57D6\u57E3\u580B\u5819\u581D\u5872\u5821\u5862\u584B\u5870\u6BC0\u5852\u583D\u5879\u5885\u58B9\u589F\u58AB\u58BA\u58DE\u58BB\u58B8\u58AE\u58C5\u58D3\u58D1\u58D7\u58D9\u58D8\u58E5\u58DC\u58E4\u58DF\u58EF\u58FA\u58F9\u58FB\u58FC\u58FD\u5902\u590A\u5910\u591B\u68A6\u5925\u592C\u592D\u5932\u5938\u593E\u7AD2\u5955\u5950\u594E\u595A\u5958\u5962\u5960\u5967\u596C\u5969"],["9b40","\u5978\u5981\u599D\u4F5E\u4FAB\u59A3\u59B2\u59C6\u59E8\u59DC\u598D\u59D9\u59DA\u5A25\u5A1F\u5A11\u5A1C\u5A09\u5A1A\u5A40\u5A6C\u5A49\u5A35\u5A36\u5A62\u5A6A\u5A9A\u5ABC\u5ABE\u5ACB\u5AC2\u5ABD\u5AE3\u5AD7\u5AE6\u5AE9\u5AD6\u5AFA\u5AFB\u5B0C\u5B0B\u5B16\u5B32\u5AD0\u5B2A\u5B36\u5B3E\u5B43\u5B45\u5B40\u5B51\u5B55\u5B5A\u5B5B\u5B65\u5B69\u5B70\u5B73\u5B75\u5B78\u6588\u5B7A\u5B80"],["9b80","\u5B83\u5BA6\u5BB8\u5BC3\u5BC7\u5BC9\u5BD4\u5BD0\u5BE4\u5BE6\u5BE2\u5BDE\u5BE5\u5BEB\u5BF0\u5BF6\u5BF3\u5C05\u5C07\u5C08\u5C0D\u5C13\u5C20\u5C22\u5C28\u5C38\u5C39\u5C41\u5C46\u5C4E\u5C53\u5C50\u5C4F\u5B71\u5C6C\u5C6E\u4E62\u5C76\u5C79\u5C8C\u5C91\u5C94\u599B\u5CAB\u5CBB\u5CB6\u5CBC\u5CB7\u5CC5\u5CBE\u5CC7\u5CD9\u5CE9\u5CFD\u5CFA\u5CED\u5D8C\u5CEA\u5D0B\u5D15\u5D17\u5D5C\u5D1F\u5D1B\u5D11\u5D14\u5D22\u5D1A\u5D19\u5D18\u5D4C\u5D52\u5D4E\u5D4B\u5D6C\u5D73\u5D76\u5D87\u5D84\u5D82\u5DA2\u5D9D\u5DAC\u5DAE\u5DBD\u5D90\u5DB7\u5DBC\u5DC9\u5DCD\u5DD3\u5DD2\u5DD6\u5DDB\u5DEB\u5DF2\u5DF5\u5E0B\u5E1A\u5E19\u5E11\u5E1B\u5E36\u5E37\u5E44\u5E43\u5E40\u5E4E\u5E57\u5E54\u5E5F\u5E62\u5E64\u5E47\u5E75\u5E76\u5E7A\u9EBC\u5E7F\u5EA0\u5EC1\u5EC2\u5EC8\u5ED0\u5ECF"],["9c40","\u5ED6\u5EE3\u5EDD\u5EDA\u5EDB\u5EE2\u5EE1\u5EE8\u5EE9\u5EEC\u5EF1\u5EF3\u5EF0\u5EF4\u5EF8\u5EFE\u5F03\u5F09\u5F5D\u5F5C\u5F0B\u5F11\u5F16\u5F29\u5F2D\u5F38\u5F41\u5F48\u5F4C\u5F4E\u5F2F\u5F51\u5F56\u5F57\u5F59\u5F61\u5F6D\u5F73\u5F77\u5F83\u5F82\u5F7F\u5F8A\u5F88\u5F91\u5F87\u5F9E\u5F99\u5F98\u5FA0\u5FA8\u5FAD\u5FBC\u5FD6\u5FFB\u5FE4\u5FF8\u5FF1\u5FDD\u60B3\u5FFF\u6021\u6060"],["9c80","\u6019\u6010\u6029\u600E\u6031\u601B\u6015\u602B\u6026\u600F\u603A\u605A\u6041\u606A\u6077\u605F\u604A\u6046\u604D\u6063\u6043\u6064\u6042\u606C\u606B\u6059\u6081\u608D\u60E7\u6083\u609A\u6084\u609B\u6096\u6097\u6092\u60A7\u608B\u60E1\u60B8\u60E0\u60D3\u60B4\u5FF0\u60BD\u60C6\u60B5\u60D8\u614D\u6115\u6106\u60F6\u60F7\u6100\u60F4\u60FA\u6103\u6121\u60FB\u60F1\u610D\u610E\u6147\u613E\u6128\u6127\u614A\u613F\u613C\u612C\u6134\u613D\u6142\u6144\u6173\u6177\u6158\u6159\u615A\u616B\u6174\u616F\u6165\u6171\u615F\u615D\u6153\u6175\u6199\u6196\u6187\u61AC\u6194\u619A\u618A\u6191\u61AB\u61AE\u61CC\u61CA\u61C9\u61F7\u61C8\u61C3\u61C6\u61BA\u61CB\u7F79\u61CD\u61E6\u61E3\u61F6\u61FA\u61F4\u61FF\u61FD\u61FC\u61FE\u6200\u6208\u6209\u620D\u620C\u6214\u621B"],["9d40","\u621E\u6221\u622A\u622E\u6230\u6232\u6233\u6241\u624E\u625E\u6263\u625B\u6260\u6268\u627C\u6282\u6289\u627E\u6292\u6293\u6296\u62D4\u6283\u6294\u62D7\u62D1\u62BB\u62CF\u62FF\u62C6\u64D4\u62C8\u62DC\u62CC\u62CA\u62C2\u62C7\u629B\u62C9\u630C\u62EE\u62F1\u6327\u6302\u6308\u62EF\u62F5\u6350\u633E\u634D\u641C\u634F\u6396\u638E\u6380\u63AB\u6376\u63A3\u638F\u6389\u639F\u63B5\u636B"],["9d80","\u6369\u63BE\u63E9\u63C0\u63C6\u63E3\u63C9\u63D2\u63F6\u63C4\u6416\u6434\u6406\u6413\u6426\u6436\u651D\u6417\u6428\u640F\u6467\u646F\u6476\u644E\u652A\u6495\u6493\u64A5\u64A9\u6488\u64BC\u64DA\u64D2\u64C5\u64C7\u64BB\u64D8\u64C2\u64F1\u64E7\u8209\u64E0\u64E1\u62AC\u64E3\u64EF\u652C\u64F6\u64F4\u64F2\u64FA\u6500\u64FD\u6518\u651C\u6505\u6524\u6523\u652B\u6534\u6535\u6537\u6536\u6538\u754B\u6548\u6556\u6555\u654D\u6558\u655E\u655D\u6572\u6578\u6582\u6583\u8B8A\u659B\u659F\u65AB\u65B7\u65C3\u65C6\u65C1\u65C4\u65CC\u65D2\u65DB\u65D9\u65E0\u65E1\u65F1\u6772\u660A\u6603\u65FB\u6773\u6635\u6636\u6634\u661C\u664F\u6644\u6649\u6641\u665E\u665D\u6664\u6667\u6668\u665F\u6662\u6670\u6683\u6688\u668E\u6689\u6684\u6698\u669D\u66C1\u66B9\u66C9\u66BE\u66BC"],["9e40","\u66C4\u66B8\u66D6\u66DA\u66E0\u663F\u66E6\u66E9\u66F0\u66F5\u66F7\u670F\u6716\u671E\u6726\u6727\u9738\u672E\u673F\u6736\u6741\u6738\u6737\u6746\u675E\u6760\u6759\u6763\u6764\u6789\u6770\u67A9\u677C\u676A\u678C\u678B\u67A6\u67A1\u6785\u67B7\u67EF\u67B4\u67EC\u67B3\u67E9\u67B8\u67E4\u67DE\u67DD\u67E2\u67EE\u67B9\u67CE\u67C6\u67E7\u6A9C\u681E\u6846\u6829\u6840\u684D\u6832\u684E"],["9e80","\u68B3\u682B\u6859\u6863\u6877\u687F\u689F\u688F\u68AD\u6894\u689D\u689B\u6883\u6AAE\u68B9\u6874\u68B5\u68A0\u68BA\u690F\u688D\u687E\u6901\u68CA\u6908\u68D8\u6922\u6926\u68E1\u690C\u68CD\u68D4\u68E7\u68D5\u6936\u6912\u6904\u68D7\u68E3\u6925\u68F9\u68E0\u68EF\u6928\u692A\u691A\u6923\u6921\u68C6\u6979\u6977\u695C\u6978\u696B\u6954\u697E\u696E\u6939\u6974\u693D\u6959\u6930\u6961\u695E\u695D\u6981\u696A\u69B2\u69AE\u69D0\u69BF\u69C1\u69D3\u69BE\u69CE\u5BE8\u69CA\u69DD\u69BB\u69C3\u69A7\u6A2E\u6991\u69A0\u699C\u6995\u69B4\u69DE\u69E8\u6A02\u6A1B\u69FF\u6B0A\u69F9\u69F2\u69E7\u6A05\u69B1\u6A1E\u69ED\u6A14\u69EB\u6A0A\u6A12\u6AC1\u6A23\u6A13\u6A44\u6A0C\u6A72\u6A36\u6A78\u6A47\u6A62\u6A59\u6A66\u6A48\u6A38\u6A22\u6A90\u6A8D\u6AA0\u6A84\u6AA2\u6AA3"],["9f40","\u6A97\u8617\u6ABB\u6AC3\u6AC2\u6AB8\u6AB3\u6AAC\u6ADE\u6AD1\u6ADF\u6AAA\u6ADA\u6AEA\u6AFB\u6B05\u8616\u6AFA\u6B12\u6B16\u9B31\u6B1F\u6B38\u6B37\u76DC\u6B39\u98EE\u6B47\u6B43\u6B49\u6B50\u6B59\u6B54\u6B5B\u6B5F\u6B61\u6B78\u6B79\u6B7F\u6B80\u6B84\u6B83\u6B8D\u6B98\u6B95\u6B9E\u6BA4\u6BAA\u6BAB\u6BAF\u6BB2\u6BB1\u6BB3\u6BB7\u6BBC\u6BC6\u6BCB\u6BD3\u6BDF\u6BEC\u6BEB\u6BF3\u6BEF"],["9f80","\u9EBE\u6C08\u6C13\u6C14\u6C1B\u6C24\u6C23\u6C5E\u6C55\u6C62\u6C6A\u6C82\u6C8D\u6C9A\u6C81\u6C9B\u6C7E\u6C68\u6C73\u6C92\u6C90\u6CC4\u6CF1\u6CD3\u6CBD\u6CD7\u6CC5\u6CDD\u6CAE\u6CB1\u6CBE\u6CBA\u6CDB\u6CEF\u6CD9\u6CEA\u6D1F\u884D\u6D36\u6D2B\u6D3D\u6D38\u6D19\u6D35\u6D33\u6D12\u6D0C\u6D63\u6D93\u6D64\u6D5A\u6D79\u6D59\u6D8E\u6D95\u6FE4\u6D85\u6DF9\u6E15\u6E0A\u6DB5\u6DC7\u6DE6\u6DB8\u6DC6\u6DEC\u6DDE\u6DCC\u6DE8\u6DD2\u6DC5\u6DFA\u6DD9\u6DE4\u6DD5\u6DEA\u6DEE\u6E2D\u6E6E\u6E2E\u6E19\u6E72\u6E5F\u6E3E\u6E23\u6E6B\u6E2B\u6E76\u6E4D\u6E1F\u6E43\u6E3A\u6E4E\u6E24\u6EFF\u6E1D\u6E38\u6E82\u6EAA\u6E98\u6EC9\u6EB7\u6ED3\u6EBD\u6EAF\u6EC4\u6EB2\u6ED4\u6ED5\u6E8F\u6EA5\u6EC2\u6E9F\u6F41\u6F11\u704C\u6EEC\u6EF8\u6EFE\u6F3F\u6EF2\u6F31\u6EEF\u6F32\u6ECC"],["e040","\u6F3E\u6F13\u6EF7\u6F86\u6F7A\u6F78\u6F81\u6F80\u6F6F\u6F5B\u6FF3\u6F6D\u6F82\u6F7C\u6F58\u6F8E\u6F91\u6FC2\u6F66\u6FB3\u6FA3\u6FA1\u6FA4\u6FB9\u6FC6\u6FAA\u6FDF\u6FD5\u6FEC\u6FD4\u6FD8\u6FF1\u6FEE\u6FDB\u7009\u700B\u6FFA\u7011\u7001\u700F\u6FFE\u701B\u701A\u6F74\u701D\u7018\u701F\u7030\u703E\u7032\u7051\u7063\u7099\u7092\u70AF\u70F1\u70AC\u70B8\u70B3\u70AE\u70DF\u70CB\u70DD"],["e080","\u70D9\u7109\u70FD\u711C\u7119\u7165\u7155\u7188\u7166\u7162\u714C\u7156\u716C\u718F\u71FB\u7184\u7195\u71A8\u71AC\u71D7\u71B9\u71BE\u71D2\u71C9\u71D4\u71CE\u71E0\u71EC\u71E7\u71F5\u71FC\u71F9\u71FF\u720D\u7210\u721B\u7228\u722D\u722C\u7230\u7232\u723B\u723C\u723F\u7240\u7246\u724B\u7258\u7274\u727E\u7282\u7281\u7287\u7292\u7296\u72A2\u72A7\u72B9\u72B2\u72C3\u72C6\u72C4\u72CE\u72D2\u72E2\u72E0\u72E1\u72F9\u72F7\u500F\u7317\u730A\u731C\u7316\u731D\u7334\u732F\u7329\u7325\u733E\u734E\u734F\u9ED8\u7357\u736A\u7368\u7370\u7378\u7375\u737B\u737A\u73C8\u73B3\u73CE\u73BB\u73C0\u73E5\u73EE\u73DE\u74A2\u7405\u746F\u7425\u73F8\u7432\u743A\u7455\u743F\u745F\u7459\u7441\u745C\u7469\u7470\u7463\u746A\u7476\u747E\u748B\u749E\u74A7\u74CA\u74CF\u74D4\u73F1"],["e140","\u74E0\u74E3\u74E7\u74E9\u74EE\u74F2\u74F0\u74F1\u74F8\u74F7\u7504\u7503\u7505\u750C\u750E\u750D\u7515\u7513\u751E\u7526\u752C\u753C\u7544\u754D\u754A\u7549\u755B\u7546\u755A\u7569\u7564\u7567\u756B\u756D\u7578\u7576\u7586\u7587\u7574\u758A\u7589\u7582\u7594\u759A\u759D\u75A5\u75A3\u75C2\u75B3\u75C3\u75B5\u75BD\u75B8\u75BC\u75B1\u75CD\u75CA\u75D2\u75D9\u75E3\u75DE\u75FE\u75FF"],["e180","\u75FC\u7601\u75F0\u75FA\u75F2\u75F3\u760B\u760D\u7609\u761F\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763B\u7647\u7648\u7646\u765C\u7658\u7661\u7662\u7668\u7669\u766A\u7667\u766C\u7670\u7672\u7676\u7678\u767C\u7680\u7683\u7688\u768B\u768E\u7696\u7693\u7699\u769A\u76B0\u76B4\u76B8\u76B9\u76BA\u76C2\u76CD\u76D6\u76D2\u76DE\u76E1\u76E5\u76E7\u76EA\u862F\u76FB\u7708\u7707\u7704\u7729\u7724\u771E\u7725\u7726\u771B\u7737\u7738\u7747\u775A\u7768\u776B\u775B\u7765\u777F\u777E\u7779\u778E\u778B\u7791\u77A0\u779E\u77B0\u77B6\u77B9\u77BF\u77BC\u77BD\u77BB\u77C7\u77CD\u77D7\u77DA\u77DC\u77E3\u77EE\u77FC\u780C\u7812\u7926\u7820\u792A\u7845\u788E\u7874\u7886\u787C\u789A\u788C\u78A3\u78B5\u78AA\u78AF\u78D1\u78C6\u78CB\u78D4\u78BE\u78BC\u78C5\u78CA\u78EC"],["e240","\u78E7\u78DA\u78FD\u78F4\u7907\u7912\u7911\u7919\u792C\u792B\u7940\u7960\u7957\u795F\u795A\u7955\u7953\u797A\u797F\u798A\u799D\u79A7\u9F4B\u79AA\u79AE\u79B3\u79B9\u79BA\u79C9\u79D5\u79E7\u79EC\u79E1\u79E3\u7A08\u7A0D\u7A18\u7A19\u7A20\u7A1F\u7980\u7A31\u7A3B\u7A3E\u7A37\u7A43\u7A57\u7A49\u7A61\u7A62\u7A69\u9F9D\u7A70\u7A79\u7A7D\u7A88\u7A97\u7A95\u7A98\u7A96\u7AA9\u7AC8\u7AB0"],["e280","\u7AB6\u7AC5\u7AC4\u7ABF\u9083\u7AC7\u7ACA\u7ACD\u7ACF\u7AD5\u7AD3\u7AD9\u7ADA\u7ADD\u7AE1\u7AE2\u7AE6\u7AED\u7AF0\u7B02\u7B0F\u7B0A\u7B06\u7B33\u7B18\u7B19\u7B1E\u7B35\u7B28\u7B36\u7B50\u7B7A\u7B04\u7B4D\u7B0B\u7B4C\u7B45\u7B75\u7B65\u7B74\u7B67\u7B70\u7B71\u7B6C\u7B6E\u7B9D\u7B98\u7B9F\u7B8D\u7B9C\u7B9A\u7B8B\u7B92\u7B8F\u7B5D\u7B99\u7BCB\u7BC1\u7BCC\u7BCF\u7BB4\u7BC6\u7BDD\u7BE9\u7C11\u7C14\u7BE6\u7BE5\u7C60\u7C00\u7C07\u7C13\u7BF3\u7BF7\u7C17\u7C0D\u7BF6\u7C23\u7C27\u7C2A\u7C1F\u7C37\u7C2B\u7C3D\u7C4C\u7C43\u7C54\u7C4F\u7C40\u7C50\u7C58\u7C5F\u7C64\u7C56\u7C65\u7C6C\u7C75\u7C83\u7C90\u7CA4\u7CAD\u7CA2\u7CAB\u7CA1\u7CA8\u7CB3\u7CB2\u7CB1\u7CAE\u7CB9\u7CBD\u7CC0\u7CC5\u7CC2\u7CD8\u7CD2\u7CDC\u7CE2\u9B3B\u7CEF\u7CF2\u7CF4\u7CF6\u7CFA\u7D06"],["e340","\u7D02\u7D1C\u7D15\u7D0A\u7D45\u7D4B\u7D2E\u7D32\u7D3F\u7D35\u7D46\u7D73\u7D56\u7D4E\u7D72\u7D68\u7D6E\u7D4F\u7D63\u7D93\u7D89\u7D5B\u7D8F\u7D7D\u7D9B\u7DBA\u7DAE\u7DA3\u7DB5\u7DC7\u7DBD\u7DAB\u7E3D\u7DA2\u7DAF\u7DDC\u7DB8\u7D9F\u7DB0\u7DD8\u7DDD\u7DE4\u7DDE\u7DFB\u7DF2\u7DE1\u7E05\u7E0A\u7E23\u7E21\u7E12\u7E31\u7E1F\u7E09\u7E0B\u7E22\u7E46\u7E66\u7E3B\u7E35\u7E39\u7E43\u7E37"],["e380","\u7E32\u7E3A\u7E67\u7E5D\u7E56\u7E5E\u7E59\u7E5A\u7E79\u7E6A\u7E69\u7E7C\u7E7B\u7E83\u7DD5\u7E7D\u8FAE\u7E7F\u7E88\u7E89\u7E8C\u7E92\u7E90\u7E93\u7E94\u7E96\u7E8E\u7E9B\u7E9C\u7F38\u7F3A\u7F45\u7F4C\u7F4D\u7F4E\u7F50\u7F51\u7F55\u7F54\u7F58\u7F5F\u7F60\u7F68\u7F69\u7F67\u7F78\u7F82\u7F86\u7F83\u7F88\u7F87\u7F8C\u7F94\u7F9E\u7F9D\u7F9A\u7FA3\u7FAF\u7FB2\u7FB9\u7FAE\u7FB6\u7FB8\u8B71\u7FC5\u7FC6\u7FCA\u7FD5\u7FD4\u7FE1\u7FE6\u7FE9\u7FF3\u7FF9\u98DC\u8006\u8004\u800B\u8012\u8018\u8019\u801C\u8021\u8028\u803F\u803B\u804A\u8046\u8052\u8058\u805A\u805F\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807D\u807F\u8084\u8086\u8085\u809B\u8093\u809A\u80AD\u5190\u80AC\u80DB\u80E5\u80D9\u80DD\u80C4\u80DA\u80D6\u8109\u80EF\u80F1\u811B\u8129\u8123\u812F\u814B"],["e440","\u968B\u8146\u813E\u8153\u8151\u80FC\u8171\u816E\u8165\u8166\u8174\u8183\u8188\u818A\u8180\u8182\u81A0\u8195\u81A4\u81A3\u815F\u8193\u81A9\u81B0\u81B5\u81BE\u81B8\u81BD\u81C0\u81C2\u81BA\u81C9\u81CD\u81D1\u81D9\u81D8\u81C8\u81DA\u81DF\u81E0\u81E7\u81FA\u81FB\u81FE\u8201\u8202\u8205\u8207\u820A\u820D\u8210\u8216\u8229\u822B\u8238\u8233\u8240\u8259\u8258\u825D\u825A\u825F\u8264"],["e480","\u8262\u8268\u826A\u826B\u822E\u8271\u8277\u8278\u827E\u828D\u8292\u82AB\u829F\u82BB\u82AC\u82E1\u82E3\u82DF\u82D2\u82F4\u82F3\u82FA\u8393\u8303\u82FB\u82F9\u82DE\u8306\u82DC\u8309\u82D9\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832F\u832B\u8317\u8318\u8385\u839A\u83AA\u839F\u83A2\u8396\u8323\u838E\u8387\u838A\u837C\u83B5\u8373\u8375\u83A0\u8389\u83A8\u83F4\u8413\u83EB\u83CE\u83FD\u8403\u83D8\u840B\u83C1\u83F7\u8407\u83E0\u83F2\u840D\u8422\u8420\u83BD\u8438\u8506\u83FB\u846D\u842A\u843C\u855A\u8484\u8477\u846B\u84AD\u846E\u8482\u8469\u8446\u842C\u846F\u8479\u8435\u84CA\u8462\u84B9\u84BF\u849F\u84D9\u84CD\u84BB\u84DA\u84D0\u84C1\u84C6\u84D6\u84A1\u8521\u84FF\u84F4\u8517\u8518\u852C\u851F\u8515\u8514\u84FC\u8540\u8563\u8558\u8548"],["e540","\u8541\u8602\u854B\u8555\u8580\u85A4\u8588\u8591\u858A\u85A8\u856D\u8594\u859B\u85EA\u8587\u859C\u8577\u857E\u8590\u85C9\u85BA\u85CF\u85B9\u85D0\u85D5\u85DD\u85E5\u85DC\u85F9\u860A\u8613\u860B\u85FE\u85FA\u8606\u8622\u861A\u8630\u863F\u864D\u4E55\u8654\u865F\u8667\u8671\u8693\u86A3\u86A9\u86AA\u868B\u868C\u86B6\u86AF\u86C4\u86C6\u86B0\u86C9\u8823\u86AB\u86D4\u86DE\u86E9\u86EC"],["e580","\u86DF\u86DB\u86EF\u8712\u8706\u8708\u8700\u8703\u86FB\u8711\u8709\u870D\u86F9\u870A\u8734\u873F\u8737\u873B\u8725\u8729\u871A\u8760\u875F\u8778\u874C\u874E\u8774\u8757\u8768\u876E\u8759\u8753\u8763\u876A\u8805\u87A2\u879F\u8782\u87AF\u87CB\u87BD\u87C0\u87D0\u96D6\u87AB\u87C4\u87B3\u87C7\u87C6\u87BB\u87EF\u87F2\u87E0\u880F\u880D\u87FE\u87F6\u87F7\u880E\u87D2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883B\u8844\u8842\u8852\u8859\u885E\u8862\u886B\u8881\u887E\u889E\u8875\u887D\u88B5\u8872\u8882\u8897\u8892\u88AE\u8899\u88A2\u888D\u88A4\u88B0\u88BF\u88B1\u88C3\u88C4\u88D4\u88D8\u88D9\u88DD\u88F9\u8902\u88FC\u88F4\u88E8\u88F2\u8904\u890C\u890A\u8913\u8943\u891E\u8925\u892A\u892B\u8941\u8944\u893B\u8936\u8938\u894C\u891D\u8960\u895E"],["e640","\u8966\u8964\u896D\u896A\u896F\u8974\u8977\u897E\u8983\u8988\u898A\u8993\u8998\u89A1\u89A9\u89A6\u89AC\u89AF\u89B2\u89BA\u89BD\u89BF\u89C0\u89DA\u89DC\u89DD\u89E7\u89F4\u89F8\u8A03\u8A16\u8A10\u8A0C\u8A1B\u8A1D\u8A25\u8A36\u8A41\u8A5B\u8A52\u8A46\u8A48\u8A7C\u8A6D\u8A6C\u8A62\u8A85\u8A82\u8A84\u8AA8\u8AA1\u8A91\u8AA5\u8AA6\u8A9A\u8AA3\u8AC4\u8ACD\u8AC2\u8ADA\u8AEB\u8AF3\u8AE7"],["e680","\u8AE4\u8AF1\u8B14\u8AE0\u8AE2\u8AF7\u8ADE\u8ADB\u8B0C\u8B07\u8B1A\u8AE1\u8B16\u8B10\u8B17\u8B20\u8B33\u97AB\u8B26\u8B2B\u8B3E\u8B28\u8B41\u8B4C\u8B4F\u8B4E\u8B49\u8B56\u8B5B\u8B5A\u8B6B\u8B5F\u8B6C\u8B6F\u8B74\u8B7D\u8B80\u8B8C\u8B8E\u8B92\u8B93\u8B96\u8B99\u8B9A\u8C3A\u8C41\u8C3F\u8C48\u8C4C\u8C4E\u8C50\u8C55\u8C62\u8C6C\u8C78\u8C7A\u8C82\u8C89\u8C85\u8C8A\u8C8D\u8C8E\u8C94\u8C7C\u8C98\u621D\u8CAD\u8CAA\u8CBD\u8CB2\u8CB3\u8CAE\u8CB6\u8CC8\u8CC1\u8CE4\u8CE3\u8CDA\u8CFD\u8CFA\u8CFB\u8D04\u8D05\u8D0A\u8D07\u8D0F\u8D0D\u8D10\u9F4E\u8D13\u8CCD\u8D14\u8D16\u8D67\u8D6D\u8D71\u8D73\u8D81\u8D99\u8DC2\u8DBE\u8DBA\u8DCF\u8DDA\u8DD6\u8DCC\u8DDB\u8DCB\u8DEA\u8DEB\u8DDF\u8DE3\u8DFC\u8E08\u8E09\u8DFF\u8E1D\u8E1E\u8E10\u8E1F\u8E42\u8E35\u8E30\u8E34\u8E4A"],["e740","\u8E47\u8E49\u8E4C\u8E50\u8E48\u8E59\u8E64\u8E60\u8E2A\u8E63\u8E55\u8E76\u8E72\u8E7C\u8E81\u8E87\u8E85\u8E84\u8E8B\u8E8A\u8E93\u8E91\u8E94\u8E99\u8EAA\u8EA1\u8EAC\u8EB0\u8EC6\u8EB1\u8EBE\u8EC5\u8EC8\u8ECB\u8EDB\u8EE3\u8EFC\u8EFB\u8EEB\u8EFE\u8F0A\u8F05\u8F15\u8F12\u8F19\u8F13\u8F1C\u8F1F\u8F1B\u8F0C\u8F26\u8F33\u8F3B\u8F39\u8F45\u8F42\u8F3E\u8F4C\u8F49\u8F46\u8F4E\u8F57\u8F5C"],["e780","\u8F62\u8F63\u8F64\u8F9C\u8F9F\u8FA3\u8FAD\u8FAF\u8FB7\u8FDA\u8FE5\u8FE2\u8FEA\u8FEF\u9087\u8FF4\u9005\u8FF9\u8FFA\u9011\u9015\u9021\u900D\u901E\u9016\u900B\u9027\u9036\u9035\u9039\u8FF8\u904F\u9050\u9051\u9052\u900E\u9049\u903E\u9056\u9058\u905E\u9068\u906F\u9076\u96A8\u9072\u9082\u907D\u9081\u9080\u908A\u9089\u908F\u90A8\u90AF\u90B1\u90B5\u90E2\u90E4\u6248\u90DB\u9102\u9112\u9119\u9132\u9130\u914A\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918B\u9189\u9182\u91A2\u91AB\u91AF\u91AA\u91B5\u91B4\u91BA\u91C0\u91C1\u91C9\u91CB\u91D0\u91D6\u91DF\u91E1\u91DB\u91FC\u91F5\u91F6\u921E\u91FF\u9214\u922C\u9215\u9211\u925E\u9257\u9245\u9249\u9264\u9248\u9295\u923F\u924B\u9250\u929C\u9296\u9293\u929B\u925A\u92CF\u92B9\u92B7\u92E9\u930F\u92FA\u9344\u932E"],["e840","\u9319\u9322\u931A\u9323\u933A\u9335\u933B\u935C\u9360\u937C\u936E\u9356\u93B0\u93AC\u93AD\u9394\u93B9\u93D6\u93D7\u93E8\u93E5\u93D8\u93C3\u93DD\u93D0\u93C8\u93E4\u941A\u9414\u9413\u9403\u9407\u9410\u9436\u942B\u9435\u9421\u943A\u9441\u9452\u9444\u945B\u9460\u9462\u945E\u946A\u9229\u9470\u9475\u9477\u947D\u945A\u947C\u947E\u9481\u947F\u9582\u9587\u958A\u9594\u9596\u9598\u9599"],["e880","\u95A0\u95A8\u95A7\u95AD\u95BC\u95BB\u95B9\u95BE\u95CA\u6FF6\u95C3\u95CD\u95CC\u95D5\u95D4\u95D6\u95DC\u95E1\u95E5\u95E2\u9621\u9628\u962E\u962F\u9642\u964C\u964F\u964B\u9677\u965C\u965E\u965D\u965F\u9666\u9672\u966C\u968D\u9698\u9695\u9697\u96AA\u96A7\u96B1\u96B2\u96B0\u96B4\u96B6\u96B8\u96B9\u96CE\u96CB\u96C9\u96CD\u894D\u96DC\u970D\u96D5\u96F9\u9704\u9706\u9708\u9713\u970E\u9711\u970F\u9716\u9719\u9724\u972A\u9730\u9739\u973D\u973E\u9744\u9746\u9748\u9742\u9749\u975C\u9760\u9764\u9766\u9768\u52D2\u976B\u9771\u9779\u9785\u977C\u9781\u977A\u9786\u978B\u978F\u9790\u979C\u97A8\u97A6\u97A3\u97B3\u97B4\u97C3\u97C6\u97C8\u97CB\u97DC\u97ED\u9F4F\u97F2\u7ADF\u97F6\u97F5\u980F\u980C\u9838\u9824\u9821\u9837\u983D\u9846\u984F\u984B\u986B\u986F\u9870"],["e940","\u9871\u9874\u9873\u98AA\u98AF\u98B1\u98B6\u98C4\u98C3\u98C6\u98E9\u98EB\u9903\u9909\u9912\u9914\u9918\u9921\u991D\u991E\u9924\u9920\u992C\u992E\u993D\u993E\u9942\u9949\u9945\u9950\u994B\u9951\u9952\u994C\u9955\u9997\u9998\u99A5\u99AD\u99AE\u99BC\u99DF\u99DB\u99DD\u99D8\u99D1\u99ED\u99EE\u99F1\u99F2\u99FB\u99F8\u9A01\u9A0F\u9A05\u99E2\u9A19\u9A2B\u9A37\u9A45\u9A42\u9A40\u9A43"],["e980","\u9A3E\u9A55\u9A4D\u9A5B\u9A57\u9A5F\u9A62\u9A65\u9A64\u9A69\u9A6B\u9A6A\u9AAD\u9AB0\u9ABC\u9AC0\u9ACF\u9AD1\u9AD3\u9AD4\u9ADE\u9ADF\u9AE2\u9AE3\u9AE6\u9AEF\u9AEB\u9AEE\u9AF4\u9AF1\u9AF7\u9AFB\u9B06\u9B18\u9B1A\u9B1F\u9B22\u9B23\u9B25\u9B27\u9B28\u9B29\u9B2A\u9B2E\u9B2F\u9B32\u9B44\u9B43\u9B4F\u9B4D\u9B4E\u9B51\u9B58\u9B74\u9B93\u9B83\u9B91\u9B96\u9B97\u9B9F\u9BA0\u9BA8\u9BB4\u9BC0\u9BCA\u9BB9\u9BC6\u9BCF\u9BD1\u9BD2\u9BE3\u9BE2\u9BE4\u9BD4\u9BE1\u9C3A\u9BF2\u9BF1\u9BF0\u9C15\u9C14\u9C09\u9C13\u9C0C\u9C06\u9C08\u9C12\u9C0A\u9C04\u9C2E\u9C1B\u9C25\u9C24\u9C21\u9C30\u9C47\u9C32\u9C46\u9C3E\u9C5A\u9C60\u9C67\u9C76\u9C78\u9CE7\u9CEC\u9CF0\u9D09\u9D08\u9CEB\u9D03\u9D06\u9D2A\u9D26\u9DAF\u9D23\u9D1F\u9D44\u9D15\u9D12\u9D41\u9D3F\u9D3E\u9D46\u9D48"],["ea40","\u9D5D\u9D5E\u9D64\u9D51\u9D50\u9D59\u9D72\u9D89\u9D87\u9DAB\u9D6F\u9D7A\u9D9A\u9DA4\u9DA9\u9DB2\u9DC4\u9DC1\u9DBB\u9DB8\u9DBA\u9DC6\u9DCF\u9DC2\u9DD9\u9DD3\u9DF8\u9DE6\u9DED\u9DEF\u9DFD\u9E1A\u9E1B\u9E1E\u9E75\u9E79\u9E7D\u9E81\u9E88\u9E8B\u9E8C\u9E92\u9E95\u9E91\u9E9D\u9EA5\u9EA9\u9EB8\u9EAA\u9EAD\u9761\u9ECC\u9ECE\u9ECF\u9ED0\u9ED4\u9EDC\u9EDE\u9EDD\u9EE0\u9EE5\u9EE8\u9EEF"],["ea80","\u9EF4\u9EF6\u9EF7\u9EF9\u9EFB\u9EFC\u9EFD\u9F07\u9F08\u76B7\u9F15\u9F21\u9F2C\u9F3E\u9F4A\u9F52\u9F54\u9F63\u9F5F\u9F60\u9F61\u9F66\u9F67\u9F6C\u9F6A\u9F77\u9F72\u9F76\u9F95\u9F9C\u9FA0\u582F\u69C7\u9059\u7464\u51DC\u7199"],["ed40","\u7E8A\u891C\u9348\u9288\u84DC\u4FC9\u70BB\u6631\u68C8\u92F9\u66FB\u5F45\u4E28\u4EE1\u4EFC\u4F00\u4F03\u4F39\u4F56\u4F92\u4F8A\u4F9A\u4F94\u4FCD\u5040\u5022\u4FFF\u501E\u5046\u5070\u5042\u5094\u50F4\u50D8\u514A\u5164\u519D\u51BE\u51EC\u5215\u529C\u52A6\u52C0\u52DB\u5300\u5307\u5324\u5372\u5393\u53B2\u53DD\uFA0E\u549C\u548A\u54A9\u54FF\u5586\u5759\u5765\u57AC\u57C8\u57C7\uFA0F"],["ed80","\uFA10\u589E\u58B2\u590B\u5953\u595B\u595D\u5963\u59A4\u59BA\u5B56\u5BC0\u752F\u5BD8\u5BEC\u5C1E\u5CA6\u5CBA\u5CF5\u5D27\u5D53\uFA11\u5D42\u5D6D\u5DB8\u5DB9\u5DD0\u5F21\u5F34\u5F67\u5FB7\u5FDE\u605D\u6085\u608A\u60DE\u60D5\u6120\u60F2\u6111\u6137\u6130\u6198\u6213\u62A6\u63F5\u6460\u649D\u64CE\u654E\u6600\u6615\u663B\u6609\u662E\u661E\u6624\u6665\u6657\u6659\uFA12\u6673\u6699\u66A0\u66B2\u66BF\u66FA\u670E\uF929\u6766\u67BB\u6852\u67C0\u6801\u6844\u68CF\uFA13\u6968\uFA14\u6998\u69E2\u6A30\u6A6B\u6A46\u6A73\u6A7E\u6AE2\u6AE4\u6BD6\u6C3F\u6C5C\u6C86\u6C6F\u6CDA\u6D04\u6D87\u6D6F\u6D96\u6DAC\u6DCF\u6DF8\u6DF2\u6DFC\u6E39\u6E5C\u6E27\u6E3C\u6EBF\u6F88\u6FB5\u6FF5\u7005\u7007\u7028\u7085\u70AB\u710F\u7104\u715C\u7146\u7147\uFA15\u71C1\u71FE\u72B1"],["ee40","\u72BE\u7324\uFA16\u7377\u73BD\u73C9\u73D6\u73E3\u73D2\u7407\u73F5\u7426\u742A\u7429\u742E\u7462\u7489\u749F\u7501\u756F\u7682\u769C\u769E\u769B\u76A6\uFA17\u7746\u52AF\u7821\u784E\u7864\u787A\u7930\uFA18\uFA19\uFA1A\u7994\uFA1B\u799B\u7AD1\u7AE7\uFA1C\u7AEB\u7B9E\uFA1D\u7D48\u7D5C\u7DB7\u7DA0\u7DD6\u7E52\u7F47\u7FA1\uFA1E\u8301\u8362\u837F\u83C7\u83F6\u8448\u84B4\u8553\u8559"],["ee80","\u856B\uFA1F\u85B0\uFA20\uFA21\u8807\u88F5\u8A12\u8A37\u8A79\u8AA7\u8ABE\u8ADF\uFA22\u8AF6\u8B53\u8B7F\u8CF0\u8CF4\u8D12\u8D76\uFA23\u8ECF\uFA24\uFA25\u9067\u90DE\uFA26\u9115\u9127\u91DA\u91D7\u91DE\u91ED\u91EE\u91E4\u91E5\u9206\u9210\u920A\u923A\u9240\u923C\u924E\u9259\u9251\u9239\u9267\u92A7\u9277\u9278\u92E7\u92D7\u92D9\u92D0\uFA27\u92D5\u92E0\u92D3\u9325\u9321\u92FB\uFA28\u931E\u92FF\u931D\u9302\u9370\u9357\u93A4\u93C6\u93DE\u93F8\u9431\u9445\u9448\u9592\uF9DC\uFA29\u969D\u96AF\u9733\u973B\u9743\u974D\u974F\u9751\u9755\u9857\u9865\uFA2A\uFA2B\u9927\uFA2C\u999E\u9A4E\u9AD9\u9ADC\u9B75\u9B72\u9B8F\u9BB1\u9BBB\u9C00\u9D70\u9D6B\uFA2D\u9E19\u9ED1"],["eeef","\u2170",9,"\uFFE2\uFFE4\uFF07\uFF02"],["f040","\uE000",62],["f080","\uE03F",124],["f140","\uE0BC",62],["f180","\uE0FB",124],["f240","\uE178",62],["f280","\uE1B7",124],["f340","\uE234",62],["f380","\uE273",124],["f440","\uE2F0",62],["f480","\uE32F",124],["f540","\uE3AC",62],["f580","\uE3EB",124],["f640","\uE468",62],["f680","\uE4A7",124],["f740","\uE524",62],["f780","\uE563",124],["f840","\uE5E0",62],["f880","\uE61F",124],["f940","\uE69C"],["fa40","\u2170",9,"\u2160",9,"\uFFE2\uFFE4\uFF07\uFF02\u3231\u2116\u2121\u2235\u7E8A\u891C\u9348\u9288\u84DC\u4FC9\u70BB\u6631\u68C8\u92F9\u66FB\u5F45\u4E28\u4EE1\u4EFC\u4F00\u4F03\u4F39\u4F56\u4F92\u4F8A\u4F9A\u4F94\u4FCD\u5040\u5022\u4FFF\u501E\u5046\u5070\u5042\u5094\u50F4\u50D8\u514A"],["fa80","\u5164\u519D\u51BE\u51EC\u5215\u529C\u52A6\u52C0\u52DB\u5300\u5307\u5324\u5372\u5393\u53B2\u53DD\uFA0E\u549C\u548A\u54A9\u54FF\u5586\u5759\u5765\u57AC\u57C8\u57C7\uFA0F\uFA10\u589E\u58B2\u590B\u5953\u595B\u595D\u5963\u59A4\u59BA\u5B56\u5BC0\u752F\u5BD8\u5BEC\u5C1E\u5CA6\u5CBA\u5CF5\u5D27\u5D53\uFA11\u5D42\u5D6D\u5DB8\u5DB9\u5DD0\u5F21\u5F34\u5F67\u5FB7\u5FDE\u605D\u6085\u608A\u60DE\u60D5\u6120\u60F2\u6111\u6137\u6130\u6198\u6213\u62A6\u63F5\u6460\u649D\u64CE\u654E\u6600\u6615\u663B\u6609\u662E\u661E\u6624\u6665\u6657\u6659\uFA12\u6673\u6699\u66A0\u66B2\u66BF\u66FA\u670E\uF929\u6766\u67BB\u6852\u67C0\u6801\u6844\u68CF\uFA13\u6968\uFA14\u6998\u69E2\u6A30\u6A6B\u6A46\u6A73\u6A7E\u6AE2\u6AE4\u6BD6\u6C3F\u6C5C\u6C86\u6C6F\u6CDA\u6D04\u6D87\u6D6F"],["fb40","\u6D96\u6DAC\u6DCF\u6DF8\u6DF2\u6DFC\u6E39\u6E5C\u6E27\u6E3C\u6EBF\u6F88\u6FB5\u6FF5\u7005\u7007\u7028\u7085\u70AB\u710F\u7104\u715C\u7146\u7147\uFA15\u71C1\u71FE\u72B1\u72BE\u7324\uFA16\u7377\u73BD\u73C9\u73D6\u73E3\u73D2\u7407\u73F5\u7426\u742A\u7429\u742E\u7462\u7489\u749F\u7501\u756F\u7682\u769C\u769E\u769B\u76A6\uFA17\u7746\u52AF\u7821\u784E\u7864\u787A\u7930\uFA18\uFA19"],["fb80","\uFA1A\u7994\uFA1B\u799B\u7AD1\u7AE7\uFA1C\u7AEB\u7B9E\uFA1D\u7D48\u7D5C\u7DB7\u7DA0\u7DD6\u7E52\u7F47\u7FA1\uFA1E\u8301\u8362\u837F\u83C7\u83F6\u8448\u84B4\u8553\u8559\u856B\uFA1F\u85B0\uFA20\uFA21\u8807\u88F5\u8A12\u8A37\u8A79\u8AA7\u8ABE\u8ADF\uFA22\u8AF6\u8B53\u8B7F\u8CF0\u8CF4\u8D12\u8D76\uFA23\u8ECF\uFA24\uFA25\u9067\u90DE\uFA26\u9115\u9127\u91DA\u91D7\u91DE\u91ED\u91EE\u91E4\u91E5\u9206\u9210\u920A\u923A\u9240\u923C\u924E\u9259\u9251\u9239\u9267\u92A7\u9277\u9278\u92E7\u92D7\u92D9\u92D0\uFA27\u92D5\u92E0\u92D3\u9325\u9321\u92FB\uFA28\u931E\u92FF\u931D\u9302\u9370\u9357\u93A4\u93C6\u93DE\u93F8\u9431\u9445\u9448\u9592\uF9DC\uFA29\u969D\u96AF\u9733\u973B\u9743\u974D\u974F\u9751\u9755\u9857\u9865\uFA2A\uFA2B\u9927\uFA2C\u999E\u9A4E\u9AD9"],["fc40","\u9ADC\u9B75\u9B72\u9B8F\u9BB1\u9BBB\u9C00\u9D70\u9D6B\uFA2D\u9E19\u9ED1"]]});var qJ=b((Fut,I4e)=>{I4e.exports=[["0","\0",127],["8ea1","\uFF61",62],["a1a1","\u3000\u3001\u3002\uFF0C\uFF0E\u30FB\uFF1A\uFF1B\uFF1F\uFF01\u309B\u309C\xB4\uFF40\xA8\uFF3E\uFFE3\uFF3F\u30FD\u30FE\u309D\u309E\u3003\u4EDD\u3005\u3006\u3007\u30FC\u2015\u2010\uFF0F\uFF3C\uFF5E\u2225\uFF5C\u2026\u2025\u2018\u2019\u201C\u201D\uFF08\uFF09\u3014\u3015\uFF3B\uFF3D\uFF5B\uFF5D\u3008",9,"\uFF0B\uFF0D\xB1\xD7\xF7\uFF1D\u2260\uFF1C\uFF1E\u2266\u2267\u221E\u2234\u2642\u2640\xB0\u2032\u2033\u2103\uFFE5\uFF04\uFFE0\uFFE1\uFF05\uFF03\uFF06\uFF0A\uFF20\xA7\u2606\u2605\u25CB\u25CF\u25CE\u25C7"],["a2a1","\u25C6\u25A1\u25A0\u25B3\u25B2\u25BD\u25BC\u203B\u3012\u2192\u2190\u2191\u2193\u3013"],["a2ba","\u2208\u220B\u2286\u2287\u2282\u2283\u222A\u2229"],["a2ca","\u2227\u2228\uFFE2\u21D2\u21D4\u2200\u2203"],["a2dc","\u2220\u22A5\u2312\u2202\u2207\u2261\u2252\u226A\u226B\u221A\u223D\u221D\u2235\u222B\u222C"],["a2f2","\u212B\u2030\u266F\u266D\u266A\u2020\u2021\xB6"],["a2fe","\u25EF"],["a3b0","\uFF10",9],["a3c1","\uFF21",25],["a3e1","\uFF41",25],["a4a1","\u3041",82],["a5a1","\u30A1",85],["a6a1","\u0391",16,"\u03A3",6],["a6c1","\u03B1",16,"\u03C3",6],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a8a1","\u2500\u2502\u250C\u2510\u2518\u2514\u251C\u252C\u2524\u2534\u253C\u2501\u2503\u250F\u2513\u251B\u2517\u2523\u2533\u252B\u253B\u254B\u2520\u252F\u2528\u2537\u253F\u251D\u2530\u2525\u2538\u2542"],["ada1","\u2460",19,"\u2160",9],["adc0","\u3349\u3314\u3322\u334D\u3318\u3327\u3303\u3336\u3351\u3357\u330D\u3326\u3323\u332B\u334A\u333B\u339C\u339D\u339E\u338E\u338F\u33C4\u33A1"],["addf","\u337B\u301D\u301F\u2116\u33CD\u2121\u32A4",4,"\u3231\u3232\u3239\u337E\u337D\u337C\u2252\u2261\u222B\u222E\u2211\u221A\u22A5\u2220\u221F\u22BF\u2235\u2229\u222A"],["b0a1","\u4E9C\u5516\u5A03\u963F\u54C0\u611B\u6328\u59F6\u9022\u8475\u831C\u7A50\u60AA\u63E1\u6E25\u65ED\u8466\u82A6\u9BF5\u6893\u5727\u65A1\u6271\u5B9B\u59D0\u867B\u98F4\u7D62\u7DBE\u9B8E\u6216\u7C9F\u88B7\u5B89\u5EB5\u6309\u6697\u6848\u95C7\u978D\u674F\u4EE5\u4F0A\u4F4D\u4F9D\u5049\u56F2\u5937\u59D4\u5A01\u5C09\u60DF\u610F\u6170\u6613\u6905\u70BA\u754F\u7570\u79FB\u7DAD\u7DEF\u80C3\u840E\u8863\u8B02\u9055\u907A\u533B\u4E95\u4EA5\u57DF\u80B2\u90C1\u78EF\u4E00\u58F1\u6EA2\u9038\u7A32\u8328\u828B\u9C2F\u5141\u5370\u54BD\u54E1\u56E0\u59FB\u5F15\u98F2\u6DEB\u80E4\u852D"],["b1a1","\u9662\u9670\u96A0\u97FB\u540B\u53F3\u5B87\u70CF\u7FBD\u8FC2\u96E8\u536F\u9D5C\u7ABA\u4E11\u7893\u81FC\u6E26\u5618\u5504\u6B1D\u851A\u9C3B\u59E5\u53A9\u6D66\u74DC\u958F\u5642\u4E91\u904B\u96F2\u834F\u990C\u53E1\u55B6\u5B30\u5F71\u6620\u66F3\u6804\u6C38\u6CF3\u6D29\u745B\u76C8\u7A4E\u9834\u82F1\u885B\u8A60\u92ED\u6DB2\u75AB\u76CA\u99C5\u60A6\u8B01\u8D8A\u95B2\u698E\u53AD\u5186\u5712\u5830\u5944\u5BB4\u5EF6\u6028\u63A9\u63F4\u6CBF\u6F14\u708E\u7114\u7159\u71D5\u733F\u7E01\u8276\u82D1\u8597\u9060\u925B\u9D1B\u5869\u65BC\u6C5A\u7525\u51F9\u592E\u5965\u5F80\u5FDC"],["b2a1","\u62BC\u65FA\u6A2A\u6B27\u6BB4\u738B\u7FC1\u8956\u9D2C\u9D0E\u9EC4\u5CA1\u6C96\u837B\u5104\u5C4B\u61B6\u81C6\u6876\u7261\u4E59\u4FFA\u5378\u6069\u6E29\u7A4F\u97F3\u4E0B\u5316\u4EEE\u4F55\u4F3D\u4FA1\u4F73\u52A0\u53EF\u5609\u590F\u5AC1\u5BB6\u5BE1\u79D1\u6687\u679C\u67B6\u6B4C\u6CB3\u706B\u73C2\u798D\u79BE\u7A3C\u7B87\u82B1\u82DB\u8304\u8377\u83EF\u83D3\u8766\u8AB2\u5629\u8CA8\u8FE6\u904E\u971E\u868A\u4FC4\u5CE8\u6211\u7259\u753B\u81E5\u82BD\u86FE\u8CC0\u96C5\u9913\u99D5\u4ECB\u4F1A\u89E3\u56DE\u584A\u58CA\u5EFB\u5FEB\u602A\u6094\u6062\u61D0\u6212\u62D0\u6539"],["b3a1","\u9B41\u6666\u68B0\u6D77\u7070\u754C\u7686\u7D75\u82A5\u87F9\u958B\u968E\u8C9D\u51F1\u52BE\u5916\u54B3\u5BB3\u5D16\u6168\u6982\u6DAF\u788D\u84CB\u8857\u8A72\u93A7\u9AB8\u6D6C\u99A8\u86D9\u57A3\u67FF\u86CE\u920E\u5283\u5687\u5404\u5ED3\u62E1\u64B9\u683C\u6838\u6BBB\u7372\u78BA\u7A6B\u899A\u89D2\u8D6B\u8F03\u90ED\u95A3\u9694\u9769\u5B66\u5CB3\u697D\u984D\u984E\u639B\u7B20\u6A2B\u6A7F\u68B6\u9C0D\u6F5F\u5272\u559D\u6070\u62EC\u6D3B\u6E07\u6ED1\u845B\u8910\u8F44\u4E14\u9C39\u53F6\u691B\u6A3A\u9784\u682A\u515C\u7AC3\u84B2\u91DC\u938C\u565B\u9D28\u6822\u8305\u8431"],["b4a1","\u7CA5\u5208\u82C5\u74E6\u4E7E\u4F83\u51A0\u5BD2\u520A\u52D8\u52E7\u5DFB\u559A\u582A\u59E6\u5B8C\u5B98\u5BDB\u5E72\u5E79\u60A3\u611F\u6163\u61BE\u63DB\u6562\u67D1\u6853\u68FA\u6B3E\u6B53\u6C57\u6F22\u6F97\u6F45\u74B0\u7518\u76E3\u770B\u7AFF\u7BA1\u7C21\u7DE9\u7F36\u7FF0\u809D\u8266\u839E\u89B3\u8ACC\u8CAB\u9084\u9451\u9593\u9591\u95A2\u9665\u97D3\u9928\u8218\u4E38\u542B\u5CB8\u5DCC\u73A9\u764C\u773C\u5CA9\u7FEB\u8D0B\u96C1\u9811\u9854\u9858\u4F01\u4F0E\u5371\u559C\u5668\u57FA\u5947\u5B09\u5BC4\u5C90\u5E0C\u5E7E\u5FCC\u63EE\u673A\u65D7\u65E2\u671F\u68CB\u68C4"],["b5a1","\u6A5F\u5E30\u6BC5\u6C17\u6C7D\u757F\u7948\u5B63\u7A00\u7D00\u5FBD\u898F\u8A18\u8CB4\u8D77\u8ECC\u8F1D\u98E2\u9A0E\u9B3C\u4E80\u507D\u5100\u5993\u5B9C\u622F\u6280\u64EC\u6B3A\u72A0\u7591\u7947\u7FA9\u87FB\u8ABC\u8B70\u63AC\u83CA\u97A0\u5409\u5403\u55AB\u6854\u6A58\u8A70\u7827\u6775\u9ECD\u5374\u5BA2\u811A\u8650\u9006\u4E18\u4E45\u4EC7\u4F11\u53CA\u5438\u5BAE\u5F13\u6025\u6551\u673D\u6C42\u6C72\u6CE3\u7078\u7403\u7A76\u7AAE\u7B08\u7D1A\u7CFE\u7D66\u65E7\u725B\u53BB\u5C45\u5DE8\u62D2\u62E0\u6319\u6E20\u865A\u8A31\u8DDD\u92F8\u6F01\u79A6\u9B5A\u4EA8\u4EAB\u4EAC"],["b6a1","\u4F9B\u4FA0\u50D1\u5147\u7AF6\u5171\u51F6\u5354\u5321\u537F\u53EB\u55AC\u5883\u5CE1\u5F37\u5F4A\u602F\u6050\u606D\u631F\u6559\u6A4B\u6CC1\u72C2\u72ED\u77EF\u80F8\u8105\u8208\u854E\u90F7\u93E1\u97FF\u9957\u9A5A\u4EF0\u51DD\u5C2D\u6681\u696D\u5C40\u66F2\u6975\u7389\u6850\u7C81\u50C5\u52E4\u5747\u5DFE\u9326\u65A4\u6B23\u6B3D\u7434\u7981\u79BD\u7B4B\u7DCA\u82B9\u83CC\u887F\u895F\u8B39\u8FD1\u91D1\u541F\u9280\u4E5D\u5036\u53E5\u533A\u72D7\u7396\u77E9\u82E6\u8EAF\u99C6\u99C8\u99D2\u5177\u611A\u865E\u55B0\u7A7A\u5076\u5BD3\u9047\u9685\u4E32\u6ADB\u91E7\u5C51\u5C48"],["b7a1","\u6398\u7A9F\u6C93\u9774\u8F61\u7AAA\u718A\u9688\u7C82\u6817\u7E70\u6851\u936C\u52F2\u541B\u85AB\u8A13\u7FA4\u8ECD\u90E1\u5366\u8888\u7941\u4FC2\u50BE\u5211\u5144\u5553\u572D\u73EA\u578B\u5951\u5F62\u5F84\u6075\u6176\u6167\u61A9\u63B2\u643A\u656C\u666F\u6842\u6E13\u7566\u7A3D\u7CFB\u7D4C\u7D99\u7E4B\u7F6B\u830E\u834A\u86CD\u8A08\u8A63\u8B66\u8EFD\u981A\u9D8F\u82B8\u8FCE\u9BE8\u5287\u621F\u6483\u6FC0\u9699\u6841\u5091\u6B20\u6C7A\u6F54\u7A74\u7D50\u8840\u8A23\u6708\u4EF6\u5039\u5026\u5065\u517C\u5238\u5263\u55A7\u570F\u5805\u5ACC\u5EFA\u61B2\u61F8\u62F3\u6372"],["b8a1","\u691C\u6A29\u727D\u72AC\u732E\u7814\u786F\u7D79\u770C\u80A9\u898B\u8B19\u8CE2\u8ED2\u9063\u9375\u967A\u9855\u9A13\u9E78\u5143\u539F\u53B3\u5E7B\u5F26\u6E1B\u6E90\u7384\u73FE\u7D43\u8237\u8A00\u8AFA\u9650\u4E4E\u500B\u53E4\u547C\u56FA\u59D1\u5B64\u5DF1\u5EAB\u5F27\u6238\u6545\u67AF\u6E56\u72D0\u7CCA\u88B4\u80A1\u80E1\u83F0\u864E\u8A87\u8DE8\u9237\u96C7\u9867\u9F13\u4E94\u4E92\u4F0D\u5348\u5449\u543E\u5A2F\u5F8C\u5FA1\u609F\u68A7\u6A8E\u745A\u7881\u8A9E\u8AA4\u8B77\u9190\u4E5E\u9BC9\u4EA4\u4F7C\u4FAF\u5019\u5016\u5149\u516C\u529F\u52B9\u52FE\u539A\u53E3\u5411"],["b9a1","\u540E\u5589\u5751\u57A2\u597D\u5B54\u5B5D\u5B8F\u5DE5\u5DE7\u5DF7\u5E78\u5E83\u5E9A\u5EB7\u5F18\u6052\u614C\u6297\u62D8\u63A7\u653B\u6602\u6643\u66F4\u676D\u6821\u6897\u69CB\u6C5F\u6D2A\u6D69\u6E2F\u6E9D\u7532\u7687\u786C\u7A3F\u7CE0\u7D05\u7D18\u7D5E\u7DB1\u8015\u8003\u80AF\u80B1\u8154\u818F\u822A\u8352\u884C\u8861\u8B1B\u8CA2\u8CFC\u90CA\u9175\u9271\u783F\u92FC\u95A4\u964D\u9805\u9999\u9AD8\u9D3B\u525B\u52AB\u53F7\u5408\u58D5\u62F7\u6FE0\u8C6A\u8F5F\u9EB9\u514B\u523B\u544A\u56FD\u7A40\u9177\u9D60\u9ED2\u7344\u6F09\u8170\u7511\u5FFD\u60DA\u9AA8\u72DB\u8FBC"],["baa1","\u6B64\u9803\u4ECA\u56F0\u5764\u58BE\u5A5A\u6068\u61C7\u660F\u6606\u6839\u68B1\u6DF7\u75D5\u7D3A\u826E\u9B42\u4E9B\u4F50\u53C9\u5506\u5D6F\u5DE6\u5DEE\u67FB\u6C99\u7473\u7802\u8A50\u9396\u88DF\u5750\u5EA7\u632B\u50B5\u50AC\u518D\u6700\u54C9\u585E\u59BB\u5BB0\u5F69\u624D\u63A1\u683D\u6B73\u6E08\u707D\u91C7\u7280\u7815\u7826\u796D\u658E\u7D30\u83DC\u88C1\u8F09\u969B\u5264\u5728\u6750\u7F6A\u8CA1\u51B4\u5742\u962A\u583A\u698A\u80B4\u54B2\u5D0E\u57FC\u7895\u9DFA\u4F5C\u524A\u548B\u643E\u6628\u6714\u67F5\u7A84\u7B56\u7D22\u932F\u685C\u9BAD\u7B39\u5319\u518A\u5237"],["bba1","\u5BDF\u62F6\u64AE\u64E6\u672D\u6BBA\u85A9\u96D1\u7690\u9BD6\u634C\u9306\u9BAB\u76BF\u6652\u4E09\u5098\u53C2\u5C71\u60E8\u6492\u6563\u685F\u71E6\u73CA\u7523\u7B97\u7E82\u8695\u8B83\u8CDB\u9178\u9910\u65AC\u66AB\u6B8B\u4ED5\u4ED4\u4F3A\u4F7F\u523A\u53F8\u53F2\u55E3\u56DB\u58EB\u59CB\u59C9\u59FF\u5B50\u5C4D\u5E02\u5E2B\u5FD7\u601D\u6307\u652F\u5B5C\u65AF\u65BD\u65E8\u679D\u6B62\u6B7B\u6C0F\u7345\u7949\u79C1\u7CF8\u7D19\u7D2B\u80A2\u8102\u81F3\u8996\u8A5E\u8A69\u8A66\u8A8C\u8AEE\u8CC7\u8CDC\u96CC\u98FC\u6B6F\u4E8B\u4F3C\u4F8D\u5150\u5B57\u5BFA\u6148\u6301\u6642"],["bca1","\u6B21\u6ECB\u6CBB\u723E\u74BD\u75D4\u78C1\u793A\u800C\u8033\u81EA\u8494\u8F9E\u6C50\u9E7F\u5F0F\u8B58\u9D2B\u7AFA\u8EF8\u5B8D\u96EB\u4E03\u53F1\u57F7\u5931\u5AC9\u5BA4\u6089\u6E7F\u6F06\u75BE\u8CEA\u5B9F\u8500\u7BE0\u5072\u67F4\u829D\u5C61\u854A\u7E1E\u820E\u5199\u5C04\u6368\u8D66\u659C\u716E\u793E\u7D17\u8005\u8B1D\u8ECA\u906E\u86C7\u90AA\u501F\u52FA\u5C3A\u6753\u707C\u7235\u914C\u91C8\u932B\u82E5\u5BC2\u5F31\u60F9\u4E3B\u53D6\u5B88\u624B\u6731\u6B8A\u72E9\u73E0\u7A2E\u816B\u8DA3\u9152\u9996\u5112\u53D7\u546A\u5BFF\u6388\u6A39\u7DAC\u9700\u56DA\u53CE\u5468"],["bda1","\u5B97\u5C31\u5DDE\u4FEE\u6101\u62FE\u6D32\u79C0\u79CB\u7D42\u7E4D\u7FD2\u81ED\u821F\u8490\u8846\u8972\u8B90\u8E74\u8F2F\u9031\u914B\u916C\u96C6\u919C\u4EC0\u4F4F\u5145\u5341\u5F93\u620E\u67D4\u6C41\u6E0B\u7363\u7E26\u91CD\u9283\u53D4\u5919\u5BBF\u6DD1\u795D\u7E2E\u7C9B\u587E\u719F\u51FA\u8853\u8FF0\u4FCA\u5CFB\u6625\u77AC\u7AE3\u821C\u99FF\u51C6\u5FAA\u65EC\u696F\u6B89\u6DF3\u6E96\u6F64\u76FE\u7D14\u5DE1\u9075\u9187\u9806\u51E6\u521D\u6240\u6691\u66D9\u6E1A\u5EB6\u7DD2\u7F72\u66F8\u85AF\u85F7\u8AF8\u52A9\u53D9\u5973\u5E8F\u5F90\u6055\u92E4\u9664\u50B7\u511F"],["bea1","\u52DD\u5320\u5347\u53EC\u54E8\u5546\u5531\u5617\u5968\u59BE\u5A3C\u5BB5\u5C06\u5C0F\u5C11\u5C1A\u5E84\u5E8A\u5EE0\u5F70\u627F\u6284\u62DB\u638C\u6377\u6607\u660C\u662D\u6676\u677E\u68A2\u6A1F\u6A35\u6CBC\u6D88\u6E09\u6E58\u713C\u7126\u7167\u75C7\u7701\u785D\u7901\u7965\u79F0\u7AE0\u7B11\u7CA7\u7D39\u8096\u83D6\u848B\u8549\u885D\u88F3\u8A1F\u8A3C\u8A54\u8A73\u8C61\u8CDE\u91A4\u9266\u937E\u9418\u969C\u9798\u4E0A\u4E08\u4E1E\u4E57\u5197\u5270\u57CE\u5834\u58CC\u5B22\u5E38\u60C5\u64FE\u6761\u6756\u6D44\u72B6\u7573\u7A63\u84B8\u8B72\u91B8\u9320\u5631\u57F4\u98FE"],["bfa1","\u62ED\u690D\u6B96\u71ED\u7E54\u8077\u8272\u89E6\u98DF\u8755\u8FB1\u5C3B\u4F38\u4FE1\u4FB5\u5507\u5A20\u5BDD\u5BE9\u5FC3\u614E\u632F\u65B0\u664B\u68EE\u699B\u6D78\u6DF1\u7533\u75B9\u771F\u795E\u79E6\u7D33\u81E3\u82AF\u85AA\u89AA\u8A3A\u8EAB\u8F9B\u9032\u91DD\u9707\u4EBA\u4EC1\u5203\u5875\u58EC\u5C0B\u751A\u5C3D\u814E\u8A0A\u8FC5\u9663\u976D\u7B25\u8ACF\u9808\u9162\u56F3\u53A8\u9017\u5439\u5782\u5E25\u63A8\u6C34\u708A\u7761\u7C8B\u7FE0\u8870\u9042\u9154\u9310\u9318\u968F\u745E\u9AC4\u5D07\u5D69\u6570\u67A2\u8DA8\u96DB\u636E\u6749\u6919\u83C5\u9817\u96C0\u88FE"],["c0a1","\u6F84\u647A\u5BF8\u4E16\u702C\u755D\u662F\u51C4\u5236\u52E2\u59D3\u5F81\u6027\u6210\u653F\u6574\u661F\u6674\u68F2\u6816\u6B63\u6E05\u7272\u751F\u76DB\u7CBE\u8056\u58F0\u88FD\u897F\u8AA0\u8A93\u8ACB\u901D\u9192\u9752\u9759\u6589\u7A0E\u8106\u96BB\u5E2D\u60DC\u621A\u65A5\u6614\u6790\u77F3\u7A4D\u7C4D\u7E3E\u810A\u8CAC\u8D64\u8DE1\u8E5F\u78A9\u5207\u62D9\u63A5\u6442\u6298\u8A2D\u7A83\u7BC0\u8AAC\u96EA\u7D76\u820C\u8749\u4ED9\u5148\u5343\u5360\u5BA3\u5C02\u5C16\u5DDD\u6226\u6247\u64B0\u6813\u6834\u6CC9\u6D45\u6D17\u67D3\u6F5C\u714E\u717D\u65CB\u7A7F\u7BAD\u7DDA"],["c1a1","\u7E4A\u7FA8\u817A\u821B\u8239\u85A6\u8A6E\u8CCE\u8DF5\u9078\u9077\u92AD\u9291\u9583\u9BAE\u524D\u5584\u6F38\u7136\u5168\u7985\u7E55\u81B3\u7CCE\u564C\u5851\u5CA8\u63AA\u66FE\u66FD\u695A\u72D9\u758F\u758E\u790E\u7956\u79DF\u7C97\u7D20\u7D44\u8607\u8A34\u963B\u9061\u9F20\u50E7\u5275\u53CC\u53E2\u5009\u55AA\u58EE\u594F\u723D\u5B8B\u5C64\u531D\u60E3\u60F3\u635C\u6383\u633F\u63BB\u64CD\u65E9\u66F9\u5DE3\u69CD\u69FD\u6F15\u71E5\u4E89\u75E9\u76F8\u7A93\u7CDF\u7DCF\u7D9C\u8061\u8349\u8358\u846C\u84BC\u85FB\u88C5\u8D70\u9001\u906D\u9397\u971C\u9A12\u50CF\u5897\u618E"],["c2a1","\u81D3\u8535\u8D08\u9020\u4FC3\u5074\u5247\u5373\u606F\u6349\u675F\u6E2C\u8DB3\u901F\u4FD7\u5C5E\u8CCA\u65CF\u7D9A\u5352\u8896\u5176\u63C3\u5B58\u5B6B\u5C0A\u640D\u6751\u905C\u4ED6\u591A\u592A\u6C70\u8A51\u553E\u5815\u59A5\u60F0\u6253\u67C1\u8235\u6955\u9640\u99C4\u9A28\u4F53\u5806\u5BFE\u8010\u5CB1\u5E2F\u5F85\u6020\u614B\u6234\u66FF\u6CF0\u6EDE\u80CE\u817F\u82D4\u888B\u8CB8\u9000\u902E\u968A\u9EDB\u9BDB\u4EE3\u53F0\u5927\u7B2C\u918D\u984C\u9DF9\u6EDD\u7027\u5353\u5544\u5B85\u6258\u629E\u62D3\u6CA2\u6FEF\u7422\u8A17\u9438\u6FC1\u8AFE\u8338\u51E7\u86F8\u53EA"],["c3a1","\u53E9\u4F46\u9054\u8FB0\u596A\u8131\u5DFD\u7AEA\u8FBF\u68DA\u8C37\u72F8\u9C48\u6A3D\u8AB0\u4E39\u5358\u5606\u5766\u62C5\u63A2\u65E6\u6B4E\u6DE1\u6E5B\u70AD\u77ED\u7AEF\u7BAA\u7DBB\u803D\u80C6\u86CB\u8A95\u935B\u56E3\u58C7\u5F3E\u65AD\u6696\u6A80\u6BB5\u7537\u8AC7\u5024\u77E5\u5730\u5F1B\u6065\u667A\u6C60\u75F4\u7A1A\u7F6E\u81F4\u8718\u9045\u99B3\u7BC9\u755C\u7AF9\u7B51\u84C4\u9010\u79E9\u7A92\u8336\u5AE1\u7740\u4E2D\u4EF2\u5B99\u5FE0\u62BD\u663C\u67F1\u6CE8\u866B\u8877\u8A3B\u914E\u92F3\u99D0\u6A17\u7026\u732A\u82E7\u8457\u8CAF\u4E01\u5146\u51CB\u558B\u5BF5"],["c4a1","\u5E16\u5E33\u5E81\u5F14\u5F35\u5F6B\u5FB4\u61F2\u6311\u66A2\u671D\u6F6E\u7252\u753A\u773A\u8074\u8139\u8178\u8776\u8ABF\u8ADC\u8D85\u8DF3\u929A\u9577\u9802\u9CE5\u52C5\u6357\u76F4\u6715\u6C88\u73CD\u8CC3\u93AE\u9673\u6D25\u589C\u690E\u69CC\u8FFD\u939A\u75DB\u901A\u585A\u6802\u63B4\u69FB\u4F43\u6F2C\u67D8\u8FBB\u8526\u7DB4\u9354\u693F\u6F70\u576A\u58F7\u5B2C\u7D2C\u722A\u540A\u91E3\u9DB4\u4EAD\u4F4E\u505C\u5075\u5243\u8C9E\u5448\u5824\u5B9A\u5E1D\u5E95\u5EAD\u5EF7\u5F1F\u608C\u62B5\u633A\u63D0\u68AF\u6C40\u7887\u798E\u7A0B\u7DE0\u8247\u8A02\u8AE6\u8E44\u9013"],["c5a1","\u90B8\u912D\u91D8\u9F0E\u6CE5\u6458\u64E2\u6575\u6EF4\u7684\u7B1B\u9069\u93D1\u6EBA\u54F2\u5FB9\u64A4\u8F4D\u8FED\u9244\u5178\u586B\u5929\u5C55\u5E97\u6DFB\u7E8F\u751C\u8CBC\u8EE2\u985B\u70B9\u4F1D\u6BBF\u6FB1\u7530\u96FB\u514E\u5410\u5835\u5857\u59AC\u5C60\u5F92\u6597\u675C\u6E21\u767B\u83DF\u8CED\u9014\u90FD\u934D\u7825\u783A\u52AA\u5EA6\u571F\u5974\u6012\u5012\u515A\u51AC\u51CD\u5200\u5510\u5854\u5858\u5957\u5B95\u5CF6\u5D8B\u60BC\u6295\u642D\u6771\u6843\u68BC\u68DF\u76D7\u6DD8\u6E6F\u6D9B\u706F\u71C8\u5F53\u75D8\u7977\u7B49\u7B54\u7B52\u7CD6\u7D71\u5230"],["c6a1","\u8463\u8569\u85E4\u8A0E\u8B04\u8C46\u8E0F\u9003\u900F\u9419\u9676\u982D\u9A30\u95D8\u50CD\u52D5\u540C\u5802\u5C0E\u61A7\u649E\u6D1E\u77B3\u7AE5\u80F4\u8404\u9053\u9285\u5CE0\u9D07\u533F\u5F97\u5FB3\u6D9C\u7279\u7763\u79BF\u7BE4\u6BD2\u72EC\u8AAD\u6803\u6A61\u51F8\u7A81\u6934\u5C4A\u9CF6\u82EB\u5BC5\u9149\u701E\u5678\u5C6F\u60C7\u6566\u6C8C\u8C5A\u9041\u9813\u5451\u66C7\u920D\u5948\u90A3\u5185\u4E4D\u51EA\u8599\u8B0E\u7058\u637A\u934B\u6962\u99B4\u7E04\u7577\u5357\u6960\u8EDF\u96E3\u6C5D\u4E8C\u5C3C\u5F10\u8FE9\u5302\u8CD1\u8089\u8679\u5EFF\u65E5\u4E73\u5165"],["c7a1","\u5982\u5C3F\u97EE\u4EFB\u598A\u5FCD\u8A8D\u6FE1\u79B0\u7962\u5BE7\u8471\u732B\u71B1\u5E74\u5FF5\u637B\u649A\u71C3\u7C98\u4E43\u5EFC\u4E4B\u57DC\u56A2\u60A9\u6FC3\u7D0D\u80FD\u8133\u81BF\u8FB2\u8997\u86A4\u5DF4\u628A\u64AD\u8987\u6777\u6CE2\u6D3E\u7436\u7834\u5A46\u7F75\u82AD\u99AC\u4FF3\u5EC3\u62DD\u6392\u6557\u676F\u76C3\u724C\u80CC\u80BA\u8F29\u914D\u500D\u57F9\u5A92\u6885\u6973\u7164\u72FD\u8CB7\u58F2\u8CE0\u966A\u9019\u877F\u79E4\u77E7\u8429\u4F2F\u5265\u535A\u62CD\u67CF\u6CCA\u767D\u7B94\u7C95\u8236\u8584\u8FEB\u66DD\u6F20\u7206\u7E1B\u83AB\u99C1\u9EA6"],["c8a1","\u51FD\u7BB1\u7872\u7BB8\u8087\u7B48\u6AE8\u5E61\u808C\u7551\u7560\u516B\u9262\u6E8C\u767A\u9197\u9AEA\u4F10\u7F70\u629C\u7B4F\u95A5\u9CE9\u567A\u5859\u86E4\u96BC\u4F34\u5224\u534A\u53CD\u53DB\u5E06\u642C\u6591\u677F\u6C3E\u6C4E\u7248\u72AF\u73ED\u7554\u7E41\u822C\u85E9\u8CA9\u7BC4\u91C6\u7169\u9812\u98EF\u633D\u6669\u756A\u76E4\u78D0\u8543\u86EE\u532A\u5351\u5426\u5983\u5E87\u5F7C\u60B2\u6249\u6279\u62AB\u6590\u6BD4\u6CCC\u75B2\u76AE\u7891\u79D8\u7DCB\u7F77\u80A5\u88AB\u8AB9\u8CBB\u907F\u975E\u98DB\u6A0B\u7C38\u5099\u5C3E\u5FAE\u6787\u6BD8\u7435\u7709\u7F8E"],["c9a1","\u9F3B\u67CA\u7A17\u5339\u758B\u9AED\u5F66\u819D\u83F1\u8098\u5F3C\u5FC5\u7562\u7B46\u903C\u6867\u59EB\u5A9B\u7D10\u767E\u8B2C\u4FF5\u5F6A\u6A19\u6C37\u6F02\u74E2\u7968\u8868\u8A55\u8C79\u5EDF\u63CF\u75C5\u79D2\u82D7\u9328\u92F2\u849C\u86ED\u9C2D\u54C1\u5F6C\u658C\u6D5C\u7015\u8CA7\u8CD3\u983B\u654F\u74F6\u4E0D\u4ED8\u57E0\u592B\u5A66\u5BCC\u51A8\u5E03\u5E9C\u6016\u6276\u6577\u65A7\u666E\u6D6E\u7236\u7B26\u8150\u819A\u8299\u8B5C\u8CA0\u8CE6\u8D74\u961C\u9644\u4FAE\u64AB\u6B66\u821E\u8461\u856A\u90E8\u5C01\u6953\u98A8\u847A\u8557\u4F0F\u526F\u5FA9\u5E45\u670D"],["caa1","\u798F\u8179\u8907\u8986\u6DF5\u5F17\u6255\u6CB8\u4ECF\u7269\u9B92\u5206\u543B\u5674\u58B3\u61A4\u626E\u711A\u596E\u7C89\u7CDE\u7D1B\u96F0\u6587\u805E\u4E19\u4F75\u5175\u5840\u5E63\u5E73\u5F0A\u67C4\u4E26\u853D\u9589\u965B\u7C73\u9801\u50FB\u58C1\u7656\u78A7\u5225\u77A5\u8511\u7B86\u504F\u5909\u7247\u7BC7\u7DE8\u8FBA\u8FD4\u904D\u4FBF\u52C9\u5A29\u5F01\u97AD\u4FDD\u8217\u92EA\u5703\u6355\u6B69\u752B\u88DC\u8F14\u7A42\u52DF\u5893\u6155\u620A\u66AE\u6BCD\u7C3F\u83E9\u5023\u4FF8\u5305\u5446\u5831\u5949\u5B9D\u5CF0\u5CEF\u5D29\u5E96\u62B1\u6367\u653E\u65B9\u670B"],["cba1","\u6CD5\u6CE1\u70F9\u7832\u7E2B\u80DE\u82B3\u840C\u84EC\u8702\u8912\u8A2A\u8C4A\u90A6\u92D2\u98FD\u9CF3\u9D6C\u4E4F\u4EA1\u508D\u5256\u574A\u59A8\u5E3D\u5FD8\u5FD9\u623F\u66B4\u671B\u67D0\u68D2\u5192\u7D21\u80AA\u81A8\u8B00\u8C8C\u8CBF\u927E\u9632\u5420\u982C\u5317\u50D5\u535C\u58A8\u64B2\u6734\u7267\u7766\u7A46\u91E6\u52C3\u6CA1\u6B86\u5800\u5E4C\u5954\u672C\u7FFB\u51E1\u76C6\u6469\u78E8\u9B54\u9EBB\u57CB\u59B9\u6627\u679A\u6BCE\u54E9\u69D9\u5E55\u819C\u6795\u9BAA\u67FE\u9C52\u685D\u4EA6\u4FE3\u53C8\u62B9\u672B\u6CAB\u8FC4\u4FAD\u7E6D\u9EBF\u4E07\u6162\u6E80"],["cca1","\u6F2B\u8513\u5473\u672A\u9B45\u5DF3\u7B95\u5CAC\u5BC6\u871C\u6E4A\u84D1\u7A14\u8108\u5999\u7C8D\u6C11\u7720\u52D9\u5922\u7121\u725F\u77DB\u9727\u9D61\u690B\u5A7F\u5A18\u51A5\u540D\u547D\u660E\u76DF\u8FF7\u9298\u9CF4\u59EA\u725D\u6EC5\u514D\u68C9\u7DBF\u7DEC\u9762\u9EBA\u6478\u6A21\u8302\u5984\u5B5F\u6BDB\u731B\u76F2\u7DB2\u8017\u8499\u5132\u6728\u9ED9\u76EE\u6762\u52FF\u9905\u5C24\u623B\u7C7E\u8CB0\u554F\u60B6\u7D0B\u9580\u5301\u4E5F\u51B6\u591C\u723A\u8036\u91CE\u5F25\u77E2\u5384\u5F79\u7D04\u85AC\u8A33\u8E8D\u9756\u67F3\u85AE\u9453\u6109\u6108\u6CB9\u7652"],["cda1","\u8AED\u8F38\u552F\u4F51\u512A\u52C7\u53CB\u5BA5\u5E7D\u60A0\u6182\u63D6\u6709\u67DA\u6E67\u6D8C\u7336\u7337\u7531\u7950\u88D5\u8A98\u904A\u9091\u90F5\u96C4\u878D\u5915\u4E88\u4F59\u4E0E\u8A89\u8F3F\u9810\u50AD\u5E7C\u5996\u5BB9\u5EB8\u63DA\u63FA\u64C1\u66DC\u694A\u69D8\u6D0B\u6EB6\u7194\u7528\u7AAF\u7F8A\u8000\u8449\u84C9\u8981\u8B21\u8E0A\u9065\u967D\u990A\u617E\u6291\u6B32\u6C83\u6D74\u7FCC\u7FFC\u6DC0\u7F85\u87BA\u88F8\u6765\u83B1\u983C\u96F7\u6D1B\u7D61\u843D\u916A\u4E71\u5375\u5D50\u6B04\u6FEB\u85CD\u862D\u89A7\u5229\u540F\u5C65\u674E\u68A8\u7406\u7483"],["cea1","\u75E2\u88CF\u88E1\u91CC\u96E2\u9678\u5F8B\u7387\u7ACB\u844E\u63A0\u7565\u5289\u6D41\u6E9C\u7409\u7559\u786B\u7C92\u9686\u7ADC\u9F8D\u4FB6\u616E\u65C5\u865C\u4E86\u4EAE\u50DA\u4E21\u51CC\u5BEE\u6599\u6881\u6DBC\u731F\u7642\u77AD\u7A1C\u7CE7\u826F\u8AD2\u907C\u91CF\u9675\u9818\u529B\u7DD1\u502B\u5398\u6797\u6DCB\u71D0\u7433\u81E8\u8F2A\u96A3\u9C57\u9E9F\u7460\u5841\u6D99\u7D2F\u985E\u4EE4\u4F36\u4F8B\u51B7\u52B1\u5DBA\u601C\u73B2\u793C\u82D3\u9234\u96B7\u96F6\u970A\u9E97\u9F62\u66A6\u6B74\u5217\u52A3\u70C8\u88C2\u5EC9\u604B\u6190\u6F23\u7149\u7C3E\u7DF4\u806F"],["cfa1","\u84EE\u9023\u932C\u5442\u9B6F\u6AD3\u7089\u8CC2\u8DEF\u9732\u52B4\u5A41\u5ECA\u5F04\u6717\u697C\u6994\u6D6A\u6F0F\u7262\u72FC\u7BED\u8001\u807E\u874B\u90CE\u516D\u9E93\u7984\u808B\u9332\u8AD6\u502D\u548C\u8A71\u6B6A\u8CC4\u8107\u60D1\u67A0\u9DF2\u4E99\u4E98\u9C10\u8A6B\u85C1\u8568\u6900\u6E7E\u7897\u8155"],["d0a1","\u5F0C\u4E10\u4E15\u4E2A\u4E31\u4E36\u4E3C\u4E3F\u4E42\u4E56\u4E58\u4E82\u4E85\u8C6B\u4E8A\u8212\u5F0D\u4E8E\u4E9E\u4E9F\u4EA0\u4EA2\u4EB0\u4EB3\u4EB6\u4ECE\u4ECD\u4EC4\u4EC6\u4EC2\u4ED7\u4EDE\u4EED\u4EDF\u4EF7\u4F09\u4F5A\u4F30\u4F5B\u4F5D\u4F57\u4F47\u4F76\u4F88\u4F8F\u4F98\u4F7B\u4F69\u4F70\u4F91\u4F6F\u4F86\u4F96\u5118\u4FD4\u4FDF\u4FCE\u4FD8\u4FDB\u4FD1\u4FDA\u4FD0\u4FE4\u4FE5\u501A\u5028\u5014\u502A\u5025\u5005\u4F1C\u4FF6\u5021\u5029\u502C\u4FFE\u4FEF\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505A\u5056\u506C\u5078\u5080\u509A\u5085\u50B4\u50B2"],["d1a1","\u50C9\u50CA\u50B3\u50C2\u50D6\u50DE\u50E5\u50ED\u50E3\u50EE\u50F9\u50F5\u5109\u5101\u5102\u5116\u5115\u5114\u511A\u5121\u513A\u5137\u513C\u513B\u513F\u5140\u5152\u514C\u5154\u5162\u7AF8\u5169\u516A\u516E\u5180\u5182\u56D8\u518C\u5189\u518F\u5191\u5193\u5195\u5196\u51A4\u51A6\u51A2\u51A9\u51AA\u51AB\u51B3\u51B1\u51B2\u51B0\u51B5\u51BD\u51C5\u51C9\u51DB\u51E0\u8655\u51E9\u51ED\u51F0\u51F5\u51FE\u5204\u520B\u5214\u520E\u5227\u522A\u522E\u5233\u5239\u524F\u5244\u524B\u524C\u525E\u5254\u526A\u5274\u5269\u5273\u527F\u527D\u528D\u5294\u5292\u5271\u5288\u5291\u8FA8"],["d2a1","\u8FA7\u52AC\u52AD\u52BC\u52B5\u52C1\u52CD\u52D7\u52DE\u52E3\u52E6\u98ED\u52E0\u52F3\u52F5\u52F8\u52F9\u5306\u5308\u7538\u530D\u5310\u530F\u5315\u531A\u5323\u532F\u5331\u5333\u5338\u5340\u5346\u5345\u4E17\u5349\u534D\u51D6\u535E\u5369\u536E\u5918\u537B\u5377\u5382\u5396\u53A0\u53A6\u53A5\u53AE\u53B0\u53B6\u53C3\u7C12\u96D9\u53DF\u66FC\u71EE\u53EE\u53E8\u53ED\u53FA\u5401\u543D\u5440\u542C\u542D\u543C\u542E\u5436\u5429\u541D\u544E\u548F\u5475\u548E\u545F\u5471\u5477\u5470\u5492\u547B\u5480\u5476\u5484\u5490\u5486\u54C7\u54A2\u54B8\u54A5\u54AC\u54C4\u54C8\u54A8"],["d3a1","\u54AB\u54C2\u54A4\u54BE\u54BC\u54D8\u54E5\u54E6\u550F\u5514\u54FD\u54EE\u54ED\u54FA\u54E2\u5539\u5540\u5563\u554C\u552E\u555C\u5545\u5556\u5557\u5538\u5533\u555D\u5599\u5580\u54AF\u558A\u559F\u557B\u557E\u5598\u559E\u55AE\u557C\u5583\u55A9\u5587\u55A8\u55DA\u55C5\u55DF\u55C4\u55DC\u55E4\u55D4\u5614\u55F7\u5616\u55FE\u55FD\u561B\u55F9\u564E\u5650\u71DF\u5634\u5636\u5632\u5638\u566B\u5664\u562F\u566C\u566A\u5686\u5680\u568A\u56A0\u5694\u568F\u56A5\u56AE\u56B6\u56B4\u56C2\u56BC\u56C1\u56C3\u56C0\u56C8\u56CE\u56D1\u56D3\u56D7\u56EE\u56F9\u5700\u56FF\u5704\u5709"],["d4a1","\u5708\u570B\u570D\u5713\u5718\u5716\u55C7\u571C\u5726\u5737\u5738\u574E\u573B\u5740\u574F\u5769\u57C0\u5788\u5761\u577F\u5789\u5793\u57A0\u57B3\u57A4\u57AA\u57B0\u57C3\u57C6\u57D4\u57D2\u57D3\u580A\u57D6\u57E3\u580B\u5819\u581D\u5872\u5821\u5862\u584B\u5870\u6BC0\u5852\u583D\u5879\u5885\u58B9\u589F\u58AB\u58BA\u58DE\u58BB\u58B8\u58AE\u58C5\u58D3\u58D1\u58D7\u58D9\u58D8\u58E5\u58DC\u58E4\u58DF\u58EF\u58FA\u58F9\u58FB\u58FC\u58FD\u5902\u590A\u5910\u591B\u68A6\u5925\u592C\u592D\u5932\u5938\u593E\u7AD2\u5955\u5950\u594E\u595A\u5958\u5962\u5960\u5967\u596C\u5969"],["d5a1","\u5978\u5981\u599D\u4F5E\u4FAB\u59A3\u59B2\u59C6\u59E8\u59DC\u598D\u59D9\u59DA\u5A25\u5A1F\u5A11\u5A1C\u5A09\u5A1A\u5A40\u5A6C\u5A49\u5A35\u5A36\u5A62\u5A6A\u5A9A\u5ABC\u5ABE\u5ACB\u5AC2\u5ABD\u5AE3\u5AD7\u5AE6\u5AE9\u5AD6\u5AFA\u5AFB\u5B0C\u5B0B\u5B16\u5B32\u5AD0\u5B2A\u5B36\u5B3E\u5B43\u5B45\u5B40\u5B51\u5B55\u5B5A\u5B5B\u5B65\u5B69\u5B70\u5B73\u5B75\u5B78\u6588\u5B7A\u5B80\u5B83\u5BA6\u5BB8\u5BC3\u5BC7\u5BC9\u5BD4\u5BD0\u5BE4\u5BE6\u5BE2\u5BDE\u5BE5\u5BEB\u5BF0\u5BF6\u5BF3\u5C05\u5C07\u5C08\u5C0D\u5C13\u5C20\u5C22\u5C28\u5C38\u5C39\u5C41\u5C46\u5C4E\u5C53"],["d6a1","\u5C50\u5C4F\u5B71\u5C6C\u5C6E\u4E62\u5C76\u5C79\u5C8C\u5C91\u5C94\u599B\u5CAB\u5CBB\u5CB6\u5CBC\u5CB7\u5CC5\u5CBE\u5CC7\u5CD9\u5CE9\u5CFD\u5CFA\u5CED\u5D8C\u5CEA\u5D0B\u5D15\u5D17\u5D5C\u5D1F\u5D1B\u5D11\u5D14\u5D22\u5D1A\u5D19\u5D18\u5D4C\u5D52\u5D4E\u5D4B\u5D6C\u5D73\u5D76\u5D87\u5D84\u5D82\u5DA2\u5D9D\u5DAC\u5DAE\u5DBD\u5D90\u5DB7\u5DBC\u5DC9\u5DCD\u5DD3\u5DD2\u5DD6\u5DDB\u5DEB\u5DF2\u5DF5\u5E0B\u5E1A\u5E19\u5E11\u5E1B\u5E36\u5E37\u5E44\u5E43\u5E40\u5E4E\u5E57\u5E54\u5E5F\u5E62\u5E64\u5E47\u5E75\u5E76\u5E7A\u9EBC\u5E7F\u5EA0\u5EC1\u5EC2\u5EC8\u5ED0\u5ECF"],["d7a1","\u5ED6\u5EE3\u5EDD\u5EDA\u5EDB\u5EE2\u5EE1\u5EE8\u5EE9\u5EEC\u5EF1\u5EF3\u5EF0\u5EF4\u5EF8\u5EFE\u5F03\u5F09\u5F5D\u5F5C\u5F0B\u5F11\u5F16\u5F29\u5F2D\u5F38\u5F41\u5F48\u5F4C\u5F4E\u5F2F\u5F51\u5F56\u5F57\u5F59\u5F61\u5F6D\u5F73\u5F77\u5F83\u5F82\u5F7F\u5F8A\u5F88\u5F91\u5F87\u5F9E\u5F99\u5F98\u5FA0\u5FA8\u5FAD\u5FBC\u5FD6\u5FFB\u5FE4\u5FF8\u5FF1\u5FDD\u60B3\u5FFF\u6021\u6060\u6019\u6010\u6029\u600E\u6031\u601B\u6015\u602B\u6026\u600F\u603A\u605A\u6041\u606A\u6077\u605F\u604A\u6046\u604D\u6063\u6043\u6064\u6042\u606C\u606B\u6059\u6081\u608D\u60E7\u6083\u609A"],["d8a1","\u6084\u609B\u6096\u6097\u6092\u60A7\u608B\u60E1\u60B8\u60E0\u60D3\u60B4\u5FF0\u60BD\u60C6\u60B5\u60D8\u614D\u6115\u6106\u60F6\u60F7\u6100\u60F4\u60FA\u6103\u6121\u60FB\u60F1\u610D\u610E\u6147\u613E\u6128\u6127\u614A\u613F\u613C\u612C\u6134\u613D\u6142\u6144\u6173\u6177\u6158\u6159\u615A\u616B\u6174\u616F\u6165\u6171\u615F\u615D\u6153\u6175\u6199\u6196\u6187\u61AC\u6194\u619A\u618A\u6191\u61AB\u61AE\u61CC\u61CA\u61C9\u61F7\u61C8\u61C3\u61C6\u61BA\u61CB\u7F79\u61CD\u61E6\u61E3\u61F6\u61FA\u61F4\u61FF\u61FD\u61FC\u61FE\u6200\u6208\u6209\u620D\u620C\u6214\u621B"],["d9a1","\u621E\u6221\u622A\u622E\u6230\u6232\u6233\u6241\u624E\u625E\u6263\u625B\u6260\u6268\u627C\u6282\u6289\u627E\u6292\u6293\u6296\u62D4\u6283\u6294\u62D7\u62D1\u62BB\u62CF\u62FF\u62C6\u64D4\u62C8\u62DC\u62CC\u62CA\u62C2\u62C7\u629B\u62C9\u630C\u62EE\u62F1\u6327\u6302\u6308\u62EF\u62F5\u6350\u633E\u634D\u641C\u634F\u6396\u638E\u6380\u63AB\u6376\u63A3\u638F\u6389\u639F\u63B5\u636B\u6369\u63BE\u63E9\u63C0\u63C6\u63E3\u63C9\u63D2\u63F6\u63C4\u6416\u6434\u6406\u6413\u6426\u6436\u651D\u6417\u6428\u640F\u6467\u646F\u6476\u644E\u652A\u6495\u6493\u64A5\u64A9\u6488\u64BC"],["daa1","\u64DA\u64D2\u64C5\u64C7\u64BB\u64D8\u64C2\u64F1\u64E7\u8209\u64E0\u64E1\u62AC\u64E3\u64EF\u652C\u64F6\u64F4\u64F2\u64FA\u6500\u64FD\u6518\u651C\u6505\u6524\u6523\u652B\u6534\u6535\u6537\u6536\u6538\u754B\u6548\u6556\u6555\u654D\u6558\u655E\u655D\u6572\u6578\u6582\u6583\u8B8A\u659B\u659F\u65AB\u65B7\u65C3\u65C6\u65C1\u65C4\u65CC\u65D2\u65DB\u65D9\u65E0\u65E1\u65F1\u6772\u660A\u6603\u65FB\u6773\u6635\u6636\u6634\u661C\u664F\u6644\u6649\u6641\u665E\u665D\u6664\u6667\u6668\u665F\u6662\u6670\u6683\u6688\u668E\u6689\u6684\u6698\u669D\u66C1\u66B9\u66C9\u66BE\u66BC"],["dba1","\u66C4\u66B8\u66D6\u66DA\u66E0\u663F\u66E6\u66E9\u66F0\u66F5\u66F7\u670F\u6716\u671E\u6726\u6727\u9738\u672E\u673F\u6736\u6741\u6738\u6737\u6746\u675E\u6760\u6759\u6763\u6764\u6789\u6770\u67A9\u677C\u676A\u678C\u678B\u67A6\u67A1\u6785\u67B7\u67EF\u67B4\u67EC\u67B3\u67E9\u67B8\u67E4\u67DE\u67DD\u67E2\u67EE\u67B9\u67CE\u67C6\u67E7\u6A9C\u681E\u6846\u6829\u6840\u684D\u6832\u684E\u68B3\u682B\u6859\u6863\u6877\u687F\u689F\u688F\u68AD\u6894\u689D\u689B\u6883\u6AAE\u68B9\u6874\u68B5\u68A0\u68BA\u690F\u688D\u687E\u6901\u68CA\u6908\u68D8\u6922\u6926\u68E1\u690C\u68CD"],["dca1","\u68D4\u68E7\u68D5\u6936\u6912\u6904\u68D7\u68E3\u6925\u68F9\u68E0\u68EF\u6928\u692A\u691A\u6923\u6921\u68C6\u6979\u6977\u695C\u6978\u696B\u6954\u697E\u696E\u6939\u6974\u693D\u6959\u6930\u6961\u695E\u695D\u6981\u696A\u69B2\u69AE\u69D0\u69BF\u69C1\u69D3\u69BE\u69CE\u5BE8\u69CA\u69DD\u69BB\u69C3\u69A7\u6A2E\u6991\u69A0\u699C\u6995\u69B4\u69DE\u69E8\u6A02\u6A1B\u69FF\u6B0A\u69F9\u69F2\u69E7\u6A05\u69B1\u6A1E\u69ED\u6A14\u69EB\u6A0A\u6A12\u6AC1\u6A23\u6A13\u6A44\u6A0C\u6A72\u6A36\u6A78\u6A47\u6A62\u6A59\u6A66\u6A48\u6A38\u6A22\u6A90\u6A8D\u6AA0\u6A84\u6AA2\u6AA3"],["dda1","\u6A97\u8617\u6ABB\u6AC3\u6AC2\u6AB8\u6AB3\u6AAC\u6ADE\u6AD1\u6ADF\u6AAA\u6ADA\u6AEA\u6AFB\u6B05\u8616\u6AFA\u6B12\u6B16\u9B31\u6B1F\u6B38\u6B37\u76DC\u6B39\u98EE\u6B47\u6B43\u6B49\u6B50\u6B59\u6B54\u6B5B\u6B5F\u6B61\u6B78\u6B79\u6B7F\u6B80\u6B84\u6B83\u6B8D\u6B98\u6B95\u6B9E\u6BA4\u6BAA\u6BAB\u6BAF\u6BB2\u6BB1\u6BB3\u6BB7\u6BBC\u6BC6\u6BCB\u6BD3\u6BDF\u6BEC\u6BEB\u6BF3\u6BEF\u9EBE\u6C08\u6C13\u6C14\u6C1B\u6C24\u6C23\u6C5E\u6C55\u6C62\u6C6A\u6C82\u6C8D\u6C9A\u6C81\u6C9B\u6C7E\u6C68\u6C73\u6C92\u6C90\u6CC4\u6CF1\u6CD3\u6CBD\u6CD7\u6CC5\u6CDD\u6CAE\u6CB1\u6CBE"],["dea1","\u6CBA\u6CDB\u6CEF\u6CD9\u6CEA\u6D1F\u884D\u6D36\u6D2B\u6D3D\u6D38\u6D19\u6D35\u6D33\u6D12\u6D0C\u6D63\u6D93\u6D64\u6D5A\u6D79\u6D59\u6D8E\u6D95\u6FE4\u6D85\u6DF9\u6E15\u6E0A\u6DB5\u6DC7\u6DE6\u6DB8\u6DC6\u6DEC\u6DDE\u6DCC\u6DE8\u6DD2\u6DC5\u6DFA\u6DD9\u6DE4\u6DD5\u6DEA\u6DEE\u6E2D\u6E6E\u6E2E\u6E19\u6E72\u6E5F\u6E3E\u6E23\u6E6B\u6E2B\u6E76\u6E4D\u6E1F\u6E43\u6E3A\u6E4E\u6E24\u6EFF\u6E1D\u6E38\u6E82\u6EAA\u6E98\u6EC9\u6EB7\u6ED3\u6EBD\u6EAF\u6EC4\u6EB2\u6ED4\u6ED5\u6E8F\u6EA5\u6EC2\u6E9F\u6F41\u6F11\u704C\u6EEC\u6EF8\u6EFE\u6F3F\u6EF2\u6F31\u6EEF\u6F32\u6ECC"],["dfa1","\u6F3E\u6F13\u6EF7\u6F86\u6F7A\u6F78\u6F81\u6F80\u6F6F\u6F5B\u6FF3\u6F6D\u6F82\u6F7C\u6F58\u6F8E\u6F91\u6FC2\u6F66\u6FB3\u6FA3\u6FA1\u6FA4\u6FB9\u6FC6\u6FAA\u6FDF\u6FD5\u6FEC\u6FD4\u6FD8\u6FF1\u6FEE\u6FDB\u7009\u700B\u6FFA\u7011\u7001\u700F\u6FFE\u701B\u701A\u6F74\u701D\u7018\u701F\u7030\u703E\u7032\u7051\u7063\u7099\u7092\u70AF\u70F1\u70AC\u70B8\u70B3\u70AE\u70DF\u70CB\u70DD\u70D9\u7109\u70FD\u711C\u7119\u7165\u7155\u7188\u7166\u7162\u714C\u7156\u716C\u718F\u71FB\u7184\u7195\u71A8\u71AC\u71D7\u71B9\u71BE\u71D2\u71C9\u71D4\u71CE\u71E0\u71EC\u71E7\u71F5\u71FC"],["e0a1","\u71F9\u71FF\u720D\u7210\u721B\u7228\u722D\u722C\u7230\u7232\u723B\u723C\u723F\u7240\u7246\u724B\u7258\u7274\u727E\u7282\u7281\u7287\u7292\u7296\u72A2\u72A7\u72B9\u72B2\u72C3\u72C6\u72C4\u72CE\u72D2\u72E2\u72E0\u72E1\u72F9\u72F7\u500F\u7317\u730A\u731C\u7316\u731D\u7334\u732F\u7329\u7325\u733E\u734E\u734F\u9ED8\u7357\u736A\u7368\u7370\u7378\u7375\u737B\u737A\u73C8\u73B3\u73CE\u73BB\u73C0\u73E5\u73EE\u73DE\u74A2\u7405\u746F\u7425\u73F8\u7432\u743A\u7455\u743F\u745F\u7459\u7441\u745C\u7469\u7470\u7463\u746A\u7476\u747E\u748B\u749E\u74A7\u74CA\u74CF\u74D4\u73F1"],["e1a1","\u74E0\u74E3\u74E7\u74E9\u74EE\u74F2\u74F0\u74F1\u74F8\u74F7\u7504\u7503\u7505\u750C\u750E\u750D\u7515\u7513\u751E\u7526\u752C\u753C\u7544\u754D\u754A\u7549\u755B\u7546\u755A\u7569\u7564\u7567\u756B\u756D\u7578\u7576\u7586\u7587\u7574\u758A\u7589\u7582\u7594\u759A\u759D\u75A5\u75A3\u75C2\u75B3\u75C3\u75B5\u75BD\u75B8\u75BC\u75B1\u75CD\u75CA\u75D2\u75D9\u75E3\u75DE\u75FE\u75FF\u75FC\u7601\u75F0\u75FA\u75F2\u75F3\u760B\u760D\u7609\u761F\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763B\u7647\u7648\u7646\u765C\u7658\u7661\u7662\u7668\u7669\u766A\u7667\u766C\u7670"],["e2a1","\u7672\u7676\u7678\u767C\u7680\u7683\u7688\u768B\u768E\u7696\u7693\u7699\u769A\u76B0\u76B4\u76B8\u76B9\u76BA\u76C2\u76CD\u76D6\u76D2\u76DE\u76E1\u76E5\u76E7\u76EA\u862F\u76FB\u7708\u7707\u7704\u7729\u7724\u771E\u7725\u7726\u771B\u7737\u7738\u7747\u775A\u7768\u776B\u775B\u7765\u777F\u777E\u7779\u778E\u778B\u7791\u77A0\u779E\u77B0\u77B6\u77B9\u77BF\u77BC\u77BD\u77BB\u77C7\u77CD\u77D7\u77DA\u77DC\u77E3\u77EE\u77FC\u780C\u7812\u7926\u7820\u792A\u7845\u788E\u7874\u7886\u787C\u789A\u788C\u78A3\u78B5\u78AA\u78AF\u78D1\u78C6\u78CB\u78D4\u78BE\u78BC\u78C5\u78CA\u78EC"],["e3a1","\u78E7\u78DA\u78FD\u78F4\u7907\u7912\u7911\u7919\u792C\u792B\u7940\u7960\u7957\u795F\u795A\u7955\u7953\u797A\u797F\u798A\u799D\u79A7\u9F4B\u79AA\u79AE\u79B3\u79B9\u79BA\u79C9\u79D5\u79E7\u79EC\u79E1\u79E3\u7A08\u7A0D\u7A18\u7A19\u7A20\u7A1F\u7980\u7A31\u7A3B\u7A3E\u7A37\u7A43\u7A57\u7A49\u7A61\u7A62\u7A69\u9F9D\u7A70\u7A79\u7A7D\u7A88\u7A97\u7A95\u7A98\u7A96\u7AA9\u7AC8\u7AB0\u7AB6\u7AC5\u7AC4\u7ABF\u9083\u7AC7\u7ACA\u7ACD\u7ACF\u7AD5\u7AD3\u7AD9\u7ADA\u7ADD\u7AE1\u7AE2\u7AE6\u7AED\u7AF0\u7B02\u7B0F\u7B0A\u7B06\u7B33\u7B18\u7B19\u7B1E\u7B35\u7B28\u7B36\u7B50"],["e4a1","\u7B7A\u7B04\u7B4D\u7B0B\u7B4C\u7B45\u7B75\u7B65\u7B74\u7B67\u7B70\u7B71\u7B6C\u7B6E\u7B9D\u7B98\u7B9F\u7B8D\u7B9C\u7B9A\u7B8B\u7B92\u7B8F\u7B5D\u7B99\u7BCB\u7BC1\u7BCC\u7BCF\u7BB4\u7BC6\u7BDD\u7BE9\u7C11\u7C14\u7BE6\u7BE5\u7C60\u7C00\u7C07\u7C13\u7BF3\u7BF7\u7C17\u7C0D\u7BF6\u7C23\u7C27\u7C2A\u7C1F\u7C37\u7C2B\u7C3D\u7C4C\u7C43\u7C54\u7C4F\u7C40\u7C50\u7C58\u7C5F\u7C64\u7C56\u7C65\u7C6C\u7C75\u7C83\u7C90\u7CA4\u7CAD\u7CA2\u7CAB\u7CA1\u7CA8\u7CB3\u7CB2\u7CB1\u7CAE\u7CB9\u7CBD\u7CC0\u7CC5\u7CC2\u7CD8\u7CD2\u7CDC\u7CE2\u9B3B\u7CEF\u7CF2\u7CF4\u7CF6\u7CFA\u7D06"],["e5a1","\u7D02\u7D1C\u7D15\u7D0A\u7D45\u7D4B\u7D2E\u7D32\u7D3F\u7D35\u7D46\u7D73\u7D56\u7D4E\u7D72\u7D68\u7D6E\u7D4F\u7D63\u7D93\u7D89\u7D5B\u7D8F\u7D7D\u7D9B\u7DBA\u7DAE\u7DA3\u7DB5\u7DC7\u7DBD\u7DAB\u7E3D\u7DA2\u7DAF\u7DDC\u7DB8\u7D9F\u7DB0\u7DD8\u7DDD\u7DE4\u7DDE\u7DFB\u7DF2\u7DE1\u7E05\u7E0A\u7E23\u7E21\u7E12\u7E31\u7E1F\u7E09\u7E0B\u7E22\u7E46\u7E66\u7E3B\u7E35\u7E39\u7E43\u7E37\u7E32\u7E3A\u7E67\u7E5D\u7E56\u7E5E\u7E59\u7E5A\u7E79\u7E6A\u7E69\u7E7C\u7E7B\u7E83\u7DD5\u7E7D\u8FAE\u7E7F\u7E88\u7E89\u7E8C\u7E92\u7E90\u7E93\u7E94\u7E96\u7E8E\u7E9B\u7E9C\u7F38\u7F3A"],["e6a1","\u7F45\u7F4C\u7F4D\u7F4E\u7F50\u7F51\u7F55\u7F54\u7F58\u7F5F\u7F60\u7F68\u7F69\u7F67\u7F78\u7F82\u7F86\u7F83\u7F88\u7F87\u7F8C\u7F94\u7F9E\u7F9D\u7F9A\u7FA3\u7FAF\u7FB2\u7FB9\u7FAE\u7FB6\u7FB8\u8B71\u7FC5\u7FC6\u7FCA\u7FD5\u7FD4\u7FE1\u7FE6\u7FE9\u7FF3\u7FF9\u98DC\u8006\u8004\u800B\u8012\u8018\u8019\u801C\u8021\u8028\u803F\u803B\u804A\u8046\u8052\u8058\u805A\u805F\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807D\u807F\u8084\u8086\u8085\u809B\u8093\u809A\u80AD\u5190\u80AC\u80DB\u80E5\u80D9\u80DD\u80C4\u80DA\u80D6\u8109\u80EF\u80F1\u811B\u8129\u8123\u812F\u814B"],["e7a1","\u968B\u8146\u813E\u8153\u8151\u80FC\u8171\u816E\u8165\u8166\u8174\u8183\u8188\u818A\u8180\u8182\u81A0\u8195\u81A4\u81A3\u815F\u8193\u81A9\u81B0\u81B5\u81BE\u81B8\u81BD\u81C0\u81C2\u81BA\u81C9\u81CD\u81D1\u81D9\u81D8\u81C8\u81DA\u81DF\u81E0\u81E7\u81FA\u81FB\u81FE\u8201\u8202\u8205\u8207\u820A\u820D\u8210\u8216\u8229\u822B\u8238\u8233\u8240\u8259\u8258\u825D\u825A\u825F\u8264\u8262\u8268\u826A\u826B\u822E\u8271\u8277\u8278\u827E\u828D\u8292\u82AB\u829F\u82BB\u82AC\u82E1\u82E3\u82DF\u82D2\u82F4\u82F3\u82FA\u8393\u8303\u82FB\u82F9\u82DE\u8306\u82DC\u8309\u82D9"],["e8a1","\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832F\u832B\u8317\u8318\u8385\u839A\u83AA\u839F\u83A2\u8396\u8323\u838E\u8387\u838A\u837C\u83B5\u8373\u8375\u83A0\u8389\u83A8\u83F4\u8413\u83EB\u83CE\u83FD\u8403\u83D8\u840B\u83C1\u83F7\u8407\u83E0\u83F2\u840D\u8422\u8420\u83BD\u8438\u8506\u83FB\u846D\u842A\u843C\u855A\u8484\u8477\u846B\u84AD\u846E\u8482\u8469\u8446\u842C\u846F\u8479\u8435\u84CA\u8462\u84B9\u84BF\u849F\u84D9\u84CD\u84BB\u84DA\u84D0\u84C1\u84C6\u84D6\u84A1\u8521\u84FF\u84F4\u8517\u8518\u852C\u851F\u8515\u8514\u84FC\u8540\u8563\u8558\u8548"],["e9a1","\u8541\u8602\u854B\u8555\u8580\u85A4\u8588\u8591\u858A\u85A8\u856D\u8594\u859B\u85EA\u8587\u859C\u8577\u857E\u8590\u85C9\u85BA\u85CF\u85B9\u85D0\u85D5\u85DD\u85E5\u85DC\u85F9\u860A\u8613\u860B\u85FE\u85FA\u8606\u8622\u861A\u8630\u863F\u864D\u4E55\u8654\u865F\u8667\u8671\u8693\u86A3\u86A9\u86AA\u868B\u868C\u86B6\u86AF\u86C4\u86C6\u86B0\u86C9\u8823\u86AB\u86D4\u86DE\u86E9\u86EC\u86DF\u86DB\u86EF\u8712\u8706\u8708\u8700\u8703\u86FB\u8711\u8709\u870D\u86F9\u870A\u8734\u873F\u8737\u873B\u8725\u8729\u871A\u8760\u875F\u8778\u874C\u874E\u8774\u8757\u8768\u876E\u8759"],["eaa1","\u8753\u8763\u876A\u8805\u87A2\u879F\u8782\u87AF\u87CB\u87BD\u87C0\u87D0\u96D6\u87AB\u87C4\u87B3\u87C7\u87C6\u87BB\u87EF\u87F2\u87E0\u880F\u880D\u87FE\u87F6\u87F7\u880E\u87D2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883B\u8844\u8842\u8852\u8859\u885E\u8862\u886B\u8881\u887E\u889E\u8875\u887D\u88B5\u8872\u8882\u8897\u8892\u88AE\u8899\u88A2\u888D\u88A4\u88B0\u88BF\u88B1\u88C3\u88C4\u88D4\u88D8\u88D9\u88DD\u88F9\u8902\u88FC\u88F4\u88E8\u88F2\u8904\u890C\u890A\u8913\u8943\u891E\u8925\u892A\u892B\u8941\u8944\u893B\u8936\u8938\u894C\u891D\u8960\u895E"],["eba1","\u8966\u8964\u896D\u896A\u896F\u8974\u8977\u897E\u8983\u8988\u898A\u8993\u8998\u89A1\u89A9\u89A6\u89AC\u89AF\u89B2\u89BA\u89BD\u89BF\u89C0\u89DA\u89DC\u89DD\u89E7\u89F4\u89F8\u8A03\u8A16\u8A10\u8A0C\u8A1B\u8A1D\u8A25\u8A36\u8A41\u8A5B\u8A52\u8A46\u8A48\u8A7C\u8A6D\u8A6C\u8A62\u8A85\u8A82\u8A84\u8AA8\u8AA1\u8A91\u8AA5\u8AA6\u8A9A\u8AA3\u8AC4\u8ACD\u8AC2\u8ADA\u8AEB\u8AF3\u8AE7\u8AE4\u8AF1\u8B14\u8AE0\u8AE2\u8AF7\u8ADE\u8ADB\u8B0C\u8B07\u8B1A\u8AE1\u8B16\u8B10\u8B17\u8B20\u8B33\u97AB\u8B26\u8B2B\u8B3E\u8B28\u8B41\u8B4C\u8B4F\u8B4E\u8B49\u8B56\u8B5B\u8B5A\u8B6B"],["eca1","\u8B5F\u8B6C\u8B6F\u8B74\u8B7D\u8B80\u8B8C\u8B8E\u8B92\u8B93\u8B96\u8B99\u8B9A\u8C3A\u8C41\u8C3F\u8C48\u8C4C\u8C4E\u8C50\u8C55\u8C62\u8C6C\u8C78\u8C7A\u8C82\u8C89\u8C85\u8C8A\u8C8D\u8C8E\u8C94\u8C7C\u8C98\u621D\u8CAD\u8CAA\u8CBD\u8CB2\u8CB3\u8CAE\u8CB6\u8CC8\u8CC1\u8CE4\u8CE3\u8CDA\u8CFD\u8CFA\u8CFB\u8D04\u8D05\u8D0A\u8D07\u8D0F\u8D0D\u8D10\u9F4E\u8D13\u8CCD\u8D14\u8D16\u8D67\u8D6D\u8D71\u8D73\u8D81\u8D99\u8DC2\u8DBE\u8DBA\u8DCF\u8DDA\u8DD6\u8DCC\u8DDB\u8DCB\u8DEA\u8DEB\u8DDF\u8DE3\u8DFC\u8E08\u8E09\u8DFF\u8E1D\u8E1E\u8E10\u8E1F\u8E42\u8E35\u8E30\u8E34\u8E4A"],["eda1","\u8E47\u8E49\u8E4C\u8E50\u8E48\u8E59\u8E64\u8E60\u8E2A\u8E63\u8E55\u8E76\u8E72\u8E7C\u8E81\u8E87\u8E85\u8E84\u8E8B\u8E8A\u8E93\u8E91\u8E94\u8E99\u8EAA\u8EA1\u8EAC\u8EB0\u8EC6\u8EB1\u8EBE\u8EC5\u8EC8\u8ECB\u8EDB\u8EE3\u8EFC\u8EFB\u8EEB\u8EFE\u8F0A\u8F05\u8F15\u8F12\u8F19\u8F13\u8F1C\u8F1F\u8F1B\u8F0C\u8F26\u8F33\u8F3B\u8F39\u8F45\u8F42\u8F3E\u8F4C\u8F49\u8F46\u8F4E\u8F57\u8F5C\u8F62\u8F63\u8F64\u8F9C\u8F9F\u8FA3\u8FAD\u8FAF\u8FB7\u8FDA\u8FE5\u8FE2\u8FEA\u8FEF\u9087\u8FF4\u9005\u8FF9\u8FFA\u9011\u9015\u9021\u900D\u901E\u9016\u900B\u9027\u9036\u9035\u9039\u8FF8"],["eea1","\u904F\u9050\u9051\u9052\u900E\u9049\u903E\u9056\u9058\u905E\u9068\u906F\u9076\u96A8\u9072\u9082\u907D\u9081\u9080\u908A\u9089\u908F\u90A8\u90AF\u90B1\u90B5\u90E2\u90E4\u6248\u90DB\u9102\u9112\u9119\u9132\u9130\u914A\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918B\u9189\u9182\u91A2\u91AB\u91AF\u91AA\u91B5\u91B4\u91BA\u91C0\u91C1\u91C9\u91CB\u91D0\u91D6\u91DF\u91E1\u91DB\u91FC\u91F5\u91F6\u921E\u91FF\u9214\u922C\u9215\u9211\u925E\u9257\u9245\u9249\u9264\u9248\u9295\u923F\u924B\u9250\u929C\u9296\u9293\u929B\u925A\u92CF\u92B9\u92B7\u92E9\u930F\u92FA\u9344\u932E"],["efa1","\u9319\u9322\u931A\u9323\u933A\u9335\u933B\u935C\u9360\u937C\u936E\u9356\u93B0\u93AC\u93AD\u9394\u93B9\u93D6\u93D7\u93E8\u93E5\u93D8\u93C3\u93DD\u93D0\u93C8\u93E4\u941A\u9414\u9413\u9403\u9407\u9410\u9436\u942B\u9435\u9421\u943A\u9441\u9452\u9444\u945B\u9460\u9462\u945E\u946A\u9229\u9470\u9475\u9477\u947D\u945A\u947C\u947E\u9481\u947F\u9582\u9587\u958A\u9594\u9596\u9598\u9599\u95A0\u95A8\u95A7\u95AD\u95BC\u95BB\u95B9\u95BE\u95CA\u6FF6\u95C3\u95CD\u95CC\u95D5\u95D4\u95D6\u95DC\u95E1\u95E5\u95E2\u9621\u9628\u962E\u962F\u9642\u964C\u964F\u964B\u9677\u965C\u965E"],["f0a1","\u965D\u965F\u9666\u9672\u966C\u968D\u9698\u9695\u9697\u96AA\u96A7\u96B1\u96B2\u96B0\u96B4\u96B6\u96B8\u96B9\u96CE\u96CB\u96C9\u96CD\u894D\u96DC\u970D\u96D5\u96F9\u9704\u9706\u9708\u9713\u970E\u9711\u970F\u9716\u9719\u9724\u972A\u9730\u9739\u973D\u973E\u9744\u9746\u9748\u9742\u9749\u975C\u9760\u9764\u9766\u9768\u52D2\u976B\u9771\u9779\u9785\u977C\u9781\u977A\u9786\u978B\u978F\u9790\u979C\u97A8\u97A6\u97A3\u97B3\u97B4\u97C3\u97C6\u97C8\u97CB\u97DC\u97ED\u9F4F\u97F2\u7ADF\u97F6\u97F5\u980F\u980C\u9838\u9824\u9821\u9837\u983D\u9846\u984F\u984B\u986B\u986F\u9870"],["f1a1","\u9871\u9874\u9873\u98AA\u98AF\u98B1\u98B6\u98C4\u98C3\u98C6\u98E9\u98EB\u9903\u9909\u9912\u9914\u9918\u9921\u991D\u991E\u9924\u9920\u992C\u992E\u993D\u993E\u9942\u9949\u9945\u9950\u994B\u9951\u9952\u994C\u9955\u9997\u9998\u99A5\u99AD\u99AE\u99BC\u99DF\u99DB\u99DD\u99D8\u99D1\u99ED\u99EE\u99F1\u99F2\u99FB\u99F8\u9A01\u9A0F\u9A05\u99E2\u9A19\u9A2B\u9A37\u9A45\u9A42\u9A40\u9A43\u9A3E\u9A55\u9A4D\u9A5B\u9A57\u9A5F\u9A62\u9A65\u9A64\u9A69\u9A6B\u9A6A\u9AAD\u9AB0\u9ABC\u9AC0\u9ACF\u9AD1\u9AD3\u9AD4\u9ADE\u9ADF\u9AE2\u9AE3\u9AE6\u9AEF\u9AEB\u9AEE\u9AF4\u9AF1\u9AF7"],["f2a1","\u9AFB\u9B06\u9B18\u9B1A\u9B1F\u9B22\u9B23\u9B25\u9B27\u9B28\u9B29\u9B2A\u9B2E\u9B2F\u9B32\u9B44\u9B43\u9B4F\u9B4D\u9B4E\u9B51\u9B58\u9B74\u9B93\u9B83\u9B91\u9B96\u9B97\u9B9F\u9BA0\u9BA8\u9BB4\u9BC0\u9BCA\u9BB9\u9BC6\u9BCF\u9BD1\u9BD2\u9BE3\u9BE2\u9BE4\u9BD4\u9BE1\u9C3A\u9BF2\u9BF1\u9BF0\u9C15\u9C14\u9C09\u9C13\u9C0C\u9C06\u9C08\u9C12\u9C0A\u9C04\u9C2E\u9C1B\u9C25\u9C24\u9C21\u9C30\u9C47\u9C32\u9C46\u9C3E\u9C5A\u9C60\u9C67\u9C76\u9C78\u9CE7\u9CEC\u9CF0\u9D09\u9D08\u9CEB\u9D03\u9D06\u9D2A\u9D26\u9DAF\u9D23\u9D1F\u9D44\u9D15\u9D12\u9D41\u9D3F\u9D3E\u9D46\u9D48"],["f3a1","\u9D5D\u9D5E\u9D64\u9D51\u9D50\u9D59\u9D72\u9D89\u9D87\u9DAB\u9D6F\u9D7A\u9D9A\u9DA4\u9DA9\u9DB2\u9DC4\u9DC1\u9DBB\u9DB8\u9DBA\u9DC6\u9DCF\u9DC2\u9DD9\u9DD3\u9DF8\u9DE6\u9DED\u9DEF\u9DFD\u9E1A\u9E1B\u9E1E\u9E75\u9E79\u9E7D\u9E81\u9E88\u9E8B\u9E8C\u9E92\u9E95\u9E91\u9E9D\u9EA5\u9EA9\u9EB8\u9EAA\u9EAD\u9761\u9ECC\u9ECE\u9ECF\u9ED0\u9ED4\u9EDC\u9EDE\u9EDD\u9EE0\u9EE5\u9EE8\u9EEF\u9EF4\u9EF6\u9EF7\u9EF9\u9EFB\u9EFC\u9EFD\u9F07\u9F08\u76B7\u9F15\u9F21\u9F2C\u9F3E\u9F4A\u9F52\u9F54\u9F63\u9F5F\u9F60\u9F61\u9F66\u9F67\u9F6C\u9F6A\u9F77\u9F72\u9F76\u9F95\u9F9C\u9FA0"],["f4a1","\u582F\u69C7\u9059\u7464\u51DC\u7199"],["f9a1","\u7E8A\u891C\u9348\u9288\u84DC\u4FC9\u70BB\u6631\u68C8\u92F9\u66FB\u5F45\u4E28\u4EE1\u4EFC\u4F00\u4F03\u4F39\u4F56\u4F92\u4F8A\u4F9A\u4F94\u4FCD\u5040\u5022\u4FFF\u501E\u5046\u5070\u5042\u5094\u50F4\u50D8\u514A\u5164\u519D\u51BE\u51EC\u5215\u529C\u52A6\u52C0\u52DB\u5300\u5307\u5324\u5372\u5393\u53B2\u53DD\uFA0E\u549C\u548A\u54A9\u54FF\u5586\u5759\u5765\u57AC\u57C8\u57C7\uFA0F\uFA10\u589E\u58B2\u590B\u5953\u595B\u595D\u5963\u59A4\u59BA\u5B56\u5BC0\u752F\u5BD8\u5BEC\u5C1E\u5CA6\u5CBA\u5CF5\u5D27\u5D53\uFA11\u5D42\u5D6D\u5DB8\u5DB9\u5DD0\u5F21\u5F34\u5F67\u5FB7"],["faa1","\u5FDE\u605D\u6085\u608A\u60DE\u60D5\u6120\u60F2\u6111\u6137\u6130\u6198\u6213\u62A6\u63F5\u6460\u649D\u64CE\u654E\u6600\u6615\u663B\u6609\u662E\u661E\u6624\u6665\u6657\u6659\uFA12\u6673\u6699\u66A0\u66B2\u66BF\u66FA\u670E\uF929\u6766\u67BB\u6852\u67C0\u6801\u6844\u68CF\uFA13\u6968\uFA14\u6998\u69E2\u6A30\u6A6B\u6A46\u6A73\u6A7E\u6AE2\u6AE4\u6BD6\u6C3F\u6C5C\u6C86\u6C6F\u6CDA\u6D04\u6D87\u6D6F\u6D96\u6DAC\u6DCF\u6DF8\u6DF2\u6DFC\u6E39\u6E5C\u6E27\u6E3C\u6EBF\u6F88\u6FB5\u6FF5\u7005\u7007\u7028\u7085\u70AB\u710F\u7104\u715C\u7146\u7147\uFA15\u71C1\u71FE\u72B1"],["fba1","\u72BE\u7324\uFA16\u7377\u73BD\u73C9\u73D6\u73E3\u73D2\u7407\u73F5\u7426\u742A\u7429\u742E\u7462\u7489\u749F\u7501\u756F\u7682\u769C\u769E\u769B\u76A6\uFA17\u7746\u52AF\u7821\u784E\u7864\u787A\u7930\uFA18\uFA19\uFA1A\u7994\uFA1B\u799B\u7AD1\u7AE7\uFA1C\u7AEB\u7B9E\uFA1D\u7D48\u7D5C\u7DB7\u7DA0\u7DD6\u7E52\u7F47\u7FA1\uFA1E\u8301\u8362\u837F\u83C7\u83F6\u8448\u84B4\u8553\u8559\u856B\uFA1F\u85B0\uFA20\uFA21\u8807\u88F5\u8A12\u8A37\u8A79\u8AA7\u8ABE\u8ADF\uFA22\u8AF6\u8B53\u8B7F\u8CF0\u8CF4\u8D12\u8D76\uFA23\u8ECF\uFA24\uFA25\u9067\u90DE\uFA26\u9115\u9127\u91DA"],["fca1","\u91D7\u91DE\u91ED\u91EE\u91E4\u91E5\u9206\u9210\u920A\u923A\u9240\u923C\u924E\u9259\u9251\u9239\u9267\u92A7\u9277\u9278\u92E7\u92D7\u92D9\u92D0\uFA27\u92D5\u92E0\u92D3\u9325\u9321\u92FB\uFA28\u931E\u92FF\u931D\u9302\u9370\u9357\u93A4\u93C6\u93DE\u93F8\u9431\u9445\u9448\u9592\uF9DC\uFA29\u969D\u96AF\u9733\u973B\u9743\u974D\u974F\u9751\u9755\u9857\u9865\uFA2A\uFA2B\u9927\uFA2C\u999E\u9A4E\u9AD9\u9ADC\u9B75\u9B72\u9B8F\u9BB1\u9BBB\u9C00\u9D70\u9D6B\uFA2D\u9E19\u9ED1"],["fcf1","\u2170",9,"\uFFE2\uFFE4\uFF07\uFF02"],["8fa2af","\u02D8\u02C7\xB8\u02D9\u02DD\xAF\u02DB\u02DA\uFF5E\u0384\u0385"],["8fa2c2","\xA1\xA6\xBF"],["8fa2eb","\xBA\xAA\xA9\xAE\u2122\xA4\u2116"],["8fa6e1","\u0386\u0388\u0389\u038A\u03AA"],["8fa6e7","\u038C"],["8fa6e9","\u038E\u03AB"],["8fa6ec","\u038F"],["8fa6f1","\u03AC\u03AD\u03AE\u03AF\u03CA\u0390\u03CC\u03C2\u03CD\u03CB\u03B0\u03CE"],["8fa7c2","\u0402",10,"\u040E\u040F"],["8fa7f2","\u0452",10,"\u045E\u045F"],["8fa9a1","\xC6\u0110"],["8fa9a4","\u0126"],["8fa9a6","\u0132"],["8fa9a8","\u0141\u013F"],["8fa9ab","\u014A\xD8\u0152"],["8fa9af","\u0166\xDE"],["8fa9c1","\xE6\u0111\xF0\u0127\u0131\u0133\u0138\u0142\u0140\u0149\u014B\xF8\u0153\xDF\u0167\xFE"],["8faaa1","\xC1\xC0\xC4\xC2\u0102\u01CD\u0100\u0104\xC5\xC3\u0106\u0108\u010C\xC7\u010A\u010E\xC9\xC8\xCB\xCA\u011A\u0116\u0112\u0118"],["8faaba","\u011C\u011E\u0122\u0120\u0124\xCD\xCC\xCF\xCE\u01CF\u0130\u012A\u012E\u0128\u0134\u0136\u0139\u013D\u013B\u0143\u0147\u0145\xD1\xD3\xD2\xD6\xD4\u01D1\u0150\u014C\xD5\u0154\u0158\u0156\u015A\u015C\u0160\u015E\u0164\u0162\xDA\xD9\xDC\xDB\u016C\u01D3\u0170\u016A\u0172\u016E\u0168\u01D7\u01DB\u01D9\u01D5\u0174\xDD\u0178\u0176\u0179\u017D\u017B"],["8faba1","\xE1\xE0\xE4\xE2\u0103\u01CE\u0101\u0105\xE5\xE3\u0107\u0109\u010D\xE7\u010B\u010F\xE9\xE8\xEB\xEA\u011B\u0117\u0113\u0119\u01F5\u011D\u011F"],["8fabbd","\u0121\u0125\xED\xEC\xEF\xEE\u01D0"],["8fabc5","\u012B\u012F\u0129\u0135\u0137\u013A\u013E\u013C\u0144\u0148\u0146\xF1\xF3\xF2\xF6\xF4\u01D2\u0151\u014D\xF5\u0155\u0159\u0157\u015B\u015D\u0161\u015F\u0165\u0163\xFA\xF9\xFC\xFB\u016D\u01D4\u0171\u016B\u0173\u016F\u0169\u01D8\u01DC\u01DA\u01D6\u0175\xFD\xFF\u0177\u017A\u017E\u017C"],["8fb0a1","\u4E02\u4E04\u4E05\u4E0C\u4E12\u4E1F\u4E23\u4E24\u4E28\u4E2B\u4E2E\u4E2F\u4E30\u4E35\u4E40\u4E41\u4E44\u4E47\u4E51\u4E5A\u4E5C\u4E63\u4E68\u4E69\u4E74\u4E75\u4E79\u4E7F\u4E8D\u4E96\u4E97\u4E9D\u4EAF\u4EB9\u4EC3\u4ED0\u4EDA\u4EDB\u4EE0\u4EE1\u4EE2\u4EE8\u4EEF\u4EF1\u4EF3\u4EF5\u4EFD\u4EFE\u4EFF\u4F00\u4F02\u4F03\u4F08\u4F0B\u4F0C\u4F12\u4F15\u4F16\u4F17\u4F19\u4F2E\u4F31\u4F60\u4F33\u4F35\u4F37\u4F39\u4F3B\u4F3E\u4F40\u4F42\u4F48\u4F49\u4F4B\u4F4C\u4F52\u4F54\u4F56\u4F58\u4F5F\u4F63\u4F6A\u4F6C\u4F6E\u4F71\u4F77\u4F78\u4F79\u4F7A\u4F7D\u4F7E\u4F81\u4F82\u4F84"],["8fb1a1","\u4F85\u4F89\u4F8A\u4F8C\u4F8E\u4F90\u4F92\u4F93\u4F94\u4F97\u4F99\u4F9A\u4F9E\u4F9F\u4FB2\u4FB7\u4FB9\u4FBB\u4FBC\u4FBD\u4FBE\u4FC0\u4FC1\u4FC5\u4FC6\u4FC8\u4FC9\u4FCB\u4FCC\u4FCD\u4FCF\u4FD2\u4FDC\u4FE0\u4FE2\u4FF0\u4FF2\u4FFC\u4FFD\u4FFF\u5000\u5001\u5004\u5007\u500A\u500C\u500E\u5010\u5013\u5017\u5018\u501B\u501C\u501D\u501E\u5022\u5027\u502E\u5030\u5032\u5033\u5035\u5040\u5041\u5042\u5045\u5046\u504A\u504C\u504E\u5051\u5052\u5053\u5057\u5059\u505F\u5060\u5062\u5063\u5066\u5067\u506A\u506D\u5070\u5071\u503B\u5081\u5083\u5084\u5086\u508A\u508E\u508F\u5090"],["8fb2a1","\u5092\u5093\u5094\u5096\u509B\u509C\u509E",4,"\u50AA\u50AF\u50B0\u50B9\u50BA\u50BD\u50C0\u50C3\u50C4\u50C7\u50CC\u50CE\u50D0\u50D3\u50D4\u50D8\u50DC\u50DD\u50DF\u50E2\u50E4\u50E6\u50E8\u50E9\u50EF\u50F1\u50F6\u50FA\u50FE\u5103\u5106\u5107\u5108\u510B\u510C\u510D\u510E\u50F2\u5110\u5117\u5119\u511B\u511C\u511D\u511E\u5123\u5127\u5128\u512C\u512D\u512F\u5131\u5133\u5134\u5135\u5138\u5139\u5142\u514A\u514F\u5153\u5155\u5157\u5158\u515F\u5164\u5166\u517E\u5183\u5184\u518B\u518E\u5198\u519D\u51A1\u51A3\u51AD\u51B8\u51BA\u51BC\u51BE\u51BF\u51C2"],["8fb3a1","\u51C8\u51CF\u51D1\u51D2\u51D3\u51D5\u51D8\u51DE\u51E2\u51E5\u51EE\u51F2\u51F3\u51F4\u51F7\u5201\u5202\u5205\u5212\u5213\u5215\u5216\u5218\u5222\u5228\u5231\u5232\u5235\u523C\u5245\u5249\u5255\u5257\u5258\u525A\u525C\u525F\u5260\u5261\u5266\u526E\u5277\u5278\u5279\u5280\u5282\u5285\u528A\u528C\u5293\u5295\u5296\u5297\u5298\u529A\u529C\u52A4\u52A5\u52A6\u52A7\u52AF\u52B0\u52B6\u52B7\u52B8\u52BA\u52BB\u52BD\u52C0\u52C4\u52C6\u52C8\u52CC\u52CF\u52D1\u52D4\u52D6\u52DB\u52DC\u52E1\u52E5\u52E8\u52E9\u52EA\u52EC\u52F0\u52F1\u52F4\u52F6\u52F7\u5300\u5303\u530A\u530B"],["8fb4a1","\u530C\u5311\u5313\u5318\u531B\u531C\u531E\u531F\u5325\u5327\u5328\u5329\u532B\u532C\u532D\u5330\u5332\u5335\u533C\u533D\u533E\u5342\u534C\u534B\u5359\u535B\u5361\u5363\u5365\u536C\u536D\u5372\u5379\u537E\u5383\u5387\u5388\u538E\u5393\u5394\u5399\u539D\u53A1\u53A4\u53AA\u53AB\u53AF\u53B2\u53B4\u53B5\u53B7\u53B8\u53BA\u53BD\u53C0\u53C5\u53CF\u53D2\u53D3\u53D5\u53DA\u53DD\u53DE\u53E0\u53E6\u53E7\u53F5\u5402\u5413\u541A\u5421\u5427\u5428\u542A\u542F\u5431\u5434\u5435\u5443\u5444\u5447\u544D\u544F\u545E\u5462\u5464\u5466\u5467\u5469\u546B\u546D\u546E\u5474\u547F"],["8fb5a1","\u5481\u5483\u5485\u5488\u5489\u548D\u5491\u5495\u5496\u549C\u549F\u54A1\u54A6\u54A7\u54A9\u54AA\u54AD\u54AE\u54B1\u54B7\u54B9\u54BA\u54BB\u54BF\u54C6\u54CA\u54CD\u54CE\u54E0\u54EA\u54EC\u54EF\u54F6\u54FC\u54FE\u54FF\u5500\u5501\u5505\u5508\u5509\u550C\u550D\u550E\u5515\u552A\u552B\u5532\u5535\u5536\u553B\u553C\u553D\u5541\u5547\u5549\u554A\u554D\u5550\u5551\u5558\u555A\u555B\u555E\u5560\u5561\u5564\u5566\u557F\u5581\u5582\u5586\u5588\u558E\u558F\u5591\u5592\u5593\u5594\u5597\u55A3\u55A4\u55AD\u55B2\u55BF\u55C1\u55C3\u55C6\u55C9\u55CB\u55CC\u55CE\u55D1\u55D2"],["8fb6a1","\u55D3\u55D7\u55D8\u55DB\u55DE\u55E2\u55E9\u55F6\u55FF\u5605\u5608\u560A\u560D",5,"\u5619\u562C\u5630\u5633\u5635\u5637\u5639\u563B\u563C\u563D\u563F\u5640\u5641\u5643\u5644\u5646\u5649\u564B\u564D\u564F\u5654\u565E\u5660\u5661\u5662\u5663\u5666\u5669\u566D\u566F\u5671\u5672\u5675\u5684\u5685\u5688\u568B\u568C\u5695\u5699\u569A\u569D\u569E\u569F\u56A6\u56A7\u56A8\u56A9\u56AB\u56AC\u56AD\u56B1\u56B3\u56B7\u56BE\u56C5\u56C9\u56CA\u56CB\u56CF\u56D0\u56CC\u56CD\u56D9\u56DC\u56DD\u56DF\u56E1\u56E4",4,"\u56F1\u56EB\u56ED"],["8fb7a1","\u56F6\u56F7\u5701\u5702\u5707\u570A\u570C\u5711\u5715\u571A\u571B\u571D\u5720\u5722\u5723\u5724\u5725\u5729\u572A\u572C\u572E\u572F\u5733\u5734\u573D\u573E\u573F\u5745\u5746\u574C\u574D\u5752\u5762\u5765\u5767\u5768\u576B\u576D",4,"\u5773\u5774\u5775\u5777\u5779\u577A\u577B\u577C\u577E\u5781\u5783\u578C\u5794\u5797\u5799\u579A\u579C\u579D\u579E\u579F\u57A1\u5795\u57A7\u57A8\u57A9\u57AC\u57B8\u57BD\u57C7\u57C8\u57CC\u57CF\u57D5\u57DD\u57DE\u57E4\u57E6\u57E7\u57E9\u57ED\u57F0\u57F5\u57F6\u57F8\u57FD\u57FE\u57FF\u5803\u5804\u5808\u5809\u57E1"],["8fb8a1","\u580C\u580D\u581B\u581E\u581F\u5820\u5826\u5827\u582D\u5832\u5839\u583F\u5849\u584C\u584D\u584F\u5850\u5855\u585F\u5861\u5864\u5867\u5868\u5878\u587C\u587F\u5880\u5881\u5887\u5888\u5889\u588A\u588C\u588D\u588F\u5890\u5894\u5896\u589D\u58A0\u58A1\u58A2\u58A6\u58A9\u58B1\u58B2\u58C4\u58BC\u58C2\u58C8\u58CD\u58CE\u58D0\u58D2\u58D4\u58D6\u58DA\u58DD\u58E1\u58E2\u58E9\u58F3\u5905\u5906\u590B\u590C\u5912\u5913\u5914\u8641\u591D\u5921\u5923\u5924\u5928\u592F\u5930\u5933\u5935\u5936\u593F\u5943\u5946\u5952\u5953\u5959\u595B\u595D\u595E\u595F\u5961\u5963\u596B\u596D"],["8fb9a1","\u596F\u5972\u5975\u5976\u5979\u597B\u597C\u598B\u598C\u598E\u5992\u5995\u5997\u599F\u59A4\u59A7\u59AD\u59AE\u59AF\u59B0\u59B3\u59B7\u59BA\u59BC\u59C1\u59C3\u59C4\u59C8\u59CA\u59CD\u59D2\u59DD\u59DE\u59DF\u59E3\u59E4\u59E7\u59EE\u59EF\u59F1\u59F2\u59F4\u59F7\u5A00\u5A04\u5A0C\u5A0D\u5A0E\u5A12\u5A13\u5A1E\u5A23\u5A24\u5A27\u5A28\u5A2A\u5A2D\u5A30\u5A44\u5A45\u5A47\u5A48\u5A4C\u5A50\u5A55\u5A5E\u5A63\u5A65\u5A67\u5A6D\u5A77\u5A7A\u5A7B\u5A7E\u5A8B\u5A90\u5A93\u5A96\u5A99\u5A9C\u5A9E\u5A9F\u5AA0\u5AA2\u5AA7\u5AAC\u5AB1\u5AB2\u5AB3\u5AB5\u5AB8\u5ABA\u5ABB\u5ABF"],["8fbaa1","\u5AC4\u5AC6\u5AC8\u5ACF\u5ADA\u5ADC\u5AE0\u5AE5\u5AEA\u5AEE\u5AF5\u5AF6\u5AFD\u5B00\u5B01\u5B08\u5B17\u5B34\u5B19\u5B1B\u5B1D\u5B21\u5B25\u5B2D\u5B38\u5B41\u5B4B\u5B4C\u5B52\u5B56\u5B5E\u5B68\u5B6E\u5B6F\u5B7C\u5B7D\u5B7E\u5B7F\u5B81\u5B84\u5B86\u5B8A\u5B8E\u5B90\u5B91\u5B93\u5B94\u5B96\u5BA8\u5BA9\u5BAC\u5BAD\u5BAF\u5BB1\u5BB2\u5BB7\u5BBA\u5BBC\u5BC0\u5BC1\u5BCD\u5BCF\u5BD6",4,"\u5BE0\u5BEF\u5BF1\u5BF4\u5BFD\u5C0C\u5C17\u5C1E\u5C1F\u5C23\u5C26\u5C29\u5C2B\u5C2C\u5C2E\u5C30\u5C32\u5C35\u5C36\u5C59\u5C5A\u5C5C\u5C62\u5C63\u5C67\u5C68\u5C69"],["8fbba1","\u5C6D\u5C70\u5C74\u5C75\u5C7A\u5C7B\u5C7C\u5C7D\u5C87\u5C88\u5C8A\u5C8F\u5C92\u5C9D\u5C9F\u5CA0\u5CA2\u5CA3\u5CA6\u5CAA\u5CB2\u5CB4\u5CB5\u5CBA\u5CC9\u5CCB\u5CD2\u5CDD\u5CD7\u5CEE\u5CF1\u5CF2\u5CF4\u5D01\u5D06\u5D0D\u5D12\u5D2B\u5D23\u5D24\u5D26\u5D27\u5D31\u5D34\u5D39\u5D3D\u5D3F\u5D42\u5D43\u5D46\u5D48\u5D55\u5D51\u5D59\u5D4A\u5D5F\u5D60\u5D61\u5D62\u5D64\u5D6A\u5D6D\u5D70\u5D79\u5D7A\u5D7E\u5D7F\u5D81\u5D83\u5D88\u5D8A\u5D92\u5D93\u5D94\u5D95\u5D99\u5D9B\u5D9F\u5DA0\u5DA7\u5DAB\u5DB0\u5DB4\u5DB8\u5DB9\u5DC3\u5DC7\u5DCB\u5DD0\u5DCE\u5DD8\u5DD9\u5DE0\u5DE4"],["8fbca1","\u5DE9\u5DF8\u5DF9\u5E00\u5E07\u5E0D\u5E12\u5E14\u5E15\u5E18\u5E1F\u5E20\u5E2E\u5E28\u5E32\u5E35\u5E3E\u5E4B\u5E50\u5E49\u5E51\u5E56\u5E58\u5E5B\u5E5C\u5E5E\u5E68\u5E6A",4,"\u5E70\u5E80\u5E8B\u5E8E\u5EA2\u5EA4\u5EA5\u5EA8\u5EAA\u5EAC\u5EB1\u5EB3\u5EBD\u5EBE\u5EBF\u5EC6\u5ECC\u5ECB\u5ECE\u5ED1\u5ED2\u5ED4\u5ED5\u5EDC\u5EDE\u5EE5\u5EEB\u5F02\u5F06\u5F07\u5F08\u5F0E\u5F19\u5F1C\u5F1D\u5F21\u5F22\u5F23\u5F24\u5F28\u5F2B\u5F2C\u5F2E\u5F30\u5F34\u5F36\u5F3B\u5F3D\u5F3F\u5F40\u5F44\u5F45\u5F47\u5F4D\u5F50\u5F54\u5F58\u5F5B\u5F60\u5F63\u5F64\u5F67"],["8fbda1","\u5F6F\u5F72\u5F74\u5F75\u5F78\u5F7A\u5F7D\u5F7E\u5F89\u5F8D\u5F8F\u5F96\u5F9C\u5F9D\u5FA2\u5FA7\u5FAB\u5FA4\u5FAC\u5FAF\u5FB0\u5FB1\u5FB8\u5FC4\u5FC7\u5FC8\u5FC9\u5FCB\u5FD0",4,"\u5FDE\u5FE1\u5FE2\u5FE8\u5FE9\u5FEA\u5FEC\u5FED\u5FEE\u5FEF\u5FF2\u5FF3\u5FF6\u5FFA\u5FFC\u6007\u600A\u600D\u6013\u6014\u6017\u6018\u601A\u601F\u6024\u602D\u6033\u6035\u6040\u6047\u6048\u6049\u604C\u6051\u6054\u6056\u6057\u605D\u6061\u6067\u6071\u607E\u607F\u6082\u6086\u6088\u608A\u608E\u6091\u6093\u6095\u6098\u609D\u609E\u60A2\u60A4\u60A5\u60A8\u60B0\u60B1\u60B7"],["8fbea1","\u60BB\u60BE\u60C2\u60C4\u60C8\u60C9\u60CA\u60CB\u60CE\u60CF\u60D4\u60D5\u60D9\u60DB\u60DD\u60DE\u60E2\u60E5\u60F2\u60F5\u60F8\u60FC\u60FD\u6102\u6107\u610A\u610C\u6110",4,"\u6116\u6117\u6119\u611C\u611E\u6122\u612A\u612B\u6130\u6131\u6135\u6136\u6137\u6139\u6141\u6145\u6146\u6149\u615E\u6160\u616C\u6172\u6178\u617B\u617C\u617F\u6180\u6181\u6183\u6184\u618B\u618D\u6192\u6193\u6197\u6198\u619C\u619D\u619F\u61A0\u61A5\u61A8\u61AA\u61AD\u61B8\u61B9\u61BC\u61C0\u61C1\u61C2\u61CE\u61CF\u61D5\u61DC\u61DD\u61DE\u61DF\u61E1\u61E2\u61E7\u61E9\u61E5"],["8fbfa1","\u61EC\u61ED\u61EF\u6201\u6203\u6204\u6207\u6213\u6215\u621C\u6220\u6222\u6223\u6227\u6229\u622B\u6239\u623D\u6242\u6243\u6244\u6246\u624C\u6250\u6251\u6252\u6254\u6256\u625A\u625C\u6264\u626D\u626F\u6273\u627A\u627D\u628D\u628E\u628F\u6290\u62A6\u62A8\u62B3\u62B6\u62B7\u62BA\u62BE\u62BF\u62C4\u62CE\u62D5\u62D6\u62DA\u62EA\u62F2\u62F4\u62FC\u62FD\u6303\u6304\u630A\u630B\u630D\u6310\u6313\u6316\u6318\u6329\u632A\u632D\u6335\u6336\u6339\u633C\u6341\u6342\u6343\u6344\u6346\u634A\u634B\u634E\u6352\u6353\u6354\u6358\u635B\u6365\u6366\u636C\u636D\u6371\u6374\u6375"],["8fc0a1","\u6378\u637C\u637D\u637F\u6382\u6384\u6387\u638A\u6390\u6394\u6395\u6399\u639A\u639E\u63A4\u63A6\u63AD\u63AE\u63AF\u63BD\u63C1\u63C5\u63C8\u63CE\u63D1\u63D3\u63D4\u63D5\u63DC\u63E0\u63E5\u63EA\u63EC\u63F2\u63F3\u63F5\u63F8\u63F9\u6409\u640A\u6410\u6412\u6414\u6418\u641E\u6420\u6422\u6424\u6425\u6429\u642A\u642F\u6430\u6435\u643D\u643F\u644B\u644F\u6451\u6452\u6453\u6454\u645A\u645B\u645C\u645D\u645F\u6460\u6461\u6463\u646D\u6473\u6474\u647B\u647D\u6485\u6487\u648F\u6490\u6491\u6498\u6499\u649B\u649D\u649F\u64A1\u64A3\u64A6\u64A8\u64AC\u64B3\u64BD\u64BE\u64BF"],["8fc1a1","\u64C4\u64C9\u64CA\u64CB\u64CC\u64CE\u64D0\u64D1\u64D5\u64D7\u64E4\u64E5\u64E9\u64EA\u64ED\u64F0\u64F5\u64F7\u64FB\u64FF\u6501\u6504\u6508\u6509\u650A\u650F\u6513\u6514\u6516\u6519\u651B\u651E\u651F\u6522\u6526\u6529\u652E\u6531\u653A\u653C\u653D\u6543\u6547\u6549\u6550\u6552\u6554\u655F\u6560\u6567\u656B\u657A\u657D\u6581\u6585\u658A\u6592\u6595\u6598\u659D\u65A0\u65A3\u65A6\u65AE\u65B2\u65B3\u65B4\u65BF\u65C2\u65C8\u65C9\u65CE\u65D0\u65D4\u65D6\u65D8\u65DF\u65F0\u65F2\u65F4\u65F5\u65F9\u65FE\u65FF\u6600\u6604\u6608\u6609\u660D\u6611\u6612\u6615\u6616\u661D"],["8fc2a1","\u661E\u6621\u6622\u6623\u6624\u6626\u6629\u662A\u662B\u662C\u662E\u6630\u6631\u6633\u6639\u6637\u6640\u6645\u6646\u664A\u664C\u6651\u664E\u6657\u6658\u6659\u665B\u665C\u6660\u6661\u66FB\u666A\u666B\u666C\u667E\u6673\u6675\u667F\u6677\u6678\u6679\u667B\u6680\u667C\u668B\u668C\u668D\u6690\u6692\u6699\u669A\u669B\u669C\u669F\u66A0\u66A4\u66AD\u66B1\u66B2\u66B5\u66BB\u66BF\u66C0\u66C2\u66C3\u66C8\u66CC\u66CE\u66CF\u66D4\u66DB\u66DF\u66E8\u66EB\u66EC\u66EE\u66FA\u6705\u6707\u670E\u6713\u6719\u671C\u6720\u6722\u6733\u673E\u6745\u6747\u6748\u674C\u6754\u6755\u675D"],["8fc3a1","\u6766\u676C\u676E\u6774\u6776\u677B\u6781\u6784\u678E\u678F\u6791\u6793\u6796\u6798\u6799\u679B\u67B0\u67B1\u67B2\u67B5\u67BB\u67BC\u67BD\u67F9\u67C0\u67C2\u67C3\u67C5\u67C8\u67C9\u67D2\u67D7\u67D9\u67DC\u67E1\u67E6\u67F0\u67F2\u67F6\u67F7\u6852\u6814\u6819\u681D\u681F\u6828\u6827\u682C\u682D\u682F\u6830\u6831\u6833\u683B\u683F\u6844\u6845\u684A\u684C\u6855\u6857\u6858\u685B\u686B\u686E",4,"\u6875\u6879\u687A\u687B\u687C\u6882\u6884\u6886\u6888\u6896\u6898\u689A\u689C\u68A1\u68A3\u68A5\u68A9\u68AA\u68AE\u68B2\u68BB\u68C5\u68C8\u68CC\u68CF"],["8fc4a1","\u68D0\u68D1\u68D3\u68D6\u68D9\u68DC\u68DD\u68E5\u68E8\u68EA\u68EB\u68EC\u68ED\u68F0\u68F1\u68F5\u68F6\u68FB\u68FC\u68FD\u6906\u6909\u690A\u6910\u6911\u6913\u6916\u6917\u6931\u6933\u6935\u6938\u693B\u6942\u6945\u6949\u694E\u6957\u695B\u6963\u6964\u6965\u6966\u6968\u6969\u696C\u6970\u6971\u6972\u697A\u697B\u697F\u6980\u698D\u6992\u6996\u6998\u69A1\u69A5\u69A6\u69A8\u69AB\u69AD\u69AF\u69B7\u69B8\u69BA\u69BC\u69C5\u69C8\u69D1\u69D6\u69D7\u69E2\u69E5\u69EE\u69EF\u69F1\u69F3\u69F5\u69FE\u6A00\u6A01\u6A03\u6A0F\u6A11\u6A15\u6A1A\u6A1D\u6A20\u6A24\u6A28\u6A30\u6A32"],["8fc5a1","\u6A34\u6A37\u6A3B\u6A3E\u6A3F\u6A45\u6A46\u6A49\u6A4A\u6A4E\u6A50\u6A51\u6A52\u6A55\u6A56\u6A5B\u6A64\u6A67\u6A6A\u6A71\u6A73\u6A7E\u6A81\u6A83\u6A86\u6A87\u6A89\u6A8B\u6A91\u6A9B\u6A9D\u6A9E\u6A9F\u6AA5\u6AAB\u6AAF\u6AB0\u6AB1\u6AB4\u6ABD\u6ABE\u6ABF\u6AC6\u6AC9\u6AC8\u6ACC\u6AD0\u6AD4\u6AD5\u6AD6\u6ADC\u6ADD\u6AE4\u6AE7\u6AEC\u6AF0\u6AF1\u6AF2\u6AFC\u6AFD\u6B02\u6B03\u6B06\u6B07\u6B09\u6B0F\u6B10\u6B11\u6B17\u6B1B\u6B1E\u6B24\u6B28\u6B2B\u6B2C\u6B2F\u6B35\u6B36\u6B3B\u6B3F\u6B46\u6B4A\u6B4D\u6B52\u6B56\u6B58\u6B5D\u6B60\u6B67\u6B6B\u6B6E\u6B70\u6B75\u6B7D"],["8fc6a1","\u6B7E\u6B82\u6B85\u6B97\u6B9B\u6B9F\u6BA0\u6BA2\u6BA3\u6BA8\u6BA9\u6BAC\u6BAD\u6BAE\u6BB0\u6BB8\u6BB9\u6BBD\u6BBE\u6BC3\u6BC4\u6BC9\u6BCC\u6BD6\u6BDA\u6BE1\u6BE3\u6BE6\u6BE7\u6BEE\u6BF1\u6BF7\u6BF9\u6BFF\u6C02\u6C04\u6C05\u6C09\u6C0D\u6C0E\u6C10\u6C12\u6C19\u6C1F\u6C26\u6C27\u6C28\u6C2C\u6C2E\u6C33\u6C35\u6C36\u6C3A\u6C3B\u6C3F\u6C4A\u6C4B\u6C4D\u6C4F\u6C52\u6C54\u6C59\u6C5B\u6C5C\u6C6B\u6C6D\u6C6F\u6C74\u6C76\u6C78\u6C79\u6C7B\u6C85\u6C86\u6C87\u6C89\u6C94\u6C95\u6C97\u6C98\u6C9C\u6C9F\u6CB0\u6CB2\u6CB4\u6CC2\u6CC6\u6CCD\u6CCF\u6CD0\u6CD1\u6CD2\u6CD4\u6CD6"],["8fc7a1","\u6CDA\u6CDC\u6CE0\u6CE7\u6CE9\u6CEB\u6CEC\u6CEE\u6CF2\u6CF4\u6D04\u6D07\u6D0A\u6D0E\u6D0F\u6D11\u6D13\u6D1A\u6D26\u6D27\u6D28\u6C67\u6D2E\u6D2F\u6D31\u6D39\u6D3C\u6D3F\u6D57\u6D5E\u6D5F\u6D61\u6D65\u6D67\u6D6F\u6D70\u6D7C\u6D82\u6D87\u6D91\u6D92\u6D94\u6D96\u6D97\u6D98\u6DAA\u6DAC\u6DB4\u6DB7\u6DB9\u6DBD\u6DBF\u6DC4\u6DC8\u6DCA\u6DCE\u6DCF\u6DD6\u6DDB\u6DDD\u6DDF\u6DE0\u6DE2\u6DE5\u6DE9\u6DEF\u6DF0\u6DF4\u6DF6\u6DFC\u6E00\u6E04\u6E1E\u6E22\u6E27\u6E32\u6E36\u6E39\u6E3B\u6E3C\u6E44\u6E45\u6E48\u6E49\u6E4B\u6E4F\u6E51\u6E52\u6E53\u6E54\u6E57\u6E5C\u6E5D\u6E5E"],["8fc8a1","\u6E62\u6E63\u6E68\u6E73\u6E7B\u6E7D\u6E8D\u6E93\u6E99\u6EA0\u6EA7\u6EAD\u6EAE\u6EB1\u6EB3\u6EBB\u6EBF\u6EC0\u6EC1\u6EC3\u6EC7\u6EC8\u6ECA\u6ECD\u6ECE\u6ECF\u6EEB\u6EED\u6EEE\u6EF9\u6EFB\u6EFD\u6F04\u6F08\u6F0A\u6F0C\u6F0D\u6F16\u6F18\u6F1A\u6F1B\u6F26\u6F29\u6F2A\u6F2F\u6F30\u6F33\u6F36\u6F3B\u6F3C\u6F2D\u6F4F\u6F51\u6F52\u6F53\u6F57\u6F59\u6F5A\u6F5D\u6F5E\u6F61\u6F62\u6F68\u6F6C\u6F7D\u6F7E\u6F83\u6F87\u6F88\u6F8B\u6F8C\u6F8D\u6F90\u6F92\u6F93\u6F94\u6F96\u6F9A\u6F9F\u6FA0\u6FA5\u6FA6\u6FA7\u6FA8\u6FAE\u6FAF\u6FB0\u6FB5\u6FB6\u6FBC\u6FC5\u6FC7\u6FC8\u6FCA"],["8fc9a1","\u6FDA\u6FDE\u6FE8\u6FE9\u6FF0\u6FF5\u6FF9\u6FFC\u6FFD\u7000\u7005\u7006\u7007\u700D\u7017\u7020\u7023\u702F\u7034\u7037\u7039\u703C\u7043\u7044\u7048\u7049\u704A\u704B\u7054\u7055\u705D\u705E\u704E\u7064\u7065\u706C\u706E\u7075\u7076\u707E\u7081\u7085\u7086\u7094",4,"\u709B\u70A4\u70AB\u70B0\u70B1\u70B4\u70B7\u70CA\u70D1\u70D3\u70D4\u70D5\u70D6\u70D8\u70DC\u70E4\u70FA\u7103",4,"\u710B\u710C\u710F\u711E\u7120\u712B\u712D\u712F\u7130\u7131\u7138\u7141\u7145\u7146\u7147\u714A\u714B\u7150\u7152\u7157\u715A\u715C\u715E\u7160"],["8fcaa1","\u7168\u7179\u7180\u7185\u7187\u718C\u7192\u719A\u719B\u71A0\u71A2\u71AF\u71B0\u71B2\u71B3\u71BA\u71BF\u71C0\u71C1\u71C4\u71CB\u71CC\u71D3\u71D6\u71D9\u71DA\u71DC\u71F8\u71FE\u7200\u7207\u7208\u7209\u7213\u7217\u721A\u721D\u721F\u7224\u722B\u722F\u7234\u7238\u7239\u7241\u7242\u7243\u7245\u724E\u724F\u7250\u7253\u7255\u7256\u725A\u725C\u725E\u7260\u7263\u7268\u726B\u726E\u726F\u7271\u7277\u7278\u727B\u727C\u727F\u7284\u7289\u728D\u728E\u7293\u729B\u72A8\u72AD\u72AE\u72B1\u72B4\u72BE\u72C1\u72C7\u72C9\u72CC\u72D5\u72D6\u72D8\u72DF\u72E5\u72F3\u72F4\u72FA\u72FB"],["8fcba1","\u72FE\u7302\u7304\u7305\u7307\u730B\u730D\u7312\u7313\u7318\u7319\u731E\u7322\u7324\u7327\u7328\u732C\u7331\u7332\u7335\u733A\u733B\u733D\u7343\u734D\u7350\u7352\u7356\u7358\u735D\u735E\u735F\u7360\u7366\u7367\u7369\u736B\u736C\u736E\u736F\u7371\u7377\u7379\u737C\u7380\u7381\u7383\u7385\u7386\u738E\u7390\u7393\u7395\u7397\u7398\u739C\u739E\u739F\u73A0\u73A2\u73A5\u73A6\u73AA\u73AB\u73AD\u73B5\u73B7\u73B9\u73BC\u73BD\u73BF\u73C5\u73C6\u73C9\u73CB\u73CC\u73CF\u73D2\u73D3\u73D6\u73D9\u73DD\u73E1\u73E3\u73E6\u73E7\u73E9\u73F4\u73F5\u73F7\u73F9\u73FA\u73FB\u73FD"],["8fcca1","\u73FF\u7400\u7401\u7404\u7407\u740A\u7411\u741A\u741B\u7424\u7426\u7428",9,"\u7439\u7440\u7443\u7444\u7446\u7447\u744B\u744D\u7451\u7452\u7457\u745D\u7462\u7466\u7467\u7468\u746B\u746D\u746E\u7471\u7472\u7480\u7481\u7485\u7486\u7487\u7489\u748F\u7490\u7491\u7492\u7498\u7499\u749A\u749C\u749F\u74A0\u74A1\u74A3\u74A6\u74A8\u74A9\u74AA\u74AB\u74AE\u74AF\u74B1\u74B2\u74B5\u74B9\u74BB\u74BF\u74C8\u74C9\u74CC\u74D0\u74D3\u74D8\u74DA\u74DB\u74DE\u74DF\u74E4\u74E8\u74EA\u74EB\u74EF\u74F4\u74FA\u74FB\u74FC\u74FF\u7506"],["8fcda1","\u7512\u7516\u7517\u7520\u7521\u7524\u7527\u7529\u752A\u752F\u7536\u7539\u753D\u753E\u753F\u7540\u7543\u7547\u7548\u754E\u7550\u7552\u7557\u755E\u755F\u7561\u756F\u7571\u7579",5,"\u7581\u7585\u7590\u7592\u7593\u7595\u7599\u759C\u75A2\u75A4\u75B4\u75BA\u75BF\u75C0\u75C1\u75C4\u75C6\u75CC\u75CE\u75CF\u75D7\u75DC\u75DF\u75E0\u75E1\u75E4\u75E7\u75EC\u75EE\u75EF\u75F1\u75F9\u7600\u7602\u7603\u7604\u7607\u7608\u760A\u760C\u760F\u7612\u7613\u7615\u7616\u7619\u761B\u761C\u761D\u761E\u7623\u7625\u7626\u7629\u762D\u7632\u7633\u7635\u7638\u7639"],["8fcea1","\u763A\u763C\u764A\u7640\u7641\u7643\u7644\u7645\u7649\u764B\u7655\u7659\u765F\u7664\u7665\u766D\u766E\u766F\u7671\u7674\u7681\u7685\u768C\u768D\u7695\u769B\u769C\u769D\u769F\u76A0\u76A2",6,"\u76AA\u76AD\u76BD\u76C1\u76C5\u76C9\u76CB\u76CC\u76CE\u76D4\u76D9\u76E0\u76E6\u76E8\u76EC\u76F0\u76F1\u76F6\u76F9\u76FC\u7700\u7706\u770A\u770E\u7712\u7714\u7715\u7717\u7719\u771A\u771C\u7722\u7728\u772D\u772E\u772F\u7734\u7735\u7736\u7739\u773D\u773E\u7742\u7745\u7746\u774A\u774D\u774E\u774F\u7752\u7756\u7757\u775C\u775E\u775F\u7760\u7762"],["8fcfa1","\u7764\u7767\u776A\u776C\u7770\u7772\u7773\u7774\u777A\u777D\u7780\u7784\u778C\u778D\u7794\u7795\u7796\u779A\u779F\u77A2\u77A7\u77AA\u77AE\u77AF\u77B1\u77B5\u77BE\u77C3\u77C9\u77D1\u77D2\u77D5\u77D9\u77DE\u77DF\u77E0\u77E4\u77E6\u77EA\u77EC\u77F0\u77F1\u77F4\u77F8\u77FB\u7805\u7806\u7809\u780D\u780E\u7811\u781D\u7821\u7822\u7823\u782D\u782E\u7830\u7835\u7837\u7843\u7844\u7847\u7848\u784C\u784E\u7852\u785C\u785E\u7860\u7861\u7863\u7864\u7868\u786A\u786E\u787A\u787E\u788A\u788F\u7894\u7898\u78A1\u789D\u789E\u789F\u78A4\u78A8\u78AC\u78AD\u78B0\u78B1\u78B2\u78B3"],["8fd0a1","\u78BB\u78BD\u78BF\u78C7\u78C8\u78C9\u78CC\u78CE\u78D2\u78D3\u78D5\u78D6\u78E4\u78DB\u78DF\u78E0\u78E1\u78E6\u78EA\u78F2\u78F3\u7900\u78F6\u78F7\u78FA\u78FB\u78FF\u7906\u790C\u7910\u791A\u791C\u791E\u791F\u7920\u7925\u7927\u7929\u792D\u7931\u7934\u7935\u793B\u793D\u793F\u7944\u7945\u7946\u794A\u794B\u794F\u7951\u7954\u7958\u795B\u795C\u7967\u7969\u796B\u7972\u7979\u797B\u797C\u797E\u798B\u798C\u7991\u7993\u7994\u7995\u7996\u7998\u799B\u799C\u79A1\u79A8\u79A9\u79AB\u79AF\u79B1\u79B4\u79B8\u79BB\u79C2\u79C4\u79C7\u79C8\u79CA\u79CF\u79D4\u79D6\u79DA\u79DD\u79DE"],["8fd1a1","\u79E0\u79E2\u79E5\u79EA\u79EB\u79ED\u79F1\u79F8\u79FC\u7A02\u7A03\u7A07\u7A09\u7A0A\u7A0C\u7A11\u7A15\u7A1B\u7A1E\u7A21\u7A27\u7A2B\u7A2D\u7A2F\u7A30\u7A34\u7A35\u7A38\u7A39\u7A3A\u7A44\u7A45\u7A47\u7A48\u7A4C\u7A55\u7A56\u7A59\u7A5C\u7A5D\u7A5F\u7A60\u7A65\u7A67\u7A6A\u7A6D\u7A75\u7A78\u7A7E\u7A80\u7A82\u7A85\u7A86\u7A8A\u7A8B\u7A90\u7A91\u7A94\u7A9E\u7AA0\u7AA3\u7AAC\u7AB3\u7AB5\u7AB9\u7ABB\u7ABC\u7AC6\u7AC9\u7ACC\u7ACE\u7AD1\u7ADB\u7AE8\u7AE9\u7AEB\u7AEC\u7AF1\u7AF4\u7AFB\u7AFD\u7AFE\u7B07\u7B14\u7B1F\u7B23\u7B27\u7B29\u7B2A\u7B2B\u7B2D\u7B2E\u7B2F\u7B30"],["8fd2a1","\u7B31\u7B34\u7B3D\u7B3F\u7B40\u7B41\u7B47\u7B4E\u7B55\u7B60\u7B64\u7B66\u7B69\u7B6A\u7B6D\u7B6F\u7B72\u7B73\u7B77\u7B84\u7B89\u7B8E\u7B90\u7B91\u7B96\u7B9B\u7B9E\u7BA0\u7BA5\u7BAC\u7BAF\u7BB0\u7BB2\u7BB5\u7BB6\u7BBA\u7BBB\u7BBC\u7BBD\u7BC2\u7BC5\u7BC8\u7BCA\u7BD4\u7BD6\u7BD7\u7BD9\u7BDA\u7BDB\u7BE8\u7BEA\u7BF2\u7BF4\u7BF5\u7BF8\u7BF9\u7BFA\u7BFC\u7BFE\u7C01\u7C02\u7C03\u7C04\u7C06\u7C09\u7C0B\u7C0C\u7C0E\u7C0F\u7C19\u7C1B\u7C20\u7C25\u7C26\u7C28\u7C2C\u7C31\u7C33\u7C34\u7C36\u7C39\u7C3A\u7C46\u7C4A\u7C55\u7C51\u7C52\u7C53\u7C59",5],["8fd3a1","\u7C61\u7C63\u7C67\u7C69\u7C6D\u7C6E\u7C70\u7C72\u7C79\u7C7C\u7C7D\u7C86\u7C87\u7C8F\u7C94\u7C9E\u7CA0\u7CA6\u7CB0\u7CB6\u7CB7\u7CBA\u7CBB\u7CBC\u7CBF\u7CC4\u7CC7\u7CC8\u7CC9\u7CCD\u7CCF\u7CD3\u7CD4\u7CD5\u7CD7\u7CD9\u7CDA\u7CDD\u7CE6\u7CE9\u7CEB\u7CF5\u7D03\u7D07\u7D08\u7D09\u7D0F\u7D11\u7D12\u7D13\u7D16\u7D1D\u7D1E\u7D23\u7D26\u7D2A\u7D2D\u7D31\u7D3C\u7D3D\u7D3E\u7D40\u7D41\u7D47\u7D48\u7D4D\u7D51\u7D53\u7D57\u7D59\u7D5A\u7D5C\u7D5D\u7D65\u7D67\u7D6A\u7D70\u7D78\u7D7A\u7D7B\u7D7F\u7D81\u7D82\u7D83\u7D85\u7D86\u7D88\u7D8B\u7D8C\u7D8D\u7D91\u7D96\u7D97\u7D9D"],["8fd4a1","\u7D9E\u7DA6\u7DA7\u7DAA\u7DB3\u7DB6\u7DB7\u7DB9\u7DC2",4,"\u7DCC\u7DCD\u7DCE\u7DD7\u7DD9\u7E00\u7DE2\u7DE5\u7DE6\u7DEA\u7DEB\u7DED\u7DF1\u7DF5\u7DF6\u7DF9\u7DFA\u7E08\u7E10\u7E11\u7E15\u7E17\u7E1C\u7E1D\u7E20\u7E27\u7E28\u7E2C\u7E2D\u7E2F\u7E33\u7E36\u7E3F\u7E44\u7E45\u7E47\u7E4E\u7E50\u7E52\u7E58\u7E5F\u7E61\u7E62\u7E65\u7E6B\u7E6E\u7E6F\u7E73\u7E78\u7E7E\u7E81\u7E86\u7E87\u7E8A\u7E8D\u7E91\u7E95\u7E98\u7E9A\u7E9D\u7E9E\u7F3C\u7F3B\u7F3D\u7F3E\u7F3F\u7F43\u7F44\u7F47\u7F4F\u7F52\u7F53\u7F5B\u7F5C\u7F5D\u7F61\u7F63\u7F64\u7F65\u7F66\u7F6D"],["8fd5a1","\u7F71\u7F7D\u7F7E\u7F7F\u7F80\u7F8B\u7F8D\u7F8F\u7F90\u7F91\u7F96\u7F97\u7F9C\u7FA1\u7FA2\u7FA6\u7FAA\u7FAD\u7FB4\u7FBC\u7FBF\u7FC0\u7FC3\u7FC8\u7FCE\u7FCF\u7FDB\u7FDF\u7FE3\u7FE5\u7FE8\u7FEC\u7FEE\u7FEF\u7FF2\u7FFA\u7FFD\u7FFE\u7FFF\u8007\u8008\u800A\u800D\u800E\u800F\u8011\u8013\u8014\u8016\u801D\u801E\u801F\u8020\u8024\u8026\u802C\u802E\u8030\u8034\u8035\u8037\u8039\u803A\u803C\u803E\u8040\u8044\u8060\u8064\u8066\u806D\u8071\u8075\u8081\u8088\u808E\u809C\u809E\u80A6\u80A7\u80AB\u80B8\u80B9\u80C8\u80CD\u80CF\u80D2\u80D4\u80D5\u80D7\u80D8\u80E0\u80ED\u80EE"],["8fd6a1","\u80F0\u80F2\u80F3\u80F6\u80F9\u80FA\u80FE\u8103\u810B\u8116\u8117\u8118\u811C\u811E\u8120\u8124\u8127\u812C\u8130\u8135\u813A\u813C\u8145\u8147\u814A\u814C\u8152\u8157\u8160\u8161\u8167\u8168\u8169\u816D\u816F\u8177\u8181\u8190\u8184\u8185\u8186\u818B\u818E\u8196\u8198\u819B\u819E\u81A2\u81AE\u81B2\u81B4\u81BB\u81CB\u81C3\u81C5\u81CA\u81CE\u81CF\u81D5\u81D7\u81DB\u81DD\u81DE\u81E1\u81E4\u81EB\u81EC\u81F0\u81F1\u81F2\u81F5\u81F6\u81F8\u81F9\u81FD\u81FF\u8200\u8203\u820F\u8213\u8214\u8219\u821A\u821D\u8221\u8222\u8228\u8232\u8234\u823A\u8243\u8244\u8245\u8246"],["8fd7a1","\u824B\u824E\u824F\u8251\u8256\u825C\u8260\u8263\u8267\u826D\u8274\u827B\u827D\u827F\u8280\u8281\u8283\u8284\u8287\u8289\u828A\u828E\u8291\u8294\u8296\u8298\u829A\u829B\u82A0\u82A1\u82A3\u82A4\u82A7\u82A8\u82A9\u82AA\u82AE\u82B0\u82B2\u82B4\u82B7\u82BA\u82BC\u82BE\u82BF\u82C6\u82D0\u82D5\u82DA\u82E0\u82E2\u82E4\u82E8\u82EA\u82ED\u82EF\u82F6\u82F7\u82FD\u82FE\u8300\u8301\u8307\u8308\u830A\u830B\u8354\u831B\u831D\u831E\u831F\u8321\u8322\u832C\u832D\u832E\u8330\u8333\u8337\u833A\u833C\u833D\u8342\u8343\u8344\u8347\u834D\u834E\u8351\u8355\u8356\u8357\u8370\u8378"],["8fd8a1","\u837D\u837F\u8380\u8382\u8384\u8386\u838D\u8392\u8394\u8395\u8398\u8399\u839B\u839C\u839D\u83A6\u83A7\u83A9\u83AC\u83BE\u83BF\u83C0\u83C7\u83C9\u83CF\u83D0\u83D1\u83D4\u83DD\u8353\u83E8\u83EA\u83F6\u83F8\u83F9\u83FC\u8401\u8406\u840A\u840F\u8411\u8415\u8419\u83AD\u842F\u8439\u8445\u8447\u8448\u844A\u844D\u844F\u8451\u8452\u8456\u8458\u8459\u845A\u845C\u8460\u8464\u8465\u8467\u846A\u8470\u8473\u8474\u8476\u8478\u847C\u847D\u8481\u8485\u8492\u8493\u8495\u849E\u84A6\u84A8\u84A9\u84AA\u84AF\u84B1\u84B4\u84BA\u84BD\u84BE\u84C0\u84C2\u84C7\u84C8\u84CC\u84CF\u84D3"],["8fd9a1","\u84DC\u84E7\u84EA\u84EF\u84F0\u84F1\u84F2\u84F7\u8532\u84FA\u84FB\u84FD\u8502\u8503\u8507\u850C\u850E\u8510\u851C\u851E\u8522\u8523\u8524\u8525\u8527\u852A\u852B\u852F\u8533\u8534\u8536\u853F\u8546\u854F",4,"\u8556\u8559\u855C",6,"\u8564\u856B\u856F\u8579\u857A\u857B\u857D\u857F\u8581\u8585\u8586\u8589\u858B\u858C\u858F\u8593\u8598\u859D\u859F\u85A0\u85A2\u85A5\u85A7\u85B4\u85B6\u85B7\u85B8\u85BC\u85BD\u85BE\u85BF\u85C2\u85C7\u85CA\u85CB\u85CE\u85AD\u85D8\u85DA\u85DF\u85E0\u85E6\u85E8\u85ED\u85F3\u85F6\u85FC"],["8fdaa1","\u85FF\u8600\u8604\u8605\u860D\u860E\u8610\u8611\u8612\u8618\u8619\u861B\u861E\u8621\u8627\u8629\u8636\u8638\u863A\u863C\u863D\u8640\u8642\u8646\u8652\u8653\u8656\u8657\u8658\u8659\u865D\u8660",4,"\u8669\u866C\u866F\u8675\u8676\u8677\u867A\u868D\u8691\u8696\u8698\u869A\u869C\u86A1\u86A6\u86A7\u86A8\u86AD\u86B1\u86B3\u86B4\u86B5\u86B7\u86B8\u86B9\u86BF\u86C0\u86C1\u86C3\u86C5\u86D1\u86D2\u86D5\u86D7\u86DA\u86DC\u86E0\u86E3\u86E5\u86E7\u8688\u86FA\u86FC\u86FD\u8704\u8705\u8707\u870B\u870E\u870F\u8710\u8713\u8714\u8719\u871E\u871F\u8721\u8723"],["8fdba1","\u8728\u872E\u872F\u8731\u8732\u8739\u873A\u873C\u873D\u873E\u8740\u8743\u8745\u874D\u8758\u875D\u8761\u8764\u8765\u876F\u8771\u8772\u877B\u8783",6,"\u878B\u878C\u8790\u8793\u8795\u8797\u8798\u8799\u879E\u87A0\u87A3\u87A7\u87AC\u87AD\u87AE\u87B1\u87B5\u87BE\u87BF\u87C1\u87C8\u87C9\u87CA\u87CE\u87D5\u87D6\u87D9\u87DA\u87DC\u87DF\u87E2\u87E3\u87E4\u87EA\u87EB\u87ED\u87F1\u87F3\u87F8\u87FA\u87FF\u8801\u8803\u8806\u8809\u880A\u880B\u8810\u8819\u8812\u8813\u8814\u8818\u881A\u881B\u881C\u881E\u881F\u8828\u882D\u882E\u8830\u8832\u8835"],["8fdca1","\u883A\u883C\u8841\u8843\u8845\u8848\u8849\u884A\u884B\u884E\u8851\u8855\u8856\u8858\u885A\u885C\u885F\u8860\u8864\u8869\u8871\u8879\u887B\u8880\u8898\u889A\u889B\u889C\u889F\u88A0\u88A8\u88AA\u88BA\u88BD\u88BE\u88C0\u88CA",4,"\u88D1\u88D2\u88D3\u88DB\u88DE\u88E7\u88EF\u88F0\u88F1\u88F5\u88F7\u8901\u8906\u890D\u890E\u890F\u8915\u8916\u8918\u8919\u891A\u891C\u8920\u8926\u8927\u8928\u8930\u8931\u8932\u8935\u8939\u893A\u893E\u8940\u8942\u8945\u8946\u8949\u894F\u8952\u8957\u895A\u895B\u895C\u8961\u8962\u8963\u896B\u896E\u8970\u8973\u8975\u897A"],["8fdda1","\u897B\u897C\u897D\u8989\u898D\u8990\u8994\u8995\u899B\u899C\u899F\u89A0\u89A5\u89B0\u89B4\u89B5\u89B6\u89B7\u89BC\u89D4",4,"\u89E5\u89E9\u89EB\u89ED\u89F1\u89F3\u89F6\u89F9\u89FD\u89FF\u8A04\u8A05\u8A07\u8A0F\u8A11\u8A12\u8A14\u8A15\u8A1E\u8A20\u8A22\u8A24\u8A26\u8A2B\u8A2C\u8A2F\u8A35\u8A37\u8A3D\u8A3E\u8A40\u8A43\u8A45\u8A47\u8A49\u8A4D\u8A4E\u8A53\u8A56\u8A57\u8A58\u8A5C\u8A5D\u8A61\u8A65\u8A67\u8A75\u8A76\u8A77\u8A79\u8A7A\u8A7B\u8A7E\u8A7F\u8A80\u8A83\u8A86\u8A8B\u8A8F\u8A90\u8A92\u8A96\u8A97\u8A99\u8A9F\u8AA7\u8AA9\u8AAE\u8AAF\u8AB3"],["8fdea1","\u8AB6\u8AB7\u8ABB\u8ABE\u8AC3\u8AC6\u8AC8\u8AC9\u8ACA\u8AD1\u8AD3\u8AD4\u8AD5\u8AD7\u8ADD\u8ADF\u8AEC\u8AF0\u8AF4\u8AF5\u8AF6\u8AFC\u8AFF\u8B05\u8B06\u8B0B\u8B11\u8B1C\u8B1E\u8B1F\u8B0A\u8B2D\u8B30\u8B37\u8B3C\u8B42",4,"\u8B48\u8B52\u8B53\u8B54\u8B59\u8B4D\u8B5E\u8B63\u8B6D\u8B76\u8B78\u8B79\u8B7C\u8B7E\u8B81\u8B84\u8B85\u8B8B\u8B8D\u8B8F\u8B94\u8B95\u8B9C\u8B9E\u8B9F\u8C38\u8C39\u8C3D\u8C3E\u8C45\u8C47\u8C49\u8C4B\u8C4F\u8C51\u8C53\u8C54\u8C57\u8C58\u8C5B\u8C5D\u8C59\u8C63\u8C64\u8C66\u8C68\u8C69\u8C6D\u8C73\u8C75\u8C76\u8C7B\u8C7E\u8C86"],["8fdfa1","\u8C87\u8C8B\u8C90\u8C92\u8C93\u8C99\u8C9B\u8C9C\u8CA4\u8CB9\u8CBA\u8CC5\u8CC6\u8CC9\u8CCB\u8CCF\u8CD6\u8CD5\u8CD9\u8CDD\u8CE1\u8CE8\u8CEC\u8CEF\u8CF0\u8CF2\u8CF5\u8CF7\u8CF8\u8CFE\u8CFF\u8D01\u8D03\u8D09\u8D12\u8D17\u8D1B\u8D65\u8D69\u8D6C\u8D6E\u8D7F\u8D82\u8D84\u8D88\u8D8D\u8D90\u8D91\u8D95\u8D9E\u8D9F\u8DA0\u8DA6\u8DAB\u8DAC\u8DAF\u8DB2\u8DB5\u8DB7\u8DB9\u8DBB\u8DC0\u8DC5\u8DC6\u8DC7\u8DC8\u8DCA\u8DCE\u8DD1\u8DD4\u8DD5\u8DD7\u8DD9\u8DE4\u8DE5\u8DE7\u8DEC\u8DF0\u8DBC\u8DF1\u8DF2\u8DF4\u8DFD\u8E01\u8E04\u8E05\u8E06\u8E0B\u8E11\u8E14\u8E16\u8E20\u8E21\u8E22"],["8fe0a1","\u8E23\u8E26\u8E27\u8E31\u8E33\u8E36\u8E37\u8E38\u8E39\u8E3D\u8E40\u8E41\u8E4B\u8E4D\u8E4E\u8E4F\u8E54\u8E5B\u8E5C\u8E5D\u8E5E\u8E61\u8E62\u8E69\u8E6C\u8E6D\u8E6F\u8E70\u8E71\u8E79\u8E7A\u8E7B\u8E82\u8E83\u8E89\u8E90\u8E92\u8E95\u8E9A\u8E9B\u8E9D\u8E9E\u8EA2\u8EA7\u8EA9\u8EAD\u8EAE\u8EB3\u8EB5\u8EBA\u8EBB\u8EC0\u8EC1\u8EC3\u8EC4\u8EC7\u8ECF\u8ED1\u8ED4\u8EDC\u8EE8\u8EEE\u8EF0\u8EF1\u8EF7\u8EF9\u8EFA\u8EED\u8F00\u8F02\u8F07\u8F08\u8F0F\u8F10\u8F16\u8F17\u8F18\u8F1E\u8F20\u8F21\u8F23\u8F25\u8F27\u8F28\u8F2C\u8F2D\u8F2E\u8F34\u8F35\u8F36\u8F37\u8F3A\u8F40\u8F41"],["8fe1a1","\u8F43\u8F47\u8F4F\u8F51",4,"\u8F58\u8F5D\u8F5E\u8F65\u8F9D\u8FA0\u8FA1\u8FA4\u8FA5\u8FA6\u8FB5\u8FB6\u8FB8\u8FBE\u8FC0\u8FC1\u8FC6\u8FCA\u8FCB\u8FCD\u8FD0\u8FD2\u8FD3\u8FD5\u8FE0\u8FE3\u8FE4\u8FE8\u8FEE\u8FF1\u8FF5\u8FF6\u8FFB\u8FFE\u9002\u9004\u9008\u900C\u9018\u901B\u9028\u9029\u902F\u902A\u902C\u902D\u9033\u9034\u9037\u903F\u9043\u9044\u904C\u905B\u905D\u9062\u9066\u9067\u906C\u9070\u9074\u9079\u9085\u9088\u908B\u908C\u908E\u9090\u9095\u9097\u9098\u9099\u909B\u90A0\u90A1\u90A2\u90A5\u90B0\u90B2\u90B3\u90B4\u90B6\u90BD\u90CC\u90BE\u90C3"],["8fe2a1","\u90C4\u90C5\u90C7\u90C8\u90D5\u90D7\u90D8\u90D9\u90DC\u90DD\u90DF\u90E5\u90D2\u90F6\u90EB\u90EF\u90F0\u90F4\u90FE\u90FF\u9100\u9104\u9105\u9106\u9108\u910D\u9110\u9114\u9116\u9117\u9118\u911A\u911C\u911E\u9120\u9125\u9122\u9123\u9127\u9129\u912E\u912F\u9131\u9134\u9136\u9137\u9139\u913A\u913C\u913D\u9143\u9147\u9148\u914F\u9153\u9157\u9159\u915A\u915B\u9161\u9164\u9167\u916D\u9174\u9179\u917A\u917B\u9181\u9183\u9185\u9186\u918A\u918E\u9191\u9193\u9194\u9195\u9198\u919E\u91A1\u91A6\u91A8\u91AC\u91AD\u91AE\u91B0\u91B1\u91B2\u91B3\u91B6\u91BB\u91BC\u91BD\u91BF"],["8fe3a1","\u91C2\u91C3\u91C5\u91D3\u91D4\u91D7\u91D9\u91DA\u91DE\u91E4\u91E5\u91E9\u91EA\u91EC",5,"\u91F7\u91F9\u91FB\u91FD\u9200\u9201\u9204\u9205\u9206\u9207\u9209\u920A\u920C\u9210\u9212\u9213\u9216\u9218\u921C\u921D\u9223\u9224\u9225\u9226\u9228\u922E\u922F\u9230\u9233\u9235\u9236\u9238\u9239\u923A\u923C\u923E\u9240\u9242\u9243\u9246\u9247\u924A\u924D\u924E\u924F\u9251\u9258\u9259\u925C\u925D\u9260\u9261\u9265\u9267\u9268\u9269\u926E\u926F\u9270\u9275",4,"\u927B\u927C\u927D\u927F\u9288\u9289\u928A\u928D\u928E\u9292\u9297"],["8fe4a1","\u9299\u929F\u92A0\u92A4\u92A5\u92A7\u92A8\u92AB\u92AF\u92B2\u92B6\u92B8\u92BA\u92BB\u92BC\u92BD\u92BF",4,"\u92C5\u92C6\u92C7\u92C8\u92CB\u92CC\u92CD\u92CE\u92D0\u92D3\u92D5\u92D7\u92D8\u92D9\u92DC\u92DD\u92DF\u92E0\u92E1\u92E3\u92E5\u92E7\u92E8\u92EC\u92EE\u92F0\u92F9\u92FB\u92FF\u9300\u9302\u9308\u930D\u9311\u9314\u9315\u931C\u931D\u931E\u931F\u9321\u9324\u9325\u9327\u9329\u932A\u9333\u9334\u9336\u9337\u9347\u9348\u9349\u9350\u9351\u9352\u9355\u9357\u9358\u935A\u935E\u9364\u9365\u9367\u9369\u936A\u936D\u936F\u9370\u9371\u9373\u9374\u9376"],["8fe5a1","\u937A\u937D\u937F\u9380\u9381\u9382\u9388\u938A\u938B\u938D\u938F\u9392\u9395\u9398\u939B\u939E\u93A1\u93A3\u93A4\u93A6\u93A8\u93AB\u93B4\u93B5\u93B6\u93BA\u93A9\u93C1\u93C4\u93C5\u93C6\u93C7\u93C9",4,"\u93D3\u93D9\u93DC\u93DE\u93DF\u93E2\u93E6\u93E7\u93F9\u93F7\u93F8\u93FA\u93FB\u93FD\u9401\u9402\u9404\u9408\u9409\u940D\u940E\u940F\u9415\u9416\u9417\u941F\u942E\u942F\u9431\u9432\u9433\u9434\u943B\u943F\u943D\u9443\u9445\u9448\u944A\u944C\u9455\u9459\u945C\u945F\u9461\u9463\u9468\u946B\u946D\u946E\u946F\u9471\u9472\u9484\u9483\u9578\u9579"],["8fe6a1","\u957E\u9584\u9588\u958C\u958D\u958E\u959D\u959E\u959F\u95A1\u95A6\u95A9\u95AB\u95AC\u95B4\u95B6\u95BA\u95BD\u95BF\u95C6\u95C8\u95C9\u95CB\u95D0\u95D1\u95D2\u95D3\u95D9\u95DA\u95DD\u95DE\u95DF\u95E0\u95E4\u95E6\u961D\u961E\u9622\u9624\u9625\u9626\u962C\u9631\u9633\u9637\u9638\u9639\u963A\u963C\u963D\u9641\u9652\u9654\u9656\u9657\u9658\u9661\u966E\u9674\u967B\u967C\u967E\u967F\u9681\u9682\u9683\u9684\u9689\u9691\u9696\u969A\u969D\u969F\u96A4\u96A5\u96A6\u96A9\u96AE\u96AF\u96B3\u96BA\u96CA\u96D2\u5DB2\u96D8\u96DA\u96DD\u96DE\u96DF\u96E9\u96EF\u96F1\u96FA\u9702"],["8fe7a1","\u9703\u9705\u9709\u971A\u971B\u971D\u9721\u9722\u9723\u9728\u9731\u9733\u9741\u9743\u974A\u974E\u974F\u9755\u9757\u9758\u975A\u975B\u9763\u9767\u976A\u976E\u9773\u9776\u9777\u9778\u977B\u977D\u977F\u9780\u9789\u9795\u9796\u9797\u9799\u979A\u979E\u979F\u97A2\u97AC\u97AE\u97B1\u97B2\u97B5\u97B6\u97B8\u97B9\u97BA\u97BC\u97BE\u97BF\u97C1\u97C4\u97C5\u97C7\u97C9\u97CA\u97CC\u97CD\u97CE\u97D0\u97D1\u97D4\u97D7\u97D8\u97D9\u97DD\u97DE\u97E0\u97DB\u97E1\u97E4\u97EF\u97F1\u97F4\u97F7\u97F8\u97FA\u9807\u980A\u9819\u980D\u980E\u9814\u9816\u981C\u981E\u9820\u9823\u9826"],["8fe8a1","\u982B\u982E\u982F\u9830\u9832\u9833\u9835\u9825\u983E\u9844\u9847\u984A\u9851\u9852\u9853\u9856\u9857\u9859\u985A\u9862\u9863\u9865\u9866\u986A\u986C\u98AB\u98AD\u98AE\u98B0\u98B4\u98B7\u98B8\u98BA\u98BB\u98BF\u98C2\u98C5\u98C8\u98CC\u98E1\u98E3\u98E5\u98E6\u98E7\u98EA\u98F3\u98F6\u9902\u9907\u9908\u9911\u9915\u9916\u9917\u991A\u991B\u991C\u991F\u9922\u9926\u9927\u992B\u9931",4,"\u9939\u993A\u993B\u993C\u9940\u9941\u9946\u9947\u9948\u994D\u994E\u9954\u9958\u9959\u995B\u995C\u995E\u995F\u9960\u999B\u999D\u999F\u99A6\u99B0\u99B1\u99B2\u99B5"],["8fe9a1","\u99B9\u99BA\u99BD\u99BF\u99C3\u99C9\u99D3\u99D4\u99D9\u99DA\u99DC\u99DE\u99E7\u99EA\u99EB\u99EC\u99F0\u99F4\u99F5\u99F9\u99FD\u99FE\u9A02\u9A03\u9A04\u9A0B\u9A0C\u9A10\u9A11\u9A16\u9A1E\u9A20\u9A22\u9A23\u9A24\u9A27\u9A2D\u9A2E\u9A33\u9A35\u9A36\u9A38\u9A47\u9A41\u9A44\u9A4A\u9A4B\u9A4C\u9A4E\u9A51\u9A54\u9A56\u9A5D\u9AAA\u9AAC\u9AAE\u9AAF\u9AB2\u9AB4\u9AB5\u9AB6\u9AB9\u9ABB\u9ABE\u9ABF\u9AC1\u9AC3\u9AC6\u9AC8\u9ACE\u9AD0\u9AD2\u9AD5\u9AD6\u9AD7\u9ADB\u9ADC\u9AE0\u9AE4\u9AE5\u9AE7\u9AE9\u9AEC\u9AF2\u9AF3\u9AF5\u9AF9\u9AFA\u9AFD\u9AFF",4],["8feaa1","\u9B04\u9B05\u9B08\u9B09\u9B0B\u9B0C\u9B0D\u9B0E\u9B10\u9B12\u9B16\u9B19\u9B1B\u9B1C\u9B20\u9B26\u9B2B\u9B2D\u9B33\u9B34\u9B35\u9B37\u9B39\u9B3A\u9B3D\u9B48\u9B4B\u9B4C\u9B55\u9B56\u9B57\u9B5B\u9B5E\u9B61\u9B63\u9B65\u9B66\u9B68\u9B6A",4,"\u9B73\u9B75\u9B77\u9B78\u9B79\u9B7F\u9B80\u9B84\u9B85\u9B86\u9B87\u9B89\u9B8A\u9B8B\u9B8D\u9B8F\u9B90\u9B94\u9B9A\u9B9D\u9B9E\u9BA6\u9BA7\u9BA9\u9BAC\u9BB0\u9BB1\u9BB2\u9BB7\u9BB8\u9BBB\u9BBC\u9BBE\u9BBF\u9BC1\u9BC7\u9BC8\u9BCE\u9BD0\u9BD7\u9BD8\u9BDD\u9BDF\u9BE5\u9BE7\u9BEA\u9BEB\u9BEF\u9BF3\u9BF7\u9BF8"],["8feba1","\u9BF9\u9BFA\u9BFD\u9BFF\u9C00\u9C02\u9C0B\u9C0F\u9C11\u9C16\u9C18\u9C19\u9C1A\u9C1C\u9C1E\u9C22\u9C23\u9C26",4,"\u9C31\u9C35\u9C36\u9C37\u9C3D\u9C41\u9C43\u9C44\u9C45\u9C49\u9C4A\u9C4E\u9C4F\u9C50\u9C53\u9C54\u9C56\u9C58\u9C5B\u9C5D\u9C5E\u9C5F\u9C63\u9C69\u9C6A\u9C5C\u9C6B\u9C68\u9C6E\u9C70\u9C72\u9C75\u9C77\u9C7B\u9CE6\u9CF2\u9CF7\u9CF9\u9D0B\u9D02\u9D11\u9D17\u9D18\u9D1C\u9D1D\u9D1E\u9D2F\u9D30\u9D32\u9D33\u9D34\u9D3A\u9D3C\u9D45\u9D3D\u9D42\u9D43\u9D47\u9D4A\u9D53\u9D54\u9D5F\u9D63\u9D62\u9D65\u9D69\u9D6A\u9D6B\u9D70\u9D76\u9D77\u9D7B"],["8feca1","\u9D7C\u9D7E\u9D83\u9D84\u9D86\u9D8A\u9D8D\u9D8E\u9D92\u9D93\u9D95\u9D96\u9D97\u9D98\u9DA1\u9DAA\u9DAC\u9DAE\u9DB1\u9DB5\u9DB9\u9DBC\u9DBF\u9DC3\u9DC7\u9DC9\u9DCA\u9DD4\u9DD5\u9DD6\u9DD7\u9DDA\u9DDE\u9DDF\u9DE0\u9DE5\u9DE7\u9DE9\u9DEB\u9DEE\u9DF0\u9DF3\u9DF4\u9DFE\u9E0A\u9E02\u9E07\u9E0E\u9E10\u9E11\u9E12\u9E15\u9E16\u9E19\u9E1C\u9E1D\u9E7A\u9E7B\u9E7C\u9E80\u9E82\u9E83\u9E84\u9E85\u9E87\u9E8E\u9E8F\u9E96\u9E98\u9E9B\u9E9E\u9EA4\u9EA8\u9EAC\u9EAE\u9EAF\u9EB0\u9EB3\u9EB4\u9EB5\u9EC6\u9EC8\u9ECB\u9ED5\u9EDF\u9EE4\u9EE7\u9EEC\u9EED\u9EEE\u9EF0\u9EF1\u9EF2\u9EF5"],["8feda1","\u9EF8\u9EFF\u9F02\u9F03\u9F09\u9F0F\u9F10\u9F11\u9F12\u9F14\u9F16\u9F17\u9F19\u9F1A\u9F1B\u9F1F\u9F22\u9F26\u9F2A\u9F2B\u9F2F\u9F31\u9F32\u9F34\u9F37\u9F39\u9F3A\u9F3C\u9F3D\u9F3F\u9F41\u9F43",4,"\u9F53\u9F55\u9F56\u9F57\u9F58\u9F5A\u9F5D\u9F5E\u9F68\u9F69\u9F6D",4,"\u9F73\u9F75\u9F7A\u9F7D\u9F8F\u9F90\u9F91\u9F92\u9F94\u9F96\u9F97\u9F9E\u9FA1\u9FA2\u9FA3\u9FA5"]]});var Sy=b((Lut,b4e)=>{b4e.exports=[["0","\0",127,"\u20AC"],["8140","\u4E02\u4E04\u4E05\u4E06\u4E0F\u4E12\u4E17\u4E1F\u4E20\u4E21\u4E23\u4E26\u4E29\u4E2E\u4E2F\u4E31\u4E33\u4E35\u4E37\u4E3C\u4E40\u4E41\u4E42\u4E44\u4E46\u4E4A\u4E51\u4E55\u4E57\u4E5A\u4E5B\u4E62\u4E63\u4E64\u4E65\u4E67\u4E68\u4E6A",5,"\u4E72\u4E74",9,"\u4E7F",6,"\u4E87\u4E8A"],["8180","\u4E90\u4E96\u4E97\u4E99\u4E9C\u4E9D\u4E9E\u4EA3\u4EAA\u4EAF\u4EB0\u4EB1\u4EB4\u4EB6\u4EB7\u4EB8\u4EB9\u4EBC\u4EBD\u4EBE\u4EC8\u4ECC\u4ECF\u4ED0\u4ED2\u4EDA\u4EDB\u4EDC\u4EE0\u4EE2\u4EE6\u4EE7\u4EE9\u4EED\u4EEE\u4EEF\u4EF1\u4EF4\u4EF8\u4EF9\u4EFA\u4EFC\u4EFE\u4F00\u4F02",6,"\u4F0B\u4F0C\u4F12",4,"\u4F1C\u4F1D\u4F21\u4F23\u4F28\u4F29\u4F2C\u4F2D\u4F2E\u4F31\u4F33\u4F35\u4F37\u4F39\u4F3B\u4F3E",4,"\u4F44\u4F45\u4F47",5,"\u4F52\u4F54\u4F56\u4F61\u4F62\u4F66\u4F68\u4F6A\u4F6B\u4F6D\u4F6E\u4F71\u4F72\u4F75\u4F77\u4F78\u4F79\u4F7A\u4F7D\u4F80\u4F81\u4F82\u4F85\u4F86\u4F87\u4F8A\u4F8C\u4F8E\u4F90\u4F92\u4F93\u4F95\u4F96\u4F98\u4F99\u4F9A\u4F9C\u4F9E\u4F9F\u4FA1\u4FA2"],["8240","\u4FA4\u4FAB\u4FAD\u4FB0",4,"\u4FB6",8,"\u4FC0\u4FC1\u4FC2\u4FC6\u4FC7\u4FC8\u4FC9\u4FCB\u4FCC\u4FCD\u4FD2",4,"\u4FD9\u4FDB\u4FE0\u4FE2\u4FE4\u4FE5\u4FE7\u4FEB\u4FEC\u4FF0\u4FF2\u4FF4\u4FF5\u4FF6\u4FF7\u4FF9\u4FFB\u4FFC\u4FFD\u4FFF",11],["8280","\u500B\u500E\u5010\u5011\u5013\u5015\u5016\u5017\u501B\u501D\u501E\u5020\u5022\u5023\u5024\u5027\u502B\u502F",10,"\u503B\u503D\u503F\u5040\u5041\u5042\u5044\u5045\u5046\u5049\u504A\u504B\u504D\u5050",4,"\u5056\u5057\u5058\u5059\u505B\u505D",7,"\u5066",5,"\u506D",8,"\u5078\u5079\u507A\u507C\u507D\u5081\u5082\u5083\u5084\u5086\u5087\u5089\u508A\u508B\u508C\u508E",20,"\u50A4\u50A6\u50AA\u50AB\u50AD",4,"\u50B3",6,"\u50BC"],["8340","\u50BD",17,"\u50D0",5,"\u50D7\u50D8\u50D9\u50DB",10,"\u50E8\u50E9\u50EA\u50EB\u50EF\u50F0\u50F1\u50F2\u50F4\u50F6",4,"\u50FC",9,"\u5108"],["8380","\u5109\u510A\u510C",5,"\u5113",13,"\u5122",28,"\u5142\u5147\u514A\u514C\u514E\u514F\u5150\u5152\u5153\u5157\u5158\u5159\u515B\u515D",4,"\u5163\u5164\u5166\u5167\u5169\u516A\u516F\u5172\u517A\u517E\u517F\u5183\u5184\u5186\u5187\u518A\u518B\u518E\u518F\u5190\u5191\u5193\u5194\u5198\u519A\u519D\u519E\u519F\u51A1\u51A3\u51A6",4,"\u51AD\u51AE\u51B4\u51B8\u51B9\u51BA\u51BE\u51BF\u51C1\u51C2\u51C3\u51C5\u51C8\u51CA\u51CD\u51CE\u51D0\u51D2",5],["8440","\u51D8\u51D9\u51DA\u51DC\u51DE\u51DF\u51E2\u51E3\u51E5",5,"\u51EC\u51EE\u51F1\u51F2\u51F4\u51F7\u51FE\u5204\u5205\u5209\u520B\u520C\u520F\u5210\u5213\u5214\u5215\u521C\u521E\u521F\u5221\u5222\u5223\u5225\u5226\u5227\u522A\u522C\u522F\u5231\u5232\u5234\u5235\u523C\u523E\u5244",5,"\u524B\u524E\u524F\u5252\u5253\u5255\u5257\u5258"],["8480","\u5259\u525A\u525B\u525D\u525F\u5260\u5262\u5263\u5264\u5266\u5268\u526B\u526C\u526D\u526E\u5270\u5271\u5273",9,"\u527E\u5280\u5283",4,"\u5289",6,"\u5291\u5292\u5294",6,"\u529C\u52A4\u52A5\u52A6\u52A7\u52AE\u52AF\u52B0\u52B4",9,"\u52C0\u52C1\u52C2\u52C4\u52C5\u52C6\u52C8\u52CA\u52CC\u52CD\u52CE\u52CF\u52D1\u52D3\u52D4\u52D5\u52D7\u52D9",5,"\u52E0\u52E1\u52E2\u52E3\u52E5",10,"\u52F1",7,"\u52FB\u52FC\u52FD\u5301\u5302\u5303\u5304\u5307\u5309\u530A\u530B\u530C\u530E"],["8540","\u5311\u5312\u5313\u5314\u5318\u531B\u531C\u531E\u531F\u5322\u5324\u5325\u5327\u5328\u5329\u532B\u532C\u532D\u532F",9,"\u533C\u533D\u5340\u5342\u5344\u5346\u534B\u534C\u534D\u5350\u5354\u5358\u5359\u535B\u535D\u5365\u5368\u536A\u536C\u536D\u5372\u5376\u5379\u537B\u537C\u537D\u537E\u5380\u5381\u5383\u5387\u5388\u538A\u538E\u538F"],["8580","\u5390",4,"\u5396\u5397\u5399\u539B\u539C\u539E\u53A0\u53A1\u53A4\u53A7\u53AA\u53AB\u53AC\u53AD\u53AF",6,"\u53B7\u53B8\u53B9\u53BA\u53BC\u53BD\u53BE\u53C0\u53C3",4,"\u53CE\u53CF\u53D0\u53D2\u53D3\u53D5\u53DA\u53DC\u53DD\u53DE\u53E1\u53E2\u53E7\u53F4\u53FA\u53FE\u53FF\u5400\u5402\u5405\u5407\u540B\u5414\u5418\u5419\u541A\u541C\u5422\u5424\u5425\u542A\u5430\u5433\u5436\u5437\u543A\u543D\u543F\u5441\u5442\u5444\u5445\u5447\u5449\u544C\u544D\u544E\u544F\u5451\u545A\u545D",4,"\u5463\u5465\u5467\u5469",7,"\u5474\u5479\u547A\u547E\u547F\u5481\u5483\u5485\u5487\u5488\u5489\u548A\u548D\u5491\u5493\u5497\u5498\u549C\u549E\u549F\u54A0\u54A1"],["8640","\u54A2\u54A5\u54AE\u54B0\u54B2\u54B5\u54B6\u54B7\u54B9\u54BA\u54BC\u54BE\u54C3\u54C5\u54CA\u54CB\u54D6\u54D8\u54DB\u54E0",4,"\u54EB\u54EC\u54EF\u54F0\u54F1\u54F4",5,"\u54FB\u54FE\u5500\u5502\u5503\u5504\u5505\u5508\u550A",4,"\u5512\u5513\u5515",5,"\u551C\u551D\u551E\u551F\u5521\u5525\u5526"],["8680","\u5528\u5529\u552B\u552D\u5532\u5534\u5535\u5536\u5538\u5539\u553A\u553B\u553D\u5540\u5542\u5545\u5547\u5548\u554B",4,"\u5551\u5552\u5553\u5554\u5557",4,"\u555D\u555E\u555F\u5560\u5562\u5563\u5568\u5569\u556B\u556F",5,"\u5579\u557A\u557D\u557F\u5585\u5586\u558C\u558D\u558E\u5590\u5592\u5593\u5595\u5596\u5597\u559A\u559B\u559E\u55A0",6,"\u55A8",8,"\u55B2\u55B4\u55B6\u55B8\u55BA\u55BC\u55BF",4,"\u55C6\u55C7\u55C8\u55CA\u55CB\u55CE\u55CF\u55D0\u55D5\u55D7",4,"\u55DE\u55E0\u55E2\u55E7\u55E9\u55ED\u55EE\u55F0\u55F1\u55F4\u55F6\u55F8",4,"\u55FF\u5602\u5603\u5604\u5605"],["8740","\u5606\u5607\u560A\u560B\u560D\u5610",7,"\u5619\u561A\u561C\u561D\u5620\u5621\u5622\u5625\u5626\u5628\u5629\u562A\u562B\u562E\u562F\u5630\u5633\u5635\u5637\u5638\u563A\u563C\u563D\u563E\u5640",11,"\u564F",4,"\u5655\u5656\u565A\u565B\u565D",4],["8780","\u5663\u5665\u5666\u5667\u566D\u566E\u566F\u5670\u5672\u5673\u5674\u5675\u5677\u5678\u5679\u567A\u567D",7,"\u5687",6,"\u5690\u5691\u5692\u5694",14,"\u56A4",10,"\u56B0",6,"\u56B8\u56B9\u56BA\u56BB\u56BD",12,"\u56CB",8,"\u56D5\u56D6\u56D8\u56D9\u56DC\u56E3\u56E5",5,"\u56EC\u56EE\u56EF\u56F2\u56F3\u56F6\u56F7\u56F8\u56FB\u56FC\u5700\u5701\u5702\u5705\u5707\u570B",6],["8840","\u5712",9,"\u571D\u571E\u5720\u5721\u5722\u5724\u5725\u5726\u5727\u572B\u5731\u5732\u5734",4,"\u573C\u573D\u573F\u5741\u5743\u5744\u5745\u5746\u5748\u5749\u574B\u5752",4,"\u5758\u5759\u5762\u5763\u5765\u5767\u576C\u576E\u5770\u5771\u5772\u5774\u5775\u5778\u5779\u577A\u577D\u577E\u577F\u5780"],["8880","\u5781\u5787\u5788\u5789\u578A\u578D",4,"\u5794",6,"\u579C\u579D\u579E\u579F\u57A5\u57A8\u57AA\u57AC\u57AF\u57B0\u57B1\u57B3\u57B5\u57B6\u57B7\u57B9",8,"\u57C4",6,"\u57CC\u57CD\u57D0\u57D1\u57D3\u57D6\u57D7\u57DB\u57DC\u57DE\u57E1\u57E2\u57E3\u57E5",7,"\u57EE\u57F0\u57F1\u57F2\u57F3\u57F5\u57F6\u57F7\u57FB\u57FC\u57FE\u57FF\u5801\u5803\u5804\u5805\u5808\u5809\u580A\u580C\u580E\u580F\u5810\u5812\u5813\u5814\u5816\u5817\u5818\u581A\u581B\u581C\u581D\u581F\u5822\u5823\u5825",4,"\u582B",4,"\u5831\u5832\u5833\u5834\u5836",7],["8940","\u583E",5,"\u5845",6,"\u584E\u584F\u5850\u5852\u5853\u5855\u5856\u5857\u5859",4,"\u585F",5,"\u5866",4,"\u586D",16,"\u587F\u5882\u5884\u5886\u5887\u5888\u588A\u588B\u588C"],["8980","\u588D",4,"\u5894",4,"\u589B\u589C\u589D\u58A0",7,"\u58AA",17,"\u58BD\u58BE\u58BF\u58C0\u58C2\u58C3\u58C4\u58C6",10,"\u58D2\u58D3\u58D4\u58D6",13,"\u58E5",5,"\u58ED\u58EF\u58F1\u58F2\u58F4\u58F5\u58F7\u58F8\u58FA",7,"\u5903\u5905\u5906\u5908",4,"\u590E\u5910\u5911\u5912\u5913\u5917\u5918\u591B\u591D\u591E\u5920\u5921\u5922\u5923\u5926\u5928\u592C\u5930\u5932\u5933\u5935\u5936\u593B"],["8a40","\u593D\u593E\u593F\u5940\u5943\u5945\u5946\u594A\u594C\u594D\u5950\u5952\u5953\u5959\u595B",4,"\u5961\u5963\u5964\u5966",12,"\u5975\u5977\u597A\u597B\u597C\u597E\u597F\u5980\u5985\u5989\u598B\u598C\u598E\u598F\u5990\u5991\u5994\u5995\u5998\u599A\u599B\u599C\u599D\u599F\u59A0\u59A1\u59A2\u59A6"],["8a80","\u59A7\u59AC\u59AD\u59B0\u59B1\u59B3",5,"\u59BA\u59BC\u59BD\u59BF",6,"\u59C7\u59C8\u59C9\u59CC\u59CD\u59CE\u59CF\u59D5\u59D6\u59D9\u59DB\u59DE",4,"\u59E4\u59E6\u59E7\u59E9\u59EA\u59EB\u59ED",11,"\u59FA\u59FC\u59FD\u59FE\u5A00\u5A02\u5A0A\u5A0B\u5A0D\u5A0E\u5A0F\u5A10\u5A12\u5A14\u5A15\u5A16\u5A17\u5A19\u5A1A\u5A1B\u5A1D\u5A1E\u5A21\u5A22\u5A24\u5A26\u5A27\u5A28\u5A2A",6,"\u5A33\u5A35\u5A37",4,"\u5A3D\u5A3E\u5A3F\u5A41",4,"\u5A47\u5A48\u5A4B",9,"\u5A56\u5A57\u5A58\u5A59\u5A5B",5],["8b40","\u5A61\u5A63\u5A64\u5A65\u5A66\u5A68\u5A69\u5A6B",8,"\u5A78\u5A79\u5A7B\u5A7C\u5A7D\u5A7E\u5A80",17,"\u5A93",6,"\u5A9C",13,"\u5AAB\u5AAC"],["8b80","\u5AAD",4,"\u5AB4\u5AB6\u5AB7\u5AB9",4,"\u5ABF\u5AC0\u5AC3",5,"\u5ACA\u5ACB\u5ACD",4,"\u5AD3\u5AD5\u5AD7\u5AD9\u5ADA\u5ADB\u5ADD\u5ADE\u5ADF\u5AE2\u5AE4\u5AE5\u5AE7\u5AE8\u5AEA\u5AEC",4,"\u5AF2",22,"\u5B0A",11,"\u5B18",25,"\u5B33\u5B35\u5B36\u5B38",7,"\u5B41",6],["8c40","\u5B48",7,"\u5B52\u5B56\u5B5E\u5B60\u5B61\u5B67\u5B68\u5B6B\u5B6D\u5B6E\u5B6F\u5B72\u5B74\u5B76\u5B77\u5B78\u5B79\u5B7B\u5B7C\u5B7E\u5B7F\u5B82\u5B86\u5B8A\u5B8D\u5B8E\u5B90\u5B91\u5B92\u5B94\u5B96\u5B9F\u5BA7\u5BA8\u5BA9\u5BAC\u5BAD\u5BAE\u5BAF\u5BB1\u5BB2\u5BB7\u5BBA\u5BBB\u5BBC\u5BC0\u5BC1\u5BC3\u5BC8\u5BC9\u5BCA\u5BCB\u5BCD\u5BCE\u5BCF"],["8c80","\u5BD1\u5BD4",8,"\u5BE0\u5BE2\u5BE3\u5BE6\u5BE7\u5BE9",4,"\u5BEF\u5BF1",6,"\u5BFD\u5BFE\u5C00\u5C02\u5C03\u5C05\u5C07\u5C08\u5C0B\u5C0C\u5C0D\u5C0E\u5C10\u5C12\u5C13\u5C17\u5C19\u5C1B\u5C1E\u5C1F\u5C20\u5C21\u5C23\u5C26\u5C28\u5C29\u5C2A\u5C2B\u5C2D\u5C2E\u5C2F\u5C30\u5C32\u5C33\u5C35\u5C36\u5C37\u5C43\u5C44\u5C46\u5C47\u5C4C\u5C4D\u5C52\u5C53\u5C54\u5C56\u5C57\u5C58\u5C5A\u5C5B\u5C5C\u5C5D\u5C5F\u5C62\u5C64\u5C67",6,"\u5C70\u5C72",6,"\u5C7B\u5C7C\u5C7D\u5C7E\u5C80\u5C83",4,"\u5C89\u5C8A\u5C8B\u5C8E\u5C8F\u5C92\u5C93\u5C95\u5C9D",4,"\u5CA4",4],["8d40","\u5CAA\u5CAE\u5CAF\u5CB0\u5CB2\u5CB4\u5CB6\u5CB9\u5CBA\u5CBB\u5CBC\u5CBE\u5CC0\u5CC2\u5CC3\u5CC5",5,"\u5CCC",5,"\u5CD3",5,"\u5CDA",6,"\u5CE2\u5CE3\u5CE7\u5CE9\u5CEB\u5CEC\u5CEE\u5CEF\u5CF1",9,"\u5CFC",4],["8d80","\u5D01\u5D04\u5D05\u5D08",5,"\u5D0F",4,"\u5D15\u5D17\u5D18\u5D19\u5D1A\u5D1C\u5D1D\u5D1F",4,"\u5D25\u5D28\u5D2A\u5D2B\u5D2C\u5D2F",4,"\u5D35",7,"\u5D3F",7,"\u5D48\u5D49\u5D4D",10,"\u5D59\u5D5A\u5D5C\u5D5E",10,"\u5D6A\u5D6D\u5D6E\u5D70\u5D71\u5D72\u5D73\u5D75",12,"\u5D83",21,"\u5D9A\u5D9B\u5D9C\u5D9E\u5D9F\u5DA0"],["8e40","\u5DA1",21,"\u5DB8",12,"\u5DC6",6,"\u5DCE",12,"\u5DDC\u5DDF\u5DE0\u5DE3\u5DE4\u5DEA\u5DEC\u5DED"],["8e80","\u5DF0\u5DF5\u5DF6\u5DF8",4,"\u5DFF\u5E00\u5E04\u5E07\u5E09\u5E0A\u5E0B\u5E0D\u5E0E\u5E12\u5E13\u5E17\u5E1E",7,"\u5E28",4,"\u5E2F\u5E30\u5E32",4,"\u5E39\u5E3A\u5E3E\u5E3F\u5E40\u5E41\u5E43\u5E46",5,"\u5E4D",6,"\u5E56",4,"\u5E5C\u5E5D\u5E5F\u5E60\u5E63",14,"\u5E75\u5E77\u5E79\u5E7E\u5E81\u5E82\u5E83\u5E85\u5E88\u5E89\u5E8C\u5E8D\u5E8E\u5E92\u5E98\u5E9B\u5E9D\u5EA1\u5EA2\u5EA3\u5EA4\u5EA8",4,"\u5EAE",4,"\u5EB4\u5EBA\u5EBB\u5EBC\u5EBD\u5EBF",6],["8f40","\u5EC6\u5EC7\u5EC8\u5ECB",5,"\u5ED4\u5ED5\u5ED7\u5ED8\u5ED9\u5EDA\u5EDC",11,"\u5EE9\u5EEB",8,"\u5EF5\u5EF8\u5EF9\u5EFB\u5EFC\u5EFD\u5F05\u5F06\u5F07\u5F09\u5F0C\u5F0D\u5F0E\u5F10\u5F12\u5F14\u5F16\u5F19\u5F1A\u5F1C\u5F1D\u5F1E\u5F21\u5F22\u5F23\u5F24"],["8f80","\u5F28\u5F2B\u5F2C\u5F2E\u5F30\u5F32",6,"\u5F3B\u5F3D\u5F3E\u5F3F\u5F41",14,"\u5F51\u5F54\u5F59\u5F5A\u5F5B\u5F5C\u5F5E\u5F5F\u5F60\u5F63\u5F65\u5F67\u5F68\u5F6B\u5F6E\u5F6F\u5F72\u5F74\u5F75\u5F76\u5F78\u5F7A\u5F7D\u5F7E\u5F7F\u5F83\u5F86\u5F8D\u5F8E\u5F8F\u5F91\u5F93\u5F94\u5F96\u5F9A\u5F9B\u5F9D\u5F9E\u5F9F\u5FA0\u5FA2",5,"\u5FA9\u5FAB\u5FAC\u5FAF",5,"\u5FB6\u5FB8\u5FB9\u5FBA\u5FBB\u5FBE",4,"\u5FC7\u5FC8\u5FCA\u5FCB\u5FCE\u5FD3\u5FD4\u5FD5\u5FDA\u5FDB\u5FDC\u5FDE\u5FDF\u5FE2\u5FE3\u5FE5\u5FE6\u5FE8\u5FE9\u5FEC\u5FEF\u5FF0\u5FF2\u5FF3\u5FF4\u5FF6\u5FF7\u5FF9\u5FFA\u5FFC\u6007"],["9040","\u6008\u6009\u600B\u600C\u6010\u6011\u6013\u6017\u6018\u601A\u601E\u601F\u6022\u6023\u6024\u602C\u602D\u602E\u6030",4,"\u6036",4,"\u603D\u603E\u6040\u6044",6,"\u604C\u604E\u604F\u6051\u6053\u6054\u6056\u6057\u6058\u605B\u605C\u605E\u605F\u6060\u6061\u6065\u6066\u606E\u6071\u6072\u6074\u6075\u6077\u607E\u6080"],["9080","\u6081\u6082\u6085\u6086\u6087\u6088\u608A\u608B\u608E\u608F\u6090\u6091\u6093\u6095\u6097\u6098\u6099\u609C\u609E\u60A1\u60A2\u60A4\u60A5\u60A7\u60A9\u60AA\u60AE\u60B0\u60B3\u60B5\u60B6\u60B7\u60B9\u60BA\u60BD",7,"\u60C7\u60C8\u60C9\u60CC",4,"\u60D2\u60D3\u60D4\u60D6\u60D7\u60D9\u60DB\u60DE\u60E1",4,"\u60EA\u60F1\u60F2\u60F5\u60F7\u60F8\u60FB",4,"\u6102\u6103\u6104\u6105\u6107\u610A\u610B\u610C\u6110",4,"\u6116\u6117\u6118\u6119\u611B\u611C\u611D\u611E\u6121\u6122\u6125\u6128\u6129\u612A\u612C",18,"\u6140",6],["9140","\u6147\u6149\u614B\u614D\u614F\u6150\u6152\u6153\u6154\u6156",6,"\u615E\u615F\u6160\u6161\u6163\u6164\u6165\u6166\u6169",6,"\u6171\u6172\u6173\u6174\u6176\u6178",18,"\u618C\u618D\u618F",4,"\u6195"],["9180","\u6196",6,"\u619E",8,"\u61AA\u61AB\u61AD",9,"\u61B8",5,"\u61BF\u61C0\u61C1\u61C3",4,"\u61C9\u61CC",4,"\u61D3\u61D5",16,"\u61E7",13,"\u61F6",8,"\u6200",5,"\u6207\u6209\u6213\u6214\u6219\u621C\u621D\u621E\u6220\u6223\u6226\u6227\u6228\u6229\u622B\u622D\u622F\u6230\u6231\u6232\u6235\u6236\u6238",4,"\u6242\u6244\u6245\u6246\u624A"],["9240","\u624F\u6250\u6255\u6256\u6257\u6259\u625A\u625C",6,"\u6264\u6265\u6268\u6271\u6272\u6274\u6275\u6277\u6278\u627A\u627B\u627D\u6281\u6282\u6283\u6285\u6286\u6287\u6288\u628B",5,"\u6294\u6299\u629C\u629D\u629E\u62A3\u62A6\u62A7\u62A9\u62AA\u62AD\u62AE\u62AF\u62B0\u62B2\u62B3\u62B4\u62B6\u62B7\u62B8\u62BA\u62BE\u62C0\u62C1"],["9280","\u62C3\u62CB\u62CF\u62D1\u62D5\u62DD\u62DE\u62E0\u62E1\u62E4\u62EA\u62EB\u62F0\u62F2\u62F5\u62F8\u62F9\u62FA\u62FB\u6300\u6303\u6304\u6305\u6306\u630A\u630B\u630C\u630D\u630F\u6310\u6312\u6313\u6314\u6315\u6317\u6318\u6319\u631C\u6326\u6327\u6329\u632C\u632D\u632E\u6330\u6331\u6333",5,"\u633B\u633C\u633E\u633F\u6340\u6341\u6344\u6347\u6348\u634A\u6351\u6352\u6353\u6354\u6356",7,"\u6360\u6364\u6365\u6366\u6368\u636A\u636B\u636C\u636F\u6370\u6372\u6373\u6374\u6375\u6378\u6379\u637C\u637D\u637E\u637F\u6381\u6383\u6384\u6385\u6386\u638B\u638D\u6391\u6393\u6394\u6395\u6397\u6399",6,"\u63A1\u63A4\u63A6\u63AB\u63AF\u63B1\u63B2\u63B5\u63B6\u63B9\u63BB\u63BD\u63BF\u63C0"],["9340","\u63C1\u63C2\u63C3\u63C5\u63C7\u63C8\u63CA\u63CB\u63CC\u63D1\u63D3\u63D4\u63D5\u63D7",6,"\u63DF\u63E2\u63E4",4,"\u63EB\u63EC\u63EE\u63EF\u63F0\u63F1\u63F3\u63F5\u63F7\u63F9\u63FA\u63FB\u63FC\u63FE\u6403\u6404\u6406",4,"\u640D\u640E\u6411\u6412\u6415",5,"\u641D\u641F\u6422\u6423\u6424"],["9380","\u6425\u6427\u6428\u6429\u642B\u642E",5,"\u6435",4,"\u643B\u643C\u643E\u6440\u6442\u6443\u6449\u644B",6,"\u6453\u6455\u6456\u6457\u6459",4,"\u645F",7,"\u6468\u646A\u646B\u646C\u646E",9,"\u647B",6,"\u6483\u6486\u6488",8,"\u6493\u6494\u6497\u6498\u649A\u649B\u649C\u649D\u649F",4,"\u64A5\u64A6\u64A7\u64A8\u64AA\u64AB\u64AF\u64B1\u64B2\u64B3\u64B4\u64B6\u64B9\u64BB\u64BD\u64BE\u64BF\u64C1\u64C3\u64C4\u64C6",6,"\u64CF\u64D1\u64D3\u64D4\u64D5\u64D6\u64D9\u64DA"],["9440","\u64DB\u64DC\u64DD\u64DF\u64E0\u64E1\u64E3\u64E5\u64E7",24,"\u6501",7,"\u650A",7,"\u6513",4,"\u6519",8],["9480","\u6522\u6523\u6524\u6526",4,"\u652C\u652D\u6530\u6531\u6532\u6533\u6537\u653A\u653C\u653D\u6540",4,"\u6546\u6547\u654A\u654B\u654D\u654E\u6550\u6552\u6553\u6554\u6557\u6558\u655A\u655C\u655F\u6560\u6561\u6564\u6565\u6567\u6568\u6569\u656A\u656D\u656E\u656F\u6571\u6573\u6575\u6576\u6578",14,"\u6588\u6589\u658A\u658D\u658E\u658F\u6592\u6594\u6595\u6596\u6598\u659A\u659D\u659E\u65A0\u65A2\u65A3\u65A6\u65A8\u65AA\u65AC\u65AE\u65B1",7,"\u65BA\u65BB\u65BE\u65BF\u65C0\u65C2\u65C7\u65C8\u65C9\u65CA\u65CD\u65D0\u65D1\u65D3\u65D4\u65D5\u65D8",7,"\u65E1\u65E3\u65E4\u65EA\u65EB"],["9540","\u65F2\u65F3\u65F4\u65F5\u65F8\u65F9\u65FB",4,"\u6601\u6604\u6605\u6607\u6608\u6609\u660B\u660D\u6610\u6611\u6612\u6616\u6617\u6618\u661A\u661B\u661C\u661E\u6621\u6622\u6623\u6624\u6626\u6629\u662A\u662B\u662C\u662E\u6630\u6632\u6633\u6637",4,"\u663D\u663F\u6640\u6642\u6644",6,"\u664D\u664E\u6650\u6651\u6658"],["9580","\u6659\u665B\u665C\u665D\u665E\u6660\u6662\u6663\u6665\u6667\u6669",4,"\u6671\u6672\u6673\u6675\u6678\u6679\u667B\u667C\u667D\u667F\u6680\u6681\u6683\u6685\u6686\u6688\u6689\u668A\u668B\u668D\u668E\u668F\u6690\u6692\u6693\u6694\u6695\u6698",4,"\u669E",8,"\u66A9",4,"\u66AF",4,"\u66B5\u66B6\u66B7\u66B8\u66BA\u66BB\u66BC\u66BD\u66BF",25,"\u66DA\u66DE",7,"\u66E7\u66E8\u66EA",5,"\u66F1\u66F5\u66F6\u66F8\u66FA\u66FB\u66FD\u6701\u6702\u6703"],["9640","\u6704\u6705\u6706\u6707\u670C\u670E\u670F\u6711\u6712\u6713\u6716\u6718\u6719\u671A\u671C\u671E\u6720",5,"\u6727\u6729\u672E\u6730\u6732\u6733\u6736\u6737\u6738\u6739\u673B\u673C\u673E\u673F\u6741\u6744\u6745\u6747\u674A\u674B\u674D\u6752\u6754\u6755\u6757",4,"\u675D\u6762\u6763\u6764\u6766\u6767\u676B\u676C\u676E\u6771\u6774\u6776"],["9680","\u6778\u6779\u677A\u677B\u677D\u6780\u6782\u6783\u6785\u6786\u6788\u678A\u678C\u678D\u678E\u678F\u6791\u6792\u6793\u6794\u6796\u6799\u679B\u679F\u67A0\u67A1\u67A4\u67A6\u67A9\u67AC\u67AE\u67B1\u67B2\u67B4\u67B9",7,"\u67C2\u67C5",9,"\u67D5\u67D6\u67D7\u67DB\u67DF\u67E1\u67E3\u67E4\u67E6\u67E7\u67E8\u67EA\u67EB\u67ED\u67EE\u67F2\u67F5",7,"\u67FE\u6801\u6802\u6803\u6804\u6806\u680D\u6810\u6812\u6814\u6815\u6818",4,"\u681E\u681F\u6820\u6822",6,"\u682B",6,"\u6834\u6835\u6836\u683A\u683B\u683F\u6847\u684B\u684D\u684F\u6852\u6856",5],["9740","\u685C\u685D\u685E\u685F\u686A\u686C",7,"\u6875\u6878",8,"\u6882\u6884\u6887",7,"\u6890\u6891\u6892\u6894\u6895\u6896\u6898",9,"\u68A3\u68A4\u68A5\u68A9\u68AA\u68AB\u68AC\u68AE\u68B1\u68B2\u68B4\u68B6\u68B7\u68B8"],["9780","\u68B9",6,"\u68C1\u68C3",5,"\u68CA\u68CC\u68CE\u68CF\u68D0\u68D1\u68D3\u68D4\u68D6\u68D7\u68D9\u68DB",4,"\u68E1\u68E2\u68E4",9,"\u68EF\u68F2\u68F3\u68F4\u68F6\u68F7\u68F8\u68FB\u68FD\u68FE\u68FF\u6900\u6902\u6903\u6904\u6906",4,"\u690C\u690F\u6911\u6913",11,"\u6921\u6922\u6923\u6925",7,"\u692E\u692F\u6931\u6932\u6933\u6935\u6936\u6937\u6938\u693A\u693B\u693C\u693E\u6940\u6941\u6943",16,"\u6955\u6956\u6958\u6959\u695B\u695C\u695F"],["9840","\u6961\u6962\u6964\u6965\u6967\u6968\u6969\u696A\u696C\u696D\u696F\u6970\u6972",4,"\u697A\u697B\u697D\u697E\u697F\u6981\u6983\u6985\u698A\u698B\u698C\u698E",5,"\u6996\u6997\u6999\u699A\u699D",9,"\u69A9\u69AA\u69AC\u69AE\u69AF\u69B0\u69B2\u69B3\u69B5\u69B6\u69B8\u69B9\u69BA\u69BC\u69BD"],["9880","\u69BE\u69BF\u69C0\u69C2",7,"\u69CB\u69CD\u69CF\u69D1\u69D2\u69D3\u69D5",5,"\u69DC\u69DD\u69DE\u69E1",11,"\u69EE\u69EF\u69F0\u69F1\u69F3",9,"\u69FE\u6A00",9,"\u6A0B",11,"\u6A19",5,"\u6A20\u6A22",5,"\u6A29\u6A2B\u6A2C\u6A2D\u6A2E\u6A30\u6A32\u6A33\u6A34\u6A36",6,"\u6A3F",4,"\u6A45\u6A46\u6A48",7,"\u6A51",6,"\u6A5A"],["9940","\u6A5C",4,"\u6A62\u6A63\u6A64\u6A66",10,"\u6A72",6,"\u6A7A\u6A7B\u6A7D\u6A7E\u6A7F\u6A81\u6A82\u6A83\u6A85",8,"\u6A8F\u6A92",4,"\u6A98",7,"\u6AA1",5],["9980","\u6AA7\u6AA8\u6AAA\u6AAD",114,"\u6B25\u6B26\u6B28",6],["9a40","\u6B2F\u6B30\u6B31\u6B33\u6B34\u6B35\u6B36\u6B38\u6B3B\u6B3C\u6B3D\u6B3F\u6B40\u6B41\u6B42\u6B44\u6B45\u6B48\u6B4A\u6B4B\u6B4D",11,"\u6B5A",7,"\u6B68\u6B69\u6B6B",13,"\u6B7A\u6B7D\u6B7E\u6B7F\u6B80\u6B85\u6B88"],["9a80","\u6B8C\u6B8E\u6B8F\u6B90\u6B91\u6B94\u6B95\u6B97\u6B98\u6B99\u6B9C",4,"\u6BA2",7,"\u6BAB",7,"\u6BB6\u6BB8",6,"\u6BC0\u6BC3\u6BC4\u6BC6",4,"\u6BCC\u6BCE\u6BD0\u6BD1\u6BD8\u6BDA\u6BDC",4,"\u6BE2",7,"\u6BEC\u6BED\u6BEE\u6BF0\u6BF1\u6BF2\u6BF4\u6BF6\u6BF7\u6BF8\u6BFA\u6BFB\u6BFC\u6BFE",6,"\u6C08",4,"\u6C0E\u6C12\u6C17\u6C1C\u6C1D\u6C1E\u6C20\u6C23\u6C25\u6C2B\u6C2C\u6C2D\u6C31\u6C33\u6C36\u6C37\u6C39\u6C3A\u6C3B\u6C3C\u6C3E\u6C3F\u6C43\u6C44\u6C45\u6C48\u6C4B",4,"\u6C51\u6C52\u6C53\u6C56\u6C58"],["9b40","\u6C59\u6C5A\u6C62\u6C63\u6C65\u6C66\u6C67\u6C6B",4,"\u6C71\u6C73\u6C75\u6C77\u6C78\u6C7A\u6C7B\u6C7C\u6C7F\u6C80\u6C84\u6C87\u6C8A\u6C8B\u6C8D\u6C8E\u6C91\u6C92\u6C95\u6C96\u6C97\u6C98\u6C9A\u6C9C\u6C9D\u6C9E\u6CA0\u6CA2\u6CA8\u6CAC\u6CAF\u6CB0\u6CB4\u6CB5\u6CB6\u6CB7\u6CBA\u6CC0\u6CC1\u6CC2\u6CC3\u6CC6\u6CC7\u6CC8\u6CCB\u6CCD\u6CCE\u6CCF\u6CD1\u6CD2\u6CD8"],["9b80","\u6CD9\u6CDA\u6CDC\u6CDD\u6CDF\u6CE4\u6CE6\u6CE7\u6CE9\u6CEC\u6CED\u6CF2\u6CF4\u6CF9\u6CFF\u6D00\u6D02\u6D03\u6D05\u6D06\u6D08\u6D09\u6D0A\u6D0D\u6D0F\u6D10\u6D11\u6D13\u6D14\u6D15\u6D16\u6D18\u6D1C\u6D1D\u6D1F",5,"\u6D26\u6D28\u6D29\u6D2C\u6D2D\u6D2F\u6D30\u6D34\u6D36\u6D37\u6D38\u6D3A\u6D3F\u6D40\u6D42\u6D44\u6D49\u6D4C\u6D50\u6D55\u6D56\u6D57\u6D58\u6D5B\u6D5D\u6D5F\u6D61\u6D62\u6D64\u6D65\u6D67\u6D68\u6D6B\u6D6C\u6D6D\u6D70\u6D71\u6D72\u6D73\u6D75\u6D76\u6D79\u6D7A\u6D7B\u6D7D",4,"\u6D83\u6D84\u6D86\u6D87\u6D8A\u6D8B\u6D8D\u6D8F\u6D90\u6D92\u6D96",4,"\u6D9C\u6DA2\u6DA5\u6DAC\u6DAD\u6DB0\u6DB1\u6DB3\u6DB4\u6DB6\u6DB7\u6DB9",5,"\u6DC1\u6DC2\u6DC3\u6DC8\u6DC9\u6DCA"],["9c40","\u6DCD\u6DCE\u6DCF\u6DD0\u6DD2\u6DD3\u6DD4\u6DD5\u6DD7\u6DDA\u6DDB\u6DDC\u6DDF\u6DE2\u6DE3\u6DE5\u6DE7\u6DE8\u6DE9\u6DEA\u6DED\u6DEF\u6DF0\u6DF2\u6DF4\u6DF5\u6DF6\u6DF8\u6DFA\u6DFD",7,"\u6E06\u6E07\u6E08\u6E09\u6E0B\u6E0F\u6E12\u6E13\u6E15\u6E18\u6E19\u6E1B\u6E1C\u6E1E\u6E1F\u6E22\u6E26\u6E27\u6E28\u6E2A\u6E2C\u6E2E\u6E30\u6E31\u6E33\u6E35"],["9c80","\u6E36\u6E37\u6E39\u6E3B",7,"\u6E45",7,"\u6E4F\u6E50\u6E51\u6E52\u6E55\u6E57\u6E59\u6E5A\u6E5C\u6E5D\u6E5E\u6E60",10,"\u6E6C\u6E6D\u6E6F",14,"\u6E80\u6E81\u6E82\u6E84\u6E87\u6E88\u6E8A",4,"\u6E91",6,"\u6E99\u6E9A\u6E9B\u6E9D\u6E9E\u6EA0\u6EA1\u6EA3\u6EA4\u6EA6\u6EA8\u6EA9\u6EAB\u6EAC\u6EAD\u6EAE\u6EB0\u6EB3\u6EB5\u6EB8\u6EB9\u6EBC\u6EBE\u6EBF\u6EC0\u6EC3\u6EC4\u6EC5\u6EC6\u6EC8\u6EC9\u6ECA\u6ECC\u6ECD\u6ECE\u6ED0\u6ED2\u6ED6\u6ED8\u6ED9\u6EDB\u6EDC\u6EDD\u6EE3\u6EE7\u6EEA",5],["9d40","\u6EF0\u6EF1\u6EF2\u6EF3\u6EF5\u6EF6\u6EF7\u6EF8\u6EFA",7,"\u6F03\u6F04\u6F05\u6F07\u6F08\u6F0A",4,"\u6F10\u6F11\u6F12\u6F16",9,"\u6F21\u6F22\u6F23\u6F25\u6F26\u6F27\u6F28\u6F2C\u6F2E\u6F30\u6F32\u6F34\u6F35\u6F37",6,"\u6F3F\u6F40\u6F41\u6F42"],["9d80","\u6F43\u6F44\u6F45\u6F48\u6F49\u6F4A\u6F4C\u6F4E",9,"\u6F59\u6F5A\u6F5B\u6F5D\u6F5F\u6F60\u6F61\u6F63\u6F64\u6F65\u6F67",5,"\u6F6F\u6F70\u6F71\u6F73\u6F75\u6F76\u6F77\u6F79\u6F7B\u6F7D",6,"\u6F85\u6F86\u6F87\u6F8A\u6F8B\u6F8F",12,"\u6F9D\u6F9E\u6F9F\u6FA0\u6FA2",4,"\u6FA8",10,"\u6FB4\u6FB5\u6FB7\u6FB8\u6FBA",5,"\u6FC1\u6FC3",5,"\u6FCA",6,"\u6FD3",10,"\u6FDF\u6FE2\u6FE3\u6FE4\u6FE5"],["9e40","\u6FE6",7,"\u6FF0",32,"\u7012",7,"\u701C",6,"\u7024",6],["9e80","\u702B",9,"\u7036\u7037\u7038\u703A",17,"\u704D\u704E\u7050",13,"\u705F",11,"\u706E\u7071\u7072\u7073\u7074\u7077\u7079\u707A\u707B\u707D\u7081\u7082\u7083\u7084\u7086\u7087\u7088\u708B\u708C\u708D\u708F\u7090\u7091\u7093\u7097\u7098\u709A\u709B\u709E",12,"\u70B0\u70B2\u70B4\u70B5\u70B6\u70BA\u70BE\u70BF\u70C4\u70C5\u70C6\u70C7\u70C9\u70CB",12,"\u70DA"],["9f40","\u70DC\u70DD\u70DE\u70E0\u70E1\u70E2\u70E3\u70E5\u70EA\u70EE\u70F0",6,"\u70F8\u70FA\u70FB\u70FC\u70FE",10,"\u710B",4,"\u7111\u7112\u7114\u7117\u711B",10,"\u7127",7,"\u7132\u7133\u7134"],["9f80","\u7135\u7137",13,"\u7146\u7147\u7148\u7149\u714B\u714D\u714F",12,"\u715D\u715F",4,"\u7165\u7169",4,"\u716F\u7170\u7171\u7174\u7175\u7176\u7177\u7179\u717B\u717C\u717E",5,"\u7185",4,"\u718B\u718C\u718D\u718E\u7190\u7191\u7192\u7193\u7195\u7196\u7197\u719A",4,"\u71A1",6,"\u71A9\u71AA\u71AB\u71AD",5,"\u71B4\u71B6\u71B7\u71B8\u71BA",8,"\u71C4",9,"\u71CF",4],["a040","\u71D6",9,"\u71E1\u71E2\u71E3\u71E4\u71E6\u71E8",5,"\u71EF",9,"\u71FA",11,"\u7207",19],["a080","\u721B\u721C\u721E",9,"\u7229\u722B\u722D\u722E\u722F\u7232\u7233\u7234\u723A\u723C\u723E\u7240",6,"\u7249\u724A\u724B\u724E\u724F\u7250\u7251\u7253\u7254\u7255\u7257\u7258\u725A\u725C\u725E\u7260\u7263\u7264\u7265\u7268\u726A\u726B\u726C\u726D\u7270\u7271\u7273\u7274\u7276\u7277\u7278\u727B\u727C\u727D\u7282\u7283\u7285",4,"\u728C\u728E\u7290\u7291\u7293",11,"\u72A0",11,"\u72AE\u72B1\u72B2\u72B3\u72B5\u72BA",6,"\u72C5\u72C6\u72C7\u72C9\u72CA\u72CB\u72CC\u72CF\u72D1\u72D3\u72D4\u72D5\u72D6\u72D8\u72DA\u72DB"],["a1a1","\u3000\u3001\u3002\xB7\u02C9\u02C7\xA8\u3003\u3005\u2014\uFF5E\u2016\u2026\u2018\u2019\u201C\u201D\u3014\u3015\u3008",7,"\u3016\u3017\u3010\u3011\xB1\xD7\xF7\u2236\u2227\u2228\u2211\u220F\u222A\u2229\u2208\u2237\u221A\u22A5\u2225\u2220\u2312\u2299\u222B\u222E\u2261\u224C\u2248\u223D\u221D\u2260\u226E\u226F\u2264\u2265\u221E\u2235\u2234\u2642\u2640\xB0\u2032\u2033\u2103\uFF04\xA4\uFFE0\uFFE1\u2030\xA7\u2116\u2606\u2605\u25CB\u25CF\u25CE\u25C7\u25C6\u25A1\u25A0\u25B3\u25B2\u203B\u2192\u2190\u2191\u2193\u3013"],["a2a1","\u2170",9],["a2b1","\u2488",19,"\u2474",19,"\u2460",9],["a2e5","\u3220",9],["a2f1","\u2160",11],["a3a1","\uFF01\uFF02\uFF03\uFFE5\uFF05",88,"\uFFE3"],["a4a1","\u3041",82],["a5a1","\u30A1",85],["a6a1","\u0391",16,"\u03A3",6],["a6c1","\u03B1",16,"\u03C3",6],["a6e0","\uFE35\uFE36\uFE39\uFE3A\uFE3F\uFE40\uFE3D\uFE3E\uFE41\uFE42\uFE43\uFE44"],["a6ee","\uFE3B\uFE3C\uFE37\uFE38\uFE31"],["a6f4","\uFE33\uFE34"],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a840","\u02CA\u02CB\u02D9\u2013\u2015\u2025\u2035\u2105\u2109\u2196\u2197\u2198\u2199\u2215\u221F\u2223\u2252\u2266\u2267\u22BF\u2550",35,"\u2581",6],["a880","\u2588",7,"\u2593\u2594\u2595\u25BC\u25BD\u25E2\u25E3\u25E4\u25E5\u2609\u2295\u3012\u301D\u301E"],["a8a1","\u0101\xE1\u01CE\xE0\u0113\xE9\u011B\xE8\u012B\xED\u01D0\xEC\u014D\xF3\u01D2\xF2\u016B\xFA\u01D4\xF9\u01D6\u01D8\u01DA\u01DC\xFC\xEA\u0251"],["a8bd","\u0144\u0148"],["a8c0","\u0261"],["a8c5","\u3105",36],["a940","\u3021",8,"\u32A3\u338E\u338F\u339C\u339D\u339E\u33A1\u33C4\u33CE\u33D1\u33D2\u33D5\uFE30\uFFE2\uFFE4"],["a959","\u2121\u3231"],["a95c","\u2010"],["a960","\u30FC\u309B\u309C\u30FD\u30FE\u3006\u309D\u309E\uFE49",9,"\uFE54\uFE55\uFE56\uFE57\uFE59",8],["a980","\uFE62",4,"\uFE68\uFE69\uFE6A\uFE6B"],["a996","\u3007"],["a9a4","\u2500",75],["aa40","\u72DC\u72DD\u72DF\u72E2",5,"\u72EA\u72EB\u72F5\u72F6\u72F9\u72FD\u72FE\u72FF\u7300\u7302\u7304",5,"\u730B\u730C\u730D\u730F\u7310\u7311\u7312\u7314\u7318\u7319\u731A\u731F\u7320\u7323\u7324\u7326\u7327\u7328\u732D\u732F\u7330\u7332\u7333\u7335\u7336\u733A\u733B\u733C\u733D\u7340",8],["aa80","\u7349\u734A\u734B\u734C\u734E\u734F\u7351\u7353\u7354\u7355\u7356\u7358",7,"\u7361",10,"\u736E\u7370\u7371"],["ab40","\u7372",11,"\u737F",4,"\u7385\u7386\u7388\u738A\u738C\u738D\u738F\u7390\u7392\u7393\u7394\u7395\u7397\u7398\u7399\u739A\u739C\u739D\u739E\u73A0\u73A1\u73A3",5,"\u73AA\u73AC\u73AD\u73B1\u73B4\u73B5\u73B6\u73B8\u73B9\u73BC\u73BD\u73BE\u73BF\u73C1\u73C3",4],["ab80","\u73CB\u73CC\u73CE\u73D2",6,"\u73DA\u73DB\u73DC\u73DD\u73DF\u73E1\u73E2\u73E3\u73E4\u73E6\u73E8\u73EA\u73EB\u73EC\u73EE\u73EF\u73F0\u73F1\u73F3",4],["ac40","\u73F8",10,"\u7404\u7407\u7408\u740B\u740C\u740D\u740E\u7411",8,"\u741C",5,"\u7423\u7424\u7427\u7429\u742B\u742D\u742F\u7431\u7432\u7437",4,"\u743D\u743E\u743F\u7440\u7442",11],["ac80","\u744E",6,"\u7456\u7458\u745D\u7460",12,"\u746E\u746F\u7471",4,"\u7478\u7479\u747A"],["ad40","\u747B\u747C\u747D\u747F\u7482\u7484\u7485\u7486\u7488\u7489\u748A\u748C\u748D\u748F\u7491",10,"\u749D\u749F",7,"\u74AA",15,"\u74BB",12],["ad80","\u74C8",9,"\u74D3",8,"\u74DD\u74DF\u74E1\u74E5\u74E7",6,"\u74F0\u74F1\u74F2"],["ae40","\u74F3\u74F5\u74F8",6,"\u7500\u7501\u7502\u7503\u7505",7,"\u750E\u7510\u7512\u7514\u7515\u7516\u7517\u751B\u751D\u751E\u7520",4,"\u7526\u7527\u752A\u752E\u7534\u7536\u7539\u753C\u753D\u753F\u7541\u7542\u7543\u7544\u7546\u7547\u7549\u754A\u754D\u7550\u7551\u7552\u7553\u7555\u7556\u7557\u7558"],["ae80","\u755D",7,"\u7567\u7568\u7569\u756B",6,"\u7573\u7575\u7576\u7577\u757A",4,"\u7580\u7581\u7582\u7584\u7585\u7587"],["af40","\u7588\u7589\u758A\u758C\u758D\u758E\u7590\u7593\u7595\u7598\u759B\u759C\u759E\u75A2\u75A6",4,"\u75AD\u75B6\u75B7\u75BA\u75BB\u75BF\u75C0\u75C1\u75C6\u75CB\u75CC\u75CE\u75CF\u75D0\u75D1\u75D3\u75D7\u75D9\u75DA\u75DC\u75DD\u75DF\u75E0\u75E1\u75E5\u75E9\u75EC\u75ED\u75EE\u75EF\u75F2\u75F3\u75F5\u75F6\u75F7\u75F8\u75FA\u75FB\u75FD\u75FE\u7602\u7604\u7606\u7607"],["af80","\u7608\u7609\u760B\u760D\u760E\u760F\u7611\u7612\u7613\u7614\u7616\u761A\u761C\u761D\u761E\u7621\u7623\u7627\u7628\u762C\u762E\u762F\u7631\u7632\u7636\u7637\u7639\u763A\u763B\u763D\u7641\u7642\u7644"],["b040","\u7645",6,"\u764E",5,"\u7655\u7657",4,"\u765D\u765F\u7660\u7661\u7662\u7664",6,"\u766C\u766D\u766E\u7670",7,"\u7679\u767A\u767C\u767F\u7680\u7681\u7683\u7685\u7689\u768A\u768C\u768D\u768F\u7690\u7692\u7694\u7695\u7697\u7698\u769A\u769B"],["b080","\u769C",7,"\u76A5",8,"\u76AF\u76B0\u76B3\u76B5",9,"\u76C0\u76C1\u76C3\u554A\u963F\u57C3\u6328\u54CE\u5509\u54C0\u7691\u764C\u853C\u77EE\u827E\u788D\u7231\u9698\u978D\u6C28\u5B89\u4FFA\u6309\u6697\u5CB8\u80FA\u6848\u80AE\u6602\u76CE\u51F9\u6556\u71AC\u7FF1\u8884\u50B2\u5965\u61CA\u6FB3\u82AD\u634C\u6252\u53ED\u5427\u7B06\u516B\u75A4\u5DF4\u62D4\u8DCB\u9776\u628A\u8019\u575D\u9738\u7F62\u7238\u767D\u67CF\u767E\u6446\u4F70\u8D25\u62DC\u7A17\u6591\u73ED\u642C\u6273\u822C\u9881\u677F\u7248\u626E\u62CC\u4F34\u74E3\u534A\u529E\u7ECA\u90A6\u5E2E\u6886\u699C\u8180\u7ED1\u68D2\u78C5\u868C\u9551\u508D\u8C24\u82DE\u80DE\u5305\u8912\u5265"],["b140","\u76C4\u76C7\u76C9\u76CB\u76CC\u76D3\u76D5\u76D9\u76DA\u76DC\u76DD\u76DE\u76E0",4,"\u76E6",7,"\u76F0\u76F3\u76F5\u76F6\u76F7\u76FA\u76FB\u76FD\u76FF\u7700\u7702\u7703\u7705\u7706\u770A\u770C\u770E",10,"\u771B\u771C\u771D\u771E\u7721\u7723\u7724\u7725\u7727\u772A\u772B"],["b180","\u772C\u772E\u7730",4,"\u7739\u773B\u773D\u773E\u773F\u7742\u7744\u7745\u7746\u7748",7,"\u7752",7,"\u775C\u8584\u96F9\u4FDD\u5821\u9971\u5B9D\u62B1\u62A5\u66B4\u8C79\u9C8D\u7206\u676F\u7891\u60B2\u5351\u5317\u8F88\u80CC\u8D1D\u94A1\u500D\u72C8\u5907\u60EB\u7119\u88AB\u5954\u82EF\u672C\u7B28\u5D29\u7EF7\u752D\u6CF5\u8E66\u8FF8\u903C\u9F3B\u6BD4\u9119\u7B14\u5F7C\u78A7\u84D6\u853D\u6BD5\u6BD9\u6BD6\u5E01\u5E87\u75F9\u95ED\u655D\u5F0A\u5FC5\u8F9F\u58C1\u81C2\u907F\u965B\u97AD\u8FB9\u7F16\u8D2C\u6241\u4FBF\u53D8\u535E\u8FA8\u8FA9\u8FAB\u904D\u6807\u5F6A\u8198\u8868\u9CD6\u618B\u522B\u762A\u5F6C\u658C\u6FD2\u6EE8\u5BBE\u6448\u5175\u51B0\u67C4\u4E19\u79C9\u997C\u70B3"],["b240","\u775D\u775E\u775F\u7760\u7764\u7767\u7769\u776A\u776D",11,"\u777A\u777B\u777C\u7781\u7782\u7783\u7786",5,"\u778F\u7790\u7793",11,"\u77A1\u77A3\u77A4\u77A6\u77A8\u77AB\u77AD\u77AE\u77AF\u77B1\u77B2\u77B4\u77B6",4],["b280","\u77BC\u77BE\u77C0",12,"\u77CE",8,"\u77D8\u77D9\u77DA\u77DD",4,"\u77E4\u75C5\u5E76\u73BB\u83E0\u64AD\u62E8\u94B5\u6CE2\u535A\u52C3\u640F\u94C2\u7B94\u4F2F\u5E1B\u8236\u8116\u818A\u6E24\u6CCA\u9A73\u6355\u535C\u54FA\u8865\u57E0\u4E0D\u5E03\u6B65\u7C3F\u90E8\u6016\u64E6\u731C\u88C1\u6750\u624D\u8D22\u776C\u8E29\u91C7\u5F69\u83DC\u8521\u9910\u53C2\u8695\u6B8B\u60ED\u60E8\u707F\u82CD\u8231\u4ED3\u6CA7\u85CF\u64CD\u7CD9\u69FD\u66F9\u8349\u5395\u7B56\u4FA7\u518C\u6D4B\u5C42\u8E6D\u63D2\u53C9\u832C\u8336\u67E5\u78B4\u643D\u5BDF\u5C94\u5DEE\u8BE7\u62C6\u67F4\u8C7A\u6400\u63BA\u8749\u998B\u8C17\u7F20\u94F2\u4EA7\u9610\u98A4\u660C\u7316"],["b340","\u77E6\u77E8\u77EA\u77EF\u77F0\u77F1\u77F2\u77F4\u77F5\u77F7\u77F9\u77FA\u77FB\u77FC\u7803",5,"\u780A\u780B\u780E\u780F\u7810\u7813\u7815\u7819\u781B\u781E\u7820\u7821\u7822\u7824\u7828\u782A\u782B\u782E\u782F\u7831\u7832\u7833\u7835\u7836\u783D\u783F\u7841\u7842\u7843\u7844\u7846\u7848\u7849\u784A\u784B\u784D\u784F\u7851\u7853\u7854\u7858\u7859\u785A"],["b380","\u785B\u785C\u785E",11,"\u786F",7,"\u7878\u7879\u787A\u787B\u787D",6,"\u573A\u5C1D\u5E38\u957F\u507F\u80A0\u5382\u655E\u7545\u5531\u5021\u8D85\u6284\u949E\u671D\u5632\u6F6E\u5DE2\u5435\u7092\u8F66\u626F\u64A4\u63A3\u5F7B\u6F88\u90F4\u81E3\u8FB0\u5C18\u6668\u5FF1\u6C89\u9648\u8D81\u886C\u6491\u79F0\u57CE\u6A59\u6210\u5448\u4E58\u7A0B\u60E9\u6F84\u8BDA\u627F\u901E\u9A8B\u79E4\u5403\u75F4\u6301\u5319\u6C60\u8FDF\u5F1B\u9A70\u803B\u9F7F\u4F88\u5C3A\u8D64\u7FC5\u65A5\u70BD\u5145\u51B2\u866B\u5D07\u5BA0\u62BD\u916C\u7574\u8E0C\u7A20\u6101\u7B79\u4EC7\u7EF8\u7785\u4E11\u81ED\u521D\u51FA\u6A71\u53A8\u8E87\u9504\u96CF\u6EC1\u9664\u695A"],["b440","\u7884\u7885\u7886\u7888\u788A\u788B\u788F\u7890\u7892\u7894\u7895\u7896\u7899\u789D\u789E\u78A0\u78A2\u78A4\u78A6\u78A8",7,"\u78B5\u78B6\u78B7\u78B8\u78BA\u78BB\u78BC\u78BD\u78BF\u78C0\u78C2\u78C3\u78C4\u78C6\u78C7\u78C8\u78CC\u78CD\u78CE\u78CF\u78D1\u78D2\u78D3\u78D6\u78D7\u78D8\u78DA",9],["b480","\u78E4\u78E5\u78E6\u78E7\u78E9\u78EA\u78EB\u78ED",4,"\u78F3\u78F5\u78F6\u78F8\u78F9\u78FB",5,"\u7902\u7903\u7904\u7906",6,"\u7840\u50A8\u77D7\u6410\u89E6\u5904\u63E3\u5DDD\u7A7F\u693D\u4F20\u8239\u5598\u4E32\u75AE\u7A97\u5E62\u5E8A\u95EF\u521B\u5439\u708A\u6376\u9524\u5782\u6625\u693F\u9187\u5507\u6DF3\u7EAF\u8822\u6233\u7EF0\u75B5\u8328\u78C1\u96CC\u8F9E\u6148\u74F7\u8BCD\u6B64\u523A\u8D50\u6B21\u806A\u8471\u56F1\u5306\u4ECE\u4E1B\u51D1\u7C97\u918B\u7C07\u4FC3\u8E7F\u7BE1\u7A9C\u6467\u5D14\u50AC\u8106\u7601\u7CB9\u6DEC\u7FE0\u6751\u5B58\u5BF8\u78CB\u64AE\u6413\u63AA\u632B\u9519\u642D\u8FBE\u7B54\u7629\u6253\u5927\u5446\u6B79\u50A3\u6234\u5E26\u6B86\u4EE3\u8D37\u888B\u5F85\u902E"],["b540","\u790D",5,"\u7914",9,"\u791F",4,"\u7925",14,"\u7935",4,"\u793D\u793F\u7942\u7943\u7944\u7945\u7947\u794A",8,"\u7954\u7955\u7958\u7959\u7961\u7963"],["b580","\u7964\u7966\u7969\u796A\u796B\u796C\u796E\u7970",6,"\u7979\u797B",4,"\u7982\u7983\u7986\u7987\u7988\u7989\u798B\u798C\u798D\u798E\u7990\u7991\u7992\u6020\u803D\u62C5\u4E39\u5355\u90F8\u63B8\u80C6\u65E6\u6C2E\u4F46\u60EE\u6DE1\u8BDE\u5F39\u86CB\u5F53\u6321\u515A\u8361\u6863\u5200\u6363\u8E48\u5012\u5C9B\u7977\u5BFC\u5230\u7A3B\u60BC\u9053\u76D7\u5FB7\u5F97\u7684\u8E6C\u706F\u767B\u7B49\u77AA\u51F3\u9093\u5824\u4F4E\u6EF4\u8FEA\u654C\u7B1B\u72C4\u6DA4\u7FDF\u5AE1\u62B5\u5E95\u5730\u8482\u7B2C\u5E1D\u5F1F\u9012\u7F14\u98A0\u6382\u6EC7\u7898\u70B9\u5178\u975B\u57AB\u7535\u4F43\u7538\u5E97\u60E6\u5960\u6DC0\u6BBF\u7889\u53FC\u96D5\u51CB\u5201\u6389\u540A\u9493\u8C03\u8DCC\u7239\u789F\u8776\u8FED\u8C0D\u53E0"],["b640","\u7993",6,"\u799B",11,"\u79A8",10,"\u79B4",4,"\u79BC\u79BF\u79C2\u79C4\u79C5\u79C7\u79C8\u79CA\u79CC\u79CE\u79CF\u79D0\u79D3\u79D4\u79D6\u79D7\u79D9",5,"\u79E0\u79E1\u79E2\u79E5\u79E8\u79EA"],["b680","\u79EC\u79EE\u79F1",6,"\u79F9\u79FA\u79FC\u79FE\u79FF\u7A01\u7A04\u7A05\u7A07\u7A08\u7A09\u7A0A\u7A0C\u7A0F",4,"\u7A15\u7A16\u7A18\u7A19\u7A1B\u7A1C\u4E01\u76EF\u53EE\u9489\u9876\u9F0E\u952D\u5B9A\u8BA2\u4E22\u4E1C\u51AC\u8463\u61C2\u52A8\u680B\u4F97\u606B\u51BB\u6D1E\u515C\u6296\u6597\u9661\u8C46\u9017\u75D8\u90FD\u7763\u6BD2\u728A\u72EC\u8BFB\u5835\u7779\u8D4C\u675C\u9540\u809A\u5EA6\u6E21\u5992\u7AEF\u77ED\u953B\u6BB5\u65AD\u7F0E\u5806\u5151\u961F\u5BF9\u58A9\u5428\u8E72\u6566\u987F\u56E4\u949D\u76FE\u9041\u6387\u54C6\u591A\u593A\u579B\u8EB2\u6735\u8DFA\u8235\u5241\u60F0\u5815\u86FE\u5CE8\u9E45\u4FC4\u989D\u8BB9\u5A25\u6076\u5384\u627C\u904F\u9102\u997F\u6069\u800C\u513F\u8033\u5C14\u9975\u6D31\u4E8C"],["b740","\u7A1D\u7A1F\u7A21\u7A22\u7A24",14,"\u7A34\u7A35\u7A36\u7A38\u7A3A\u7A3E\u7A40",5,"\u7A47",9,"\u7A52",4,"\u7A58",16],["b780","\u7A69",6,"\u7A71\u7A72\u7A73\u7A75\u7A7B\u7A7C\u7A7D\u7A7E\u7A82\u7A85\u7A87\u7A89\u7A8A\u7A8B\u7A8C\u7A8E\u7A8F\u7A90\u7A93\u7A94\u7A99\u7A9A\u7A9B\u7A9E\u7AA1\u7AA2\u8D30\u53D1\u7F5A\u7B4F\u4F10\u4E4F\u9600\u6CD5\u73D0\u85E9\u5E06\u756A\u7FFB\u6A0A\u77FE\u9492\u7E41\u51E1\u70E6\u53CD\u8FD4\u8303\u8D29\u72AF\u996D\u6CDB\u574A\u82B3\u65B9\u80AA\u623F\u9632\u59A8\u4EFF\u8BBF\u7EBA\u653E\u83F2\u975E\u5561\u98DE\u80A5\u532A\u8BFD\u5420\u80BA\u5E9F\u6CB8\u8D39\u82AC\u915A\u5429\u6C1B\u5206\u7EB7\u575F\u711A\u6C7E\u7C89\u594B\u4EFD\u5FFF\u6124\u7CAA\u4E30\u5C01\u67AB\u8702\u5CF0\u950B\u98CE\u75AF\u70FD\u9022\u51AF\u7F1D\u8BBD\u5949\u51E4\u4F5B\u5426\u592B\u6577\u80A4\u5B75\u6276\u62C2\u8F90\u5E45\u6C1F\u7B26\u4F0F\u4FD8\u670D"],["b840","\u7AA3\u7AA4\u7AA7\u7AA9\u7AAA\u7AAB\u7AAE",4,"\u7AB4",10,"\u7AC0",10,"\u7ACC",9,"\u7AD7\u7AD8\u7ADA\u7ADB\u7ADC\u7ADD\u7AE1\u7AE2\u7AE4\u7AE7",5,"\u7AEE\u7AF0\u7AF1\u7AF2\u7AF3"],["b880","\u7AF4",4,"\u7AFB\u7AFC\u7AFE\u7B00\u7B01\u7B02\u7B05\u7B07\u7B09\u7B0C\u7B0D\u7B0E\u7B10\u7B12\u7B13\u7B16\u7B17\u7B18\u7B1A\u7B1C\u7B1D\u7B1F\u7B21\u7B22\u7B23\u7B27\u7B29\u7B2D\u6D6E\u6DAA\u798F\u88B1\u5F17\u752B\u629A\u8F85\u4FEF\u91DC\u65A7\u812F\u8151\u5E9C\u8150\u8D74\u526F\u8986\u8D4B\u590D\u5085\u4ED8\u961C\u7236\u8179\u8D1F\u5BCC\u8BA3\u9644\u5987\u7F1A\u5490\u5676\u560E\u8BE5\u6539\u6982\u9499\u76D6\u6E89\u5E72\u7518\u6746\u67D1\u7AFF\u809D\u8D76\u611F\u79C6\u6562\u8D63\u5188\u521A\u94A2\u7F38\u809B\u7EB2\u5C97\u6E2F\u6760\u7BD9\u768B\u9AD8\u818F\u7F94\u7CD5\u641E\u9550\u7A3F\u544A\u54E5\u6B4C\u6401\u6208\u9E3D\u80F3\u7599\u5272\u9769\u845B\u683C\u86E4\u9601\u9694\u94EC\u4E2A\u5404\u7ED9\u6839\u8DDF\u8015\u66F4\u5E9A\u7FB9"],["b940","\u7B2F\u7B30\u7B32\u7B34\u7B35\u7B36\u7B37\u7B39\u7B3B\u7B3D\u7B3F",5,"\u7B46\u7B48\u7B4A\u7B4D\u7B4E\u7B53\u7B55\u7B57\u7B59\u7B5C\u7B5E\u7B5F\u7B61\u7B63",10,"\u7B6F\u7B70\u7B73\u7B74\u7B76\u7B78\u7B7A\u7B7C\u7B7D\u7B7F\u7B81\u7B82\u7B83\u7B84\u7B86",6,"\u7B8E\u7B8F"],["b980","\u7B91\u7B92\u7B93\u7B96\u7B98\u7B99\u7B9A\u7B9B\u7B9E\u7B9F\u7BA0\u7BA3\u7BA4\u7BA5\u7BAE\u7BAF\u7BB0\u7BB2\u7BB3\u7BB5\u7BB6\u7BB7\u7BB9",7,"\u7BC2\u7BC3\u7BC4\u57C2\u803F\u6897\u5DE5\u653B\u529F\u606D\u9F9A\u4F9B\u8EAC\u516C\u5BAB\u5F13\u5DE9\u6C5E\u62F1\u8D21\u5171\u94A9\u52FE\u6C9F\u82DF\u72D7\u57A2\u6784\u8D2D\u591F\u8F9C\u83C7\u5495\u7B8D\u4F30\u6CBD\u5B64\u59D1\u9F13\u53E4\u86CA\u9AA8\u8C37\u80A1\u6545\u987E\u56FA\u96C7\u522E\u74DC\u5250\u5BE1\u6302\u8902\u4E56\u62D0\u602A\u68FA\u5173\u5B98\u51A0\u89C2\u7BA1\u9986\u7F50\u60EF\u704C\u8D2F\u5149\u5E7F\u901B\u7470\u89C4\u572D\u7845\u5F52\u9F9F\u95FA\u8F68\u9B3C\u8BE1\u7678\u6842\u67DC\u8DEA\u8D35\u523D\u8F8A\u6EDA\u68CD\u9505\u90ED\u56FD\u679C\u88F9\u8FC7\u54C8"],["ba40","\u7BC5\u7BC8\u7BC9\u7BCA\u7BCB\u7BCD\u7BCE\u7BCF\u7BD0\u7BD2\u7BD4",4,"\u7BDB\u7BDC\u7BDE\u7BDF\u7BE0\u7BE2\u7BE3\u7BE4\u7BE7\u7BE8\u7BE9\u7BEB\u7BEC\u7BED\u7BEF\u7BF0\u7BF2",4,"\u7BF8\u7BF9\u7BFA\u7BFB\u7BFD\u7BFF",7,"\u7C08\u7C09\u7C0A\u7C0D\u7C0E\u7C10",5,"\u7C17\u7C18\u7C19"],["ba80","\u7C1A",4,"\u7C20",5,"\u7C28\u7C29\u7C2B",12,"\u7C39",5,"\u7C42\u9AB8\u5B69\u6D77\u6C26\u4EA5\u5BB3\u9A87\u9163\u61A8\u90AF\u97E9\u542B\u6DB5\u5BD2\u51FD\u558A\u7F55\u7FF0\u64BC\u634D\u65F1\u61BE\u608D\u710A\u6C57\u6C49\u592F\u676D\u822A\u58D5\u568E\u8C6A\u6BEB\u90DD\u597D\u8017\u53F7\u6D69\u5475\u559D\u8377\u83CF\u6838\u79BE\u548C\u4F55\u5408\u76D2\u8C89\u9602\u6CB3\u6DB8\u8D6B\u8910\u9E64\u8D3A\u563F\u9ED1\u75D5\u5F88\u72E0\u6068\u54FC\u4EA8\u6A2A\u8861\u6052\u8F70\u54C4\u70D8\u8679\u9E3F\u6D2A\u5B8F\u5F18\u7EA2\u5589\u4FAF\u7334\u543C\u539A\u5019\u540E\u547C\u4E4E\u5FFD\u745A\u58F6\u846B\u80E1\u8774\u72D0\u7CCA\u6E56"],["bb40","\u7C43",9,"\u7C4E",36,"\u7C75",5,"\u7C7E",9],["bb80","\u7C88\u7C8A",6,"\u7C93\u7C94\u7C96\u7C99\u7C9A\u7C9B\u7CA0\u7CA1\u7CA3\u7CA6\u7CA7\u7CA8\u7CA9\u7CAB\u7CAC\u7CAD\u7CAF\u7CB0\u7CB4",4,"\u7CBA\u7CBB\u5F27\u864E\u552C\u62A4\u4E92\u6CAA\u6237\u82B1\u54D7\u534E\u733E\u6ED1\u753B\u5212\u5316\u8BDD\u69D0\u5F8A\u6000\u6DEE\u574F\u6B22\u73AF\u6853\u8FD8\u7F13\u6362\u60A3\u5524\u75EA\u8C62\u7115\u6DA3\u5BA6\u5E7B\u8352\u614C\u9EC4\u78FA\u8757\u7C27\u7687\u51F0\u60F6\u714C\u6643\u5E4C\u604D\u8C0E\u7070\u6325\u8F89\u5FBD\u6062\u86D4\u56DE\u6BC1\u6094\u6167\u5349\u60E0\u6666\u8D3F\u79FD\u4F1A\u70E9\u6C47\u8BB3\u8BF2\u7ED8\u8364\u660F\u5A5A\u9B42\u6D51\u6DF7\u8C41\u6D3B\u4F19\u706B\u83B7\u6216\u60D1\u970D\u8D27\u7978\u51FB\u573E\u57FA\u673A\u7578\u7A3D\u79EF\u7B95"],["bc40","\u7CBF\u7CC0\u7CC2\u7CC3\u7CC4\u7CC6\u7CC9\u7CCB\u7CCE",6,"\u7CD8\u7CDA\u7CDB\u7CDD\u7CDE\u7CE1",6,"\u7CE9",5,"\u7CF0",7,"\u7CF9\u7CFA\u7CFC",13,"\u7D0B",5],["bc80","\u7D11",14,"\u7D21\u7D23\u7D24\u7D25\u7D26\u7D28\u7D29\u7D2A\u7D2C\u7D2D\u7D2E\u7D30",6,"\u808C\u9965\u8FF9\u6FC0\u8BA5\u9E21\u59EC\u7EE9\u7F09\u5409\u6781\u68D8\u8F91\u7C4D\u96C6\u53CA\u6025\u75BE\u6C72\u5373\u5AC9\u7EA7\u6324\u51E0\u810A\u5DF1\u84DF\u6280\u5180\u5B63\u4F0E\u796D\u5242\u60B8\u6D4E\u5BC4\u5BC2\u8BA1\u8BB0\u65E2\u5FCC\u9645\u5993\u7EE7\u7EAA\u5609\u67B7\u5939\u4F73\u5BB6\u52A0\u835A\u988A\u8D3E\u7532\u94BE\u5047\u7A3C\u4EF7\u67B6\u9A7E\u5AC1\u6B7C\u76D1\u575A\u5C16\u7B3A\u95F4\u714E\u517C\u80A9\u8270\u5978\u7F04\u8327\u68C0\u67EC\u78B1\u7877\u62E3\u6361\u7B80\u4FED\u526A\u51CF\u8350\u69DB\u9274\u8DF5\u8D31\u89C1\u952E\u7BAD\u4EF6"],["bd40","\u7D37",54,"\u7D6F",7],["bd80","\u7D78",32,"\u5065\u8230\u5251\u996F\u6E10\u6E85\u6DA7\u5EFA\u50F5\u59DC\u5C06\u6D46\u6C5F\u7586\u848B\u6868\u5956\u8BB2\u5320\u9171\u964D\u8549\u6912\u7901\u7126\u80F6\u4EA4\u90CA\u6D47\u9A84\u5A07\u56BC\u6405\u94F0\u77EB\u4FA5\u811A\u72E1\u89D2\u997A\u7F34\u7EDE\u527F\u6559\u9175\u8F7F\u8F83\u53EB\u7A96\u63ED\u63A5\u7686\u79F8\u8857\u9636\u622A\u52AB\u8282\u6854\u6770\u6377\u776B\u7AED\u6D01\u7ED3\u89E3\u59D0\u6212\u85C9\u82A5\u754C\u501F\u4ECB\u75A5\u8BEB\u5C4A\u5DFE\u7B4B\u65A4\u91D1\u4ECA\u6D25\u895F\u7D27\u9526\u4EC5\u8C28\u8FDB\u9773\u664B\u7981\u8FD1\u70EC\u6D78"],["be40","\u7D99",12,"\u7DA7",6,"\u7DAF",42],["be80","\u7DDA",32,"\u5C3D\u52B2\u8346\u5162\u830E\u775B\u6676\u9CB8\u4EAC\u60CA\u7CBE\u7CB3\u7ECF\u4E95\u8B66\u666F\u9888\u9759\u5883\u656C\u955C\u5F84\u75C9\u9756\u7ADF\u7ADE\u51C0\u70AF\u7A98\u63EA\u7A76\u7EA0\u7396\u97ED\u4E45\u7078\u4E5D\u9152\u53A9\u6551\u65E7\u81FC\u8205\u548E\u5C31\u759A\u97A0\u62D8\u72D9\u75BD\u5C45\u9A79\u83CA\u5C40\u5480\u77E9\u4E3E\u6CAE\u805A\u62D2\u636E\u5DE8\u5177\u8DDD\u8E1E\u952F\u4FF1\u53E5\u60E7\u70AC\u5267\u6350\u9E43\u5A1F\u5026\u7737\u5377\u7EE2\u6485\u652B\u6289\u6398\u5014\u7235\u89C9\u51B3\u8BC0\u7EDD\u5747\u83CC\u94A7\u519B\u541B\u5CFB"],["bf40","\u7DFB",62],["bf80","\u7E3A\u7E3C",4,"\u7E42",4,"\u7E48",21,"\u4FCA\u7AE3\u6D5A\u90E1\u9A8F\u5580\u5496\u5361\u54AF\u5F00\u63E9\u6977\u51EF\u6168\u520A\u582A\u52D8\u574E\u780D\u770B\u5EB7\u6177\u7CE0\u625B\u6297\u4EA2\u7095\u8003\u62F7\u70E4\u9760\u5777\u82DB\u67EF\u68F5\u78D5\u9897\u79D1\u58F3\u54B3\u53EF\u6E34\u514B\u523B\u5BA2\u8BFE\u80AF\u5543\u57A6\u6073\u5751\u542D\u7A7A\u6050\u5B54\u63A7\u62A0\u53E3\u6263\u5BC7\u67AF\u54ED\u7A9F\u82E6\u9177\u5E93\u88E4\u5938\u57AE\u630E\u8DE8\u80EF\u5757\u7B77\u4FA9\u5FEB\u5BBD\u6B3E\u5321\u7B50\u72C2\u6846\u77FF\u7736\u65F7\u51B5\u4E8F\u76D4\u5CBF\u7AA5\u8475\u594E\u9B41\u5080"],["c040","\u7E5E",35,"\u7E83",23,"\u7E9C\u7E9D\u7E9E"],["c080","\u7EAE\u7EB4\u7EBB\u7EBC\u7ED6\u7EE4\u7EEC\u7EF9\u7F0A\u7F10\u7F1E\u7F37\u7F39\u7F3B",6,"\u7F43\u7F46",9,"\u7F52\u7F53\u9988\u6127\u6E83\u5764\u6606\u6346\u56F0\u62EC\u6269\u5ED3\u9614\u5783\u62C9\u5587\u8721\u814A\u8FA3\u5566\u83B1\u6765\u8D56\u84DD\u5A6A\u680F\u62E6\u7BEE\u9611\u5170\u6F9C\u8C30\u63FD\u89C8\u61D2\u7F06\u70C2\u6EE5\u7405\u6994\u72FC\u5ECA\u90CE\u6717\u6D6A\u635E\u52B3\u7262\u8001\u4F6C\u59E5\u916A\u70D9\u6D9D\u52D2\u4E50\u96F7\u956D\u857E\u78CA\u7D2F\u5121\u5792\u64C2\u808B\u7C7B\u6CEA\u68F1\u695E\u51B7\u5398\u68A8\u7281\u9ECE\u7BF1\u72F8\u79BB\u6F13\u7406\u674E\u91CC\u9CA4\u793C\u8389\u8354\u540F\u6817\u4E3D\u5389\u52B1\u783E\u5386\u5229\u5088\u4F8B\u4FD0"],["c140","\u7F56\u7F59\u7F5B\u7F5C\u7F5D\u7F5E\u7F60\u7F63",4,"\u7F6B\u7F6C\u7F6D\u7F6F\u7F70\u7F73\u7F75\u7F76\u7F77\u7F78\u7F7A\u7F7B\u7F7C\u7F7D\u7F7F\u7F80\u7F82",7,"\u7F8B\u7F8D\u7F8F",4,"\u7F95",4,"\u7F9B\u7F9C\u7FA0\u7FA2\u7FA3\u7FA5\u7FA6\u7FA8",6,"\u7FB1"],["c180","\u7FB3",4,"\u7FBA\u7FBB\u7FBE\u7FC0\u7FC2\u7FC3\u7FC4\u7FC6\u7FC7\u7FC8\u7FC9\u7FCB\u7FCD\u7FCF",4,"\u7FD6\u7FD7\u7FD9",5,"\u7FE2\u7FE3\u75E2\u7ACB\u7C92\u6CA5\u96B6\u529B\u7483\u54E9\u4FE9\u8054\u83B2\u8FDE\u9570\u5EC9\u601C\u6D9F\u5E18\u655B\u8138\u94FE\u604B\u70BC\u7EC3\u7CAE\u51C9\u6881\u7CB1\u826F\u4E24\u8F86\u91CF\u667E\u4EAE\u8C05\u64A9\u804A\u50DA\u7597\u71CE\u5BE5\u8FBD\u6F66\u4E86\u6482\u9563\u5ED6\u6599\u5217\u88C2\u70C8\u52A3\u730E\u7433\u6797\u78F7\u9716\u4E34\u90BB\u9CDE\u6DCB\u51DB\u8D41\u541D\u62CE\u73B2\u83F1\u96F6\u9F84\u94C3\u4F36\u7F9A\u51CC\u7075\u9675\u5CAD\u9886\u53E6\u4EE4\u6E9C\u7409\u69B4\u786B\u998F\u7559\u5218\u7624\u6D41\u67F3\u516D\u9F99\u804B\u5499\u7B3C\u7ABF"],["c240","\u7FE4\u7FE7\u7FE8\u7FEA\u7FEB\u7FEC\u7FED\u7FEF\u7FF2\u7FF4",6,"\u7FFD\u7FFE\u7FFF\u8002\u8007\u8008\u8009\u800A\u800E\u800F\u8011\u8013\u801A\u801B\u801D\u801E\u801F\u8021\u8023\u8024\u802B",5,"\u8032\u8034\u8039\u803A\u803C\u803E\u8040\u8041\u8044\u8045\u8047\u8048\u8049\u804E\u804F\u8050\u8051\u8053\u8055\u8056\u8057"],["c280","\u8059\u805B",13,"\u806B",5,"\u8072",11,"\u9686\u5784\u62E2\u9647\u697C\u5A04\u6402\u7BD3\u6F0F\u964B\u82A6\u5362\u9885\u5E90\u7089\u63B3\u5364\u864F\u9C81\u9E93\u788C\u9732\u8DEF\u8D42\u9E7F\u6F5E\u7984\u5F55\u9646\u622E\u9A74\u5415\u94DD\u4FA3\u65C5\u5C65\u5C61\u7F15\u8651\u6C2F\u5F8B\u7387\u6EE4\u7EFF\u5CE6\u631B\u5B6A\u6EE6\u5375\u4E71\u63A0\u7565\u62A1\u8F6E\u4F26\u4ED1\u6CA6\u7EB6\u8BBA\u841D\u87BA\u7F57\u903B\u9523\u7BA9\u9AA1\u88F8\u843D\u6D1B\u9A86\u7EDC\u5988\u9EBB\u739B\u7801\u8682\u9A6C\u9A82\u561B\u5417\u57CB\u4E70\u9EA6\u5356\u8FC8\u8109\u7792\u9992\u86EE\u6EE1\u8513\u66FC\u6162\u6F2B"],["c340","\u807E\u8081\u8082\u8085\u8088\u808A\u808D",5,"\u8094\u8095\u8097\u8099\u809E\u80A3\u80A6\u80A7\u80A8\u80AC\u80B0\u80B3\u80B5\u80B6\u80B8\u80B9\u80BB\u80C5\u80C7",4,"\u80CF",6,"\u80D8\u80DF\u80E0\u80E2\u80E3\u80E6\u80EE\u80F5\u80F7\u80F9\u80FB\u80FE\u80FF\u8100\u8101\u8103\u8104\u8105\u8107\u8108\u810B"],["c380","\u810C\u8115\u8117\u8119\u811B\u811C\u811D\u811F",12,"\u812D\u812E\u8130\u8133\u8134\u8135\u8137\u8139",4,"\u813F\u8C29\u8292\u832B\u76F2\u6C13\u5FD9\u83BD\u732B\u8305\u951A\u6BDB\u77DB\u94C6\u536F\u8302\u5192\u5E3D\u8C8C\u8D38\u4E48\u73AB\u679A\u6885\u9176\u9709\u7164\u6CA1\u7709\u5A92\u9541\u6BCF\u7F8E\u6627\u5BD0\u59B9\u5A9A\u95E8\u95F7\u4EEC\u840C\u8499\u6AAC\u76DF\u9530\u731B\u68A6\u5B5F\u772F\u919A\u9761\u7CDC\u8FF7\u8C1C\u5F25\u7C73\u79D8\u89C5\u6CCC\u871C\u5BC6\u5E42\u68C9\u7720\u7EF5\u5195\u514D\u52C9\u5A29\u7F05\u9762\u82D7\u63CF\u7784\u85D0\u79D2\u6E3A\u5E99\u5999\u8511\u706D\u6C11\u62BF\u76BF\u654F\u60AF\u95FD\u660E\u879F\u9E23\u94ED\u540D\u547D\u8C2C\u6478"],["c440","\u8140",5,"\u8147\u8149\u814D\u814E\u814F\u8152\u8156\u8157\u8158\u815B",4,"\u8161\u8162\u8163\u8164\u8166\u8168\u816A\u816B\u816C\u816F\u8172\u8173\u8175\u8176\u8177\u8178\u8181\u8183",4,"\u8189\u818B\u818C\u818D\u818E\u8190\u8192",5,"\u8199\u819A\u819E",4,"\u81A4\u81A5"],["c480","\u81A7\u81A9\u81AB",7,"\u81B4",5,"\u81BC\u81BD\u81BE\u81BF\u81C4\u81C5\u81C7\u81C8\u81C9\u81CB\u81CD",6,"\u6479\u8611\u6A21\u819C\u78E8\u6469\u9B54\u62B9\u672B\u83AB\u58A8\u9ED8\u6CAB\u6F20\u5BDE\u964C\u8C0B\u725F\u67D0\u62C7\u7261\u4EA9\u59C6\u6BCD\u5893\u66AE\u5E55\u52DF\u6155\u6728\u76EE\u7766\u7267\u7A46\u62FF\u54EA\u5450\u94A0\u90A3\u5A1C\u7EB3\u6C16\u4E43\u5976\u8010\u5948\u5357\u7537\u96BE\u56CA\u6320\u8111\u607C\u95F9\u6DD6\u5462\u9981\u5185\u5AE9\u80FD\u59AE\u9713\u502A\u6CE5\u5C3C\u62DF\u4F60\u533F\u817B\u9006\u6EBA\u852B\u62C8\u5E74\u78BE\u64B5\u637B\u5FF5\u5A18\u917F\u9E1F\u5C3F\u634F\u8042\u5B7D\u556E\u954A\u954D\u6D85\u60A8\u67E0\u72DE\u51DD\u5B81"],["c540","\u81D4",14,"\u81E4\u81E5\u81E6\u81E8\u81E9\u81EB\u81EE",4,"\u81F5",5,"\u81FD\u81FF\u8203\u8207",4,"\u820E\u820F\u8211\u8213\u8215",5,"\u821D\u8220\u8224\u8225\u8226\u8227\u8229\u822E\u8232\u823A\u823C\u823D\u823F"],["c580","\u8240\u8241\u8242\u8243\u8245\u8246\u8248\u824A\u824C\u824D\u824E\u8250",7,"\u8259\u825B\u825C\u825D\u825E\u8260",7,"\u8269\u62E7\u6CDE\u725B\u626D\u94AE\u7EBD\u8113\u6D53\u519C\u5F04\u5974\u52AA\u6012\u5973\u6696\u8650\u759F\u632A\u61E6\u7CEF\u8BFA\u54E6\u6B27\u9E25\u6BB4\u85D5\u5455\u5076\u6CA4\u556A\u8DB4\u722C\u5E15\u6015\u7436\u62CD\u6392\u724C\u5F98\u6E43\u6D3E\u6500\u6F58\u76D8\u78D0\u76FC\u7554\u5224\u53DB\u4E53\u5E9E\u65C1\u802A\u80D6\u629B\u5486\u5228\u70AE\u888D\u8DD1\u6CE1\u5478\u80DA\u57F9\u88F4\u8D54\u966A\u914D\u4F69\u6C9B\u55B7\u76C6\u7830\u62A8\u70F9\u6F8E\u5F6D\u84EC\u68DA\u787C\u7BF7\u81A8\u670B\u9E4F\u6367\u78B0\u576F\u7812\u9739\u6279\u62AB\u5288\u7435\u6BD7"],["c640","\u826A\u826B\u826C\u826D\u8271\u8275\u8276\u8277\u8278\u827B\u827C\u8280\u8281\u8283\u8285\u8286\u8287\u8289\u828C\u8290\u8293\u8294\u8295\u8296\u829A\u829B\u829E\u82A0\u82A2\u82A3\u82A7\u82B2\u82B5\u82B6\u82BA\u82BB\u82BC\u82BF\u82C0\u82C2\u82C3\u82C5\u82C6\u82C9\u82D0\u82D6\u82D9\u82DA\u82DD\u82E2\u82E7\u82E8\u82E9\u82EA\u82EC\u82ED\u82EE\u82F0\u82F2\u82F3\u82F5\u82F6\u82F8"],["c680","\u82FA\u82FC",4,"\u830A\u830B\u830D\u8310\u8312\u8313\u8316\u8318\u8319\u831D",9,"\u8329\u832A\u832E\u8330\u8332\u8337\u833B\u833D\u5564\u813E\u75B2\u76AE\u5339\u75DE\u50FB\u5C41\u8B6C\u7BC7\u504F\u7247\u9A97\u98D8\u6F02\u74E2\u7968\u6487\u77A5\u62FC\u9891\u8D2B\u54C1\u8058\u4E52\u576A\u82F9\u840D\u5E73\u51ED\u74F6\u8BC4\u5C4F\u5761\u6CFC\u9887\u5A46\u7834\u9B44\u8FEB\u7C95\u5256\u6251\u94FA\u4EC6\u8386\u8461\u83E9\u84B2\u57D4\u6734\u5703\u666E\u6D66\u8C31\u66DD\u7011\u671F\u6B3A\u6816\u621A\u59BB\u4E03\u51C4\u6F06\u67D2\u6C8F\u5176\u68CB\u5947\u6B67\u7566\u5D0E\u8110\u9F50\u65D7\u7948\u7941\u9A91\u8D77\u5C82\u4E5E\u4F01\u542F\u5951\u780C\u5668\u6C14\u8FC4\u5F03\u6C7D\u6CE3\u8BAB\u6390"],["c740","\u833E\u833F\u8341\u8342\u8344\u8345\u8348\u834A",4,"\u8353\u8355",4,"\u835D\u8362\u8370",6,"\u8379\u837A\u837E",6,"\u8387\u8388\u838A\u838B\u838C\u838D\u838F\u8390\u8391\u8394\u8395\u8396\u8397\u8399\u839A\u839D\u839F\u83A1",6,"\u83AC\u83AD\u83AE"],["c780","\u83AF\u83B5\u83BB\u83BE\u83BF\u83C2\u83C3\u83C4\u83C6\u83C8\u83C9\u83CB\u83CD\u83CE\u83D0\u83D1\u83D2\u83D3\u83D5\u83D7\u83D9\u83DA\u83DB\u83DE\u83E2\u83E3\u83E4\u83E6\u83E7\u83E8\u83EB\u83EC\u83ED\u6070\u6D3D\u7275\u6266\u948E\u94C5\u5343\u8FC1\u7B7E\u4EDF\u8C26\u4E7E\u9ED4\u94B1\u94B3\u524D\u6F5C\u9063\u6D45\u8C34\u5811\u5D4C\u6B20\u6B49\u67AA\u545B\u8154\u7F8C\u5899\u8537\u5F3A\u62A2\u6A47\u9539\u6572\u6084\u6865\u77A7\u4E54\u4FA8\u5DE7\u9798\u64AC\u7FD8\u5CED\u4FCF\u7A8D\u5207\u8304\u4E14\u602F\u7A83\u94A6\u4FB5\u4EB2\u79E6\u7434\u52E4\u82B9\u64D2\u79BD\u5BDD\u6C81\u9752\u8F7B\u6C22\u503E\u537F\u6E05\u64CE\u6674\u6C30\u60C5\u9877\u8BF7\u5E86\u743C\u7A77\u79CB\u4E18\u90B1\u7403\u6C42\u56DA\u914B\u6CC5\u8D8B\u533A\u86C6\u66F2\u8EAF\u5C48\u9A71\u6E20"],["c840","\u83EE\u83EF\u83F3",4,"\u83FA\u83FB\u83FC\u83FE\u83FF\u8400\u8402\u8405\u8407\u8408\u8409\u840A\u8410\u8412",5,"\u8419\u841A\u841B\u841E",5,"\u8429",7,"\u8432",5,"\u8439\u843A\u843B\u843E",7,"\u8447\u8448\u8449"],["c880","\u844A",6,"\u8452",4,"\u8458\u845D\u845E\u845F\u8460\u8462\u8464",4,"\u846A\u846E\u846F\u8470\u8472\u8474\u8477\u8479\u847B\u847C\u53D6\u5A36\u9F8B\u8DA3\u53BB\u5708\u98A7\u6743\u919B\u6CC9\u5168\u75CA\u62F3\u72AC\u5238\u529D\u7F3A\u7094\u7638\u5374\u9E4A\u69B7\u786E\u96C0\u88D9\u7FA4\u7136\u71C3\u5189\u67D3\u74E4\u58E4\u6518\u56B7\u8BA9\u9976\u6270\u7ED5\u60F9\u70ED\u58EC\u4EC1\u4EBA\u5FCD\u97E7\u4EFB\u8BA4\u5203\u598A\u7EAB\u6254\u4ECD\u65E5\u620E\u8338\u84C9\u8363\u878D\u7194\u6EB6\u5BB9\u7ED2\u5197\u63C9\u67D4\u8089\u8339\u8815\u5112\u5B7A\u5982\u8FB1\u4E73\u6C5D\u5165\u8925\u8F6F\u962E\u854A\u745E\u9510\u95F0\u6DA6\u82E5\u5F31\u6492\u6D12\u8428\u816E\u9CC3\u585E\u8D5B\u4E09\u53C1"],["c940","\u847D",4,"\u8483\u8484\u8485\u8486\u848A\u848D\u848F",7,"\u8498\u849A\u849B\u849D\u849E\u849F\u84A0\u84A2",12,"\u84B0\u84B1\u84B3\u84B5\u84B6\u84B7\u84BB\u84BC\u84BE\u84C0\u84C2\u84C3\u84C5\u84C6\u84C7\u84C8\u84CB\u84CC\u84CE\u84CF\u84D2\u84D4\u84D5\u84D7"],["c980","\u84D8",4,"\u84DE\u84E1\u84E2\u84E4\u84E7",4,"\u84ED\u84EE\u84EF\u84F1",10,"\u84FD\u84FE\u8500\u8501\u8502\u4F1E\u6563\u6851\u55D3\u4E27\u6414\u9A9A\u626B\u5AC2\u745F\u8272\u6DA9\u68EE\u50E7\u838E\u7802\u6740\u5239\u6C99\u7EB1\u50BB\u5565\u715E\u7B5B\u6652\u73CA\u82EB\u6749\u5C71\u5220\u717D\u886B\u95EA\u9655\u64C5\u8D61\u81B3\u5584\u6C55\u6247\u7F2E\u5892\u4F24\u5546\u8D4F\u664C\u4E0A\u5C1A\u88F3\u68A2\u634E\u7A0D\u70E7\u828D\u52FA\u97F6\u5C11\u54E8\u90B5\u7ECD\u5962\u8D4A\u86C7\u820C\u820D\u8D66\u6444\u5C04\u6151\u6D89\u793E\u8BBE\u7837\u7533\u547B\u4F38\u8EAB\u6DF1\u5A20\u7EC5\u795E\u6C88\u5BA1\u5A76\u751A\u80BE\u614E\u6E17\u58F0\u751F\u7525\u7272\u5347\u7EF3"],["ca40","\u8503",8,"\u850D\u850E\u850F\u8510\u8512\u8514\u8515\u8516\u8518\u8519\u851B\u851C\u851D\u851E\u8520\u8522",8,"\u852D",9,"\u853E",4,"\u8544\u8545\u8546\u8547\u854B",10],["ca80","\u8557\u8558\u855A\u855B\u855C\u855D\u855F",4,"\u8565\u8566\u8567\u8569",8,"\u8573\u8575\u8576\u8577\u8578\u857C\u857D\u857F\u8580\u8581\u7701\u76DB\u5269\u80DC\u5723\u5E08\u5931\u72EE\u65BD\u6E7F\u8BD7\u5C38\u8671\u5341\u77F3\u62FE\u65F6\u4EC0\u98DF\u8680\u5B9E\u8BC6\u53F2\u77E2\u4F7F\u5C4E\u9A76\u59CB\u5F0F\u793A\u58EB\u4E16\u67FF\u4E8B\u62ED\u8A93\u901D\u52BF\u662F\u55DC\u566C\u9002\u4ED5\u4F8D\u91CA\u9970\u6C0F\u5E02\u6043\u5BA4\u89C6\u8BD5\u6536\u624B\u9996\u5B88\u5BFF\u6388\u552E\u53D7\u7626\u517D\u852C\u67A2\u68B3\u6B8A\u6292\u8F93\u53D4\u8212\u6DD1\u758F\u4E66\u8D4E\u5B70\u719F\u85AF\u6691\u66D9\u7F72\u8700\u9ECD\u9F20\u5C5E\u672F\u8FF0\u6811\u675F\u620D\u7AD6\u5885\u5EB6\u6570\u6F31"],["cb40","\u8582\u8583\u8586\u8588",6,"\u8590",10,"\u859D",6,"\u85A5\u85A6\u85A7\u85A9\u85AB\u85AC\u85AD\u85B1",5,"\u85B8\u85BA",6,"\u85C2",6,"\u85CA",4,"\u85D1\u85D2"],["cb80","\u85D4\u85D6",5,"\u85DD",6,"\u85E5\u85E6\u85E7\u85E8\u85EA",14,"\u6055\u5237\u800D\u6454\u8870\u7529\u5E05\u6813\u62F4\u971C\u53CC\u723D\u8C01\u6C34\u7761\u7A0E\u542E\u77AC\u987A\u821C\u8BF4\u7855\u6714\u70C1\u65AF\u6495\u5636\u601D\u79C1\u53F8\u4E1D\u6B7B\u8086\u5BFA\u55E3\u56DB\u4F3A\u4F3C\u9972\u5DF3\u677E\u8038\u6002\u9882\u9001\u5B8B\u8BBC\u8BF5\u641C\u8258\u64DE\u55FD\u82CF\u9165\u4FD7\u7D20\u901F\u7C9F\u50F3\u5851\u6EAF\u5BBF\u8BC9\u8083\u9178\u849C\u7B97\u867D\u968B\u968F\u7EE5\u9AD3\u788E\u5C81\u7A57\u9042\u96A7\u795F\u5B59\u635F\u7B0B\u84D1\u68AD\u5506\u7F29\u7410\u7D22\u9501\u6240\u584C\u4ED6\u5B83\u5979\u5854"],["cc40","\u85F9\u85FA\u85FC\u85FD\u85FE\u8600",4,"\u8606",10,"\u8612\u8613\u8614\u8615\u8617",15,"\u8628\u862A",13,"\u8639\u863A\u863B\u863D\u863E\u863F\u8640"],["cc80","\u8641",11,"\u8652\u8653\u8655",4,"\u865B\u865C\u865D\u865F\u8660\u8661\u8663",7,"\u736D\u631E\u8E4B\u8E0F\u80CE\u82D4\u62AC\u53F0\u6CF0\u915E\u592A\u6001\u6C70\u574D\u644A\u8D2A\u762B\u6EE9\u575B\u6A80\u75F0\u6F6D\u8C2D\u8C08\u5766\u6BEF\u8892\u78B3\u63A2\u53F9\u70AD\u6C64\u5858\u642A\u5802\u68E0\u819B\u5510\u7CD6\u5018\u8EBA\u6DCC\u8D9F\u70EB\u638F\u6D9B\u6ED4\u7EE6\u8404\u6843\u9003\u6DD8\u9676\u8BA8\u5957\u7279\u85E4\u817E\u75BC\u8A8A\u68AF\u5254\u8E22\u9511\u63D0\u9898\u8E44\u557C\u4F53\u66FF\u568F\u60D5\u6D95\u5243\u5C49\u5929\u6DFB\u586B\u7530\u751C\u606C\u8214\u8146\u6311\u6761\u8FE2\u773A\u8DF3\u8D34\u94C1\u5E16\u5385\u542C\u70C3"],["cd40","\u866D\u866F\u8670\u8672",6,"\u8683",6,"\u868E",4,"\u8694\u8696",5,"\u869E",4,"\u86A5\u86A6\u86AB\u86AD\u86AE\u86B2\u86B3\u86B7\u86B8\u86B9\u86BB",4,"\u86C1\u86C2\u86C3\u86C5\u86C8\u86CC\u86CD\u86D2\u86D3\u86D5\u86D6\u86D7\u86DA\u86DC"],["cd80","\u86DD\u86E0\u86E1\u86E2\u86E3\u86E5\u86E6\u86E7\u86E8\u86EA\u86EB\u86EC\u86EF\u86F5\u86F6\u86F7\u86FA\u86FB\u86FC\u86FD\u86FF\u8701\u8704\u8705\u8706\u870B\u870C\u870E\u870F\u8710\u8711\u8714\u8716\u6C40\u5EF7\u505C\u4EAD\u5EAD\u633A\u8247\u901A\u6850\u916E\u77B3\u540C\u94DC\u5F64\u7AE5\u6876\u6345\u7B52\u7EDF\u75DB\u5077\u6295\u5934\u900F\u51F8\u79C3\u7A81\u56FE\u5F92\u9014\u6D82\u5C60\u571F\u5410\u5154\u6E4D\u56E2\u63A8\u9893\u817F\u8715\u892A\u9000\u541E\u5C6F\u81C0\u62D6\u6258\u8131\u9E35\u9640\u9A6E\u9A7C\u692D\u59A5\u62D3\u553E\u6316\u54C7\u86D9\u6D3C\u5A03\u74E6\u889C\u6B6A\u5916\u8C4C\u5F2F\u6E7E\u73A9\u987D\u4E38\u70F7\u5B8C\u7897\u633D\u665A\u7696\u60CB\u5B9B\u5A49\u4E07\u8155\u6C6A\u738B\u4EA1\u6789\u7F51\u5F80\u65FA\u671B\u5FD8\u5984\u5A01"],["ce40","\u8719\u871B\u871D\u871F\u8720\u8724\u8726\u8727\u8728\u872A\u872B\u872C\u872D\u872F\u8730\u8732\u8733\u8735\u8736\u8738\u8739\u873A\u873C\u873D\u8740",6,"\u874A\u874B\u874D\u874F\u8750\u8751\u8752\u8754\u8755\u8756\u8758\u875A",5,"\u8761\u8762\u8766",7,"\u876F\u8771\u8772\u8773\u8775"],["ce80","\u8777\u8778\u8779\u877A\u877F\u8780\u8781\u8784\u8786\u8787\u8789\u878A\u878C\u878E",4,"\u8794\u8795\u8796\u8798",6,"\u87A0",4,"\u5DCD\u5FAE\u5371\u97E6\u8FDD\u6845\u56F4\u552F\u60DF\u4E3A\u6F4D\u7EF4\u82C7\u840E\u59D4\u4F1F\u4F2A\u5C3E\u7EAC\u672A\u851A\u5473\u754F\u80C3\u5582\u9B4F\u4F4D\u6E2D\u8C13\u5C09\u6170\u536B\u761F\u6E29\u868A\u6587\u95FB\u7EB9\u543B\u7A33\u7D0A\u95EE\u55E1\u7FC1\u74EE\u631D\u8717\u6DA1\u7A9D\u6211\u65A1\u5367\u63E1\u6C83\u5DEB\u545C\u94A8\u4E4C\u6C61\u8BEC\u5C4B\u65E0\u829C\u68A7\u543E\u5434\u6BCB\u6B66\u4E94\u6342\u5348\u821E\u4F0D\u4FAE\u575E\u620A\u96FE\u6664\u7269\u52FF\u52A1\u609F\u8BEF\u6614\u7199\u6790\u897F\u7852\u77FD\u6670\u563B\u5438\u9521\u727A"],["cf40","\u87A5\u87A6\u87A7\u87A9\u87AA\u87AE\u87B0\u87B1\u87B2\u87B4\u87B6\u87B7\u87B8\u87B9\u87BB\u87BC\u87BE\u87BF\u87C1",4,"\u87C7\u87C8\u87C9\u87CC",4,"\u87D4",6,"\u87DC\u87DD\u87DE\u87DF\u87E1\u87E2\u87E3\u87E4\u87E6\u87E7\u87E8\u87E9\u87EB\u87EC\u87ED\u87EF",9],["cf80","\u87FA\u87FB\u87FC\u87FD\u87FF\u8800\u8801\u8802\u8804",5,"\u880B",7,"\u8814\u8817\u8818\u8819\u881A\u881C",4,"\u8823\u7A00\u606F\u5E0C\u6089\u819D\u5915\u60DC\u7184\u70EF\u6EAA\u6C50\u7280\u6A84\u88AD\u5E2D\u4E60\u5AB3\u559C\u94E3\u6D17\u7CFB\u9699\u620F\u7EC6\u778E\u867E\u5323\u971E\u8F96\u6687\u5CE1\u4FA0\u72ED\u4E0B\u53A6\u590F\u5413\u6380\u9528\u5148\u4ED9\u9C9C\u7EA4\u54B8\u8D24\u8854\u8237\u95F2\u6D8E\u5F26\u5ACC\u663E\u9669\u73B0\u732E\u53BF\u817A\u9985\u7FA1\u5BAA\u9677\u9650\u7EBF\u76F8\u53A2\u9576\u9999\u7BB1\u8944\u6E58\u4E61\u7FD4\u7965\u8BE6\u60F3\u54CD\u4EAB\u9879\u5DF7\u6A61\u50CF\u5411\u8C61\u8427\u785D\u9704\u524A\u54EE\u56A3\u9500\u6D88\u5BB5\u6DC6\u6653"],["d040","\u8824",13,"\u8833",5,"\u883A\u883B\u883D\u883E\u883F\u8841\u8842\u8843\u8846",5,"\u884E",5,"\u8855\u8856\u8858\u885A",6,"\u8866\u8867\u886A\u886D\u886F\u8871\u8873\u8874\u8875\u8876\u8878\u8879\u887A"],["d080","\u887B\u887C\u8880\u8883\u8886\u8887\u8889\u888A\u888C\u888E\u888F\u8890\u8891\u8893\u8894\u8895\u8897",4,"\u889D",4,"\u88A3\u88A5",5,"\u5C0F\u5B5D\u6821\u8096\u5578\u7B11\u6548\u6954\u4E9B\u6B47\u874E\u978B\u534F\u631F\u643A\u90AA\u659C\u80C1\u8C10\u5199\u68B0\u5378\u87F9\u61C8\u6CC4\u6CFB\u8C22\u5C51\u85AA\u82AF\u950C\u6B23\u8F9B\u65B0\u5FFB\u5FC3\u4FE1\u8845\u661F\u8165\u7329\u60FA\u5174\u5211\u578B\u5F62\u90A2\u884C\u9192\u5E78\u674F\u6027\u59D3\u5144\u51F6\u80F8\u5308\u6C79\u96C4\u718A\u4F11\u4FEE\u7F9E\u673D\u55C5\u9508\u79C0\u8896\u7EE3\u589F\u620C\u9700\u865A\u5618\u987B\u5F90\u8BB8\u84C4\u9157\u53D9\u65ED\u5E8F\u755C\u6064\u7D6E\u5A7F\u7EEA\u7EED\u8F69\u55A7\u5BA3\u60AC\u65CB\u7384"],["d140","\u88AC\u88AE\u88AF\u88B0\u88B2",4,"\u88B8\u88B9\u88BA\u88BB\u88BD\u88BE\u88BF\u88C0\u88C3\u88C4\u88C7\u88C8\u88CA\u88CB\u88CC\u88CD\u88CF\u88D0\u88D1\u88D3\u88D6\u88D7\u88DA",4,"\u88E0\u88E1\u88E6\u88E7\u88E9",6,"\u88F2\u88F5\u88F6\u88F7\u88FA\u88FB\u88FD\u88FF\u8900\u8901\u8903",5],["d180","\u8909\u890B",4,"\u8911\u8914",4,"\u891C",4,"\u8922\u8923\u8924\u8926\u8927\u8928\u8929\u892C\u892D\u892E\u892F\u8931\u8932\u8933\u8935\u8937\u9009\u7663\u7729\u7EDA\u9774\u859B\u5B66\u7A74\u96EA\u8840\u52CB\u718F\u5FAA\u65EC\u8BE2\u5BFB\u9A6F\u5DE1\u6B89\u6C5B\u8BAD\u8BAF\u900A\u8FC5\u538B\u62BC\u9E26\u9E2D\u5440\u4E2B\u82BD\u7259\u869C\u5D16\u8859\u6DAF\u96C5\u54D1\u4E9A\u8BB6\u7109\u54BD\u9609\u70DF\u6DF9\u76D0\u4E25\u7814\u8712\u5CA9\u5EF6\u8A00\u989C\u960E\u708E\u6CBF\u5944\u63A9\u773C\u884D\u6F14\u8273\u5830\u71D5\u538C\u781A\u96C1\u5501\u5F66\u7130\u5BB4\u8C1A\u9A8C\u6B83\u592E\u9E2F\u79E7\u6768\u626C\u4F6F\u75A1\u7F8A\u6D0B\u9633\u6C27\u4EF0\u75D2\u517B\u6837\u6F3E\u9080\u8170\u5996\u7476"],["d240","\u8938",8,"\u8942\u8943\u8945",24,"\u8960",5,"\u8967",19,"\u897C"],["d280","\u897D\u897E\u8980\u8982\u8984\u8985\u8987",26,"\u6447\u5C27\u9065\u7A91\u8C23\u59DA\u54AC\u8200\u836F\u8981\u8000\u6930\u564E\u8036\u7237\u91CE\u51B6\u4E5F\u9875\u6396\u4E1A\u53F6\u66F3\u814B\u591C\u6DB2\u4E00\u58F9\u533B\u63D6\u94F1\u4F9D\u4F0A\u8863\u9890\u5937\u9057\u79FB\u4EEA\u80F0\u7591\u6C82\u5B9C\u59E8\u5F5D\u6905\u8681\u501A\u5DF2\u4E59\u77E3\u4EE5\u827A\u6291\u6613\u9091\u5C79\u4EBF\u5F79\u81C6\u9038\u8084\u75AB\u4EA6\u88D4\u610F\u6BC5\u5FC6\u4E49\u76CA\u6EA2\u8BE3\u8BAE\u8C0A\u8BD1\u5F02\u7FFC\u7FCC\u7ECE\u8335\u836B\u56E0\u6BB7\u97F3\u9634\u59FB\u541F\u94F6\u6DEB\u5BC5\u996E\u5C39\u5F15\u9690"],["d340","\u89A2",30,"\u89C3\u89CD\u89D3\u89D4\u89D5\u89D7\u89D8\u89D9\u89DB\u89DD\u89DF\u89E0\u89E1\u89E2\u89E4\u89E7\u89E8\u89E9\u89EA\u89EC\u89ED\u89EE\u89F0\u89F1\u89F2\u89F4",6],["d380","\u89FB",4,"\u8A01",5,"\u8A08",21,"\u5370\u82F1\u6A31\u5A74\u9E70\u5E94\u7F28\u83B9\u8424\u8425\u8367\u8747\u8FCE\u8D62\u76C8\u5F71\u9896\u786C\u6620\u54DF\u62E5\u4F63\u81C3\u75C8\u5EB8\u96CD\u8E0A\u86F9\u548F\u6CF3\u6D8C\u6C38\u607F\u52C7\u7528\u5E7D\u4F18\u60A0\u5FE7\u5C24\u7531\u90AE\u94C0\u72B9\u6CB9\u6E38\u9149\u6709\u53CB\u53F3\u4F51\u91C9\u8BF1\u53C8\u5E7C\u8FC2\u6DE4\u4E8E\u76C2\u6986\u865E\u611A\u8206\u4F59\u4FDE\u903E\u9C7C\u6109\u6E1D\u6E14\u9685\u4E88\u5A31\u96E8\u4E0E\u5C7F\u79B9\u5B87\u8BED\u7FBD\u7389\u57DF\u828B\u90C1\u5401\u9047\u55BB\u5CEA\u5FA1\u6108\u6B32\u72F1\u80B2\u8A89"],["d440","\u8A1E",31,"\u8A3F",8,"\u8A49",21],["d480","\u8A5F",25,"\u8A7A",6,"\u6D74\u5BD3\u88D5\u9884\u8C6B\u9A6D\u9E33\u6E0A\u51A4\u5143\u57A3\u8881\u539F\u63F4\u8F95\u56ED\u5458\u5706\u733F\u6E90\u7F18\u8FDC\u82D1\u613F\u6028\u9662\u66F0\u7EA6\u8D8A\u8DC3\u94A5\u5CB3\u7CA4\u6708\u60A6\u9605\u8018\u4E91\u90E7\u5300\u9668\u5141\u8FD0\u8574\u915D\u6655\u97F5\u5B55\u531D\u7838\u6742\u683D\u54C9\u707E\u5BB0\u8F7D\u518D\u5728\u54B1\u6512\u6682\u8D5E\u8D43\u810F\u846C\u906D\u7CDF\u51FF\u85FB\u67A3\u65E9\u6FA1\u86A4\u8E81\u566A\u9020\u7682\u7076\u71E5\u8D23\u62E9\u5219\u6CFD\u8D3C\u600E\u589E\u618E\u66FE\u8D60\u624E\u55B3\u6E23\u672D\u8F67"],["d540","\u8A81",7,"\u8A8B",7,"\u8A94",46],["d580","\u8AC3",32,"\u94E1\u95F8\u7728\u6805\u69A8\u548B\u4E4D\u70B8\u8BC8\u6458\u658B\u5B85\u7A84\u503A\u5BE8\u77BB\u6BE1\u8A79\u7C98\u6CBE\u76CF\u65A9\u8F97\u5D2D\u5C55\u8638\u6808\u5360\u6218\u7AD9\u6E5B\u7EFD\u6A1F\u7AE0\u5F70\u6F33\u5F20\u638C\u6DA8\u6756\u4E08\u5E10\u8D26\u4ED7\u80C0\u7634\u969C\u62DB\u662D\u627E\u6CBC\u8D75\u7167\u7F69\u5146\u8087\u53EC\u906E\u6298\u54F2\u86F0\u8F99\u8005\u9517\u8517\u8FD9\u6D59\u73CD\u659F\u771F\u7504\u7827\u81FB\u8D1E\u9488\u4FA6\u6795\u75B9\u8BCA\u9707\u632F\u9547\u9635\u84B8\u6323\u7741\u5F81\u72F0\u4E89\u6014\u6574\u62EF\u6B63\u653F"],["d640","\u8AE4",34,"\u8B08",27],["d680","\u8B24\u8B25\u8B27",30,"\u5E27\u75C7\u90D1\u8BC1\u829D\u679D\u652F\u5431\u8718\u77E5\u80A2\u8102\u6C41\u4E4B\u7EC7\u804C\u76F4\u690D\u6B96\u6267\u503C\u4F84\u5740\u6307\u6B62\u8DBE\u53EA\u65E8\u7EB8\u5FD7\u631A\u63B7\u81F3\u81F4\u7F6E\u5E1C\u5CD9\u5236\u667A\u79E9\u7A1A\u8D28\u7099\u75D4\u6EDE\u6CBB\u7A92\u4E2D\u76C5\u5FE0\u949F\u8877\u7EC8\u79CD\u80BF\u91CD\u4EF2\u4F17\u821F\u5468\u5DDE\u6D32\u8BCC\u7CA5\u8F74\u8098\u5E1A\u5492\u76B1\u5B99\u663C\u9AA4\u73E0\u682A\u86DB\u6731\u732A\u8BF8\u8BDB\u9010\u7AF9\u70DB\u716E\u62C4\u77A9\u5631\u4E3B\u8457\u67F1\u52A9\u86C0\u8D2E\u94F8\u7B51"],["d740","\u8B46",31,"\u8B67",4,"\u8B6D",25],["d780","\u8B87",24,"\u8BAC\u8BB1\u8BBB\u8BC7\u8BD0\u8BEA\u8C09\u8C1E\u4F4F\u6CE8\u795D\u9A7B\u6293\u722A\u62FD\u4E13\u7816\u8F6C\u64B0\u8D5A\u7BC6\u6869\u5E84\u88C5\u5986\u649E\u58EE\u72B6\u690E\u9525\u8FFD\u8D58\u5760\u7F00\u8C06\u51C6\u6349\u62D9\u5353\u684C\u7422\u8301\u914C\u5544\u7740\u707C\u6D4A\u5179\u54A8\u8D44\u59FF\u6ECB\u6DC4\u5B5C\u7D2B\u4ED4\u7C7D\u6ED3\u5B50\u81EA\u6E0D\u5B57\u9B03\u68D5\u8E2A\u5B97\u7EFC\u603B\u7EB5\u90B9\u8D70\u594F\u63CD\u79DF\u8DB3\u5352\u65CF\u7956\u8BC5\u963B\u7EC4\u94BB\u7E82\u5634\u9189\u6700\u7F6A\u5C0A\u9075\u6628\u5DE6\u4F50\u67DE\u505A\u4F5C\u5750\u5EA7"],["d840","\u8C38",8,"\u8C42\u8C43\u8C44\u8C45\u8C48\u8C4A\u8C4B\u8C4D",7,"\u8C56\u8C57\u8C58\u8C59\u8C5B",5,"\u8C63",6,"\u8C6C",6,"\u8C74\u8C75\u8C76\u8C77\u8C7B",6,"\u8C83\u8C84\u8C86\u8C87"],["d880","\u8C88\u8C8B\u8C8D",6,"\u8C95\u8C96\u8C97\u8C99",20,"\u4E8D\u4E0C\u5140\u4E10\u5EFF\u5345\u4E15\u4E98\u4E1E\u9B32\u5B6C\u5669\u4E28\u79BA\u4E3F\u5315\u4E47\u592D\u723B\u536E\u6C10\u56DF\u80E4\u9997\u6BD3\u777E\u9F17\u4E36\u4E9F\u9F10\u4E5C\u4E69\u4E93\u8288\u5B5B\u556C\u560F\u4EC4\u538D\u539D\u53A3\u53A5\u53AE\u9765\u8D5D\u531A\u53F5\u5326\u532E\u533E\u8D5C\u5366\u5363\u5202\u5208\u520E\u522D\u5233\u523F\u5240\u524C\u525E\u5261\u525C\u84AF\u527D\u5282\u5281\u5290\u5293\u5182\u7F54\u4EBB\u4EC3\u4EC9\u4EC2\u4EE8\u4EE1\u4EEB\u4EDE\u4F1B\u4EF3\u4F22\u4F64\u4EF5\u4F25\u4F27\u4F09\u4F2B\u4F5E\u4F67\u6538\u4F5A\u4F5D"],["d940","\u8CAE",62],["d980","\u8CED",32,"\u4F5F\u4F57\u4F32\u4F3D\u4F76\u4F74\u4F91\u4F89\u4F83\u4F8F\u4F7E\u4F7B\u4FAA\u4F7C\u4FAC\u4F94\u4FE6\u4FE8\u4FEA\u4FC5\u4FDA\u4FE3\u4FDC\u4FD1\u4FDF\u4FF8\u5029\u504C\u4FF3\u502C\u500F\u502E\u502D\u4FFE\u501C\u500C\u5025\u5028\u507E\u5043\u5055\u5048\u504E\u506C\u507B\u50A5\u50A7\u50A9\u50BA\u50D6\u5106\u50ED\u50EC\u50E6\u50EE\u5107\u510B\u4EDD\u6C3D\u4F58\u4F65\u4FCE\u9FA0\u6C46\u7C74\u516E\u5DFD\u9EC9\u9998\u5181\u5914\u52F9\u530D\u8A07\u5310\u51EB\u5919\u5155\u4EA0\u5156\u4EB3\u886E\u88A4\u4EB5\u8114\u88D2\u7980\u5B34\u8803\u7FB8\u51AB\u51B1\u51BD\u51BC"],["da40","\u8D0E",14,"\u8D20\u8D51\u8D52\u8D57\u8D5F\u8D65\u8D68\u8D69\u8D6A\u8D6C\u8D6E\u8D6F\u8D71\u8D72\u8D78",8,"\u8D82\u8D83\u8D86\u8D87\u8D88\u8D89\u8D8C",4,"\u8D92\u8D93\u8D95",9,"\u8DA0\u8DA1"],["da80","\u8DA2\u8DA4",12,"\u8DB2\u8DB6\u8DB7\u8DB9\u8DBB\u8DBD\u8DC0\u8DC1\u8DC2\u8DC5\u8DC7\u8DC8\u8DC9\u8DCA\u8DCD\u8DD0\u8DD2\u8DD3\u8DD4\u51C7\u5196\u51A2\u51A5\u8BA0\u8BA6\u8BA7\u8BAA\u8BB4\u8BB5\u8BB7\u8BC2\u8BC3\u8BCB\u8BCF\u8BCE\u8BD2\u8BD3\u8BD4\u8BD6\u8BD8\u8BD9\u8BDC\u8BDF\u8BE0\u8BE4\u8BE8\u8BE9\u8BEE\u8BF0\u8BF3\u8BF6\u8BF9\u8BFC\u8BFF\u8C00\u8C02\u8C04\u8C07\u8C0C\u8C0F\u8C11\u8C12\u8C14\u8C15\u8C16\u8C19\u8C1B\u8C18\u8C1D\u8C1F\u8C20\u8C21\u8C25\u8C27\u8C2A\u8C2B\u8C2E\u8C2F\u8C32\u8C33\u8C35\u8C36\u5369\u537A\u961D\u9622\u9621\u9631\u962A\u963D\u963C\u9642\u9649\u9654\u965F\u9667\u966C\u9672\u9674\u9688\u968D\u9697\u96B0\u9097\u909B\u909D\u9099\u90AC\u90A1\u90B4\u90B3\u90B6\u90BA"],["db40","\u8DD5\u8DD8\u8DD9\u8DDC\u8DE0\u8DE1\u8DE2\u8DE5\u8DE6\u8DE7\u8DE9\u8DED\u8DEE\u8DF0\u8DF1\u8DF2\u8DF4\u8DF6\u8DFC\u8DFE",6,"\u8E06\u8E07\u8E08\u8E0B\u8E0D\u8E0E\u8E10\u8E11\u8E12\u8E13\u8E15",7,"\u8E20\u8E21\u8E24",4,"\u8E2B\u8E2D\u8E30\u8E32\u8E33\u8E34\u8E36\u8E37\u8E38\u8E3B\u8E3C\u8E3E"],["db80","\u8E3F\u8E43\u8E45\u8E46\u8E4C",4,"\u8E53",5,"\u8E5A",11,"\u8E67\u8E68\u8E6A\u8E6B\u8E6E\u8E71\u90B8\u90B0\u90CF\u90C5\u90BE\u90D0\u90C4\u90C7\u90D3\u90E6\u90E2\u90DC\u90D7\u90DB\u90EB\u90EF\u90FE\u9104\u9122\u911E\u9123\u9131\u912F\u9139\u9143\u9146\u520D\u5942\u52A2\u52AC\u52AD\u52BE\u54FF\u52D0\u52D6\u52F0\u53DF\u71EE\u77CD\u5EF4\u51F5\u51FC\u9B2F\u53B6\u5F01\u755A\u5DEF\u574C\u57A9\u57A1\u587E\u58BC\u58C5\u58D1\u5729\u572C\u572A\u5733\u5739\u572E\u572F\u575C\u573B\u5742\u5769\u5785\u576B\u5786\u577C\u577B\u5768\u576D\u5776\u5773\u57AD\u57A4\u578C\u57B2\u57CF\u57A7\u57B4\u5793\u57A0\u57D5\u57D8\u57DA\u57D9\u57D2\u57B8\u57F4\u57EF\u57F8\u57E4\u57DD"],["dc40","\u8E73\u8E75\u8E77",4,"\u8E7D\u8E7E\u8E80\u8E82\u8E83\u8E84\u8E86\u8E88",6,"\u8E91\u8E92\u8E93\u8E95",6,"\u8E9D\u8E9F",11,"\u8EAD\u8EAE\u8EB0\u8EB1\u8EB3",6,"\u8EBB",7],["dc80","\u8EC3",10,"\u8ECF",21,"\u580B\u580D\u57FD\u57ED\u5800\u581E\u5819\u5844\u5820\u5865\u586C\u5881\u5889\u589A\u5880\u99A8\u9F19\u61FF\u8279\u827D\u827F\u828F\u828A\u82A8\u8284\u828E\u8291\u8297\u8299\u82AB\u82B8\u82BE\u82B0\u82C8\u82CA\u82E3\u8298\u82B7\u82AE\u82CB\u82CC\u82C1\u82A9\u82B4\u82A1\u82AA\u829F\u82C4\u82CE\u82A4\u82E1\u8309\u82F7\u82E4\u830F\u8307\u82DC\u82F4\u82D2\u82D8\u830C\u82FB\u82D3\u8311\u831A\u8306\u8314\u8315\u82E0\u82D5\u831C\u8351\u835B\u835C\u8308\u8392\u833C\u8334\u8331\u839B\u835E\u832F\u834F\u8347\u8343\u835F\u8340\u8317\u8360\u832D\u833A\u8333\u8366\u8365"],["dd40","\u8EE5",62],["dd80","\u8F24",32,"\u8368\u831B\u8369\u836C\u836A\u836D\u836E\u83B0\u8378\u83B3\u83B4\u83A0\u83AA\u8393\u839C\u8385\u837C\u83B6\u83A9\u837D\u83B8\u837B\u8398\u839E\u83A8\u83BA\u83BC\u83C1\u8401\u83E5\u83D8\u5807\u8418\u840B\u83DD\u83FD\u83D6\u841C\u8438\u8411\u8406\u83D4\u83DF\u840F\u8403\u83F8\u83F9\u83EA\u83C5\u83C0\u8426\u83F0\u83E1\u845C\u8451\u845A\u8459\u8473\u8487\u8488\u847A\u8489\u8478\u843C\u8446\u8469\u8476\u848C\u848E\u8431\u846D\u84C1\u84CD\u84D0\u84E6\u84BD\u84D3\u84CA\u84BF\u84BA\u84E0\u84A1\u84B9\u84B4\u8497\u84E5\u84E3\u850C\u750D\u8538\u84F0\u8539\u851F\u853A"],["de40","\u8F45",32,"\u8F6A\u8F80\u8F8C\u8F92\u8F9D\u8FA0\u8FA1\u8FA2\u8FA4\u8FA5\u8FA6\u8FA7\u8FAA\u8FAC\u8FAD\u8FAE\u8FAF\u8FB2\u8FB3\u8FB4\u8FB5\u8FB7\u8FB8\u8FBA\u8FBB\u8FBC\u8FBF\u8FC0\u8FC3\u8FC6"],["de80","\u8FC9",4,"\u8FCF\u8FD2\u8FD6\u8FD7\u8FDA\u8FE0\u8FE1\u8FE3\u8FE7\u8FEC\u8FEF\u8FF1\u8FF2\u8FF4\u8FF5\u8FF6\u8FFA\u8FFB\u8FFC\u8FFE\u8FFF\u9007\u9008\u900C\u900E\u9013\u9015\u9018\u8556\u853B\u84FF\u84FC\u8559\u8548\u8568\u8564\u855E\u857A\u77A2\u8543\u8572\u857B\u85A4\u85A8\u8587\u858F\u8579\u85AE\u859C\u8585\u85B9\u85B7\u85B0\u85D3\u85C1\u85DC\u85FF\u8627\u8605\u8629\u8616\u863C\u5EFE\u5F08\u593C\u5941\u8037\u5955\u595A\u5958\u530F\u5C22\u5C25\u5C2C\u5C34\u624C\u626A\u629F\u62BB\u62CA\u62DA\u62D7\u62EE\u6322\u62F6\u6339\u634B\u6343\u63AD\u63F6\u6371\u637A\u638E\u63B4\u636D\u63AC\u638A\u6369\u63AE\u63BC\u63F2\u63F8\u63E0\u63FF\u63C4\u63DE\u63CE\u6452\u63C6\u63BE\u6445\u6441\u640B\u641B\u6420\u640C\u6426\u6421\u645E\u6484\u646D\u6496"],["df40","\u9019\u901C\u9023\u9024\u9025\u9027",5,"\u9030",4,"\u9037\u9039\u903A\u903D\u903F\u9040\u9043\u9045\u9046\u9048",4,"\u904E\u9054\u9055\u9056\u9059\u905A\u905C",5,"\u9064\u9066\u9067\u9069\u906A\u906B\u906C\u906F",4,"\u9076",6,"\u907E\u9081"],["df80","\u9084\u9085\u9086\u9087\u9089\u908A\u908C",4,"\u9092\u9094\u9096\u9098\u909A\u909C\u909E\u909F\u90A0\u90A4\u90A5\u90A7\u90A8\u90A9\u90AB\u90AD\u90B2\u90B7\u90BC\u90BD\u90BF\u90C0\u647A\u64B7\u64B8\u6499\u64BA\u64C0\u64D0\u64D7\u64E4\u64E2\u6509\u6525\u652E\u5F0B\u5FD2\u7519\u5F11\u535F\u53F1\u53FD\u53E9\u53E8\u53FB\u5412\u5416\u5406\u544B\u5452\u5453\u5454\u5456\u5443\u5421\u5457\u5459\u5423\u5432\u5482\u5494\u5477\u5471\u5464\u549A\u549B\u5484\u5476\u5466\u549D\u54D0\u54AD\u54C2\u54B4\u54D2\u54A7\u54A6\u54D3\u54D4\u5472\u54A3\u54D5\u54BB\u54BF\u54CC\u54D9\u54DA\u54DC\u54A9\u54AA\u54A4\u54DD\u54CF\u54DE\u551B\u54E7\u5520\u54FD\u5514\u54F3\u5522\u5523\u550F\u5511\u5527\u552A\u5567\u558F\u55B5\u5549\u556D\u5541\u5555\u553F\u5550\u553C"],["e040","\u90C2\u90C3\u90C6\u90C8\u90C9\u90CB\u90CC\u90CD\u90D2\u90D4\u90D5\u90D6\u90D8\u90D9\u90DA\u90DE\u90DF\u90E0\u90E3\u90E4\u90E5\u90E9\u90EA\u90EC\u90EE\u90F0\u90F1\u90F2\u90F3\u90F5\u90F6\u90F7\u90F9\u90FA\u90FB\u90FC\u90FF\u9100\u9101\u9103\u9105",19,"\u911A\u911B\u911C"],["e080","\u911D\u911F\u9120\u9121\u9124",10,"\u9130\u9132",6,"\u913A",8,"\u9144\u5537\u5556\u5575\u5576\u5577\u5533\u5530\u555C\u558B\u55D2\u5583\u55B1\u55B9\u5588\u5581\u559F\u557E\u55D6\u5591\u557B\u55DF\u55BD\u55BE\u5594\u5599\u55EA\u55F7\u55C9\u561F\u55D1\u55EB\u55EC\u55D4\u55E6\u55DD\u55C4\u55EF\u55E5\u55F2\u55F3\u55CC\u55CD\u55E8\u55F5\u55E4\u8F94\u561E\u5608\u560C\u5601\u5624\u5623\u55FE\u5600\u5627\u562D\u5658\u5639\u5657\u562C\u564D\u5662\u5659\u565C\u564C\u5654\u5686\u5664\u5671\u566B\u567B\u567C\u5685\u5693\u56AF\u56D4\u56D7\u56DD\u56E1\u56F5\u56EB\u56F9\u56FF\u5704\u570A\u5709\u571C\u5E0F\u5E19\u5E14\u5E11\u5E31\u5E3B\u5E3C"],["e140","\u9145\u9147\u9148\u9151\u9153\u9154\u9155\u9156\u9158\u9159\u915B\u915C\u915F\u9160\u9166\u9167\u9168\u916B\u916D\u9173\u917A\u917B\u917C\u9180",4,"\u9186\u9188\u918A\u918E\u918F\u9193",6,"\u919C",5,"\u91A4",5,"\u91AB\u91AC\u91B0\u91B1\u91B2\u91B3\u91B6\u91B7\u91B8\u91B9\u91BB"],["e180","\u91BC",10,"\u91C8\u91CB\u91D0\u91D2",9,"\u91DD",8,"\u5E37\u5E44\u5E54\u5E5B\u5E5E\u5E61\u5C8C\u5C7A\u5C8D\u5C90\u5C96\u5C88\u5C98\u5C99\u5C91\u5C9A\u5C9C\u5CB5\u5CA2\u5CBD\u5CAC\u5CAB\u5CB1\u5CA3\u5CC1\u5CB7\u5CC4\u5CD2\u5CE4\u5CCB\u5CE5\u5D02\u5D03\u5D27\u5D26\u5D2E\u5D24\u5D1E\u5D06\u5D1B\u5D58\u5D3E\u5D34\u5D3D\u5D6C\u5D5B\u5D6F\u5D5D\u5D6B\u5D4B\u5D4A\u5D69\u5D74\u5D82\u5D99\u5D9D\u8C73\u5DB7\u5DC5\u5F73\u5F77\u5F82\u5F87\u5F89\u5F8C\u5F95\u5F99\u5F9C\u5FA8\u5FAD\u5FB5\u5FBC\u8862\u5F61\u72AD\u72B0\u72B4\u72B7\u72B8\u72C3\u72C1\u72CE\u72CD\u72D2\u72E8\u72EF\u72E9\u72F2\u72F4\u72F7\u7301\u72F3\u7303\u72FA"],["e240","\u91E6",62],["e280","\u9225",32,"\u72FB\u7317\u7313\u7321\u730A\u731E\u731D\u7315\u7322\u7339\u7325\u732C\u7338\u7331\u7350\u734D\u7357\u7360\u736C\u736F\u737E\u821B\u5925\u98E7\u5924\u5902\u9963\u9967",5,"\u9974\u9977\u997D\u9980\u9984\u9987\u998A\u998D\u9990\u9991\u9993\u9994\u9995\u5E80\u5E91\u5E8B\u5E96\u5EA5\u5EA0\u5EB9\u5EB5\u5EBE\u5EB3\u8D53\u5ED2\u5ED1\u5EDB\u5EE8\u5EEA\u81BA\u5FC4\u5FC9\u5FD6\u5FCF\u6003\u5FEE\u6004\u5FE1\u5FE4\u5FFE\u6005\u6006\u5FEA\u5FED\u5FF8\u6019\u6035\u6026\u601B\u600F\u600D\u6029\u602B\u600A\u603F\u6021\u6078\u6079\u607B\u607A\u6042"],["e340","\u9246",45,"\u9275",16],["e380","\u9286",7,"\u928F",24,"\u606A\u607D\u6096\u609A\u60AD\u609D\u6083\u6092\u608C\u609B\u60EC\u60BB\u60B1\u60DD\u60D8\u60C6\u60DA\u60B4\u6120\u6126\u6115\u6123\u60F4\u6100\u610E\u612B\u614A\u6175\u61AC\u6194\u61A7\u61B7\u61D4\u61F5\u5FDD\u96B3\u95E9\u95EB\u95F1\u95F3\u95F5\u95F6\u95FC\u95FE\u9603\u9604\u9606\u9608\u960A\u960B\u960C\u960D\u960F\u9612\u9615\u9616\u9617\u9619\u961A\u4E2C\u723F\u6215\u6C35\u6C54\u6C5C\u6C4A\u6CA3\u6C85\u6C90\u6C94\u6C8C\u6C68\u6C69\u6C74\u6C76\u6C86\u6CA9\u6CD0\u6CD4\u6CAD\u6CF7\u6CF8\u6CF1\u6CD7\u6CB2\u6CE0\u6CD6\u6CFA\u6CEB\u6CEE\u6CB1\u6CD3\u6CEF\u6CFE"],["e440","\u92A8",5,"\u92AF",24,"\u92C9",31],["e480","\u92E9",32,"\u6D39\u6D27\u6D0C\u6D43\u6D48\u6D07\u6D04\u6D19\u6D0E\u6D2B\u6D4D\u6D2E\u6D35\u6D1A\u6D4F\u6D52\u6D54\u6D33\u6D91\u6D6F\u6D9E\u6DA0\u6D5E\u6D93\u6D94\u6D5C\u6D60\u6D7C\u6D63\u6E1A\u6DC7\u6DC5\u6DDE\u6E0E\u6DBF\u6DE0\u6E11\u6DE6\u6DDD\u6DD9\u6E16\u6DAB\u6E0C\u6DAE\u6E2B\u6E6E\u6E4E\u6E6B\u6EB2\u6E5F\u6E86\u6E53\u6E54\u6E32\u6E25\u6E44\u6EDF\u6EB1\u6E98\u6EE0\u6F2D\u6EE2\u6EA5\u6EA7\u6EBD\u6EBB\u6EB7\u6ED7\u6EB4\u6ECF\u6E8F\u6EC2\u6E9F\u6F62\u6F46\u6F47\u6F24\u6F15\u6EF9\u6F2F\u6F36\u6F4B\u6F74\u6F2A\u6F09\u6F29\u6F89\u6F8D\u6F8C\u6F78\u6F72\u6F7C\u6F7A\u6FD1"],["e540","\u930A",51,"\u933F",10],["e580","\u934A",31,"\u936B\u6FC9\u6FA7\u6FB9\u6FB6\u6FC2\u6FE1\u6FEE\u6FDE\u6FE0\u6FEF\u701A\u7023\u701B\u7039\u7035\u704F\u705E\u5B80\u5B84\u5B95\u5B93\u5BA5\u5BB8\u752F\u9A9E\u6434\u5BE4\u5BEE\u8930\u5BF0\u8E47\u8B07\u8FB6\u8FD3\u8FD5\u8FE5\u8FEE\u8FE4\u8FE9\u8FE6\u8FF3\u8FE8\u9005\u9004\u900B\u9026\u9011\u900D\u9016\u9021\u9035\u9036\u902D\u902F\u9044\u9051\u9052\u9050\u9068\u9058\u9062\u905B\u66B9\u9074\u907D\u9082\u9088\u9083\u908B\u5F50\u5F57\u5F56\u5F58\u5C3B\u54AB\u5C50\u5C59\u5B71\u5C63\u5C66\u7FBC\u5F2A\u5F29\u5F2D\u8274\u5F3C\u9B3B\u5C6E\u5981\u5983\u598D\u59A9\u59AA\u59A3"],["e640","\u936C",34,"\u9390",27],["e680","\u93AC",29,"\u93CB\u93CC\u93CD\u5997\u59CA\u59AB\u599E\u59A4\u59D2\u59B2\u59AF\u59D7\u59BE\u5A05\u5A06\u59DD\u5A08\u59E3\u59D8\u59F9\u5A0C\u5A09\u5A32\u5A34\u5A11\u5A23\u5A13\u5A40\u5A67\u5A4A\u5A55\u5A3C\u5A62\u5A75\u80EC\u5AAA\u5A9B\u5A77\u5A7A\u5ABE\u5AEB\u5AB2\u5AD2\u5AD4\u5AB8\u5AE0\u5AE3\u5AF1\u5AD6\u5AE6\u5AD8\u5ADC\u5B09\u5B17\u5B16\u5B32\u5B37\u5B40\u5C15\u5C1C\u5B5A\u5B65\u5B73\u5B51\u5B53\u5B62\u9A75\u9A77\u9A78\u9A7A\u9A7F\u9A7D\u9A80\u9A81\u9A85\u9A88\u9A8A\u9A90\u9A92\u9A93\u9A96\u9A98\u9A9B\u9A9C\u9A9D\u9A9F\u9AA0\u9AA2\u9AA3\u9AA5\u9AA7\u7E9F\u7EA1\u7EA3\u7EA5\u7EA8\u7EA9"],["e740","\u93CE",7,"\u93D7",54],["e780","\u940E",32,"\u7EAD\u7EB0\u7EBE\u7EC0\u7EC1\u7EC2\u7EC9\u7ECB\u7ECC\u7ED0\u7ED4\u7ED7\u7EDB\u7EE0\u7EE1\u7EE8\u7EEB\u7EEE\u7EEF\u7EF1\u7EF2\u7F0D\u7EF6\u7EFA\u7EFB\u7EFE\u7F01\u7F02\u7F03\u7F07\u7F08\u7F0B\u7F0C\u7F0F\u7F11\u7F12\u7F17\u7F19\u7F1C\u7F1B\u7F1F\u7F21",6,"\u7F2A\u7F2B\u7F2C\u7F2D\u7F2F",4,"\u7F35\u5E7A\u757F\u5DDB\u753E\u9095\u738E\u7391\u73AE\u73A2\u739F\u73CF\u73C2\u73D1\u73B7\u73B3\u73C0\u73C9\u73C8\u73E5\u73D9\u987C\u740A\u73E9\u73E7\u73DE\u73BA\u73F2\u740F\u742A\u745B\u7426\u7425\u7428\u7430\u742E\u742C"],["e840","\u942F",14,"\u943F",43,"\u946C\u946D\u946E\u946F"],["e880","\u9470",20,"\u9491\u9496\u9498\u94C7\u94CF\u94D3\u94D4\u94DA\u94E6\u94FB\u951C\u9520\u741B\u741A\u7441\u745C\u7457\u7455\u7459\u7477\u746D\u747E\u749C\u748E\u7480\u7481\u7487\u748B\u749E\u74A8\u74A9\u7490\u74A7\u74D2\u74BA\u97EA\u97EB\u97EC\u674C\u6753\u675E\u6748\u6769\u67A5\u6787\u676A\u6773\u6798\u67A7\u6775\u67A8\u679E\u67AD\u678B\u6777\u677C\u67F0\u6809\u67D8\u680A\u67E9\u67B0\u680C\u67D9\u67B5\u67DA\u67B3\u67DD\u6800\u67C3\u67B8\u67E2\u680E\u67C1\u67FD\u6832\u6833\u6860\u6861\u684E\u6862\u6844\u6864\u6883\u681D\u6855\u6866\u6841\u6867\u6840\u683E\u684A\u6849\u6829\u68B5\u688F\u6874\u6877\u6893\u686B\u68C2\u696E\u68FC\u691F\u6920\u68F9"],["e940","\u9527\u9533\u953D\u9543\u9548\u954B\u9555\u955A\u9560\u956E\u9574\u9575\u9577",7,"\u9580",42],["e980","\u95AB",32,"\u6924\u68F0\u690B\u6901\u6957\u68E3\u6910\u6971\u6939\u6960\u6942\u695D\u6984\u696B\u6980\u6998\u6978\u6934\u69CC\u6987\u6988\u69CE\u6989\u6966\u6963\u6979\u699B\u69A7\u69BB\u69AB\u69AD\u69D4\u69B1\u69C1\u69CA\u69DF\u6995\u69E0\u698D\u69FF\u6A2F\u69ED\u6A17\u6A18\u6A65\u69F2\u6A44\u6A3E\u6AA0\u6A50\u6A5B\u6A35\u6A8E\u6A79\u6A3D\u6A28\u6A58\u6A7C\u6A91\u6A90\u6AA9\u6A97\u6AAB\u7337\u7352\u6B81\u6B82\u6B87\u6B84\u6B92\u6B93\u6B8D\u6B9A\u6B9B\u6BA1\u6BAA\u8F6B\u8F6D\u8F71\u8F72\u8F73\u8F75\u8F76\u8F78\u8F77\u8F79\u8F7A\u8F7C\u8F7E\u8F81\u8F82\u8F84\u8F87\u8F8B"],["ea40","\u95CC",27,"\u95EC\u95FF\u9607\u9613\u9618\u961B\u961E\u9620\u9623",6,"\u962B\u962C\u962D\u962F\u9630\u9637\u9638\u9639\u963A\u963E\u9641\u9643\u964A\u964E\u964F\u9651\u9652\u9653\u9656\u9657"],["ea80","\u9658\u9659\u965A\u965C\u965D\u965E\u9660\u9663\u9665\u9666\u966B\u966D",4,"\u9673\u9678",12,"\u9687\u9689\u968A\u8F8D\u8F8E\u8F8F\u8F98\u8F9A\u8ECE\u620B\u6217\u621B\u621F\u6222\u6221\u6225\u6224\u622C\u81E7\u74EF\u74F4\u74FF\u750F\u7511\u7513\u6534\u65EE\u65EF\u65F0\u660A\u6619\u6772\u6603\u6615\u6600\u7085\u66F7\u661D\u6634\u6631\u6636\u6635\u8006\u665F\u6654\u6641\u664F\u6656\u6661\u6657\u6677\u6684\u668C\u66A7\u669D\u66BE\u66DB\u66DC\u66E6\u66E9\u8D32\u8D33\u8D36\u8D3B\u8D3D\u8D40\u8D45\u8D46\u8D48\u8D49\u8D47\u8D4D\u8D55\u8D59\u89C7\u89CA\u89CB\u89CC\u89CE\u89CF\u89D0\u89D1\u726E\u729F\u725D\u7266\u726F\u727E\u727F\u7284\u728B\u728D\u728F\u7292\u6308\u6332\u63B0"],["eb40","\u968C\u968E\u9691\u9692\u9693\u9695\u9696\u969A\u969B\u969D",9,"\u96A8",7,"\u96B1\u96B2\u96B4\u96B5\u96B7\u96B8\u96BA\u96BB\u96BF\u96C2\u96C3\u96C8\u96CA\u96CB\u96D0\u96D1\u96D3\u96D4\u96D6",9,"\u96E1",6,"\u96EB"],["eb80","\u96EC\u96ED\u96EE\u96F0\u96F1\u96F2\u96F4\u96F5\u96F8\u96FA\u96FB\u96FC\u96FD\u96FF\u9702\u9703\u9705\u970A\u970B\u970C\u9710\u9711\u9712\u9714\u9715\u9717",4,"\u971D\u971F\u9720\u643F\u64D8\u8004\u6BEA\u6BF3\u6BFD\u6BF5\u6BF9\u6C05\u6C07\u6C06\u6C0D\u6C15\u6C18\u6C19\u6C1A\u6C21\u6C29\u6C24\u6C2A\u6C32\u6535\u6555\u656B\u724D\u7252\u7256\u7230\u8662\u5216\u809F\u809C\u8093\u80BC\u670A\u80BD\u80B1\u80AB\u80AD\u80B4\u80B7\u80E7\u80E8\u80E9\u80EA\u80DB\u80C2\u80C4\u80D9\u80CD\u80D7\u6710\u80DD\u80EB\u80F1\u80F4\u80ED\u810D\u810E\u80F2\u80FC\u6715\u8112\u8C5A\u8136\u811E\u812C\u8118\u8132\u8148\u814C\u8153\u8174\u8159\u815A\u8171\u8160\u8169\u817C\u817D\u816D\u8167\u584D\u5AB5\u8188\u8182\u8191\u6ED5\u81A3\u81AA\u81CC\u6726\u81CA\u81BB"],["ec40","\u9721",8,"\u972B\u972C\u972E\u972F\u9731\u9733",4,"\u973A\u973B\u973C\u973D\u973F",18,"\u9754\u9755\u9757\u9758\u975A\u975C\u975D\u975F\u9763\u9764\u9766\u9767\u9768\u976A",7],["ec80","\u9772\u9775\u9777",4,"\u977D",7,"\u9786",4,"\u978C\u978E\u978F\u9790\u9793\u9795\u9796\u9797\u9799",4,"\u81C1\u81A6\u6B24\u6B37\u6B39\u6B43\u6B46\u6B59\u98D1\u98D2\u98D3\u98D5\u98D9\u98DA\u6BB3\u5F40\u6BC2\u89F3\u6590\u9F51\u6593\u65BC\u65C6\u65C4\u65C3\u65CC\u65CE\u65D2\u65D6\u7080\u709C\u7096\u709D\u70BB\u70C0\u70B7\u70AB\u70B1\u70E8\u70CA\u7110\u7113\u7116\u712F\u7131\u7173\u715C\u7168\u7145\u7172\u714A\u7178\u717A\u7198\u71B3\u71B5\u71A8\u71A0\u71E0\u71D4\u71E7\u71F9\u721D\u7228\u706C\u7118\u7166\u71B9\u623E\u623D\u6243\u6248\u6249\u793B\u7940\u7946\u7949\u795B\u795C\u7953\u795A\u7962\u7957\u7960\u796F\u7967\u797A\u7985\u798A\u799A\u79A7\u79B3\u5FD1\u5FD0"],["ed40","\u979E\u979F\u97A1\u97A2\u97A4",6,"\u97AC\u97AE\u97B0\u97B1\u97B3\u97B5",46],["ed80","\u97E4\u97E5\u97E8\u97EE",4,"\u97F4\u97F7",23,"\u603C\u605D\u605A\u6067\u6041\u6059\u6063\u60AB\u6106\u610D\u615D\u61A9\u619D\u61CB\u61D1\u6206\u8080\u807F\u6C93\u6CF6\u6DFC\u77F6\u77F8\u7800\u7809\u7817\u7818\u7811\u65AB\u782D\u781C\u781D\u7839\u783A\u783B\u781F\u783C\u7825\u782C\u7823\u7829\u784E\u786D\u7856\u7857\u7826\u7850\u7847\u784C\u786A\u789B\u7893\u789A\u7887\u789C\u78A1\u78A3\u78B2\u78B9\u78A5\u78D4\u78D9\u78C9\u78EC\u78F2\u7905\u78F4\u7913\u7924\u791E\u7934\u9F9B\u9EF9\u9EFB\u9EFC\u76F1\u7704\u770D\u76F9\u7707\u7708\u771A\u7722\u7719\u772D\u7726\u7735\u7738\u7750\u7751\u7747\u7743\u775A\u7768"],["ee40","\u980F",62],["ee80","\u984E",32,"\u7762\u7765\u777F\u778D\u777D\u7780\u778C\u7791\u779F\u77A0\u77B0\u77B5\u77BD\u753A\u7540\u754E\u754B\u7548\u755B\u7572\u7579\u7583\u7F58\u7F61\u7F5F\u8A48\u7F68\u7F74\u7F71\u7F79\u7F81\u7F7E\u76CD\u76E5\u8832\u9485\u9486\u9487\u948B\u948A\u948C\u948D\u948F\u9490\u9494\u9497\u9495\u949A\u949B\u949C\u94A3\u94A4\u94AB\u94AA\u94AD\u94AC\u94AF\u94B0\u94B2\u94B4\u94B6",4,"\u94BC\u94BD\u94BF\u94C4\u94C8",6,"\u94D0\u94D1\u94D2\u94D5\u94D6\u94D7\u94D9\u94D8\u94DB\u94DE\u94DF\u94E0\u94E2\u94E4\u94E5\u94E7\u94E8\u94EA"],["ef40","\u986F",5,"\u988B\u988E\u9892\u9895\u9899\u98A3\u98A8",37,"\u98CF\u98D0\u98D4\u98D6\u98D7\u98DB\u98DC\u98DD\u98E0",4],["ef80","\u98E5\u98E6\u98E9",30,"\u94E9\u94EB\u94EE\u94EF\u94F3\u94F4\u94F5\u94F7\u94F9\u94FC\u94FD\u94FF\u9503\u9502\u9506\u9507\u9509\u950A\u950D\u950E\u950F\u9512",4,"\u9518\u951B\u951D\u951E\u951F\u9522\u952A\u952B\u9529\u952C\u9531\u9532\u9534\u9536\u9537\u9538\u953C\u953E\u953F\u9542\u9535\u9544\u9545\u9546\u9549\u954C\u954E\u954F\u9552\u9553\u9554\u9556\u9557\u9558\u9559\u955B\u955E\u955F\u955D\u9561\u9562\u9564",8,"\u956F\u9571\u9572\u9573\u953A\u77E7\u77EC\u96C9\u79D5\u79ED\u79E3\u79EB\u7A06\u5D47\u7A03\u7A02\u7A1E\u7A14"],["f040","\u9908",4,"\u990E\u990F\u9911",28,"\u992F",26],["f080","\u994A",9,"\u9956",12,"\u9964\u9966\u9973\u9978\u9979\u997B\u997E\u9982\u9983\u9989\u7A39\u7A37\u7A51\u9ECF\u99A5\u7A70\u7688\u768E\u7693\u7699\u76A4\u74DE\u74E0\u752C\u9E20\u9E22\u9E28",4,"\u9E32\u9E31\u9E36\u9E38\u9E37\u9E39\u9E3A\u9E3E\u9E41\u9E42\u9E44\u9E46\u9E47\u9E48\u9E49\u9E4B\u9E4C\u9E4E\u9E51\u9E55\u9E57\u9E5A\u9E5B\u9E5C\u9E5E\u9E63\u9E66",6,"\u9E71\u9E6D\u9E73\u7592\u7594\u7596\u75A0\u759D\u75AC\u75A3\u75B3\u75B4\u75B8\u75C4\u75B1\u75B0\u75C3\u75C2\u75D6\u75CD\u75E3\u75E8\u75E6\u75E4\u75EB\u75E7\u7603\u75F1\u75FC\u75FF\u7610\u7600\u7605\u760C\u7617\u760A\u7625\u7618\u7615\u7619"],["f140","\u998C\u998E\u999A",10,"\u99A6\u99A7\u99A9",47],["f180","\u99D9",32,"\u761B\u763C\u7622\u7620\u7640\u762D\u7630\u763F\u7635\u7643\u763E\u7633\u764D\u765E\u7654\u765C\u7656\u766B\u766F\u7FCA\u7AE6\u7A78\u7A79\u7A80\u7A86\u7A88\u7A95\u7AA6\u7AA0\u7AAC\u7AA8\u7AAD\u7AB3\u8864\u8869\u8872\u887D\u887F\u8882\u88A2\u88C6\u88B7\u88BC\u88C9\u88E2\u88CE\u88E3\u88E5\u88F1\u891A\u88FC\u88E8\u88FE\u88F0\u8921\u8919\u8913\u891B\u890A\u8934\u892B\u8936\u8941\u8966\u897B\u758B\u80E5\u76B2\u76B4\u77DC\u8012\u8014\u8016\u801C\u8020\u8022\u8025\u8026\u8027\u8029\u8028\u8031\u800B\u8035\u8043\u8046\u804D\u8052\u8069\u8071\u8983\u9878\u9880\u9883"],["f240","\u99FA",62],["f280","\u9A39",32,"\u9889\u988C\u988D\u988F\u9894\u989A\u989B\u989E\u989F\u98A1\u98A2\u98A5\u98A6\u864D\u8654\u866C\u866E\u867F\u867A\u867C\u867B\u86A8\u868D\u868B\u86AC\u869D\u86A7\u86A3\u86AA\u8693\u86A9\u86B6\u86C4\u86B5\u86CE\u86B0\u86BA\u86B1\u86AF\u86C9\u86CF\u86B4\u86E9\u86F1\u86F2\u86ED\u86F3\u86D0\u8713\u86DE\u86F4\u86DF\u86D8\u86D1\u8703\u8707\u86F8\u8708\u870A\u870D\u8709\u8723\u873B\u871E\u8725\u872E\u871A\u873E\u8748\u8734\u8731\u8729\u8737\u873F\u8782\u8722\u877D\u877E\u877B\u8760\u8770\u874C\u876E\u878B\u8753\u8763\u877C\u8764\u8759\u8765\u8793\u87AF\u87A8\u87D2"],["f340","\u9A5A",17,"\u9A72\u9A83\u9A89\u9A8D\u9A8E\u9A94\u9A95\u9A99\u9AA6\u9AA9",6,"\u9AB2\u9AB3\u9AB4\u9AB5\u9AB9\u9ABB\u9ABD\u9ABE\u9ABF\u9AC3\u9AC4\u9AC6",4,"\u9ACD\u9ACE\u9ACF\u9AD0\u9AD2\u9AD4\u9AD5\u9AD6\u9AD7\u9AD9\u9ADA\u9ADB\u9ADC"],["f380","\u9ADD\u9ADE\u9AE0\u9AE2\u9AE3\u9AE4\u9AE5\u9AE7\u9AE8\u9AE9\u9AEA\u9AEC\u9AEE\u9AF0",8,"\u9AFA\u9AFC",6,"\u9B04\u9B05\u9B06\u87C6\u8788\u8785\u87AD\u8797\u8783\u87AB\u87E5\u87AC\u87B5\u87B3\u87CB\u87D3\u87BD\u87D1\u87C0\u87CA\u87DB\u87EA\u87E0\u87EE\u8816\u8813\u87FE\u880A\u881B\u8821\u8839\u883C\u7F36\u7F42\u7F44\u7F45\u8210\u7AFA\u7AFD\u7B08\u7B03\u7B04\u7B15\u7B0A\u7B2B\u7B0F\u7B47\u7B38\u7B2A\u7B19\u7B2E\u7B31\u7B20\u7B25\u7B24\u7B33\u7B3E\u7B1E\u7B58\u7B5A\u7B45\u7B75\u7B4C\u7B5D\u7B60\u7B6E\u7B7B\u7B62\u7B72\u7B71\u7B90\u7BA6\u7BA7\u7BB8\u7BAC\u7B9D\u7BA8\u7B85\u7BAA\u7B9C\u7BA2\u7BAB\u7BB4\u7BD1\u7BC1\u7BCC\u7BDD\u7BDA\u7BE5\u7BE6\u7BEA\u7C0C\u7BFE\u7BFC\u7C0F\u7C16\u7C0B"],["f440","\u9B07\u9B09",5,"\u9B10\u9B11\u9B12\u9B14",10,"\u9B20\u9B21\u9B22\u9B24",10,"\u9B30\u9B31\u9B33",7,"\u9B3D\u9B3E\u9B3F\u9B40\u9B46\u9B4A\u9B4B\u9B4C\u9B4E\u9B50\u9B52\u9B53\u9B55",5],["f480","\u9B5B",32,"\u7C1F\u7C2A\u7C26\u7C38\u7C41\u7C40\u81FE\u8201\u8202\u8204\u81EC\u8844\u8221\u8222\u8223\u822D\u822F\u8228\u822B\u8238\u823B\u8233\u8234\u823E\u8244\u8249\u824B\u824F\u825A\u825F\u8268\u887E\u8885\u8888\u88D8\u88DF\u895E\u7F9D\u7F9F\u7FA7\u7FAF\u7FB0\u7FB2\u7C7C\u6549\u7C91\u7C9D\u7C9C\u7C9E\u7CA2\u7CB2\u7CBC\u7CBD\u7CC1\u7CC7\u7CCC\u7CCD\u7CC8\u7CC5\u7CD7\u7CE8\u826E\u66A8\u7FBF\u7FCE\u7FD5\u7FE5\u7FE1\u7FE6\u7FE9\u7FEE\u7FF3\u7CF8\u7D77\u7DA6\u7DAE\u7E47\u7E9B\u9EB8\u9EB4\u8D73\u8D84\u8D94\u8D91\u8DB1\u8D67\u8D6D\u8C47\u8C49\u914A\u9150\u914E\u914F\u9164"],["f540","\u9B7C",62],["f580","\u9BBB",32,"\u9162\u9161\u9170\u9169\u916F\u917D\u917E\u9172\u9174\u9179\u918C\u9185\u9190\u918D\u9191\u91A2\u91A3\u91AA\u91AD\u91AE\u91AF\u91B5\u91B4\u91BA\u8C55\u9E7E\u8DB8\u8DEB\u8E05\u8E59\u8E69\u8DB5\u8DBF\u8DBC\u8DBA\u8DC4\u8DD6\u8DD7\u8DDA\u8DDE\u8DCE\u8DCF\u8DDB\u8DC6\u8DEC\u8DF7\u8DF8\u8DE3\u8DF9\u8DFB\u8DE4\u8E09\u8DFD\u8E14\u8E1D\u8E1F\u8E2C\u8E2E\u8E23\u8E2F\u8E3A\u8E40\u8E39\u8E35\u8E3D\u8E31\u8E49\u8E41\u8E42\u8E51\u8E52\u8E4A\u8E70\u8E76\u8E7C\u8E6F\u8E74\u8E85\u8E8F\u8E94\u8E90\u8E9C\u8E9E\u8C78\u8C82\u8C8A\u8C85\u8C98\u8C94\u659B\u89D6\u89DE\u89DA\u89DC"],["f640","\u9BDC",62],["f680","\u9C1B",32,"\u89E5\u89EB\u89EF\u8A3E\u8B26\u9753\u96E9\u96F3\u96EF\u9706\u9701\u9708\u970F\u970E\u972A\u972D\u9730\u973E\u9F80\u9F83\u9F85",5,"\u9F8C\u9EFE\u9F0B\u9F0D\u96B9\u96BC\u96BD\u96CE\u96D2\u77BF\u96E0\u928E\u92AE\u92C8\u933E\u936A\u93CA\u938F\u943E\u946B\u9C7F\u9C82\u9C85\u9C86\u9C87\u9C88\u7A23\u9C8B\u9C8E\u9C90\u9C91\u9C92\u9C94\u9C95\u9C9A\u9C9B\u9C9E",5,"\u9CA5",4,"\u9CAB\u9CAD\u9CAE\u9CB0",7,"\u9CBA\u9CBB\u9CBC\u9CBD\u9CC4\u9CC5\u9CC6\u9CC7\u9CCA\u9CCB"],["f740","\u9C3C",62],["f780","\u9C7B\u9C7D\u9C7E\u9C80\u9C83\u9C84\u9C89\u9C8A\u9C8C\u9C8F\u9C93\u9C96\u9C97\u9C98\u9C99\u9C9D\u9CAA\u9CAC\u9CAF\u9CB9\u9CBE",4,"\u9CC8\u9CC9\u9CD1\u9CD2\u9CDA\u9CDB\u9CE0\u9CE1\u9CCC",4,"\u9CD3\u9CD4\u9CD5\u9CD7\u9CD8\u9CD9\u9CDC\u9CDD\u9CDF\u9CE2\u977C\u9785\u9791\u9792\u9794\u97AF\u97AB\u97A3\u97B2\u97B4\u9AB1\u9AB0\u9AB7\u9E58\u9AB6\u9ABA\u9ABC\u9AC1\u9AC0\u9AC5\u9AC2\u9ACB\u9ACC\u9AD1\u9B45\u9B43\u9B47\u9B49\u9B48\u9B4D\u9B51\u98E8\u990D\u992E\u9955\u9954\u9ADF\u9AE1\u9AE6\u9AEF\u9AEB\u9AFB\u9AED\u9AF9\u9B08\u9B0F\u9B13\u9B1F\u9B23\u9EBD\u9EBE\u7E3B\u9E82\u9E87\u9E88\u9E8B\u9E92\u93D6\u9E9D\u9E9F\u9EDB\u9EDC\u9EDD\u9EE0\u9EDF\u9EE2\u9EE9\u9EE7\u9EE5\u9EEA\u9EEF\u9F22\u9F2C\u9F2F\u9F39\u9F37\u9F3D\u9F3E\u9F44"],["f840","\u9CE3",62],["f880","\u9D22",32],["f940","\u9D43",62],["f980","\u9D82",32],["fa40","\u9DA3",62],["fa80","\u9DE2",32],["fb40","\u9E03",27,"\u9E24\u9E27\u9E2E\u9E30\u9E34\u9E3B\u9E3C\u9E40\u9E4D\u9E50\u9E52\u9E53\u9E54\u9E56\u9E59\u9E5D\u9E5F\u9E60\u9E61\u9E62\u9E65\u9E6E\u9E6F\u9E72\u9E74",9,"\u9E80"],["fb80","\u9E81\u9E83\u9E84\u9E85\u9E86\u9E89\u9E8A\u9E8C",5,"\u9E94",8,"\u9E9E\u9EA0",5,"\u9EA7\u9EA8\u9EA9\u9EAA"],["fc40","\u9EAB",8,"\u9EB5\u9EB6\u9EB7\u9EB9\u9EBA\u9EBC\u9EBF",4,"\u9EC5\u9EC6\u9EC7\u9EC8\u9ECA\u9ECB\u9ECC\u9ED0\u9ED2\u9ED3\u9ED5\u9ED6\u9ED7\u9ED9\u9EDA\u9EDE\u9EE1\u9EE3\u9EE4\u9EE6\u9EE8\u9EEB\u9EEC\u9EED\u9EEE\u9EF0",8,"\u9EFA\u9EFD\u9EFF",6],["fc80","\u9F06",4,"\u9F0C\u9F0F\u9F11\u9F12\u9F14\u9F15\u9F16\u9F18\u9F1A",5,"\u9F21\u9F23",8,"\u9F2D\u9F2E\u9F30\u9F31"],["fd40","\u9F32",4,"\u9F38\u9F3A\u9F3C\u9F3F",4,"\u9F45",10,"\u9F52",38],["fd80","\u9F79",5,"\u9F81\u9F82\u9F8D",11,"\u9F9C\u9F9D\u9F9E\u9FA1",4,"\uF92C\uF979\uF995\uF9E7\uF9F1"],["fe40","\uFA0C\uFA0D\uFA0E\uFA0F\uFA11\uFA13\uFA14\uFA18\uFA1F\uFA20\uFA21\uFA23\uFA24\uFA27\uFA28\uFA29"]]});var W2=b((Out,B4e)=>{B4e.exports=[["a140","\uE4C6",62],["a180","\uE505",32],["a240","\uE526",62],["a280","\uE565",32],["a2ab","\uE766",5],["a2e3","\u20AC\uE76D"],["a2ef","\uE76E\uE76F"],["a2fd","\uE770\uE771"],["a340","\uE586",62],["a380","\uE5C5",31,"\u3000"],["a440","\uE5E6",62],["a480","\uE625",32],["a4f4","\uE772",10],["a540","\uE646",62],["a580","\uE685",32],["a5f7","\uE77D",7],["a640","\uE6A6",62],["a680","\uE6E5",32],["a6b9","\uE785",7],["a6d9","\uE78D",6],["a6ec","\uE794\uE795"],["a6f3","\uE796"],["a6f6","\uE797",8],["a740","\uE706",62],["a780","\uE745",32],["a7c2","\uE7A0",14],["a7f2","\uE7AF",12],["a896","\uE7BC",10],["a8bc","\u1E3F"],["a8bf","\u01F9"],["a8c1","\uE7C9\uE7CA\uE7CB\uE7CC"],["a8ea","\uE7CD",20],["a958","\uE7E2"],["a95b","\uE7E3"],["a95d","\uE7E4\uE7E5\uE7E6"],["a989","\u303E\u2FF0",11],["a997","\uE7F4",12],["a9f0","\uE801",14],["aaa1","\uE000",93],["aba1","\uE05E",93],["aca1","\uE0BC",93],["ada1","\uE11A",93],["aea1","\uE178",93],["afa1","\uE1D6",93],["d7fa","\uE810",4],["f8a1","\uE234",93],["f9a1","\uE292",93],["faa1","\uE2F0",93],["fba1","\uE34E",93],["fca1","\uE3AC",93],["fda1","\uE40A",93],["fe50","\u2E81\uE816\uE817\uE818\u2E84\u3473\u3447\u2E88\u2E8B\uE81E\u359E\u361A\u360E\u2E8C\u2E97\u396E\u3918\uE826\u39CF\u39DF\u3A73\u39D0\uE82B\uE82C\u3B4E\u3C6E\u3CE0\u2EA7\uE831\uE832\u2EAA\u4056\u415F\u2EAE\u4337\u2EB3\u2EB6\u2EB7\uE83B\u43B1\u43AC\u2EBB\u43DD\u44D6\u4661\u464C\uE843"],["fe80","\u4723\u4729\u477C\u478D\u2ECA\u4947\u497A\u497D\u4982\u4983\u4985\u4986\u499F\u499B\u49B7\u49B6\uE854\uE855\u4CA3\u4C9F\u4CA0\u4CA1\u4C77\u4CA2\u4D13",6,"\u4DAE\uE864\uE468",93],["8135f437","\uE7C7"]]});var VJ=b((Mut,x4e)=>{x4e.exports={uChars:[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],gbChars:[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189e3]}});var YJ=b((Put,v4e)=>{v4e.exports=[["0","\0",127],["8141","\uAC02\uAC03\uAC05\uAC06\uAC0B",4,"\uAC18\uAC1E\uAC1F\uAC21\uAC22\uAC23\uAC25",6,"\uAC2E\uAC32\uAC33\uAC34"],["8161","\uAC35\uAC36\uAC37\uAC3A\uAC3B\uAC3D\uAC3E\uAC3F\uAC41",9,"\uAC4C\uAC4E",5,"\uAC55"],["8181","\uAC56\uAC57\uAC59\uAC5A\uAC5B\uAC5D",18,"\uAC72\uAC73\uAC75\uAC76\uAC79\uAC7B",4,"\uAC82\uAC87\uAC88\uAC8D\uAC8E\uAC8F\uAC91\uAC92\uAC93\uAC95",6,"\uAC9E\uACA2",5,"\uACAB\uACAD\uACAE\uACB1",6,"\uACBA\uACBE\uACBF\uACC0\uACC2\uACC3\uACC5\uACC6\uACC7\uACC9\uACCA\uACCB\uACCD",7,"\uACD6\uACD8",7,"\uACE2\uACE3\uACE5\uACE6\uACE9\uACEB\uACED\uACEE\uACF2\uACF4\uACF7",4,"\uACFE\uACFF\uAD01\uAD02\uAD03\uAD05\uAD07",4,"\uAD0E\uAD10\uAD12\uAD13"],["8241","\uAD14\uAD15\uAD16\uAD17\uAD19\uAD1A\uAD1B\uAD1D\uAD1E\uAD1F\uAD21",7,"\uAD2A\uAD2B\uAD2E",5],["8261","\uAD36\uAD37\uAD39\uAD3A\uAD3B\uAD3D",6,"\uAD46\uAD48\uAD4A",5,"\uAD51\uAD52\uAD53\uAD55\uAD56\uAD57"],["8281","\uAD59",7,"\uAD62\uAD64",7,"\uAD6E\uAD6F\uAD71\uAD72\uAD77\uAD78\uAD79\uAD7A\uAD7E\uAD80\uAD83",4,"\uAD8A\uAD8B\uAD8D\uAD8E\uAD8F\uAD91",10,"\uAD9E",5,"\uADA5",17,"\uADB8",7,"\uADC2\uADC3\uADC5\uADC6\uADC7\uADC9",6,"\uADD2\uADD4",7,"\uADDD\uADDE\uADDF\uADE1\uADE2\uADE3\uADE5",18],["8341","\uADFA\uADFB\uADFD\uADFE\uAE02",5,"\uAE0A\uAE0C\uAE0E",5,"\uAE15",7],["8361","\uAE1D",18,"\uAE32\uAE33\uAE35\uAE36\uAE39\uAE3B\uAE3C"],["8381","\uAE3D\uAE3E\uAE3F\uAE42\uAE44\uAE47\uAE48\uAE49\uAE4B\uAE4F\uAE51\uAE52\uAE53\uAE55\uAE57",4,"\uAE5E\uAE62\uAE63\uAE64\uAE66\uAE67\uAE6A\uAE6B\uAE6D\uAE6E\uAE6F\uAE71",6,"\uAE7A\uAE7E",5,"\uAE86",5,"\uAE8D",46,"\uAEBF\uAEC1\uAEC2\uAEC3\uAEC5",6,"\uAECE\uAED2",5,"\uAEDA\uAEDB\uAEDD",8],["8441","\uAEE6\uAEE7\uAEE9\uAEEA\uAEEC\uAEEE",5,"\uAEF5\uAEF6\uAEF7\uAEF9\uAEFA\uAEFB\uAEFD",8],["8461","\uAF06\uAF09\uAF0A\uAF0B\uAF0C\uAF0E\uAF0F\uAF11",18],["8481","\uAF24",7,"\uAF2E\uAF2F\uAF31\uAF33\uAF35",6,"\uAF3E\uAF40\uAF44\uAF45\uAF46\uAF47\uAF4A",5,"\uAF51",10,"\uAF5E",5,"\uAF66",18,"\uAF7A",5,"\uAF81\uAF82\uAF83\uAF85\uAF86\uAF87\uAF89",6,"\uAF92\uAF93\uAF94\uAF96",5,"\uAF9D",26,"\uAFBA\uAFBB\uAFBD\uAFBE"],["8541","\uAFBF\uAFC1",5,"\uAFCA\uAFCC\uAFCF",4,"\uAFD5",6,"\uAFDD",4],["8561","\uAFE2",5,"\uAFEA",5,"\uAFF2\uAFF3\uAFF5\uAFF6\uAFF7\uAFF9",6,"\uB002\uB003"],["8581","\uB005",6,"\uB00D\uB00E\uB00F\uB011\uB012\uB013\uB015",6,"\uB01E",9,"\uB029",26,"\uB046\uB047\uB049\uB04B\uB04D\uB04F\uB050\uB051\uB052\uB056\uB058\uB05A\uB05B\uB05C\uB05E",29,"\uB07E\uB07F\uB081\uB082\uB083\uB085",6,"\uB08E\uB090\uB092",5,"\uB09B\uB09D\uB09E\uB0A3\uB0A4"],["8641","\uB0A5\uB0A6\uB0A7\uB0AA\uB0B0\uB0B2\uB0B6\uB0B7\uB0B9\uB0BA\uB0BB\uB0BD",6,"\uB0C6\uB0CA",5,"\uB0D2"],["8661","\uB0D3\uB0D5\uB0D6\uB0D7\uB0D9",6,"\uB0E1\uB0E2\uB0E3\uB0E4\uB0E6",10],["8681","\uB0F1",22,"\uB10A\uB10D\uB10E\uB10F\uB111\uB114\uB115\uB116\uB117\uB11A\uB11E",4,"\uB126\uB127\uB129\uB12A\uB12B\uB12D",6,"\uB136\uB13A",5,"\uB142\uB143\uB145\uB146\uB147\uB149",6,"\uB152\uB153\uB156\uB157\uB159\uB15A\uB15B\uB15D\uB15E\uB15F\uB161",22,"\uB17A\uB17B\uB17D\uB17E\uB17F\uB181\uB183",4,"\uB18A\uB18C\uB18E\uB18F\uB190\uB191\uB195\uB196\uB197\uB199\uB19A\uB19B\uB19D"],["8741","\uB19E",9,"\uB1A9",15],["8761","\uB1B9",18,"\uB1CD\uB1CE\uB1CF\uB1D1\uB1D2\uB1D3\uB1D5"],["8781","\uB1D6",5,"\uB1DE\uB1E0",7,"\uB1EA\uB1EB\uB1ED\uB1EE\uB1EF\uB1F1",7,"\uB1FA\uB1FC\uB1FE",5,"\uB206\uB207\uB209\uB20A\uB20D",6,"\uB216\uB218\uB21A",5,"\uB221",18,"\uB235",6,"\uB23D",26,"\uB259\uB25A\uB25B\uB25D\uB25E\uB25F\uB261",6,"\uB26A",4],["8841","\uB26F",4,"\uB276",5,"\uB27D",6,"\uB286\uB287\uB288\uB28A",4],["8861","\uB28F\uB292\uB293\uB295\uB296\uB297\uB29B",4,"\uB2A2\uB2A4\uB2A7\uB2A8\uB2A9\uB2AB\uB2AD\uB2AE\uB2AF\uB2B1\uB2B2\uB2B3\uB2B5\uB2B6\uB2B7"],["8881","\uB2B8",15,"\uB2CA\uB2CB\uB2CD\uB2CE\uB2CF\uB2D1\uB2D3",4,"\uB2DA\uB2DC\uB2DE\uB2DF\uB2E0\uB2E1\uB2E3\uB2E7\uB2E9\uB2EA\uB2F0\uB2F1\uB2F2\uB2F6\uB2FC\uB2FD\uB2FE\uB302\uB303\uB305\uB306\uB307\uB309",6,"\uB312\uB316",5,"\uB31D",54,"\uB357\uB359\uB35A\uB35D\uB360\uB361\uB362\uB363"],["8941","\uB366\uB368\uB36A\uB36C\uB36D\uB36F\uB372\uB373\uB375\uB376\uB377\uB379",6,"\uB382\uB386",5,"\uB38D"],["8961","\uB38E\uB38F\uB391\uB392\uB393\uB395",10,"\uB3A2",5,"\uB3A9\uB3AA\uB3AB\uB3AD"],["8981","\uB3AE",21,"\uB3C6\uB3C7\uB3C9\uB3CA\uB3CD\uB3CF\uB3D1\uB3D2\uB3D3\uB3D6\uB3D8\uB3DA\uB3DC\uB3DE\uB3DF\uB3E1\uB3E2\uB3E3\uB3E5\uB3E6\uB3E7\uB3E9",18,"\uB3FD",18,"\uB411",6,"\uB419\uB41A\uB41B\uB41D\uB41E\uB41F\uB421",6,"\uB42A\uB42C",7,"\uB435",15],["8a41","\uB445",10,"\uB452\uB453\uB455\uB456\uB457\uB459",6,"\uB462\uB464\uB466"],["8a61","\uB467",4,"\uB46D",18,"\uB481\uB482"],["8a81","\uB483",4,"\uB489",19,"\uB49E",5,"\uB4A5\uB4A6\uB4A7\uB4A9\uB4AA\uB4AB\uB4AD",7,"\uB4B6\uB4B8\uB4BA",5,"\uB4C1\uB4C2\uB4C3\uB4C5\uB4C6\uB4C7\uB4C9",6,"\uB4D1\uB4D2\uB4D3\uB4D4\uB4D6",5,"\uB4DE\uB4DF\uB4E1\uB4E2\uB4E5\uB4E7",4,"\uB4EE\uB4F0\uB4F2",5,"\uB4F9",26,"\uB516\uB517\uB519\uB51A\uB51D"],["8b41","\uB51E",5,"\uB526\uB52B",4,"\uB532\uB533\uB535\uB536\uB537\uB539",6,"\uB542\uB546"],["8b61","\uB547\uB548\uB549\uB54A\uB54E\uB54F\uB551\uB552\uB553\uB555",6,"\uB55E\uB562",8],["8b81","\uB56B",52,"\uB5A2\uB5A3\uB5A5\uB5A6\uB5A7\uB5A9\uB5AC\uB5AD\uB5AE\uB5AF\uB5B2\uB5B6",4,"\uB5BE\uB5BF\uB5C1\uB5C2\uB5C3\uB5C5",6,"\uB5CE\uB5D2",5,"\uB5D9",18,"\uB5ED",18],["8c41","\uB600",15,"\uB612\uB613\uB615\uB616\uB617\uB619",4],["8c61","\uB61E",6,"\uB626",5,"\uB62D",6,"\uB635",5],["8c81","\uB63B",12,"\uB649",26,"\uB665\uB666\uB667\uB669",50,"\uB69E\uB69F\uB6A1\uB6A2\uB6A3\uB6A5",5,"\uB6AD\uB6AE\uB6AF\uB6B0\uB6B2",16],["8d41","\uB6C3",16,"\uB6D5",8],["8d61","\uB6DE",17,"\uB6F1\uB6F2\uB6F3\uB6F5\uB6F6\uB6F7\uB6F9\uB6FA"],["8d81","\uB6FB",4,"\uB702\uB703\uB704\uB706",33,"\uB72A\uB72B\uB72D\uB72E\uB731",6,"\uB73A\uB73C",7,"\uB745\uB746\uB747\uB749\uB74A\uB74B\uB74D",6,"\uB756",9,"\uB761\uB762\uB763\uB765\uB766\uB767\uB769",6,"\uB772\uB774\uB776",5,"\uB77E\uB77F\uB781\uB782\uB783\uB785",6,"\uB78E\uB793\uB794\uB795\uB79A\uB79B\uB79D\uB79E"],["8e41","\uB79F\uB7A1",6,"\uB7AA\uB7AE",5,"\uB7B6\uB7B7\uB7B9",8],["8e61","\uB7C2",4,"\uB7C8\uB7CA",19],["8e81","\uB7DE",13,"\uB7EE\uB7EF\uB7F1\uB7F2\uB7F3\uB7F5",6,"\uB7FE\uB802",4,"\uB80A\uB80B\uB80D\uB80E\uB80F\uB811",6,"\uB81A\uB81C\uB81E",5,"\uB826\uB827\uB829\uB82A\uB82B\uB82D",6,"\uB836\uB83A",5,"\uB841\uB842\uB843\uB845",11,"\uB852\uB854",7,"\uB85E\uB85F\uB861\uB862\uB863\uB865",6,"\uB86E\uB870\uB872",5,"\uB879\uB87A\uB87B\uB87D",7],["8f41","\uB885",7,"\uB88E",17],["8f61","\uB8A0",7,"\uB8A9",6,"\uB8B1\uB8B2\uB8B3\uB8B5\uB8B6\uB8B7\uB8B9",4],["8f81","\uB8BE\uB8BF\uB8C2\uB8C4\uB8C6",5,"\uB8CD\uB8CE\uB8CF\uB8D1\uB8D2\uB8D3\uB8D5",7,"\uB8DE\uB8E0\uB8E2",5,"\uB8EA\uB8EB\uB8ED\uB8EE\uB8EF\uB8F1",6,"\uB8FA\uB8FC\uB8FE",5,"\uB905",18,"\uB919",6,"\uB921",26,"\uB93E\uB93F\uB941\uB942\uB943\uB945",6,"\uB94D\uB94E\uB950\uB952",5],["9041","\uB95A\uB95B\uB95D\uB95E\uB95F\uB961",6,"\uB96A\uB96C\uB96E",5,"\uB976\uB977\uB979\uB97A\uB97B\uB97D"],["9061","\uB97E",5,"\uB986\uB988\uB98B\uB98C\uB98F",15],["9081","\uB99F",12,"\uB9AE\uB9AF\uB9B1\uB9B2\uB9B3\uB9B5",6,"\uB9BE\uB9C0\uB9C2",5,"\uB9CA\uB9CB\uB9CD\uB9D3",4,"\uB9DA\uB9DC\uB9DF\uB9E0\uB9E2\uB9E6\uB9E7\uB9E9\uB9EA\uB9EB\uB9ED",6,"\uB9F6\uB9FB",4,"\uBA02",5,"\uBA09",11,"\uBA16",33,"\uBA3A\uBA3B\uBA3D\uBA3E\uBA3F\uBA41\uBA43\uBA44\uBA45\uBA46"],["9141","\uBA47\uBA4A\uBA4C\uBA4F\uBA50\uBA51\uBA52\uBA56\uBA57\uBA59\uBA5A\uBA5B\uBA5D",6,"\uBA66\uBA6A",5],["9161","\uBA72\uBA73\uBA75\uBA76\uBA77\uBA79",9,"\uBA86\uBA88\uBA89\uBA8A\uBA8B\uBA8D",5],["9181","\uBA93",20,"\uBAAA\uBAAD\uBAAE\uBAAF\uBAB1\uBAB3",4,"\uBABA\uBABC\uBABE",5,"\uBAC5\uBAC6\uBAC7\uBAC9",14,"\uBADA",33,"\uBAFD\uBAFE\uBAFF\uBB01\uBB02\uBB03\uBB05",7,"\uBB0E\uBB10\uBB12",5,"\uBB19\uBB1A\uBB1B\uBB1D\uBB1E\uBB1F\uBB21",6],["9241","\uBB28\uBB2A\uBB2C",7,"\uBB37\uBB39\uBB3A\uBB3F",4,"\uBB46\uBB48\uBB4A\uBB4B\uBB4C\uBB4E\uBB51\uBB52"],["9261","\uBB53\uBB55\uBB56\uBB57\uBB59",7,"\uBB62\uBB64",7,"\uBB6D",4],["9281","\uBB72",21,"\uBB89\uBB8A\uBB8B\uBB8D\uBB8E\uBB8F\uBB91",18,"\uBBA5\uBBA6\uBBA7\uBBA9\uBBAA\uBBAB\uBBAD",6,"\uBBB5\uBBB6\uBBB8",7,"\uBBC1\uBBC2\uBBC3\uBBC5\uBBC6\uBBC7\uBBC9",6,"\uBBD1\uBBD2\uBBD4",35,"\uBBFA\uBBFB\uBBFD\uBBFE\uBC01"],["9341","\uBC03",4,"\uBC0A\uBC0E\uBC10\uBC12\uBC13\uBC19\uBC1A\uBC20\uBC21\uBC22\uBC23\uBC26\uBC28\uBC2A\uBC2B\uBC2C\uBC2E\uBC2F\uBC32\uBC33\uBC35"],["9361","\uBC36\uBC37\uBC39",6,"\uBC42\uBC46\uBC47\uBC48\uBC4A\uBC4B\uBC4E\uBC4F\uBC51",8],["9381","\uBC5A\uBC5B\uBC5C\uBC5E",37,"\uBC86\uBC87\uBC89\uBC8A\uBC8D\uBC8F",4,"\uBC96\uBC98\uBC9B",4,"\uBCA2\uBCA3\uBCA5\uBCA6\uBCA9",6,"\uBCB2\uBCB6",5,"\uBCBE\uBCBF\uBCC1\uBCC2\uBCC3\uBCC5",7,"\uBCCE\uBCD2\uBCD3\uBCD4\uBCD6\uBCD7\uBCD9\uBCDA\uBCDB\uBCDD",22,"\uBCF7\uBCF9\uBCFA\uBCFB\uBCFD"],["9441","\uBCFE",5,"\uBD06\uBD08\uBD0A",5,"\uBD11\uBD12\uBD13\uBD15",8],["9461","\uBD1E",5,"\uBD25",6,"\uBD2D",12],["9481","\uBD3A",5,"\uBD41",6,"\uBD4A\uBD4B\uBD4D\uBD4E\uBD4F\uBD51",6,"\uBD5A",9,"\uBD65\uBD66\uBD67\uBD69",22,"\uBD82\uBD83\uBD85\uBD86\uBD8B",4,"\uBD92\uBD94\uBD96\uBD97\uBD98\uBD9B\uBD9D",6,"\uBDA5",10,"\uBDB1",6,"\uBDB9",24],["9541","\uBDD2\uBDD3\uBDD6\uBDD7\uBDD9\uBDDA\uBDDB\uBDDD",11,"\uBDEA",5,"\uBDF1"],["9561","\uBDF2\uBDF3\uBDF5\uBDF6\uBDF7\uBDF9",6,"\uBE01\uBE02\uBE04\uBE06",5,"\uBE0E\uBE0F\uBE11\uBE12\uBE13"],["9581","\uBE15",6,"\uBE1E\uBE20",35,"\uBE46\uBE47\uBE49\uBE4A\uBE4B\uBE4D\uBE4F",4,"\uBE56\uBE58\uBE5C\uBE5D\uBE5E\uBE5F\uBE62\uBE63\uBE65\uBE66\uBE67\uBE69\uBE6B",4,"\uBE72\uBE76",4,"\uBE7E\uBE7F\uBE81\uBE82\uBE83\uBE85",6,"\uBE8E\uBE92",5,"\uBE9A",13,"\uBEA9",14],["9641","\uBEB8",23,"\uBED2\uBED3"],["9661","\uBED5\uBED6\uBED9",6,"\uBEE1\uBEE2\uBEE6",5,"\uBEED",8],["9681","\uBEF6",10,"\uBF02",5,"\uBF0A",13,"\uBF1A\uBF1E",33,"\uBF42\uBF43\uBF45\uBF46\uBF47\uBF49",6,"\uBF52\uBF53\uBF54\uBF56",44],["9741","\uBF83",16,"\uBF95",8],["9761","\uBF9E",17,"\uBFB1",7],["9781","\uBFB9",11,"\uBFC6",5,"\uBFCE\uBFCF\uBFD1\uBFD2\uBFD3\uBFD5",6,"\uBFDD\uBFDE\uBFE0\uBFE2",89,"\uC03D\uC03E\uC03F"],["9841","\uC040",16,"\uC052",5,"\uC059\uC05A\uC05B"],["9861","\uC05D\uC05E\uC05F\uC061",6,"\uC06A",15],["9881","\uC07A",21,"\uC092\uC093\uC095\uC096\uC097\uC099",6,"\uC0A2\uC0A4\uC0A6",5,"\uC0AE\uC0B1\uC0B2\uC0B7",4,"\uC0BE\uC0C2\uC0C3\uC0C4\uC0C6\uC0C7\uC0CA\uC0CB\uC0CD\uC0CE\uC0CF\uC0D1",6,"\uC0DA\uC0DE",5,"\uC0E6\uC0E7\uC0E9\uC0EA\uC0EB\uC0ED",6,"\uC0F6\uC0F8\uC0FA",5,"\uC101\uC102\uC103\uC105\uC106\uC107\uC109",6,"\uC111\uC112\uC113\uC114\uC116",5,"\uC121\uC122\uC125\uC128\uC129\uC12A\uC12B\uC12E"],["9941","\uC132\uC133\uC134\uC135\uC137\uC13A\uC13B\uC13D\uC13E\uC13F\uC141",6,"\uC14A\uC14E",5,"\uC156\uC157"],["9961","\uC159\uC15A\uC15B\uC15D",6,"\uC166\uC16A",5,"\uC171\uC172\uC173\uC175\uC176\uC177\uC179\uC17A\uC17B"],["9981","\uC17C",8,"\uC186",5,"\uC18F\uC191\uC192\uC193\uC195\uC197",4,"\uC19E\uC1A0\uC1A2\uC1A3\uC1A4\uC1A6\uC1A7\uC1AA\uC1AB\uC1AD\uC1AE\uC1AF\uC1B1",11,"\uC1BE",5,"\uC1C5\uC1C6\uC1C7\uC1C9\uC1CA\uC1CB\uC1CD",6,"\uC1D5\uC1D6\uC1D9",6,"\uC1E1\uC1E2\uC1E3\uC1E5\uC1E6\uC1E7\uC1E9",6,"\uC1F2\uC1F4",7,"\uC1FE\uC1FF\uC201\uC202\uC203\uC205",6,"\uC20E\uC210\uC212",5,"\uC21A\uC21B\uC21D\uC21E\uC221\uC222\uC223"],["9a41","\uC224\uC225\uC226\uC227\uC22A\uC22C\uC22E\uC230\uC233\uC235",16],["9a61","\uC246\uC247\uC249",6,"\uC252\uC253\uC255\uC256\uC257\uC259",6,"\uC261\uC262\uC263\uC264\uC266"],["9a81","\uC267",4,"\uC26E\uC26F\uC271\uC272\uC273\uC275",6,"\uC27E\uC280\uC282",5,"\uC28A",5,"\uC291",6,"\uC299\uC29A\uC29C\uC29E",5,"\uC2A6\uC2A7\uC2A9\uC2AA\uC2AB\uC2AE",5,"\uC2B6\uC2B8\uC2BA",33,"\uC2DE\uC2DF\uC2E1\uC2E2\uC2E5",5,"\uC2EE\uC2F0\uC2F2\uC2F3\uC2F4\uC2F5\uC2F7\uC2FA\uC2FD\uC2FE\uC2FF\uC301",6,"\uC30A\uC30B\uC30E\uC30F"],["9b41","\uC310\uC311\uC312\uC316\uC317\uC319\uC31A\uC31B\uC31D",6,"\uC326\uC327\uC32A",8],["9b61","\uC333",17,"\uC346",7],["9b81","\uC34E",25,"\uC36A\uC36B\uC36D\uC36E\uC36F\uC371\uC373",4,"\uC37A\uC37B\uC37E",5,"\uC385\uC386\uC387\uC389\uC38A\uC38B\uC38D",50,"\uC3C1",22,"\uC3DA"],["9c41","\uC3DB\uC3DD\uC3DE\uC3E1\uC3E3",4,"\uC3EA\uC3EB\uC3EC\uC3EE",5,"\uC3F6\uC3F7\uC3F9",5],["9c61","\uC3FF",8,"\uC409",6,"\uC411",9],["9c81","\uC41B",8,"\uC425",6,"\uC42D\uC42E\uC42F\uC431\uC432\uC433\uC435",6,"\uC43E",9,"\uC449",26,"\uC466\uC467\uC469\uC46A\uC46B\uC46D",6,"\uC476\uC477\uC478\uC47A",5,"\uC481",18,"\uC495",6,"\uC49D",12],["9d41","\uC4AA",13,"\uC4B9\uC4BA\uC4BB\uC4BD",8],["9d61","\uC4C6",25],["9d81","\uC4E0",8,"\uC4EA",5,"\uC4F2\uC4F3\uC4F5\uC4F6\uC4F7\uC4F9\uC4FB\uC4FC\uC4FD\uC4FE\uC502",9,"\uC50D\uC50E\uC50F\uC511\uC512\uC513\uC515",6,"\uC51D",10,"\uC52A\uC52B\uC52D\uC52E\uC52F\uC531",6,"\uC53A\uC53C\uC53E",5,"\uC546\uC547\uC54B\uC54F\uC550\uC551\uC552\uC556\uC55A\uC55B\uC55C\uC55F\uC562\uC563\uC565\uC566\uC567\uC569",6,"\uC572\uC576",5,"\uC57E\uC57F\uC581\uC582\uC583\uC585\uC586\uC588\uC589\uC58A\uC58B\uC58E\uC590\uC592\uC593\uC594"],["9e41","\uC596\uC599\uC59A\uC59B\uC59D\uC59E\uC59F\uC5A1",7,"\uC5AA",9,"\uC5B6"],["9e61","\uC5B7\uC5BA\uC5BF",4,"\uC5CB\uC5CD\uC5CF\uC5D2\uC5D3\uC5D5\uC5D6\uC5D7\uC5D9",6,"\uC5E2\uC5E4\uC5E6\uC5E7"],["9e81","\uC5E8\uC5E9\uC5EA\uC5EB\uC5EF\uC5F1\uC5F2\uC5F3\uC5F5\uC5F8\uC5F9\uC5FA\uC5FB\uC602\uC603\uC604\uC609\uC60A\uC60B\uC60D\uC60E\uC60F\uC611",6,"\uC61A\uC61D",6,"\uC626\uC627\uC629\uC62A\uC62B\uC62F\uC631\uC632\uC636\uC638\uC63A\uC63C\uC63D\uC63E\uC63F\uC642\uC643\uC645\uC646\uC647\uC649",6,"\uC652\uC656",5,"\uC65E\uC65F\uC661",10,"\uC66D\uC66E\uC670\uC672",5,"\uC67A\uC67B\uC67D\uC67E\uC67F\uC681",6,"\uC68A\uC68C\uC68E",5,"\uC696\uC697\uC699\uC69A\uC69B\uC69D",6,"\uC6A6"],["9f41","\uC6A8\uC6AA",5,"\uC6B2\uC6B3\uC6B5\uC6B6\uC6B7\uC6BB",4,"\uC6C2\uC6C4\uC6C6",5,"\uC6CE"],["9f61","\uC6CF\uC6D1\uC6D2\uC6D3\uC6D5",6,"\uC6DE\uC6DF\uC6E2",5,"\uC6EA\uC6EB\uC6ED\uC6EE\uC6EF\uC6F1\uC6F2"],["9f81","\uC6F3",4,"\uC6FA\uC6FB\uC6FC\uC6FE",5,"\uC706\uC707\uC709\uC70A\uC70B\uC70D",6,"\uC716\uC718\uC71A",5,"\uC722\uC723\uC725\uC726\uC727\uC729",6,"\uC732\uC734\uC736\uC738\uC739\uC73A\uC73B\uC73E\uC73F\uC741\uC742\uC743\uC745",4,"\uC74B\uC74E\uC750\uC759\uC75A\uC75B\uC75D\uC75E\uC75F\uC761",6,"\uC769\uC76A\uC76C",7,"\uC776\uC777\uC779\uC77A\uC77B\uC77F\uC780\uC781\uC782\uC786\uC78B\uC78C\uC78D\uC78F\uC792\uC793\uC795\uC799\uC79B",4,"\uC7A2\uC7A7",4,"\uC7AE\uC7AF\uC7B1\uC7B2\uC7B3\uC7B5\uC7B6\uC7B7"],["a041","\uC7B8\uC7B9\uC7BA\uC7BB\uC7BE\uC7C2",5,"\uC7CA\uC7CB\uC7CD\uC7CF\uC7D1",6,"\uC7D9\uC7DA\uC7DB\uC7DC"],["a061","\uC7DE",5,"\uC7E5\uC7E6\uC7E7\uC7E9\uC7EA\uC7EB\uC7ED",13],["a081","\uC7FB",4,"\uC802\uC803\uC805\uC806\uC807\uC809\uC80B",4,"\uC812\uC814\uC817",4,"\uC81E\uC81F\uC821\uC822\uC823\uC825",6,"\uC82E\uC830\uC832",5,"\uC839\uC83A\uC83B\uC83D\uC83E\uC83F\uC841",6,"\uC84A\uC84B\uC84E",5,"\uC855",26,"\uC872\uC873\uC875\uC876\uC877\uC879\uC87B",4,"\uC882\uC884\uC888\uC889\uC88A\uC88E",5,"\uC895",7,"\uC89E\uC8A0\uC8A2\uC8A3\uC8A4"],["a141","\uC8A5\uC8A6\uC8A7\uC8A9",18,"\uC8BE\uC8BF\uC8C0\uC8C1"],["a161","\uC8C2\uC8C3\uC8C5\uC8C6\uC8C7\uC8C9\uC8CA\uC8CB\uC8CD",6,"\uC8D6\uC8D8\uC8DA",5,"\uC8E2\uC8E3\uC8E5"],["a181","\uC8E6",14,"\uC8F6",5,"\uC8FE\uC8FF\uC901\uC902\uC903\uC907",4,"\uC90E\u3000\u3001\u3002\xB7\u2025\u2026\xA8\u3003\xAD\u2015\u2225\uFF3C\u223C\u2018\u2019\u201C\u201D\u3014\u3015\u3008",9,"\xB1\xD7\xF7\u2260\u2264\u2265\u221E\u2234\xB0\u2032\u2033\u2103\u212B\uFFE0\uFFE1\uFFE5\u2642\u2640\u2220\u22A5\u2312\u2202\u2207\u2261\u2252\xA7\u203B\u2606\u2605\u25CB\u25CF\u25CE\u25C7\u25C6\u25A1\u25A0\u25B3\u25B2\u25BD\u25BC\u2192\u2190\u2191\u2193\u2194\u3013\u226A\u226B\u221A\u223D\u221D\u2235\u222B\u222C\u2208\u220B\u2286\u2287\u2282\u2283\u222A\u2229\u2227\u2228\uFFE2"],["a241","\uC910\uC912",5,"\uC919",18],["a261","\uC92D",6,"\uC935",18],["a281","\uC948",7,"\uC952\uC953\uC955\uC956\uC957\uC959",6,"\uC962\uC964",7,"\uC96D\uC96E\uC96F\u21D2\u21D4\u2200\u2203\xB4\uFF5E\u02C7\u02D8\u02DD\u02DA\u02D9\xB8\u02DB\xA1\xBF\u02D0\u222E\u2211\u220F\xA4\u2109\u2030\u25C1\u25C0\u25B7\u25B6\u2664\u2660\u2661\u2665\u2667\u2663\u2299\u25C8\u25A3\u25D0\u25D1\u2592\u25A4\u25A5\u25A8\u25A7\u25A6\u25A9\u2668\u260F\u260E\u261C\u261E\xB6\u2020\u2021\u2195\u2197\u2199\u2196\u2198\u266D\u2669\u266A\u266C\u327F\u321C\u2116\u33C7\u2122\u33C2\u33D8\u2121\u20AC\xAE"],["a341","\uC971\uC972\uC973\uC975",6,"\uC97D",10,"\uC98A\uC98B\uC98D\uC98E\uC98F"],["a361","\uC991",6,"\uC99A\uC99C\uC99E",16],["a381","\uC9AF",16,"\uC9C2\uC9C3\uC9C5\uC9C6\uC9C9\uC9CB",4,"\uC9D2\uC9D4\uC9D7\uC9D8\uC9DB\uFF01",58,"\uFFE6\uFF3D",32,"\uFFE3"],["a441","\uC9DE\uC9DF\uC9E1\uC9E3\uC9E5\uC9E6\uC9E8\uC9E9\uC9EA\uC9EB\uC9EE\uC9F2",5,"\uC9FA\uC9FB\uC9FD\uC9FE\uC9FF\uCA01\uCA02\uCA03\uCA04"],["a461","\uCA05\uCA06\uCA07\uCA0A\uCA0E",5,"\uCA15\uCA16\uCA17\uCA19",12],["a481","\uCA26\uCA27\uCA28\uCA2A",28,"\u3131",93],["a541","\uCA47",4,"\uCA4E\uCA4F\uCA51\uCA52\uCA53\uCA55",6,"\uCA5E\uCA62",5,"\uCA69\uCA6A"],["a561","\uCA6B",17,"\uCA7E",5,"\uCA85\uCA86"],["a581","\uCA87",16,"\uCA99",14,"\u2170",9],["a5b0","\u2160",9],["a5c1","\u0391",16,"\u03A3",6],["a5e1","\u03B1",16,"\u03C3",6],["a641","\uCAA8",19,"\uCABE\uCABF\uCAC1\uCAC2\uCAC3\uCAC5"],["a661","\uCAC6",5,"\uCACE\uCAD0\uCAD2\uCAD4\uCAD5\uCAD6\uCAD7\uCADA",5,"\uCAE1",6],["a681","\uCAE8\uCAE9\uCAEA\uCAEB\uCAED",6,"\uCAF5",18,"\uCB09\uCB0A\u2500\u2502\u250C\u2510\u2518\u2514\u251C\u252C\u2524\u2534\u253C\u2501\u2503\u250F\u2513\u251B\u2517\u2523\u2533\u252B\u253B\u254B\u2520\u252F\u2528\u2537\u253F\u251D\u2530\u2525\u2538\u2542\u2512\u2511\u251A\u2519\u2516\u2515\u250E\u250D\u251E\u251F\u2521\u2522\u2526\u2527\u2529\u252A\u252D\u252E\u2531\u2532\u2535\u2536\u2539\u253A\u253D\u253E\u2540\u2541\u2543",7],["a741","\uCB0B",4,"\uCB11\uCB12\uCB13\uCB15\uCB16\uCB17\uCB19",6,"\uCB22",7],["a761","\uCB2A",22,"\uCB42\uCB43\uCB44"],["a781","\uCB45\uCB46\uCB47\uCB4A\uCB4B\uCB4D\uCB4E\uCB4F\uCB51",6,"\uCB5A\uCB5B\uCB5C\uCB5E",5,"\uCB65",7,"\u3395\u3396\u3397\u2113\u3398\u33C4\u33A3\u33A4\u33A5\u33A6\u3399",9,"\u33CA\u338D\u338E\u338F\u33CF\u3388\u3389\u33C8\u33A7\u33A8\u33B0",9,"\u3380",4,"\u33BA",5,"\u3390",4,"\u2126\u33C0\u33C1\u338A\u338B\u338C\u33D6\u33C5\u33AD\u33AE\u33AF\u33DB\u33A9\u33AA\u33AB\u33AC\u33DD\u33D0\u33D3\u33C3\u33C9\u33DC\u33C6"],["a841","\uCB6D",10,"\uCB7A",14],["a861","\uCB89",18,"\uCB9D",6],["a881","\uCBA4",19,"\uCBB9",11,"\xC6\xD0\xAA\u0126"],["a8a6","\u0132"],["a8a8","\u013F\u0141\xD8\u0152\xBA\xDE\u0166\u014A"],["a8b1","\u3260",27,"\u24D0",25,"\u2460",14,"\xBD\u2153\u2154\xBC\xBE\u215B\u215C\u215D\u215E"],["a941","\uCBC5",14,"\uCBD5",10],["a961","\uCBE0\uCBE1\uCBE2\uCBE3\uCBE5\uCBE6\uCBE8\uCBEA",18],["a981","\uCBFD",14,"\uCC0E\uCC0F\uCC11\uCC12\uCC13\uCC15",6,"\uCC1E\uCC1F\uCC20\uCC23\uCC24\xE6\u0111\xF0\u0127\u0131\u0133\u0138\u0140\u0142\xF8\u0153\xDF\xFE\u0167\u014B\u0149\u3200",27,"\u249C",25,"\u2474",14,"\xB9\xB2\xB3\u2074\u207F\u2081\u2082\u2083\u2084"],["aa41","\uCC25\uCC26\uCC2A\uCC2B\uCC2D\uCC2F\uCC31",6,"\uCC3A\uCC3F",4,"\uCC46\uCC47\uCC49\uCC4A\uCC4B\uCC4D\uCC4E"],["aa61","\uCC4F",4,"\uCC56\uCC5A",5,"\uCC61\uCC62\uCC63\uCC65\uCC67\uCC69",6,"\uCC71\uCC72"],["aa81","\uCC73\uCC74\uCC76",29,"\u3041",82],["ab41","\uCC94\uCC95\uCC96\uCC97\uCC9A\uCC9B\uCC9D\uCC9E\uCC9F\uCCA1",6,"\uCCAA\uCCAE",5,"\uCCB6\uCCB7\uCCB9"],["ab61","\uCCBA\uCCBB\uCCBD",6,"\uCCC6\uCCC8\uCCCA",5,"\uCCD1\uCCD2\uCCD3\uCCD5",5],["ab81","\uCCDB",8,"\uCCE5",6,"\uCCED\uCCEE\uCCEF\uCCF1",12,"\u30A1",85],["ac41","\uCCFE\uCCFF\uCD00\uCD02",5,"\uCD0A\uCD0B\uCD0D\uCD0E\uCD0F\uCD11",6,"\uCD1A\uCD1C\uCD1E\uCD1F\uCD20"],["ac61","\uCD21\uCD22\uCD23\uCD25\uCD26\uCD27\uCD29\uCD2A\uCD2B\uCD2D",11,"\uCD3A",4],["ac81","\uCD3F",28,"\uCD5D\uCD5E\uCD5F\u0410",5,"\u0401\u0416",25],["acd1","\u0430",5,"\u0451\u0436",25],["ad41","\uCD61\uCD62\uCD63\uCD65",6,"\uCD6E\uCD70\uCD72",5,"\uCD79",7],["ad61","\uCD81",6,"\uCD89",10,"\uCD96\uCD97\uCD99\uCD9A\uCD9B\uCD9D\uCD9E\uCD9F"],["ad81","\uCDA0\uCDA1\uCDA2\uCDA3\uCDA6\uCDA8\uCDAA",5,"\uCDB1",18,"\uCDC5"],["ae41","\uCDC6",5,"\uCDCD\uCDCE\uCDCF\uCDD1",16],["ae61","\uCDE2",5,"\uCDE9\uCDEA\uCDEB\uCDED\uCDEE\uCDEF\uCDF1",6,"\uCDFA\uCDFC\uCDFE",4],["ae81","\uCE03\uCE05\uCE06\uCE07\uCE09\uCE0A\uCE0B\uCE0D",6,"\uCE15\uCE16\uCE17\uCE18\uCE1A",5,"\uCE22\uCE23\uCE25\uCE26\uCE27\uCE29\uCE2A\uCE2B"],["af41","\uCE2C\uCE2D\uCE2E\uCE2F\uCE32\uCE34\uCE36",19],["af61","\uCE4A",13,"\uCE5A\uCE5B\uCE5D\uCE5E\uCE62",5,"\uCE6A\uCE6C"],["af81","\uCE6E",5,"\uCE76\uCE77\uCE79\uCE7A\uCE7B\uCE7D",6,"\uCE86\uCE88\uCE8A",5,"\uCE92\uCE93\uCE95\uCE96\uCE97\uCE99"],["b041","\uCE9A",5,"\uCEA2\uCEA6",5,"\uCEAE",12],["b061","\uCEBB",5,"\uCEC2",19],["b081","\uCED6",13,"\uCEE6\uCEE7\uCEE9\uCEEA\uCEED",6,"\uCEF6\uCEFA",5,"\uAC00\uAC01\uAC04\uAC07\uAC08\uAC09\uAC0A\uAC10",7,"\uAC19",4,"\uAC20\uAC24\uAC2C\uAC2D\uAC2F\uAC30\uAC31\uAC38\uAC39\uAC3C\uAC40\uAC4B\uAC4D\uAC54\uAC58\uAC5C\uAC70\uAC71\uAC74\uAC77\uAC78\uAC7A\uAC80\uAC81\uAC83\uAC84\uAC85\uAC86\uAC89\uAC8A\uAC8B\uAC8C\uAC90\uAC94\uAC9C\uAC9D\uAC9F\uACA0\uACA1\uACA8\uACA9\uACAA\uACAC\uACAF\uACB0\uACB8\uACB9\uACBB\uACBC\uACBD\uACC1\uACC4\uACC8\uACCC\uACD5\uACD7\uACE0\uACE1\uACE4\uACE7\uACE8\uACEA\uACEC\uACEF\uACF0\uACF1\uACF3\uACF5\uACF6\uACFC\uACFD\uAD00\uAD04\uAD06"],["b141","\uCF02\uCF03\uCF05\uCF06\uCF07\uCF09",6,"\uCF12\uCF14\uCF16",5,"\uCF1D\uCF1E\uCF1F\uCF21\uCF22\uCF23"],["b161","\uCF25",6,"\uCF2E\uCF32",5,"\uCF39",11],["b181","\uCF45",14,"\uCF56\uCF57\uCF59\uCF5A\uCF5B\uCF5D",6,"\uCF66\uCF68\uCF6A\uCF6B\uCF6C\uAD0C\uAD0D\uAD0F\uAD11\uAD18\uAD1C\uAD20\uAD29\uAD2C\uAD2D\uAD34\uAD35\uAD38\uAD3C\uAD44\uAD45\uAD47\uAD49\uAD50\uAD54\uAD58\uAD61\uAD63\uAD6C\uAD6D\uAD70\uAD73\uAD74\uAD75\uAD76\uAD7B\uAD7C\uAD7D\uAD7F\uAD81\uAD82\uAD88\uAD89\uAD8C\uAD90\uAD9C\uAD9D\uADA4\uADB7\uADC0\uADC1\uADC4\uADC8\uADD0\uADD1\uADD3\uADDC\uADE0\uADE4\uADF8\uADF9\uADFC\uADFF\uAE00\uAE01\uAE08\uAE09\uAE0B\uAE0D\uAE14\uAE30\uAE31\uAE34\uAE37\uAE38\uAE3A\uAE40\uAE41\uAE43\uAE45\uAE46\uAE4A\uAE4C\uAE4D\uAE4E\uAE50\uAE54\uAE56\uAE5C\uAE5D\uAE5F\uAE60\uAE61\uAE65\uAE68\uAE69\uAE6C\uAE70\uAE78"],["b241","\uCF6D\uCF6E\uCF6F\uCF72\uCF73\uCF75\uCF76\uCF77\uCF79",6,"\uCF81\uCF82\uCF83\uCF84\uCF86",5,"\uCF8D"],["b261","\uCF8E",18,"\uCFA2",5,"\uCFA9"],["b281","\uCFAA",5,"\uCFB1",18,"\uCFC5",6,"\uAE79\uAE7B\uAE7C\uAE7D\uAE84\uAE85\uAE8C\uAEBC\uAEBD\uAEBE\uAEC0\uAEC4\uAECC\uAECD\uAECF\uAED0\uAED1\uAED8\uAED9\uAEDC\uAEE8\uAEEB\uAEED\uAEF4\uAEF8\uAEFC\uAF07\uAF08\uAF0D\uAF10\uAF2C\uAF2D\uAF30\uAF32\uAF34\uAF3C\uAF3D\uAF3F\uAF41\uAF42\uAF43\uAF48\uAF49\uAF50\uAF5C\uAF5D\uAF64\uAF65\uAF79\uAF80\uAF84\uAF88\uAF90\uAF91\uAF95\uAF9C\uAFB8\uAFB9\uAFBC\uAFC0\uAFC7\uAFC8\uAFC9\uAFCB\uAFCD\uAFCE\uAFD4\uAFDC\uAFE8\uAFE9\uAFF0\uAFF1\uAFF4\uAFF8\uB000\uB001\uB004\uB00C\uB010\uB014\uB01C\uB01D\uB028\uB044\uB045\uB048\uB04A\uB04C\uB04E\uB053\uB054\uB055\uB057\uB059"],["b341","\uCFCC",19,"\uCFE2\uCFE3\uCFE5\uCFE6\uCFE7\uCFE9"],["b361","\uCFEA",5,"\uCFF2\uCFF4\uCFF6",5,"\uCFFD\uCFFE\uCFFF\uD001\uD002\uD003\uD005",5],["b381","\uD00B",5,"\uD012",5,"\uD019",19,"\uB05D\uB07C\uB07D\uB080\uB084\uB08C\uB08D\uB08F\uB091\uB098\uB099\uB09A\uB09C\uB09F\uB0A0\uB0A1\uB0A2\uB0A8\uB0A9\uB0AB",4,"\uB0B1\uB0B3\uB0B4\uB0B5\uB0B8\uB0BC\uB0C4\uB0C5\uB0C7\uB0C8\uB0C9\uB0D0\uB0D1\uB0D4\uB0D8\uB0E0\uB0E5\uB108\uB109\uB10B\uB10C\uB110\uB112\uB113\uB118\uB119\uB11B\uB11C\uB11D\uB123\uB124\uB125\uB128\uB12C\uB134\uB135\uB137\uB138\uB139\uB140\uB141\uB144\uB148\uB150\uB151\uB154\uB155\uB158\uB15C\uB160\uB178\uB179\uB17C\uB180\uB182\uB188\uB189\uB18B\uB18D\uB192\uB193\uB194\uB198\uB19C\uB1A8\uB1CC\uB1D0\uB1D4\uB1DC\uB1DD"],["b441","\uD02E",5,"\uD036\uD037\uD039\uD03A\uD03B\uD03D",6,"\uD046\uD048\uD04A",5],["b461","\uD051\uD052\uD053\uD055\uD056\uD057\uD059",6,"\uD061",10,"\uD06E\uD06F"],["b481","\uD071\uD072\uD073\uD075",6,"\uD07E\uD07F\uD080\uD082",18,"\uB1DF\uB1E8\uB1E9\uB1EC\uB1F0\uB1F9\uB1FB\uB1FD\uB204\uB205\uB208\uB20B\uB20C\uB214\uB215\uB217\uB219\uB220\uB234\uB23C\uB258\uB25C\uB260\uB268\uB269\uB274\uB275\uB27C\uB284\uB285\uB289\uB290\uB291\uB294\uB298\uB299\uB29A\uB2A0\uB2A1\uB2A3\uB2A5\uB2A6\uB2AA\uB2AC\uB2B0\uB2B4\uB2C8\uB2C9\uB2CC\uB2D0\uB2D2\uB2D8\uB2D9\uB2DB\uB2DD\uB2E2\uB2E4\uB2E5\uB2E6\uB2E8\uB2EB",4,"\uB2F3\uB2F4\uB2F5\uB2F7",4,"\uB2FF\uB300\uB301\uB304\uB308\uB310\uB311\uB313\uB314\uB315\uB31C\uB354\uB355\uB356\uB358\uB35B\uB35C\uB35E\uB35F\uB364\uB365"],["b541","\uD095",14,"\uD0A6\uD0A7\uD0A9\uD0AA\uD0AB\uD0AD",5],["b561","\uD0B3\uD0B6\uD0B8\uD0BA",5,"\uD0C2\uD0C3\uD0C5\uD0C6\uD0C7\uD0CA",5,"\uD0D2\uD0D6",4],["b581","\uD0DB\uD0DE\uD0DF\uD0E1\uD0E2\uD0E3\uD0E5",6,"\uD0EE\uD0F2",5,"\uD0F9",11,"\uB367\uB369\uB36B\uB36E\uB370\uB371\uB374\uB378\uB380\uB381\uB383\uB384\uB385\uB38C\uB390\uB394\uB3A0\uB3A1\uB3A8\uB3AC\uB3C4\uB3C5\uB3C8\uB3CB\uB3CC\uB3CE\uB3D0\uB3D4\uB3D5\uB3D7\uB3D9\uB3DB\uB3DD\uB3E0\uB3E4\uB3E8\uB3FC\uB410\uB418\uB41C\uB420\uB428\uB429\uB42B\uB434\uB450\uB451\uB454\uB458\uB460\uB461\uB463\uB465\uB46C\uB480\uB488\uB49D\uB4A4\uB4A8\uB4AC\uB4B5\uB4B7\uB4B9\uB4C0\uB4C4\uB4C8\uB4D0\uB4D5\uB4DC\uB4DD\uB4E0\uB4E3\uB4E4\uB4E6\uB4EC\uB4ED\uB4EF\uB4F1\uB4F8\uB514\uB515\uB518\uB51B\uB51C\uB524\uB525\uB527\uB528\uB529\uB52A\uB530\uB531\uB534\uB538"],["b641","\uD105",7,"\uD10E",17],["b661","\uD120",15,"\uD132\uD133\uD135\uD136\uD137\uD139\uD13B\uD13C\uD13D\uD13E"],["b681","\uD13F\uD142\uD146",5,"\uD14E\uD14F\uD151\uD152\uD153\uD155",6,"\uD15E\uD160\uD162",5,"\uD169\uD16A\uD16B\uD16D\uB540\uB541\uB543\uB544\uB545\uB54B\uB54C\uB54D\uB550\uB554\uB55C\uB55D\uB55F\uB560\uB561\uB5A0\uB5A1\uB5A4\uB5A8\uB5AA\uB5AB\uB5B0\uB5B1\uB5B3\uB5B4\uB5B5\uB5BB\uB5BC\uB5BD\uB5C0\uB5C4\uB5CC\uB5CD\uB5CF\uB5D0\uB5D1\uB5D8\uB5EC\uB610\uB611\uB614\uB618\uB625\uB62C\uB634\uB648\uB664\uB668\uB69C\uB69D\uB6A0\uB6A4\uB6AB\uB6AC\uB6B1\uB6D4\uB6F0\uB6F4\uB6F8\uB700\uB701\uB705\uB728\uB729\uB72C\uB72F\uB730\uB738\uB739\uB73B\uB744\uB748\uB74C\uB754\uB755\uB760\uB764\uB768\uB770\uB771\uB773\uB775\uB77C\uB77D\uB780\uB784\uB78C\uB78D\uB78F\uB790\uB791\uB792\uB796\uB797"],["b741","\uD16E",13,"\uD17D",6,"\uD185\uD186\uD187\uD189\uD18A"],["b761","\uD18B",20,"\uD1A2\uD1A3\uD1A5\uD1A6\uD1A7"],["b781","\uD1A9",6,"\uD1B2\uD1B4\uD1B6\uD1B7\uD1B8\uD1B9\uD1BB\uD1BD\uD1BE\uD1BF\uD1C1",14,"\uB798\uB799\uB79C\uB7A0\uB7A8\uB7A9\uB7AB\uB7AC\uB7AD\uB7B4\uB7B5\uB7B8\uB7C7\uB7C9\uB7EC\uB7ED\uB7F0\uB7F4\uB7FC\uB7FD\uB7FF\uB800\uB801\uB807\uB808\uB809\uB80C\uB810\uB818\uB819\uB81B\uB81D\uB824\uB825\uB828\uB82C\uB834\uB835\uB837\uB838\uB839\uB840\uB844\uB851\uB853\uB85C\uB85D\uB860\uB864\uB86C\uB86D\uB86F\uB871\uB878\uB87C\uB88D\uB8A8\uB8B0\uB8B4\uB8B8\uB8C0\uB8C1\uB8C3\uB8C5\uB8CC\uB8D0\uB8D4\uB8DD\uB8DF\uB8E1\uB8E8\uB8E9\uB8EC\uB8F0\uB8F8\uB8F9\uB8FB\uB8FD\uB904\uB918\uB920\uB93C\uB93D\uB940\uB944\uB94C\uB94F\uB951\uB958\uB959\uB95C\uB960\uB968\uB969"],["b841","\uD1D0",7,"\uD1D9",17],["b861","\uD1EB",8,"\uD1F5\uD1F6\uD1F7\uD1F9",13],["b881","\uD208\uD20A",5,"\uD211",24,"\uB96B\uB96D\uB974\uB975\uB978\uB97C\uB984\uB985\uB987\uB989\uB98A\uB98D\uB98E\uB9AC\uB9AD\uB9B0\uB9B4\uB9BC\uB9BD\uB9BF\uB9C1\uB9C8\uB9C9\uB9CC\uB9CE",4,"\uB9D8\uB9D9\uB9DB\uB9DD\uB9DE\uB9E1\uB9E3\uB9E4\uB9E5\uB9E8\uB9EC\uB9F4\uB9F5\uB9F7\uB9F8\uB9F9\uB9FA\uBA00\uBA01\uBA08\uBA15\uBA38\uBA39\uBA3C\uBA40\uBA42\uBA48\uBA49\uBA4B\uBA4D\uBA4E\uBA53\uBA54\uBA55\uBA58\uBA5C\uBA64\uBA65\uBA67\uBA68\uBA69\uBA70\uBA71\uBA74\uBA78\uBA83\uBA84\uBA85\uBA87\uBA8C\uBAA8\uBAA9\uBAAB\uBAAC\uBAB0\uBAB2\uBAB8\uBAB9\uBABB\uBABD\uBAC4\uBAC8\uBAD8\uBAD9\uBAFC"],["b941","\uD22A\uD22B\uD22E\uD22F\uD231\uD232\uD233\uD235",6,"\uD23E\uD240\uD242",5,"\uD249\uD24A\uD24B\uD24C"],["b961","\uD24D",14,"\uD25D",6,"\uD265\uD266\uD267\uD268"],["b981","\uD269",22,"\uD282\uD283\uD285\uD286\uD287\uD289\uD28A\uD28B\uD28C\uBB00\uBB04\uBB0D\uBB0F\uBB11\uBB18\uBB1C\uBB20\uBB29\uBB2B\uBB34\uBB35\uBB36\uBB38\uBB3B\uBB3C\uBB3D\uBB3E\uBB44\uBB45\uBB47\uBB49\uBB4D\uBB4F\uBB50\uBB54\uBB58\uBB61\uBB63\uBB6C\uBB88\uBB8C\uBB90\uBBA4\uBBA8\uBBAC\uBBB4\uBBB7\uBBC0\uBBC4\uBBC8\uBBD0\uBBD3\uBBF8\uBBF9\uBBFC\uBBFF\uBC00\uBC02\uBC08\uBC09\uBC0B\uBC0C\uBC0D\uBC0F\uBC11\uBC14",4,"\uBC1B",4,"\uBC24\uBC25\uBC27\uBC29\uBC2D\uBC30\uBC31\uBC34\uBC38\uBC40\uBC41\uBC43\uBC44\uBC45\uBC49\uBC4C\uBC4D\uBC50\uBC5D\uBC84\uBC85\uBC88\uBC8B\uBC8C\uBC8E\uBC94\uBC95\uBC97"],["ba41","\uD28D\uD28E\uD28F\uD292\uD293\uD294\uD296",5,"\uD29D\uD29E\uD29F\uD2A1\uD2A2\uD2A3\uD2A5",6,"\uD2AD"],["ba61","\uD2AE\uD2AF\uD2B0\uD2B2",5,"\uD2BA\uD2BB\uD2BD\uD2BE\uD2C1\uD2C3",4,"\uD2CA\uD2CC",5],["ba81","\uD2D2\uD2D3\uD2D5\uD2D6\uD2D7\uD2D9\uD2DA\uD2DB\uD2DD",6,"\uD2E6",9,"\uD2F2\uD2F3\uD2F5\uD2F6\uD2F7\uD2F9\uD2FA\uBC99\uBC9A\uBCA0\uBCA1\uBCA4\uBCA7\uBCA8\uBCB0\uBCB1\uBCB3\uBCB4\uBCB5\uBCBC\uBCBD\uBCC0\uBCC4\uBCCD\uBCCF\uBCD0\uBCD1\uBCD5\uBCD8\uBCDC\uBCF4\uBCF5\uBCF6\uBCF8\uBCFC\uBD04\uBD05\uBD07\uBD09\uBD10\uBD14\uBD24\uBD2C\uBD40\uBD48\uBD49\uBD4C\uBD50\uBD58\uBD59\uBD64\uBD68\uBD80\uBD81\uBD84\uBD87\uBD88\uBD89\uBD8A\uBD90\uBD91\uBD93\uBD95\uBD99\uBD9A\uBD9C\uBDA4\uBDB0\uBDB8\uBDD4\uBDD5\uBDD8\uBDDC\uBDE9\uBDF0\uBDF4\uBDF8\uBE00\uBE03\uBE05\uBE0C\uBE0D\uBE10\uBE14\uBE1C\uBE1D\uBE1F\uBE44\uBE45\uBE48\uBE4C\uBE4E\uBE54\uBE55\uBE57\uBE59\uBE5A\uBE5B\uBE60\uBE61\uBE64"],["bb41","\uD2FB",4,"\uD302\uD304\uD306",5,"\uD30F\uD311\uD312\uD313\uD315\uD317",4,"\uD31E\uD322\uD323"],["bb61","\uD324\uD326\uD327\uD32A\uD32B\uD32D\uD32E\uD32F\uD331",6,"\uD33A\uD33E",5,"\uD346\uD347\uD348\uD349"],["bb81","\uD34A",31,"\uBE68\uBE6A\uBE70\uBE71\uBE73\uBE74\uBE75\uBE7B\uBE7C\uBE7D\uBE80\uBE84\uBE8C\uBE8D\uBE8F\uBE90\uBE91\uBE98\uBE99\uBEA8\uBED0\uBED1\uBED4\uBED7\uBED8\uBEE0\uBEE3\uBEE4\uBEE5\uBEEC\uBF01\uBF08\uBF09\uBF18\uBF19\uBF1B\uBF1C\uBF1D\uBF40\uBF41\uBF44\uBF48\uBF50\uBF51\uBF55\uBF94\uBFB0\uBFC5\uBFCC\uBFCD\uBFD0\uBFD4\uBFDC\uBFDF\uBFE1\uC03C\uC051\uC058\uC05C\uC060\uC068\uC069\uC090\uC091\uC094\uC098\uC0A0\uC0A1\uC0A3\uC0A5\uC0AC\uC0AD\uC0AF\uC0B0\uC0B3\uC0B4\uC0B5\uC0B6\uC0BC\uC0BD\uC0BF\uC0C0\uC0C1\uC0C5\uC0C8\uC0C9\uC0CC\uC0D0\uC0D8\uC0D9\uC0DB\uC0DC\uC0DD\uC0E4"],["bc41","\uD36A",17,"\uD37E\uD37F\uD381\uD382\uD383\uD385\uD386\uD387"],["bc61","\uD388\uD389\uD38A\uD38B\uD38E\uD392",5,"\uD39A\uD39B\uD39D\uD39E\uD39F\uD3A1",6,"\uD3AA\uD3AC\uD3AE"],["bc81","\uD3AF",4,"\uD3B5\uD3B6\uD3B7\uD3B9\uD3BA\uD3BB\uD3BD",6,"\uD3C6\uD3C7\uD3CA",5,"\uD3D1",5,"\uC0E5\uC0E8\uC0EC\uC0F4\uC0F5\uC0F7\uC0F9\uC100\uC104\uC108\uC110\uC115\uC11C",4,"\uC123\uC124\uC126\uC127\uC12C\uC12D\uC12F\uC130\uC131\uC136\uC138\uC139\uC13C\uC140\uC148\uC149\uC14B\uC14C\uC14D\uC154\uC155\uC158\uC15C\uC164\uC165\uC167\uC168\uC169\uC170\uC174\uC178\uC185\uC18C\uC18D\uC18E\uC190\uC194\uC196\uC19C\uC19D\uC19F\uC1A1\uC1A5\uC1A8\uC1A9\uC1AC\uC1B0\uC1BD\uC1C4\uC1C8\uC1CC\uC1D4\uC1D7\uC1D8\uC1E0\uC1E4\uC1E8\uC1F0\uC1F1\uC1F3\uC1FC\uC1FD\uC200\uC204\uC20C\uC20D\uC20F\uC211\uC218\uC219\uC21C\uC21F\uC220\uC228\uC229\uC22B\uC22D"],["bd41","\uD3D7\uD3D9",7,"\uD3E2\uD3E4",7,"\uD3EE\uD3EF\uD3F1\uD3F2\uD3F3\uD3F5\uD3F6\uD3F7"],["bd61","\uD3F8\uD3F9\uD3FA\uD3FB\uD3FE\uD400\uD402",5,"\uD409",13],["bd81","\uD417",5,"\uD41E",25,"\uC22F\uC231\uC232\uC234\uC248\uC250\uC251\uC254\uC258\uC260\uC265\uC26C\uC26D\uC270\uC274\uC27C\uC27D\uC27F\uC281\uC288\uC289\uC290\uC298\uC29B\uC29D\uC2A4\uC2A5\uC2A8\uC2AC\uC2AD\uC2B4\uC2B5\uC2B7\uC2B9\uC2DC\uC2DD\uC2E0\uC2E3\uC2E4\uC2EB\uC2EC\uC2ED\uC2EF\uC2F1\uC2F6\uC2F8\uC2F9\uC2FB\uC2FC\uC300\uC308\uC309\uC30C\uC30D\uC313\uC314\uC315\uC318\uC31C\uC324\uC325\uC328\uC329\uC345\uC368\uC369\uC36C\uC370\uC372\uC378\uC379\uC37C\uC37D\uC384\uC388\uC38C\uC3C0\uC3D8\uC3D9\uC3DC\uC3DF\uC3E0\uC3E2\uC3E8\uC3E9\uC3ED\uC3F4\uC3F5\uC3F8\uC408\uC410\uC424\uC42C\uC430"],["be41","\uD438",7,"\uD441\uD442\uD443\uD445",14],["be61","\uD454",7,"\uD45D\uD45E\uD45F\uD461\uD462\uD463\uD465",7,"\uD46E\uD470\uD471\uD472"],["be81","\uD473",4,"\uD47A\uD47B\uD47D\uD47E\uD481\uD483",4,"\uD48A\uD48C\uD48E",5,"\uD495",8,"\uC434\uC43C\uC43D\uC448\uC464\uC465\uC468\uC46C\uC474\uC475\uC479\uC480\uC494\uC49C\uC4B8\uC4BC\uC4E9\uC4F0\uC4F1\uC4F4\uC4F8\uC4FA\uC4FF\uC500\uC501\uC50C\uC510\uC514\uC51C\uC528\uC529\uC52C\uC530\uC538\uC539\uC53B\uC53D\uC544\uC545\uC548\uC549\uC54A\uC54C\uC54D\uC54E\uC553\uC554\uC555\uC557\uC558\uC559\uC55D\uC55E\uC560\uC561\uC564\uC568\uC570\uC571\uC573\uC574\uC575\uC57C\uC57D\uC580\uC584\uC587\uC58C\uC58D\uC58F\uC591\uC595\uC597\uC598\uC59C\uC5A0\uC5A9\uC5B4\uC5B5\uC5B8\uC5B9\uC5BB\uC5BC\uC5BD\uC5BE\uC5C4",6,"\uC5CC\uC5CE"],["bf41","\uD49E",10,"\uD4AA",14],["bf61","\uD4B9",18,"\uD4CD\uD4CE\uD4CF\uD4D1\uD4D2\uD4D3\uD4D5"],["bf81","\uD4D6",5,"\uD4DD\uD4DE\uD4E0",7,"\uD4E9\uD4EA\uD4EB\uD4ED\uD4EE\uD4EF\uD4F1",6,"\uD4F9\uD4FA\uD4FC\uC5D0\uC5D1\uC5D4\uC5D8\uC5E0\uC5E1\uC5E3\uC5E5\uC5EC\uC5ED\uC5EE\uC5F0\uC5F4\uC5F6\uC5F7\uC5FC",5,"\uC605\uC606\uC607\uC608\uC60C\uC610\uC618\uC619\uC61B\uC61C\uC624\uC625\uC628\uC62C\uC62D\uC62E\uC630\uC633\uC634\uC635\uC637\uC639\uC63B\uC640\uC641\uC644\uC648\uC650\uC651\uC653\uC654\uC655\uC65C\uC65D\uC660\uC66C\uC66F\uC671\uC678\uC679\uC67C\uC680\uC688\uC689\uC68B\uC68D\uC694\uC695\uC698\uC69C\uC6A4\uC6A5\uC6A7\uC6A9\uC6B0\uC6B1\uC6B4\uC6B8\uC6B9\uC6BA\uC6C0\uC6C1\uC6C3\uC6C5\uC6CC\uC6CD\uC6D0\uC6D4\uC6DC\uC6DD\uC6E0\uC6E1\uC6E8"],["c041","\uD4FE",5,"\uD505\uD506\uD507\uD509\uD50A\uD50B\uD50D",6,"\uD516\uD518",5],["c061","\uD51E",25],["c081","\uD538\uD539\uD53A\uD53B\uD53E\uD53F\uD541\uD542\uD543\uD545",6,"\uD54E\uD550\uD552",5,"\uD55A\uD55B\uD55D\uD55E\uD55F\uD561\uD562\uD563\uC6E9\uC6EC\uC6F0\uC6F8\uC6F9\uC6FD\uC704\uC705\uC708\uC70C\uC714\uC715\uC717\uC719\uC720\uC721\uC724\uC728\uC730\uC731\uC733\uC735\uC737\uC73C\uC73D\uC740\uC744\uC74A\uC74C\uC74D\uC74F\uC751",7,"\uC75C\uC760\uC768\uC76B\uC774\uC775\uC778\uC77C\uC77D\uC77E\uC783\uC784\uC785\uC787\uC788\uC789\uC78A\uC78E\uC790\uC791\uC794\uC796\uC797\uC798\uC79A\uC7A0\uC7A1\uC7A3\uC7A4\uC7A5\uC7A6\uC7AC\uC7AD\uC7B0\uC7B4\uC7BC\uC7BD\uC7BF\uC7C0\uC7C1\uC7C8\uC7C9\uC7CC\uC7CE\uC7D0\uC7D8\uC7DD\uC7E4\uC7E8\uC7EC\uC800\uC801\uC804\uC808\uC80A"],["c141","\uD564\uD566\uD567\uD56A\uD56C\uD56E",5,"\uD576\uD577\uD579\uD57A\uD57B\uD57D",6,"\uD586\uD58A\uD58B"],["c161","\uD58C\uD58D\uD58E\uD58F\uD591",19,"\uD5A6\uD5A7"],["c181","\uD5A8",31,"\uC810\uC811\uC813\uC815\uC816\uC81C\uC81D\uC820\uC824\uC82C\uC82D\uC82F\uC831\uC838\uC83C\uC840\uC848\uC849\uC84C\uC84D\uC854\uC870\uC871\uC874\uC878\uC87A\uC880\uC881\uC883\uC885\uC886\uC887\uC88B\uC88C\uC88D\uC894\uC89D\uC89F\uC8A1\uC8A8\uC8BC\uC8BD\uC8C4\uC8C8\uC8CC\uC8D4\uC8D5\uC8D7\uC8D9\uC8E0\uC8E1\uC8E4\uC8F5\uC8FC\uC8FD\uC900\uC904\uC905\uC906\uC90C\uC90D\uC90F\uC911\uC918\uC92C\uC934\uC950\uC951\uC954\uC958\uC960\uC961\uC963\uC96C\uC970\uC974\uC97C\uC988\uC989\uC98C\uC990\uC998\uC999\uC99B\uC99D\uC9C0\uC9C1\uC9C4\uC9C7\uC9C8\uC9CA\uC9D0\uC9D1\uC9D3"],["c241","\uD5CA\uD5CB\uD5CD\uD5CE\uD5CF\uD5D1\uD5D3",4,"\uD5DA\uD5DC\uD5DE",5,"\uD5E6\uD5E7\uD5E9\uD5EA\uD5EB\uD5ED\uD5EE"],["c261","\uD5EF",4,"\uD5F6\uD5F8\uD5FA",5,"\uD602\uD603\uD605\uD606\uD607\uD609",6,"\uD612"],["c281","\uD616",5,"\uD61D\uD61E\uD61F\uD621\uD622\uD623\uD625",7,"\uD62E",9,"\uD63A\uD63B\uC9D5\uC9D6\uC9D9\uC9DA\uC9DC\uC9DD\uC9E0\uC9E2\uC9E4\uC9E7\uC9EC\uC9ED\uC9EF\uC9F0\uC9F1\uC9F8\uC9F9\uC9FC\uCA00\uCA08\uCA09\uCA0B\uCA0C\uCA0D\uCA14\uCA18\uCA29\uCA4C\uCA4D\uCA50\uCA54\uCA5C\uCA5D\uCA5F\uCA60\uCA61\uCA68\uCA7D\uCA84\uCA98\uCABC\uCABD\uCAC0\uCAC4\uCACC\uCACD\uCACF\uCAD1\uCAD3\uCAD8\uCAD9\uCAE0\uCAEC\uCAF4\uCB08\uCB10\uCB14\uCB18\uCB20\uCB21\uCB41\uCB48\uCB49\uCB4C\uCB50\uCB58\uCB59\uCB5D\uCB64\uCB78\uCB79\uCB9C\uCBB8\uCBD4\uCBE4\uCBE7\uCBE9\uCC0C\uCC0D\uCC10\uCC14\uCC1C\uCC1D\uCC21\uCC22\uCC27\uCC28\uCC29\uCC2C\uCC2E\uCC30\uCC38\uCC39\uCC3B"],["c341","\uD63D\uD63E\uD63F\uD641\uD642\uD643\uD644\uD646\uD647\uD64A\uD64C\uD64E\uD64F\uD650\uD652\uD653\uD656\uD657\uD659\uD65A\uD65B\uD65D",4],["c361","\uD662",4,"\uD668\uD66A",5,"\uD672\uD673\uD675",11],["c381","\uD681\uD682\uD684\uD686",5,"\uD68E\uD68F\uD691\uD692\uD693\uD695",7,"\uD69E\uD6A0\uD6A2",5,"\uD6A9\uD6AA\uCC3C\uCC3D\uCC3E\uCC44\uCC45\uCC48\uCC4C\uCC54\uCC55\uCC57\uCC58\uCC59\uCC60\uCC64\uCC66\uCC68\uCC70\uCC75\uCC98\uCC99\uCC9C\uCCA0\uCCA8\uCCA9\uCCAB\uCCAC\uCCAD\uCCB4\uCCB5\uCCB8\uCCBC\uCCC4\uCCC5\uCCC7\uCCC9\uCCD0\uCCD4\uCCE4\uCCEC\uCCF0\uCD01\uCD08\uCD09\uCD0C\uCD10\uCD18\uCD19\uCD1B\uCD1D\uCD24\uCD28\uCD2C\uCD39\uCD5C\uCD60\uCD64\uCD6C\uCD6D\uCD6F\uCD71\uCD78\uCD88\uCD94\uCD95\uCD98\uCD9C\uCDA4\uCDA5\uCDA7\uCDA9\uCDB0\uCDC4\uCDCC\uCDD0\uCDE8\uCDEC\uCDF0\uCDF8\uCDF9\uCDFB\uCDFD\uCE04\uCE08\uCE0C\uCE14\uCE19\uCE20\uCE21\uCE24\uCE28\uCE30\uCE31\uCE33\uCE35"],["c441","\uD6AB\uD6AD\uD6AE\uD6AF\uD6B1",7,"\uD6BA\uD6BC",7,"\uD6C6\uD6C7\uD6C9\uD6CA\uD6CB"],["c461","\uD6CD\uD6CE\uD6CF\uD6D0\uD6D2\uD6D3\uD6D5\uD6D6\uD6D8\uD6DA",5,"\uD6E1\uD6E2\uD6E3\uD6E5\uD6E6\uD6E7\uD6E9",4],["c481","\uD6EE\uD6EF\uD6F1\uD6F2\uD6F3\uD6F4\uD6F6",5,"\uD6FE\uD6FF\uD701\uD702\uD703\uD705",11,"\uD712\uD713\uD714\uCE58\uCE59\uCE5C\uCE5F\uCE60\uCE61\uCE68\uCE69\uCE6B\uCE6D\uCE74\uCE75\uCE78\uCE7C\uCE84\uCE85\uCE87\uCE89\uCE90\uCE91\uCE94\uCE98\uCEA0\uCEA1\uCEA3\uCEA4\uCEA5\uCEAC\uCEAD\uCEC1\uCEE4\uCEE5\uCEE8\uCEEB\uCEEC\uCEF4\uCEF5\uCEF7\uCEF8\uCEF9\uCF00\uCF01\uCF04\uCF08\uCF10\uCF11\uCF13\uCF15\uCF1C\uCF20\uCF24\uCF2C\uCF2D\uCF2F\uCF30\uCF31\uCF38\uCF54\uCF55\uCF58\uCF5C\uCF64\uCF65\uCF67\uCF69\uCF70\uCF71\uCF74\uCF78\uCF80\uCF85\uCF8C\uCFA1\uCFA8\uCFB0\uCFC4\uCFE0\uCFE1\uCFE4\uCFE8\uCFF0\uCFF1\uCFF3\uCFF5\uCFFC\uD000\uD004\uD011\uD018\uD02D\uD034\uD035\uD038\uD03C"],["c541","\uD715\uD716\uD717\uD71A\uD71B\uD71D\uD71E\uD71F\uD721",6,"\uD72A\uD72C\uD72E",5,"\uD736\uD737\uD739"],["c561","\uD73A\uD73B\uD73D",6,"\uD745\uD746\uD748\uD74A",5,"\uD752\uD753\uD755\uD75A",4],["c581","\uD75F\uD762\uD764\uD766\uD767\uD768\uD76A\uD76B\uD76D\uD76E\uD76F\uD771\uD772\uD773\uD775",6,"\uD77E\uD77F\uD780\uD782",5,"\uD78A\uD78B\uD044\uD045\uD047\uD049\uD050\uD054\uD058\uD060\uD06C\uD06D\uD070\uD074\uD07C\uD07D\uD081\uD0A4\uD0A5\uD0A8\uD0AC\uD0B4\uD0B5\uD0B7\uD0B9\uD0C0\uD0C1\uD0C4\uD0C8\uD0C9\uD0D0\uD0D1\uD0D3\uD0D4\uD0D5\uD0DC\uD0DD\uD0E0\uD0E4\uD0EC\uD0ED\uD0EF\uD0F0\uD0F1\uD0F8\uD10D\uD130\uD131\uD134\uD138\uD13A\uD140\uD141\uD143\uD144\uD145\uD14C\uD14D\uD150\uD154\uD15C\uD15D\uD15F\uD161\uD168\uD16C\uD17C\uD184\uD188\uD1A0\uD1A1\uD1A4\uD1A8\uD1B0\uD1B1\uD1B3\uD1B5\uD1BA\uD1BC\uD1C0\uD1D8\uD1F4\uD1F8\uD207\uD209\uD210\uD22C\uD22D\uD230\uD234\uD23C\uD23D\uD23F\uD241\uD248\uD25C"],["c641","\uD78D\uD78E\uD78F\uD791",6,"\uD79A\uD79C\uD79E",5],["c6a1","\uD264\uD280\uD281\uD284\uD288\uD290\uD291\uD295\uD29C\uD2A0\uD2A4\uD2AC\uD2B1\uD2B8\uD2B9\uD2BC\uD2BF\uD2C0\uD2C2\uD2C8\uD2C9\uD2CB\uD2D4\uD2D8\uD2DC\uD2E4\uD2E5\uD2F0\uD2F1\uD2F4\uD2F8\uD300\uD301\uD303\uD305\uD30C\uD30D\uD30E\uD310\uD314\uD316\uD31C\uD31D\uD31F\uD320\uD321\uD325\uD328\uD329\uD32C\uD330\uD338\uD339\uD33B\uD33C\uD33D\uD344\uD345\uD37C\uD37D\uD380\uD384\uD38C\uD38D\uD38F\uD390\uD391\uD398\uD399\uD39C\uD3A0\uD3A8\uD3A9\uD3AB\uD3AD\uD3B4\uD3B8\uD3BC\uD3C4\uD3C5\uD3C8\uD3C9\uD3D0\uD3D8\uD3E1\uD3E3\uD3EC\uD3ED\uD3F0\uD3F4\uD3FC\uD3FD\uD3FF\uD401"],["c7a1","\uD408\uD41D\uD440\uD444\uD45C\uD460\uD464\uD46D\uD46F\uD478\uD479\uD47C\uD47F\uD480\uD482\uD488\uD489\uD48B\uD48D\uD494\uD4A9\uD4CC\uD4D0\uD4D4\uD4DC\uD4DF\uD4E8\uD4EC\uD4F0\uD4F8\uD4FB\uD4FD\uD504\uD508\uD50C\uD514\uD515\uD517\uD53C\uD53D\uD540\uD544\uD54C\uD54D\uD54F\uD551\uD558\uD559\uD55C\uD560\uD565\uD568\uD569\uD56B\uD56D\uD574\uD575\uD578\uD57C\uD584\uD585\uD587\uD588\uD589\uD590\uD5A5\uD5C8\uD5C9\uD5CC\uD5D0\uD5D2\uD5D8\uD5D9\uD5DB\uD5DD\uD5E4\uD5E5\uD5E8\uD5EC\uD5F4\uD5F5\uD5F7\uD5F9\uD600\uD601\uD604\uD608\uD610\uD611\uD613\uD614\uD615\uD61C\uD620"],["c8a1","\uD624\uD62D\uD638\uD639\uD63C\uD640\uD645\uD648\uD649\uD64B\uD64D\uD651\uD654\uD655\uD658\uD65C\uD667\uD669\uD670\uD671\uD674\uD683\uD685\uD68C\uD68D\uD690\uD694\uD69D\uD69F\uD6A1\uD6A8\uD6AC\uD6B0\uD6B9\uD6BB\uD6C4\uD6C5\uD6C8\uD6CC\uD6D1\uD6D4\uD6D7\uD6D9\uD6E0\uD6E4\uD6E8\uD6F0\uD6F5\uD6FC\uD6FD\uD700\uD704\uD711\uD718\uD719\uD71C\uD720\uD728\uD729\uD72B\uD72D\uD734\uD735\uD738\uD73C\uD744\uD747\uD749\uD750\uD751\uD754\uD756\uD757\uD758\uD759\uD760\uD761\uD763\uD765\uD769\uD76C\uD770\uD774\uD77C\uD77D\uD781\uD788\uD789\uD78C\uD790\uD798\uD799\uD79B\uD79D"],["caa1","\u4F3D\u4F73\u5047\u50F9\u52A0\u53EF\u5475\u54E5\u5609\u5AC1\u5BB6\u6687\u67B6\u67B7\u67EF\u6B4C\u73C2\u75C2\u7A3C\u82DB\u8304\u8857\u8888\u8A36\u8CC8\u8DCF\u8EFB\u8FE6\u99D5\u523B\u5374\u5404\u606A\u6164\u6BBC\u73CF\u811A\u89BA\u89D2\u95A3\u4F83\u520A\u58BE\u5978\u59E6\u5E72\u5E79\u61C7\u63C0\u6746\u67EC\u687F\u6F97\u764E\u770B\u78F5\u7A08\u7AFF\u7C21\u809D\u826E\u8271\u8AEB\u9593\u4E6B\u559D\u66F7\u6E34\u78A3\u7AED\u845B\u8910\u874E\u97A8\u52D8\u574E\u582A\u5D4C\u611F\u61BE\u6221\u6562\u67D1\u6A44\u6E1B\u7518\u75B3\u76E3\u77B0\u7D3A\u90AF\u9451\u9452\u9F95"],["cba1","\u5323\u5CAC\u7532\u80DB\u9240\u9598\u525B\u5808\u59DC\u5CA1\u5D17\u5EB7\u5F3A\u5F4A\u6177\u6C5F\u757A\u7586\u7CE0\u7D73\u7DB1\u7F8C\u8154\u8221\u8591\u8941\u8B1B\u92FC\u964D\u9C47\u4ECB\u4EF7\u500B\u51F1\u584F\u6137\u613E\u6168\u6539\u69EA\u6F11\u75A5\u7686\u76D6\u7B87\u82A5\u84CB\uF900\u93A7\u958B\u5580\u5BA2\u5751\uF901\u7CB3\u7FB9\u91B5\u5028\u53BB\u5C45\u5DE8\u62D2\u636E\u64DA\u64E7\u6E20\u70AC\u795B\u8DDD\u8E1E\uF902\u907D\u9245\u92F8\u4E7E\u4EF6\u5065\u5DFE\u5EFA\u6106\u6957\u8171\u8654\u8E47\u9375\u9A2B\u4E5E\u5091\u6770\u6840\u5109\u528D\u5292\u6AA2"],["cca1","\u77BC\u9210\u9ED4\u52AB\u602F\u8FF2\u5048\u61A9\u63ED\u64CA\u683C\u6A84\u6FC0\u8188\u89A1\u9694\u5805\u727D\u72AC\u7504\u7D79\u7E6D\u80A9\u898B\u8B74\u9063\u9D51\u6289\u6C7A\u6F54\u7D50\u7F3A\u8A23\u517C\u614A\u7B9D\u8B19\u9257\u938C\u4EAC\u4FD3\u501E\u50BE\u5106\u52C1\u52CD\u537F\u5770\u5883\u5E9A\u5F91\u6176\u61AC\u64CE\u656C\u666F\u66BB\u66F4\u6897\u6D87\u7085\u70F1\u749F\u74A5\u74CA\u75D9\u786C\u78EC\u7ADF\u7AF6\u7D45\u7D93\u8015\u803F\u811B\u8396\u8B66\u8F15\u9015\u93E1\u9803\u9838\u9A5A\u9BE8\u4FC2\u5553\u583A\u5951\u5B63\u5C46\u60B8\u6212\u6842\u68B0"],["cda1","\u68E8\u6EAA\u754C\u7678\u78CE\u7A3D\u7CFB\u7E6B\u7E7C\u8A08\u8AA1\u8C3F\u968E\u9DC4\u53E4\u53E9\u544A\u5471\u56FA\u59D1\u5B64\u5C3B\u5EAB\u62F7\u6537\u6545\u6572\u66A0\u67AF\u69C1\u6CBD\u75FC\u7690\u777E\u7A3F\u7F94\u8003\u80A1\u818F\u82E6\u82FD\u83F0\u85C1\u8831\u88B4\u8AA5\uF903\u8F9C\u932E\u96C7\u9867\u9AD8\u9F13\u54ED\u659B\u66F2\u688F\u7A40\u8C37\u9D60\u56F0\u5764\u5D11\u6606\u68B1\u68CD\u6EFE\u7428\u889E\u9BE4\u6C68\uF904\u9AA8\u4F9B\u516C\u5171\u529F\u5B54\u5DE5\u6050\u606D\u62F1\u63A7\u653B\u73D9\u7A7A\u86A3\u8CA2\u978F\u4E32\u5BE1\u6208\u679C\u74DC"],["cea1","\u79D1\u83D3\u8A87\u8AB2\u8DE8\u904E\u934B\u9846\u5ED3\u69E8\u85FF\u90ED\uF905\u51A0\u5B98\u5BEC\u6163\u68FA\u6B3E\u704C\u742F\u74D8\u7BA1\u7F50\u83C5\u89C0\u8CAB\u95DC\u9928\u522E\u605D\u62EC\u9002\u4F8A\u5149\u5321\u58D9\u5EE3\u66E0\u6D38\u709A\u72C2\u73D6\u7B50\u80F1\u945B\u5366\u639B\u7F6B\u4E56\u5080\u584A\u58DE\u602A\u6127\u62D0\u69D0\u9B41\u5B8F\u7D18\u80B1\u8F5F\u4EA4\u50D1\u54AC\u55AC\u5B0C\u5DA0\u5DE7\u652A\u654E\u6821\u6A4B\u72E1\u768E\u77EF\u7D5E\u7FF9\u81A0\u854E\u86DF\u8F03\u8F4E\u90CA\u9903\u9A55\u9BAB\u4E18\u4E45\u4E5D\u4EC7\u4FF1\u5177\u52FE"],["cfa1","\u5340\u53E3\u53E5\u548E\u5614\u5775\u57A2\u5BC7\u5D87\u5ED0\u61FC\u62D8\u6551\u67B8\u67E9\u69CB\u6B50\u6BC6\u6BEC\u6C42\u6E9D\u7078\u72D7\u7396\u7403\u77BF\u77E9\u7A76\u7D7F\u8009\u81FC\u8205\u820A\u82DF\u8862\u8B33\u8CFC\u8EC0\u9011\u90B1\u9264\u92B6\u99D2\u9A45\u9CE9\u9DD7\u9F9C\u570B\u5C40\u83CA\u97A0\u97AB\u9EB4\u541B\u7A98\u7FA4\u88D9\u8ECD\u90E1\u5800\u5C48\u6398\u7A9F\u5BAE\u5F13\u7A79\u7AAE\u828E\u8EAC\u5026\u5238\u52F8\u5377\u5708\u62F3\u6372\u6B0A\u6DC3\u7737\u53A5\u7357\u8568\u8E76\u95D5\u673A\u6AC3\u6F70\u8A6D\u8ECC\u994B\uF906\u6677\u6B78\u8CB4"],["d0a1","\u9B3C\uF907\u53EB\u572D\u594E\u63C6\u69FB\u73EA\u7845\u7ABA\u7AC5\u7CFE\u8475\u898F\u8D73\u9035\u95A8\u52FB\u5747\u7547\u7B60\u83CC\u921E\uF908\u6A58\u514B\u524B\u5287\u621F\u68D8\u6975\u9699\u50C5\u52A4\u52E4\u61C3\u65A4\u6839\u69FF\u747E\u7B4B\u82B9\u83EB\u89B2\u8B39\u8FD1\u9949\uF909\u4ECA\u5997\u64D2\u6611\u6A8E\u7434\u7981\u79BD\u82A9\u887E\u887F\u895F\uF90A\u9326\u4F0B\u53CA\u6025\u6271\u6C72\u7D1A\u7D66\u4E98\u5162\u77DC\u80AF\u4F01\u4F0E\u5176\u5180\u55DC\u5668\u573B\u57FA\u57FC\u5914\u5947\u5993\u5BC4\u5C90\u5D0E\u5DF1\u5E7E\u5FCC\u6280\u65D7\u65E3"],["d1a1","\u671E\u671F\u675E\u68CB\u68C4\u6A5F\u6B3A\u6C23\u6C7D\u6C82\u6DC7\u7398\u7426\u742A\u7482\u74A3\u7578\u757F\u7881\u78EF\u7941\u7947\u7948\u797A\u7B95\u7D00\u7DBA\u7F88\u8006\u802D\u808C\u8A18\u8B4F\u8C48\u8D77\u9321\u9324\u98E2\u9951\u9A0E\u9A0F\u9A65\u9E92\u7DCA\u4F76\u5409\u62EE\u6854\u91D1\u55AB\u513A\uF90B\uF90C\u5A1C\u61E6\uF90D\u62CF\u62FF\uF90E",5,"\u90A3\uF914",4,"\u8AFE\uF919\uF91A\uF91B\uF91C\u6696\uF91D\u7156\uF91E\uF91F\u96E3\uF920\u634F\u637A\u5357\uF921\u678F\u6960\u6E73\uF922\u7537\uF923\uF924\uF925"],["d2a1","\u7D0D\uF926\uF927\u8872\u56CA\u5A18\uF928",4,"\u4E43\uF92D\u5167\u5948\u67F0\u8010\uF92E\u5973\u5E74\u649A\u79CA\u5FF5\u606C\u62C8\u637B\u5BE7\u5BD7\u52AA\uF92F\u5974\u5F29\u6012\uF930\uF931\uF932\u7459\uF933",5,"\u99D1\uF939",10,"\u6FC3\uF944\uF945\u81BF\u8FB2\u60F1\uF946\uF947\u8166\uF948\uF949\u5C3F\uF94A",7,"\u5AE9\u8A25\u677B\u7D10\uF952",5,"\u80FD\uF958\uF959\u5C3C\u6CE5\u533F\u6EBA\u591A\u8336"],["d3a1","\u4E39\u4EB6\u4F46\u55AE\u5718\u58C7\u5F56\u65B7\u65E6\u6A80\u6BB5\u6E4D\u77ED\u7AEF\u7C1E\u7DDE\u86CB\u8892\u9132\u935B\u64BB\u6FBE\u737A\u75B8\u9054\u5556\u574D\u61BA\u64D4\u66C7\u6DE1\u6E5B\u6F6D\u6FB9\u75F0\u8043\u81BD\u8541\u8983\u8AC7\u8B5A\u931F\u6C93\u7553\u7B54\u8E0F\u905D\u5510\u5802\u5858\u5E62\u6207\u649E\u68E0\u7576\u7CD6\u87B3\u9EE8\u4EE3\u5788\u576E\u5927\u5C0D\u5CB1\u5E36\u5F85\u6234\u64E1\u73B3\u81FA\u888B\u8CB8\u968A\u9EDB\u5B85\u5FB7\u60B3\u5012\u5200\u5230\u5716\u5835\u5857\u5C0E\u5C60\u5CF6\u5D8B\u5EA6\u5F92\u60BC\u6311\u6389\u6417\u6843"],["d4a1","\u68F9\u6AC2\u6DD8\u6E21\u6ED4\u6FE4\u71FE\u76DC\u7779\u79B1\u7A3B\u8404\u89A9\u8CED\u8DF3\u8E48\u9003\u9014\u9053\u90FD\u934D\u9676\u97DC\u6BD2\u7006\u7258\u72A2\u7368\u7763\u79BF\u7BE4\u7E9B\u8B80\u58A9\u60C7\u6566\u65FD\u66BE\u6C8C\u711E\u71C9\u8C5A\u9813\u4E6D\u7A81\u4EDD\u51AC\u51CD\u52D5\u540C\u61A7\u6771\u6850\u68DF\u6D1E\u6F7C\u75BC\u77B3\u7AE5\u80F4\u8463\u9285\u515C\u6597\u675C\u6793\u75D8\u7AC7\u8373\uF95A\u8C46\u9017\u982D\u5C6F\u81C0\u829A\u9041\u906F\u920D\u5F97\u5D9D\u6A59\u71C8\u767B\u7B49\u85E4\u8B04\u9127\u9A30\u5587\u61F6\uF95B\u7669\u7F85"],["d5a1","\u863F\u87BA\u88F8\u908F\uF95C\u6D1B\u70D9\u73DE\u7D61\u843D\uF95D\u916A\u99F1\uF95E\u4E82\u5375\u6B04\u6B12\u703E\u721B\u862D\u9E1E\u524C\u8FA3\u5D50\u64E5\u652C\u6B16\u6FEB\u7C43\u7E9C\u85CD\u8964\u89BD\u62C9\u81D8\u881F\u5ECA\u6717\u6D6A\u72FC\u7405\u746F\u8782\u90DE\u4F86\u5D0D\u5FA0\u840A\u51B7\u63A0\u7565\u4EAE\u5006\u5169\u51C9\u6881\u6A11\u7CAE\u7CB1\u7CE7\u826F\u8AD2\u8F1B\u91CF\u4FB6\u5137\u52F5\u5442\u5EEC\u616E\u623E\u65C5\u6ADA\u6FFE\u792A\u85DC\u8823\u95AD\u9A62\u9A6A\u9E97\u9ECE\u529B\u66C6\u6B77\u701D\u792B\u8F62\u9742\u6190\u6200\u6523\u6F23"],["d6a1","\u7149\u7489\u7DF4\u806F\u84EE\u8F26\u9023\u934A\u51BD\u5217\u52A3\u6D0C\u70C8\u88C2\u5EC9\u6582\u6BAE\u6FC2\u7C3E\u7375\u4EE4\u4F36\u56F9\uF95F\u5CBA\u5DBA\u601C\u73B2\u7B2D\u7F9A\u7FCE\u8046\u901E\u9234\u96F6\u9748\u9818\u9F61\u4F8B\u6FA7\u79AE\u91B4\u96B7\u52DE\uF960\u6488\u64C4\u6AD3\u6F5E\u7018\u7210\u76E7\u8001\u8606\u865C\u8DEF\u8F05\u9732\u9B6F\u9DFA\u9E75\u788C\u797F\u7DA0\u83C9\u9304\u9E7F\u9E93\u8AD6\u58DF\u5F04\u6727\u7027\u74CF\u7C60\u807E\u5121\u7028\u7262\u78CA\u8CC2\u8CDA\u8CF4\u96F7\u4E86\u50DA\u5BEE\u5ED6\u6599\u71CE\u7642\u77AD\u804A\u84FC"],["d7a1","\u907C\u9B27\u9F8D\u58D8\u5A41\u5C62\u6A13\u6DDA\u6F0F\u763B\u7D2F\u7E37\u851E\u8938\u93E4\u964B\u5289\u65D2\u67F3\u69B4\u6D41\u6E9C\u700F\u7409\u7460\u7559\u7624\u786B\u8B2C\u985E\u516D\u622E\u9678\u4F96\u502B\u5D19\u6DEA\u7DB8\u8F2A\u5F8B\u6144\u6817\uF961\u9686\u52D2\u808B\u51DC\u51CC\u695E\u7A1C\u7DBE\u83F1\u9675\u4FDA\u5229\u5398\u540F\u550E\u5C65\u60A7\u674E\u68A8\u6D6C\u7281\u72F8\u7406\u7483\uF962\u75E2\u7C6C\u7F79\u7FB8\u8389\u88CF\u88E1\u91CC\u91D0\u96E2\u9BC9\u541D\u6F7E\u71D0\u7498\u85FA\u8EAA\u96A3\u9C57\u9E9F\u6797\u6DCB\u7433\u81E8\u9716\u782C"],["d8a1","\u7ACB\u7B20\u7C92\u6469\u746A\u75F2\u78BC\u78E8\u99AC\u9B54\u9EBB\u5BDE\u5E55\u6F20\u819C\u83AB\u9088\u4E07\u534D\u5A29\u5DD2\u5F4E\u6162\u633D\u6669\u66FC\u6EFF\u6F2B\u7063\u779E\u842C\u8513\u883B\u8F13\u9945\u9C3B\u551C\u62B9\u672B\u6CAB\u8309\u896A\u977A\u4EA1\u5984\u5FD8\u5FD9\u671B\u7DB2\u7F54\u8292\u832B\u83BD\u8F1E\u9099\u57CB\u59B9\u5A92\u5BD0\u6627\u679A\u6885\u6BCF\u7164\u7F75\u8CB7\u8CE3\u9081\u9B45\u8108\u8C8A\u964C\u9A40\u9EA5\u5B5F\u6C13\u731B\u76F2\u76DF\u840C\u51AA\u8993\u514D\u5195\u52C9\u68C9\u6C94\u7704\u7720\u7DBF\u7DEC\u9762\u9EB5\u6EC5"],["d9a1","\u8511\u51A5\u540D\u547D\u660E\u669D\u6927\u6E9F\u76BF\u7791\u8317\u84C2\u879F\u9169\u9298\u9CF4\u8882\u4FAE\u5192\u52DF\u59C6\u5E3D\u6155\u6478\u6479\u66AE\u67D0\u6A21\u6BCD\u6BDB\u725F\u7261\u7441\u7738\u77DB\u8017\u82BC\u8305\u8B00\u8B28\u8C8C\u6728\u6C90\u7267\u76EE\u7766\u7A46\u9DA9\u6B7F\u6C92\u5922\u6726\u8499\u536F\u5893\u5999\u5EDF\u63CF\u6634\u6773\u6E3A\u732B\u7AD7\u82D7\u9328\u52D9\u5DEB\u61AE\u61CB\u620A\u62C7\u64AB\u65E0\u6959\u6B66\u6BCB\u7121\u73F7\u755D\u7E46\u821E\u8302\u856A\u8AA3\u8CBF\u9727\u9D61\u58A8\u9ED8\u5011\u520E\u543B\u554F\u6587"],["daa1","\u6C76\u7D0A\u7D0B\u805E\u868A\u9580\u96EF\u52FF\u6C95\u7269\u5473\u5A9A\u5C3E\u5D4B\u5F4C\u5FAE\u672A\u68B6\u6963\u6E3C\u6E44\u7709\u7C73\u7F8E\u8587\u8B0E\u8FF7\u9761\u9EF4\u5CB7\u60B6\u610D\u61AB\u654F\u65FB\u65FC\u6C11\u6CEF\u739F\u73C9\u7DE1\u9594\u5BC6\u871C\u8B10\u525D\u535A\u62CD\u640F\u64B2\u6734\u6A38\u6CCA\u73C0\u749E\u7B94\u7C95\u7E1B\u818A\u8236\u8584\u8FEB\u96F9\u99C1\u4F34\u534A\u53CD\u53DB\u62CC\u642C\u6500\u6591\u69C3\u6CEE\u6F58\u73ED\u7554\u7622\u76E4\u76FC\u78D0\u78FB\u792C\u7D46\u822C\u87E0\u8FD4\u9812\u98EF\u52C3\u62D4\u64A5\u6E24\u6F51"],["dba1","\u767C\u8DCB\u91B1\u9262\u9AEE\u9B43\u5023\u508D\u574A\u59A8\u5C28\u5E47\u5F77\u623F\u653E\u65B9\u65C1\u6609\u678B\u699C\u6EC2\u78C5\u7D21\u80AA\u8180\u822B\u82B3\u84A1\u868C\u8A2A\u8B17\u90A6\u9632\u9F90\u500D\u4FF3\uF963\u57F9\u5F98\u62DC\u6392\u676F\u6E43\u7119\u76C3\u80CC\u80DA\u88F4\u88F5\u8919\u8CE0\u8F29\u914D\u966A\u4F2F\u4F70\u5E1B\u67CF\u6822\u767D\u767E\u9B44\u5E61\u6A0A\u7169\u71D4\u756A\uF964\u7E41\u8543\u85E9\u98DC\u4F10\u7B4F\u7F70\u95A5\u51E1\u5E06\u68B5\u6C3E\u6C4E\u6CDB\u72AF\u7BC4\u8303\u6CD5\u743A\u50FB\u5288\u58C1\u64D8\u6A97\u74A7\u7656"],["dca1","\u78A7\u8617\u95E2\u9739\uF965\u535E\u5F01\u8B8A\u8FA8\u8FAF\u908A\u5225\u77A5\u9C49\u9F08\u4E19\u5002\u5175\u5C5B\u5E77\u661E\u663A\u67C4\u68C5\u70B3\u7501\u75C5\u79C9\u7ADD\u8F27\u9920\u9A08\u4FDD\u5821\u5831\u5BF6\u666E\u6B65\u6D11\u6E7A\u6F7D\u73E4\u752B\u83E9\u88DC\u8913\u8B5C\u8F14\u4F0F\u50D5\u5310\u535C\u5B93\u5FA9\u670D\u798F\u8179\u832F\u8514\u8907\u8986\u8F39\u8F3B\u99A5\u9C12\u672C\u4E76\u4FF8\u5949\u5C01\u5CEF\u5CF0\u6367\u68D2\u70FD\u71A2\u742B\u7E2B\u84EC\u8702\u9022\u92D2\u9CF3\u4E0D\u4ED8\u4FEF\u5085\u5256\u526F\u5426\u5490\u57E0\u592B\u5A66"],["dda1","\u5B5A\u5B75\u5BCC\u5E9C\uF966\u6276\u6577\u65A7\u6D6E\u6EA5\u7236\u7B26\u7C3F\u7F36\u8150\u8151\u819A\u8240\u8299\u83A9\u8A03\u8CA0\u8CE6\u8CFB\u8D74\u8DBA\u90E8\u91DC\u961C\u9644\u99D9\u9CE7\u5317\u5206\u5429\u5674\u58B3\u5954\u596E\u5FFF\u61A4\u626E\u6610\u6C7E\u711A\u76C6\u7C89\u7CDE\u7D1B\u82AC\u8CC1\u96F0\uF967\u4F5B\u5F17\u5F7F\u62C2\u5D29\u670B\u68DA\u787C\u7E43\u9D6C\u4E15\u5099\u5315\u532A\u5351\u5983\u5A62\u5E87\u60B2\u618A\u6249\u6279\u6590\u6787\u69A7\u6BD4\u6BD6\u6BD7\u6BD8\u6CB8\uF968\u7435\u75FA\u7812\u7891\u79D5\u79D8\u7C83\u7DCB\u7FE1\u80A5"],["dea1","\u813E\u81C2\u83F2\u871A\u88E8\u8AB9\u8B6C\u8CBB\u9119\u975E\u98DB\u9F3B\u56AC\u5B2A\u5F6C\u658C\u6AB3\u6BAF\u6D5C\u6FF1\u7015\u725D\u73AD\u8CA7\u8CD3\u983B\u6191\u6C37\u8058\u9A01\u4E4D\u4E8B\u4E9B\u4ED5\u4F3A\u4F3C\u4F7F\u4FDF\u50FF\u53F2\u53F8\u5506\u55E3\u56DB\u58EB\u5962\u5A11\u5BEB\u5BFA\u5C04\u5DF3\u5E2B\u5F99\u601D\u6368\u659C\u65AF\u67F6\u67FB\u68AD\u6B7B\u6C99\u6CD7\u6E23\u7009\u7345\u7802\u793E\u7940\u7960\u79C1\u7BE9\u7D17\u7D72\u8086\u820D\u838E\u84D1\u86C7\u88DF\u8A50\u8A5E\u8B1D\u8CDC\u8D66\u8FAD\u90AA\u98FC\u99DF\u9E9D\u524A\uF969\u6714\uF96A"],["dfa1","\u5098\u522A\u5C71\u6563\u6C55\u73CA\u7523\u759D\u7B97\u849C\u9178\u9730\u4E77\u6492\u6BBA\u715E\u85A9\u4E09\uF96B\u6749\u68EE\u6E17\u829F\u8518\u886B\u63F7\u6F81\u9212\u98AF\u4E0A\u50B7\u50CF\u511F\u5546\u55AA\u5617\u5B40\u5C19\u5CE0\u5E38\u5E8A\u5EA0\u5EC2\u60F3\u6851\u6A61\u6E58\u723D\u7240\u72C0\u76F8\u7965\u7BB1\u7FD4\u88F3\u89F4\u8A73\u8C61\u8CDE\u971C\u585E\u74BD\u8CFD\u55C7\uF96C\u7A61\u7D22\u8272\u7272\u751F\u7525\uF96D\u7B19\u5885\u58FB\u5DBC\u5E8F\u5EB6\u5F90\u6055\u6292\u637F\u654D\u6691\u66D9\u66F8\u6816\u68F2\u7280\u745E\u7B6E\u7D6E\u7DD6\u7F72"],["e0a1","\u80E5\u8212\u85AF\u897F\u8A93\u901D\u92E4\u9ECD\u9F20\u5915\u596D\u5E2D\u60DC\u6614\u6673\u6790\u6C50\u6DC5\u6F5F\u77F3\u78A9\u84C6\u91CB\u932B\u4ED9\u50CA\u5148\u5584\u5B0B\u5BA3\u6247\u657E\u65CB\u6E32\u717D\u7401\u7444\u7487\u74BF\u766C\u79AA\u7DDA\u7E55\u7FA8\u817A\u81B3\u8239\u861A\u87EC\u8A75\u8DE3\u9078\u9291\u9425\u994D\u9BAE\u5368\u5C51\u6954\u6CC4\u6D29\u6E2B\u820C\u859B\u893B\u8A2D\u8AAA\u96EA\u9F67\u5261\u66B9\u6BB2\u7E96\u87FE\u8D0D\u9583\u965D\u651D\u6D89\u71EE\uF96E\u57CE\u59D3\u5BAC\u6027\u60FA\u6210\u661F\u665F\u7329\u73F9\u76DB\u7701\u7B6C"],["e1a1","\u8056\u8072\u8165\u8AA0\u9192\u4E16\u52E2\u6B72\u6D17\u7A05\u7B39\u7D30\uF96F\u8CB0\u53EC\u562F\u5851\u5BB5\u5C0F\u5C11\u5DE2\u6240\u6383\u6414\u662D\u68B3\u6CBC\u6D88\u6EAF\u701F\u70A4\u71D2\u7526\u758F\u758E\u7619\u7B11\u7BE0\u7C2B\u7D20\u7D39\u852C\u856D\u8607\u8A34\u900D\u9061\u90B5\u92B7\u97F6\u9A37\u4FD7\u5C6C\u675F\u6D91\u7C9F\u7E8C\u8B16\u8D16\u901F\u5B6B\u5DFD\u640D\u84C0\u905C\u98E1\u7387\u5B8B\u609A\u677E\u6DDE\u8A1F\u8AA6\u9001\u980C\u5237\uF970\u7051\u788E\u9396\u8870\u91D7\u4FEE\u53D7\u55FD\u56DA\u5782\u58FD\u5AC2\u5B88\u5CAB\u5CC0\u5E25\u6101"],["e2a1","\u620D\u624B\u6388\u641C\u6536\u6578\u6A39\u6B8A\u6C34\u6D19\u6F31\u71E7\u72E9\u7378\u7407\u74B2\u7626\u7761\u79C0\u7A57\u7AEA\u7CB9\u7D8F\u7DAC\u7E61\u7F9E\u8129\u8331\u8490\u84DA\u85EA\u8896\u8AB0\u8B90\u8F38\u9042\u9083\u916C\u9296\u92B9\u968B\u96A7\u96A8\u96D6\u9700\u9808\u9996\u9AD3\u9B1A\u53D4\u587E\u5919\u5B70\u5BBF\u6DD1\u6F5A\u719F\u7421\u74B9\u8085\u83FD\u5DE1\u5F87\u5FAA\u6042\u65EC\u6812\u696F\u6A53\u6B89\u6D35\u6DF3\u73E3\u76FE\u77AC\u7B4D\u7D14\u8123\u821C\u8340\u84F4\u8563\u8A62\u8AC4\u9187\u931E\u9806\u99B4\u620C\u8853\u8FF0\u9265\u5D07\u5D27"],["e3a1","\u5D69\u745F\u819D\u8768\u6FD5\u62FE\u7FD2\u8936\u8972\u4E1E\u4E58\u50E7\u52DD\u5347\u627F\u6607\u7E69\u8805\u965E\u4F8D\u5319\u5636\u59CB\u5AA4\u5C38\u5C4E\u5C4D\u5E02\u5F11\u6043\u65BD\u662F\u6642\u67BE\u67F4\u731C\u77E2\u793A\u7FC5\u8494\u84CD\u8996\u8A66\u8A69\u8AE1\u8C55\u8C7A\u57F4\u5BD4\u5F0F\u606F\u62ED\u690D\u6B96\u6E5C\u7184\u7BD2\u8755\u8B58\u8EFE\u98DF\u98FE\u4F38\u4F81\u4FE1\u547B\u5A20\u5BB8\u613C\u65B0\u6668\u71FC\u7533\u795E\u7D33\u814E\u81E3\u8398\u85AA\u85CE\u8703\u8A0A\u8EAB\u8F9B\uF971\u8FC5\u5931\u5BA4\u5BE6\u6089\u5BE9\u5C0B\u5FC3\u6C81"],["e4a1","\uF972\u6DF1\u700B\u751A\u82AF\u8AF6\u4EC0\u5341\uF973\u96D9\u6C0F\u4E9E\u4FC4\u5152\u555E\u5A25\u5CE8\u6211\u7259\u82BD\u83AA\u86FE\u8859\u8A1D\u963F\u96C5\u9913\u9D09\u9D5D\u580A\u5CB3\u5DBD\u5E44\u60E1\u6115\u63E1\u6A02\u6E25\u9102\u9354\u984E\u9C10\u9F77\u5B89\u5CB8\u6309\u664F\u6848\u773C\u96C1\u978D\u9854\u9B9F\u65A1\u8B01\u8ECB\u95BC\u5535\u5CA9\u5DD6\u5EB5\u6697\u764C\u83F4\u95C7\u58D3\u62BC\u72CE\u9D28\u4EF0\u592E\u600F\u663B\u6B83\u79E7\u9D26\u5393\u54C0\u57C3\u5D16\u611B\u66D6\u6DAF\u788D\u827E\u9698\u9744\u5384\u627C\u6396\u6DB2\u7E0A\u814B\u984D"],["e5a1","\u6AFB\u7F4C\u9DAF\u9E1A\u4E5F\u503B\u51B6\u591C\u60F9\u63F6\u6930\u723A\u8036\uF974\u91CE\u5F31\uF975\uF976\u7D04\u82E5\u846F\u84BB\u85E5\u8E8D\uF977\u4F6F\uF978\uF979\u58E4\u5B43\u6059\u63DA\u6518\u656D\u6698\uF97A\u694A\u6A23\u6D0B\u7001\u716C\u75D2\u760D\u79B3\u7A70\uF97B\u7F8A\uF97C\u8944\uF97D\u8B93\u91C0\u967D\uF97E\u990A\u5704\u5FA1\u65BC\u6F01\u7600\u79A6\u8A9E\u99AD\u9B5A\u9F6C\u5104\u61B6\u6291\u6A8D\u81C6\u5043\u5830\u5F66\u7109\u8A00\u8AFA\u5B7C\u8616\u4FFA\u513C\u56B4\u5944\u63A9\u6DF9\u5DAA\u696D\u5186\u4E88\u4F59\uF97F\uF980\uF981\u5982\uF982"],["e6a1","\uF983\u6B5F\u6C5D\uF984\u74B5\u7916\uF985\u8207\u8245\u8339\u8F3F\u8F5D\uF986\u9918\uF987\uF988\uF989\u4EA6\uF98A\u57DF\u5F79\u6613\uF98B\uF98C\u75AB\u7E79\u8B6F\uF98D\u9006\u9A5B\u56A5\u5827\u59F8\u5A1F\u5BB4\uF98E\u5EF6\uF98F\uF990\u6350\u633B\uF991\u693D\u6C87\u6CBF\u6D8E\u6D93\u6DF5\u6F14\uF992\u70DF\u7136\u7159\uF993\u71C3\u71D5\uF994\u784F\u786F\uF995\u7B75\u7DE3\uF996\u7E2F\uF997\u884D\u8EDF\uF998\uF999\uF99A\u925B\uF99B\u9CF6\uF99C\uF99D\uF99E\u6085\u6D85\uF99F\u71B1\uF9A0\uF9A1\u95B1\u53AD\uF9A2\uF9A3\uF9A4\u67D3\uF9A5\u708E\u7130\u7430\u8276\u82D2"],["e7a1","\uF9A6\u95BB\u9AE5\u9E7D\u66C4\uF9A7\u71C1\u8449\uF9A8\uF9A9\u584B\uF9AA\uF9AB\u5DB8\u5F71\uF9AC\u6620\u668E\u6979\u69AE\u6C38\u6CF3\u6E36\u6F41\u6FDA\u701B\u702F\u7150\u71DF\u7370\uF9AD\u745B\uF9AE\u74D4\u76C8\u7A4E\u7E93\uF9AF\uF9B0\u82F1\u8A60\u8FCE\uF9B1\u9348\uF9B2\u9719\uF9B3\uF9B4\u4E42\u502A\uF9B5\u5208\u53E1\u66F3\u6C6D\u6FCA\u730A\u777F\u7A62\u82AE\u85DD\u8602\uF9B6\u88D4\u8A63\u8B7D\u8C6B\uF9B7\u92B3\uF9B8\u9713\u9810\u4E94\u4F0D\u4FC9\u50B2\u5348\u543E\u5433\u55DA\u5862\u58BA\u5967\u5A1B\u5BE4\u609F\uF9B9\u61CA\u6556\u65FF\u6664\u68A7\u6C5A\u6FB3"],["e8a1","\u70CF\u71AC\u7352\u7B7D\u8708\u8AA4\u9C32\u9F07\u5C4B\u6C83\u7344\u7389\u923A\u6EAB\u7465\u761F\u7A69\u7E15\u860A\u5140\u58C5\u64C1\u74EE\u7515\u7670\u7FC1\u9095\u96CD\u9954\u6E26\u74E6\u7AA9\u7AAA\u81E5\u86D9\u8778\u8A1B\u5A49\u5B8C\u5B9B\u68A1\u6900\u6D63\u73A9\u7413\u742C\u7897\u7DE9\u7FEB\u8118\u8155\u839E\u8C4C\u962E\u9811\u66F0\u5F80\u65FA\u6789\u6C6A\u738B\u502D\u5A03\u6B6A\u77EE\u5916\u5D6C\u5DCD\u7325\u754F\uF9BA\uF9BB\u50E5\u51F9\u582F\u592D\u5996\u59DA\u5BE5\uF9BC\uF9BD\u5DA2\u62D7\u6416\u6493\u64FE\uF9BE\u66DC\uF9BF\u6A48\uF9C0\u71FF\u7464\uF9C1"],["e9a1","\u7A88\u7AAF\u7E47\u7E5E\u8000\u8170\uF9C2\u87EF\u8981\u8B20\u9059\uF9C3\u9080\u9952\u617E\u6B32\u6D74\u7E1F\u8925\u8FB1\u4FD1\u50AD\u5197\u52C7\u57C7\u5889\u5BB9\u5EB8\u6142\u6995\u6D8C\u6E67\u6EB6\u7194\u7462\u7528\u752C\u8073\u8338\u84C9\u8E0A\u9394\u93DE\uF9C4\u4E8E\u4F51\u5076\u512A\u53C8\u53CB\u53F3\u5B87\u5BD3\u5C24\u611A\u6182\u65F4\u725B\u7397\u7440\u76C2\u7950\u7991\u79B9\u7D06\u7FBD\u828B\u85D5\u865E\u8FC2\u9047\u90F5\u91EA\u9685\u96E8\u96E9\u52D6\u5F67\u65ED\u6631\u682F\u715C\u7A36\u90C1\u980A\u4E91\uF9C5\u6A52\u6B9E\u6F90\u7189\u8018\u82B8\u8553"],["eaa1","\u904B\u9695\u96F2\u97FB\u851A\u9B31\u4E90\u718A\u96C4\u5143\u539F\u54E1\u5713\u5712\u57A3\u5A9B\u5AC4\u5BC3\u6028\u613F\u63F4\u6C85\u6D39\u6E72\u6E90\u7230\u733F\u7457\u82D1\u8881\u8F45\u9060\uF9C6\u9662\u9858\u9D1B\u6708\u8D8A\u925E\u4F4D\u5049\u50DE\u5371\u570D\u59D4\u5A01\u5C09\u6170\u6690\u6E2D\u7232\u744B\u7DEF\u80C3\u840E\u8466\u853F\u875F\u885B\u8918\u8B02\u9055\u97CB\u9B4F\u4E73\u4F91\u5112\u516A\uF9C7\u552F\u55A9\u5B7A\u5BA5\u5E7C\u5E7D\u5EBE\u60A0\u60DF\u6108\u6109\u63C4\u6538\u6709\uF9C8\u67D4\u67DA\uF9C9\u6961\u6962\u6CB9\u6D27\uF9CA\u6E38\uF9CB"],["eba1","\u6FE1\u7336\u7337\uF9CC\u745C\u7531\uF9CD\u7652\uF9CE\uF9CF\u7DAD\u81FE\u8438\u88D5\u8A98\u8ADB\u8AED\u8E30\u8E42\u904A\u903E\u907A\u9149\u91C9\u936E\uF9D0\uF9D1\u5809\uF9D2\u6BD3\u8089\u80B2\uF9D3\uF9D4\u5141\u596B\u5C39\uF9D5\uF9D6\u6F64\u73A7\u80E4\u8D07\uF9D7\u9217\u958F\uF9D8\uF9D9\uF9DA\uF9DB\u807F\u620E\u701C\u7D68\u878D\uF9DC\u57A0\u6069\u6147\u6BB7\u8ABE\u9280\u96B1\u4E59\u541F\u6DEB\u852D\u9670\u97F3\u98EE\u63D6\u6CE3\u9091\u51DD\u61C9\u81BA\u9DF9\u4F9D\u501A\u5100\u5B9C\u610F\u61FF\u64EC\u6905\u6BC5\u7591\u77E3\u7FA9\u8264\u858F\u87FB\u8863\u8ABC"],["eca1","\u8B70\u91AB\u4E8C\u4EE5\u4F0A\uF9DD\uF9DE\u5937\u59E8\uF9DF\u5DF2\u5F1B\u5F5B\u6021\uF9E0\uF9E1\uF9E2\uF9E3\u723E\u73E5\uF9E4\u7570\u75CD\uF9E5\u79FB\uF9E6\u800C\u8033\u8084\u82E1\u8351\uF9E7\uF9E8\u8CBD\u8CB3\u9087\uF9E9\uF9EA\u98F4\u990C\uF9EB\uF9EC\u7037\u76CA\u7FCA\u7FCC\u7FFC\u8B1A\u4EBA\u4EC1\u5203\u5370\uF9ED\u54BD\u56E0\u59FB\u5BC5\u5F15\u5FCD\u6E6E\uF9EE\uF9EF\u7D6A\u8335\uF9F0\u8693\u8A8D\uF9F1\u976D\u9777\uF9F2\uF9F3\u4E00\u4F5A\u4F7E\u58F9\u65E5\u6EA2\u9038\u93B0\u99B9\u4EFB\u58EC\u598A\u59D9\u6041\uF9F4\uF9F5\u7A14\uF9F6\u834F\u8CC3\u5165\u5344"],["eda1","\uF9F7\uF9F8\uF9F9\u4ECD\u5269\u5B55\u82BF\u4ED4\u523A\u54A8\u59C9\u59FF\u5B50\u5B57\u5B5C\u6063\u6148\u6ECB\u7099\u716E\u7386\u74F7\u75B5\u78C1\u7D2B\u8005\u81EA\u8328\u8517\u85C9\u8AEE\u8CC7\u96CC\u4F5C\u52FA\u56BC\u65AB\u6628\u707C\u70B8\u7235\u7DBD\u828D\u914C\u96C0\u9D72\u5B71\u68E7\u6B98\u6F7A\u76DE\u5C91\u66AB\u6F5B\u7BB4\u7C2A\u8836\u96DC\u4E08\u4ED7\u5320\u5834\u58BB\u58EF\u596C\u5C07\u5E33\u5E84\u5F35\u638C\u66B2\u6756\u6A1F\u6AA3\u6B0C\u6F3F\u7246\uF9FA\u7350\u748B\u7AE0\u7CA7\u8178\u81DF\u81E7\u838A\u846C\u8523\u8594\u85CF\u88DD\u8D13\u91AC\u9577"],["eea1","\u969C\u518D\u54C9\u5728\u5BB0\u624D\u6750\u683D\u6893\u6E3D\u6ED3\u707D\u7E21\u88C1\u8CA1\u8F09\u9F4B\u9F4E\u722D\u7B8F\u8ACD\u931A\u4F47\u4F4E\u5132\u5480\u59D0\u5E95\u62B5\u6775\u696E\u6A17\u6CAE\u6E1A\u72D9\u732A\u75BD\u7BB8\u7D35\u82E7\u83F9\u8457\u85F7\u8A5B\u8CAF\u8E87\u9019\u90B8\u96CE\u9F5F\u52E3\u540A\u5AE1\u5BC2\u6458\u6575\u6EF4\u72C4\uF9FB\u7684\u7A4D\u7B1B\u7C4D\u7E3E\u7FDF\u837B\u8B2B\u8CCA\u8D64\u8DE1\u8E5F\u8FEA\u8FF9\u9069\u93D1\u4F43\u4F7A\u50B3\u5168\u5178\u524D\u526A\u5861\u587C\u5960\u5C08\u5C55\u5EDB\u609B\u6230\u6813\u6BBF\u6C08\u6FB1"],["efa1","\u714E\u7420\u7530\u7538\u7551\u7672\u7B4C\u7B8B\u7BAD\u7BC6\u7E8F\u8A6E\u8F3E\u8F49\u923F\u9293\u9322\u942B\u96FB\u985A\u986B\u991E\u5207\u622A\u6298\u6D59\u7664\u7ACA\u7BC0\u7D76\u5360\u5CBE\u5E97\u6F38\u70B9\u7C98\u9711\u9B8E\u9EDE\u63A5\u647A\u8776\u4E01\u4E95\u4EAD\u505C\u5075\u5448\u59C3\u5B9A\u5E40\u5EAD\u5EF7\u5F81\u60C5\u633A\u653F\u6574\u65CC\u6676\u6678\u67FE\u6968\u6A89\u6B63\u6C40\u6DC0\u6DE8\u6E1F\u6E5E\u701E\u70A1\u738E\u73FD\u753A\u775B\u7887\u798E\u7A0B\u7A7D\u7CBE\u7D8E\u8247\u8A02\u8AEA\u8C9E\u912D\u914A\u91D8\u9266\u92CC\u9320\u9706\u9756"],["f0a1","\u975C\u9802\u9F0E\u5236\u5291\u557C\u5824\u5E1D\u5F1F\u608C\u63D0\u68AF\u6FDF\u796D\u7B2C\u81CD\u85BA\u88FD\u8AF8\u8E44\u918D\u9664\u969B\u973D\u984C\u9F4A\u4FCE\u5146\u51CB\u52A9\u5632\u5F14\u5F6B\u63AA\u64CD\u65E9\u6641\u66FA\u66F9\u671D\u689D\u68D7\u69FD\u6F15\u6F6E\u7167\u71E5\u722A\u74AA\u773A\u7956\u795A\u79DF\u7A20\u7A95\u7C97\u7CDF\u7D44\u7E70\u8087\u85FB\u86A4\u8A54\u8ABF\u8D99\u8E81\u9020\u906D\u91E3\u963B\u96D5\u9CE5\u65CF\u7C07\u8DB3\u93C3\u5B58\u5C0A\u5352\u62D9\u731D\u5027\u5B97\u5F9E\u60B0\u616B\u68D5\u6DD9\u742E\u7A2E\u7D42\u7D9C\u7E31\u816B"],["f1a1","\u8E2A\u8E35\u937E\u9418\u4F50\u5750\u5DE6\u5EA7\u632B\u7F6A\u4E3B\u4F4F\u4F8F\u505A\u59DD\u80C4\u546A\u5468\u55FE\u594F\u5B99\u5DDE\u5EDA\u665D\u6731\u67F1\u682A\u6CE8\u6D32\u6E4A\u6F8D\u70B7\u73E0\u7587\u7C4C\u7D02\u7D2C\u7DA2\u821F\u86DB\u8A3B\u8A85\u8D70\u8E8A\u8F33\u9031\u914E\u9152\u9444\u99D0\u7AF9\u7CA5\u4FCA\u5101\u51C6\u57C8\u5BEF\u5CFB\u6659\u6A3D\u6D5A\u6E96\u6FEC\u710C\u756F\u7AE3\u8822\u9021\u9075\u96CB\u99FF\u8301\u4E2D\u4EF2\u8846\u91CD\u537D\u6ADB\u696B\u6C41\u847A\u589E\u618E\u66FE\u62EF\u70DD\u7511\u75C7\u7E52\u84B8\u8B49\u8D08\u4E4B\u53EA"],["f2a1","\u54AB\u5730\u5740\u5FD7\u6301\u6307\u646F\u652F\u65E8\u667A\u679D\u67B3\u6B62\u6C60\u6C9A\u6F2C\u77E5\u7825\u7949\u7957\u7D19\u80A2\u8102\u81F3\u829D\u82B7\u8718\u8A8C\uF9FC\u8D04\u8DBE\u9072\u76F4\u7A19\u7A37\u7E54\u8077\u5507\u55D4\u5875\u632F\u6422\u6649\u664B\u686D\u699B\u6B84\u6D25\u6EB1\u73CD\u7468\u74A1\u755B\u75B9\u76E1\u771E\u778B\u79E6\u7E09\u7E1D\u81FB\u852F\u8897\u8A3A\u8CD1\u8EEB\u8FB0\u9032\u93AD\u9663\u9673\u9707\u4F84\u53F1\u59EA\u5AC9\u5E19\u684E\u74C6\u75BE\u79E9\u7A92\u81A3\u86ED\u8CEA\u8DCC\u8FED\u659F\u6715\uF9FD\u57F7\u6F57\u7DDD\u8F2F"],["f3a1","\u93F6\u96C6\u5FB5\u61F2\u6F84\u4E14\u4F98\u501F\u53C9\u55DF\u5D6F\u5DEE\u6B21\u6B64\u78CB\u7B9A\uF9FE\u8E49\u8ECA\u906E\u6349\u643E\u7740\u7A84\u932F\u947F\u9F6A\u64B0\u6FAF\u71E6\u74A8\u74DA\u7AC4\u7C12\u7E82\u7CB2\u7E98\u8B9A\u8D0A\u947D\u9910\u994C\u5239\u5BDF\u64E6\u672D\u7D2E\u50ED\u53C3\u5879\u6158\u6159\u61FA\u65AC\u7AD9\u8B92\u8B96\u5009\u5021\u5275\u5531\u5A3C\u5EE0\u5F70\u6134\u655E\u660C\u6636\u66A2\u69CD\u6EC4\u6F32\u7316\u7621\u7A93\u8139\u8259\u83D6\u84BC\u50B5\u57F0\u5BC0\u5BE8\u5F69\u63A1\u7826\u7DB5\u83DC\u8521\u91C7\u91F5\u518A\u67F5\u7B56"],["f4a1","\u8CAC\u51C4\u59BB\u60BD\u8655\u501C\uF9FF\u5254\u5C3A\u617D\u621A\u62D3\u64F2\u65A5\u6ECC\u7620\u810A\u8E60\u965F\u96BB\u4EDF\u5343\u5598\u5929\u5DDD\u64C5\u6CC9\u6DFA\u7394\u7A7F\u821B\u85A6\u8CE4\u8E10\u9077\u91E7\u95E1\u9621\u97C6\u51F8\u54F2\u5586\u5FB9\u64A4\u6F88\u7DB4\u8F1F\u8F4D\u9435\u50C9\u5C16\u6CBE\u6DFB\u751B\u77BB\u7C3D\u7C64\u8A79\u8AC2\u581E\u59BE\u5E16\u6377\u7252\u758A\u776B\u8ADC\u8CBC\u8F12\u5EF3\u6674\u6DF8\u807D\u83C1\u8ACB\u9751\u9BD6\uFA00\u5243\u66FF\u6D95\u6EEF\u7DE0\u8AE6\u902E\u905E\u9AD4\u521D\u527F\u54E8\u6194\u6284\u62DB\u68A2"],["f5a1","\u6912\u695A\u6A35\u7092\u7126\u785D\u7901\u790E\u79D2\u7A0D\u8096\u8278\u82D5\u8349\u8549\u8C82\u8D85\u9162\u918B\u91AE\u4FC3\u56D1\u71ED\u77D7\u8700\u89F8\u5BF8\u5FD6\u6751\u90A8\u53E2\u585A\u5BF5\u60A4\u6181\u6460\u7E3D\u8070\u8525\u9283\u64AE\u50AC\u5D14\u6700\u589C\u62BD\u63A8\u690E\u6978\u6A1E\u6E6B\u76BA\u79CB\u82BB\u8429\u8ACF\u8DA8\u8FFD\u9112\u914B\u919C\u9310\u9318\u939A\u96DB\u9A36\u9C0D\u4E11\u755C\u795D\u7AFA\u7B51\u7BC9\u7E2E\u84C4\u8E59\u8E74\u8EF8\u9010\u6625\u693F\u7443\u51FA\u672E\u9EDC\u5145\u5FE0\u6C96\u87F2\u885D\u8877\u60B4\u81B5\u8403"],["f6a1","\u8D05\u53D6\u5439\u5634\u5A36\u5C31\u708A\u7FE0\u805A\u8106\u81ED\u8DA3\u9189\u9A5F\u9DF2\u5074\u4EC4\u53A0\u60FB\u6E2C\u5C64\u4F88\u5024\u55E4\u5CD9\u5E5F\u6065\u6894\u6CBB\u6DC4\u71BE\u75D4\u75F4\u7661\u7A1A\u7A49\u7DC7\u7DFB\u7F6E\u81F4\u86A9\u8F1C\u96C9\u99B3\u9F52\u5247\u52C5\u98ED\u89AA\u4E03\u67D2\u6F06\u4FB5\u5BE2\u6795\u6C88\u6D78\u741B\u7827\u91DD\u937C\u87C4\u79E4\u7A31\u5FEB\u4ED6\u54A4\u553E\u58AE\u59A5\u60F0\u6253\u62D6\u6736\u6955\u8235\u9640\u99B1\u99DD\u502C\u5353\u5544\u577C\uFA01\u6258\uFA02\u64E2\u666B\u67DD\u6FC1\u6FEF\u7422\u7438\u8A17"],["f7a1","\u9438\u5451\u5606\u5766\u5F48\u619A\u6B4E\u7058\u70AD\u7DBB\u8A95\u596A\u812B\u63A2\u7708\u803D\u8CAA\u5854\u642D\u69BB\u5B95\u5E11\u6E6F\uFA03\u8569\u514C\u53F0\u592A\u6020\u614B\u6B86\u6C70\u6CF0\u7B1E\u80CE\u82D4\u8DC6\u90B0\u98B1\uFA04\u64C7\u6FA4\u6491\u6504\u514E\u5410\u571F\u8A0E\u615F\u6876\uFA05\u75DB\u7B52\u7D71\u901A\u5806\u69CC\u817F\u892A\u9000\u9839\u5078\u5957\u59AC\u6295\u900F\u9B2A\u615D\u7279\u95D6\u5761\u5A46\u5DF4\u628A\u64AD\u64FA\u6777\u6CE2\u6D3E\u722C\u7436\u7834\u7F77\u82AD\u8DDB\u9817\u5224\u5742\u677F\u7248\u74E3\u8CA9\u8FA6\u9211"],["f8a1","\u962A\u516B\u53ED\u634C\u4F69\u5504\u6096\u6557\u6C9B\u6D7F\u724C\u72FD\u7A17\u8987\u8C9D\u5F6D\u6F8E\u70F9\u81A8\u610E\u4FBF\u504F\u6241\u7247\u7BC7\u7DE8\u7FE9\u904D\u97AD\u9A19\u8CB6\u576A\u5E73\u67B0\u840D\u8A55\u5420\u5B16\u5E63\u5EE2\u5F0A\u6583\u80BA\u853D\u9589\u965B\u4F48\u5305\u530D\u530F\u5486\u54FA\u5703\u5E03\u6016\u629B\u62B1\u6355\uFA06\u6CE1\u6D66\u75B1\u7832\u80DE\u812F\u82DE\u8461\u84B2\u888D\u8912\u900B\u92EA\u98FD\u9B91\u5E45\u66B4\u66DD\u7011\u7206\uFA07\u4FF5\u527D\u5F6A\u6153\u6753\u6A19\u6F02\u74E2\u7968\u8868\u8C79\u98C7\u98C4\u9A43"],["f9a1","\u54C1\u7A1F\u6953\u8AF7\u8C4A\u98A8\u99AE\u5F7C\u62AB\u75B2\u76AE\u88AB\u907F\u9642\u5339\u5F3C\u5FC5\u6CCC\u73CC\u7562\u758B\u7B46\u82FE\u999D\u4E4F\u903C\u4E0B\u4F55\u53A6\u590F\u5EC8\u6630\u6CB3\u7455\u8377\u8766\u8CC0\u9050\u971E\u9C15\u58D1\u5B78\u8650\u8B14\u9DB4\u5BD2\u6068\u608D\u65F1\u6C57\u6F22\u6FA3\u701A\u7F55\u7FF0\u9591\u9592\u9650\u97D3\u5272\u8F44\u51FD\u542B\u54B8\u5563\u558A\u6ABB\u6DB5\u7DD8\u8266\u929C\u9677\u9E79\u5408\u54C8\u76D2\u86E4\u95A4\u95D4\u965C\u4EA2\u4F09\u59EE\u5AE6\u5DF7\u6052\u6297\u676D\u6841\u6C86\u6E2F\u7F38\u809B\u822A"],["faa1","\uFA08\uFA09\u9805\u4EA5\u5055\u54B3\u5793\u595A\u5B69\u5BB3\u61C8\u6977\u6D77\u7023\u87F9\u89E3\u8A72\u8AE7\u9082\u99ED\u9AB8\u52BE\u6838\u5016\u5E78\u674F\u8347\u884C\u4EAB\u5411\u56AE\u73E6\u9115\u97FF\u9909\u9957\u9999\u5653\u589F\u865B\u8A31\u61B2\u6AF6\u737B\u8ED2\u6B47\u96AA\u9A57\u5955\u7200\u8D6B\u9769\u4FD4\u5CF4\u5F26\u61F8\u665B\u6CEB\u70AB\u7384\u73B9\u73FE\u7729\u774D\u7D43\u7D62\u7E23\u8237\u8852\uFA0A\u8CE2\u9249\u986F\u5B51\u7A74\u8840\u9801\u5ACC\u4FE0\u5354\u593E\u5CFD\u633E\u6D79\u72F9\u8105\u8107\u83A2\u92CF\u9830\u4EA8\u5144\u5211\u578B"],["fba1","\u5F62\u6CC2\u6ECE\u7005\u7050\u70AF\u7192\u73E9\u7469\u834A\u87A2\u8861\u9008\u90A2\u93A3\u99A8\u516E\u5F57\u60E0\u6167\u66B3\u8559\u8E4A\u91AF\u978B\u4E4E\u4E92\u547C\u58D5\u58FA\u597D\u5CB5\u5F27\u6236\u6248\u660A\u6667\u6BEB\u6D69\u6DCF\u6E56\u6EF8\u6F94\u6FE0\u6FE9\u705D\u72D0\u7425\u745A\u74E0\u7693\u795C\u7CCA\u7E1E\u80E1\u82A6\u846B\u84BF\u864E\u865F\u8774\u8B77\u8C6A\u93AC\u9800\u9865\u60D1\u6216\u9177\u5A5A\u660F\u6DF7\u6E3E\u743F\u9B42\u5FFD\u60DA\u7B0F\u54C4\u5F18\u6C5E\u6CD3\u6D2A\u70D8\u7D05\u8679\u8A0C\u9D3B\u5316\u548C\u5B05\u6A3A\u706B\u7575"],["fca1","\u798D\u79BE\u82B1\u83EF\u8A71\u8B41\u8CA8\u9774\uFA0B\u64F4\u652B\u78BA\u78BB\u7A6B\u4E38\u559A\u5950\u5BA6\u5E7B\u60A3\u63DB\u6B61\u6665\u6853\u6E19\u7165\u74B0\u7D08\u9084\u9A69\u9C25\u6D3B\u6ED1\u733E\u8C41\u95CA\u51F0\u5E4C\u5FA8\u604D\u60F6\u6130\u614C\u6643\u6644\u69A5\u6CC1\u6E5F\u6EC9\u6F62\u714C\u749C\u7687\u7BC1\u7C27\u8352\u8757\u9051\u968D\u9EC3\u532F\u56DE\u5EFB\u5F8A\u6062\u6094\u61F7\u6666\u6703\u6A9C\u6DEE\u6FAE\u7070\u736A\u7E6A\u81BE\u8334\u86D4\u8AA8\u8CC4\u5283\u7372\u5B96\u6A6B\u9404\u54EE\u5686\u5B5D\u6548\u6585\u66C9\u689F\u6D8D\u6DC6"],["fda1","\u723B\u80B4\u9175\u9A4D\u4FAF\u5019\u539A\u540E\u543C\u5589\u55C5\u5E3F\u5F8C\u673D\u7166\u73DD\u9005\u52DB\u52F3\u5864\u58CE\u7104\u718F\u71FB\u85B0\u8A13\u6688\u85A8\u55A7\u6684\u714A\u8431\u5349\u5599\u6BC1\u5F59\u5FBD\u63EE\u6689\u7147\u8AF1\u8F1D\u9EBE\u4F11\u643A\u70CB\u7566\u8667\u6064\u8B4E\u9DF8\u5147\u51F6\u5308\u6D36\u80F8\u9ED1\u6615\u6B23\u7098\u75D5\u5403\u5C79\u7D07\u8A16\u6B20\u6B3D\u6B46\u5438\u6070\u6D3D\u7FD5\u8208\u50D6\u51DE\u559C\u566B\u56CD\u59EC\u5B09\u5E0C\u6199\u6198\u6231\u665E\u66E6\u7199\u71B9\u71BA\u72A7\u79A7\u7A00\u7FB2\u8A70"]]});var z2=b((Uut,Q4e)=>{Q4e.exports=[["0","\0",127],["a140","\u3000\uFF0C\u3001\u3002\uFF0E\u2027\uFF1B\uFF1A\uFF1F\uFF01\uFE30\u2026\u2025\uFE50\uFE51\uFE52\xB7\uFE54\uFE55\uFE56\uFE57\uFF5C\u2013\uFE31\u2014\uFE33\u2574\uFE34\uFE4F\uFF08\uFF09\uFE35\uFE36\uFF5B\uFF5D\uFE37\uFE38\u3014\u3015\uFE39\uFE3A\u3010\u3011\uFE3B\uFE3C\u300A\u300B\uFE3D\uFE3E\u3008\u3009\uFE3F\uFE40\u300C\u300D\uFE41\uFE42\u300E\u300F\uFE43\uFE44\uFE59\uFE5A"],["a1a1","\uFE5B\uFE5C\uFE5D\uFE5E\u2018\u2019\u201C\u201D\u301D\u301E\u2035\u2032\uFF03\uFF06\uFF0A\u203B\xA7\u3003\u25CB\u25CF\u25B3\u25B2\u25CE\u2606\u2605\u25C7\u25C6\u25A1\u25A0\u25BD\u25BC\u32A3\u2105\xAF\uFFE3\uFF3F\u02CD\uFE49\uFE4A\uFE4D\uFE4E\uFE4B\uFE4C\uFE5F\uFE60\uFE61\uFF0B\uFF0D\xD7\xF7\xB1\u221A\uFF1C\uFF1E\uFF1D\u2266\u2267\u2260\u221E\u2252\u2261\uFE62",4,"\uFF5E\u2229\u222A\u22A5\u2220\u221F\u22BF\u33D2\u33D1\u222B\u222E\u2235\u2234\u2640\u2642\u2295\u2299\u2191\u2193\u2190\u2192\u2196\u2197\u2199\u2198\u2225\u2223\uFF0F"],["a240","\uFF3C\u2215\uFE68\uFF04\uFFE5\u3012\uFFE0\uFFE1\uFF05\uFF20\u2103\u2109\uFE69\uFE6A\uFE6B\u33D5\u339C\u339D\u339E\u33CE\u33A1\u338E\u338F\u33C4\xB0\u5159\u515B\u515E\u515D\u5161\u5163\u55E7\u74E9\u7CCE\u2581",7,"\u258F\u258E\u258D\u258C\u258B\u258A\u2589\u253C\u2534\u252C\u2524\u251C\u2594\u2500\u2502\u2595\u250C\u2510\u2514\u2518\u256D"],["a2a1","\u256E\u2570\u256F\u2550\u255E\u256A\u2561\u25E2\u25E3\u25E5\u25E4\u2571\u2572\u2573\uFF10",9,"\u2160",9,"\u3021",8,"\u5341\u5344\u5345\uFF21",25,"\uFF41",21],["a340","\uFF57\uFF58\uFF59\uFF5A\u0391",16,"\u03A3",6,"\u03B1",16,"\u03C3",6,"\u3105",10],["a3a1","\u3110",25,"\u02D9\u02C9\u02CA\u02C7\u02CB"],["a3e1","\u20AC"],["a440","\u4E00\u4E59\u4E01\u4E03\u4E43\u4E5D\u4E86\u4E8C\u4EBA\u513F\u5165\u516B\u51E0\u5200\u5201\u529B\u5315\u5341\u535C\u53C8\u4E09\u4E0B\u4E08\u4E0A\u4E2B\u4E38\u51E1\u4E45\u4E48\u4E5F\u4E5E\u4E8E\u4EA1\u5140\u5203\u52FA\u5343\u53C9\u53E3\u571F\u58EB\u5915\u5927\u5973\u5B50\u5B51\u5B53\u5BF8\u5C0F\u5C22\u5C38\u5C71\u5DDD\u5DE5\u5DF1\u5DF2\u5DF3\u5DFE\u5E72\u5EFE\u5F0B\u5F13\u624D"],["a4a1","\u4E11\u4E10\u4E0D\u4E2D\u4E30\u4E39\u4E4B\u5C39\u4E88\u4E91\u4E95\u4E92\u4E94\u4EA2\u4EC1\u4EC0\u4EC3\u4EC6\u4EC7\u4ECD\u4ECA\u4ECB\u4EC4\u5143\u5141\u5167\u516D\u516E\u516C\u5197\u51F6\u5206\u5207\u5208\u52FB\u52FE\u52FF\u5316\u5339\u5348\u5347\u5345\u535E\u5384\u53CB\u53CA\u53CD\u58EC\u5929\u592B\u592A\u592D\u5B54\u5C11\u5C24\u5C3A\u5C6F\u5DF4\u5E7B\u5EFF\u5F14\u5F15\u5FC3\u6208\u6236\u624B\u624E\u652F\u6587\u6597\u65A4\u65B9\u65E5\u66F0\u6708\u6728\u6B20\u6B62\u6B79\u6BCB\u6BD4\u6BDB\u6C0F\u6C34\u706B\u722A\u7236\u723B\u7247\u7259\u725B\u72AC\u738B\u4E19"],["a540","\u4E16\u4E15\u4E14\u4E18\u4E3B\u4E4D\u4E4F\u4E4E\u4EE5\u4ED8\u4ED4\u4ED5\u4ED6\u4ED7\u4EE3\u4EE4\u4ED9\u4EDE\u5145\u5144\u5189\u518A\u51AC\u51F9\u51FA\u51F8\u520A\u52A0\u529F\u5305\u5306\u5317\u531D\u4EDF\u534A\u5349\u5361\u5360\u536F\u536E\u53BB\u53EF\u53E4\u53F3\u53EC\u53EE\u53E9\u53E8\u53FC\u53F8\u53F5\u53EB\u53E6\u53EA\u53F2\u53F1\u53F0\u53E5\u53ED\u53FB\u56DB\u56DA\u5916"],["a5a1","\u592E\u5931\u5974\u5976\u5B55\u5B83\u5C3C\u5DE8\u5DE7\u5DE6\u5E02\u5E03\u5E73\u5E7C\u5F01\u5F18\u5F17\u5FC5\u620A\u6253\u6254\u6252\u6251\u65A5\u65E6\u672E\u672C\u672A\u672B\u672D\u6B63\u6BCD\u6C11\u6C10\u6C38\u6C41\u6C40\u6C3E\u72AF\u7384\u7389\u74DC\u74E6\u7518\u751F\u7528\u7529\u7530\u7531\u7532\u7533\u758B\u767D\u76AE\u76BF\u76EE\u77DB\u77E2\u77F3\u793A\u79BE\u7A74\u7ACB\u4E1E\u4E1F\u4E52\u4E53\u4E69\u4E99\u4EA4\u4EA6\u4EA5\u4EFF\u4F09\u4F19\u4F0A\u4F15\u4F0D\u4F10\u4F11\u4F0F\u4EF2\u4EF6\u4EFB\u4EF0\u4EF3\u4EFD\u4F01\u4F0B\u5149\u5147\u5146\u5148\u5168"],["a640","\u5171\u518D\u51B0\u5217\u5211\u5212\u520E\u5216\u52A3\u5308\u5321\u5320\u5370\u5371\u5409\u540F\u540C\u540A\u5410\u5401\u540B\u5404\u5411\u540D\u5408\u5403\u540E\u5406\u5412\u56E0\u56DE\u56DD\u5733\u5730\u5728\u572D\u572C\u572F\u5729\u5919\u591A\u5937\u5938\u5984\u5978\u5983\u597D\u5979\u5982\u5981\u5B57\u5B58\u5B87\u5B88\u5B85\u5B89\u5BFA\u5C16\u5C79\u5DDE\u5E06\u5E76\u5E74"],["a6a1","\u5F0F\u5F1B\u5FD9\u5FD6\u620E\u620C\u620D\u6210\u6263\u625B\u6258\u6536\u65E9\u65E8\u65EC\u65ED\u66F2\u66F3\u6709\u673D\u6734\u6731\u6735\u6B21\u6B64\u6B7B\u6C16\u6C5D\u6C57\u6C59\u6C5F\u6C60\u6C50\u6C55\u6C61\u6C5B\u6C4D\u6C4E\u7070\u725F\u725D\u767E\u7AF9\u7C73\u7CF8\u7F36\u7F8A\u7FBD\u8001\u8003\u800C\u8012\u8033\u807F\u8089\u808B\u808C\u81E3\u81EA\u81F3\u81FC\u820C\u821B\u821F\u826E\u8272\u827E\u866B\u8840\u884C\u8863\u897F\u9621\u4E32\u4EA8\u4F4D\u4F4F\u4F47\u4F57\u4F5E\u4F34\u4F5B\u4F55\u4F30\u4F50\u4F51\u4F3D\u4F3A\u4F38\u4F43\u4F54\u4F3C\u4F46\u4F63"],["a740","\u4F5C\u4F60\u4F2F\u4F4E\u4F36\u4F59\u4F5D\u4F48\u4F5A\u514C\u514B\u514D\u5175\u51B6\u51B7\u5225\u5224\u5229\u522A\u5228\u52AB\u52A9\u52AA\u52AC\u5323\u5373\u5375\u541D\u542D\u541E\u543E\u5426\u544E\u5427\u5446\u5443\u5433\u5448\u5442\u541B\u5429\u544A\u5439\u543B\u5438\u542E\u5435\u5436\u5420\u543C\u5440\u5431\u542B\u541F\u542C\u56EA\u56F0\u56E4\u56EB\u574A\u5751\u5740\u574D"],["a7a1","\u5747\u574E\u573E\u5750\u574F\u573B\u58EF\u593E\u599D\u5992\u59A8\u599E\u59A3\u5999\u5996\u598D\u59A4\u5993\u598A\u59A5\u5B5D\u5B5C\u5B5A\u5B5B\u5B8C\u5B8B\u5B8F\u5C2C\u5C40\u5C41\u5C3F\u5C3E\u5C90\u5C91\u5C94\u5C8C\u5DEB\u5E0C\u5E8F\u5E87\u5E8A\u5EF7\u5F04\u5F1F\u5F64\u5F62\u5F77\u5F79\u5FD8\u5FCC\u5FD7\u5FCD\u5FF1\u5FEB\u5FF8\u5FEA\u6212\u6211\u6284\u6297\u6296\u6280\u6276\u6289\u626D\u628A\u627C\u627E\u6279\u6273\u6292\u626F\u6298\u626E\u6295\u6293\u6291\u6286\u6539\u653B\u6538\u65F1\u66F4\u675F\u674E\u674F\u6750\u6751\u675C\u6756\u675E\u6749\u6746\u6760"],["a840","\u6753\u6757\u6B65\u6BCF\u6C42\u6C5E\u6C99\u6C81\u6C88\u6C89\u6C85\u6C9B\u6C6A\u6C7A\u6C90\u6C70\u6C8C\u6C68\u6C96\u6C92\u6C7D\u6C83\u6C72\u6C7E\u6C74\u6C86\u6C76\u6C8D\u6C94\u6C98\u6C82\u7076\u707C\u707D\u7078\u7262\u7261\u7260\u72C4\u72C2\u7396\u752C\u752B\u7537\u7538\u7682\u76EF\u77E3\u79C1\u79C0\u79BF\u7A76\u7CFB\u7F55\u8096\u8093\u809D\u8098\u809B\u809A\u80B2\u826F\u8292"],["a8a1","\u828B\u828D\u898B\u89D2\u8A00\u8C37\u8C46\u8C55\u8C9D\u8D64\u8D70\u8DB3\u8EAB\u8ECA\u8F9B\u8FB0\u8FC2\u8FC6\u8FC5\u8FC4\u5DE1\u9091\u90A2\u90AA\u90A6\u90A3\u9149\u91C6\u91CC\u9632\u962E\u9631\u962A\u962C\u4E26\u4E56\u4E73\u4E8B\u4E9B\u4E9E\u4EAB\u4EAC\u4F6F\u4F9D\u4F8D\u4F73\u4F7F\u4F6C\u4F9B\u4F8B\u4F86\u4F83\u4F70\u4F75\u4F88\u4F69\u4F7B\u4F96\u4F7E\u4F8F\u4F91\u4F7A\u5154\u5152\u5155\u5169\u5177\u5176\u5178\u51BD\u51FD\u523B\u5238\u5237\u523A\u5230\u522E\u5236\u5241\u52BE\u52BB\u5352\u5354\u5353\u5351\u5366\u5377\u5378\u5379\u53D6\u53D4\u53D7\u5473\u5475"],["a940","\u5496\u5478\u5495\u5480\u547B\u5477\u5484\u5492\u5486\u547C\u5490\u5471\u5476\u548C\u549A\u5462\u5468\u548B\u547D\u548E\u56FA\u5783\u5777\u576A\u5769\u5761\u5766\u5764\u577C\u591C\u5949\u5947\u5948\u5944\u5954\u59BE\u59BB\u59D4\u59B9\u59AE\u59D1\u59C6\u59D0\u59CD\u59CB\u59D3\u59CA\u59AF\u59B3\u59D2\u59C5\u5B5F\u5B64\u5B63\u5B97\u5B9A\u5B98\u5B9C\u5B99\u5B9B\u5C1A\u5C48\u5C45"],["a9a1","\u5C46\u5CB7\u5CA1\u5CB8\u5CA9\u5CAB\u5CB1\u5CB3\u5E18\u5E1A\u5E16\u5E15\u5E1B\u5E11\u5E78\u5E9A\u5E97\u5E9C\u5E95\u5E96\u5EF6\u5F26\u5F27\u5F29\u5F80\u5F81\u5F7F\u5F7C\u5FDD\u5FE0\u5FFD\u5FF5\u5FFF\u600F\u6014\u602F\u6035\u6016\u602A\u6015\u6021\u6027\u6029\u602B\u601B\u6216\u6215\u623F\u623E\u6240\u627F\u62C9\u62CC\u62C4\u62BF\u62C2\u62B9\u62D2\u62DB\u62AB\u62D3\u62D4\u62CB\u62C8\u62A8\u62BD\u62BC\u62D0\u62D9\u62C7\u62CD\u62B5\u62DA\u62B1\u62D8\u62D6\u62D7\u62C6\u62AC\u62CE\u653E\u65A7\u65BC\u65FA\u6614\u6613\u660C\u6606\u6602\u660E\u6600\u660F\u6615\u660A"],["aa40","\u6607\u670D\u670B\u676D\u678B\u6795\u6771\u679C\u6773\u6777\u6787\u679D\u6797\u676F\u6770\u677F\u6789\u677E\u6790\u6775\u679A\u6793\u677C\u676A\u6772\u6B23\u6B66\u6B67\u6B7F\u6C13\u6C1B\u6CE3\u6CE8\u6CF3\u6CB1\u6CCC\u6CE5\u6CB3\u6CBD\u6CBE\u6CBC\u6CE2\u6CAB\u6CD5\u6CD3\u6CB8\u6CC4\u6CB9\u6CC1\u6CAE\u6CD7\u6CC5\u6CF1\u6CBF\u6CBB\u6CE1\u6CDB\u6CCA\u6CAC\u6CEF\u6CDC\u6CD6\u6CE0"],["aaa1","\u7095\u708E\u7092\u708A\u7099\u722C\u722D\u7238\u7248\u7267\u7269\u72C0\u72CE\u72D9\u72D7\u72D0\u73A9\u73A8\u739F\u73AB\u73A5\u753D\u759D\u7599\u759A\u7684\u76C2\u76F2\u76F4\u77E5\u77FD\u793E\u7940\u7941\u79C9\u79C8\u7A7A\u7A79\u7AFA\u7CFE\u7F54\u7F8C\u7F8B\u8005\u80BA\u80A5\u80A2\u80B1\u80A1\u80AB\u80A9\u80B4\u80AA\u80AF\u81E5\u81FE\u820D\u82B3\u829D\u8299\u82AD\u82BD\u829F\u82B9\u82B1\u82AC\u82A5\u82AF\u82B8\u82A3\u82B0\u82BE\u82B7\u864E\u8671\u521D\u8868\u8ECB\u8FCE\u8FD4\u8FD1\u90B5\u90B8\u90B1\u90B6\u91C7\u91D1\u9577\u9580\u961C\u9640\u963F\u963B\u9644"],["ab40","\u9642\u96B9\u96E8\u9752\u975E\u4E9F\u4EAD\u4EAE\u4FE1\u4FB5\u4FAF\u4FBF\u4FE0\u4FD1\u4FCF\u4FDD\u4FC3\u4FB6\u4FD8\u4FDF\u4FCA\u4FD7\u4FAE\u4FD0\u4FC4\u4FC2\u4FDA\u4FCE\u4FDE\u4FB7\u5157\u5192\u5191\u51A0\u524E\u5243\u524A\u524D\u524C\u524B\u5247\u52C7\u52C9\u52C3\u52C1\u530D\u5357\u537B\u539A\u53DB\u54AC\u54C0\u54A8\u54CE\u54C9\u54B8\u54A6\u54B3\u54C7\u54C2\u54BD\u54AA\u54C1"],["aba1","\u54C4\u54C8\u54AF\u54AB\u54B1\u54BB\u54A9\u54A7\u54BF\u56FF\u5782\u578B\u57A0\u57A3\u57A2\u57CE\u57AE\u5793\u5955\u5951\u594F\u594E\u5950\u59DC\u59D8\u59FF\u59E3\u59E8\u5A03\u59E5\u59EA\u59DA\u59E6\u5A01\u59FB\u5B69\u5BA3\u5BA6\u5BA4\u5BA2\u5BA5\u5C01\u5C4E\u5C4F\u5C4D\u5C4B\u5CD9\u5CD2\u5DF7\u5E1D\u5E25\u5E1F\u5E7D\u5EA0\u5EA6\u5EFA\u5F08\u5F2D\u5F65\u5F88\u5F85\u5F8A\u5F8B\u5F87\u5F8C\u5F89\u6012\u601D\u6020\u6025\u600E\u6028\u604D\u6070\u6068\u6062\u6046\u6043\u606C\u606B\u606A\u6064\u6241\u62DC\u6316\u6309\u62FC\u62ED\u6301\u62EE\u62FD\u6307\u62F1\u62F7"],["ac40","\u62EF\u62EC\u62FE\u62F4\u6311\u6302\u653F\u6545\u65AB\u65BD\u65E2\u6625\u662D\u6620\u6627\u662F\u661F\u6628\u6631\u6624\u66F7\u67FF\u67D3\u67F1\u67D4\u67D0\u67EC\u67B6\u67AF\u67F5\u67E9\u67EF\u67C4\u67D1\u67B4\u67DA\u67E5\u67B8\u67CF\u67DE\u67F3\u67B0\u67D9\u67E2\u67DD\u67D2\u6B6A\u6B83\u6B86\u6BB5\u6BD2\u6BD7\u6C1F\u6CC9\u6D0B\u6D32\u6D2A\u6D41\u6D25\u6D0C\u6D31\u6D1E\u6D17"],["aca1","\u6D3B\u6D3D\u6D3E\u6D36\u6D1B\u6CF5\u6D39\u6D27\u6D38\u6D29\u6D2E\u6D35\u6D0E\u6D2B\u70AB\u70BA\u70B3\u70AC\u70AF\u70AD\u70B8\u70AE\u70A4\u7230\u7272\u726F\u7274\u72E9\u72E0\u72E1\u73B7\u73CA\u73BB\u73B2\u73CD\u73C0\u73B3\u751A\u752D\u754F\u754C\u754E\u754B\u75AB\u75A4\u75A5\u75A2\u75A3\u7678\u7686\u7687\u7688\u76C8\u76C6\u76C3\u76C5\u7701\u76F9\u76F8\u7709\u770B\u76FE\u76FC\u7707\u77DC\u7802\u7814\u780C\u780D\u7946\u7949\u7948\u7947\u79B9\u79BA\u79D1\u79D2\u79CB\u7A7F\u7A81\u7AFF\u7AFD\u7C7D\u7D02\u7D05\u7D00\u7D09\u7D07\u7D04\u7D06\u7F38\u7F8E\u7FBF\u8004"],["ad40","\u8010\u800D\u8011\u8036\u80D6\u80E5\u80DA\u80C3\u80C4\u80CC\u80E1\u80DB\u80CE\u80DE\u80E4\u80DD\u81F4\u8222\u82E7\u8303\u8305\u82E3\u82DB\u82E6\u8304\u82E5\u8302\u8309\u82D2\u82D7\u82F1\u8301\u82DC\u82D4\u82D1\u82DE\u82D3\u82DF\u82EF\u8306\u8650\u8679\u867B\u867A\u884D\u886B\u8981\u89D4\u8A08\u8A02\u8A03\u8C9E\u8CA0\u8D74\u8D73\u8DB4\u8ECD\u8ECC\u8FF0\u8FE6\u8FE2\u8FEA\u8FE5"],["ada1","\u8FED\u8FEB\u8FE4\u8FE8\u90CA\u90CE\u90C1\u90C3\u914B\u914A\u91CD\u9582\u9650\u964B\u964C\u964D\u9762\u9769\u97CB\u97ED\u97F3\u9801\u98A8\u98DB\u98DF\u9996\u9999\u4E58\u4EB3\u500C\u500D\u5023\u4FEF\u5026\u5025\u4FF8\u5029\u5016\u5006\u503C\u501F\u501A\u5012\u5011\u4FFA\u5000\u5014\u5028\u4FF1\u5021\u500B\u5019\u5018\u4FF3\u4FEE\u502D\u502A\u4FFE\u502B\u5009\u517C\u51A4\u51A5\u51A2\u51CD\u51CC\u51C6\u51CB\u5256\u525C\u5254\u525B\u525D\u532A\u537F\u539F\u539D\u53DF\u54E8\u5510\u5501\u5537\u54FC\u54E5\u54F2\u5506\u54FA\u5514\u54E9\u54ED\u54E1\u5509\u54EE\u54EA"],["ae40","\u54E6\u5527\u5507\u54FD\u550F\u5703\u5704\u57C2\u57D4\u57CB\u57C3\u5809\u590F\u5957\u5958\u595A\u5A11\u5A18\u5A1C\u5A1F\u5A1B\u5A13\u59EC\u5A20\u5A23\u5A29\u5A25\u5A0C\u5A09\u5B6B\u5C58\u5BB0\u5BB3\u5BB6\u5BB4\u5BAE\u5BB5\u5BB9\u5BB8\u5C04\u5C51\u5C55\u5C50\u5CED\u5CFD\u5CFB\u5CEA\u5CE8\u5CF0\u5CF6\u5D01\u5CF4\u5DEE\u5E2D\u5E2B\u5EAB\u5EAD\u5EA7\u5F31\u5F92\u5F91\u5F90\u6059"],["aea1","\u6063\u6065\u6050\u6055\u606D\u6069\u606F\u6084\u609F\u609A\u608D\u6094\u608C\u6085\u6096\u6247\u62F3\u6308\u62FF\u634E\u633E\u632F\u6355\u6342\u6346\u634F\u6349\u633A\u6350\u633D\u632A\u632B\u6328\u634D\u634C\u6548\u6549\u6599\u65C1\u65C5\u6642\u6649\u664F\u6643\u6652\u664C\u6645\u6641\u66F8\u6714\u6715\u6717\u6821\u6838\u6848\u6846\u6853\u6839\u6842\u6854\u6829\u68B3\u6817\u684C\u6851\u683D\u67F4\u6850\u6840\u683C\u6843\u682A\u6845\u6813\u6818\u6841\u6B8A\u6B89\u6BB7\u6C23\u6C27\u6C28\u6C26\u6C24\u6CF0\u6D6A\u6D95\u6D88\u6D87\u6D66\u6D78\u6D77\u6D59\u6D93"],["af40","\u6D6C\u6D89\u6D6E\u6D5A\u6D74\u6D69\u6D8C\u6D8A\u6D79\u6D85\u6D65\u6D94\u70CA\u70D8\u70E4\u70D9\u70C8\u70CF\u7239\u7279\u72FC\u72F9\u72FD\u72F8\u72F7\u7386\u73ED\u7409\u73EE\u73E0\u73EA\u73DE\u7554\u755D\u755C\u755A\u7559\u75BE\u75C5\u75C7\u75B2\u75B3\u75BD\u75BC\u75B9\u75C2\u75B8\u768B\u76B0\u76CA\u76CD\u76CE\u7729\u771F\u7720\u7728\u77E9\u7830\u7827\u7838\u781D\u7834\u7837"],["afa1","\u7825\u782D\u7820\u781F\u7832\u7955\u7950\u7960\u795F\u7956\u795E\u795D\u7957\u795A\u79E4\u79E3\u79E7\u79DF\u79E6\u79E9\u79D8\u7A84\u7A88\u7AD9\u7B06\u7B11\u7C89\u7D21\u7D17\u7D0B\u7D0A\u7D20\u7D22\u7D14\u7D10\u7D15\u7D1A\u7D1C\u7D0D\u7D19\u7D1B\u7F3A\u7F5F\u7F94\u7FC5\u7FC1\u8006\u8018\u8015\u8019\u8017\u803D\u803F\u80F1\u8102\u80F0\u8105\u80ED\u80F4\u8106\u80F8\u80F3\u8108\u80FD\u810A\u80FC\u80EF\u81ED\u81EC\u8200\u8210\u822A\u822B\u8228\u822C\u82BB\u832B\u8352\u8354\u834A\u8338\u8350\u8349\u8335\u8334\u834F\u8332\u8339\u8336\u8317\u8340\u8331\u8328\u8343"],["b040","\u8654\u868A\u86AA\u8693\u86A4\u86A9\u868C\u86A3\u869C\u8870\u8877\u8881\u8882\u887D\u8879\u8A18\u8A10\u8A0E\u8A0C\u8A15\u8A0A\u8A17\u8A13\u8A16\u8A0F\u8A11\u8C48\u8C7A\u8C79\u8CA1\u8CA2\u8D77\u8EAC\u8ED2\u8ED4\u8ECF\u8FB1\u9001\u9006\u8FF7\u9000\u8FFA\u8FF4\u9003\u8FFD\u9005\u8FF8\u9095\u90E1\u90DD\u90E2\u9152\u914D\u914C\u91D8\u91DD\u91D7\u91DC\u91D9\u9583\u9662\u9663\u9661"],["b0a1","\u965B\u965D\u9664\u9658\u965E\u96BB\u98E2\u99AC\u9AA8\u9AD8\u9B25\u9B32\u9B3C\u4E7E\u507A\u507D\u505C\u5047\u5043\u504C\u505A\u5049\u5065\u5076\u504E\u5055\u5075\u5074\u5077\u504F\u500F\u506F\u506D\u515C\u5195\u51F0\u526A\u526F\u52D2\u52D9\u52D8\u52D5\u5310\u530F\u5319\u533F\u5340\u533E\u53C3\u66FC\u5546\u556A\u5566\u5544\u555E\u5561\u5543\u554A\u5531\u5556\u554F\u5555\u552F\u5564\u5538\u552E\u555C\u552C\u5563\u5533\u5541\u5557\u5708\u570B\u5709\u57DF\u5805\u580A\u5806\u57E0\u57E4\u57FA\u5802\u5835\u57F7\u57F9\u5920\u5962\u5A36\u5A41\u5A49\u5A66\u5A6A\u5A40"],["b140","\u5A3C\u5A62\u5A5A\u5A46\u5A4A\u5B70\u5BC7\u5BC5\u5BC4\u5BC2\u5BBF\u5BC6\u5C09\u5C08\u5C07\u5C60\u5C5C\u5C5D\u5D07\u5D06\u5D0E\u5D1B\u5D16\u5D22\u5D11\u5D29\u5D14\u5D19\u5D24\u5D27\u5D17\u5DE2\u5E38\u5E36\u5E33\u5E37\u5EB7\u5EB8\u5EB6\u5EB5\u5EBE\u5F35\u5F37\u5F57\u5F6C\u5F69\u5F6B\u5F97\u5F99\u5F9E\u5F98\u5FA1\u5FA0\u5F9C\u607F\u60A3\u6089\u60A0\u60A8\u60CB\u60B4\u60E6\u60BD"],["b1a1","\u60C5\u60BB\u60B5\u60DC\u60BC\u60D8\u60D5\u60C6\u60DF\u60B8\u60DA\u60C7\u621A\u621B\u6248\u63A0\u63A7\u6372\u6396\u63A2\u63A5\u6377\u6367\u6398\u63AA\u6371\u63A9\u6389\u6383\u639B\u636B\u63A8\u6384\u6388\u6399\u63A1\u63AC\u6392\u638F\u6380\u637B\u6369\u6368\u637A\u655D\u6556\u6551\u6559\u6557\u555F\u654F\u6558\u6555\u6554\u659C\u659B\u65AC\u65CF\u65CB\u65CC\u65CE\u665D\u665A\u6664\u6668\u6666\u665E\u66F9\u52D7\u671B\u6881\u68AF\u68A2\u6893\u68B5\u687F\u6876\u68B1\u68A7\u6897\u68B0\u6883\u68C4\u68AD\u6886\u6885\u6894\u689D\u68A8\u689F\u68A1\u6882\u6B32\u6BBA"],["b240","\u6BEB\u6BEC\u6C2B\u6D8E\u6DBC\u6DF3\u6DD9\u6DB2\u6DE1\u6DCC\u6DE4\u6DFB\u6DFA\u6E05\u6DC7\u6DCB\u6DAF\u6DD1\u6DAE\u6DDE\u6DF9\u6DB8\u6DF7\u6DF5\u6DC5\u6DD2\u6E1A\u6DB5\u6DDA\u6DEB\u6DD8\u6DEA\u6DF1\u6DEE\u6DE8\u6DC6\u6DC4\u6DAA\u6DEC\u6DBF\u6DE6\u70F9\u7109\u710A\u70FD\u70EF\u723D\u727D\u7281\u731C\u731B\u7316\u7313\u7319\u7387\u7405\u740A\u7403\u7406\u73FE\u740D\u74E0\u74F6"],["b2a1","\u74F7\u751C\u7522\u7565\u7566\u7562\u7570\u758F\u75D4\u75D5\u75B5\u75CA\u75CD\u768E\u76D4\u76D2\u76DB\u7737\u773E\u773C\u7736\u7738\u773A\u786B\u7843\u784E\u7965\u7968\u796D\u79FB\u7A92\u7A95\u7B20\u7B28\u7B1B\u7B2C\u7B26\u7B19\u7B1E\u7B2E\u7C92\u7C97\u7C95\u7D46\u7D43\u7D71\u7D2E\u7D39\u7D3C\u7D40\u7D30\u7D33\u7D44\u7D2F\u7D42\u7D32\u7D31\u7F3D\u7F9E\u7F9A\u7FCC\u7FCE\u7FD2\u801C\u804A\u8046\u812F\u8116\u8123\u812B\u8129\u8130\u8124\u8202\u8235\u8237\u8236\u8239\u838E\u839E\u8398\u8378\u83A2\u8396\u83BD\u83AB\u8392\u838A\u8393\u8389\u83A0\u8377\u837B\u837C"],["b340","\u8386\u83A7\u8655\u5F6A\u86C7\u86C0\u86B6\u86C4\u86B5\u86C6\u86CB\u86B1\u86AF\u86C9\u8853\u889E\u8888\u88AB\u8892\u8896\u888D\u888B\u8993\u898F\u8A2A\u8A1D\u8A23\u8A25\u8A31\u8A2D\u8A1F\u8A1B\u8A22\u8C49\u8C5A\u8CA9\u8CAC\u8CAB\u8CA8\u8CAA\u8CA7\u8D67\u8D66\u8DBE\u8DBA\u8EDB\u8EDF\u9019\u900D\u901A\u9017\u9023\u901F\u901D\u9010\u9015\u901E\u9020\u900F\u9022\u9016\u901B\u9014"],["b3a1","\u90E8\u90ED\u90FD\u9157\u91CE\u91F5\u91E6\u91E3\u91E7\u91ED\u91E9\u9589\u966A\u9675\u9673\u9678\u9670\u9674\u9676\u9677\u966C\u96C0\u96EA\u96E9\u7AE0\u7ADF\u9802\u9803\u9B5A\u9CE5\u9E75\u9E7F\u9EA5\u9EBB\u50A2\u508D\u5085\u5099\u5091\u5080\u5096\u5098\u509A\u6700\u51F1\u5272\u5274\u5275\u5269\u52DE\u52DD\u52DB\u535A\u53A5\u557B\u5580\u55A7\u557C\u558A\u559D\u5598\u5582\u559C\u55AA\u5594\u5587\u558B\u5583\u55B3\u55AE\u559F\u553E\u55B2\u559A\u55BB\u55AC\u55B1\u557E\u5589\u55AB\u5599\u570D\u582F\u582A\u5834\u5824\u5830\u5831\u5821\u581D\u5820\u58F9\u58FA\u5960"],["b440","\u5A77\u5A9A\u5A7F\u5A92\u5A9B\u5AA7\u5B73\u5B71\u5BD2\u5BCC\u5BD3\u5BD0\u5C0A\u5C0B\u5C31\u5D4C\u5D50\u5D34\u5D47\u5DFD\u5E45\u5E3D\u5E40\u5E43\u5E7E\u5ECA\u5EC1\u5EC2\u5EC4\u5F3C\u5F6D\u5FA9\u5FAA\u5FA8\u60D1\u60E1\u60B2\u60B6\u60E0\u611C\u6123\u60FA\u6115\u60F0\u60FB\u60F4\u6168\u60F1\u610E\u60F6\u6109\u6100\u6112\u621F\u6249\u63A3\u638C\u63CF\u63C0\u63E9\u63C9\u63C6\u63CD"],["b4a1","\u63D2\u63E3\u63D0\u63E1\u63D6\u63ED\u63EE\u6376\u63F4\u63EA\u63DB\u6452\u63DA\u63F9\u655E\u6566\u6562\u6563\u6591\u6590\u65AF\u666E\u6670\u6674\u6676\u666F\u6691\u667A\u667E\u6677\u66FE\u66FF\u671F\u671D\u68FA\u68D5\u68E0\u68D8\u68D7\u6905\u68DF\u68F5\u68EE\u68E7\u68F9\u68D2\u68F2\u68E3\u68CB\u68CD\u690D\u6912\u690E\u68C9\u68DA\u696E\u68FB\u6B3E\u6B3A\u6B3D\u6B98\u6B96\u6BBC\u6BEF\u6C2E\u6C2F\u6C2C\u6E2F\u6E38\u6E54\u6E21\u6E32\u6E67\u6E4A\u6E20\u6E25\u6E23\u6E1B\u6E5B\u6E58\u6E24\u6E56\u6E6E\u6E2D\u6E26\u6E6F\u6E34\u6E4D\u6E3A\u6E2C\u6E43\u6E1D\u6E3E\u6ECB"],["b540","\u6E89\u6E19\u6E4E\u6E63\u6E44\u6E72\u6E69\u6E5F\u7119\u711A\u7126\u7130\u7121\u7136\u716E\u711C\u724C\u7284\u7280\u7336\u7325\u7334\u7329\u743A\u742A\u7433\u7422\u7425\u7435\u7436\u7434\u742F\u741B\u7426\u7428\u7525\u7526\u756B\u756A\u75E2\u75DB\u75E3\u75D9\u75D8\u75DE\u75E0\u767B\u767C\u7696\u7693\u76B4\u76DC\u774F\u77ED\u785D\u786C\u786F\u7A0D\u7A08\u7A0B\u7A05\u7A00\u7A98"],["b5a1","\u7A97\u7A96\u7AE5\u7AE3\u7B49\u7B56\u7B46\u7B50\u7B52\u7B54\u7B4D\u7B4B\u7B4F\u7B51\u7C9F\u7CA5\u7D5E\u7D50\u7D68\u7D55\u7D2B\u7D6E\u7D72\u7D61\u7D66\u7D62\u7D70\u7D73\u5584\u7FD4\u7FD5\u800B\u8052\u8085\u8155\u8154\u814B\u8151\u814E\u8139\u8146\u813E\u814C\u8153\u8174\u8212\u821C\u83E9\u8403\u83F8\u840D\u83E0\u83C5\u840B\u83C1\u83EF\u83F1\u83F4\u8457\u840A\u83F0\u840C\u83CC\u83FD\u83F2\u83CA\u8438\u840E\u8404\u83DC\u8407\u83D4\u83DF\u865B\u86DF\u86D9\u86ED\u86D4\u86DB\u86E4\u86D0\u86DE\u8857\u88C1\u88C2\u88B1\u8983\u8996\u8A3B\u8A60\u8A55\u8A5E\u8A3C\u8A41"],["b640","\u8A54\u8A5B\u8A50\u8A46\u8A34\u8A3A\u8A36\u8A56\u8C61\u8C82\u8CAF\u8CBC\u8CB3\u8CBD\u8CC1\u8CBB\u8CC0\u8CB4\u8CB7\u8CB6\u8CBF\u8CB8\u8D8A\u8D85\u8D81\u8DCE\u8DDD\u8DCB\u8DDA\u8DD1\u8DCC\u8DDB\u8DC6\u8EFB\u8EF8\u8EFC\u8F9C\u902E\u9035\u9031\u9038\u9032\u9036\u9102\u90F5\u9109\u90FE\u9163\u9165\u91CF\u9214\u9215\u9223\u9209\u921E\u920D\u9210\u9207\u9211\u9594\u958F\u958B\u9591"],["b6a1","\u9593\u9592\u958E\u968A\u968E\u968B\u967D\u9685\u9686\u968D\u9672\u9684\u96C1\u96C5\u96C4\u96C6\u96C7\u96EF\u96F2\u97CC\u9805\u9806\u9808\u98E7\u98EA\u98EF\u98E9\u98F2\u98ED\u99AE\u99AD\u9EC3\u9ECD\u9ED1\u4E82\u50AD\u50B5\u50B2\u50B3\u50C5\u50BE\u50AC\u50B7\u50BB\u50AF\u50C7\u527F\u5277\u527D\u52DF\u52E6\u52E4\u52E2\u52E3\u532F\u55DF\u55E8\u55D3\u55E6\u55CE\u55DC\u55C7\u55D1\u55E3\u55E4\u55EF\u55DA\u55E1\u55C5\u55C6\u55E5\u55C9\u5712\u5713\u585E\u5851\u5858\u5857\u585A\u5854\u586B\u584C\u586D\u584A\u5862\u5852\u584B\u5967\u5AC1\u5AC9\u5ACC\u5ABE\u5ABD\u5ABC"],["b740","\u5AB3\u5AC2\u5AB2\u5D69\u5D6F\u5E4C\u5E79\u5EC9\u5EC8\u5F12\u5F59\u5FAC\u5FAE\u611A\u610F\u6148\u611F\u60F3\u611B\u60F9\u6101\u6108\u614E\u614C\u6144\u614D\u613E\u6134\u6127\u610D\u6106\u6137\u6221\u6222\u6413\u643E\u641E\u642A\u642D\u643D\u642C\u640F\u641C\u6414\u640D\u6436\u6416\u6417\u6406\u656C\u659F\u65B0\u6697\u6689\u6687\u6688\u6696\u6684\u6698\u668D\u6703\u6994\u696D"],["b7a1","\u695A\u6977\u6960\u6954\u6975\u6930\u6982\u694A\u6968\u696B\u695E\u6953\u6979\u6986\u695D\u6963\u695B\u6B47\u6B72\u6BC0\u6BBF\u6BD3\u6BFD\u6EA2\u6EAF\u6ED3\u6EB6\u6EC2\u6E90\u6E9D\u6EC7\u6EC5\u6EA5\u6E98\u6EBC\u6EBA\u6EAB\u6ED1\u6E96\u6E9C\u6EC4\u6ED4\u6EAA\u6EA7\u6EB4\u714E\u7159\u7169\u7164\u7149\u7167\u715C\u716C\u7166\u714C\u7165\u715E\u7146\u7168\u7156\u723A\u7252\u7337\u7345\u733F\u733E\u746F\u745A\u7455\u745F\u745E\u7441\u743F\u7459\u745B\u745C\u7576\u7578\u7600\u75F0\u7601\u75F2\u75F1\u75FA\u75FF\u75F4\u75F3\u76DE\u76DF\u775B\u776B\u7766\u775E\u7763"],["b840","\u7779\u776A\u776C\u775C\u7765\u7768\u7762\u77EE\u788E\u78B0\u7897\u7898\u788C\u7889\u787C\u7891\u7893\u787F\u797A\u797F\u7981\u842C\u79BD\u7A1C\u7A1A\u7A20\u7A14\u7A1F\u7A1E\u7A9F\u7AA0\u7B77\u7BC0\u7B60\u7B6E\u7B67\u7CB1\u7CB3\u7CB5\u7D93\u7D79\u7D91\u7D81\u7D8F\u7D5B\u7F6E\u7F69\u7F6A\u7F72\u7FA9\u7FA8\u7FA4\u8056\u8058\u8086\u8084\u8171\u8170\u8178\u8165\u816E\u8173\u816B"],["b8a1","\u8179\u817A\u8166\u8205\u8247\u8482\u8477\u843D\u8431\u8475\u8466\u846B\u8449\u846C\u845B\u843C\u8435\u8461\u8463\u8469\u846D\u8446\u865E\u865C\u865F\u86F9\u8713\u8708\u8707\u8700\u86FE\u86FB\u8702\u8703\u8706\u870A\u8859\u88DF\u88D4\u88D9\u88DC\u88D8\u88DD\u88E1\u88CA\u88D5\u88D2\u899C\u89E3\u8A6B\u8A72\u8A73\u8A66\u8A69\u8A70\u8A87\u8A7C\u8A63\u8AA0\u8A71\u8A85\u8A6D\u8A62\u8A6E\u8A6C\u8A79\u8A7B\u8A3E\u8A68\u8C62\u8C8A\u8C89\u8CCA\u8CC7\u8CC8\u8CC4\u8CB2\u8CC3\u8CC2\u8CC5\u8DE1\u8DDF\u8DE8\u8DEF\u8DF3\u8DFA\u8DEA\u8DE4\u8DE6\u8EB2\u8F03\u8F09\u8EFE\u8F0A"],["b940","\u8F9F\u8FB2\u904B\u904A\u9053\u9042\u9054\u903C\u9055\u9050\u9047\u904F\u904E\u904D\u9051\u903E\u9041\u9112\u9117\u916C\u916A\u9169\u91C9\u9237\u9257\u9238\u923D\u9240\u923E\u925B\u924B\u9264\u9251\u9234\u9249\u924D\u9245\u9239\u923F\u925A\u9598\u9698\u9694\u9695\u96CD\u96CB\u96C9\u96CA\u96F7\u96FB\u96F9\u96F6\u9756\u9774\u9776\u9810\u9811\u9813\u980A\u9812\u980C\u98FC\u98F4"],["b9a1","\u98FD\u98FE\u99B3\u99B1\u99B4\u9AE1\u9CE9\u9E82\u9F0E\u9F13\u9F20\u50E7\u50EE\u50E5\u50D6\u50ED\u50DA\u50D5\u50CF\u50D1\u50F1\u50CE\u50E9\u5162\u51F3\u5283\u5282\u5331\u53AD\u55FE\u5600\u561B\u5617\u55FD\u5614\u5606\u5609\u560D\u560E\u55F7\u5616\u561F\u5608\u5610\u55F6\u5718\u5716\u5875\u587E\u5883\u5893\u588A\u5879\u5885\u587D\u58FD\u5925\u5922\u5924\u596A\u5969\u5AE1\u5AE6\u5AE9\u5AD7\u5AD6\u5AD8\u5AE3\u5B75\u5BDE\u5BE7\u5BE1\u5BE5\u5BE6\u5BE8\u5BE2\u5BE4\u5BDF\u5C0D\u5C62\u5D84\u5D87\u5E5B\u5E63\u5E55\u5E57\u5E54\u5ED3\u5ED6\u5F0A\u5F46\u5F70\u5FB9\u6147"],["ba40","\u613F\u614B\u6177\u6162\u6163\u615F\u615A\u6158\u6175\u622A\u6487\u6458\u6454\u64A4\u6478\u645F\u647A\u6451\u6467\u6434\u646D\u647B\u6572\u65A1\u65D7\u65D6\u66A2\u66A8\u669D\u699C\u69A8\u6995\u69C1\u69AE\u69D3\u69CB\u699B\u69B7\u69BB\u69AB\u69B4\u69D0\u69CD\u69AD\u69CC\u69A6\u69C3\u69A3\u6B49\u6B4C\u6C33\u6F33\u6F14\u6EFE\u6F13\u6EF4\u6F29\u6F3E\u6F20\u6F2C\u6F0F\u6F02\u6F22"],["baa1","\u6EFF\u6EEF\u6F06\u6F31\u6F38\u6F32\u6F23\u6F15\u6F2B\u6F2F\u6F88\u6F2A\u6EEC\u6F01\u6EF2\u6ECC\u6EF7\u7194\u7199\u717D\u718A\u7184\u7192\u723E\u7292\u7296\u7344\u7350\u7464\u7463\u746A\u7470\u746D\u7504\u7591\u7627\u760D\u760B\u7609\u7613\u76E1\u76E3\u7784\u777D\u777F\u7761\u78C1\u789F\u78A7\u78B3\u78A9\u78A3\u798E\u798F\u798D\u7A2E\u7A31\u7AAA\u7AA9\u7AED\u7AEF\u7BA1\u7B95\u7B8B\u7B75\u7B97\u7B9D\u7B94\u7B8F\u7BB8\u7B87\u7B84\u7CB9\u7CBD\u7CBE\u7DBB\u7DB0\u7D9C\u7DBD\u7DBE\u7DA0\u7DCA\u7DB4\u7DB2\u7DB1\u7DBA\u7DA2\u7DBF\u7DB5\u7DB8\u7DAD\u7DD2\u7DC7\u7DAC"],["bb40","\u7F70\u7FE0\u7FE1\u7FDF\u805E\u805A\u8087\u8150\u8180\u818F\u8188\u818A\u817F\u8182\u81E7\u81FA\u8207\u8214\u821E\u824B\u84C9\u84BF\u84C6\u84C4\u8499\u849E\u84B2\u849C\u84CB\u84B8\u84C0\u84D3\u8490\u84BC\u84D1\u84CA\u873F\u871C\u873B\u8722\u8725\u8734\u8718\u8755\u8737\u8729\u88F3\u8902\u88F4\u88F9\u88F8\u88FD\u88E8\u891A\u88EF\u8AA6\u8A8C\u8A9E\u8AA3\u8A8D\u8AA1\u8A93\u8AA4"],["bba1","\u8AAA\u8AA5\u8AA8\u8A98\u8A91\u8A9A\u8AA7\u8C6A\u8C8D\u8C8C\u8CD3\u8CD1\u8CD2\u8D6B\u8D99\u8D95\u8DFC\u8F14\u8F12\u8F15\u8F13\u8FA3\u9060\u9058\u905C\u9063\u9059\u905E\u9062\u905D\u905B\u9119\u9118\u911E\u9175\u9178\u9177\u9174\u9278\u9280\u9285\u9298\u9296\u927B\u9293\u929C\u92A8\u927C\u9291\u95A1\u95A8\u95A9\u95A3\u95A5\u95A4\u9699\u969C\u969B\u96CC\u96D2\u9700\u977C\u9785\u97F6\u9817\u9818\u98AF\u98B1\u9903\u9905\u990C\u9909\u99C1\u9AAF\u9AB0\u9AE6\u9B41\u9B42\u9CF4\u9CF6\u9CF3\u9EBC\u9F3B\u9F4A\u5104\u5100\u50FB\u50F5\u50F9\u5102\u5108\u5109\u5105\u51DC"],["bc40","\u5287\u5288\u5289\u528D\u528A\u52F0\u53B2\u562E\u563B\u5639\u5632\u563F\u5634\u5629\u5653\u564E\u5657\u5674\u5636\u562F\u5630\u5880\u589F\u589E\u58B3\u589C\u58AE\u58A9\u58A6\u596D\u5B09\u5AFB\u5B0B\u5AF5\u5B0C\u5B08\u5BEE\u5BEC\u5BE9\u5BEB\u5C64\u5C65\u5D9D\u5D94\u5E62\u5E5F\u5E61\u5EE2\u5EDA\u5EDF\u5EDD\u5EE3\u5EE0\u5F48\u5F71\u5FB7\u5FB5\u6176\u6167\u616E\u615D\u6155\u6182"],["bca1","\u617C\u6170\u616B\u617E\u61A7\u6190\u61AB\u618E\u61AC\u619A\u61A4\u6194\u61AE\u622E\u6469\u646F\u6479\u649E\u64B2\u6488\u6490\u64B0\u64A5\u6493\u6495\u64A9\u6492\u64AE\u64AD\u64AB\u649A\u64AC\u6499\u64A2\u64B3\u6575\u6577\u6578\u66AE\u66AB\u66B4\u66B1\u6A23\u6A1F\u69E8\u6A01\u6A1E\u6A19\u69FD\u6A21\u6A13\u6A0A\u69F3\u6A02\u6A05\u69ED\u6A11\u6B50\u6B4E\u6BA4\u6BC5\u6BC6\u6F3F\u6F7C\u6F84\u6F51\u6F66\u6F54\u6F86\u6F6D\u6F5B\u6F78\u6F6E\u6F8E\u6F7A\u6F70\u6F64\u6F97\u6F58\u6ED5\u6F6F\u6F60\u6F5F\u719F\u71AC\u71B1\u71A8\u7256\u729B\u734E\u7357\u7469\u748B\u7483"],["bd40","\u747E\u7480\u757F\u7620\u7629\u761F\u7624\u7626\u7621\u7622\u769A\u76BA\u76E4\u778E\u7787\u778C\u7791\u778B\u78CB\u78C5\u78BA\u78CA\u78BE\u78D5\u78BC\u78D0\u7A3F\u7A3C\u7A40\u7A3D\u7A37\u7A3B\u7AAF\u7AAE\u7BAD\u7BB1\u7BC4\u7BB4\u7BC6\u7BC7\u7BC1\u7BA0\u7BCC\u7CCA\u7DE0\u7DF4\u7DEF\u7DFB\u7DD8\u7DEC\u7DDD\u7DE8\u7DE3\u7DDA\u7DDE\u7DE9\u7D9E\u7DD9\u7DF2\u7DF9\u7F75\u7F77\u7FAF"],["bda1","\u7FE9\u8026\u819B\u819C\u819D\u81A0\u819A\u8198\u8517\u853D\u851A\u84EE\u852C\u852D\u8513\u8511\u8523\u8521\u8514\u84EC\u8525\u84FF\u8506\u8782\u8774\u8776\u8760\u8766\u8778\u8768\u8759\u8757\u874C\u8753\u885B\u885D\u8910\u8907\u8912\u8913\u8915\u890A\u8ABC\u8AD2\u8AC7\u8AC4\u8A95\u8ACB\u8AF8\u8AB2\u8AC9\u8AC2\u8ABF\u8AB0\u8AD6\u8ACD\u8AB6\u8AB9\u8ADB\u8C4C\u8C4E\u8C6C\u8CE0\u8CDE\u8CE6\u8CE4\u8CEC\u8CED\u8CE2\u8CE3\u8CDC\u8CEA\u8CE1\u8D6D\u8D9F\u8DA3\u8E2B\u8E10\u8E1D\u8E22\u8E0F\u8E29\u8E1F\u8E21\u8E1E\u8EBA\u8F1D\u8F1B\u8F1F\u8F29\u8F26\u8F2A\u8F1C\u8F1E"],["be40","\u8F25\u9069\u906E\u9068\u906D\u9077\u9130\u912D\u9127\u9131\u9187\u9189\u918B\u9183\u92C5\u92BB\u92B7\u92EA\u92AC\u92E4\u92C1\u92B3\u92BC\u92D2\u92C7\u92F0\u92B2\u95AD\u95B1\u9704\u9706\u9707\u9709\u9760\u978D\u978B\u978F\u9821\u982B\u981C\u98B3\u990A\u9913\u9912\u9918\u99DD\u99D0\u99DF\u99DB\u99D1\u99D5\u99D2\u99D9\u9AB7\u9AEE\u9AEF\u9B27\u9B45\u9B44\u9B77\u9B6F\u9D06\u9D09"],["bea1","\u9D03\u9EA9\u9EBE\u9ECE\u58A8\u9F52\u5112\u5118\u5114\u5110\u5115\u5180\u51AA\u51DD\u5291\u5293\u52F3\u5659\u566B\u5679\u5669\u5664\u5678\u566A\u5668\u5665\u5671\u566F\u566C\u5662\u5676\u58C1\u58BE\u58C7\u58C5\u596E\u5B1D\u5B34\u5B78\u5BF0\u5C0E\u5F4A\u61B2\u6191\u61A9\u618A\u61CD\u61B6\u61BE\u61CA\u61C8\u6230\u64C5\u64C1\u64CB\u64BB\u64BC\u64DA\u64C4\u64C7\u64C2\u64CD\u64BF\u64D2\u64D4\u64BE\u6574\u66C6\u66C9\u66B9\u66C4\u66C7\u66B8\u6A3D\u6A38\u6A3A\u6A59\u6A6B\u6A58\u6A39\u6A44\u6A62\u6A61\u6A4B\u6A47\u6A35\u6A5F\u6A48\u6B59\u6B77\u6C05\u6FC2\u6FB1\u6FA1"],["bf40","\u6FC3\u6FA4\u6FC1\u6FA7\u6FB3\u6FC0\u6FB9\u6FB6\u6FA6\u6FA0\u6FB4\u71BE\u71C9\u71D0\u71D2\u71C8\u71D5\u71B9\u71CE\u71D9\u71DC\u71C3\u71C4\u7368\u749C\u74A3\u7498\u749F\u749E\u74E2\u750C\u750D\u7634\u7638\u763A\u76E7\u76E5\u77A0\u779E\u779F\u77A5\u78E8\u78DA\u78EC\u78E7\u79A6\u7A4D\u7A4E\u7A46\u7A4C\u7A4B\u7ABA\u7BD9\u7C11\u7BC9\u7BE4\u7BDB\u7BE1\u7BE9\u7BE6\u7CD5\u7CD6\u7E0A"],["bfa1","\u7E11\u7E08\u7E1B\u7E23\u7E1E\u7E1D\u7E09\u7E10\u7F79\u7FB2\u7FF0\u7FF1\u7FEE\u8028\u81B3\u81A9\u81A8\u81FB\u8208\u8258\u8259\u854A\u8559\u8548\u8568\u8569\u8543\u8549\u856D\u856A\u855E\u8783\u879F\u879E\u87A2\u878D\u8861\u892A\u8932\u8925\u892B\u8921\u89AA\u89A6\u8AE6\u8AFA\u8AEB\u8AF1\u8B00\u8ADC\u8AE7\u8AEE\u8AFE\u8B01\u8B02\u8AF7\u8AED\u8AF3\u8AF6\u8AFC\u8C6B\u8C6D\u8C93\u8CF4\u8E44\u8E31\u8E34\u8E42\u8E39\u8E35\u8F3B\u8F2F\u8F38\u8F33\u8FA8\u8FA6\u9075\u9074\u9078\u9072\u907C\u907A\u9134\u9192\u9320\u9336\u92F8\u9333\u932F\u9322\u92FC\u932B\u9304\u931A"],["c040","\u9310\u9326\u9321\u9315\u932E\u9319\u95BB\u96A7\u96A8\u96AA\u96D5\u970E\u9711\u9716\u970D\u9713\u970F\u975B\u975C\u9766\u9798\u9830\u9838\u983B\u9837\u982D\u9839\u9824\u9910\u9928\u991E\u991B\u9921\u991A\u99ED\u99E2\u99F1\u9AB8\u9ABC\u9AFB\u9AED\u9B28\u9B91\u9D15\u9D23\u9D26\u9D28\u9D12\u9D1B\u9ED8\u9ED4\u9F8D\u9F9C\u512A\u511F\u5121\u5132\u52F5\u568E\u5680\u5690\u5685\u5687"],["c0a1","\u568F\u58D5\u58D3\u58D1\u58CE\u5B30\u5B2A\u5B24\u5B7A\u5C37\u5C68\u5DBC\u5DBA\u5DBD\u5DB8\u5E6B\u5F4C\u5FBD\u61C9\u61C2\u61C7\u61E6\u61CB\u6232\u6234\u64CE\u64CA\u64D8\u64E0\u64F0\u64E6\u64EC\u64F1\u64E2\u64ED\u6582\u6583\u66D9\u66D6\u6A80\u6A94\u6A84\u6AA2\u6A9C\u6ADB\u6AA3\u6A7E\u6A97\u6A90\u6AA0\u6B5C\u6BAE\u6BDA\u6C08\u6FD8\u6FF1\u6FDF\u6FE0\u6FDB\u6FE4\u6FEB\u6FEF\u6F80\u6FEC\u6FE1\u6FE9\u6FD5\u6FEE\u6FF0\u71E7\u71DF\u71EE\u71E6\u71E5\u71ED\u71EC\u71F4\u71E0\u7235\u7246\u7370\u7372\u74A9\u74B0\u74A6\u74A8\u7646\u7642\u764C\u76EA\u77B3\u77AA\u77B0\u77AC"],["c140","\u77A7\u77AD\u77EF\u78F7\u78FA\u78F4\u78EF\u7901\u79A7\u79AA\u7A57\u7ABF\u7C07\u7C0D\u7BFE\u7BF7\u7C0C\u7BE0\u7CE0\u7CDC\u7CDE\u7CE2\u7CDF\u7CD9\u7CDD\u7E2E\u7E3E\u7E46\u7E37\u7E32\u7E43\u7E2B\u7E3D\u7E31\u7E45\u7E41\u7E34\u7E39\u7E48\u7E35\u7E3F\u7E2F\u7F44\u7FF3\u7FFC\u8071\u8072\u8070\u806F\u8073\u81C6\u81C3\u81BA\u81C2\u81C0\u81BF\u81BD\u81C9\u81BE\u81E8\u8209\u8271\u85AA"],["c1a1","\u8584\u857E\u859C\u8591\u8594\u85AF\u859B\u8587\u85A8\u858A\u8667\u87C0\u87D1\u87B3\u87D2\u87C6\u87AB\u87BB\u87BA\u87C8\u87CB\u893B\u8936\u8944\u8938\u893D\u89AC\u8B0E\u8B17\u8B19\u8B1B\u8B0A\u8B20\u8B1D\u8B04\u8B10\u8C41\u8C3F\u8C73\u8CFA\u8CFD\u8CFC\u8CF8\u8CFB\u8DA8\u8E49\u8E4B\u8E48\u8E4A\u8F44\u8F3E\u8F42\u8F45\u8F3F\u907F\u907D\u9084\u9081\u9082\u9080\u9139\u91A3\u919E\u919C\u934D\u9382\u9328\u9375\u934A\u9365\u934B\u9318\u937E\u936C\u935B\u9370\u935A\u9354\u95CA\u95CB\u95CC\u95C8\u95C6\u96B1\u96B8\u96D6\u971C\u971E\u97A0\u97D3\u9846\u98B6\u9935\u9A01"],["c240","\u99FF\u9BAE\u9BAB\u9BAA\u9BAD\u9D3B\u9D3F\u9E8B\u9ECF\u9EDE\u9EDC\u9EDD\u9EDB\u9F3E\u9F4B\u53E2\u5695\u56AE\u58D9\u58D8\u5B38\u5F5D\u61E3\u6233\u64F4\u64F2\u64FE\u6506\u64FA\u64FB\u64F7\u65B7\u66DC\u6726\u6AB3\u6AAC\u6AC3\u6ABB\u6AB8\u6AC2\u6AAE\u6AAF\u6B5F\u6B78\u6BAF\u7009\u700B\u6FFE\u7006\u6FFA\u7011\u700F\u71FB\u71FC\u71FE\u71F8\u7377\u7375\u74A7\u74BF\u7515\u7656\u7658"],["c2a1","\u7652\u77BD\u77BF\u77BB\u77BC\u790E\u79AE\u7A61\u7A62\u7A60\u7AC4\u7AC5\u7C2B\u7C27\u7C2A\u7C1E\u7C23\u7C21\u7CE7\u7E54\u7E55\u7E5E\u7E5A\u7E61\u7E52\u7E59\u7F48\u7FF9\u7FFB\u8077\u8076\u81CD\u81CF\u820A\u85CF\u85A9\u85CD\u85D0\u85C9\u85B0\u85BA\u85B9\u85A6\u87EF\u87EC\u87F2\u87E0\u8986\u89B2\u89F4\u8B28\u8B39\u8B2C\u8B2B\u8C50\u8D05\u8E59\u8E63\u8E66\u8E64\u8E5F\u8E55\u8EC0\u8F49\u8F4D\u9087\u9083\u9088\u91AB\u91AC\u91D0\u9394\u938A\u9396\u93A2\u93B3\u93AE\u93AC\u93B0\u9398\u939A\u9397\u95D4\u95D6\u95D0\u95D5\u96E2\u96DC\u96D9\u96DB\u96DE\u9724\u97A3\u97A6"],["c340","\u97AD\u97F9\u984D\u984F\u984C\u984E\u9853\u98BA\u993E\u993F\u993D\u992E\u99A5\u9A0E\u9AC1\u9B03\u9B06\u9B4F\u9B4E\u9B4D\u9BCA\u9BC9\u9BFD\u9BC8\u9BC0\u9D51\u9D5D\u9D60\u9EE0\u9F15\u9F2C\u5133\u56A5\u58DE\u58DF\u58E2\u5BF5\u9F90\u5EEC\u61F2\u61F7\u61F6\u61F5\u6500\u650F\u66E0\u66DD\u6AE5\u6ADD\u6ADA\u6AD3\u701B\u701F\u7028\u701A\u701D\u7015\u7018\u7206\u720D\u7258\u72A2\u7378"],["c3a1","\u737A\u74BD\u74CA\u74E3\u7587\u7586\u765F\u7661\u77C7\u7919\u79B1\u7A6B\u7A69\u7C3E\u7C3F\u7C38\u7C3D\u7C37\u7C40\u7E6B\u7E6D\u7E79\u7E69\u7E6A\u7F85\u7E73\u7FB6\u7FB9\u7FB8\u81D8\u85E9\u85DD\u85EA\u85D5\u85E4\u85E5\u85F7\u87FB\u8805\u880D\u87F9\u87FE\u8960\u895F\u8956\u895E\u8B41\u8B5C\u8B58\u8B49\u8B5A\u8B4E\u8B4F\u8B46\u8B59\u8D08\u8D0A\u8E7C\u8E72\u8E87\u8E76\u8E6C\u8E7A\u8E74\u8F54\u8F4E\u8FAD\u908A\u908B\u91B1\u91AE\u93E1\u93D1\u93DF\u93C3\u93C8\u93DC\u93DD\u93D6\u93E2\u93CD\u93D8\u93E4\u93D7\u93E8\u95DC\u96B4\u96E3\u972A\u9727\u9761\u97DC\u97FB\u985E"],["c440","\u9858\u985B\u98BC\u9945\u9949\u9A16\u9A19\u9B0D\u9BE8\u9BE7\u9BD6\u9BDB\u9D89\u9D61\u9D72\u9D6A\u9D6C\u9E92\u9E97\u9E93\u9EB4\u52F8\u56A8\u56B7\u56B6\u56B4\u56BC\u58E4\u5B40\u5B43\u5B7D\u5BF6\u5DC9\u61F8\u61FA\u6518\u6514\u6519\u66E6\u6727\u6AEC\u703E\u7030\u7032\u7210\u737B\u74CF\u7662\u7665\u7926\u792A\u792C\u792B\u7AC7\u7AF6\u7C4C\u7C43\u7C4D\u7CEF\u7CF0\u8FAE\u7E7D\u7E7C"],["c4a1","\u7E82\u7F4C\u8000\u81DA\u8266\u85FB\u85F9\u8611\u85FA\u8606\u860B\u8607\u860A\u8814\u8815\u8964\u89BA\u89F8\u8B70\u8B6C\u8B66\u8B6F\u8B5F\u8B6B\u8D0F\u8D0D\u8E89\u8E81\u8E85\u8E82\u91B4\u91CB\u9418\u9403\u93FD\u95E1\u9730\u98C4\u9952\u9951\u99A8\u9A2B\u9A30\u9A37\u9A35\u9C13\u9C0D\u9E79\u9EB5\u9EE8\u9F2F\u9F5F\u9F63\u9F61\u5137\u5138\u56C1\u56C0\u56C2\u5914\u5C6C\u5DCD\u61FC\u61FE\u651D\u651C\u6595\u66E9\u6AFB\u6B04\u6AFA\u6BB2\u704C\u721B\u72A7\u74D6\u74D4\u7669\u77D3\u7C50\u7E8F\u7E8C\u7FBC\u8617\u862D\u861A\u8823\u8822\u8821\u881F\u896A\u896C\u89BD\u8B74"],["c540","\u8B77\u8B7D\u8D13\u8E8A\u8E8D\u8E8B\u8F5F\u8FAF\u91BA\u942E\u9433\u9435\u943A\u9438\u9432\u942B\u95E2\u9738\u9739\u9732\u97FF\u9867\u9865\u9957\u9A45\u9A43\u9A40\u9A3E\u9ACF\u9B54\u9B51\u9C2D\u9C25\u9DAF\u9DB4\u9DC2\u9DB8\u9E9D\u9EEF\u9F19\u9F5C\u9F66\u9F67\u513C\u513B\u56C8\u56CA\u56C9\u5B7F\u5DD4\u5DD2\u5F4E\u61FF\u6524\u6B0A\u6B61\u7051\u7058\u7380\u74E4\u758A\u766E\u766C"],["c5a1","\u79B3\u7C60\u7C5F\u807E\u807D\u81DF\u8972\u896F\u89FC\u8B80\u8D16\u8D17\u8E91\u8E93\u8F61\u9148\u9444\u9451\u9452\u973D\u973E\u97C3\u97C1\u986B\u9955\u9A55\u9A4D\u9AD2\u9B1A\u9C49\u9C31\u9C3E\u9C3B\u9DD3\u9DD7\u9F34\u9F6C\u9F6A\u9F94\u56CC\u5DD6\u6200\u6523\u652B\u652A\u66EC\u6B10\u74DA\u7ACA\u7C64\u7C63\u7C65\u7E93\u7E96\u7E94\u81E2\u8638\u863F\u8831\u8B8A\u9090\u908F\u9463\u9460\u9464\u9768\u986F\u995C\u9A5A\u9A5B\u9A57\u9AD3\u9AD4\u9AD1\u9C54\u9C57\u9C56\u9DE5\u9E9F\u9EF4\u56D1\u58E9\u652C\u705E\u7671\u7672\u77D7\u7F50\u7F88\u8836\u8839\u8862\u8B93\u8B92"],["c640","\u8B96\u8277\u8D1B\u91C0\u946A\u9742\u9748\u9744\u97C6\u9870\u9A5F\u9B22\u9B58\u9C5F\u9DF9\u9DFA\u9E7C\u9E7D\u9F07\u9F77\u9F72\u5EF3\u6B16\u7063\u7C6C\u7C6E\u883B\u89C0\u8EA1\u91C1\u9472\u9470\u9871\u995E\u9AD6\u9B23\u9ECC\u7064\u77DA\u8B9A\u9477\u97C9\u9A62\u9A65\u7E9C\u8B9C\u8EAA\u91C5\u947D\u947E\u947C\u9C77\u9C78\u9EF7\u8C54\u947F\u9E1A\u7228\u9A6A\u9B31\u9E1B\u9E1E\u7C72"],["c940","\u4E42\u4E5C\u51F5\u531A\u5382\u4E07\u4E0C\u4E47\u4E8D\u56D7\uFA0C\u5C6E\u5F73\u4E0F\u5187\u4E0E\u4E2E\u4E93\u4EC2\u4EC9\u4EC8\u5198\u52FC\u536C\u53B9\u5720\u5903\u592C\u5C10\u5DFF\u65E1\u6BB3\u6BCC\u6C14\u723F\u4E31\u4E3C\u4EE8\u4EDC\u4EE9\u4EE1\u4EDD\u4EDA\u520C\u531C\u534C\u5722\u5723\u5917\u592F\u5B81\u5B84\u5C12\u5C3B\u5C74\u5C73\u5E04\u5E80\u5E82\u5FC9\u6209\u6250\u6C15"],["c9a1","\u6C36\u6C43\u6C3F\u6C3B\u72AE\u72B0\u738A\u79B8\u808A\u961E\u4F0E\u4F18\u4F2C\u4EF5\u4F14\u4EF1\u4F00\u4EF7\u4F08\u4F1D\u4F02\u4F05\u4F22\u4F13\u4F04\u4EF4\u4F12\u51B1\u5213\u5209\u5210\u52A6\u5322\u531F\u534D\u538A\u5407\u56E1\u56DF\u572E\u572A\u5734\u593C\u5980\u597C\u5985\u597B\u597E\u5977\u597F\u5B56\u5C15\u5C25\u5C7C\u5C7A\u5C7B\u5C7E\u5DDF\u5E75\u5E84\u5F02\u5F1A\u5F74\u5FD5\u5FD4\u5FCF\u625C\u625E\u6264\u6261\u6266\u6262\u6259\u6260\u625A\u6265\u65EF\u65EE\u673E\u6739\u6738\u673B\u673A\u673F\u673C\u6733\u6C18\u6C46\u6C52\u6C5C\u6C4F\u6C4A\u6C54\u6C4B"],["ca40","\u6C4C\u7071\u725E\u72B4\u72B5\u738E\u752A\u767F\u7A75\u7F51\u8278\u827C\u8280\u827D\u827F\u864D\u897E\u9099\u9097\u9098\u909B\u9094\u9622\u9624\u9620\u9623\u4F56\u4F3B\u4F62\u4F49\u4F53\u4F64\u4F3E\u4F67\u4F52\u4F5F\u4F41\u4F58\u4F2D\u4F33\u4F3F\u4F61\u518F\u51B9\u521C\u521E\u5221\u52AD\u52AE\u5309\u5363\u5372\u538E\u538F\u5430\u5437\u542A\u5454\u5445\u5419\u541C\u5425\u5418"],["caa1","\u543D\u544F\u5441\u5428\u5424\u5447\u56EE\u56E7\u56E5\u5741\u5745\u574C\u5749\u574B\u5752\u5906\u5940\u59A6\u5998\u59A0\u5997\u598E\u59A2\u5990\u598F\u59A7\u59A1\u5B8E\u5B92\u5C28\u5C2A\u5C8D\u5C8F\u5C88\u5C8B\u5C89\u5C92\u5C8A\u5C86\u5C93\u5C95\u5DE0\u5E0A\u5E0E\u5E8B\u5E89\u5E8C\u5E88\u5E8D\u5F05\u5F1D\u5F78\u5F76\u5FD2\u5FD1\u5FD0\u5FED\u5FE8\u5FEE\u5FF3\u5FE1\u5FE4\u5FE3\u5FFA\u5FEF\u5FF7\u5FFB\u6000\u5FF4\u623A\u6283\u628C\u628E\u628F\u6294\u6287\u6271\u627B\u627A\u6270\u6281\u6288\u6277\u627D\u6272\u6274\u6537\u65F0\u65F4\u65F3\u65F2\u65F5\u6745\u6747"],["cb40","\u6759\u6755\u674C\u6748\u675D\u674D\u675A\u674B\u6BD0\u6C19\u6C1A\u6C78\u6C67\u6C6B\u6C84\u6C8B\u6C8F\u6C71\u6C6F\u6C69\u6C9A\u6C6D\u6C87\u6C95\u6C9C\u6C66\u6C73\u6C65\u6C7B\u6C8E\u7074\u707A\u7263\u72BF\u72BD\u72C3\u72C6\u72C1\u72BA\u72C5\u7395\u7397\u7393\u7394\u7392\u753A\u7539\u7594\u7595\u7681\u793D\u8034\u8095\u8099\u8090\u8092\u809C\u8290\u828F\u8285\u828E\u8291\u8293"],["cba1","\u828A\u8283\u8284\u8C78\u8FC9\u8FBF\u909F\u90A1\u90A5\u909E\u90A7\u90A0\u9630\u9628\u962F\u962D\u4E33\u4F98\u4F7C\u4F85\u4F7D\u4F80\u4F87\u4F76\u4F74\u4F89\u4F84\u4F77\u4F4C\u4F97\u4F6A\u4F9A\u4F79\u4F81\u4F78\u4F90\u4F9C\u4F94\u4F9E\u4F92\u4F82\u4F95\u4F6B\u4F6E\u519E\u51BC\u51BE\u5235\u5232\u5233\u5246\u5231\u52BC\u530A\u530B\u533C\u5392\u5394\u5487\u547F\u5481\u5491\u5482\u5488\u546B\u547A\u547E\u5465\u546C\u5474\u5466\u548D\u546F\u5461\u5460\u5498\u5463\u5467\u5464\u56F7\u56F9\u576F\u5772\u576D\u576B\u5771\u5770\u5776\u5780\u5775\u577B\u5773\u5774\u5762"],["cc40","\u5768\u577D\u590C\u5945\u59B5\u59BA\u59CF\u59CE\u59B2\u59CC\u59C1\u59B6\u59BC\u59C3\u59D6\u59B1\u59BD\u59C0\u59C8\u59B4\u59C7\u5B62\u5B65\u5B93\u5B95\u5C44\u5C47\u5CAE\u5CA4\u5CA0\u5CB5\u5CAF\u5CA8\u5CAC\u5C9F\u5CA3\u5CAD\u5CA2\u5CAA\u5CA7\u5C9D\u5CA5\u5CB6\u5CB0\u5CA6\u5E17\u5E14\u5E19\u5F28\u5F22\u5F23\u5F24\u5F54\u5F82\u5F7E\u5F7D\u5FDE\u5FE5\u602D\u6026\u6019\u6032\u600B"],["cca1","\u6034\u600A\u6017\u6033\u601A\u601E\u602C\u6022\u600D\u6010\u602E\u6013\u6011\u600C\u6009\u601C\u6214\u623D\u62AD\u62B4\u62D1\u62BE\u62AA\u62B6\u62CA\u62AE\u62B3\u62AF\u62BB\u62A9\u62B0\u62B8\u653D\u65A8\u65BB\u6609\u65FC\u6604\u6612\u6608\u65FB\u6603\u660B\u660D\u6605\u65FD\u6611\u6610\u66F6\u670A\u6785\u676C\u678E\u6792\u6776\u677B\u6798\u6786\u6784\u6774\u678D\u678C\u677A\u679F\u6791\u6799\u6783\u677D\u6781\u6778\u6779\u6794\u6B25\u6B80\u6B7E\u6BDE\u6C1D\u6C93\u6CEC\u6CEB\u6CEE\u6CD9\u6CB6\u6CD4\u6CAD\u6CE7\u6CB7\u6CD0\u6CC2\u6CBA\u6CC3\u6CC6\u6CED\u6CF2"],["cd40","\u6CD2\u6CDD\u6CB4\u6C8A\u6C9D\u6C80\u6CDE\u6CC0\u6D30\u6CCD\u6CC7\u6CB0\u6CF9\u6CCF\u6CE9\u6CD1\u7094\u7098\u7085\u7093\u7086\u7084\u7091\u7096\u7082\u709A\u7083\u726A\u72D6\u72CB\u72D8\u72C9\u72DC\u72D2\u72D4\u72DA\u72CC\u72D1\u73A4\u73A1\u73AD\u73A6\u73A2\u73A0\u73AC\u739D\u74DD\u74E8\u753F\u7540\u753E\u758C\u7598\u76AF\u76F3\u76F1\u76F0\u76F5\u77F8\u77FC\u77F9\u77FB\u77FA"],["cda1","\u77F7\u7942\u793F\u79C5\u7A78\u7A7B\u7AFB\u7C75\u7CFD\u8035\u808F\u80AE\u80A3\u80B8\u80B5\u80AD\u8220\u82A0\u82C0\u82AB\u829A\u8298\u829B\u82B5\u82A7\u82AE\u82BC\u829E\u82BA\u82B4\u82A8\u82A1\u82A9\u82C2\u82A4\u82C3\u82B6\u82A2\u8670\u866F\u866D\u866E\u8C56\u8FD2\u8FCB\u8FD3\u8FCD\u8FD6\u8FD5\u8FD7\u90B2\u90B4\u90AF\u90B3\u90B0\u9639\u963D\u963C\u963A\u9643\u4FCD\u4FC5\u4FD3\u4FB2\u4FC9\u4FCB\u4FC1\u4FD4\u4FDC\u4FD9\u4FBB\u4FB3\u4FDB\u4FC7\u4FD6\u4FBA\u4FC0\u4FB9\u4FEC\u5244\u5249\u52C0\u52C2\u533D\u537C\u5397\u5396\u5399\u5398\u54BA\u54A1\u54AD\u54A5\u54CF"],["ce40","\u54C3\u830D\u54B7\u54AE\u54D6\u54B6\u54C5\u54C6\u54A0\u5470\u54BC\u54A2\u54BE\u5472\u54DE\u54B0\u57B5\u579E\u579F\u57A4\u578C\u5797\u579D\u579B\u5794\u5798\u578F\u5799\u57A5\u579A\u5795\u58F4\u590D\u5953\u59E1\u59DE\u59EE\u5A00\u59F1\u59DD\u59FA\u59FD\u59FC\u59F6\u59E4\u59F2\u59F7\u59DB\u59E9\u59F3\u59F5\u59E0\u59FE\u59F4\u59ED\u5BA8\u5C4C\u5CD0\u5CD8\u5CCC\u5CD7\u5CCB\u5CDB"],["cea1","\u5CDE\u5CDA\u5CC9\u5CC7\u5CCA\u5CD6\u5CD3\u5CD4\u5CCF\u5CC8\u5CC6\u5CCE\u5CDF\u5CF8\u5DF9\u5E21\u5E22\u5E23\u5E20\u5E24\u5EB0\u5EA4\u5EA2\u5E9B\u5EA3\u5EA5\u5F07\u5F2E\u5F56\u5F86\u6037\u6039\u6054\u6072\u605E\u6045\u6053\u6047\u6049\u605B\u604C\u6040\u6042\u605F\u6024\u6044\u6058\u6066\u606E\u6242\u6243\u62CF\u630D\u630B\u62F5\u630E\u6303\u62EB\u62F9\u630F\u630C\u62F8\u62F6\u6300\u6313\u6314\u62FA\u6315\u62FB\u62F0\u6541\u6543\u65AA\u65BF\u6636\u6621\u6632\u6635\u661C\u6626\u6622\u6633\u662B\u663A\u661D\u6634\u6639\u662E\u670F\u6710\u67C1\u67F2\u67C8\u67BA"],["cf40","\u67DC\u67BB\u67F8\u67D8\u67C0\u67B7\u67C5\u67EB\u67E4\u67DF\u67B5\u67CD\u67B3\u67F7\u67F6\u67EE\u67E3\u67C2\u67B9\u67CE\u67E7\u67F0\u67B2\u67FC\u67C6\u67ED\u67CC\u67AE\u67E6\u67DB\u67FA\u67C9\u67CA\u67C3\u67EA\u67CB\u6B28\u6B82\u6B84\u6BB6\u6BD6\u6BD8\u6BE0\u6C20\u6C21\u6D28\u6D34\u6D2D\u6D1F\u6D3C\u6D3F\u6D12\u6D0A\u6CDA\u6D33\u6D04\u6D19\u6D3A\u6D1A\u6D11\u6D00\u6D1D\u6D42"],["cfa1","\u6D01\u6D18\u6D37\u6D03\u6D0F\u6D40\u6D07\u6D20\u6D2C\u6D08\u6D22\u6D09\u6D10\u70B7\u709F\u70BE\u70B1\u70B0\u70A1\u70B4\u70B5\u70A9\u7241\u7249\u724A\u726C\u7270\u7273\u726E\u72CA\u72E4\u72E8\u72EB\u72DF\u72EA\u72E6\u72E3\u7385\u73CC\u73C2\u73C8\u73C5\u73B9\u73B6\u73B5\u73B4\u73EB\u73BF\u73C7\u73BE\u73C3\u73C6\u73B8\u73CB\u74EC\u74EE\u752E\u7547\u7548\u75A7\u75AA\u7679\u76C4\u7708\u7703\u7704\u7705\u770A\u76F7\u76FB\u76FA\u77E7\u77E8\u7806\u7811\u7812\u7805\u7810\u780F\u780E\u7809\u7803\u7813\u794A\u794C\u794B\u7945\u7944\u79D5\u79CD\u79CF\u79D6\u79CE\u7A80"],["d040","\u7A7E\u7AD1\u7B00\u7B01\u7C7A\u7C78\u7C79\u7C7F\u7C80\u7C81\u7D03\u7D08\u7D01\u7F58\u7F91\u7F8D\u7FBE\u8007\u800E\u800F\u8014\u8037\u80D8\u80C7\u80E0\u80D1\u80C8\u80C2\u80D0\u80C5\u80E3\u80D9\u80DC\u80CA\u80D5\u80C9\u80CF\u80D7\u80E6\u80CD\u81FF\u8221\u8294\u82D9\u82FE\u82F9\u8307\u82E8\u8300\u82D5\u833A\u82EB\u82D6\u82F4\u82EC\u82E1\u82F2\u82F5\u830C\u82FB\u82F6\u82F0\u82EA"],["d0a1","\u82E4\u82E0\u82FA\u82F3\u82ED\u8677\u8674\u867C\u8673\u8841\u884E\u8867\u886A\u8869\u89D3\u8A04\u8A07\u8D72\u8FE3\u8FE1\u8FEE\u8FE0\u90F1\u90BD\u90BF\u90D5\u90C5\u90BE\u90C7\u90CB\u90C8\u91D4\u91D3\u9654\u964F\u9651\u9653\u964A\u964E\u501E\u5005\u5007\u5013\u5022\u5030\u501B\u4FF5\u4FF4\u5033\u5037\u502C\u4FF6\u4FF7\u5017\u501C\u5020\u5027\u5035\u502F\u5031\u500E\u515A\u5194\u5193\u51CA\u51C4\u51C5\u51C8\u51CE\u5261\u525A\u5252\u525E\u525F\u5255\u5262\u52CD\u530E\u539E\u5526\u54E2\u5517\u5512\u54E7\u54F3\u54E4\u551A\u54FF\u5504\u5508\u54EB\u5511\u5505\u54F1"],["d140","\u550A\u54FB\u54F7\u54F8\u54E0\u550E\u5503\u550B\u5701\u5702\u57CC\u5832\u57D5\u57D2\u57BA\u57C6\u57BD\u57BC\u57B8\u57B6\u57BF\u57C7\u57D0\u57B9\u57C1\u590E\u594A\u5A19\u5A16\u5A2D\u5A2E\u5A15\u5A0F\u5A17\u5A0A\u5A1E\u5A33\u5B6C\u5BA7\u5BAD\u5BAC\u5C03\u5C56\u5C54\u5CEC\u5CFF\u5CEE\u5CF1\u5CF7\u5D00\u5CF9\u5E29\u5E28\u5EA8\u5EAE\u5EAA\u5EAC\u5F33\u5F30\u5F67\u605D\u605A\u6067"],["d1a1","\u6041\u60A2\u6088\u6080\u6092\u6081\u609D\u6083\u6095\u609B\u6097\u6087\u609C\u608E\u6219\u6246\u62F2\u6310\u6356\u632C\u6344\u6345\u6336\u6343\u63E4\u6339\u634B\u634A\u633C\u6329\u6341\u6334\u6358\u6354\u6359\u632D\u6347\u6333\u635A\u6351\u6338\u6357\u6340\u6348\u654A\u6546\u65C6\u65C3\u65C4\u65C2\u664A\u665F\u6647\u6651\u6712\u6713\u681F\u681A\u6849\u6832\u6833\u683B\u684B\u684F\u6816\u6831\u681C\u6835\u682B\u682D\u682F\u684E\u6844\u6834\u681D\u6812\u6814\u6826\u6828\u682E\u684D\u683A\u6825\u6820\u6B2C\u6B2F\u6B2D\u6B31\u6B34\u6B6D\u8082\u6B88\u6BE6\u6BE4"],["d240","\u6BE8\u6BE3\u6BE2\u6BE7\u6C25\u6D7A\u6D63\u6D64\u6D76\u6D0D\u6D61\u6D92\u6D58\u6D62\u6D6D\u6D6F\u6D91\u6D8D\u6DEF\u6D7F\u6D86\u6D5E\u6D67\u6D60\u6D97\u6D70\u6D7C\u6D5F\u6D82\u6D98\u6D2F\u6D68\u6D8B\u6D7E\u6D80\u6D84\u6D16\u6D83\u6D7B\u6D7D\u6D75\u6D90\u70DC\u70D3\u70D1\u70DD\u70CB\u7F39\u70E2\u70D7\u70D2\u70DE\u70E0\u70D4\u70CD\u70C5\u70C6\u70C7\u70DA\u70CE\u70E1\u7242\u7278"],["d2a1","\u7277\u7276\u7300\u72FA\u72F4\u72FE\u72F6\u72F3\u72FB\u7301\u73D3\u73D9\u73E5\u73D6\u73BC\u73E7\u73E3\u73E9\u73DC\u73D2\u73DB\u73D4\u73DD\u73DA\u73D7\u73D8\u73E8\u74DE\u74DF\u74F4\u74F5\u7521\u755B\u755F\u75B0\u75C1\u75BB\u75C4\u75C0\u75BF\u75B6\u75BA\u768A\u76C9\u771D\u771B\u7710\u7713\u7712\u7723\u7711\u7715\u7719\u771A\u7722\u7727\u7823\u782C\u7822\u7835\u782F\u7828\u782E\u782B\u7821\u7829\u7833\u782A\u7831\u7954\u795B\u794F\u795C\u7953\u7952\u7951\u79EB\u79EC\u79E0\u79EE\u79ED\u79EA\u79DC\u79DE\u79DD\u7A86\u7A89\u7A85\u7A8B\u7A8C\u7A8A\u7A87\u7AD8\u7B10"],["d340","\u7B04\u7B13\u7B05\u7B0F\u7B08\u7B0A\u7B0E\u7B09\u7B12\u7C84\u7C91\u7C8A\u7C8C\u7C88\u7C8D\u7C85\u7D1E\u7D1D\u7D11\u7D0E\u7D18\u7D16\u7D13\u7D1F\u7D12\u7D0F\u7D0C\u7F5C\u7F61\u7F5E\u7F60\u7F5D\u7F5B\u7F96\u7F92\u7FC3\u7FC2\u7FC0\u8016\u803E\u8039\u80FA\u80F2\u80F9\u80F5\u8101\u80FB\u8100\u8201\u822F\u8225\u8333\u832D\u8344\u8319\u8351\u8325\u8356\u833F\u8341\u8326\u831C\u8322"],["d3a1","\u8342\u834E\u831B\u832A\u8308\u833C\u834D\u8316\u8324\u8320\u8337\u832F\u8329\u8347\u8345\u834C\u8353\u831E\u832C\u834B\u8327\u8348\u8653\u8652\u86A2\u86A8\u8696\u868D\u8691\u869E\u8687\u8697\u8686\u868B\u869A\u8685\u86A5\u8699\u86A1\u86A7\u8695\u8698\u868E\u869D\u8690\u8694\u8843\u8844\u886D\u8875\u8876\u8872\u8880\u8871\u887F\u886F\u8883\u887E\u8874\u887C\u8A12\u8C47\u8C57\u8C7B\u8CA4\u8CA3\u8D76\u8D78\u8DB5\u8DB7\u8DB6\u8ED1\u8ED3\u8FFE\u8FF5\u9002\u8FFF\u8FFB\u9004\u8FFC\u8FF6\u90D6\u90E0\u90D9\u90DA\u90E3\u90DF\u90E5\u90D8\u90DB\u90D7\u90DC\u90E4\u9150"],["d440","\u914E\u914F\u91D5\u91E2\u91DA\u965C\u965F\u96BC\u98E3\u9ADF\u9B2F\u4E7F\u5070\u506A\u5061\u505E\u5060\u5053\u504B\u505D\u5072\u5048\u504D\u5041\u505B\u504A\u5062\u5015\u5045\u505F\u5069\u506B\u5063\u5064\u5046\u5040\u506E\u5073\u5057\u5051\u51D0\u526B\u526D\u526C\u526E\u52D6\u52D3\u532D\u539C\u5575\u5576\u553C\u554D\u5550\u5534\u552A\u5551\u5562\u5536\u5535\u5530\u5552\u5545"],["d4a1","\u550C\u5532\u5565\u554E\u5539\u5548\u552D\u553B\u5540\u554B\u570A\u5707\u57FB\u5814\u57E2\u57F6\u57DC\u57F4\u5800\u57ED\u57FD\u5808\u57F8\u580B\u57F3\u57CF\u5807\u57EE\u57E3\u57F2\u57E5\u57EC\u57E1\u580E\u57FC\u5810\u57E7\u5801\u580C\u57F1\u57E9\u57F0\u580D\u5804\u595C\u5A60\u5A58\u5A55\u5A67\u5A5E\u5A38\u5A35\u5A6D\u5A50\u5A5F\u5A65\u5A6C\u5A53\u5A64\u5A57\u5A43\u5A5D\u5A52\u5A44\u5A5B\u5A48\u5A8E\u5A3E\u5A4D\u5A39\u5A4C\u5A70\u5A69\u5A47\u5A51\u5A56\u5A42\u5A5C\u5B72\u5B6E\u5BC1\u5BC0\u5C59\u5D1E\u5D0B\u5D1D\u5D1A\u5D20\u5D0C\u5D28\u5D0D\u5D26\u5D25\u5D0F"],["d540","\u5D30\u5D12\u5D23\u5D1F\u5D2E\u5E3E\u5E34\u5EB1\u5EB4\u5EB9\u5EB2\u5EB3\u5F36\u5F38\u5F9B\u5F96\u5F9F\u608A\u6090\u6086\u60BE\u60B0\u60BA\u60D3\u60D4\u60CF\u60E4\u60D9\u60DD\u60C8\u60B1\u60DB\u60B7\u60CA\u60BF\u60C3\u60CD\u60C0\u6332\u6365\u638A\u6382\u637D\u63BD\u639E\u63AD\u639D\u6397\u63AB\u638E\u636F\u6387\u6390\u636E\u63AF\u6375\u639C\u636D\u63AE\u637C\u63A4\u633B\u639F"],["d5a1","\u6378\u6385\u6381\u6391\u638D\u6370\u6553\u65CD\u6665\u6661\u665B\u6659\u665C\u6662\u6718\u6879\u6887\u6890\u689C\u686D\u686E\u68AE\u68AB\u6956\u686F\u68A3\u68AC\u68A9\u6875\u6874\u68B2\u688F\u6877\u6892\u687C\u686B\u6872\u68AA\u6880\u6871\u687E\u689B\u6896\u688B\u68A0\u6889\u68A4\u6878\u687B\u6891\u688C\u688A\u687D\u6B36\u6B33\u6B37\u6B38\u6B91\u6B8F\u6B8D\u6B8E\u6B8C\u6C2A\u6DC0\u6DAB\u6DB4\u6DB3\u6E74\u6DAC\u6DE9\u6DE2\u6DB7\u6DF6\u6DD4\u6E00\u6DC8\u6DE0\u6DDF\u6DD6\u6DBE\u6DE5\u6DDC\u6DDD\u6DDB\u6DF4\u6DCA\u6DBD\u6DED\u6DF0\u6DBA\u6DD5\u6DC2\u6DCF\u6DC9"],["d640","\u6DD0\u6DF2\u6DD3\u6DFD\u6DD7\u6DCD\u6DE3\u6DBB\u70FA\u710D\u70F7\u7117\u70F4\u710C\u70F0\u7104\u70F3\u7110\u70FC\u70FF\u7106\u7113\u7100\u70F8\u70F6\u710B\u7102\u710E\u727E\u727B\u727C\u727F\u731D\u7317\u7307\u7311\u7318\u730A\u7308\u72FF\u730F\u731E\u7388\u73F6\u73F8\u73F5\u7404\u7401\u73FD\u7407\u7400\u73FA\u73FC\u73FF\u740C\u740B\u73F4\u7408\u7564\u7563\u75CE\u75D2\u75CF"],["d6a1","\u75CB\u75CC\u75D1\u75D0\u768F\u7689\u76D3\u7739\u772F\u772D\u7731\u7732\u7734\u7733\u773D\u7725\u773B\u7735\u7848\u7852\u7849\u784D\u784A\u784C\u7826\u7845\u7850\u7964\u7967\u7969\u796A\u7963\u796B\u7961\u79BB\u79FA\u79F8\u79F6\u79F7\u7A8F\u7A94\u7A90\u7B35\u7B47\u7B34\u7B25\u7B30\u7B22\u7B24\u7B33\u7B18\u7B2A\u7B1D\u7B31\u7B2B\u7B2D\u7B2F\u7B32\u7B38\u7B1A\u7B23\u7C94\u7C98\u7C96\u7CA3\u7D35\u7D3D\u7D38\u7D36\u7D3A\u7D45\u7D2C\u7D29\u7D41\u7D47\u7D3E\u7D3F\u7D4A\u7D3B\u7D28\u7F63\u7F95\u7F9C\u7F9D\u7F9B\u7FCA\u7FCB\u7FCD\u7FD0\u7FD1\u7FC7\u7FCF\u7FC9\u801F"],["d740","\u801E\u801B\u8047\u8043\u8048\u8118\u8125\u8119\u811B\u812D\u811F\u812C\u811E\u8121\u8115\u8127\u811D\u8122\u8211\u8238\u8233\u823A\u8234\u8232\u8274\u8390\u83A3\u83A8\u838D\u837A\u8373\u83A4\u8374\u838F\u8381\u8395\u8399\u8375\u8394\u83A9\u837D\u8383\u838C\u839D\u839B\u83AA\u838B\u837E\u83A5\u83AF\u8388\u8397\u83B0\u837F\u83A6\u8387\u83AE\u8376\u839A\u8659\u8656\u86BF\u86B7"],["d7a1","\u86C2\u86C1\u86C5\u86BA\u86B0\u86C8\u86B9\u86B3\u86B8\u86CC\u86B4\u86BB\u86BC\u86C3\u86BD\u86BE\u8852\u8889\u8895\u88A8\u88A2\u88AA\u889A\u8891\u88A1\u889F\u8898\u88A7\u8899\u889B\u8897\u88A4\u88AC\u888C\u8893\u888E\u8982\u89D6\u89D9\u89D5\u8A30\u8A27\u8A2C\u8A1E\u8C39\u8C3B\u8C5C\u8C5D\u8C7D\u8CA5\u8D7D\u8D7B\u8D79\u8DBC\u8DC2\u8DB9\u8DBF\u8DC1\u8ED8\u8EDE\u8EDD\u8EDC\u8ED7\u8EE0\u8EE1\u9024\u900B\u9011\u901C\u900C\u9021\u90EF\u90EA\u90F0\u90F4\u90F2\u90F3\u90D4\u90EB\u90EC\u90E9\u9156\u9158\u915A\u9153\u9155\u91EC\u91F4\u91F1\u91F3\u91F8\u91E4\u91F9\u91EA"],["d840","\u91EB\u91F7\u91E8\u91EE\u957A\u9586\u9588\u967C\u966D\u966B\u9671\u966F\u96BF\u976A\u9804\u98E5\u9997\u509B\u5095\u5094\u509E\u508B\u50A3\u5083\u508C\u508E\u509D\u5068\u509C\u5092\u5082\u5087\u515F\u51D4\u5312\u5311\u53A4\u53A7\u5591\u55A8\u55A5\u55AD\u5577\u5645\u55A2\u5593\u5588\u558F\u55B5\u5581\u55A3\u5592\u55A4\u557D\u558C\u55A6\u557F\u5595\u55A1\u558E\u570C\u5829\u5837"],["d8a1","\u5819\u581E\u5827\u5823\u5828\u57F5\u5848\u5825\u581C\u581B\u5833\u583F\u5836\u582E\u5839\u5838\u582D\u582C\u583B\u5961\u5AAF\u5A94\u5A9F\u5A7A\u5AA2\u5A9E\u5A78\u5AA6\u5A7C\u5AA5\u5AAC\u5A95\u5AAE\u5A37\u5A84\u5A8A\u5A97\u5A83\u5A8B\u5AA9\u5A7B\u5A7D\u5A8C\u5A9C\u5A8F\u5A93\u5A9D\u5BEA\u5BCD\u5BCB\u5BD4\u5BD1\u5BCA\u5BCE\u5C0C\u5C30\u5D37\u5D43\u5D6B\u5D41\u5D4B\u5D3F\u5D35\u5D51\u5D4E\u5D55\u5D33\u5D3A\u5D52\u5D3D\u5D31\u5D59\u5D42\u5D39\u5D49\u5D38\u5D3C\u5D32\u5D36\u5D40\u5D45\u5E44\u5E41\u5F58\u5FA6\u5FA5\u5FAB\u60C9\u60B9\u60CC\u60E2\u60CE\u60C4\u6114"],["d940","\u60F2\u610A\u6116\u6105\u60F5\u6113\u60F8\u60FC\u60FE\u60C1\u6103\u6118\u611D\u6110\u60FF\u6104\u610B\u624A\u6394\u63B1\u63B0\u63CE\u63E5\u63E8\u63EF\u63C3\u649D\u63F3\u63CA\u63E0\u63F6\u63D5\u63F2\u63F5\u6461\u63DF\u63BE\u63DD\u63DC\u63C4\u63D8\u63D3\u63C2\u63C7\u63CC\u63CB\u63C8\u63F0\u63D7\u63D9\u6532\u6567\u656A\u6564\u655C\u6568\u6565\u658C\u659D\u659E\u65AE\u65D0\u65D2"],["d9a1","\u667C\u666C\u667B\u6680\u6671\u6679\u666A\u6672\u6701\u690C\u68D3\u6904\u68DC\u692A\u68EC\u68EA\u68F1\u690F\u68D6\u68F7\u68EB\u68E4\u68F6\u6913\u6910\u68F3\u68E1\u6907\u68CC\u6908\u6970\u68B4\u6911\u68EF\u68C6\u6914\u68F8\u68D0\u68FD\u68FC\u68E8\u690B\u690A\u6917\u68CE\u68C8\u68DD\u68DE\u68E6\u68F4\u68D1\u6906\u68D4\u68E9\u6915\u6925\u68C7\u6B39\u6B3B\u6B3F\u6B3C\u6B94\u6B97\u6B99\u6B95\u6BBD\u6BF0\u6BF2\u6BF3\u6C30\u6DFC\u6E46\u6E47\u6E1F\u6E49\u6E88\u6E3C\u6E3D\u6E45\u6E62\u6E2B\u6E3F\u6E41\u6E5D\u6E73\u6E1C\u6E33\u6E4B\u6E40\u6E51\u6E3B\u6E03\u6E2E\u6E5E"],["da40","\u6E68\u6E5C\u6E61\u6E31\u6E28\u6E60\u6E71\u6E6B\u6E39\u6E22\u6E30\u6E53\u6E65\u6E27\u6E78\u6E64\u6E77\u6E55\u6E79\u6E52\u6E66\u6E35\u6E36\u6E5A\u7120\u711E\u712F\u70FB\u712E\u7131\u7123\u7125\u7122\u7132\u711F\u7128\u713A\u711B\u724B\u725A\u7288\u7289\u7286\u7285\u728B\u7312\u730B\u7330\u7322\u7331\u7333\u7327\u7332\u732D\u7326\u7323\u7335\u730C\u742E\u742C\u7430\u742B\u7416"],["daa1","\u741A\u7421\u742D\u7431\u7424\u7423\u741D\u7429\u7420\u7432\u74FB\u752F\u756F\u756C\u75E7\u75DA\u75E1\u75E6\u75DD\u75DF\u75E4\u75D7\u7695\u7692\u76DA\u7746\u7747\u7744\u774D\u7745\u774A\u774E\u774B\u774C\u77DE\u77EC\u7860\u7864\u7865\u785C\u786D\u7871\u786A\u786E\u7870\u7869\u7868\u785E\u7862\u7974\u7973\u7972\u7970\u7A02\u7A0A\u7A03\u7A0C\u7A04\u7A99\u7AE6\u7AE4\u7B4A\u7B3B\u7B44\u7B48\u7B4C\u7B4E\u7B40\u7B58\u7B45\u7CA2\u7C9E\u7CA8\u7CA1\u7D58\u7D6F\u7D63\u7D53\u7D56\u7D67\u7D6A\u7D4F\u7D6D\u7D5C\u7D6B\u7D52\u7D54\u7D69\u7D51\u7D5F\u7D4E\u7F3E\u7F3F\u7F65"],["db40","\u7F66\u7FA2\u7FA0\u7FA1\u7FD7\u8051\u804F\u8050\u80FE\u80D4\u8143\u814A\u8152\u814F\u8147\u813D\u814D\u813A\u81E6\u81EE\u81F7\u81F8\u81F9\u8204\u823C\u823D\u823F\u8275\u833B\u83CF\u83F9\u8423\u83C0\u83E8\u8412\u83E7\u83E4\u83FC\u83F6\u8410\u83C6\u83C8\u83EB\u83E3\u83BF\u8401\u83DD\u83E5\u83D8\u83FF\u83E1\u83CB\u83CE\u83D6\u83F5\u83C9\u8409\u840F\u83DE\u8411\u8406\u83C2\u83F3"],["dba1","\u83D5\u83FA\u83C7\u83D1\u83EA\u8413\u83C3\u83EC\u83EE\u83C4\u83FB\u83D7\u83E2\u841B\u83DB\u83FE\u86D8\u86E2\u86E6\u86D3\u86E3\u86DA\u86EA\u86DD\u86EB\u86DC\u86EC\u86E9\u86D7\u86E8\u86D1\u8848\u8856\u8855\u88BA\u88D7\u88B9\u88B8\u88C0\u88BE\u88B6\u88BC\u88B7\u88BD\u88B2\u8901\u88C9\u8995\u8998\u8997\u89DD\u89DA\u89DB\u8A4E\u8A4D\u8A39\u8A59\u8A40\u8A57\u8A58\u8A44\u8A45\u8A52\u8A48\u8A51\u8A4A\u8A4C\u8A4F\u8C5F\u8C81\u8C80\u8CBA\u8CBE\u8CB0\u8CB9\u8CB5\u8D84\u8D80\u8D89\u8DD8\u8DD3\u8DCD\u8DC7\u8DD6\u8DDC\u8DCF\u8DD5\u8DD9\u8DC8\u8DD7\u8DC5\u8EEF\u8EF7\u8EFA"],["dc40","\u8EF9\u8EE6\u8EEE\u8EE5\u8EF5\u8EE7\u8EE8\u8EF6\u8EEB\u8EF1\u8EEC\u8EF4\u8EE9\u902D\u9034\u902F\u9106\u912C\u9104\u90FF\u90FC\u9108\u90F9\u90FB\u9101\u9100\u9107\u9105\u9103\u9161\u9164\u915F\u9162\u9160\u9201\u920A\u9225\u9203\u921A\u9226\u920F\u920C\u9200\u9212\u91FF\u91FD\u9206\u9204\u9227\u9202\u921C\u9224\u9219\u9217\u9205\u9216\u957B\u958D\u958C\u9590\u9687\u967E\u9688"],["dca1","\u9689\u9683\u9680\u96C2\u96C8\u96C3\u96F1\u96F0\u976C\u9770\u976E\u9807\u98A9\u98EB\u9CE6\u9EF9\u4E83\u4E84\u4EB6\u50BD\u50BF\u50C6\u50AE\u50C4\u50CA\u50B4\u50C8\u50C2\u50B0\u50C1\u50BA\u50B1\u50CB\u50C9\u50B6\u50B8\u51D7\u527A\u5278\u527B\u527C\u55C3\u55DB\u55CC\u55D0\u55CB\u55CA\u55DD\u55C0\u55D4\u55C4\u55E9\u55BF\u55D2\u558D\u55CF\u55D5\u55E2\u55D6\u55C8\u55F2\u55CD\u55D9\u55C2\u5714\u5853\u5868\u5864\u584F\u584D\u5849\u586F\u5855\u584E\u585D\u5859\u5865\u585B\u583D\u5863\u5871\u58FC\u5AC7\u5AC4\u5ACB\u5ABA\u5AB8\u5AB1\u5AB5\u5AB0\u5ABF\u5AC8\u5ABB\u5AC6"],["dd40","\u5AB7\u5AC0\u5ACA\u5AB4\u5AB6\u5ACD\u5AB9\u5A90\u5BD6\u5BD8\u5BD9\u5C1F\u5C33\u5D71\u5D63\u5D4A\u5D65\u5D72\u5D6C\u5D5E\u5D68\u5D67\u5D62\u5DF0\u5E4F\u5E4E\u5E4A\u5E4D\u5E4B\u5EC5\u5ECC\u5EC6\u5ECB\u5EC7\u5F40\u5FAF\u5FAD\u60F7\u6149\u614A\u612B\u6145\u6136\u6132\u612E\u6146\u612F\u614F\u6129\u6140\u6220\u9168\u6223\u6225\u6224\u63C5\u63F1\u63EB\u6410\u6412\u6409\u6420\u6424"],["dda1","\u6433\u6443\u641F\u6415\u6418\u6439\u6437\u6422\u6423\u640C\u6426\u6430\u6428\u6441\u6435\u642F\u640A\u641A\u6440\u6425\u6427\u640B\u63E7\u641B\u642E\u6421\u640E\u656F\u6592\u65D3\u6686\u668C\u6695\u6690\u668B\u668A\u6699\u6694\u6678\u6720\u6966\u695F\u6938\u694E\u6962\u6971\u693F\u6945\u696A\u6939\u6942\u6957\u6959\u697A\u6948\u6949\u6935\u696C\u6933\u693D\u6965\u68F0\u6978\u6934\u6969\u6940\u696F\u6944\u6976\u6958\u6941\u6974\u694C\u693B\u694B\u6937\u695C\u694F\u6951\u6932\u6952\u692F\u697B\u693C\u6B46\u6B45\u6B43\u6B42\u6B48\u6B41\u6B9B\uFA0D\u6BFB\u6BFC"],["de40","\u6BF9\u6BF7\u6BF8\u6E9B\u6ED6\u6EC8\u6E8F\u6EC0\u6E9F\u6E93\u6E94\u6EA0\u6EB1\u6EB9\u6EC6\u6ED2\u6EBD\u6EC1\u6E9E\u6EC9\u6EB7\u6EB0\u6ECD\u6EA6\u6ECF\u6EB2\u6EBE\u6EC3\u6EDC\u6ED8\u6E99\u6E92\u6E8E\u6E8D\u6EA4\u6EA1\u6EBF\u6EB3\u6ED0\u6ECA\u6E97\u6EAE\u6EA3\u7147\u7154\u7152\u7163\u7160\u7141\u715D\u7162\u7172\u7178\u716A\u7161\u7142\u7158\u7143\u714B\u7170\u715F\u7150\u7153"],["dea1","\u7144\u714D\u715A\u724F\u728D\u728C\u7291\u7290\u728E\u733C\u7342\u733B\u733A\u7340\u734A\u7349\u7444\u744A\u744B\u7452\u7451\u7457\u7440\u744F\u7450\u744E\u7442\u7446\u744D\u7454\u74E1\u74FF\u74FE\u74FD\u751D\u7579\u7577\u6983\u75EF\u760F\u7603\u75F7\u75FE\u75FC\u75F9\u75F8\u7610\u75FB\u75F6\u75ED\u75F5\u75FD\u7699\u76B5\u76DD\u7755\u775F\u7760\u7752\u7756\u775A\u7769\u7767\u7754\u7759\u776D\u77E0\u7887\u789A\u7894\u788F\u7884\u7895\u7885\u7886\u78A1\u7883\u7879\u7899\u7880\u7896\u787B\u797C\u7982\u797D\u7979\u7A11\u7A18\u7A19\u7A12\u7A17\u7A15\u7A22\u7A13"],["df40","\u7A1B\u7A10\u7AA3\u7AA2\u7A9E\u7AEB\u7B66\u7B64\u7B6D\u7B74\u7B69\u7B72\u7B65\u7B73\u7B71\u7B70\u7B61\u7B78\u7B76\u7B63\u7CB2\u7CB4\u7CAF\u7D88\u7D86\u7D80\u7D8D\u7D7F\u7D85\u7D7A\u7D8E\u7D7B\u7D83\u7D7C\u7D8C\u7D94\u7D84\u7D7D\u7D92\u7F6D\u7F6B\u7F67\u7F68\u7F6C\u7FA6\u7FA5\u7FA7\u7FDB\u7FDC\u8021\u8164\u8160\u8177\u815C\u8169\u815B\u8162\u8172\u6721\u815E\u8176\u8167\u816F"],["dfa1","\u8144\u8161\u821D\u8249\u8244\u8240\u8242\u8245\u84F1\u843F\u8456\u8476\u8479\u848F\u848D\u8465\u8451\u8440\u8486\u8467\u8430\u844D\u847D\u845A\u8459\u8474\u8473\u845D\u8507\u845E\u8437\u843A\u8434\u847A\u8443\u8478\u8432\u8445\u8429\u83D9\u844B\u842F\u8442\u842D\u845F\u8470\u8439\u844E\u844C\u8452\u846F\u84C5\u848E\u843B\u8447\u8436\u8433\u8468\u847E\u8444\u842B\u8460\u8454\u846E\u8450\u870B\u8704\u86F7\u870C\u86FA\u86D6\u86F5\u874D\u86F8\u870E\u8709\u8701\u86F6\u870D\u8705\u88D6\u88CB\u88CD\u88CE\u88DE\u88DB\u88DA\u88CC\u88D0\u8985\u899B\u89DF\u89E5\u89E4"],["e040","\u89E1\u89E0\u89E2\u89DC\u89E6\u8A76\u8A86\u8A7F\u8A61\u8A3F\u8A77\u8A82\u8A84\u8A75\u8A83\u8A81\u8A74\u8A7A\u8C3C\u8C4B\u8C4A\u8C65\u8C64\u8C66\u8C86\u8C84\u8C85\u8CCC\u8D68\u8D69\u8D91\u8D8C\u8D8E\u8D8F\u8D8D\u8D93\u8D94\u8D90\u8D92\u8DF0\u8DE0\u8DEC\u8DF1\u8DEE\u8DD0\u8DE9\u8DE3\u8DE2\u8DE7\u8DF2\u8DEB\u8DF4\u8F06\u8EFF\u8F01\u8F00\u8F05\u8F07\u8F08\u8F02\u8F0B\u9052\u903F"],["e0a1","\u9044\u9049\u903D\u9110\u910D\u910F\u9111\u9116\u9114\u910B\u910E\u916E\u916F\u9248\u9252\u9230\u923A\u9266\u9233\u9265\u925E\u9283\u922E\u924A\u9246\u926D\u926C\u924F\u9260\u9267\u926F\u9236\u9261\u9270\u9231\u9254\u9263\u9250\u9272\u924E\u9253\u924C\u9256\u9232\u959F\u959C\u959E\u959B\u9692\u9693\u9691\u9697\u96CE\u96FA\u96FD\u96F8\u96F5\u9773\u9777\u9778\u9772\u980F\u980D\u980E\u98AC\u98F6\u98F9\u99AF\u99B2\u99B0\u99B5\u9AAD\u9AAB\u9B5B\u9CEA\u9CED\u9CE7\u9E80\u9EFD\u50E6\u50D4\u50D7\u50E8\u50F3\u50DB\u50EA\u50DD\u50E4\u50D3\u50EC\u50F0\u50EF\u50E3\u50E0"],["e140","\u51D8\u5280\u5281\u52E9\u52EB\u5330\u53AC\u5627\u5615\u560C\u5612\u55FC\u560F\u561C\u5601\u5613\u5602\u55FA\u561D\u5604\u55FF\u55F9\u5889\u587C\u5890\u5898\u5886\u5881\u587F\u5874\u588B\u587A\u5887\u5891\u588E\u5876\u5882\u5888\u587B\u5894\u588F\u58FE\u596B\u5ADC\u5AEE\u5AE5\u5AD5\u5AEA\u5ADA\u5AED\u5AEB\u5AF3\u5AE2\u5AE0\u5ADB\u5AEC\u5ADE\u5ADD\u5AD9\u5AE8\u5ADF\u5B77\u5BE0"],["e1a1","\u5BE3\u5C63\u5D82\u5D80\u5D7D\u5D86\u5D7A\u5D81\u5D77\u5D8A\u5D89\u5D88\u5D7E\u5D7C\u5D8D\u5D79\u5D7F\u5E58\u5E59\u5E53\u5ED8\u5ED1\u5ED7\u5ECE\u5EDC\u5ED5\u5ED9\u5ED2\u5ED4\u5F44\u5F43\u5F6F\u5FB6\u612C\u6128\u6141\u615E\u6171\u6173\u6152\u6153\u6172\u616C\u6180\u6174\u6154\u617A\u615B\u6165\u613B\u616A\u6161\u6156\u6229\u6227\u622B\u642B\u644D\u645B\u645D\u6474\u6476\u6472\u6473\u647D\u6475\u6466\u64A6\u644E\u6482\u645E\u645C\u644B\u6453\u6460\u6450\u647F\u643F\u646C\u646B\u6459\u6465\u6477\u6573\u65A0\u66A1\u66A0\u669F\u6705\u6704\u6722\u69B1\u69B6\u69C9"],["e240","\u69A0\u69CE\u6996\u69B0\u69AC\u69BC\u6991\u6999\u698E\u69A7\u698D\u69A9\u69BE\u69AF\u69BF\u69C4\u69BD\u69A4\u69D4\u69B9\u69CA\u699A\u69CF\u69B3\u6993\u69AA\u69A1\u699E\u69D9\u6997\u6990\u69C2\u69B5\u69A5\u69C6\u6B4A\u6B4D\u6B4B\u6B9E\u6B9F\u6BA0\u6BC3\u6BC4\u6BFE\u6ECE\u6EF5\u6EF1\u6F03\u6F25\u6EF8\u6F37\u6EFB\u6F2E\u6F09\u6F4E\u6F19\u6F1A\u6F27\u6F18\u6F3B\u6F12\u6EED\u6F0A"],["e2a1","\u6F36\u6F73\u6EF9\u6EEE\u6F2D\u6F40\u6F30\u6F3C\u6F35\u6EEB\u6F07\u6F0E\u6F43\u6F05\u6EFD\u6EF6\u6F39\u6F1C\u6EFC\u6F3A\u6F1F\u6F0D\u6F1E\u6F08\u6F21\u7187\u7190\u7189\u7180\u7185\u7182\u718F\u717B\u7186\u7181\u7197\u7244\u7253\u7297\u7295\u7293\u7343\u734D\u7351\u734C\u7462\u7473\u7471\u7475\u7472\u7467\u746E\u7500\u7502\u7503\u757D\u7590\u7616\u7608\u760C\u7615\u7611\u760A\u7614\u76B8\u7781\u777C\u7785\u7782\u776E\u7780\u776F\u777E\u7783\u78B2\u78AA\u78B4\u78AD\u78A8\u787E\u78AB\u789E\u78A5\u78A0\u78AC\u78A2\u78A4\u7998\u798A\u798B\u7996\u7995\u7994\u7993"],["e340","\u7997\u7988\u7992\u7990\u7A2B\u7A4A\u7A30\u7A2F\u7A28\u7A26\u7AA8\u7AAB\u7AAC\u7AEE\u7B88\u7B9C\u7B8A\u7B91\u7B90\u7B96\u7B8D\u7B8C\u7B9B\u7B8E\u7B85\u7B98\u5284\u7B99\u7BA4\u7B82\u7CBB\u7CBF\u7CBC\u7CBA\u7DA7\u7DB7\u7DC2\u7DA3\u7DAA\u7DC1\u7DC0\u7DC5\u7D9D\u7DCE\u7DC4\u7DC6\u7DCB\u7DCC\u7DAF\u7DB9\u7D96\u7DBC\u7D9F\u7DA6\u7DAE\u7DA9\u7DA1\u7DC9\u7F73\u7FE2\u7FE3\u7FE5\u7FDE"],["e3a1","\u8024\u805D\u805C\u8189\u8186\u8183\u8187\u818D\u818C\u818B\u8215\u8497\u84A4\u84A1\u849F\u84BA\u84CE\u84C2\u84AC\u84AE\u84AB\u84B9\u84B4\u84C1\u84CD\u84AA\u849A\u84B1\u84D0\u849D\u84A7\u84BB\u84A2\u8494\u84C7\u84CC\u849B\u84A9\u84AF\u84A8\u84D6\u8498\u84B6\u84CF\u84A0\u84D7\u84D4\u84D2\u84DB\u84B0\u8491\u8661\u8733\u8723\u8728\u876B\u8740\u872E\u871E\u8721\u8719\u871B\u8743\u872C\u8741\u873E\u8746\u8720\u8732\u872A\u872D\u873C\u8712\u873A\u8731\u8735\u8742\u8726\u8727\u8738\u8724\u871A\u8730\u8711\u88F7\u88E7\u88F1\u88F2\u88FA\u88FE\u88EE\u88FC\u88F6\u88FB"],["e440","\u88F0\u88EC\u88EB\u899D\u89A1\u899F\u899E\u89E9\u89EB\u89E8\u8AAB\u8A99\u8A8B\u8A92\u8A8F\u8A96\u8C3D\u8C68\u8C69\u8CD5\u8CCF\u8CD7\u8D96\u8E09\u8E02\u8DFF\u8E0D\u8DFD\u8E0A\u8E03\u8E07\u8E06\u8E05\u8DFE\u8E00\u8E04\u8F10\u8F11\u8F0E\u8F0D\u9123\u911C\u9120\u9122\u911F\u911D\u911A\u9124\u9121\u911B\u917A\u9172\u9179\u9173\u92A5\u92A4\u9276\u929B\u927A\u92A0\u9294\u92AA\u928D"],["e4a1","\u92A6\u929A\u92AB\u9279\u9297\u927F\u92A3\u92EE\u928E\u9282\u9295\u92A2\u927D\u9288\u92A1\u928A\u9286\u928C\u9299\u92A7\u927E\u9287\u92A9\u929D\u928B\u922D\u969E\u96A1\u96FF\u9758\u977D\u977A\u977E\u9783\u9780\u9782\u977B\u9784\u9781\u977F\u97CE\u97CD\u9816\u98AD\u98AE\u9902\u9900\u9907\u999D\u999C\u99C3\u99B9\u99BB\u99BA\u99C2\u99BD\u99C7\u9AB1\u9AE3\u9AE7\u9B3E\u9B3F\u9B60\u9B61\u9B5F\u9CF1\u9CF2\u9CF5\u9EA7\u50FF\u5103\u5130\u50F8\u5106\u5107\u50F6\u50FE\u510B\u510C\u50FD\u510A\u528B\u528C\u52F1\u52EF\u5648\u5642\u564C\u5635\u5641\u564A\u5649\u5646\u5658"],["e540","\u565A\u5640\u5633\u563D\u562C\u563E\u5638\u562A\u563A\u571A\u58AB\u589D\u58B1\u58A0\u58A3\u58AF\u58AC\u58A5\u58A1\u58FF\u5AFF\u5AF4\u5AFD\u5AF7\u5AF6\u5B03\u5AF8\u5B02\u5AF9\u5B01\u5B07\u5B05\u5B0F\u5C67\u5D99\u5D97\u5D9F\u5D92\u5DA2\u5D93\u5D95\u5DA0\u5D9C\u5DA1\u5D9A\u5D9E\u5E69\u5E5D\u5E60\u5E5C\u7DF3\u5EDB\u5EDE\u5EE1\u5F49\u5FB2\u618B\u6183\u6179\u61B1\u61B0\u61A2\u6189"],["e5a1","\u619B\u6193\u61AF\u61AD\u619F\u6192\u61AA\u61A1\u618D\u6166\u61B3\u622D\u646E\u6470\u6496\u64A0\u6485\u6497\u649C\u648F\u648B\u648A\u648C\u64A3\u649F\u6468\u64B1\u6498\u6576\u657A\u6579\u657B\u65B2\u65B3\u66B5\u66B0\u66A9\u66B2\u66B7\u66AA\u66AF\u6A00\u6A06\u6A17\u69E5\u69F8\u6A15\u69F1\u69E4\u6A20\u69FF\u69EC\u69E2\u6A1B\u6A1D\u69FE\u6A27\u69F2\u69EE\u6A14\u69F7\u69E7\u6A40\u6A08\u69E6\u69FB\u6A0D\u69FC\u69EB\u6A09\u6A04\u6A18\u6A25\u6A0F\u69F6\u6A26\u6A07\u69F4\u6A16\u6B51\u6BA5\u6BA3\u6BA2\u6BA6\u6C01\u6C00\u6BFF\u6C02\u6F41\u6F26\u6F7E\u6F87\u6FC6\u6F92"],["e640","\u6F8D\u6F89\u6F8C\u6F62\u6F4F\u6F85\u6F5A\u6F96\u6F76\u6F6C\u6F82\u6F55\u6F72\u6F52\u6F50\u6F57\u6F94\u6F93\u6F5D\u6F00\u6F61\u6F6B\u6F7D\u6F67\u6F90\u6F53\u6F8B\u6F69\u6F7F\u6F95\u6F63\u6F77\u6F6A\u6F7B\u71B2\u71AF\u719B\u71B0\u71A0\u719A\u71A9\u71B5\u719D\u71A5\u719E\u71A4\u71A1\u71AA\u719C\u71A7\u71B3\u7298\u729A\u7358\u7352\u735E\u735F\u7360\u735D\u735B\u7361\u735A\u7359"],["e6a1","\u7362\u7487\u7489\u748A\u7486\u7481\u747D\u7485\u7488\u747C\u7479\u7508\u7507\u757E\u7625\u761E\u7619\u761D\u761C\u7623\u761A\u7628\u761B\u769C\u769D\u769E\u769B\u778D\u778F\u7789\u7788\u78CD\u78BB\u78CF\u78CC\u78D1\u78CE\u78D4\u78C8\u78C3\u78C4\u78C9\u799A\u79A1\u79A0\u799C\u79A2\u799B\u6B76\u7A39\u7AB2\u7AB4\u7AB3\u7BB7\u7BCB\u7BBE\u7BAC\u7BCE\u7BAF\u7BB9\u7BCA\u7BB5\u7CC5\u7CC8\u7CCC\u7CCB\u7DF7\u7DDB\u7DEA\u7DE7\u7DD7\u7DE1\u7E03\u7DFA\u7DE6\u7DF6\u7DF1\u7DF0\u7DEE\u7DDF\u7F76\u7FAC\u7FB0\u7FAD\u7FED\u7FEB\u7FEA\u7FEC\u7FE6\u7FE8\u8064\u8067\u81A3\u819F"],["e740","\u819E\u8195\u81A2\u8199\u8197\u8216\u824F\u8253\u8252\u8250\u824E\u8251\u8524\u853B\u850F\u8500\u8529\u850E\u8509\u850D\u851F\u850A\u8527\u851C\u84FB\u852B\u84FA\u8508\u850C\u84F4\u852A\u84F2\u8515\u84F7\u84EB\u84F3\u84FC\u8512\u84EA\u84E9\u8516\u84FE\u8528\u851D\u852E\u8502\u84FD\u851E\u84F6\u8531\u8526\u84E7\u84E8\u84F0\u84EF\u84F9\u8518\u8520\u8530\u850B\u8519\u852F\u8662"],["e7a1","\u8756\u8763\u8764\u8777\u87E1\u8773\u8758\u8754\u875B\u8752\u8761\u875A\u8751\u875E\u876D\u876A\u8750\u874E\u875F\u875D\u876F\u876C\u877A\u876E\u875C\u8765\u874F\u877B\u8775\u8762\u8767\u8769\u885A\u8905\u890C\u8914\u890B\u8917\u8918\u8919\u8906\u8916\u8911\u890E\u8909\u89A2\u89A4\u89A3\u89ED\u89F0\u89EC\u8ACF\u8AC6\u8AB8\u8AD3\u8AD1\u8AD4\u8AD5\u8ABB\u8AD7\u8ABE\u8AC0\u8AC5\u8AD8\u8AC3\u8ABA\u8ABD\u8AD9\u8C3E\u8C4D\u8C8F\u8CE5\u8CDF\u8CD9\u8CE8\u8CDA\u8CDD\u8CE7\u8DA0\u8D9C\u8DA1\u8D9B\u8E20\u8E23\u8E25\u8E24\u8E2E\u8E15\u8E1B\u8E16\u8E11\u8E19\u8E26\u8E27"],["e840","\u8E14\u8E12\u8E18\u8E13\u8E1C\u8E17\u8E1A\u8F2C\u8F24\u8F18\u8F1A\u8F20\u8F23\u8F16\u8F17\u9073\u9070\u906F\u9067\u906B\u912F\u912B\u9129\u912A\u9132\u9126\u912E\u9185\u9186\u918A\u9181\u9182\u9184\u9180\u92D0\u92C3\u92C4\u92C0\u92D9\u92B6\u92CF\u92F1\u92DF\u92D8\u92E9\u92D7\u92DD\u92CC\u92EF\u92C2\u92E8\u92CA\u92C8\u92CE\u92E6\u92CD\u92D5\u92C9\u92E0\u92DE\u92E7\u92D1\u92D3"],["e8a1","\u92B5\u92E1\u92C6\u92B4\u957C\u95AC\u95AB\u95AE\u95B0\u96A4\u96A2\u96D3\u9705\u9708\u9702\u975A\u978A\u978E\u9788\u97D0\u97CF\u981E\u981D\u9826\u9829\u9828\u9820\u981B\u9827\u98B2\u9908\u98FA\u9911\u9914\u9916\u9917\u9915\u99DC\u99CD\u99CF\u99D3\u99D4\u99CE\u99C9\u99D6\u99D8\u99CB\u99D7\u99CC\u9AB3\u9AEC\u9AEB\u9AF3\u9AF2\u9AF1\u9B46\u9B43\u9B67\u9B74\u9B71\u9B66\u9B76\u9B75\u9B70\u9B68\u9B64\u9B6C\u9CFC\u9CFA\u9CFD\u9CFF\u9CF7\u9D07\u9D00\u9CF9\u9CFB\u9D08\u9D05\u9D04\u9E83\u9ED3\u9F0F\u9F10\u511C\u5113\u5117\u511A\u5111\u51DE\u5334\u53E1\u5670\u5660\u566E"],["e940","\u5673\u5666\u5663\u566D\u5672\u565E\u5677\u571C\u571B\u58C8\u58BD\u58C9\u58BF\u58BA\u58C2\u58BC\u58C6\u5B17\u5B19\u5B1B\u5B21\u5B14\u5B13\u5B10\u5B16\u5B28\u5B1A\u5B20\u5B1E\u5BEF\u5DAC\u5DB1\u5DA9\u5DA7\u5DB5\u5DB0\u5DAE\u5DAA\u5DA8\u5DB2\u5DAD\u5DAF\u5DB4\u5E67\u5E68\u5E66\u5E6F\u5EE9\u5EE7\u5EE6\u5EE8\u5EE5\u5F4B\u5FBC\u619D\u61A8\u6196\u61C5\u61B4\u61C6\u61C1\u61CC\u61BA"],["e9a1","\u61BF\u61B8\u618C\u64D7\u64D6\u64D0\u64CF\u64C9\u64BD\u6489\u64C3\u64DB\u64F3\u64D9\u6533\u657F\u657C\u65A2\u66C8\u66BE\u66C0\u66CA\u66CB\u66CF\u66BD\u66BB\u66BA\u66CC\u6723\u6A34\u6A66\u6A49\u6A67\u6A32\u6A68\u6A3E\u6A5D\u6A6D\u6A76\u6A5B\u6A51\u6A28\u6A5A\u6A3B\u6A3F\u6A41\u6A6A\u6A64\u6A50\u6A4F\u6A54\u6A6F\u6A69\u6A60\u6A3C\u6A5E\u6A56\u6A55\u6A4D\u6A4E\u6A46\u6B55\u6B54\u6B56\u6BA7\u6BAA\u6BAB\u6BC8\u6BC7\u6C04\u6C03\u6C06\u6FAD\u6FCB\u6FA3\u6FC7\u6FBC\u6FCE\u6FC8\u6F5E\u6FC4\u6FBD\u6F9E\u6FCA\u6FA8\u7004\u6FA5\u6FAE\u6FBA\u6FAC\u6FAA\u6FCF\u6FBF\u6FB8"],["ea40","\u6FA2\u6FC9\u6FAB\u6FCD\u6FAF\u6FB2\u6FB0\u71C5\u71C2\u71BF\u71B8\u71D6\u71C0\u71C1\u71CB\u71D4\u71CA\u71C7\u71CF\u71BD\u71D8\u71BC\u71C6\u71DA\u71DB\u729D\u729E\u7369\u7366\u7367\u736C\u7365\u736B\u736A\u747F\u749A\u74A0\u7494\u7492\u7495\u74A1\u750B\u7580\u762F\u762D\u7631\u763D\u7633\u763C\u7635\u7632\u7630\u76BB\u76E6\u779A\u779D\u77A1\u779C\u779B\u77A2\u77A3\u7795\u7799"],["eaa1","\u7797\u78DD\u78E9\u78E5\u78EA\u78DE\u78E3\u78DB\u78E1\u78E2\u78ED\u78DF\u78E0\u79A4\u7A44\u7A48\u7A47\u7AB6\u7AB8\u7AB5\u7AB1\u7AB7\u7BDE\u7BE3\u7BE7\u7BDD\u7BD5\u7BE5\u7BDA\u7BE8\u7BF9\u7BD4\u7BEA\u7BE2\u7BDC\u7BEB\u7BD8\u7BDF\u7CD2\u7CD4\u7CD7\u7CD0\u7CD1\u7E12\u7E21\u7E17\u7E0C\u7E1F\u7E20\u7E13\u7E0E\u7E1C\u7E15\u7E1A\u7E22\u7E0B\u7E0F\u7E16\u7E0D\u7E14\u7E25\u7E24\u7F43\u7F7B\u7F7C\u7F7A\u7FB1\u7FEF\u802A\u8029\u806C\u81B1\u81A6\u81AE\u81B9\u81B5\u81AB\u81B0\u81AC\u81B4\u81B2\u81B7\u81A7\u81F2\u8255\u8256\u8257\u8556\u8545\u856B\u854D\u8553\u8561\u8558"],["eb40","\u8540\u8546\u8564\u8541\u8562\u8544\u8551\u8547\u8563\u853E\u855B\u8571\u854E\u856E\u8575\u8555\u8567\u8560\u858C\u8566\u855D\u8554\u8565\u856C\u8663\u8665\u8664\u879B\u878F\u8797\u8793\u8792\u8788\u8781\u8796\u8798\u8779\u8787\u87A3\u8785\u8790\u8791\u879D\u8784\u8794\u879C\u879A\u8789\u891E\u8926\u8930\u892D\u892E\u8927\u8931\u8922\u8929\u8923\u892F\u892C\u891F\u89F1\u8AE0"],["eba1","\u8AE2\u8AF2\u8AF4\u8AF5\u8ADD\u8B14\u8AE4\u8ADF\u8AF0\u8AC8\u8ADE\u8AE1\u8AE8\u8AFF\u8AEF\u8AFB\u8C91\u8C92\u8C90\u8CF5\u8CEE\u8CF1\u8CF0\u8CF3\u8D6C\u8D6E\u8DA5\u8DA7\u8E33\u8E3E\u8E38\u8E40\u8E45\u8E36\u8E3C\u8E3D\u8E41\u8E30\u8E3F\u8EBD\u8F36\u8F2E\u8F35\u8F32\u8F39\u8F37\u8F34\u9076\u9079\u907B\u9086\u90FA\u9133\u9135\u9136\u9193\u9190\u9191\u918D\u918F\u9327\u931E\u9308\u931F\u9306\u930F\u937A\u9338\u933C\u931B\u9323\u9312\u9301\u9346\u932D\u930E\u930D\u92CB\u931D\u92FA\u9325\u9313\u92F9\u92F7\u9334\u9302\u9324\u92FF\u9329\u9339\u9335\u932A\u9314\u930C"],["ec40","\u930B\u92FE\u9309\u9300\u92FB\u9316\u95BC\u95CD\u95BE\u95B9\u95BA\u95B6\u95BF\u95B5\u95BD\u96A9\u96D4\u970B\u9712\u9710\u9799\u9797\u9794\u97F0\u97F8\u9835\u982F\u9832\u9924\u991F\u9927\u9929\u999E\u99EE\u99EC\u99E5\u99E4\u99F0\u99E3\u99EA\u99E9\u99E7\u9AB9\u9ABF\u9AB4\u9ABB\u9AF6\u9AFA\u9AF9\u9AF7\u9B33\u9B80\u9B85\u9B87\u9B7C\u9B7E\u9B7B\u9B82\u9B93\u9B92\u9B90\u9B7A\u9B95"],["eca1","\u9B7D\u9B88\u9D25\u9D17\u9D20\u9D1E\u9D14\u9D29\u9D1D\u9D18\u9D22\u9D10\u9D19\u9D1F\u9E88\u9E86\u9E87\u9EAE\u9EAD\u9ED5\u9ED6\u9EFA\u9F12\u9F3D\u5126\u5125\u5122\u5124\u5120\u5129\u52F4\u5693\u568C\u568D\u5686\u5684\u5683\u567E\u5682\u567F\u5681\u58D6\u58D4\u58CF\u58D2\u5B2D\u5B25\u5B32\u5B23\u5B2C\u5B27\u5B26\u5B2F\u5B2E\u5B7B\u5BF1\u5BF2\u5DB7\u5E6C\u5E6A\u5FBE\u5FBB\u61C3\u61B5\u61BC\u61E7\u61E0\u61E5\u61E4\u61E8\u61DE\u64EF\u64E9\u64E3\u64EB\u64E4\u64E8\u6581\u6580\u65B6\u65DA\u66D2\u6A8D\u6A96\u6A81\u6AA5\u6A89\u6A9F\u6A9B\u6AA1\u6A9E\u6A87\u6A93\u6A8E"],["ed40","\u6A95\u6A83\u6AA8\u6AA4\u6A91\u6A7F\u6AA6\u6A9A\u6A85\u6A8C\u6A92\u6B5B\u6BAD\u6C09\u6FCC\u6FA9\u6FF4\u6FD4\u6FE3\u6FDC\u6FED\u6FE7\u6FE6\u6FDE\u6FF2\u6FDD\u6FE2\u6FE8\u71E1\u71F1\u71E8\u71F2\u71E4\u71F0\u71E2\u7373\u736E\u736F\u7497\u74B2\u74AB\u7490\u74AA\u74AD\u74B1\u74A5\u74AF\u7510\u7511\u7512\u750F\u7584\u7643\u7648\u7649\u7647\u76A4\u76E9\u77B5\u77AB\u77B2\u77B7\u77B6"],["eda1","\u77B4\u77B1\u77A8\u77F0\u78F3\u78FD\u7902\u78FB\u78FC\u78F2\u7905\u78F9\u78FE\u7904\u79AB\u79A8\u7A5C\u7A5B\u7A56\u7A58\u7A54\u7A5A\u7ABE\u7AC0\u7AC1\u7C05\u7C0F\u7BF2\u7C00\u7BFF\u7BFB\u7C0E\u7BF4\u7C0B\u7BF3\u7C02\u7C09\u7C03\u7C01\u7BF8\u7BFD\u7C06\u7BF0\u7BF1\u7C10\u7C0A\u7CE8\u7E2D\u7E3C\u7E42\u7E33\u9848\u7E38\u7E2A\u7E49\u7E40\u7E47\u7E29\u7E4C\u7E30\u7E3B\u7E36\u7E44\u7E3A\u7F45\u7F7F\u7F7E\u7F7D\u7FF4\u7FF2\u802C\u81BB\u81C4\u81CC\u81CA\u81C5\u81C7\u81BC\u81E9\u825B\u825A\u825C\u8583\u8580\u858F\u85A7\u8595\u85A0\u858B\u85A3\u857B\u85A4\u859A\u859E"],["ee40","\u8577\u857C\u8589\u85A1\u857A\u8578\u8557\u858E\u8596\u8586\u858D\u8599\u859D\u8581\u85A2\u8582\u8588\u8585\u8579\u8576\u8598\u8590\u859F\u8668\u87BE\u87AA\u87AD\u87C5\u87B0\u87AC\u87B9\u87B5\u87BC\u87AE\u87C9\u87C3\u87C2\u87CC\u87B7\u87AF\u87C4\u87CA\u87B4\u87B6\u87BF\u87B8\u87BD\u87DE\u87B2\u8935\u8933\u893C\u893E\u8941\u8952\u8937\u8942\u89AD\u89AF\u89AE\u89F2\u89F3\u8B1E"],["eea1","\u8B18\u8B16\u8B11\u8B05\u8B0B\u8B22\u8B0F\u8B12\u8B15\u8B07\u8B0D\u8B08\u8B06\u8B1C\u8B13\u8B1A\u8C4F\u8C70\u8C72\u8C71\u8C6F\u8C95\u8C94\u8CF9\u8D6F\u8E4E\u8E4D\u8E53\u8E50\u8E4C\u8E47\u8F43\u8F40\u9085\u907E\u9138\u919A\u91A2\u919B\u9199\u919F\u91A1\u919D\u91A0\u93A1\u9383\u93AF\u9364\u9356\u9347\u937C\u9358\u935C\u9376\u9349\u9350\u9351\u9360\u936D\u938F\u934C\u936A\u9379\u9357\u9355\u9352\u934F\u9371\u9377\u937B\u9361\u935E\u9363\u9367\u9380\u934E\u9359\u95C7\u95C0\u95C9\u95C3\u95C5\u95B7\u96AE\u96B0\u96AC\u9720\u971F\u9718\u971D\u9719\u979A\u97A1\u979C"],["ef40","\u979E\u979D\u97D5\u97D4\u97F1\u9841\u9844\u984A\u9849\u9845\u9843\u9925\u992B\u992C\u992A\u9933\u9932\u992F\u992D\u9931\u9930\u9998\u99A3\u99A1\u9A02\u99FA\u99F4\u99F7\u99F9\u99F8\u99F6\u99FB\u99FD\u99FE\u99FC\u9A03\u9ABE\u9AFE\u9AFD\u9B01\u9AFC\u9B48\u9B9A\u9BA8\u9B9E\u9B9B\u9BA6\u9BA1\u9BA5\u9BA4\u9B86\u9BA2\u9BA0\u9BAF\u9D33\u9D41\u9D67\u9D36\u9D2E\u9D2F\u9D31\u9D38\u9D30"],["efa1","\u9D45\u9D42\u9D43\u9D3E\u9D37\u9D40\u9D3D\u7FF5\u9D2D\u9E8A\u9E89\u9E8D\u9EB0\u9EC8\u9EDA\u9EFB\u9EFF\u9F24\u9F23\u9F22\u9F54\u9FA0\u5131\u512D\u512E\u5698\u569C\u5697\u569A\u569D\u5699\u5970\u5B3C\u5C69\u5C6A\u5DC0\u5E6D\u5E6E\u61D8\u61DF\u61ED\u61EE\u61F1\u61EA\u61F0\u61EB\u61D6\u61E9\u64FF\u6504\u64FD\u64F8\u6501\u6503\u64FC\u6594\u65DB\u66DA\u66DB\u66D8\u6AC5\u6AB9\u6ABD\u6AE1\u6AC6\u6ABA\u6AB6\u6AB7\u6AC7\u6AB4\u6AAD\u6B5E\u6BC9\u6C0B\u7007\u700C\u700D\u7001\u7005\u7014\u700E\u6FFF\u7000\u6FFB\u7026\u6FFC\u6FF7\u700A\u7201\u71FF\u71F9\u7203\u71FD\u7376"],["f040","\u74B8\u74C0\u74B5\u74C1\u74BE\u74B6\u74BB\u74C2\u7514\u7513\u765C\u7664\u7659\u7650\u7653\u7657\u765A\u76A6\u76BD\u76EC\u77C2\u77BA\u78FF\u790C\u7913\u7914\u7909\u7910\u7912\u7911\u79AD\u79AC\u7A5F\u7C1C\u7C29\u7C19\u7C20\u7C1F\u7C2D\u7C1D\u7C26\u7C28\u7C22\u7C25\u7C30\u7E5C\u7E50\u7E56\u7E63\u7E58\u7E62\u7E5F\u7E51\u7E60\u7E57\u7E53\u7FB5\u7FB3\u7FF7\u7FF8\u8075\u81D1\u81D2"],["f0a1","\u81D0\u825F\u825E\u85B4\u85C6\u85C0\u85C3\u85C2\u85B3\u85B5\u85BD\u85C7\u85C4\u85BF\u85CB\u85CE\u85C8\u85C5\u85B1\u85B6\u85D2\u8624\u85B8\u85B7\u85BE\u8669\u87E7\u87E6\u87E2\u87DB\u87EB\u87EA\u87E5\u87DF\u87F3\u87E4\u87D4\u87DC\u87D3\u87ED\u87D8\u87E3\u87A4\u87D7\u87D9\u8801\u87F4\u87E8\u87DD\u8953\u894B\u894F\u894C\u8946\u8950\u8951\u8949\u8B2A\u8B27\u8B23\u8B33\u8B30\u8B35\u8B47\u8B2F\u8B3C\u8B3E\u8B31\u8B25\u8B37\u8B26\u8B36\u8B2E\u8B24\u8B3B\u8B3D\u8B3A\u8C42\u8C75\u8C99\u8C98\u8C97\u8CFE\u8D04\u8D02\u8D00\u8E5C\u8E62\u8E60\u8E57\u8E56\u8E5E\u8E65\u8E67"],["f140","\u8E5B\u8E5A\u8E61\u8E5D\u8E69\u8E54\u8F46\u8F47\u8F48\u8F4B\u9128\u913A\u913B\u913E\u91A8\u91A5\u91A7\u91AF\u91AA\u93B5\u938C\u9392\u93B7\u939B\u939D\u9389\u93A7\u938E\u93AA\u939E\u93A6\u9395\u9388\u9399\u939F\u938D\u93B1\u9391\u93B2\u93A4\u93A8\u93B4\u93A3\u93A5\u95D2\u95D3\u95D1\u96B3\u96D7\u96DA\u5DC2\u96DF\u96D8\u96DD\u9723\u9722\u9725\u97AC\u97AE\u97A8\u97AB\u97A4\u97AA"],["f1a1","\u97A2\u97A5\u97D7\u97D9\u97D6\u97D8\u97FA\u9850\u9851\u9852\u98B8\u9941\u993C\u993A\u9A0F\u9A0B\u9A09\u9A0D\u9A04\u9A11\u9A0A\u9A05\u9A07\u9A06\u9AC0\u9ADC\u9B08\u9B04\u9B05\u9B29\u9B35\u9B4A\u9B4C\u9B4B\u9BC7\u9BC6\u9BC3\u9BBF\u9BC1\u9BB5\u9BB8\u9BD3\u9BB6\u9BC4\u9BB9\u9BBD\u9D5C\u9D53\u9D4F\u9D4A\u9D5B\u9D4B\u9D59\u9D56\u9D4C\u9D57\u9D52\u9D54\u9D5F\u9D58\u9D5A\u9E8E\u9E8C\u9EDF\u9F01\u9F00\u9F16\u9F25\u9F2B\u9F2A\u9F29\u9F28\u9F4C\u9F55\u5134\u5135\u5296\u52F7\u53B4\u56AB\u56AD\u56A6\u56A7\u56AA\u56AC\u58DA\u58DD\u58DB\u5912\u5B3D\u5B3E\u5B3F\u5DC3\u5E70"],["f240","\u5FBF\u61FB\u6507\u6510\u650D\u6509\u650C\u650E\u6584\u65DE\u65DD\u66DE\u6AE7\u6AE0\u6ACC\u6AD1\u6AD9\u6ACB\u6ADF\u6ADC\u6AD0\u6AEB\u6ACF\u6ACD\u6ADE\u6B60\u6BB0\u6C0C\u7019\u7027\u7020\u7016\u702B\u7021\u7022\u7023\u7029\u7017\u7024\u701C\u702A\u720C\u720A\u7207\u7202\u7205\u72A5\u72A6\u72A4\u72A3\u72A1\u74CB\u74C5\u74B7\u74C3\u7516\u7660\u77C9\u77CA\u77C4\u77F1\u791D\u791B"],["f2a1","\u7921\u791C\u7917\u791E\u79B0\u7A67\u7A68\u7C33\u7C3C\u7C39\u7C2C\u7C3B\u7CEC\u7CEA\u7E76\u7E75\u7E78\u7E70\u7E77\u7E6F\u7E7A\u7E72\u7E74\u7E68\u7F4B\u7F4A\u7F83\u7F86\u7FB7\u7FFD\u7FFE\u8078\u81D7\u81D5\u8264\u8261\u8263\u85EB\u85F1\u85ED\u85D9\u85E1\u85E8\u85DA\u85D7\u85EC\u85F2\u85F8\u85D8\u85DF\u85E3\u85DC\u85D1\u85F0\u85E6\u85EF\u85DE\u85E2\u8800\u87FA\u8803\u87F6\u87F7\u8809\u880C\u880B\u8806\u87FC\u8808\u87FF\u880A\u8802\u8962\u895A\u895B\u8957\u8961\u895C\u8958\u895D\u8959\u8988\u89B7\u89B6\u89F6\u8B50\u8B48\u8B4A\u8B40\u8B53\u8B56\u8B54\u8B4B\u8B55"],["f340","\u8B51\u8B42\u8B52\u8B57\u8C43\u8C77\u8C76\u8C9A\u8D06\u8D07\u8D09\u8DAC\u8DAA\u8DAD\u8DAB\u8E6D\u8E78\u8E73\u8E6A\u8E6F\u8E7B\u8EC2\u8F52\u8F51\u8F4F\u8F50\u8F53\u8FB4\u9140\u913F\u91B0\u91AD\u93DE\u93C7\u93CF\u93C2\u93DA\u93D0\u93F9\u93EC\u93CC\u93D9\u93A9\u93E6\u93CA\u93D4\u93EE\u93E3\u93D5\u93C4\u93CE\u93C0\u93D2\u93E7\u957D\u95DA\u95DB\u96E1\u9729\u972B\u972C\u9728\u9726"],["f3a1","\u97B3\u97B7\u97B6\u97DD\u97DE\u97DF\u985C\u9859\u985D\u9857\u98BF\u98BD\u98BB\u98BE\u9948\u9947\u9943\u99A6\u99A7\u9A1A\u9A15\u9A25\u9A1D\u9A24\u9A1B\u9A22\u9A20\u9A27\u9A23\u9A1E\u9A1C\u9A14\u9AC2\u9B0B\u9B0A\u9B0E\u9B0C\u9B37\u9BEA\u9BEB\u9BE0\u9BDE\u9BE4\u9BE6\u9BE2\u9BF0\u9BD4\u9BD7\u9BEC\u9BDC\u9BD9\u9BE5\u9BD5\u9BE1\u9BDA\u9D77\u9D81\u9D8A\u9D84\u9D88\u9D71\u9D80\u9D78\u9D86\u9D8B\u9D8C\u9D7D\u9D6B\u9D74\u9D75\u9D70\u9D69\u9D85\u9D73\u9D7B\u9D82\u9D6F\u9D79\u9D7F\u9D87\u9D68\u9E94\u9E91\u9EC0\u9EFC\u9F2D\u9F40\u9F41\u9F4D\u9F56\u9F57\u9F58\u5337\u56B2"],["f440","\u56B5\u56B3\u58E3\u5B45\u5DC6\u5DC7\u5EEE\u5EEF\u5FC0\u5FC1\u61F9\u6517\u6516\u6515\u6513\u65DF\u66E8\u66E3\u66E4\u6AF3\u6AF0\u6AEA\u6AE8\u6AF9\u6AF1\u6AEE\u6AEF\u703C\u7035\u702F\u7037\u7034\u7031\u7042\u7038\u703F\u703A\u7039\u7040\u703B\u7033\u7041\u7213\u7214\u72A8\u737D\u737C\u74BA\u76AB\u76AA\u76BE\u76ED\u77CC\u77CE\u77CF\u77CD\u77F2\u7925\u7923\u7927\u7928\u7924\u7929"],["f4a1","\u79B2\u7A6E\u7A6C\u7A6D\u7AF7\u7C49\u7C48\u7C4A\u7C47\u7C45\u7CEE\u7E7B\u7E7E\u7E81\u7E80\u7FBA\u7FFF\u8079\u81DB\u81D9\u820B\u8268\u8269\u8622\u85FF\u8601\u85FE\u861B\u8600\u85F6\u8604\u8609\u8605\u860C\u85FD\u8819\u8810\u8811\u8817\u8813\u8816\u8963\u8966\u89B9\u89F7\u8B60\u8B6A\u8B5D\u8B68\u8B63\u8B65\u8B67\u8B6D\u8DAE\u8E86\u8E88\u8E84\u8F59\u8F56\u8F57\u8F55\u8F58\u8F5A\u908D\u9143\u9141\u91B7\u91B5\u91B2\u91B3\u940B\u9413\u93FB\u9420\u940F\u9414\u93FE\u9415\u9410\u9428\u9419\u940D\u93F5\u9400\u93F7\u9407\u940E\u9416\u9412\u93FA\u9409\u93F8\u940A\u93FF"],["f540","\u93FC\u940C\u93F6\u9411\u9406\u95DE\u95E0\u95DF\u972E\u972F\u97B9\u97BB\u97FD\u97FE\u9860\u9862\u9863\u985F\u98C1\u98C2\u9950\u994E\u9959\u994C\u994B\u9953\u9A32\u9A34\u9A31\u9A2C\u9A2A\u9A36\u9A29\u9A2E\u9A38\u9A2D\u9AC7\u9ACA\u9AC6\u9B10\u9B12\u9B11\u9C0B\u9C08\u9BF7\u9C05\u9C12\u9BF8\u9C40\u9C07\u9C0E\u9C06\u9C17\u9C14\u9C09\u9D9F\u9D99\u9DA4\u9D9D\u9D92\u9D98\u9D90\u9D9B"],["f5a1","\u9DA0\u9D94\u9D9C\u9DAA\u9D97\u9DA1\u9D9A\u9DA2\u9DA8\u9D9E\u9DA3\u9DBF\u9DA9\u9D96\u9DA6\u9DA7\u9E99\u9E9B\u9E9A\u9EE5\u9EE4\u9EE7\u9EE6\u9F30\u9F2E\u9F5B\u9F60\u9F5E\u9F5D\u9F59\u9F91\u513A\u5139\u5298\u5297\u56C3\u56BD\u56BE\u5B48\u5B47\u5DCB\u5DCF\u5EF1\u61FD\u651B\u6B02\u6AFC\u6B03\u6AF8\u6B00\u7043\u7044\u704A\u7048\u7049\u7045\u7046\u721D\u721A\u7219\u737E\u7517\u766A\u77D0\u792D\u7931\u792F\u7C54\u7C53\u7CF2\u7E8A\u7E87\u7E88\u7E8B\u7E86\u7E8D\u7F4D\u7FBB\u8030\u81DD\u8618\u862A\u8626\u861F\u8623\u861C\u8619\u8627\u862E\u8621\u8620\u8629\u861E\u8625"],["f640","\u8829\u881D\u881B\u8820\u8824\u881C\u882B\u884A\u896D\u8969\u896E\u896B\u89FA\u8B79\u8B78\u8B45\u8B7A\u8B7B\u8D10\u8D14\u8DAF\u8E8E\u8E8C\u8F5E\u8F5B\u8F5D\u9146\u9144\u9145\u91B9\u943F\u943B\u9436\u9429\u943D\u943C\u9430\u9439\u942A\u9437\u942C\u9440\u9431\u95E5\u95E4\u95E3\u9735\u973A\u97BF\u97E1\u9864\u98C9\u98C6\u98C0\u9958\u9956\u9A39\u9A3D\u9A46\u9A44\u9A42\u9A41\u9A3A"],["f6a1","\u9A3F\u9ACD\u9B15\u9B17\u9B18\u9B16\u9B3A\u9B52\u9C2B\u9C1D\u9C1C\u9C2C\u9C23\u9C28\u9C29\u9C24\u9C21\u9DB7\u9DB6\u9DBC\u9DC1\u9DC7\u9DCA\u9DCF\u9DBE\u9DC5\u9DC3\u9DBB\u9DB5\u9DCE\u9DB9\u9DBA\u9DAC\u9DC8\u9DB1\u9DAD\u9DCC\u9DB3\u9DCD\u9DB2\u9E7A\u9E9C\u9EEB\u9EEE\u9EED\u9F1B\u9F18\u9F1A\u9F31\u9F4E\u9F65\u9F64\u9F92\u4EB9\u56C6\u56C5\u56CB\u5971\u5B4B\u5B4C\u5DD5\u5DD1\u5EF2\u6521\u6520\u6526\u6522\u6B0B\u6B08\u6B09\u6C0D\u7055\u7056\u7057\u7052\u721E\u721F\u72A9\u737F\u74D8\u74D5\u74D9\u74D7\u766D\u76AD\u7935\u79B4\u7A70\u7A71\u7C57\u7C5C\u7C59\u7C5B\u7C5A"],["f740","\u7CF4\u7CF1\u7E91\u7F4F\u7F87\u81DE\u826B\u8634\u8635\u8633\u862C\u8632\u8636\u882C\u8828\u8826\u882A\u8825\u8971\u89BF\u89BE\u89FB\u8B7E\u8B84\u8B82\u8B86\u8B85\u8B7F\u8D15\u8E95\u8E94\u8E9A\u8E92\u8E90\u8E96\u8E97\u8F60\u8F62\u9147\u944C\u9450\u944A\u944B\u944F\u9447\u9445\u9448\u9449\u9446\u973F\u97E3\u986A\u9869\u98CB\u9954\u995B\u9A4E\u9A53\u9A54\u9A4C\u9A4F\u9A48\u9A4A"],["f7a1","\u9A49\u9A52\u9A50\u9AD0\u9B19\u9B2B\u9B3B\u9B56\u9B55\u9C46\u9C48\u9C3F\u9C44\u9C39\u9C33\u9C41\u9C3C\u9C37\u9C34\u9C32\u9C3D\u9C36\u9DDB\u9DD2\u9DDE\u9DDA\u9DCB\u9DD0\u9DDC\u9DD1\u9DDF\u9DE9\u9DD9\u9DD8\u9DD6\u9DF5\u9DD5\u9DDD\u9EB6\u9EF0\u9F35\u9F33\u9F32\u9F42\u9F6B\u9F95\u9FA2\u513D\u5299\u58E8\u58E7\u5972\u5B4D\u5DD8\u882F\u5F4F\u6201\u6203\u6204\u6529\u6525\u6596\u66EB\u6B11\u6B12\u6B0F\u6BCA\u705B\u705A\u7222\u7382\u7381\u7383\u7670\u77D4\u7C67\u7C66\u7E95\u826C\u863A\u8640\u8639\u863C\u8631\u863B\u863E\u8830\u8832\u882E\u8833\u8976\u8974\u8973\u89FE"],["f840","\u8B8C\u8B8E\u8B8B\u8B88\u8C45\u8D19\u8E98\u8F64\u8F63\u91BC\u9462\u9455\u945D\u9457\u945E\u97C4\u97C5\u9800\u9A56\u9A59\u9B1E\u9B1F\u9B20\u9C52\u9C58\u9C50\u9C4A\u9C4D\u9C4B\u9C55\u9C59\u9C4C\u9C4E\u9DFB\u9DF7\u9DEF\u9DE3\u9DEB\u9DF8\u9DE4\u9DF6\u9DE1\u9DEE\u9DE6\u9DF2\u9DF0\u9DE2\u9DEC\u9DF4\u9DF3\u9DE8\u9DED\u9EC2\u9ED0\u9EF2\u9EF3\u9F06\u9F1C\u9F38\u9F37\u9F36\u9F43\u9F4F"],["f8a1","\u9F71\u9F70\u9F6E\u9F6F\u56D3\u56CD\u5B4E\u5C6D\u652D\u66ED\u66EE\u6B13\u705F\u7061\u705D\u7060\u7223\u74DB\u74E5\u77D5\u7938\u79B7\u79B6\u7C6A\u7E97\u7F89\u826D\u8643\u8838\u8837\u8835\u884B\u8B94\u8B95\u8E9E\u8E9F\u8EA0\u8E9D\u91BE\u91BD\u91C2\u946B\u9468\u9469\u96E5\u9746\u9743\u9747\u97C7\u97E5\u9A5E\u9AD5\u9B59\u9C63\u9C67\u9C66\u9C62\u9C5E\u9C60\u9E02\u9DFE\u9E07\u9E03\u9E06\u9E05\u9E00\u9E01\u9E09\u9DFF\u9DFD\u9E04\u9EA0\u9F1E\u9F46\u9F74\u9F75\u9F76\u56D4\u652E\u65B8\u6B18\u6B19\u6B17\u6B1A\u7062\u7226\u72AA\u77D8\u77D9\u7939\u7C69\u7C6B\u7CF6\u7E9A"],["f940","\u7E98\u7E9B\u7E99\u81E0\u81E1\u8646\u8647\u8648\u8979\u897A\u897C\u897B\u89FF\u8B98\u8B99\u8EA5\u8EA4\u8EA3\u946E\u946D\u946F\u9471\u9473\u9749\u9872\u995F\u9C68\u9C6E\u9C6D\u9E0B\u9E0D\u9E10\u9E0F\u9E12\u9E11\u9EA1\u9EF5\u9F09\u9F47\u9F78\u9F7B\u9F7A\u9F79\u571E\u7066\u7C6F\u883C\u8DB2\u8EA6\u91C3\u9474\u9478\u9476\u9475\u9A60\u9C74\u9C73\u9C71\u9C75\u9E14\u9E13\u9EF6\u9F0A"],["f9a1","\u9FA4\u7068\u7065\u7CF7\u866A\u883E\u883D\u883F\u8B9E\u8C9C\u8EA9\u8EC9\u974B\u9873\u9874\u98CC\u9961\u99AB\u9A64\u9A66\u9A67\u9B24\u9E15\u9E17\u9F48\u6207\u6B1E\u7227\u864C\u8EA8\u9482\u9480\u9481\u9A69\u9A68\u9B2E\u9E19\u7229\u864B\u8B9F\u9483\u9C79\u9EB7\u7675\u9A6B\u9C7A\u9E1D\u7069\u706A\u9EA4\u9F7E\u9F49\u9F98\u7881\u92B9\u88CF\u58BB\u6052\u7CA7\u5AFA\u2554\u2566\u2557\u2560\u256C\u2563\u255A\u2569\u255D\u2552\u2564\u2555\u255E\u256A\u2561\u2558\u2567\u255B\u2553\u2565\u2556\u255F\u256B\u2562\u2559\u2568\u255C\u2551\u2550\u256D\u256E\u2570\u256F\u2593"]]});var $J=b((Hut,T4e)=>{T4e.exports=[["8740","\u43F0\u4C32\u4603\u45A6\u4578\u{27267}\u4D77\u45B3\u{27CB1}\u4CE2\u{27CC5}\u3B95\u4736\u4744\u4C47\u4C40\u{242BF}\u{23617}\u{27352}\u{26E8B}\u{270D2}\u4C57\u{2A351}\u474F\u45DA\u4C85\u{27C6C}\u4D07\u4AA4\u46A1\u{26B23}\u7225\u{25A54}\u{21A63}\u{23E06}\u{23F61}\u664D\u56FB"],["8767","\u7D95\u591D\u{28BB9}\u3DF4\u9734\u{27BEF}\u5BDB\u{21D5E}\u5AA4\u3625\u{29EB0}\u5AD1\u5BB7\u5CFC\u676E\u8593\u{29945}\u7461\u749D\u3875\u{21D53}\u{2369E}\u{26021}\u3EEC"],["87a1","\u{258DE}\u3AF5\u7AFC\u9F97\u{24161}\u{2890D}\u{231EA}\u{20A8A}\u{2325E}\u430A\u8484\u9F96\u942F\u4930\u8613\u5896\u974A\u9218\u79D0\u7A32\u6660\u6A29\u889D\u744C\u7BC5\u6782\u7A2C\u524F\u9046\u34E6\u73C4\u{25DB9}\u74C6\u9FC7\u57B3\u492F\u544C\u4131\u{2368E}\u5818\u7A72\u{27B65}\u8B8F\u46AE\u{26E88}\u4181\u{25D99}\u7BAE\u{224BC}\u9FC8\u{224C1}\u{224C9}\u{224CC}\u9FC9\u8504\u{235BB}\u40B4\u9FCA\u44E1\u{2ADFF}\u62C1\u706E\u9FCB"],["8840","\u31C0",4,"\u{2010C}\u31C5\u{200D1}\u{200CD}\u31C6\u31C7\u{200CB}\u{21FE8}\u31C8\u{200CA}\u31C9\u31CA\u31CB\u31CC\u{2010E}\u31CD\u31CE\u0100\xC1\u01CD\xC0\u0112\xC9\u011A\xC8\u014C\xD3\u01D1\xD2\u0FFF\xCA\u0304\u1EBE\u0FFF\xCA\u030C\u1EC0\xCA\u0101\xE1\u01CE\xE0\u0251\u0113\xE9\u011B\xE8\u012B\xED\u01D0\xEC\u014D\xF3\u01D2\xF2\u016B\xFA\u01D4\xF9\u01D6\u01D8\u01DA"],["88a1","\u01DC\xFC\u0FFF\xEA\u0304\u1EBF\u0FFF\xEA\u030C\u1EC1\xEA\u0261\u23DA\u23DB"],["8940","\u{2A3A9}\u{21145}"],["8943","\u650A"],["8946","\u4E3D\u6EDD\u9D4E\u91DF"],["894c","\u{27735}\u6491\u4F1A\u4F28\u4FA8\u5156\u5174\u519C\u51E4\u52A1\u52A8\u533B\u534E\u53D1\u53D8\u56E2\u58F0\u5904\u5907\u5932\u5934\u5B66\u5B9E\u5B9F\u5C9A\u5E86\u603B\u6589\u67FE\u6804\u6865\u6D4E\u70BC\u7535\u7EA4\u7EAC\u7EBA\u7EC7\u7ECF\u7EDF\u7F06\u7F37\u827A\u82CF\u836F\u89C6\u8BBE\u8BE2\u8F66\u8F67\u8F6E"],["89a1","\u7411\u7CFC\u7DCD\u6946\u7AC9\u5227"],["89ab","\u918C\u78B8\u915E\u80BC"],["89b0","\u8D0B\u80F6\u{209E7}"],["89b5","\u809F\u9EC7\u4CCD\u9DC9\u9E0C\u4C3E\u{29DF6}\u{2700E}\u9E0A\u{2A133}\u35C1"],["89c1","\u6E9A\u823E\u7519"],["89c5","\u4911\u9A6C\u9A8F\u9F99\u7987\u{2846C}\u{21DCA}\u{205D0}\u{22AE6}\u4E24\u4E81\u4E80\u4E87\u4EBF\u4EEB\u4F37\u344C\u4FBD\u3E48\u5003\u5088\u347D\u3493\u34A5\u5186\u5905\u51DB\u51FC\u5205\u4E89\u5279\u5290\u5327\u35C7\u53A9\u3551\u53B0\u3553\u53C2\u5423\u356D\u3572\u3681\u5493\u54A3\u54B4\u54B9\u54D0\u54EF\u5518\u5523\u5528\u3598\u553F\u35A5\u35BF\u55D7\u35C5"],["8a40","\u{27D84}\u5525"],["8a43","\u{20C42}\u{20D15}\u{2512B}\u5590\u{22CC6}\u39EC\u{20341}\u8E46\u{24DB8}\u{294E5}\u4053\u{280BE}\u777A\u{22C38}\u3A34\u47D5\u{2815D}\u{269F2}\u{24DEA}\u64DD\u{20D7C}\u{20FB4}\u{20CD5}\u{210F4}\u648D\u8E7E\u{20E96}\u{20C0B}\u{20F64}\u{22CA9}\u{28256}\u{244D3}"],["8a64","\u{20D46}\u{29A4D}\u{280E9}\u47F4\u{24EA7}\u{22CC2}\u9AB2\u3A67\u{295F4}\u3FED\u3506\u{252C7}\u{297D4}\u{278C8}\u{22D44}\u9D6E\u9815"],["8a76","\u43D9\u{260A5}\u64B4\u54E3\u{22D4C}\u{22BCA}\u{21077}\u39FB\u{2106F}"],["8aa1","\u{266DA}\u{26716}\u{279A0}\u64EA\u{25052}\u{20C43}\u8E68\u{221A1}\u{28B4C}\u{20731}"],["8aac","\u480B\u{201A9}\u3FFA\u5873\u{22D8D}"],["8ab2","\u{245C8}\u{204FC}\u{26097}\u{20F4C}\u{20D96}\u5579\u40BB\u43BA"],["8abb","\u4AB4\u{22A66}\u{2109D}\u81AA\u98F5\u{20D9C}\u6379\u39FE\u{22775}\u8DC0\u56A1\u647C\u3E43"],["8ac9","\u{2A601}\u{20E09}\u{22ACF}\u{22CC9}"],["8ace","\u{210C8}\u{239C2}\u3992\u3A06\u{2829B}\u3578\u{25E49}\u{220C7}\u5652\u{20F31}\u{22CB2}\u{29720}\u34BC\u6C3D\u{24E3B}"],["8adf","\u{27574}\u{22E8B}\u{22208}\u{2A65B}\u{28CCD}\u{20E7A}\u{20C34}\u{2681C}\u7F93\u{210CF}\u{22803}\u{22939}\u35FB\u{251E3}\u{20E8C}\u{20F8D}\u{20EAA}\u3F93\u{20F30}\u{20D47}\u{2114F}\u{20E4C}"],["8af6","\u{20EAB}\u{20BA9}\u{20D48}\u{210C0}\u{2113D}\u3FF9\u{22696}\u6432\u{20FAD}"],["8b40","\u{233F4}\u{27639}\u{22BCE}\u{20D7E}\u{20D7F}\u{22C51}\u{22C55}\u3A18\u{20E98}\u{210C7}\u{20F2E}\u{2A632}\u{26B50}\u{28CD2}\u{28D99}\u{28CCA}\u95AA\u54CC\u82C4\u55B9"],["8b55","\u{29EC3}\u9C26\u9AB6\u{2775E}\u{22DEE}\u7140\u816D\u80EC\u5C1C\u{26572}\u8134\u3797\u535F\u{280BD}\u91B6\u{20EFA}\u{20E0F}\u{20E77}\u{20EFB}\u35DD\u{24DEB}\u3609\u{20CD6}\u56AF\u{227B5}\u{210C9}\u{20E10}\u{20E78}\u{21078}\u{21148}\u{28207}\u{21455}\u{20E79}\u{24E50}\u{22DA4}\u5A54\u{2101D}\u{2101E}\u{210F5}\u{210F6}\u579C\u{20E11}"],["8ba1","\u{27694}\u{282CD}\u{20FB5}\u{20E7B}\u{2517E}\u3703\u{20FB6}\u{21180}\u{252D8}\u{2A2BD}\u{249DA}\u{2183A}\u{24177}\u{2827C}\u5899\u5268\u361A\u{2573D}\u7BB2\u5B68\u4800\u4B2C\u9F27\u49E7\u9C1F\u9B8D\u{25B74}\u{2313D}\u55FB\u35F2\u5689\u4E28\u5902\u{21BC1}\u{2F878}\u9751\u{20086}\u4E5B\u4EBB\u353E\u5C23\u5F51\u5FC4\u38FA\u624C\u6535\u6B7A\u6C35\u6C3A\u706C\u722B\u4E2C\u72AD\u{248E9}\u7F52\u793B\u7CF9\u7F53\u{2626A}\u34C1"],["8bde","\u{2634B}\u8002\u8080\u{26612}\u{26951}\u535D\u8864\u89C1\u{278B2}\u8BA0\u8D1D\u9485\u9578\u957F\u95E8\u{28E0F}\u97E6\u9875\u98CE\u98DE\u9963\u{29810}\u9C7C\u9E1F\u9EC4\u6B6F\uF907\u4E37\u{20087}\u961D\u6237\u94A2"],["8c40","\u503B\u6DFE\u{29C73}\u9FA6\u3DC9\u888F\u{2414E}\u7077\u5CF5\u4B20\u{251CD}\u3559\u{25D30}\u6122\u{28A32}\u8FA7\u91F6\u7191\u6719\u73BA\u{23281}\u{2A107}\u3C8B\u{21980}\u4B10\u78E4\u7402\u51AE\u{2870F}\u4009\u6A63\u{2A2BA}\u4223\u860F\u{20A6F}\u7A2A\u{29947}\u{28AEA}\u9755\u704D\u5324\u{2207E}\u93F4\u76D9\u{289E3}\u9FA7\u77DD\u4EA3\u4FF0\u50BC\u4E2F\u4F17\u9FA8\u5434\u7D8B\u5892\u58D0\u{21DB6}\u5E92\u5E99\u5FC2\u{22712}\u658B"],["8ca1","\u{233F9}\u6919\u6A43\u{23C63}\u6CFF"],["8ca7","\u7200\u{24505}\u738C\u3EDB\u{24A13}\u5B15\u74B9\u8B83\u{25CA4}\u{25695}\u7A93\u7BEC\u7CC3\u7E6C\u82F8\u8597\u9FA9\u8890\u9FAA\u8EB9\u9FAB\u8FCF\u855F\u99E0\u9221\u9FAC\u{28DB9}\u{2143F}\u4071\u42A2\u5A1A"],["8cc9","\u9868\u676B\u4276\u573D"],["8cce","\u85D6\u{2497B}\u82BF\u{2710D}\u4C81\u{26D74}\u5D7B\u{26B15}\u{26FBE}\u9FAD\u9FAE\u5B96\u9FAF\u66E7\u7E5B\u6E57\u79CA\u3D88\u44C3\u{23256}\u{22796}\u439A\u4536"],["8ce6","\u5CD5\u{23B1A}\u8AF9\u5C78\u3D12\u{23551}\u5D78\u9FB2\u7157\u4558\u{240EC}\u{21E23}\u4C77\u3978\u344A\u{201A4}\u{26C41}\u8ACC\u4FB4\u{20239}\u59BF\u816C\u9856\u{298FA}\u5F3B"],["8d40","\u{20B9F}"],["8d42","\u{221C1}\u{2896D}\u4102\u46BB\u{29079}\u3F07\u9FB3\u{2A1B5}\u40F8\u37D6\u46F7\u{26C46}\u417C\u{286B2}\u{273FF}\u456D\u38D4\u{2549A}\u4561\u451B\u4D89\u4C7B\u4D76\u45EA\u3FC8\u{24B0F}\u3661\u44DE\u44BD\u41ED\u5D3E\u5D48\u5D56\u3DFC\u380F\u5DA4\u5DB9\u3820\u3838\u5E42\u5EBD\u5F25\u5F83\u3908\u3914\u393F\u394D\u60D7\u613D\u5CE5\u3989\u61B7\u61B9\u61CF\u39B8\u622C\u6290\u62E5\u6318\u39F8\u56B1"],["8da1","\u3A03\u63E2\u63FB\u6407\u645A\u3A4B\u64C0\u5D15\u5621\u9F9F\u3A97\u6586\u3ABD\u65FF\u6653\u3AF2\u6692\u3B22\u6716\u3B42\u67A4\u6800\u3B58\u684A\u6884\u3B72\u3B71\u3B7B\u6909\u6943\u725C\u6964\u699F\u6985\u3BBC\u69D6\u3BDD\u6A65\u6A74\u6A71\u6A82\u3BEC\u6A99\u3BF2\u6AAB\u6AB5\u6AD4\u6AF6\u6B81\u6BC1\u6BEA\u6C75\u6CAA\u3CCB\u6D02\u6D06\u6D26\u6D81\u3CEF\u6DA4\u6DB1\u6E15\u6E18\u6E29\u6E86\u{289C0}\u6EBB\u6EE2\u6EDA\u9F7F\u6EE8\u6EE9\u6F24\u6F34\u3D46\u{23F41}\u6F81\u6FBE\u3D6A\u3D75\u71B7\u5C99\u3D8A\u702C\u3D91\u7050\u7054\u706F\u707F\u7089\u{20325}\u43C1\u35F1\u{20ED8}"],["8e40","\u{23ED7}\u57BE\u{26ED3}\u713E\u{257E0}\u364E\u69A2\u{28BE9}\u5B74\u7A49\u{258E1}\u{294D9}\u7A65\u7A7D\u{259AC}\u7ABB\u7AB0\u7AC2\u7AC3\u71D1\u{2648D}\u41CA\u7ADA\u7ADD\u7AEA\u41EF\u54B2\u{25C01}\u7B0B\u7B55\u7B29\u{2530E}\u{25CFE}\u7BA2\u7B6F\u839C\u{25BB4}\u{26C7F}\u7BD0\u8421\u7B92\u7BB8\u{25D20}\u3DAD\u{25C65}\u8492\u7BFA\u7C06\u7C35\u{25CC1}\u7C44\u7C83\u{24882}\u7CA6\u667D\u{24578}\u7CC9\u7CC7\u7CE6\u7C74\u7CF3\u7CF5\u7CCE"],["8ea1","\u7E67\u451D\u{26E44}\u7D5D\u{26ED6}\u748D\u7D89\u7DAB\u7135\u7DB3\u7DD2\u{24057}\u{26029}\u7DE4\u3D13\u7DF5\u{217F9}\u7DE5\u{2836D}\u7E1D\u{26121}\u{2615A}\u7E6E\u7E92\u432B\u946C\u7E27\u7F40\u7F41\u7F47\u7936\u{262D0}\u99E1\u7F97\u{26351}\u7FA3\u{21661}\u{20068}\u455C\u{23766}\u4503\u{2833A}\u7FFA\u{26489}\u8005\u8008\u801D\u8028\u802F\u{2A087}\u{26CC3}\u803B\u803C\u8061\u{22714}\u4989\u{26626}\u{23DE3}\u{266E8}\u6725\u80A7\u{28A48}\u8107\u811A\u58B0\u{226F6}\u6C7F\u{26498}\u{24FB8}\u64E7\u{2148A}\u8218\u{2185E}\u6A53\u{24A65}\u{24A95}\u447A\u8229\u{20B0D}\u{26A52}\u{23D7E}\u4FF9\u{214FD}\u84E2\u8362\u{26B0A}\u{249A7}\u{23530}\u{21773}\u{23DF8}\u82AA\u691B\u{2F994}\u41DB"],["8f40","\u854B\u82D0\u831A\u{20E16}\u{217B4}\u36C1\u{2317D}\u{2355A}\u827B\u82E2\u8318\u{23E8B}\u{26DA3}\u{26B05}\u{26B97}\u{235CE}\u3DBF\u831D\u55EC\u8385\u450B\u{26DA5}\u83AC\u83C1\u83D3\u347E\u{26ED4}\u6A57\u855A\u3496\u{26E42}\u{22EEF}\u8458\u{25BE4}\u8471\u3DD3\u44E4\u6AA7\u844A\u{23CB5}\u7958\u84A8\u{26B96}\u{26E77}\u{26E43}\u84DE\u840F\u8391\u44A0\u8493\u84E4\u{25C91}\u4240\u{25CC0}\u4543\u8534\u5AF2\u{26E99}\u4527\u8573\u4516\u67BF\u8616"],["8fa1","\u{28625}\u{2863B}\u85C1\u{27088}\u8602\u{21582}\u{270CD}\u{2F9B2}\u456A\u8628\u3648\u{218A2}\u53F7\u{2739A}\u867E\u8771\u{2A0F8}\u87EE\u{22C27}\u87B1\u87DA\u880F\u5661\u866C\u6856\u460F\u8845\u8846\u{275E0}\u{23DB9}\u{275E4}\u885E\u889C\u465B\u88B4\u88B5\u63C1\u88C5\u7777\u{2770F}\u8987\u898A\u89A6\u89A9\u89A7\u89BC\u{28A25}\u89E7\u{27924}\u{27ABD}\u8A9C\u7793\u91FE\u8A90\u{27A59}\u7AE9\u{27B3A}\u{23F8F}\u4713\u{27B38}\u717C\u8B0C\u8B1F\u{25430}\u{25565}\u8B3F\u8B4C\u8B4D\u8AA9\u{24A7A}\u8B90\u8B9B\u8AAF\u{216DF}\u4615\u884F\u8C9B\u{27D54}\u{27D8F}\u{2F9D4}\u3725\u{27D53}\u8CD6\u{27D98}\u{27DBD}\u8D12\u8D03\u{21910}\u8CDB\u705C\u8D11\u{24CC9}\u3ED0\u8D77"],["9040","\u8DA9\u{28002}\u{21014}\u{2498A}\u3B7C\u{281BC}\u{2710C}\u7AE7\u8EAD\u8EB6\u8EC3\u92D4\u8F19\u8F2D\u{28365}\u{28412}\u8FA5\u9303\u{2A29F}\u{20A50}\u8FB3\u492A\u{289DE}\u{2853D}\u{23DBB}\u5EF8\u{23262}\u8FF9\u{2A014}\u{286BC}\u{28501}\u{22325}\u3980\u{26ED7}\u9037\u{2853C}\u{27ABE}\u9061\u{2856C}\u{2860B}\u90A8\u{28713}\u90C4\u{286E6}\u90AE\u90FD\u9167\u3AF0\u91A9\u91C4\u7CAC\u{28933}\u{21E89}\u920E\u6C9F\u9241\u9262\u{255B9}\u92B9\u{28AC6}\u{23C9B}\u{28B0C}\u{255DB}"],["90a1","\u{20D31}\u932C\u936B\u{28AE1}\u{28BEB}\u708F\u5AC3\u{28AE2}\u{28AE5}\u4965\u9244\u{28BEC}\u{28C39}\u{28BFF}\u9373\u945B\u8EBC\u9585\u95A6\u9426\u95A0\u6FF6\u42B9\u{2267A}\u{286D8}\u{2127C}\u{23E2E}\u49DF\u6C1C\u967B\u9696\u416C\u96A3\u{26ED5}\u61DA\u96B6\u78F5\u{28AE0}\u96BD\u53CC\u49A1\u{26CB8}\u{20274}\u{26410}\u{290AF}\u{290E5}\u{24AD1}\u{21915}\u{2330A}\u9731\u8642\u9736\u4A0F\u453D\u4585\u{24AE9}\u7075\u5B41\u971B\u975C\u{291D5}\u9757\u5B4A\u{291EB}\u975F\u9425\u50D0\u{230B7}\u{230BC}\u9789\u979F\u97B1\u97BE\u97C0\u97D2\u97E0\u{2546C}\u97EE\u741C\u{29433}\u97FF\u97F5\u{2941D}\u{2797A}\u4AD1\u9834\u9833\u984B\u9866\u3B0E\u{27175}\u3D51\u{20630}\u{2415C}"],["9140","\u{25706}\u98CA\u98B7\u98C8\u98C7\u4AFF\u{26D27}\u{216D3}\u55B0\u98E1\u98E6\u98EC\u9378\u9939\u{24A29}\u4B72\u{29857}\u{29905}\u99F5\u9A0C\u9A3B\u9A10\u9A58\u{25725}\u36C4\u{290B1}\u{29BD5}\u9AE0\u9AE2\u{29B05}\u9AF4\u4C0E\u9B14\u9B2D\u{28600}\u5034\u9B34\u{269A8}\u38C3\u{2307D}\u9B50\u9B40\u{29D3E}\u5A45\u{21863}\u9B8E\u{2424B}\u9C02\u9BFF\u9C0C\u{29E68}\u9DD4\u{29FB7}\u{2A192}\u{2A1AB}\u{2A0E1}\u{2A123}\u{2A1DF}\u9D7E\u9D83\u{2A134}\u9E0E\u6888"],["91a1","\u9DC4\u{2215B}\u{2A193}\u{2A220}\u{2193B}\u{2A233}\u9D39\u{2A0B9}\u{2A2B4}\u9E90\u9E95\u9E9E\u9EA2\u4D34\u9EAA\u9EAF\u{24364}\u9EC1\u3B60\u39E5\u3D1D\u4F32\u37BE\u{28C2B}\u9F02\u9F08\u4B96\u9424\u{26DA2}\u9F17\u9F16\u9F39\u569F\u568A\u9F45\u99B8\u{2908B}\u97F2\u847F\u9F62\u9F69\u7ADC\u9F8E\u7216\u4BBE\u{24975}\u{249BB}\u7177\u{249F8}\u{24348}\u{24A51}\u739E\u{28BDA}\u{218FA}\u799F\u{2897E}\u{28E36}\u9369\u93F3\u{28A44}\u92EC\u9381\u93CB\u{2896C}\u{244B9}\u7217\u3EEB\u7772\u7A43\u70D0\u{24473}\u{243F8}\u717E\u{217EF}\u70A3\u{218BE}\u{23599}\u3EC7\u{21885}\u{2542F}\u{217F8}\u3722\u{216FB}\u{21839}\u36E1\u{21774}\u{218D1}\u{25F4B}\u3723\u{216C0}\u575B\u{24A25}\u{213FE}\u{212A8}"],["9240","\u{213C6}\u{214B6}\u8503\u{236A6}\u8503\u8455\u{24994}\u{27165}\u{23E31}\u{2555C}\u{23EFB}\u{27052}\u44F4\u{236EE}\u{2999D}\u{26F26}\u67F9\u3733\u3C15\u3DE7\u586C\u{21922}\u6810\u4057\u{2373F}\u{240E1}\u{2408B}\u{2410F}\u{26C21}\u54CB\u569E\u{266B1}\u5692\u{20FDF}\u{20BA8}\u{20E0D}\u93C6\u{28B13}\u939C\u4EF8\u512B\u3819\u{24436}\u4EBC\u{20465}\u{2037F}\u4F4B\u4F8A\u{25651}\u5A68\u{201AB}\u{203CB}\u3999\u{2030A}\u{20414}\u3435\u4F29\u{202C0}\u{28EB3}\u{20275}\u8ADA\u{2020C}\u4E98"],["92a1","\u50CD\u510D\u4FA2\u4F03\u{24A0E}\u{23E8A}\u4F42\u502E\u506C\u5081\u4FCC\u4FE5\u5058\u50FC\u5159\u515B\u515D\u515E\u6E76\u{23595}\u{23E39}\u{23EBF}\u6D72\u{21884}\u{23E89}\u51A8\u51C3\u{205E0}\u44DD\u{204A3}\u{20492}\u{20491}\u8D7A\u{28A9C}\u{2070E}\u5259\u52A4\u{20873}\u52E1\u936E\u467A\u718C\u{2438C}\u{20C20}\u{249AC}\u{210E4}\u69D1\u{20E1D}\u7479\u3EDE\u7499\u7414\u7456\u7398\u4B8E\u{24ABC}\u{2408D}\u53D0\u3584\u720F\u{240C9}\u55B4\u{20345}\u54CD\u{20BC6}\u571D\u925D\u96F4\u9366\u57DD\u578D\u577F\u363E\u58CB\u5A99\u{28A46}\u{216FA}\u{2176F}\u{21710}\u5A2C\u59B8\u928F\u5A7E\u5ACF\u5A12\u{25946}\u{219F3}\u{21861}\u{24295}\u36F5\u6D05\u7443\u5A21\u{25E83}"],["9340","\u5A81\u{28BD7}\u{20413}\u93E0\u748C\u{21303}\u7105\u4972\u9408\u{289FB}\u93BD\u37A0\u5C1E\u5C9E\u5E5E\u5E48\u{21996}\u{2197C}\u{23AEE}\u5ECD\u5B4F\u{21903}\u{21904}\u3701\u{218A0}\u36DD\u{216FE}\u36D3\u812A\u{28A47}\u{21DBA}\u{23472}\u{289A8}\u5F0C\u5F0E\u{21927}\u{217AB}\u5A6B\u{2173B}\u5B44\u8614\u{275FD}\u8860\u607E\u{22860}\u{2262B}\u5FDB\u3EB8\u{225AF}\u{225BE}\u{29088}\u{26F73}\u61C0\u{2003E}\u{20046}\u{2261B}\u6199\u6198\u6075\u{22C9B}\u{22D07}\u{246D4}\u{2914D}"],["93a1","\u6471\u{24665}\u{22B6A}\u3A29\u{22B22}\u{23450}\u{298EA}\u{22E78}\u6337\u{2A45B}\u64B6\u6331\u63D1\u{249E3}\u{22D67}\u62A4\u{22CA1}\u643B\u656B\u6972\u3BF4\u{2308E}\u{232AD}\u{24989}\u{232AB}\u550D\u{232E0}\u{218D9}\u{2943F}\u66CE\u{23289}\u{231B3}\u3AE0\u4190\u{25584}\u{28B22}\u{2558F}\u{216FC}\u{2555B}\u{25425}\u78EE\u{23103}\u{2182A}\u{23234}\u3464\u{2320F}\u{23182}\u{242C9}\u668E\u{26D24}\u666B\u4B93\u6630\u{27870}\u{21DEB}\u6663\u{232D2}\u{232E1}\u661E\u{25872}\u38D1\u{2383A}\u{237BC}\u3B99\u{237A2}\u{233FE}\u74D0\u3B96\u678F\u{2462A}\u68B6\u681E\u3BC4\u6ABE\u3863\u{237D5}\u{24487}\u6A33\u6A52\u6AC9\u6B05\u{21912}\u6511\u6898\u6A4C\u3BD7\u6A7A\u6B57\u{23FC0}\u{23C9A}\u93A0\u92F2\u{28BEA}\u{28ACB}"],["9440","\u9289\u{2801E}\u{289DC}\u9467\u6DA5\u6F0B\u{249EC}\u6D67\u{23F7F}\u3D8F\u6E04\u{2403C}\u5A3D\u6E0A\u5847\u6D24\u7842\u713B\u{2431A}\u{24276}\u70F1\u7250\u7287\u7294\u{2478F}\u{24725}\u5179\u{24AA4}\u{205EB}\u747A\u{23EF8}\u{2365F}\u{24A4A}\u{24917}\u{25FE1}\u3F06\u3EB1\u{24ADF}\u{28C23}\u{23F35}\u60A7\u3EF3\u74CC\u743C\u9387\u7437\u449F\u{26DEA}\u4551\u7583\u3F63\u{24CD9}\u{24D06}\u3F58\u7555\u7673\u{2A5C6}\u3B19\u7468\u{28ACC}\u{249AB}\u{2498E}\u3AFB"],["94a1","\u3DCD\u{24A4E}\u3EFF\u{249C5}\u{248F3}\u91FA\u5732\u9342\u{28AE3}\u{21864}\u50DF\u{25221}\u{251E7}\u7778\u{23232}\u770E\u770F\u777B\u{24697}\u{23781}\u3A5E\u{248F0}\u7438\u749B\u3EBF\u{24ABA}\u{24AC7}\u40C8\u{24A96}\u{261AE}\u9307\u{25581}\u781E\u788D\u7888\u78D2\u73D0\u7959\u{27741}\u{256E3}\u410E\u799B\u8496\u79A5\u6A2D\u{23EFA}\u7A3A\u79F4\u416E\u{216E6}\u4132\u9235\u79F1\u{20D4C}\u{2498C}\u{20299}\u{23DBA}\u{2176E}\u3597\u556B\u3570\u36AA\u{201D4}\u{20C0D}\u7AE2\u5A59\u{226F5}\u{25AAF}\u{25A9C}\u5A0D\u{2025B}\u78F0\u5A2A\u{25BC6}\u7AFE\u41F9\u7C5D\u7C6D\u4211\u{25BB3}\u{25EBC}\u{25EA6}\u7CCD\u{249F9}\u{217B0}\u7C8E\u7C7C\u7CAE\u6AB2\u7DDC\u7E07\u7DD3\u7F4E\u{26261}"],["9540","\u{2615C}\u{27B48}\u7D97\u{25E82}\u426A\u{26B75}\u{20916}\u67D6\u{2004E}\u{235CF}\u57C4\u{26412}\u{263F8}\u{24962}\u7FDD\u7B27\u{2082C}\u{25AE9}\u{25D43}\u7B0C\u{25E0E}\u99E6\u8645\u9A63\u6A1C\u{2343F}\u39E2\u{249F7}\u{265AD}\u9A1F\u{265A0}\u8480\u{27127}\u{26CD1}\u44EA\u8137\u4402\u80C6\u8109\u8142\u{267B4}\u98C3\u{26A42}\u8262\u8265\u{26A51}\u8453\u{26DA7}\u8610\u{2721B}\u5A86\u417F\u{21840}\u5B2B\u{218A1}\u5AE4\u{218D8}\u86A0\u{2F9BC}\u{23D8F}\u882D\u{27422}\u5A02"],["95a1","\u886E\u4F45\u8887\u88BF\u88E6\u8965\u894D\u{25683}\u8954\u{27785}\u{27784}\u{28BF5}\u{28BD9}\u{28B9C}\u{289F9}\u3EAD\u84A3\u46F5\u46CF\u37F2\u8A3D\u8A1C\u{29448}\u5F4D\u922B\u{24284}\u65D4\u7129\u70C4\u{21845}\u9D6D\u8C9F\u8CE9\u{27DDC}\u599A\u77C3\u59F0\u436E\u36D4\u8E2A\u8EA7\u{24C09}\u8F30\u8F4A\u42F4\u6C58\u6FBB\u{22321}\u489B\u6F79\u6E8B\u{217DA}\u9BE9\u36B5\u{2492F}\u90BB\u9097\u5571\u4906\u91BB\u9404\u{28A4B}\u4062\u{28AFC}\u9427\u{28C1D}\u{28C3B}\u84E5\u8A2B\u9599\u95A7\u9597\u9596\u{28D34}\u7445\u3EC2\u{248FF}\u{24A42}\u{243EA}\u3EE7\u{23225}\u968F\u{28EE7}\u{28E66}\u{28E65}\u3ECC\u{249ED}\u{24A78}\u{23FEE}\u7412\u746B\u3EFC\u9741\u{290B0}"],["9640","\u6847\u4A1D\u{29093}\u{257DF}\u975D\u9368\u{28989}\u{28C26}\u{28B2F}\u{263BE}\u92BA\u5B11\u8B69\u493C\u73F9\u{2421B}\u979B\u9771\u9938\u{20F26}\u5DC1\u{28BC5}\u{24AB2}\u981F\u{294DA}\u92F6\u{295D7}\u91E5\u44C0\u{28B50}\u{24A67}\u{28B64}\u98DC\u{28A45}\u3F00\u922A\u4925\u8414\u993B\u994D\u{27B06}\u3DFD\u999B\u4B6F\u99AA\u9A5C\u{28B65}\u{258C8}\u6A8F\u9A21\u5AFE\u9A2F\u{298F1}\u4B90\u{29948}\u99BC\u4BBD\u4B97\u937D\u5872\u{21302}\u5822\u{249B8}"],["96a1","\u{214E8}\u7844\u{2271F}\u{23DB8}\u68C5\u3D7D\u9458\u3927\u6150\u{22781}\u{2296B}\u6107\u9C4F\u9C53\u9C7B\u9C35\u9C10\u9B7F\u9BCF\u{29E2D}\u9B9F\u{2A1F5}\u{2A0FE}\u9D21\u4CAE\u{24104}\u9E18\u4CB0\u9D0C\u{2A1B4}\u{2A0ED}\u{2A0F3}\u{2992F}\u9DA5\u84BD\u{26E12}\u{26FDF}\u{26B82}\u85FC\u4533\u{26DA4}\u{26E84}\u{26DF0}\u8420\u85EE\u{26E00}\u{237D7}\u{26064}\u79E2\u{2359C}\u{23640}\u492D\u{249DE}\u3D62\u93DB\u92BE\u9348\u{202BF}\u78B9\u9277\u944D\u4FE4\u3440\u9064\u{2555D}\u783D\u7854\u78B6\u784B\u{21757}\u{231C9}\u{24941}\u369A\u4F72\u6FDA\u6FD9\u701E\u701E\u5414\u{241B5}\u57BB\u58F3\u578A\u9D16\u57D7\u7134\u34AF\u{241AC}\u71EB\u{26C40}\u{24F97}\u5B28\u{217B5}\u{28A49}"],["9740","\u610C\u5ACE\u5A0B\u42BC\u{24488}\u372C\u4B7B\u{289FC}\u93BB\u93B8\u{218D6}\u{20F1D}\u8472\u{26CC0}\u{21413}\u{242FA}\u{22C26}\u{243C1}\u5994\u{23DB7}\u{26741}\u7DA8\u{2615B}\u{260A4}\u{249B9}\u{2498B}\u{289FA}\u92E5\u73E2\u3EE9\u74B4\u{28B63}\u{2189F}\u3EE1\u{24AB3}\u6AD8\u73F3\u73FB\u3ED6\u{24A3E}\u{24A94}\u{217D9}\u{24A66}\u{203A7}\u{21424}\u{249E5}\u7448\u{24916}\u70A5\u{24976}\u9284\u73E6\u935F\u{204FE}\u9331\u{28ACE}\u{28A16}\u9386\u{28BE7}\u{255D5}\u4935\u{28A82}\u716B"],["97a1","\u{24943}\u{20CFF}\u56A4\u{2061A}\u{20BEB}\u{20CB8}\u5502\u79C4\u{217FA}\u7DFE\u{216C2}\u{24A50}\u{21852}\u452E\u9401\u370A\u{28AC0}\u{249AD}\u59B0\u{218BF}\u{21883}\u{27484}\u5AA1\u36E2\u{23D5B}\u36B0\u925F\u5A79\u{28A81}\u{21862}\u9374\u3CCD\u{20AB4}\u4A96\u398A\u50F4\u3D69\u3D4C\u{2139C}\u7175\u42FB\u{28218}\u6E0F\u{290E4}\u44EB\u6D57\u{27E4F}\u7067\u6CAF\u3CD6\u{23FED}\u{23E2D}\u6E02\u6F0C\u3D6F\u{203F5}\u7551\u36BC\u34C8\u4680\u3EDA\u4871\u59C4\u926E\u493E\u8F41\u{28C1C}\u{26BC0}\u5812\u57C8\u36D6\u{21452}\u70FE\u{24362}\u{24A71}\u{22FE3}\u{212B0}\u{223BD}\u68B9\u6967\u{21398}\u{234E5}\u{27BF4}\u{236DF}\u{28A83}\u{237D6}\u{233FA}\u{24C9F}\u6A1A\u{236AD}\u{26CB7}\u843E\u44DF\u44CE"],["9840","\u{26D26}\u{26D51}\u{26C82}\u{26FDE}\u6F17\u{27109}\u833D\u{2173A}\u83ED\u{26C80}\u{27053}\u{217DB}\u5989\u5A82\u{217B3}\u5A61\u5A71\u{21905}\u{241FC}\u372D\u59EF\u{2173C}\u36C7\u718E\u9390\u669A\u{242A5}\u5A6E\u5A2B\u{24293}\u6A2B\u{23EF9}\u{27736}\u{2445B}\u{242CA}\u711D\u{24259}\u{289E1}\u4FB0\u{26D28}\u5CC2\u{244CE}\u{27E4D}\u{243BD}\u6A0C\u{24256}\u{21304}\u70A6\u7133\u{243E9}\u3DA5\u6CDF\u{2F825}\u{24A4F}\u7E65\u59EB\u5D2F\u3DF3\u5F5C\u{24A5D}\u{217DF}\u7DA4\u8426"],["98a1","\u5485\u{23AFA}\u{23300}\u{20214}\u577E\u{208D5}\u{20619}\u3FE5\u{21F9E}\u{2A2B6}\u7003\u{2915B}\u5D70\u738F\u7CD3\u{28A59}\u{29420}\u4FC8\u7FE7\u72CD\u7310\u{27AF4}\u7338\u7339\u{256F6}\u7341\u7348\u3EA9\u{27B18}\u906C\u71F5\u{248F2}\u73E1\u81F6\u3ECA\u770C\u3ED1\u6CA2\u56FD\u7419\u741E\u741F\u3EE2\u3EF0\u3EF4\u3EFA\u74D3\u3F0E\u3F53\u7542\u756D\u7572\u758D\u3F7C\u75C8\u75DC\u3FC0\u764D\u3FD7\u7674\u3FDC\u767A\u{24F5C}\u7188\u5623\u8980\u5869\u401D\u7743\u4039\u6761\u4045\u35DB\u7798\u406A\u406F\u5C5E\u77BE\u77CB\u58F2\u7818\u70B9\u781C\u40A8\u7839\u7847\u7851\u7866\u8448\u{25535}\u7933\u6803\u7932\u4103"],["9940","\u4109\u7991\u7999\u8FBB\u7A06\u8FBC\u4167\u7A91\u41B2\u7ABC\u8279\u41C4\u7ACF\u7ADB\u41CF\u4E21\u7B62\u7B6C\u7B7B\u7C12\u7C1B\u4260\u427A\u7C7B\u7C9C\u428C\u7CB8\u4294\u7CED\u8F93\u70C0\u{20CCF}\u7DCF\u7DD4\u7DD0\u7DFD\u7FAE\u7FB4\u729F\u4397\u8020\u8025\u7B39\u802E\u8031\u8054\u3DCC\u57B4\u70A0\u80B7\u80E9\u43ED\u810C\u732A\u810E\u8112\u7560\u8114\u4401\u3B39\u8156\u8159\u815A"],["99a1","\u4413\u583A\u817C\u8184\u4425\u8193\u442D\u81A5\u57EF\u81C1\u81E4\u8254\u448F\u82A6\u8276\u82CA\u82D8\u82FF\u44B0\u8357\u9669\u698A\u8405\u70F5\u8464\u60E3\u8488\u4504\u84BE\u84E1\u84F8\u8510\u8538\u8552\u453B\u856F\u8570\u85E0\u4577\u8672\u8692\u86B2\u86EF\u9645\u878B\u4606\u4617\u88AE\u88FF\u8924\u8947\u8991\u{27967}\u8A29\u8A38\u8A94\u8AB4\u8C51\u8CD4\u8CF2\u8D1C\u4798\u585F\u8DC3\u47ED\u4EEE\u8E3A\u55D8\u5754\u8E71\u55F5\u8EB0\u4837\u8ECE\u8EE2\u8EE4\u8EED\u8EF2\u8FB7\u8FC1\u8FCA\u8FCC\u9033\u99C4\u48AD\u98E0\u9213\u491E\u9228\u9258\u926B\u92B1\u92AE\u92BF"],["9a40","\u92E3\u92EB\u92F3\u92F4\u92FD\u9343\u9384\u93AD\u4945\u4951\u9EBF\u9417\u5301\u941D\u942D\u943E\u496A\u9454\u9479\u952D\u95A2\u49A7\u95F4\u9633\u49E5\u67A0\u4A24\u9740\u4A35\u97B2\u97C2\u5654\u4AE4\u60E8\u98B9\u4B19\u98F1\u5844\u990E\u9919\u51B4\u991C\u9937\u9942\u995D\u9962\u4B70\u99C5\u4B9D\u9A3C\u9B0F\u7A83\u9B69\u9B81\u9BDD\u9BF1\u9BF4\u4C6D\u9C20\u376F\u{21BC2}\u9D49\u9C3A"],["9aa1","\u9EFE\u5650\u9D93\u9DBD\u9DC0\u9DFC\u94F6\u8FB6\u9E7B\u9EAC\u9EB1\u9EBD\u9EC6\u94DC\u9EE2\u9EF1\u9EF8\u7AC8\u9F44\u{20094}\u{202B7}\u{203A0}\u691A\u94C3\u59AC\u{204D7}\u5840\u94C1\u37B9\u{205D5}\u{20615}\u{20676}\u{216BA}\u5757\u7173\u{20AC2}\u{20ACD}\u{20BBF}\u546A\u{2F83B}\u{20BCB}\u549E\u{20BFB}\u{20C3B}\u{20C53}\u{20C65}\u{20C7C}\u60E7\u{20C8D}\u567A\u{20CB5}\u{20CDD}\u{20CED}\u{20D6F}\u{20DB2}\u{20DC8}\u6955\u9C2F\u87A5\u{20E04}\u{20E0E}\u{20ED7}\u{20F90}\u{20F2D}\u{20E73}\u5C20\u{20FBC}\u5E0B\u{2105C}\u{2104F}\u{21076}\u671E\u{2107B}\u{21088}\u{21096}\u3647\u{210BF}\u{210D3}\u{2112F}\u{2113B}\u5364\u84AD\u{212E3}\u{21375}\u{21336}\u8B81\u{21577}\u{21619}\u{217C3}\u{217C7}\u4E78\u70BB\u{2182D}\u{2196A}"],["9b40","\u{21A2D}\u{21A45}\u{21C2A}\u{21C70}\u{21CAC}\u{21EC8}\u62C3\u{21ED5}\u{21F15}\u7198\u6855\u{22045}\u69E9\u36C8\u{2227C}\u{223D7}\u{223FA}\u{2272A}\u{22871}\u{2294F}\u82FD\u{22967}\u{22993}\u{22AD5}\u89A5\u{22AE8}\u8FA0\u{22B0E}\u97B8\u{22B3F}\u9847\u9ABD\u{22C4C}"],["9b62","\u{22C88}\u{22CB7}\u{25BE8}\u{22D08}\u{22D12}\u{22DB7}\u{22D95}\u{22E42}\u{22F74}\u{22FCC}\u{23033}\u{23066}\u{2331F}\u{233DE}\u5FB1\u6648\u66BF\u{27A79}\u{23567}\u{235F3}\u7201\u{249BA}\u77D7\u{2361A}\u{23716}\u7E87\u{20346}\u58B5\u670E"],["9ba1","\u6918\u{23AA7}\u{27657}\u{25FE2}\u{23E11}\u{23EB9}\u{275FE}\u{2209A}\u48D0\u4AB8\u{24119}\u{28A9A}\u{242EE}\u{2430D}\u{2403B}\u{24334}\u{24396}\u{24A45}\u{205CA}\u51D2\u{20611}\u599F\u{21EA8}\u3BBE\u{23CFF}\u{24404}\u{244D6}\u5788\u{24674}\u399B\u{2472F}\u{285E8}\u{299C9}\u3762\u{221C3}\u8B5E\u{28B4E}\u99D6\u{24812}\u{248FB}\u{24A15}\u7209\u{24AC0}\u{20C78}\u5965\u{24EA5}\u{24F86}\u{20779}\u8EDA\u{2502C}\u528F\u573F\u7171\u{25299}\u{25419}\u{23F4A}\u{24AA7}\u55BC\u{25446}\u{2546E}\u{26B52}\u91D4\u3473\u{2553F}\u{27632}\u{2555E}\u4718\u{25562}\u{25566}\u{257C7}\u{2493F}\u{2585D}\u5066\u34FB\u{233CC}\u60DE\u{25903}\u477C\u{28948}\u{25AAE}\u{25B89}\u{25C06}\u{21D90}\u57A1\u7151\u6FB6\u{26102}\u{27C12}\u9056\u{261B2}\u{24F9A}\u8B62\u{26402}\u{2644A}"],["9c40","\u5D5B\u{26BF7}\u8F36\u{26484}\u{2191C}\u8AEA\u{249F6}\u{26488}\u{23FEF}\u{26512}\u4BC0\u{265BF}\u{266B5}\u{2271B}\u9465\u{257E1}\u6195\u5A27\u{2F8CD}\u4FBB\u56B9\u{24521}\u{266FC}\u4E6A\u{24934}\u9656\u6D8F\u{26CBD}\u3618\u8977\u{26799}\u{2686E}\u{26411}\u{2685E}\u71DF\u{268C7}\u7B42\u{290C0}\u{20A11}\u{26926}\u9104\u{26939}\u7A45\u9DF0\u{269FA}\u9A26\u{26A2D}\u365F\u{26469}\u{20021}\u7983\u{26A34}\u{26B5B}\u5D2C\u{23519}\u83CF\u{26B9D}\u46D0\u{26CA4}\u753B\u8865\u{26DAE}\u58B6"],["9ca1","\u371C\u{2258D}\u{2704B}\u{271CD}\u3C54\u{27280}\u{27285}\u9281\u{2217A}\u{2728B}\u9330\u{272E6}\u{249D0}\u6C39\u949F\u{27450}\u{20EF8}\u8827\u88F5\u{22926}\u{28473}\u{217B1}\u6EB8\u{24A2A}\u{21820}\u39A4\u36B9\u5C10\u79E3\u453F\u66B6\u{29CAD}\u{298A4}\u8943\u{277CC}\u{27858}\u56D6\u40DF\u{2160A}\u39A1\u{2372F}\u{280E8}\u{213C5}\u71AD\u8366\u{279DD}\u{291A8}\u5A67\u4CB7\u{270AF}\u{289AB}\u{279FD}\u{27A0A}\u{27B0B}\u{27D66}\u{2417A}\u7B43\u797E\u{28009}\u6FB5\u{2A2DF}\u6A03\u{28318}\u53A2\u{26E07}\u93BF\u6836\u975D\u{2816F}\u{28023}\u{269B5}\u{213ED}\u{2322F}\u{28048}\u5D85\u{28C30}\u{28083}\u5715\u9823\u{28949}\u5DAB\u{24988}\u65BE\u69D5\u53D2\u{24AA5}\u{23F81}\u3C11\u6736\u{28090}\u{280F4}\u{2812E}\u{21FA1}\u{2814F}"],["9d40","\u{28189}\u{281AF}\u{2821A}\u{28306}\u{2832F}\u{2838A}\u35CA\u{28468}\u{286AA}\u48FA\u63E6\u{28956}\u7808\u9255\u{289B8}\u43F2\u{289E7}\u43DF\u{289E8}\u{28B46}\u{28BD4}\u59F8\u{28C09}\u8F0B\u{28FC5}\u{290EC}\u7B51\u{29110}\u{2913C}\u3DF7\u{2915E}\u{24ACA}\u8FD0\u728F\u568B\u{294E7}\u{295E9}\u{295B0}\u{295B8}\u{29732}\u{298D1}\u{29949}\u{2996A}\u{299C3}\u{29A28}\u{29B0E}\u{29D5A}\u{29D9B}\u7E9F\u{29EF8}\u{29F23}\u4CA4\u9547\u{2A293}\u71A2\u{2A2FF}\u4D91\u9012\u{2A5CB}\u4D9C\u{20C9C}\u8FBE\u55C1"],["9da1","\u8FBA\u{224B0}\u8FB9\u{24A93}\u4509\u7E7F\u6F56\u6AB1\u4EEA\u34E4\u{28B2C}\u{2789D}\u373A\u8E80\u{217F5}\u{28024}\u{28B6C}\u{28B99}\u{27A3E}\u{266AF}\u3DEB\u{27655}\u{23CB7}\u{25635}\u{25956}\u4E9A\u{25E81}\u{26258}\u56BF\u{20E6D}\u8E0E\u5B6D\u{23E88}\u{24C9E}\u63DE\u62D0\u{217F6}\u{2187B}\u6530\u562D\u{25C4A}\u541A\u{25311}\u3DC6\u{29D98}\u4C7D\u5622\u561E\u7F49\u{25ED8}\u5975\u{23D40}\u8770\u4E1C\u{20FEA}\u{20D49}\u{236BA}\u8117\u9D5E\u8D18\u763B\u9C45\u764E\u77B9\u9345\u5432\u8148\u82F7\u5625\u8132\u8418\u80BD\u55EA\u7962\u5643\u5416\u{20E9D}\u35CE\u5605\u55F1\u66F1\u{282E2}\u362D\u7534\u55F0\u55BA\u5497\u5572\u{20C41}\u{20C96}\u5ED0\u{25148}\u{20E76}\u{22C62}"],["9e40","\u{20EA2}\u9EAB\u7D5A\u55DE\u{21075}\u629D\u976D\u5494\u8CCD\u71F6\u9176\u63FC\u63B9\u63FE\u5569\u{22B43}\u9C72\u{22EB3}\u519A\u34DF\u{20DA7}\u51A7\u544D\u551E\u5513\u7666\u8E2D\u{2688A}\u75B1\u80B6\u8804\u8786\u88C7\u81B6\u841C\u{210C1}\u44EC\u7304\u{24706}\u5B90\u830B\u{26893}\u567B\u{226F4}\u{27D2F}\u{241A3}\u{27D73}\u{26ED0}\u{272B6}\u9170\u{211D9}\u9208\u{23CFC}\u{2A6A9}\u{20EAC}\u{20EF9}\u7266\u{21CA2}\u474E\u{24FC2}\u{27FF9}\u{20FEB}\u40FA"],["9ea1","\u9C5D\u651F\u{22DA0}\u48F3\u{247E0}\u{29D7C}\u{20FEC}\u{20E0A}\u6062\u{275A3}\u{20FED}"],["9ead","\u{26048}\u{21187}\u71A3\u7E8E\u9D50\u4E1A\u4E04\u3577\u5B0D\u6CB2\u5367\u36AC\u39DC\u537D\u36A5\u{24618}\u589A\u{24B6E}\u822D\u544B\u57AA\u{25A95}\u{20979}"],["9ec5","\u3A52\u{22465}\u7374\u{29EAC}\u4D09\u9BED\u{23CFE}\u{29F30}\u4C5B\u{24FA9}\u{2959E}\u{29FDE}\u845C\u{23DB6}\u{272B2}\u{267B3}\u{23720}\u632E\u7D25\u{23EF7}\u{23E2C}\u3A2A\u9008\u52CC\u3E74\u367A\u45E9\u{2048E}\u7640\u5AF0\u{20EB6}\u787A\u{27F2E}\u58A7\u40BF\u567C\u9B8B\u5D74\u7654\u{2A434}\u9E85\u4CE1\u75F9\u37FB\u6119\u{230DA}\u{243F2}"],["9ef5","\u565D\u{212A9}\u57A7\u{24963}\u{29E06}\u5234\u{270AE}\u35AD\u6C4A\u9D7C"],["9f40","\u7C56\u9B39\u57DE\u{2176C}\u5C53\u64D3\u{294D0}\u{26335}\u{27164}\u86AD\u{20D28}\u{26D22}\u{24AE2}\u{20D71}"],["9f4f","\u51FE\u{21F0F}\u5D8E\u9703\u{21DD1}\u9E81\u904C\u7B1F\u9B02\u5CD1\u7BA3\u6268\u6335\u9AFF\u7BCF\u9B2A\u7C7E\u9B2E\u7C42\u7C86\u9C15\u7BFC\u9B09\u9F17\u9C1B\u{2493E}\u9F5A\u5573\u5BC3\u4FFD\u9E98\u4FF2\u5260\u3E06\u52D1\u5767\u5056\u59B7\u5E12\u97C8\u9DAB\u8F5C\u5469\u97B4\u9940\u97BA\u532C\u6130"],["9fa1","\u692C\u53DA\u9C0A\u9D02\u4C3B\u9641\u6980\u50A6\u7546\u{2176D}\u99DA\u5273"],["9fae","\u9159\u9681\u915C"],["9fb2","\u9151\u{28E97}\u637F\u{26D23}\u6ACA\u5611\u918E\u757A\u6285\u{203FC}\u734F\u7C70\u{25C21}\u{23CFD}"],["9fc1","\u{24919}\u76D6\u9B9D\u4E2A\u{20CD4}\u83BE\u8842"],["9fc9","\u5C4A\u69C0\u50ED\u577A\u521F\u5DF5\u4ECE\u6C31\u{201F2}\u4F39\u549C\u54DA\u529A\u8D82\u35FE\u5F0C\u35F3"],["9fdb","\u6B52\u917C\u9FA5\u9B97\u982E\u98B4\u9ABA\u9EA8\u9E84\u717A\u7B14"],["9fe7","\u6BFA\u8818\u7F78"],["9feb","\u5620\u{2A64A}\u8E77\u9F53"],["9ff0","\u8DD4\u8E4F\u9E1C\u8E01\u6282\u{2837D}\u8E28\u8E75\u7AD3\u{24A77}\u7A3E\u78D8\u6CEA\u8A67\u7607"],["a040","\u{28A5A}\u9F26\u6CCE\u87D6\u75C3\u{2A2B2}\u7853\u{2F840}\u8D0C\u72E2\u7371\u8B2D\u7302\u74F1\u8CEB\u{24ABB}\u862F\u5FBA\u88A0\u44B7"],["a055","\u{2183B}\u{26E05}"],["a058","\u8A7E\u{2251B}"],["a05b","\u60FD\u7667\u9AD7\u9D44\u936E\u9B8F\u87F5"],["a063","\u880F\u8CF7\u732C\u9721\u9BB0\u35D6\u72B2\u4C07\u7C51\u994A\u{26159}\u6159\u4C04\u9E96\u617D"],["a073","\u575F\u616F\u62A6\u6239\u62CE\u3A5C\u61E2\u53AA\u{233F5}\u6364\u6802\u35D2"],["a0a1","\u5D57\u{28BC2}\u8FDA\u{28E39}"],["a0a6","\u50D9\u{21D46}\u7906\u5332\u9638\u{20F3B}\u4065"],["a0ae","\u77FE"],["a0b0","\u7CC2\u{25F1A}\u7CDA\u7A2D\u8066\u8063\u7D4D\u7505\u74F2\u8994\u821A\u670C\u8062\u{27486}\u805B\u74F0\u8103\u7724\u8989\u{267CC}\u7553\u{26ED1}\u87A9\u87CE\u81C8\u878C\u8A49\u8CAD\u8B43\u772B\u74F8\u84DA\u3635\u69B2\u8DA6"],["a0d4","\u89A9\u7468\u6DB9\u87C1\u{24011}\u74E7\u3DDB\u7176\u60A4\u619C\u3CD1\u7162\u6077"],["a0e2","\u7F71\u{28B2D}\u7250\u60E9\u4B7E\u5220\u3C18\u{23CC7}\u{25ED7}\u{27656}\u{25531}\u{21944}\u{212FE}\u{29903}\u{26DDC}\u{270AD}\u5CC1\u{261AD}\u{28A0F}\u{23677}\u{200EE}\u{26846}\u{24F0E}\u4562\u5B1F\u{2634C}\u9F50\u9EA6\u{2626B}"],["a3c0","\u2400",31,"\u2421"],["c6a1","\u2460",9,"\u2474",9,"\u2170",9,"\u4E36\u4E3F\u4E85\u4EA0\u5182\u5196\u51AB\u52F9\u5338\u5369\u53B6\u590A\u5B80\u5DDB\u2F33\u5E7F\u5EF4\u5F50\u5F61\u6534\u65E0\u7592\u7676\u8FB5\u96B6\xA8\u02C6\u30FD\u30FE\u309D\u309E\u3003\u4EDD\u3005\u3006\u3007\u30FC\uFF3B\uFF3D\u273D\u3041",23],["c740","\u3059",58,"\u30A1\u30A2\u30A3\u30A4"],["c7a1","\u30A5",81,"\u0410",5,"\u0401\u0416",4],["c840","\u041B",26,"\u0451\u0436",25,"\u21E7\u21B8\u21B9\u31CF\u{200CC}\u4E5A\u{2008A}\u5202\u4491"],["c8a1","\u9FB0\u5188\u9FB1\u{27607}"],["c8cd","\uFFE2\uFFE4\uFF07\uFF02\u3231\u2116\u2121\u309B\u309C\u2E80\u2E84\u2E86\u2E87\u2E88\u2E8A\u2E8C\u2E8D\u2E95\u2E9C\u2E9D\u2EA5\u2EA7\u2EAA\u2EAC\u2EAE\u2EB6\u2EBC\u2EBE\u2EC6\u2ECA\u2ECC\u2ECD\u2ECF\u2ED6\u2ED7\u2EDE\u2EE3"],["c8f5","\u0283\u0250\u025B\u0254\u0275\u0153\xF8\u014B\u028A\u026A"],["f9fe","\uFFED"],["fa40","\u{20547}\u92DB\u{205DF}\u{23FC5}\u854C\u42B5\u73EF\u51B5\u3649\u{24942}\u{289E4}\u9344\u{219DB}\u82EE\u{23CC8}\u783C\u6744\u62DF\u{24933}\u{289AA}\u{202A0}\u{26BB3}\u{21305}\u4FAB\u{224ED}\u5008\u{26D29}\u{27A84}\u{23600}\u{24AB1}\u{22513}\u5029\u{2037E}\u5FA4\u{20380}\u{20347}\u6EDB\u{2041F}\u507D\u5101\u347A\u510E\u986C\u3743\u8416\u{249A4}\u{20487}\u5160\u{233B4}\u516A\u{20BFF}\u{220FC}\u{202E5}\u{22530}\u{2058E}\u{23233}\u{21983}\u5B82\u877D\u{205B3}\u{23C99}\u51B2\u51B8"],["faa1","\u9D34\u51C9\u51CF\u51D1\u3CDC\u51D3\u{24AA6}\u51B3\u51E2\u5342\u51ED\u83CD\u693E\u{2372D}\u5F7B\u520B\u5226\u523C\u52B5\u5257\u5294\u52B9\u52C5\u7C15\u8542\u52E0\u860D\u{26B13}\u5305\u{28ADE}\u5549\u6ED9\u{23F80}\u{20954}\u{23FEC}\u5333\u5344\u{20BE2}\u6CCB\u{21726}\u681B\u73D5\u604A\u3EAA\u38CC\u{216E8}\u71DD\u44A2\u536D\u5374\u{286AB}\u537E\u537F\u{21596}\u{21613}\u77E6\u5393\u{28A9B}\u53A0\u53AB\u53AE\u73A7\u{25772}\u3F59\u739C\u53C1\u53C5\u6C49\u4E49\u57FE\u53D9\u3AAB\u{20B8F}\u53E0\u{23FEB}\u{22DA3}\u53F6\u{20C77}\u5413\u7079\u552B\u6657\u6D5B\u546D\u{26B53}\u{20D74}\u555D\u548F\u54A4\u47A6\u{2170D}\u{20EDD}\u3DB4\u{20D4D}"],["fb40","\u{289BC}\u{22698}\u5547\u4CED\u542F\u7417\u5586\u55A9\u5605\u{218D7}\u{2403A}\u4552\u{24435}\u66B3\u{210B4}\u5637\u66CD\u{2328A}\u66A4\u66AD\u564D\u564F\u78F1\u56F1\u9787\u53FE\u5700\u56EF\u56ED\u{28B66}\u3623\u{2124F}\u5746\u{241A5}\u6C6E\u708B\u5742\u36B1\u{26C7E}\u57E6\u{21416}\u5803\u{21454}\u{24363}\u5826\u{24BF5}\u585C\u58AA\u3561\u58E0\u58DC\u{2123C}\u58FB\u5BFF\u5743\u{2A150}\u{24278}\u93D3\u35A1\u591F\u68A6\u36C3\u6E59"],["fba1","\u{2163E}\u5A24\u5553\u{21692}\u8505\u59C9\u{20D4E}\u{26C81}\u{26D2A}\u{217DC}\u59D9\u{217FB}\u{217B2}\u{26DA6}\u6D71\u{21828}\u{216D5}\u59F9\u{26E45}\u5AAB\u5A63\u36E6\u{249A9}\u5A77\u3708\u5A96\u7465\u5AD3\u{26FA1}\u{22554}\u3D85\u{21911}\u3732\u{216B8}\u5E83\u52D0\u5B76\u6588\u5B7C\u{27A0E}\u4004\u485D\u{20204}\u5BD5\u6160\u{21A34}\u{259CC}\u{205A5}\u5BF3\u5B9D\u4D10\u5C05\u{21B44}\u5C13\u73CE\u5C14\u{21CA5}\u{26B28}\u5C49\u48DD\u5C85\u5CE9\u5CEF\u5D8B\u{21DF9}\u{21E37}\u5D10\u5D18\u5D46\u{21EA4}\u5CBA\u5DD7\u82FC\u382D\u{24901}\u{22049}\u{22173}\u8287\u3836\u3BC2\u5E2E\u6A8A\u5E75\u5E7A\u{244BC}\u{20CD3}\u53A6\u4EB7\u5ED0\u53A8\u{21771}\u5E09\u5EF4\u{28482}"],["fc40","\u5EF9\u5EFB\u38A0\u5EFC\u683E\u941B\u5F0D\u{201C1}\u{2F894}\u3ADE\u48AE\u{2133A}\u5F3A\u{26888}\u{223D0}\u5F58\u{22471}\u5F63\u97BD\u{26E6E}\u5F72\u9340\u{28A36}\u5FA7\u5DB6\u3D5F\u{25250}\u{21F6A}\u{270F8}\u{22668}\u91D6\u{2029E}\u{28A29}\u6031\u6685\u{21877}\u3963\u3DC7\u3639\u5790\u{227B4}\u7971\u3E40\u609E\u60A4\u60B3\u{24982}\u{2498F}\u{27A53}\u74A4\u50E1\u5AA0\u6164\u8424\u6142\u{2F8A6}\u{26ED2}\u6181\u51F4\u{20656}\u6187\u5BAA\u{23FB7}"],["fca1","\u{2285F}\u61D3\u{28B9D}\u{2995D}\u61D0\u3932\u{22980}\u{228C1}\u6023\u615C\u651E\u638B\u{20118}\u62C5\u{21770}\u62D5\u{22E0D}\u636C\u{249DF}\u3A17\u6438\u63F8\u{2138E}\u{217FC}\u6490\u6F8A\u{22E36}\u9814\u{2408C}\u{2571D}\u64E1\u64E5\u947B\u3A66\u643A\u3A57\u654D\u6F16\u{24A28}\u{24A23}\u6585\u656D\u655F\u{2307E}\u65B5\u{24940}\u4B37\u65D1\u40D8\u{21829}\u65E0\u65E3\u5FDF\u{23400}\u6618\u{231F7}\u{231F8}\u6644\u{231A4}\u{231A5}\u664B\u{20E75}\u6667\u{251E6}\u6673\u6674\u{21E3D}\u{23231}\u{285F4}\u{231C8}\u{25313}\u77C5\u{228F7}\u99A4\u6702\u{2439C}\u{24A21}\u3B2B\u69FA\u{237C2}\u675E\u6767\u6762\u{241CD}\u{290ED}\u67D7\u44E9\u6822\u6E50\u923C\u6801\u{233E6}\u{26DA0}\u685D"],["fd40","\u{2346F}\u69E1\u6A0B\u{28ADF}\u6973\u68C3\u{235CD}\u6901\u6900\u3D32\u3A01\u{2363C}\u3B80\u67AC\u6961\u{28A4A}\u42FC\u6936\u6998\u3BA1\u{203C9}\u8363\u5090\u69F9\u{23659}\u{2212A}\u6A45\u{23703}\u6A9D\u3BF3\u67B1\u6AC8\u{2919C}\u3C0D\u6B1D\u{20923}\u60DE\u6B35\u6B74\u{227CD}\u6EB5\u{23ADB}\u{203B5}\u{21958}\u3740\u5421\u{23B5A}\u6BE1\u{23EFC}\u6BDC\u6C37\u{2248B}\u{248F1}\u{26B51}\u6C5A\u8226\u6C79\u{23DBC}\u44C5\u{23DBD}\u{241A4}\u{2490C}\u{24900}"],["fda1","\u{23CC9}\u36E5\u3CEB\u{20D32}\u9B83\u{231F9}\u{22491}\u7F8F\u6837\u{26D25}\u{26DA1}\u{26DEB}\u6D96\u6D5C\u6E7C\u6F04\u{2497F}\u{24085}\u{26E72}\u8533\u{26F74}\u51C7\u6C9C\u6E1D\u842E\u{28B21}\u6E2F\u{23E2F}\u7453\u{23F82}\u79CC\u6E4F\u5A91\u{2304B}\u6FF8\u370D\u6F9D\u{23E30}\u6EFA\u{21497}\u{2403D}\u4555\u93F0\u6F44\u6F5C\u3D4E\u6F74\u{29170}\u3D3B\u6F9F\u{24144}\u6FD3\u{24091}\u{24155}\u{24039}\u{23FF0}\u{23FB4}\u{2413F}\u51DF\u{24156}\u{24157}\u{24140}\u{261DD}\u704B\u707E\u70A7\u7081\u70CC\u70D5\u70D6\u70DF\u4104\u3DE8\u71B4\u7196\u{24277}\u712B\u7145\u5A88\u714A\u716E\u5C9C\u{24365}\u714F\u9362\u{242C1}\u712C\u{2445A}\u{24A27}\u{24A22}\u71BA\u{28BE8}\u70BD\u720E"],["fe40","\u9442\u7215\u5911\u9443\u7224\u9341\u{25605}\u722E\u7240\u{24974}\u68BD\u7255\u7257\u3E55\u{23044}\u680D\u6F3D\u7282\u732A\u732B\u{24823}\u{2882B}\u48ED\u{28804}\u7328\u732E\u73CF\u73AA\u{20C3A}\u{26A2E}\u73C9\u7449\u{241E2}\u{216E7}\u{24A24}\u6623\u36C5\u{249B7}\u{2498D}\u{249FB}\u73F7\u7415\u6903\u{24A26}\u7439\u{205C3}\u3ED7\u745C\u{228AD}\u7460\u{28EB2}\u7447\u73E4\u7476\u83B9\u746C\u3730\u7474\u93F1\u6A2C\u7482\u4953\u{24A8C}"],["fea1","\u{2415F}\u{24A79}\u{28B8F}\u5B46\u{28C03}\u{2189E}\u74C8\u{21988}\u750E\u74E9\u751E\u{28ED9}\u{21A4B}\u5BD7\u{28EAC}\u9385\u754D\u754A\u7567\u756E\u{24F82}\u3F04\u{24D13}\u758E\u745D\u759E\u75B4\u7602\u762C\u7651\u764F\u766F\u7676\u{263F5}\u7690\u81EF\u37F8\u{26911}\u{2690E}\u76A1\u76A5\u76B7\u76CC\u{26F9F}\u8462\u{2509D}\u{2517D}\u{21E1C}\u771E\u7726\u7740\u64AF\u{25220}\u7758\u{232AC}\u77AF\u{28964}\u{28968}\u{216C1}\u77F4\u7809\u{21376}\u{24A12}\u68CA\u78AF\u78C7\u78D3\u96A5\u792E\u{255E0}\u78D7\u7934\u78B1\u{2760C}\u8FB8\u8884\u{28B2B}\u{26083}\u{2261C}\u7986\u8900\u6902\u7980\u{25857}\u799D\u{27B39}\u793C\u79A9\u6E2A\u{27126}\u3EA8\u79C6\u{2910D}\u79D4"]]});var jJ=b((qut,GJ)=>{"use strict";GJ.exports={shiftjis:{type:"_dbcs",table:function(){return HJ()},encodeAdd:{"\xA5":92,"\u203E":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return qJ()},encodeAdd:{"\xA5":92,"\u203E":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return Sy()}},gbk:{type:"_dbcs",table:function(){return Sy().concat(W2())}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return Sy().concat(W2())},gb18030:function(){return VJ()},encodeSkipVals:[128],encodeAdd:{"\u20AC":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return YJ()}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return z2()}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return z2().concat($J())},encodeSkipVals:[36457,36463,36478,36523,36532,36557,36560,36695,36713,36718,36811,36862,36973,36986,37060,37084,37105,37311,37551,37552,37553,37554,37585,37959,38090,38361,38652,39285,39798,39800,39803,39878,39902,39916,39926,40002,40019,40034,40040,40043,40055,40124,40125,40144,40279,40282,40388,40431,40443,40617,40687,40701,40800,40907,41079,41180,41183,36812,37576,38468,38637,41636,41637,41639,41638,41676,41678]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}});var zJ=b((WJ,wA)=>{"use strict";var JJ=[BJ(),QJ(),SJ(),RJ(),NJ(),FJ(),OJ(),UJ(),jJ()];for(_y=0;_y{"use strict";var XJ=Do().Buffer;KJ.exports=function(e){var t=e.Transform;function r(s,i){this.conv=s,i=i||{},i.decodeStrings=!1,t.call(this,i)}r.prototype=Object.create(t.prototype,{constructor:{value:r}}),r.prototype._transform=function(s,i,o){if(typeof s!="string")return o(new Error("Iconv encoding stream needs strings as its input."));try{var a=this.conv.write(s);a&&a.length&&this.push(a),o()}catch(c){o(c)}},r.prototype._flush=function(s){try{var i=this.conv.end();i&&i.length&&this.push(i),s()}catch(o){s(o)}},r.prototype.collect=function(s){var i=[];return this.on("error",s),this.on("data",function(o){i.push(o)}),this.on("end",function(){s(null,XJ.concat(i))}),this};function n(s,i){this.conv=s,i=i||{},i.encoding=this.encoding="utf8",t.call(this,i)}return n.prototype=Object.create(t.prototype,{constructor:{value:n}}),n.prototype._transform=function(s,i,o){if(!XJ.isBuffer(s)&&!(s instanceof Uint8Array))return o(new Error("Iconv decoding stream needs buffers as its input."));try{var a=this.conv.write(s);a&&a.length&&this.push(a,this.encoding),o()}catch(c){o(c)}},n.prototype._flush=function(s){try{var i=this.conv.end();i&&i.length&&this.push(i,this.encoding),s()}catch(o){s(o)}},n.prototype.collect=function(s){var i="";return this.on("error",s),this.on("data",function(o){i+=o}),this.on("end",function(){s(null,i)}),this},{IconvLiteEncoderStream:r,IconvLiteDecoderStream:n}}});var X2=b((Yut,rW)=>{"use strict";var eW=Do().Buffer,tW=IJ(),ke=rW.exports;ke.encodings=null;ke.defaultCharUnicode="\uFFFD";ke.defaultCharSingleByte="?";ke.encode=function(t,r,n){t=""+(t||"");var s=ke.getEncoder(r,n),i=s.write(t),o=s.end();return o&&o.length>0?eW.concat([i,o]):i};ke.decode=function(t,r,n){typeof t=="string"&&(ke.skipDecodeWarning||(console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding"),ke.skipDecodeWarning=!0),t=eW.from(""+(t||""),"binary"));var s=ke.getDecoder(r,n),i=s.write(t),o=s.end();return o?i+o:i};ke.encodingExists=function(t){try{return ke.getCodec(t),!0}catch{return!1}};ke.toEncoding=ke.encode;ke.fromEncoding=ke.decode;ke._codecDataCache={};ke.getCodec=function(t){ke.encodings||(ke.encodings=zJ());for(var r=ke._canonicalizeEncoding(t),n={};;){var s=ke._codecDataCache[r];if(s)return s;var i=ke.encodings[r];switch(typeof i){case"string":r=i;break;case"object":for(var o in i)n[o]=i[o];n.encodingName||(n.encodingName=r),r=i.type;break;case"function":return n.encodingName||(n.encodingName=r),s=new i(n,ke),ke._codecDataCache[n.encodingName]=s,s;default:throw new Error("Encoding not recognized: '"+t+"' (searched as: '"+r+"')")}}};ke._canonicalizeEncoding=function(e){return(""+e).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")};ke.getEncoder=function(t,r){var n=ke.getCodec(t),s=new n.encoder(r,n);return n.bomAware&&r&&r.addBOM&&(s=new tW.PrependBOM(s,r)),s};ke.getDecoder=function(t,r){var n=ke.getCodec(t),s=new n.decoder(r,n);return n.bomAware&&!(r&&r.stripBOM===!1)&&(s=new tW.StripBOM(s,r)),s};ke.enableStreamingAPI=function(t){if(!ke.supportsStreams){var r=ZJ()(t);ke.IconvLiteEncoderStream=r.IconvLiteEncoderStream,ke.IconvLiteDecoderStream=r.IconvLiteDecoderStream,ke.encodeStream=function(s,i){return new ke.IconvLiteEncoderStream(ke.getEncoder(s,i),i)},ke.decodeStream=function(s,i){return new ke.IconvLiteDecoderStream(ke.getDecoder(s,i),i)},ke.supportsStreams=!0}};var Dy;try{Dy=require("stream")}catch{}Dy&&Dy.Transform?ke.enableStreamingAPI(Dy):ke.encodeStream=ke.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}});var nW=b(($ut,w4e)=>{w4e.exports=["UTF-8","IBM866","ISO-8859-2","ISO-8859-3","ISO-8859-4","ISO-8859-5","ISO-8859-6","ISO-8859-7","ISO-8859-8","ISO-8859-10","ISO-8859-13","ISO-8859-14","ISO-8859-15","ISO-8859-16","KOI8-R","KOI8-U","macintosh","windows-874","windows-1250","windows-1251","windows-1252","windows-1253","windows-1254","windows-1255","windows-1256","windows-1257","windows-1258","GBK","gb18030","Big5","EUC-JP","Shift_JIS","EUC-KR","UTF-16BE","UTF-16LE","x-user-defined"]});var sW=b((Gut,S4e)=>{S4e.exports={"866":"IBM866","unicode-1-1-utf-8":"UTF-8",unicode11utf8:"UTF-8",unicode20utf8:"UTF-8","utf-8":"UTF-8",utf8:"UTF-8","x-unicode20utf8":"UTF-8",cp866:"IBM866",csibm866:"IBM866",ibm866:"IBM866",csisolatin2:"ISO-8859-2","iso-8859-2":"ISO-8859-2","iso-ir-101":"ISO-8859-2","iso8859-2":"ISO-8859-2",iso88592:"ISO-8859-2","iso_8859-2":"ISO-8859-2","iso_8859-2:1987":"ISO-8859-2",l2:"ISO-8859-2",latin2:"ISO-8859-2",csisolatin3:"ISO-8859-3","iso-8859-3":"ISO-8859-3","iso-ir-109":"ISO-8859-3","iso8859-3":"ISO-8859-3",iso88593:"ISO-8859-3","iso_8859-3":"ISO-8859-3","iso_8859-3:1988":"ISO-8859-3",l3:"ISO-8859-3",latin3:"ISO-8859-3",csisolatin4:"ISO-8859-4","iso-8859-4":"ISO-8859-4","iso-ir-110":"ISO-8859-4","iso8859-4":"ISO-8859-4",iso88594:"ISO-8859-4","iso_8859-4":"ISO-8859-4","iso_8859-4:1988":"ISO-8859-4",l4:"ISO-8859-4",latin4:"ISO-8859-4",csisolatincyrillic:"ISO-8859-5",cyrillic:"ISO-8859-5","iso-8859-5":"ISO-8859-5","iso-ir-144":"ISO-8859-5","iso8859-5":"ISO-8859-5",iso88595:"ISO-8859-5","iso_8859-5":"ISO-8859-5","iso_8859-5:1988":"ISO-8859-5",arabic:"ISO-8859-6","asmo-708":"ISO-8859-6",csiso88596e:"ISO-8859-6",csiso88596i:"ISO-8859-6",csisolatinarabic:"ISO-8859-6","ecma-114":"ISO-8859-6","iso-8859-6":"ISO-8859-6","iso-8859-6-e":"ISO-8859-6","iso-8859-6-i":"ISO-8859-6","iso-ir-127":"ISO-8859-6","iso8859-6":"ISO-8859-6",iso88596:"ISO-8859-6","iso_8859-6":"ISO-8859-6","iso_8859-6:1987":"ISO-8859-6",csisolatingreek:"ISO-8859-7","ecma-118":"ISO-8859-7",elot_928:"ISO-8859-7",greek:"ISO-8859-7",greek8:"ISO-8859-7","iso-8859-7":"ISO-8859-7","iso-ir-126":"ISO-8859-7","iso8859-7":"ISO-8859-7",iso88597:"ISO-8859-7","iso_8859-7":"ISO-8859-7","iso_8859-7:1987":"ISO-8859-7",sun_eu_greek:"ISO-8859-7",csiso88598e:"ISO-8859-8",csisolatinhebrew:"ISO-8859-8",hebrew:"ISO-8859-8","iso-8859-8":"ISO-8859-8","iso-8859-8-e":"ISO-8859-8","iso-ir-138":"ISO-8859-8","iso8859-8":"ISO-8859-8",iso88598:"ISO-8859-8","iso_8859-8":"ISO-8859-8","iso_8859-8:1988":"ISO-8859-8",visual:"ISO-8859-8",csisolatin6:"ISO-8859-10","iso-8859-10":"ISO-8859-10","iso-ir-157":"ISO-8859-10","iso8859-10":"ISO-8859-10",iso885910:"ISO-8859-10",l6:"ISO-8859-10",latin6:"ISO-8859-10","iso-8859-13":"ISO-8859-13","iso8859-13":"ISO-8859-13",iso885913:"ISO-8859-13","iso-8859-14":"ISO-8859-14","iso8859-14":"ISO-8859-14",iso885914:"ISO-8859-14",csisolatin9:"ISO-8859-15","iso-8859-15":"ISO-8859-15","iso8859-15":"ISO-8859-15",iso885915:"ISO-8859-15","iso_8859-15":"ISO-8859-15",l9:"ISO-8859-15","iso-8859-16":"ISO-8859-16",cskoi8r:"KOI8-R",koi:"KOI8-R",koi8:"KOI8-R","koi8-r":"KOI8-R",koi8_r:"KOI8-R","koi8-ru":"KOI8-U","koi8-u":"KOI8-U",csmacintosh:"macintosh",mac:"macintosh",macintosh:"macintosh","x-mac-roman":"macintosh","dos-874":"windows-874","iso-8859-11":"windows-874","iso8859-11":"windows-874",iso885911:"windows-874","tis-620":"windows-874","windows-874":"windows-874",cp1250:"windows-1250","windows-1250":"windows-1250","x-cp1250":"windows-1250",cp1251:"windows-1251","windows-1251":"windows-1251","x-cp1251":"windows-1251","ansi_x3.4-1968":"windows-1252",ascii:"windows-1252",cp1252:"windows-1252",cp819:"windows-1252",csisolatin1:"windows-1252",ibm819:"windows-1252","iso-8859-1":"windows-1252","iso-ir-100":"windows-1252","iso8859-1":"windows-1252",iso88591:"windows-1252","iso_8859-1":"windows-1252","iso_8859-1:1987":"windows-1252",l1:"windows-1252",latin1:"windows-1252","us-ascii":"windows-1252","windows-1252":"windows-1252","x-cp1252":"windows-1252",cp1253:"windows-1253","windows-1253":"windows-1253","x-cp1253":"windows-1253",cp1254:"windows-1254",csisolatin5:"windows-1254","iso-8859-9":"windows-1254","iso-ir-148":"windows-1254","iso8859-9":"windows-1254",iso88599:"windows-1254","iso_8859-9":"windows-1254","iso_8859-9:1989":"windows-1254",l5:"windows-1254",latin5:"windows-1254","windows-1254":"windows-1254","x-cp1254":"windows-1254",cp1255:"windows-1255","windows-1255":"windows-1255","x-cp1255":"windows-1255",cp1256:"windows-1256","windows-1256":"windows-1256","x-cp1256":"windows-1256",cp1257:"windows-1257","windows-1257":"windows-1257","x-cp1257":"windows-1257",cp1258:"windows-1258","windows-1258":"windows-1258","x-cp1258":"windows-1258",chinese:"GBK",csgb2312:"GBK",csiso58gb231280:"GBK",gb2312:"GBK",gb_2312:"GBK","gb_2312-80":"GBK",gbk:"GBK","iso-ir-58":"GBK","x-gbk":"GBK",gb18030:"gb18030",big5:"Big5","big5-hkscs":"Big5","cn-big5":"Big5",csbig5:"Big5","x-x-big5":"Big5",cseucpkdfmtjapanese:"EUC-JP","euc-jp":"EUC-JP","x-euc-jp":"EUC-JP",csshiftjis:"Shift_JIS",ms932:"Shift_JIS",ms_kanji:"Shift_JIS","shift-jis":"Shift_JIS",shift_jis:"Shift_JIS",sjis:"Shift_JIS","windows-31j":"Shift_JIS","x-sjis":"Shift_JIS",cseuckr:"EUC-KR",csksc56011987:"EUC-KR","euc-kr":"EUC-KR","iso-ir-149":"EUC-KR",korean:"EUC-KR","ks_c_5601-1987":"EUC-KR","ks_c_5601-1989":"EUC-KR",ksc5601:"EUC-KR",ksc_5601:"EUC-KR","windows-949":"EUC-KR",unicodefffe:"UTF-16BE","utf-16be":"UTF-16BE",csunicode:"UTF-16LE","iso-10646-ucs-2":"UTF-16LE","ucs-2":"UTF-16LE",unicode:"UTF-16LE",unicodefeff:"UTF-16LE","utf-16":"UTF-16LE","utf-16le":"UTF-16LE","x-user-defined":"x-user-defined"}});var iW=b(Au=>{"use strict";var _4e=X2(),R4e=nW(),D4e=sW(),N4e=new Set(R4e);Au.labelToName=e=>(e=String(e).trim().toLowerCase(),D4e[e]||null);Au.decode=(e,t)=>{let r=t;if(!Au.isSupported(r))throw new RangeError(`"${r}" is not a supported encoding name`);let n=Au.getBOMEncoding(e);if(n!==null&&(r=n),r==="x-user-defined"){let s="";for(let i of e)i<=127?s+=String.fromCodePoint(i):s+=String.fromCodePoint(63360+i-128);return s}return _4e.decode(e,r)};Au.getBOMEncoding=e=>e[0]===254&&e[1]===255?"UTF-16BE":e[0]===255&&e[1]===254?"UTF-16LE":e[0]===239&&e[1]===187&&e[2]===191?"UTF-8":null;Au.isSupported=e=>N4e.has(String(e))});var Ot=b((Kut,AW)=>{AW.exports={kClose:Symbol("close"),kDestroy:Symbol("destroy"),kDispatch:Symbol("dispatch"),kUrl:Symbol("url"),kWriting:Symbol("writing"),kResuming:Symbol("resuming"),kQueue:Symbol("queue"),kConnect:Symbol("connect"),kConnecting:Symbol("connecting"),kKeepAliveDefaultTimeout:Symbol("default keep alive timeout"),kKeepAliveMaxTimeout:Symbol("max keep alive timeout"),kKeepAliveTimeoutThreshold:Symbol("keep alive timeout threshold"),kKeepAliveTimeoutValue:Symbol("keep alive timeout"),kKeepAlive:Symbol("keep alive"),kHeadersTimeout:Symbol("headers timeout"),kBodyTimeout:Symbol("body timeout"),kServerName:Symbol("server name"),kLocalAddress:Symbol("local address"),kHost:Symbol("host"),kNoRef:Symbol("no ref"),kBodyUsed:Symbol("used"),kBody:Symbol("abstracted request body"),kRunning:Symbol("running"),kBlocking:Symbol("blocking"),kPending:Symbol("pending"),kSize:Symbol("size"),kBusy:Symbol("busy"),kQueued:Symbol("queued"),kFree:Symbol("free"),kConnected:Symbol("connected"),kClosed:Symbol("closed"),kNeedDrain:Symbol("need drain"),kReset:Symbol("reset"),kDestroyed:Symbol.for("nodejs.stream.destroyed"),kResume:Symbol("resume"),kOnError:Symbol("on error"),kMaxHeadersSize:Symbol("max headers size"),kRunningIdx:Symbol("running index"),kPendingIdx:Symbol("pending index"),kError:Symbol("error"),kClients:Symbol("clients"),kClient:Symbol("client"),kParser:Symbol("parser"),kOnDestroyed:Symbol("destroy callbacks"),kPipelining:Symbol("pipelining"),kSocket:Symbol("socket"),kHostHeader:Symbol("host header"),kConnector:Symbol("connector"),kStrictContentLength:Symbol("strict content length"),kMaxRedirections:Symbol("maxRedirections"),kMaxRequests:Symbol("maxRequestsPerClient"),kProxy:Symbol("proxy agent options"),kCounter:Symbol("socket request counter"),kInterceptors:Symbol("dispatch interceptors"),kMaxResponseSize:Symbol("max response size"),kHTTP2Session:Symbol("http2Session"),kHTTP2SessionState:Symbol("http2Session state"),kRetryHandlerDefaultRetry:Symbol("retry agent default retry"),kConstruct:Symbol("constructable"),kListeners:Symbol("listeners"),kHTTPContext:Symbol("http context"),kMaxConcurrentStreams:Symbol("max concurrent streams"),kNoProxyAgent:Symbol("no proxy agent"),kHttpProxyAgent:Symbol("http proxy agent"),kHttpsProxyAgent:Symbol("https proxy agent")}});var ht=b((Zut,fW)=>{"use strict";var Ut=class extends Error{constructor(t){super(t),this.name="UndiciError",this.code="UND_ERR"}},K2=class extends Ut{constructor(t){super(t),this.name="ConnectTimeoutError",this.message=t||"Connect Timeout Error",this.code="UND_ERR_CONNECT_TIMEOUT"}},Z2=class extends Ut{constructor(t){super(t),this.name="HeadersTimeoutError",this.message=t||"Headers Timeout Error",this.code="UND_ERR_HEADERS_TIMEOUT"}},e_=class extends Ut{constructor(t){super(t),this.name="HeadersOverflowError",this.message=t||"Headers Overflow Error",this.code="UND_ERR_HEADERS_OVERFLOW"}},t_=class extends Ut{constructor(t){super(t),this.name="BodyTimeoutError",this.message=t||"Body Timeout Error",this.code="UND_ERR_BODY_TIMEOUT"}},r_=class extends Ut{constructor(t,r,n,s){super(t),this.name="ResponseStatusCodeError",this.message=t||"Response Status Code Error",this.code="UND_ERR_RESPONSE_STATUS_CODE",this.body=s,this.status=r,this.statusCode=r,this.headers=n}},n_=class extends Ut{constructor(t){super(t),this.name="InvalidArgumentError",this.message=t||"Invalid Argument Error",this.code="UND_ERR_INVALID_ARG"}},s_=class extends Ut{constructor(t){super(t),this.name="InvalidReturnValueError",this.message=t||"Invalid Return Value Error",this.code="UND_ERR_INVALID_RETURN_VALUE"}},Ny=class extends Ut{constructor(t){super(t),this.name="AbortError",this.message=t||"The operation was aborted"}},i_=class extends Ny{constructor(t){super(t),this.name="AbortError",this.message=t||"Request aborted",this.code="UND_ERR_ABORTED"}},o_=class extends Ut{constructor(t){super(t),this.name="InformationalError",this.message=t||"Request information",this.code="UND_ERR_INFO"}},a_=class extends Ut{constructor(t){super(t),this.name="RequestContentLengthMismatchError",this.message=t||"Request body length does not match content-length header",this.code="UND_ERR_REQ_CONTENT_LENGTH_MISMATCH"}},c_=class extends Ut{constructor(t){super(t),this.name="ResponseContentLengthMismatchError",this.message=t||"Response body length does not match content-length header",this.code="UND_ERR_RES_CONTENT_LENGTH_MISMATCH"}},u_=class extends Ut{constructor(t){super(t),this.name="ClientDestroyedError",this.message=t||"The client is destroyed",this.code="UND_ERR_DESTROYED"}},l_=class extends Ut{constructor(t){super(t),this.name="ClientClosedError",this.message=t||"The client is closed",this.code="UND_ERR_CLOSED"}},A_=class extends Ut{constructor(t,r){super(t),this.name="SocketError",this.message=t||"Socket error",this.code="UND_ERR_SOCKET",this.socket=r}},f_=class extends Ut{constructor(t){super(t),this.name="NotSupportedError",this.message=t||"Not supported error",this.code="UND_ERR_NOT_SUPPORTED"}},d_=class extends Ut{constructor(t){super(t),this.name="MissingUpstreamError",this.message=t||"No upstream has been added to the BalancedPool",this.code="UND_ERR_BPL_MISSING_UPSTREAM"}},h_=class extends Error{constructor(t,r,n){super(t),this.name="HTTPParserError",this.code=r?`HPE_${r}`:void 0,this.data=n?n.toString():void 0}},p_=class extends Ut{constructor(t){super(t),this.name="ResponseExceededMaxSizeError",this.message=t||"Response content exceeded max size",this.code="UND_ERR_RES_EXCEEDED_MAX_SIZE"}},g_=class extends Ut{constructor(t,r,{headers:n,data:s}){super(t),this.name="RequestRetryError",this.message=t||"Request retry error",this.code="UND_ERR_REQ_RETRY",this.statusCode=r,this.data=s,this.headers=n}},m_=class extends Ut{constructor(t,r,{headers:n,data:s}){super(t),this.name="ResponseError",this.message=t||"Response error",this.code="UND_ERR_RESPONSE",this.statusCode=r,this.data=s,this.headers=n}},E_=class extends Ut{constructor(t,r,n){super(r,{cause:t,...n??{}}),this.name="SecureProxyConnectionError",this.message=r||"Secure Proxy Connection failed",this.code="UND_ERR_PRX_TLS",this.cause=t}};fW.exports={AbortError:Ny,HTTPParserError:h_,UndiciError:Ut,HeadersTimeoutError:Z2,HeadersOverflowError:e_,BodyTimeoutError:t_,RequestContentLengthMismatchError:a_,ConnectTimeoutError:K2,ResponseStatusCodeError:r_,InvalidArgumentError:n_,InvalidReturnValueError:s_,RequestAbortedError:i_,ClientDestroyedError:u_,ClientClosedError:l_,InformationalError:o_,SocketError:A_,NotSupportedError:f_,ResponseContentLengthMismatchError:c_,BalancedPoolMissingUpstreamError:d_,ResponseExceededMaxSizeError:p_,RequestRetryError:g_,ResponseError:m_,SecureProxyConnectionError:E_}});var Fy=b((elt,dW)=>{"use strict";var ky={},C_=["Accept","Accept-Encoding","Accept-Language","Accept-Ranges","Access-Control-Allow-Credentials","Access-Control-Allow-Headers","Access-Control-Allow-Methods","Access-Control-Allow-Origin","Access-Control-Expose-Headers","Access-Control-Max-Age","Access-Control-Request-Headers","Access-Control-Request-Method","Age","Allow","Alt-Svc","Alt-Used","Authorization","Cache-Control","Clear-Site-Data","Connection","Content-Disposition","Content-Encoding","Content-Language","Content-Length","Content-Location","Content-Range","Content-Security-Policy","Content-Security-Policy-Report-Only","Content-Type","Cookie","Cross-Origin-Embedder-Policy","Cross-Origin-Opener-Policy","Cross-Origin-Resource-Policy","Date","Device-Memory","Downlink","ECT","ETag","Expect","Expect-CT","Expires","Forwarded","From","Host","If-Match","If-Modified-Since","If-None-Match","If-Range","If-Unmodified-Since","Keep-Alive","Last-Modified","Link","Location","Max-Forwards","Origin","Permissions-Policy","Pragma","Proxy-Authenticate","Proxy-Authorization","RTT","Range","Referer","Referrer-Policy","Refresh","Retry-After","Sec-WebSocket-Accept","Sec-WebSocket-Extensions","Sec-WebSocket-Key","Sec-WebSocket-Protocol","Sec-WebSocket-Version","Server","Server-Timing","Service-Worker-Allowed","Service-Worker-Navigation-Preload","Set-Cookie","SourceMap","Strict-Transport-Security","Supports-Loading-Mode","TE","Timing-Allow-Origin","Trailer","Transfer-Encoding","Upgrade","Upgrade-Insecure-Requests","User-Agent","Vary","Via","WWW-Authenticate","X-Content-Type-Options","X-DNS-Prefetch-Control","X-Frame-Options","X-Permitted-Cross-Domain-Policies","X-Powered-By","X-Requested-With","X-XSS-Protection"];for(let e=0;e{"use strict";var{wellknownHeaderNames:hW,headerNameLowerCasedRecord:O4e}=Fy(),y_=class e{value=null;left=null;middle=null;right=null;code;constructor(t,r,n){if(n===void 0||n>=t.length)throw new TypeError("Unreachable");if((this.code=t.charCodeAt(n))>127)throw new TypeError("key must be ascii string");t.length!==++n?this.middle=new e(t,r,n):this.value=r}add(t,r){let n=t.length;if(n===0)throw new TypeError("Unreachable");let s=0,i=this;for(;;){let o=t.charCodeAt(s);if(o>127)throw new TypeError("key must be ascii string");if(i.code===o)if(n===++s){i.value=r;break}else if(i.middle!==null)i=i.middle;else{i.middle=new e(t,r,s);break}else if(i.code=65&&(i|=32);s!==null;){if(i===s.code){if(r===++n)return s;s=s.middle;break}s=s.code{"use strict";var u0=require("node:assert"),{kDestroyed:CW,kBodyUsed:SA,kListeners:I_,kBody:EW}=Ot(),{IncomingMessage:M4e}=require("node:http"),Py=require("node:stream"),P4e=require("node:net"),{Blob:U4e}=require("node:buffer"),H4e=require("node:util"),{stringify:q4e}=require("node:querystring"),{EventEmitter:V4e}=require("node:events"),{InvalidArgumentError:Br}=ht(),{headerNameLowerCasedRecord:Y4e}=Fy(),{tree:yW}=mW(),[$4e,G4e]=process.versions.node.split(".").map(e=>Number(e)),My=class{constructor(t){this[EW]=t,this[SA]=!1}async*[Symbol.asyncIterator](){u0(!this[SA],"disturbed"),this[SA]=!0,yield*this[EW]}};function j4e(e){return Uy(e)?(vW(e)===0&&e.on("data",function(){u0(!1)}),typeof e.readableDidRead!="boolean"&&(e[SA]=!1,V4e.prototype.on.call(e,"data",function(){this[SA]=!0})),e):e&&typeof e.pipeTo=="function"?new My(e):e&&typeof e!="string"&&!ArrayBuffer.isView(e)&&xW(e)?new My(e):e}function J4e(){}function Uy(e){return e&&typeof e=="object"&&typeof e.pipe=="function"&&typeof e.on=="function"}function IW(e){if(e===null)return!1;if(e instanceof U4e)return!0;if(typeof e!="object")return!1;{let t=e[Symbol.toStringTag];return(t==="Blob"||t==="File")&&("stream"in e&&typeof e.stream=="function"||"arrayBuffer"in e&&typeof e.arrayBuffer=="function")}}function W4e(e,t){if(e.includes("?")||e.includes("#"))throw new Error('Query params cannot be passed when url already contains "?" or "#".');let r=q4e(t);return r&&(e+="?"+r),e}function bW(e){let t=parseInt(e,10);return t===Number(e)&&t>=0&&t<=65535}function Oy(e){return e!=null&&e[0]==="h"&&e[1]==="t"&&e[2]==="t"&&e[3]==="p"&&(e[4]===":"||e[4]==="s"&&e[5]===":")}function BW(e){if(typeof e=="string"){if(e=new URL(e),!Oy(e.origin||e.protocol))throw new Br("Invalid URL protocol: the URL must start with `http:` or `https:`.");return e}if(!e||typeof e!="object")throw new Br("Invalid URL: The URL argument must be a non-null object.");if(!(e instanceof URL)){if(e.port!=null&&e.port!==""&&bW(e.port)===!1)throw new Br("Invalid URL: port must be a valid integer or a string representation of an integer.");if(e.path!=null&&typeof e.path!="string")throw new Br("Invalid URL path: the path must be a string or null/undefined.");if(e.pathname!=null&&typeof e.pathname!="string")throw new Br("Invalid URL pathname: the pathname must be a string or null/undefined.");if(e.hostname!=null&&typeof e.hostname!="string")throw new Br("Invalid URL hostname: the hostname must be a string or null/undefined.");if(e.origin!=null&&typeof e.origin!="string")throw new Br("Invalid URL origin: the origin must be a string or null/undefined.");if(!Oy(e.origin||e.protocol))throw new Br("Invalid URL protocol: the URL must start with `http:` or `https:`.");let t=e.port!=null?e.port:e.protocol==="https:"?443:80,r=e.origin!=null?e.origin:`${e.protocol||""}//${e.hostname||""}:${t}`,n=e.path!=null?e.path:`${e.pathname||""}${e.search||""}`;return r[r.length-1]==="/"&&(r=r.slice(0,r.length-1)),n&&n[0]!=="/"&&(n=`/${n}`),new URL(`${r}${n}`)}if(!Oy(e.origin||e.protocol))throw new Br("Invalid URL protocol: the URL must start with `http:` or `https:`.");return e}function z4e(e){if(e=BW(e),e.pathname!=="/"||e.search||e.hash)throw new Br("invalid url");return e}function X4e(e){if(e[0]==="["){let r=e.indexOf("]");return u0(r!==-1),e.substring(1,r)}let t=e.indexOf(":");return t===-1?e:e.substring(0,t)}function K4e(e){if(!e)return null;u0(typeof e=="string");let t=X4e(e);return P4e.isIP(t)?"":t}function Z4e(e){return JSON.parse(JSON.stringify(e))}function eOe(e){return e!=null&&typeof e[Symbol.asyncIterator]=="function"}function xW(e){return e!=null&&(typeof e[Symbol.iterator]=="function"||typeof e[Symbol.asyncIterator]=="function")}function vW(e){if(e==null)return 0;if(Uy(e)){let t=e._readableState;return t&&t.objectMode===!1&&t.ended===!0&&Number.isFinite(t.length)?t.length:null}else{if(IW(e))return e.size!=null?e.size:null;if(wW(e))return e.byteLength}return null}function QW(e){return e&&!!(e.destroyed||e[CW]||Py.isDestroyed?.(e))}function tOe(e,t){e==null||!Uy(e)||QW(e)||(typeof e.destroy=="function"?(Object.getPrototypeOf(e).constructor===M4e&&(e.socket=null),e.destroy(t)):t&&queueMicrotask(()=>{e.emit("error",t)}),e.destroyed!==!0&&(e[CW]=!0))}var rOe=/timeout=(\d+)/;function nOe(e){let t=e.toString().match(rOe);return t?parseInt(t[1],10)*1e3:null}function TW(e){return typeof e=="string"?Y4e[e]??e.toLowerCase():yW.lookup(e)??e.toString("latin1").toLowerCase()}function sOe(e){return yW.lookup(e)??e.toString("latin1").toLowerCase()}function iOe(e,t){t===void 0&&(t={});for(let r=0;ro.toString("utf8")):i.toString("utf8")}}return"content-length"in t&&"content-disposition"in t&&(t["content-disposition"]=Buffer.from(t["content-disposition"]).toString("latin1")),t}function oOe(e){let t=e.length,r=new Array(t),n=!1,s=-1,i,o,a=0;for(let c=0;c{r.close(),r.byobRequest?.respond(0)});else{let i=Buffer.isBuffer(s)?s:Buffer.from(s);i.byteLength&&r.enqueue(new Uint8Array(i))}return r.desiredSize>0},async cancel(r){await t.return()},type:"bytes"})}function dOe(e){return e&&typeof e=="object"&&typeof e.append=="function"&&typeof e.delete=="function"&&typeof e.get=="function"&&typeof e.getAll=="function"&&typeof e.has=="function"&&typeof e.set=="function"&&e[Symbol.toStringTag]==="FormData"}function hOe(e,t){return"addEventListener"in e?(e.addEventListener("abort",t,{once:!0}),()=>e.removeEventListener("abort",t)):(e.addListener("abort",t),()=>e.removeListener("abort",t))}var pOe=typeof String.prototype.toWellFormed=="function",gOe=typeof String.prototype.isWellFormed=="function";function SW(e){return pOe?`${e}`.toWellFormed():H4e.toUSVString(e)}function mOe(e){return gOe?`${e}`.isWellFormed():SW(e)===`${e}`}function _W(e){switch(e){case 34:case 40:case 41:case 44:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 123:case 125:return!1;default:return e>=33&&e<=126}}function EOe(e){if(e.length===0)return!1;for(let t=0;t{"use strict";var gt=require("node:diagnostics_channel"),x_=require("node:util"),Hy=x_.debuglog("undici"),B_=x_.debuglog("fetch"),du=x_.debuglog("websocket"),kW=!1,vOe={beforeConnect:gt.channel("undici:client:beforeConnect"),connected:gt.channel("undici:client:connected"),connectError:gt.channel("undici:client:connectError"),sendHeaders:gt.channel("undici:client:sendHeaders"),create:gt.channel("undici:request:create"),bodySent:gt.channel("undici:request:bodySent"),headers:gt.channel("undici:request:headers"),trailers:gt.channel("undici:request:trailers"),error:gt.channel("undici:request:error"),open:gt.channel("undici:websocket:open"),close:gt.channel("undici:websocket:close"),socketError:gt.channel("undici:websocket:socket_error"),ping:gt.channel("undici:websocket:ping"),pong:gt.channel("undici:websocket:pong")};if(Hy.enabled||B_.enabled){let e=B_.enabled?B_:Hy;gt.channel("undici:client:beforeConnect").subscribe(t=>{let{connectParams:{version:r,protocol:n,port:s,host:i}}=t;e("connecting to %s using %s%s",`${i}${s?`:${s}`:""}`,n,r)}),gt.channel("undici:client:connected").subscribe(t=>{let{connectParams:{version:r,protocol:n,port:s,host:i}}=t;e("connected to %s using %s%s",`${i}${s?`:${s}`:""}`,n,r)}),gt.channel("undici:client:connectError").subscribe(t=>{let{connectParams:{version:r,protocol:n,port:s,host:i},error:o}=t;e("connection to %s using %s%s errored - %s",`${i}${s?`:${s}`:""}`,n,r,o.message)}),gt.channel("undici:client:sendHeaders").subscribe(t=>{let{request:{method:r,path:n,origin:s}}=t;e("sending request to %s %s/%s",r,s,n)}),gt.channel("undici:request:headers").subscribe(t=>{let{request:{method:r,path:n,origin:s},response:{statusCode:i}}=t;e("received response to %s %s/%s - HTTP %d",r,s,n,i)}),gt.channel("undici:request:trailers").subscribe(t=>{let{request:{method:r,path:n,origin:s}}=t;e("trailers received from %s %s/%s",r,s,n)}),gt.channel("undici:request:error").subscribe(t=>{let{request:{method:r,path:n,origin:s},error:i}=t;e("request to %s %s/%s errored - %s",r,s,n,i.message)}),kW=!0}if(du.enabled){if(!kW){let e=Hy.enabled?Hy:du;gt.channel("undici:client:beforeConnect").subscribe(t=>{let{connectParams:{version:r,protocol:n,port:s,host:i}}=t;e("connecting to %s%s using %s%s",i,s?`:${s}`:"",n,r)}),gt.channel("undici:client:connected").subscribe(t=>{let{connectParams:{version:r,protocol:n,port:s,host:i}}=t;e("connected to %s%s using %s%s",i,s?`:${s}`:"",n,r)}),gt.channel("undici:client:connectError").subscribe(t=>{let{connectParams:{version:r,protocol:n,port:s,host:i},error:o}=t;e("connection to %s%s using %s%s errored - %s",i,s?`:${s}`:"",n,r,o.message)}),gt.channel("undici:client:sendHeaders").subscribe(t=>{let{request:{method:r,path:n,origin:s}}=t;e("sending request to %s %s/%s",r,s,n)})}gt.channel("undici:websocket:open").subscribe(e=>{let{address:{address:t,port:r}}=e;du("connection opened %s%s",t,r?`:${r}`:"")}),gt.channel("undici:websocket:close").subscribe(e=>{let{websocket:t,code:r,reason:n}=e;du("closed connection to %s - %s %s",t.url,r,n)}),gt.channel("undici:websocket:socket_error").subscribe(e=>{du("connection errored - %s",e.message)}),gt.channel("undici:websocket:ping").subscribe(e=>{du("ping received")}),gt.channel("undici:websocket:pong").subscribe(e=>{du("pong received")})}FW.exports={channels:vOe}});var UW=b((slt,PW)=>{"use strict";var{InvalidArgumentError:Ht,NotSupportedError:QOe}=ht(),Fo=require("node:assert"),{isValidHTTPToken:MW,isValidHeaderValue:LW,isStream:TOe,destroy:wOe,isBuffer:SOe,isFormDataLike:_Oe,isIterable:ROe,isBlobLike:DOe,buildURL:NOe,validateHandler:kOe,getServerName:FOe,normalizedMethodRecords:LOe}=Ve(),{channels:qi}=_A(),{headerNameLowerCasedRecord:OW}=Fy(),OOe=/[^\u0021-\u00ff]/,Rs=Symbol("handler"),v_=class{constructor(t,{path:r,method:n,body:s,headers:i,query:o,idempotent:a,blocking:c,upgrade:u,headersTimeout:l,bodyTimeout:A,reset:f,throwOnError:d,expectContinue:h,servername:p},C){if(typeof r!="string")throw new Ht("path must be a string");if(r[0]!=="/"&&!(r.startsWith("http://")||r.startsWith("https://"))&&n!=="CONNECT")throw new Ht("path must be an absolute URL or start with a slash");if(OOe.test(r))throw new Ht("invalid request path");if(typeof n!="string")throw new Ht("method must be a string");if(LOe[n]===void 0&&!MW(n))throw new Ht("invalid request method");if(u&&typeof u!="string")throw new Ht("upgrade must be a string");if(l!=null&&(!Number.isFinite(l)||l<0))throw new Ht("invalid headersTimeout");if(A!=null&&(!Number.isFinite(A)||A<0))throw new Ht("invalid bodyTimeout");if(f!=null&&typeof f!="boolean")throw new Ht("invalid reset");if(h!=null&&typeof h!="boolean")throw new Ht("invalid expectContinue");if(this.headersTimeout=l,this.bodyTimeout=A,this.throwOnError=d===!0,this.method=n,this.abort=null,s==null)this.body=null;else if(TOe(s)){this.body=s;let m=this.body._readableState;(!m||!m.autoDestroy)&&(this.endHandler=function(){wOe(this)},this.body.on("end",this.endHandler)),this.errorHandler=I=>{this.abort?this.abort(I):this.error=I},this.body.on("error",this.errorHandler)}else if(SOe(s))this.body=s.byteLength?s:null;else if(ArrayBuffer.isView(s))this.body=s.buffer.byteLength?Buffer.from(s.buffer,s.byteOffset,s.byteLength):null;else if(s instanceof ArrayBuffer)this.body=s.byteLength?Buffer.from(s):null;else if(typeof s=="string")this.body=s.length?Buffer.from(s):null;else if(_Oe(s)||ROe(s)||DOe(s))this.body=s;else throw new Ht("body must be a string, a Buffer, a Readable stream, an iterable, or an async iterable");if(this.completed=!1,this.aborted=!1,this.upgrade=u||null,this.path=o?NOe(r,o):r,this.origin=t,this.idempotent=a??(n==="HEAD"||n==="GET"),this.blocking=c??!1,this.reset=f??null,this.host=null,this.contentLength=null,this.contentType=null,this.headers=[],this.expectContinue=h??!1,Array.isArray(i)){if(i.length%2!==0)throw new Ht("headers array must be even");for(let m=0;m{"use strict";var MOe=require("node:events"),Vy=class extends MOe{dispatch(){throw new Error("not implemented")}close(){throw new Error("not implemented")}destroy(){throw new Error("not implemented")}compose(...t){let r=Array.isArray(t[0])?t[0]:t,n=this.dispatch.bind(this);for(let s of r)if(s!=null){if(typeof s!="function")throw new TypeError(`invalid interceptor, expected function received ${typeof s}`);if(n=s(n),n==null||typeof n!="function"||n.length!==2)throw new TypeError("invalid interceptor")}return new Q_(this,n)}},Q_=class extends Vy{#e=null;#t=null;constructor(t,r){super(),this.#e=t,this.#t=r}dispatch(...t){this.#t(...t)}close(...t){return this.#e.close(...t)}destroy(...t){return this.#e.destroy(...t)}};HW.exports=Vy});var kA=b((olt,qW)=>{"use strict";var POe=l0(),{ClientDestroyedError:T_,ClientClosedError:UOe,InvalidArgumentError:RA}=ht(),{kDestroy:HOe,kClose:qOe,kClosed:A0,kDestroyed:DA,kDispatch:w_,kInterceptors:hu}=Ot(),Lo=Symbol("onDestroyed"),NA=Symbol("onClosed"),Yy=Symbol("Intercepted Dispatch"),S_=class extends POe{constructor(){super(),this[DA]=!1,this[Lo]=null,this[A0]=!1,this[NA]=[]}get destroyed(){return this[DA]}get closed(){return this[A0]}get interceptors(){return this[hu]}set interceptors(t){if(t){for(let r=t.length-1;r>=0;r--)if(typeof this[hu][r]!="function")throw new RA("interceptor must be an function")}this[hu]=t}close(t){if(t===void 0)return new Promise((n,s)=>{this.close((i,o)=>i?s(i):n(o))});if(typeof t!="function")throw new RA("invalid callback");if(this[DA]){queueMicrotask(()=>t(new T_,null));return}if(this[A0]){this[NA]?this[NA].push(t):queueMicrotask(()=>t(null,null));return}this[A0]=!0,this[NA].push(t);let r=()=>{let n=this[NA];this[NA]=null;for(let s=0;sthis.destroy()).then(()=>{queueMicrotask(r)})}destroy(t,r){if(typeof t=="function"&&(r=t,t=null),r===void 0)return new Promise((s,i)=>{this.destroy(t,(o,a)=>o?i(o):s(a))});if(typeof r!="function")throw new RA("invalid callback");if(this[DA]){this[Lo]?this[Lo].push(r):queueMicrotask(()=>r(null,null));return}t||(t=new T_),this[DA]=!0,this[Lo]=this[Lo]||[],this[Lo].push(r);let n=()=>{let s=this[Lo];this[Lo]=null;for(let i=0;i{queueMicrotask(n)})}[Yy](t,r){if(!this[hu]||this[hu].length===0)return this[Yy]=this[w_],this[w_](t,r);let n=this[w_].bind(this);for(let s=this[hu].length-1;s>=0;s--)n=this[hu][s](n);return this[Yy]=n,n(t,r)}dispatch(t,r){if(!r||typeof r!="object")throw new RA("handler must be an object");try{if(!t||typeof t!="object")throw new RA("opts must be an object.");if(this[DA]||this[Lo])throw new T_;if(this[A0])throw new UOe;return this[Yy](t,r)}catch(n){if(typeof r.onError!="function")throw new RA("invalid onError method");return r.onError(n),!1}}};qW.exports=S_});var L_=b((alt,GW)=>{"use strict";var FA=0,__=1e3,R_=(__>>1)-1,Oo,D_=Symbol("kFastTimer"),Mo=[],N_=-2,k_=-1,YW=0,VW=1;function F_(){FA+=R_;let e=0,t=Mo.length;for(;e=r._idleStart+r._idleTimeout&&(r._state=k_,r._idleStart=-1,r._onTimeout(r._timerArg)),r._state===k_?(r._state=N_,--t!==0&&(Mo[e]=Mo[t])):++e}Mo.length=t,Mo.length!==0&&$W()}function $W(){Oo?Oo.refresh():(clearTimeout(Oo),Oo=setTimeout(F_,R_),Oo.unref&&Oo.unref())}var $y=class{[D_]=!0;_state=N_;_idleTimeout=-1;_idleStart=-1;_onTimeout;_timerArg;constructor(t,r,n){this._onTimeout=t,this._idleTimeout=r,this._timerArg=n,this.refresh()}refresh(){this._state===N_&&Mo.push(this),(!Oo||Mo.length===1)&&$W(),this._state=YW}clear(){this._state=k_,this._idleStart=-1}};GW.exports={setTimeout(e,t,r){return t<=__?setTimeout(e,t,r):new $y(e,t,r)},clearTimeout(e){e[D_]?e.clear():clearTimeout(e)},setFastTimeout(e,t,r){return new $y(e,t,r)},clearFastTimeout(e){e.clear()},now(){return FA},tick(e=0){FA+=e-__+1,F_(),F_()},reset(){FA=0,Mo.length=0,clearTimeout(Oo),Oo=null},kFastTimer:D_}});var f0=b((llt,XW)=>{"use strict";var VOe=require("node:net"),jW=require("node:assert"),zW=Ve(),{InvalidArgumentError:YOe,ConnectTimeoutError:$Oe}=ht(),Gy=L_();function JW(){}var O_,M_;global.FinalizationRegistry&&!(process.env.NODE_V8_COVERAGE||process.env.UNDICI_NO_FG)?M_=class{constructor(t){this._maxCachedSessions=t,this._sessionCache=new Map,this._sessionRegistry=new global.FinalizationRegistry(r=>{if(this._sessionCache.size=this._maxCachedSessions){let{value:n}=this._sessionCache.keys().next();this._sessionCache.delete(n)}this._sessionCache.set(t,r)}}};function GOe({allowH2:e,maxCachedSessions:t,socketPath:r,timeout:n,session:s,...i}){if(t!=null&&(!Number.isInteger(t)||t<0))throw new YOe("maxCachedSessions must be a positive integer or zero");let o={path:r,...i},a=new M_(t??100);return n=n??1e4,e=e??!1,function({hostname:u,host:l,protocol:A,port:f,servername:d,localAddress:h,httpSocket:p},C){let m;if(A==="https:"){O_||(O_=require("node:tls")),d=d||o.servername||zW.getServerName(l)||null;let y=d||u;jW(y);let E=s||a.get(y)||null;f=f||443,m=O_.connect({highWaterMark:16384,...o,servername:d,session:E,localAddress:h,ALPNProtocols:e?["http/1.1","h2"]:["http/1.1"],socket:p,port:f,host:u}),m.on("session",function(B){a.set(y,B)})}else jW(!p,"httpSocket can only be sent on TLS update"),f=f||80,m=VOe.connect({highWaterMark:64*1024,...o,localAddress:h,port:f,host:u});if(o.keepAlive==null||o.keepAlive){let y=o.keepAliveInitialDelay===void 0?6e4:o.keepAliveInitialDelay;m.setKeepAlive(!0,y)}let I=jOe(new WeakRef(m),{timeout:n,hostname:u,port:f});return m.setNoDelay(!0).once(A==="https:"?"secureConnect":"connect",function(){if(queueMicrotask(I),C){let y=C;C=null,y(null,this)}}).on("error",function(y){if(queueMicrotask(I),C){let E=C;C=null,E(y)}}),m}}var jOe=process.platform==="win32"?(e,t)=>{if(!t.timeout)return JW;let r=null,n=null,s=Gy.setFastTimeout(()=>{r=setImmediate(()=>{n=setImmediate(()=>WW(e.deref(),t))})},t.timeout);return()=>{Gy.clearFastTimeout(s),clearImmediate(r),clearImmediate(n)}}:(e,t)=>{if(!t.timeout)return JW;let r=null,n=Gy.setFastTimeout(()=>{r=setImmediate(()=>{WW(e.deref(),t)})},t.timeout);return()=>{Gy.clearFastTimeout(n),clearImmediate(r)}};function WW(e,t){if(e==null)return;let r="Connect Timeout Error";Array.isArray(e.autoSelectFamilyAttemptedAddresses)?r+=` (attempted addresses: ${e.autoSelectFamilyAttemptedAddresses.join(", ")},`:r+=` (attempted address: ${t.hostname}:${t.port},`,r+=` timeout: ${t.timeout}ms)`,zW.destroy(e,new $Oe(r))}XW.exports=GOe});var KW=b(jy=>{"use strict";Object.defineProperty(jy,"__esModule",{value:!0});jy.enumToMap=void 0;function JOe(e){let t={};return Object.keys(e).forEach(r=>{let n=e[r];typeof n=="number"&&(t[r]=n)}),t}jy.enumToMap=JOe});var ZW=b(ne=>{"use strict";Object.defineProperty(ne,"__esModule",{value:!0});ne.SPECIAL_HEADERS=ne.HEADER_STATE=ne.MINOR=ne.MAJOR=ne.CONNECTION_TOKEN_CHARS=ne.HEADER_CHARS=ne.TOKEN=ne.STRICT_TOKEN=ne.HEX=ne.URL_CHAR=ne.STRICT_URL_CHAR=ne.USERINFO_CHARS=ne.MARK=ne.ALPHANUM=ne.NUM=ne.HEX_MAP=ne.NUM_MAP=ne.ALPHA=ne.FINISH=ne.H_METHOD_MAP=ne.METHOD_MAP=ne.METHODS_RTSP=ne.METHODS_ICE=ne.METHODS_HTTP=ne.METHODS=ne.LENIENT_FLAGS=ne.FLAGS=ne.TYPE=ne.ERROR=void 0;var WOe=KW(),zOe;(function(e){e[e.OK=0]="OK",e[e.INTERNAL=1]="INTERNAL",e[e.STRICT=2]="STRICT",e[e.LF_EXPECTED=3]="LF_EXPECTED",e[e.UNEXPECTED_CONTENT_LENGTH=4]="UNEXPECTED_CONTENT_LENGTH",e[e.CLOSED_CONNECTION=5]="CLOSED_CONNECTION",e[e.INVALID_METHOD=6]="INVALID_METHOD",e[e.INVALID_URL=7]="INVALID_URL",e[e.INVALID_CONSTANT=8]="INVALID_CONSTANT",e[e.INVALID_VERSION=9]="INVALID_VERSION",e[e.INVALID_HEADER_TOKEN=10]="INVALID_HEADER_TOKEN",e[e.INVALID_CONTENT_LENGTH=11]="INVALID_CONTENT_LENGTH",e[e.INVALID_CHUNK_SIZE=12]="INVALID_CHUNK_SIZE",e[e.INVALID_STATUS=13]="INVALID_STATUS",e[e.INVALID_EOF_STATE=14]="INVALID_EOF_STATE",e[e.INVALID_TRANSFER_ENCODING=15]="INVALID_TRANSFER_ENCODING",e[e.CB_MESSAGE_BEGIN=16]="CB_MESSAGE_BEGIN",e[e.CB_HEADERS_COMPLETE=17]="CB_HEADERS_COMPLETE",e[e.CB_MESSAGE_COMPLETE=18]="CB_MESSAGE_COMPLETE",e[e.CB_CHUNK_HEADER=19]="CB_CHUNK_HEADER",e[e.CB_CHUNK_COMPLETE=20]="CB_CHUNK_COMPLETE",e[e.PAUSED=21]="PAUSED",e[e.PAUSED_UPGRADE=22]="PAUSED_UPGRADE",e[e.PAUSED_H2_UPGRADE=23]="PAUSED_H2_UPGRADE",e[e.USER=24]="USER"})(zOe=ne.ERROR||(ne.ERROR={}));var XOe;(function(e){e[e.BOTH=0]="BOTH",e[e.REQUEST=1]="REQUEST",e[e.RESPONSE=2]="RESPONSE"})(XOe=ne.TYPE||(ne.TYPE={}));var KOe;(function(e){e[e.CONNECTION_KEEP_ALIVE=1]="CONNECTION_KEEP_ALIVE",e[e.CONNECTION_CLOSE=2]="CONNECTION_CLOSE",e[e.CONNECTION_UPGRADE=4]="CONNECTION_UPGRADE",e[e.CHUNKED=8]="CHUNKED",e[e.UPGRADE=16]="UPGRADE",e[e.CONTENT_LENGTH=32]="CONTENT_LENGTH",e[e.SKIPBODY=64]="SKIPBODY",e[e.TRAILING=128]="TRAILING",e[e.TRANSFER_ENCODING=512]="TRANSFER_ENCODING"})(KOe=ne.FLAGS||(ne.FLAGS={}));var ZOe;(function(e){e[e.HEADERS=1]="HEADERS",e[e.CHUNKED_LENGTH=2]="CHUNKED_LENGTH",e[e.KEEP_ALIVE=4]="KEEP_ALIVE"})(ZOe=ne.LENIENT_FLAGS||(ne.LENIENT_FLAGS={}));var Ee;(function(e){e[e.DELETE=0]="DELETE",e[e.GET=1]="GET",e[e.HEAD=2]="HEAD",e[e.POST=3]="POST",e[e.PUT=4]="PUT",e[e.CONNECT=5]="CONNECT",e[e.OPTIONS=6]="OPTIONS",e[e.TRACE=7]="TRACE",e[e.COPY=8]="COPY",e[e.LOCK=9]="LOCK",e[e.MKCOL=10]="MKCOL",e[e.MOVE=11]="MOVE",e[e.PROPFIND=12]="PROPFIND",e[e.PROPPATCH=13]="PROPPATCH",e[e.SEARCH=14]="SEARCH",e[e.UNLOCK=15]="UNLOCK",e[e.BIND=16]="BIND",e[e.REBIND=17]="REBIND",e[e.UNBIND=18]="UNBIND",e[e.ACL=19]="ACL",e[e.REPORT=20]="REPORT",e[e.MKACTIVITY=21]="MKACTIVITY",e[e.CHECKOUT=22]="CHECKOUT",e[e.MERGE=23]="MERGE",e[e["M-SEARCH"]=24]="M-SEARCH",e[e.NOTIFY=25]="NOTIFY",e[e.SUBSCRIBE=26]="SUBSCRIBE",e[e.UNSUBSCRIBE=27]="UNSUBSCRIBE",e[e.PATCH=28]="PATCH",e[e.PURGE=29]="PURGE",e[e.MKCALENDAR=30]="MKCALENDAR",e[e.LINK=31]="LINK",e[e.UNLINK=32]="UNLINK",e[e.SOURCE=33]="SOURCE",e[e.PRI=34]="PRI",e[e.DESCRIBE=35]="DESCRIBE",e[e.ANNOUNCE=36]="ANNOUNCE",e[e.SETUP=37]="SETUP",e[e.PLAY=38]="PLAY",e[e.PAUSE=39]="PAUSE",e[e.TEARDOWN=40]="TEARDOWN",e[e.GET_PARAMETER=41]="GET_PARAMETER",e[e.SET_PARAMETER=42]="SET_PARAMETER",e[e.REDIRECT=43]="REDIRECT",e[e.RECORD=44]="RECORD",e[e.FLUSH=45]="FLUSH"})(Ee=ne.METHODS||(ne.METHODS={}));ne.METHODS_HTTP=[Ee.DELETE,Ee.GET,Ee.HEAD,Ee.POST,Ee.PUT,Ee.CONNECT,Ee.OPTIONS,Ee.TRACE,Ee.COPY,Ee.LOCK,Ee.MKCOL,Ee.MOVE,Ee.PROPFIND,Ee.PROPPATCH,Ee.SEARCH,Ee.UNLOCK,Ee.BIND,Ee.REBIND,Ee.UNBIND,Ee.ACL,Ee.REPORT,Ee.MKACTIVITY,Ee.CHECKOUT,Ee.MERGE,Ee["M-SEARCH"],Ee.NOTIFY,Ee.SUBSCRIBE,Ee.UNSUBSCRIBE,Ee.PATCH,Ee.PURGE,Ee.MKCALENDAR,Ee.LINK,Ee.UNLINK,Ee.PRI,Ee.SOURCE];ne.METHODS_ICE=[Ee.SOURCE];ne.METHODS_RTSP=[Ee.OPTIONS,Ee.DESCRIBE,Ee.ANNOUNCE,Ee.SETUP,Ee.PLAY,Ee.PAUSE,Ee.TEARDOWN,Ee.GET_PARAMETER,Ee.SET_PARAMETER,Ee.REDIRECT,Ee.RECORD,Ee.FLUSH,Ee.GET,Ee.POST];ne.METHOD_MAP=WOe.enumToMap(Ee);ne.H_METHOD_MAP={};Object.keys(ne.METHOD_MAP).forEach(e=>{/^H/.test(e)&&(ne.H_METHOD_MAP[e]=ne.METHOD_MAP[e])});var e3e;(function(e){e[e.SAFE=0]="SAFE",e[e.SAFE_WITH_CB=1]="SAFE_WITH_CB",e[e.UNSAFE=2]="UNSAFE"})(e3e=ne.FINISH||(ne.FINISH={}));ne.ALPHA=[];for(let e=65;e<=90;e++)ne.ALPHA.push(String.fromCharCode(e)),ne.ALPHA.push(String.fromCharCode(e+32));ne.NUM_MAP={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9};ne.HEX_MAP={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,a:10,b:11,c:12,d:13,e:14,f:15};ne.NUM=["0","1","2","3","4","5","6","7","8","9"];ne.ALPHANUM=ne.ALPHA.concat(ne.NUM);ne.MARK=["-","_",".","!","~","*","'","(",")"];ne.USERINFO_CHARS=ne.ALPHANUM.concat(ne.MARK).concat(["%",";",":","&","=","+","$",","]);ne.STRICT_URL_CHAR=["!",'"',"$","%","&","'","(",")","*","+",",","-",".","/",":",";","<","=",">","@","[","\\","]","^","_","`","{","|","}","~"].concat(ne.ALPHANUM);ne.URL_CHAR=ne.STRICT_URL_CHAR.concat([" ","\f"]);for(let e=128;e<=255;e++)ne.URL_CHAR.push(e);ne.HEX=ne.NUM.concat(["a","b","c","d","e","f","A","B","C","D","E","F"]);ne.STRICT_TOKEN=["!","#","$","%","&","'","*","+","-",".","^","_","`","|","~"].concat(ne.ALPHANUM);ne.TOKEN=ne.STRICT_TOKEN.concat([" "]);ne.HEADER_CHARS=[" "];for(let e=32;e<=255;e++)e!==127&&ne.HEADER_CHARS.push(e);ne.CONNECTION_TOKEN_CHARS=ne.HEADER_CHARS.filter(e=>e!==44);ne.MAJOR=ne.NUM_MAP;ne.MINOR=ne.MAJOR;var LA;(function(e){e[e.GENERAL=0]="GENERAL",e[e.CONNECTION=1]="CONNECTION",e[e.CONTENT_LENGTH=2]="CONTENT_LENGTH",e[e.TRANSFER_ENCODING=3]="TRANSFER_ENCODING",e[e.UPGRADE=4]="UPGRADE",e[e.CONNECTION_KEEP_ALIVE=5]="CONNECTION_KEEP_ALIVE",e[e.CONNECTION_CLOSE=6]="CONNECTION_CLOSE",e[e.CONNECTION_UPGRADE=7]="CONNECTION_UPGRADE",e[e.TRANSFER_ENCODING_CHUNKED=8]="TRANSFER_ENCODING_CHUNKED"})(LA=ne.HEADER_STATE||(ne.HEADER_STATE={}));ne.SPECIAL_HEADERS={connection:LA.CONNECTION,"content-length":LA.CONTENT_LENGTH,"proxy-connection":LA.CONNECTION,"transfer-encoding":LA.TRANSFER_ENCODING,upgrade:LA.UPGRADE}});var P_=b((dlt,ez)=>{"use strict";var{Buffer:t3e}=require("node:buffer");ez.exports=t3e.from("AGFzbQEAAAABJwdgAX8Bf2ADf39/AX9gAX8AYAJ/fwBgBH9/f38Bf2AAAGADf39/AALLAQgDZW52GHdhc21fb25faGVhZGVyc19jb21wbGV0ZQAEA2VudhV3YXNtX29uX21lc3NhZ2VfYmVnaW4AAANlbnYLd2FzbV9vbl91cmwAAQNlbnYOd2FzbV9vbl9zdGF0dXMAAQNlbnYUd2FzbV9vbl9oZWFkZXJfZmllbGQAAQNlbnYUd2FzbV9vbl9oZWFkZXJfdmFsdWUAAQNlbnYMd2FzbV9vbl9ib2R5AAEDZW52GHdhc21fb25fbWVzc2FnZV9jb21wbGV0ZQAAAy0sBQYAAAIAAAAAAAACAQIAAgICAAADAAAAAAMDAwMBAQEBAQEBAQEAAAIAAAAEBQFwARISBQMBAAIGCAF/AUGA1AQLB9EFIgZtZW1vcnkCAAtfaW5pdGlhbGl6ZQAIGV9faW5kaXJlY3RfZnVuY3Rpb25fdGFibGUBAAtsbGh0dHBfaW5pdAAJGGxsaHR0cF9zaG91bGRfa2VlcF9hbGl2ZQAvDGxsaHR0cF9hbGxvYwALBm1hbGxvYwAxC2xsaHR0cF9mcmVlAAwEZnJlZQAMD2xsaHR0cF9nZXRfdHlwZQANFWxsaHR0cF9nZXRfaHR0cF9tYWpvcgAOFWxsaHR0cF9nZXRfaHR0cF9taW5vcgAPEWxsaHR0cF9nZXRfbWV0aG9kABAWbGxodHRwX2dldF9zdGF0dXNfY29kZQAREmxsaHR0cF9nZXRfdXBncmFkZQASDGxsaHR0cF9yZXNldAATDmxsaHR0cF9leGVjdXRlABQUbGxodHRwX3NldHRpbmdzX2luaXQAFQ1sbGh0dHBfZmluaXNoABYMbGxodHRwX3BhdXNlABcNbGxodHRwX3Jlc3VtZQAYG2xsaHR0cF9yZXN1bWVfYWZ0ZXJfdXBncmFkZQAZEGxsaHR0cF9nZXRfZXJybm8AGhdsbGh0dHBfZ2V0X2Vycm9yX3JlYXNvbgAbF2xsaHR0cF9zZXRfZXJyb3JfcmVhc29uABwUbGxodHRwX2dldF9lcnJvcl9wb3MAHRFsbGh0dHBfZXJybm9fbmFtZQAeEmxsaHR0cF9tZXRob2RfbmFtZQAfEmxsaHR0cF9zdGF0dXNfbmFtZQAgGmxsaHR0cF9zZXRfbGVuaWVudF9oZWFkZXJzACEhbGxodHRwX3NldF9sZW5pZW50X2NodW5rZWRfbGVuZ3RoACIdbGxodHRwX3NldF9sZW5pZW50X2tlZXBfYWxpdmUAIyRsbGh0dHBfc2V0X2xlbmllbnRfdHJhbnNmZXJfZW5jb2RpbmcAJBhsbGh0dHBfbWVzc2FnZV9uZWVkc19lb2YALgkXAQBBAQsRAQIDBAUKBgcrLSwqKSglJyYK07MCLBYAQYjQACgCAARAAAtBiNAAQQE2AgALFAAgABAwIAAgAjYCOCAAIAE6ACgLFAAgACAALwEyIAAtAC4gABAvEAALHgEBf0HAABAyIgEQMCABQYAINgI4IAEgADoAKCABC48MAQd/AkAgAEUNACAAQQhrIgEgAEEEaygCACIAQXhxIgRqIQUCQCAAQQFxDQAgAEEDcUUNASABIAEoAgAiAGsiAUGc0AAoAgBJDQEgACAEaiEEAkACQEGg0AAoAgAgAUcEQCAAQf8BTQRAIABBA3YhAyABKAIIIgAgASgCDCICRgRAQYzQAEGM0AAoAgBBfiADd3E2AgAMBQsgAiAANgIIIAAgAjYCDAwECyABKAIYIQYgASABKAIMIgBHBEAgACABKAIIIgI2AgggAiAANgIMDAMLIAFBFGoiAygCACICRQRAIAEoAhAiAkUNAiABQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFKAIEIgBBA3FBA0cNAiAFIABBfnE2AgRBlNAAIAQ2AgAgBSAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCABKAIcIgJBAnRBvNIAaiIDKAIAIAFGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgAUYbaiAANgIAIABFDQELIAAgBjYCGCABKAIQIgIEQCAAIAI2AhAgAiAANgIYCyABQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAFTw0AIAUoAgQiAEEBcUUNAAJAAkACQAJAIABBAnFFBEBBpNAAKAIAIAVGBEBBpNAAIAE2AgBBmNAAQZjQACgCACAEaiIANgIAIAEgAEEBcjYCBCABQaDQACgCAEcNBkGU0ABBADYCAEGg0ABBADYCAAwGC0Gg0AAoAgAgBUYEQEGg0AAgATYCAEGU0ABBlNAAKAIAIARqIgA2AgAgASAAQQFyNgIEIAAgAWogADYCAAwGCyAAQXhxIARqIQQgAEH/AU0EQCAAQQN2IQMgBSgCCCIAIAUoAgwiAkYEQEGM0ABBjNAAKAIAQX4gA3dxNgIADAULIAIgADYCCCAAIAI2AgwMBAsgBSgCGCEGIAUgBSgCDCIARwRAQZzQACgCABogACAFKAIIIgI2AgggAiAANgIMDAMLIAVBFGoiAygCACICRQRAIAUoAhAiAkUNAiAFQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFIABBfnE2AgQgASAEaiAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCAFKAIcIgJBAnRBvNIAaiIDKAIAIAVGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgBUYbaiAANgIAIABFDQELIAAgBjYCGCAFKAIQIgIEQCAAIAI2AhAgAiAANgIYCyAFQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAEaiAENgIAIAEgBEEBcjYCBCABQaDQACgCAEcNAEGU0AAgBDYCAAwBCyAEQf8BTQRAIARBeHFBtNAAaiEAAn9BjNAAKAIAIgJBASAEQQN2dCIDcUUEQEGM0AAgAiADcjYCACAADAELIAAoAggLIgIgATYCDCAAIAE2AgggASAANgIMIAEgAjYCCAwBC0EfIQIgBEH///8HTQRAIARBJiAEQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAgsgASACNgIcIAFCADcCECACQQJ0QbzSAGohAAJAQZDQACgCACIDQQEgAnQiB3FFBEAgACABNgIAQZDQACADIAdyNgIAIAEgADYCGCABIAE2AgggASABNgIMDAELIARBGSACQQF2a0EAIAJBH0cbdCECIAAoAgAhAAJAA0AgACIDKAIEQXhxIARGDQEgAkEddiEAIAJBAXQhAiADIABBBHFqQRBqIgcoAgAiAA0ACyAHIAE2AgAgASADNgIYIAEgATYCDCABIAE2AggMAQsgAygCCCIAIAE2AgwgAyABNgIIIAFBADYCGCABIAM2AgwgASAANgIIC0Gs0ABBrNAAKAIAQQFrIgBBfyAAGzYCAAsLBwAgAC0AKAsHACAALQAqCwcAIAAtACsLBwAgAC0AKQsHACAALwEyCwcAIAAtAC4LQAEEfyAAKAIYIQEgAC0ALSECIAAtACghAyAAKAI4IQQgABAwIAAgBDYCOCAAIAM6ACggACACOgAtIAAgATYCGAu74gECB38DfiABIAJqIQQCQCAAIgIoAgwiAA0AIAIoAgQEQCACIAE2AgQLIwBBEGsiCCQAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAIoAhwiA0EBaw7dAdoBAdkBAgMEBQYHCAkKCwwNDtgBDxDXARES1gETFBUWFxgZGhvgAd8BHB0e1QEfICEiIyQl1AEmJygpKiss0wHSAS0u0QHQAS8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRtsBR0hJSs8BzgFLzQFMzAFNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AAYEBggGDAYQBhQGGAYcBiAGJAYoBiwGMAY0BjgGPAZABkQGSAZMBlAGVAZYBlwGYAZkBmgGbAZwBnQGeAZ8BoAGhAaIBowGkAaUBpgGnAagBqQGqAasBrAGtAa4BrwGwAbEBsgGzAbQBtQG2AbcBywHKAbgByQG5AcgBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgEA3AELQQAMxgELQQ4MxQELQQ0MxAELQQ8MwwELQRAMwgELQRMMwQELQRQMwAELQRUMvwELQRYMvgELQRgMvQELQRkMvAELQRoMuwELQRsMugELQRwMuQELQR0MuAELQQgMtwELQR4MtgELQSAMtQELQR8MtAELQQcMswELQSEMsgELQSIMsQELQSMMsAELQSQMrwELQRIMrgELQREMrQELQSUMrAELQSYMqwELQScMqgELQSgMqQELQcMBDKgBC0EqDKcBC0ErDKYBC0EsDKUBC0EtDKQBC0EuDKMBC0EvDKIBC0HEAQyhAQtBMAygAQtBNAyfAQtBDAyeAQtBMQydAQtBMgycAQtBMwybAQtBOQyaAQtBNQyZAQtBxQEMmAELQQsMlwELQToMlgELQTYMlQELQQoMlAELQTcMkwELQTgMkgELQTwMkQELQTsMkAELQT0MjwELQQkMjgELQSkMjQELQT4MjAELQT8MiwELQcAADIoBC0HBAAyJAQtBwgAMiAELQcMADIcBC0HEAAyGAQtBxQAMhQELQcYADIQBC0EXDIMBC0HHAAyCAQtByAAMgQELQckADIABC0HKAAx/C0HLAAx+C0HNAAx9C0HMAAx8C0HOAAx7C0HPAAx6C0HQAAx5C0HRAAx4C0HSAAx3C0HTAAx2C0HUAAx1C0HWAAx0C0HVAAxzC0EGDHILQdcADHELQQUMcAtB2AAMbwtBBAxuC0HZAAxtC0HaAAxsC0HbAAxrC0HcAAxqC0EDDGkLQd0ADGgLQd4ADGcLQd8ADGYLQeEADGULQeAADGQLQeIADGMLQeMADGILQQIMYQtB5AAMYAtB5QAMXwtB5gAMXgtB5wAMXQtB6AAMXAtB6QAMWwtB6gAMWgtB6wAMWQtB7AAMWAtB7QAMVwtB7gAMVgtB7wAMVQtB8AAMVAtB8QAMUwtB8gAMUgtB8wAMUQtB9AAMUAtB9QAMTwtB9gAMTgtB9wAMTQtB+AAMTAtB+QAMSwtB+gAMSgtB+wAMSQtB/AAMSAtB/QAMRwtB/gAMRgtB/wAMRQtBgAEMRAtBgQEMQwtBggEMQgtBgwEMQQtBhAEMQAtBhQEMPwtBhgEMPgtBhwEMPQtBiAEMPAtBiQEMOwtBigEMOgtBiwEMOQtBjAEMOAtBjQEMNwtBjgEMNgtBjwEMNQtBkAEMNAtBkQEMMwtBkgEMMgtBkwEMMQtBlAEMMAtBlQEMLwtBlgEMLgtBlwEMLQtBmAEMLAtBmQEMKwtBmgEMKgtBmwEMKQtBnAEMKAtBnQEMJwtBngEMJgtBnwEMJQtBoAEMJAtBoQEMIwtBogEMIgtBowEMIQtBpAEMIAtBpQEMHwtBpgEMHgtBpwEMHQtBqAEMHAtBqQEMGwtBqgEMGgtBqwEMGQtBrAEMGAtBrQEMFwtBrgEMFgtBAQwVC0GvAQwUC0GwAQwTC0GxAQwSC0GzAQwRC0GyAQwQC0G0AQwPC0G1AQwOC0G2AQwNC0G3AQwMC0G4AQwLC0G5AQwKC0G6AQwJC0G7AQwIC0HGAQwHC0G8AQwGC0G9AQwFC0G+AQwEC0G/AQwDC0HAAQwCC0HCAQwBC0HBAQshAwNAAkACQAJAAkACQAJAAkACQAJAIAICfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAgJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAn8CQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCADDsYBAAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHyAhIyUmKCorLC8wMTIzNDU2Nzk6Ozw9lANAQkRFRklLTk9QUVJTVFVWWFpbXF1eX2BhYmNkZWZnaGpsb3Bxc3V2eHl6e3x/gAGBAYIBgwGEAYUBhgGHAYgBiQGKAYsBjAGNAY4BjwGQAZEBkgGTAZQBlQGWAZcBmAGZAZoBmwGcAZ0BngGfAaABoQGiAaMBpAGlAaYBpwGoAakBqgGrAawBrQGuAa8BsAGxAbIBswG0AbUBtgG3AbgBuQG6AbsBvAG9Ab4BvwHAAcEBwgHDAcQBxQHGAccByAHJAcsBzAHNAc4BzwGKA4kDiAOHA4QDgwOAA/sC+gL5AvgC9wL0AvMC8gLLAsECsALZAQsgASAERw3wAkHdASEDDLMDCyABIARHDcgBQcMBIQMMsgMLIAEgBEcNe0H3ACEDDLEDCyABIARHDXBB7wAhAwywAwsgASAERw1pQeoAIQMMrwMLIAEgBEcNZUHoACEDDK4DCyABIARHDWJB5gAhAwytAwsgASAERw0aQRghAwysAwsgASAERw0VQRIhAwyrAwsgASAERw1CQcUAIQMMqgMLIAEgBEcNNEE/IQMMqQMLIAEgBEcNMkE8IQMMqAMLIAEgBEcNK0ExIQMMpwMLIAItAC5BAUYNnwMMwQILQQAhAAJAAkACQCACLQAqRQ0AIAItACtFDQAgAi8BMCIDQQJxRQ0BDAILIAIvATAiA0EBcUUNAQtBASEAIAItAChBAUYNACACLwEyIgVB5ABrQeQASQ0AIAVBzAFGDQAgBUGwAkYNACADQcAAcQ0AQQAhACADQYgEcUGABEYNACADQShxQQBHIQALIAJBADsBMCACQQA6AC8gAEUN3wIgAkIANwMgDOACC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAARQ3MASAAQRVHDd0CIAJBBDYCHCACIAE2AhQgAkGwGDYCECACQRU2AgxBACEDDKQDCyABIARGBEBBBiEDDKQDCyABQQFqIQFBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAA3ZAgwcCyACQgA3AyBBEiEDDIkDCyABIARHDRZBHSEDDKEDCyABIARHBEAgAUEBaiEBQRAhAwyIAwtBByEDDKADCyACIAIpAyAiCiAEIAFrrSILfSIMQgAgCiAMWhs3AyAgCiALWA3UAkEIIQMMnwMLIAEgBEcEQCACQQk2AgggAiABNgIEQRQhAwyGAwtBCSEDDJ4DCyACKQMgQgBSDccBIAIgAi8BMEGAAXI7ATAMQgsgASAERw0/QdAAIQMMnAMLIAEgBEYEQEELIQMMnAMLIAFBAWohAUEAIQACQCACKAI4IgNFDQAgAygCUCIDRQ0AIAIgAxEAACEACyAADc8CDMYBC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ3GASAAQRVHDc0CIAJBCzYCHCACIAE2AhQgAkGCGTYCECACQRU2AgxBACEDDJoDC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ0MIABBFUcNygIgAkEaNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMmQMLQQAhAAJAIAIoAjgiA0UNACADKAJMIgNFDQAgAiADEQAAIQALIABFDcQBIABBFUcNxwIgAkELNgIcIAIgATYCFCACQZEXNgIQIAJBFTYCDEEAIQMMmAMLIAEgBEYEQEEPIQMMmAMLIAEtAAAiAEE7Rg0HIABBDUcNxAIgAUEBaiEBDMMBC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3DASAAQRVHDcICIAJBDzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJYDCwNAIAEtAABB8DVqLQAAIgBBAUcEQCAAQQJHDcECIAIoAgQhAEEAIQMgAkEANgIEIAIgACABQQFqIgEQLSIADcICDMUBCyAEIAFBAWoiAUcNAAtBEiEDDJUDC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3FASAAQRVHDb0CIAJBGzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJQDCyABIARGBEBBFiEDDJQDCyACQQo2AgggAiABNgIEQQAhAAJAIAIoAjgiA0UNACADKAJIIgNFDQAgAiADEQAAIQALIABFDcIBIABBFUcNuQIgAkEVNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMkwMLIAEgBEcEQANAIAEtAABB8DdqLQAAIgBBAkcEQAJAIABBAWsOBMQCvQIAvgK9AgsgAUEBaiEBQQghAwz8AgsgBCABQQFqIgFHDQALQRUhAwyTAwtBFSEDDJIDCwNAIAEtAABB8DlqLQAAIgBBAkcEQCAAQQFrDgTFArcCwwK4ArcCCyAEIAFBAWoiAUcNAAtBGCEDDJEDCyABIARHBEAgAkELNgIIIAIgATYCBEEHIQMM+AILQRkhAwyQAwsgAUEBaiEBDAILIAEgBEYEQEEaIQMMjwMLAkAgAS0AAEENaw4UtQG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwEAvwELQQAhAyACQQA2AhwgAkGvCzYCECACQQI2AgwgAiABQQFqNgIUDI4DCyABIARGBEBBGyEDDI4DCyABLQAAIgBBO0cEQCAAQQ1HDbECIAFBAWohAQy6AQsgAUEBaiEBC0EiIQMM8wILIAEgBEYEQEEcIQMMjAMLQgAhCgJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAS0AAEEwaw43wQLAAgABAgMEBQYH0AHQAdAB0AHQAdAB0AEICQoLDA3QAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdABDg8QERIT0AELQgIhCgzAAgtCAyEKDL8CC0IEIQoMvgILQgUhCgy9AgtCBiEKDLwCC0IHIQoMuwILQgghCgy6AgtCCSEKDLkCC0IKIQoMuAILQgshCgy3AgtCDCEKDLYCC0INIQoMtQILQg4hCgy0AgtCDyEKDLMCC0IKIQoMsgILQgshCgyxAgtCDCEKDLACC0INIQoMrwILQg4hCgyuAgtCDyEKDK0CC0IAIQoCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAEtAABBMGsON8ACvwIAAQIDBAUGB74CvgK+Ar4CvgK+Ar4CCAkKCwwNvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ag4PEBESE74CC0ICIQoMvwILQgMhCgy+AgtCBCEKDL0CC0IFIQoMvAILQgYhCgy7AgtCByEKDLoCC0IIIQoMuQILQgkhCgy4AgtCCiEKDLcCC0ILIQoMtgILQgwhCgy1AgtCDSEKDLQCC0IOIQoMswILQg8hCgyyAgtCCiEKDLECC0ILIQoMsAILQgwhCgyvAgtCDSEKDK4CC0IOIQoMrQILQg8hCgysAgsgAiACKQMgIgogBCABa60iC30iDEIAIAogDFobNwMgIAogC1gNpwJBHyEDDIkDCyABIARHBEAgAkEJNgIIIAIgATYCBEElIQMM8AILQSAhAwyIAwtBASEFIAIvATAiA0EIcUUEQCACKQMgQgBSIQULAkAgAi0ALgRAQQEhACACLQApQQVGDQEgA0HAAHFFIAVxRQ0BC0EAIQAgA0HAAHENAEECIQAgA0EIcQ0AIANBgARxBEACQCACLQAoQQFHDQAgAi0ALUEKcQ0AQQUhAAwCC0EEIQAMAQsgA0EgcUUEQAJAIAItAChBAUYNACACLwEyIgBB5ABrQeQASQ0AIABBzAFGDQAgAEGwAkYNAEEEIQAgA0EocUUNAiADQYgEcUGABEYNAgtBACEADAELQQBBAyACKQMgUBshAAsgAEEBaw4FvgIAsAEBpAKhAgtBESEDDO0CCyACQQE6AC8MhAMLIAEgBEcNnQJBJCEDDIQDCyABIARHDRxBxgAhAwyDAwtBACEAAkAgAigCOCIDRQ0AIAMoAkQiA0UNACACIAMRAAAhAAsgAEUNJyAAQRVHDZgCIAJB0AA2AhwgAiABNgIUIAJBkRg2AhAgAkEVNgIMQQAhAwyCAwsgASAERgRAQSghAwyCAwtBACEDIAJBADYCBCACQQw2AgggAiABIAEQKiIARQ2UAiACQSc2AhwgAiABNgIUIAIgADYCDAyBAwsgASAERgRAQSkhAwyBAwsgAS0AACIAQSBGDRMgAEEJRw2VAiABQQFqIQEMFAsgASAERwRAIAFBAWohAQwWC0EqIQMM/wILIAEgBEYEQEErIQMM/wILIAEtAAAiAEEJRyAAQSBHcQ2QAiACLQAsQQhHDd0CIAJBADoALAzdAgsgASAERgRAQSwhAwz+AgsgAS0AAEEKRw2OAiABQQFqIQEMsAELIAEgBEcNigJBLyEDDPwCCwNAIAEtAAAiAEEgRwRAIABBCmsOBIQCiAKIAoQChgILIAQgAUEBaiIBRw0AC0ExIQMM+wILQTIhAyABIARGDfoCIAIoAgAiACAEIAFraiEHIAEgAGtBA2ohBgJAA0AgAEHwO2otAAAgAS0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDQEgAEEDRgRAQQYhAQziAgsgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAc2AgAM+wILIAJBADYCAAyGAgtBMyEDIAQgASIARg35AiAEIAFrIAIoAgAiAWohByAAIAFrQQhqIQYCQANAIAFB9DtqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBCEYEQEEFIQEM4QILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPoCCyACQQA2AgAgACEBDIUCC0E0IQMgBCABIgBGDfgCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgJAA0AgAUHQwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBBUYEQEEHIQEM4AILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPkCCyACQQA2AgAgACEBDIQCCyABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRg0JDIECCyAEIAFBAWoiAUcNAAtBMCEDDPgCC0EwIQMM9wILIAEgBEcEQANAIAEtAAAiAEEgRwRAIABBCmsOBP8B/gH+Af8B/gELIAQgAUEBaiIBRw0AC0E4IQMM9wILQTghAwz2AgsDQCABLQAAIgBBIEcgAEEJR3EN9gEgBCABQQFqIgFHDQALQTwhAwz1AgsDQCABLQAAIgBBIEcEQAJAIABBCmsOBPkBBAT5AQALIABBLEYN9QEMAwsgBCABQQFqIgFHDQALQT8hAwz0AgtBwAAhAyABIARGDfMCIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAEGAQGstAAAgAS0AAEEgckcNASAAQQZGDdsCIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPQCCyACQQA2AgALQTYhAwzZAgsgASAERgRAQcEAIQMM8gILIAJBDDYCCCACIAE2AgQgAi0ALEEBaw4E+wHuAewB6wHUAgsgAUEBaiEBDPoBCyABIARHBEADQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxIgBBCUYNACAAQSBGDQACQAJAAkACQCAAQeMAaw4TAAMDAwMDAwMBAwMDAwMDAwMDAgMLIAFBAWohAUExIQMM3AILIAFBAWohAUEyIQMM2wILIAFBAWohAUEzIQMM2gILDP4BCyAEIAFBAWoiAUcNAAtBNSEDDPACC0E1IQMM7wILIAEgBEcEQANAIAEtAABBgDxqLQAAQQFHDfcBIAQgAUEBaiIBRw0AC0E9IQMM7wILQT0hAwzuAgtBACEAAkAgAigCOCIDRQ0AIAMoAkAiA0UNACACIAMRAAAhAAsgAEUNASAAQRVHDeYBIAJBwgA2AhwgAiABNgIUIAJB4xg2AhAgAkEVNgIMQQAhAwztAgsgAUEBaiEBC0E8IQMM0gILIAEgBEYEQEHCACEDDOsCCwJAA0ACQCABLQAAQQlrDhgAAswCzALRAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAgDMAgsgBCABQQFqIgFHDQALQcIAIQMM6wILIAFBAWohASACLQAtQQFxRQ3+AQtBLCEDDNACCyABIARHDd4BQcQAIQMM6AILA0AgAS0AAEGQwABqLQAAQQFHDZwBIAQgAUEBaiIBRw0AC0HFACEDDOcCCyABLQAAIgBBIEYN/gEgAEE6Rw3AAiACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgAN3gEM3QELQccAIQMgBCABIgBGDeUCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFBkMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvwIgAUEFRg3CAiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzlAgtByAAhAyAEIAEiAEYN5AIgBCABayACKAIAIgFqIQcgACABa0EJaiEGA0AgAUGWwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw2+AkECIAFBCUYNwgIaIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOQCCyABIARGBEBByQAhAwzkAgsCQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxQe4Aaw4HAL8CvwK/Ar8CvwIBvwILIAFBAWohAUE+IQMMywILIAFBAWohAUE/IQMMygILQcoAIQMgBCABIgBGDeICIAQgAWsgAigCACIBaiEGIAAgAWtBAWohBwNAIAFBoMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvAIgAUEBRg2+AiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBjYCAAziAgtBywAhAyAEIAEiAEYN4QIgBCABayACKAIAIgFqIQcgACABa0EOaiEGA0AgAUGiwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw27AiABQQ5GDb4CIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOECC0HMACEDIAQgASIARg3gAiAEIAFrIAIoAgAiAWohByAAIAFrQQ9qIQYDQCABQcDCAGotAAAgAC0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDboCQQMgAUEPRg2+AhogAUEBaiEBIAQgAEEBaiIARw0ACyACIAc2AgAM4AILQc0AIQMgBCABIgBGDd8CIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFB0MIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNuQJBBCABQQVGDb0CGiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzfAgsgASAERgRAQc4AIQMM3wILAkACQAJAAkAgAS0AACIAQSByIAAgAEHBAGtB/wFxQRpJG0H/AXFB4wBrDhMAvAK8ArwCvAK8ArwCvAK8ArwCvAK8ArwCAbwCvAK8AgIDvAILIAFBAWohAUHBACEDDMgCCyABQQFqIQFBwgAhAwzHAgsgAUEBaiEBQcMAIQMMxgILIAFBAWohAUHEACEDDMUCCyABIARHBEAgAkENNgIIIAIgATYCBEHFACEDDMUCC0HPACEDDN0CCwJAAkAgAS0AAEEKaw4EAZABkAEAkAELIAFBAWohAQtBKCEDDMMCCyABIARGBEBB0QAhAwzcAgsgAS0AAEEgRw0AIAFBAWohASACLQAtQQFxRQ3QAQtBFyEDDMECCyABIARHDcsBQdIAIQMM2QILQdMAIQMgASAERg3YAiACKAIAIgAgBCABa2ohBiABIABrQQFqIQUDQCABLQAAIABB1sIAai0AAEcNxwEgAEEBRg3KASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBjYCAAzYAgsgASAERgRAQdUAIQMM2AILIAEtAABBCkcNwgEgAUEBaiEBDMoBCyABIARGBEBB1gAhAwzXAgsCQAJAIAEtAABBCmsOBADDAcMBAcMBCyABQQFqIQEMygELIAFBAWohAUHKACEDDL0CC0EAIQACQCACKAI4IgNFDQAgAygCPCIDRQ0AIAIgAxEAACEACyAADb8BQc0AIQMMvAILIAItAClBIkYNzwIMiQELIAQgASIFRgRAQdsAIQMM1AILQQAhAEEBIQFBASEGQQAhAwJAAn8CQAJAAkACQAJAAkACQCAFLQAAQTBrDgrFAcQBAAECAwQFBgjDAQtBAgwGC0EDDAULQQQMBAtBBQwDC0EGDAILQQcMAQtBCAshA0EAIQFBACEGDL0BC0EJIQNBASEAQQAhAUEAIQYMvAELIAEgBEYEQEHdACEDDNMCCyABLQAAQS5HDbgBIAFBAWohAQyIAQsgASAERw22AUHfACEDDNECCyABIARHBEAgAkEONgIIIAIgATYCBEHQACEDDLgCC0HgACEDDNACC0HhACEDIAEgBEYNzwIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGA0AgAS0AACAAQeLCAGotAABHDbEBIABBA0YNswEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMzwILQeIAIQMgASAERg3OAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYDQCABLQAAIABB5sIAai0AAEcNsAEgAEECRg2vASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAzOAgtB4wAhAyABIARGDc0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgNAIAEtAAAgAEHpwgBqLQAARw2vASAAQQNGDa0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADM0CCyABIARGBEBB5QAhAwzNAgsgAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANqgFB1gAhAwyzAgsgASAERwRAA0AgAS0AACIAQSBHBEACQAJAAkAgAEHIAGsOCwABswGzAbMBswGzAbMBswGzAQKzAQsgAUEBaiEBQdIAIQMMtwILIAFBAWohAUHTACEDDLYCCyABQQFqIQFB1AAhAwy1AgsgBCABQQFqIgFHDQALQeQAIQMMzAILQeQAIQMMywILA0AgAS0AAEHwwgBqLQAAIgBBAUcEQCAAQQJrDgOnAaYBpQGkAQsgBCABQQFqIgFHDQALQeYAIQMMygILIAFBAWogASAERw0CGkHnACEDDMkCCwNAIAEtAABB8MQAai0AACIAQQFHBEACQCAAQQJrDgSiAaEBoAEAnwELQdcAIQMMsQILIAQgAUEBaiIBRw0AC0HoACEDDMgCCyABIARGBEBB6QAhAwzIAgsCQCABLQAAIgBBCmsOGrcBmwGbAbQBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBpAGbAZsBAJkBCyABQQFqCyEBQQYhAwytAgsDQCABLQAAQfDGAGotAABBAUcNfSAEIAFBAWoiAUcNAAtB6gAhAwzFAgsgAUEBaiABIARHDQIaQesAIQMMxAILIAEgBEYEQEHsACEDDMQCCyABQQFqDAELIAEgBEYEQEHtACEDDMMCCyABQQFqCyEBQQQhAwyoAgsgASAERgRAQe4AIQMMwQILAkACQAJAIAEtAABB8MgAai0AAEEBaw4HkAGPAY4BAHwBAo0BCyABQQFqIQEMCwsgAUEBagyTAQtBACEDIAJBADYCHCACQZsSNgIQIAJBBzYCDCACIAFBAWo2AhQMwAILAkADQCABLQAAQfDIAGotAAAiAEEERwRAAkACQCAAQQFrDgeUAZMBkgGNAQAEAY0BC0HaACEDDKoCCyABQQFqIQFB3AAhAwypAgsgBCABQQFqIgFHDQALQe8AIQMMwAILIAFBAWoMkQELIAQgASIARgRAQfAAIQMMvwILIAAtAABBL0cNASAAQQFqIQEMBwsgBCABIgBGBEBB8QAhAwy+AgsgAC0AACIBQS9GBEAgAEEBaiEBQd0AIQMMpQILIAFBCmsiA0EWSw0AIAAhAUEBIAN0QYmAgAJxDfkBC0EAIQMgAkEANgIcIAIgADYCFCACQYwcNgIQIAJBBzYCDAy8AgsgASAERwRAIAFBAWohAUHeACEDDKMCC0HyACEDDLsCCyABIARGBEBB9AAhAwy7AgsCQCABLQAAQfDMAGotAABBAWsOA/cBcwCCAQtB4QAhAwyhAgsgASAERwRAA0AgAS0AAEHwygBqLQAAIgBBA0cEQAJAIABBAWsOAvkBAIUBC0HfACEDDKMCCyAEIAFBAWoiAUcNAAtB8wAhAwy6AgtB8wAhAwy5AgsgASAERwRAIAJBDzYCCCACIAE2AgRB4AAhAwygAgtB9QAhAwy4AgsgASAERgRAQfYAIQMMuAILIAJBDzYCCCACIAE2AgQLQQMhAwydAgsDQCABLQAAQSBHDY4CIAQgAUEBaiIBRw0AC0H3ACEDDLUCCyABIARGBEBB+AAhAwy1AgsgAS0AAEEgRw16IAFBAWohAQxbC0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAADXgMgAILIAEgBEYEQEH6ACEDDLMCCyABLQAAQcwARw10IAFBAWohAUETDHYLQfsAIQMgASAERg2xAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYDQCABLQAAIABB8M4Aai0AAEcNcyAAQQVGDXUgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMsQILIAEgBEYEQEH8ACEDDLECCwJAAkAgAS0AAEHDAGsODAB0dHR0dHR0dHR0AXQLIAFBAWohAUHmACEDDJgCCyABQQFqIQFB5wAhAwyXAgtB/QAhAyABIARGDa8CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDXIgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADLACCyACQQA2AgAgBkEBaiEBQRAMcwtB/gAhAyABIARGDa4CIAIoAgAiACAEIAFraiEFIAEgAGtBBWohBgJAA0AgAS0AACAAQfbOAGotAABHDXEgAEEFRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK8CCyACQQA2AgAgBkEBaiEBQRYMcgtB/wAhAyABIARGDa0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQfzOAGotAABHDXAgAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK4CCyACQQA2AgAgBkEBaiEBQQUMcQsgASAERgRAQYABIQMMrQILIAEtAABB2QBHDW4gAUEBaiEBQQgMcAsgASAERgRAQYEBIQMMrAILAkACQCABLQAAQc4Aaw4DAG8BbwsgAUEBaiEBQesAIQMMkwILIAFBAWohAUHsACEDDJICCyABIARGBEBBggEhAwyrAgsCQAJAIAEtAABByABrDggAbm5ubm5uAW4LIAFBAWohAUHqACEDDJICCyABQQFqIQFB7QAhAwyRAgtBgwEhAyABIARGDakCIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQYDPAGotAABHDWwgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKoCCyACQQA2AgAgBkEBaiEBQQAMbQtBhAEhAyABIARGDagCIAIoAgAiACAEIAFraiEFIAEgAGtBBGohBgJAA0AgAS0AACAAQYPPAGotAABHDWsgAEEERg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKkCCyACQQA2AgAgBkEBaiEBQSMMbAsgASAERgRAQYUBIQMMqAILAkACQCABLQAAQcwAaw4IAGtra2trawFrCyABQQFqIQFB7wAhAwyPAgsgAUEBaiEBQfAAIQMMjgILIAEgBEYEQEGGASEDDKcCCyABLQAAQcUARw1oIAFBAWohAQxgC0GHASEDIAEgBEYNpQIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGAkADQCABLQAAIABBiM8Aai0AAEcNaCAAQQNGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpgILIAJBADYCACAGQQFqIQFBLQxpC0GIASEDIAEgBEYNpAIgAigCACIAIAQgAWtqIQUgASAAa0EIaiEGAkADQCABLQAAIABB0M8Aai0AAEcNZyAAQQhGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpQILIAJBADYCACAGQQFqIQFBKQxoCyABIARGBEBBiQEhAwykAgtBASABLQAAQd8ARw1nGiABQQFqIQEMXgtBigEhAyABIARGDaICIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgNAIAEtAAAgAEGMzwBqLQAARw1kIABBAUYN+gEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMogILQYsBIQMgASAERg2hAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGOzwBqLQAARw1kIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyiAgsgAkEANgIAIAZBAWohAUECDGULQYwBIQMgASAERg2gAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHwzwBqLQAARw1jIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyhAgsgAkEANgIAIAZBAWohAUEfDGQLQY0BIQMgASAERg2fAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHyzwBqLQAARw1iIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAygAgsgAkEANgIAIAZBAWohAUEJDGMLIAEgBEYEQEGOASEDDJ8CCwJAAkAgAS0AAEHJAGsOBwBiYmJiYgFiCyABQQFqIQFB+AAhAwyGAgsgAUEBaiEBQfkAIQMMhQILQY8BIQMgASAERg2dAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGRzwBqLQAARw1gIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyeAgsgAkEANgIAIAZBAWohAUEYDGELQZABIQMgASAERg2cAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGXzwBqLQAARw1fIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAydAgsgAkEANgIAIAZBAWohAUEXDGALQZEBIQMgASAERg2bAiACKAIAIgAgBCABa2ohBSABIABrQQZqIQYCQANAIAEtAAAgAEGazwBqLQAARw1eIABBBkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAycAgsgAkEANgIAIAZBAWohAUEVDF8LQZIBIQMgASAERg2aAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGhzwBqLQAARw1dIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAybAgsgAkEANgIAIAZBAWohAUEeDF4LIAEgBEYEQEGTASEDDJoCCyABLQAAQcwARw1bIAFBAWohAUEKDF0LIAEgBEYEQEGUASEDDJkCCwJAAkAgAS0AAEHBAGsODwBcXFxcXFxcXFxcXFxcAVwLIAFBAWohAUH+ACEDDIACCyABQQFqIQFB/wAhAwz/AQsgASAERgRAQZUBIQMMmAILAkACQCABLQAAQcEAaw4DAFsBWwsgAUEBaiEBQf0AIQMM/wELIAFBAWohAUGAASEDDP4BC0GWASEDIAEgBEYNlgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBp88Aai0AAEcNWSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlwILIAJBADYCACAGQQFqIQFBCwxaCyABIARGBEBBlwEhAwyWAgsCQAJAAkACQCABLQAAQS1rDiMAW1tbW1tbW1tbW1tbW1tbW1tbW1tbW1sBW1tbW1sCW1tbA1sLIAFBAWohAUH7ACEDDP8BCyABQQFqIQFB/AAhAwz+AQsgAUEBaiEBQYEBIQMM/QELIAFBAWohAUGCASEDDPwBC0GYASEDIAEgBEYNlAIgAigCACIAIAQgAWtqIQUgASAAa0EEaiEGAkADQCABLQAAIABBqc8Aai0AAEcNVyAAQQRGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlQILIAJBADYCACAGQQFqIQFBGQxYC0GZASEDIAEgBEYNkwIgAigCACIAIAQgAWtqIQUgASAAa0EFaiEGAkADQCABLQAAIABBrs8Aai0AAEcNViAAQQVGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlAILIAJBADYCACAGQQFqIQFBBgxXC0GaASEDIAEgBEYNkgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBtM8Aai0AAEcNVSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkwILIAJBADYCACAGQQFqIQFBHAxWC0GbASEDIAEgBEYNkQIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBts8Aai0AAEcNVCAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkgILIAJBADYCACAGQQFqIQFBJwxVCyABIARGBEBBnAEhAwyRAgsCQAJAIAEtAABB1ABrDgIAAVQLIAFBAWohAUGGASEDDPgBCyABQQFqIQFBhwEhAwz3AQtBnQEhAyABIARGDY8CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbjPAGotAABHDVIgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADJACCyACQQA2AgAgBkEBaiEBQSYMUwtBngEhAyABIARGDY4CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbrPAGotAABHDVEgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI8CCyACQQA2AgAgBkEBaiEBQQMMUgtBnwEhAyABIARGDY0CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDVAgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI4CCyACQQA2AgAgBkEBaiEBQQwMUQtBoAEhAyABIARGDYwCIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQbzPAGotAABHDU8gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI0CCyACQQA2AgAgBkEBaiEBQQ0MUAsgASAERgRAQaEBIQMMjAILAkACQCABLQAAQcYAaw4LAE9PT09PT09PTwFPCyABQQFqIQFBiwEhAwzzAQsgAUEBaiEBQYwBIQMM8gELIAEgBEYEQEGiASEDDIsCCyABLQAAQdAARw1MIAFBAWohAQxGCyABIARGBEBBowEhAwyKAgsCQAJAIAEtAABByQBrDgcBTU1NTU0ATQsgAUEBaiEBQY4BIQMM8QELIAFBAWohAUEiDE0LQaQBIQMgASAERg2IAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHAzwBqLQAARw1LIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyJAgsgAkEANgIAIAZBAWohAUEdDEwLIAEgBEYEQEGlASEDDIgCCwJAAkAgAS0AAEHSAGsOAwBLAUsLIAFBAWohAUGQASEDDO8BCyABQQFqIQFBBAxLCyABIARGBEBBpgEhAwyHAgsCQAJAAkACQAJAIAEtAABBwQBrDhUATU1NTU1NTU1NTQFNTQJNTQNNTQRNCyABQQFqIQFBiAEhAwzxAQsgAUEBaiEBQYkBIQMM8AELIAFBAWohAUGKASEDDO8BCyABQQFqIQFBjwEhAwzuAQsgAUEBaiEBQZEBIQMM7QELQacBIQMgASAERg2FAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHtzwBqLQAARw1IIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyGAgsgAkEANgIAIAZBAWohAUERDEkLQagBIQMgASAERg2EAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHCzwBqLQAARw1HIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyFAgsgAkEANgIAIAZBAWohAUEsDEgLQakBIQMgASAERg2DAiACKAIAIgAgBCABa2ohBSABIABrQQRqIQYCQANAIAEtAAAgAEHFzwBqLQAARw1GIABBBEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyEAgsgAkEANgIAIAZBAWohAUErDEcLQaoBIQMgASAERg2CAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHKzwBqLQAARw1FIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyDAgsgAkEANgIAIAZBAWohAUEUDEYLIAEgBEYEQEGrASEDDIICCwJAAkACQAJAIAEtAABBwgBrDg8AAQJHR0dHR0dHR0dHRwNHCyABQQFqIQFBkwEhAwzrAQsgAUEBaiEBQZQBIQMM6gELIAFBAWohAUGVASEDDOkBCyABQQFqIQFBlgEhAwzoAQsgASAERgRAQawBIQMMgQILIAEtAABBxQBHDUIgAUEBaiEBDD0LQa0BIQMgASAERg3/ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHNzwBqLQAARw1CIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyAAgsgAkEANgIAIAZBAWohAUEODEMLIAEgBEYEQEGuASEDDP8BCyABLQAAQdAARw1AIAFBAWohAUElDEILQa8BIQMgASAERg39ASACKAIAIgAgBCABa2ohBSABIABrQQhqIQYCQANAIAEtAAAgAEHQzwBqLQAARw1AIABBCEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz+AQsgAkEANgIAIAZBAWohAUEqDEELIAEgBEYEQEGwASEDDP0BCwJAAkAgAS0AAEHVAGsOCwBAQEBAQEBAQEABQAsgAUEBaiEBQZoBIQMM5AELIAFBAWohAUGbASEDDOMBCyABIARGBEBBsQEhAwz8AQsCQAJAIAEtAABBwQBrDhQAPz8/Pz8/Pz8/Pz8/Pz8/Pz8/AT8LIAFBAWohAUGZASEDDOMBCyABQQFqIQFBnAEhAwziAQtBsgEhAyABIARGDfoBIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQdnPAGotAABHDT0gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPsBCyACQQA2AgAgBkEBaiEBQSEMPgtBswEhAyABIARGDfkBIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAS0AACAAQd3PAGotAABHDTwgAEEGRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPoBCyACQQA2AgAgBkEBaiEBQRoMPQsgASAERgRAQbQBIQMM+QELAkACQAJAIAEtAABBxQBrDhEAPT09PT09PT09AT09PT09Aj0LIAFBAWohAUGdASEDDOEBCyABQQFqIQFBngEhAwzgAQsgAUEBaiEBQZ8BIQMM3wELQbUBIQMgASAERg33ASACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEHkzwBqLQAARw06IABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz4AQsgAkEANgIAIAZBAWohAUEoDDsLQbYBIQMgASAERg32ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHqzwBqLQAARw05IABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz3AQsgAkEANgIAIAZBAWohAUEHDDoLIAEgBEYEQEG3ASEDDPYBCwJAAkAgAS0AAEHFAGsODgA5OTk5OTk5OTk5OTkBOQsgAUEBaiEBQaEBIQMM3QELIAFBAWohAUGiASEDDNwBC0G4ASEDIAEgBEYN9AEgAigCACIAIAQgAWtqIQUgASAAa0ECaiEGAkADQCABLQAAIABB7c8Aai0AAEcNNyAAQQJGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9QELIAJBADYCACAGQQFqIQFBEgw4C0G5ASEDIAEgBEYN8wEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8M8Aai0AAEcNNiAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9AELIAJBADYCACAGQQFqIQFBIAw3C0G6ASEDIAEgBEYN8gEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8s8Aai0AAEcNNSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8wELIAJBADYCACAGQQFqIQFBDww2CyABIARGBEBBuwEhAwzyAQsCQAJAIAEtAABByQBrDgcANTU1NTUBNQsgAUEBaiEBQaUBIQMM2QELIAFBAWohAUGmASEDDNgBC0G8ASEDIAEgBEYN8AEgAigCACIAIAQgAWtqIQUgASAAa0EHaiEGAkADQCABLQAAIABB9M8Aai0AAEcNMyAAQQdGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8QELIAJBADYCACAGQQFqIQFBGww0CyABIARGBEBBvQEhAwzwAQsCQAJAAkAgAS0AAEHCAGsOEgA0NDQ0NDQ0NDQBNDQ0NDQ0AjQLIAFBAWohAUGkASEDDNgBCyABQQFqIQFBpwEhAwzXAQsgAUEBaiEBQagBIQMM1gELIAEgBEYEQEG+ASEDDO8BCyABLQAAQc4ARw0wIAFBAWohAQwsCyABIARGBEBBvwEhAwzuAQsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCABLQAAQcEAaw4VAAECAz8EBQY/Pz8HCAkKCz8MDQ4PPwsgAUEBaiEBQegAIQMM4wELIAFBAWohAUHpACEDDOIBCyABQQFqIQFB7gAhAwzhAQsgAUEBaiEBQfIAIQMM4AELIAFBAWohAUHzACEDDN8BCyABQQFqIQFB9gAhAwzeAQsgAUEBaiEBQfcAIQMM3QELIAFBAWohAUH6ACEDDNwBCyABQQFqIQFBgwEhAwzbAQsgAUEBaiEBQYQBIQMM2gELIAFBAWohAUGFASEDDNkBCyABQQFqIQFBkgEhAwzYAQsgAUEBaiEBQZgBIQMM1wELIAFBAWohAUGgASEDDNYBCyABQQFqIQFBowEhAwzVAQsgAUEBaiEBQaoBIQMM1AELIAEgBEcEQCACQRA2AgggAiABNgIEQasBIQMM1AELQcABIQMM7AELQQAhAAJAIAIoAjgiA0UNACADKAI0IgNFDQAgAiADEQAAIQALIABFDV4gAEEVRw0HIAJB0QA2AhwgAiABNgIUIAJBsBc2AhAgAkEVNgIMQQAhAwzrAQsgAUEBaiABIARHDQgaQcIBIQMM6gELA0ACQCABLQAAQQprDgQIAAALAAsgBCABQQFqIgFHDQALQcMBIQMM6QELIAEgBEcEQCACQRE2AgggAiABNgIEQQEhAwzQAQtBxAEhAwzoAQsgASAERgRAQcUBIQMM6AELAkACQCABLQAAQQprDgQBKCgAKAsgAUEBagwJCyABQQFqDAULIAEgBEYEQEHGASEDDOcBCwJAAkAgAS0AAEEKaw4XAQsLAQsLCwsLCwsLCwsLCwsLCwsLCwALCyABQQFqIQELQbABIQMMzQELIAEgBEYEQEHIASEDDOYBCyABLQAAQSBHDQkgAkEAOwEyIAFBAWohAUGzASEDDMwBCwNAIAEhAAJAIAEgBEcEQCABLQAAQTBrQf8BcSIDQQpJDQEMJwtBxwEhAwzmAQsCQCACLwEyIgFBmTNLDQAgAiABQQpsIgU7ATIgBUH+/wNxIANB//8Dc0sNACAAQQFqIQEgAiADIAVqIgM7ATIgA0H//wNxQegHSQ0BCwtBACEDIAJBADYCHCACQcEJNgIQIAJBDTYCDCACIABBAWo2AhQM5AELIAJBADYCHCACIAE2AhQgAkHwDDYCECACQRs2AgxBACEDDOMBCyACKAIEIQAgAkEANgIEIAIgACABECYiAA0BIAFBAWoLIQFBrQEhAwzIAQsgAkHBATYCHCACIAA2AgwgAiABQQFqNgIUQQAhAwzgAQsgAigCBCEAIAJBADYCBCACIAAgARAmIgANASABQQFqCyEBQa4BIQMMxQELIAJBwgE2AhwgAiAANgIMIAIgAUEBajYCFEEAIQMM3QELIAJBADYCHCACIAE2AhQgAkGXCzYCECACQQ02AgxBACEDDNwBCyACQQA2AhwgAiABNgIUIAJB4xA2AhAgAkEJNgIMQQAhAwzbAQsgAkECOgAoDKwBC0EAIQMgAkEANgIcIAJBrws2AhAgAkECNgIMIAIgAUEBajYCFAzZAQtBAiEDDL8BC0ENIQMMvgELQSYhAwy9AQtBFSEDDLwBC0EWIQMMuwELQRghAwy6AQtBHCEDDLkBC0EdIQMMuAELQSAhAwy3AQtBISEDDLYBC0EjIQMMtQELQcYAIQMMtAELQS4hAwyzAQtBPSEDDLIBC0HLACEDDLEBC0HOACEDDLABC0HYACEDDK8BC0HZACEDDK4BC0HbACEDDK0BC0HxACEDDKwBC0H0ACEDDKsBC0GNASEDDKoBC0GXASEDDKkBC0GpASEDDKgBC0GvASEDDKcBC0GxASEDDKYBCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB8Rs2AhAgAkEGNgIMDL0BCyACQQA2AgAgBkEBaiEBQSQLOgApIAIoAgQhACACQQA2AgQgAiAAIAEQJyIARQRAQeUAIQMMowELIAJB+QA2AhwgAiABNgIUIAIgADYCDEEAIQMMuwELIABBFUcEQCACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwy7AQsgAkH4ADYCHCACIAE2AhQgAkHKGDYCECACQRU2AgxBACEDDLoBCyACQQA2AhwgAiABNgIUIAJBjhs2AhAgAkEGNgIMQQAhAwy5AQsgAkEANgIcIAIgATYCFCACQf4RNgIQIAJBBzYCDEEAIQMMuAELIAJBADYCHCACIAE2AhQgAkGMHDYCECACQQc2AgxBACEDDLcBCyACQQA2AhwgAiABNgIUIAJBww82AhAgAkEHNgIMQQAhAwy2AQsgAkEANgIcIAIgATYCFCACQcMPNgIQIAJBBzYCDEEAIQMMtQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0RIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMtAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0gIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMswELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0iIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMsgELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0OIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMsQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0dIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMsAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0fIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMrwELIABBP0cNASABQQFqCyEBQQUhAwyUAQtBACEDIAJBADYCHCACIAE2AhQgAkH9EjYCECACQQc2AgwMrAELIAJBADYCHCACIAE2AhQgAkHcCDYCECACQQc2AgxBACEDDKsBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNByACQeUANgIcIAIgATYCFCACIAA2AgxBACEDDKoBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNFiACQdMANgIcIAIgATYCFCACIAA2AgxBACEDDKkBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNGCACQdIANgIcIAIgATYCFCACIAA2AgxBACEDDKgBCyACQQA2AhwgAiABNgIUIAJBxgo2AhAgAkEHNgIMQQAhAwynAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQMgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwymAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRIgAkHTADYCHCACIAE2AhQgAiAANgIMQQAhAwylAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRQgAkHSADYCHCACIAE2AhQgAiAANgIMQQAhAwykAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQAgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwyjAQtB1QAhAwyJAQsgAEEVRwRAIAJBADYCHCACIAE2AhQgAkG5DTYCECACQRo2AgxBACEDDKIBCyACQeQANgIcIAIgATYCFCACQeMXNgIQIAJBFTYCDEEAIQMMoQELIAJBADYCACAGQQFqIQEgAi0AKSIAQSNrQQtJDQQCQCAAQQZLDQBBASAAdEHKAHFFDQAMBQtBACEDIAJBADYCHCACIAE2AhQgAkH3CTYCECACQQg2AgwMoAELIAJBADYCACAGQQFqIQEgAi0AKUEhRg0DIAJBADYCHCACIAE2AhQgAkGbCjYCECACQQg2AgxBACEDDJ8BCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJBkDM2AhAgAkEINgIMDJ0BCyACQQA2AgAgBkEBaiEBIAItAClBI0kNACACQQA2AhwgAiABNgIUIAJB0wk2AhAgAkEINgIMQQAhAwycAQtB0QAhAwyCAQsgAS0AAEEwayIAQf8BcUEKSQRAIAIgADoAKiABQQFqIQFBzwAhAwyCAQsgAigCBCEAIAJBADYCBCACIAAgARAoIgBFDYYBIAJB3gA2AhwgAiABNgIUIAIgADYCDEEAIQMMmgELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ2GASACQdwANgIcIAIgATYCFCACIAA2AgxBACEDDJkBCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMhwELIAJB2gA2AhwgAiAFNgIUIAIgADYCDAyYAQtBACEBQQEhAwsgAiADOgArIAVBAWohAwJAAkACQCACLQAtQRBxDQACQAJAAkAgAi0AKg4DAQACBAsgBkUNAwwCCyAADQEMAgsgAUUNAQsgAigCBCEAIAJBADYCBCACIAAgAxAoIgBFBEAgAyEBDAILIAJB2AA2AhwgAiADNgIUIAIgADYCDEEAIQMMmAELIAIoAgQhACACQQA2AgQgAiAAIAMQKCIARQRAIAMhAQyHAQsgAkHZADYCHCACIAM2AhQgAiAANgIMQQAhAwyXAQtBzAAhAwx9CyAAQRVHBEAgAkEANgIcIAIgATYCFCACQZQNNgIQIAJBITYCDEEAIQMMlgELIAJB1wA2AhwgAiABNgIUIAJByRc2AhAgAkEVNgIMQQAhAwyVAQtBACEDIAJBADYCHCACIAE2AhQgAkGAETYCECACQQk2AgwMlAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0AIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMkwELQckAIQMMeQsgAkEANgIcIAIgATYCFCACQcEoNgIQIAJBBzYCDCACQQA2AgBBACEDDJEBCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAlIgBFDQAgAkHSADYCHCACIAE2AhQgAiAANgIMDJABC0HIACEDDHYLIAJBADYCACAFIQELIAJBgBI7ASogAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANAQtBxwAhAwxzCyAAQRVGBEAgAkHRADYCHCACIAE2AhQgAkHjFzYCECACQRU2AgxBACEDDIwBC0EAIQMgAkEANgIcIAIgATYCFCACQbkNNgIQIAJBGjYCDAyLAQtBACEDIAJBADYCHCACIAE2AhQgAkGgGTYCECACQR42AgwMigELIAEtAABBOkYEQCACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgBFDQEgAkHDADYCHCACIAA2AgwgAiABQQFqNgIUDIoBC0EAIQMgAkEANgIcIAIgATYCFCACQbERNgIQIAJBCjYCDAyJAQsgAUEBaiEBQTshAwxvCyACQcMANgIcIAIgADYCDCACIAFBAWo2AhQMhwELQQAhAyACQQA2AhwgAiABNgIUIAJB8A42AhAgAkEcNgIMDIYBCyACIAIvATBBEHI7ATAMZgsCQCACLwEwIgBBCHFFDQAgAi0AKEEBRw0AIAItAC1BCHFFDQMLIAIgAEH3+wNxQYAEcjsBMAwECyABIARHBEACQANAIAEtAABBMGsiAEH/AXFBCk8EQEE1IQMMbgsgAikDICIKQpmz5syZs+bMGVYNASACIApCCn4iCjcDICAKIACtQv8BgyILQn+FVg0BIAIgCiALfDcDICAEIAFBAWoiAUcNAAtBOSEDDIUBCyACKAIEIQBBACEDIAJBADYCBCACIAAgAUEBaiIBECoiAA0MDHcLQTkhAwyDAQsgAi0AMEEgcQ0GQcUBIQMMaQtBACEDIAJBADYCBCACIAEgARAqIgBFDQQgAkE6NgIcIAIgADYCDCACIAFBAWo2AhQMgQELIAItAChBAUcNACACLQAtQQhxRQ0BC0E3IQMMZgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIABEAgAkE7NgIcIAIgADYCDCACIAFBAWo2AhQMfwsgAUEBaiEBDG4LIAJBCDoALAwECyABQQFqIQEMbQtBACEDIAJBADYCHCACIAE2AhQgAkHkEjYCECACQQQ2AgwMewsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ1sIAJBNzYCHCACIAE2AhQgAiAANgIMDHoLIAIgAi8BMEEgcjsBMAtBMCEDDF8LIAJBNjYCHCACIAE2AhQgAiAANgIMDHcLIABBLEcNASABQQFqIQBBASEBAkACQAJAAkACQCACLQAsQQVrDgQDAQIEAAsgACEBDAQLQQIhAQwBC0EEIQELIAJBAToALCACIAIvATAgAXI7ATAgACEBDAELIAIgAi8BMEEIcjsBMCAAIQELQTkhAwxcCyACQQA6ACwLQTQhAwxaCyABIARGBEBBLSEDDHMLAkACQANAAkAgAS0AAEEKaw4EAgAAAwALIAQgAUEBaiIBRw0AC0EtIQMMdAsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ0CIAJBLDYCHCACIAE2AhQgAiAANgIMDHMLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAS0AAEENRgRAIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAi0ALUEBcQRAQcQBIQMMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIADQEMZQtBLyEDDFcLIAJBLjYCHCACIAE2AhQgAiAANgIMDG8LQQAhAyACQQA2AhwgAiABNgIUIAJB8BQ2AhAgAkEDNgIMDG4LQQEhAwJAAkACQAJAIAItACxBBWsOBAMBAgAECyACIAIvATBBCHI7ATAMAwtBAiEDDAELQQQhAwsgAkEBOgAsIAIgAi8BMCADcjsBMAtBKiEDDFMLQQAhAyACQQA2AhwgAiABNgIUIAJB4Q82AhAgAkEKNgIMDGsLQQEhAwJAAkACQAJAAkACQCACLQAsQQJrDgcFBAQDAQIABAsgAiACLwEwQQhyOwEwDAMLQQIhAwwBC0EEIQMLIAJBAToALCACIAIvATAgA3I7ATALQSshAwxSC0EAIQMgAkEANgIcIAIgATYCFCACQasSNgIQIAJBCzYCDAxqC0EAIQMgAkEANgIcIAIgATYCFCACQf0NNgIQIAJBHTYCDAxpCyABIARHBEADQCABLQAAQSBHDUggBCABQQFqIgFHDQALQSUhAwxpC0ElIQMMaAsgAi0ALUEBcQRAQcMBIQMMTwsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKSIABEAgAkEmNgIcIAIgADYCDCACIAFBAWo2AhQMaAsgAUEBaiEBDFwLIAFBAWohASACLwEwIgBBgAFxBEBBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAEUNBiAAQRVHDR8gAkEFNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMZwsCQCAAQaAEcUGgBEcNACACLQAtQQJxDQBBACEDIAJBADYCHCACIAE2AhQgAkGWEzYCECACQQQ2AgwMZwsgAgJ/IAIvATBBFHFBFEYEQEEBIAItAChBAUYNARogAi8BMkHlAEYMAQsgAi0AKUEFRgs6AC5BACEAAkAgAigCOCIDRQ0AIAMoAiQiA0UNACACIAMRAAAhAAsCQAJAAkACQAJAIAAOFgIBAAQEBAQEBAQEBAQEBAQEBAQEBAMECyACQQE6AC4LIAIgAi8BMEHAAHI7ATALQSchAwxPCyACQSM2AhwgAiABNgIUIAJBpRY2AhAgAkEVNgIMQQAhAwxnC0EAIQMgAkEANgIcIAIgATYCFCACQdULNgIQIAJBETYCDAxmC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAADQELQQ4hAwxLCyAAQRVGBEAgAkECNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMZAtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMYwtBACEDIAJBADYCHCACIAE2AhQgAkGqHDYCECACQQ82AgwMYgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEgCqdqIgEQKyIARQ0AIAJBBTYCHCACIAE2AhQgAiAANgIMDGELQQ8hAwxHC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxfC0IBIQoLIAFBAWohAQJAIAIpAyAiC0L//////////w9YBEAgAiALQgSGIAqENwMgDAELQQAhAyACQQA2AhwgAiABNgIUIAJBrQk2AhAgAkEMNgIMDF4LQSQhAwxEC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxcCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAsIgBFBEAgAUEBaiEBDFILIAJBFzYCHCACIAA2AgwgAiABQQFqNgIUDFsLIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQRY2AhwgAiAANgIMIAIgAUEBajYCFAxbC0EfIQMMQQtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQLSIARQRAIAFBAWohAQxQCyACQRQ2AhwgAiAANgIMIAIgAUEBajYCFAxYCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABEC0iAEUEQCABQQFqIQEMAQsgAkETNgIcIAIgADYCDCACIAFBAWo2AhQMWAtBHiEDDD4LQQAhAyACQQA2AhwgAiABNgIUIAJBxgw2AhAgAkEjNgIMDFYLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABEC0iAEUEQCABQQFqIQEMTgsgAkERNgIcIAIgADYCDCACIAFBAWo2AhQMVQsgAkEQNgIcIAIgATYCFCACIAA2AgwMVAtBACEDIAJBADYCHCACIAE2AhQgAkHGDDYCECACQSM2AgwMUwtBACEDIAJBADYCHCACIAE2AhQgAkHAFTYCECACQQI2AgwMUgsgAigCBCEAQQAhAyACQQA2AgQCQCACIAAgARAtIgBFBEAgAUEBaiEBDAELIAJBDjYCHCACIAA2AgwgAiABQQFqNgIUDFILQRshAww4C0EAIQMgAkEANgIcIAIgATYCFCACQcYMNgIQIAJBIzYCDAxQCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABECwiAEUEQCABQQFqIQEMAQsgAkENNgIcIAIgADYCDCACIAFBAWo2AhQMUAtBGiEDDDYLQQAhAyACQQA2AhwgAiABNgIUIAJBmg82AhAgAkEiNgIMDE4LIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQQw2AhwgAiAANgIMIAIgAUEBajYCFAxOC0EZIQMMNAtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMTAsgAEEVRwRAQQAhAyACQQA2AhwgAiABNgIUIAJBgww2AhAgAkETNgIMDEwLIAJBCjYCHCACIAE2AhQgAkHkFjYCECACQRU2AgxBACEDDEsLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABIAqnaiIBECsiAARAIAJBBzYCHCACIAE2AhQgAiAANgIMDEsLQRMhAwwxCyAAQRVHBEBBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMSgsgAkEeNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMSQtBACEAAkAgAigCOCIDRQ0AIAMoAiwiA0UNACACIAMRAAAhAAsgAEUNQSAAQRVGBEAgAkEDNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMSQtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMSAtBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMRwtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMRgsgAkEAOgAvIAItAC1BBHFFDT8LIAJBADoALyACQQE6ADRBACEDDCsLQQAhAyACQQA2AhwgAkHkETYCECACQQc2AgwgAiABQQFqNgIUDEMLAkADQAJAIAEtAABBCmsOBAACAgACCyAEIAFBAWoiAUcNAAtB3QEhAwxDCwJAAkAgAi0ANEEBRw0AQQAhAAJAIAIoAjgiA0UNACADKAJYIgNFDQAgAiADEQAAIQALIABFDQAgAEEVRw0BIAJB3AE2AhwgAiABNgIUIAJB1RY2AhAgAkEVNgIMQQAhAwxEC0HBASEDDCoLIAJBADYCHCACIAE2AhQgAkHpCzYCECACQR82AgxBACEDDEILAkACQCACLQAoQQFrDgIEAQALQcABIQMMKQtBuQEhAwwoCyACQQI6AC9BACEAAkAgAigCOCIDRQ0AIAMoAgAiA0UNACACIAMRAAAhAAsgAEUEQEHCASEDDCgLIABBFUcEQCACQQA2AhwgAiABNgIUIAJBpAw2AhAgAkEQNgIMQQAhAwxBCyACQdsBNgIcIAIgATYCFCACQfoWNgIQIAJBFTYCDEEAIQMMQAsgASAERgRAQdoBIQMMQAsgAS0AAEHIAEYNASACQQE6ACgLQawBIQMMJQtBvwEhAwwkCyABIARHBEAgAkEQNgIIIAIgATYCBEG+ASEDDCQLQdkBIQMMPAsgASAERgRAQdgBIQMMPAsgAS0AAEHIAEcNBCABQQFqIQFBvQEhAwwiCyABIARGBEBB1wEhAww7CwJAAkAgAS0AAEHFAGsOEAAFBQUFBQUFBQUFBQUFBQEFCyABQQFqIQFBuwEhAwwiCyABQQFqIQFBvAEhAwwhC0HWASEDIAEgBEYNOSACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGD0ABqLQAARw0DIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw6CyACKAIEIQAgAkIANwMAIAIgACAGQQFqIgEQJyIARQRAQcYBIQMMIQsgAkHVATYCHCACIAE2AhQgAiAANgIMQQAhAww5C0HUASEDIAEgBEYNOCACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEGB0ABqLQAARw0CIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw5CyACQYEEOwEoIAIoAgQhACACQgA3AwAgAiAAIAZBAWoiARAnIgANAwwCCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB2Bs2AhAgAkEINgIMDDYLQboBIQMMHAsgAkHTATYCHCACIAE2AhQgAiAANgIMQQAhAww0C0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAARQ0AIABBFUYNASACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwwzC0HkACEDDBkLIAJB+AA2AhwgAiABNgIUIAJByhg2AhAgAkEVNgIMQQAhAwwxC0HSASEDIAQgASIARg0wIAQgAWsgAigCACIBaiEFIAAgAWtBBGohBgJAA0AgAC0AACABQfzPAGotAABHDQEgAUEERg0DIAFBAWohASAEIABBAWoiAEcNAAsgAiAFNgIADDELIAJBADYCHCACIAA2AhQgAkGQMzYCECACQQg2AgwgAkEANgIAQQAhAwwwCyABIARHBEAgAkEONgIIIAIgATYCBEG3ASEDDBcLQdEBIQMMLwsgAkEANgIAIAZBAWohAQtBuAEhAwwUCyABIARGBEBB0AEhAwwtCyABLQAAQTBrIgBB/wFxQQpJBEAgAiAAOgAqIAFBAWohAUG2ASEDDBQLIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0UIAJBzwE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAsgASAERgRAQc4BIQMMLAsCQCABLQAAQS5GBEAgAUEBaiEBDAELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0VIAJBzQE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAtBtQEhAwwSCyAEIAEiBUYEQEHMASEDDCsLQQAhAEEBIQFBASEGQQAhAwJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAIAUtAABBMGsOCgoJAAECAwQFBggLC0ECDAYLQQMMBQtBBAwEC0EFDAMLQQYMAgtBBwwBC0EICyEDQQAhAUEAIQYMAgtBCSEDQQEhAEEAIQFBACEGDAELQQAhAUEBIQMLIAIgAzoAKyAFQQFqIQMCQAJAIAItAC1BEHENAAJAAkACQCACLQAqDgMBAAIECyAGRQ0DDAILIAANAQwCCyABRQ0BCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMAwsgAkHJATYCHCACIAM2AhQgAiAANgIMQQAhAwwtCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMGAsgAkHKATYCHCACIAM2AhQgAiAANgIMQQAhAwwsCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMFgsgAkHLATYCHCACIAU2AhQgAiAANgIMDCsLQbQBIQMMEQtBACEAAkAgAigCOCIDRQ0AIAMoAjwiA0UNACACIAMRAAAhAAsCQCAABEAgAEEVRg0BIAJBADYCHCACIAE2AhQgAkGUDTYCECACQSE2AgxBACEDDCsLQbIBIQMMEQsgAkHIATYCHCACIAE2AhQgAkHJFzYCECACQRU2AgxBACEDDCkLIAJBADYCACAGQQFqIQFB9QAhAwwPCyACLQApQQVGBEBB4wAhAwwPC0HiACEDDA4LIAAhASACQQA2AgALIAJBADoALEEJIQMMDAsgAkEANgIAIAdBAWohAUHAACEDDAsLQQELOgAsIAJBADYCACAGQQFqIQELQSkhAwwIC0E4IQMMBwsCQCABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRw0DIAFBAWohAQwFCyAEIAFBAWoiAUcNAAtBPiEDDCELQT4hAwwgCwsgAkEAOgAsDAELQQshAwwEC0E6IQMMAwsgAUEBaiEBQS0hAwwCCyACIAE6ACwgAkEANgIAIAZBAWohAUEMIQMMAQsgAkEANgIAIAZBAWohAUEKIQMMAAsAC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwXC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwWC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwVC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwUC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwTC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwSC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwRC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwQC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwPC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwOC0EAIQMgAkEANgIcIAIgATYCFCACQcASNgIQIAJBCzYCDAwNC0EAIQMgAkEANgIcIAIgATYCFCACQZUJNgIQIAJBCzYCDAwMC0EAIQMgAkEANgIcIAIgATYCFCACQeEPNgIQIAJBCjYCDAwLC0EAIQMgAkEANgIcIAIgATYCFCACQfsPNgIQIAJBCjYCDAwKC0EAIQMgAkEANgIcIAIgATYCFCACQfEZNgIQIAJBAjYCDAwJC0EAIQMgAkEANgIcIAIgATYCFCACQcQUNgIQIAJBAjYCDAwIC0EAIQMgAkEANgIcIAIgATYCFCACQfIVNgIQIAJBAjYCDAwHCyACQQI2AhwgAiABNgIUIAJBnBo2AhAgAkEWNgIMQQAhAwwGC0EBIQMMBQtB1AAhAyABIARGDQQgCEEIaiEJIAIoAgAhBQJAAkAgASAERwRAIAVB2MIAaiEHIAQgBWogAWshACAFQX9zQQpqIgUgAWohBgNAIAEtAAAgBy0AAEcEQEECIQcMAwsgBUUEQEEAIQcgBiEBDAMLIAVBAWshBSAHQQFqIQcgBCABQQFqIgFHDQALIAAhBSAEIQELIAlBATYCACACIAU2AgAMAQsgAkEANgIAIAkgBzYCAAsgCSABNgIEIAgoAgwhACAIKAIIDgMBBAIACwALIAJBADYCHCACQbUaNgIQIAJBFzYCDCACIABBAWo2AhRBACEDDAILIAJBADYCHCACIAA2AhQgAkHKGjYCECACQQk2AgxBACEDDAELIAEgBEYEQEEiIQMMAQsgAkEJNgIIIAIgATYCBEEhIQMLIAhBEGokACADRQRAIAIoAgwhAAwBCyACIAM2AhxBACEAIAIoAgQiAUUNACACIAEgBCACKAIIEQEAIgFFDQAgAiAENgIUIAIgATYCDCABIQALIAALvgIBAn8gAEEAOgAAIABB3ABqIgFBAWtBADoAACAAQQA6AAIgAEEAOgABIAFBA2tBADoAACABQQJrQQA6AAAgAEEAOgADIAFBBGtBADoAAEEAIABrQQNxIgEgAGoiAEEANgIAQdwAIAFrQXxxIgIgAGoiAUEEa0EANgIAAkAgAkEJSQ0AIABBADYCCCAAQQA2AgQgAUEIa0EANgIAIAFBDGtBADYCACACQRlJDQAgAEEANgIYIABBADYCFCAAQQA2AhAgAEEANgIMIAFBEGtBADYCACABQRRrQQA2AgAgAUEYa0EANgIAIAFBHGtBADYCACACIABBBHFBGHIiAmsiAUEgSQ0AIAAgAmohAANAIABCADcDGCAAQgA3AxAgAEIANwMIIABCADcDACAAQSBqIQAgAUEgayIBQR9LDQALCwtWAQF/AkAgACgCDA0AAkACQAJAAkAgAC0ALw4DAQADAgsgACgCOCIBRQ0AIAEoAiwiAUUNACAAIAERAAAiAQ0DC0EADwsACyAAQcMWNgIQQQ4hAQsgAQsaACAAKAIMRQRAIABB0Rs2AhAgAEEVNgIMCwsUACAAKAIMQRVGBEAgAEEANgIMCwsUACAAKAIMQRZGBEAgAEEANgIMCwsHACAAKAIMCwcAIAAoAhALCQAgACABNgIQCwcAIAAoAhQLFwAgAEEkTwRAAAsgAEECdEGgM2ooAgALFwAgAEEuTwRAAAsgAEECdEGwNGooAgALvwkBAX9B6yghAQJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABB5ABrDvQDY2IAAWFhYWFhYQIDBAVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhBgcICQoLDA0OD2FhYWFhEGFhYWFhYWFhYWFhEWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYRITFBUWFxgZGhthYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2YTc4OTphYWFhYWFhYTthYWE8YWFhYT0+P2FhYWFhYWFhQGFhQWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYUJDREVGR0hJSktMTU5PUFFSU2FhYWFhYWFhVFVWV1hZWlthXF1hYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFeYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhX2BhC0HhJw8LQaQhDwtByywPC0H+MQ8LQcAkDwtBqyQPC0GNKA8LQeImDwtBgDAPC0G5Lw8LQdckDwtB7x8PC0HhHw8LQfofDwtB8iAPC0GoLw8LQa4yDwtBiDAPC0HsJw8LQYIiDwtBjh0PC0HQLg8LQcojDwtBxTIPC0HfHA8LQdIcDwtBxCAPC0HXIA8LQaIfDwtB7S4PC0GrMA8LQdQlDwtBzC4PC0H6Lg8LQfwrDwtB0jAPC0HxHQ8LQbsgDwtB9ysPC0GQMQ8LQdcxDwtBoi0PC0HUJw8LQeArDwtBnywPC0HrMQ8LQdUfDwtByjEPC0HeJQ8LQdQeDwtB9BwPC0GnMg8LQbEdDwtBoB0PC0G5MQ8LQbwwDwtBkiEPC0GzJg8LQeksDwtBrB4PC0HUKw8LQfcmDwtBgCYPC0GwIQ8LQf4eDwtBjSMPC0GJLQ8LQfciDwtBoDEPC0GuHw8LQcYlDwtB6B4PC0GTIg8LQcIvDwtBwx0PC0GLLA8LQeEdDwtBjS8PC0HqIQ8LQbQtDwtB0i8PC0HfMg8LQdIyDwtB8DAPC0GpIg8LQfkjDwtBmR4PC0G1LA8LQZswDwtBkjIPC0G2Kw8LQcIiDwtB+DIPC0GeJQ8LQdAiDwtBuh4PC0GBHg8LAAtB1iEhAQsgAQsWACAAIAAtAC1B/gFxIAFBAEdyOgAtCxkAIAAgAC0ALUH9AXEgAUEAR0EBdHI6AC0LGQAgACAALQAtQfsBcSABQQBHQQJ0cjoALQsZACAAIAAtAC1B9wFxIAFBAEdBA3RyOgAtCz4BAn8CQCAAKAI4IgNFDQAgAygCBCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBxhE2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCCCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9go2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCDCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7Ro2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCECIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlRA2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCFCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBqhs2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCGCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7RM2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCKCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9gg2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCHCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBwhk2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCICIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlBQ2AhBBGCEECyAEC1kBAn8CQCAALQAoQQFGDQAgAC8BMiIBQeQAa0HkAEkNACABQcwBRg0AIAFBsAJGDQAgAC8BMCIAQcAAcQ0AQQEhAiAAQYgEcUGABEYNACAAQShxRSECCyACC4wBAQJ/AkACQAJAIAAtACpFDQAgAC0AK0UNACAALwEwIgFBAnFFDQEMAgsgAC8BMCIBQQFxRQ0BC0EBIQIgAC0AKEEBRg0AIAAvATIiAEHkAGtB5ABJDQAgAEHMAUYNACAAQbACRg0AIAFBwABxDQBBACECIAFBiARxQYAERg0AIAFBKHFBAEchAgsgAgtXACAAQRhqQgA3AwAgAEIANwMAIABBOGpCADcDACAAQTBqQgA3AwAgAEEoakIANwMAIABBIGpCADcDACAAQRBqQgA3AwAgAEEIakIANwMAIABB3QE2AhwLBgAgABAyC5otAQt/IwBBEGsiCiQAQaTQACgCACIJRQRAQeTTACgCACIFRQRAQfDTAEJ/NwIAQejTAEKAgISAgIDAADcCAEHk0wAgCkEIakFwcUHYqtWqBXMiBTYCAEH40wBBADYCAEHI0wBBADYCAAtBzNMAQYDUBDYCAEGc0ABBgNQENgIAQbDQACAFNgIAQazQAEF/NgIAQdDTAEGArAM2AgADQCABQcjQAGogAUG80ABqIgI2AgAgAiABQbTQAGoiAzYCACABQcDQAGogAzYCACABQdDQAGogAUHE0ABqIgM2AgAgAyACNgIAIAFB2NAAaiABQczQAGoiAjYCACACIAM2AgAgAUHU0ABqIAI2AgAgAUEgaiIBQYACRw0AC0GM1ARBwasDNgIAQajQAEH00wAoAgA2AgBBmNAAQcCrAzYCAEGk0ABBiNQENgIAQcz/B0E4NgIAQYjUBCEJCwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABB7AFNBEBBjNAAKAIAIgZBECAAQRNqQXBxIABBC0kbIgRBA3YiAHYiAUEDcQRAAkAgAUEBcSAAckEBcyICQQN0IgBBtNAAaiIBIABBvNAAaigCACIAKAIIIgNGBEBBjNAAIAZBfiACd3E2AgAMAQsgASADNgIIIAMgATYCDAsgAEEIaiEBIAAgAkEDdCICQQNyNgIEIAAgAmoiACAAKAIEQQFyNgIEDBELQZTQACgCACIIIARPDQEgAQRAAkBBAiAAdCICQQAgAmtyIAEgAHRxaCIAQQN0IgJBtNAAaiIBIAJBvNAAaigCACICKAIIIgNGBEBBjNAAIAZBfiAAd3EiBjYCAAwBCyABIAM2AgggAyABNgIMCyACIARBA3I2AgQgAEEDdCIAIARrIQUgACACaiAFNgIAIAIgBGoiBCAFQQFyNgIEIAgEQCAIQXhxQbTQAGohAEGg0AAoAgAhAwJ/QQEgCEEDdnQiASAGcUUEQEGM0AAgASAGcjYCACAADAELIAAoAggLIgEgAzYCDCAAIAM2AgggAyAANgIMIAMgATYCCAsgAkEIaiEBQaDQACAENgIAQZTQACAFNgIADBELQZDQACgCACILRQ0BIAtoQQJ0QbzSAGooAgAiACgCBEF4cSAEayEFIAAhAgNAAkAgAigCECIBRQRAIAJBFGooAgAiAUUNAQsgASgCBEF4cSAEayIDIAVJIQIgAyAFIAIbIQUgASAAIAIbIQAgASECDAELCyAAKAIYIQkgACgCDCIDIABHBEBBnNAAKAIAGiADIAAoAggiATYCCCABIAM2AgwMEAsgAEEUaiICKAIAIgFFBEAgACgCECIBRQ0DIABBEGohAgsDQCACIQcgASIDQRRqIgIoAgAiAQ0AIANBEGohAiADKAIQIgENAAsgB0EANgIADA8LQX8hBCAAQb9/Sw0AIABBE2oiAUFwcSEEQZDQACgCACIIRQ0AQQAgBGshBQJAAkACQAJ/QQAgBEGAAkkNABpBHyAEQf///wdLDQAaIARBJiABQQh2ZyIAa3ZBAXEgAEEBdGtBPmoLIgZBAnRBvNIAaigCACICRQRAQQAhAUEAIQMMAQtBACEBIARBGSAGQQF2a0EAIAZBH0cbdCEAQQAhAwNAAkAgAigCBEF4cSAEayIHIAVPDQAgAiEDIAciBQ0AQQAhBSACIQEMAwsgASACQRRqKAIAIgcgByACIABBHXZBBHFqQRBqKAIAIgJGGyABIAcbIQEgAEEBdCEAIAINAAsLIAEgA3JFBEBBACEDQQIgBnQiAEEAIABrciAIcSIARQ0DIABoQQJ0QbzSAGooAgAhAQsgAUUNAQsDQCABKAIEQXhxIARrIgIgBUkhACACIAUgABshBSABIAMgABshAyABKAIQIgAEfyAABSABQRRqKAIACyIBDQALCyADRQ0AIAVBlNAAKAIAIARrTw0AIAMoAhghByADIAMoAgwiAEcEQEGc0AAoAgAaIAAgAygCCCIBNgIIIAEgADYCDAwOCyADQRRqIgIoAgAiAUUEQCADKAIQIgFFDQMgA0EQaiECCwNAIAIhBiABIgBBFGoiAigCACIBDQAgAEEQaiECIAAoAhAiAQ0ACyAGQQA2AgAMDQtBlNAAKAIAIgMgBE8EQEGg0AAoAgAhAQJAIAMgBGsiAkEQTwRAIAEgBGoiACACQQFyNgIEIAEgA2ogAjYCACABIARBA3I2AgQMAQsgASADQQNyNgIEIAEgA2oiACAAKAIEQQFyNgIEQQAhAEEAIQILQZTQACACNgIAQaDQACAANgIAIAFBCGohAQwPC0GY0AAoAgAiAyAESwRAIAQgCWoiACADIARrIgFBAXI2AgRBpNAAIAA2AgBBmNAAIAE2AgAgCSAEQQNyNgIEIAlBCGohAQwPC0EAIQEgBAJ/QeTTACgCAARAQezTACgCAAwBC0Hw0wBCfzcCAEHo0wBCgICEgICAwAA3AgBB5NMAIApBDGpBcHFB2KrVqgVzNgIAQfjTAEEANgIAQcjTAEEANgIAQYCABAsiACAEQccAaiIFaiIGQQAgAGsiB3EiAk8EQEH80wBBMDYCAAwPCwJAQcTTACgCACIBRQ0AQbzTACgCACIIIAJqIQAgACABTSAAIAhLcQ0AQQAhAUH80wBBMDYCAAwPC0HI0wAtAABBBHENBAJAAkAgCQRAQczTACEBA0AgASgCACIAIAlNBEAgACABKAIEaiAJSw0DCyABKAIIIgENAAsLQQAQMyIAQX9GDQUgAiEGQejTACgCACIBQQFrIgMgAHEEQCACIABrIAAgA2pBACABa3FqIQYLIAQgBk8NBSAGQf7///8HSw0FQcTTACgCACIDBEBBvNMAKAIAIgcgBmohASABIAdNDQYgASADSw0GCyAGEDMiASAARw0BDAcLIAYgA2sgB3EiBkH+////B0sNBCAGEDMhACAAIAEoAgAgASgCBGpGDQMgACEBCwJAIAYgBEHIAGpPDQAgAUF/Rg0AQezTACgCACIAIAUgBmtqQQAgAGtxIgBB/v///wdLBEAgASEADAcLIAAQM0F/RwRAIAAgBmohBiABIQAMBwtBACAGaxAzGgwECyABIgBBf0cNBQwDC0EAIQMMDAtBACEADAoLIABBf0cNAgtByNMAQcjTACgCAEEEcjYCAAsgAkH+////B0sNASACEDMhAEEAEDMhASAAQX9GDQEgAUF/Rg0BIAAgAU8NASABIABrIgYgBEE4ak0NAQtBvNMAQbzTACgCACAGaiIBNgIAQcDTACgCACABSQRAQcDTACABNgIACwJAAkACQEGk0AAoAgAiAgRAQczTACEBA0AgACABKAIAIgMgASgCBCIFakYNAiABKAIIIgENAAsMAgtBnNAAKAIAIgFBAEcgACABT3FFBEBBnNAAIAA2AgALQQAhAUHQ0wAgBjYCAEHM0wAgADYCAEGs0ABBfzYCAEGw0ABB5NMAKAIANgIAQdjTAEEANgIAA0AgAUHI0ABqIAFBvNAAaiICNgIAIAIgAUG00ABqIgM2AgAgAUHA0ABqIAM2AgAgAUHQ0ABqIAFBxNAAaiIDNgIAIAMgAjYCACABQdjQAGogAUHM0ABqIgI2AgAgAiADNgIAIAFB1NAAaiACNgIAIAFBIGoiAUGAAkcNAAtBeCAAa0EPcSIBIABqIgIgBkE4ayIDIAFrIgFBAXI2AgRBqNAAQfTTACgCADYCAEGY0AAgATYCAEGk0AAgAjYCACAAIANqQTg2AgQMAgsgACACTQ0AIAIgA0kNACABKAIMQQhxDQBBeCACa0EPcSIAIAJqIgNBmNAAKAIAIAZqIgcgAGsiAEEBcjYCBCABIAUgBmo2AgRBqNAAQfTTACgCADYCAEGY0AAgADYCAEGk0AAgAzYCACACIAdqQTg2AgQMAQsgAEGc0AAoAgBJBEBBnNAAIAA2AgALIAAgBmohA0HM0wAhAQJAAkACQANAIAMgASgCAEcEQCABKAIIIgENAQwCCwsgAS0ADEEIcUUNAQtBzNMAIQEDQCABKAIAIgMgAk0EQCADIAEoAgRqIgUgAksNAwsgASgCCCEBDAALAAsgASAANgIAIAEgASgCBCAGajYCBCAAQXggAGtBD3FqIgkgBEEDcjYCBCADQXggA2tBD3FqIgYgBCAJaiIEayEBIAIgBkYEQEGk0AAgBDYCAEGY0ABBmNAAKAIAIAFqIgA2AgAgBCAAQQFyNgIEDAgLQaDQACgCACAGRgRAQaDQACAENgIAQZTQAEGU0AAoAgAgAWoiADYCACAEIABBAXI2AgQgACAEaiAANgIADAgLIAYoAgQiBUEDcUEBRw0GIAVBeHEhCCAFQf8BTQRAIAVBA3YhAyAGKAIIIgAgBigCDCICRgRAQYzQAEGM0AAoAgBBfiADd3E2AgAMBwsgAiAANgIIIAAgAjYCDAwGCyAGKAIYIQcgBiAGKAIMIgBHBEAgACAGKAIIIgI2AgggAiAANgIMDAULIAZBFGoiAigCACIFRQRAIAYoAhAiBUUNBCAGQRBqIQILA0AgAiEDIAUiAEEUaiICKAIAIgUNACAAQRBqIQIgACgCECIFDQALIANBADYCAAwEC0F4IABrQQ9xIgEgAGoiByAGQThrIgMgAWsiAUEBcjYCBCAAIANqQTg2AgQgAiAFQTcgBWtBD3FqQT9rIgMgAyACQRBqSRsiA0EjNgIEQajQAEH00wAoAgA2AgBBmNAAIAE2AgBBpNAAIAc2AgAgA0EQakHU0wApAgA3AgAgA0HM0wApAgA3AghB1NMAIANBCGo2AgBB0NMAIAY2AgBBzNMAIAA2AgBB2NMAQQA2AgAgA0EkaiEBA0AgAUEHNgIAIAUgAUEEaiIBSw0ACyACIANGDQAgAyADKAIEQX5xNgIEIAMgAyACayIFNgIAIAIgBUEBcjYCBCAFQf8BTQRAIAVBeHFBtNAAaiEAAn9BjNAAKAIAIgFBASAFQQN2dCIDcUUEQEGM0AAgASADcjYCACAADAELIAAoAggLIgEgAjYCDCAAIAI2AgggAiAANgIMIAIgATYCCAwBC0EfIQEgBUH///8HTQRAIAVBJiAFQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAQsgAiABNgIcIAJCADcCECABQQJ0QbzSAGohAEGQ0AAoAgAiA0EBIAF0IgZxRQRAIAAgAjYCAEGQ0AAgAyAGcjYCACACIAA2AhggAiACNgIIIAIgAjYCDAwBCyAFQRkgAUEBdmtBACABQR9HG3QhASAAKAIAIQMCQANAIAMiACgCBEF4cSAFRg0BIAFBHXYhAyABQQF0IQEgACADQQRxakEQaiIGKAIAIgMNAAsgBiACNgIAIAIgADYCGCACIAI2AgwgAiACNgIIDAELIAAoAggiASACNgIMIAAgAjYCCCACQQA2AhggAiAANgIMIAIgATYCCAtBmNAAKAIAIgEgBE0NAEGk0AAoAgAiACAEaiICIAEgBGsiAUEBcjYCBEGY0AAgATYCAEGk0AAgAjYCACAAIARBA3I2AgQgAEEIaiEBDAgLQQAhAUH80wBBMDYCAAwHC0EAIQALIAdFDQACQCAGKAIcIgJBAnRBvNIAaiIDKAIAIAZGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAdBEEEUIAcoAhAgBkYbaiAANgIAIABFDQELIAAgBzYCGCAGKAIQIgIEQCAAIAI2AhAgAiAANgIYCyAGQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAIaiEBIAYgCGoiBigCBCEFCyAGIAVBfnE2AgQgASAEaiABNgIAIAQgAUEBcjYCBCABQf8BTQRAIAFBeHFBtNAAaiEAAn9BjNAAKAIAIgJBASABQQN2dCIBcUUEQEGM0AAgASACcjYCACAADAELIAAoAggLIgEgBDYCDCAAIAQ2AgggBCAANgIMIAQgATYCCAwBC0EfIQUgAUH///8HTQRAIAFBJiABQQh2ZyIAa3ZBAXEgAEEBdGtBPmohBQsgBCAFNgIcIARCADcCECAFQQJ0QbzSAGohAEGQ0AAoAgAiAkEBIAV0IgNxRQRAIAAgBDYCAEGQ0AAgAiADcjYCACAEIAA2AhggBCAENgIIIAQgBDYCDAwBCyABQRkgBUEBdmtBACAFQR9HG3QhBSAAKAIAIQACQANAIAAiAigCBEF4cSABRg0BIAVBHXYhACAFQQF0IQUgAiAAQQRxakEQaiIDKAIAIgANAAsgAyAENgIAIAQgAjYCGCAEIAQ2AgwgBCAENgIIDAELIAIoAggiACAENgIMIAIgBDYCCCAEQQA2AhggBCACNgIMIAQgADYCCAsgCUEIaiEBDAILAkAgB0UNAAJAIAMoAhwiAUECdEG80gBqIgIoAgAgA0YEQCACIAA2AgAgAA0BQZDQACAIQX4gAXdxIgg2AgAMAgsgB0EQQRQgBygCECADRhtqIAA2AgAgAEUNAQsgACAHNgIYIAMoAhAiAQRAIAAgATYCECABIAA2AhgLIANBFGooAgAiAUUNACAAQRRqIAE2AgAgASAANgIYCwJAIAVBD00EQCADIAQgBWoiAEEDcjYCBCAAIANqIgAgACgCBEEBcjYCBAwBCyADIARqIgIgBUEBcjYCBCADIARBA3I2AgQgAiAFaiAFNgIAIAVB/wFNBEAgBUF4cUG00ABqIQACf0GM0AAoAgAiAUEBIAVBA3Z0IgVxRQRAQYzQACABIAVyNgIAIAAMAQsgACgCCAsiASACNgIMIAAgAjYCCCACIAA2AgwgAiABNgIIDAELQR8hASAFQf///wdNBEAgBUEmIAVBCHZnIgBrdkEBcSAAQQF0a0E+aiEBCyACIAE2AhwgAkIANwIQIAFBAnRBvNIAaiEAQQEgAXQiBCAIcUUEQCAAIAI2AgBBkNAAIAQgCHI2AgAgAiAANgIYIAIgAjYCCCACIAI2AgwMAQsgBUEZIAFBAXZrQQAgAUEfRxt0IQEgACgCACEEAkADQCAEIgAoAgRBeHEgBUYNASABQR12IQQgAUEBdCEBIAAgBEEEcWpBEGoiBigCACIEDQALIAYgAjYCACACIAA2AhggAiACNgIMIAIgAjYCCAwBCyAAKAIIIgEgAjYCDCAAIAI2AgggAkEANgIYIAIgADYCDCACIAE2AggLIANBCGohAQwBCwJAIAlFDQACQCAAKAIcIgFBAnRBvNIAaiICKAIAIABGBEAgAiADNgIAIAMNAUGQ0AAgC0F+IAF3cTYCAAwCCyAJQRBBFCAJKAIQIABGG2ogAzYCACADRQ0BCyADIAk2AhggACgCECIBBEAgAyABNgIQIAEgAzYCGAsgAEEUaigCACIBRQ0AIANBFGogATYCACABIAM2AhgLAkAgBUEPTQRAIAAgBCAFaiIBQQNyNgIEIAAgAWoiASABKAIEQQFyNgIEDAELIAAgBGoiByAFQQFyNgIEIAAgBEEDcjYCBCAFIAdqIAU2AgAgCARAIAhBeHFBtNAAaiEBQaDQACgCACEDAn9BASAIQQN2dCICIAZxRQRAQYzQACACIAZyNgIAIAEMAQsgASgCCAsiAiADNgIMIAEgAzYCCCADIAE2AgwgAyACNgIIC0Gg0AAgBzYCAEGU0AAgBTYCAAsgAEEIaiEBCyAKQRBqJAAgAQtDACAARQRAPwBBEHQPCwJAIABB//8DcQ0AIABBAEgNACAAQRB2QAAiAEF/RgRAQfzTAEEwNgIAQX8PCyAAQRB0DwsACwvcPyIAQYAICwkBAAAAAgAAAAMAQZQICwUEAAAABQBBpAgLCQYAAAAHAAAACABB3AgLii1JbnZhbGlkIGNoYXIgaW4gdXJsIHF1ZXJ5AFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fYm9keQBDb250ZW50LUxlbmd0aCBvdmVyZmxvdwBDaHVuayBzaXplIG92ZXJmbG93AFJlc3BvbnNlIG92ZXJmbG93AEludmFsaWQgbWV0aG9kIGZvciBIVFRQL3gueCByZXF1ZXN0AEludmFsaWQgbWV0aG9kIGZvciBSVFNQL3gueCByZXF1ZXN0AEV4cGVjdGVkIFNPVVJDRSBtZXRob2QgZm9yIElDRS94LnggcmVxdWVzdABJbnZhbGlkIGNoYXIgaW4gdXJsIGZyYWdtZW50IHN0YXJ0AEV4cGVjdGVkIGRvdABTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3N0YXR1cwBJbnZhbGlkIHJlc3BvbnNlIHN0YXR1cwBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zAFVzZXIgY2FsbGJhY2sgZXJyb3IAYG9uX3Jlc2V0YCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfaGVhZGVyYCBjYWxsYmFjayBlcnJvcgBgb25fbWVzc2FnZV9iZWdpbmAgY2FsbGJhY2sgZXJyb3IAYG9uX2NodW5rX2V4dGVuc2lvbl92YWx1ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX3N0YXR1c19jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX3ZlcnNpb25fY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl91cmxfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX2hlYWRlcl92YWx1ZV9jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX21lc3NhZ2VfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9tZXRob2RfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9oZWFkZXJfZmllbGRfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19leHRlbnNpb25fbmFtZWAgY2FsbGJhY2sgZXJyb3IAVW5leHBlY3RlZCBjaGFyIGluIHVybCBzZXJ2ZXIASW52YWxpZCBoZWFkZXIgdmFsdWUgY2hhcgBJbnZhbGlkIGhlYWRlciBmaWVsZCBjaGFyAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fdmVyc2lvbgBJbnZhbGlkIG1pbm9yIHZlcnNpb24ASW52YWxpZCBtYWpvciB2ZXJzaW9uAEV4cGVjdGVkIHNwYWNlIGFmdGVyIHZlcnNpb24ARXhwZWN0ZWQgQ1JMRiBhZnRlciB2ZXJzaW9uAEludmFsaWQgSFRUUCB2ZXJzaW9uAEludmFsaWQgaGVhZGVyIHRva2VuAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fdXJsAEludmFsaWQgY2hhcmFjdGVycyBpbiB1cmwAVW5leHBlY3RlZCBzdGFydCBjaGFyIGluIHVybABEb3VibGUgQCBpbiB1cmwARW1wdHkgQ29udGVudC1MZW5ndGgASW52YWxpZCBjaGFyYWN0ZXIgaW4gQ29udGVudC1MZW5ndGgARHVwbGljYXRlIENvbnRlbnQtTGVuZ3RoAEludmFsaWQgY2hhciBpbiB1cmwgcGF0aABDb250ZW50LUxlbmd0aCBjYW4ndCBiZSBwcmVzZW50IHdpdGggVHJhbnNmZXItRW5jb2RpbmcASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgc2l6ZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2hlYWRlcl92YWx1ZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2NodW5rX2V4dGVuc2lvbl92YWx1ZQBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zIHZhbHVlAE1pc3NpbmcgZXhwZWN0ZWQgTEYgYWZ0ZXIgaGVhZGVyIHZhbHVlAEludmFsaWQgYFRyYW5zZmVyLUVuY29kaW5nYCBoZWFkZXIgdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyBxdW90ZSB2YWx1ZQBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zIHF1b3RlZCB2YWx1ZQBQYXVzZWQgYnkgb25faGVhZGVyc19jb21wbGV0ZQBJbnZhbGlkIEVPRiBzdGF0ZQBvbl9yZXNldCBwYXVzZQBvbl9jaHVua19oZWFkZXIgcGF1c2UAb25fbWVzc2FnZV9iZWdpbiBwYXVzZQBvbl9jaHVua19leHRlbnNpb25fdmFsdWUgcGF1c2UAb25fc3RhdHVzX2NvbXBsZXRlIHBhdXNlAG9uX3ZlcnNpb25fY29tcGxldGUgcGF1c2UAb25fdXJsX2NvbXBsZXRlIHBhdXNlAG9uX2NodW5rX2NvbXBsZXRlIHBhdXNlAG9uX2hlYWRlcl92YWx1ZV9jb21wbGV0ZSBwYXVzZQBvbl9tZXNzYWdlX2NvbXBsZXRlIHBhdXNlAG9uX21ldGhvZF9jb21wbGV0ZSBwYXVzZQBvbl9oZWFkZXJfZmllbGRfY29tcGxldGUgcGF1c2UAb25fY2h1bmtfZXh0ZW5zaW9uX25hbWUgcGF1c2UAVW5leHBlY3RlZCBzcGFjZSBhZnRlciBzdGFydCBsaW5lAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fY2h1bmtfZXh0ZW5zaW9uX25hbWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyBuYW1lAFBhdXNlIG9uIENPTk5FQ1QvVXBncmFkZQBQYXVzZSBvbiBQUkkvVXBncmFkZQBFeHBlY3RlZCBIVFRQLzIgQ29ubmVjdGlvbiBQcmVmYWNlAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fbWV0aG9kAEV4cGVjdGVkIHNwYWNlIGFmdGVyIG1ldGhvZABTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2hlYWRlcl9maWVsZABQYXVzZWQASW52YWxpZCB3b3JkIGVuY291bnRlcmVkAEludmFsaWQgbWV0aG9kIGVuY291bnRlcmVkAFVuZXhwZWN0ZWQgY2hhciBpbiB1cmwgc2NoZW1hAFJlcXVlc3QgaGFzIGludmFsaWQgYFRyYW5zZmVyLUVuY29kaW5nYABTV0lUQ0hfUFJPWFkAVVNFX1BST1hZAE1LQUNUSVZJVFkAVU5QUk9DRVNTQUJMRV9FTlRJVFkAQ09QWQBNT1ZFRF9QRVJNQU5FTlRMWQBUT09fRUFSTFkATk9USUZZAEZBSUxFRF9ERVBFTkRFTkNZAEJBRF9HQVRFV0FZAFBMQVkAUFVUAENIRUNLT1VUAEdBVEVXQVlfVElNRU9VVABSRVFVRVNUX1RJTUVPVVQATkVUV09SS19DT05ORUNUX1RJTUVPVVQAQ09OTkVDVElPTl9USU1FT1VUAExPR0lOX1RJTUVPVVQATkVUV09SS19SRUFEX1RJTUVPVVQAUE9TVABNSVNESVJFQ1RFRF9SRVFVRVNUAENMSUVOVF9DTE9TRURfUkVRVUVTVABDTElFTlRfQ0xPU0VEX0xPQURfQkFMQU5DRURfUkVRVUVTVABCQURfUkVRVUVTVABIVFRQX1JFUVVFU1RfU0VOVF9UT19IVFRQU19QT1JUAFJFUE9SVABJTV9BX1RFQVBPVABSRVNFVF9DT05URU5UAE5PX0NPTlRFTlQAUEFSVElBTF9DT05URU5UAEhQRV9JTlZBTElEX0NPTlNUQU5UAEhQRV9DQl9SRVNFVABHRVQASFBFX1NUUklDVABDT05GTElDVABURU1QT1JBUllfUkVESVJFQ1QAUEVSTUFORU5UX1JFRElSRUNUAENPTk5FQ1QATVVMVElfU1RBVFVTAEhQRV9JTlZBTElEX1NUQVRVUwBUT09fTUFOWV9SRVFVRVNUUwBFQVJMWV9ISU5UUwBVTkFWQUlMQUJMRV9GT1JfTEVHQUxfUkVBU09OUwBPUFRJT05TAFNXSVRDSElOR19QUk9UT0NPTFMAVkFSSUFOVF9BTFNPX05FR09USUFURVMATVVMVElQTEVfQ0hPSUNFUwBJTlRFUk5BTF9TRVJWRVJfRVJST1IAV0VCX1NFUlZFUl9VTktOT1dOX0VSUk9SAFJBSUxHVU5fRVJST1IASURFTlRJVFlfUFJPVklERVJfQVVUSEVOVElDQVRJT05fRVJST1IAU1NMX0NFUlRJRklDQVRFX0VSUk9SAElOVkFMSURfWF9GT1JXQVJERURfRk9SAFNFVF9QQVJBTUVURVIAR0VUX1BBUkFNRVRFUgBIUEVfVVNFUgBTRUVfT1RIRVIASFBFX0NCX0NIVU5LX0hFQURFUgBNS0NBTEVOREFSAFNFVFVQAFdFQl9TRVJWRVJfSVNfRE9XTgBURUFSRE9XTgBIUEVfQ0xPU0VEX0NPTk5FQ1RJT04ASEVVUklTVElDX0VYUElSQVRJT04ARElTQ09OTkVDVEVEX09QRVJBVElPTgBOT05fQVVUSE9SSVRBVElWRV9JTkZPUk1BVElPTgBIUEVfSU5WQUxJRF9WRVJTSU9OAEhQRV9DQl9NRVNTQUdFX0JFR0lOAFNJVEVfSVNfRlJPWkVOAEhQRV9JTlZBTElEX0hFQURFUl9UT0tFTgBJTlZBTElEX1RPS0VOAEZPUkJJRERFTgBFTkhBTkNFX1lPVVJfQ0FMTQBIUEVfSU5WQUxJRF9VUkwAQkxPQ0tFRF9CWV9QQVJFTlRBTF9DT05UUk9MAE1LQ09MAEFDTABIUEVfSU5URVJOQUwAUkVRVUVTVF9IRUFERVJfRklFTERTX1RPT19MQVJHRV9VTk9GRklDSUFMAEhQRV9PSwBVTkxJTksAVU5MT0NLAFBSSQBSRVRSWV9XSVRIAEhQRV9JTlZBTElEX0NPTlRFTlRfTEVOR1RIAEhQRV9VTkVYUEVDVEVEX0NPTlRFTlRfTEVOR1RIAEZMVVNIAFBST1BQQVRDSABNLVNFQVJDSABVUklfVE9PX0xPTkcAUFJPQ0VTU0lORwBNSVNDRUxMQU5FT1VTX1BFUlNJU1RFTlRfV0FSTklORwBNSVNDRUxMQU5FT1VTX1dBUk5JTkcASFBFX0lOVkFMSURfVFJBTlNGRVJfRU5DT0RJTkcARXhwZWN0ZWQgQ1JMRgBIUEVfSU5WQUxJRF9DSFVOS19TSVpFAE1PVkUAQ09OVElOVUUASFBFX0NCX1NUQVRVU19DT01QTEVURQBIUEVfQ0JfSEVBREVSU19DT01QTEVURQBIUEVfQ0JfVkVSU0lPTl9DT01QTEVURQBIUEVfQ0JfVVJMX0NPTVBMRVRFAEhQRV9DQl9DSFVOS19DT01QTEVURQBIUEVfQ0JfSEVBREVSX1ZBTFVFX0NPTVBMRVRFAEhQRV9DQl9DSFVOS19FWFRFTlNJT05fVkFMVUVfQ09NUExFVEUASFBFX0NCX0NIVU5LX0VYVEVOU0lPTl9OQU1FX0NPTVBMRVRFAEhQRV9DQl9NRVNTQUdFX0NPTVBMRVRFAEhQRV9DQl9NRVRIT0RfQ09NUExFVEUASFBFX0NCX0hFQURFUl9GSUVMRF9DT01QTEVURQBERUxFVEUASFBFX0lOVkFMSURfRU9GX1NUQVRFAElOVkFMSURfU1NMX0NFUlRJRklDQVRFAFBBVVNFAE5PX1JFU1BPTlNFAFVOU1VQUE9SVEVEX01FRElBX1RZUEUAR09ORQBOT1RfQUNDRVBUQUJMRQBTRVJWSUNFX1VOQVZBSUxBQkxFAFJBTkdFX05PVF9TQVRJU0ZJQUJMRQBPUklHSU5fSVNfVU5SRUFDSEFCTEUAUkVTUE9OU0VfSVNfU1RBTEUAUFVSR0UATUVSR0UAUkVRVUVTVF9IRUFERVJfRklFTERTX1RPT19MQVJHRQBSRVFVRVNUX0hFQURFUl9UT09fTEFSR0UAUEFZTE9BRF9UT09fTEFSR0UASU5TVUZGSUNJRU5UX1NUT1JBR0UASFBFX1BBVVNFRF9VUEdSQURFAEhQRV9QQVVTRURfSDJfVVBHUkFERQBTT1VSQ0UAQU5OT1VOQ0UAVFJBQ0UASFBFX1VORVhQRUNURURfU1BBQ0UAREVTQ1JJQkUAVU5TVUJTQ1JJQkUAUkVDT1JEAEhQRV9JTlZBTElEX01FVEhPRABOT1RfRk9VTkQAUFJPUEZJTkQAVU5CSU5EAFJFQklORABVTkFVVEhPUklaRUQATUVUSE9EX05PVF9BTExPV0VEAEhUVFBfVkVSU0lPTl9OT1RfU1VQUE9SVEVEAEFMUkVBRFlfUkVQT1JURUQAQUNDRVBURUQATk9UX0lNUExFTUVOVEVEAExPT1BfREVURUNURUQASFBFX0NSX0VYUEVDVEVEAEhQRV9MRl9FWFBFQ1RFRABDUkVBVEVEAElNX1VTRUQASFBFX1BBVVNFRABUSU1FT1VUX09DQ1VSRUQAUEFZTUVOVF9SRVFVSVJFRABQUkVDT05ESVRJT05fUkVRVUlSRUQAUFJPWFlfQVVUSEVOVElDQVRJT05fUkVRVUlSRUQATkVUV09SS19BVVRIRU5USUNBVElPTl9SRVFVSVJFRABMRU5HVEhfUkVRVUlSRUQAU1NMX0NFUlRJRklDQVRFX1JFUVVJUkVEAFVQR1JBREVfUkVRVUlSRUQAUEFHRV9FWFBJUkVEAFBSRUNPTkRJVElPTl9GQUlMRUQARVhQRUNUQVRJT05fRkFJTEVEAFJFVkFMSURBVElPTl9GQUlMRUQAU1NMX0hBTkRTSEFLRV9GQUlMRUQATE9DS0VEAFRSQU5TRk9STUFUSU9OX0FQUExJRUQATk9UX01PRElGSUVEAE5PVF9FWFRFTkRFRABCQU5EV0lEVEhfTElNSVRfRVhDRUVERUQAU0lURV9JU19PVkVSTE9BREVEAEhFQUQARXhwZWN0ZWQgSFRUUC8AAF4TAAAmEwAAMBAAAPAXAACdEwAAFRIAADkXAADwEgAAChAAAHUSAACtEgAAghMAAE8UAAB/EAAAoBUAACMUAACJEgAAixQAAE0VAADUEQAAzxQAABAYAADJFgAA3BYAAMERAADgFwAAuxQAAHQUAAB8FQAA5RQAAAgXAAAfEAAAZRUAAKMUAAAoFQAAAhUAAJkVAAAsEAAAixkAAE8PAADUDgAAahAAAM4QAAACFwAAiQ4AAG4TAAAcEwAAZhQAAFYXAADBEwAAzRMAAGwTAABoFwAAZhcAAF8XAAAiEwAAzg8AAGkOAADYDgAAYxYAAMsTAACqDgAAKBcAACYXAADFEwAAXRYAAOgRAABnEwAAZRMAAPIWAABzEwAAHRcAAPkWAADzEQAAzw4AAM4VAAAMEgAAsxEAAKURAABhEAAAMhcAALsTAEH5NQsBAQBBkDYL4AEBAQIBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB/TcLAQEAQZE4C14CAwICAgICAAACAgACAgACAgICAgICAgICAAQAAAAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAAgACAEH9OQsBAQBBkToLXgIAAgICAgIAAAICAAICAAICAgICAgICAgIAAwAEAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgIAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgACAAIAQfA7Cw1sb3NlZWVwLWFsaXZlAEGJPAsBAQBBoDwL4AEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBBiT4LAQEAQaA+C+cBAQEBAQEBAQEBAQEBAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQFjaHVua2VkAEGwwAALXwEBAAEBAQEBAAABAQABAQABAQEBAQEBAQEBAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQABAEGQwgALIWVjdGlvbmVudC1sZW5ndGhvbnJveHktY29ubmVjdGlvbgBBwMIACy1yYW5zZmVyLWVuY29kaW5ncGdyYWRlDQoNCg0KU00NCg0KVFRQL0NFL1RTUC8AQfnCAAsFAQIAAQMAQZDDAAvgAQQBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAEH5xAALBQECAAEDAEGQxQAL4AEEAQEFAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB+cYACwQBAAABAEGRxwAL3wEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAEH6yAALBAEAAAIAQZDJAAtfAwQAAAQEBAQEBAQEBAQEBQQEBAQEBAQEBAQEBAAEAAYHBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQABAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAQAQfrKAAsEAQAAAQBBkMsACwEBAEGqywALQQIAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAEH6zAALBAEAAAEAQZDNAAsBAQBBms0ACwYCAAAAAAIAQbHNAAs6AwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBB8M4AC5YBTk9VTkNFRUNLT1VUTkVDVEVURUNSSUJFTFVTSEVURUFEU0VBUkNIUkdFQ1RJVklUWUxFTkRBUlZFT1RJRllQVElPTlNDSFNFQVlTVEFUQ0hHRU9SRElSRUNUT1JUUkNIUEFSQU1FVEVSVVJDRUJTQ1JJQkVBUkRPV05BQ0VJTkROS0NLVUJTQ1JJQkVIVFRQL0FEVFAv","base64")});var rz=b((hlt,tz)=>{"use strict";var{Buffer:r3e}=require("node:buffer");tz.exports=r3e.from("AGFzbQEAAAABJwdgAX8Bf2ADf39/AX9gAX8AYAJ/fwBgBH9/f38Bf2AAAGADf39/AALLAQgDZW52GHdhc21fb25faGVhZGVyc19jb21wbGV0ZQAEA2VudhV3YXNtX29uX21lc3NhZ2VfYmVnaW4AAANlbnYLd2FzbV9vbl91cmwAAQNlbnYOd2FzbV9vbl9zdGF0dXMAAQNlbnYUd2FzbV9vbl9oZWFkZXJfZmllbGQAAQNlbnYUd2FzbV9vbl9oZWFkZXJfdmFsdWUAAQNlbnYMd2FzbV9vbl9ib2R5AAEDZW52GHdhc21fb25fbWVzc2FnZV9jb21wbGV0ZQAAAy0sBQYAAAIAAAAAAAACAQIAAgICAAADAAAAAAMDAwMBAQEBAQEBAQEAAAIAAAAEBQFwARISBQMBAAIGCAF/AUGA1AQLB9EFIgZtZW1vcnkCAAtfaW5pdGlhbGl6ZQAIGV9faW5kaXJlY3RfZnVuY3Rpb25fdGFibGUBAAtsbGh0dHBfaW5pdAAJGGxsaHR0cF9zaG91bGRfa2VlcF9hbGl2ZQAvDGxsaHR0cF9hbGxvYwALBm1hbGxvYwAxC2xsaHR0cF9mcmVlAAwEZnJlZQAMD2xsaHR0cF9nZXRfdHlwZQANFWxsaHR0cF9nZXRfaHR0cF9tYWpvcgAOFWxsaHR0cF9nZXRfaHR0cF9taW5vcgAPEWxsaHR0cF9nZXRfbWV0aG9kABAWbGxodHRwX2dldF9zdGF0dXNfY29kZQAREmxsaHR0cF9nZXRfdXBncmFkZQASDGxsaHR0cF9yZXNldAATDmxsaHR0cF9leGVjdXRlABQUbGxodHRwX3NldHRpbmdzX2luaXQAFQ1sbGh0dHBfZmluaXNoABYMbGxodHRwX3BhdXNlABcNbGxodHRwX3Jlc3VtZQAYG2xsaHR0cF9yZXN1bWVfYWZ0ZXJfdXBncmFkZQAZEGxsaHR0cF9nZXRfZXJybm8AGhdsbGh0dHBfZ2V0X2Vycm9yX3JlYXNvbgAbF2xsaHR0cF9zZXRfZXJyb3JfcmVhc29uABwUbGxodHRwX2dldF9lcnJvcl9wb3MAHRFsbGh0dHBfZXJybm9fbmFtZQAeEmxsaHR0cF9tZXRob2RfbmFtZQAfEmxsaHR0cF9zdGF0dXNfbmFtZQAgGmxsaHR0cF9zZXRfbGVuaWVudF9oZWFkZXJzACEhbGxodHRwX3NldF9sZW5pZW50X2NodW5rZWRfbGVuZ3RoACIdbGxodHRwX3NldF9sZW5pZW50X2tlZXBfYWxpdmUAIyRsbGh0dHBfc2V0X2xlbmllbnRfdHJhbnNmZXJfZW5jb2RpbmcAJBhsbGh0dHBfbWVzc2FnZV9uZWVkc19lb2YALgkXAQBBAQsRAQIDBAUKBgcrLSwqKSglJyYK77MCLBYAQYjQACgCAARAAAtBiNAAQQE2AgALFAAgABAwIAAgAjYCOCAAIAE6ACgLFAAgACAALwEyIAAtAC4gABAvEAALHgEBf0HAABAyIgEQMCABQYAINgI4IAEgADoAKCABC48MAQd/AkAgAEUNACAAQQhrIgEgAEEEaygCACIAQXhxIgRqIQUCQCAAQQFxDQAgAEEDcUUNASABIAEoAgAiAGsiAUGc0AAoAgBJDQEgACAEaiEEAkACQEGg0AAoAgAgAUcEQCAAQf8BTQRAIABBA3YhAyABKAIIIgAgASgCDCICRgRAQYzQAEGM0AAoAgBBfiADd3E2AgAMBQsgAiAANgIIIAAgAjYCDAwECyABKAIYIQYgASABKAIMIgBHBEAgACABKAIIIgI2AgggAiAANgIMDAMLIAFBFGoiAygCACICRQRAIAEoAhAiAkUNAiABQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFKAIEIgBBA3FBA0cNAiAFIABBfnE2AgRBlNAAIAQ2AgAgBSAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCABKAIcIgJBAnRBvNIAaiIDKAIAIAFGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgAUYbaiAANgIAIABFDQELIAAgBjYCGCABKAIQIgIEQCAAIAI2AhAgAiAANgIYCyABQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAFTw0AIAUoAgQiAEEBcUUNAAJAAkACQAJAIABBAnFFBEBBpNAAKAIAIAVGBEBBpNAAIAE2AgBBmNAAQZjQACgCACAEaiIANgIAIAEgAEEBcjYCBCABQaDQACgCAEcNBkGU0ABBADYCAEGg0ABBADYCAAwGC0Gg0AAoAgAgBUYEQEGg0AAgATYCAEGU0ABBlNAAKAIAIARqIgA2AgAgASAAQQFyNgIEIAAgAWogADYCAAwGCyAAQXhxIARqIQQgAEH/AU0EQCAAQQN2IQMgBSgCCCIAIAUoAgwiAkYEQEGM0ABBjNAAKAIAQX4gA3dxNgIADAULIAIgADYCCCAAIAI2AgwMBAsgBSgCGCEGIAUgBSgCDCIARwRAQZzQACgCABogACAFKAIIIgI2AgggAiAANgIMDAMLIAVBFGoiAygCACICRQRAIAUoAhAiAkUNAiAFQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFIABBfnE2AgQgASAEaiAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCAFKAIcIgJBAnRBvNIAaiIDKAIAIAVGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgBUYbaiAANgIAIABFDQELIAAgBjYCGCAFKAIQIgIEQCAAIAI2AhAgAiAANgIYCyAFQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAEaiAENgIAIAEgBEEBcjYCBCABQaDQACgCAEcNAEGU0AAgBDYCAAwBCyAEQf8BTQRAIARBeHFBtNAAaiEAAn9BjNAAKAIAIgJBASAEQQN2dCIDcUUEQEGM0AAgAiADcjYCACAADAELIAAoAggLIgIgATYCDCAAIAE2AgggASAANgIMIAEgAjYCCAwBC0EfIQIgBEH///8HTQRAIARBJiAEQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAgsgASACNgIcIAFCADcCECACQQJ0QbzSAGohAAJAQZDQACgCACIDQQEgAnQiB3FFBEAgACABNgIAQZDQACADIAdyNgIAIAEgADYCGCABIAE2AgggASABNgIMDAELIARBGSACQQF2a0EAIAJBH0cbdCECIAAoAgAhAAJAA0AgACIDKAIEQXhxIARGDQEgAkEddiEAIAJBAXQhAiADIABBBHFqQRBqIgcoAgAiAA0ACyAHIAE2AgAgASADNgIYIAEgATYCDCABIAE2AggMAQsgAygCCCIAIAE2AgwgAyABNgIIIAFBADYCGCABIAM2AgwgASAANgIIC0Gs0ABBrNAAKAIAQQFrIgBBfyAAGzYCAAsLBwAgAC0AKAsHACAALQAqCwcAIAAtACsLBwAgAC0AKQsHACAALwEyCwcAIAAtAC4LQAEEfyAAKAIYIQEgAC0ALSECIAAtACghAyAAKAI4IQQgABAwIAAgBDYCOCAAIAM6ACggACACOgAtIAAgATYCGAu74gECB38DfiABIAJqIQQCQCAAIgIoAgwiAA0AIAIoAgQEQCACIAE2AgQLIwBBEGsiCCQAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAIoAhwiA0EBaw7dAdoBAdkBAgMEBQYHCAkKCwwNDtgBDxDXARES1gETFBUWFxgZGhvgAd8BHB0e1QEfICEiIyQl1AEmJygpKiss0wHSAS0u0QHQAS8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRtsBR0hJSs8BzgFLzQFMzAFNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AAYEBggGDAYQBhQGGAYcBiAGJAYoBiwGMAY0BjgGPAZABkQGSAZMBlAGVAZYBlwGYAZkBmgGbAZwBnQGeAZ8BoAGhAaIBowGkAaUBpgGnAagBqQGqAasBrAGtAa4BrwGwAbEBsgGzAbQBtQG2AbcBywHKAbgByQG5AcgBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgEA3AELQQAMxgELQQ4MxQELQQ0MxAELQQ8MwwELQRAMwgELQRMMwQELQRQMwAELQRUMvwELQRYMvgELQRgMvQELQRkMvAELQRoMuwELQRsMugELQRwMuQELQR0MuAELQQgMtwELQR4MtgELQSAMtQELQR8MtAELQQcMswELQSEMsgELQSIMsQELQSMMsAELQSQMrwELQRIMrgELQREMrQELQSUMrAELQSYMqwELQScMqgELQSgMqQELQcMBDKgBC0EqDKcBC0ErDKYBC0EsDKUBC0EtDKQBC0EuDKMBC0EvDKIBC0HEAQyhAQtBMAygAQtBNAyfAQtBDAyeAQtBMQydAQtBMgycAQtBMwybAQtBOQyaAQtBNQyZAQtBxQEMmAELQQsMlwELQToMlgELQTYMlQELQQoMlAELQTcMkwELQTgMkgELQTwMkQELQTsMkAELQT0MjwELQQkMjgELQSkMjQELQT4MjAELQT8MiwELQcAADIoBC0HBAAyJAQtBwgAMiAELQcMADIcBC0HEAAyGAQtBxQAMhQELQcYADIQBC0EXDIMBC0HHAAyCAQtByAAMgQELQckADIABC0HKAAx/C0HLAAx+C0HNAAx9C0HMAAx8C0HOAAx7C0HPAAx6C0HQAAx5C0HRAAx4C0HSAAx3C0HTAAx2C0HUAAx1C0HWAAx0C0HVAAxzC0EGDHILQdcADHELQQUMcAtB2AAMbwtBBAxuC0HZAAxtC0HaAAxsC0HbAAxrC0HcAAxqC0EDDGkLQd0ADGgLQd4ADGcLQd8ADGYLQeEADGULQeAADGQLQeIADGMLQeMADGILQQIMYQtB5AAMYAtB5QAMXwtB5gAMXgtB5wAMXQtB6AAMXAtB6QAMWwtB6gAMWgtB6wAMWQtB7AAMWAtB7QAMVwtB7gAMVgtB7wAMVQtB8AAMVAtB8QAMUwtB8gAMUgtB8wAMUQtB9AAMUAtB9QAMTwtB9gAMTgtB9wAMTQtB+AAMTAtB+QAMSwtB+gAMSgtB+wAMSQtB/AAMSAtB/QAMRwtB/gAMRgtB/wAMRQtBgAEMRAtBgQEMQwtBggEMQgtBgwEMQQtBhAEMQAtBhQEMPwtBhgEMPgtBhwEMPQtBiAEMPAtBiQEMOwtBigEMOgtBiwEMOQtBjAEMOAtBjQEMNwtBjgEMNgtBjwEMNQtBkAEMNAtBkQEMMwtBkgEMMgtBkwEMMQtBlAEMMAtBlQEMLwtBlgEMLgtBlwEMLQtBmAEMLAtBmQEMKwtBmgEMKgtBmwEMKQtBnAEMKAtBnQEMJwtBngEMJgtBnwEMJQtBoAEMJAtBoQEMIwtBogEMIgtBowEMIQtBpAEMIAtBpQEMHwtBpgEMHgtBpwEMHQtBqAEMHAtBqQEMGwtBqgEMGgtBqwEMGQtBrAEMGAtBrQEMFwtBrgEMFgtBAQwVC0GvAQwUC0GwAQwTC0GxAQwSC0GzAQwRC0GyAQwQC0G0AQwPC0G1AQwOC0G2AQwNC0G3AQwMC0G4AQwLC0G5AQwKC0G6AQwJC0G7AQwIC0HGAQwHC0G8AQwGC0G9AQwFC0G+AQwEC0G/AQwDC0HAAQwCC0HCAQwBC0HBAQshAwNAAkACQAJAAkACQAJAAkACQAJAIAICfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAgJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAn8CQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCADDsYBAAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHyAhIyUmKCorLC8wMTIzNDU2Nzk6Ozw9lANAQkRFRklLTk9QUVJTVFVWWFpbXF1eX2BhYmNkZWZnaGpsb3Bxc3V2eHl6e3x/gAGBAYIBgwGEAYUBhgGHAYgBiQGKAYsBjAGNAY4BjwGQAZEBkgGTAZQBlQGWAZcBmAGZAZoBmwGcAZ0BngGfAaABoQGiAaMBpAGlAaYBpwGoAakBqgGrAawBrQGuAa8BsAGxAbIBswG0AbUBtgG3AbgBuQG6AbsBvAG9Ab4BvwHAAcEBwgHDAcQBxQHGAccByAHJAcsBzAHNAc4BzwGKA4kDiAOHA4QDgwOAA/sC+gL5AvgC9wL0AvMC8gLLAsECsALZAQsgASAERw3wAkHdASEDDLMDCyABIARHDcgBQcMBIQMMsgMLIAEgBEcNe0H3ACEDDLEDCyABIARHDXBB7wAhAwywAwsgASAERw1pQeoAIQMMrwMLIAEgBEcNZUHoACEDDK4DCyABIARHDWJB5gAhAwytAwsgASAERw0aQRghAwysAwsgASAERw0VQRIhAwyrAwsgASAERw1CQcUAIQMMqgMLIAEgBEcNNEE/IQMMqQMLIAEgBEcNMkE8IQMMqAMLIAEgBEcNK0ExIQMMpwMLIAItAC5BAUYNnwMMwQILQQAhAAJAAkACQCACLQAqRQ0AIAItACtFDQAgAi8BMCIDQQJxRQ0BDAILIAIvATAiA0EBcUUNAQtBASEAIAItAChBAUYNACACLwEyIgVB5ABrQeQASQ0AIAVBzAFGDQAgBUGwAkYNACADQcAAcQ0AQQAhACADQYgEcUGABEYNACADQShxQQBHIQALIAJBADsBMCACQQA6AC8gAEUN3wIgAkIANwMgDOACC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAARQ3MASAAQRVHDd0CIAJBBDYCHCACIAE2AhQgAkGwGDYCECACQRU2AgxBACEDDKQDCyABIARGBEBBBiEDDKQDCyABQQFqIQFBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAA3ZAgwcCyACQgA3AyBBEiEDDIkDCyABIARHDRZBHSEDDKEDCyABIARHBEAgAUEBaiEBQRAhAwyIAwtBByEDDKADCyACIAIpAyAiCiAEIAFrrSILfSIMQgAgCiAMWhs3AyAgCiALWA3UAkEIIQMMnwMLIAEgBEcEQCACQQk2AgggAiABNgIEQRQhAwyGAwtBCSEDDJ4DCyACKQMgQgBSDccBIAIgAi8BMEGAAXI7ATAMQgsgASAERw0/QdAAIQMMnAMLIAEgBEYEQEELIQMMnAMLIAFBAWohAUEAIQACQCACKAI4IgNFDQAgAygCUCIDRQ0AIAIgAxEAACEACyAADc8CDMYBC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ3GASAAQRVHDc0CIAJBCzYCHCACIAE2AhQgAkGCGTYCECACQRU2AgxBACEDDJoDC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ0MIABBFUcNygIgAkEaNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMmQMLQQAhAAJAIAIoAjgiA0UNACADKAJMIgNFDQAgAiADEQAAIQALIABFDcQBIABBFUcNxwIgAkELNgIcIAIgATYCFCACQZEXNgIQIAJBFTYCDEEAIQMMmAMLIAEgBEYEQEEPIQMMmAMLIAEtAAAiAEE7Rg0HIABBDUcNxAIgAUEBaiEBDMMBC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3DASAAQRVHDcICIAJBDzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJYDCwNAIAEtAABB8DVqLQAAIgBBAUcEQCAAQQJHDcECIAIoAgQhAEEAIQMgAkEANgIEIAIgACABQQFqIgEQLSIADcICDMUBCyAEIAFBAWoiAUcNAAtBEiEDDJUDC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3FASAAQRVHDb0CIAJBGzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJQDCyABIARGBEBBFiEDDJQDCyACQQo2AgggAiABNgIEQQAhAAJAIAIoAjgiA0UNACADKAJIIgNFDQAgAiADEQAAIQALIABFDcIBIABBFUcNuQIgAkEVNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMkwMLIAEgBEcEQANAIAEtAABB8DdqLQAAIgBBAkcEQAJAIABBAWsOBMQCvQIAvgK9AgsgAUEBaiEBQQghAwz8AgsgBCABQQFqIgFHDQALQRUhAwyTAwtBFSEDDJIDCwNAIAEtAABB8DlqLQAAIgBBAkcEQCAAQQFrDgTFArcCwwK4ArcCCyAEIAFBAWoiAUcNAAtBGCEDDJEDCyABIARHBEAgAkELNgIIIAIgATYCBEEHIQMM+AILQRkhAwyQAwsgAUEBaiEBDAILIAEgBEYEQEEaIQMMjwMLAkAgAS0AAEENaw4UtQG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwEAvwELQQAhAyACQQA2AhwgAkGvCzYCECACQQI2AgwgAiABQQFqNgIUDI4DCyABIARGBEBBGyEDDI4DCyABLQAAIgBBO0cEQCAAQQ1HDbECIAFBAWohAQy6AQsgAUEBaiEBC0EiIQMM8wILIAEgBEYEQEEcIQMMjAMLQgAhCgJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAS0AAEEwaw43wQLAAgABAgMEBQYH0AHQAdAB0AHQAdAB0AEICQoLDA3QAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdABDg8QERIT0AELQgIhCgzAAgtCAyEKDL8CC0IEIQoMvgILQgUhCgy9AgtCBiEKDLwCC0IHIQoMuwILQgghCgy6AgtCCSEKDLkCC0IKIQoMuAILQgshCgy3AgtCDCEKDLYCC0INIQoMtQILQg4hCgy0AgtCDyEKDLMCC0IKIQoMsgILQgshCgyxAgtCDCEKDLACC0INIQoMrwILQg4hCgyuAgtCDyEKDK0CC0IAIQoCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAEtAABBMGsON8ACvwIAAQIDBAUGB74CvgK+Ar4CvgK+Ar4CCAkKCwwNvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ag4PEBESE74CC0ICIQoMvwILQgMhCgy+AgtCBCEKDL0CC0IFIQoMvAILQgYhCgy7AgtCByEKDLoCC0IIIQoMuQILQgkhCgy4AgtCCiEKDLcCC0ILIQoMtgILQgwhCgy1AgtCDSEKDLQCC0IOIQoMswILQg8hCgyyAgtCCiEKDLECC0ILIQoMsAILQgwhCgyvAgtCDSEKDK4CC0IOIQoMrQILQg8hCgysAgsgAiACKQMgIgogBCABa60iC30iDEIAIAogDFobNwMgIAogC1gNpwJBHyEDDIkDCyABIARHBEAgAkEJNgIIIAIgATYCBEElIQMM8AILQSAhAwyIAwtBASEFIAIvATAiA0EIcUUEQCACKQMgQgBSIQULAkAgAi0ALgRAQQEhACACLQApQQVGDQEgA0HAAHFFIAVxRQ0BC0EAIQAgA0HAAHENAEECIQAgA0EIcQ0AIANBgARxBEACQCACLQAoQQFHDQAgAi0ALUEKcQ0AQQUhAAwCC0EEIQAMAQsgA0EgcUUEQAJAIAItAChBAUYNACACLwEyIgBB5ABrQeQASQ0AIABBzAFGDQAgAEGwAkYNAEEEIQAgA0EocUUNAiADQYgEcUGABEYNAgtBACEADAELQQBBAyACKQMgUBshAAsgAEEBaw4FvgIAsAEBpAKhAgtBESEDDO0CCyACQQE6AC8MhAMLIAEgBEcNnQJBJCEDDIQDCyABIARHDRxBxgAhAwyDAwtBACEAAkAgAigCOCIDRQ0AIAMoAkQiA0UNACACIAMRAAAhAAsgAEUNJyAAQRVHDZgCIAJB0AA2AhwgAiABNgIUIAJBkRg2AhAgAkEVNgIMQQAhAwyCAwsgASAERgRAQSghAwyCAwtBACEDIAJBADYCBCACQQw2AgggAiABIAEQKiIARQ2UAiACQSc2AhwgAiABNgIUIAIgADYCDAyBAwsgASAERgRAQSkhAwyBAwsgAS0AACIAQSBGDRMgAEEJRw2VAiABQQFqIQEMFAsgASAERwRAIAFBAWohAQwWC0EqIQMM/wILIAEgBEYEQEErIQMM/wILIAEtAAAiAEEJRyAAQSBHcQ2QAiACLQAsQQhHDd0CIAJBADoALAzdAgsgASAERgRAQSwhAwz+AgsgAS0AAEEKRw2OAiABQQFqIQEMsAELIAEgBEcNigJBLyEDDPwCCwNAIAEtAAAiAEEgRwRAIABBCmsOBIQCiAKIAoQChgILIAQgAUEBaiIBRw0AC0ExIQMM+wILQTIhAyABIARGDfoCIAIoAgAiACAEIAFraiEHIAEgAGtBA2ohBgJAA0AgAEHwO2otAAAgAS0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDQEgAEEDRgRAQQYhAQziAgsgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAc2AgAM+wILIAJBADYCAAyGAgtBMyEDIAQgASIARg35AiAEIAFrIAIoAgAiAWohByAAIAFrQQhqIQYCQANAIAFB9DtqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBCEYEQEEFIQEM4QILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPoCCyACQQA2AgAgACEBDIUCC0E0IQMgBCABIgBGDfgCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgJAA0AgAUHQwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBBUYEQEEHIQEM4AILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPkCCyACQQA2AgAgACEBDIQCCyABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRg0JDIECCyAEIAFBAWoiAUcNAAtBMCEDDPgCC0EwIQMM9wILIAEgBEcEQANAIAEtAAAiAEEgRwRAIABBCmsOBP8B/gH+Af8B/gELIAQgAUEBaiIBRw0AC0E4IQMM9wILQTghAwz2AgsDQCABLQAAIgBBIEcgAEEJR3EN9gEgBCABQQFqIgFHDQALQTwhAwz1AgsDQCABLQAAIgBBIEcEQAJAIABBCmsOBPkBBAT5AQALIABBLEYN9QEMAwsgBCABQQFqIgFHDQALQT8hAwz0AgtBwAAhAyABIARGDfMCIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAEGAQGstAAAgAS0AAEEgckcNASAAQQZGDdsCIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPQCCyACQQA2AgALQTYhAwzZAgsgASAERgRAQcEAIQMM8gILIAJBDDYCCCACIAE2AgQgAi0ALEEBaw4E+wHuAewB6wHUAgsgAUEBaiEBDPoBCyABIARHBEADQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxIgBBCUYNACAAQSBGDQACQAJAAkACQCAAQeMAaw4TAAMDAwMDAwMBAwMDAwMDAwMDAgMLIAFBAWohAUExIQMM3AILIAFBAWohAUEyIQMM2wILIAFBAWohAUEzIQMM2gILDP4BCyAEIAFBAWoiAUcNAAtBNSEDDPACC0E1IQMM7wILIAEgBEcEQANAIAEtAABBgDxqLQAAQQFHDfcBIAQgAUEBaiIBRw0AC0E9IQMM7wILQT0hAwzuAgtBACEAAkAgAigCOCIDRQ0AIAMoAkAiA0UNACACIAMRAAAhAAsgAEUNASAAQRVHDeYBIAJBwgA2AhwgAiABNgIUIAJB4xg2AhAgAkEVNgIMQQAhAwztAgsgAUEBaiEBC0E8IQMM0gILIAEgBEYEQEHCACEDDOsCCwJAA0ACQCABLQAAQQlrDhgAAswCzALRAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAgDMAgsgBCABQQFqIgFHDQALQcIAIQMM6wILIAFBAWohASACLQAtQQFxRQ3+AQtBLCEDDNACCyABIARHDd4BQcQAIQMM6AILA0AgAS0AAEGQwABqLQAAQQFHDZwBIAQgAUEBaiIBRw0AC0HFACEDDOcCCyABLQAAIgBBIEYN/gEgAEE6Rw3AAiACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgAN3gEM3QELQccAIQMgBCABIgBGDeUCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFBkMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvwIgAUEFRg3CAiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzlAgtByAAhAyAEIAEiAEYN5AIgBCABayACKAIAIgFqIQcgACABa0EJaiEGA0AgAUGWwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw2+AkECIAFBCUYNwgIaIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOQCCyABIARGBEBByQAhAwzkAgsCQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxQe4Aaw4HAL8CvwK/Ar8CvwIBvwILIAFBAWohAUE+IQMMywILIAFBAWohAUE/IQMMygILQcoAIQMgBCABIgBGDeICIAQgAWsgAigCACIBaiEGIAAgAWtBAWohBwNAIAFBoMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvAIgAUEBRg2+AiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBjYCAAziAgtBywAhAyAEIAEiAEYN4QIgBCABayACKAIAIgFqIQcgACABa0EOaiEGA0AgAUGiwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw27AiABQQ5GDb4CIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOECC0HMACEDIAQgASIARg3gAiAEIAFrIAIoAgAiAWohByAAIAFrQQ9qIQYDQCABQcDCAGotAAAgAC0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDboCQQMgAUEPRg2+AhogAUEBaiEBIAQgAEEBaiIARw0ACyACIAc2AgAM4AILQc0AIQMgBCABIgBGDd8CIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFB0MIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNuQJBBCABQQVGDb0CGiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzfAgsgASAERgRAQc4AIQMM3wILAkACQAJAAkAgAS0AACIAQSByIAAgAEHBAGtB/wFxQRpJG0H/AXFB4wBrDhMAvAK8ArwCvAK8ArwCvAK8ArwCvAK8ArwCAbwCvAK8AgIDvAILIAFBAWohAUHBACEDDMgCCyABQQFqIQFBwgAhAwzHAgsgAUEBaiEBQcMAIQMMxgILIAFBAWohAUHEACEDDMUCCyABIARHBEAgAkENNgIIIAIgATYCBEHFACEDDMUCC0HPACEDDN0CCwJAAkAgAS0AAEEKaw4EAZABkAEAkAELIAFBAWohAQtBKCEDDMMCCyABIARGBEBB0QAhAwzcAgsgAS0AAEEgRw0AIAFBAWohASACLQAtQQFxRQ3QAQtBFyEDDMECCyABIARHDcsBQdIAIQMM2QILQdMAIQMgASAERg3YAiACKAIAIgAgBCABa2ohBiABIABrQQFqIQUDQCABLQAAIABB1sIAai0AAEcNxwEgAEEBRg3KASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBjYCAAzYAgsgASAERgRAQdUAIQMM2AILIAEtAABBCkcNwgEgAUEBaiEBDMoBCyABIARGBEBB1gAhAwzXAgsCQAJAIAEtAABBCmsOBADDAcMBAcMBCyABQQFqIQEMygELIAFBAWohAUHKACEDDL0CC0EAIQACQCACKAI4IgNFDQAgAygCPCIDRQ0AIAIgAxEAACEACyAADb8BQc0AIQMMvAILIAItAClBIkYNzwIMiQELIAQgASIFRgRAQdsAIQMM1AILQQAhAEEBIQFBASEGQQAhAwJAAn8CQAJAAkACQAJAAkACQCAFLQAAQTBrDgrFAcQBAAECAwQFBgjDAQtBAgwGC0EDDAULQQQMBAtBBQwDC0EGDAILQQcMAQtBCAshA0EAIQFBACEGDL0BC0EJIQNBASEAQQAhAUEAIQYMvAELIAEgBEYEQEHdACEDDNMCCyABLQAAQS5HDbgBIAFBAWohAQyIAQsgASAERw22AUHfACEDDNECCyABIARHBEAgAkEONgIIIAIgATYCBEHQACEDDLgCC0HgACEDDNACC0HhACEDIAEgBEYNzwIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGA0AgAS0AACAAQeLCAGotAABHDbEBIABBA0YNswEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMzwILQeIAIQMgASAERg3OAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYDQCABLQAAIABB5sIAai0AAEcNsAEgAEECRg2vASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAzOAgtB4wAhAyABIARGDc0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgNAIAEtAAAgAEHpwgBqLQAARw2vASAAQQNGDa0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADM0CCyABIARGBEBB5QAhAwzNAgsgAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANqgFB1gAhAwyzAgsgASAERwRAA0AgAS0AACIAQSBHBEACQAJAAkAgAEHIAGsOCwABswGzAbMBswGzAbMBswGzAQKzAQsgAUEBaiEBQdIAIQMMtwILIAFBAWohAUHTACEDDLYCCyABQQFqIQFB1AAhAwy1AgsgBCABQQFqIgFHDQALQeQAIQMMzAILQeQAIQMMywILA0AgAS0AAEHwwgBqLQAAIgBBAUcEQCAAQQJrDgOnAaYBpQGkAQsgBCABQQFqIgFHDQALQeYAIQMMygILIAFBAWogASAERw0CGkHnACEDDMkCCwNAIAEtAABB8MQAai0AACIAQQFHBEACQCAAQQJrDgSiAaEBoAEAnwELQdcAIQMMsQILIAQgAUEBaiIBRw0AC0HoACEDDMgCCyABIARGBEBB6QAhAwzIAgsCQCABLQAAIgBBCmsOGrcBmwGbAbQBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBpAGbAZsBAJkBCyABQQFqCyEBQQYhAwytAgsDQCABLQAAQfDGAGotAABBAUcNfSAEIAFBAWoiAUcNAAtB6gAhAwzFAgsgAUEBaiABIARHDQIaQesAIQMMxAILIAEgBEYEQEHsACEDDMQCCyABQQFqDAELIAEgBEYEQEHtACEDDMMCCyABQQFqCyEBQQQhAwyoAgsgASAERgRAQe4AIQMMwQILAkACQAJAIAEtAABB8MgAai0AAEEBaw4HkAGPAY4BAHwBAo0BCyABQQFqIQEMCwsgAUEBagyTAQtBACEDIAJBADYCHCACQZsSNgIQIAJBBzYCDCACIAFBAWo2AhQMwAILAkADQCABLQAAQfDIAGotAAAiAEEERwRAAkACQCAAQQFrDgeUAZMBkgGNAQAEAY0BC0HaACEDDKoCCyABQQFqIQFB3AAhAwypAgsgBCABQQFqIgFHDQALQe8AIQMMwAILIAFBAWoMkQELIAQgASIARgRAQfAAIQMMvwILIAAtAABBL0cNASAAQQFqIQEMBwsgBCABIgBGBEBB8QAhAwy+AgsgAC0AACIBQS9GBEAgAEEBaiEBQd0AIQMMpQILIAFBCmsiA0EWSw0AIAAhAUEBIAN0QYmAgAJxDfkBC0EAIQMgAkEANgIcIAIgADYCFCACQYwcNgIQIAJBBzYCDAy8AgsgASAERwRAIAFBAWohAUHeACEDDKMCC0HyACEDDLsCCyABIARGBEBB9AAhAwy7AgsCQCABLQAAQfDMAGotAABBAWsOA/cBcwCCAQtB4QAhAwyhAgsgASAERwRAA0AgAS0AAEHwygBqLQAAIgBBA0cEQAJAIABBAWsOAvkBAIUBC0HfACEDDKMCCyAEIAFBAWoiAUcNAAtB8wAhAwy6AgtB8wAhAwy5AgsgASAERwRAIAJBDzYCCCACIAE2AgRB4AAhAwygAgtB9QAhAwy4AgsgASAERgRAQfYAIQMMuAILIAJBDzYCCCACIAE2AgQLQQMhAwydAgsDQCABLQAAQSBHDY4CIAQgAUEBaiIBRw0AC0H3ACEDDLUCCyABIARGBEBB+AAhAwy1AgsgAS0AAEEgRw16IAFBAWohAQxbC0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAADXgMgAILIAEgBEYEQEH6ACEDDLMCCyABLQAAQcwARw10IAFBAWohAUETDHYLQfsAIQMgASAERg2xAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYDQCABLQAAIABB8M4Aai0AAEcNcyAAQQVGDXUgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMsQILIAEgBEYEQEH8ACEDDLECCwJAAkAgAS0AAEHDAGsODAB0dHR0dHR0dHR0AXQLIAFBAWohAUHmACEDDJgCCyABQQFqIQFB5wAhAwyXAgtB/QAhAyABIARGDa8CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDXIgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADLACCyACQQA2AgAgBkEBaiEBQRAMcwtB/gAhAyABIARGDa4CIAIoAgAiACAEIAFraiEFIAEgAGtBBWohBgJAA0AgAS0AACAAQfbOAGotAABHDXEgAEEFRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK8CCyACQQA2AgAgBkEBaiEBQRYMcgtB/wAhAyABIARGDa0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQfzOAGotAABHDXAgAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK4CCyACQQA2AgAgBkEBaiEBQQUMcQsgASAERgRAQYABIQMMrQILIAEtAABB2QBHDW4gAUEBaiEBQQgMcAsgASAERgRAQYEBIQMMrAILAkACQCABLQAAQc4Aaw4DAG8BbwsgAUEBaiEBQesAIQMMkwILIAFBAWohAUHsACEDDJICCyABIARGBEBBggEhAwyrAgsCQAJAIAEtAABByABrDggAbm5ubm5uAW4LIAFBAWohAUHqACEDDJICCyABQQFqIQFB7QAhAwyRAgtBgwEhAyABIARGDakCIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQYDPAGotAABHDWwgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKoCCyACQQA2AgAgBkEBaiEBQQAMbQtBhAEhAyABIARGDagCIAIoAgAiACAEIAFraiEFIAEgAGtBBGohBgJAA0AgAS0AACAAQYPPAGotAABHDWsgAEEERg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKkCCyACQQA2AgAgBkEBaiEBQSMMbAsgASAERgRAQYUBIQMMqAILAkACQCABLQAAQcwAaw4IAGtra2trawFrCyABQQFqIQFB7wAhAwyPAgsgAUEBaiEBQfAAIQMMjgILIAEgBEYEQEGGASEDDKcCCyABLQAAQcUARw1oIAFBAWohAQxgC0GHASEDIAEgBEYNpQIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGAkADQCABLQAAIABBiM8Aai0AAEcNaCAAQQNGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpgILIAJBADYCACAGQQFqIQFBLQxpC0GIASEDIAEgBEYNpAIgAigCACIAIAQgAWtqIQUgASAAa0EIaiEGAkADQCABLQAAIABB0M8Aai0AAEcNZyAAQQhGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpQILIAJBADYCACAGQQFqIQFBKQxoCyABIARGBEBBiQEhAwykAgtBASABLQAAQd8ARw1nGiABQQFqIQEMXgtBigEhAyABIARGDaICIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgNAIAEtAAAgAEGMzwBqLQAARw1kIABBAUYN+gEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMogILQYsBIQMgASAERg2hAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGOzwBqLQAARw1kIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyiAgsgAkEANgIAIAZBAWohAUECDGULQYwBIQMgASAERg2gAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHwzwBqLQAARw1jIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyhAgsgAkEANgIAIAZBAWohAUEfDGQLQY0BIQMgASAERg2fAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHyzwBqLQAARw1iIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAygAgsgAkEANgIAIAZBAWohAUEJDGMLIAEgBEYEQEGOASEDDJ8CCwJAAkAgAS0AAEHJAGsOBwBiYmJiYgFiCyABQQFqIQFB+AAhAwyGAgsgAUEBaiEBQfkAIQMMhQILQY8BIQMgASAERg2dAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGRzwBqLQAARw1gIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyeAgsgAkEANgIAIAZBAWohAUEYDGELQZABIQMgASAERg2cAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGXzwBqLQAARw1fIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAydAgsgAkEANgIAIAZBAWohAUEXDGALQZEBIQMgASAERg2bAiACKAIAIgAgBCABa2ohBSABIABrQQZqIQYCQANAIAEtAAAgAEGazwBqLQAARw1eIABBBkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAycAgsgAkEANgIAIAZBAWohAUEVDF8LQZIBIQMgASAERg2aAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGhzwBqLQAARw1dIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAybAgsgAkEANgIAIAZBAWohAUEeDF4LIAEgBEYEQEGTASEDDJoCCyABLQAAQcwARw1bIAFBAWohAUEKDF0LIAEgBEYEQEGUASEDDJkCCwJAAkAgAS0AAEHBAGsODwBcXFxcXFxcXFxcXFxcAVwLIAFBAWohAUH+ACEDDIACCyABQQFqIQFB/wAhAwz/AQsgASAERgRAQZUBIQMMmAILAkACQCABLQAAQcEAaw4DAFsBWwsgAUEBaiEBQf0AIQMM/wELIAFBAWohAUGAASEDDP4BC0GWASEDIAEgBEYNlgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBp88Aai0AAEcNWSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlwILIAJBADYCACAGQQFqIQFBCwxaCyABIARGBEBBlwEhAwyWAgsCQAJAAkACQCABLQAAQS1rDiMAW1tbW1tbW1tbW1tbW1tbW1tbW1tbW1sBW1tbW1sCW1tbA1sLIAFBAWohAUH7ACEDDP8BCyABQQFqIQFB/AAhAwz+AQsgAUEBaiEBQYEBIQMM/QELIAFBAWohAUGCASEDDPwBC0GYASEDIAEgBEYNlAIgAigCACIAIAQgAWtqIQUgASAAa0EEaiEGAkADQCABLQAAIABBqc8Aai0AAEcNVyAAQQRGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlQILIAJBADYCACAGQQFqIQFBGQxYC0GZASEDIAEgBEYNkwIgAigCACIAIAQgAWtqIQUgASAAa0EFaiEGAkADQCABLQAAIABBrs8Aai0AAEcNViAAQQVGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlAILIAJBADYCACAGQQFqIQFBBgxXC0GaASEDIAEgBEYNkgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBtM8Aai0AAEcNVSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkwILIAJBADYCACAGQQFqIQFBHAxWC0GbASEDIAEgBEYNkQIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBts8Aai0AAEcNVCAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkgILIAJBADYCACAGQQFqIQFBJwxVCyABIARGBEBBnAEhAwyRAgsCQAJAIAEtAABB1ABrDgIAAVQLIAFBAWohAUGGASEDDPgBCyABQQFqIQFBhwEhAwz3AQtBnQEhAyABIARGDY8CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbjPAGotAABHDVIgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADJACCyACQQA2AgAgBkEBaiEBQSYMUwtBngEhAyABIARGDY4CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbrPAGotAABHDVEgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI8CCyACQQA2AgAgBkEBaiEBQQMMUgtBnwEhAyABIARGDY0CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDVAgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI4CCyACQQA2AgAgBkEBaiEBQQwMUQtBoAEhAyABIARGDYwCIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQbzPAGotAABHDU8gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI0CCyACQQA2AgAgBkEBaiEBQQ0MUAsgASAERgRAQaEBIQMMjAILAkACQCABLQAAQcYAaw4LAE9PT09PT09PTwFPCyABQQFqIQFBiwEhAwzzAQsgAUEBaiEBQYwBIQMM8gELIAEgBEYEQEGiASEDDIsCCyABLQAAQdAARw1MIAFBAWohAQxGCyABIARGBEBBowEhAwyKAgsCQAJAIAEtAABByQBrDgcBTU1NTU0ATQsgAUEBaiEBQY4BIQMM8QELIAFBAWohAUEiDE0LQaQBIQMgASAERg2IAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHAzwBqLQAARw1LIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyJAgsgAkEANgIAIAZBAWohAUEdDEwLIAEgBEYEQEGlASEDDIgCCwJAAkAgAS0AAEHSAGsOAwBLAUsLIAFBAWohAUGQASEDDO8BCyABQQFqIQFBBAxLCyABIARGBEBBpgEhAwyHAgsCQAJAAkACQAJAIAEtAABBwQBrDhUATU1NTU1NTU1NTQFNTQJNTQNNTQRNCyABQQFqIQFBiAEhAwzxAQsgAUEBaiEBQYkBIQMM8AELIAFBAWohAUGKASEDDO8BCyABQQFqIQFBjwEhAwzuAQsgAUEBaiEBQZEBIQMM7QELQacBIQMgASAERg2FAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHtzwBqLQAARw1IIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyGAgsgAkEANgIAIAZBAWohAUERDEkLQagBIQMgASAERg2EAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHCzwBqLQAARw1HIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyFAgsgAkEANgIAIAZBAWohAUEsDEgLQakBIQMgASAERg2DAiACKAIAIgAgBCABa2ohBSABIABrQQRqIQYCQANAIAEtAAAgAEHFzwBqLQAARw1GIABBBEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyEAgsgAkEANgIAIAZBAWohAUErDEcLQaoBIQMgASAERg2CAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHKzwBqLQAARw1FIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyDAgsgAkEANgIAIAZBAWohAUEUDEYLIAEgBEYEQEGrASEDDIICCwJAAkACQAJAIAEtAABBwgBrDg8AAQJHR0dHR0dHR0dHRwNHCyABQQFqIQFBkwEhAwzrAQsgAUEBaiEBQZQBIQMM6gELIAFBAWohAUGVASEDDOkBCyABQQFqIQFBlgEhAwzoAQsgASAERgRAQawBIQMMgQILIAEtAABBxQBHDUIgAUEBaiEBDD0LQa0BIQMgASAERg3/ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHNzwBqLQAARw1CIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyAAgsgAkEANgIAIAZBAWohAUEODEMLIAEgBEYEQEGuASEDDP8BCyABLQAAQdAARw1AIAFBAWohAUElDEILQa8BIQMgASAERg39ASACKAIAIgAgBCABa2ohBSABIABrQQhqIQYCQANAIAEtAAAgAEHQzwBqLQAARw1AIABBCEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz+AQsgAkEANgIAIAZBAWohAUEqDEELIAEgBEYEQEGwASEDDP0BCwJAAkAgAS0AAEHVAGsOCwBAQEBAQEBAQEABQAsgAUEBaiEBQZoBIQMM5AELIAFBAWohAUGbASEDDOMBCyABIARGBEBBsQEhAwz8AQsCQAJAIAEtAABBwQBrDhQAPz8/Pz8/Pz8/Pz8/Pz8/Pz8/AT8LIAFBAWohAUGZASEDDOMBCyABQQFqIQFBnAEhAwziAQtBsgEhAyABIARGDfoBIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQdnPAGotAABHDT0gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPsBCyACQQA2AgAgBkEBaiEBQSEMPgtBswEhAyABIARGDfkBIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAS0AACAAQd3PAGotAABHDTwgAEEGRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPoBCyACQQA2AgAgBkEBaiEBQRoMPQsgASAERgRAQbQBIQMM+QELAkACQAJAIAEtAABBxQBrDhEAPT09PT09PT09AT09PT09Aj0LIAFBAWohAUGdASEDDOEBCyABQQFqIQFBngEhAwzgAQsgAUEBaiEBQZ8BIQMM3wELQbUBIQMgASAERg33ASACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEHkzwBqLQAARw06IABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz4AQsgAkEANgIAIAZBAWohAUEoDDsLQbYBIQMgASAERg32ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHqzwBqLQAARw05IABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz3AQsgAkEANgIAIAZBAWohAUEHDDoLIAEgBEYEQEG3ASEDDPYBCwJAAkAgAS0AAEHFAGsODgA5OTk5OTk5OTk5OTkBOQsgAUEBaiEBQaEBIQMM3QELIAFBAWohAUGiASEDDNwBC0G4ASEDIAEgBEYN9AEgAigCACIAIAQgAWtqIQUgASAAa0ECaiEGAkADQCABLQAAIABB7c8Aai0AAEcNNyAAQQJGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9QELIAJBADYCACAGQQFqIQFBEgw4C0G5ASEDIAEgBEYN8wEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8M8Aai0AAEcNNiAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9AELIAJBADYCACAGQQFqIQFBIAw3C0G6ASEDIAEgBEYN8gEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8s8Aai0AAEcNNSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8wELIAJBADYCACAGQQFqIQFBDww2CyABIARGBEBBuwEhAwzyAQsCQAJAIAEtAABByQBrDgcANTU1NTUBNQsgAUEBaiEBQaUBIQMM2QELIAFBAWohAUGmASEDDNgBC0G8ASEDIAEgBEYN8AEgAigCACIAIAQgAWtqIQUgASAAa0EHaiEGAkADQCABLQAAIABB9M8Aai0AAEcNMyAAQQdGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8QELIAJBADYCACAGQQFqIQFBGww0CyABIARGBEBBvQEhAwzwAQsCQAJAAkAgAS0AAEHCAGsOEgA0NDQ0NDQ0NDQBNDQ0NDQ0AjQLIAFBAWohAUGkASEDDNgBCyABQQFqIQFBpwEhAwzXAQsgAUEBaiEBQagBIQMM1gELIAEgBEYEQEG+ASEDDO8BCyABLQAAQc4ARw0wIAFBAWohAQwsCyABIARGBEBBvwEhAwzuAQsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCABLQAAQcEAaw4VAAECAz8EBQY/Pz8HCAkKCz8MDQ4PPwsgAUEBaiEBQegAIQMM4wELIAFBAWohAUHpACEDDOIBCyABQQFqIQFB7gAhAwzhAQsgAUEBaiEBQfIAIQMM4AELIAFBAWohAUHzACEDDN8BCyABQQFqIQFB9gAhAwzeAQsgAUEBaiEBQfcAIQMM3QELIAFBAWohAUH6ACEDDNwBCyABQQFqIQFBgwEhAwzbAQsgAUEBaiEBQYQBIQMM2gELIAFBAWohAUGFASEDDNkBCyABQQFqIQFBkgEhAwzYAQsgAUEBaiEBQZgBIQMM1wELIAFBAWohAUGgASEDDNYBCyABQQFqIQFBowEhAwzVAQsgAUEBaiEBQaoBIQMM1AELIAEgBEcEQCACQRA2AgggAiABNgIEQasBIQMM1AELQcABIQMM7AELQQAhAAJAIAIoAjgiA0UNACADKAI0IgNFDQAgAiADEQAAIQALIABFDV4gAEEVRw0HIAJB0QA2AhwgAiABNgIUIAJBsBc2AhAgAkEVNgIMQQAhAwzrAQsgAUEBaiABIARHDQgaQcIBIQMM6gELA0ACQCABLQAAQQprDgQIAAALAAsgBCABQQFqIgFHDQALQcMBIQMM6QELIAEgBEcEQCACQRE2AgggAiABNgIEQQEhAwzQAQtBxAEhAwzoAQsgASAERgRAQcUBIQMM6AELAkACQCABLQAAQQprDgQBKCgAKAsgAUEBagwJCyABQQFqDAULIAEgBEYEQEHGASEDDOcBCwJAAkAgAS0AAEEKaw4XAQsLAQsLCwsLCwsLCwsLCwsLCwsLCwALCyABQQFqIQELQbABIQMMzQELIAEgBEYEQEHIASEDDOYBCyABLQAAQSBHDQkgAkEAOwEyIAFBAWohAUGzASEDDMwBCwNAIAEhAAJAIAEgBEcEQCABLQAAQTBrQf8BcSIDQQpJDQEMJwtBxwEhAwzmAQsCQCACLwEyIgFBmTNLDQAgAiABQQpsIgU7ATIgBUH+/wNxIANB//8Dc0sNACAAQQFqIQEgAiADIAVqIgM7ATIgA0H//wNxQegHSQ0BCwtBACEDIAJBADYCHCACQcEJNgIQIAJBDTYCDCACIABBAWo2AhQM5AELIAJBADYCHCACIAE2AhQgAkHwDDYCECACQRs2AgxBACEDDOMBCyACKAIEIQAgAkEANgIEIAIgACABECYiAA0BIAFBAWoLIQFBrQEhAwzIAQsgAkHBATYCHCACIAA2AgwgAiABQQFqNgIUQQAhAwzgAQsgAigCBCEAIAJBADYCBCACIAAgARAmIgANASABQQFqCyEBQa4BIQMMxQELIAJBwgE2AhwgAiAANgIMIAIgAUEBajYCFEEAIQMM3QELIAJBADYCHCACIAE2AhQgAkGXCzYCECACQQ02AgxBACEDDNwBCyACQQA2AhwgAiABNgIUIAJB4xA2AhAgAkEJNgIMQQAhAwzbAQsgAkECOgAoDKwBC0EAIQMgAkEANgIcIAJBrws2AhAgAkECNgIMIAIgAUEBajYCFAzZAQtBAiEDDL8BC0ENIQMMvgELQSYhAwy9AQtBFSEDDLwBC0EWIQMMuwELQRghAwy6AQtBHCEDDLkBC0EdIQMMuAELQSAhAwy3AQtBISEDDLYBC0EjIQMMtQELQcYAIQMMtAELQS4hAwyzAQtBPSEDDLIBC0HLACEDDLEBC0HOACEDDLABC0HYACEDDK8BC0HZACEDDK4BC0HbACEDDK0BC0HxACEDDKwBC0H0ACEDDKsBC0GNASEDDKoBC0GXASEDDKkBC0GpASEDDKgBC0GvASEDDKcBC0GxASEDDKYBCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB8Rs2AhAgAkEGNgIMDL0BCyACQQA2AgAgBkEBaiEBQSQLOgApIAIoAgQhACACQQA2AgQgAiAAIAEQJyIARQRAQeUAIQMMowELIAJB+QA2AhwgAiABNgIUIAIgADYCDEEAIQMMuwELIABBFUcEQCACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwy7AQsgAkH4ADYCHCACIAE2AhQgAkHKGDYCECACQRU2AgxBACEDDLoBCyACQQA2AhwgAiABNgIUIAJBjhs2AhAgAkEGNgIMQQAhAwy5AQsgAkEANgIcIAIgATYCFCACQf4RNgIQIAJBBzYCDEEAIQMMuAELIAJBADYCHCACIAE2AhQgAkGMHDYCECACQQc2AgxBACEDDLcBCyACQQA2AhwgAiABNgIUIAJBww82AhAgAkEHNgIMQQAhAwy2AQsgAkEANgIcIAIgATYCFCACQcMPNgIQIAJBBzYCDEEAIQMMtQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0RIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMtAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0gIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMswELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0iIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMsgELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0OIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMsQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0dIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMsAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0fIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMrwELIABBP0cNASABQQFqCyEBQQUhAwyUAQtBACEDIAJBADYCHCACIAE2AhQgAkH9EjYCECACQQc2AgwMrAELIAJBADYCHCACIAE2AhQgAkHcCDYCECACQQc2AgxBACEDDKsBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNByACQeUANgIcIAIgATYCFCACIAA2AgxBACEDDKoBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNFiACQdMANgIcIAIgATYCFCACIAA2AgxBACEDDKkBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNGCACQdIANgIcIAIgATYCFCACIAA2AgxBACEDDKgBCyACQQA2AhwgAiABNgIUIAJBxgo2AhAgAkEHNgIMQQAhAwynAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQMgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwymAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRIgAkHTADYCHCACIAE2AhQgAiAANgIMQQAhAwylAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRQgAkHSADYCHCACIAE2AhQgAiAANgIMQQAhAwykAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQAgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwyjAQtB1QAhAwyJAQsgAEEVRwRAIAJBADYCHCACIAE2AhQgAkG5DTYCECACQRo2AgxBACEDDKIBCyACQeQANgIcIAIgATYCFCACQeMXNgIQIAJBFTYCDEEAIQMMoQELIAJBADYCACAGQQFqIQEgAi0AKSIAQSNrQQtJDQQCQCAAQQZLDQBBASAAdEHKAHFFDQAMBQtBACEDIAJBADYCHCACIAE2AhQgAkH3CTYCECACQQg2AgwMoAELIAJBADYCACAGQQFqIQEgAi0AKUEhRg0DIAJBADYCHCACIAE2AhQgAkGbCjYCECACQQg2AgxBACEDDJ8BCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJBkDM2AhAgAkEINgIMDJ0BCyACQQA2AgAgBkEBaiEBIAItAClBI0kNACACQQA2AhwgAiABNgIUIAJB0wk2AhAgAkEINgIMQQAhAwycAQtB0QAhAwyCAQsgAS0AAEEwayIAQf8BcUEKSQRAIAIgADoAKiABQQFqIQFBzwAhAwyCAQsgAigCBCEAIAJBADYCBCACIAAgARAoIgBFDYYBIAJB3gA2AhwgAiABNgIUIAIgADYCDEEAIQMMmgELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ2GASACQdwANgIcIAIgATYCFCACIAA2AgxBACEDDJkBCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMhwELIAJB2gA2AhwgAiAFNgIUIAIgADYCDAyYAQtBACEBQQEhAwsgAiADOgArIAVBAWohAwJAAkACQCACLQAtQRBxDQACQAJAAkAgAi0AKg4DAQACBAsgBkUNAwwCCyAADQEMAgsgAUUNAQsgAigCBCEAIAJBADYCBCACIAAgAxAoIgBFBEAgAyEBDAILIAJB2AA2AhwgAiADNgIUIAIgADYCDEEAIQMMmAELIAIoAgQhACACQQA2AgQgAiAAIAMQKCIARQRAIAMhAQyHAQsgAkHZADYCHCACIAM2AhQgAiAANgIMQQAhAwyXAQtBzAAhAwx9CyAAQRVHBEAgAkEANgIcIAIgATYCFCACQZQNNgIQIAJBITYCDEEAIQMMlgELIAJB1wA2AhwgAiABNgIUIAJByRc2AhAgAkEVNgIMQQAhAwyVAQtBACEDIAJBADYCHCACIAE2AhQgAkGAETYCECACQQk2AgwMlAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0AIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMkwELQckAIQMMeQsgAkEANgIcIAIgATYCFCACQcEoNgIQIAJBBzYCDCACQQA2AgBBACEDDJEBCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAlIgBFDQAgAkHSADYCHCACIAE2AhQgAiAANgIMDJABC0HIACEDDHYLIAJBADYCACAFIQELIAJBgBI7ASogAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANAQtBxwAhAwxzCyAAQRVGBEAgAkHRADYCHCACIAE2AhQgAkHjFzYCECACQRU2AgxBACEDDIwBC0EAIQMgAkEANgIcIAIgATYCFCACQbkNNgIQIAJBGjYCDAyLAQtBACEDIAJBADYCHCACIAE2AhQgAkGgGTYCECACQR42AgwMigELIAEtAABBOkYEQCACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgBFDQEgAkHDADYCHCACIAA2AgwgAiABQQFqNgIUDIoBC0EAIQMgAkEANgIcIAIgATYCFCACQbERNgIQIAJBCjYCDAyJAQsgAUEBaiEBQTshAwxvCyACQcMANgIcIAIgADYCDCACIAFBAWo2AhQMhwELQQAhAyACQQA2AhwgAiABNgIUIAJB8A42AhAgAkEcNgIMDIYBCyACIAIvATBBEHI7ATAMZgsCQCACLwEwIgBBCHFFDQAgAi0AKEEBRw0AIAItAC1BCHFFDQMLIAIgAEH3+wNxQYAEcjsBMAwECyABIARHBEACQANAIAEtAABBMGsiAEH/AXFBCk8EQEE1IQMMbgsgAikDICIKQpmz5syZs+bMGVYNASACIApCCn4iCjcDICAKIACtQv8BgyILQn+FVg0BIAIgCiALfDcDICAEIAFBAWoiAUcNAAtBOSEDDIUBCyACKAIEIQBBACEDIAJBADYCBCACIAAgAUEBaiIBECoiAA0MDHcLQTkhAwyDAQsgAi0AMEEgcQ0GQcUBIQMMaQtBACEDIAJBADYCBCACIAEgARAqIgBFDQQgAkE6NgIcIAIgADYCDCACIAFBAWo2AhQMgQELIAItAChBAUcNACACLQAtQQhxRQ0BC0E3IQMMZgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIABEAgAkE7NgIcIAIgADYCDCACIAFBAWo2AhQMfwsgAUEBaiEBDG4LIAJBCDoALAwECyABQQFqIQEMbQtBACEDIAJBADYCHCACIAE2AhQgAkHkEjYCECACQQQ2AgwMewsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ1sIAJBNzYCHCACIAE2AhQgAiAANgIMDHoLIAIgAi8BMEEgcjsBMAtBMCEDDF8LIAJBNjYCHCACIAE2AhQgAiAANgIMDHcLIABBLEcNASABQQFqIQBBASEBAkACQAJAAkACQCACLQAsQQVrDgQDAQIEAAsgACEBDAQLQQIhAQwBC0EEIQELIAJBAToALCACIAIvATAgAXI7ATAgACEBDAELIAIgAi8BMEEIcjsBMCAAIQELQTkhAwxcCyACQQA6ACwLQTQhAwxaCyABIARGBEBBLSEDDHMLAkACQANAAkAgAS0AAEEKaw4EAgAAAwALIAQgAUEBaiIBRw0AC0EtIQMMdAsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ0CIAJBLDYCHCACIAE2AhQgAiAANgIMDHMLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAS0AAEENRgRAIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAi0ALUEBcQRAQcQBIQMMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIADQEMZQtBLyEDDFcLIAJBLjYCHCACIAE2AhQgAiAANgIMDG8LQQAhAyACQQA2AhwgAiABNgIUIAJB8BQ2AhAgAkEDNgIMDG4LQQEhAwJAAkACQAJAIAItACxBBWsOBAMBAgAECyACIAIvATBBCHI7ATAMAwtBAiEDDAELQQQhAwsgAkEBOgAsIAIgAi8BMCADcjsBMAtBKiEDDFMLQQAhAyACQQA2AhwgAiABNgIUIAJB4Q82AhAgAkEKNgIMDGsLQQEhAwJAAkACQAJAAkACQCACLQAsQQJrDgcFBAQDAQIABAsgAiACLwEwQQhyOwEwDAMLQQIhAwwBC0EEIQMLIAJBAToALCACIAIvATAgA3I7ATALQSshAwxSC0EAIQMgAkEANgIcIAIgATYCFCACQasSNgIQIAJBCzYCDAxqC0EAIQMgAkEANgIcIAIgATYCFCACQf0NNgIQIAJBHTYCDAxpCyABIARHBEADQCABLQAAQSBHDUggBCABQQFqIgFHDQALQSUhAwxpC0ElIQMMaAsgAi0ALUEBcQRAQcMBIQMMTwsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKSIABEAgAkEmNgIcIAIgADYCDCACIAFBAWo2AhQMaAsgAUEBaiEBDFwLIAFBAWohASACLwEwIgBBgAFxBEBBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAEUNBiAAQRVHDR8gAkEFNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMZwsCQCAAQaAEcUGgBEcNACACLQAtQQJxDQBBACEDIAJBADYCHCACIAE2AhQgAkGWEzYCECACQQQ2AgwMZwsgAgJ/IAIvATBBFHFBFEYEQEEBIAItAChBAUYNARogAi8BMkHlAEYMAQsgAi0AKUEFRgs6AC5BACEAAkAgAigCOCIDRQ0AIAMoAiQiA0UNACACIAMRAAAhAAsCQAJAAkACQAJAIAAOFgIBAAQEBAQEBAQEBAQEBAQEBAQEBAMECyACQQE6AC4LIAIgAi8BMEHAAHI7ATALQSchAwxPCyACQSM2AhwgAiABNgIUIAJBpRY2AhAgAkEVNgIMQQAhAwxnC0EAIQMgAkEANgIcIAIgATYCFCACQdULNgIQIAJBETYCDAxmC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAADQELQQ4hAwxLCyAAQRVGBEAgAkECNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMZAtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMYwtBACEDIAJBADYCHCACIAE2AhQgAkGqHDYCECACQQ82AgwMYgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEgCqdqIgEQKyIARQ0AIAJBBTYCHCACIAE2AhQgAiAANgIMDGELQQ8hAwxHC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxfC0IBIQoLIAFBAWohAQJAIAIpAyAiC0L//////////w9YBEAgAiALQgSGIAqENwMgDAELQQAhAyACQQA2AhwgAiABNgIUIAJBrQk2AhAgAkEMNgIMDF4LQSQhAwxEC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxcCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAsIgBFBEAgAUEBaiEBDFILIAJBFzYCHCACIAA2AgwgAiABQQFqNgIUDFsLIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQRY2AhwgAiAANgIMIAIgAUEBajYCFAxbC0EfIQMMQQtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQLSIARQRAIAFBAWohAQxQCyACQRQ2AhwgAiAANgIMIAIgAUEBajYCFAxYCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABEC0iAEUEQCABQQFqIQEMAQsgAkETNgIcIAIgADYCDCACIAFBAWo2AhQMWAtBHiEDDD4LQQAhAyACQQA2AhwgAiABNgIUIAJBxgw2AhAgAkEjNgIMDFYLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABEC0iAEUEQCABQQFqIQEMTgsgAkERNgIcIAIgADYCDCACIAFBAWo2AhQMVQsgAkEQNgIcIAIgATYCFCACIAA2AgwMVAtBACEDIAJBADYCHCACIAE2AhQgAkHGDDYCECACQSM2AgwMUwtBACEDIAJBADYCHCACIAE2AhQgAkHAFTYCECACQQI2AgwMUgsgAigCBCEAQQAhAyACQQA2AgQCQCACIAAgARAtIgBFBEAgAUEBaiEBDAELIAJBDjYCHCACIAA2AgwgAiABQQFqNgIUDFILQRshAww4C0EAIQMgAkEANgIcIAIgATYCFCACQcYMNgIQIAJBIzYCDAxQCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABECwiAEUEQCABQQFqIQEMAQsgAkENNgIcIAIgADYCDCACIAFBAWo2AhQMUAtBGiEDDDYLQQAhAyACQQA2AhwgAiABNgIUIAJBmg82AhAgAkEiNgIMDE4LIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQQw2AhwgAiAANgIMIAIgAUEBajYCFAxOC0EZIQMMNAtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMTAsgAEEVRwRAQQAhAyACQQA2AhwgAiABNgIUIAJBgww2AhAgAkETNgIMDEwLIAJBCjYCHCACIAE2AhQgAkHkFjYCECACQRU2AgxBACEDDEsLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABIAqnaiIBECsiAARAIAJBBzYCHCACIAE2AhQgAiAANgIMDEsLQRMhAwwxCyAAQRVHBEBBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMSgsgAkEeNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMSQtBACEAAkAgAigCOCIDRQ0AIAMoAiwiA0UNACACIAMRAAAhAAsgAEUNQSAAQRVGBEAgAkEDNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMSQtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMSAtBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMRwtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMRgsgAkEAOgAvIAItAC1BBHFFDT8LIAJBADoALyACQQE6ADRBACEDDCsLQQAhAyACQQA2AhwgAkHkETYCECACQQc2AgwgAiABQQFqNgIUDEMLAkADQAJAIAEtAABBCmsOBAACAgACCyAEIAFBAWoiAUcNAAtB3QEhAwxDCwJAAkAgAi0ANEEBRw0AQQAhAAJAIAIoAjgiA0UNACADKAJYIgNFDQAgAiADEQAAIQALIABFDQAgAEEVRw0BIAJB3AE2AhwgAiABNgIUIAJB1RY2AhAgAkEVNgIMQQAhAwxEC0HBASEDDCoLIAJBADYCHCACIAE2AhQgAkHpCzYCECACQR82AgxBACEDDEILAkACQCACLQAoQQFrDgIEAQALQcABIQMMKQtBuQEhAwwoCyACQQI6AC9BACEAAkAgAigCOCIDRQ0AIAMoAgAiA0UNACACIAMRAAAhAAsgAEUEQEHCASEDDCgLIABBFUcEQCACQQA2AhwgAiABNgIUIAJBpAw2AhAgAkEQNgIMQQAhAwxBCyACQdsBNgIcIAIgATYCFCACQfoWNgIQIAJBFTYCDEEAIQMMQAsgASAERgRAQdoBIQMMQAsgAS0AAEHIAEYNASACQQE6ACgLQawBIQMMJQtBvwEhAwwkCyABIARHBEAgAkEQNgIIIAIgATYCBEG+ASEDDCQLQdkBIQMMPAsgASAERgRAQdgBIQMMPAsgAS0AAEHIAEcNBCABQQFqIQFBvQEhAwwiCyABIARGBEBB1wEhAww7CwJAAkAgAS0AAEHFAGsOEAAFBQUFBQUFBQUFBQUFBQEFCyABQQFqIQFBuwEhAwwiCyABQQFqIQFBvAEhAwwhC0HWASEDIAEgBEYNOSACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGD0ABqLQAARw0DIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw6CyACKAIEIQAgAkIANwMAIAIgACAGQQFqIgEQJyIARQRAQcYBIQMMIQsgAkHVATYCHCACIAE2AhQgAiAANgIMQQAhAww5C0HUASEDIAEgBEYNOCACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEGB0ABqLQAARw0CIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw5CyACQYEEOwEoIAIoAgQhACACQgA3AwAgAiAAIAZBAWoiARAnIgANAwwCCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB2Bs2AhAgAkEINgIMDDYLQboBIQMMHAsgAkHTATYCHCACIAE2AhQgAiAANgIMQQAhAww0C0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAARQ0AIABBFUYNASACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwwzC0HkACEDDBkLIAJB+AA2AhwgAiABNgIUIAJByhg2AhAgAkEVNgIMQQAhAwwxC0HSASEDIAQgASIARg0wIAQgAWsgAigCACIBaiEFIAAgAWtBBGohBgJAA0AgAC0AACABQfzPAGotAABHDQEgAUEERg0DIAFBAWohASAEIABBAWoiAEcNAAsgAiAFNgIADDELIAJBADYCHCACIAA2AhQgAkGQMzYCECACQQg2AgwgAkEANgIAQQAhAwwwCyABIARHBEAgAkEONgIIIAIgATYCBEG3ASEDDBcLQdEBIQMMLwsgAkEANgIAIAZBAWohAQtBuAEhAwwUCyABIARGBEBB0AEhAwwtCyABLQAAQTBrIgBB/wFxQQpJBEAgAiAAOgAqIAFBAWohAUG2ASEDDBQLIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0UIAJBzwE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAsgASAERgRAQc4BIQMMLAsCQCABLQAAQS5GBEAgAUEBaiEBDAELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0VIAJBzQE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAtBtQEhAwwSCyAEIAEiBUYEQEHMASEDDCsLQQAhAEEBIQFBASEGQQAhAwJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAIAUtAABBMGsOCgoJAAECAwQFBggLC0ECDAYLQQMMBQtBBAwEC0EFDAMLQQYMAgtBBwwBC0EICyEDQQAhAUEAIQYMAgtBCSEDQQEhAEEAIQFBACEGDAELQQAhAUEBIQMLIAIgAzoAKyAFQQFqIQMCQAJAIAItAC1BEHENAAJAAkACQCACLQAqDgMBAAIECyAGRQ0DDAILIAANAQwCCyABRQ0BCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMAwsgAkHJATYCHCACIAM2AhQgAiAANgIMQQAhAwwtCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMGAsgAkHKATYCHCACIAM2AhQgAiAANgIMQQAhAwwsCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMFgsgAkHLATYCHCACIAU2AhQgAiAANgIMDCsLQbQBIQMMEQtBACEAAkAgAigCOCIDRQ0AIAMoAjwiA0UNACACIAMRAAAhAAsCQCAABEAgAEEVRg0BIAJBADYCHCACIAE2AhQgAkGUDTYCECACQSE2AgxBACEDDCsLQbIBIQMMEQsgAkHIATYCHCACIAE2AhQgAkHJFzYCECACQRU2AgxBACEDDCkLIAJBADYCACAGQQFqIQFB9QAhAwwPCyACLQApQQVGBEBB4wAhAwwPC0HiACEDDA4LIAAhASACQQA2AgALIAJBADoALEEJIQMMDAsgAkEANgIAIAdBAWohAUHAACEDDAsLQQELOgAsIAJBADYCACAGQQFqIQELQSkhAwwIC0E4IQMMBwsCQCABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRw0DIAFBAWohAQwFCyAEIAFBAWoiAUcNAAtBPiEDDCELQT4hAwwgCwsgAkEAOgAsDAELQQshAwwEC0E6IQMMAwsgAUEBaiEBQS0hAwwCCyACIAE6ACwgAkEANgIAIAZBAWohAUEMIQMMAQsgAkEANgIAIAZBAWohAUEKIQMMAAsAC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwXC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwWC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwVC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwUC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwTC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwSC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwRC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwQC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwPC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwOC0EAIQMgAkEANgIcIAIgATYCFCACQcASNgIQIAJBCzYCDAwNC0EAIQMgAkEANgIcIAIgATYCFCACQZUJNgIQIAJBCzYCDAwMC0EAIQMgAkEANgIcIAIgATYCFCACQeEPNgIQIAJBCjYCDAwLC0EAIQMgAkEANgIcIAIgATYCFCACQfsPNgIQIAJBCjYCDAwKC0EAIQMgAkEANgIcIAIgATYCFCACQfEZNgIQIAJBAjYCDAwJC0EAIQMgAkEANgIcIAIgATYCFCACQcQUNgIQIAJBAjYCDAwIC0EAIQMgAkEANgIcIAIgATYCFCACQfIVNgIQIAJBAjYCDAwHCyACQQI2AhwgAiABNgIUIAJBnBo2AhAgAkEWNgIMQQAhAwwGC0EBIQMMBQtB1AAhAyABIARGDQQgCEEIaiEJIAIoAgAhBQJAAkAgASAERwRAIAVB2MIAaiEHIAQgBWogAWshACAFQX9zQQpqIgUgAWohBgNAIAEtAAAgBy0AAEcEQEECIQcMAwsgBUUEQEEAIQcgBiEBDAMLIAVBAWshBSAHQQFqIQcgBCABQQFqIgFHDQALIAAhBSAEIQELIAlBATYCACACIAU2AgAMAQsgAkEANgIAIAkgBzYCAAsgCSABNgIEIAgoAgwhACAIKAIIDgMBBAIACwALIAJBADYCHCACQbUaNgIQIAJBFzYCDCACIABBAWo2AhRBACEDDAILIAJBADYCHCACIAA2AhQgAkHKGjYCECACQQk2AgxBACEDDAELIAEgBEYEQEEiIQMMAQsgAkEJNgIIIAIgATYCBEEhIQMLIAhBEGokACADRQRAIAIoAgwhAAwBCyACIAM2AhxBACEAIAIoAgQiAUUNACACIAEgBCACKAIIEQEAIgFFDQAgAiAENgIUIAIgATYCDCABIQALIAALvgIBAn8gAEEAOgAAIABB3ABqIgFBAWtBADoAACAAQQA6AAIgAEEAOgABIAFBA2tBADoAACABQQJrQQA6AAAgAEEAOgADIAFBBGtBADoAAEEAIABrQQNxIgEgAGoiAEEANgIAQdwAIAFrQXxxIgIgAGoiAUEEa0EANgIAAkAgAkEJSQ0AIABBADYCCCAAQQA2AgQgAUEIa0EANgIAIAFBDGtBADYCACACQRlJDQAgAEEANgIYIABBADYCFCAAQQA2AhAgAEEANgIMIAFBEGtBADYCACABQRRrQQA2AgAgAUEYa0EANgIAIAFBHGtBADYCACACIABBBHFBGHIiAmsiAUEgSQ0AIAAgAmohAANAIABCADcDGCAAQgA3AxAgAEIANwMIIABCADcDACAAQSBqIQAgAUEgayIBQR9LDQALCwtWAQF/AkAgACgCDA0AAkACQAJAAkAgAC0ALw4DAQADAgsgACgCOCIBRQ0AIAEoAiwiAUUNACAAIAERAAAiAQ0DC0EADwsACyAAQcMWNgIQQQ4hAQsgAQsaACAAKAIMRQRAIABB0Rs2AhAgAEEVNgIMCwsUACAAKAIMQRVGBEAgAEEANgIMCwsUACAAKAIMQRZGBEAgAEEANgIMCwsHACAAKAIMCwcAIAAoAhALCQAgACABNgIQCwcAIAAoAhQLFwAgAEEkTwRAAAsgAEECdEGgM2ooAgALFwAgAEEuTwRAAAsgAEECdEGwNGooAgALvwkBAX9B6yghAQJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABB5ABrDvQDY2IAAWFhYWFhYQIDBAVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhBgcICQoLDA0OD2FhYWFhEGFhYWFhYWFhYWFhEWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYRITFBUWFxgZGhthYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2YTc4OTphYWFhYWFhYTthYWE8YWFhYT0+P2FhYWFhYWFhQGFhQWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYUJDREVGR0hJSktMTU5PUFFSU2FhYWFhYWFhVFVWV1hZWlthXF1hYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFeYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhX2BhC0HhJw8LQaQhDwtByywPC0H+MQ8LQcAkDwtBqyQPC0GNKA8LQeImDwtBgDAPC0G5Lw8LQdckDwtB7x8PC0HhHw8LQfofDwtB8iAPC0GoLw8LQa4yDwtBiDAPC0HsJw8LQYIiDwtBjh0PC0HQLg8LQcojDwtBxTIPC0HfHA8LQdIcDwtBxCAPC0HXIA8LQaIfDwtB7S4PC0GrMA8LQdQlDwtBzC4PC0H6Lg8LQfwrDwtB0jAPC0HxHQ8LQbsgDwtB9ysPC0GQMQ8LQdcxDwtBoi0PC0HUJw8LQeArDwtBnywPC0HrMQ8LQdUfDwtByjEPC0HeJQ8LQdQeDwtB9BwPC0GnMg8LQbEdDwtBoB0PC0G5MQ8LQbwwDwtBkiEPC0GzJg8LQeksDwtBrB4PC0HUKw8LQfcmDwtBgCYPC0GwIQ8LQf4eDwtBjSMPC0GJLQ8LQfciDwtBoDEPC0GuHw8LQcYlDwtB6B4PC0GTIg8LQcIvDwtBwx0PC0GLLA8LQeEdDwtBjS8PC0HqIQ8LQbQtDwtB0i8PC0HfMg8LQdIyDwtB8DAPC0GpIg8LQfkjDwtBmR4PC0G1LA8LQZswDwtBkjIPC0G2Kw8LQcIiDwtB+DIPC0GeJQ8LQdAiDwtBuh4PC0GBHg8LAAtB1iEhAQsgAQsWACAAIAAtAC1B/gFxIAFBAEdyOgAtCxkAIAAgAC0ALUH9AXEgAUEAR0EBdHI6AC0LGQAgACAALQAtQfsBcSABQQBHQQJ0cjoALQsZACAAIAAtAC1B9wFxIAFBAEdBA3RyOgAtCz4BAn8CQCAAKAI4IgNFDQAgAygCBCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBxhE2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCCCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9go2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCDCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7Ro2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCECIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlRA2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCFCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBqhs2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCGCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7RM2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCKCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9gg2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCHCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBwhk2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCICIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlBQ2AhBBGCEECyAEC1kBAn8CQCAALQAoQQFGDQAgAC8BMiIBQeQAa0HkAEkNACABQcwBRg0AIAFBsAJGDQAgAC8BMCIAQcAAcQ0AQQEhAiAAQYgEcUGABEYNACAAQShxRSECCyACC4wBAQJ/AkACQAJAIAAtACpFDQAgAC0AK0UNACAALwEwIgFBAnFFDQEMAgsgAC8BMCIBQQFxRQ0BC0EBIQIgAC0AKEEBRg0AIAAvATIiAEHkAGtB5ABJDQAgAEHMAUYNACAAQbACRg0AIAFBwABxDQBBACECIAFBiARxQYAERg0AIAFBKHFBAEchAgsgAgtzACAAQRBq/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAA/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAAQTBq/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAAQSBq/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAAQd0BNgIcCwYAIAAQMguaLQELfyMAQRBrIgokAEGk0AAoAgAiCUUEQEHk0wAoAgAiBUUEQEHw0wBCfzcCAEHo0wBCgICEgICAwAA3AgBB5NMAIApBCGpBcHFB2KrVqgVzIgU2AgBB+NMAQQA2AgBByNMAQQA2AgALQczTAEGA1AQ2AgBBnNAAQYDUBDYCAEGw0AAgBTYCAEGs0ABBfzYCAEHQ0wBBgKwDNgIAA0AgAUHI0ABqIAFBvNAAaiICNgIAIAIgAUG00ABqIgM2AgAgAUHA0ABqIAM2AgAgAUHQ0ABqIAFBxNAAaiIDNgIAIAMgAjYCACABQdjQAGogAUHM0ABqIgI2AgAgAiADNgIAIAFB1NAAaiACNgIAIAFBIGoiAUGAAkcNAAtBjNQEQcGrAzYCAEGo0ABB9NMAKAIANgIAQZjQAEHAqwM2AgBBpNAAQYjUBDYCAEHM/wdBODYCAEGI1AQhCQsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAAQewBTQRAQYzQACgCACIGQRAgAEETakFwcSAAQQtJGyIEQQN2IgB2IgFBA3EEQAJAIAFBAXEgAHJBAXMiAkEDdCIAQbTQAGoiASAAQbzQAGooAgAiACgCCCIDRgRAQYzQACAGQX4gAndxNgIADAELIAEgAzYCCCADIAE2AgwLIABBCGohASAAIAJBA3QiAkEDcjYCBCAAIAJqIgAgACgCBEEBcjYCBAwRC0GU0AAoAgAiCCAETw0BIAEEQAJAQQIgAHQiAkEAIAJrciABIAB0cWgiAEEDdCICQbTQAGoiASACQbzQAGooAgAiAigCCCIDRgRAQYzQACAGQX4gAHdxIgY2AgAMAQsgASADNgIIIAMgATYCDAsgAiAEQQNyNgIEIABBA3QiACAEayEFIAAgAmogBTYCACACIARqIgQgBUEBcjYCBCAIBEAgCEF4cUG00ABqIQBBoNAAKAIAIQMCf0EBIAhBA3Z0IgEgBnFFBEBBjNAAIAEgBnI2AgAgAAwBCyAAKAIICyIBIAM2AgwgACADNgIIIAMgADYCDCADIAE2AggLIAJBCGohAUGg0AAgBDYCAEGU0AAgBTYCAAwRC0GQ0AAoAgAiC0UNASALaEECdEG80gBqKAIAIgAoAgRBeHEgBGshBSAAIQIDQAJAIAIoAhAiAUUEQCACQRRqKAIAIgFFDQELIAEoAgRBeHEgBGsiAyAFSSECIAMgBSACGyEFIAEgACACGyEAIAEhAgwBCwsgACgCGCEJIAAoAgwiAyAARwRAQZzQACgCABogAyAAKAIIIgE2AgggASADNgIMDBALIABBFGoiAigCACIBRQRAIAAoAhAiAUUNAyAAQRBqIQILA0AgAiEHIAEiA0EUaiICKAIAIgENACADQRBqIQIgAygCECIBDQALIAdBADYCAAwPC0F/IQQgAEG/f0sNACAAQRNqIgFBcHEhBEGQ0AAoAgAiCEUNAEEAIARrIQUCQAJAAkACf0EAIARBgAJJDQAaQR8gBEH///8HSw0AGiAEQSYgAUEIdmciAGt2QQFxIABBAXRrQT5qCyIGQQJ0QbzSAGooAgAiAkUEQEEAIQFBACEDDAELQQAhASAEQRkgBkEBdmtBACAGQR9HG3QhAEEAIQMDQAJAIAIoAgRBeHEgBGsiByAFTw0AIAIhAyAHIgUNAEEAIQUgAiEBDAMLIAEgAkEUaigCACIHIAcgAiAAQR12QQRxakEQaigCACICRhsgASAHGyEBIABBAXQhACACDQALCyABIANyRQRAQQAhA0ECIAZ0IgBBACAAa3IgCHEiAEUNAyAAaEECdEG80gBqKAIAIQELIAFFDQELA0AgASgCBEF4cSAEayICIAVJIQAgAiAFIAAbIQUgASADIAAbIQMgASgCECIABH8gAAUgAUEUaigCAAsiAQ0ACwsgA0UNACAFQZTQACgCACAEa08NACADKAIYIQcgAyADKAIMIgBHBEBBnNAAKAIAGiAAIAMoAggiATYCCCABIAA2AgwMDgsgA0EUaiICKAIAIgFFBEAgAygCECIBRQ0DIANBEGohAgsDQCACIQYgASIAQRRqIgIoAgAiAQ0AIABBEGohAiAAKAIQIgENAAsgBkEANgIADA0LQZTQACgCACIDIARPBEBBoNAAKAIAIQECQCADIARrIgJBEE8EQCABIARqIgAgAkEBcjYCBCABIANqIAI2AgAgASAEQQNyNgIEDAELIAEgA0EDcjYCBCABIANqIgAgACgCBEEBcjYCBEEAIQBBACECC0GU0AAgAjYCAEGg0AAgADYCACABQQhqIQEMDwtBmNAAKAIAIgMgBEsEQCAEIAlqIgAgAyAEayIBQQFyNgIEQaTQACAANgIAQZjQACABNgIAIAkgBEEDcjYCBCAJQQhqIQEMDwtBACEBIAQCf0Hk0wAoAgAEQEHs0wAoAgAMAQtB8NMAQn83AgBB6NMAQoCAhICAgMAANwIAQeTTACAKQQxqQXBxQdiq1aoFczYCAEH40wBBADYCAEHI0wBBADYCAEGAgAQLIgAgBEHHAGoiBWoiBkEAIABrIgdxIgJPBEBB/NMAQTA2AgAMDwsCQEHE0wAoAgAiAUUNAEG80wAoAgAiCCACaiEAIAAgAU0gACAIS3ENAEEAIQFB/NMAQTA2AgAMDwtByNMALQAAQQRxDQQCQAJAIAkEQEHM0wAhAQNAIAEoAgAiACAJTQRAIAAgASgCBGogCUsNAwsgASgCCCIBDQALC0EAEDMiAEF/Rg0FIAIhBkHo0wAoAgAiAUEBayIDIABxBEAgAiAAayAAIANqQQAgAWtxaiEGCyAEIAZPDQUgBkH+////B0sNBUHE0wAoAgAiAwRAQbzTACgCACIHIAZqIQEgASAHTQ0GIAEgA0sNBgsgBhAzIgEgAEcNAQwHCyAGIANrIAdxIgZB/v///wdLDQQgBhAzIQAgACABKAIAIAEoAgRqRg0DIAAhAQsCQCAGIARByABqTw0AIAFBf0YNAEHs0wAoAgAiACAFIAZrakEAIABrcSIAQf7///8HSwRAIAEhAAwHCyAAEDNBf0cEQCAAIAZqIQYgASEADAcLQQAgBmsQMxoMBAsgASIAQX9HDQUMAwtBACEDDAwLQQAhAAwKCyAAQX9HDQILQcjTAEHI0wAoAgBBBHI2AgALIAJB/v///wdLDQEgAhAzIQBBABAzIQEgAEF/Rg0BIAFBf0YNASAAIAFPDQEgASAAayIGIARBOGpNDQELQbzTAEG80wAoAgAgBmoiATYCAEHA0wAoAgAgAUkEQEHA0wAgATYCAAsCQAJAAkBBpNAAKAIAIgIEQEHM0wAhAQNAIAAgASgCACIDIAEoAgQiBWpGDQIgASgCCCIBDQALDAILQZzQACgCACIBQQBHIAAgAU9xRQRAQZzQACAANgIAC0EAIQFB0NMAIAY2AgBBzNMAIAA2AgBBrNAAQX82AgBBsNAAQeTTACgCADYCAEHY0wBBADYCAANAIAFByNAAaiABQbzQAGoiAjYCACACIAFBtNAAaiIDNgIAIAFBwNAAaiADNgIAIAFB0NAAaiABQcTQAGoiAzYCACADIAI2AgAgAUHY0ABqIAFBzNAAaiICNgIAIAIgAzYCACABQdTQAGogAjYCACABQSBqIgFBgAJHDQALQXggAGtBD3EiASAAaiICIAZBOGsiAyABayIBQQFyNgIEQajQAEH00wAoAgA2AgBBmNAAIAE2AgBBpNAAIAI2AgAgACADakE4NgIEDAILIAAgAk0NACACIANJDQAgASgCDEEIcQ0AQXggAmtBD3EiACACaiIDQZjQACgCACAGaiIHIABrIgBBAXI2AgQgASAFIAZqNgIEQajQAEH00wAoAgA2AgBBmNAAIAA2AgBBpNAAIAM2AgAgAiAHakE4NgIEDAELIABBnNAAKAIASQRAQZzQACAANgIACyAAIAZqIQNBzNMAIQECQAJAAkADQCADIAEoAgBHBEAgASgCCCIBDQEMAgsLIAEtAAxBCHFFDQELQczTACEBA0AgASgCACIDIAJNBEAgAyABKAIEaiIFIAJLDQMLIAEoAgghAQwACwALIAEgADYCACABIAEoAgQgBmo2AgQgAEF4IABrQQ9xaiIJIARBA3I2AgQgA0F4IANrQQ9xaiIGIAQgCWoiBGshASACIAZGBEBBpNAAIAQ2AgBBmNAAQZjQACgCACABaiIANgIAIAQgAEEBcjYCBAwIC0Gg0AAoAgAgBkYEQEGg0AAgBDYCAEGU0ABBlNAAKAIAIAFqIgA2AgAgBCAAQQFyNgIEIAAgBGogADYCAAwICyAGKAIEIgVBA3FBAUcNBiAFQXhxIQggBUH/AU0EQCAFQQN2IQMgBigCCCIAIAYoAgwiAkYEQEGM0ABBjNAAKAIAQX4gA3dxNgIADAcLIAIgADYCCCAAIAI2AgwMBgsgBigCGCEHIAYgBigCDCIARwRAIAAgBigCCCICNgIIIAIgADYCDAwFCyAGQRRqIgIoAgAiBUUEQCAGKAIQIgVFDQQgBkEQaiECCwNAIAIhAyAFIgBBFGoiAigCACIFDQAgAEEQaiECIAAoAhAiBQ0ACyADQQA2AgAMBAtBeCAAa0EPcSIBIABqIgcgBkE4ayIDIAFrIgFBAXI2AgQgACADakE4NgIEIAIgBUE3IAVrQQ9xakE/ayIDIAMgAkEQakkbIgNBIzYCBEGo0ABB9NMAKAIANgIAQZjQACABNgIAQaTQACAHNgIAIANBEGpB1NMAKQIANwIAIANBzNMAKQIANwIIQdTTACADQQhqNgIAQdDTACAGNgIAQczTACAANgIAQdjTAEEANgIAIANBJGohAQNAIAFBBzYCACAFIAFBBGoiAUsNAAsgAiADRg0AIAMgAygCBEF+cTYCBCADIAMgAmsiBTYCACACIAVBAXI2AgQgBUH/AU0EQCAFQXhxQbTQAGohAAJ/QYzQACgCACIBQQEgBUEDdnQiA3FFBEBBjNAAIAEgA3I2AgAgAAwBCyAAKAIICyIBIAI2AgwgACACNgIIIAIgADYCDCACIAE2AggMAQtBHyEBIAVB////B00EQCAFQSYgBUEIdmciAGt2QQFxIABBAXRrQT5qIQELIAIgATYCHCACQgA3AhAgAUECdEG80gBqIQBBkNAAKAIAIgNBASABdCIGcUUEQCAAIAI2AgBBkNAAIAMgBnI2AgAgAiAANgIYIAIgAjYCCCACIAI2AgwMAQsgBUEZIAFBAXZrQQAgAUEfRxt0IQEgACgCACEDAkADQCADIgAoAgRBeHEgBUYNASABQR12IQMgAUEBdCEBIAAgA0EEcWpBEGoiBigCACIDDQALIAYgAjYCACACIAA2AhggAiACNgIMIAIgAjYCCAwBCyAAKAIIIgEgAjYCDCAAIAI2AgggAkEANgIYIAIgADYCDCACIAE2AggLQZjQACgCACIBIARNDQBBpNAAKAIAIgAgBGoiAiABIARrIgFBAXI2AgRBmNAAIAE2AgBBpNAAIAI2AgAgACAEQQNyNgIEIABBCGohAQwIC0EAIQFB/NMAQTA2AgAMBwtBACEACyAHRQ0AAkAgBigCHCICQQJ0QbzSAGoiAygCACAGRgRAIAMgADYCACAADQFBkNAAQZDQACgCAEF+IAJ3cTYCAAwCCyAHQRBBFCAHKAIQIAZGG2ogADYCACAARQ0BCyAAIAc2AhggBigCECICBEAgACACNgIQIAIgADYCGAsgBkEUaigCACICRQ0AIABBFGogAjYCACACIAA2AhgLIAEgCGohASAGIAhqIgYoAgQhBQsgBiAFQX5xNgIEIAEgBGogATYCACAEIAFBAXI2AgQgAUH/AU0EQCABQXhxQbTQAGohAAJ/QYzQACgCACICQQEgAUEDdnQiAXFFBEBBjNAAIAEgAnI2AgAgAAwBCyAAKAIICyIBIAQ2AgwgACAENgIIIAQgADYCDCAEIAE2AggMAQtBHyEFIAFB////B00EQCABQSYgAUEIdmciAGt2QQFxIABBAXRrQT5qIQULIAQgBTYCHCAEQgA3AhAgBUECdEG80gBqIQBBkNAAKAIAIgJBASAFdCIDcUUEQCAAIAQ2AgBBkNAAIAIgA3I2AgAgBCAANgIYIAQgBDYCCCAEIAQ2AgwMAQsgAUEZIAVBAXZrQQAgBUEfRxt0IQUgACgCACEAAkADQCAAIgIoAgRBeHEgAUYNASAFQR12IQAgBUEBdCEFIAIgAEEEcWpBEGoiAygCACIADQALIAMgBDYCACAEIAI2AhggBCAENgIMIAQgBDYCCAwBCyACKAIIIgAgBDYCDCACIAQ2AgggBEEANgIYIAQgAjYCDCAEIAA2AggLIAlBCGohAQwCCwJAIAdFDQACQCADKAIcIgFBAnRBvNIAaiICKAIAIANGBEAgAiAANgIAIAANAUGQ0AAgCEF+IAF3cSIINgIADAILIAdBEEEUIAcoAhAgA0YbaiAANgIAIABFDQELIAAgBzYCGCADKAIQIgEEQCAAIAE2AhAgASAANgIYCyADQRRqKAIAIgFFDQAgAEEUaiABNgIAIAEgADYCGAsCQCAFQQ9NBEAgAyAEIAVqIgBBA3I2AgQgACADaiIAIAAoAgRBAXI2AgQMAQsgAyAEaiICIAVBAXI2AgQgAyAEQQNyNgIEIAIgBWogBTYCACAFQf8BTQRAIAVBeHFBtNAAaiEAAn9BjNAAKAIAIgFBASAFQQN2dCIFcUUEQEGM0AAgASAFcjYCACAADAELIAAoAggLIgEgAjYCDCAAIAI2AgggAiAANgIMIAIgATYCCAwBC0EfIQEgBUH///8HTQRAIAVBJiAFQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAQsgAiABNgIcIAJCADcCECABQQJ0QbzSAGohAEEBIAF0IgQgCHFFBEAgACACNgIAQZDQACAEIAhyNgIAIAIgADYCGCACIAI2AgggAiACNgIMDAELIAVBGSABQQF2a0EAIAFBH0cbdCEBIAAoAgAhBAJAA0AgBCIAKAIEQXhxIAVGDQEgAUEddiEEIAFBAXQhASAAIARBBHFqQRBqIgYoAgAiBA0ACyAGIAI2AgAgAiAANgIYIAIgAjYCDCACIAI2AggMAQsgACgCCCIBIAI2AgwgACACNgIIIAJBADYCGCACIAA2AgwgAiABNgIICyADQQhqIQEMAQsCQCAJRQ0AAkAgACgCHCIBQQJ0QbzSAGoiAigCACAARgRAIAIgAzYCACADDQFBkNAAIAtBfiABd3E2AgAMAgsgCUEQQRQgCSgCECAARhtqIAM2AgAgA0UNAQsgAyAJNgIYIAAoAhAiAQRAIAMgATYCECABIAM2AhgLIABBFGooAgAiAUUNACADQRRqIAE2AgAgASADNgIYCwJAIAVBD00EQCAAIAQgBWoiAUEDcjYCBCAAIAFqIgEgASgCBEEBcjYCBAwBCyAAIARqIgcgBUEBcjYCBCAAIARBA3I2AgQgBSAHaiAFNgIAIAgEQCAIQXhxQbTQAGohAUGg0AAoAgAhAwJ/QQEgCEEDdnQiAiAGcUUEQEGM0AAgAiAGcjYCACABDAELIAEoAggLIgIgAzYCDCABIAM2AgggAyABNgIMIAMgAjYCCAtBoNAAIAc2AgBBlNAAIAU2AgALIABBCGohAQsgCkEQaiQAIAELQwAgAEUEQD8AQRB0DwsCQCAAQf//A3ENACAAQQBIDQAgAEEQdkAAIgBBf0YEQEH80wBBMDYCAEF/DwsgAEEQdA8LAAsL3D8iAEGACAsJAQAAAAIAAAADAEGUCAsFBAAAAAUAQaQICwkGAAAABwAAAAgAQdwIC4otSW52YWxpZCBjaGFyIGluIHVybCBxdWVyeQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2JvZHkAQ29udGVudC1MZW5ndGggb3ZlcmZsb3cAQ2h1bmsgc2l6ZSBvdmVyZmxvdwBSZXNwb25zZSBvdmVyZmxvdwBJbnZhbGlkIG1ldGhvZCBmb3IgSFRUUC94LnggcmVxdWVzdABJbnZhbGlkIG1ldGhvZCBmb3IgUlRTUC94LnggcmVxdWVzdABFeHBlY3RlZCBTT1VSQ0UgbWV0aG9kIGZvciBJQ0UveC54IHJlcXVlc3QASW52YWxpZCBjaGFyIGluIHVybCBmcmFnbWVudCBzdGFydABFeHBlY3RlZCBkb3QAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9zdGF0dXMASW52YWxpZCByZXNwb25zZSBzdGF0dXMASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucwBVc2VyIGNhbGxiYWNrIGVycm9yAGBvbl9yZXNldGAgY2FsbGJhY2sgZXJyb3IAYG9uX2NodW5rX2hlYWRlcmAgY2FsbGJhY2sgZXJyb3IAYG9uX21lc3NhZ2VfYmVnaW5gIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19leHRlbnNpb25fdmFsdWVgIGNhbGxiYWNrIGVycm9yAGBvbl9zdGF0dXNfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl92ZXJzaW9uX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fdXJsX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9oZWFkZXJfdmFsdWVfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9tZXNzYWdlX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fbWV0aG9kX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25faGVhZGVyX2ZpZWxkX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfZXh0ZW5zaW9uX25hbWVgIGNhbGxiYWNrIGVycm9yAFVuZXhwZWN0ZWQgY2hhciBpbiB1cmwgc2VydmVyAEludmFsaWQgaGVhZGVyIHZhbHVlIGNoYXIASW52YWxpZCBoZWFkZXIgZmllbGQgY2hhcgBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3ZlcnNpb24ASW52YWxpZCBtaW5vciB2ZXJzaW9uAEludmFsaWQgbWFqb3IgdmVyc2lvbgBFeHBlY3RlZCBzcGFjZSBhZnRlciB2ZXJzaW9uAEV4cGVjdGVkIENSTEYgYWZ0ZXIgdmVyc2lvbgBJbnZhbGlkIEhUVFAgdmVyc2lvbgBJbnZhbGlkIGhlYWRlciB0b2tlbgBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3VybABJbnZhbGlkIGNoYXJhY3RlcnMgaW4gdXJsAFVuZXhwZWN0ZWQgc3RhcnQgY2hhciBpbiB1cmwARG91YmxlIEAgaW4gdXJsAEVtcHR5IENvbnRlbnQtTGVuZ3RoAEludmFsaWQgY2hhcmFjdGVyIGluIENvbnRlbnQtTGVuZ3RoAER1cGxpY2F0ZSBDb250ZW50LUxlbmd0aABJbnZhbGlkIGNoYXIgaW4gdXJsIHBhdGgAQ29udGVudC1MZW5ndGggY2FuJ3QgYmUgcHJlc2VudCB3aXRoIFRyYW5zZmVyLUVuY29kaW5nAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIHNpemUAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9oZWFkZXJfdmFsdWUAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9jaHVua19leHRlbnNpb25fdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyB2YWx1ZQBNaXNzaW5nIGV4cGVjdGVkIExGIGFmdGVyIGhlYWRlciB2YWx1ZQBJbnZhbGlkIGBUcmFuc2Zlci1FbmNvZGluZ2AgaGVhZGVyIHZhbHVlAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgcXVvdGUgdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyBxdW90ZWQgdmFsdWUAUGF1c2VkIGJ5IG9uX2hlYWRlcnNfY29tcGxldGUASW52YWxpZCBFT0Ygc3RhdGUAb25fcmVzZXQgcGF1c2UAb25fY2h1bmtfaGVhZGVyIHBhdXNlAG9uX21lc3NhZ2VfYmVnaW4gcGF1c2UAb25fY2h1bmtfZXh0ZW5zaW9uX3ZhbHVlIHBhdXNlAG9uX3N0YXR1c19jb21wbGV0ZSBwYXVzZQBvbl92ZXJzaW9uX2NvbXBsZXRlIHBhdXNlAG9uX3VybF9jb21wbGV0ZSBwYXVzZQBvbl9jaHVua19jb21wbGV0ZSBwYXVzZQBvbl9oZWFkZXJfdmFsdWVfY29tcGxldGUgcGF1c2UAb25fbWVzc2FnZV9jb21wbGV0ZSBwYXVzZQBvbl9tZXRob2RfY29tcGxldGUgcGF1c2UAb25faGVhZGVyX2ZpZWxkX2NvbXBsZXRlIHBhdXNlAG9uX2NodW5rX2V4dGVuc2lvbl9uYW1lIHBhdXNlAFVuZXhwZWN0ZWQgc3BhY2UgYWZ0ZXIgc3RhcnQgbGluZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2NodW5rX2V4dGVuc2lvbl9uYW1lAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgbmFtZQBQYXVzZSBvbiBDT05ORUNUL1VwZ3JhZGUAUGF1c2Ugb24gUFJJL1VwZ3JhZGUARXhwZWN0ZWQgSFRUUC8yIENvbm5lY3Rpb24gUHJlZmFjZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX21ldGhvZABFeHBlY3RlZCBzcGFjZSBhZnRlciBtZXRob2QAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9oZWFkZXJfZmllbGQAUGF1c2VkAEludmFsaWQgd29yZCBlbmNvdW50ZXJlZABJbnZhbGlkIG1ldGhvZCBlbmNvdW50ZXJlZABVbmV4cGVjdGVkIGNoYXIgaW4gdXJsIHNjaGVtYQBSZXF1ZXN0IGhhcyBpbnZhbGlkIGBUcmFuc2Zlci1FbmNvZGluZ2AAU1dJVENIX1BST1hZAFVTRV9QUk9YWQBNS0FDVElWSVRZAFVOUFJPQ0VTU0FCTEVfRU5USVRZAENPUFkATU9WRURfUEVSTUFORU5UTFkAVE9PX0VBUkxZAE5PVElGWQBGQUlMRURfREVQRU5ERU5DWQBCQURfR0FURVdBWQBQTEFZAFBVVABDSEVDS09VVABHQVRFV0FZX1RJTUVPVVQAUkVRVUVTVF9USU1FT1VUAE5FVFdPUktfQ09OTkVDVF9USU1FT1VUAENPTk5FQ1RJT05fVElNRU9VVABMT0dJTl9USU1FT1VUAE5FVFdPUktfUkVBRF9USU1FT1VUAFBPU1QATUlTRElSRUNURURfUkVRVUVTVABDTElFTlRfQ0xPU0VEX1JFUVVFU1QAQ0xJRU5UX0NMT1NFRF9MT0FEX0JBTEFOQ0VEX1JFUVVFU1QAQkFEX1JFUVVFU1QASFRUUF9SRVFVRVNUX1NFTlRfVE9fSFRUUFNfUE9SVABSRVBPUlQASU1fQV9URUFQT1QAUkVTRVRfQ09OVEVOVABOT19DT05URU5UAFBBUlRJQUxfQ09OVEVOVABIUEVfSU5WQUxJRF9DT05TVEFOVABIUEVfQ0JfUkVTRVQAR0VUAEhQRV9TVFJJQ1QAQ09ORkxJQ1QAVEVNUE9SQVJZX1JFRElSRUNUAFBFUk1BTkVOVF9SRURJUkVDVABDT05ORUNUAE1VTFRJX1NUQVRVUwBIUEVfSU5WQUxJRF9TVEFUVVMAVE9PX01BTllfUkVRVUVTVFMARUFSTFlfSElOVFMAVU5BVkFJTEFCTEVfRk9SX0xFR0FMX1JFQVNPTlMAT1BUSU9OUwBTV0lUQ0hJTkdfUFJPVE9DT0xTAFZBUklBTlRfQUxTT19ORUdPVElBVEVTAE1VTFRJUExFX0NIT0lDRVMASU5URVJOQUxfU0VSVkVSX0VSUk9SAFdFQl9TRVJWRVJfVU5LTk9XTl9FUlJPUgBSQUlMR1VOX0VSUk9SAElERU5USVRZX1BST1ZJREVSX0FVVEhFTlRJQ0FUSU9OX0VSUk9SAFNTTF9DRVJUSUZJQ0FURV9FUlJPUgBJTlZBTElEX1hfRk9SV0FSREVEX0ZPUgBTRVRfUEFSQU1FVEVSAEdFVF9QQVJBTUVURVIASFBFX1VTRVIAU0VFX09USEVSAEhQRV9DQl9DSFVOS19IRUFERVIATUtDQUxFTkRBUgBTRVRVUABXRUJfU0VSVkVSX0lTX0RPV04AVEVBUkRPV04ASFBFX0NMT1NFRF9DT05ORUNUSU9OAEhFVVJJU1RJQ19FWFBJUkFUSU9OAERJU0NPTk5FQ1RFRF9PUEVSQVRJT04ATk9OX0FVVEhPUklUQVRJVkVfSU5GT1JNQVRJT04ASFBFX0lOVkFMSURfVkVSU0lPTgBIUEVfQ0JfTUVTU0FHRV9CRUdJTgBTSVRFX0lTX0ZST1pFTgBIUEVfSU5WQUxJRF9IRUFERVJfVE9LRU4ASU5WQUxJRF9UT0tFTgBGT1JCSURERU4ARU5IQU5DRV9ZT1VSX0NBTE0ASFBFX0lOVkFMSURfVVJMAEJMT0NLRURfQllfUEFSRU5UQUxfQ09OVFJPTABNS0NPTABBQ0wASFBFX0lOVEVSTkFMAFJFUVVFU1RfSEVBREVSX0ZJRUxEU19UT09fTEFSR0VfVU5PRkZJQ0lBTABIUEVfT0sAVU5MSU5LAFVOTE9DSwBQUkkAUkVUUllfV0lUSABIUEVfSU5WQUxJRF9DT05URU5UX0xFTkdUSABIUEVfVU5FWFBFQ1RFRF9DT05URU5UX0xFTkdUSABGTFVTSABQUk9QUEFUQ0gATS1TRUFSQ0gAVVJJX1RPT19MT05HAFBST0NFU1NJTkcATUlTQ0VMTEFORU9VU19QRVJTSVNURU5UX1dBUk5JTkcATUlTQ0VMTEFORU9VU19XQVJOSU5HAEhQRV9JTlZBTElEX1RSQU5TRkVSX0VOQ09ESU5HAEV4cGVjdGVkIENSTEYASFBFX0lOVkFMSURfQ0hVTktfU0laRQBNT1ZFAENPTlRJTlVFAEhQRV9DQl9TVEFUVVNfQ09NUExFVEUASFBFX0NCX0hFQURFUlNfQ09NUExFVEUASFBFX0NCX1ZFUlNJT05fQ09NUExFVEUASFBFX0NCX1VSTF9DT01QTEVURQBIUEVfQ0JfQ0hVTktfQ09NUExFVEUASFBFX0NCX0hFQURFUl9WQUxVRV9DT01QTEVURQBIUEVfQ0JfQ0hVTktfRVhURU5TSU9OX1ZBTFVFX0NPTVBMRVRFAEhQRV9DQl9DSFVOS19FWFRFTlNJT05fTkFNRV9DT01QTEVURQBIUEVfQ0JfTUVTU0FHRV9DT01QTEVURQBIUEVfQ0JfTUVUSE9EX0NPTVBMRVRFAEhQRV9DQl9IRUFERVJfRklFTERfQ09NUExFVEUAREVMRVRFAEhQRV9JTlZBTElEX0VPRl9TVEFURQBJTlZBTElEX1NTTF9DRVJUSUZJQ0FURQBQQVVTRQBOT19SRVNQT05TRQBVTlNVUFBPUlRFRF9NRURJQV9UWVBFAEdPTkUATk9UX0FDQ0VQVEFCTEUAU0VSVklDRV9VTkFWQUlMQUJMRQBSQU5HRV9OT1RfU0FUSVNGSUFCTEUAT1JJR0lOX0lTX1VOUkVBQ0hBQkxFAFJFU1BPTlNFX0lTX1NUQUxFAFBVUkdFAE1FUkdFAFJFUVVFU1RfSEVBREVSX0ZJRUxEU19UT09fTEFSR0UAUkVRVUVTVF9IRUFERVJfVE9PX0xBUkdFAFBBWUxPQURfVE9PX0xBUkdFAElOU1VGRklDSUVOVF9TVE9SQUdFAEhQRV9QQVVTRURfVVBHUkFERQBIUEVfUEFVU0VEX0gyX1VQR1JBREUAU09VUkNFAEFOTk9VTkNFAFRSQUNFAEhQRV9VTkVYUEVDVEVEX1NQQUNFAERFU0NSSUJFAFVOU1VCU0NSSUJFAFJFQ09SRABIUEVfSU5WQUxJRF9NRVRIT0QATk9UX0ZPVU5EAFBST1BGSU5EAFVOQklORABSRUJJTkQAVU5BVVRIT1JJWkVEAE1FVEhPRF9OT1RfQUxMT1dFRABIVFRQX1ZFUlNJT05fTk9UX1NVUFBPUlRFRABBTFJFQURZX1JFUE9SVEVEAEFDQ0VQVEVEAE5PVF9JTVBMRU1FTlRFRABMT09QX0RFVEVDVEVEAEhQRV9DUl9FWFBFQ1RFRABIUEVfTEZfRVhQRUNURUQAQ1JFQVRFRABJTV9VU0VEAEhQRV9QQVVTRUQAVElNRU9VVF9PQ0NVUkVEAFBBWU1FTlRfUkVRVUlSRUQAUFJFQ09ORElUSU9OX1JFUVVJUkVEAFBST1hZX0FVVEhFTlRJQ0FUSU9OX1JFUVVJUkVEAE5FVFdPUktfQVVUSEVOVElDQVRJT05fUkVRVUlSRUQATEVOR1RIX1JFUVVJUkVEAFNTTF9DRVJUSUZJQ0FURV9SRVFVSVJFRABVUEdSQURFX1JFUVVJUkVEAFBBR0VfRVhQSVJFRABQUkVDT05ESVRJT05fRkFJTEVEAEVYUEVDVEFUSU9OX0ZBSUxFRABSRVZBTElEQVRJT05fRkFJTEVEAFNTTF9IQU5EU0hBS0VfRkFJTEVEAExPQ0tFRABUUkFOU0ZPUk1BVElPTl9BUFBMSUVEAE5PVF9NT0RJRklFRABOT1RfRVhURU5ERUQAQkFORFdJRFRIX0xJTUlUX0VYQ0VFREVEAFNJVEVfSVNfT1ZFUkxPQURFRABIRUFEAEV4cGVjdGVkIEhUVFAvAABeEwAAJhMAADAQAADwFwAAnRMAABUSAAA5FwAA8BIAAAoQAAB1EgAArRIAAIITAABPFAAAfxAAAKAVAAAjFAAAiRIAAIsUAABNFQAA1BEAAM8UAAAQGAAAyRYAANwWAADBEQAA4BcAALsUAAB0FAAAfBUAAOUUAAAIFwAAHxAAAGUVAACjFAAAKBUAAAIVAACZFQAALBAAAIsZAABPDwAA1A4AAGoQAADOEAAAAhcAAIkOAABuEwAAHBMAAGYUAABWFwAAwRMAAM0TAABsEwAAaBcAAGYXAABfFwAAIhMAAM4PAABpDgAA2A4AAGMWAADLEwAAqg4AACgXAAAmFwAAxRMAAF0WAADoEQAAZxMAAGUTAADyFgAAcxMAAB0XAAD5FgAA8xEAAM8OAADOFQAADBIAALMRAAClEQAAYRAAADIXAAC7EwBB+TULAQEAQZA2C+ABAQECAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQf03CwEBAEGROAteAgMCAgICAgAAAgIAAgIAAgICAgICAgICAgAEAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAIAAgBB/TkLAQEAQZE6C14CAAICAgICAAACAgACAgACAgICAgICAgICAAMABAAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAAgACAEHwOwsNbG9zZWVlcC1hbGl2ZQBBiTwLAQEAQaA8C+ABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQYk+CwEBAEGgPgvnAQEBAQEBAQEBAQEBAQIBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBY2h1bmtlZABBsMAAC18BAQABAQEBAQAAAQEAAQEAAQEBAQEBAQEBAQAAAAAAAAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEAAQBBkMIACyFlY3Rpb25lbnQtbGVuZ3Rob25yb3h5LWNvbm5lY3Rpb24AQcDCAAstcmFuc2Zlci1lbmNvZGluZ3BncmFkZQ0KDQoNClNNDQoNClRUUC9DRS9UU1AvAEH5wgALBQECAAEDAEGQwwAL4AEEAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB+cQACwUBAgABAwBBkMUAC+ABBAEBBQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQfnGAAsEAQAAAQBBkccAC98BAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB+sgACwQBAAACAEGQyQALXwMEAAAEBAQEBAQEBAQEBAUEBAQEBAQEBAQEBAQABAAGBwQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEAAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAEAEH6ygALBAEAAAEAQZDLAAsBAQBBqssAC0ECAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBB+swACwQBAAABAEGQzQALAQEAQZrNAAsGAgAAAAACAEGxzQALOgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAQfDOAAuWAU5PVU5DRUVDS09VVE5FQ1RFVEVDUklCRUxVU0hFVEVBRFNFQVJDSFJHRUNUSVZJVFlMRU5EQVJWRU9USUZZUFRJT05TQ0hTRUFZU1RBVENIR0VPUkRJUkVDVE9SVFJDSFBBUkFNRVRFUlVSQ0VCU0NSSUJFQVJET1dOQUNFSU5ETktDS1VCU0NSSUJFSFRUUC9BRFRQLw==","base64")});var d0=b((plt,lz)=>{"use strict";var nz=["GET","HEAD","POST"],n3e=new Set(nz),s3e=[101,204,205,304],sz=[301,302,303,307,308],i3e=new Set(sz),iz=["1","7","9","11","13","15","17","19","20","21","22","23","25","37","42","43","53","69","77","79","87","95","101","102","103","104","109","110","111","113","115","117","119","123","135","137","139","143","161","179","389","427","465","512","513","514","515","526","530","531","532","540","548","554","556","563","587","601","636","989","990","993","995","1719","1720","1723","2049","3659","4045","4190","5060","5061","6000","6566","6665","6666","6667","6668","6669","6679","6697","10080"],o3e=new Set(iz),oz=["","no-referrer","no-referrer-when-downgrade","same-origin","origin","strict-origin","origin-when-cross-origin","strict-origin-when-cross-origin","unsafe-url"],a3e=new Set(oz),c3e=["follow","manual","error"],az=["GET","HEAD","OPTIONS","TRACE"],u3e=new Set(az),l3e=["navigate","same-origin","no-cors","cors"],A3e=["omit","same-origin","include"],f3e=["default","no-store","reload","no-cache","force-cache","only-if-cached"],d3e=["content-encoding","content-language","content-location","content-type","content-length"],h3e=["half"],cz=["CONNECT","TRACE","TRACK"],p3e=new Set(cz),uz=["audio","audioworklet","font","image","manifest","paintworklet","script","style","track","video","xslt",""],g3e=new Set(uz);lz.exports={subresource:uz,forbiddenMethods:cz,requestBodyHeader:d3e,referrerPolicy:oz,requestRedirect:c3e,requestMode:l3e,requestCredentials:A3e,requestCache:f3e,redirectStatus:sz,corsSafeListedMethods:nz,nullBodyStatus:s3e,safeMethods:az,badPorts:iz,requestDuplex:h3e,subresourceSet:g3e,badPortsSet:o3e,redirectStatusSet:i3e,corsSafeListedMethodsSet:n3e,safeMethodsSet:u3e,forbiddenMethodsSet:p3e,referrerPolicySet:a3e}});var H_=b((glt,Az)=>{"use strict";var U_=Symbol.for("undici.globalOrigin.1");function m3e(){return globalThis[U_]}function E3e(e){if(e===void 0){Object.defineProperty(globalThis,U_,{value:void 0,writable:!0,enumerable:!1,configurable:!1});return}let t=new URL(e);if(t.protocol!=="http:"&&t.protocol!=="https:")throw new TypeError(`Only http & https urls are allowed, received ${t.protocol}`);Object.defineProperty(globalThis,U_,{value:t,writable:!0,enumerable:!1,configurable:!1})}Az.exports={getGlobalOrigin:m3e,setGlobalOrigin:E3e}});var Dn=b((mlt,Ez)=>{"use strict";var Wy=require("node:assert"),C3e=new TextEncoder,h0=/^[!#$%&'*+\-.^_|~A-Za-z0-9]+$/,y3e=/[\u000A\u000D\u0009\u0020]/,I3e=/[\u0009\u000A\u000C\u000D\u0020]/g,b3e=/^[\u0009\u0020-\u007E\u0080-\u00FF]+$/;function B3e(e){Wy(e.protocol==="data:");let t=hz(e,!0);t=t.slice(5);let r={position:0},n=OA(",",t,r),s=n.length;if(n=S3e(n,!0,!0),r.position>=t.length)return"failure";r.position++;let i=t.slice(s+1),o=pz(i);if(/;(\u0020){0,}base64$/i.test(n)){let c=mz(o);if(o=v3e(c),o==="failure")return"failure";n=n.slice(0,-6),n=n.replace(/(\u0020)+$/,""),n=n.slice(0,-1)}n.startsWith(";")&&(n="text/plain"+n);let a=q_(n);return a==="failure"&&(a=q_("text/plain;charset=US-ASCII")),{mimeType:a,body:o}}function hz(e,t=!1){if(!t)return e.href;let r=e.href,n=e.hash.length,s=n===0?r:r.substring(0,r.length-n);return!n&&r.endsWith("#")?s.slice(0,-1):s}function zy(e,t,r){let n="";for(;r.position=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102}function dz(e){return e>=48&&e<=57?e-48:(e&223)-55}function x3e(e){let t=e.length,r=new Uint8Array(t),n=0;for(let s=0;se.length)return"failure";t.position++;let n=OA(";",e,t);if(n=Jy(n,!1,!0),n.length===0||!h0.test(n))return"failure";let s=r.toLowerCase(),i=n.toLowerCase(),o={type:s,subtype:i,parameters:new Map,essence:`${s}/${i}`};for(;t.positiony3e.test(u),e,t);let a=zy(u=>u!==";"&&u!=="=",e,t);if(a=a.toLowerCase(),t.positione.length)break;let c=null;if(e[t.position]==='"')c=gz(e,t,!0),OA(";",e,t);else if(c=OA(";",e,t),c=Jy(c,!1,!0),c.length===0)continue;a.length!==0&&h0.test(a)&&(c.length===0||b3e.test(c))&&!o.parameters.has(a)&&o.parameters.set(a,c)}return o}function v3e(e){e=e.replace(I3e,"");let t=e.length;if(t%4===0&&e.charCodeAt(t-1)===61&&(--t,e.charCodeAt(t-1)===61&&--t),t%4===1||/[^+/0-9A-Za-z]/.test(e.length===t?e:e.substring(0,t)))return"failure";let r=Buffer.from(e,"base64");return new Uint8Array(r.buffer,r.byteOffset,r.byteLength)}function gz(e,t,r){let n=t.position,s="";for(Wy(e[t.position]==='"'),t.position++;s+=zy(o=>o!=='"'&&o!=="\\",e,t),!(t.position>=e.length);){let i=e[t.position];if(t.position++,i==="\\"){if(t.position>=e.length){s+="\\";break}s+=e[t.position],t.position++}else{Wy(i==='"');break}}return r?s:e.slice(n,t.position)}function Q3e(e){Wy(e!=="failure");let{parameters:t,essence:r}=e,n=r;for(let[s,i]of t.entries())n+=";",n+=s,n+="=",h0.test(i)||(i=i.replace(/(\\|")/g,"\\$1"),i='"'+i,i+='"'),n+=i;return n}function T3e(e){return e===13||e===10||e===9||e===32}function Jy(e,t=!0,r=!0){return V_(e,t,r,T3e)}function w3e(e){return e===13||e===10||e===9||e===12||e===32}function S3e(e,t=!0,r=!0){return V_(e,t,r,w3e)}function V_(e,t,r,n){let s=0,i=e.length-1;if(t)for(;s0&&n(e.charCodeAt(i));)i--;return s===0&&i===e.length-1?e:e.slice(s,i+1)}function mz(e){let t=e.length;if(65535>t)return String.fromCharCode.apply(null,e);let r="",n=0,s=65535;for(;nt&&(s=t-n),r+=String.fromCharCode.apply(null,e.subarray(n,n+=s));return r}function _3e(e){switch(e.essence){case"application/ecmascript":case"application/javascript":case"application/x-ecmascript":case"application/x-javascript":case"text/ecmascript":case"text/javascript":case"text/javascript1.0":case"text/javascript1.1":case"text/javascript1.2":case"text/javascript1.3":case"text/javascript1.4":case"text/javascript1.5":case"text/jscript":case"text/livescript":case"text/x-ecmascript":case"text/x-javascript":return"text/javascript";case"application/json":case"text/json":return"application/json";case"image/svg+xml":return"image/svg+xml";case"text/xml":case"application/xml":return"application/xml"}return e.subtype.endsWith("+json")?"application/json":e.subtype.endsWith("+xml")?"application/xml":""}Ez.exports={dataURLProcessor:B3e,URLSerializer:hz,collectASequenceOfCodePoints:zy,collectASequenceOfCodePointsFast:OA,stringPercentDecode:pz,parseMIMEType:q_,collectAnHTTPQuotedString:gz,serializeAMimeType:Q3e,removeChars:V_,removeHTTPWhitespace:Jy,minimizeSupportedMimeType:_3e,HTTP_TOKEN_CODEPOINTS:h0,isomorphicDecode:mz}});var Or=b((Elt,Cz)=>{"use strict";var{types:Vi,inspect:R3e}=require("node:util"),{markAsUncloneable:D3e}=require("node:worker_threads"),{toUSVString:N3e}=Ve(),te={};te.converters={};te.util={};te.errors={};te.errors.exception=function(e){return new TypeError(`${e.header}: ${e.message}`)};te.errors.conversionFailed=function(e){let t=e.types.length===1?"":" one of",r=`${e.argument} could not be converted to${t}: ${e.types.join(", ")}.`;return te.errors.exception({header:e.prefix,message:r})};te.errors.invalidArgument=function(e){return te.errors.exception({header:e.prefix,message:`"${e.value}" is an invalid ${e.type}.`})};te.brandCheck=function(e,t,r){if(r?.strict!==!1){if(!(e instanceof t)){let n=new TypeError("Illegal invocation");throw n.code="ERR_INVALID_THIS",n}}else if(e?.[Symbol.toStringTag]!==t.prototype[Symbol.toStringTag]){let n=new TypeError("Illegal invocation");throw n.code="ERR_INVALID_THIS",n}};te.argumentLengthCheck=function({length:e},t,r){if(e{});te.util.ConvertToInt=function(e,t,r,n){let s,i;t===64?(s=Math.pow(2,53)-1,r==="unsigned"?i=0:i=Math.pow(-2,53)+1):r==="unsigned"?(i=0,s=Math.pow(2,t)-1):(i=Math.pow(-2,t)-1,s=Math.pow(2,t-1)-1);let o=Number(e);if(o===0&&(o=0),n?.enforceRange===!0){if(Number.isNaN(o)||o===Number.POSITIVE_INFINITY||o===Number.NEGATIVE_INFINITY)throw te.errors.exception({header:"Integer conversion",message:`Could not convert ${te.util.Stringify(e)} to an integer.`});if(o=te.util.IntegerPart(o),os)throw te.errors.exception({header:"Integer conversion",message:`Value must be between ${i}-${s}, got ${o}.`});return o}return!Number.isNaN(o)&&n?.clamp===!0?(o=Math.min(Math.max(o,i),s),Math.floor(o)%2===0?o=Math.floor(o):o=Math.ceil(o),o):Number.isNaN(o)||o===0&&Object.is(0,o)||o===Number.POSITIVE_INFINITY||o===Number.NEGATIVE_INFINITY?0:(o=te.util.IntegerPart(o),o=o%Math.pow(2,t),r==="signed"&&o>=Math.pow(2,t)-1?o-Math.pow(2,t):o)};te.util.IntegerPart=function(e){let t=Math.floor(Math.abs(e));return e<0?-1*t:t};te.util.Stringify=function(e){switch(te.util.Type(e)){case"Symbol":return`Symbol(${e.description})`;case"Object":return R3e(e);case"String":return`"${e}"`;default:return`${e}`}};te.sequenceConverter=function(e){return(t,r,n,s)=>{if(te.util.Type(t)!=="Object")throw te.errors.exception({header:r,message:`${n} (${te.util.Stringify(t)}) is not iterable.`});let i=typeof s=="function"?s():t?.[Symbol.iterator]?.(),o=[],a=0;if(i===void 0||typeof i.next!="function")throw te.errors.exception({header:r,message:`${n} is not iterable.`});for(;;){let{done:c,value:u}=i.next();if(c)break;o.push(e(u,r,`${n}[${a++}]`))}return o}};te.recordConverter=function(e,t){return(r,n,s)=>{if(te.util.Type(r)!=="Object")throw te.errors.exception({header:n,message:`${s} ("${te.util.Type(r)}") is not an Object.`});let i={};if(!Vi.isProxy(r)){let a=[...Object.getOwnPropertyNames(r),...Object.getOwnPropertySymbols(r)];for(let c of a){let u=e(c,n,s),l=t(r[c],n,s);i[u]=l}return i}let o=Reflect.ownKeys(r);for(let a of o)if(Reflect.getOwnPropertyDescriptor(r,a)?.enumerable){let u=e(a,n,s),l=t(r[a],n,s);i[u]=l}return i}};te.interfaceConverter=function(e){return(t,r,n,s)=>{if(s?.strict!==!1&&!(t instanceof e))throw te.errors.exception({header:r,message:`Expected ${n} ("${te.util.Stringify(t)}") to be an instance of ${e.name}.`});return t}};te.dictionaryConverter=function(e){return(t,r,n)=>{let s=te.util.Type(t),i={};if(s==="Null"||s==="Undefined")return i;if(s!=="Object")throw te.errors.exception({header:r,message:`Expected ${t} to be one of: Null, Undefined, Object.`});for(let o of e){let{key:a,defaultValue:c,required:u,converter:l}=o;if(u===!0&&!Object.hasOwn(t,a))throw te.errors.exception({header:r,message:`Missing required key "${a}".`});let A=t[a],f=Object.hasOwn(o,"defaultValue");if(f&&A!==null&&(A??=c()),u||f||A!==void 0){if(A=l(A,r,`${n}.${a}`),o.allowedValues&&!o.allowedValues.includes(A))throw te.errors.exception({header:r,message:`${A} is not an accepted type. Expected one of ${o.allowedValues.join(", ")}.`});i[a]=A}}return i}};te.nullableConverter=function(e){return(t,r,n)=>t===null?t:e(t,r,n)};te.converters.DOMString=function(e,t,r,n){if(e===null&&n?.legacyNullToEmptyString)return"";if(typeof e=="symbol")throw te.errors.exception({header:t,message:`${r} is a symbol, which cannot be converted to a DOMString.`});return String(e)};te.converters.ByteString=function(e,t,r){let n=te.converters.DOMString(e,t,r);for(let s=0;s255)throw new TypeError(`Cannot convert argument to a ByteString because the character at index ${s} has a value of ${n.charCodeAt(s)} which is greater than 255.`);return n};te.converters.USVString=N3e;te.converters.boolean=function(e){return!!e};te.converters.any=function(e){return e};te.converters["long long"]=function(e,t,r){return te.util.ConvertToInt(e,64,"signed",void 0,t,r)};te.converters["unsigned long long"]=function(e,t,r){return te.util.ConvertToInt(e,64,"unsigned",void 0,t,r)};te.converters["unsigned long"]=function(e,t,r){return te.util.ConvertToInt(e,32,"unsigned",void 0,t,r)};te.converters["unsigned short"]=function(e,t,r,n){return te.util.ConvertToInt(e,16,"unsigned",n,t,r)};te.converters.ArrayBuffer=function(e,t,r,n){if(te.util.Type(e)!=="Object"||!Vi.isAnyArrayBuffer(e))throw te.errors.conversionFailed({prefix:t,argument:`${r} ("${te.util.Stringify(e)}")`,types:["ArrayBuffer"]});if(n?.allowShared===!1&&Vi.isSharedArrayBuffer(e))throw te.errors.exception({header:"ArrayBuffer",message:"SharedArrayBuffer is not allowed."});if(e.resizable||e.growable)throw te.errors.exception({header:"ArrayBuffer",message:"Received a resizable ArrayBuffer."});return e};te.converters.TypedArray=function(e,t,r,n,s){if(te.util.Type(e)!=="Object"||!Vi.isTypedArray(e)||e.constructor.name!==t.name)throw te.errors.conversionFailed({prefix:r,argument:`${n} ("${te.util.Stringify(e)}")`,types:[t.name]});if(s?.allowShared===!1&&Vi.isSharedArrayBuffer(e.buffer))throw te.errors.exception({header:"ArrayBuffer",message:"SharedArrayBuffer is not allowed."});if(e.buffer.resizable||e.buffer.growable)throw te.errors.exception({header:"ArrayBuffer",message:"Received a resizable ArrayBuffer."});return e};te.converters.DataView=function(e,t,r,n){if(te.util.Type(e)!=="Object"||!Vi.isDataView(e))throw te.errors.exception({header:t,message:`${r} is not a DataView.`});if(n?.allowShared===!1&&Vi.isSharedArrayBuffer(e.buffer))throw te.errors.exception({header:"ArrayBuffer",message:"SharedArrayBuffer is not allowed."});if(e.buffer.resizable||e.buffer.growable)throw te.errors.exception({header:"ArrayBuffer",message:"Received a resizable ArrayBuffer."});return e};te.converters.BufferSource=function(e,t,r,n){if(Vi.isAnyArrayBuffer(e))return te.converters.ArrayBuffer(e,t,r,{...n,allowShared:!1});if(Vi.isTypedArray(e))return te.converters.TypedArray(e,e.constructor,t,r,{...n,allowShared:!1});if(Vi.isDataView(e))return te.converters.DataView(e,t,r,{...n,allowShared:!1});throw te.errors.conversionFailed({prefix:t,argument:`${r} ("${te.util.Stringify(e)}")`,types:["BufferSource"]})};te.converters["sequence"]=te.sequenceConverter(te.converters.ByteString);te.converters["sequence>"]=te.sequenceConverter(te.converters["sequence"]);te.converters["record"]=te.recordConverter(te.converters.ByteString,te.converters.ByteString);Cz.exports={webidl:te}});var Jn=b((Clt,Nz)=>{"use strict";var{Transform:k3e}=require("node:stream"),yz=require("node:zlib"),{redirectStatusSet:F3e,referrerPolicySet:L3e,badPortsSet:O3e}=d0(),{getGlobalOrigin:Iz}=H_(),{collectASequenceOfCodePoints:pu,collectAnHTTPQuotedString:M3e,removeChars:P3e,parseMIMEType:U3e}=Dn(),{performance:H3e}=require("node:perf_hooks"),{isBlobLike:q3e,ReadableStreamFrom:V3e,isValidHTTPToken:bz,normalizedMethodRecordsBase:Y3e}=Ve(),gu=require("node:assert"),{isUint8Array:$3e}=require("node:util/types"),{webidl:p0}=Or(),Bz=[],Ky;try{Ky=require("node:crypto");let e=["sha256","sha384","sha512"];Bz=Ky.getHashes().filter(t=>e.includes(t))}catch{}function xz(e){let t=e.urlList,r=t.length;return r===0?null:t[r-1].toString()}function G3e(e,t){if(!F3e.has(e.status))return null;let r=e.headersList.get("location",!0);return r!==null&&Qz(r)&&(vz(r)||(r=j3e(r)),r=new URL(r,xz(e))),r&&!r.hash&&(r.hash=t),r}function vz(e){for(let t=0;t126||r<32)return!1}return!0}function j3e(e){return Buffer.from(e,"binary").toString("utf8")}function m0(e){return e.urlList[e.urlList.length-1]}function J3e(e){let t=m0(e);return Rz(t)&&O3e.has(t.port)?"blocked":"allowed"}function W3e(e){return e instanceof Error||e?.constructor?.name==="Error"||e?.constructor?.name==="DOMException"}function z3e(e){for(let t=0;t=32&&r<=126||r>=128&&r<=255))return!1}return!0}var X3e=bz;function Qz(e){return(e[0]===" "||e[0]===" "||e[e.length-1]===" "||e[e.length-1]===" "||e.includes(` +`)||e.includes("\r")||e.includes("\0"))===!1}function K3e(e,t){let{headersList:r}=t,n=(r.get("referrer-policy",!0)??"").split(","),s="";if(n.length>0)for(let i=n.length;i!==0;i--){let o=n[i-1].trim();if(L3e.has(o)){s=o;break}}s!==""&&(e.referrerPolicy=s)}function Z3e(){return"allowed"}function eMe(){return"success"}function tMe(){return"success"}function rMe(e){let t=null;t=e.mode,e.headersList.set("sec-fetch-mode",t,!0)}function nMe(e){let t=e.origin;if(!(t==="client"||t===void 0)){if(e.responseTainting==="cors"||e.mode==="websocket")e.headersList.append("origin",t,!0);else if(e.method!=="GET"&&e.method!=="HEAD"){switch(e.referrerPolicy){case"no-referrer":t=null;break;case"no-referrer-when-downgrade":case"strict-origin":case"strict-origin-when-cross-origin":e.origin&&$_(e.origin)&&!$_(m0(e))&&(t=null);break;case"same-origin":Zy(e,m0(e))||(t=null);break;default:}e.headersList.append("origin",t,!0)}}}function MA(e,t){return e}function sMe(e,t,r){return!e?.startTime||e.startTime4096&&(n=s);let i=Zy(e,n),o=g0(n)&&!g0(e.url);switch(t){case"origin":return s??Y_(r,!0);case"unsafe-url":return n;case"same-origin":return i?s:"no-referrer";case"origin-when-cross-origin":return i?n:s;case"strict-origin-when-cross-origin":{let a=m0(e);return Zy(n,a)?n:g0(n)&&!g0(a)?"no-referrer":s}case"strict-origin":case"no-referrer-when-downgrade":default:return o?"no-referrer":s}}function Y_(e,t){return gu(e instanceof URL),e=new URL(e),e.protocol==="file:"||e.protocol==="about:"||e.protocol==="blank:"?"no-referrer":(e.username="",e.password="",e.hash="",t&&(e.pathname="",e.search=""),e)}function g0(e){if(!(e instanceof URL))return!1;if(e.href==="about:blank"||e.href==="about:srcdoc"||e.protocol==="data:"||e.protocol==="file:")return!0;return t(e.origin);function t(r){if(r==null||r==="null")return!1;let n=new URL(r);return!!(n.protocol==="https:"||n.protocol==="wss:"||/^127(?:\.[0-9]+){0,2}\.[0-9]+$|^\[(?:0*:)*?:?0*1\]$/.test(n.hostname)||n.hostname==="localhost"||n.hostname.includes("localhost.")||n.hostname.endsWith(".localhost"))}}function uMe(e,t){if(Ky===void 0)return!0;let r=wz(t);if(r==="no metadata"||r.length===0)return!0;let n=AMe(r),s=fMe(r,n);for(let i of s){let o=i.algo,a=i.hash,c=Ky.createHash(o).update(e).digest("base64");if(c[c.length-1]==="="&&(c[c.length-2]==="="?c=c.slice(0,-2):c=c.slice(0,-1)),dMe(c,a))return!0}return!1}var lMe=/(?sha256|sha384|sha512)-((?[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\s|$)( +[!-~]*)?)?/i;function wz(e){let t=[],r=!0;for(let n of e.split(" ")){r=!1;let s=lMe.exec(n);if(s===null||s.groups===void 0||s.groups.algo===void 0)continue;let i=s.groups.algo.toLowerCase();Bz.includes(i)&&t.push(s.groups)}return r===!0?"no metadata":t}function AMe(e){let t=e[0].algo;if(t[3]==="5")return t;for(let r=1;r{e=n,t=s}),resolve:e,reject:t}}function gMe(e){return e.controller.state==="aborted"}function mMe(e){return e.controller.state==="aborted"||e.controller.state==="terminated"}function EMe(e){return Y3e[e.toLowerCase()]??e}function CMe(e){let t=JSON.stringify(e);if(t===void 0)throw new TypeError("Value is not JSON serializable");return gu(typeof t=="string"),t}var yMe=Object.getPrototypeOf(Object.getPrototypeOf([][Symbol.iterator]()));function Sz(e,t,r=0,n=1){class s{#e;#t;#s;constructor(o,a){this.#e=o,this.#t=a,this.#s=0}next(){if(typeof this!="object"||this===null||!(#e in this))throw new TypeError(`'next' called on an object that does not implement interface ${e} Iterator.`);let o=this.#s,a=this.#e[t],c=a.length;if(o>=c)return{value:void 0,done:!0};let{[r]:u,[n]:l}=a[o];this.#s=o+1;let A;switch(this.#t){case"key":A=u;break;case"value":A=l;break;case"key+value":A=[u,l];break}return{value:A,done:!1}}}return delete s.prototype.constructor,Object.setPrototypeOf(s.prototype,yMe),Object.defineProperties(s.prototype,{[Symbol.toStringTag]:{writable:!1,enumerable:!1,configurable:!0,value:`${e} Iterator`},next:{writable:!0,enumerable:!0,configurable:!0}}),function(i,o){return new s(i,o)}}function IMe(e,t,r,n=0,s=1){let i=Sz(e,r,n,s),o={keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return p0.brandCheck(this,t),i(this,"key")}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return p0.brandCheck(this,t),i(this,"value")}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return p0.brandCheck(this,t),i(this,"key+value")}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(c,u=globalThis){if(p0.brandCheck(this,t),p0.argumentLengthCheck(arguments,1,`${e}.forEach`),typeof c!="function")throw new TypeError(`Failed to execute 'forEach' on '${e}': parameter 1 is not of type 'Function'.`);for(let{0:l,1:A}of i(this,"key+value"))c.call(u,A,l,this)}}};return Object.defineProperties(t.prototype,{...o,[Symbol.iterator]:{writable:!0,enumerable:!1,configurable:!0,value:o.entries.value}})}async function bMe(e,t,r){let n=t,s=r,i;try{i=e.stream.getReader()}catch(o){s(o);return}try{n(await _z(i))}catch(o){s(o)}}function BMe(e){return e instanceof ReadableStream||e[Symbol.toStringTag]==="ReadableStream"&&typeof e.tee=="function"}function xMe(e){try{e.close(),e.byobRequest?.respond(0)}catch(t){if(!t.message.includes("Controller is already closed")&&!t.message.includes("ReadableStream is already closed"))throw t}}var vMe=/[^\x00-\xFF]/;function Xy(e){return gu(!vMe.test(e)),e}async function _z(e){let t=[],r=0;for(;;){let{done:n,value:s}=await e.read();if(n)return Buffer.concat(t,r);if(!$3e(s))throw new TypeError("Received non-Uint8Array chunk");t.push(s),r+=s.length}}function QMe(e){gu("protocol"in e);let t=e.protocol;return t==="about:"||t==="blob:"||t==="data:"}function $_(e){return typeof e=="string"&&e[5]===":"&&e[0]==="h"&&e[1]==="t"&&e[2]==="t"&&e[3]==="p"&&e[4]==="s"||e.protocol==="https:"}function Rz(e){gu("protocol"in e);let t=e.protocol;return t==="http:"||t==="https:"}function TMe(e,t){let r=e;if(!r.startsWith("bytes"))return"failure";let n={position:5};if(t&&pu(c=>c===" "||c===" ",r,n),r.charCodeAt(n.position)!==61)return"failure";n.position++,t&&pu(c=>c===" "||c===" ",r,n);let s=pu(c=>{let u=c.charCodeAt(0);return u>=48&&u<=57},r,n),i=s.length?Number(s):null;if(t&&pu(c=>c===" "||c===" ",r,n),r.charCodeAt(n.position)!==45)return"failure";n.position++,t&&pu(c=>c===" "||c===" ",r,n);let o=pu(c=>{let u=c.charCodeAt(0);return u>=48&&u<=57},r,n),a=o.length?Number(o):null;return n.positiona?"failure":{rangeStartValue:i,rangeEndValue:a}}function wMe(e,t,r){let n="bytes ";return n+=Xy(`${e}`),n+="-",n+=Xy(`${t}`),n+="/",n+=Xy(`${r}`),n}var G_=class extends k3e{#e;constructor(t){super(),this.#e=t}_transform(t,r,n){if(!this._inflateStream){if(t.length===0){n();return}this._inflateStream=(t[0]&15)===8?yz.createInflate(this.#e):yz.createInflateRaw(this.#e),this._inflateStream.on("data",this.push.bind(this)),this._inflateStream.on("end",()=>this.push(null)),this._inflateStream.on("error",s=>this.destroy(s))}this._inflateStream.write(t,r,n)}_final(t){this._inflateStream&&(this._inflateStream.end(),this._inflateStream=null),t()}};function SMe(e){return new G_(e)}function _Me(e){let t=null,r=null,n=null,s=Dz("content-type",e);if(s===null)return"failure";for(let i of s){let o=U3e(i);o==="failure"||o.essence==="*/*"||(n=o,n.essence!==r?(t=null,n.parameters.has("charset")&&(t=n.parameters.get("charset")),r=n.essence):!n.parameters.has("charset")&&t!==null&&n.parameters.set("charset",t))}return n??"failure"}function RMe(e){let t=e,r={position:0},n=[],s="";for(;r.positioni!=='"'&&i!==",",t,r),r.positioni===9||i===32),n.push(s),s=""}return n}function Dz(e,t){let r=t.get(e,!0);return r===null?null:RMe(r)}var DMe=new TextDecoder;function NMe(e){return e.length===0?"":(e[0]===239&&e[1]===187&&e[2]===191&&(e=e.subarray(3)),DMe.decode(e))}var j_=class{get baseUrl(){return Iz()}get origin(){return this.baseUrl?.origin}policyContainer=Tz()},J_=class{settingsObject=new j_},kMe=new J_;Nz.exports={isAborted:gMe,isCancelled:mMe,isValidEncodedURL:vz,createDeferredPromise:pMe,ReadableStreamFrom:V3e,tryUpgradeRequestToAPotentiallyTrustworthyURL:hMe,clampAndCoarsenConnectionTimingInfo:sMe,coarsenedSharedCurrentTime:iMe,determineRequestsReferrer:cMe,makePolicyContainer:Tz,clonePolicyContainer:aMe,appendFetchMetadata:rMe,appendRequestOriginHeader:nMe,TAOCheck:tMe,corsCheck:eMe,crossOriginResourcePolicyCheck:Z3e,createOpaqueTimingInfo:oMe,setRequestReferrerPolicyOnRedirect:K3e,isValidHTTPToken:bz,requestBadPort:J3e,requestCurrentURL:m0,responseURL:xz,responseLocationURL:G3e,isBlobLike:q3e,isURLPotentiallyTrustworthy:g0,isValidReasonPhrase:z3e,sameOrigin:Zy,normalizeMethod:EMe,serializeJavascriptValueToJSONString:CMe,iteratorMixin:IMe,createIterator:Sz,isValidHeaderName:X3e,isValidHeaderValue:Qz,isErrorLike:W3e,fullyReadBody:bMe,bytesMatch:uMe,isReadableStreamLike:BMe,readableStreamClose:xMe,isomorphicEncode:Xy,urlIsLocal:QMe,urlHasHttpsScheme:$_,urlIsHttpHttpsScheme:Rz,readAllBytes:_z,simpleRangeHeaderValue:TMe,buildContentRange:wMe,parseMetadata:wz,createInflate:SMe,extractMimeType:_Me,getDecodeSplit:Dz,utf8DecodeBytes:NMe,environmentSettingsObject:kMe}});var Ya=b((ylt,kz)=>{"use strict";kz.exports={kUrl:Symbol("url"),kHeaders:Symbol("headers"),kSignal:Symbol("signal"),kState:Symbol("state"),kDispatcher:Symbol("dispatcher")}});var z_=b((Ilt,Fz)=>{"use strict";var{Blob:FMe,File:LMe}=require("node:buffer"),{kState:Po}=Ya(),{webidl:Yi}=Or(),W_=class e{constructor(t,r,n={}){let s=r,i=n.type,o=n.lastModified??Date.now();this[Po]={blobLike:t,name:s,type:i,lastModified:o}}stream(...t){return Yi.brandCheck(this,e),this[Po].blobLike.stream(...t)}arrayBuffer(...t){return Yi.brandCheck(this,e),this[Po].blobLike.arrayBuffer(...t)}slice(...t){return Yi.brandCheck(this,e),this[Po].blobLike.slice(...t)}text(...t){return Yi.brandCheck(this,e),this[Po].blobLike.text(...t)}get size(){return Yi.brandCheck(this,e),this[Po].blobLike.size}get type(){return Yi.brandCheck(this,e),this[Po].blobLike.type}get name(){return Yi.brandCheck(this,e),this[Po].name}get lastModified(){return Yi.brandCheck(this,e),this[Po].lastModified}get[Symbol.toStringTag](){return"File"}};Yi.converters.Blob=Yi.interfaceConverter(FMe);function OMe(e){return e instanceof LMe||e&&(typeof e.stream=="function"||typeof e.arrayBuffer=="function")&&e[Symbol.toStringTag]==="File"}Fz.exports={FileLike:W_,isFileLike:OMe}});var C0=b((blt,Uz)=>{"use strict";var{isBlobLike:eI,iteratorMixin:MMe}=Jn(),{kState:fn}=Ya(),{kEnumerableProperty:PA}=Ve(),{FileLike:Lz,isFileLike:PMe}=z_(),{webidl:_t}=Or(),{File:Pz}=require("node:buffer"),Oz=require("node:util"),Mz=globalThis.File??Pz,E0=class e{constructor(t){if(_t.util.markAsUncloneable(this),t!==void 0)throw _t.errors.conversionFailed({prefix:"FormData constructor",argument:"Argument 1",types:["undefined"]});this[fn]=[]}append(t,r,n=void 0){_t.brandCheck(this,e);let s="FormData.append";if(_t.argumentLengthCheck(arguments,2,s),arguments.length===3&&!eI(r))throw new TypeError("Failed to execute 'append' on 'FormData': parameter 2 is not of type 'Blob'");t=_t.converters.USVString(t,s,"name"),r=eI(r)?_t.converters.Blob(r,s,"value",{strict:!1}):_t.converters.USVString(r,s,"value"),n=arguments.length===3?_t.converters.USVString(n,s,"filename"):void 0;let i=X_(t,r,n);this[fn].push(i)}delete(t){_t.brandCheck(this,e);let r="FormData.delete";_t.argumentLengthCheck(arguments,1,r),t=_t.converters.USVString(t,r,"name"),this[fn]=this[fn].filter(n=>n.name!==t)}get(t){_t.brandCheck(this,e);let r="FormData.get";_t.argumentLengthCheck(arguments,1,r),t=_t.converters.USVString(t,r,"name");let n=this[fn].findIndex(s=>s.name===t);return n===-1?null:this[fn][n].value}getAll(t){_t.brandCheck(this,e);let r="FormData.getAll";return _t.argumentLengthCheck(arguments,1,r),t=_t.converters.USVString(t,r,"name"),this[fn].filter(n=>n.name===t).map(n=>n.value)}has(t){_t.brandCheck(this,e);let r="FormData.has";return _t.argumentLengthCheck(arguments,1,r),t=_t.converters.USVString(t,r,"name"),this[fn].findIndex(n=>n.name===t)!==-1}set(t,r,n=void 0){_t.brandCheck(this,e);let s="FormData.set";if(_t.argumentLengthCheck(arguments,2,s),arguments.length===3&&!eI(r))throw new TypeError("Failed to execute 'set' on 'FormData': parameter 2 is not of type 'Blob'");t=_t.converters.USVString(t,s,"name"),r=eI(r)?_t.converters.Blob(r,s,"name",{strict:!1}):_t.converters.USVString(r,s,"name"),n=arguments.length===3?_t.converters.USVString(n,s,"name"):void 0;let i=X_(t,r,n),o=this[fn].findIndex(a=>a.name===t);o!==-1?this[fn]=[...this[fn].slice(0,o),i,...this[fn].slice(o+1).filter(a=>a.name!==t)]:this[fn].push(i)}[Oz.inspect.custom](t,r){let n=this[fn].reduce((i,o)=>(i[o.name]?Array.isArray(i[o.name])?i[o.name].push(o.value):i[o.name]=[i[o.name],o.value]:i[o.name]=o.value,i),{__proto__:null});r.depth??=t,r.colors??=!0;let s=Oz.formatWithOptions(r,n);return`FormData ${s.slice(s.indexOf("]")+2)}`}};MMe("FormData",E0,fn,"name","value");Object.defineProperties(E0.prototype,{append:PA,delete:PA,get:PA,getAll:PA,has:PA,set:PA,[Symbol.toStringTag]:{value:"FormData",configurable:!0}});function X_(e,t,r){if(typeof t!="string"){if(PMe(t)||(t=t instanceof Blob?new Mz([t],"blob",{type:t.type}):new Lz(t,"blob",{type:t.type})),r!==void 0){let n={type:t.type,lastModified:t.lastModified};t=t instanceof Pz?new Mz([t],r,n):new Lz(t,r,n)}}return{name:e,value:t}}Uz.exports={FormData:E0,makeEntry:X_}});var Gz=b((Blt,$z)=>{"use strict";var{isUSVString:Hz,bufferToLowerCasedHeaderName:UMe}=Ve(),{utf8DecodeBytes:HMe}=Jn(),{HTTP_TOKEN_CODEPOINTS:qMe,isomorphicDecode:qz}=Dn(),{isFileLike:VMe}=z_(),{makeEntry:YMe}=C0(),tI=require("node:assert"),{File:$Me}=require("node:buffer"),GMe=globalThis.File??$Me,jMe=Buffer.from('form-data; name="'),Vz=Buffer.from("; filename"),JMe=Buffer.from("--"),WMe=Buffer.from(`--\r +`);function zMe(e){for(let t=0;t70)return!1;for(let r=0;r=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122||n===39||n===45||n===95))return!1}return!0}function KMe(e,t){tI(t!=="failure"&&t.essence==="multipart/form-data");let r=t.parameters.get("boundary");if(r===void 0)return"failure";let n=Buffer.from(`--${r}`,"utf8"),s=[],i={position:0};for(;e[i.position]===13&&e[i.position+1]===10;)i.position+=2;let o=e.length;for(;e[o-1]===10&&e[o-2]===13;)o-=2;for(o!==e.length&&(e=e.subarray(0,o));;){if(e.subarray(i.position,i.position+n.length).equals(n))i.position+=n.length;else return"failure";if(i.position===e.length-2&&rI(e,JMe,i)||i.position===e.length-4&&rI(e,WMe,i))return s;if(e[i.position]!==13||e[i.position+1]!==10)return"failure";i.position+=2;let a=ZMe(e,i);if(a==="failure")return"failure";let{name:c,filename:u,contentType:l,encoding:A}=a;i.position+=2;let f;{let h=e.indexOf(n.subarray(2),i.position);if(h===-1)return"failure";f=e.subarray(i.position,h-4),i.position+=f.length,A==="base64"&&(f=Buffer.from(f.toString(),"base64"))}if(e[i.position]!==13||e[i.position+1]!==10)return"failure";i.position+=2;let d;u!==null?(l??="text/plain",zMe(l)||(l=""),d=new GMe([f],u,{type:l})):d=HMe(Buffer.from(f)),tI(Hz(c)),tI(typeof d=="string"&&Hz(d)||VMe(d)),s.push(YMe(c,d,u))}}function ZMe(e,t){let r=null,n=null,s=null,i=null;for(;;){if(e[t.position]===13&&e[t.position+1]===10)return r===null?"failure":{name:r,filename:n,contentType:s,encoding:i};let o=UA(a=>a!==10&&a!==13&&a!==58,e,t);if(o=K_(o,!0,!0,a=>a===9||a===32),!qMe.test(o.toString())||e[t.position]!==58)return"failure";switch(t.position++,UA(a=>a===32||a===9,e,t),UMe(o)){case"content-disposition":{if(r=n=null,!rI(e,jMe,t)||(t.position+=17,r=Yz(e,t),r===null))return"failure";if(rI(e,Vz,t)){let a=t.position+Vz.length;if(e[a]===42&&(t.position+=1,a+=1),e[a]!==61||e[a+1]!==34||(t.position+=12,n=Yz(e,t),n===null))return"failure"}break}case"content-type":{let a=UA(c=>c!==10&&c!==13,e,t);a=K_(a,!1,!0,c=>c===9||c===32),s=qz(a);break}case"content-transfer-encoding":{let a=UA(c=>c!==10&&c!==13,e,t);a=K_(a,!1,!0,c=>c===9||c===32),i=qz(a);break}default:UA(a=>a!==10&&a!==13,e,t)}if(e[t.position]!==13&&e[t.position+1]!==10)return"failure";t.position+=2}}function Yz(e,t){tI(e[t.position-1]===34);let r=UA(n=>n!==10&&n!==13&&n!==34,e,t);return e[t.position]!==34?null:(t.position++,r=new TextDecoder().decode(r).replace(/%0A/ig,` +`).replace(/%0D/ig,"\r").replace(/%22/g,'"'),r)}function UA(e,t,r){let n=r.position;for(;n0&&n(e[i]);)i--;return s===0&&i===e.length-1?e:e.subarray(s,i+1)}function rI(e,t,r){if(e.length{"use strict";var y0=Ve(),{ReadableStreamFrom:ePe,isBlobLike:jz,isReadableStreamLike:tPe,readableStreamClose:rPe,createDeferredPromise:nPe,fullyReadBody:sPe,extractMimeType:iPe,utf8DecodeBytes:zz}=Jn(),{FormData:Jz}=C0(),{kState:qA}=Ya(),{webidl:oPe}=Or(),{Blob:aPe}=require("node:buffer"),Z_=require("node:assert"),{isErrored:Xz,isDisturbed:cPe}=require("node:stream"),{isArrayBuffer:uPe}=require("node:util/types"),{serializeAMimeType:lPe}=Dn(),{multipartFormDataParser:APe}=Gz(),eR;try{let e=require("node:crypto");eR=t=>e.randomInt(0,t)}catch{eR=e=>Math.floor(Math.random(e))}var nI=new TextEncoder;function fPe(){}var tR=globalThis.FinalizationRegistry&&process.version.indexOf("v18")!==0,rR;tR&&(rR=new FinalizationRegistry(e=>{let t=e.deref();t&&!t.locked&&!cPe(t)&&!Xz(t)&&t.cancel("Response object has been garbage collected").catch(fPe)}));function Kz(e,t=!1){let r=null;e instanceof ReadableStream?r=e:jz(e)?r=e.stream():r=new ReadableStream({async pull(c){let u=typeof s=="string"?nI.encode(s):s;u.byteLength&&c.enqueue(u),queueMicrotask(()=>rPe(c))},start(){},type:"bytes"}),Z_(tPe(r));let n=null,s=null,i=null,o=null;if(typeof e=="string")s=e,o="text/plain;charset=UTF-8";else if(e instanceof URLSearchParams)s=e.toString(),o="application/x-www-form-urlencoded;charset=UTF-8";else if(uPe(e))s=new Uint8Array(e.slice());else if(ArrayBuffer.isView(e))s=new Uint8Array(e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength));else if(y0.isFormDataLike(e)){let c=`----formdata-undici-0${`${eR(1e11)}`.padStart(11,"0")}`,u=`--${c}\r +Content-Disposition: form-data`;let l=C=>C.replace(/\n/g,"%0A").replace(/\r/g,"%0D").replace(/"/g,"%22"),A=C=>C.replace(/\r?\n|\r/g,`\r +`),f=[],d=new Uint8Array([13,10]);i=0;let h=!1;for(let[C,m]of e)if(typeof m=="string"){let I=nI.encode(u+`; name="${l(A(C))}"\r +\r +${A(m)}\r +`);f.push(I),i+=I.byteLength}else{let I=nI.encode(`${u}; name="${l(A(C))}"`+(m.name?`; filename="${l(m.name)}"`:"")+`\r +Content-Type: ${m.type||"application/octet-stream"}\r +\r +`);f.push(I,m,d),typeof m.size=="number"?i+=I.byteLength+m.size+d.byteLength:h=!0}let p=nI.encode(`--${c}--`);f.push(p),i+=p.byteLength,h&&(i=null),s=e,n=async function*(){for(let C of f)C.stream?yield*C.stream():yield C},o=`multipart/form-data; boundary=${c}`}else if(jz(e))s=e,i=e.size,e.type&&(o=e.type);else if(typeof e[Symbol.asyncIterator]=="function"){if(t)throw new TypeError("keepalive");if(y0.isDisturbed(e)||e.locked)throw new TypeError("Response body object should not be disturbed or locked");r=e instanceof ReadableStream?e:ePe(e)}if((typeof s=="string"||y0.isBuffer(s))&&(i=Buffer.byteLength(s)),n!=null){let c;r=new ReadableStream({async start(){c=n(e)[Symbol.asyncIterator]()},async pull(u){let{value:l,done:A}=await c.next();if(A)queueMicrotask(()=>{u.close(),u.byobRequest?.respond(0)});else if(!Xz(r)){let f=new Uint8Array(l);f.byteLength&&u.enqueue(f)}return u.desiredSize>0},async cancel(u){await c.return()},type:"bytes"})}return[{stream:r,source:s,length:i},o]}function dPe(e,t=!1){return e instanceof ReadableStream&&(Z_(!y0.isDisturbed(e),"The body has already been consumed."),Z_(!e.locked,"The stream is locked.")),Kz(e,t)}function hPe(e,t){let[r,n]=t.stream.tee();return tR&&rR.register(e,new WeakRef(r)),t.stream=r,{stream:n,length:t.length,source:t.source}}function pPe(e){if(e.aborted)throw new DOMException("The operation was aborted.","AbortError")}function gPe(e){return{blob(){return HA(this,r=>{let n=Wz(this);return n===null?n="":n&&(n=lPe(n)),new aPe([r],{type:n})},e)},arrayBuffer(){return HA(this,r=>new Uint8Array(r).buffer,e)},text(){return HA(this,zz,e)},json(){return HA(this,EPe,e)},formData(){return HA(this,r=>{let n=Wz(this);if(n!==null)switch(n.essence){case"multipart/form-data":{let s=APe(r,n);if(s==="failure")throw new TypeError("Failed to parse body as FormData.");let i=new Jz;return i[qA]=s,i}case"application/x-www-form-urlencoded":{let s=new URLSearchParams(r.toString()),i=new Jz;for(let[o,a]of s)i.append(o,a);return i}}throw new TypeError('Content-Type was not one of "multipart/form-data" or "application/x-www-form-urlencoded".')},e)},bytes(){return HA(this,r=>new Uint8Array(r),e)}}}function mPe(e){Object.assign(e.prototype,gPe(e))}async function HA(e,t,r){if(oPe.brandCheck(e,r),Zz(e))throw new TypeError("Body is unusable: Body has already been read");pPe(e[qA]);let n=nPe(),s=o=>n.reject(o),i=o=>{try{n.resolve(t(o))}catch(a){s(a)}};return e[qA].body==null?(i(Buffer.allocUnsafe(0)),n.promise):(await sPe(e[qA].body,i,s),n.promise)}function Zz(e){let t=e[qA].body;return t!=null&&(t.stream.locked||y0.isDisturbed(t.stream))}function EPe(e){return JSON.parse(zz(e))}function Wz(e){let t=e[qA].headersList,r=iPe(t);return r==="failure"?null:r}eX.exports={extractBody:Kz,safelyExtractBody:dPe,cloneBody:hPe,mixinBody:mPe,streamRegistry:rR,hasFinalizationRegistry:tR,bodyUnusable:Zz}});var AX=b((vlt,lX)=>{"use strict";var Be=require("node:assert"),De=Ve(),{channels:tX}=_A(),nR=L_(),{RequestContentLengthMismatchError:mu,ResponseContentLengthMismatchError:CPe,RequestAbortedError:aX,HeadersTimeoutError:yPe,HeadersOverflowError:IPe,SocketError:uI,InformationalError:YA,BodyTimeoutError:bPe,HTTPParserError:BPe,ResponseExceededMaxSizeError:xPe}=ht(),{kUrl:cX,kReset:Nn,kClient:aR,kParser:$t,kBlocking:B0,kRunning:Xr,kPending:vPe,kSize:rX,kWriting:Ga,kQueue:ii,kNoRef:I0,kKeepAliveDefaultTimeout:QPe,kHostHeader:TPe,kPendingIdx:wPe,kRunningIdx:Ds,kError:Ns,kPipelining:aI,kSocket:$A,kKeepAliveTimeoutValue:lI,kMaxHeadersSize:sR,kKeepAliveMaxTimeout:SPe,kKeepAliveTimeoutThreshold:_Pe,kHeadersTimeout:RPe,kBodyTimeout:DPe,kStrictContentLength:cR,kMaxRequests:nX,kCounter:NPe,kMaxResponseSize:kPe,kOnError:FPe,kResume:$a,kHTTPContext:uX}=Ot(),$i=ZW(),LPe=Buffer.alloc(0),sI=Buffer[Symbol.species],iI=De.addListener,OPe=De.removeAllListeners,iR;async function MPe(){let e=process.env.JEST_WORKER_ID?P_():void 0,t;try{t=await WebAssembly.compile(rz())}catch{t=await WebAssembly.compile(e||P_())}return await WebAssembly.instantiate(t,{env:{wasm_on_url:(r,n,s)=>0,wasm_on_status:(r,n,s)=>{Be(pr.ptr===r);let i=n-ji+Gi.byteOffset;return pr.onStatus(new sI(Gi.buffer,i,s))||0},wasm_on_message_begin:r=>(Be(pr.ptr===r),pr.onMessageBegin()||0),wasm_on_header_field:(r,n,s)=>{Be(pr.ptr===r);let i=n-ji+Gi.byteOffset;return pr.onHeaderField(new sI(Gi.buffer,i,s))||0},wasm_on_header_value:(r,n,s)=>{Be(pr.ptr===r);let i=n-ji+Gi.byteOffset;return pr.onHeaderValue(new sI(Gi.buffer,i,s))||0},wasm_on_headers_complete:(r,n,s,i)=>(Be(pr.ptr===r),pr.onHeadersComplete(n,!!s,!!i)||0),wasm_on_body:(r,n,s)=>{Be(pr.ptr===r);let i=n-ji+Gi.byteOffset;return pr.onBody(new sI(Gi.buffer,i,s))||0},wasm_on_message_complete:r=>(Be(pr.ptr===r),pr.onMessageComplete()||0)}})}var oR=null,uR=MPe();uR.catch();var pr=null,Gi=null,oI=0,ji=null,PPe=0,b0=1,GA=2|b0,cI=4|b0,lR=8|PPe,AR=class{constructor(t,r,{exports:n}){Be(Number.isFinite(t[sR])&&t[sR]>0),this.llhttp=n,this.ptr=this.llhttp.llhttp_alloc($i.TYPE.RESPONSE),this.client=t,this.socket=r,this.timeout=null,this.timeoutValue=null,this.timeoutType=null,this.statusCode=null,this.statusText="",this.upgrade=!1,this.headers=[],this.headersSize=0,this.headersMaxSize=t[sR],this.shouldKeepAlive=!1,this.paused=!1,this.resume=this.resume.bind(this),this.bytesRead=0,this.keepAlive="",this.contentLength="",this.connection="",this.maxResponseSize=t[kPe]}setTimeout(t,r){t!==this.timeoutValue||r&b0^this.timeoutType&b0?(this.timeout&&(nR.clearTimeout(this.timeout),this.timeout=null),t&&(r&b0?this.timeout=nR.setFastTimeout(sX,t,new WeakRef(this)):(this.timeout=setTimeout(sX,t,new WeakRef(this)),this.timeout.unref())),this.timeoutValue=t):this.timeout&&this.timeout.refresh&&this.timeout.refresh(),this.timeoutType=r}resume(){this.socket.destroyed||!this.paused||(Be(this.ptr!=null),Be(pr==null),this.llhttp.llhttp_resume(this.ptr),Be(this.timeoutType===cI),this.timeout&&this.timeout.refresh&&this.timeout.refresh(),this.paused=!1,this.execute(this.socket.read()||LPe),this.readMore())}readMore(){for(;!this.paused&&this.ptr;){let t=this.socket.read();if(t===null)break;this.execute(t)}}execute(t){Be(this.ptr!=null),Be(pr==null),Be(!this.paused);let{socket:r,llhttp:n}=this;t.length>oI&&(ji&&n.free(ji),oI=Math.ceil(t.length/4096)*4096,ji=n.malloc(oI)),new Uint8Array(n.memory.buffer,ji,oI).set(t);try{let s;try{Gi=t,pr=this,s=n.llhttp_execute(this.ptr,ji,t.length)}catch(o){throw o}finally{pr=null,Gi=null}let i=n.llhttp_get_error_pos(this.ptr)-ji;if(s===$i.ERROR.PAUSED_UPGRADE)this.onUpgrade(t.slice(i));else if(s===$i.ERROR.PAUSED)this.paused=!0,r.unshift(t.slice(i));else if(s!==$i.ERROR.OK){let o=n.llhttp_get_error_reason(this.ptr),a="";if(o){let c=new Uint8Array(n.memory.buffer,o).indexOf(0);a="Response does not match the HTTP/1.1 protocol ("+Buffer.from(n.memory.buffer,o,c).toString()+")"}throw new BPe(a,$i.ERROR[s],t.slice(i))}}catch(s){De.destroy(r,s)}}destroy(){Be(this.ptr!=null),Be(pr==null),this.llhttp.llhttp_free(this.ptr),this.ptr=null,this.timeout&&nR.clearTimeout(this.timeout),this.timeout=null,this.timeoutValue=null,this.timeoutType=null,this.paused=!1}onStatus(t){this.statusText=t.toString()}onMessageBegin(){let{socket:t,client:r}=this;if(t.destroyed)return-1;let n=r[ii][r[Ds]];if(!n)return-1;n.onResponseStarted()}onHeaderField(t){let r=this.headers.length;r&1?this.headers[r-1]=Buffer.concat([this.headers[r-1],t]):this.headers.push(t),this.trackHeader(t.length)}onHeaderValue(t){let r=this.headers.length;(r&1)===1?(this.headers.push(t),r+=1):this.headers[r-1]=Buffer.concat([this.headers[r-1],t]);let n=this.headers[r-2];if(n.length===10){let s=De.bufferToLowerCasedHeaderName(n);s==="keep-alive"?this.keepAlive+=t.toString():s==="connection"&&(this.connection+=t.toString())}else n.length===14&&De.bufferToLowerCasedHeaderName(n)==="content-length"&&(this.contentLength+=t.toString());this.trackHeader(t.length)}trackHeader(t){this.headersSize+=t,this.headersSize>=this.headersMaxSize&&De.destroy(this.socket,new IPe)}onUpgrade(t){let{upgrade:r,client:n,socket:s,headers:i,statusCode:o}=this;Be(r),Be(n[$A]===s),Be(!s.destroyed),Be(!this.paused),Be((i.length&1)===0);let a=n[ii][n[Ds]];Be(a),Be(a.upgrade||a.method==="CONNECT"),this.statusCode=null,this.statusText="",this.shouldKeepAlive=null,this.headers=[],this.headersSize=0,s.unshift(t),s[$t].destroy(),s[$t]=null,s[aR]=null,s[Ns]=null,OPe(s),n[$A]=null,n[uX]=null,n[ii][n[Ds]++]=null,n.emit("disconnect",n[cX],[n],new YA("upgrade"));try{a.onUpgrade(o,i,s)}catch(c){De.destroy(s,c)}n[$a]()}onHeadersComplete(t,r,n){let{client:s,socket:i,headers:o,statusText:a}=this;if(i.destroyed)return-1;let c=s[ii][s[Ds]];if(!c)return-1;if(Be(!this.upgrade),Be(this.statusCode<200),t===100)return De.destroy(i,new uI("bad response",De.getSocketInfo(i))),-1;if(r&&!c.upgrade)return De.destroy(i,new uI("bad upgrade",De.getSocketInfo(i))),-1;if(Be(this.timeoutType===GA),this.statusCode=t,this.shouldKeepAlive=n||c.method==="HEAD"&&!i[Nn]&&this.connection.toLowerCase()==="keep-alive",this.statusCode>=200){let l=c.bodyTimeout!=null?c.bodyTimeout:s[DPe];this.setTimeout(l,cI)}else this.timeout&&this.timeout.refresh&&this.timeout.refresh();if(c.method==="CONNECT")return Be(s[Xr]===1),this.upgrade=!0,2;if(r)return Be(s[Xr]===1),this.upgrade=!0,2;if(Be((this.headers.length&1)===0),this.headers=[],this.headersSize=0,this.shouldKeepAlive&&s[aI]){let l=this.keepAlive?De.parseKeepAliveTimeout(this.keepAlive):null;if(l!=null){let A=Math.min(l-s[_Pe],s[SPe]);A<=0?i[Nn]=!0:s[lI]=A}else s[lI]=s[QPe]}else i[Nn]=!0;let u=c.onHeaders(t,o,this.resume,a)===!1;return c.aborted?-1:c.method==="HEAD"||t<200?1:(i[B0]&&(i[B0]=!1,s[$a]()),u?$i.ERROR.PAUSED:0)}onBody(t){let{client:r,socket:n,statusCode:s,maxResponseSize:i}=this;if(n.destroyed)return-1;let o=r[ii][r[Ds]];if(Be(o),Be(this.timeoutType===cI),this.timeout&&this.timeout.refresh&&this.timeout.refresh(),Be(s>=200),i>-1&&this.bytesRead+t.length>i)return De.destroy(n,new xPe),-1;if(this.bytesRead+=t.length,o.onData(t)===!1)return $i.ERROR.PAUSED}onMessageComplete(){let{client:t,socket:r,statusCode:n,upgrade:s,headers:i,contentLength:o,bytesRead:a,shouldKeepAlive:c}=this;if(r.destroyed&&(!n||c))return-1;if(s)return;Be(n>=100),Be((this.headers.length&1)===0);let u=t[ii][t[Ds]];if(Be(u),this.statusCode=null,this.statusText="",this.bytesRead=0,this.contentLength="",this.keepAlive="",this.connection="",this.headers=[],this.headersSize=0,!(n<200)){if(u.method!=="HEAD"&&o&&a!==parseInt(o,10))return De.destroy(r,new CPe),-1;if(u.onComplete(i),t[ii][t[Ds]++]=null,r[Ga])return Be(t[Xr]===0),De.destroy(r,new YA("reset")),$i.ERROR.PAUSED;if(c){if(r[Nn]&&t[Xr]===0)return De.destroy(r,new YA("reset")),$i.ERROR.PAUSED;t[aI]==null||t[aI]===1?setImmediate(()=>t[$a]()):t[$a]()}else return De.destroy(r,new YA("reset")),$i.ERROR.PAUSED}}};function sX(e){let{socket:t,timeoutType:r,client:n,paused:s}=e.deref();r===GA?(!t[Ga]||t.writableNeedDrain||n[Xr]>1)&&(Be(!s,"cannot be paused while waiting for headers"),De.destroy(t,new yPe)):r===cI?s||De.destroy(t,new bPe):r===lR&&(Be(n[Xr]===0&&n[lI]),De.destroy(t,new YA("socket idle timeout")))}async function UPe(e,t){e[$A]=t,oR||(oR=await uR,uR=null),t[I0]=!1,t[Ga]=!1,t[Nn]=!1,t[B0]=!1,t[$t]=new AR(e,t,oR),iI(t,"error",function(n){Be(n.code!=="ERR_TLS_CERT_ALTNAME_INVALID");let s=this[$t];if(n.code==="ECONNRESET"&&s.statusCode&&!s.shouldKeepAlive){s.onMessageComplete();return}this[Ns]=n,this[aR][FPe](n)}),iI(t,"readable",function(){let n=this[$t];n&&n.readMore()}),iI(t,"end",function(){let n=this[$t];if(n.statusCode&&!n.shouldKeepAlive){n.onMessageComplete();return}De.destroy(this,new uI("other side closed",De.getSocketInfo(this)))}),iI(t,"close",function(){let n=this[aR],s=this[$t];s&&(!this[Ns]&&s.statusCode&&!s.shouldKeepAlive&&s.onMessageComplete(),this[$t].destroy(),this[$t]=null);let i=this[Ns]||new uI("closed",De.getSocketInfo(this));if(n[$A]=null,n[uX]=null,n.destroyed){Be(n[vPe]===0);let o=n[ii].splice(n[Ds]);for(let a=0;a0&&i.code!=="UND_ERR_INFO"){let o=n[ii][n[Ds]];n[ii][n[Ds]++]=null,De.errorRequest(n,o,i)}n[wPe]=n[Ds],Be(n[Xr]===0),n.emit("disconnect",n[cX],[n],i),n[$a]()});let r=!1;return t.on("close",()=>{r=!0}),{version:"h1",defaultPipelining:1,write(...n){return VPe(e,...n)},resume(){HPe(e)},destroy(n,s){r?queueMicrotask(s):t.destroy(n).on("close",s)},get destroyed(){return t.destroyed},busy(n){return!!(t[Ga]||t[Nn]||t[B0]||n&&(e[Xr]>0&&!n.idempotent||e[Xr]>0&&(n.upgrade||n.method==="CONNECT")||e[Xr]>0&&De.bodyLength(n.body)!==0&&(De.isStream(n.body)||De.isAsyncIterable(n.body)||De.isFormDataLike(n.body))))}}}function HPe(e){let t=e[$A];if(t&&!t.destroyed){if(e[rX]===0?!t[I0]&&t.unref&&(t.unref(),t[I0]=!0):t[I0]&&t.ref&&(t.ref(),t[I0]=!1),e[rX]===0)t[$t].timeoutType!==lR&&t[$t].setTimeout(e[lI],lR);else if(e[Xr]>0&&t[$t].statusCode<200&&t[$t].timeoutType!==GA){let r=e[ii][e[Ds]],n=r.headersTimeout!=null?r.headersTimeout:e[RPe];t[$t].setTimeout(n,GA)}}}function qPe(e){return e!=="GET"&&e!=="HEAD"&&e!=="OPTIONS"&&e!=="TRACE"&&e!=="CONNECT"}function VPe(e,t){let{method:r,path:n,host:s,upgrade:i,blocking:o,reset:a}=t,{body:c,headers:u,contentLength:l}=t,A=r==="PUT"||r==="POST"||r==="PATCH"||r==="QUERY"||r==="PROPFIND"||r==="PROPPATCH";if(De.isFormDataLike(c)){iR||(iR=VA().extractBody);let[C,m]=iR(c);t.contentType==null&&u.push("content-type",m),c=C.stream,l=C.length}else De.isBlobLike(c)&&t.contentType==null&&c.type&&u.push("content-type",c.type);c&&typeof c.read=="function"&&c.read(0);let f=De.bodyLength(c);if(l=f??l,l===null&&(l=t.contentLength),l===0&&!A&&(l=null),qPe(r)&&l>0&&t.contentLength!==null&&t.contentLength!==l){if(e[cR])return De.errorRequest(e,t,new mu),!1;process.emitWarning(new mu)}let d=e[$A],h=C=>{t.aborted||t.completed||(De.errorRequest(e,t,C||new aX),De.destroy(c),De.destroy(d,new YA("aborted")))};try{t.onConnect(h)}catch(C){De.errorRequest(e,t,C)}if(t.aborted)return!1;r==="HEAD"&&(d[Nn]=!0),(i||r==="CONNECT")&&(d[Nn]=!0),a!=null&&(d[Nn]=a),e[nX]&&d[NPe]++>=e[nX]&&(d[Nn]=!0),o&&(d[B0]=!0);let p=`${r} ${n} HTTP/1.1\r +`;if(typeof s=="string"?p+=`host: ${s}\r +`:p+=e[TPe],i?p+=`connection: upgrade\r +upgrade: ${i}\r +`:e[aI]&&!d[Nn]?p+=`connection: keep-alive\r +`:p+=`connection: close\r +`,Array.isArray(u))for(let C=0;C{t.removeListener("error",d)}),!c){let h=new aX;queueMicrotask(()=>d(h))}},d=function(h){if(!c){if(c=!0,Be(s.destroyed||s[Ga]&&r[Xr]<=1),s.off("drain",A).off("error",d),t.removeListener("data",l).removeListener("end",d).removeListener("close",f),!h)try{u.end()}catch(p){h=p}u.destroy(h),h&&(h.code!=="UND_ERR_INFO"||h.message!=="reset")?De.destroy(t,h):De.destroy(t)}};t.on("data",l).on("end",d).on("error",d).on("close",f),t.resume&&t.resume(),s.on("drain",A).on("error",d),t.errorEmitted??t.errored?setImmediate(()=>d(t.errored)):(t.endEmitted??t.readableEnded)&&setImmediate(()=>d(null)),(t.closeEmitted??t.closed)&&setImmediate(f)}function iX(e,t,r,n,s,i,o,a){try{t?De.isBuffer(t)&&(Be(i===t.byteLength,"buffer body must have content length"),s.cork(),s.write(`${o}content-length: ${i}\r +\r +`,"latin1"),s.write(t),s.uncork(),n.onBodySent(t),!a&&n.reset!==!1&&(s[Nn]=!0)):i===0?s.write(`${o}content-length: 0\r +\r +`,"latin1"):(Be(i===null,"no body must not have content length"),s.write(`${o}\r +`,"latin1")),n.onRequestSent(),r[$a]()}catch(c){e(c)}}async function $Pe(e,t,r,n,s,i,o,a){Be(i===t.size,"blob body must have content length");try{if(i!=null&&i!==t.size)throw new mu;let c=Buffer.from(await t.arrayBuffer());s.cork(),s.write(`${o}content-length: ${i}\r +\r +`,"latin1"),s.write(c),s.uncork(),n.onBodySent(c),n.onRequestSent(),!a&&n.reset!==!1&&(s[Nn]=!0),r[$a]()}catch(c){e(c)}}async function oX(e,t,r,n,s,i,o,a){Be(i!==0||r[Xr]===0,"iterator body cannot be pipelined");let c=null;function u(){if(c){let f=c;c=null,f()}}let l=()=>new Promise((f,d)=>{Be(c===null),s[Ns]?d(s[Ns]):c=f});s.on("close",u).on("drain",u);let A=new AI({abort:e,socket:s,request:n,contentLength:i,client:r,expectsPayload:a,header:o});try{for await(let f of t){if(s[Ns])throw s[Ns];A.write(f)||await l()}A.end()}catch(f){A.destroy(f)}finally{s.off("close",u).off("drain",u)}}var AI=class{constructor({abort:t,socket:r,request:n,contentLength:s,client:i,expectsPayload:o,header:a}){this.socket=r,this.request=n,this.contentLength=s,this.client=i,this.bytesWritten=0,this.expectsPayload=o,this.header=a,this.abort=t,r[Ga]=!0}write(t){let{socket:r,request:n,contentLength:s,client:i,bytesWritten:o,expectsPayload:a,header:c}=this;if(r[Ns])throw r[Ns];if(r.destroyed)return!1;let u=Buffer.byteLength(t);if(!u)return!0;if(s!==null&&o+u>s){if(i[cR])throw new mu;process.emitWarning(new mu)}r.cork(),o===0&&(!a&&n.reset!==!1&&(r[Nn]=!0),s===null?r.write(`${c}transfer-encoding: chunked\r +`,"latin1"):r.write(`${c}content-length: ${s}\r +\r +`,"latin1")),s===null&&r.write(`\r +${u.toString(16)}\r +`,"latin1"),this.bytesWritten+=u;let l=r.write(t);return r.uncork(),n.onBodySent(t),l||r[$t].timeout&&r[$t].timeoutType===GA&&r[$t].timeout.refresh&&r[$t].timeout.refresh(),l}end(){let{socket:t,contentLength:r,client:n,bytesWritten:s,expectsPayload:i,header:o,request:a}=this;if(a.onRequestSent(),t[Ga]=!1,t[Ns])throw t[Ns];if(!t.destroyed){if(s===0?i?t.write(`${o}content-length: 0\r +\r +`,"latin1"):t.write(`${o}\r +`,"latin1"):r===null&&t.write(`\r +0\r +\r +`,"latin1"),r!==null&&s!==r){if(n[cR])throw new mu;process.emitWarning(new mu)}t[$t].timeout&&t[$t].timeoutType===GA&&t[$t].timeout.refresh&&t[$t].timeout.refresh(),n[$a]()}}destroy(t){let{socket:r,client:n,abort:s}=this;r[Ga]=!1,t&&(Be(n[Xr]<=1,"pipeline should only contain this request"),s(t))}};lX.exports=UPe});var CX=b((Qlt,EX)=>{"use strict";var ks=require("node:assert"),{pipeline:GPe}=require("node:stream"),ze=Ve(),{RequestContentLengthMismatchError:fR,RequestAbortedError:fX,SocketError:x0,InformationalError:dR}=ht(),{kUrl:fI,kReset:hI,kClient:jA,kRunning:pI,kPending:jPe,kQueue:ja,kPendingIdx:hR,kRunningIdx:oi,kError:ci,kSocket:xr,kStrictContentLength:JPe,kOnError:pR,kMaxConcurrentStreams:mX,kHTTP2Session:ai,kResume:Ja,kSize:WPe,kHTTPContext:zPe}=Ot(),Uo=Symbol("open streams"),dX,hX=!1,dI;try{dI=require("node:http2")}catch{dI={constants:{}}}var{constants:{HTTP2_HEADER_AUTHORITY:XPe,HTTP2_HEADER_METHOD:KPe,HTTP2_HEADER_PATH:ZPe,HTTP2_HEADER_SCHEME:e6e,HTTP2_HEADER_CONTENT_LENGTH:t6e,HTTP2_HEADER_EXPECT:r6e,HTTP2_HEADER_STATUS:n6e}}=dI;function s6e(e){let t=[];for(let[r,n]of Object.entries(e))if(Array.isArray(n))for(let s of n)t.push(Buffer.from(r),Buffer.from(s));else t.push(Buffer.from(r),Buffer.from(n));return t}async function i6e(e,t){e[xr]=t,hX||(hX=!0,process.emitWarning("H2 support is experimental, expect them to change at any time.",{code:"UNDICI-H2"}));let r=dI.connect(e[fI],{createConnection:()=>t,peerMaxConcurrentStreams:e[mX]});r[Uo]=0,r[jA]=e,r[xr]=t,ze.addListener(r,"error",a6e),ze.addListener(r,"frameError",c6e),ze.addListener(r,"end",u6e),ze.addListener(r,"goaway",l6e),ze.addListener(r,"close",function(){let{[jA]:s}=this,{[xr]:i}=s,o=this[xr][ci]||this[ci]||new x0("closed",ze.getSocketInfo(i));if(s[ai]=null,s.destroyed){ks(s[jPe]===0);let a=s[ja].splice(s[oi]);for(let c=0;c{n=!0}),{version:"h2",defaultPipelining:1/0,write(...s){return f6e(e,...s)},resume(){o6e(e)},destroy(s,i){n?queueMicrotask(i):t.destroy(s).on("close",i)},get destroyed(){return t.destroyed},busy(){return!1}}}function o6e(e){let t=e[xr];t?.destroyed===!1&&(e[WPe]===0&&e[mX]===0?(t.unref(),e[ai].unref()):(t.ref(),e[ai].ref()))}function a6e(e){ks(e.code!=="ERR_TLS_CERT_ALTNAME_INVALID"),this[xr][ci]=e,this[jA][pR](e)}function c6e(e,t,r){if(r===0){let n=new dR(`HTTP/2: "frameError" received - type ${e}, code ${t}`);this[xr][ci]=n,this[jA][pR](n)}}function u6e(){let e=new x0("other side closed",ze.getSocketInfo(this[xr]));this.destroy(e),ze.destroy(this[xr],e)}function l6e(e){let t=this[ci]||new x0(`HTTP/2: "GOAWAY" frame received with code ${e}`,ze.getSocketInfo(this)),r=this[jA];if(r[xr]=null,r[zPe]=null,this[ai]!=null&&(this[ai].destroy(t),this[ai]=null),ze.destroy(this[xr],t),r[oi]{t.aborted||t.completed||(E=E||new fX,ze.errorRequest(e,t,E),f!=null&&ze.destroy(f,E),ze.destroy(l,E),e[ja][e[oi]++]=null,e[Ja]())};try{t.onConnect(p)}catch(E){ze.errorRequest(e,t,E)}if(t.aborted)return!1;if(n==="CONNECT")return r.ref(),f=r.request(A,{endStream:!1,signal:c}),f.id&&!f.pending?(t.onUpgrade(null,null,f),++r[Uo],e[ja][e[oi]++]=null):f.once("ready",()=>{t.onUpgrade(null,null,f),++r[Uo],e[ja][e[oi]++]=null}),f.once("close",()=>{r[Uo]-=1,r[Uo]===0&&r.unref()}),!0;A[ZPe]=s,A[e6e]="https";let C=n==="PUT"||n==="POST"||n==="PATCH";l&&typeof l.read=="function"&&l.read(0);let m=ze.bodyLength(l);if(ze.isFormDataLike(l)){dX??=VA().extractBody;let[E,B]=dX(l);A["content-type"]=B,l=E.stream,m=E.length}if(m==null&&(m=t.contentLength),(m===0||!C)&&(m=null),A6e(n)&&m>0&&t.contentLength!=null&&t.contentLength!==m){if(e[JPe])return ze.errorRequest(e,t,new fR),!1;process.emitWarning(new fR)}m!=null&&(ks(l,"no body must not have content length"),A[t6e]=`${m}`),r.ref();let I=n==="GET"||n==="HEAD"||l===null;return a?(A[r6e]="100-continue",f=r.request(A,{endStream:I,signal:c}),f.once("continue",y)):(f=r.request(A,{endStream:I,signal:c}),y()),++r[Uo],f.once("response",E=>{let{[n6e]:B,...v}=E;if(t.onResponseStarted(),t.aborted){let x=new fX;ze.errorRequest(e,t,x),ze.destroy(f,x);return}t.onHeaders(Number(B),s6e(v),f.resume.bind(f),"")===!1&&f.pause(),f.on("data",x=>{t.onData(x)===!1&&f.pause()})}),f.once("end",()=>{(f.state?.state==null||f.state.state<6)&&t.onComplete([]),r[Uo]===0&&r.unref(),p(new dR("HTTP/2: stream half-closed (remote)")),e[ja][e[oi]++]=null,e[hR]=e[oi],e[Ja]()}),f.once("close",()=>{r[Uo]-=1,r[Uo]===0&&r.unref()}),f.once("error",function(E){p(E)}),f.once("frameError",(E,B)=>{p(new dR(`HTTP/2: "frameError" received - type ${E}, code ${B}`))}),!0;function y(){!l||m===0?pX(p,f,null,e,t,e[xr],m,C):ze.isBuffer(l)?pX(p,f,l,e,t,e[xr],m,C):ze.isBlobLike(l)?typeof l.stream=="function"?gX(p,f,l.stream(),e,t,e[xr],m,C):h6e(p,f,l,e,t,e[xr],m,C):ze.isStream(l)?d6e(p,e[xr],C,f,l,e,t,m):ze.isIterable(l)?gX(p,f,l,e,t,e[xr],m,C):ks(!1)}}function pX(e,t,r,n,s,i,o,a){try{r!=null&&ze.isBuffer(r)&&(ks(o===r.byteLength,"buffer body must have content length"),t.cork(),t.write(r),t.uncork(),t.end(),s.onBodySent(r)),a||(i[hI]=!0),s.onRequestSent(),n[Ja]()}catch(c){e(c)}}function d6e(e,t,r,n,s,i,o,a){ks(a!==0||i[pI]===0,"stream body cannot be pipelined");let c=GPe(s,n,l=>{l?(ze.destroy(c,l),e(l)):(ze.removeAllListeners(c),o.onRequestSent(),r||(t[hI]=!0),i[Ja]())});ze.addListener(c,"data",u);function u(l){o.onBodySent(l)}}async function h6e(e,t,r,n,s,i,o,a){ks(o===r.size,"blob body must have content length");try{if(o!=null&&o!==r.size)throw new fR;let c=Buffer.from(await r.arrayBuffer());t.cork(),t.write(c),t.uncork(),t.end(),s.onBodySent(c),s.onRequestSent(),a||(i[hI]=!0),n[Ja]()}catch(c){e(c)}}async function gX(e,t,r,n,s,i,o,a){ks(o!==0||n[pI]===0,"iterator body cannot be pipelined");let c=null;function u(){if(c){let A=c;c=null,A()}}let l=()=>new Promise((A,f)=>{ks(c===null),i[ci]?f(i[ci]):c=A});t.on("close",u).on("drain",u);try{for await(let A of r){if(i[ci])throw i[ci];let f=t.write(A);s.onBodySent(A),f||await l()}t.end(),s.onRequestSent(),a||(i[hI]=!0),n[Ja]()}catch(A){e(A)}finally{t.off("close",u).off("drain",u)}}EX.exports=i6e});var mI=b((Tlt,bX)=>{"use strict";var Ji=Ve(),{kBodyUsed:v0}=Ot(),mR=require("node:assert"),{InvalidArgumentError:p6e}=ht(),g6e=require("node:events"),m6e=[300,301,302,303,307,308],yX=Symbol("body"),gI=class{constructor(t){this[yX]=t,this[v0]=!1}async*[Symbol.asyncIterator](){mR(!this[v0],"disturbed"),this[v0]=!0,yield*this[yX]}},gR=class{constructor(t,r,n,s){if(r!=null&&(!Number.isInteger(r)||r<0))throw new p6e("maxRedirections must be a positive number");Ji.validateHandler(s,n.method,n.upgrade),this.dispatch=t,this.location=null,this.abort=null,this.opts={...n,maxRedirections:0},this.maxRedirections=r,this.handler=s,this.history=[],this.redirectionLimitReached=!1,Ji.isStream(this.opts.body)?(Ji.bodyLength(this.opts.body)===0&&this.opts.body.on("data",function(){mR(!1)}),typeof this.opts.body.readableDidRead!="boolean"&&(this.opts.body[v0]=!1,g6e.prototype.on.call(this.opts.body,"data",function(){this[v0]=!0}))):this.opts.body&&typeof this.opts.body.pipeTo=="function"?this.opts.body=new gI(this.opts.body):this.opts.body&&typeof this.opts.body!="string"&&!ArrayBuffer.isView(this.opts.body)&&Ji.isIterable(this.opts.body)&&(this.opts.body=new gI(this.opts.body))}onConnect(t){this.abort=t,this.handler.onConnect(t,{history:this.history})}onUpgrade(t,r,n){this.handler.onUpgrade(t,r,n)}onError(t){this.handler.onError(t)}onHeaders(t,r,n,s){if(this.location=this.history.length>=this.maxRedirections||Ji.isDisturbed(this.opts.body)?null:E6e(t,r),this.opts.throwOnMaxRedirect&&this.history.length>=this.maxRedirections){this.request&&this.request.abort(new Error("max redirects")),this.redirectionLimitReached=!0,this.abort(new Error("max redirects"));return}if(this.opts.origin&&this.history.push(new URL(this.opts.path,this.opts.origin)),!this.location)return this.handler.onHeaders(t,r,n,s);let{origin:i,pathname:o,search:a}=Ji.parseURL(new URL(this.location,this.opts.origin&&new URL(this.opts.path,this.opts.origin))),c=a?`${o}${a}`:o;this.opts.headers=C6e(this.opts.headers,t===303,this.opts.origin!==i),this.opts.path=c,this.opts.origin=i,this.opts.maxRedirections=0,this.opts.query=null,t===303&&this.opts.method!=="HEAD"&&(this.opts.method="GET",this.opts.body=null)}onData(t){if(!this.location)return this.handler.onData(t)}onComplete(t){this.location?(this.location=null,this.abort=null,this.dispatch(this.opts,this)):this.handler.onComplete(t)}onBodySent(t){this.handler.onBodySent&&this.handler.onBodySent(t)}};function E6e(e,t){if(m6e.indexOf(e)===-1)return null;for(let r=0;r{"use strict";var y6e=mI();function I6e({maxRedirections:e}){return t=>function(n,s){let{maxRedirections:i=e}=n;if(!i)return t(n,s);let o=new y6e(t,i,n,s);return n={...n,maxRedirections:0},t(n,o)}}BX.exports=I6e});var D0=b((Slt,NX)=>{"use strict";var Ho=require("node:assert"),SX=require("node:net"),b6e=require("node:http"),Eu=Ve(),{channels:JA}=_A(),B6e=UW(),x6e=kA(),{InvalidArgumentError:tr,InformationalError:v6e,ClientDestroyedError:Q6e}=ht(),T6e=f0(),{kUrl:Wi,kServerName:Wa,kClient:w6e,kBusy:ER,kConnect:S6e,kResuming:Cu,kRunning:_0,kPending:R0,kSize:S0,kQueue:ui,kConnected:_6e,kConnecting:WA,kNeedDrain:Xa,kKeepAliveDefaultTimeout:xX,kHostHeader:R6e,kPendingIdx:li,kRunningIdx:qo,kError:D6e,kPipelining:CI,kKeepAliveTimeoutValue:N6e,kMaxHeadersSize:k6e,kKeepAliveMaxTimeout:F6e,kKeepAliveTimeoutThreshold:L6e,kHeadersTimeout:O6e,kBodyTimeout:M6e,kStrictContentLength:P6e,kConnector:Q0,kMaxRedirections:U6e,kMaxRequests:CR,kCounter:H6e,kClose:q6e,kDestroy:V6e,kDispatch:Y6e,kInterceptors:vX,kLocalAddress:T0,kMaxResponseSize:$6e,kOnError:G6e,kHTTPContext:rr,kMaxConcurrentStreams:j6e,kResume:w0}=Ot(),J6e=AX(),W6e=CX(),QX=!1,za=Symbol("kClosedResolve"),TX=()=>{};function _X(e){return e[CI]??e[rr]?.defaultPipelining??1}var yR=class extends x6e{constructor(t,{interceptors:r,maxHeaderSize:n,headersTimeout:s,socketTimeout:i,requestTimeout:o,connectTimeout:a,bodyTimeout:c,idleTimeout:u,keepAlive:l,keepAliveTimeout:A,maxKeepAliveTimeout:f,keepAliveMaxTimeout:d,keepAliveTimeoutThreshold:h,socketPath:p,pipelining:C,tls:m,strictContentLength:I,maxCachedSessions:y,maxRedirections:E,connect:B,maxRequestsPerClient:v,localAddress:x,maxResponseSize:Q,autoSelectFamily:S,autoSelectFamilyAttemptTimeout:T,maxConcurrentStreams:R,allowH2:D}={}){if(super(),l!==void 0)throw new tr("unsupported keepAlive, use pipelining=0 instead");if(i!==void 0)throw new tr("unsupported socketTimeout, use headersTimeout & bodyTimeout instead");if(o!==void 0)throw new tr("unsupported requestTimeout, use headersTimeout & bodyTimeout instead");if(u!==void 0)throw new tr("unsupported idleTimeout, use keepAliveTimeout instead");if(f!==void 0)throw new tr("unsupported maxKeepAliveTimeout, use keepAliveMaxTimeout instead");if(n!=null&&!Number.isFinite(n))throw new tr("invalid maxHeaderSize");if(p!=null&&typeof p!="string")throw new tr("invalid socketPath");if(a!=null&&(!Number.isFinite(a)||a<0))throw new tr("invalid connectTimeout");if(A!=null&&(!Number.isFinite(A)||A<=0))throw new tr("invalid keepAliveTimeout");if(d!=null&&(!Number.isFinite(d)||d<=0))throw new tr("invalid keepAliveMaxTimeout");if(h!=null&&!Number.isFinite(h))throw new tr("invalid keepAliveTimeoutThreshold");if(s!=null&&(!Number.isInteger(s)||s<0))throw new tr("headersTimeout must be a positive integer or zero");if(c!=null&&(!Number.isInteger(c)||c<0))throw new tr("bodyTimeout must be a positive integer or zero");if(B!=null&&typeof B!="function"&&typeof B!="object")throw new tr("connect must be a function or an object");if(E!=null&&(!Number.isInteger(E)||E<0))throw new tr("maxRedirections must be a positive number");if(v!=null&&(!Number.isInteger(v)||v<0))throw new tr("maxRequestsPerClient must be a positive number");if(x!=null&&(typeof x!="string"||SX.isIP(x)===0))throw new tr("localAddress must be valid string IP address");if(Q!=null&&(!Number.isInteger(Q)||Q<-1))throw new tr("maxResponseSize must be a positive number");if(T!=null&&(!Number.isInteger(T)||T<-1))throw new tr("autoSelectFamilyAttemptTimeout must be a positive number");if(D!=null&&typeof D!="boolean")throw new tr("allowH2 must be a valid boolean value");if(R!=null&&(typeof R!="number"||R<1))throw new tr("maxConcurrentStreams must be a positive integer, greater than 0");typeof B!="function"&&(B=T6e({...m,maxCachedSessions:y,allowH2:D,socketPath:p,timeout:a,...S?{autoSelectFamily:S,autoSelectFamilyAttemptTimeout:T}:void 0,...B})),r?.Client&&Array.isArray(r.Client)?(this[vX]=r.Client,QX||(QX=!0,process.emitWarning("Client.Options#interceptor is deprecated. Use Dispatcher#compose instead.",{code:"UNDICI-CLIENT-INTERCEPTOR-DEPRECATED"}))):this[vX]=[z6e({maxRedirections:E})],this[Wi]=Eu.parseOrigin(t),this[Q0]=B,this[CI]=C??1,this[k6e]=n||b6e.maxHeaderSize,this[xX]=A??4e3,this[F6e]=d??6e5,this[L6e]=h??2e3,this[N6e]=this[xX],this[Wa]=null,this[T0]=x??null,this[Cu]=0,this[Xa]=0,this[R6e]=`host: ${this[Wi].hostname}${this[Wi].port?`:${this[Wi].port}`:""}\r +`,this[M6e]=c??3e5,this[O6e]=s??3e5,this[P6e]=I??!0,this[U6e]=E,this[CR]=v,this[za]=null,this[$6e]=Q>-1?Q:-1,this[j6e]=R??100,this[rr]=null,this[ui]=[],this[qo]=0,this[li]=0,this[w0]=k=>IR(this,k),this[G6e]=k=>RX(this,k)}get pipelining(){return this[CI]}set pipelining(t){this[CI]=t,this[w0](!0)}get[R0](){return this[ui].length-this[li]}get[_0](){return this[li]-this[qo]}get[S0](){return this[ui].length-this[qo]}get[_6e](){return!!this[rr]&&!this[WA]&&!this[rr].destroyed}get[ER](){return!!(this[rr]?.busy(null)||this[S0]>=(_X(this)||1)||this[R0]>0)}[S6e](t){DX(this),this.once("connect",t)}[Y6e](t,r){let n=t.origin||this[Wi].origin,s=new B6e(n,t,r);return this[ui].push(s),this[Cu]||(Eu.bodyLength(s.body)==null&&Eu.isIterable(s.body)?(this[Cu]=1,queueMicrotask(()=>IR(this))):this[w0](!0)),this[Cu]&&this[Xa]!==2&&this[ER]&&(this[Xa]=2),this[Xa]<2}async[q6e](){return new Promise(t=>{this[S0]?this[za]=t:t(null)})}async[V6e](t){return new Promise(r=>{let n=this[ui].splice(this[li]);for(let i=0;i{this[za]&&(this[za](),this[za]=null),r(null)};this[rr]?(this[rr].destroy(t,s),this[rr]=null):queueMicrotask(s),this[w0]()})}},z6e=EI();function RX(e,t){if(e[_0]===0&&t.code!=="UND_ERR_INFO"&&t.code!=="UND_ERR_SOCKET"){Ho(e[li]===e[qo]);let r=e[ui].splice(e[qo]);for(let n=0;n{e[Q0]({host:t,hostname:r,protocol:n,port:s,servername:e[Wa],localAddress:e[T0]},(c,u)=>{c?a(c):o(u)})});if(e.destroyed){Eu.destroy(i.on("error",TX),new Q6e);return}Ho(i);try{e[rr]=i.alpnProtocol==="h2"?await W6e(e,i):await J6e(e,i)}catch(o){throw i.destroy().on("error",TX),o}e[WA]=!1,i[H6e]=0,i[CR]=e[CR],i[w6e]=e,i[D6e]=null,JA.connected.hasSubscribers&&JA.connected.publish({connectParams:{host:t,hostname:r,protocol:n,port:s,version:e[rr]?.version,servername:e[Wa],localAddress:e[T0]},connector:e[Q0],socket:i}),e.emit("connect",e[Wi],[e])}catch(i){if(e.destroyed)return;if(e[WA]=!1,JA.connectError.hasSubscribers&&JA.connectError.publish({connectParams:{host:t,hostname:r,protocol:n,port:s,version:e[rr]?.version,servername:e[Wa],localAddress:e[T0]},connector:e[Q0],error:i}),i.code==="ERR_TLS_CERT_ALTNAME_INVALID")for(Ho(e[_0]===0);e[R0]>0&&e[ui][e[li]].servername===e[Wa];){let o=e[ui][e[li]++];Eu.errorRequest(e,o,i)}else RX(e,i);e.emit("connectionError",e[Wi],[e],i)}e[w0]()}function wX(e){e[Xa]=0,e.emit("drain",e[Wi],[e])}function IR(e,t){e[Cu]!==2&&(e[Cu]=2,X6e(e,t),e[Cu]=0,e[qo]>256&&(e[ui].splice(0,e[qo]),e[li]-=e[qo],e[qo]=0))}function X6e(e,t){for(;;){if(e.destroyed){Ho(e[R0]===0);return}if(e[za]&&!e[S0]){e[za](),e[za]=null;return}if(e[rr]&&e[rr].resume(),e[ER])e[Xa]=2;else if(e[Xa]===2){t?(e[Xa]=1,queueMicrotask(()=>wX(e))):wX(e);continue}if(e[R0]===0||e[_0]>=(_X(e)||1))return;let r=e[ui][e[li]];if(e[Wi].protocol==="https:"&&e[Wa]!==r.servername){if(e[_0]>0)return;e[Wa]=r.servername,e[rr]?.destroy(new v6e("servername changed"),()=>{e[rr]=null,IR(e)})}if(e[WA])return;if(!e[rr]){DX(e);return}if(e[rr].destroyed||e[rr].busy(r))return;!r.aborted&&e[rr].write(r)?e[li]++:e[ui].splice(e[li],1)}}NX.exports=yR});var bR=b((Rlt,kX)=>{"use strict";var yI=class{constructor(){this.bottom=0,this.top=0,this.list=new Array(2048),this.next=null}isEmpty(){return this.top===this.bottom}isFull(){return(this.top+1&2047)===this.bottom}push(t){this.list[this.top]=t,this.top=this.top+1&2047}shift(){let t=this.list[this.bottom];return t===void 0?null:(this.list[this.bottom]=void 0,this.bottom=this.bottom+1&2047,t)}};kX.exports=class{constructor(){this.head=this.tail=new yI}isEmpty(){return this.head.isEmpty()}push(t){this.head.isFull()&&(this.head=this.head.next=new yI),this.head.push(t)}shift(){let t=this.tail,r=t.shift();return t.isEmpty()&&t.next!==null&&(this.tail=t.next),r}}});var LX=b((Dlt,FX)=>{var{kFree:K6e,kConnected:Z6e,kPending:e5e,kQueued:t5e,kRunning:r5e,kSize:n5e}=Ot(),yu=Symbol("pool"),BR=class{constructor(t){this[yu]=t}get connected(){return this[yu][Z6e]}get free(){return this[yu][K6e]}get pending(){return this[yu][e5e]}get queued(){return this[yu][t5e]}get running(){return this[yu][r5e]}get size(){return this[yu][n5e]}};FX.exports=BR});var SR=b((Nlt,GX)=>{"use strict";var s5e=kA(),i5e=bR(),{kConnected:xR,kSize:OX,kRunning:MX,kPending:PX,kQueued:N0,kBusy:o5e,kFree:a5e,kUrl:c5e,kClose:u5e,kDestroy:l5e,kDispatch:A5e}=Ot(),f5e=LX(),kn=Symbol("clients"),dn=Symbol("needDrain"),k0=Symbol("queue"),vR=Symbol("closed resolve"),QR=Symbol("onDrain"),UX=Symbol("onConnect"),HX=Symbol("onDisconnect"),qX=Symbol("onConnectionError"),TR=Symbol("get dispatcher"),YX=Symbol("add client"),$X=Symbol("remove client"),VX=Symbol("stats"),wR=class extends s5e{constructor(){super(),this[k0]=new i5e,this[kn]=[],this[N0]=0;let t=this;this[QR]=function(n,s){let i=t[k0],o=!1;for(;!o;){let a=i.shift();if(!a)break;t[N0]--,o=!this.dispatch(a.opts,a.handler)}this[dn]=o,!this[dn]&&t[dn]&&(t[dn]=!1,t.emit("drain",n,[t,...s])),t[vR]&&i.isEmpty()&&Promise.all(t[kn].map(a=>a.close())).then(t[vR])},this[UX]=(r,n)=>{t.emit("connect",r,[t,...n])},this[HX]=(r,n,s)=>{t.emit("disconnect",r,[t,...n],s)},this[qX]=(r,n,s)=>{t.emit("connectionError",r,[t,...n],s)},this[VX]=new f5e(this)}get[o5e](){return this[dn]}get[xR](){return this[kn].filter(t=>t[xR]).length}get[a5e](){return this[kn].filter(t=>t[xR]&&!t[dn]).length}get[PX](){let t=this[N0];for(let{[PX]:r}of this[kn])t+=r;return t}get[MX](){let t=0;for(let{[MX]:r}of this[kn])t+=r;return t}get[OX](){let t=this[N0];for(let{[OX]:r}of this[kn])t+=r;return t}get stats(){return this[VX]}async[u5e](){this[k0].isEmpty()?await Promise.all(this[kn].map(t=>t.close())):await new Promise(t=>{this[vR]=t})}async[l5e](t){for(;;){let r=this[k0].shift();if(!r)break;r.handler.onError(t)}await Promise.all(this[kn].map(r=>r.destroy(t)))}[A5e](t,r){let n=this[TR]();return n?n.dispatch(t,r)||(n[dn]=!0,this[dn]=!this[TR]()):(this[dn]=!0,this[k0].push({opts:t,handler:r}),this[N0]++),!this[dn]}[YX](t){return t.on("drain",this[QR]).on("connect",this[UX]).on("disconnect",this[HX]).on("connectionError",this[qX]),this[kn].push(t),this[dn]&&queueMicrotask(()=>{this[dn]&&this[QR](t[c5e],[this,t])}),this}[$X](t){t.close(()=>{let r=this[kn].indexOf(t);r!==-1&&this[kn].splice(r,1)}),this[dn]=this[kn].some(r=>!r[dn]&&r.closed!==!0&&r.destroyed!==!0)}};GX.exports={PoolBase:wR,kClients:kn,kNeedDrain:dn,kAddClient:YX,kRemoveClient:$X,kGetDispatcher:TR}});var zA=b((klt,XX)=>{"use strict";var{PoolBase:d5e,kClients:jX,kNeedDrain:h5e,kAddClient:p5e,kGetDispatcher:g5e}=SR(),m5e=D0(),{InvalidArgumentError:_R}=ht(),JX=Ve(),{kUrl:WX,kInterceptors:E5e}=Ot(),C5e=f0(),RR=Symbol("options"),DR=Symbol("connections"),zX=Symbol("factory");function y5e(e,t){return new m5e(e,t)}var NR=class extends d5e{constructor(t,{connections:r,factory:n=y5e,connect:s,connectTimeout:i,tls:o,maxCachedSessions:a,socketPath:c,autoSelectFamily:u,autoSelectFamilyAttemptTimeout:l,allowH2:A,...f}={}){if(super(),r!=null&&(!Number.isFinite(r)||r<0))throw new _R("invalid connections");if(typeof n!="function")throw new _R("factory must be a function.");if(s!=null&&typeof s!="function"&&typeof s!="object")throw new _R("connect must be a function or an object");typeof s!="function"&&(s=C5e({...o,maxCachedSessions:a,allowH2:A,socketPath:c,timeout:i,...u?{autoSelectFamily:u,autoSelectFamilyAttemptTimeout:l}:void 0,...s})),this[E5e]=f.interceptors?.Pool&&Array.isArray(f.interceptors.Pool)?f.interceptors.Pool:[],this[DR]=r||null,this[WX]=JX.parseOrigin(t),this[RR]={...JX.deepClone(f),connect:s,allowH2:A},this[RR].interceptors=f.interceptors?{...f.interceptors}:void 0,this[zX]=n}[g5e](){for(let t of this[jX])if(!t[h5e])return t;if(!this[DR]||this[jX].length{"use strict";var{BalancedPoolMissingUpstreamError:I5e,InvalidArgumentError:b5e}=ht(),{PoolBase:B5e,kClients:Kr,kNeedDrain:F0,kAddClient:x5e,kRemoveClient:v5e,kGetDispatcher:Q5e}=SR(),T5e=zA(),{kUrl:kR,kInterceptors:w5e}=Ot(),{parseOrigin:KX}=Ve(),ZX=Symbol("factory"),II=Symbol("options"),eK=Symbol("kGreatestCommonDivisor"),Iu=Symbol("kCurrentWeight"),bu=Symbol("kIndex"),Fs=Symbol("kWeight"),bI=Symbol("kMaxWeightPerServer"),BI=Symbol("kErrorPenalty");function S5e(e,t){if(e===0)return t;for(;t!==0;){let r=t;t=e%t,e=r}return e}function _5e(e,t){return new T5e(e,t)}var FR=class extends B5e{constructor(t=[],{factory:r=_5e,...n}={}){if(super(),this[II]=n,this[bu]=-1,this[Iu]=0,this[bI]=this[II].maxWeightPerServer||100,this[BI]=this[II].errorPenalty||15,Array.isArray(t)||(t=[t]),typeof r!="function")throw new b5e("factory must be a function.");this[w5e]=n.interceptors?.BalancedPool&&Array.isArray(n.interceptors.BalancedPool)?n.interceptors.BalancedPool:[],this[ZX]=r;for(let s of t)this.addUpstream(s);this._updateBalancedPoolStats()}addUpstream(t){let r=KX(t).origin;if(this[Kr].find(s=>s[kR].origin===r&&s.closed!==!0&&s.destroyed!==!0))return this;let n=this[ZX](r,Object.assign({},this[II]));this[x5e](n),n.on("connect",()=>{n[Fs]=Math.min(this[bI],n[Fs]+this[BI])}),n.on("connectionError",()=>{n[Fs]=Math.max(1,n[Fs]-this[BI]),this._updateBalancedPoolStats()}),n.on("disconnect",(...s)=>{let i=s[2];i&&i.code==="UND_ERR_SOCKET"&&(n[Fs]=Math.max(1,n[Fs]-this[BI]),this._updateBalancedPoolStats())});for(let s of this[Kr])s[Fs]=this[bI];return this._updateBalancedPoolStats(),this}_updateBalancedPoolStats(){let t=0;for(let r=0;rs[kR].origin===r&&s.closed!==!0&&s.destroyed!==!0);return n&&this[v5e](n),this}get upstreams(){return this[Kr].filter(t=>t.closed!==!0&&t.destroyed!==!0).map(t=>t[kR].origin)}[Q5e](){if(this[Kr].length===0)throw new I5e;if(!this[Kr].find(i=>!i[F0]&&i.closed!==!0&&i.destroyed!==!0)||this[Kr].map(i=>i[F0]).reduce((i,o)=>i&&o,!0))return;let n=0,s=this[Kr].findIndex(i=>!i[F0]);for(;n++this[Kr][s][Fs]&&!i[F0]&&(s=this[bu]),this[bu]===0&&(this[Iu]=this[Iu]-this[eK],this[Iu]<=0&&(this[Iu]=this[bI])),i[Fs]>=this[Iu]&&!i[F0])return i}return this[Iu]=this[Kr][s][Fs],this[bu]=s,this[Kr][s]}};tK.exports=FR});var XA=b((Llt,uK)=>{"use strict";var{InvalidArgumentError:xI}=ht(),{kClients:Ka,kRunning:nK,kClose:R5e,kDestroy:D5e,kDispatch:N5e,kInterceptors:k5e}=Ot(),F5e=kA(),L5e=zA(),O5e=D0(),M5e=Ve(),P5e=EI(),sK=Symbol("onConnect"),iK=Symbol("onDisconnect"),oK=Symbol("onConnectionError"),U5e=Symbol("maxRedirections"),aK=Symbol("onDrain"),cK=Symbol("factory"),LR=Symbol("options");function H5e(e,t){return t&&t.connections===1?new O5e(e,t):new L5e(e,t)}var OR=class extends F5e{constructor({factory:t=H5e,maxRedirections:r=0,connect:n,...s}={}){if(super(),typeof t!="function")throw new xI("factory must be a function.");if(n!=null&&typeof n!="function"&&typeof n!="object")throw new xI("connect must be a function or an object");if(!Number.isInteger(r)||r<0)throw new xI("maxRedirections must be a positive number");n&&typeof n!="function"&&(n={...n}),this[k5e]=s.interceptors?.Agent&&Array.isArray(s.interceptors.Agent)?s.interceptors.Agent:[P5e({maxRedirections:r})],this[LR]={...M5e.deepClone(s),connect:n},this[LR].interceptors=s.interceptors?{...s.interceptors}:void 0,this[U5e]=r,this[cK]=t,this[Ka]=new Map,this[aK]=(i,o)=>{this.emit("drain",i,[this,...o])},this[sK]=(i,o)=>{this.emit("connect",i,[this,...o])},this[iK]=(i,o,a)=>{this.emit("disconnect",i,[this,...o],a)},this[oK]=(i,o,a)=>{this.emit("connectionError",i,[this,...o],a)}}get[nK](){let t=0;for(let r of this[Ka].values())t+=r[nK];return t}[N5e](t,r){let n;if(t.origin&&(typeof t.origin=="string"||t.origin instanceof URL))n=String(t.origin);else throw new xI("opts.origin must be a non-empty string or URL.");let s=this[Ka].get(n);return s||(s=this[cK](t.origin,this[LR]).on("drain",this[aK]).on("connect",this[sK]).on("disconnect",this[iK]).on("connectionError",this[oK]),this[Ka].set(n,s)),s.dispatch(t,r)}async[R5e](){let t=[];for(let r of this[Ka].values())t.push(r.close());this[Ka].clear(),await Promise.all(t)}async[D5e](t){let r=[];for(let n of this[Ka].values())r.push(n.destroy(t));this[Ka].clear(),await Promise.all(r)}};uK.exports=OR});var UR=b((Olt,dK)=>{"use strict";var{kProxy:q5e,kClose:V5e,kDestroy:Y5e,kInterceptors:$5e}=Ot(),{URL:L0}=require("node:url"),G5e=XA(),j5e=zA(),J5e=kA(),{InvalidArgumentError:TI,RequestAbortedError:W5e,SecureProxyConnectionError:z5e}=ht(),lK=f0(),vI=Symbol("proxy agent"),QI=Symbol("proxy client"),O0=Symbol("proxy headers"),MR=Symbol("request tls settings"),AK=Symbol("proxy tls settings"),fK=Symbol("connect endpoint function");function X5e(e){return e==="https:"?443:80}function K5e(e,t){return new j5e(e,t)}var Z5e=()=>{},PR=class extends J5e{constructor(t){if(super(),!t||typeof t=="object"&&!(t instanceof L0)&&!t.uri)throw new TI("Proxy uri is mandatory");let{clientFactory:r=K5e}=t;if(typeof r!="function")throw new TI("Proxy opts.clientFactory must be a function.");let n=this.#e(t),{href:s,origin:i,port:o,protocol:a,username:c,password:u,hostname:l}=n;if(this[q5e]={uri:s,protocol:a},this[$5e]=t.interceptors?.ProxyAgent&&Array.isArray(t.interceptors.ProxyAgent)?t.interceptors.ProxyAgent:[],this[MR]=t.requestTls,this[AK]=t.proxyTls,this[O0]=t.headers||{},t.auth&&t.token)throw new TI("opts.auth cannot be used in combination with opts.token");t.auth?this[O0]["proxy-authorization"]=`Basic ${t.auth}`:t.token?this[O0]["proxy-authorization"]=t.token:c&&u&&(this[O0]["proxy-authorization"]=`Basic ${Buffer.from(`${decodeURIComponent(c)}:${decodeURIComponent(u)}`).toString("base64")}`);let A=lK({...t.proxyTls});this[fK]=lK({...t.requestTls}),this[QI]=r(n,{connect:A}),this[vI]=new G5e({...t,connect:async(f,d)=>{let h=f.host;f.port||(h+=`:${X5e(f.protocol)}`);try{let{socket:p,statusCode:C}=await this[QI].connect({origin:i,port:o,path:h,signal:f.signal,headers:{...this[O0],host:f.host},servername:this[AK]?.servername||l});if(C!==200&&(p.on("error",Z5e).destroy(),d(new W5e(`Proxy response (${C}) !== 200 when HTTP Tunneling`))),f.protocol!=="https:"){d(null,p);return}let m;this[MR]?m=this[MR].servername:m=f.servername,this[fK]({...f,servername:m,httpSocket:p},d)}catch(p){p.code==="ERR_TLS_CERT_ALTNAME_INVALID"?d(new z5e(p)):d(p)}}})}dispatch(t,r){let n=eUe(t.headers);if(tUe(n),n&&!("host"in n)&&!("Host"in n)){let{host:s}=new L0(t.origin);n.host=s}return this[vI].dispatch({...t,headers:n},r)}#e(t){return typeof t=="string"?new L0(t):t instanceof L0?t:new L0(t.uri)}async[V5e](){await this[vI].close(),await this[QI].close()}async[Y5e](){await this[vI].destroy(),await this[QI].destroy()}};function eUe(e){if(Array.isArray(e)){let t={};for(let r=0;rr.toLowerCase()==="proxy-authorization"))throw new TI("Proxy-Authorization should be sent in ProxyAgent constructor")}dK.exports=PR});var CK=b((Mlt,EK)=>{"use strict";var rUe=kA(),{kClose:nUe,kDestroy:sUe,kClosed:hK,kDestroyed:pK,kDispatch:iUe,kNoProxyAgent:M0,kHttpProxyAgent:Za,kHttpsProxyAgent:Bu}=Ot(),gK=UR(),oUe=XA(),aUe={"http:":80,"https:":443},mK=!1,HR=class extends rUe{#e=null;#t=null;#s=null;constructor(t={}){super(),this.#s=t,mK||(mK=!0,process.emitWarning("EnvHttpProxyAgent is experimental, expect them to change at any time.",{code:"UNDICI-EHPA"}));let{httpProxy:r,httpsProxy:n,noProxy:s,...i}=t;this[M0]=new oUe(i);let o=r??process.env.http_proxy??process.env.HTTP_PROXY;o?this[Za]=new gK({...i,uri:o}):this[Za]=this[M0];let a=n??process.env.https_proxy??process.env.HTTPS_PROXY;a?this[Bu]=new gK({...i,uri:a}):this[Bu]=this[Za],this.#i()}[iUe](t,r){let n=new URL(t.origin);return this.#n(n).dispatch(t,r)}async[nUe](){await this[M0].close(),this[Za][hK]||await this[Za].close(),this[Bu][hK]||await this[Bu].close()}async[sUe](t){await this[M0].destroy(t),this[Za][pK]||await this[Za].destroy(t),this[Bu][pK]||await this[Bu].destroy(t)}#n(t){let{protocol:r,host:n,port:s}=t;return n=n.replace(/:\d*$/,"").toLowerCase(),s=Number.parseInt(s,10)||aUe[r]||0,this.#r(n,s)?r==="https:"?this[Bu]:this[Za]:this[M0]}#r(t,r){if(this.#o&&this.#i(),this.#t.length===0)return!0;if(this.#e==="*")return!1;for(let n=0;n{"use strict";var KA=require("node:assert"),{kRetryHandlerDefaultRetry:yK}=Ot(),{RequestRetryError:P0}=ht(),{isDisturbed:IK,parseHeaders:cUe,parseRangeHeader:bK,wrapRequestBody:uUe}=Ve();function lUe(e){let t=Date.now();return new Date(e).getTime()-t}var qR=class e{constructor(t,r){let{retryOptions:n,...s}=t,{retry:i,maxRetries:o,maxTimeout:a,minTimeout:c,timeoutFactor:u,methods:l,errorCodes:A,retryAfter:f,statusCodes:d}=n??{};this.dispatch=r.dispatch,this.handler=r.handler,this.opts={...s,body:uUe(t.body)},this.abort=null,this.aborted=!1,this.retryOpts={retry:i??e[yK],retryAfter:f??!0,maxTimeout:a??30*1e3,minTimeout:c??500,timeoutFactor:u??2,maxRetries:o??5,methods:l??["GET","HEAD","OPTIONS","PUT","DELETE","TRACE"],statusCodes:d??[500,502,503,504,429],errorCodes:A??["ECONNRESET","ECONNREFUSED","ENOTFOUND","ENETDOWN","ENETUNREACH","EHOSTDOWN","EHOSTUNREACH","EPIPE","UND_ERR_SOCKET"]},this.retryCount=0,this.retryCountCheckpoint=0,this.start=0,this.end=null,this.etag=null,this.resume=null,this.handler.onConnect(h=>{this.aborted=!0,this.abort?this.abort(h):this.reason=h})}onRequestSent(){this.handler.onRequestSent&&this.handler.onRequestSent()}onUpgrade(t,r,n){this.handler.onUpgrade&&this.handler.onUpgrade(t,r,n)}onConnect(t){this.aborted?t(this.reason):this.abort=t}onBodySent(t){if(this.handler.onBodySent)return this.handler.onBodySent(t)}static[yK](t,{state:r,opts:n},s){let{statusCode:i,code:o,headers:a}=t,{method:c,retryOptions:u}=n,{maxRetries:l,minTimeout:A,maxTimeout:f,timeoutFactor:d,statusCodes:h,errorCodes:p,methods:C}=u,{counter:m}=r;if(o&&o!=="UND_ERR_REQ_RETRY"&&!p.includes(o)){s(t);return}if(Array.isArray(C)&&!C.includes(c)){s(t);return}if(i!=null&&Array.isArray(h)&&!h.includes(i)){s(t);return}if(m>l){s(t);return}let I=a?.["retry-after"];I&&(I=Number(I),I=Number.isNaN(I)?lUe(I):I*1e3);let y=I>0?Math.min(I,f):Math.min(A*d**(m-1),f);setTimeout(()=>s(null),y)}onHeaders(t,r,n,s){let i=cUe(r);if(this.retryCount+=1,t>=300)return this.retryOpts.statusCodes.includes(t)===!1?this.handler.onHeaders(t,r,n,s):(this.abort(new P0("Request failed",t,{headers:i,data:{count:this.retryCount}})),!1);if(this.resume!=null){if(this.resume=null,t!==206&&(this.start>0||t!==200))return this.abort(new P0("server does not support the range header and the payload was partially consumed",t,{headers:i,data:{count:this.retryCount}})),!1;let a=bK(i["content-range"]);if(!a)return this.abort(new P0("Content-Range mismatch",t,{headers:i,data:{count:this.retryCount}})),!1;if(this.etag!=null&&this.etag!==i.etag)return this.abort(new P0("ETag mismatch",t,{headers:i,data:{count:this.retryCount}})),!1;let{start:c,size:u,end:l=u-1}=a;return KA(this.start===c,"content-range mismatch"),KA(this.end==null||this.end===l,"content-range mismatch"),this.resume=n,!0}if(this.end==null){if(t===206){let a=bK(i["content-range"]);if(a==null)return this.handler.onHeaders(t,r,n,s);let{start:c,size:u,end:l=u-1}=a;KA(c!=null&&Number.isFinite(c),"content-range mismatch"),KA(l!=null&&Number.isFinite(l),"invalid content-length"),this.start=c,this.end=l}if(this.end==null){let a=i["content-length"];this.end=a!=null?Number(a)-1:null}return KA(Number.isFinite(this.start)),KA(this.end==null||Number.isFinite(this.end),"invalid content-length"),this.resume=n,this.etag=i.etag!=null?i.etag:null,this.etag!=null&&this.etag.startsWith("W/")&&(this.etag=null),this.handler.onHeaders(t,r,n,s)}let o=new P0("Request failed",t,{headers:i,data:{count:this.retryCount}});return this.abort(o),!1}onData(t){return this.start+=t.length,this.handler.onData(t)}onComplete(t){return this.retryCount=0,this.handler.onComplete(t)}onError(t){if(this.aborted||IK(this.opts.body))return this.handler.onError(t);this.retryCount-this.retryCountCheckpoint>0?this.retryCount=this.retryCountCheckpoint+(this.retryCount-this.retryCountCheckpoint):this.retryCount+=1,this.retryOpts.retry(t,{state:{counter:this.retryCount},opts:{retryOptions:this.retryOpts,...this.opts}},r.bind(this));function r(n){if(n!=null||this.aborted||IK(this.opts.body))return this.handler.onError(n);if(this.start!==0){let s={range:`bytes=${this.start}-${this.end??""}`};this.etag!=null&&(s["if-match"]=this.etag),this.opts={...this.opts,headers:{...this.opts.headers,...s}}}try{this.retryCountCheckpoint=this.retryCount,this.dispatch(this.opts,this)}catch(s){this.handler.onError(s)}}}};BK.exports=qR});var vK=b((Ult,xK)=>{"use strict";var AUe=l0(),fUe=wI(),VR=class extends AUe{#e=null;#t=null;constructor(t,r={}){super(r),this.#e=t,this.#t=r}dispatch(t,r){let n=new fUe({...t,retryOptions:this.#t},{dispatch:this.#e.dispatch.bind(this.#e),handler:r});return this.#e.dispatch(t,n)}close(){return this.#e.close()}destroy(){return this.#e.destroy()}};xK.exports=VR});var WR=b((Hlt,kK)=>{"use strict";var _K=require("node:assert"),{Readable:dUe}=require("node:stream"),{RequestAbortedError:RK,NotSupportedError:hUe,InvalidArgumentError:pUe,AbortError:YR}=ht(),DK=Ve(),{ReadableStreamFrom:gUe}=Ve(),Wn=Symbol("kConsume"),U0=Symbol("kReading"),ec=Symbol("kBody"),QK=Symbol("kAbort"),NK=Symbol("kContentType"),TK=Symbol("kContentLength"),mUe=()=>{},$R=class extends dUe{constructor({resume:t,abort:r,contentType:n="",contentLength:s,highWaterMark:i=64*1024}){super({autoDestroy:!0,read:t,highWaterMark:i}),this._readableState.dataEmitted=!1,this[QK]=r,this[Wn]=null,this[ec]=null,this[NK]=n,this[TK]=s,this[U0]=!1}destroy(t){return!t&&!this._readableState.endEmitted&&(t=new RK),t&&this[QK](),super.destroy(t)}_destroy(t,r){this[U0]?r(t):setImmediate(()=>{r(t)})}on(t,...r){return(t==="data"||t==="readable")&&(this[U0]=!0),super.on(t,...r)}addListener(t,...r){return this.on(t,...r)}off(t,...r){let n=super.off(t,...r);return(t==="data"||t==="readable")&&(this[U0]=this.listenerCount("data")>0||this.listenerCount("readable")>0),n}removeListener(t,...r){return this.off(t,...r)}push(t){return this[Wn]&&t!==null?(jR(this[Wn],t),this[U0]?super.push(t):!0):super.push(t)}async text(){return H0(this,"text")}async json(){return H0(this,"json")}async blob(){return H0(this,"blob")}async bytes(){return H0(this,"bytes")}async arrayBuffer(){return H0(this,"arrayBuffer")}async formData(){throw new hUe}get bodyUsed(){return DK.isDisturbed(this)}get body(){return this[ec]||(this[ec]=gUe(this),this[Wn]&&(this[ec].getReader(),_K(this[ec].locked))),this[ec]}async dump(t){let r=Number.isFinite(t?.limit)?t.limit:131072,n=t?.signal;if(n!=null&&(typeof n!="object"||!("aborted"in n)))throw new pUe("signal must be an AbortSignal");return n?.throwIfAborted(),this._readableState.closeEmitted?null:await new Promise((s,i)=>{this[TK]>r&&this.destroy(new YR);let o=()=>{this.destroy(n.reason??new YR)};n?.addEventListener("abort",o),this.on("close",function(){n?.removeEventListener("abort",o),n?.aborted?i(n.reason??new YR):s(null)}).on("error",mUe).on("data",function(a){r-=a.length,r<=0&&this.destroy()}).resume()})}};function EUe(e){return e[ec]&&e[ec].locked===!0||e[Wn]}function CUe(e){return DK.isDisturbed(e)||EUe(e)}async function H0(e,t){return _K(!e[Wn]),new Promise((r,n)=>{if(CUe(e)){let s=e._readableState;s.destroyed&&s.closeEmitted===!1?e.on("error",i=>{n(i)}).on("close",()=>{n(new TypeError("unusable"))}):n(s.errored??new TypeError("unusable"))}else queueMicrotask(()=>{e[Wn]={type:t,stream:e,resolve:r,reject:n,length:0,body:[]},e.on("error",function(s){JR(this[Wn],s)}).on("close",function(){this[Wn].body!==null&&JR(this[Wn],new RK)}),yUe(e[Wn])})})}function yUe(e){if(e.body===null)return;let{_readableState:t}=e.stream;if(t.bufferIndex){let r=t.bufferIndex,n=t.buffer.length;for(let s=r;s2&&r[0]===239&&r[1]===187&&r[2]===191?3:0;return r.utf8Slice(s,n)}function wK(e,t){if(e.length===0||t===0)return new Uint8Array(0);if(e.length===1)return new Uint8Array(e[0]);let r=new Uint8Array(Buffer.allocUnsafeSlow(t).buffer),n=0;for(let s=0;s{var IUe=require("node:assert"),{ResponseStatusCodeError:FK}=ht(),{chunksDecode:LK}=WR(),bUe=128*1024;async function BUe({callback:e,body:t,contentType:r,statusCode:n,statusMessage:s,headers:i}){IUe(t);let o=[],a=0;try{for await(let A of t)if(o.push(A),a+=A.length,a>bUe){o=[],a=0;break}}catch{o=[],a=0}let c=`Response status code ${n}${s?`: ${s}`:""}`;if(n===204||!r||!a){queueMicrotask(()=>e(new FK(c,n,i)));return}let u=Error.stackTraceLimit;Error.stackTraceLimit=0;let l;try{OK(r)?l=JSON.parse(LK(o,a)):MK(r)&&(l=LK(o,a))}catch{}finally{Error.stackTraceLimit=u}queueMicrotask(()=>e(new FK(c,n,i,l)))}var OK=e=>e.length>15&&e[11]==="/"&&e[0]==="a"&&e[1]==="p"&&e[2]==="p"&&e[3]==="l"&&e[4]==="i"&&e[5]==="c"&&e[6]==="a"&&e[7]==="t"&&e[8]==="i"&&e[9]==="o"&&e[10]==="n"&&e[12]==="j"&&e[13]==="s"&&e[14]==="o"&&e[15]==="n",MK=e=>e.length>4&&e[4]==="/"&&e[0]==="t"&&e[1]==="e"&&e[2]==="x"&&e[3]==="t";PK.exports={getResolveErrorBodyCallback:BUe,isContentTypeApplicationJson:OK,isContentTypeText:MK}});var qK=b((Vlt,XR)=>{"use strict";var xUe=require("node:assert"),{Readable:vUe}=WR(),{InvalidArgumentError:ZA,RequestAbortedError:UK}=ht(),zn=Ve(),{getResolveErrorBodyCallback:QUe}=zR(),{AsyncResource:TUe}=require("node:async_hooks"),SI=class extends TUe{constructor(t,r){if(!t||typeof t!="object")throw new ZA("invalid opts");let{signal:n,method:s,opaque:i,body:o,onInfo:a,responseHeaders:c,throwOnError:u,highWaterMark:l}=t;try{if(typeof r!="function")throw new ZA("invalid callback");if(l&&(typeof l!="number"||l<0))throw new ZA("invalid highWaterMark");if(n&&typeof n.on!="function"&&typeof n.addEventListener!="function")throw new ZA("signal must be an EventEmitter or EventTarget");if(s==="CONNECT")throw new ZA("invalid method");if(a&&typeof a!="function")throw new ZA("invalid onInfo callback");super("UNDICI_REQUEST")}catch(A){throw zn.isStream(o)&&zn.destroy(o.on("error",zn.nop),A),A}this.method=s,this.responseHeaders=c||null,this.opaque=i||null,this.callback=r,this.res=null,this.abort=null,this.body=o,this.trailers={},this.context=null,this.onInfo=a||null,this.throwOnError=u,this.highWaterMark=l,this.signal=n,this.reason=null,this.removeAbortListener=null,zn.isStream(o)&&o.on("error",A=>{this.onError(A)}),this.signal&&(this.signal.aborted?this.reason=this.signal.reason??new UK:this.removeAbortListener=zn.addAbortListener(this.signal,()=>{this.reason=this.signal.reason??new UK,this.res?zn.destroy(this.res.on("error",zn.nop),this.reason):this.abort&&this.abort(this.reason),this.removeAbortListener&&(this.res?.off("close",this.removeAbortListener),this.removeAbortListener(),this.removeAbortListener=null)}))}onConnect(t,r){if(this.reason){t(this.reason);return}xUe(this.callback),this.abort=t,this.context=r}onHeaders(t,r,n,s){let{callback:i,opaque:o,abort:a,context:c,responseHeaders:u,highWaterMark:l}=this,A=u==="raw"?zn.parseRawHeaders(r):zn.parseHeaders(r);if(t<200){this.onInfo&&this.onInfo({statusCode:t,headers:A});return}let f=u==="raw"?zn.parseHeaders(r):A,d=f["content-type"],h=f["content-length"],p=new vUe({resume:n,abort:a,contentType:d,contentLength:this.method!=="HEAD"&&h?Number(h):null,highWaterMark:l});this.removeAbortListener&&p.on("close",this.removeAbortListener),this.callback=null,this.res=p,i!==null&&(this.throwOnError&&t>=400?this.runInAsyncScope(QUe,null,{callback:i,body:p,contentType:d,statusCode:t,statusMessage:s,headers:A}):this.runInAsyncScope(i,null,null,{statusCode:t,headers:A,trailers:this.trailers,opaque:o,body:p,context:c}))}onData(t){return this.res.push(t)}onComplete(t){zn.parseHeaders(t,this.trailers),this.res.push(null)}onError(t){let{res:r,callback:n,body:s,opaque:i}=this;n&&(this.callback=null,queueMicrotask(()=>{this.runInAsyncScope(n,null,t,{opaque:i})})),r&&(this.res=null,queueMicrotask(()=>{zn.destroy(r,t)})),s&&(this.body=null,zn.destroy(s,t)),this.removeAbortListener&&(r?.off("close",this.removeAbortListener),this.removeAbortListener(),this.removeAbortListener=null)}};function HK(e,t){if(t===void 0)return new Promise((r,n)=>{HK.call(this,e,(s,i)=>s?n(s):r(i))});try{this.dispatch(e,new SI(e,t))}catch(r){if(typeof t!="function")throw r;let n=e?.opaque;queueMicrotask(()=>t(r,{opaque:n}))}}XR.exports=HK;XR.exports.RequestHandler=SI});var q0=b((Ylt,$K)=>{var{addAbortListener:wUe}=Ve(),{RequestAbortedError:SUe}=ht(),ef=Symbol("kListener"),zi=Symbol("kSignal");function VK(e){e.abort?e.abort(e[zi]?.reason):e.reason=e[zi]?.reason??new SUe,YK(e)}function _Ue(e,t){if(e.reason=null,e[zi]=null,e[ef]=null,!!t){if(t.aborted){VK(e);return}e[zi]=t,e[ef]=()=>{VK(e)},wUe(e[zi],e[ef])}}function YK(e){e[zi]&&("removeEventListener"in e[zi]?e[zi].removeEventListener("abort",e[ef]):e[zi].removeListener("abort",e[ef]),e[zi]=null,e[ef]=null)}$K.exports={addSignal:_Ue,removeSignal:YK}});var WK=b(($lt,JK)=>{"use strict";var RUe=require("node:assert"),{finished:DUe,PassThrough:NUe}=require("node:stream"),{InvalidArgumentError:tf,InvalidReturnValueError:kUe}=ht(),Ai=Ve(),{getResolveErrorBodyCallback:FUe}=zR(),{AsyncResource:LUe}=require("node:async_hooks"),{addSignal:OUe,removeSignal:GK}=q0(),KR=class extends LUe{constructor(t,r,n){if(!t||typeof t!="object")throw new tf("invalid opts");let{signal:s,method:i,opaque:o,body:a,onInfo:c,responseHeaders:u,throwOnError:l}=t;try{if(typeof n!="function")throw new tf("invalid callback");if(typeof r!="function")throw new tf("invalid factory");if(s&&typeof s.on!="function"&&typeof s.addEventListener!="function")throw new tf("signal must be an EventEmitter or EventTarget");if(i==="CONNECT")throw new tf("invalid method");if(c&&typeof c!="function")throw new tf("invalid onInfo callback");super("UNDICI_STREAM")}catch(A){throw Ai.isStream(a)&&Ai.destroy(a.on("error",Ai.nop),A),A}this.responseHeaders=u||null,this.opaque=o||null,this.factory=r,this.callback=n,this.res=null,this.abort=null,this.context=null,this.trailers=null,this.body=a,this.onInfo=c||null,this.throwOnError=l||!1,Ai.isStream(a)&&a.on("error",A=>{this.onError(A)}),OUe(this,s)}onConnect(t,r){if(this.reason){t(this.reason);return}RUe(this.callback),this.abort=t,this.context=r}onHeaders(t,r,n,s){let{factory:i,opaque:o,context:a,callback:c,responseHeaders:u}=this,l=u==="raw"?Ai.parseRawHeaders(r):Ai.parseHeaders(r);if(t<200){this.onInfo&&this.onInfo({statusCode:t,headers:l});return}this.factory=null;let A;if(this.throwOnError&&t>=400){let h=(u==="raw"?Ai.parseHeaders(r):l)["content-type"];A=new NUe,this.callback=null,this.runInAsyncScope(FUe,null,{callback:c,body:A,contentType:h,statusCode:t,statusMessage:s,headers:l})}else{if(i===null)return;if(A=this.runInAsyncScope(i,null,{statusCode:t,headers:l,opaque:o,context:a}),!A||typeof A.write!="function"||typeof A.end!="function"||typeof A.on!="function")throw new kUe("expected Writable");DUe(A,{readable:!1},d=>{let{callback:h,res:p,opaque:C,trailers:m,abort:I}=this;this.res=null,(d||!p.readable)&&Ai.destroy(p,d),this.callback=null,this.runInAsyncScope(h,null,d||null,{opaque:C,trailers:m}),d&&I()})}return A.on("drain",n),this.res=A,(A.writableNeedDrain!==void 0?A.writableNeedDrain:A._writableState?.needDrain)!==!0}onData(t){let{res:r}=this;return r?r.write(t):!0}onComplete(t){let{res:r}=this;GK(this),r&&(this.trailers=Ai.parseHeaders(t),r.end())}onError(t){let{res:r,callback:n,opaque:s,body:i}=this;GK(this),this.factory=null,r?(this.res=null,Ai.destroy(r,t)):n&&(this.callback=null,queueMicrotask(()=>{this.runInAsyncScope(n,null,t,{opaque:s})})),i&&(this.body=null,Ai.destroy(i,t))}};function jK(e,t,r){if(r===void 0)return new Promise((n,s)=>{jK.call(this,e,t,(i,o)=>i?s(i):n(o))});try{this.dispatch(e,new KR(e,t,r))}catch(n){if(typeof r!="function")throw n;let s=e?.opaque;queueMicrotask(()=>r(n,{opaque:s}))}}JK.exports=jK});var ZK=b((Glt,KK)=>{"use strict";var{Readable:XK,Duplex:MUe,PassThrough:PUe}=require("node:stream"),{InvalidArgumentError:V0,InvalidReturnValueError:UUe,RequestAbortedError:ZR}=ht(),Ls=Ve(),{AsyncResource:HUe}=require("node:async_hooks"),{addSignal:qUe,removeSignal:VUe}=q0(),zK=require("node:assert"),rf=Symbol("resume"),eD=class extends XK{constructor(){super({autoDestroy:!0}),this[rf]=null}_read(){let{[rf]:t}=this;t&&(this[rf]=null,t())}_destroy(t,r){this._read(),r(t)}},tD=class extends XK{constructor(t){super({autoDestroy:!0}),this[rf]=t}_read(){this[rf]()}_destroy(t,r){!t&&!this._readableState.endEmitted&&(t=new ZR),r(t)}},rD=class extends HUe{constructor(t,r){if(!t||typeof t!="object")throw new V0("invalid opts");if(typeof r!="function")throw new V0("invalid handler");let{signal:n,method:s,opaque:i,onInfo:o,responseHeaders:a}=t;if(n&&typeof n.on!="function"&&typeof n.addEventListener!="function")throw new V0("signal must be an EventEmitter or EventTarget");if(s==="CONNECT")throw new V0("invalid method");if(o&&typeof o!="function")throw new V0("invalid onInfo callback");super("UNDICI_PIPELINE"),this.opaque=i||null,this.responseHeaders=a||null,this.handler=r,this.abort=null,this.context=null,this.onInfo=o||null,this.req=new eD().on("error",Ls.nop),this.ret=new MUe({readableObjectMode:t.objectMode,autoDestroy:!0,read:()=>{let{body:c}=this;c?.resume&&c.resume()},write:(c,u,l)=>{let{req:A}=this;A.push(c,u)||A._readableState.destroyed?l():A[rf]=l},destroy:(c,u)=>{let{body:l,req:A,res:f,ret:d,abort:h}=this;!c&&!d._readableState.endEmitted&&(c=new ZR),h&&c&&h(),Ls.destroy(l,c),Ls.destroy(A,c),Ls.destroy(f,c),VUe(this),u(c)}}).on("prefinish",()=>{let{req:c}=this;c.push(null)}),this.res=null,qUe(this,n)}onConnect(t,r){let{ret:n,res:s}=this;if(this.reason){t(this.reason);return}zK(!s,"pipeline cannot be retried"),zK(!n.destroyed),this.abort=t,this.context=r}onHeaders(t,r,n){let{opaque:s,handler:i,context:o}=this;if(t<200){if(this.onInfo){let c=this.responseHeaders==="raw"?Ls.parseRawHeaders(r):Ls.parseHeaders(r);this.onInfo({statusCode:t,headers:c})}return}this.res=new tD(n);let a;try{this.handler=null;let c=this.responseHeaders==="raw"?Ls.parseRawHeaders(r):Ls.parseHeaders(r);a=this.runInAsyncScope(i,null,{statusCode:t,headers:c,opaque:s,body:this.res,context:o})}catch(c){throw this.res.on("error",Ls.nop),c}if(!a||typeof a.on!="function")throw new UUe("expected Readable");a.on("data",c=>{let{ret:u,body:l}=this;!u.push(c)&&l.pause&&l.pause()}).on("error",c=>{let{ret:u}=this;Ls.destroy(u,c)}).on("end",()=>{let{ret:c}=this;c.push(null)}).on("close",()=>{let{ret:c}=this;c._readableState.ended||Ls.destroy(c,new ZR)}),this.body=a}onData(t){let{res:r}=this;return r.push(t)}onComplete(t){let{res:r}=this;r.push(null)}onError(t){let{ret:r}=this;this.handler=null,Ls.destroy(r,t)}};function YUe(e,t){try{let r=new rD(e,t);return this.dispatch({...e,body:r.req},r),r.ret}catch(r){return new PUe().destroy(r)}}KK.exports=YUe});var iZ=b((jlt,sZ)=>{"use strict";var{InvalidArgumentError:nD,SocketError:$Ue}=ht(),{AsyncResource:GUe}=require("node:async_hooks"),eZ=Ve(),{addSignal:jUe,removeSignal:tZ}=q0(),rZ=require("node:assert"),sD=class extends GUe{constructor(t,r){if(!t||typeof t!="object")throw new nD("invalid opts");if(typeof r!="function")throw new nD("invalid callback");let{signal:n,opaque:s,responseHeaders:i}=t;if(n&&typeof n.on!="function"&&typeof n.addEventListener!="function")throw new nD("signal must be an EventEmitter or EventTarget");super("UNDICI_UPGRADE"),this.responseHeaders=i||null,this.opaque=s||null,this.callback=r,this.abort=null,this.context=null,jUe(this,n)}onConnect(t,r){if(this.reason){t(this.reason);return}rZ(this.callback),this.abort=t,this.context=null}onHeaders(){throw new $Ue("bad upgrade",null)}onUpgrade(t,r,n){rZ(t===101);let{callback:s,opaque:i,context:o}=this;tZ(this),this.callback=null;let a=this.responseHeaders==="raw"?eZ.parseRawHeaders(r):eZ.parseHeaders(r);this.runInAsyncScope(s,null,null,{headers:a,socket:n,opaque:i,context:o})}onError(t){let{callback:r,opaque:n}=this;tZ(this),r&&(this.callback=null,queueMicrotask(()=>{this.runInAsyncScope(r,null,t,{opaque:n})}))}};function nZ(e,t){if(t===void 0)return new Promise((r,n)=>{nZ.call(this,e,(s,i)=>s?n(s):r(i))});try{let r=new sD(e,t);this.dispatch({...e,method:e.method||"GET",upgrade:e.protocol||"Websocket"},r)}catch(r){if(typeof t!="function")throw r;let n=e?.opaque;queueMicrotask(()=>t(r,{opaque:n}))}}sZ.exports=nZ});var lZ=b((Jlt,uZ)=>{"use strict";var JUe=require("node:assert"),{AsyncResource:WUe}=require("node:async_hooks"),{InvalidArgumentError:iD,SocketError:zUe}=ht(),oZ=Ve(),{addSignal:XUe,removeSignal:aZ}=q0(),oD=class extends WUe{constructor(t,r){if(!t||typeof t!="object")throw new iD("invalid opts");if(typeof r!="function")throw new iD("invalid callback");let{signal:n,opaque:s,responseHeaders:i}=t;if(n&&typeof n.on!="function"&&typeof n.addEventListener!="function")throw new iD("signal must be an EventEmitter or EventTarget");super("UNDICI_CONNECT"),this.opaque=s||null,this.responseHeaders=i||null,this.callback=r,this.abort=null,XUe(this,n)}onConnect(t,r){if(this.reason){t(this.reason);return}JUe(this.callback),this.abort=t,this.context=r}onHeaders(){throw new zUe("bad connect",null)}onUpgrade(t,r,n){let{callback:s,opaque:i,context:o}=this;aZ(this),this.callback=null;let a=r;a!=null&&(a=this.responseHeaders==="raw"?oZ.parseRawHeaders(r):oZ.parseHeaders(r)),this.runInAsyncScope(s,null,null,{statusCode:t,headers:a,socket:n,opaque:i,context:o})}onError(t){let{callback:r,opaque:n}=this;aZ(this),r&&(this.callback=null,queueMicrotask(()=>{this.runInAsyncScope(r,null,t,{opaque:n})}))}};function cZ(e,t){if(t===void 0)return new Promise((r,n)=>{cZ.call(this,e,(s,i)=>s?n(s):r(i))});try{let r=new oD(e,t);this.dispatch({...e,method:"CONNECT"},r)}catch(r){if(typeof t!="function")throw r;let n=e?.opaque;queueMicrotask(()=>t(r,{opaque:n}))}}uZ.exports=cZ});var AZ=b((Wlt,nf)=>{"use strict";nf.exports.request=qK();nf.exports.stream=WK();nf.exports.pipeline=ZK();nf.exports.upgrade=iZ();nf.exports.connect=lZ()});var cD=b((zlt,fZ)=>{"use strict";var{UndiciError:KUe}=ht(),aD=class e extends KUe{constructor(t){super(t),Error.captureStackTrace(this,e),this.name="MockNotMatchedError",this.message=t||"The request does not match any registered mock dispatches",this.code="UND_MOCK_ERR_MOCK_NOT_MATCHED"}};fZ.exports={MockNotMatchedError:aD}});var sf=b((Xlt,dZ)=>{"use strict";dZ.exports={kAgent:Symbol("agent"),kOptions:Symbol("options"),kFactory:Symbol("factory"),kDispatches:Symbol("dispatches"),kDispatchKey:Symbol("dispatch key"),kDefaultHeaders:Symbol("default headers"),kDefaultTrailers:Symbol("default trailers"),kContentLength:Symbol("content length"),kMockAgent:Symbol("mock agent"),kMockAgentSet:Symbol("mock agent set"),kMockAgentGet:Symbol("mock agent get"),kMockDispatch:Symbol("mock dispatch"),kClose:Symbol("close"),kOriginalClose:Symbol("original agent close"),kOrigin:Symbol("origin"),kIsMockActive:Symbol("is mock active"),kNetConnect:Symbol("net connect"),kGetNetConnect:Symbol("get net connect"),kConnected:Symbol("connected")}});var Y0=b((Klt,xZ)=>{"use strict";var{MockNotMatchedError:xu}=cD(),{kDispatches:_I,kMockAgent:ZUe,kOriginalDispatch:e9e,kOrigin:t9e,kGetNetConnect:r9e}=sf(),{buildURL:n9e}=Ve(),{STATUS_CODES:s9e}=require("node:http"),{types:{isPromise:i9e}}=require("node:util");function Vo(e,t){return typeof e=="string"?e===t:e instanceof RegExp?e.test(t):typeof e=="function"?e(t)===!0:!1}function pZ(e){return Object.fromEntries(Object.entries(e).map(([t,r])=>[t.toLocaleLowerCase(),r]))}function gZ(e,t){if(Array.isArray(e)){for(let r=0;r"u")return!0;if(typeof t!="object"||typeof e.headers!="object")return!1;for(let[r,n]of Object.entries(e.headers)){let s=gZ(t,r);if(!Vo(n,s))return!1}return!0}function hZ(e){if(typeof e!="string")return e;let t=e.split("?");if(t.length!==2)return e;let r=new URLSearchParams(t.pop());return r.sort(),[...t,r.toString()].join("?")}function o9e(e,{path:t,method:r,body:n,headers:s}){let i=Vo(e.path,t),o=Vo(e.method,r),a=typeof e.body<"u"?Vo(e.body,n):!0,c=mZ(e,s);return i&&o&&a&&c}function EZ(e){return Buffer.isBuffer(e)||e instanceof Uint8Array||e instanceof ArrayBuffer?e:typeof e=="object"?JSON.stringify(e):e.toString()}function CZ(e,t){let r=t.query?n9e(t.path,t.query):t.path,n=typeof r=="string"?hZ(r):r,s=e.filter(({consumed:i})=>!i).filter(({path:i})=>Vo(hZ(i),n));if(s.length===0)throw new xu(`Mock dispatch not matched for path '${n}'`);if(s=s.filter(({method:i})=>Vo(i,t.method)),s.length===0)throw new xu(`Mock dispatch not matched for method '${t.method}' on path '${n}'`);if(s=s.filter(({body:i})=>typeof i<"u"?Vo(i,t.body):!0),s.length===0)throw new xu(`Mock dispatch not matched for body '${t.body}' on path '${n}'`);if(s=s.filter(i=>mZ(i,t.headers)),s.length===0){let i=typeof t.headers=="object"?JSON.stringify(t.headers):t.headers;throw new xu(`Mock dispatch not matched for headers '${i}' on path '${n}'`)}return s[0]}function a9e(e,t,r){let n={timesInvoked:0,times:1,persist:!1,consumed:!1},s=typeof r=="function"?{callback:r}:{...r},i={...n,...t,pending:!0,data:{error:null,...s}};return e.push(i),i}function uD(e,t){let r=e.findIndex(n=>n.consumed?o9e(n,t):!1);r!==-1&&e.splice(r,1)}function yZ(e){let{path:t,method:r,body:n,headers:s,query:i}=e;return{path:t,method:r,body:n,headers:s,query:i}}function lD(e){let t=Object.keys(e),r=[];for(let n=0;n=f,n.pending=A0?setTimeout(()=>{d(this[_I])},u):d(this[_I]);function d(p,C=i){let m=Array.isArray(e.headers)?AD(e.headers):e.headers,I=typeof C=="function"?C({...e,headers:m}):C;if(i9e(I)){I.then(v=>d(p,v));return}let y=EZ(I),E=lD(o),B=lD(a);t.onConnect?.(v=>t.onError(v),null),t.onHeaders?.(s,E,h,IZ(s)),t.onData?.(Buffer.from(y)),t.onComplete?.(B),uD(p,r)}function h(){}return!0}function u9e(){let e=this[ZUe],t=this[t9e],r=this[e9e];return function(s,i){if(e.isMockActive)try{bZ.call(this,s,i)}catch(o){if(o instanceof xu){let a=e[r9e]();if(a===!1)throw new xu(`${o.message}: subsequent request to origin ${t} was not allowed (net.connect disabled)`);if(BZ(a,t))r.call(this,s,i);else throw new xu(`${o.message}: subsequent request to origin ${t} was not allowed (net.connect is not enabled for this origin)`)}else throw o}else r.call(this,s,i)}}function BZ(e,t){let r=new URL(t);return e===!0?!0:!!(Array.isArray(e)&&e.some(n=>Vo(n,r.host)))}function l9e(e){if(e){let{agent:t,...r}=e;return r}}xZ.exports={getResponseData:EZ,getMockDispatch:CZ,addMockDispatch:a9e,deleteMockDispatch:uD,buildKey:yZ,generateKeyValues:lD,matchValue:Vo,getResponse:c9e,getStatusText:IZ,mockDispatch:bZ,buildMockDispatch:u9e,checkNetConnect:BZ,buildMockOptions:l9e,getHeaderByName:gZ,buildHeadersFromArray:AD}});var ED=b((Zlt,mD)=>{"use strict";var{getResponseData:A9e,buildKey:f9e,addMockDispatch:fD}=Y0(),{kDispatches:RI,kDispatchKey:DI,kDefaultHeaders:dD,kDefaultTrailers:hD,kContentLength:pD,kMockDispatch:NI}=sf(),{InvalidArgumentError:Xi}=ht(),{buildURL:d9e}=Ve(),of=class{constructor(t){this[NI]=t}delay(t){if(typeof t!="number"||!Number.isInteger(t)||t<=0)throw new Xi("waitInMs must be a valid integer > 0");return this[NI].delay=t,this}persist(){return this[NI].persist=!0,this}times(t){if(typeof t!="number"||!Number.isInteger(t)||t<=0)throw new Xi("repeatTimes must be a valid integer > 0");return this[NI].times=t,this}},gD=class{constructor(t,r){if(typeof t!="object")throw new Xi("opts must be an object");if(typeof t.path>"u")throw new Xi("opts.path must be defined");if(typeof t.method>"u"&&(t.method="GET"),typeof t.path=="string")if(t.query)t.path=d9e(t.path,t.query);else{let n=new URL(t.path,"data://");t.path=n.pathname+n.search}typeof t.method=="string"&&(t.method=t.method.toUpperCase()),this[DI]=f9e(t),this[RI]=r,this[dD]={},this[hD]={},this[pD]=!1}createMockScopeDispatchData({statusCode:t,data:r,responseOptions:n}){let s=A9e(r),i=this[pD]?{"content-length":s.length}:{},o={...this[dD],...i,...n.headers},a={...this[hD],...n.trailers};return{statusCode:t,data:r,headers:o,trailers:a}}validateReplyParameters(t){if(typeof t.statusCode>"u")throw new Xi("statusCode must be defined");if(typeof t.responseOptions!="object"||t.responseOptions===null)throw new Xi("responseOptions must be an object")}reply(t){if(typeof t=="function"){let i=a=>{let c=t(a);if(typeof c!="object"||c===null)throw new Xi("reply options callback must return an object");let u={data:"",responseOptions:{},...c};return this.validateReplyParameters(u),{...this.createMockScopeDispatchData(u)}},o=fD(this[RI],this[DI],i);return new of(o)}let r={statusCode:t,data:arguments[1]===void 0?"":arguments[1],responseOptions:arguments[2]===void 0?{}:arguments[2]};this.validateReplyParameters(r);let n=this.createMockScopeDispatchData(r),s=fD(this[RI],this[DI],n);return new of(s)}replyWithError(t){if(typeof t>"u")throw new Xi("error must be defined");let r=fD(this[RI],this[DI],{error:t});return new of(r)}defaultReplyHeaders(t){if(typeof t>"u")throw new Xi("headers must be defined");return this[dD]=t,this}defaultReplyTrailers(t){if(typeof t>"u")throw new Xi("trailers must be defined");return this[hD]=t,this}replyContentLength(){return this[pD]=!0,this}};mD.exports.MockInterceptor=gD;mD.exports.MockScope=of});var ID=b((eAt,RZ)=>{"use strict";var{promisify:h9e}=require("node:util"),p9e=D0(),{buildMockDispatch:g9e}=Y0(),{kDispatches:vZ,kMockAgent:QZ,kClose:TZ,kOriginalClose:wZ,kOrigin:SZ,kOriginalDispatch:m9e,kConnected:CD}=sf(),{MockInterceptor:E9e}=ED(),_Z=Ot(),{InvalidArgumentError:C9e}=ht(),yD=class extends p9e{constructor(t,r){if(super(t,r),!r||!r.agent||typeof r.agent.dispatch!="function")throw new C9e("Argument opts.agent must implement Agent");this[QZ]=r.agent,this[SZ]=t,this[vZ]=[],this[CD]=1,this[m9e]=this.dispatch,this[wZ]=this.close.bind(this),this.dispatch=g9e.call(this),this.close=this[TZ]}get[_Z.kConnected](){return this[CD]}intercept(t){return new E9e(t,this[vZ])}async[TZ](){await h9e(this[wZ])(),this[CD]=0,this[QZ][_Z.kClients].delete(this[SZ])}};RZ.exports=yD});var xD=b((tAt,MZ)=>{"use strict";var{promisify:y9e}=require("node:util"),I9e=zA(),{buildMockDispatch:b9e}=Y0(),{kDispatches:DZ,kMockAgent:NZ,kClose:kZ,kOriginalClose:FZ,kOrigin:LZ,kOriginalDispatch:B9e,kConnected:bD}=sf(),{MockInterceptor:x9e}=ED(),OZ=Ot(),{InvalidArgumentError:v9e}=ht(),BD=class extends I9e{constructor(t,r){if(super(t,r),!r||!r.agent||typeof r.agent.dispatch!="function")throw new v9e("Argument opts.agent must implement Agent");this[NZ]=r.agent,this[LZ]=t,this[DZ]=[],this[bD]=1,this[B9e]=this.dispatch,this[FZ]=this.close.bind(this),this.dispatch=b9e.call(this),this.close=this[kZ]}get[OZ.kConnected](){return this[bD]}intercept(t){return new x9e(t,this[DZ])}async[kZ](){await y9e(this[FZ])(),this[bD]=0,this[NZ][OZ.kClients].delete(this[LZ])}};MZ.exports=BD});var UZ=b((nAt,PZ)=>{"use strict";var Q9e={pronoun:"it",is:"is",was:"was",this:"this"},T9e={pronoun:"they",is:"are",was:"were",this:"these"};PZ.exports=class{constructor(t,r){this.singular=t,this.plural=r}pluralize(t){let r=t===1,n=r?Q9e:T9e,s=r?this.singular:this.plural;return{...n,count:t,noun:s}}}});var qZ=b((iAt,HZ)=>{"use strict";var{Transform:w9e}=require("node:stream"),{Console:S9e}=require("node:console"),_9e=process.versions.icu?"\u2705":"Y ",R9e=process.versions.icu?"\u274C":"N ";HZ.exports=class{constructor({disableColors:t}={}){this.transform=new w9e({transform(r,n,s){s(null,r)}}),this.logger=new S9e({stdout:this.transform,inspectOptions:{colors:!t&&!process.env.CI}})}format(t){let r=t.map(({method:n,path:s,data:{statusCode:i},persist:o,times:a,timesInvoked:c,origin:u})=>({Method:n,Origin:u,Path:s,"Status code":i,Persistent:o?_9e:R9e,Invocations:c,Remaining:o?1/0:a-c}));return this.logger.table(r),this.transform.read().toString()}}});var GZ=b((oAt,$Z)=>{"use strict";var{kClients:vu}=Ot(),D9e=XA(),{kAgent:vD,kMockAgentSet:kI,kMockAgentGet:VZ,kDispatches:QD,kIsMockActive:FI,kNetConnect:Qu,kGetNetConnect:N9e,kOptions:LI,kFactory:OI}=sf(),k9e=ID(),F9e=xD(),{matchValue:L9e,buildMockOptions:O9e}=Y0(),{InvalidArgumentError:YZ,UndiciError:M9e}=ht(),P9e=l0(),U9e=UZ(),H9e=qZ(),TD=class extends P9e{constructor(t){if(super(t),this[Qu]=!0,this[FI]=!0,t?.agent&&typeof t.agent.dispatch!="function")throw new YZ("Argument opts.agent must implement Agent");let r=t?.agent?t.agent:new D9e(t);this[vD]=r,this[vu]=r[vu],this[LI]=O9e(t)}get(t){let r=this[VZ](t);return r||(r=this[OI](t),this[kI](t,r)),r}dispatch(t,r){return this.get(t.origin),this[vD].dispatch(t,r)}async close(){await this[vD].close(),this[vu].clear()}deactivate(){this[FI]=!1}activate(){this[FI]=!0}enableNetConnect(t){if(typeof t=="string"||typeof t=="function"||t instanceof RegExp)Array.isArray(this[Qu])?this[Qu].push(t):this[Qu]=[t];else if(typeof t>"u")this[Qu]=!0;else throw new YZ("Unsupported matcher. Must be one of String|Function|RegExp.")}disableNetConnect(){this[Qu]=!1}get isMockActive(){return this[FI]}[kI](t,r){this[vu].set(t,r)}[OI](t){let r=Object.assign({agent:this},this[LI]);return this[LI]&&this[LI].connections===1?new k9e(t,r):new F9e(t,r)}[VZ](t){let r=this[vu].get(t);if(r)return r;if(typeof t!="string"){let n=this[OI]("http://localhost:9999");return this[kI](t,n),n}for(let[n,s]of Array.from(this[vu]))if(s&&typeof n!="string"&&L9e(n,t)){let i=this[OI](t);return this[kI](t,i),i[QD]=s[QD],i}}[N9e](){return this[Qu]}pendingInterceptors(){let t=this[vu];return Array.from(t.entries()).flatMap(([r,n])=>n[QD].map(s=>({...s,origin:r}))).filter(({pending:r})=>r)}assertNoPendingInterceptors({pendingInterceptorsFormatter:t=new H9e}={}){let r=this.pendingInterceptors();if(r.length===0)return;let n=new U9e("interceptor","interceptors").pluralize(r.length);throw new M9e(` +${n.count} ${n.noun} ${n.is} pending: + +${t.format(r)} +`.trim())}};$Z.exports=TD});var MI=b((aAt,zZ)=>{"use strict";var jZ=Symbol.for("undici.globalDispatcher.1"),{InvalidArgumentError:q9e}=ht(),V9e=XA();WZ()===void 0&&JZ(new V9e);function JZ(e){if(!e||typeof e.dispatch!="function")throw new q9e("Argument agent must implement Agent");Object.defineProperty(globalThis,jZ,{value:e,writable:!0,enumerable:!1,configurable:!1})}function WZ(){return globalThis[jZ]}zZ.exports={setGlobalDispatcher:JZ,getGlobalDispatcher:WZ}});var PI=b((uAt,XZ)=>{"use strict";XZ.exports=class{#e;constructor(t){if(typeof t!="object"||t===null)throw new TypeError("handler must be an object");this.#e=t}onConnect(...t){return this.#e.onConnect?.(...t)}onError(...t){return this.#e.onError?.(...t)}onUpgrade(...t){return this.#e.onUpgrade?.(...t)}onResponseStarted(...t){return this.#e.onResponseStarted?.(...t)}onHeaders(...t){return this.#e.onHeaders?.(...t)}onData(...t){return this.#e.onData?.(...t)}onComplete(...t){return this.#e.onComplete?.(...t)}onBodySent(...t){return this.#e.onBodySent?.(...t)}}});var ZZ=b((lAt,KZ)=>{"use strict";var Y9e=mI();KZ.exports=e=>{let t=e?.maxRedirections;return r=>function(s,i){let{maxRedirections:o=t,...a}=s;if(!o)return r(s,i);let c=new Y9e(r,o,s,i);return r(a,c)}}});var tee=b((AAt,eee)=>{"use strict";var $9e=wI();eee.exports=e=>t=>function(n,s){return t(n,new $9e({...n,retryOptions:{...e,...n.retryOptions}},{handler:s,dispatch:t}))}});var nee=b((fAt,ree)=>{"use strict";var G9e=Ve(),{InvalidArgumentError:j9e,RequestAbortedError:J9e}=ht(),W9e=PI(),wD=class extends W9e{#e=1024*1024;#t=null;#s=!1;#n=!1;#r=0;#i=null;#o=null;constructor({maxSize:t},r){if(super(r),t!=null&&(!Number.isFinite(t)||t<1))throw new j9e("maxSize must be a number greater than 0");this.#e=t??this.#e,this.#o=r}onConnect(t){this.#t=t,this.#o.onConnect(this.#a.bind(this))}#a(t){this.#n=!0,this.#i=t}onHeaders(t,r,n,s){let o=G9e.parseHeaders(r)["content-length"];if(o!=null&&o>this.#e)throw new J9e(`Response size (${o}) larger than maxSize (${this.#e})`);return this.#n?!0:this.#o.onHeaders(t,r,n,s)}onError(t){this.#s||(t=this.#i??t,this.#o.onError(t))}onData(t){return this.#r=this.#r+t.length,this.#r>=this.#e&&(this.#s=!0,this.#n?this.#o.onError(this.#i):this.#o.onComplete([])),!0}onComplete(t){if(!this.#s){if(this.#n){this.#o.onError(this.reason);return}this.#o.onComplete(t)}}};function z9e({maxSize:e}={maxSize:1024*1024}){return t=>function(n,s){let{dumpMaxSize:i=e}=n,o=new wD({maxSize:i},s);return t(n,o)}}ree.exports=z9e});var oee=b((dAt,iee)=>{"use strict";var{isIP:X9e}=require("node:net"),{lookup:K9e}=require("node:dns"),Z9e=PI(),{InvalidArgumentError:af,InformationalError:eHe}=ht(),see=Math.pow(2,31)-1,SD=class{#e=0;#t=0;#s=new Map;dualStack=!0;affinity=null;lookup=null;pick=null;constructor(t){this.#e=t.maxTTL,this.#t=t.maxItems,this.dualStack=t.dualStack,this.affinity=t.affinity,this.lookup=t.lookup??this.#n,this.pick=t.pick??this.#r}get full(){return this.#s.size===this.#t}runLookup(t,r,n){let s=this.#s.get(t.hostname);if(s==null&&this.full){n(null,t.origin);return}let i={affinity:this.affinity,dualStack:this.dualStack,lookup:this.lookup,pick:this.pick,...r.dns,maxTTL:this.#e,maxItems:this.#t};if(s==null)this.lookup(t,i,(o,a)=>{if(o||a==null||a.length===0){n(o??new eHe("No DNS entries found"));return}this.setRecords(t,a);let c=this.#s.get(t.hostname),u=this.pick(t,c,i.affinity),l;typeof u.port=="number"?l=`:${u.port}`:t.port!==""?l=`:${t.port}`:l="",n(null,`${t.protocol}//${u.family===6?`[${u.address}]`:u.address}${l}`)});else{let o=this.pick(t,s,i.affinity);if(o==null){this.#s.delete(t.hostname),this.runLookup(t,r,n);return}let a;typeof o.port=="number"?a=`:${o.port}`:t.port!==""?a=`:${t.port}`:a="",n(null,`${t.protocol}//${o.family===6?`[${o.address}]`:o.address}${a}`)}}#n(t,r,n){K9e(t.hostname,{all:!0,family:this.dualStack===!1?this.affinity:0,order:"ipv4first"},(s,i)=>{if(s)return n(s);let o=new Map;for(let a of i)o.set(`${a.address}:${a.family}`,a);n(null,o.values())})}#r(t,r,n){let s=null,{records:i,offset:o}=r,a;if(this.dualStack?(n==null&&(o==null||o===see?(r.offset=0,n=4):(r.offset++,n=(r.offset&1)===1?6:4)),i[n]!=null&&i[n].ips.length>0?a=i[n]:a=i[n===4?6:4]):a=i[n],a==null||a.ips.length===0)return s;a.offset==null||a.offset===see?a.offset=0:a.offset++;let c=a.offset%a.ips.length;return s=a.ips[c]??null,s==null?s:Date.now()-s.timestamp>s.ttl?(a.ips.splice(c,1),this.pick(t,r,n)):s}setRecords(t,r){let n=Date.now(),s={records:{4:null,6:null}};for(let i of r){i.timestamp=n,typeof i.ttl=="number"?i.ttl=Math.min(i.ttl,this.#e):i.ttl=this.#e;let o=s.records[i.family]??{ips:[]};o.ips.push(i),s.records[i.family]=o}this.#s.set(t.hostname,s)}getHandler(t,r){return new _D(this,t,r)}},_D=class extends Z9e{#e=null;#t=null;#s=null;#n=null;#r=null;constructor(t,{origin:r,handler:n,dispatch:s},i){super(n),this.#r=r,this.#n=n,this.#t={...i},this.#e=t,this.#s=s}onError(t){switch(t.code){case"ETIMEDOUT":case"ECONNREFUSED":{if(this.#e.dualStack){this.#e.runLookup(this.#r,this.#t,(r,n)=>{if(r)return this.#n.onError(r);let s={...this.#t,origin:n};this.#s(s,this)});return}this.#n.onError(t);return}case"ENOTFOUND":this.#e.deleteRecord(this.#r);default:this.#n.onError(t);break}}};iee.exports=e=>{if(e?.maxTTL!=null&&(typeof e?.maxTTL!="number"||e?.maxTTL<0))throw new af("Invalid maxTTL. Must be a positive number");if(e?.maxItems!=null&&(typeof e?.maxItems!="number"||e?.maxItems<1))throw new af("Invalid maxItems. Must be a positive number and greater than zero");if(e?.affinity!=null&&e?.affinity!==4&&e?.affinity!==6)throw new af("Invalid affinity. Must be either 4 or 6");if(e?.dualStack!=null&&typeof e?.dualStack!="boolean")throw new af("Invalid dualStack. Must be a boolean");if(e?.lookup!=null&&typeof e?.lookup!="function")throw new af("Invalid lookup. Must be a function");if(e?.pick!=null&&typeof e?.pick!="function")throw new af("Invalid pick. Must be a function");let t=e?.dualStack??!0,r;t?r=e?.affinity??null:r=e?.affinity??4;let n={maxTTL:e?.maxTTL??1e4,lookup:e?.lookup??null,pick:e?.pick??null,dualStack:t,affinity:r,maxItems:e?.maxItems??1/0},s=new SD(n);return i=>function(a,c){let u=a.origin.constructor===URL?a.origin:new URL(a.origin);return X9e(u.hostname)!==0?i(a,c):(s.runLookup(u,a,(l,A)=>{if(l)return c.onError(l);let f=null;f={...a,servername:u.hostname,origin:A,headers:{host:u.hostname,...a.headers}},i(f,s.getHandler({origin:u,dispatch:i,handler:c},a))}),!0)}}});var Tu=b((hAt,dee)=>{"use strict";var{kConstruct:tHe}=Ot(),{kEnumerableProperty:cf}=Ve(),{iteratorMixin:rHe,isValidHeaderName:$0,isValidHeaderValue:cee}=Jn(),{webidl:it}=Or(),RD=require("node:assert"),UI=require("node:util"),cr=Symbol("headers map"),Xn=Symbol("headers map sorted");function aee(e){return e===10||e===13||e===9||e===32}function uee(e){let t=0,r=e.length;for(;r>t&&aee(e.charCodeAt(r-1));)--r;for(;r>t&&aee(e.charCodeAt(t));)++t;return t===0&&r===e.length?e:e.substring(t,r)}function lee(e,t){if(Array.isArray(t))for(let r=0;r>","record"]})}function DD(e,t,r){if(r=uee(r),$0(t)){if(!cee(r))throw it.errors.invalidArgument({prefix:"Headers.append",value:r,type:"header value"})}else throw it.errors.invalidArgument({prefix:"Headers.append",value:t,type:"header name"});if(fee(e)==="immutable")throw new TypeError("immutable");return ND(e).append(t,r,!1)}function Aee(e,t){return e[0]>1),r[u][0]<=l[0]?c=u+1:a=u;if(i!==u){for(o=i;o>c;)r[o]=r[--o];r[c]=l}}if(!n.next().done)throw new TypeError("Unreachable");return r}else{let n=0;for(let{0:s,1:{value:i}}of this[cr])r[n++]=[s,i],RD(i!==null);return r.sort(Aee)}}},fi=class e{#e;#t;constructor(t=void 0){it.util.markAsUncloneable(this),t!==tHe&&(this.#t=new HI,this.#e="none",t!==void 0&&(t=it.converters.HeadersInit(t,"Headers contructor","init"),lee(this,t)))}append(t,r){it.brandCheck(this,e),it.argumentLengthCheck(arguments,2,"Headers.append");let n="Headers.append";return t=it.converters.ByteString(t,n,"name"),r=it.converters.ByteString(r,n,"value"),DD(this,t,r)}delete(t){if(it.brandCheck(this,e),it.argumentLengthCheck(arguments,1,"Headers.delete"),t=it.converters.ByteString(t,"Headers.delete","name"),!$0(t))throw it.errors.invalidArgument({prefix:"Headers.delete",value:t,type:"header name"});if(this.#e==="immutable")throw new TypeError("immutable");this.#t.contains(t,!1)&&this.#t.delete(t,!1)}get(t){it.brandCheck(this,e),it.argumentLengthCheck(arguments,1,"Headers.get");let r="Headers.get";if(t=it.converters.ByteString(t,r,"name"),!$0(t))throw it.errors.invalidArgument({prefix:r,value:t,type:"header name"});return this.#t.get(t,!1)}has(t){it.brandCheck(this,e),it.argumentLengthCheck(arguments,1,"Headers.has");let r="Headers.has";if(t=it.converters.ByteString(t,r,"name"),!$0(t))throw it.errors.invalidArgument({prefix:r,value:t,type:"header name"});return this.#t.contains(t,!1)}set(t,r){it.brandCheck(this,e),it.argumentLengthCheck(arguments,2,"Headers.set");let n="Headers.set";if(t=it.converters.ByteString(t,n,"name"),r=it.converters.ByteString(r,n,"value"),r=uee(r),$0(t)){if(!cee(r))throw it.errors.invalidArgument({prefix:n,value:r,type:"header value"})}else throw it.errors.invalidArgument({prefix:n,value:t,type:"header name"});if(this.#e==="immutable")throw new TypeError("immutable");this.#t.set(t,r,!1)}getSetCookie(){it.brandCheck(this,e);let t=this.#t.cookies;return t?[...t]:[]}get[Xn](){if(this.#t[Xn])return this.#t[Xn];let t=[],r=this.#t.toSortedArray(),n=this.#t.cookies;if(n===null||n.length===1)return this.#t[Xn]=r;for(let s=0;s>"](e,t,r,n.bind(e)):it.converters["record"](e,t,r)}throw it.errors.conversionFailed({prefix:"Headers constructor",argument:"Argument 1",types:["sequence>","record"]})};dee.exports={fill:lee,compareHeaderName:Aee,Headers:fi,HeadersList:HI,getHeadersGuard:fee,setHeadersGuard:nHe,setHeadersList:sHe,getHeadersList:ND}});var j0=b((pAt,Bee)=>{"use strict";var{Headers:Cee,HeadersList:hee,fill:iHe,getHeadersGuard:oHe,setHeadersGuard:yee,setHeadersList:Iee}=Tu(),{extractBody:pee,cloneBody:aHe,mixinBody:cHe,hasFinalizationRegistry:uHe,streamRegistry:lHe,bodyUnusable:AHe}=VA(),kD=Ve(),gee=require("node:util"),{kEnumerableProperty:Kn}=kD,{isValidReasonPhrase:fHe,isCancelled:dHe,isAborted:hHe,isBlobLike:pHe,serializeJavascriptValueToJSONString:gHe,isErrorLike:mHe,isomorphicEncode:EHe,environmentSettingsObject:CHe}=Jn(),{redirectStatusSet:yHe,nullBodyStatus:IHe}=d0(),{kState:Gt,kHeaders:Yo}=Ya(),{webidl:Me}=Or(),{FormData:bHe}=C0(),{URLSerializer:mee}=Dn(),{kConstruct:VI}=Ot(),FD=require("node:assert"),{types:BHe}=require("node:util"),xHe=new TextEncoder("utf-8"),wu=class e{static error(){return G0(YI(),"immutable")}static json(t,r={}){Me.argumentLengthCheck(arguments,1,"Response.json"),r!==null&&(r=Me.converters.ResponseInit(r));let n=xHe.encode(gHe(t)),s=pee(n),i=G0(uf({}),"response");return Eee(i,r,{body:s[0],type:"application/json"}),i}static redirect(t,r=302){Me.argumentLengthCheck(arguments,1,"Response.redirect"),t=Me.converters.USVString(t),r=Me.converters["unsigned short"](r);let n;try{n=new URL(t,CHe.settingsObject.baseUrl)}catch(o){throw new TypeError(`Failed to parse URL from ${t}`,{cause:o})}if(!yHe.has(r))throw new RangeError(`Invalid status code ${r}`);let s=G0(uf({}),"immutable");s[Gt].status=r;let i=EHe(mee(n));return s[Gt].headersList.append("location",i,!0),s}constructor(t=null,r={}){if(Me.util.markAsUncloneable(this),t===VI)return;t!==null&&(t=Me.converters.BodyInit(t)),r=Me.converters.ResponseInit(r),this[Gt]=uf({}),this[Yo]=new Cee(VI),yee(this[Yo],"response"),Iee(this[Yo],this[Gt].headersList);let n=null;if(t!=null){let[s,i]=pee(t);n={body:s,type:i}}Eee(this,r,n)}get type(){return Me.brandCheck(this,e),this[Gt].type}get url(){Me.brandCheck(this,e);let t=this[Gt].urlList,r=t[t.length-1]??null;return r===null?"":mee(r,!0)}get redirected(){return Me.brandCheck(this,e),this[Gt].urlList.length>1}get status(){return Me.brandCheck(this,e),this[Gt].status}get ok(){return Me.brandCheck(this,e),this[Gt].status>=200&&this[Gt].status<=299}get statusText(){return Me.brandCheck(this,e),this[Gt].statusText}get headers(){return Me.brandCheck(this,e),this[Yo]}get body(){return Me.brandCheck(this,e),this[Gt].body?this[Gt].body.stream:null}get bodyUsed(){return Me.brandCheck(this,e),!!this[Gt].body&&kD.isDisturbed(this[Gt].body.stream)}clone(){if(Me.brandCheck(this,e),AHe(this))throw Me.errors.exception({header:"Response.clone",message:"Body has already been consumed."});let t=LD(this[Gt]);return G0(t,oHe(this[Yo]))}[gee.inspect.custom](t,r){r.depth===null&&(r.depth=2),r.colors??=!0;let n={status:this.status,statusText:this.statusText,headers:this.headers,body:this.body,bodyUsed:this.bodyUsed,ok:this.ok,redirected:this.redirected,type:this.type,url:this.url};return`Response ${gee.formatWithOptions(r,n)}`}};cHe(wu);Object.defineProperties(wu.prototype,{type:Kn,url:Kn,status:Kn,ok:Kn,redirected:Kn,statusText:Kn,headers:Kn,clone:Kn,body:Kn,bodyUsed:Kn,[Symbol.toStringTag]:{value:"Response",configurable:!0}});Object.defineProperties(wu,{json:Kn,redirect:Kn,error:Kn});function LD(e){if(e.internalResponse)return bee(LD(e.internalResponse),e.type);let t=uf({...e,body:null});return e.body!=null&&(t.body=aHe(t,e.body)),t}function uf(e){return{aborted:!1,rangeRequested:!1,timingAllowPassed:!1,requestIncludesCredentials:!1,type:"default",status:200,timingInfo:null,cacheState:"",statusText:"",...e,headersList:e?.headersList?new hee(e?.headersList):new hee,urlList:e?.urlList?[...e.urlList]:[]}}function YI(e){let t=mHe(e);return uf({type:"error",status:0,error:t?e:new Error(e&&String(e)),aborted:e&&e.name==="AbortError"})}function vHe(e){return e.type==="error"&&e.status===0}function qI(e,t){return t={internalResponse:e,...t},new Proxy(e,{get(r,n){return n in t?t[n]:r[n]},set(r,n,s){return FD(!(n in t)),r[n]=s,!0}})}function bee(e,t){if(t==="basic")return qI(e,{type:"basic",headersList:e.headersList});if(t==="cors")return qI(e,{type:"cors",headersList:e.headersList});if(t==="opaque")return qI(e,{type:"opaque",urlList:Object.freeze([]),status:0,statusText:"",body:null});if(t==="opaqueredirect")return qI(e,{type:"opaqueredirect",status:0,statusText:"",headersList:[],body:null});FD(!1)}function QHe(e,t=null){return FD(dHe(e)),hHe(e)?YI(Object.assign(new DOMException("The operation was aborted.","AbortError"),{cause:t})):YI(Object.assign(new DOMException("Request was cancelled."),{cause:t}))}function Eee(e,t,r){if(t.status!==null&&(t.status<200||t.status>599))throw new RangeError('init["status"] must be in the range of 200 to 599, inclusive.');if("statusText"in t&&t.statusText!=null&&!fHe(String(t.statusText)))throw new TypeError("Invalid statusText");if("status"in t&&t.status!=null&&(e[Gt].status=t.status),"statusText"in t&&t.statusText!=null&&(e[Gt].statusText=t.statusText),"headers"in t&&t.headers!=null&&iHe(e[Yo],t.headers),r){if(IHe.includes(e.status))throw Me.errors.exception({header:"Response constructor",message:`Invalid response status code ${e.status}`});e[Gt].body=r.body,r.type!=null&&!e[Gt].headersList.contains("content-type",!0)&&e[Gt].headersList.append("content-type",r.type,!0)}}function G0(e,t){let r=new wu(VI);return r[Gt]=e,r[Yo]=new Cee(VI),Iee(r[Yo],e.headersList),yee(r[Yo],t),uHe&&e.body?.stream&&lHe.register(r,new WeakRef(e.body.stream)),r}Me.converters.ReadableStream=Me.interfaceConverter(ReadableStream);Me.converters.FormData=Me.interfaceConverter(bHe);Me.converters.URLSearchParams=Me.interfaceConverter(URLSearchParams);Me.converters.XMLHttpRequestBodyInit=function(e,t,r){return typeof e=="string"?Me.converters.USVString(e,t,r):pHe(e)?Me.converters.Blob(e,t,r,{strict:!1}):ArrayBuffer.isView(e)||BHe.isArrayBuffer(e)?Me.converters.BufferSource(e,t,r):kD.isFormDataLike(e)?Me.converters.FormData(e,t,r,{strict:!1}):e instanceof URLSearchParams?Me.converters.URLSearchParams(e,t,r):Me.converters.DOMString(e,t,r)};Me.converters.BodyInit=function(e,t,r){return e instanceof ReadableStream?Me.converters.ReadableStream(e,t,r):e?.[Symbol.asyncIterator]?e:Me.converters.XMLHttpRequestBodyInit(e,t,r)};Me.converters.ResponseInit=Me.dictionaryConverter([{key:"status",converter:Me.converters["unsigned short"],defaultValue:()=>200},{key:"statusText",converter:Me.converters.ByteString,defaultValue:()=>""},{key:"headers",converter:Me.converters.HeadersInit}]);Bee.exports={isNetworkError:vHe,makeNetworkError:YI,makeResponse:uf,makeAppropriateNetworkError:QHe,filterResponse:bee,Response:wu,cloneResponse:LD,fromInnerResponse:G0}});var Tee=b((gAt,Qee)=>{"use strict";var{kConnected:xee,kSize:vee}=Ot(),OD=class{constructor(t){this.value=t}deref(){return this.value[xee]===0&&this.value[vee]===0?void 0:this.value}},MD=class{constructor(t){this.finalizer=t}register(t,r){t.on&&t.on("disconnect",()=>{t[xee]===0&&t[vee]===0&&this.finalizer(r)})}unregister(t){}};Qee.exports=function(){return process.env.NODE_V8_COVERAGE&&process.version.startsWith("v18")?(process._rawDebug("Using compatibility WeakRef and FinalizationRegistry"),{WeakRef:OD,FinalizationRegistry:MD}):{WeakRef,FinalizationRegistry}}});var lf=b((mAt,qee)=>{"use strict";var{extractBody:THe,mixinBody:wHe,cloneBody:SHe,bodyUnusable:wee}=VA(),{Headers:Oee,fill:_He,HeadersList:JI,setHeadersGuard:UD,getHeadersGuard:RHe,setHeadersList:Mee,getHeadersList:See}=Tu(),{FinalizationRegistry:DHe}=Tee()(),GI=Ve(),_ee=require("node:util"),{isValidHTTPToken:NHe,sameOrigin:Ree,environmentSettingsObject:$I}=Jn(),{forbiddenMethodsSet:kHe,corsSafeListedMethodsSet:FHe,referrerPolicy:LHe,requestRedirect:OHe,requestMode:MHe,requestCredentials:PHe,requestCache:UHe,requestDuplex:HHe}=d0(),{kEnumerableProperty:ur,normalizedMethodRecordsBase:qHe,normalizedMethodRecords:VHe}=GI,{kHeaders:Zn,kSignal:jI,kState:Lt,kDispatcher:PD}=Ya(),{webidl:xe}=Or(),{URLSerializer:YHe}=Dn(),{kConstruct:WI}=Ot(),$He=require("node:assert"),{getMaxListeners:Dee,setMaxListeners:Nee,getEventListeners:GHe,defaultMaxListeners:kee}=require("node:events"),jHe=Symbol("abortController"),Pee=new DHe(({signal:e,abort:t})=>{e.removeEventListener("abort",t)}),zI=new WeakMap;function Fee(e){return t;function t(){let r=e.deref();if(r!==void 0){Pee.unregister(t),this.removeEventListener("abort",t),r.abort(this.reason);let n=zI.get(r.signal);if(n!==void 0){if(n.size!==0){for(let s of n){let i=s.deref();i!==void 0&&i.abort(this.reason)}n.clear()}zI.delete(r.signal)}}}}var Lee=!1,tc=class e{constructor(t,r={}){if(xe.util.markAsUncloneable(this),t===WI)return;let n="Request constructor";xe.argumentLengthCheck(arguments,1,n),t=xe.converters.RequestInfo(t,n,"input"),r=xe.converters.RequestInit(r,n,"init");let s=null,i=null,o=$I.settingsObject.baseUrl,a=null;if(typeof t=="string"){this[PD]=r.dispatcher;let m;try{m=new URL(t,o)}catch(I){throw new TypeError("Failed to parse URL from "+t,{cause:I})}if(m.username||m.password)throw new TypeError("Request cannot be constructed from a URL that includes credentials: "+t);s=XI({urlList:[m]}),i="cors"}else this[PD]=r.dispatcher||t[PD],$He(t instanceof e),s=t[Lt],a=t[jI];let c=$I.settingsObject.origin,u="client";if(s.window?.constructor?.name==="EnvironmentSettingsObject"&&Ree(s.window,c)&&(u=s.window),r.window!=null)throw new TypeError(`'window' option '${u}' must be null`);"window"in r&&(u="no-window"),s=XI({method:s.method,headersList:s.headersList,unsafeRequest:s.unsafeRequest,client:$I.settingsObject,window:u,priority:s.priority,origin:s.origin,referrer:s.referrer,referrerPolicy:s.referrerPolicy,mode:s.mode,credentials:s.credentials,cache:s.cache,redirect:s.redirect,integrity:s.integrity,keepalive:s.keepalive,reloadNavigation:s.reloadNavigation,historyNavigation:s.historyNavigation,urlList:[...s.urlList]});let l=Object.keys(r).length!==0;if(l&&(s.mode==="navigate"&&(s.mode="same-origin"),s.reloadNavigation=!1,s.historyNavigation=!1,s.origin="client",s.referrer="client",s.referrerPolicy="",s.url=s.urlList[s.urlList.length-1],s.urlList=[s.url]),r.referrer!==void 0){let m=r.referrer;if(m==="")s.referrer="no-referrer";else{let I;try{I=new URL(m,o)}catch(y){throw new TypeError(`Referrer "${m}" is not a valid URL.`,{cause:y})}I.protocol==="about:"&&I.hostname==="client"||c&&!Ree(I,$I.settingsObject.baseUrl)?s.referrer="client":s.referrer=I}}r.referrerPolicy!==void 0&&(s.referrerPolicy=r.referrerPolicy);let A;if(r.mode!==void 0?A=r.mode:A=i,A==="navigate")throw xe.errors.exception({header:"Request constructor",message:"invalid request mode navigate."});if(A!=null&&(s.mode=A),r.credentials!==void 0&&(s.credentials=r.credentials),r.cache!==void 0&&(s.cache=r.cache),s.cache==="only-if-cached"&&s.mode!=="same-origin")throw new TypeError("'only-if-cached' can be set only with 'same-origin' mode");if(r.redirect!==void 0&&(s.redirect=r.redirect),r.integrity!=null&&(s.integrity=String(r.integrity)),r.keepalive!==void 0&&(s.keepalive=!!r.keepalive),r.method!==void 0){let m=r.method,I=VHe[m];if(I!==void 0)s.method=I;else{if(!NHe(m))throw new TypeError(`'${m}' is not a valid HTTP method.`);let y=m.toUpperCase();if(kHe.has(y))throw new TypeError(`'${m}' HTTP method is unsupported.`);m=qHe[y]??m,s.method=m}!Lee&&s.method==="patch"&&(process.emitWarning("Using `patch` is highly likely to result in a `405 Method Not Allowed`. `PATCH` is much more likely to succeed.",{code:"UNDICI-FETCH-patch"}),Lee=!0)}r.signal!==void 0&&(a=r.signal),this[Lt]=s;let f=new AbortController;if(this[jI]=f.signal,a!=null){if(!a||typeof a.aborted!="boolean"||typeof a.addEventListener!="function")throw new TypeError("Failed to construct 'Request': member signal is not of type AbortSignal.");if(a.aborted)f.abort(a.reason);else{this[jHe]=f;let m=new WeakRef(f),I=Fee(m);try{(typeof Dee=="function"&&Dee(a)===kee||GHe(a,"abort").length>=kee)&&Nee(1500,a)}catch{}GI.addAbortListener(a,I),Pee.register(f,{signal:a,abort:I},I)}}if(this[Zn]=new Oee(WI),Mee(this[Zn],s.headersList),UD(this[Zn],"request"),A==="no-cors"){if(!FHe.has(s.method))throw new TypeError(`'${s.method} is unsupported in no-cors mode.`);UD(this[Zn],"request-no-cors")}if(l){let m=See(this[Zn]),I=r.headers!==void 0?r.headers:new JI(m);if(m.clear(),I instanceof JI){for(let{name:y,value:E}of I.rawValues())m.append(y,E,!1);m.cookies=I.cookies}else _He(this[Zn],I)}let d=t instanceof e?t[Lt].body:null;if((r.body!=null||d!=null)&&(s.method==="GET"||s.method==="HEAD"))throw new TypeError("Request with GET/HEAD method cannot have body.");let h=null;if(r.body!=null){let[m,I]=THe(r.body,s.keepalive);h=m,I&&!See(this[Zn]).contains("content-type",!0)&&this[Zn].append("content-type",I)}let p=h??d;if(p!=null&&p.source==null){if(h!=null&&r.duplex==null)throw new TypeError("RequestInit: duplex option is required when sending a body.");if(s.mode!=="same-origin"&&s.mode!=="cors")throw new TypeError('If request is made from ReadableStream, mode should be "same-origin" or "cors"');s.useCORSPreflightFlag=!0}let C=p;if(h==null&&d!=null){if(wee(t))throw new TypeError("Cannot construct a Request with a Request object that has already been used.");let m=new TransformStream;d.stream.pipeThrough(m),C={source:d.source,length:d.length,stream:m.readable}}this[Lt].body=C}get method(){return xe.brandCheck(this,e),this[Lt].method}get url(){return xe.brandCheck(this,e),YHe(this[Lt].url)}get headers(){return xe.brandCheck(this,e),this[Zn]}get destination(){return xe.brandCheck(this,e),this[Lt].destination}get referrer(){return xe.brandCheck(this,e),this[Lt].referrer==="no-referrer"?"":this[Lt].referrer==="client"?"about:client":this[Lt].referrer.toString()}get referrerPolicy(){return xe.brandCheck(this,e),this[Lt].referrerPolicy}get mode(){return xe.brandCheck(this,e),this[Lt].mode}get credentials(){return this[Lt].credentials}get cache(){return xe.brandCheck(this,e),this[Lt].cache}get redirect(){return xe.brandCheck(this,e),this[Lt].redirect}get integrity(){return xe.brandCheck(this,e),this[Lt].integrity}get keepalive(){return xe.brandCheck(this,e),this[Lt].keepalive}get isReloadNavigation(){return xe.brandCheck(this,e),this[Lt].reloadNavigation}get isHistoryNavigation(){return xe.brandCheck(this,e),this[Lt].historyNavigation}get signal(){return xe.brandCheck(this,e),this[jI]}get body(){return xe.brandCheck(this,e),this[Lt].body?this[Lt].body.stream:null}get bodyUsed(){return xe.brandCheck(this,e),!!this[Lt].body&&GI.isDisturbed(this[Lt].body.stream)}get duplex(){return xe.brandCheck(this,e),"half"}clone(){if(xe.brandCheck(this,e),wee(this))throw new TypeError("unusable");let t=Uee(this[Lt]),r=new AbortController;if(this.signal.aborted)r.abort(this.signal.reason);else{let n=zI.get(this.signal);n===void 0&&(n=new Set,zI.set(this.signal,n));let s=new WeakRef(r);n.add(s),GI.addAbortListener(r.signal,Fee(s))}return Hee(t,r.signal,RHe(this[Zn]))}[_ee.inspect.custom](t,r){r.depth===null&&(r.depth=2),r.colors??=!0;let n={method:this.method,url:this.url,headers:this.headers,destination:this.destination,referrer:this.referrer,referrerPolicy:this.referrerPolicy,mode:this.mode,credentials:this.credentials,cache:this.cache,redirect:this.redirect,integrity:this.integrity,keepalive:this.keepalive,isReloadNavigation:this.isReloadNavigation,isHistoryNavigation:this.isHistoryNavigation,signal:this.signal};return`Request ${_ee.formatWithOptions(r,n)}`}};wHe(tc);function XI(e){return{method:e.method??"GET",localURLsOnly:e.localURLsOnly??!1,unsafeRequest:e.unsafeRequest??!1,body:e.body??null,client:e.client??null,reservedClient:e.reservedClient??null,replacesClientId:e.replacesClientId??"",window:e.window??"client",keepalive:e.keepalive??!1,serviceWorkers:e.serviceWorkers??"all",initiator:e.initiator??"",destination:e.destination??"",priority:e.priority??null,origin:e.origin??"client",policyContainer:e.policyContainer??"client",referrer:e.referrer??"client",referrerPolicy:e.referrerPolicy??"",mode:e.mode??"no-cors",useCORSPreflightFlag:e.useCORSPreflightFlag??!1,credentials:e.credentials??"same-origin",useCredentials:e.useCredentials??!1,cache:e.cache??"default",redirect:e.redirect??"follow",integrity:e.integrity??"",cryptoGraphicsNonceMetadata:e.cryptoGraphicsNonceMetadata??"",parserMetadata:e.parserMetadata??"",reloadNavigation:e.reloadNavigation??!1,historyNavigation:e.historyNavigation??!1,userActivation:e.userActivation??!1,taintedOrigin:e.taintedOrigin??!1,redirectCount:e.redirectCount??0,responseTainting:e.responseTainting??"basic",preventNoCacheCacheControlHeaderModification:e.preventNoCacheCacheControlHeaderModification??!1,done:e.done??!1,timingAllowFailed:e.timingAllowFailed??!1,urlList:e.urlList,url:e.urlList[0],headersList:e.headersList?new JI(e.headersList):new JI}}function Uee(e){let t=XI({...e,body:null});return e.body!=null&&(t.body=SHe(t,e.body)),t}function Hee(e,t,r){let n=new tc(WI);return n[Lt]=e,n[jI]=t,n[Zn]=new Oee(WI),Mee(n[Zn],e.headersList),UD(n[Zn],r),n}Object.defineProperties(tc.prototype,{method:ur,url:ur,headers:ur,redirect:ur,clone:ur,signal:ur,duplex:ur,destination:ur,body:ur,bodyUsed:ur,isHistoryNavigation:ur,isReloadNavigation:ur,keepalive:ur,integrity:ur,cache:ur,credentials:ur,attribute:ur,referrerPolicy:ur,referrer:ur,mode:ur,[Symbol.toStringTag]:{value:"Request",configurable:!0}});xe.converters.Request=xe.interfaceConverter(tc);xe.converters.RequestInfo=function(e,t,r){return typeof e=="string"?xe.converters.USVString(e,t,r):e instanceof tc?xe.converters.Request(e,t,r):xe.converters.USVString(e,t,r)};xe.converters.AbortSignal=xe.interfaceConverter(AbortSignal);xe.converters.RequestInit=xe.dictionaryConverter([{key:"method",converter:xe.converters.ByteString},{key:"headers",converter:xe.converters.HeadersInit},{key:"body",converter:xe.nullableConverter(xe.converters.BodyInit)},{key:"referrer",converter:xe.converters.USVString},{key:"referrerPolicy",converter:xe.converters.DOMString,allowedValues:LHe},{key:"mode",converter:xe.converters.DOMString,allowedValues:MHe},{key:"credentials",converter:xe.converters.DOMString,allowedValues:PHe},{key:"cache",converter:xe.converters.DOMString,allowedValues:UHe},{key:"redirect",converter:xe.converters.DOMString,allowedValues:OHe},{key:"integrity",converter:xe.converters.DOMString},{key:"keepalive",converter:xe.converters.boolean},{key:"signal",converter:xe.nullableConverter(e=>xe.converters.AbortSignal(e,"RequestInit","signal",{strict:!1}))},{key:"window",converter:xe.converters.any},{key:"duplex",converter:xe.converters.DOMString,allowedValues:HHe},{key:"dispatcher",converter:xe.converters.any}]);qee.exports={Request:tc,makeRequest:XI,fromInnerRequest:Hee,cloneRequest:Uee}});var W0=b((EAt,nte)=>{"use strict";var{makeNetworkError:Et,makeAppropriateNetworkError:KI,filterResponse:HD,makeResponse:ZI,fromInnerResponse:JHe}=j0(),{HeadersList:Vee}=Tu(),{Request:WHe,cloneRequest:zHe}=lf(),rc=require("node:zlib"),{bytesMatch:XHe,makePolicyContainer:KHe,clonePolicyContainer:ZHe,requestBadPort:eqe,TAOCheck:tqe,appendRequestOriginHeader:rqe,responseLocationURL:nqe,requestCurrentURL:Ki,setRequestReferrerPolicyOnRedirect:sqe,tryUpgradeRequestToAPotentiallyTrustworthyURL:iqe,createOpaqueTimingInfo:GD,appendFetchMetadata:oqe,corsCheck:aqe,crossOriginResourcePolicyCheck:cqe,determineRequestsReferrer:uqe,coarsenedSharedCurrentTime:J0,createDeferredPromise:lqe,isBlobLike:Aqe,sameOrigin:$D,isCancelled:Su,isAborted:Yee,isErrorLike:fqe,fullyReadBody:dqe,readableStreamClose:hqe,isomorphicEncode:eb,urlIsLocal:pqe,urlIsHttpHttpsScheme:jD,urlHasHttpsScheme:gqe,clampAndCoarsenConnectionTimingInfo:mqe,simpleRangeHeaderValue:Eqe,buildContentRange:Cqe,createInflate:yqe,extractMimeType:Iqe}=Jn(),{kState:Jee,kDispatcher:bqe}=Ya(),_u=require("node:assert"),{safelyExtractBody:JD,extractBody:$ee}=VA(),{redirectStatusSet:Wee,nullBodyStatus:zee,safeMethodsSet:Bqe,requestBodyHeader:xqe,subresourceSet:vqe}=d0(),Qqe=require("node:events"),{Readable:Tqe,pipeline:wqe,finished:Sqe}=require("node:stream"),{addAbortListener:_qe,isErrored:Rqe,isReadable:tb,bufferToLowerCasedHeaderName:Gee}=Ve(),{dataURLProcessor:Dqe,serializeAMimeType:Nqe,minimizeSupportedMimeType:kqe}=Dn(),{getGlobalDispatcher:Fqe}=MI(),{webidl:Lqe}=Or(),{STATUS_CODES:Oqe}=require("node:http"),Mqe=["GET","HEAD"],Pqe=typeof __UNDICI_IS_NODE__<"u"||typeof esbuildDetection<"u"?"node":"undici",qD,rb=class extends Qqe{constructor(t){super(),this.dispatcher=t,this.connection=null,this.dump=!1,this.state="ongoing"}terminate(t){this.state==="ongoing"&&(this.state="terminated",this.connection?.destroy(t),this.emit("terminated",t))}abort(t){this.state==="ongoing"&&(this.state="aborted",t||(t=new DOMException("The operation was aborted.","AbortError")),this.serializedAbortReason=t,this.connection?.destroy(t),this.emit("terminated",t))}};function Uqe(e){Xee(e,"fetch")}function Hqe(e,t=void 0){Lqe.argumentLengthCheck(arguments,1,"globalThis.fetch");let r=lqe(),n;try{n=new WHe(e,t)}catch(l){return r.reject(l),r.promise}let s=n[Jee];if(n.signal.aborted)return VD(r,s,null,n.signal.reason),r.promise;s.client.globalObject?.constructor?.name==="ServiceWorkerGlobalScope"&&(s.serviceWorkers="none");let o=null,a=!1,c=null;return _qe(n.signal,()=>{a=!0,_u(c!=null),c.abort(n.signal.reason);let l=o?.deref();VD(r,s,l,n.signal.reason)}),c=Zee({request:s,processResponseEndOfBody:Uqe,processResponse:l=>{if(!a){if(l.aborted){VD(r,s,o,c.serializedAbortReason);return}if(l.type==="error"){r.reject(new TypeError("fetch failed",{cause:l.error}));return}o=new WeakRef(JHe(l,"immutable")),r.resolve(o.deref()),r=null}},dispatcher:n[bqe]}),r.promise}function Xee(e,t="other"){if(e.type==="error"&&e.aborted||!e.urlList?.length)return;let r=e.urlList[0],n=e.timingInfo,s=e.cacheState;jD(r)&&n!==null&&(e.timingAllowPassed||(n=GD({startTime:n.startTime}),s=""),n.endTime=J0(),e.timingInfo=n,Kee(n,r.href,t,globalThis,s))}var Kee=performance.markResourceTiming;function VD(e,t,r,n){if(e&&e.reject(n),t.body!=null&&tb(t.body?.stream)&&t.body.stream.cancel(n).catch(i=>{if(i.code!=="ERR_INVALID_STATE")throw i}),r==null)return;let s=r[Jee];s.body!=null&&tb(s.body?.stream)&&s.body.stream.cancel(n).catch(i=>{if(i.code!=="ERR_INVALID_STATE")throw i})}function Zee({request:e,processRequestBodyChunkLength:t,processRequestEndOfBody:r,processResponse:n,processResponseEndOfBody:s,processResponseConsumeBody:i,useParallelQueue:o=!1,dispatcher:a=Fqe()}){_u(a);let c=null,u=!1;e.client!=null&&(c=e.client.globalObject,u=e.client.crossOriginIsolatedCapability);let l=J0(u),A=GD({startTime:l}),f={controller:new rb(a),request:e,timingInfo:A,processRequestBodyChunkLength:t,processRequestEndOfBody:r,processResponse:n,processResponseConsumeBody:i,processResponseEndOfBody:s,taskDestination:c,crossOriginIsolatedCapability:u};return _u(!e.body||e.body.stream),e.window==="client"&&(e.window=e.client?.globalObject?.constructor?.name==="Window"?e.client:"no-window"),e.origin==="client"&&(e.origin=e.client.origin),e.policyContainer==="client"&&(e.client!=null?e.policyContainer=ZHe(e.client.policyContainer):e.policyContainer=KHe()),e.headersList.contains("accept",!0)||e.headersList.append("accept","*/*",!0),e.headersList.contains("accept-language",!0)||e.headersList.append("accept-language","*",!0),e.priority,vqe.has(e.destination),ete(f).catch(d=>{f.controller.terminate(d)}),f.controller}async function ete(e,t=!1){let r=e.request,n=null;if(r.localURLsOnly&&!pqe(Ki(r))&&(n=Et("local URLs only")),iqe(r),eqe(r)==="blocked"&&(n=Et("bad port")),r.referrerPolicy===""&&(r.referrerPolicy=r.policyContainer.referrerPolicy),r.referrer!=="no-referrer"&&(r.referrer=uqe(r)),n===null&&(n=await(async()=>{let i=Ki(r);return $D(i,r.url)&&r.responseTainting==="basic"||i.protocol==="data:"||r.mode==="navigate"||r.mode==="websocket"?(r.responseTainting="basic",await jee(e)):r.mode==="same-origin"?Et('request mode cannot be "same-origin"'):r.mode==="no-cors"?r.redirect!=="follow"?Et('redirect mode cannot be "follow" for "no-cors" request'):(r.responseTainting="opaque",await jee(e)):jD(Ki(r))?(r.responseTainting="cors",await tte(e)):Et("URL scheme must be a HTTP(S) scheme")})()),t)return n;n.status!==0&&!n.internalResponse&&(r.responseTainting,r.responseTainting==="basic"?n=HD(n,"basic"):r.responseTainting==="cors"?n=HD(n,"cors"):r.responseTainting==="opaque"?n=HD(n,"opaque"):_u(!1));let s=n.status===0?n:n.internalResponse;if(s.urlList.length===0&&s.urlList.push(...r.urlList),r.timingAllowFailed||(n.timingAllowPassed=!0),n.type==="opaque"&&s.status===206&&s.rangeRequested&&!r.headers.contains("range",!0)&&(n=s=Et()),n.status!==0&&(r.method==="HEAD"||r.method==="CONNECT"||zee.includes(s.status))&&(s.body=null,e.controller.dump=!0),r.integrity){let i=a=>YD(e,Et(a));if(r.responseTainting==="opaque"||n.body==null){i(n.error);return}let o=a=>{if(!XHe(a,r.integrity)){i("integrity mismatch");return}n.body=JD(a)[0],YD(e,n)};await dqe(n.body,o,i)}else YD(e,n)}function jee(e){if(Su(e)&&e.request.redirectCount===0)return Promise.resolve(KI(e));let{request:t}=e,{protocol:r}=Ki(t);switch(r){case"about:":return Promise.resolve(Et("about scheme is not supported"));case"blob:":{qD||(qD=require("node:buffer").resolveObjectURL);let n=Ki(t);if(n.search.length!==0)return Promise.resolve(Et("NetworkError when attempting to fetch resource."));let s=qD(n.toString());if(t.method!=="GET"||!Aqe(s))return Promise.resolve(Et("invalid method"));let i=ZI(),o=s.size,a=eb(`${o}`),c=s.type;if(t.headersList.contains("range",!0)){i.rangeRequested=!0;let u=t.headersList.get("range",!0),l=Eqe(u,!0);if(l==="failure")return Promise.resolve(Et("failed to fetch the data URL"));let{rangeStartValue:A,rangeEndValue:f}=l;if(A===null)A=o-f,f=A+f-1;else{if(A>=o)return Promise.resolve(Et("Range start is greater than the blob's size."));(f===null||f>=o)&&(f=o-1)}let d=s.slice(A,f,c),h=$ee(d);i.body=h[0];let p=eb(`${d.size}`),C=Cqe(A,f,o);i.status=206,i.statusText="Partial Content",i.headersList.set("content-length",p,!0),i.headersList.set("content-type",c,!0),i.headersList.set("content-range",C,!0)}else{let u=$ee(s);i.statusText="OK",i.body=u[0],i.headersList.set("content-length",a,!0),i.headersList.set("content-type",c,!0)}return Promise.resolve(i)}case"data:":{let n=Ki(t),s=Dqe(n);if(s==="failure")return Promise.resolve(Et("failed to fetch the data URL"));let i=Nqe(s.mimeType);return Promise.resolve(ZI({statusText:"OK",headersList:[["content-type",{name:"Content-Type",value:i}]],body:JD(s.body)[0]}))}case"file:":return Promise.resolve(Et("not implemented... yet..."));case"http:":case"https:":return tte(e).catch(n=>Et(n));default:return Promise.resolve(Et("unknown scheme"))}}function qqe(e,t){e.request.done=!0,e.processResponseDone!=null&&queueMicrotask(()=>e.processResponseDone(t))}function YD(e,t){let r=e.timingInfo,n=()=>{let i=Date.now();e.request.destination==="document"&&(e.controller.fullTimingInfo=r),e.controller.reportTimingSteps=()=>{if(e.request.url.protocol!=="https:")return;r.endTime=i;let a=t.cacheState,c=t.bodyInfo;t.timingAllowPassed||(r=GD(r),a="");let u=0;if(e.request.mode!=="navigator"||!t.hasCrossOriginRedirects){u=t.status;let l=Iqe(t.headersList);l!=="failure"&&(c.contentType=kqe(l))}e.request.initiatorType!=null&&Kee(r,e.request.url.href,e.request.initiatorType,globalThis,a,c,u)};let o=()=>{e.request.done=!0,e.processResponseEndOfBody!=null&&queueMicrotask(()=>e.processResponseEndOfBody(t)),e.request.initiatorType!=null&&e.controller.reportTimingSteps()};queueMicrotask(()=>o())};e.processResponse!=null&&queueMicrotask(()=>{e.processResponse(t),e.processResponse=null});let s=t.type==="error"?t:t.internalResponse??t;s.body==null?n():Sqe(s.body.stream,()=>{n()})}async function tte(e){let t=e.request,r=null,n=null,s=e.timingInfo;if(t.serviceWorkers,r===null){if(t.redirect==="follow"&&(t.serviceWorkers="none"),n=r=await rte(e),t.responseTainting==="cors"&&aqe(t,r)==="failure")return Et("cors failure");tqe(t,r)==="failure"&&(t.timingAllowFailed=!0)}return(t.responseTainting==="opaque"||r.type==="opaque")&&cqe(t.origin,t.client,t.destination,n)==="blocked"?Et("blocked"):(Wee.has(n.status)&&(t.redirect!=="manual"&&e.controller.connection.destroy(void 0,!1),t.redirect==="error"?r=Et("unexpected redirect"):t.redirect==="manual"?r=n:t.redirect==="follow"?r=await Vqe(e,r):_u(!1)),r.timingInfo=s,r)}function Vqe(e,t){let r=e.request,n=t.internalResponse?t.internalResponse:t,s;try{if(s=nqe(n,Ki(r).hash),s==null)return t}catch(o){return Promise.resolve(Et(o))}if(!jD(s))return Promise.resolve(Et("URL scheme must be a HTTP(S) scheme"));if(r.redirectCount===20)return Promise.resolve(Et("redirect count exceeded"));if(r.redirectCount+=1,r.mode==="cors"&&(s.username||s.password)&&!$D(r,s))return Promise.resolve(Et('cross origin not allowed for request mode "cors"'));if(r.responseTainting==="cors"&&(s.username||s.password))return Promise.resolve(Et('URL cannot contain credentials for request mode "cors"'));if(n.status!==303&&r.body!=null&&r.body.source==null)return Promise.resolve(Et());if([301,302].includes(n.status)&&r.method==="POST"||n.status===303&&!Mqe.includes(r.method)){r.method="GET",r.body=null;for(let o of xqe)r.headersList.delete(o)}$D(Ki(r),s)||(r.headersList.delete("authorization",!0),r.headersList.delete("proxy-authorization",!0),r.headersList.delete("cookie",!0),r.headersList.delete("host",!0)),r.body!=null&&(_u(r.body.source!=null),r.body=JD(r.body.source)[0]);let i=e.timingInfo;return i.redirectEndTime=i.postRedirectStartTime=J0(e.crossOriginIsolatedCapability),i.redirectStartTime===0&&(i.redirectStartTime=i.startTime),r.urlList.push(s),sqe(r,n),ete(e,!0)}async function rte(e,t=!1,r=!1){let n=e.request,s=null,i=null,o=null,a=null,c=!1;n.window==="no-window"&&n.redirect==="error"?(s=e,i=n):(i=zHe(n),s={...e},s.request=i);let u=n.credentials==="include"||n.credentials==="same-origin"&&n.responseTainting==="basic",l=i.body?i.body.length:null,A=null;if(i.body==null&&["POST","PUT"].includes(i.method)&&(A="0"),l!=null&&(A=eb(`${l}`)),A!=null&&i.headersList.append("content-length",A,!0),l!=null&&i.keepalive,i.referrer instanceof URL&&i.headersList.append("referer",eb(i.referrer.href),!0),rqe(i),oqe(i),i.headersList.contains("user-agent",!0)||i.headersList.append("user-agent",Pqe),i.cache==="default"&&(i.headersList.contains("if-modified-since",!0)||i.headersList.contains("if-none-match",!0)||i.headersList.contains("if-unmodified-since",!0)||i.headersList.contains("if-match",!0)||i.headersList.contains("if-range",!0))&&(i.cache="no-store"),i.cache==="no-cache"&&!i.preventNoCacheCacheControlHeaderModification&&!i.headersList.contains("cache-control",!0)&&i.headersList.append("cache-control","max-age=0",!0),(i.cache==="no-store"||i.cache==="reload")&&(i.headersList.contains("pragma",!0)||i.headersList.append("pragma","no-cache",!0),i.headersList.contains("cache-control",!0)||i.headersList.append("cache-control","no-cache",!0)),i.headersList.contains("range",!0)&&i.headersList.append("accept-encoding","identity",!0),i.headersList.contains("accept-encoding",!0)||(gqe(Ki(i))?i.headersList.append("accept-encoding","br, gzip, deflate",!0):i.headersList.append("accept-encoding","gzip, deflate",!0)),i.headersList.delete("host",!0),a==null&&(i.cache="no-store"),i.cache!=="no-store"&&i.cache,o==null){if(i.cache==="only-if-cached")return Et("only if cached");let f=await Yqe(s,u,r);!Bqe.has(i.method)&&f.status>=200&&f.status<=399,c&&f.status,o==null&&(o=f)}if(o.urlList=[...i.urlList],i.headersList.contains("range",!0)&&(o.rangeRequested=!0),o.requestIncludesCredentials=u,o.status===407)return n.window==="no-window"?Et():Su(e)?KI(e):Et("proxy authentication required");if(o.status===421&&!r&&(n.body==null||n.body.source!=null)){if(Su(e))return KI(e);e.controller.connection.destroy(),o=await rte(e,t,!0)}return o}async function Yqe(e,t=!1,r=!1){_u(!e.controller.connection||e.controller.connection.destroyed),e.controller.connection={abort:null,destroyed:!1,destroy(h,p=!0){this.destroyed||(this.destroyed=!0,p&&this.abort?.(h??new DOMException("The operation was aborted.","AbortError")))}};let n=e.request,s=null,i=e.timingInfo;null==null&&(n.cache="no-store");let a=r?"yes":"no";n.mode;let c=null;if(n.body==null&&e.processRequestEndOfBody)queueMicrotask(()=>e.processRequestEndOfBody());else if(n.body!=null){let h=async function*(m){Su(e)||(yield m,e.processRequestBodyChunkLength?.(m.byteLength))},p=()=>{Su(e)||e.processRequestEndOfBody&&e.processRequestEndOfBody()},C=m=>{Su(e)||(m.name==="AbortError"?e.controller.abort():e.controller.terminate(m))};c=async function*(){try{for await(let m of n.body.stream)yield*h(m);p()}catch(m){C(m)}}()}try{let{body:h,status:p,statusText:C,headersList:m,socket:I}=await d({body:c});if(I)s=ZI({status:p,statusText:C,headersList:m,socket:I});else{let y=h[Symbol.asyncIterator]();e.controller.next=()=>y.next(),s=ZI({status:p,statusText:C,headersList:m})}}catch(h){return h.name==="AbortError"?(e.controller.connection.destroy(),KI(e,h)):Et(h)}let u=async()=>{await e.controller.resume()},l=h=>{Su(e)||e.controller.abort(h)},A=new ReadableStream({async start(h){e.controller.controller=h},async pull(h){await u(h)},async cancel(h){await l(h)},type:"bytes"});s.body={stream:A,source:null,length:null},e.controller.onAborted=f,e.controller.on("terminated",f),e.controller.resume=async()=>{for(;;){let h,p;try{let{done:m,value:I}=await e.controller.next();if(Yee(e))break;h=m?void 0:I}catch(m){e.controller.ended&&!i.encodedBodySize?h=void 0:(h=m,p=!0)}if(h===void 0){hqe(e.controller.controller),qqe(e,s);return}if(i.decodedBodySize+=h?.byteLength??0,p){e.controller.terminate(h);return}let C=new Uint8Array(h);if(C.byteLength&&e.controller.controller.enqueue(C),Rqe(A)){e.controller.terminate();return}if(e.controller.controller.desiredSize<=0)return}};function f(h){Yee(e)?(s.aborted=!0,tb(A)&&e.controller.controller.error(e.controller.serializedAbortReason)):tb(A)&&e.controller.controller.error(new TypeError("terminated",{cause:fqe(h)?h:void 0})),e.controller.connection.destroy()}return s;function d({body:h}){let p=Ki(n),C=e.controller.dispatcher;return new Promise((m,I)=>C.dispatch({path:p.pathname+p.search,origin:p.origin,method:n.method,body:C.isMockActive?n.body&&(n.body.source||n.body.stream):h,headers:n.headersList.entries,maxRedirections:0,upgrade:n.mode==="websocket"?"websocket":void 0},{body:null,abort:null,onConnect(y){let{connection:E}=e.controller;i.finalConnectionTimingInfo=mqe(void 0,i.postRedirectStartTime,e.crossOriginIsolatedCapability),E.destroyed?y(new DOMException("The operation was aborted.","AbortError")):(e.controller.on("terminated",y),this.abort=E.abort=y),i.finalNetworkRequestStartTime=J0(e.crossOriginIsolatedCapability)},onResponseStarted(){i.finalNetworkResponseStartTime=J0(e.crossOriginIsolatedCapability)},onHeaders(y,E,B,v){if(y<200)return;let x=[],Q="",S=new Vee;for(let F=0;FF.trim())),Q=S.get("location",!0),this.body=new Tqe({read:B});let R=[],D=Q&&n.redirect==="follow"&&Wee.has(y);if(x.length!==0&&n.method!=="HEAD"&&n.method!=="CONNECT"&&!zee.includes(y)&&!D)for(let F=x.length-1;F>=0;--F){let j=x[F];if(j==="x-gzip"||j==="gzip")R.push(rc.createGunzip({flush:rc.constants.Z_SYNC_FLUSH,finishFlush:rc.constants.Z_SYNC_FLUSH}));else if(j==="deflate")R.push(yqe({flush:rc.constants.Z_SYNC_FLUSH,finishFlush:rc.constants.Z_SYNC_FLUSH}));else if(j==="br")R.push(rc.createBrotliDecompress({flush:rc.constants.BROTLI_OPERATION_FLUSH,finishFlush:rc.constants.BROTLI_OPERATION_FLUSH}));else{R.length=0;break}}let k=this.onError.bind(this);return m({status:y,statusText:v,headersList:S,body:R.length?wqe(this.body,...R,F=>{F&&this.onError(F)}).on("error",k):this.body.on("error",k)}),!0},onData(y){if(e.controller.dump)return;let E=y;return i.encodedBodySize+=E.byteLength,this.body.push(E)},onComplete(){this.abort&&e.controller.off("terminated",this.abort),e.controller.onAborted&&e.controller.off("terminated",e.controller.onAborted),e.controller.ended=!0,this.body.push(null)},onError(y){this.abort&&e.controller.off("terminated",this.abort),this.body?.destroy(y),e.controller.terminate(y),I(y)},onUpgrade(y,E,B){if(y!==101)return;let v=new Vee;for(let x=0;x{"use strict";ste.exports={kState:Symbol("FileReader state"),kResult:Symbol("FileReader result"),kError:Symbol("FileReader error"),kLastProgressEventFired:Symbol("FileReader last progress event fired timestamp"),kEvents:Symbol("FileReader events"),kAborted:Symbol("FileReader aborted")}});var ote=b((yAt,ite)=>{"use strict";var{webidl:es}=Or(),nb=Symbol("ProgressEvent state"),zD=class e extends Event{constructor(t,r={}){t=es.converters.DOMString(t,"ProgressEvent constructor","type"),r=es.converters.ProgressEventInit(r??{}),super(t,r),this[nb]={lengthComputable:r.lengthComputable,loaded:r.loaded,total:r.total}}get lengthComputable(){return es.brandCheck(this,e),this[nb].lengthComputable}get loaded(){return es.brandCheck(this,e),this[nb].loaded}get total(){return es.brandCheck(this,e),this[nb].total}};es.converters.ProgressEventInit=es.dictionaryConverter([{key:"lengthComputable",converter:es.converters.boolean,defaultValue:()=>!1},{key:"loaded",converter:es.converters["unsigned long long"],defaultValue:()=>0},{key:"total",converter:es.converters["unsigned long long"],defaultValue:()=>0},{key:"bubbles",converter:es.converters.boolean,defaultValue:()=>!1},{key:"cancelable",converter:es.converters.boolean,defaultValue:()=>!1},{key:"composed",converter:es.converters.boolean,defaultValue:()=>!1}]);ite.exports={ProgressEvent:zD}});var cte=b((IAt,ate)=>{"use strict";function $qe(e){if(!e)return"failure";switch(e.trim().toLowerCase()){case"unicode-1-1-utf-8":case"unicode11utf8":case"unicode20utf8":case"utf-8":case"utf8":case"x-unicode20utf8":return"UTF-8";case"866":case"cp866":case"csibm866":case"ibm866":return"IBM866";case"csisolatin2":case"iso-8859-2":case"iso-ir-101":case"iso8859-2":case"iso88592":case"iso_8859-2":case"iso_8859-2:1987":case"l2":case"latin2":return"ISO-8859-2";case"csisolatin3":case"iso-8859-3":case"iso-ir-109":case"iso8859-3":case"iso88593":case"iso_8859-3":case"iso_8859-3:1988":case"l3":case"latin3":return"ISO-8859-3";case"csisolatin4":case"iso-8859-4":case"iso-ir-110":case"iso8859-4":case"iso88594":case"iso_8859-4":case"iso_8859-4:1988":case"l4":case"latin4":return"ISO-8859-4";case"csisolatincyrillic":case"cyrillic":case"iso-8859-5":case"iso-ir-144":case"iso8859-5":case"iso88595":case"iso_8859-5":case"iso_8859-5:1988":return"ISO-8859-5";case"arabic":case"asmo-708":case"csiso88596e":case"csiso88596i":case"csisolatinarabic":case"ecma-114":case"iso-8859-6":case"iso-8859-6-e":case"iso-8859-6-i":case"iso-ir-127":case"iso8859-6":case"iso88596":case"iso_8859-6":case"iso_8859-6:1987":return"ISO-8859-6";case"csisolatingreek":case"ecma-118":case"elot_928":case"greek":case"greek8":case"iso-8859-7":case"iso-ir-126":case"iso8859-7":case"iso88597":case"iso_8859-7":case"iso_8859-7:1987":case"sun_eu_greek":return"ISO-8859-7";case"csiso88598e":case"csisolatinhebrew":case"hebrew":case"iso-8859-8":case"iso-8859-8-e":case"iso-ir-138":case"iso8859-8":case"iso88598":case"iso_8859-8":case"iso_8859-8:1988":case"visual":return"ISO-8859-8";case"csiso88598i":case"iso-8859-8-i":case"logical":return"ISO-8859-8-I";case"csisolatin6":case"iso-8859-10":case"iso-ir-157":case"iso8859-10":case"iso885910":case"l6":case"latin6":return"ISO-8859-10";case"iso-8859-13":case"iso8859-13":case"iso885913":return"ISO-8859-13";case"iso-8859-14":case"iso8859-14":case"iso885914":return"ISO-8859-14";case"csisolatin9":case"iso-8859-15":case"iso8859-15":case"iso885915":case"iso_8859-15":case"l9":return"ISO-8859-15";case"iso-8859-16":return"ISO-8859-16";case"cskoi8r":case"koi":case"koi8":case"koi8-r":case"koi8_r":return"KOI8-R";case"koi8-ru":case"koi8-u":return"KOI8-U";case"csmacintosh":case"mac":case"macintosh":case"x-mac-roman":return"macintosh";case"iso-8859-11":case"iso8859-11":case"iso885911":case"tis-620":case"windows-874":return"windows-874";case"cp1250":case"windows-1250":case"x-cp1250":return"windows-1250";case"cp1251":case"windows-1251":case"x-cp1251":return"windows-1251";case"ansi_x3.4-1968":case"ascii":case"cp1252":case"cp819":case"csisolatin1":case"ibm819":case"iso-8859-1":case"iso-ir-100":case"iso8859-1":case"iso88591":case"iso_8859-1":case"iso_8859-1:1987":case"l1":case"latin1":case"us-ascii":case"windows-1252":case"x-cp1252":return"windows-1252";case"cp1253":case"windows-1253":case"x-cp1253":return"windows-1253";case"cp1254":case"csisolatin5":case"iso-8859-9":case"iso-ir-148":case"iso8859-9":case"iso88599":case"iso_8859-9":case"iso_8859-9:1989":case"l5":case"latin5":case"windows-1254":case"x-cp1254":return"windows-1254";case"cp1255":case"windows-1255":case"x-cp1255":return"windows-1255";case"cp1256":case"windows-1256":case"x-cp1256":return"windows-1256";case"cp1257":case"windows-1257":case"x-cp1257":return"windows-1257";case"cp1258":case"windows-1258":case"x-cp1258":return"windows-1258";case"x-mac-cyrillic":case"x-mac-ukrainian":return"x-mac-cyrillic";case"chinese":case"csgb2312":case"csiso58gb231280":case"gb2312":case"gb_2312":case"gb_2312-80":case"gbk":case"iso-ir-58":case"x-gbk":return"GBK";case"gb18030":return"gb18030";case"big5":case"big5-hkscs":case"cn-big5":case"csbig5":case"x-x-big5":return"Big5";case"cseucpkdfmtjapanese":case"euc-jp":case"x-euc-jp":return"EUC-JP";case"csiso2022jp":case"iso-2022-jp":return"ISO-2022-JP";case"csshiftjis":case"ms932":case"ms_kanji":case"shift-jis":case"shift_jis":case"sjis":case"windows-31j":case"x-sjis":return"Shift_JIS";case"cseuckr":case"csksc56011987":case"euc-kr":case"iso-ir-149":case"korean":case"ks_c_5601-1987":case"ks_c_5601-1989":case"ksc5601":case"ksc_5601":case"windows-949":return"EUC-KR";case"csiso2022kr":case"hz-gb-2312":case"iso-2022-cn":case"iso-2022-cn-ext":case"iso-2022-kr":case"replacement":return"replacement";case"unicodefffe":case"utf-16be":return"UTF-16BE";case"csunicode":case"iso-10646-ucs-2":case"ucs-2":case"unicode":case"unicodefeff":case"utf-16":case"utf-16le":return"UTF-16LE";case"x-user-defined":return"x-user-defined";default:return"failure"}}ate.exports={getEncoding:$qe}});var gte=b((bAt,pte)=>{"use strict";var{kState:Af,kError:XD,kResult:ute,kAborted:z0,kLastProgressEventFired:KD}=WD(),{ProgressEvent:Gqe}=ote(),{getEncoding:lte}=cte(),{serializeAMimeType:jqe,parseMIMEType:Ate}=Dn(),{types:Jqe}=require("node:util"),{StringDecoder:fte}=require("string_decoder"),{btoa:dte}=require("node:buffer"),Wqe={enumerable:!0,writable:!1,configurable:!1};function zqe(e,t,r,n){if(e[Af]==="loading")throw new DOMException("Invalid state","InvalidStateError");e[Af]="loading",e[ute]=null,e[XD]=null;let i=t.stream().getReader(),o=[],a=i.read(),c=!0;(async()=>{for(;!e[z0];)try{let{done:u,value:l}=await a;if(c&&!e[z0]&&queueMicrotask(()=>{nc("loadstart",e)}),c=!1,!u&&Jqe.isUint8Array(l))o.push(l),(e[KD]===void 0||Date.now()-e[KD]>=50)&&!e[z0]&&(e[KD]=Date.now(),queueMicrotask(()=>{nc("progress",e)})),a=i.read();else if(u){queueMicrotask(()=>{e[Af]="done";try{let A=Xqe(o,r,t.type,n);if(e[z0])return;e[ute]=A,nc("load",e)}catch(A){e[XD]=A,nc("error",e)}e[Af]!=="loading"&&nc("loadend",e)});break}}catch(u){if(e[z0])return;queueMicrotask(()=>{e[Af]="done",e[XD]=u,nc("error",e),e[Af]!=="loading"&&nc("loadend",e)});break}})()}function nc(e,t){let r=new Gqe(e,{bubbles:!1,cancelable:!1});t.dispatchEvent(r)}function Xqe(e,t,r,n){switch(t){case"DataURL":{let s="data:",i=Ate(r||"application/octet-stream");i!=="failure"&&(s+=jqe(i)),s+=";base64,";let o=new fte("latin1");for(let a of e)s+=dte(o.write(a));return s+=dte(o.end()),s}case"Text":{let s="failure";if(n&&(s=lte(n)),s==="failure"&&r){let i=Ate(r);i!=="failure"&&(s=lte(i.parameters.get("charset")))}return s==="failure"&&(s="UTF-8"),Kqe(e,s)}case"ArrayBuffer":return hte(e).buffer;case"BinaryString":{let s="",i=new fte("latin1");for(let o of e)s+=i.write(o);return s+=i.end(),s}}}function Kqe(e,t){let r=hte(e),n=Zqe(r),s=0;n!==null&&(t=n,s=n==="UTF-8"?3:2);let i=r.slice(s);return new TextDecoder(t).decode(i)}function Zqe(e){let[t,r,n]=e;return t===239&&r===187&&n===191?"UTF-8":t===254&&r===255?"UTF-16BE":t===255&&r===254?"UTF-16LE":null}function hte(e){let t=e.reduce((n,s)=>n+s.byteLength,0),r=0;return e.reduce((n,s)=>(n.set(s,r),r+=s.byteLength,n),new Uint8Array(t))}pte.exports={staticPropertyDescriptors:Wqe,readOperation:zqe,fireAProgressEvent:nc}});var yte=b((BAt,Cte)=>{"use strict";var{staticPropertyDescriptors:ff,readOperation:sb,fireAProgressEvent:mte}=gte(),{kState:Ru,kError:Ete,kResult:ib,kEvents:pt,kAborted:eVe}=WD(),{webidl:bt}=Or(),{kEnumerableProperty:Fn}=Ve(),di=class e extends EventTarget{constructor(){super(),this[Ru]="empty",this[ib]=null,this[Ete]=null,this[pt]={loadend:null,error:null,abort:null,load:null,progress:null,loadstart:null}}readAsArrayBuffer(t){bt.brandCheck(this,e),bt.argumentLengthCheck(arguments,1,"FileReader.readAsArrayBuffer"),t=bt.converters.Blob(t,{strict:!1}),sb(this,t,"ArrayBuffer")}readAsBinaryString(t){bt.brandCheck(this,e),bt.argumentLengthCheck(arguments,1,"FileReader.readAsBinaryString"),t=bt.converters.Blob(t,{strict:!1}),sb(this,t,"BinaryString")}readAsText(t,r=void 0){bt.brandCheck(this,e),bt.argumentLengthCheck(arguments,1,"FileReader.readAsText"),t=bt.converters.Blob(t,{strict:!1}),r!==void 0&&(r=bt.converters.DOMString(r,"FileReader.readAsText","encoding")),sb(this,t,"Text",r)}readAsDataURL(t){bt.brandCheck(this,e),bt.argumentLengthCheck(arguments,1,"FileReader.readAsDataURL"),t=bt.converters.Blob(t,{strict:!1}),sb(this,t,"DataURL")}abort(){if(this[Ru]==="empty"||this[Ru]==="done"){this[ib]=null;return}this[Ru]==="loading"&&(this[Ru]="done",this[ib]=null),this[eVe]=!0,mte("abort",this),this[Ru]!=="loading"&&mte("loadend",this)}get readyState(){switch(bt.brandCheck(this,e),this[Ru]){case"empty":return this.EMPTY;case"loading":return this.LOADING;case"done":return this.DONE}}get result(){return bt.brandCheck(this,e),this[ib]}get error(){return bt.brandCheck(this,e),this[Ete]}get onloadend(){return bt.brandCheck(this,e),this[pt].loadend}set onloadend(t){bt.brandCheck(this,e),this[pt].loadend&&this.removeEventListener("loadend",this[pt].loadend),typeof t=="function"?(this[pt].loadend=t,this.addEventListener("loadend",t)):this[pt].loadend=null}get onerror(){return bt.brandCheck(this,e),this[pt].error}set onerror(t){bt.brandCheck(this,e),this[pt].error&&this.removeEventListener("error",this[pt].error),typeof t=="function"?(this[pt].error=t,this.addEventListener("error",t)):this[pt].error=null}get onloadstart(){return bt.brandCheck(this,e),this[pt].loadstart}set onloadstart(t){bt.brandCheck(this,e),this[pt].loadstart&&this.removeEventListener("loadstart",this[pt].loadstart),typeof t=="function"?(this[pt].loadstart=t,this.addEventListener("loadstart",t)):this[pt].loadstart=null}get onprogress(){return bt.brandCheck(this,e),this[pt].progress}set onprogress(t){bt.brandCheck(this,e),this[pt].progress&&this.removeEventListener("progress",this[pt].progress),typeof t=="function"?(this[pt].progress=t,this.addEventListener("progress",t)):this[pt].progress=null}get onload(){return bt.brandCheck(this,e),this[pt].load}set onload(t){bt.brandCheck(this,e),this[pt].load&&this.removeEventListener("load",this[pt].load),typeof t=="function"?(this[pt].load=t,this.addEventListener("load",t)):this[pt].load=null}get onabort(){return bt.brandCheck(this,e),this[pt].abort}set onabort(t){bt.brandCheck(this,e),this[pt].abort&&this.removeEventListener("abort",this[pt].abort),typeof t=="function"?(this[pt].abort=t,this.addEventListener("abort",t)):this[pt].abort=null}};di.EMPTY=di.prototype.EMPTY=0;di.LOADING=di.prototype.LOADING=1;di.DONE=di.prototype.DONE=2;Object.defineProperties(di.prototype,{EMPTY:ff,LOADING:ff,DONE:ff,readAsArrayBuffer:Fn,readAsBinaryString:Fn,readAsText:Fn,readAsDataURL:Fn,abort:Fn,readyState:Fn,result:Fn,error:Fn,onloadstart:Fn,onprogress:Fn,onload:Fn,onabort:Fn,onerror:Fn,onloadend:Fn,[Symbol.toStringTag]:{value:"FileReader",writable:!1,enumerable:!1,configurable:!0}});Object.defineProperties(di,{EMPTY:ff,LOADING:ff,DONE:ff});Cte.exports={FileReader:di}});var ob=b((xAt,Ite)=>{"use strict";Ite.exports={kConstruct:Ot().kConstruct}});var xte=b((vAt,Bte)=>{"use strict";var tVe=require("node:assert"),{URLSerializer:bte}=Dn(),{isValidHeaderName:rVe}=Jn();function nVe(e,t,r=!1){let n=bte(e,r),s=bte(t,r);return n===s}function sVe(e){tVe(e!==null);let t=[];for(let r of e.split(","))r=r.trim(),rVe(r)&&t.push(r);return t}Bte.exports={urlEquals:nVe,getFieldValues:sVe}});var Tte=b((QAt,Qte)=>{"use strict";var{kConstruct:iVe}=ob(),{urlEquals:oVe,getFieldValues:ZD}=xte(),{kEnumerableProperty:Du,isDisturbed:aVe}=Ve(),{webidl:me}=Or(),{Response:cVe,cloneResponse:uVe,fromInnerResponse:lVe}=j0(),{Request:$o,fromInnerRequest:AVe}=lf(),{kState:hi}=Ya(),{fetching:fVe}=W0(),{urlIsHttpHttpsScheme:ab,createDeferredPromise:df,readAllBytes:dVe}=Jn(),eN=require("node:assert"),cb=class e{#e;constructor(){arguments[0]!==iVe&&me.illegalConstructor(),me.util.markAsUncloneable(this),this.#e=arguments[1]}async match(t,r={}){me.brandCheck(this,e);let n="Cache.match";me.argumentLengthCheck(arguments,1,n),t=me.converters.RequestInfo(t,n,"request"),r=me.converters.CacheQueryOptions(r,n,"options");let s=this.#r(t,r,1);if(s.length!==0)return s[0]}async matchAll(t=void 0,r={}){me.brandCheck(this,e);let n="Cache.matchAll";return t!==void 0&&(t=me.converters.RequestInfo(t,n,"request")),r=me.converters.CacheQueryOptions(r,n,"options"),this.#r(t,r)}async add(t){me.brandCheck(this,e);let r="Cache.add";me.argumentLengthCheck(arguments,1,r),t=me.converters.RequestInfo(t,r,"request");let n=[t];return await this.addAll(n)}async addAll(t){me.brandCheck(this,e);let r="Cache.addAll";me.argumentLengthCheck(arguments,1,r);let n=[],s=[];for(let f of t){if(f===void 0)throw me.errors.conversionFailed({prefix:r,argument:"Argument 1",types:["undefined is not allowed"]});if(f=me.converters.RequestInfo(f),typeof f=="string")continue;let d=f[hi];if(!ab(d.url)||d.method!=="GET")throw me.errors.exception({header:r,message:"Expected http/s scheme when method is not GET."})}let i=[];for(let f of t){let d=new $o(f)[hi];if(!ab(d.url))throw me.errors.exception({header:r,message:"Expected http/s scheme."});d.initiator="fetch",d.destination="subresource",s.push(d);let h=df();i.push(fVe({request:d,processResponse(p){if(p.type==="error"||p.status===206||p.status<200||p.status>299)h.reject(me.errors.exception({header:"Cache.addAll",message:"Received an invalid status code or the request failed."}));else if(p.headersList.contains("vary")){let C=ZD(p.headersList.get("vary"));for(let m of C)if(m==="*"){h.reject(me.errors.exception({header:"Cache.addAll",message:"invalid vary field value"}));for(let I of i)I.abort();return}}},processResponseEndOfBody(p){if(p.aborted){h.reject(new DOMException("aborted","AbortError"));return}h.resolve(p)}})),n.push(h.promise)}let a=await Promise.all(n),c=[],u=0;for(let f of a){let d={type:"put",request:s[u],response:f};c.push(d),u++}let l=df(),A=null;try{this.#t(c)}catch(f){A=f}return queueMicrotask(()=>{A===null?l.resolve(void 0):l.reject(A)}),l.promise}async put(t,r){me.brandCheck(this,e);let n="Cache.put";me.argumentLengthCheck(arguments,2,n),t=me.converters.RequestInfo(t,n,"request"),r=me.converters.Response(r,n,"response");let s=null;if(t instanceof $o?s=t[hi]:s=new $o(t)[hi],!ab(s.url)||s.method!=="GET")throw me.errors.exception({header:n,message:"Expected an http/s scheme when method is not GET"});let i=r[hi];if(i.status===206)throw me.errors.exception({header:n,message:"Got 206 status"});if(i.headersList.contains("vary")){let d=ZD(i.headersList.get("vary"));for(let h of d)if(h==="*")throw me.errors.exception({header:n,message:"Got * vary field value"})}if(i.body&&(aVe(i.body.stream)||i.body.stream.locked))throw me.errors.exception({header:n,message:"Response body is locked or disturbed"});let o=uVe(i),a=df();if(i.body!=null){let h=i.body.stream.getReader();dVe(h).then(a.resolve,a.reject)}else a.resolve(void 0);let c=[],u={type:"put",request:s,response:o};c.push(u);let l=await a.promise;o.body!=null&&(o.body.source=l);let A=df(),f=null;try{this.#t(c)}catch(d){f=d}return queueMicrotask(()=>{f===null?A.resolve():A.reject(f)}),A.promise}async delete(t,r={}){me.brandCheck(this,e);let n="Cache.delete";me.argumentLengthCheck(arguments,1,n),t=me.converters.RequestInfo(t,n,"request"),r=me.converters.CacheQueryOptions(r,n,"options");let s=null;if(t instanceof $o){if(s=t[hi],s.method!=="GET"&&!r.ignoreMethod)return!1}else eN(typeof t=="string"),s=new $o(t)[hi];let i=[],o={type:"delete",request:s,options:r};i.push(o);let a=df(),c=null,u;try{u=this.#t(i)}catch(l){c=l}return queueMicrotask(()=>{c===null?a.resolve(!!u?.length):a.reject(c)}),a.promise}async keys(t=void 0,r={}){me.brandCheck(this,e);let n="Cache.keys";t!==void 0&&(t=me.converters.RequestInfo(t,n,"request")),r=me.converters.CacheQueryOptions(r,n,"options");let s=null;if(t!==void 0)if(t instanceof $o){if(s=t[hi],s.method!=="GET"&&!r.ignoreMethod)return[]}else typeof t=="string"&&(s=new $o(t)[hi]);let i=df(),o=[];if(t===void 0)for(let a of this.#e)o.push(a[0]);else{let a=this.#s(s,r);for(let c of a)o.push(c[0])}return queueMicrotask(()=>{let a=[];for(let c of o){let u=AVe(c,new AbortController().signal,"immutable");a.push(u)}i.resolve(Object.freeze(a))}),i.promise}#t(t){let r=this.#e,n=[...r],s=[],i=[];try{for(let o of t){if(o.type!=="delete"&&o.type!=="put")throw me.errors.exception({header:"Cache.#batchCacheOperations",message:'operation type does not match "delete" or "put"'});if(o.type==="delete"&&o.response!=null)throw me.errors.exception({header:"Cache.#batchCacheOperations",message:"delete operation should not have an associated response"});if(this.#s(o.request,o.options,s).length)throw new DOMException("???","InvalidStateError");let a;if(o.type==="delete"){if(a=this.#s(o.request,o.options),a.length===0)return[];for(let c of a){let u=r.indexOf(c);eN(u!==-1),r.splice(u,1)}}else if(o.type==="put"){if(o.response==null)throw me.errors.exception({header:"Cache.#batchCacheOperations",message:"put operation should have an associated response"});let c=o.request;if(!ab(c.url))throw me.errors.exception({header:"Cache.#batchCacheOperations",message:"expected http or https scheme"});if(c.method!=="GET")throw me.errors.exception({header:"Cache.#batchCacheOperations",message:"not get method"});if(o.options!=null)throw me.errors.exception({header:"Cache.#batchCacheOperations",message:"options must not be defined"});a=this.#s(o.request);for(let u of a){let l=r.indexOf(u);eN(l!==-1),r.splice(l,1)}r.push([o.request,o.response]),s.push([o.request,o.response])}i.push([o.request,o.response])}return i}catch(o){throw this.#e.length=0,this.#e=n,o}}#s(t,r,n){let s=[],i=n??this.#e;for(let o of i){let[a,c]=o;this.#n(t,a,c,r)&&s.push(o)}return s}#n(t,r,n=null,s){let i=new URL(t.url),o=new URL(r.url);if(s?.ignoreSearch&&(o.search="",i.search=""),!oVe(i,o,!0))return!1;if(n==null||s?.ignoreVary||!n.headersList.contains("vary"))return!0;let a=ZD(n.headersList.get("vary"));for(let c of a){if(c==="*")return!1;let u=r.headersList.get(c),l=t.headersList.get(c);if(u!==l)return!1}return!0}#r(t,r,n=1/0){let s=null;if(t!==void 0)if(t instanceof $o){if(s=t[hi],s.method!=="GET"&&!r.ignoreMethod)return[]}else typeof t=="string"&&(s=new $o(t)[hi]);let i=[];if(t===void 0)for(let a of this.#e)i.push(a[1]);else{let a=this.#s(s,r);for(let c of a)i.push(c[1])}let o=[];for(let a of i){let c=lVe(a,"immutable");if(o.push(c.clone()),o.length>=n)break}return Object.freeze(o)}};Object.defineProperties(cb.prototype,{[Symbol.toStringTag]:{value:"Cache",configurable:!0},match:Du,matchAll:Du,add:Du,addAll:Du,put:Du,delete:Du,keys:Du});var vte=[{key:"ignoreSearch",converter:me.converters.boolean,defaultValue:()=>!1},{key:"ignoreMethod",converter:me.converters.boolean,defaultValue:()=>!1},{key:"ignoreVary",converter:me.converters.boolean,defaultValue:()=>!1}];me.converters.CacheQueryOptions=me.dictionaryConverter(vte);me.converters.MultiCacheQueryOptions=me.dictionaryConverter([...vte,{key:"cacheName",converter:me.converters.DOMString}]);me.converters.Response=me.interfaceConverter(cVe);me.converters["sequence"]=me.sequenceConverter(me.converters.RequestInfo);Qte.exports={Cache:cb}});var Ste=b((TAt,wte)=>{"use strict";var{kConstruct:X0}=ob(),{Cache:ub}=Tte(),{webidl:Zr}=Or(),{kEnumerableProperty:K0}=Ve(),lb=class e{#e=new Map;constructor(){arguments[0]!==X0&&Zr.illegalConstructor(),Zr.util.markAsUncloneable(this)}async match(t,r={}){if(Zr.brandCheck(this,e),Zr.argumentLengthCheck(arguments,1,"CacheStorage.match"),t=Zr.converters.RequestInfo(t),r=Zr.converters.MultiCacheQueryOptions(r),r.cacheName!=null){if(this.#e.has(r.cacheName)){let n=this.#e.get(r.cacheName);return await new ub(X0,n).match(t,r)}}else for(let n of this.#e.values()){let i=await new ub(X0,n).match(t,r);if(i!==void 0)return i}}async has(t){Zr.brandCheck(this,e);let r="CacheStorage.has";return Zr.argumentLengthCheck(arguments,1,r),t=Zr.converters.DOMString(t,r,"cacheName"),this.#e.has(t)}async open(t){Zr.brandCheck(this,e);let r="CacheStorage.open";if(Zr.argumentLengthCheck(arguments,1,r),t=Zr.converters.DOMString(t,r,"cacheName"),this.#e.has(t)){let s=this.#e.get(t);return new ub(X0,s)}let n=[];return this.#e.set(t,n),new ub(X0,n)}async delete(t){Zr.brandCheck(this,e);let r="CacheStorage.delete";return Zr.argumentLengthCheck(arguments,1,r),t=Zr.converters.DOMString(t,r,"cacheName"),this.#e.delete(t)}async keys(){return Zr.brandCheck(this,e),[...this.#e.keys()]}};Object.defineProperties(lb.prototype,{[Symbol.toStringTag]:{value:"CacheStorage",configurable:!0},match:K0,has:K0,open:K0,delete:K0,keys:K0});wte.exports={CacheStorage:lb}});var Rte=b((wAt,_te)=>{"use strict";_te.exports={maxAttributeValueSize:1024,maxNameValuePairSize:4096}});var tN=b((SAt,Lte)=>{"use strict";function hVe(e){for(let t=0;t=0&&r<=8||r>=10&&r<=31||r===127)return!0}return!1}function Dte(e){for(let t=0;t126||r===34||r===40||r===41||r===60||r===62||r===64||r===44||r===59||r===58||r===92||r===47||r===91||r===93||r===63||r===61||r===123||r===125)throw new Error("Invalid cookie name")}}function Nte(e){let t=e.length,r=0;if(e[0]==='"'){if(t===1||e[t-1]!=='"')throw new Error("Invalid cookie value");--t,++r}for(;r126||n===34||n===44||n===59||n===92)throw new Error("Invalid cookie value")}}function kte(e){for(let t=0;tt.toString().padStart(2,"0"));function Fte(e){return typeof e=="number"&&(e=new Date(e)),`${gVe[e.getUTCDay()]}, ${Ab[e.getUTCDate()]} ${mVe[e.getUTCMonth()]} ${e.getUTCFullYear()} ${Ab[e.getUTCHours()]}:${Ab[e.getUTCMinutes()]}:${Ab[e.getUTCSeconds()]} GMT`}function EVe(e){if(e<0)throw new Error("Invalid cookie max-age")}function CVe(e){if(e.name.length===0)return null;Dte(e.name),Nte(e.value);let t=[`${e.name}=${e.value}`];e.name.startsWith("__Secure-")&&(e.secure=!0),e.name.startsWith("__Host-")&&(e.secure=!0,e.domain=null,e.path="/"),e.secure&&t.push("Secure"),e.httpOnly&&t.push("HttpOnly"),typeof e.maxAge=="number"&&(EVe(e.maxAge),t.push(`Max-Age=${e.maxAge}`)),e.domain&&(pVe(e.domain),t.push(`Domain=${e.domain}`)),e.path&&(kte(e.path),t.push(`Path=${e.path}`)),e.expires&&e.expires.toString()!=="Invalid Date"&&t.push(`Expires=${Fte(e.expires)}`),e.sameSite&&t.push(`SameSite=${e.sameSite}`);for(let r of e.unparsed){if(!r.includes("="))throw new Error("Invalid unparsed");let[n,...s]=r.split("=");t.push(`${n.trim()}=${s.join("=")}`)}return t.join("; ")}Lte.exports={isCTLExcludingHtab:hVe,validateCookieName:Dte,validateCookiePath:kte,validateCookieValue:Nte,toIMFDate:Fte,stringify:CVe}});var Mte=b((_At,Ote)=>{"use strict";var{maxNameValuePairSize:yVe,maxAttributeValueSize:IVe}=Rte(),{isCTLExcludingHtab:bVe}=tN(),{collectASequenceOfCodePointsFast:fb}=Dn(),BVe=require("node:assert");function xVe(e){if(bVe(e))return null;let t="",r="",n="",s="";if(e.includes(";")){let i={position:0};t=fb(";",e,i),r=e.slice(i.position)}else t=e;if(!t.includes("="))s=t;else{let i={position:0};n=fb("=",t,i),s=t.slice(i.position+1)}return n=n.trim(),s=s.trim(),n.length+s.length>yVe?null:{name:n,value:s,...hf(r)}}function hf(e,t={}){if(e.length===0)return t;BVe(e[0]===";"),e=e.slice(1);let r="";e.includes(";")?(r=fb(";",e,{position:0}),e=e.slice(r.length)):(r=e,e="");let n="",s="";if(r.includes("=")){let o={position:0};n=fb("=",r,o),s=r.slice(o.position+1)}else n=r;if(n=n.trim(),s=s.trim(),s.length>IVe)return hf(e,t);let i=n.toLowerCase();if(i==="expires"){let o=new Date(s);t.expires=o}else if(i==="max-age"){let o=s.charCodeAt(0);if((o<48||o>57)&&s[0]!=="-"||!/^\d+$/.test(s))return hf(e,t);let a=Number(s);t.maxAge=a}else if(i==="domain"){let o=s;o[0]==="."&&(o=o.slice(1)),o=o.toLowerCase(),t.domain=o}else if(i==="path"){let o="";s.length===0||s[0]!=="/"?o="/":o=s,t.path=o}else if(i==="secure")t.secure=!0;else if(i==="httponly")t.httpOnly=!0;else if(i==="samesite"){let o="Default",a=s.toLowerCase();a.includes("none")&&(o="None"),a.includes("strict")&&(o="Strict"),a.includes("lax")&&(o="Lax"),t.sameSite=o}else t.unparsed??=[],t.unparsed.push(`${n}=${s}`);return hf(e,t)}Ote.exports={parseSetCookie:xVe,parseUnparsedAttributes:hf}});var Hte=b((RAt,Ute)=>{"use strict";var{parseSetCookie:vVe}=Mte(),{stringify:QVe}=tN(),{webidl:Xe}=Or(),{Headers:db}=Tu();function TVe(e){Xe.argumentLengthCheck(arguments,1,"getCookies"),Xe.brandCheck(e,db,{strict:!1});let t=e.get("cookie"),r={};if(!t)return r;for(let n of t.split(";")){let[s,...i]=n.split("=");r[s.trim()]=i.join("=")}return r}function wVe(e,t,r){Xe.brandCheck(e,db,{strict:!1});let n="deleteCookie";Xe.argumentLengthCheck(arguments,2,n),t=Xe.converters.DOMString(t,n,"name"),r=Xe.converters.DeleteCookieAttributes(r),Pte(e,{name:t,value:"",expires:new Date(0),...r})}function SVe(e){Xe.argumentLengthCheck(arguments,1,"getSetCookies"),Xe.brandCheck(e,db,{strict:!1});let t=e.getSetCookie();return t?t.map(r=>vVe(r)):[]}function Pte(e,t){Xe.argumentLengthCheck(arguments,2,"setCookie"),Xe.brandCheck(e,db,{strict:!1}),t=Xe.converters.Cookie(t);let r=QVe(t);r&&e.append("Set-Cookie",r)}Xe.converters.DeleteCookieAttributes=Xe.dictionaryConverter([{converter:Xe.nullableConverter(Xe.converters.DOMString),key:"path",defaultValue:()=>null},{converter:Xe.nullableConverter(Xe.converters.DOMString),key:"domain",defaultValue:()=>null}]);Xe.converters.Cookie=Xe.dictionaryConverter([{converter:Xe.converters.DOMString,key:"name"},{converter:Xe.converters.DOMString,key:"value"},{converter:Xe.nullableConverter(e=>typeof e=="number"?Xe.converters["unsigned long long"](e):new Date(e)),key:"expires",defaultValue:()=>null},{converter:Xe.nullableConverter(Xe.converters["long long"]),key:"maxAge",defaultValue:()=>null},{converter:Xe.nullableConverter(Xe.converters.DOMString),key:"domain",defaultValue:()=>null},{converter:Xe.nullableConverter(Xe.converters.DOMString),key:"path",defaultValue:()=>null},{converter:Xe.nullableConverter(Xe.converters.boolean),key:"secure",defaultValue:()=>null},{converter:Xe.nullableConverter(Xe.converters.boolean),key:"httpOnly",defaultValue:()=>null},{converter:Xe.converters.USVString,key:"sameSite",allowedValues:["Strict","Lax","None"]},{converter:Xe.sequenceConverter(Xe.converters.DOMString),key:"unparsed",defaultValue:()=>new Array(0)}]);Ute.exports={getCookies:TVe,deleteCookie:wVe,getSetCookies:SVe,setCookie:Pte}});var gf=b((DAt,Vte)=>{"use strict";var{webidl:pe}=Or(),{kEnumerableProperty:Ln}=Ve(),{kConstruct:qte}=Ot(),{MessagePort:_Ve}=require("node:worker_threads"),pf=class e extends Event{#e;constructor(t,r={}){if(t===qte){super(arguments[1],arguments[2]),pe.util.markAsUncloneable(this);return}let n="MessageEvent constructor";pe.argumentLengthCheck(arguments,1,n),t=pe.converters.DOMString(t,n,"type"),r=pe.converters.MessageEventInit(r,n,"eventInitDict"),super(t,r),this.#e=r,pe.util.markAsUncloneable(this)}get data(){return pe.brandCheck(this,e),this.#e.data}get origin(){return pe.brandCheck(this,e),this.#e.origin}get lastEventId(){return pe.brandCheck(this,e),this.#e.lastEventId}get source(){return pe.brandCheck(this,e),this.#e.source}get ports(){return pe.brandCheck(this,e),Object.isFrozen(this.#e.ports)||Object.freeze(this.#e.ports),this.#e.ports}initMessageEvent(t,r=!1,n=!1,s=null,i="",o="",a=null,c=[]){return pe.brandCheck(this,e),pe.argumentLengthCheck(arguments,1,"MessageEvent.initMessageEvent"),new e(t,{bubbles:r,cancelable:n,data:s,origin:i,lastEventId:o,source:a,ports:c})}static createFastMessageEvent(t,r){let n=new e(qte,t,r);return n.#e=r,n.#e.data??=null,n.#e.origin??="",n.#e.lastEventId??="",n.#e.source??=null,n.#e.ports??=[],n}},{createFastMessageEvent:RVe}=pf;delete pf.createFastMessageEvent;var hb=class e extends Event{#e;constructor(t,r={}){let n="CloseEvent constructor";pe.argumentLengthCheck(arguments,1,n),t=pe.converters.DOMString(t,n,"type"),r=pe.converters.CloseEventInit(r),super(t,r),this.#e=r,pe.util.markAsUncloneable(this)}get wasClean(){return pe.brandCheck(this,e),this.#e.wasClean}get code(){return pe.brandCheck(this,e),this.#e.code}get reason(){return pe.brandCheck(this,e),this.#e.reason}},pb=class e extends Event{#e;constructor(t,r){let n="ErrorEvent constructor";pe.argumentLengthCheck(arguments,1,n),super(t,r),pe.util.markAsUncloneable(this),t=pe.converters.DOMString(t,n,"type"),r=pe.converters.ErrorEventInit(r??{}),this.#e=r}get message(){return pe.brandCheck(this,e),this.#e.message}get filename(){return pe.brandCheck(this,e),this.#e.filename}get lineno(){return pe.brandCheck(this,e),this.#e.lineno}get colno(){return pe.brandCheck(this,e),this.#e.colno}get error(){return pe.brandCheck(this,e),this.#e.error}};Object.defineProperties(pf.prototype,{[Symbol.toStringTag]:{value:"MessageEvent",configurable:!0},data:Ln,origin:Ln,lastEventId:Ln,source:Ln,ports:Ln,initMessageEvent:Ln});Object.defineProperties(hb.prototype,{[Symbol.toStringTag]:{value:"CloseEvent",configurable:!0},reason:Ln,code:Ln,wasClean:Ln});Object.defineProperties(pb.prototype,{[Symbol.toStringTag]:{value:"ErrorEvent",configurable:!0},message:Ln,filename:Ln,lineno:Ln,colno:Ln,error:Ln});pe.converters.MessagePort=pe.interfaceConverter(_Ve);pe.converters["sequence"]=pe.sequenceConverter(pe.converters.MessagePort);var rN=[{key:"bubbles",converter:pe.converters.boolean,defaultValue:()=>!1},{key:"cancelable",converter:pe.converters.boolean,defaultValue:()=>!1},{key:"composed",converter:pe.converters.boolean,defaultValue:()=>!1}];pe.converters.MessageEventInit=pe.dictionaryConverter([...rN,{key:"data",converter:pe.converters.any,defaultValue:()=>null},{key:"origin",converter:pe.converters.USVString,defaultValue:()=>""},{key:"lastEventId",converter:pe.converters.DOMString,defaultValue:()=>""},{key:"source",converter:pe.nullableConverter(pe.converters.MessagePort),defaultValue:()=>null},{key:"ports",converter:pe.converters["sequence"],defaultValue:()=>new Array(0)}]);pe.converters.CloseEventInit=pe.dictionaryConverter([...rN,{key:"wasClean",converter:pe.converters.boolean,defaultValue:()=>!1},{key:"code",converter:pe.converters["unsigned short"],defaultValue:()=>0},{key:"reason",converter:pe.converters.USVString,defaultValue:()=>""}]);pe.converters.ErrorEventInit=pe.dictionaryConverter([...rN,{key:"message",converter:pe.converters.DOMString,defaultValue:()=>""},{key:"filename",converter:pe.converters.USVString,defaultValue:()=>""},{key:"lineno",converter:pe.converters["unsigned long"],defaultValue:()=>0},{key:"colno",converter:pe.converters["unsigned long"],defaultValue:()=>0},{key:"error",converter:pe.converters.any}]);Vte.exports={MessageEvent:pf,CloseEvent:hb,ErrorEvent:pb,createFastMessageEvent:RVe}});var Nu=b((NAt,Yte)=>{"use strict";var DVe="258EAFA5-E914-47DA-95CA-C5AB0DC85B11",NVe={enumerable:!0,writable:!1,configurable:!1},kVe={CONNECTING:0,OPEN:1,CLOSING:2,CLOSED:3},FVe={NOT_SENT:0,PROCESSING:1,SENT:2},LVe={CONTINUATION:0,TEXT:1,BINARY:2,CLOSE:8,PING:9,PONG:10},OVe=2**16-1,MVe={INFO:0,PAYLOADLENGTH_16:2,PAYLOADLENGTH_64:3,READ_DATA:4},PVe=Buffer.allocUnsafe(0),UVe={string:1,typedArray:2,arrayBuffer:3,blob:4};Yte.exports={uid:DVe,sentCloseFrameState:FVe,staticPropertyDescriptors:NVe,states:kVe,opcodes:LVe,maxUnsigned16Bit:OVe,parserStates:MVe,emptyBuffer:PVe,sendHints:UVe}});var Z0=b((kAt,$te)=>{"use strict";$te.exports={kWebSocketURL:Symbol("url"),kReadyState:Symbol("ready state"),kController:Symbol("controller"),kResponse:Symbol("response"),kBinaryType:Symbol("binary type"),kSentClose:Symbol("sent close"),kReceivedClose:Symbol("received close"),kByteParser:Symbol("byte parser")}});var rp=b((FAt,ere)=>{"use strict";var{kReadyState:ep,kController:HVe,kResponse:qVe,kBinaryType:VVe,kWebSocketURL:YVe}=Z0(),{states:tp,opcodes:sc}=Nu(),{ErrorEvent:$Ve,createFastMessageEvent:GVe}=gf(),{isUtf8:jVe}=require("node:buffer"),{collectASequenceOfCodePointsFast:JVe,removeHTTPWhitespace:Gte}=Dn();function WVe(e){return e[ep]===tp.CONNECTING}function zVe(e){return e[ep]===tp.OPEN}function XVe(e){return e[ep]===tp.CLOSING}function KVe(e){return e[ep]===tp.CLOSED}function nN(e,t,r=(s,i)=>new Event(s,i),n={}){let s=r(e,n);t.dispatchEvent(s)}function ZVe(e,t,r){if(e[ep]!==tp.OPEN)return;let n;if(t===sc.TEXT)try{n=Zte(r)}catch{Jte(e,"Received invalid UTF-8 in text frame.");return}else t===sc.BINARY&&(e[VVe]==="blob"?n=new Blob([r]):n=e7e(r));nN("message",e,GVe,{origin:e[YVe].origin,data:n})}function e7e(e){return e.byteLength===e.buffer.byteLength?e.buffer:e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength)}function t7e(e){if(e.length===0)return!1;for(let t=0;t126||r===34||r===40||r===41||r===44||r===47||r===58||r===59||r===60||r===61||r===62||r===63||r===64||r===91||r===92||r===93||r===123||r===125)return!1}return!0}function r7e(e){return e>=1e3&&e<1015?e!==1004&&e!==1005&&e!==1006:e>=3e3&&e<=4999}function Jte(e,t){let{[HVe]:r,[qVe]:n}=e;r.abort(),n?.socket&&!n.socket.destroyed&&n.socket.destroy(),t&&nN("error",e,(s,i)=>new $Ve(s,i),{error:new Error(t),message:t})}function Wte(e){return e===sc.CLOSE||e===sc.PING||e===sc.PONG}function zte(e){return e===sc.CONTINUATION}function Xte(e){return e===sc.TEXT||e===sc.BINARY}function n7e(e){return Xte(e)||zte(e)||Wte(e)}function s7e(e){let t={position:0},r=new Map;for(;t.position57)return!1}return!0}var Kte=typeof process.versions.icu=="string",jte=Kte?new TextDecoder("utf-8",{fatal:!0}):void 0,Zte=Kte?jte.decode.bind(jte):function(e){if(jVe(e))return e.toString("utf-8");throw new TypeError("Invalid utf-8 received.")};ere.exports={isConnecting:WVe,isEstablished:zVe,isClosing:XVe,isClosed:KVe,fireEvent:nN,isValidSubprotocol:t7e,isValidStatusCode:r7e,failWebsocketConnection:Jte,websocketMessageReceived:ZVe,utf8Decode:Zte,isControlFrame:Wte,isContinuationFrame:zte,isTextBinaryFrame:Xte,isValidOpcode:n7e,parseExtensions:s7e,isValidClientWindowBits:i7e}});var mb=b((LAt,tre)=>{"use strict";var{maxUnsigned16Bit:o7e}=Nu(),gb=16386,sN,np=null,mf=gb;try{sN=require("node:crypto")}catch{sN={randomFillSync:function(t,r,n){for(let s=0;so7e?(o+=8,i=127):s>125&&(o+=2,i=126);let a=Buffer.allocUnsafe(s+o);a[0]=a[1]=0,a[0]|=128,a[0]=(a[0]&240)+t;a[o-4]=n[0],a[o-3]=n[1],a[o-2]=n[2],a[o-1]=n[3],a[1]=i,i===126?a.writeUInt16BE(s,2):i===127&&(a[2]=a[3]=0,a.writeUIntBE(s,4,6)),a[1]|=128;for(let c=0;c{"use strict";var{uid:c7e,states:sp,sentCloseFrameState:Eb,emptyBuffer:u7e,opcodes:l7e}=Nu(),{kReadyState:ip,kSentClose:Cb,kByteParser:nre,kReceivedClose:rre,kResponse:sre}=Z0(),{fireEvent:A7e,failWebsocketConnection:ic,isClosing:f7e,isClosed:d7e,isEstablished:h7e,parseExtensions:p7e}=rp(),{channels:Ef}=_A(),{CloseEvent:g7e}=gf(),{makeRequest:m7e}=lf(),{fetching:E7e}=W0(),{Headers:C7e,getHeadersList:y7e}=Tu(),{getDecodeSplit:I7e}=Jn(),{WebsocketFrameSend:b7e}=mb(),oN;try{oN=require("node:crypto")}catch{}function B7e(e,t,r,n,s,i){let o=e;o.protocol=e.protocol==="ws:"?"http:":"https:";let a=m7e({urlList:[o],client:r,serviceWorkers:"none",referrer:"no-referrer",mode:"websocket",credentials:"include",cache:"no-store",redirect:"error"});if(i.headers){let A=y7e(new C7e(i.headers));a.headersList=A}let c=oN.randomBytes(16).toString("base64");a.headersList.append("sec-websocket-key",c),a.headersList.append("sec-websocket-version","13");for(let A of t)a.headersList.append("sec-websocket-protocol",A);return a.headersList.append("sec-websocket-extensions","permessage-deflate; client_max_window_bits"),E7e({request:a,useParallelQueue:!0,dispatcher:i.dispatcher,processResponse(A){if(A.type==="error"||A.status!==101){ic(n,"Received network error or non-101 status code.");return}if(t.length!==0&&!A.headersList.get("Sec-WebSocket-Protocol")){ic(n,"Server did not respond with sent protocols.");return}if(A.headersList.get("Upgrade")?.toLowerCase()!=="websocket"){ic(n,'Server did not set Upgrade header to "websocket".');return}if(A.headersList.get("Connection")?.toLowerCase()!=="upgrade"){ic(n,'Server did not set Connection header to "upgrade".');return}let f=A.headersList.get("Sec-WebSocket-Accept"),d=oN.createHash("sha1").update(c+c7e).digest("base64");if(f!==d){ic(n,"Incorrect hash received in Sec-WebSocket-Accept header.");return}let h=A.headersList.get("Sec-WebSocket-Extensions"),p;if(h!==null&&(p=p7e(h),!p.has("permessage-deflate"))){ic(n,"Sec-WebSocket-Extensions header does not match.");return}let C=A.headersList.get("Sec-WebSocket-Protocol");if(C!==null&&!I7e("sec-websocket-protocol",a.headersList).includes(C)){ic(n,"Protocol was not set in the opening handshake.");return}A.socket.on("data",ire),A.socket.on("close",ore),A.socket.on("error",are),Ef.open.hasSubscribers&&Ef.open.publish({address:A.socket.address(),protocol:C,extensions:h}),s(A,p)}})}function x7e(e,t,r,n){if(!(f7e(e)||d7e(e)))if(!h7e(e))ic(e,"Connection was closed before it was established."),e[ip]=sp.CLOSING;else if(e[Cb]===Eb.NOT_SENT){e[Cb]=Eb.PROCESSING;let s=new b7e;t!==void 0&&r===void 0?(s.frameData=Buffer.allocUnsafe(2),s.frameData.writeUInt16BE(t,0)):t!==void 0&&r!==void 0?(s.frameData=Buffer.allocUnsafe(2+n),s.frameData.writeUInt16BE(t,0),s.frameData.write(r,2,"utf-8")):s.frameData=u7e,e[sre].socket.write(s.createFrame(l7e.CLOSE)),e[Cb]=Eb.SENT,e[ip]=sp.CLOSING}else e[ip]=sp.CLOSING}function ire(e){this.ws[nre].write(e)||this.pause()}function ore(){let{ws:e}=this,{[sre]:t}=e;t.socket.off("data",ire),t.socket.off("close",ore),t.socket.off("error",are);let r=e[Cb]===Eb.SENT&&e[rre],n=1005,s="",i=e[nre].closingInfo;i&&!i.error?(n=i.code??1005,s=i.reason):e[rre]||(n=1006),e[ip]=sp.CLOSED,A7e("close",e,(o,a)=>new g7e(o,a),{wasClean:r,code:n,reason:s}),Ef.close.hasSubscribers&&Ef.close.publish({websocket:e,code:n,reason:s})}function are(e){let{ws:t}=this;t[ip]=sp.CLOSING,Ef.socketError.hasSubscribers&&Ef.socketError.publish(e),this.destroy()}cre.exports={establishWebSocketConnection:B7e,closeWebSocketConnection:x7e}});var lre=b((MAt,ure)=>{"use strict";var{createInflateRaw:v7e,Z_DEFAULT_WINDOWBITS:Q7e}=require("node:zlib"),{isValidClientWindowBits:T7e}=rp(),w7e=Buffer.from([0,0,255,255]),yb=Symbol("kBuffer"),Ib=Symbol("kLength"),cN=class{#e;#t={};constructor(t){this.#t.serverNoContextTakeover=t.has("server_no_context_takeover"),this.#t.serverMaxWindowBits=t.get("server_max_window_bits")}decompress(t,r,n){if(!this.#e){let s=Q7e;if(this.#t.serverMaxWindowBits){if(!T7e(this.#t.serverMaxWindowBits)){n(new Error("Invalid server_max_window_bits"));return}s=Number.parseInt(this.#t.serverMaxWindowBits)}this.#e=v7e({windowBits:s}),this.#e[yb]=[],this.#e[Ib]=0,this.#e.on("data",i=>{this.#e[yb].push(i),this.#e[Ib]+=i.length}),this.#e.on("error",i=>{this.#e=null,n(i)})}this.#e.write(t),r&&this.#e.write(w7e),this.#e.flush(()=>{let s=Buffer.concat(this.#e[yb],this.#e[Ib]);this.#e[yb].length=0,this.#e[Ib]=0,n(null,s)})}};ure.exports={PerMessageDeflate:cN}});var Ire=b((PAt,yre)=>{"use strict";var{Writable:S7e}=require("node:stream"),_7e=require("node:assert"),{parserStates:On,opcodes:Cf,states:R7e,emptyBuffer:Are,sentCloseFrameState:fre}=Nu(),{kReadyState:D7e,kSentClose:dre,kResponse:hre,kReceivedClose:pre}=Z0(),{channels:bb}=_A(),{isValidStatusCode:N7e,isValidOpcode:k7e,failWebsocketConnection:Os,websocketMessageReceived:gre,utf8Decode:F7e,isControlFrame:mre,isTextBinaryFrame:uN,isContinuationFrame:L7e}=rp(),{WebsocketFrameSend:Ere}=mb(),{closeWebSocketConnection:Cre}=aN(),{PerMessageDeflate:O7e}=lre(),lN=class extends S7e{#e=[];#t=0;#s=!1;#n=On.INFO;#r={};#i=[];#o;constructor(t,r){super(),this.ws=t,this.#o=r??new Map,this.#o.has("permessage-deflate")&&this.#o.set("permessage-deflate",new O7e(r))}_write(t,r,n){this.#e.push(t),this.#t+=t.length,this.#s=!0,this.run(n)}run(t){for(;this.#s;)if(this.#n===On.INFO){if(this.#t<2)return t();let r=this.consume(2),n=(r[0]&128)!==0,s=r[0]&15,i=(r[1]&128)===128,o=!n&&s!==Cf.CONTINUATION,a=r[1]&127,c=r[0]&64,u=r[0]&32,l=r[0]&16;if(!k7e(s))return Os(this.ws,"Invalid opcode received"),t();if(i)return Os(this.ws,"Frame cannot be masked"),t();if(c!==0&&!this.#o.has("permessage-deflate")){Os(this.ws,"Expected RSV1 to be clear.");return}if(u!==0||l!==0){Os(this.ws,"RSV1, RSV2, RSV3 must be clear");return}if(o&&!uN(s)){Os(this.ws,"Invalid frame type was fragmented.");return}if(uN(s)&&this.#i.length>0){Os(this.ws,"Expected continuation frame");return}if(this.#r.fragmented&&o){Os(this.ws,"Fragmented frame exceeded 125 bytes.");return}if((a>125||o)&&mre(s)){Os(this.ws,"Control frame either too large or fragmented");return}if(L7e(s)&&this.#i.length===0&&!this.#r.compressed){Os(this.ws,"Unexpected continuation frame");return}a<=125?(this.#r.payloadLength=a,this.#n=On.READ_DATA):a===126?this.#n=On.PAYLOADLENGTH_16:a===127&&(this.#n=On.PAYLOADLENGTH_64),uN(s)&&(this.#r.binaryType=s,this.#r.compressed=c!==0),this.#r.opcode=s,this.#r.masked=i,this.#r.fin=n,this.#r.fragmented=o}else if(this.#n===On.PAYLOADLENGTH_16){if(this.#t<2)return t();let r=this.consume(2);this.#r.payloadLength=r.readUInt16BE(0),this.#n=On.READ_DATA}else if(this.#n===On.PAYLOADLENGTH_64){if(this.#t<8)return t();let r=this.consume(8),n=r.readUInt32BE(0);if(n>2**31-1){Os(this.ws,"Received payload length > 2^31 bytes.");return}let s=r.readUInt32BE(4);this.#r.payloadLength=(n<<8)+s,this.#n=On.READ_DATA}else if(this.#n===On.READ_DATA){if(this.#t{if(n){Cre(this.ws,1007,n.message,n.message.length);return}if(this.#i.push(s),!this.#r.fin){this.#n=On.INFO,this.#s=!0,this.run(t);return}gre(this.ws,this.#r.binaryType,Buffer.concat(this.#i)),this.#s=!0,this.#n=On.INFO,this.#i.length=0,this.run(t)}),this.#s=!1;break}else{if(this.#i.push(r),!this.#r.fragmented&&this.#r.fin){let n=Buffer.concat(this.#i);gre(this.ws,this.#r.binaryType,n),this.#i.length=0}this.#n=On.INFO}}}consume(t){if(t>this.#t)throw new Error("Called consume() before buffers satiated.");if(t===0)return Are;if(this.#e[0].length===t)return this.#t-=this.#e[0].length,this.#e.shift();let r=Buffer.allocUnsafe(t),n=0;for(;n!==t;){let s=this.#e[0],{length:i}=s;if(i+n===t){r.set(this.#e.shift(),n);break}else if(i+n>t){r.set(s.subarray(0,t-n),n),this.#e[0]=s.subarray(t-n);break}else r.set(this.#e.shift(),n),n+=s.length}return this.#t-=t,r}parseCloseBody(t){_7e(t.length!==1);let r;if(t.length>=2&&(r=t.readUInt16BE(0)),r!==void 0&&!N7e(r))return{code:1002,reason:"Invalid status code",error:!0};let n=t.subarray(2);n[0]===239&&n[1]===187&&n[2]===191&&(n=n.subarray(3));try{n=F7e(n)}catch{return{code:1007,reason:"Invalid UTF-8",error:!0}}return{code:r,reason:n,error:!1}}parseControlFrame(t){let{opcode:r,payloadLength:n}=this.#r;if(r===Cf.CLOSE){if(n===1)return Os(this.ws,"Received close frame with a 1-byte body."),!1;if(this.#r.closeInfo=this.parseCloseBody(t),this.#r.closeInfo.error){let{code:s,reason:i}=this.#r.closeInfo;return Cre(this.ws,s,i,i.length),Os(this.ws,i),!1}if(this.ws[dre]!==fre.SENT){let s=Are;this.#r.closeInfo.code&&(s=Buffer.allocUnsafe(2),s.writeUInt16BE(this.#r.closeInfo.code,0));let i=new Ere(s);this.ws[hre].socket.write(i.createFrame(Cf.CLOSE),o=>{o||(this.ws[dre]=fre.SENT)})}return this.ws[D7e]=R7e.CLOSING,this.ws[pre]=!0,!1}else if(r===Cf.PING){if(!this.ws[pre]){let s=new Ere(t);this.ws[hre].socket.write(s.createFrame(Cf.PONG)),bb.ping.hasSubscribers&&bb.ping.publish({payload:t})}}else r===Cf.PONG&&bb.pong.hasSubscribers&&bb.pong.publish({payload:t});return!0}get closingInfo(){return this.#r.closeInfo}};yre.exports={ByteParser:lN}});var Qre=b((UAt,vre)=>{"use strict";var{WebsocketFrameSend:M7e}=mb(),{opcodes:bre,sendHints:yf}=Nu(),P7e=bR(),Bre=Buffer[Symbol.species],AN=class{#e=new P7e;#t=!1;#s;constructor(t){this.#s=t}add(t,r,n){if(n!==yf.blob){let i=xre(t,n);if(!this.#t)this.#s.write(i,r);else{let o={promise:null,callback:r,frame:i};this.#e.push(o)}return}let s={promise:t.arrayBuffer().then(i=>{s.promise=null,s.frame=xre(i,n)}),callback:r,frame:null};this.#e.push(s),this.#t||this.#n()}async#n(){this.#t=!0;let t=this.#e;for(;!t.isEmpty();){let r=t.shift();r.promise!==null&&await r.promise,this.#s.write(r.frame,r.callback),r.callback=r.frame=null}this.#t=!1}};function xre(e,t){return new M7e(U7e(e,t)).createFrame(t===yf.string?bre.TEXT:bre.BINARY)}function U7e(e,t){switch(t){case yf.string:return Buffer.from(e);case yf.arrayBuffer:case yf.blob:return new Bre(e);case yf.typedArray:return new Bre(e.buffer,e.byteOffset,e.byteLength)}}vre.exports={SendQueue:AN}});var Fre=b((HAt,kre)=>{"use strict";var{webidl:we}=Or(),{URLSerializer:H7e}=Dn(),{environmentSettingsObject:Tre}=Jn(),{staticPropertyDescriptors:oc,states:op,sentCloseFrameState:q7e,sendHints:Bb}=Nu(),{kWebSocketURL:wre,kReadyState:fN,kController:V7e,kBinaryType:xb,kResponse:Sre,kSentClose:Y7e,kByteParser:$7e}=Z0(),{isConnecting:G7e,isEstablished:j7e,isClosing:J7e,isValidSubprotocol:W7e,fireEvent:_re}=rp(),{establishWebSocketConnection:z7e,closeWebSocketConnection:Rre}=aN(),{ByteParser:X7e}=Ire(),{kEnumerableProperty:Ms,isBlobLike:Dre}=Ve(),{getGlobalDispatcher:K7e}=MI(),{types:Nre}=require("node:util"),{ErrorEvent:Z7e,CloseEvent:eYe}=gf(),{SendQueue:tYe}=Qre(),ts=class e extends EventTarget{#e={open:null,error:null,close:null,message:null};#t=0;#s="";#n="";#r;constructor(t,r=[]){super(),we.util.markAsUncloneable(this);let n="WebSocket constructor";we.argumentLengthCheck(arguments,1,n);let s=we.converters["DOMString or sequence or WebSocketInit"](r,n,"options");t=we.converters.USVString(t,n,"url"),r=s.protocols;let i=Tre.settingsObject.baseUrl,o;try{o=new URL(t,i)}catch(c){throw new DOMException(c,"SyntaxError")}if(o.protocol==="http:"?o.protocol="ws:":o.protocol==="https:"&&(o.protocol="wss:"),o.protocol!=="ws:"&&o.protocol!=="wss:")throw new DOMException(`Expected a ws: or wss: protocol, got ${o.protocol}`,"SyntaxError");if(o.hash||o.href.endsWith("#"))throw new DOMException("Got fragment","SyntaxError");if(typeof r=="string"&&(r=[r]),r.length!==new Set(r.map(c=>c.toLowerCase())).size)throw new DOMException("Invalid Sec-WebSocket-Protocol value","SyntaxError");if(r.length>0&&!r.every(c=>W7e(c)))throw new DOMException("Invalid Sec-WebSocket-Protocol value","SyntaxError");this[wre]=new URL(o.href);let a=Tre.settingsObject;this[V7e]=z7e(o,r,a,this,(c,u)=>this.#i(c,u),s),this[fN]=e.CONNECTING,this[Y7e]=q7e.NOT_SENT,this[xb]="blob"}close(t=void 0,r=void 0){we.brandCheck(this,e);let n="WebSocket.close";if(t!==void 0&&(t=we.converters["unsigned short"](t,n,"code",{clamp:!0})),r!==void 0&&(r=we.converters.USVString(r,n,"reason")),t!==void 0&&t!==1e3&&(t<3e3||t>4999))throw new DOMException("invalid code","InvalidAccessError");let s=0;if(r!==void 0&&(s=Buffer.byteLength(r),s>123))throw new DOMException(`Reason must be less than 123 bytes; received ${s}`,"SyntaxError");Rre(this,t,r,s)}send(t){we.brandCheck(this,e);let r="WebSocket.send";if(we.argumentLengthCheck(arguments,1,r),t=we.converters.WebSocketSendData(t,r,"data"),G7e(this))throw new DOMException("Sent before connected.","InvalidStateError");if(!(!j7e(this)||J7e(this)))if(typeof t=="string"){let n=Buffer.byteLength(t);this.#t+=n,this.#r.add(t,()=>{this.#t-=n},Bb.string)}else Nre.isArrayBuffer(t)?(this.#t+=t.byteLength,this.#r.add(t,()=>{this.#t-=t.byteLength},Bb.arrayBuffer)):ArrayBuffer.isView(t)?(this.#t+=t.byteLength,this.#r.add(t,()=>{this.#t-=t.byteLength},Bb.typedArray)):Dre(t)&&(this.#t+=t.size,this.#r.add(t,()=>{this.#t-=t.size},Bb.blob))}get readyState(){return we.brandCheck(this,e),this[fN]}get bufferedAmount(){return we.brandCheck(this,e),this.#t}get url(){return we.brandCheck(this,e),H7e(this[wre])}get extensions(){return we.brandCheck(this,e),this.#n}get protocol(){return we.brandCheck(this,e),this.#s}get onopen(){return we.brandCheck(this,e),this.#e.open}set onopen(t){we.brandCheck(this,e),this.#e.open&&this.removeEventListener("open",this.#e.open),typeof t=="function"?(this.#e.open=t,this.addEventListener("open",t)):this.#e.open=null}get onerror(){return we.brandCheck(this,e),this.#e.error}set onerror(t){we.brandCheck(this,e),this.#e.error&&this.removeEventListener("error",this.#e.error),typeof t=="function"?(this.#e.error=t,this.addEventListener("error",t)):this.#e.error=null}get onclose(){return we.brandCheck(this,e),this.#e.close}set onclose(t){we.brandCheck(this,e),this.#e.close&&this.removeEventListener("close",this.#e.close),typeof t=="function"?(this.#e.close=t,this.addEventListener("close",t)):this.#e.close=null}get onmessage(){return we.brandCheck(this,e),this.#e.message}set onmessage(t){we.brandCheck(this,e),this.#e.message&&this.removeEventListener("message",this.#e.message),typeof t=="function"?(this.#e.message=t,this.addEventListener("message",t)):this.#e.message=null}get binaryType(){return we.brandCheck(this,e),this[xb]}set binaryType(t){we.brandCheck(this,e),t!=="blob"&&t!=="arraybuffer"?this[xb]="blob":this[xb]=t}#i(t,r){this[Sre]=t;let n=new X7e(this,r);n.on("drain",rYe),n.on("error",nYe.bind(this)),t.socket.ws=this,this[$7e]=n,this.#r=new tYe(t.socket),this[fN]=op.OPEN;let s=t.headersList.get("sec-websocket-extensions");s!==null&&(this.#n=s);let i=t.headersList.get("sec-websocket-protocol");i!==null&&(this.#s=i),_re("open",this)}};ts.CONNECTING=ts.prototype.CONNECTING=op.CONNECTING;ts.OPEN=ts.prototype.OPEN=op.OPEN;ts.CLOSING=ts.prototype.CLOSING=op.CLOSING;ts.CLOSED=ts.prototype.CLOSED=op.CLOSED;Object.defineProperties(ts.prototype,{CONNECTING:oc,OPEN:oc,CLOSING:oc,CLOSED:oc,url:Ms,readyState:Ms,bufferedAmount:Ms,onopen:Ms,onerror:Ms,onclose:Ms,close:Ms,onmessage:Ms,binaryType:Ms,send:Ms,extensions:Ms,protocol:Ms,[Symbol.toStringTag]:{value:"WebSocket",writable:!1,enumerable:!1,configurable:!0}});Object.defineProperties(ts,{CONNECTING:oc,OPEN:oc,CLOSING:oc,CLOSED:oc});we.converters["sequence"]=we.sequenceConverter(we.converters.DOMString);we.converters["DOMString or sequence"]=function(e,t,r){return we.util.Type(e)==="Object"&&Symbol.iterator in e?we.converters["sequence"](e):we.converters.DOMString(e,t,r)};we.converters.WebSocketInit=we.dictionaryConverter([{key:"protocols",converter:we.converters["DOMString or sequence"],defaultValue:()=>new Array(0)},{key:"dispatcher",converter:we.converters.any,defaultValue:()=>K7e()},{key:"headers",converter:we.nullableConverter(we.converters.HeadersInit)}]);we.converters["DOMString or sequence or WebSocketInit"]=function(e){return we.util.Type(e)==="Object"&&!(Symbol.iterator in e)?we.converters.WebSocketInit(e):{protocols:we.converters["DOMString or sequence"](e)}};we.converters.WebSocketSendData=function(e){if(we.util.Type(e)==="Object"){if(Dre(e))return we.converters.Blob(e,{strict:!1});if(ArrayBuffer.isView(e)||Nre.isArrayBuffer(e))return we.converters.BufferSource(e)}return we.converters.USVString(e)};function rYe(){this.ws[Sre].socket.resume()}function nYe(e){let t,r;e instanceof eYe?(t=e.reason,r=e.code):t=e.message,_re("error",this,()=>new Z7e("error",{error:e,message:t})),Rre(this,r)}kre.exports={WebSocket:ts}});var dN=b((qAt,Lre)=>{"use strict";function sYe(e){return e.indexOf("\0")===-1}function iYe(e){if(e.length===0)return!1;for(let t=0;t57)return!1;return!0}function oYe(e){return new Promise(t=>{setTimeout(t,e).unref()})}Lre.exports={isValidLastEventId:sYe,isASCIINumber:iYe,delay:oYe}});var Ure=b((VAt,Pre)=>{"use strict";var{Transform:aYe}=require("node:stream"),{isASCIINumber:Ore,isValidLastEventId:Mre}=dN(),Go=[239,187,191],hN=10,vb=13,cYe=58,uYe=32,pN=class extends aYe{state=null;checkBOM=!0;crlfCheck=!1;eventEndCheck=!1;buffer=null;pos=0;event={data:void 0,event:void 0,id:void 0,retry:void 0};constructor(t={}){t.readableObjectMode=!0,super(t),this.state=t.eventSourceSettings||{},t.push&&(this.push=t.push)}_transform(t,r,n){if(t.length===0){n();return}if(this.buffer?this.buffer=Buffer.concat([this.buffer,t]):this.buffer=t,this.checkBOM)switch(this.buffer.length){case 1:if(this.buffer[0]===Go[0]){n();return}this.checkBOM=!1,n();return;case 2:if(this.buffer[0]===Go[0]&&this.buffer[1]===Go[1]){n();return}this.checkBOM=!1;break;case 3:if(this.buffer[0]===Go[0]&&this.buffer[1]===Go[1]&&this.buffer[2]===Go[2]){this.buffer=Buffer.alloc(0),this.checkBOM=!1,n();return}this.checkBOM=!1;break;default:this.buffer[0]===Go[0]&&this.buffer[1]===Go[1]&&this.buffer[2]===Go[2]&&(this.buffer=this.buffer.subarray(3)),this.checkBOM=!1;break}for(;this.pos0&&(r[s]=i);break}}processEvent(t){t.retry&&Ore(t.retry)&&(this.state.reconnectionTime=parseInt(t.retry,10)),t.id&&Mre(t.id)&&(this.state.lastEventId=t.id),t.data!==void 0&&this.push({type:t.event||"message",options:{data:t.data,lastEventId:this.state.lastEventId,origin:this.state.origin}})}clearEvent(){this.event={data:void 0,event:void 0,id:void 0,retry:void 0}}};Pre.exports={EventSourceStream:pN}});var Jre=b((YAt,jre)=>{"use strict";var{pipeline:lYe}=require("node:stream"),{fetching:AYe}=W0(),{makeRequest:fYe}=lf(),{webidl:jo}=Or(),{EventSourceStream:dYe}=Ure(),{parseMIMEType:hYe}=Dn(),{createFastMessageEvent:pYe}=gf(),{isNetworkError:Hre}=j0(),{delay:gYe}=dN(),{kEnumerableProperty:ku}=Ve(),{environmentSettingsObject:qre}=Jn(),Vre=!1,Yre=3e3,ap=0,$re=1,cp=2,mYe="anonymous",EYe="use-credentials",If=class e extends EventTarget{#e={open:null,error:null,message:null};#t=null;#s=!1;#n=ap;#r=null;#i=null;#o;#a;constructor(t,r={}){super(),jo.util.markAsUncloneable(this);let n="EventSource constructor";jo.argumentLengthCheck(arguments,1,n),Vre||(Vre=!0,process.emitWarning("EventSource is experimental, expect them to change at any time.",{code:"UNDICI-ES"})),t=jo.converters.USVString(t,n,"url"),r=jo.converters.EventSourceInitDict(r,n,"eventSourceInitDict"),this.#o=r.dispatcher,this.#a={lastEventId:"",reconnectionTime:Yre};let s=qre,i;try{i=new URL(t,s.settingsObject.baseUrl),this.#a.origin=i.origin}catch(c){throw new DOMException(c,"SyntaxError")}this.#t=i.href;let o=mYe;r.withCredentials&&(o=EYe,this.#s=!0);let a={redirect:"follow",keepalive:!0,mode:"cors",credentials:o==="anonymous"?"same-origin":"omit",referrer:"no-referrer"};a.client=qre.settingsObject,a.headersList=[["accept",{name:"accept",value:"text/event-stream"}]],a.cache="no-store",a.initiator="other",a.urlList=[new URL(this.#t)],this.#r=fYe(a),this.#c()}get readyState(){return this.#n}get url(){return this.#t}get withCredentials(){return this.#s}#c(){if(this.#n===cp)return;this.#n=ap;let t={request:this.#r,dispatcher:this.#o},r=n=>{Hre(n)&&(this.dispatchEvent(new Event("error")),this.close()),this.#u()};t.processResponseEndOfBody=r,t.processResponse=n=>{if(Hre(n))if(n.aborted){this.close(),this.dispatchEvent(new Event("error"));return}else{this.#u();return}let s=n.headersList.get("content-type",!0),i=s!==null?hYe(s):"failure",o=i!=="failure"&&i.essence==="text/event-stream";if(n.status!==200||o===!1){this.close(),this.dispatchEvent(new Event("error"));return}this.#n=$re,this.dispatchEvent(new Event("open")),this.#a.origin=n.urlList[n.urlList.length-1].origin;let a=new dYe({eventSourceSettings:this.#a,push:c=>{this.dispatchEvent(pYe(c.type,c.options))}});lYe(n.body.stream,a,c=>{c?.aborted===!1&&(this.close(),this.dispatchEvent(new Event("error")))})},this.#i=AYe(t)}async#u(){this.#n!==cp&&(this.#n=ap,this.dispatchEvent(new Event("error")),await gYe(this.#a.reconnectionTime),this.#n===ap&&(this.#a.lastEventId.length&&this.#r.headersList.set("last-event-id",this.#a.lastEventId,!0),this.#c()))}close(){jo.brandCheck(this,e),this.#n!==cp&&(this.#n=cp,this.#i.abort(),this.#r=null)}get onopen(){return this.#e.open}set onopen(t){this.#e.open&&this.removeEventListener("open",this.#e.open),typeof t=="function"?(this.#e.open=t,this.addEventListener("open",t)):this.#e.open=null}get onmessage(){return this.#e.message}set onmessage(t){this.#e.message&&this.removeEventListener("message",this.#e.message),typeof t=="function"?(this.#e.message=t,this.addEventListener("message",t)):this.#e.message=null}get onerror(){return this.#e.error}set onerror(t){this.#e.error&&this.removeEventListener("error",this.#e.error),typeof t=="function"?(this.#e.error=t,this.addEventListener("error",t)):this.#e.error=null}},Gre={CONNECTING:{__proto__:null,configurable:!1,enumerable:!0,value:ap,writable:!1},OPEN:{__proto__:null,configurable:!1,enumerable:!0,value:$re,writable:!1},CLOSED:{__proto__:null,configurable:!1,enumerable:!0,value:cp,writable:!1}};Object.defineProperties(If,Gre);Object.defineProperties(If.prototype,Gre);Object.defineProperties(If.prototype,{close:ku,onerror:ku,onmessage:ku,onopen:ku,readyState:ku,url:ku,withCredentials:ku});jo.converters.EventSourceInitDict=jo.dictionaryConverter([{key:"withCredentials",converter:jo.converters.boolean,defaultValue:()=>!1},{key:"dispatcher",converter:jo.converters.any}]);jre.exports={EventSource:If,defaultReconnectionTime:Yre}});var Kre=b(($At,Te)=>{"use strict";var CYe=D0(),Wre=l0(),yYe=zA(),IYe=rK(),bYe=XA(),BYe=UR(),xYe=CK(),vYe=vK(),zre=ht(),Tb=Ve(),{InvalidArgumentError:Qb}=zre,bf=AZ(),QYe=f0(),TYe=ID(),wYe=GZ(),SYe=xD(),_Ye=cD(),RYe=wI(),{getGlobalDispatcher:Xre,setGlobalDispatcher:DYe}=MI(),NYe=PI(),kYe=mI(),FYe=EI();Object.assign(Wre.prototype,bf);Te.exports.Dispatcher=Wre;Te.exports.Client=CYe;Te.exports.Pool=yYe;Te.exports.BalancedPool=IYe;Te.exports.Agent=bYe;Te.exports.ProxyAgent=BYe;Te.exports.EnvHttpProxyAgent=xYe;Te.exports.RetryAgent=vYe;Te.exports.RetryHandler=RYe;Te.exports.DecoratorHandler=NYe;Te.exports.RedirectHandler=kYe;Te.exports.createRedirectInterceptor=FYe;Te.exports.interceptors={redirect:ZZ(),retry:tee(),dump:nee(),dns:oee()};Te.exports.buildConnector=QYe;Te.exports.errors=zre;Te.exports.util={parseHeaders:Tb.parseHeaders,headerNameToString:Tb.headerNameToString};function up(e){return(t,r,n)=>{if(typeof r=="function"&&(n=r,r=null),!t||typeof t!="string"&&typeof t!="object"&&!(t instanceof URL))throw new Qb("invalid url");if(r!=null&&typeof r!="object")throw new Qb("invalid opts");if(r&&r.path!=null){if(typeof r.path!="string")throw new Qb("invalid opts.path");let o=r.path;r.path.startsWith("/")||(o=`/${o}`),t=new URL(Tb.parseOrigin(t).origin+o)}else r||(r=typeof t=="object"?t:{}),t=Tb.parseURL(t);let{agent:s,dispatcher:i=Xre()}=r;if(s)throw new Qb("unsupported opts.agent. Did you mean opts.client?");return e.call(i,{...r,origin:t.origin,path:t.search?`${t.pathname}${t.search}`:t.pathname,method:r.method||(r.body?"PUT":"GET")},n)}}Te.exports.setGlobalDispatcher=DYe;Te.exports.getGlobalDispatcher=Xre;var LYe=W0().fetch;Te.exports.fetch=async function(t,r=void 0){try{return await LYe(t,r)}catch(n){throw n&&typeof n=="object"&&Error.captureStackTrace(n),n}};Te.exports.Headers=Tu().Headers;Te.exports.Response=j0().Response;Te.exports.Request=lf().Request;Te.exports.FormData=C0().FormData;Te.exports.File=globalThis.File??require("node:buffer").File;Te.exports.FileReader=yte().FileReader;var{setGlobalOrigin:OYe,getGlobalOrigin:MYe}=H_();Te.exports.setGlobalOrigin=OYe;Te.exports.getGlobalOrigin=MYe;var{CacheStorage:PYe}=Ste(),{kConstruct:UYe}=ob();Te.exports.caches=new PYe(UYe);var{deleteCookie:HYe,getCookies:qYe,getSetCookies:VYe,setCookie:YYe}=Hte();Te.exports.deleteCookie=HYe;Te.exports.getCookies=qYe;Te.exports.getSetCookies=VYe;Te.exports.setCookie=YYe;var{parseMIMEType:$Ye,serializeAMimeType:GYe}=Dn();Te.exports.parseMIMEType=$Ye;Te.exports.serializeAMimeType=GYe;var{CloseEvent:jYe,ErrorEvent:JYe,MessageEvent:WYe}=gf();Te.exports.WebSocket=Fre().WebSocket;Te.exports.CloseEvent=jYe;Te.exports.ErrorEvent=JYe;Te.exports.MessageEvent=WYe;Te.exports.request=up(bf.request);Te.exports.stream=up(bf.stream);Te.exports.pipeline=up(bf.pipeline);Te.exports.connect=up(bf.connect);Te.exports.upgrade=up(bf.upgrade);Te.exports.MockClient=TYe;Te.exports.MockPool=SYe;Te.exports.MockAgent=wYe;Te.exports.mockErrors=_Ye;var{EventSource:zYe}=Jre();Te.exports.EventSource=zYe});var lp=b(ac=>{"use strict";ac.removeLeadingAndTrailingHTTPWhitespace=e=>e.replace(/^[ \t\n\r]+/u,"").replace(/[ \t\n\r]+$/u,"");ac.removeTrailingHTTPWhitespace=e=>e.replace(/[ \t\n\r]+$/u,"");ac.isHTTPWhitespaceChar=e=>e===" "||e===" "||e===` +`||e==="\r";ac.solelyContainsHTTPTokenCodePoints=e=>/^[-!#$%&'*+.^_`|~A-Za-z0-9]*$/u.test(e);ac.soleyContainsHTTPQuotedStringTokenCodePoints=e=>/^[\t\u0020-\u007E\u0080-\u00FF]*$/u.test(e);ac.asciiLowercase=e=>e.replace(/[A-Z]/ug,t=>t.toLowerCase());ac.collectAnHTTPQuotedString=(e,t)=>{let r="";for(t++;;){for(;t=e.length)break;let n=e[t];if(++t,n==="\\"){if(t>=e.length){r+="\\";break}r+=e[t],++t}else break}return[r,t]}});var ene=b((JAt,Zre)=>{"use strict";var{asciiLowercase:wb,solelyContainsHTTPTokenCodePoints:XYe,soleyContainsHTTPQuotedStringTokenCodePoints:KYe}=lp();Zre.exports=class{constructor(t){this._map=t}get size(){return this._map.size}get(t){return t=wb(String(t)),this._map.get(t)}has(t){return t=wb(String(t)),this._map.has(t)}set(t,r){if(t=wb(String(t)),r=String(r),!XYe(t))throw new Error(`Invalid MIME type parameter name "${t}": only HTTP token code points are valid.`);if(!KYe(r))throw new Error(`Invalid MIME type parameter value "${r}": only HTTP quoted-string token code points are valid.`);return this._map.set(t,r)}clear(){this._map.clear()}delete(t){return t=wb(String(t)),this._map.delete(t)}forEach(t,r){this._map.forEach(t,r)}keys(){return this._map.keys()}values(){return this._map.values()}entries(){return this._map.entries()}[Symbol.iterator](){return this._map[Symbol.iterator]()}}});var nne=b((WAt,rne)=>{"use strict";var{removeLeadingAndTrailingHTTPWhitespace:ZYe,removeTrailingHTTPWhitespace:tne,isHTTPWhitespaceChar:e$e,solelyContainsHTTPTokenCodePoints:gN,soleyContainsHTTPQuotedStringTokenCodePoints:t$e,asciiLowercase:mN,collectAnHTTPQuotedString:r$e}=lp();rne.exports=e=>{e=ZYe(e);let t=0,r="";for(;t=e.length)return null;++t;let n="";for(;t0&&gN(i)&&t$e(o)&&!s.parameters.has(i)&&s.parameters.set(i,o)}return s}});var ine=b((zAt,sne)=>{"use strict";var{solelyContainsHTTPTokenCodePoints:n$e}=lp();sne.exports=e=>{let t=`${e.type}/${e.subtype}`;if(e.parameters.size===0)return t;for(let[r,n]of e.parameters)t+=";",t+=r,t+="=",(!n$e(n)||n.length===0)&&(n=n.replace(/(["\\])/ug,"\\$1"),n=`"${n}"`),t+=n;return t}});var une=b((KAt,cne)=>{"use strict";var s$e=ene(),i$e=nne(),o$e=ine(),{asciiLowercase:one,solelyContainsHTTPTokenCodePoints:ane}=lp();cne.exports=class{constructor(t){t=String(t);let r=i$e(t);if(r===null)throw new Error(`Could not parse MIME type string "${t}"`);this._type=r.type,this._subtype=r.subtype,this._parameters=new s$e(r.parameters)}static parse(t){try{return new this(t)}catch{return null}}get essence(){return`${this.type}/${this.subtype}`}get type(){return this._type}set type(t){if(t=one(String(t)),t.length===0)throw new Error("Invalid type: must be a non-empty string");if(!ane(t))throw new Error(`Invalid type ${t}: must contain only HTTP token code points`);this._type=t}get subtype(){return this._subtype}set subtype(t){if(t=one(String(t)),t.length===0)throw new Error("Invalid subtype: must be a non-empty string");if(!ane(t))throw new Error(`Invalid subtype ${t}: must contain only HTTP token code points`);this._subtype=t}get parameters(){return this._parameters}toString(){return o$e(this)}isJavaScript({prohibitParameters:t=!1}={}){switch(this._type){case"text":switch(this._subtype){case"ecmascript":case"javascript":case"javascript1.0":case"javascript1.1":case"javascript1.2":case"javascript1.3":case"javascript1.4":case"javascript1.5":case"jscript":case"livescript":case"x-ecmascript":case"x-javascript":return!t||this._parameters.size===0;default:return!1}case"application":switch(this._subtype){case"ecmascript":case"javascript":case"x-ecmascript":case"x-javascript":return!t||this._parameters.size===0;default:return!1}default:return!1}}isXML(){return this._subtype==="xml"&&(this._type==="text"||this._type==="application")||this._subtype.endsWith("+xml")}isHTML(){return this._subtype==="html"&&this._type==="text"}}});var dp=b(Ye=>{"use strict";Object.defineProperty(Ye,"__esModule",{value:!0});Ye.getOptions=Ye.setOptions=Ye.hasOwnProp=Ye.formatDate=Ye.camelify=Ye.splitByCommaWithPreservingQuotes=Ye.trim=Ye.splitAt=Ye.tryCatch=Ye.byteSequenceToHex=Ye.hexToByteSequence=Ye.toNumber=Ye.INVALIDPLAYLIST=Ye.CONDITIONALPARAMCHECK=Ye.PARAMCHECK=Ye.CONDITIONALASSERT=Ye.ASSERT=Ye.THROW=void 0;var fp={};function Fu(e){if(!fp.strictMode){fp.silent||console.error(e.message);return}throw e}Ye.THROW=Fu;function B$e(e,...t){for(let[r,n]of t.entries())n||Fu(new Error(`${e} : Failed at [${r}]`))}Ye.ASSERT=B$e;function x$e(...e){for(let[t,[r,n]]of e.entries())r&&(n||Fu(new Error(`Conditional Assert : Failed at [${t}]`)))}Ye.CONDITIONALASSERT=x$e;function v$e(...e){for(let[t,r]of e.entries())r===void 0&&Fu(new Error(`Param Check : Failed at [${t}]`))}Ye.PARAMCHECK=v$e;function Q$e(...e){for(let[t,[r,n]]of e.entries())r&&n===void 0&&Fu(new Error(`Conditional Param Check : Failed at [${t}]`))}Ye.CONDITIONALPARAMCHECK=Q$e;function T$e(e){Fu(new Error(`Invalid Playlist : ${e}`))}Ye.INVALIDPLAYLIST=T$e;function fne(e,t=10){if(typeof e=="number")return e;let r=t===10?Number.parseFloat(e):Number.parseInt(e,t);return Number.isNaN(r)?0:r}Ye.toNumber=fne;function w$e(e){(e.startsWith("0x")||e.startsWith("0X"))&&(e=e.slice(2));let t=[];for(let r=0;r{"use strict";var P$e=Ke&&Ke.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(t,r);(!s||("get"in s?!t.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,s)}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),U$e=Ke&&Ke.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),H$e=Ke&&Ke.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&P$e(t,e,r);return U$e(t,e),t};Object.defineProperty(Ke,"__esModule",{value:!0});Ke.RenditionReport=Ke.PrefetchSegment=Ke.PartialSegment=Ke.Segment=Ke.MediaPlaylist=Ke.MasterPlaylist=Ke.Playlist=Ke.SpliceInfo=Ke.DateRange=Ke.MediaInitializationSection=Ke.Key=Ke.SessionData=Ke.Variant=Ke.Rendition=void 0;var lr=H$e(dp()),EN=class{type;uri;groupId;language;assocLanguage;name;isDefault;autoselect;forced;instreamId;characteristics;channels;constructor({type:t,uri:r,groupId:n,language:s,assocLanguage:i,name:o,isDefault:a,autoselect:c,forced:u,instreamId:l,characteristics:A,channels:f}){lr.PARAMCHECK(t,n,o),lr.CONDITIONALASSERT([t==="SUBTITLES",r],[t==="CLOSED-CAPTIONS",l],[t==="CLOSED-CAPTIONS",!r],[u,t==="SUBTITLES"]),this.type=t,this.uri=r,this.groupId=n,this.language=s,this.assocLanguage=i,this.name=o,this.isDefault=a,this.autoselect=c,this.forced=u,this.instreamId=l,this.characteristics=A,this.channels=f}};Ke.Rendition=EN;var CN=class{uri;isIFrameOnly;bandwidth;averageBandwidth;score;codecs;resolution;frameRate;hdcpLevel;allowedCpc;videoRange;stableVariantId;programId;audio;video;subtitles;closedCaptions;currentRenditions;constructor({uri:t,isIFrameOnly:r=!1,bandwidth:n,averageBandwidth:s,score:i,codecs:o,resolution:a,frameRate:c,hdcpLevel:u,allowedCpc:l,videoRange:A,stableVariantId:f,programId:d,audio:h=[],video:p=[],subtitles:C=[],closedCaptions:m=[],currentRenditions:I={audio:0,video:0,subtitles:0,closedCaptions:0}}){lr.PARAMCHECK(t,n),this.uri=t,this.isIFrameOnly=r,this.bandwidth=n,this.averageBandwidth=s,this.score=i,this.codecs=o,this.resolution=a,this.frameRate=c,this.hdcpLevel=u,this.allowedCpc=l,this.videoRange=A,this.stableVariantId=f,this.programId=d,this.audio=h,this.video=p,this.subtitles=C,this.closedCaptions=m,this.currentRenditions=I}};Ke.Variant=CN;var yN=class{id;value;uri;language;constructor({id:t,value:r,uri:n,language:s}){lr.PARAMCHECK(t,r||n),lr.ASSERT("SessionData cannot have both value and uri, shoud be either.",!(r&&n)),this.id=t,this.value=r,this.uri=n,this.language=s}};Ke.SessionData=yN;var IN=class{method;uri;iv;format;formatVersion;constructor({method:t,uri:r,iv:n,format:s,formatVersion:i}){lr.PARAMCHECK(t),lr.CONDITIONALPARAMCHECK([t!=="NONE",r]),lr.CONDITIONALASSERT([t==="NONE",!(r||n||s||i)]),this.method=t,this.uri=r,this.iv=n,this.format=s,this.formatVersion=i}};Ke.Key=IN;var bN=class{hint;uri;mimeType;byterange;constructor({hint:t=!1,uri:r,mimeType:n,byterange:s}){lr.PARAMCHECK(r),this.hint=t,this.uri=r,this.mimeType=n,this.byterange=s}};Ke.MediaInitializationSection=bN;var BN=class{id;classId;start;end;duration;plannedDuration;endOnNext;attributes;constructor({id:t,classId:r,start:n,end:s,duration:i,plannedDuration:o,endOnNext:a,attributes:c={}}){lr.PARAMCHECK(t),lr.CONDITIONALPARAMCHECK([a===!0,r]),lr.CONDITIONALASSERT([s,n],[s,n<=s],[i,i>=0],[o,o>=0]),this.id=t,this.classId=r,this.start=n,this.end=s,this.duration=i,this.plannedDuration=o,this.endOnNext=a,this.attributes=c}};Ke.DateRange=BN;var xN=class{type;duration;tagName;value;constructor({type:t,duration:r,tagName:n,value:s}){lr.PARAMCHECK(t),lr.CONDITIONALPARAMCHECK([t==="OUT",r]),lr.CONDITIONALPARAMCHECK([t==="RAW",n]),this.type=t,this.duration=r,this.tagName=n,this.value=s}};Ke.SpliceInfo=xN;var vf=class{type;constructor(t){lr.PARAMCHECK(t),this.type=t}},hp=class extends vf{isMasterPlaylist;uri;version;independentSegments;start;source;constructor({isMasterPlaylist:t,uri:r,version:n,independentSegments:s=!1,start:i,source:o}){super("playlist"),lr.PARAMCHECK(t),this.isMasterPlaylist=t,this.uri=r,this.version=n,this.independentSegments=s,this.start=i,this.source=o}};Ke.Playlist=hp;var vN=class extends hp{variants;currentVariant;sessionDataList;sessionKeyList;constructor(t={}){super({...t,isMasterPlaylist:!0});let{variants:r=[],currentVariant:n,sessionDataList:s=[],sessionKeyList:i=[]}=t;this.variants=r,this.currentVariant=n,this.sessionDataList=s,this.sessionKeyList=i}};Ke.MasterPlaylist=vN;var QN=class extends hp{targetDuration;mediaSequenceBase;discontinuitySequenceBase;endlist;playlistType;isIFrame;segments;prefetchSegments;lowLatencyCompatibility;partTargetDuration;renditionReports;skip;hash;constructor(t={}){super({...t,isMasterPlaylist:!1});let{targetDuration:r,mediaSequenceBase:n=0,discontinuitySequenceBase:s=0,endlist:i=!1,playlistType:o,isIFrame:a,segments:c=[],prefetchSegments:u=[],lowLatencyCompatibility:l,partTargetDuration:A,renditionReports:f=[],skip:d=0,hash:h}=t;this.targetDuration=r,this.mediaSequenceBase=n,this.discontinuitySequenceBase=s,this.endlist=i,this.playlistType=o,this.isIFrame=a,this.segments=c,this.prefetchSegments=u,this.lowLatencyCompatibility=l,this.partTargetDuration=A,this.renditionReports=f,this.skip=d,this.hash=h}};Ke.MediaPlaylist=QN;var TN=class extends vf{uri;mimeType;data;duration;title;byterange;discontinuity;mediaSequenceNumber;discontinuitySequence;key;map;programDateTime;dateRange;markers;parts;constructor({uri:t,mimeType:r,data:n,duration:s,title:i,byterange:o,discontinuity:a,mediaSequenceNumber:c=0,discontinuitySequence:u=0,key:l,map:A,programDateTime:f,dateRange:d,markers:h=[],parts:p=[]}){super("segment"),this.uri=t,this.mimeType=r,this.data=n,this.duration=s,this.title=i,this.byterange=o,this.discontinuity=a,this.mediaSequenceNumber=c,this.discontinuitySequence=u,this.key=l,this.map=A,this.programDateTime=f,this.dateRange=d,this.markers=h,this.parts=p}};Ke.Segment=TN;var wN=class extends vf{hint;uri;duration;independent;byterange;gap;constructor({hint:t=!1,uri:r,duration:n,independent:s,byterange:i,gap:o}){super("part"),lr.PARAMCHECK(r),this.hint=t,this.uri=r,this.duration=n,this.independent=s,this.duration=n,this.byterange=i,this.gap=o}};Ke.PartialSegment=wN;var SN=class extends vf{uri;discontinuity;mediaSequenceNumber;discontinuitySequence;key;constructor({uri:t,discontinuity:r,mediaSequenceNumber:n=0,discontinuitySequence:s=0,key:i}){super("prefetch"),lr.PARAMCHECK(t),this.uri=t,this.discontinuity=r,this.mediaSequenceNumber=n,this.discontinuitySequence=s,this.key=i}};Ke.PrefetchSegment=SN;var _N=class{uri;lastMSN;lastPart;constructor({uri:t,lastMSN:r,lastPart:n}){lr.PARAMCHECK(t),this.uri=t,this.lastMSN=r,this.lastPart=n}};Ke.RenditionReport=_N});var yne=b(Wo=>{"use strict";var q$e=Wo&&Wo.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(t,r);(!s||("get"in s?!t.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,s)}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),V$e=Wo&&Wo.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),Y$e=Wo&&Wo.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&q$e(t,e,r);return V$e(t,e),t};Object.defineProperty(Wo,"__esModule",{value:!0});var se=Y$e(dp()),vr=RN();function Ene(e){return se.trim(e,'"')}function $$e(e){switch(e){case"EXTM3U":case"EXT-X-VERSION":return"Basic";case"EXTINF":case"EXT-X-BYTERANGE":case"EXT-X-DISCONTINUITY":case"EXT-X-PREFETCH-DISCONTINUITY":case"EXT-X-KEY":case"EXT-X-MAP":case"EXT-X-PROGRAM-DATE-TIME":case"EXT-X-DATERANGE":case"EXT-X-CUE-OUT":case"EXT-X-CUE-IN":case"EXT-X-CUE-OUT-CONT":case"EXT-X-CUE":case"EXT-OATCLS-SCTE35":case"EXT-X-ASSET":case"EXT-X-SCTE35":case"EXT-X-PART":case"EXT-X-PRELOAD-HINT":return"Segment";case"EXT-X-TARGETDURATION":case"EXT-X-MEDIA-SEQUENCE":case"EXT-X-DISCONTINUITY-SEQUENCE":case"EXT-X-ENDLIST":case"EXT-X-PLAYLIST-TYPE":case"EXT-X-I-FRAMES-ONLY":case"EXT-X-SERVER-CONTROL":case"EXT-X-PART-INF":case"EXT-X-PREFETCH":case"EXT-X-RENDITION-REPORT":case"EXT-X-SKIP":return"MediaPlaylist";case"EXT-X-MEDIA":case"EXT-X-STREAM-INF":case"EXT-X-I-FRAME-STREAM-INF":case"EXT-X-SESSION-DATA":case"EXT-X-SESSION-KEY":return"MasterPlaylist";case"EXT-X-INDEPENDENT-SEGMENTS":case"EXT-X-START":return"MediaorMasterPlaylist";default:return"Unknown"}}function G$e(e){let t=se.splitAt(e,",");return{duration:se.toNumber(t[0]),title:decodeURIComponent(escape(t[1]))}}function Cne(e){let t=se.splitAt(e,"@");return{length:se.toNumber(t[0]),offset:t[1]?se.toNumber(t[1]):-1}}function j$e(e){let t=se.splitAt(e,"x");return{width:se.toNumber(t[0]),height:se.toNumber(t[1])}}function J$e(e){let t="ALLOWED-CPC: Each entry must consit of KEYFORMAT and Content Protection Configuration",r=e.split(",");r.length===0&&se.INVALIDPLAYLIST(t);let n=[];for(let s of r){let[i,o]=se.splitAt(s,":");if(!i||!o){se.INVALIDPLAYLIST(t);continue}n.push({format:i,cpcList:o.split("/")})}return n}function W$e(e){let t=se.hexToByteSequence(e);return t.length!==16&&se.INVALIDPLAYLIST("IV must be a 128-bit unsigned integer"),t}function z$e(e){return e.startsWith('"')?Ene(e):e.startsWith("0x")||e.startsWith("0X")?se.hexToByteSequence(e):se.toNumber(e)}function DN(e,t){t.IV&&e.compatibleVersion<2&&(e.compatibleVersion=2),(t.KEYFORMAT||t.KEYFORMATVERSIONS)&&e.compatibleVersion<5&&(e.compatibleVersion=5)}function dne(e){let t={};for(let r of se.splitByCommaWithPreservingQuotes(e)){let[n,s]=se.splitAt(r,"="),i=Ene(s);switch(n){case"URI":t[n]=i;break;case"START-DATE":case"END-DATE":t[n]=new Date(i);break;case"IV":t[n]=W$e(i);break;case"BYTERANGE":t[n]=Cne(i);break;case"RESOLUTION":t[n]=j$e(i);break;case"ALLOWED-CPC":t[n]=J$e(i);break;case"END-ON-NEXT":case"DEFAULT":case"AUTOSELECT":case"FORCED":case"PRECISE":case"CAN-BLOCK-RELOAD":case"INDEPENDENT":case"GAP":t[n]=i==="YES";break;case"DURATION":case"PLANNED-DURATION":case"BANDWIDTH":case"AVERAGE-BANDWIDTH":case"FRAME-RATE":case"TIME-OFFSET":case"CAN-SKIP-UNTIL":case"HOLD-BACK":case"PART-HOLD-BACK":case"PART-TARGET":case"BYTERANGE-START":case"BYTERANGE-LENGTH":case"LAST-MSN":case"LAST-PART":case"SKIPPED-SEGMENTS":case"SCORE":case"PROGRAM-ID":t[n]=se.toNumber(i);break;default:n.startsWith("SCTE35-")?t[n]=se.hexToByteSequence(i):n.startsWith("X-")?t[n]=z$e(s):(n==="VIDEO-RANGE"&&i!=="SDR"&&i!=="HLG"&&i!=="PQ"&&se.INVALIDPLAYLIST(`VIDEO-RANGE: unknown value "${i}"`),t[n]=i)}}return t}function X$e(e,t){switch(e){case"EXTM3U":case"EXT-X-DISCONTINUITY":case"EXT-X-ENDLIST":case"EXT-X-I-FRAMES-ONLY":case"EXT-X-INDEPENDENT-SEGMENTS":case"EXT-X-CUE-IN":return[null,null];case"EXT-X-VERSION":case"EXT-X-TARGETDURATION":case"EXT-X-MEDIA-SEQUENCE":case"EXT-X-DISCONTINUITY-SEQUENCE":return[se.toNumber(t),null];case"EXT-X-CUE-OUT":return Number.isNaN(Number(t))?[null,dne(t)]:[se.toNumber(t),null];case"EXT-X-KEY":case"EXT-X-MAP":case"EXT-X-DATERANGE":case"EXT-X-MEDIA":case"EXT-X-STREAM-INF":case"EXT-X-I-FRAME-STREAM-INF":case"EXT-X-SESSION-DATA":case"EXT-X-SESSION-KEY":case"EXT-X-START":case"EXT-X-SERVER-CONTROL":case"EXT-X-PART-INF":case"EXT-X-PART":case"EXT-X-PRELOAD-HINT":case"EXT-X-RENDITION-REPORT":case"EXT-X-SKIP":return[null,dne(t)];case"EXTINF":return[G$e(t),null];case"EXT-X-BYTERANGE":return[Cne(t),null];case"EXT-X-PROGRAM-DATE-TIME":return[new Date(t),null];case"EXT-X-PLAYLIST-TYPE":return[t,null];default:return[t,null]}}function hne(){se.INVALIDPLAYLIST("The file contains both media and master playlist tags.")}function K$e(e){let t=e.indexOf(":");return t===-1?[e.slice(1).trim(),null]:[e.slice(1,t).trim(),e.slice(t+1).trim()]}function Z$e({attributes:e}){return new vr.Rendition({type:e.TYPE,uri:e.URI,groupId:e["GROUP-ID"],language:e.LANGUAGE,assocLanguage:e["ASSOC-LANGUAGE"],name:e.NAME,isDefault:e.DEFAULT,autoselect:e.AUTOSELECT,forced:e.FORCED,instreamId:e["INSTREAM-ID"],characteristics:e.CHARACTERISTICS,channels:e.CHANNELS})}function eGe(e,t){let r=!1;for(let n of e){if(n.name===t.name)return"All EXT-X-MEDIA tags in the same Group MUST have different NAME attributes.";n.isDefault&&(r=!0)}return r&&t.isDefault?"EXT-X-MEDIA A Group MUST NOT have more than one member with a DEFAULT attribute of YES.":""}function tGe(e,t,r){let n=Z$e(t),s=e[se.camelify(r)],i=eGe(s,n);i&&se.INVALIDPLAYLIST(i),s.push(n),n.isDefault&&(e.currentRenditions[se.camelify(r)]=s.length-1)}function rGe(e,t,r){for(let n of["AUDIO","VIDEO","SUBTITLES","CLOSED-CAPTIONS"])n==="CLOSED-CAPTIONS"&&e[n]==="NONE"?(r.isClosedCaptionsNone=!0,t.closedCaptions=[]):e[n]&&!t[se.camelify(n)].some(s=>s.groupId===e[n])&&se.INVALIDPLAYLIST(`${n} attribute MUST match the value of the GROUP-ID attribute of an EXT-X-MEDIA tag whose TYPE attribute is ${n}.`)}function pne(e,t,r,n,s){let i=new vr.Variant({uri:r,bandwidth:t.BANDWIDTH,averageBandwidth:t["AVERAGE-BANDWIDTH"],score:t.SCORE,codecs:t.CODECS,resolution:t.RESOLUTION,frameRate:t["FRAME-RATE"],hdcpLevel:t["HDCP-LEVEL"],allowedCpc:t["ALLOWED-CPC"],videoRange:t["VIDEO-RANGE"],stableVariantId:t["STABLE-VARIANT-ID"],programId:t["PROGRAM-ID"]});for(let o of e)if(o.name==="EXT-X-MEDIA"){let a=o.attributes,c=a.TYPE;if((!c||!a["GROUP-ID"])&&se.INVALIDPLAYLIST("EXT-X-MEDIA TYPE attribute is REQUIRED."),t[c]===a["GROUP-ID"]&&(tGe(i,o,c),c==="CLOSED-CAPTIONS")){for(let{instreamId:u}of i.closedCaptions)if(u&&u.startsWith("SERVICE")&&s.compatibleVersion<7){s.compatibleVersion=7;break}}}return rGe(t,i,s),i.isIFrameOnly=n,i}function nGe(e,t){if(e.method!==t.method||e.uri!==t.uri)return!1;if(e.iv){if(!t.iv||e.iv.length!==t.iv.length)return!1;for(let r=0;ru.id===c.id&&u.language===c.language)&&se.INVALIDPLAYLIST("A Playlist MUST NOT contain more than one EXT-X-SESSION-DATA tag with the same DATA-ID attribute and the same LANGUAGE attribute."),r.sessionDataList.push(c)}else if(i==="EXT-X-SESSION-KEY"){a.METHOD==="NONE"&&se.INVALIDPLAYLIST("EXT-X-SESSION-KEY: The value of the METHOD attribute MUST NOT be NONE");let c=new vr.Key({method:a.METHOD,uri:a.URI,iv:a.IV,format:a.KEYFORMAT,formatVersion:a.KEYFORMATVERSIONS});r.sessionKeyList.some(u=>nGe(u,c))&&se.INVALIDPLAYLIST("A Master Playlist MUST NOT contain more than one EXT-X-SESSION-KEY tag with the same METHOD, URI, IV, KEYFORMAT, and KEYFORMATVERSIONS attribute values."),DN(t,a),r.sessionKeyList.push(c)}else i==="EXT-X-INDEPENDENT-SEGMENTS"?(r.independentSegments&&se.INVALIDPLAYLIST("EXT-X-INDEPENDENT-SEGMENTS tag MUST NOT appear more than once in a Playlist"),r.independentSegments=!0):i==="EXT-X-START"&&(r.start&&se.INVALIDPLAYLIST("EXT-X-START tag MUST NOT appear more than once in a Playlist"),typeof a["TIME-OFFSET"]!="number"&&se.INVALIDPLAYLIST("EXT-X-START: TIME-OFFSET attribute is REQUIRED"),r.start={offset:a["TIME-OFFSET"],precise:a.PRECISE||!1});if(n)for(let s of r.variants)typeof s.score!="number"&&se.INVALIDPLAYLIST("If any Variant Stream contains the SCORE attribute, then all Variant Streams in the Master Playlist SHOULD have a SCORE attribute");if(t.isClosedCaptionsNone)for(let s of r.variants)s.closedCaptions.length>0&&se.INVALIDPLAYLIST("If there is a variant with CLOSED-CAPTIONS attribute of NONE, all EXT-X-STREAM-INF tags MUST have this attribute with a value of NONE");return r}function gne(e,t,r,n,s,i,o){let a=new vr.Segment({uri:t,mediaSequenceNumber:s,discontinuitySequence:i}),c=!1,u=!1;for(let l=r;l<=n;l++){let{name:A,value:f,attributes:d}=e[l];if(A==="EXTINF")!Number.isInteger(f.duration)&&o.compatibleVersion<3&&(o.compatibleVersion=3),Math.round(f.duration)>o.targetDuration&&se.INVALIDPLAYLIST("EXTINF duration, when rounded to the nearest integer, MUST be less than or equal to the target duration"),a.duration=f.duration,a.title=f.title;else if(A==="EXT-X-BYTERANGE")o.compatibleVersion<4&&(o.compatibleVersion=4),a.byterange=f;else if(A==="EXT-X-DISCONTINUITY")a.parts.length>0&&se.INVALIDPLAYLIST("EXT-X-DISCONTINUITY must appear before the first EXT-X-PART tag of the Parent Segment."),a.discontinuity=!0;else if(A==="EXT-X-KEY")a.parts.length>0&&se.INVALIDPLAYLIST("EXT-X-KEY must appear before the first EXT-X-PART tag of the Parent Segment."),DN(o,d),a.key=new vr.Key({method:d.METHOD,uri:d.URI,iv:d.IV,format:d.KEYFORMAT,formatVersion:d.KEYFORMATVERSIONS});else if(A==="EXT-X-MAP")a.parts.length>0&&se.INVALIDPLAYLIST("EXT-X-MAP must appear before the first EXT-X-PART tag of the Parent Segment."),o.compatibleVersion<5&&(o.compatibleVersion=5),o.hasMap=!0,a.map=new vr.MediaInitializationSection({uri:d.URI,byterange:d.BYTERANGE});else if(A==="EXT-X-PROGRAM-DATE-TIME")a.programDateTime=f;else if(A==="EXT-X-DATERANGE"){let h={};for(let p of Object.keys(d))(p.startsWith("SCTE35-")||p.startsWith("X-"))&&(h[p]=d[p]);a.dateRange=new vr.DateRange({id:d.ID,classId:d.CLASS,start:d["START-DATE"],end:d["END-DATE"],duration:d.DURATION,plannedDuration:d["PLANNED-DURATION"],endOnNext:d["END-ON-NEXT"],attributes:h})}else if(A==="EXT-X-CUE-OUT")a.markers.push(new vr.SpliceInfo({type:"OUT",duration:d&&d.DURATION||f}));else if(A==="EXT-X-CUE-IN")a.markers.push(new vr.SpliceInfo({type:"IN"}));else if(A==="EXT-X-CUE-OUT-CONT"||A==="EXT-X-CUE"||A==="EXT-OATCLS-SCTE35"||A==="EXT-X-ASSET"||A==="EXT-X-SCTE35")a.markers.push(new vr.SpliceInfo({type:"RAW",tagName:A,value:f}));else if(A==="EXT-X-PRELOAD-HINT"&&!d.TYPE)se.INVALIDPLAYLIST("EXT-X-PRELOAD-HINT: TYPE attribute is mandatory");else if(A==="EXT-X-PRELOAD-HINT"&&d.TYPE==="PART"&&u)se.INVALIDPLAYLIST("Servers should not add more than one EXT-X-PRELOAD-HINT tag with the same TYPE attribute to a Playlist.");else if((A==="EXT-X-PART"||A==="EXT-X-PRELOAD-HINT")&&!d.URI)se.INVALIDPLAYLIST("EXT-X-PART / EXT-X-PRELOAD-HINT: URI attribute is mandatory");else if(A==="EXT-X-PRELOAD-HINT"&&d.TYPE==="MAP")c&&se.INVALIDPLAYLIST("Servers should not add more than one EXT-X-PRELOAD-HINT tag with the same TYPE attribute to a Playlist."),c=!0,o.hasMap=!0,a.map=new vr.MediaInitializationSection({hint:!0,uri:d.URI,byterange:{length:d["BYTERANGE-LENGTH"],offset:d["BYTERANGE-START"]||0}});else if(A==="EXT-X-PART"||A==="EXT-X-PRELOAD-HINT"&&d.TYPE==="PART"){A==="EXT-X-PART"&&!d.DURATION&&se.INVALIDPLAYLIST("EXT-X-PART: DURATION attribute is mandatory"),A==="EXT-X-PRELOAD-HINT"&&(u=!0);let h=new vr.PartialSegment({hint:A==="EXT-X-PRELOAD-HINT",uri:d.URI,byterange:A==="EXT-X-PART"?d.BYTERANGE:{length:d["BYTERANGE-LENGTH"],offset:d["BYTERANGE-START"]||0},duration:d.DURATION,independent:d.INDEPENDENT,gap:d.GAP});a.parts.push(h)}}return a}function iGe(e,t,r,n,s,i,o){let a=new vr.PrefetchSegment({uri:t,mediaSequenceNumber:s,discontinuitySequence:i});for(let c=r;c<=n;c++){let{name:u,attributes:l}=e[c];u==="EXTINF"?se.INVALIDPLAYLIST("A prefetch segment must not be advertised with an EXTINF tag."):u==="EXT-X-DISCONTINUITY"?se.INVALIDPLAYLIST("A prefetch segment must not be advertised with an EXT-X-DISCONTINUITY tag."):u==="EXT-X-PREFETCH-DISCONTINUITY"?a.discontinuity=!0:u==="EXT-X-KEY"?(DN(o,l),a.key=new vr.Key({method:l.METHOD,uri:l.URI,iv:l.IV,format:l.KEYFORMAT,formatVersion:l.KEYFORMATVERSIONS})):u==="EXT-X-MAP"&&se.INVALIDPLAYLIST("Prefetch segments must not be advertised with an EXT-X-MAP tag.")}return a}function oGe(e,t){let r=new vr.MediaPlaylist,n=-1,s=0,i=!1,o=!1,a=0,c=null,u=null,l=!1;for(let[A,f]of e.entries()){let{name:d,value:h,attributes:p,category:C}=f;if(C==="Segment"){n===-1&&(n=A),d==="EXT-X-DISCONTINUITY"&&(i=!0);continue}if(d==="EXT-X-VERSION")r.version===void 0?r.version=h:se.INVALIDPLAYLIST("A Playlist file MUST NOT contain more than one EXT-X-VERSION tag.");else if(d==="EXT-X-TARGETDURATION")r.targetDuration=t.targetDuration=h;else if(d==="EXT-X-MEDIA-SEQUENCE")r.segments.length>0&&se.INVALIDPLAYLIST("The EXT-X-MEDIA-SEQUENCE tag MUST appear before the first Media Segment in the Playlist."),r.mediaSequenceBase=s=h;else if(d==="EXT-X-DISCONTINUITY-SEQUENCE")r.segments.length>0&&se.INVALIDPLAYLIST("The EXT-X-DISCONTINUITY-SEQUENCE tag MUST appear before the first Media Segment in the Playlist."),i&&se.INVALIDPLAYLIST("The EXT-X-DISCONTINUITY-SEQUENCE tag MUST appear before any EXT-X-DISCONTINUITY tag."),r.discontinuitySequenceBase=a=h;else if(d==="EXT-X-ENDLIST")r.endlist=!0;else if(d==="EXT-X-PLAYLIST-TYPE")r.playlistType=h;else if(d==="EXT-X-I-FRAMES-ONLY")t.compatibleVersion<4&&(t.compatibleVersion=4),r.isIFrame=!0;else if(d==="EXT-X-INDEPENDENT-SEGMENTS")r.independentSegments&&se.INVALIDPLAYLIST("EXT-X-INDEPENDENT-SEGMENTS tag MUST NOT appear more than once in a Playlist"),r.independentSegments=!0;else if(d==="EXT-X-START")r.start&&se.INVALIDPLAYLIST("EXT-X-START tag MUST NOT appear more than once in a Playlist"),typeof p["TIME-OFFSET"]!="number"&&se.INVALIDPLAYLIST("EXT-X-START: TIME-OFFSET attribute is REQUIRED"),r.start={offset:p["TIME-OFFSET"],precise:p.PRECISE||!1};else if(d==="EXT-X-SERVER-CONTROL")p["CAN-BLOCK-RELOAD"]||se.INVALIDPLAYLIST("EXT-X-SERVER-CONTROL: CAN-BLOCK-RELOAD=YES is mandatory for Low-Latency HLS"),r.lowLatencyCompatibility={canBlockReload:p["CAN-BLOCK-RELOAD"],canSkipUntil:p["CAN-SKIP-UNTIL"],holdBack:p["HOLD-BACK"],partHoldBack:p["PART-HOLD-BACK"]};else if(d==="EXT-X-PART-INF")p["PART-TARGET"]||se.INVALIDPLAYLIST("EXT-X-PART-INF: PART-TARGET attribute is mandatory"),r.partTargetDuration=p["PART-TARGET"];else if(d==="EXT-X-RENDITION-REPORT")p.URI||se.INVALIDPLAYLIST("EXT-X-RENDITION-REPORT: URI attribute is mandatory"),p.URI.search(/^[a-z]+:/)===0&&se.INVALIDPLAYLIST("EXT-X-RENDITION-REPORT: URI must be relative to the playlist uri"),r.renditionReports.push(new vr.RenditionReport({uri:p.URI,lastMSN:p["LAST-MSN"],lastPart:p["LAST-PART"]}));else if(d==="EXT-X-SKIP")p["SKIPPED-SEGMENTS"]||se.INVALIDPLAYLIST("EXT-X-SKIP: SKIPPED-SEGMENTS attribute is mandatory"),t.compatibleVersion<9&&(t.compatibleVersion=9),r.skip=p["SKIPPED-SEGMENTS"],s+=r.skip;else if(d==="EXT-X-PREFETCH"){let m=iGe(e,h,n===-1?A:n,A-1,s++,a,t);m&&(m.discontinuity&&(m.discontinuitySequence++,a=m.discontinuitySequence),m.key?c=m.key:m.key=c,r.prefetchSegments.push(m)),o=!0,n=-1}else if(typeof f=="string"){n===-1&&se.INVALIDPLAYLIST("A URI line is not preceded by any segment tags"),r.targetDuration||se.INVALIDPLAYLIST("The EXT-X-TARGETDURATION tag is REQUIRED"),o&&se.INVALIDPLAYLIST("These segments must appear after all complete segments.");let m=gne(e,f,n,A-1,s++,a,t);m&&([a,c,u]=mne(r,m,a,c,u),!l&&m.parts.length>0&&(l=!0)),n=-1}}if(n!==-1){let A=gne(e,"",n,e.length-1,s++,a,t);if(A){let{parts:f}=A;f.length>0&&!r.endlist&&!f.at(-1)?.hint&&se.INVALIDPLAYLIST("If the Playlist contains EXT-X-PART tags and does not contain an EXT-X-ENDLIST tag, the Playlist must contain an EXT-X-PRELOAD-HINT tag with a TYPE=PART attribute"),mne(r,A,c,u),!l&&A.parts.length>0&&(l=!0)}}return aGe(r.segments),r.lowLatencyCompatibility&&cGe(r,l),r}function mne(e,t,r,n,s){let{discontinuity:i,key:o,map:a,byterange:c,uri:u}=t;if(i&&(t.discontinuitySequence=r+1),o||(t.key=n),a||(t.map=s),c&&c.offset===-1){let{segments:l}=e;if(l.length>0){let A=l.at(-1);A.byterange&&A.uri===u?c.offset=A.byterange.offset+A.byterange.length:se.INVALIDPLAYLIST("If offset of EXT-X-BYTERANGE is not present, a previous Media Segment MUST be a sub-range of the same media resource")}else se.INVALIDPLAYLIST("If offset of EXT-X-BYTERANGE is not present, a previous Media Segment MUST appear in the Playlist file")}return e.segments.push(t),[t.discontinuitySequence,t.key,t.map]}function aGe(e){let t=new Map,r=new Map,n=!1,s=!1;for(let i=e.length-1;i>=0;i--){let{programDateTime:o,dateRange:a}=e[i];if(o&&(s=!0),a&&a.start){n=!0,a.endOnNext&&(a.end||a.duration)&&se.INVALIDPLAYLIST("An EXT-X-DATERANGE tag with an END-ON-NEXT=YES attribute MUST NOT contain DURATION or END-DATE attributes.");let c=a.start.getTime(),u=a.duration||0;a.end&&a.duration&&c+u*1e3!==a.end.getTime()&&se.INVALIDPLAYLIST("END-DATE MUST be equal to the value of the START-DATE attribute plus the value of the DURATION"),a.endOnNext&&(a.end=t.get(a.classId)),t.set(a.classId,a.start);let l=a.end?a.end.getTime():a.start.getTime()+(a.duration||0)*1e3,A=r.get(a.classId);if(A){for(let f of A)(f.start<=c&&f.end>c||f.start>=c&&f.start0&&ur&&se.INVALIDPLAYLIST("PART-TARGET is the maximum duration of any Partial Segment"),A0&&(u.lastPart=l.parts.length-1)}}function uGe(e,t){if(e==="Segment"||e==="MediaPlaylist"){if(t.isMasterPlaylist===void 0){t.isMasterPlaylist=!1;return}t.isMasterPlaylist&&hne();return}if(e==="MasterPlaylist"){if(t.isMasterPlaylist===void 0){t.isMasterPlaylist=!0;return}t.isMasterPlaylist===!1&&hne()}}function lGe(e,t){let[r,n]=K$e(e),s=$$e(r);if(uGe(s,t),s==="Unknown")return null;s==="MediaPlaylist"&&r!=="EXT-X-RENDITION-REPORT"&&r!=="EXT-X-PREFETCH"&&(t.hash[r]&&se.INVALIDPLAYLIST("There MUST NOT be more than one Media Playlist tag of each type in any Media Playlist"),t.hash[r]=!0);let[i,o]=X$e(r,n);return{name:r,category:s,value:i,attributes:o}}function AGe(e,t){let r=[];for(let n of e.split(` +`)){let s=Buffer.from(n.trim()).toString();if(s){if(s.startsWith("#")){if(s.startsWith("#EXT")){let i=lGe(s,t);i&&r.push(i)}continue}r.push(s)}}return(r.length===0||r[0].name!=="EXTM3U")&&se.INVALIDPLAYLIST("The EXTM3U tag MUST be the first line."),r}function fGe(e,t){let r;return t.isMasterPlaylist?r=sGe(e,t):(r=oGe(e,t),!r.isIFrame&&t.hasMap&&t.compatibleVersion<6&&(t.compatibleVersion=6)),t.compatibleVersion>1&&(!r.version||r.version{"use strict";var hGe=zo&&zo.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(t,r);(!s||("get"in s?!t.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,s)}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),pGe=zo&&zo.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),gGe=zo&&zo.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&hGe(t,e,r);return pGe(t,e),t};Object.defineProperty(zo,"__esModule",{value:!0});var pi=gGe(dp()),mGe=["#EXTINF","#EXT-X-BYTERANGE","#EXT-X-DISCONTINUITY","#EXT-X-STREAM-INF","#EXT-X-CUE-OUT","#EXT-X-CUE-IN","#EXT-X-KEY","#EXT-X-MAP"],EGe=["#EXT-X-MEDIA"],NN=class extends Array{baseUri;constructor(t){super(),this.baseUri=t}push(...t){for(let r of t){if(!r.startsWith("#")){super.push(r);continue}if(mGe.some(n=>r.startsWith(n))){super.push(r);continue}if(this.includes(r)){if(EGe.some(n=>r.startsWith(n)))continue;pi.INVALIDPLAYLIST(`Redundant item (${r})`)}super.push(r)}return this.length}};function kN(e,t){let r=1e3;t&&(r=10**t);let n=Math.round(e*r)/r;return t?n.toFixed(t):n}function CGe(e){let t=e.toString(10),r=t.indexOf(".");return r===-1?0:t.length-r-1}function yGe(e,t){for(let r of t.sessionDataList)e.push(IGe(r));for(let r of t.sessionKeyList)e.push(Ine(r,!0));for(let r of t.variants)bGe(e,r)}function IGe(e){let t=[`DATA-ID="${e.id}"`];return e.language&&t.push(`LANGUAGE="${e.language}"`),e.value?t.push(`VALUE="${e.value}"`):e.uri&&t.push(`URI="${e.uri}"`),`#EXT-X-SESSION-DATA:${t.join(",")}`}function Ine(e,t){let r=t?"#EXT-X-SESSION-KEY":"#EXT-X-KEY",n=[`METHOD=${e.method}`];return e.uri&&n.push(`URI="${e.uri}"`),e.iv&&(e.iv.length!==16&&pi.INVALIDPLAYLIST("IV must be a 128-bit unsigned integer"),n.push(`IV=${pi.byteSequenceToHex(e.iv)}`)),e.format&&n.push(`KEYFORMAT="${e.format}"`),e.formatVersion&&n.push(`KEYFORMATVERSIONS="${e.formatVersion}"`),`${r}:${n.join(",")}`}function bGe(e,t){let r=t.isIFrameOnly?"#EXT-X-I-FRAME-STREAM-INF":"#EXT-X-STREAM-INF",n=[`BANDWIDTH=${t.bandwidth}`];if(t.averageBandwidth&&n.push(`AVERAGE-BANDWIDTH=${t.averageBandwidth}`),t.isIFrameOnly&&n.push(`URI="${t.uri}"`),t.codecs&&n.push(`CODECS="${t.codecs}"`),t.resolution&&n.push(`RESOLUTION=${t.resolution.width}x${t.resolution.height}`),t.frameRate&&n.push(`FRAME-RATE=${kN(t.frameRate,3)}`),t.hdcpLevel&&n.push(`HDCP-LEVEL=${t.hdcpLevel}`),t.audio.length>0){n.push(`AUDIO="${t.audio[0].groupId}"`);for(let s of t.audio)e.push(Sb(s))}if(t.video.length>0){n.push(`VIDEO="${t.video[0].groupId}"`);for(let s of t.video)e.push(Sb(s))}if(t.subtitles.length>0){n.push(`SUBTITLES="${t.subtitles[0].groupId}"`);for(let s of t.subtitles)e.push(Sb(s))}if(pi.getOptions().allowClosedCaptionsNone&&t.closedCaptions.length===0)n.push("CLOSED-CAPTIONS=NONE");else if(t.closedCaptions.length>0){n.push(`CLOSED-CAPTIONS="${t.closedCaptions[0].groupId}"`);for(let s of t.closedCaptions)e.push(Sb(s))}if(t.score&&n.push(`SCORE=${t.score}`),t.allowedCpc){let s=[];for(let{format:i,cpcList:o}of t.allowedCpc)s.push(`${i}:${o.join("/")}`);n.push(`ALLOWED-CPC="${s.join(",")}"`)}t.videoRange&&n.push(`VIDEO-RANGE=${t.videoRange}`),t.stableVariantId&&n.push(`STABLE-VARIANT-ID="${t.stableVariantId}"`),t.programId&&n.push(`PROGRAM-ID=${t.programId}`),e.push(`${r}:${n.join(",")}`),t.isIFrameOnly||e.push(`${t.uri}`)}function Sb(e){let t=[`TYPE=${e.type}`,`GROUP-ID="${e.groupId}"`,`NAME="${e.name}"`];return e.isDefault!==void 0&&t.push(`DEFAULT=${e.isDefault?"YES":"NO"}`),e.autoselect!==void 0&&t.push(`AUTOSELECT=${e.autoselect?"YES":"NO"}`),e.forced!==void 0&&t.push(`FORCED=${e.forced?"YES":"NO"}`),e.language&&t.push(`LANGUAGE="${e.language}"`),e.assocLanguage&&t.push(`ASSOC-LANGUAGE="${e.assocLanguage}"`),e.instreamId&&t.push(`INSTREAM-ID="${e.instreamId}"`),e.characteristics&&t.push(`CHARACTERISTICS="${e.characteristics}"`),e.channels&&t.push(`CHANNELS="${e.channels}"`),e.uri&&t.push(`URI="${e.uri}"`),`#EXT-X-MEDIA:${t.join(",")}`}function BGe(e,t){let r="",n="",s=!1;if(t.targetDuration&&e.push(`#EXT-X-TARGETDURATION:${t.targetDuration}`),t.lowLatencyCompatibility){let{canBlockReload:i,canSkipUntil:o,holdBack:a,partHoldBack:c}=t.lowLatencyCompatibility,u=[];u.push(`CAN-BLOCK-RELOAD=${i?"YES":"NO"}`),o!==void 0&&u.push(`CAN-SKIP-UNTIL=${o}`),a!==void 0&&u.push(`HOLD-BACK=${a}`),c!==void 0&&u.push(`PART-HOLD-BACK=${c}`),e.push(`#EXT-X-SERVER-CONTROL:${u.join(",")}`)}t.partTargetDuration&&e.push(`#EXT-X-PART-INF:PART-TARGET=${t.partTargetDuration}`),t.mediaSequenceBase&&e.push(`#EXT-X-MEDIA-SEQUENCE:${t.mediaSequenceBase}`),t.discontinuitySequenceBase&&e.push(`#EXT-X-DISCONTINUITY-SEQUENCE:${t.discontinuitySequenceBase}`),t.playlistType&&e.push(`#EXT-X-PLAYLIST-TYPE:${t.playlistType}`),t.isIFrame&&e.push("#EXT-X-I-FRAMES-ONLY"),t.skip>0&&e.push(`#EXT-X-SKIP:SKIPPED-SEGMENTS=${t.skip}`);for(let i of t.segments){let o="";[r,n,o]=xGe(e,i,r,n,t.version),o==="OUT"?s=!0:o==="IN"&&s&&(s=!1)}t.playlistType==="VOD"&&s&&e.push("#EXT-X-CUE-IN"),t.prefetchSegments.length>2&&pi.INVALIDPLAYLIST("The server must deliver no more than two prefetch segments");for(let i of t.prefetchSegments)i.discontinuity&&e.push("#EXT-X-PREFETCH-DISCONTINUITY"),e.push(`#EXT-X-PREFETCH:${i.uri}`);t.endlist&&e.push("#EXT-X-ENDLIST");for(let i of t.renditionReports){let o=[];o.push(`URI="${i.uri}"`,`LAST-MSN=${i.lastMSN}`),i.lastPart!==void 0&&o.push(`LAST-PART=${i.lastPart}`),e.push(`#EXT-X-RENDITION-REPORT:${o.join(",")}`)}}function xGe(e,t,r,n,s=1){let i=!1,o="";if(t.discontinuity&&e.push("#EXT-X-DISCONTINUITY"),t.key){let c=Ine(t.key);c!==r&&(e.push(c),r=c)}if(t.map){let c=vGe(t.map);c!==n&&(e.push(c),n=c)}if(t.programDateTime&&e.push(`#EXT-X-PROGRAM-DATE-TIME:${pi.formatDate(t.programDateTime)}`),t.dateRange&&e.push(QGe(t.dateRange)),t.markers.length>0&&(o=TGe(e,t.markers)),t.parts.length>0&&(i=wGe(e,t.parts)),i)return[r,n];let a=s<3?Math.round(t.duration):kN(t.duration,CGe(t.duration));return e.push(`#EXTINF:${a},${unescape(encodeURIComponent(t.title||""))}`),t.byterange&&e.push(`#EXT-X-BYTERANGE:${FN(t.byterange)}`),Array.prototype.push.call(e,`${t.uri}`),[r,n,o]}function vGe(e){let t=[`URI="${e.uri}"`];return e.byterange&&t.push(`BYTERANGE="${FN(e.byterange)}"`),`#EXT-X-MAP:${t.join(",")}`}function FN({offset:e,length:t}){return`${t}@${e}`}function QGe(e){let t=[`ID="${e.id}"`];e.start&&t.push(`START-DATE="${pi.formatDate(e.start)}"`),e.end&&t.push(`END-DATE="${pi.formatDate(e.end)}"`),e.duration&&t.push(`DURATION=${e.duration}`),e.plannedDuration&&t.push(`PLANNED-DURATION=${e.plannedDuration}`),e.classId&&t.push(`CLASS="${e.classId}"`),e.endOnNext&&t.push("END-ON-NEXT=YES");for(let r of Object.keys(e.attributes))r.startsWith("X-")?typeof e.attributes[r]=="number"?t.push(`${r}=${e.attributes[r]}`):t.push(`${r}="${e.attributes[r]}"`):r.startsWith("SCTE35-")&&t.push(`${r}=${pi.byteSequenceToHex(e.attributes[r])}`);return`#EXT-X-DATERANGE:${t.join(",")}`}function TGe(e,t){let r="";for(let n of t)if(n.type==="OUT")r="OUT",e.push(`#EXT-X-CUE-OUT:DURATION=${n.duration}`);else if(n.type==="IN")r="IN",e.push("#EXT-X-CUE-IN");else if(n.type==="RAW"){let s=n.value?`:${n.value}`:"";e.push(`#${n.tagName}${s}`)}return r}function wGe(e,t){let r=!1;for(let n of t)if(n.hint){let s=[];if(s.push("TYPE=PART",`URI="${n.uri}"`),n.byterange){let{offset:i,length:o}=n.byterange;s.push(`BYTERANGE-START=${i}`),o&&s.push(`BYTERANGE-LENGTH=${o}`)}e.push(`#EXT-X-PRELOAD-HINT:${s.join(",")}`),r=!0}else{let s=[];s.push(`DURATION=${n.duration}`,`URI="${n.uri}"`),n.byterange&&s.push(`BYTERANGE=${FN(n.byterange)}`),n.independent&&s.push("INDEPENDENT=YES"),n.gap&&s.push("GAP=YES"),e.push(`#EXT-X-PART:${s.join(",")}`)}return r}function SGe(e){pi.PARAMCHECK(e),pi.ASSERT("Not a playlist",e.type==="playlist");let t=new NN(e.uri);return t.push("#EXTM3U"),e.version&&t.push(`#EXT-X-VERSION:${e.version}`),e.independentSegments&&t.push("#EXT-X-INDEPENDENT-SEGMENTS"),e.start&&t.push(`#EXT-X-START:TIME-OFFSET=${kN(e.start.offset)}${e.start.precise?",PRECISE=YES":""}`),e.isMasterPlaylist?yGe(t,e):BGe(t,e),t.join(` +`)}zo.default=SGe});var vne=b(Ar=>{"use strict";var _Ge=Ar&&Ar.__createBinding||(Object.create?function(e,t,r,n){n===void 0&&(n=r);var s=Object.getOwnPropertyDescriptor(t,r);(!s||("get"in s?!t.__esModule:s.writable||s.configurable))&&(s={enumerable:!0,get:function(){return t[r]}}),Object.defineProperty(e,n,s)}:function(e,t,r,n){n===void 0&&(n=r),e[n]=t[r]}),RGe=Ar&&Ar.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),DGe=Ar&&Ar.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var r in e)r!=="default"&&Object.prototype.hasOwnProperty.call(e,r)&&_Ge(t,e,r);return RGe(t,e),t},Bne=Ar&&Ar.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(Ar,"__esModule",{value:!0});Ar.setOptions=Ar.getOptions=Ar.types=Ar.stringify=Ar.parse=void 0;var xne=dp();Object.defineProperty(Ar,"getOptions",{enumerable:!0,get:function(){return xne.getOptions}});Object.defineProperty(Ar,"setOptions",{enumerable:!0,get:function(){return xne.setOptions}});var NGe=Bne(yne());Ar.parse=NGe.default;var kGe=Bne(bne());Ar.stringify=kGe.default;var FGe=DGe(RN());Ar.types=FGe});var Lu=b((vft,wne)=>{"use strict";wne.exports=TypeError});var _ne=b((Qft,Sne)=>{Sne.exports=require("util").inspect});var Cp=b((Tft,zne)=>{var $N=typeof Map=="function"&&Map.prototype,LN=Object.getOwnPropertyDescriptor&&$N?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,Db=$N&&LN&&typeof LN.get=="function"?LN.get:null,Rne=$N&&Map.prototype.forEach,GN=typeof Set=="function"&&Set.prototype,ON=Object.getOwnPropertyDescriptor&&GN?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,Nb=GN&&ON&&typeof ON.get=="function"?ON.get:null,Dne=GN&&Set.prototype.forEach,YGe=typeof WeakMap=="function"&&WeakMap.prototype,mp=YGe?WeakMap.prototype.has:null,$Ge=typeof WeakSet=="function"&&WeakSet.prototype,Ep=$Ge?WeakSet.prototype.has:null,GGe=typeof WeakRef=="function"&&WeakRef.prototype,Nne=GGe?WeakRef.prototype.deref:null,jGe=Boolean.prototype.valueOf,JGe=Object.prototype.toString,WGe=Function.prototype.toString,zGe=String.prototype.match,jN=String.prototype.slice,uc=String.prototype.replace,XGe=String.prototype.toUpperCase,kne=String.prototype.toLowerCase,Vne=RegExp.prototype.test,Fne=Array.prototype.concat,Zi=Array.prototype.join,KGe=Array.prototype.slice,Lne=Math.floor,UN=typeof BigInt=="function"?BigInt.prototype.valueOf:null,MN=Object.getOwnPropertySymbols,HN=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,Tf=typeof Symbol=="function"&&typeof Symbol.iterator=="object",en=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===Tf||!0)?Symbol.toStringTag:null,Yne=Object.prototype.propertyIsEnumerable,One=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function Mne(e,t){if(e===1/0||e===-1/0||e!==e||e&&e>-1e3&&e<1e3||Vne.call(/e/,t))return t;var r=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof e=="number"){var n=e<0?-Lne(-e):Lne(e);if(n!==e){var s=String(n),i=jN.call(t,s.length+1);return uc.call(s,r,"$&_")+"."+uc.call(uc.call(i,/([0-9]{3})/g,"$&_"),/_$/,"")}}return uc.call(t,r,"$&_")}var qN=_ne(),Pne=qN.custom,Une=jne(Pne)?Pne:null,$ne={__proto__:null,double:'"',single:"'"},ZGe={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};zne.exports=function e(t,r,n,s){var i=r||{};if(Xo(i,"quoteStyle")&&!Xo($ne,i.quoteStyle))throw new TypeError('option "quoteStyle" must be "single" or "double"');if(Xo(i,"maxStringLength")&&(typeof i.maxStringLength=="number"?i.maxStringLength<0&&i.maxStringLength!==1/0:i.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var o=Xo(i,"customInspect")?i.customInspect:!0;if(typeof o!="boolean"&&o!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(Xo(i,"indent")&&i.indent!==null&&i.indent!==" "&&!(parseInt(i.indent,10)===i.indent&&i.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(Xo(i,"numericSeparator")&&typeof i.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var a=i.numericSeparator;if(typeof t>"u")return"undefined";if(t===null)return"null";if(typeof t=="boolean")return t?"true":"false";if(typeof t=="string")return Wne(t,i);if(typeof t=="number"){if(t===0)return 1/0/t>0?"0":"-0";var c=String(t);return a?Mne(t,c):c}if(typeof t=="bigint"){var u=String(t)+"n";return a?Mne(t,u):u}var l=typeof i.depth>"u"?5:i.depth;if(typeof n>"u"&&(n=0),n>=l&&l>0&&typeof t=="object")return VN(t)?"[Array]":"[Object]";var A=mje(i,n);if(typeof s>"u")s=[];else if(Jne(s,t)>=0)return"[Circular]";function f(k,F,j){if(F&&(s=KGe.call(s),s.push(F)),j){var H={depth:i.depth};return Xo(i,"quoteStyle")&&(H.quoteStyle=i.quoteStyle),e(k,H,n+1,s)}return e(k,i,n+1,s)}if(typeof t=="function"&&!Hne(t)){var d=cje(t),h=Rb(t,f);return"[Function"+(d?": "+d:" (anonymous)")+"]"+(h.length>0?" { "+Zi.call(h,", ")+" }":"")}if(jne(t)){var p=Tf?uc.call(String(t),/^(Symbol\(.*\))_[^)]*$/,"$1"):HN.call(t);return typeof t=="object"&&!Tf?gp(p):p}if(hje(t)){for(var C="<"+kne.call(String(t.nodeName)),m=t.attributes||[],I=0;I",C}if(VN(t)){if(t.length===0)return"[]";var y=Rb(t,f);return A&&!gje(y)?"["+YN(y,A)+"]":"[ "+Zi.call(y,", ")+" ]"}if(rje(t)){var E=Rb(t,f);return!("cause"in Error.prototype)&&"cause"in t&&!Yne.call(t,"cause")?"{ ["+String(t)+"] "+Zi.call(Fne.call("[cause]: "+f(t.cause),E),", ")+" }":E.length===0?"["+String(t)+"]":"{ ["+String(t)+"] "+Zi.call(E,", ")+" }"}if(typeof t=="object"&&o){if(Une&&typeof t[Une]=="function"&&qN)return qN(t,{depth:l-n});if(o!=="symbol"&&typeof t.inspect=="function")return t.inspect()}if(uje(t)){var B=[];return Rne&&Rne.call(t,function(k,F){B.push(f(F,t,!0)+" => "+f(k,t))}),qne("Map",Db.call(t),B,A)}if(fje(t)){var v=[];return Dne&&Dne.call(t,function(k){v.push(f(k,t))}),qne("Set",Nb.call(t),v,A)}if(lje(t))return PN("WeakMap");if(dje(t))return PN("WeakSet");if(Aje(t))return PN("WeakRef");if(sje(t))return gp(f(Number(t)));if(oje(t))return gp(f(UN.call(t)));if(ije(t))return gp(jGe.call(t));if(nje(t))return gp(f(String(t)));if(typeof window<"u"&&t===window)return"{ [object Window] }";if(typeof globalThis<"u"&&t===globalThis||typeof global<"u"&&t===global)return"{ [object globalThis] }";if(!tje(t)&&!Hne(t)){var x=Rb(t,f),Q=One?One(t)===Object.prototype:t instanceof Object||t.constructor===Object,S=t instanceof Object?"":"null prototype",T=!Q&&en&&Object(t)===t&&en in t?jN.call(lc(t),8,-1):S?"Object":"",R=Q||typeof t.constructor!="function"?"":t.constructor.name?t.constructor.name+" ":"",D=R+(T||S?"["+Zi.call(Fne.call([],T||[],S||[]),": ")+"] ":"");return x.length===0?D+"{}":A?D+"{"+YN(x,A)+"}":D+"{ "+Zi.call(x,", ")+" }"}return String(t)};function Gne(e,t,r){var n=r.quoteStyle||t,s=$ne[n];return s+e+s}function eje(e){return uc.call(String(e),/"/g,""")}function VN(e){return lc(e)==="[object Array]"&&(!en||!(typeof e=="object"&&en in e))}function tje(e){return lc(e)==="[object Date]"&&(!en||!(typeof e=="object"&&en in e))}function Hne(e){return lc(e)==="[object RegExp]"&&(!en||!(typeof e=="object"&&en in e))}function rje(e){return lc(e)==="[object Error]"&&(!en||!(typeof e=="object"&&en in e))}function nje(e){return lc(e)==="[object String]"&&(!en||!(typeof e=="object"&&en in e))}function sje(e){return lc(e)==="[object Number]"&&(!en||!(typeof e=="object"&&en in e))}function ije(e){return lc(e)==="[object Boolean]"&&(!en||!(typeof e=="object"&&en in e))}function jne(e){if(Tf)return e&&typeof e=="object"&&e instanceof Symbol;if(typeof e=="symbol")return!0;if(!e||typeof e!="object"||!HN)return!1;try{return HN.call(e),!0}catch{}return!1}function oje(e){if(!e||typeof e!="object"||!UN)return!1;try{return UN.call(e),!0}catch{}return!1}var aje=Object.prototype.hasOwnProperty||function(e){return e in this};function Xo(e,t){return aje.call(e,t)}function lc(e){return JGe.call(e)}function cje(e){if(e.name)return e.name;var t=zGe.call(WGe.call(e),/^function\s*([\w$]+)/);return t?t[1]:null}function Jne(e,t){if(e.indexOf)return e.indexOf(t);for(var r=0,n=e.length;rt.maxStringLength){var r=e.length-t.maxStringLength,n="... "+r+" more character"+(r>1?"s":"");return Wne(jN.call(e,0,t.maxStringLength),t)+n}var s=ZGe[t.quoteStyle||"single"];s.lastIndex=0;var i=uc.call(uc.call(e,s,"\\$1"),/[\x00-\x1f]/g,pje);return Gne(i,"single",t)}function pje(e){var t=e.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return r?"\\"+r:"\\x"+(t<16?"0":"")+XGe.call(t.toString(16))}function gp(e){return"Object("+e+")"}function PN(e){return e+" { ? }"}function qne(e,t,r,n){var s=n?YN(r,n):Zi.call(r,", ");return e+" ("+t+") {"+s+"}"}function gje(e){for(var t=0;t=0)return!1;return!0}function mje(e,t){var r;if(e.indent===" ")r=" ";else if(typeof e.indent=="number"&&e.indent>0)r=Zi.call(Array(e.indent+1)," ");else return null;return{base:r,prev:Zi.call(Array(t+1),r)}}function YN(e,t){if(e.length===0)return"";var r=` +`+t.prev+t.base;return r+Zi.call(e,","+r)+` +`+t.prev}function Rb(e,t){var r=VN(e),n=[];if(r){n.length=e.length;for(var s=0;s{"use strict";var Eje=Cp(),Cje=Lu(),kb=function(e,t,r){for(var n=e,s;(s=n.next)!=null;n=s)if(s.key===t)return n.next=s.next,r||(s.next=e.next,e.next=s),s},yje=function(e,t){if(e){var r=kb(e,t);return r&&r.value}},Ije=function(e,t,r){var n=kb(e,t);n?n.value=r:e.next={key:t,next:e.next,value:r}},bje=function(e,t){return e?!!kb(e,t):!1},Bje=function(e,t){if(e)return kb(e,t,!0)};Xne.exports=function(){var t,r={assert:function(n){if(!r.has(n))throw new Cje("Side channel does not contain "+Eje(n))},delete:function(n){var s=t&&t.next,i=Bje(t,n);return i&&s&&s===i&&(t=void 0),!!i},get:function(n){return yje(t,n)},has:function(n){return bje(t,n)},set:function(n,s){t||(t={next:void 0}),Ije(t,n,s)}};return r}});var JN=b((Sft,Zne)=>{"use strict";Zne.exports=Object});var tse=b((_ft,ese)=>{"use strict";ese.exports=Error});var nse=b((Rft,rse)=>{"use strict";rse.exports=EvalError});var ise=b((Dft,sse)=>{"use strict";sse.exports=RangeError});var ase=b((Nft,ose)=>{"use strict";ose.exports=ReferenceError});var use=b((kft,cse)=>{"use strict";cse.exports=SyntaxError});var Ase=b((Fft,lse)=>{"use strict";lse.exports=URIError});var dse=b((Lft,fse)=>{"use strict";fse.exports=Math.abs});var pse=b((Oft,hse)=>{"use strict";hse.exports=Math.floor});var mse=b((Mft,gse)=>{"use strict";gse.exports=Math.max});var Cse=b((Pft,Ese)=>{"use strict";Ese.exports=Math.min});var Ise=b((Uft,yse)=>{"use strict";yse.exports=Math.pow});var Bse=b((Hft,bse)=>{"use strict";bse.exports=Math.round});var vse=b((qft,xse)=>{"use strict";xse.exports=Number.isNaN||function(t){return t!==t}});var Tse=b((Vft,Qse)=>{"use strict";var xje=vse();Qse.exports=function(t){return xje(t)||t===0?t:t<0?-1:1}});var Sse=b((Yft,wse)=>{"use strict";wse.exports=Object.getOwnPropertyDescriptor});var WN=b(($ft,_se)=>{"use strict";var Fb=Sse();if(Fb)try{Fb([],"length")}catch{Fb=null}_se.exports=Fb});var Dse=b((Gft,Rse)=>{"use strict";var Lb=Object.defineProperty||!1;if(Lb)try{Lb({},"a",{value:1})}catch{Lb=!1}Rse.exports=Lb});var kse=b((jft,Nse)=>{"use strict";Nse.exports=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var t={},r=Symbol("test"),n=Object(r);if(typeof r=="string"||Object.prototype.toString.call(r)!=="[object Symbol]"||Object.prototype.toString.call(n)!=="[object Symbol]")return!1;var s=42;t[r]=s;for(var i in t)return!1;if(typeof Object.keys=="function"&&Object.keys(t).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(t).length!==0)return!1;var o=Object.getOwnPropertySymbols(t);if(o.length!==1||o[0]!==r||!Object.prototype.propertyIsEnumerable.call(t,r))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var a=Object.getOwnPropertyDescriptor(t,r);if(a.value!==s||a.enumerable!==!0)return!1}return!0}});var Ose=b((Jft,Lse)=>{"use strict";var Fse=typeof Symbol<"u"&&Symbol,vje=kse();Lse.exports=function(){return typeof Fse!="function"||typeof Symbol!="function"||typeof Fse("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:vje()}});var zN=b((Wft,Mse)=>{"use strict";Mse.exports=typeof Reflect<"u"&&Reflect.getPrototypeOf||null});var XN=b((zft,Pse)=>{"use strict";var Qje=JN();Pse.exports=Qje.getPrototypeOf||null});var qse=b((Xft,Hse)=>{"use strict";var Tje="Function.prototype.bind called on incompatible ",wje=Object.prototype.toString,Sje=Math.max,_je="[object Function]",Use=function(t,r){for(var n=[],s=0;s{"use strict";var Nje=qse();Vse.exports=Function.prototype.bind||Nje});var Ob=b((Zft,Yse)=>{"use strict";Yse.exports=Function.prototype.call});var KN=b((edt,$se)=>{"use strict";$se.exports=Function.prototype.apply});var jse=b((tdt,Gse)=>{"use strict";Gse.exports=typeof Reflect<"u"&&Reflect&&Reflect.apply});var Wse=b((rdt,Jse)=>{"use strict";var kje=yp(),Fje=KN(),Lje=Ob(),Oje=jse();Jse.exports=Oje||kje.call(Lje,Fje)});var ZN=b((ndt,zse)=>{"use strict";var Mje=yp(),Pje=Lu(),Uje=Ob(),Hje=Wse();zse.exports=function(t){if(t.length<1||typeof t[0]!="function")throw new Pje("a function is required");return Hje(Mje,Uje,t)}});var rie=b((sdt,tie)=>{"use strict";var qje=ZN(),Xse=WN(),Zse;try{Zse=[].__proto__===Array.prototype}catch(e){if(!e||typeof e!="object"||!("code"in e)||e.code!=="ERR_PROTO_ACCESS")throw e}var ek=!!Zse&&Xse&&Xse(Object.prototype,"__proto__"),eie=Object,Kse=eie.getPrototypeOf;tie.exports=ek&&typeof ek.get=="function"?qje([ek.get]):typeof Kse=="function"?function(t){return Kse(t==null?t:eie(t))}:!1});var aie=b((idt,oie)=>{"use strict";var nie=zN(),sie=XN(),iie=rie();oie.exports=nie?function(t){return nie(t)}:sie?function(t){if(!t||typeof t!="object"&&typeof t!="function")throw new TypeError("getProto: not an object");return sie(t)}:iie?function(t){return iie(t)}:null});var uie=b((odt,cie)=>{"use strict";var Vje=Function.prototype.call,Yje=Object.prototype.hasOwnProperty,$je=yp();cie.exports=$je.call(Vje,Yje)});var Ub=b((adt,pie)=>{"use strict";var Ze,Gje=JN(),jje=tse(),Jje=nse(),Wje=ise(),zje=ase(),Rf=use(),_f=Lu(),Xje=Ase(),Kje=dse(),Zje=pse(),eJe=mse(),tJe=Cse(),rJe=Ise(),nJe=Bse(),sJe=Tse(),die=Function,tk=function(e){try{return die('"use strict"; return ('+e+").constructor;")()}catch{}},Ip=WN(),iJe=Dse(),rk=function(){throw new _f},oJe=Ip?function(){try{return arguments.callee,rk}catch{try{return Ip(arguments,"callee").get}catch{return rk}}}():rk,wf=Ose()(),Qr=aie(),aJe=XN(),cJe=zN(),hie=KN(),bp=Ob(),Sf={},uJe=typeof Uint8Array>"u"||!Qr?Ze:Qr(Uint8Array),Ou={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?Ze:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?Ze:ArrayBuffer,"%ArrayIteratorPrototype%":wf&&Qr?Qr([][Symbol.iterator]()):Ze,"%AsyncFromSyncIteratorPrototype%":Ze,"%AsyncFunction%":Sf,"%AsyncGenerator%":Sf,"%AsyncGeneratorFunction%":Sf,"%AsyncIteratorPrototype%":Sf,"%Atomics%":typeof Atomics>"u"?Ze:Atomics,"%BigInt%":typeof BigInt>"u"?Ze:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?Ze:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?Ze:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?Ze:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":jje,"%eval%":eval,"%EvalError%":Jje,"%Float32Array%":typeof Float32Array>"u"?Ze:Float32Array,"%Float64Array%":typeof Float64Array>"u"?Ze:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?Ze:FinalizationRegistry,"%Function%":die,"%GeneratorFunction%":Sf,"%Int8Array%":typeof Int8Array>"u"?Ze:Int8Array,"%Int16Array%":typeof Int16Array>"u"?Ze:Int16Array,"%Int32Array%":typeof Int32Array>"u"?Ze:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":wf&&Qr?Qr(Qr([][Symbol.iterator]())):Ze,"%JSON%":typeof JSON=="object"?JSON:Ze,"%Map%":typeof Map>"u"?Ze:Map,"%MapIteratorPrototype%":typeof Map>"u"||!wf||!Qr?Ze:Qr(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Gje,"%Object.getOwnPropertyDescriptor%":Ip,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?Ze:Promise,"%Proxy%":typeof Proxy>"u"?Ze:Proxy,"%RangeError%":Wje,"%ReferenceError%":zje,"%Reflect%":typeof Reflect>"u"?Ze:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?Ze:Set,"%SetIteratorPrototype%":typeof Set>"u"||!wf||!Qr?Ze:Qr(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?Ze:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":wf&&Qr?Qr(""[Symbol.iterator]()):Ze,"%Symbol%":wf?Symbol:Ze,"%SyntaxError%":Rf,"%ThrowTypeError%":oJe,"%TypedArray%":uJe,"%TypeError%":_f,"%Uint8Array%":typeof Uint8Array>"u"?Ze:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?Ze:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?Ze:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?Ze:Uint32Array,"%URIError%":Xje,"%WeakMap%":typeof WeakMap>"u"?Ze:WeakMap,"%WeakRef%":typeof WeakRef>"u"?Ze:WeakRef,"%WeakSet%":typeof WeakSet>"u"?Ze:WeakSet,"%Function.prototype.call%":bp,"%Function.prototype.apply%":hie,"%Object.defineProperty%":iJe,"%Object.getPrototypeOf%":aJe,"%Math.abs%":Kje,"%Math.floor%":Zje,"%Math.max%":eJe,"%Math.min%":tJe,"%Math.pow%":rJe,"%Math.round%":nJe,"%Math.sign%":sJe,"%Reflect.getPrototypeOf%":cJe};if(Qr)try{null.error}catch(e){lie=Qr(Qr(e)),Ou["%Error.prototype%"]=lie}var lie,lJe=function e(t){var r;if(t==="%AsyncFunction%")r=tk("async function () {}");else if(t==="%GeneratorFunction%")r=tk("function* () {}");else if(t==="%AsyncGeneratorFunction%")r=tk("async function* () {}");else if(t==="%AsyncGenerator%"){var n=e("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if(t==="%AsyncIteratorPrototype%"){var s=e("%AsyncGenerator%");s&&Qr&&(r=Qr(s.prototype))}return Ou[t]=r,r},Aie={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},Bp=yp(),Mb=uie(),AJe=Bp.call(bp,Array.prototype.concat),fJe=Bp.call(hie,Array.prototype.splice),fie=Bp.call(bp,String.prototype.replace),Pb=Bp.call(bp,String.prototype.slice),dJe=Bp.call(bp,RegExp.prototype.exec),hJe=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,pJe=/\\(\\)?/g,gJe=function(t){var r=Pb(t,0,1),n=Pb(t,-1);if(r==="%"&&n!=="%")throw new Rf("invalid intrinsic syntax, expected closing `%`");if(n==="%"&&r!=="%")throw new Rf("invalid intrinsic syntax, expected opening `%`");var s=[];return fie(t,hJe,function(i,o,a,c){s[s.length]=a?fie(c,pJe,"$1"):o||i}),s},mJe=function(t,r){var n=t,s;if(Mb(Aie,n)&&(s=Aie[n],n="%"+s[0]+"%"),Mb(Ou,n)){var i=Ou[n];if(i===Sf&&(i=lJe(n)),typeof i>"u"&&!r)throw new _f("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:s,name:n,value:i}}throw new Rf("intrinsic "+t+" does not exist!")};pie.exports=function(t,r){if(typeof t!="string"||t.length===0)throw new _f("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof r!="boolean")throw new _f('"allowMissing" argument must be a boolean');if(dJe(/^%?[^%]*%?$/,t)===null)throw new Rf("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=gJe(t),s=n.length>0?n[0]:"",i=mJe("%"+s+"%",r),o=i.name,a=i.value,c=!1,u=i.alias;u&&(s=u[0],fJe(n,AJe([0,1],u)));for(var l=1,A=!0;l=n.length){var p=Ip(a,f);A=!!p,A&&"get"in p&&!("originalValue"in p.get)?a=p.get:a=a[f]}else A=Mb(a,f),a=a[f];A&&!c&&(Ou[o]=a)}}return a}});var nk=b((cdt,Eie)=>{"use strict";var gie=Ub(),mie=ZN(),EJe=mie([gie("%String.prototype.indexOf%")]);Eie.exports=function(t,r){var n=gie(t,!!r);return typeof n=="function"&&EJe(t,".prototype.")>-1?mie([n]):n}});var sk=b((udt,yie)=>{"use strict";var CJe=Ub(),xp=nk(),yJe=Cp(),IJe=Lu(),Cie=CJe("%Map%",!0),bJe=xp("Map.prototype.get",!0),BJe=xp("Map.prototype.set",!0),xJe=xp("Map.prototype.has",!0),vJe=xp("Map.prototype.delete",!0),QJe=xp("Map.prototype.size",!0);yie.exports=!!Cie&&function(){var t,r={assert:function(n){if(!r.has(n))throw new IJe("Side channel does not contain "+yJe(n))},delete:function(n){if(t){var s=vJe(t,n);return QJe(t)===0&&(t=void 0),s}return!1},get:function(n){if(t)return bJe(t,n)},has:function(n){return t?xJe(t,n):!1},set:function(n,s){t||(t=new Cie),BJe(t,n,s)}};return r}});var bie=b((ldt,Iie)=>{"use strict";var TJe=Ub(),qb=nk(),wJe=Cp(),Hb=sk(),SJe=Lu(),Df=TJe("%WeakMap%",!0),_Je=qb("WeakMap.prototype.get",!0),RJe=qb("WeakMap.prototype.set",!0),DJe=qb("WeakMap.prototype.has",!0),NJe=qb("WeakMap.prototype.delete",!0);Iie.exports=Df?function(){var t,r,n={assert:function(s){if(!n.has(s))throw new SJe("Side channel does not contain "+wJe(s))},delete:function(s){if(Df&&s&&(typeof s=="object"||typeof s=="function")){if(t)return NJe(t,s)}else if(Hb&&r)return r.delete(s);return!1},get:function(s){return Df&&s&&(typeof s=="object"||typeof s=="function")&&t?_Je(t,s):r&&r.get(s)},has:function(s){return Df&&s&&(typeof s=="object"||typeof s=="function")&&t?DJe(t,s):!!r&&r.has(s)},set:function(s,i){Df&&s&&(typeof s=="object"||typeof s=="function")?(t||(t=new Df),RJe(t,s,i)):Hb&&(r||(r=Hb()),r.set(s,i))}};return n}:Hb});var xie=b((Adt,Bie)=>{"use strict";var kJe=Lu(),FJe=Cp(),LJe=Kne(),OJe=sk(),MJe=bie(),PJe=MJe||OJe||LJe;Bie.exports=function(){var t,r={assert:function(n){if(!r.has(n))throw new kJe("Side channel does not contain "+FJe(n))},delete:function(n){return!!t&&t.delete(n)},get:function(n){return t&&t.get(n)},has:function(n){return!!t&&t.has(n)},set:function(n,s){t||(t=PJe()),t.set(n,s)}};return r}});var Vb=b((fdt,vie)=>{"use strict";var UJe=String.prototype.replace,HJe=/%20/g,ik={RFC1738:"RFC1738",RFC3986:"RFC3986"};vie.exports={default:ik.RFC3986,formatters:{RFC1738:function(e){return UJe.call(e,HJe,"+")},RFC3986:function(e){return String(e)}},RFC1738:ik.RFC1738,RFC3986:ik.RFC3986}});var ck=b((ddt,Tie)=>{"use strict";var qJe=Vb(),ok=Object.prototype.hasOwnProperty,Mu=Array.isArray,eo=function(){for(var e=[],t=0;t<256;++t)e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase());return e}(),VJe=function(t){for(;t.length>1;){var r=t.pop(),n=r.obj[r.prop];if(Mu(n)){for(var s=[],i=0;i=ak?o.slice(c,c+ak):o,l=[],A=0;A=48&&f<=57||f>=65&&f<=90||f>=97&&f<=122||i===qJe.RFC1738&&(f===40||f===41)){l[l.length]=u.charAt(A);continue}if(f<128){l[l.length]=eo[f];continue}if(f<2048){l[l.length]=eo[192|f>>6]+eo[128|f&63];continue}if(f<55296||f>=57344){l[l.length]=eo[224|f>>12]+eo[128|f>>6&63]+eo[128|f&63];continue}A+=1,f=65536+((f&1023)<<10|u.charCodeAt(A)&1023),l[l.length]=eo[240|f>>18]+eo[128|f>>12&63]+eo[128|f>>6&63]+eo[128|f&63]}a+=l.join("")}return a},JJe=function(t){for(var r=[{obj:{o:t},prop:"o"}],n=[],s=0;s{"use strict";var Sie=xie(),Yb=ck(),vp=Vb(),ZJe=Object.prototype.hasOwnProperty,_ie={brackets:function(t){return t+"[]"},comma:"comma",indices:function(t,r){return t+"["+r+"]"},repeat:function(t){return t}},to=Array.isArray,eWe=Array.prototype.push,Rie=function(e,t){eWe.apply(e,to(t)?t:[t])},tWe=Date.prototype.toISOString,wie=vp.default,gr={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:"indices",charset:"utf-8",charsetSentinel:!1,commaRoundTrip:!1,delimiter:"&",encode:!0,encodeDotInKeys:!1,encoder:Yb.encode,encodeValuesOnly:!1,filter:void 0,format:wie,formatter:vp.formatters[wie],indices:!1,serializeDate:function(t){return tWe.call(t)},skipNulls:!1,strictNullHandling:!1},rWe=function(t){return typeof t=="string"||typeof t=="number"||typeof t=="boolean"||typeof t=="symbol"||typeof t=="bigint"},uk={},nWe=function e(t,r,n,s,i,o,a,c,u,l,A,f,d,h,p,C,m,I){for(var y=t,E=I,B=0,v=!1;(E=E.get(uk))!==void 0&&!v;){var x=E.get(t);if(B+=1,typeof x<"u"){if(x===B)throw new RangeError("Cyclic object value");v=!0}typeof E.get(uk)>"u"&&(B=0)}if(typeof l=="function"?y=l(r,y):y instanceof Date?y=d(y):n==="comma"&&to(y)&&(y=Yb.maybeMap(y,function(Y){return Y instanceof Date?d(Y):Y})),y===null){if(o)return u&&!C?u(r,gr.encoder,m,"key",h):r;y=""}if(rWe(y)||Yb.isBuffer(y)){if(u){var Q=C?r:u(r,gr.encoder,m,"key",h);return[p(Q)+"="+p(u(y,gr.encoder,m,"value",h))]}return[p(r)+"="+p(String(y))]}var S=[];if(typeof y>"u")return S;var T;if(n==="comma"&&to(y))C&&u&&(y=Yb.maybeMap(y,u)),T=[{value:y.length>0?y.join(",")||null:void 0}];else if(to(l))T=l;else{var R=Object.keys(y);T=A?R.sort(A):R}var D=c?String(r).replace(/\./g,"%2E"):String(r),k=s&&to(y)&&y.length===1?D+"[]":D;if(i&&to(y)&&y.length===0)return k+"[]";for(var F=0;F"u"?t.encodeDotInKeys===!0?!0:gr.allowDots:!!t.allowDots;return{addQueryPrefix:typeof t.addQueryPrefix=="boolean"?t.addQueryPrefix:gr.addQueryPrefix,allowDots:a,allowEmptyArrays:typeof t.allowEmptyArrays=="boolean"?!!t.allowEmptyArrays:gr.allowEmptyArrays,arrayFormat:o,charset:r,charsetSentinel:typeof t.charsetSentinel=="boolean"?t.charsetSentinel:gr.charsetSentinel,commaRoundTrip:!!t.commaRoundTrip,delimiter:typeof t.delimiter>"u"?gr.delimiter:t.delimiter,encode:typeof t.encode=="boolean"?t.encode:gr.encode,encodeDotInKeys:typeof t.encodeDotInKeys=="boolean"?t.encodeDotInKeys:gr.encodeDotInKeys,encoder:typeof t.encoder=="function"?t.encoder:gr.encoder,encodeValuesOnly:typeof t.encodeValuesOnly=="boolean"?t.encodeValuesOnly:gr.encodeValuesOnly,filter:i,format:n,formatter:s,serializeDate:typeof t.serializeDate=="function"?t.serializeDate:gr.serializeDate,skipNulls:typeof t.skipNulls=="boolean"?t.skipNulls:gr.skipNulls,sort:typeof t.sort=="function"?t.sort:null,strictNullHandling:typeof t.strictNullHandling=="boolean"?t.strictNullHandling:gr.strictNullHandling}};Die.exports=function(e,t){var r=e,n=sWe(t),s,i;typeof n.filter=="function"?(i=n.filter,r=i("",r)):to(n.filter)&&(i=n.filter,s=i);var o=[];if(typeof r!="object"||r===null)return"";var a=_ie[n.arrayFormat],c=a==="comma"&&n.commaRoundTrip;s||(s=Object.keys(r)),n.sort&&s.sort(n.sort);for(var u=Sie(),l=0;l0?h+d:""}});var Oie=b((pdt,Lie)=>{"use strict";var Pu=ck(),lk=Object.prototype.hasOwnProperty,kie=Array.isArray,jt={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:Pu.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictDepth:!1,strictNullHandling:!1,throwOnLimitExceeded:!1},iWe=function(e){return e.replace(/&#(\d+);/g,function(t,r){return String.fromCharCode(parseInt(r,10))})},Fie=function(e,t,r){if(e&&typeof e=="string"&&t.comma&&e.indexOf(",")>-1)return e.split(",");if(t.throwOnLimitExceeded&&r>=t.arrayLimit)throw new RangeError("Array limit exceeded. Only "+t.arrayLimit+" element"+(t.arrayLimit===1?"":"s")+" allowed in an array.");return e},oWe="utf8=%26%2310003%3B",aWe="utf8=%E2%9C%93",cWe=function(t,r){var n={__proto__:null},s=r.ignoreQueryPrefix?t.replace(/^\?/,""):t;s=s.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var i=r.parameterLimit===1/0?void 0:r.parameterLimit,o=s.split(r.delimiter,r.throwOnLimitExceeded?i+1:i);if(r.throwOnLimitExceeded&&o.length>i)throw new RangeError("Parameter limit exceeded. Only "+i+" parameter"+(i===1?"":"s")+" allowed.");var a=-1,c,u=r.charset;if(r.charsetSentinel)for(c=0;c-1&&(h=kie(h)?[h]:h);var p=lk.call(n,d);p&&r.duplicates==="combine"?n[d]=Pu.combine(n[d],h):(!p||r.duplicates==="last")&&(n[d]=h)}return n},uWe=function(e,t,r,n){var s=0;if(e.length>0&&e[e.length-1]==="[]"){var i=e.slice(0,-1).join("");s=Array.isArray(t)&&t[i]?t[i].length:0}for(var o=n?t:Fie(t,r,s),a=e.length-1;a>=0;--a){var c,u=e[a];if(u==="[]"&&r.parseArrays)c=r.allowEmptyArrays&&(o===""||r.strictNullHandling&&o===null)?[]:Pu.combine([],o);else{c=r.plainObjects?{__proto__:null}:{};var l=u.charAt(0)==="["&&u.charAt(u.length-1)==="]"?u.slice(1,-1):u,A=r.decodeDotInKeys?l.replace(/%2E/g,"."):l,f=parseInt(A,10);!r.parseArrays&&A===""?c={0:o}:!isNaN(f)&&u!==A&&String(f)===A&&f>=0&&r.parseArrays&&f<=r.arrayLimit?(c=[],c[f]=o):A!=="__proto__"&&(c[A]=o)}o=c}return o},lWe=function(t,r,n,s){if(t){var i=n.allowDots?t.replace(/\.([^.[]+)/g,"[$1]"):t,o=/(\[[^[\]]*])/,a=/(\[[^[\]]*])/g,c=n.depth>0&&o.exec(i),u=c?i.slice(0,c.index):i,l=[];if(u){if(!n.plainObjects&&lk.call(Object.prototype,u)&&!n.allowPrototypes)return;l.push(u)}for(var A=0;n.depth>0&&(c=a.exec(i))!==null&&A"u"?jt.charset:t.charset,n=typeof t.duplicates>"u"?jt.duplicates:t.duplicates;if(n!=="combine"&&n!=="first"&&n!=="last")throw new TypeError("The duplicates option must be either combine, first, or last");var s=typeof t.allowDots>"u"?t.decodeDotInKeys===!0?!0:jt.allowDots:!!t.allowDots;return{allowDots:s,allowEmptyArrays:typeof t.allowEmptyArrays=="boolean"?!!t.allowEmptyArrays:jt.allowEmptyArrays,allowPrototypes:typeof t.allowPrototypes=="boolean"?t.allowPrototypes:jt.allowPrototypes,allowSparse:typeof t.allowSparse=="boolean"?t.allowSparse:jt.allowSparse,arrayLimit:typeof t.arrayLimit=="number"?t.arrayLimit:jt.arrayLimit,charset:r,charsetSentinel:typeof t.charsetSentinel=="boolean"?t.charsetSentinel:jt.charsetSentinel,comma:typeof t.comma=="boolean"?t.comma:jt.comma,decodeDotInKeys:typeof t.decodeDotInKeys=="boolean"?t.decodeDotInKeys:jt.decodeDotInKeys,decoder:typeof t.decoder=="function"?t.decoder:jt.decoder,delimiter:typeof t.delimiter=="string"||Pu.isRegExp(t.delimiter)?t.delimiter:jt.delimiter,depth:typeof t.depth=="number"||t.depth===!1?+t.depth:jt.depth,duplicates:n,ignoreQueryPrefix:t.ignoreQueryPrefix===!0,interpretNumericEntities:typeof t.interpretNumericEntities=="boolean"?t.interpretNumericEntities:jt.interpretNumericEntities,parameterLimit:typeof t.parameterLimit=="number"?t.parameterLimit:jt.parameterLimit,parseArrays:t.parseArrays!==!1,plainObjects:typeof t.plainObjects=="boolean"?t.plainObjects:jt.plainObjects,strictDepth:typeof t.strictDepth=="boolean"?!!t.strictDepth:jt.strictDepth,strictNullHandling:typeof t.strictNullHandling=="boolean"?t.strictNullHandling:jt.strictNullHandling,throwOnLimitExceeded:typeof t.throwOnLimitExceeded=="boolean"?t.throwOnLimitExceeded:!1}};Lie.exports=function(e,t){var r=AWe(t);if(e===""||e===null||typeof e>"u")return r.plainObjects?{__proto__:null}:{};for(var n=typeof e=="string"?cWe(e,r):e,s=r.plainObjects?{__proto__:null}:{},i=Object.keys(n),o=0;o{"use strict";var fWe=Nie(),dWe=Oie(),hWe=Vb();Mie.exports={formats:hWe,parse:dWe,stringify:fWe}});var toe=b(qu=>{"use strict";Object.defineProperty(qu,"__esModule",{value:!0});qu.removeTrailingChar=qu.merge=void 0;var HWe=(...e)=>{let t={};return e.forEach(function(r){var n;for(n in r)n in t&&t[n]===null?t[n]=r[n]:n in t&&Array.isArray(t[n])?t[n]=t[n].concat(r[n]):n in t&&typeof t[n]=="object"?t[n]=(0,qu.merge)(t[n],r[n]):t[n]=r[n]}),t};qu.merge=HWe;var qWe=(e,t)=>e.length>1&&e.endsWith(t)?e.substring(0,e.length-1):e;qu.removeTrailingChar=qWe});var Lf=b(dc=>{"use strict";Object.defineProperty(dc,"__esModule",{value:!0});dc.DataError=dc.DatabaseError=dc.NestedError=void 0;var wp=class extends Error{inner;id;constructor(t,r,n){super(t),this.inner=n,this.id=r,this.name=this.constructor.name}toString(){let t=this.name+": "+this.message;return this.inner?t+`: +`+this.inner:t}};dc.NestedError=wp;var Qk=class extends wp{};dc.DatabaseError=Qk;var Tk=class extends wp{};dc.DataError=Tk});var Dk=b(pn=>{"use strict";Object.defineProperty(pn,"__esModule",{value:!0});pn.getArrayIndicies=pn.validateArrayIndex=pn.validateArrayIndicies=pn.isInt=pn.ArrayInfo=pn.arrayRegex=void 0;var jb=Lf(),VWe=()=>/^([\.0-9a-zA-Z_$\-][0-9a-zA-Z_\-$\.]*)\[((?!(\]|\[)).*|)\]$/gm;pn.arrayRegex=VWe;var wk={},Sk=class e{property;index=0;append=!1;indicies=[];constructor(t,r){this.property=t;let n=r[0]??0;if(this.append=n===""||r[r.length-1]==="",this.indicies=r,_k(n))this.index=parseInt(n);else if(!this.append)throw new jb.DataError("Only numerical values accepted for array index",200)}static processArray(t){if(typeof t>"u")return null;if(wk[t])return wk[t];let n=(0,pn.arrayRegex)().exec(t.trim());if(n!=null){let s=n[1],i="["+n[2].toString()+"]",o=Rk(i);return roe(o),wk[t]=new e(s,o)}return null}getIndex(t,r){if(this.append)return-1;let n=this.index;if(n==-1){let s=r?t:t[this.property];return s.length===0?0:s.length-1}return n}getData(t){if(this.append)throw new jb.DataError("Can't get data when appending",100);let{index:r,dataForProperty:n}=this.getArrayDataAndIndexFromProperty(t);return n[r]}setData(t,r){if(this.append){let n=t[this.property];this.indicies.forEach(s=>{s!==""&&(s=+s,s===-1&&(s=n.length-1),n=n[+s])}),n.push(r)}else{let{index:n,dataForProperty:s}=this.getArrayDataAndIndexFromProperty(t);n===-1?s.push(r):s[n]=r}}delete(t){if(this.append)throw new jb.DataError("Can't delete an appended data",10);let{index:r,dataForProperty:n}=this.getArrayDataAndIndexFromProperty(t);n.splice(r,1)}isValid(t){let{index:r,dataForProperty:n}=this.getArrayDataAndIndexFromProperty(t);return n.hasOwnProperty(r)}getArrayDataAndIndexFromProperty(t){let r=0,n=t instanceof Array?t:t[this.property]??t;if(this.indicies.length>0){r=+this.indicies[this.indicies.length-1];for(let s=0;s1}};pn.ArrayInfo=Sk;function _k(e){return!isNaN(e)&&Number(e)==e&&!isNaN(parseInt(e,10))}pn.isInt=_k;function roe(e){let t=e.filter(r=>r==="");if(t.length>1)throw Error("Only one append index is supported for nested arrays");if(t.length===1&&e[e.length-1]!=="")throw Error("Append index must be at the end of the nested array")}pn.validateArrayIndicies=roe;function noe(e){if(e.length!==0&&!_k(e))throw new jb.DataError("Only numerical values accepted for array index",200)}pn.validateArrayIndex=noe;function Rk(e){if(e.length===0)return[];if(e.charAt(0)!=="[")throw new Error("Invalid array syntax detected");let t=e.substring(1,e.indexOf("]"));noe(t);let r=t.length+2;return[t,...Rk(e.substring(r))]}pn.getArrayIndicies=Rk});var ooe=b(Jb=>{"use strict";Object.defineProperty(Jb,"__esModule",{value:!0});Jb.DBParentData=void 0;var soe=Dk(),ioe=Lf(),Nk=class{parent;data;db;dataPath;constructor(t,r,n,s){this.parent=s,this.data=t,this.db=r,this.dataPath=n}checkArray(t=!1){let r=soe.ArrayInfo.processArray(this.parent);if(r&&(!r.append||t)&&!r.isValid(this.data))throw new ioe.DataError("DataPath: /"+this.dataPath+". Can't find index "+r.index+" in array "+r.property,10);return r}getData(){if(this.parent===void 0)return this.data;let t=this.checkArray();return t?t.getData(this.data):this.data[this.parent]}setData(t){if(this.parent===void 0){this.db.resetData(t);return}let r=soe.ArrayInfo.processArray(this.parent);if(r){if(!this.data.hasOwnProperty(r.property))this.data[r.property]=[];else if(!Array.isArray(this.data[r.property]))throw new ioe.DataError("DataPath: /"+this.dataPath+". "+r.property+" is not an array.",11);r.setData(this.data,t)}else this.data[this.parent]=t}delete(){if(this.parent===void 0){this.db.resetData({});return}let t=this.checkArray(!0);t?t.delete(this.data):delete this.data[this.parent]}};Jb.DBParentData=Nk});var coe=b((Wdt,aoe)=>{aoe.exports=function(){"use strict";function e(){this.readers=0,this.queue=[]}function t(i,o,a){var c;typeof i!="function"?(s.hasOwnProperty(i)||(s[i]=new e),c=s[i]):(a=o,o=i,c=n),a||(a={});var u=null;a.hasOwnProperty("scope")&&(u=a.scope);var l=function(){var d=!1;return function(){d||(d=!0,c.readers--,c.queue.length&&c.queue[0]())}}();if(c.readers<0||c.queue.length){var A=!1;if(c.queue.push(function(){!A&&c.readers>=0&&(A=!0,c.queue.shift(),c.readers++,o.call(u,l),c.queue.length&&c.queue[0]())}),a.hasOwnProperty("timeout")){var f=null;a.hasOwnProperty("timeoutCallback")&&(f=a.timeoutCallback),setTimeout(function(){A||(A=!0,c.queue.shift(),f&&f.call(a.scope))},a.timeout)}}else c.readers++,o.call(a.scope,l)}function r(i,o,a){var c;typeof i!="function"?(s.hasOwnProperty(i)||(s[i]=new e),c=s[i]):(a=o,o=i,c=n),a||(a={});var u=null;a.hasOwnProperty("scope")&&(u=a.scope);var l=function(){var d=!1;return function(){d||(d=!0,c.readers=0,c.queue.length&&c.queue[0]())}}();if(c.readers||c.queue.length){var A=!1;if(c.queue.push(function(){A||c.readers||(A=!0,c.queue.shift(),c.readers=-1,o.call(a.scope,l))}),a.hasOwnProperty("timeout")){var f=null;a.hasOwnProperty("timeoutCallback")&&(f=a.timeoutCallback),setTimeout(function(){A||(A=!0,c.queue.shift(),f&&f.call(u))},a.timeout)}}else c.readers=-1,o.call(a.scope,l)}var n=new e,s={};this.readLock=t,this.writeLock=r,this.async={readLock:function(i,o,a){typeof i!="function"?t(i,function(c){o.call(this,null,c)},a):(o=i,a=o,t(function(c){o.call(this,null,c)},a))},writeLock:function(i,o,a){typeof i!="function"?r(i,function(c){o.call(this,null,c)},a):(o=i,a=o,r(function(c){o.call(this,null,c)},a))}}}});var uoe=b(Wb=>{"use strict";Object.defineProperty(Wb,"__esModule",{value:!0});Wb.TimeoutError=void 0;var YWe=Lf(),kk=class extends YWe.NestedError{};Wb.TimeoutError=kk});var foe=b(Of=>{"use strict";Object.defineProperty(Of,"__esModule",{value:!0});Of.writeLockAsync=Of.readLockAsync=void 0;var $We=coe(),loe=uoe(),Aoe=new $We,GWe=(e,t=null)=>{let r={};return t!=null&&(r={timeout:t}),new Promise((n,s)=>{Aoe.readLock(async i=>{try{let o=await e();n(o)}catch(o){s(o)}finally{i()}},{...r,timeoutCallback(){s(new loe.TimeoutError("Timeout",100))}})})};Of.readLockAsync=GWe;var jWe=(e,t=null)=>{let r={};return t!=null&&(r={timeout:t}),new Promise((n,s)=>{Aoe.writeLock(async i=>{try{let o=await e();n(o)}catch(o){s(o)}finally{i()}},{...r,timeoutCallback(){s(new loe.TimeoutError("Timeout",100))}})})};Of.writeLockAsync=jWe});var Lk=b(zb=>{"use strict";Object.defineProperty(zb,"__esModule",{value:!0});zb.JsonAdapter=void 0;var Fk=class{adapter;humanReadable;dateRegex=new RegExp("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}","m");constructor(t,r=!1){this.adapter=t,this.humanReadable=r}replacer(t,r){return r}reviver(t,r){return typeof r=="string"&&this.dateRegex.exec(r)!=null?new Date(r):r}async readAsync(){let t=await this.adapter.readAsync();return t==null?(await this.writeAsync({}),{}):JSON.parse(t,this.reviver.bind(this))}writeAsync(t){let r="";return this.humanReadable?r=JSON.stringify(t,this.replacer.bind(this),4):r=JSON.stringify(t,this.replacer.bind(this)),this.adapter.writeAsync(r)}};zb.JsonAdapter=Fk});var Mk=b(Kb=>{"use strict";Object.defineProperty(Kb,"__esModule",{value:!0});Kb.FileAdapter=void 0;var Xb=require("fs/promises"),JWe=require("path"),Ok=class{filename;fsync;constructor(t,r){this.filename=t,this.fsync=r}async readAsync(){try{return await(0,Xb.readFile)(this.filename,{encoding:"utf-8"})}catch(t){if(t.code==="ENOENT")return null;throw t}}async writeAsync(t){let r=null;try{r=await(0,Xb.open)(this.filename,"w")}catch(n){if(n.code!=="ENOENT")throw n;let s=JWe.dirname(this.filename);await(0,Xb.mkdir)(s,{recursive:!0}),r=await(0,Xb.open)(this.filename,"w")}try{await r.writeFile(t,{encoding:"utf-8"}),this.fsync&&await r.sync()}finally{await r.close()}}};Kb.FileAdapter=Ok});var doe=b(Mf=>{"use strict";Object.defineProperty(Mf,"__esModule",{value:!0});Mf.ConfigWithAdapter=Mf.Config=void 0;var WWe=require("path"),zWe=Lk(),XWe=Mk(),Pk=class{adapter;filename;saveOnPush;separator;constructor(t,r=!0,n=!1,s="/",i=!1){this.filename=t,WWe.extname(t)===""&&(this.filename+=".json"),this.saveOnPush=r,this.separator=s,this.adapter=new zWe.JsonAdapter(new XWe.FileAdapter(this.filename,i),n)}};Mf.Config=Pk;var Uk=class{adapter;saveOnPush;separator;constructor(t,r=!0,n="/"){this.adapter=t,this.saveOnPush=r,this.separator=n}};Mf.ConfigWithAdapter=Uk});var moe=b(rn=>{"use strict";Object.defineProperty(rn,"__esModule",{value:!0});rn.JsonDB=rn.FileAdapter=rn.JsonAdapter=rn.DataError=rn.DatabaseError=rn.ConfigWithAdapter=rn.Config=void 0;var hoe=toe(),tn=Lf(),KWe=ooe(),ZWe=Dk(),Hk=foe(),poe=doe();Object.defineProperty(rn,"Config",{enumerable:!0,get:function(){return poe.Config}});Object.defineProperty(rn,"ConfigWithAdapter",{enumerable:!0,get:function(){return poe.ConfigWithAdapter}});var goe=Lf();Object.defineProperty(rn,"DatabaseError",{enumerable:!0,get:function(){return goe.DatabaseError}});Object.defineProperty(rn,"DataError",{enumerable:!0,get:function(){return goe.DataError}});var eze=Lk();Object.defineProperty(rn,"JsonAdapter",{enumerable:!0,get:function(){return eze.JsonAdapter}});var tze=Mk();Object.defineProperty(rn,"FileAdapter",{enumerable:!0,get:function(){return tze.FileAdapter}});var qk=class{loaded=!1;data={};config;constructor(t){this.config=t}processDataPath(t){if(t===void 0||!t.trim())throw new tn.DataError("The Data Path can't be empty",6);if(t==this.config.separator)return[];t=(0,hoe.removeTrailingChar)(t,this.config.separator);let r=t.split(this.config.separator);return r.shift(),r}async retrieveData(t,r=!1){await this.load();let n=this,s=(i,o)=>{let a=t[o];function c(l=!1){if(i.hasOwnProperty(a))i=i[a];else if(r)l?i[a]=[]:i[a]={},i=i[a];else throw new tn.DataError(`Can't find dataPath: ${n.config.separator}${t.join(n.config.separator)}. Stopped at ${a}`,5)}let u=ZWe.ArrayInfo.processArray(a);if(u){if(a=u.property,c(!0),!Array.isArray(i))throw new tn.DataError(`DataPath: ${n.config.separator}${t.join(n.config.separator)}. ${a} is not an array.`,11);let l=u.getIndex(i,!0);if(!u.append&&i.hasOwnProperty(l))i=u.getData(i);else if(r)u.append?(i.push({}),i=i[i.length-1]):(i[l]={},i=i[l]);else throw new tn.DataError(`DataPath: ${n.config.separator}${t.join(n.config.separator)}. . Can't find index ${u.index} in array ${a}`,10)}else c();return t.length==++o?i:s(i,o)};return t.length===0?this.data:s(this.data,0)}async getParentData(t,r){let n=this.processDataPath(t),s=n.pop();return new KWe.DBParentData(await this.retrieveData(n,r),this,t,s)}getData(t){return(0,Hk.readLockAsync)(async()=>{let r=this.processDataPath(t);return this.retrieveData(r,!1)})}getObject(t){return this.getData(t)}async getObjectDefault(t,r){try{return await this.getData(t)}catch(n){if(!(n instanceof tn.DataError)||n.id!=5)throw n;return r}}async exists(t){try{return await this.getData(t),!0}catch(r){if(r instanceof tn.DataError)return!1;throw r}}async count(t){let r=await this.getData(t);if(!Array.isArray(r))throw new tn.DataError(`DataPath: ${t} is not an array.`,11);let n=this.processDataPath(t);return(await this.retrieveData(n,!1)).length}async getIndex(t,r,n="id"){return(await this.getArrayData(t)).map(function(i){return i[n]}).indexOf(r)}async getIndexValue(t,r){return(await this.getArrayData(t)).indexOf(r)}async getArrayData(t){let r=await this.getData(t);if(!Array.isArray(r))throw new tn.DataError(`DataPath: ${t} is not an array.`,11);let n=this.processDataPath(t);return this.retrieveData(n,!1)}async filter(t,r){let n=await this.getData(t);if(Array.isArray(n))return n.filter(r);if(n instanceof Object){let i=Object.entries(n).filter(o=>r(o[1],o[0]));return!i||i.length<1?void 0:i.map(o=>o[1])}throw new tn.DataError("The entry at the path ("+t+") needs to be either an Object or an Array",12)}async find(t,r){let n=await this.getData(t);if(Array.isArray(n))return n.find(r);if(n instanceof Object){let i=Object.entries(n).find(o=>r(o[1],o[0]));return!i||i.length<2?void 0:i[1]}throw new tn.DataError("The entry at the path ("+t+") needs to be either an Object or an Array",12)}async push(t,r,n=!0){return(0,Hk.writeLockAsync)(async()=>{let s=await this.getParentData(t,!0),i=r;if(!n){if(Array.isArray(r)){let o=s.getData();if(o===void 0)o=[];else if(!Array.isArray(o))throw new tn.DataError("Can't merge another type of data with an Array",3);i=o.concat(r)}else if(r===Object(r)){if(Array.isArray(s.getData()))throw new tn.DataError("Can't merge an Array with an Object",4);i=(0,hoe.merge)(s.getData(),r)}}s.setData(i),this.config.saveOnPush&&await this.save()})}async delete(t){await(0,Hk.writeLockAsync)(async()=>{(await this.getParentData(t,!0)).delete(),this.config.saveOnPush&&await this.save()})}resetData(t){this.data=t}async reload(){this.loaded=!1,await this.load()}async load(){if(!this.loaded)try{this.data=await this.config.adapter.readAsync(),this.loaded=!0}catch(t){throw new tn.DatabaseError("Can't Load Database",1,t)}}async save(t){if(t=t||!1,!t&&!this.loaded)throw new tn.DatabaseError("DataBase not loaded. Can't write",7);try{await this.config.adapter.writeAsync(this.data)}catch(r){throw new tn.DatabaseError("Can't save the database",2,r)}}async fromPath(t,r="id"){let[,...n]=t.split("/"),s=n.reduce((o,a,c)=>{if(c%2===0)o[`${a}`]="";else{let l=Object.keys(o);o[`${l[l.length-1]}`]=`${a}`}return o},{}),i=[];for await(let o of Object.keys(s)){i.push(`/${o}`);let a=s[o];try{let c=await this.getIndex(i.join(""),a,r);i.push(`[${c}]`)}catch(c){throw new tn.DataError(`DataPath: ${i.join("")}/${a} not found.`,13,c)}}return i.join("")}};rn.JsonDB=qk});var sze={};Us(sze,{start:()=>rze,stop:()=>nze});module.exports=woe(sze);var Eoe=Fe(vV(),1);var Nr={drpyS:{config_url:"$config_url",home_site:"http://localhost:5757/api/\u8BBE\u7F6E\u4E2D\u5FC3",enable_dspush:1,enable_home_site:0,sniffer_rule:"http((?!http).){12,}?\\.(m3u8|mp4|flv|avi|mkv|rm|wmv|mpg|m4a|mp3)\\?.*|http((?!http).){12,}\\.(m3u8|mp4|flv|avi|mkv|rm|wmv|mpg|m4a|mp3)|http((?!http).)*?video/tos*|http((?!http).)*?obj/tos*",enable_hipy_sniffer:0,hipy_sniffer_url:"http://127.0.0.1:5708/sniffer?url=",parse_count:6,parse_timeout:5e3,test_thread_proxy:"http://127.0.0.1:5759/proxy?thread=8&chunkSize=256&url=https://vdse.bdstatic.com//628ca08719cef5987ea2ae3c6f0d2386.mp4"},ffm3u8:{url:"https://cj.ffzyapi.com/api.php/provide/vod/from/ffm3u8",categories:["\u56FD\u4EA7\u5267","\u9999\u6E2F\u5267","\u97E9\u56FD\u5267","\u6B27\u7F8E\u5267","\u53F0\u6E7E\u5267","\u65E5\u672C\u5267","\u6D77\u5916\u5267","\u6CF0\u56FD\u5267","\u77ED\u5267","\u52A8\u4F5C\u7247","\u559C\u5267\u7247","\u7231\u60C5\u7247","\u79D1\u5E7B\u7247","\u6050\u6016\u7247","\u5267\u60C5\u7247","\u6218\u4E89\u7247","\u52A8\u6F2B\u7247","\u5927\u9646\u7EFC\u827A","\u6E2F\u53F0\u7EFC\u827A","\u65E5\u97E9\u7EFC\u827A","\u6B27\u7F8E\u7EFC\u827A","\u56FD\u4EA7\u52A8\u6F2B","\u65E5\u97E9\u52A8\u6F2B","\u6B27\u7F8E\u52A8\u6F2B","\u6E2F\u53F0\u52A8\u6F2B","\u6D77\u5916\u52A8\u6F2B","\u8BB0\u5F55\u7247"]},alist:[{name:"\u4E2B\u4ED9\u5973",server:"http://localhost:5244",startPage:"/",showAll:!1,sort:!0,login:{username:"admin",password:"admin",otp_code:""},params:{"/abc":{password:"123"},"/abc/abc":{password:"123"}}},{name:"\u{1F409}\u795E\u65CF\u4E5D\u5E1D",server:"https://alist.shenzjd.com"},{name:"\u{1F4A2}repl",server:"https://ali.liucn.repl.co"}],color:[{light:{bg:"http://php.540734621.xyz/tcp/1.php",bgMask:"0x50ffffff",primary:"0xff446732",onPrimary:"0xffffffff",primaryContainer:"0xffc5efab",onPrimaryContainer:"0xff072100",secondary:"0xff55624c",onSecondary:"0xffffffff",secondaryContainer:"0xffd9e7cb",onSecondaryContainer:"0xff131f0d",tertiary:"0xff386666",onTertiary:"0xffffffff",tertiaryContainer:"0xffbbebec",onTertiaryContainer:"0xff002020",error:"0xffba1a1a",onError:"0xffffffff",errorContainer:"0xffffdad6",onErrorContainer:"0xff410002",background:"0xfff8faf0",onBackground:"0xff191d16",surface:"0xfff8faf0",onSurface:"0xff191d16",surfaceVariant:"0xffe0e4d6",onSurfaceVariant:"0xff191d16",inverseSurface:"0xff2e312b",inverseOnSurface:"0xfff0f2e7",outline:"0xff74796d",outlineVariant:"0xffc3c8bb",shadow:"0xff000000",scrim:"0xff000000",inversePrimary:"0xffaad291",surfaceTint:"0xff446732"},dark:{bg:"http://php.540734621.xyz/tcp/1.php",bgMask:"0x50000000",primary:"0xffaad291",onPrimary:"0xff173807",primaryContainer:"0xff2d4f1c",onPrimaryContainer:"0xffc5efab",secondary:"0xffbdcbb0",onSecondary:"0xff283420",secondaryContainer:"0xff3e4a35",onSecondaryContainer:"0xffd9e7cb",tertiary:"0xffa0cfcf",onTertiary:"0xff003738",tertiaryContainer:"0xff1e4e4e",onTertiaryContainer:"0xffbbebec",error:"0xffffb4ab",onError:"0xff690005",errorContainer:"0xff93000a",onErrorContainer:"0xffffdad6",background:"0xff11140e",onBackground:"0xffe1e4d9",surface:"0xff11140e",onSurface:"0xffe1e4d9",surfaceVariant:"0xff43483e",onSurfaceVariant:"0xffe1e4d9",inverseSurface:"0xffe1e4d9",inverseOnSurface:"0xff2e312b",outline:"0xff8d9286",outlineVariant:"0xff43483e",shadow:"0xff000000",scrim:"0xff000000",inversePrimary:"0xff446732",surfaceTint:"0xffaad291"}},{light:{bg:"http://php.540734621.xyz/tcp/1.php",bgMask:"0x50ffffff",primary:"0xff666014",onPrimary:"0xffffffff",primaryContainer:"0xffeee58c",onPrimaryContainer:"0xff1f1c00",secondary:"0xff625f42",onSecondary:"0xffffffff",secondaryContainer:"0xffe9e4be",onSecondaryContainer:"0xff1e1c05",tertiary:"0xff3f6654",onTertiary:"0xffffffff",tertiaryContainer:"0xffc1ecd5",onTertiaryContainer:"0xff002114",error:"0xffba1a1a",onError:"0xffffffff",errorContainer:"0xffffdad6",onErrorContainer:"0xff410002",background:"0xfffef9eb",onBackground:"0xff1d1c14",surface:"0xfffef9eb",onSurface:"0xff1d1c14",surfaceVariant:"0xffe7e3d0",onSurfaceVariant:"0xff1d1c14",inverseSurface:"0xff323128",inverseOnSurface:"0xfff5f1e3",outline:"0xff7a7768",outlineVariant:"0xffcbc7b5",shadow:"0xff000000",scrim:"0xff000000",inversePrimary:"0xffd1c973",surfaceTint:"0xff666014"},dark:{bg:"http://php.540734621.xyz/tcp/1.php",bgMask:"0x50000000",primary:"0xffd1c973",onPrimary:"0xff353100",primaryContainer:"0xff4d4800",onPrimaryContainer:"0xffeee58c",secondary:"0xffcdc8a3",onSecondary:"0xff333117",secondaryContainer:"0xff4a482c",onSecondaryContainer:"0xffe9e4be",tertiary:"0xffa6d0b9",onTertiary:"0xff0e3727",tertiaryContainer:"0xff274e3d",onTertiaryContainer:"0xffc1ecd5",error:"0xffffb4ab",onError:"0xff690005",errorContainer:"0xff93000a",onErrorContainer:"0xffffdad6",background:"0xff14140c",onBackground:"0xffe7e2d5",surface:"0xff14140c",onSurface:"0xffe7e2d5",surfaceVariant:"0xff49473a",onSurfaceVariant:"0xffe7e2d5",inverseSurface:"0xffe7e2d5",inverseOnSurface:"0xff323128",outline:"0xff949181",outlineVariant:"0xff49473a",shadow:"0xff000000",scrim:"0xff000000",inversePrimary:"0xff666014",surfaceTint:"0xffd1c973"}},{light:{bg:"http://php.540734621.xyz/tcp/1.php",bgMask:"0x50ffffff",primary:"0xFF2B6C00",onPrimary:"0xFFFFFFFF",primaryContainer:"0xFFA6F779",onPrimaryContainer:"0xFF082100",secondary:"0xFF55624C",onSecondary:"0xFFFFFFFF",secondaryContainer:"0xFFD9E7CA",onSecondaryContainer:"0xFF131F0D",tertiary:"0xFF386666",onTertiary:"0xFFFFFFFF",tertiaryContainer:"0xFFBBEBEB",onTertiaryContainer:"0xFF002020",error:"0xFFBA1A1A",onError:"0xFFFFFFFF",errorContainer:"0xFFFFDAD6",onErrorContainer:"0xFF410002",background:"0xFFFDFDF5",onBackground:"0xFF1A1C18",surface:"0xFFFDFDF5",onSurface:"0xFF1A1C18",surfaceVariant:"0xFFE0E4D6",onSurfaceVariant:"0xFF1A1C18",inverseSurface:"0xFF2F312C",onInverseSurface:"0xFFF1F1EA",outline:"0xFF74796D",outlineVariant:"0xFFC3C8BB",shadow:"0xFF000000",scrim:"0xFF000000",inversePrimary:"0xFF8CDA60",surfaceTint:"0xFF2B6C00"},dark:{bg:"http://php.540734621.xyz/tcp/1.php",bgMask:"0x50000000",primary:"0xFF8CDA60",onPrimary:"0xFF133800",primaryContainer:"0xFF1F5100",onPrimaryContainer:"0xFFA6F779",secondary:"0xFFBDCBAF",onSecondary:"0xFF283420",secondaryContainer:"0xFF3E4A35",onSecondaryContainer:"0xFFD9E7CA",tertiary:"0xFFA0CFCF",onTertiary:"0xFF003737",tertiaryContainer:"0xFF1E4E4E",onTertiaryContainer:"0xFFBBEBEB",error:"0xFFFFB4AB",errorContainer:"0xFF93000A",onError:"0xFF690005",onErrorContainer:"0xFFFFDAD6",background:"0xFF1A1C18",onBackground:"0xFFE3E3DC",outline:"0xFF8D9286",onInverseSurface:"0xFF1A1C18",inverseSurface:"0xFFE3E3DC",inversePrimary:"0xFF2B6C00",shadow:"0xFF000000",surfaceTint:"0xFF8CDA60",outlineVariant:"0xFF43483E",scrim:"0xFF000000",surface:"0xFF1A1C18",onSurface:"0xFFC7C7C0",surfaceVariant:"0xFF43483E",onSurfaceVariant:"0xFFC7C7C0"}}]};async function $2e(e,t){return{}}async function G2e(e,t){return"true"}async function j2e(e,t){let r=Array.isArray(e.body.id)?e.body.id:[e.body.id],n=[];for(let s of r){let i={vod_id:s,vod_content:"",vod_name:s,vod_pic:"https://pic.rmb.bdstatic.com/bjh/1d0b02d0f57f0a42201f92caba5107ed.jpeg"};i.vod_play_from="\u63A8\u9001",i.vod_play_url="\u6D4B\u8BD5$"+s,n.push(i)}return{list:n}}async function J2e(e,t){return{parse:0,url:e.body.id}}async function W2e(e,t){try{let r=function(o){o.statusCode&&o.statusCode==500&&console.error(o)},n=e.server.prefix,s={},i=await e.server.inject().post(`${n}/support`).payload({clip:"https://xx.xx/1.m3u8"});return s.support=i.json(),r(i.json()),i=await e.server.inject().post(`${n}/detail`).payload({id:"https://xx.xx/1.m3u8"}),s.detail=i.json(),r(i.json()),i=await e.server.inject().post(`${n}/play`).payload({flag:"xx",id:"https://xx.xx/1.m3u8"}),s.play=i.json(),r(i.json()),s}catch(r){return console.error(r),t.code(500),{err:r.message,tip:"check debug console output"}}}var bE={meta:{key:"push",name:"\u63A8\u9001",type:4},api:async e=>{e.post("/init",$2e),e.post("/support",G2e),e.post("/detail",j2e),e.post("/play",J2e),e.get("/test",W2e)}};function gh(e,t){return function(){return e.apply(t,arguments)}}var{toString:z2e}=Object.prototype,{getPrototypeOf:dw}=Object,xE=(e=>t=>{let r=z2e.call(t);return e[r]||(e[r]=r.slice(8,-1).toLowerCase())})(Object.create(null)),Xs=e=>(e=e.toLowerCase(),t=>xE(t)===e),vE=e=>t=>typeof t===e,{isArray:Hl}=Array,mh=vE("undefined");function X2e(e){return e!==null&&!mh(e)&&e.constructor!==null&&!mh(e.constructor)&&Vn(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}var SV=Xs("ArrayBuffer");function K2e(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&SV(e.buffer),t}var Z2e=vE("string"),Vn=vE("function"),_V=vE("number"),QE=e=>e!==null&&typeof e=="object",e_e=e=>e===!0||e===!1,BE=e=>{if(xE(e)!=="object")return!1;let t=dw(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},t_e=Xs("Date"),r_e=Xs("File"),n_e=Xs("Blob"),s_e=Xs("FileList"),i_e=e=>QE(e)&&Vn(e.pipe),o_e=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Vn(e.append)&&((t=xE(e))==="formdata"||t==="object"&&Vn(e.toString)&&e.toString()==="[object FormData]"))},a_e=Xs("URLSearchParams"),[c_e,u_e,l_e,A_e]=["ReadableStream","Request","Response","Headers"].map(Xs),f_e=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Eh(e,t,{allOwnKeys:r=!1}={}){if(e===null||typeof e>"u")return;let n,s;if(typeof e!="object"&&(e=[e]),Hl(e))for(n=0,s=e.length;n0;)if(s=r[n],t===s.toLowerCase())return s;return null}var $c=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,DV=e=>!mh(e)&&e!==$c;function fw(){let{caseless:e}=DV(this)&&this||{},t={},r=(n,s)=>{let i=e&&RV(t,s)||s;BE(t[i])&&BE(n)?t[i]=fw(t[i],n):BE(n)?t[i]=fw({},n):Hl(n)?t[i]=n.slice():t[i]=n};for(let n=0,s=arguments.length;n(Eh(t,(s,i)=>{r&&Vn(s)?e[i]=gh(s,r):e[i]=s},{allOwnKeys:n}),e),h_e=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),p_e=(e,t,r,n)=>{e.prototype=Object.create(t.prototype,n),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),r&&Object.assign(e.prototype,r)},g_e=(e,t,r,n)=>{let s,i,o,a={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),i=s.length;i-- >0;)o=s[i],(!n||n(o,e,t))&&!a[o]&&(t[o]=e[o],a[o]=!0);e=r!==!1&&dw(e)}while(e&&(!r||r(e,t))&&e!==Object.prototype);return t},m_e=(e,t,r)=>{e=String(e),(r===void 0||r>e.length)&&(r=e.length),r-=t.length;let n=e.indexOf(t,r);return n!==-1&&n===r},E_e=e=>{if(!e)return null;if(Hl(e))return e;let t=e.length;if(!_V(t))return null;let r=new Array(t);for(;t-- >0;)r[t]=e[t];return r},C_e=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&dw(Uint8Array)),y_e=(e,t)=>{let n=(e&&e[Symbol.iterator]).call(e),s;for(;(s=n.next())&&!s.done;){let i=s.value;t.call(e,i[0],i[1])}},I_e=(e,t)=>{let r,n=[];for(;(r=e.exec(t))!==null;)n.push(r);return n},b_e=Xs("HTMLFormElement"),B_e=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(r,n,s){return n.toUpperCase()+s}),TV=(({hasOwnProperty:e})=>(t,r)=>e.call(t,r))(Object.prototype),x_e=Xs("RegExp"),NV=(e,t)=>{let r=Object.getOwnPropertyDescriptors(e),n={};Eh(r,(s,i)=>{let o;(o=t(s,i,e))!==!1&&(n[i]=o||s)}),Object.defineProperties(e,n)},v_e=e=>{NV(e,(t,r)=>{if(Vn(e)&&["arguments","caller","callee"].indexOf(r)!==-1)return!1;let n=e[r];if(Vn(n)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+r+"'")})}})},Q_e=(e,t)=>{let r={},n=s=>{s.forEach(i=>{r[i]=!0})};return Hl(e)?n(e):n(String(e).split(t)),r},T_e=()=>{},w_e=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t,Aw="abcdefghijklmnopqrstuvwxyz",wV="0123456789",kV={DIGIT:wV,ALPHA:Aw,ALPHA_DIGIT:Aw+Aw.toUpperCase()+wV},S_e=(e=16,t=kV.ALPHA_DIGIT)=>{let r="",{length:n}=t;for(;e--;)r+=t[Math.random()*n|0];return r};function __e(e){return!!(e&&Vn(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}var R_e=e=>{let t=new Array(10),r=(n,s)=>{if(QE(n)){if(t.indexOf(n)>=0)return;if(!("toJSON"in n)){t[s]=n;let i=Hl(n)?[]:{};return Eh(n,(o,a)=>{let c=r(o,s+1);!mh(c)&&(i[a]=c)}),t[s]=void 0,i}}return n};return r(e,0)},D_e=Xs("AsyncFunction"),N_e=e=>e&&(QE(e)||Vn(e))&&Vn(e.then)&&Vn(e.catch),FV=((e,t)=>e?setImmediate:t?((r,n)=>($c.addEventListener("message",({source:s,data:i})=>{s===$c&&i===r&&n.length&&n.shift()()},!1),s=>{n.push(s),$c.postMessage(r,"*")}))(`axios@${Math.random()}`,[]):r=>setTimeout(r))(typeof setImmediate=="function",Vn($c.postMessage)),k_e=typeof queueMicrotask<"u"?queueMicrotask.bind($c):typeof process<"u"&&process.nextTick||FV,O={isArray:Hl,isArrayBuffer:SV,isBuffer:X2e,isFormData:o_e,isArrayBufferView:K2e,isString:Z2e,isNumber:_V,isBoolean:e_e,isObject:QE,isPlainObject:BE,isReadableStream:c_e,isRequest:u_e,isResponse:l_e,isHeaders:A_e,isUndefined:mh,isDate:t_e,isFile:r_e,isBlob:n_e,isRegExp:x_e,isFunction:Vn,isStream:i_e,isURLSearchParams:a_e,isTypedArray:C_e,isFileList:s_e,forEach:Eh,merge:fw,extend:d_e,trim:f_e,stripBOM:h_e,inherits:p_e,toFlatObject:g_e,kindOf:xE,kindOfTest:Xs,endsWith:m_e,toArray:E_e,forEachEntry:y_e,matchAll:I_e,isHTMLForm:b_e,hasOwnProperty:TV,hasOwnProp:TV,reduceDescriptors:NV,freezeMethods:v_e,toObjectSet:Q_e,toCamelCase:B_e,noop:T_e,toFiniteNumber:w_e,findKey:RV,global:$c,isContextDefined:DV,ALPHABET:kV,generateString:S_e,isSpecCompliantForm:__e,toJSONObject:R_e,isAsyncFn:D_e,isThenable:N_e,setImmediate:FV,asap:k_e};function ql(e,t,r,n,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),r&&(this.config=r),n&&(this.request=n),s&&(this.response=s,this.status=s.status?s.status:null)}O.inherits(ql,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:O.toJSONObject(this.config),code:this.code,status:this.status}}});var LV=ql.prototype,OV={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{OV[e]={value:e}});Object.defineProperties(ql,OV);Object.defineProperty(LV,"isAxiosError",{value:!0});ql.from=(e,t,r,n,s,i)=>{let o=Object.create(LV);return O.toFlatObject(e,o,function(c){return c!==Error.prototype},a=>a!=="isAxiosError"),ql.call(o,e.message,t,r,n,s),o.cause=e,o.name=e.name,i&&Object.assign(o,i),o};var ae=ql;var E7=Fe(m7(),1),SE=E7.default;function xw(e){return O.isPlainObject(e)||O.isArray(e)}function y7(e){return O.endsWith(e,"[]")?e.slice(0,-2):e}function C7(e,t,r){return e?e.concat(t).map(function(s,i){return s=y7(s),!r&&i?"["+s+"]":s}).join(r?".":""):t}function ERe(e){return O.isArray(e)&&!e.some(xw)}var CRe=O.toFlatObject(O,{},null,function(t){return/^is[A-Z]/.test(t)});function yRe(e,t,r){if(!O.isObject(e))throw new TypeError("target must be an object");t=t||new(SE||FormData),r=O.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,function(p,C){return!O.isUndefined(C[p])});let n=r.metaTokens,s=r.visitor||l,i=r.dots,o=r.indexes,c=(r.Blob||typeof Blob<"u"&&Blob)&&O.isSpecCompliantForm(t);if(!O.isFunction(s))throw new TypeError("visitor must be a function");function u(h){if(h===null)return"";if(O.isDate(h))return h.toISOString();if(!c&&O.isBlob(h))throw new ae("Blob is not supported. Use a Buffer instead.");return O.isArrayBuffer(h)||O.isTypedArray(h)?c&&typeof Blob=="function"?new Blob([h]):Buffer.from(h):h}function l(h,p,C){let m=h;if(h&&!C&&typeof h=="object"){if(O.endsWith(p,"{}"))p=n?p:p.slice(0,-2),h=JSON.stringify(h);else if(O.isArray(h)&&ERe(h)||(O.isFileList(h)||O.endsWith(p,"[]"))&&(m=O.toArray(h)))return p=y7(p),m.forEach(function(y,E){!(O.isUndefined(y)||y===null)&&t.append(o===!0?C7([p],E,i):o===null?p:p+"[]",u(y))}),!1}return xw(h)?!0:(t.append(C7(C,p,i),u(h)),!1)}let A=[],f=Object.assign(CRe,{defaultVisitor:l,convertValue:u,isVisitable:xw});function d(h,p){if(!O.isUndefined(h)){if(A.indexOf(h)!==-1)throw Error("Circular reference detected in "+p.join("."));A.push(h),O.forEach(h,function(m,I){(!(O.isUndefined(m)||m===null)&&s.call(t,m,O.isString(I)?I.trim():I,p,f))===!0&&d(m,p?p.concat(I):[I])}),A.pop()}}if(!O.isObject(e))throw new TypeError("data must be an object");return d(e),t}var wa=yRe;function I7(e){let t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(n){return t[n]})}function b7(e,t){this._pairs=[],e&&wa(e,this,t)}var B7=b7.prototype;B7.append=function(t,r){this._pairs.push([t,r])};B7.toString=function(t){let r=t?function(n){return t.call(this,n,I7)}:I7;return this._pairs.map(function(s){return r(s[0])+"="+r(s[1])},"").join("&")};var x7=b7;function IRe(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Gc(e,t,r){if(!t)return e;let n=r&&r.encode||IRe;O.isFunction(r)&&(r={serialize:r});let s=r&&r.serialize,i;if(s?i=s(t,r):i=O.isURLSearchParams(t)?t.toString():new x7(t,r).toString(n),i){let o=e.indexOf("#");o!==-1&&(e=e.slice(0,o)),e+=(e.indexOf("?")===-1?"?":"&")+i}return e}var vw=class{constructor(){this.handlers=[]}use(t,r,n){return this.handlers.push({fulfilled:t,rejected:r,synchronous:n?n.synchronous:!1,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){O.forEach(this.handlers,function(n){n!==null&&t(n)})}},Qw=vw;var Vl={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1};var v7=Fe(require("url"),1),Q7=v7.default.URLSearchParams;var T7={isNode:!0,classes:{URLSearchParams:Q7,FormData:SE,Blob:typeof Blob<"u"&&Blob||null},protocols:["http","https","file","data"]};var Sw={};Us(Sw,{hasBrowserEnv:()=>ww,hasStandardBrowserEnv:()=>bRe,hasStandardBrowserWebWorkerEnv:()=>BRe,navigator:()=>Tw,origin:()=>xRe});var ww=typeof window<"u"&&typeof document<"u",Tw=typeof navigator=="object"&&navigator||void 0,bRe=ww&&(!Tw||["ReactNative","NativeScript","NS"].indexOf(Tw.product)<0),BRe=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",xRe=ww&&window.location.href||"http://localhost";var mt={...Sw,...T7};function _w(e,t){return wa(e,new mt.classes.URLSearchParams,Object.assign({visitor:function(r,n,s,i){return mt.isNode&&O.isBuffer(r)?(this.append(n,r.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)}},t))}function vRe(e){return O.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function QRe(e){let t={},r=Object.keys(e),n,s=r.length,i;for(n=0;n=r.length;return o=!o&&O.isArray(s)?s.length:o,c?(O.hasOwnProp(s,o)?s[o]=[s[o],n]:s[o]=n,!a):((!s[o]||!O.isObject(s[o]))&&(s[o]=[]),t(r,n,s[o],i)&&O.isArray(s[o])&&(s[o]=QRe(s[o])),!a)}if(O.isFormData(e)&&O.isFunction(e.entries)){let r={};return O.forEachEntry(e,(n,s)=>{t(vRe(n),s,r,0)}),r}return null}var _E=TRe;function wRe(e,t,r){if(O.isString(e))try{return(t||JSON.parse)(e),O.trim(e)}catch(n){if(n.name!=="SyntaxError")throw n}return(r||JSON.stringify)(e)}var Rw={transitional:Vl,adapter:["xhr","http","fetch"],transformRequest:[function(t,r){let n=r.getContentType()||"",s=n.indexOf("application/json")>-1,i=O.isObject(t);if(i&&O.isHTMLForm(t)&&(t=new FormData(t)),O.isFormData(t))return s?JSON.stringify(_E(t)):t;if(O.isArrayBuffer(t)||O.isBuffer(t)||O.isStream(t)||O.isFile(t)||O.isBlob(t)||O.isReadableStream(t))return t;if(O.isArrayBufferView(t))return t.buffer;if(O.isURLSearchParams(t))return r.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let a;if(i){if(n.indexOf("application/x-www-form-urlencoded")>-1)return _w(t,this.formSerializer).toString();if((a=O.isFileList(t))||n.indexOf("multipart/form-data")>-1){let c=this.env&&this.env.FormData;return wa(a?{"files[]":t}:t,c&&new c,this.formSerializer)}}return i||s?(r.setContentType("application/json",!1),wRe(t)):t}],transformResponse:[function(t){let r=this.transitional||Rw.transitional,n=r&&r.forcedJSONParsing,s=this.responseType==="json";if(O.isResponse(t)||O.isReadableStream(t))return t;if(t&&O.isString(t)&&(n&&!this.responseType||s)){let o=!(r&&r.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(a){if(o)throw a.name==="SyntaxError"?ae.from(a,ae.ERR_BAD_RESPONSE,this,null,this.response):a}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:mt.classes.FormData,Blob:mt.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};O.forEach(["delete","get","head","post","put","patch"],e=>{Rw.headers[e]={}});var Yl=Rw;var SRe=O.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),w7=e=>{let t={},r,n,s;return e&&e.split(` +`).forEach(function(o){s=o.indexOf(":"),r=o.substring(0,s).trim().toLowerCase(),n=o.substring(s+1).trim(),!(!r||t[r]&&SRe[r])&&(r==="set-cookie"?t[r]?t[r].push(n):t[r]=[n]:t[r]=t[r]?t[r]+", "+n:n)}),t};var S7=Symbol("internals");function Ch(e){return e&&String(e).trim().toLowerCase()}function RE(e){return e===!1||e==null?e:O.isArray(e)?e.map(RE):String(e)}function _Re(e){let t=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g,n;for(;n=r.exec(e);)t[n[1]]=n[2];return t}var RRe=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Dw(e,t,r,n,s){if(O.isFunction(n))return n.call(this,t,r);if(s&&(t=r),!!O.isString(t)){if(O.isString(n))return t.indexOf(n)!==-1;if(O.isRegExp(n))return n.test(t)}}function DRe(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,r,n)=>r.toUpperCase()+n)}function NRe(e,t){let r=O.toCamelCase(" "+t);["get","set","has"].forEach(n=>{Object.defineProperty(e,n+r,{value:function(s,i,o){return this[n].call(this,t,s,i,o)},configurable:!0})})}var $l=class{constructor(t){t&&this.set(t)}set(t,r,n){let s=this;function i(a,c,u){let l=Ch(c);if(!l)throw new Error("header name must be a non-empty string");let A=O.findKey(s,l);(!A||s[A]===void 0||u===!0||u===void 0&&s[A]!==!1)&&(s[A||c]=RE(a))}let o=(a,c)=>O.forEach(a,(u,l)=>i(u,l,c));if(O.isPlainObject(t)||t instanceof this.constructor)o(t,r);else if(O.isString(t)&&(t=t.trim())&&!RRe(t))o(w7(t),r);else if(O.isHeaders(t))for(let[a,c]of t.entries())i(c,a,n);else t!=null&&i(r,t,n);return this}get(t,r){if(t=Ch(t),t){let n=O.findKey(this,t);if(n){let s=this[n];if(!r)return s;if(r===!0)return _Re(s);if(O.isFunction(r))return r.call(this,s,n);if(O.isRegExp(r))return r.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,r){if(t=Ch(t),t){let n=O.findKey(this,t);return!!(n&&this[n]!==void 0&&(!r||Dw(this,this[n],n,r)))}return!1}delete(t,r){let n=this,s=!1;function i(o){if(o=Ch(o),o){let a=O.findKey(n,o);a&&(!r||Dw(n,n[a],a,r))&&(delete n[a],s=!0)}}return O.isArray(t)?t.forEach(i):i(t),s}clear(t){let r=Object.keys(this),n=r.length,s=!1;for(;n--;){let i=r[n];(!t||Dw(this,this[i],i,t,!0))&&(delete this[i],s=!0)}return s}normalize(t){let r=this,n={};return O.forEach(this,(s,i)=>{let o=O.findKey(n,i);if(o){r[o]=RE(s),delete r[i];return}let a=t?DRe(i):String(i).trim();a!==i&&delete r[i],r[a]=RE(s),n[a]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){let r=Object.create(null);return O.forEach(this,(n,s)=>{n!=null&&n!==!1&&(r[s]=t&&O.isArray(n)?n.join(", "):n)}),r}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,r])=>t+": "+r).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...r){let n=new this(t);return r.forEach(s=>n.set(s)),n}static accessor(t){let n=(this[S7]=this[S7]={accessors:{}}).accessors,s=this.prototype;function i(o){let a=Ch(o);n[a]||(NRe(s,o),n[a]=!0)}return O.isArray(t)?t.forEach(i):i(t),this}};$l.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);O.reduceDescriptors($l.prototype,({value:e},t)=>{let r=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(n){this[r]=n}}});O.freezeMethods($l);var Pt=$l;function yh(e,t){let r=this||Yl,n=t||r,s=Pt.from(n.headers),i=n.data;return O.forEach(e,function(a){i=a.call(r,i,s.normalize(),t?t.status:void 0)}),s.normalize(),i}function Ih(e){return!!(e&&e.__CANCEL__)}function _7(e,t,r){ae.call(this,e??"canceled",ae.ERR_CANCELED,t,r),this.name="CanceledError"}O.inherits(_7,ae,{__CANCEL__:!0});var Yn=_7;function Fi(e,t,r){let n=r.config.validateStatus;!r.status||!n||n(r.status)?e(r):t(new ae("Request failed with status code "+r.status,[ae.ERR_BAD_REQUEST,ae.ERR_BAD_RESPONSE][Math.floor(r.status/100)-4],r.config,r.request,r))}function Nw(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function kw(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function jc(e,t){return e&&!Nw(t)?kw(e,t):t}var fY=Fe(D7(),1),dY=Fe(require("http"),1),hY=Fe(require("https"),1),pY=Fe(require("util"),1),gY=Fe(z7(),1),vo=Fe(require("zlib"),1);var Xc="1.7.9";function Qh(e){let t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}var CDe=/^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;function zw(e,t,r){let n=r&&r.Blob||mt.classes.Blob,s=Qh(e);if(t===void 0&&n&&(t=!0),s==="data"){e=s.length?e.slice(s.length+1):e;let i=CDe.exec(e);if(!i)throw new ae("Invalid URL",ae.ERR_INVALID_URL);let o=i[1],a=i[2],c=i[3],u=Buffer.from(decodeURIComponent(c),a?"base64":"utf8");if(t){if(!n)throw new ae("Blob is not supported",ae.ERR_NOT_SUPPORT);return new n([u],{type:o})}return u}throw new ae("Unsupported protocol "+s,ae.ERR_NOT_SUPPORT)}var Kc=Fe(require("stream"),1);var X7=Fe(require("stream"),1);var Xw=Symbol("internals"),Kw=class extends X7.default.Transform{constructor(t){t=O.toFlatObject(t,{maxRate:0,chunkSize:64*1024,minChunkSize:100,timeWindow:500,ticksRate:2,samplesCount:15},null,(n,s)=>!O.isUndefined(s[n])),super({readableHighWaterMark:t.chunkSize});let r=this[Xw]={timeWindow:t.timeWindow,chunkSize:t.chunkSize,maxRate:t.maxRate,minChunkSize:t.minChunkSize,bytesSeen:0,isCaptured:!1,notifiedBytesLoaded:0,ts:Date.now(),bytes:0,onReadCallback:null};this.on("newListener",n=>{n==="progress"&&(r.isCaptured||(r.isCaptured=!0))})}_read(t){let r=this[Xw];return r.onReadCallback&&r.onReadCallback(),super._read(t)}_transform(t,r,n){let s=this[Xw],i=s.maxRate,o=this.readableHighWaterMark,a=s.timeWindow,c=1e3/a,u=i/c,l=s.minChunkSize!==!1?Math.max(s.minChunkSize,u*.01):0,A=(d,h)=>{let p=Buffer.byteLength(d);s.bytesSeen+=p,s.bytes+=p,s.isCaptured&&this.emit("progress",s.bytesSeen),this.push(d)?process.nextTick(h):s.onReadCallback=()=>{s.onReadCallback=null,process.nextTick(h)}},f=(d,h)=>{let p=Buffer.byteLength(d),C=null,m=o,I,y=0;if(i){let E=Date.now();(!s.ts||(y=E-s.ts)>=a)&&(s.ts=E,I=u-s.bytes,s.bytes=I<0?-I:0,y=0),I=u-s.bytes}if(i){if(I<=0)return setTimeout(()=>{h(null,d)},a-y);Im&&p-m>l&&(C=d.subarray(m),d=d.subarray(0,m)),A(d,C?()=>{process.nextTick(h,null,C)}:h)};f(t,function d(h,p){if(h)return n(h);p?f(p,d):n(null)})}},Zw=Kw;var mY=require("events");var Z7=Fe(require("util"),1),eY=require("stream");var{asyncIterator:K7}=Symbol,yDe=async function*(e){e.stream?yield*e.stream():e.arrayBuffer?yield await e.arrayBuffer():e[K7]?yield*e[K7]():yield e},LE=yDe;var IDe=O.ALPHABET.ALPHA_DIGIT+"-_",Th=typeof TextEncoder=="function"?new TextEncoder:new Z7.default.TextEncoder,Sa=`\r +`,bDe=Th.encode(Sa),BDe=2,eS=class{constructor(t,r){let{escapeName:n}=this.constructor,s=O.isString(r),i=`Content-Disposition: form-data; name="${n(t)}"${!s&&r.name?`; filename="${n(r.name)}"`:""}${Sa}`;s?r=Th.encode(String(r).replace(/\r?\n|\r\n?/g,Sa)):i+=`Content-Type: ${r.type||"application/octet-stream"}${Sa}`,this.headers=Th.encode(i+Sa),this.contentLength=s?r.byteLength:r.size,this.size=this.headers.byteLength+this.contentLength+BDe,this.name=t,this.value=r}async*encode(){yield this.headers;let{value:t}=this;O.isTypedArray(t)?yield t:yield*LE(t),yield bDe}static escapeName(t){return String(t).replace(/[\r\n"]/g,r=>({"\r":"%0D","\n":"%0A",'"':"%22"})[r])}},xDe=(e,t,r)=>{let{tag:n="form-data-boundary",size:s=25,boundary:i=n+"-"+O.generateString(s,IDe)}=r||{};if(!O.isFormData(e))throw TypeError("FormData instance required");if(i.length<1||i.length>70)throw Error("boundary must be 10-70 characters long");let o=Th.encode("--"+i+Sa),a=Th.encode("--"+i+"--"+Sa+Sa),c=a.byteLength,u=Array.from(e.entries()).map(([A,f])=>{let d=new eS(A,f);return c+=d.size,d});c+=o.byteLength*u.length,c=O.toFiniteNumber(c);let l={"Content-Type":`multipart/form-data; boundary=${i}`};return Number.isFinite(c)&&(l["Content-Length"]=c),t&&t(l),eY.Readable.from(async function*(){for(let A of u)yield o,yield*A.encode();yield a}())},tY=xDe;var rY=Fe(require("stream"),1),tS=class extends rY.default.Transform{__transform(t,r,n){this.push(t),n()}_transform(t,r,n){if(t.length!==0&&(this._transform=this.__transform,t[0]!==120)){let s=Buffer.alloc(2);s[0]=120,s[1]=156,this.push(s,r)}this.__transform(t,r,n)}},nY=tS;var vDe=(e,t)=>O.isAsyncFn(e)?function(...r){let n=r.pop();e.apply(this,r).then(s=>{try{t?n(null,...t(s)):n(null,s)}catch(i){n(i)}},n)}:e,sY=vDe;function QDe(e,t){e=e||10;let r=new Array(e),n=new Array(e),s=0,i=0,o;return t=t!==void 0?t:1e3,function(c){let u=Date.now(),l=n[i];o||(o=u),r[s]=c,n[s]=u;let A=i,f=0;for(;A!==s;)f+=r[A++],A=A%e;if(s=(s+1)%e,s===i&&(i=(i+1)%e),u-o{r=l,s=null,i&&(clearTimeout(i),i=null),e.apply(null,u)};return[(...u)=>{let l=Date.now(),A=l-r;A>=n?o(u,l):(s=u,i||(i=setTimeout(()=>{i=null,o(s)},n-A)))},()=>s&&o(s)]}var oY=TDe;var xo=(e,t,r=3)=>{let n=0,s=iY(50,250);return oY(i=>{let o=i.loaded,a=i.lengthComputable?i.total:void 0,c=o-n,u=s(c),l=o<=a;n=o;let A={loaded:o,total:a,progress:a?o/a:void 0,bytes:c,rate:u||void 0,estimated:u&&a&&l?(a-o)/u:void 0,event:i,lengthComputable:a!=null,[t?"download":"upload"]:!0};e(A)},r)},Xl=(e,t)=>{let r=e!=null;return[n=>t[0]({lengthComputable:r,total:e,loaded:n}),t[1]]},Kl=e=>(...t)=>O.asap(()=>e(...t));var aY={flush:vo.default.constants.Z_SYNC_FLUSH,finishFlush:vo.default.constants.Z_SYNC_FLUSH},wDe={flush:vo.default.constants.BROTLI_OPERATION_FLUSH,finishFlush:vo.default.constants.BROTLI_OPERATION_FLUSH},cY=O.isFunction(vo.default.createBrotliDecompress),{http:SDe,https:_De}=gY.default,RDe=/https:?/,uY=mt.protocols.map(e=>e+":"),lY=(e,[t,r])=>(e.on("end",r).on("error",r),t);function DDe(e,t){e.beforeRedirects.proxy&&e.beforeRedirects.proxy(e),e.beforeRedirects.config&&e.beforeRedirects.config(e,t)}function EY(e,t,r){let n=t;if(!n&&n!==!1){let s=fY.default.getProxyForUrl(r);s&&(n=new URL(s))}if(n){if(n.username&&(n.auth=(n.username||"")+":"+(n.password||"")),n.auth){(n.auth.username||n.auth.password)&&(n.auth=(n.auth.username||"")+":"+(n.auth.password||""));let i=Buffer.from(n.auth,"utf8").toString("base64");e.headers["Proxy-Authorization"]="Basic "+i}e.headers.host=e.hostname+(e.port?":"+e.port:"");let s=n.hostname||n.host;e.hostname=s,e.host=s,e.port=n.port,e.path=r,n.protocol&&(e.protocol=n.protocol.includes(":")?n.protocol:`${n.protocol}:`)}e.beforeRedirects.proxy=function(i){EY(i,t,i.href)}}var NDe=typeof process<"u"&&O.kindOf(process)==="process",kDe=e=>new Promise((t,r)=>{let n,s,i=(c,u)=>{s||(s=!0,n&&n(c,u))},o=c=>{i(c),t(c)},a=c=>{i(c,!0),r(c)};e(o,a,c=>n=c).catch(a)}),FDe=({address:e,family:t})=>{if(!O.isString(e))throw TypeError("address must be a string");return{address:e,family:t||(e.indexOf(".")<0?6:4)}},AY=(e,t)=>FDe(O.isObject(e)?e:{address:e,family:t}),CY=NDe&&function(t){return kDe(async function(n,s,i){let{data:o,lookup:a,family:c}=t,{responseType:u,responseEncoding:l}=t,A=t.method.toUpperCase(),f,d=!1,h;if(a){let U=sY(a,X=>O.isArray(X)?X:[X]);a=(X,L,Y)=>{U(X,L,(G,q,Ge)=>{if(G)return Y(G);let ve=O.isArray(q)?q.map(Ce=>AY(Ce)):[AY(q,Ge)];L.all?Y(G,ve):Y(G,ve[0].address,ve[0].family)})}}let p=new mY.EventEmitter,C=()=>{t.cancelToken&&t.cancelToken.unsubscribe(m),t.signal&&t.signal.removeEventListener("abort",m),p.removeAllListeners()};i((U,X)=>{f=!0,X&&(d=!0,C())});function m(U){p.emit("abort",!U||U.type?new Yn(null,t,h):U)}p.once("abort",s),(t.cancelToken||t.signal)&&(t.cancelToken&&t.cancelToken.subscribe(m),t.signal&&(t.signal.aborted?m():t.signal.addEventListener("abort",m)));let I=jc(t.baseURL,t.url),y=new URL(I,mt.hasBrowserEnv?mt.origin:void 0),E=y.protocol||uY[0];if(E==="data:"){let U;if(A!=="GET")return Fi(n,s,{status:405,statusText:"method not allowed",headers:{},config:t});try{U=zw(t.url,u==="blob",{Blob:t.env&&t.env.Blob})}catch(X){throw ae.from(X,ae.ERR_BAD_REQUEST,t)}return u==="text"?(U=U.toString(l),(!l||l==="utf8")&&(U=O.stripBOM(U))):u==="stream"&&(U=Kc.default.Readable.from(U)),Fi(n,s,{data:U,status:200,statusText:"OK",headers:new Pt,config:t})}if(uY.indexOf(E)===-1)return s(new ae("Unsupported protocol "+E,ae.ERR_BAD_REQUEST,t));let B=Pt.from(t.headers).normalize();B.set("User-Agent","axios/"+Xc,!1);let{onUploadProgress:v,onDownloadProgress:x}=t,Q=t.maxRate,S,T;if(O.isSpecCompliantForm(o)){let U=B.getContentType(/boundary=([-_\w\d]{10,70})/i);o=tY(o,X=>{B.set(X)},{tag:`axios-${Xc}-boundary`,boundary:U&&U[1]||void 0})}else if(O.isFormData(o)&&O.isFunction(o.getHeaders)){if(B.set(o.getHeaders()),!B.hasContentLength())try{let U=await pY.default.promisify(o.getLength).call(o);Number.isFinite(U)&&U>=0&&B.setContentLength(U)}catch{}}else if(O.isBlob(o)||O.isFile(o))o.size&&B.setContentType(o.type||"application/octet-stream"),B.setContentLength(o.size||0),o=Kc.default.Readable.from(LE(o));else if(o&&!O.isStream(o)){if(!Buffer.isBuffer(o))if(O.isArrayBuffer(o))o=Buffer.from(new Uint8Array(o));else if(O.isString(o))o=Buffer.from(o,"utf-8");else return s(new ae("Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream",ae.ERR_BAD_REQUEST,t));if(B.setContentLength(o.length,!1),t.maxBodyLength>-1&&o.length>t.maxBodyLength)return s(new ae("Request body larger than maxBodyLength limit",ae.ERR_BAD_REQUEST,t))}let R=O.toFiniteNumber(B.getContentLength());O.isArray(Q)?(S=Q[0],T=Q[1]):S=T=Q,o&&(v||S)&&(O.isStream(o)||(o=Kc.default.Readable.from(o,{objectMode:!1})),o=Kc.default.pipeline([o,new Zw({maxRate:O.toFiniteNumber(S)})],O.noop),v&&o.on("progress",lY(o,Xl(R,xo(Kl(v),!1,3)))));let D;if(t.auth){let U=t.auth.username||"",X=t.auth.password||"";D=U+":"+X}if(!D&&y.username){let U=y.username,X=y.password;D=U+":"+X}D&&B.delete("authorization");let k;try{k=Gc(y.pathname+y.search,t.params,t.paramsSerializer).replace(/^\?/,"")}catch(U){let X=new Error(U.message);return X.config=t,X.url=t.url,X.exists=!0,s(X)}B.set("Accept-Encoding","gzip, compress, deflate"+(cY?", br":""),!1);let F={path:k,method:A,headers:B.toJSON(),agents:{http:t.httpAgent,https:t.httpsAgent},auth:D,protocol:E,family:c,beforeRedirect:DDe,beforeRedirects:{}};!O.isUndefined(a)&&(F.lookup=a),t.socketPath?F.socketPath=t.socketPath:(F.hostname=y.hostname.startsWith("[")?y.hostname.slice(1,-1):y.hostname,F.port=y.port,EY(F,t.proxy,E+"//"+y.hostname+(y.port?":"+y.port:"")+F.path));let j,H=RDe.test(F.protocol);if(F.agent=H?t.httpsAgent:t.httpAgent,t.transport?j=t.transport:t.maxRedirects===0?j=H?hY.default:dY.default:(t.maxRedirects&&(F.maxRedirects=t.maxRedirects),t.beforeRedirect&&(F.beforeRedirects.config=t.beforeRedirect),j=H?_De:SDe),t.maxBodyLength>-1?F.maxBodyLength=t.maxBodyLength:F.maxBodyLength=1/0,t.insecureHTTPParser&&(F.insecureHTTPParser=t.insecureHTTPParser),h=j.request(F,function(X){if(h.destroyed)return;let L=[X],Y=+X.headers["content-length"];if(x||T){let Ce=new Zw({maxRate:O.toFiniteNumber(T)});x&&Ce.on("progress",lY(Ce,Xl(Y,xo(Kl(x),!0,3)))),L.push(Ce)}let G=X,q=X.req||h;if(t.decompress!==!1&&X.headers["content-encoding"])switch((A==="HEAD"||X.statusCode===204)&&delete X.headers["content-encoding"],(X.headers["content-encoding"]||"").toLowerCase()){case"gzip":case"x-gzip":case"compress":case"x-compress":L.push(vo.default.createUnzip(aY)),delete X.headers["content-encoding"];break;case"deflate":L.push(new nY),L.push(vo.default.createUnzip(aY)),delete X.headers["content-encoding"];break;case"br":cY&&(L.push(vo.default.createBrotliDecompress(wDe)),delete X.headers["content-encoding"])}G=L.length>1?Kc.default.pipeline(L,O.noop):L[0];let Ge=Kc.default.finished(G,()=>{Ge(),C()}),ve={status:X.statusCode,statusText:X.statusMessage,headers:new Pt(X.headers),config:t,request:q};if(u==="stream")ve.data=G,Fi(n,s,ve);else{let Ce=[],ye=0;G.on("data",function(be){Ce.push(be),ye+=be.length,t.maxContentLength>-1&&ye>t.maxContentLength&&(d=!0,G.destroy(),s(new ae("maxContentLength size of "+t.maxContentLength+" exceeded",ae.ERR_BAD_RESPONSE,t,q)))}),G.on("aborted",function(){if(d)return;let be=new ae("stream has been aborted",ae.ERR_BAD_RESPONSE,t,q);G.destroy(be),s(be)}),G.on("error",function(be){h.destroyed||s(ae.from(be,null,t,q))}),G.on("end",function(){try{let be=Ce.length===1?Ce[0]:Buffer.concat(Ce);u!=="arraybuffer"&&(be=be.toString(l),(!l||l==="utf8")&&(be=O.stripBOM(be))),ve.data=be}catch(be){return s(ae.from(be,null,t,ve.request,ve))}Fi(n,s,ve)})}p.once("abort",Ce=>{G.destroyed||(G.emit("error",Ce),G.destroy())})}),p.once("abort",U=>{s(U),h.destroy(U)}),h.on("error",function(X){s(ae.from(X,null,t,h))}),h.on("socket",function(X){X.setKeepAlive(!0,1e3*60)}),t.timeout){let U=parseInt(t.timeout,10);if(Number.isNaN(U)){s(new ae("error trying to parse `config.timeout` to int",ae.ERR_BAD_OPTION_VALUE,t,h));return}h.setTimeout(U,function(){if(f)return;let L=t.timeout?"timeout of "+t.timeout+"ms exceeded":"timeout exceeded",Y=t.transitional||Vl;t.timeoutErrorMessage&&(L=t.timeoutErrorMessage),s(new ae(L,Y.clarifyTimeoutError?ae.ETIMEDOUT:ae.ECONNABORTED,t,h)),m()})}if(O.isStream(o)){let U=!1,X=!1;o.on("end",()=>{U=!0}),o.once("error",L=>{X=!0,h.destroy(L)}),o.on("close",()=>{!U&&!X&&m(new Yn("Request stream has been aborted",t,h))}),o.pipe(h)}else h.end(o)})};var yY=mt.hasStandardBrowserEnv?((e,t)=>r=>(r=new URL(r,mt.origin),e.protocol===r.protocol&&e.host===r.host&&(t||e.port===r.port)))(new URL(mt.origin),mt.navigator&&/(msie|trident)/i.test(mt.navigator.userAgent)):()=>!0;var IY=mt.hasStandardBrowserEnv?{write(e,t,r,n,s,i){let o=[e+"="+encodeURIComponent(t)];O.isNumber(r)&&o.push("expires="+new Date(r).toGMTString()),O.isString(n)&&o.push("path="+n),O.isString(s)&&o.push("domain="+s),i===!0&&o.push("secure"),document.cookie=o.join("; ")},read(e){let t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};var bY=e=>e instanceof Pt?{...e}:e;function ei(e,t){t=t||{};let r={};function n(u,l,A,f){return O.isPlainObject(u)&&O.isPlainObject(l)?O.merge.call({caseless:f},u,l):O.isPlainObject(l)?O.merge({},l):O.isArray(l)?l.slice():l}function s(u,l,A,f){if(O.isUndefined(l)){if(!O.isUndefined(u))return n(void 0,u,A,f)}else return n(u,l,A,f)}function i(u,l){if(!O.isUndefined(l))return n(void 0,l)}function o(u,l){if(O.isUndefined(l)){if(!O.isUndefined(u))return n(void 0,u)}else return n(void 0,l)}function a(u,l,A){if(A in t)return n(u,l);if(A in e)return n(void 0,u)}let c={url:i,method:i,data:i,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:a,headers:(u,l,A)=>s(bY(u),bY(l),A,!0)};return O.forEach(Object.keys(Object.assign({},e,t)),function(l){let A=c[l]||s,f=A(e[l],t[l],l);O.isUndefined(f)&&A!==a||(r[l]=f)}),r}var OE=e=>{let t=ei({},e),{data:r,withXSRFToken:n,xsrfHeaderName:s,xsrfCookieName:i,headers:o,auth:a}=t;t.headers=o=Pt.from(o),t.url=Gc(jc(t.baseURL,t.url),e.params,e.paramsSerializer),a&&o.set("Authorization","Basic "+btoa((a.username||"")+":"+(a.password?unescape(encodeURIComponent(a.password)):"")));let c;if(O.isFormData(r)){if(mt.hasStandardBrowserEnv||mt.hasStandardBrowserWebWorkerEnv)o.setContentType(void 0);else if((c=o.getContentType())!==!1){let[u,...l]=c?c.split(";").map(A=>A.trim()).filter(Boolean):[];o.setContentType([u||"multipart/form-data",...l].join("; "))}}if(mt.hasStandardBrowserEnv&&(n&&O.isFunction(n)&&(n=n(t)),n||n!==!1&&yY(t.url))){let u=s&&i&&IY.read(i);u&&o.set(s,u)}return t};var LDe=typeof XMLHttpRequest<"u",BY=LDe&&function(e){return new Promise(function(r,n){let s=OE(e),i=s.data,o=Pt.from(s.headers).normalize(),{responseType:a,onUploadProgress:c,onDownloadProgress:u}=s,l,A,f,d,h;function p(){d&&d(),h&&h(),s.cancelToken&&s.cancelToken.unsubscribe(l),s.signal&&s.signal.removeEventListener("abort",l)}let C=new XMLHttpRequest;C.open(s.method.toUpperCase(),s.url,!0),C.timeout=s.timeout;function m(){if(!C)return;let y=Pt.from("getAllResponseHeaders"in C&&C.getAllResponseHeaders()),B={data:!a||a==="text"||a==="json"?C.responseText:C.response,status:C.status,statusText:C.statusText,headers:y,config:e,request:C};Fi(function(x){r(x),p()},function(x){n(x),p()},B),C=null}"onloadend"in C?C.onloadend=m:C.onreadystatechange=function(){!C||C.readyState!==4||C.status===0&&!(C.responseURL&&C.responseURL.indexOf("file:")===0)||setTimeout(m)},C.onabort=function(){C&&(n(new ae("Request aborted",ae.ECONNABORTED,e,C)),C=null)},C.onerror=function(){n(new ae("Network Error",ae.ERR_NETWORK,e,C)),C=null},C.ontimeout=function(){let E=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded",B=s.transitional||Vl;s.timeoutErrorMessage&&(E=s.timeoutErrorMessage),n(new ae(E,B.clarifyTimeoutError?ae.ETIMEDOUT:ae.ECONNABORTED,e,C)),C=null},i===void 0&&o.setContentType(null),"setRequestHeader"in C&&O.forEach(o.toJSON(),function(E,B){C.setRequestHeader(B,E)}),O.isUndefined(s.withCredentials)||(C.withCredentials=!!s.withCredentials),a&&a!=="json"&&(C.responseType=s.responseType),u&&([f,h]=xo(u,!0),C.addEventListener("progress",f)),c&&C.upload&&([A,d]=xo(c),C.upload.addEventListener("progress",A),C.upload.addEventListener("loadend",d)),(s.cancelToken||s.signal)&&(l=y=>{C&&(n(!y||y.type?new Yn(null,e,C):y),C.abort(),C=null)},s.cancelToken&&s.cancelToken.subscribe(l),s.signal&&(s.signal.aborted?l():s.signal.addEventListener("abort",l)));let I=Qh(s.url);if(I&&mt.protocols.indexOf(I)===-1){n(new ae("Unsupported protocol "+I+":",ae.ERR_BAD_REQUEST,e));return}C.send(i||null)})};var ODe=(e,t)=>{let{length:r}=e=e?e.filter(Boolean):[];if(t||r){let n=new AbortController,s,i=function(u){if(!s){s=!0,a();let l=u instanceof Error?u:this.reason;n.abort(l instanceof ae?l:new Yn(l instanceof Error?l.message:l))}},o=t&&setTimeout(()=>{o=null,i(new ae(`timeout ${t} of ms exceeded`,ae.ETIMEDOUT))},t),a=()=>{e&&(o&&clearTimeout(o),o=null,e.forEach(u=>{u.unsubscribe?u.unsubscribe(i):u.removeEventListener("abort",i)}),e=null)};e.forEach(u=>u.addEventListener("abort",i));let{signal:c}=n;return c.unsubscribe=()=>O.asap(a),c}},xY=ODe;var MDe=function*(e,t){let r=e.byteLength;if(!t||r{let s=PDe(e,t),i=0,o,a=c=>{o||(o=!0,n&&n(c))};return new ReadableStream({async pull(c){try{let{done:u,value:l}=await s.next();if(u){a(),c.close();return}let A=l.byteLength;if(r){let f=i+=A;r(f)}c.enqueue(new Uint8Array(l))}catch(u){throw a(u),u}},cancel(c){return a(c),s.return()}},{highWaterMark:2})};var PE=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",QY=PE&&typeof ReadableStream=="function",HDe=PE&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),TY=(e,...t)=>{try{return!!e(...t)}catch{return!1}},qDe=QY&&TY(()=>{let e=!1,t=new Request(mt.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),vY=64*1024,nS=QY&&TY(()=>O.isReadableStream(new Response("").body)),ME={stream:nS&&(e=>e.body)};PE&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!ME[t]&&(ME[t]=O.isFunction(e[t])?r=>r[t]():(r,n)=>{throw new ae(`Response type '${t}' is not supported`,ae.ERR_NOT_SUPPORT,n)})})})(new Response);var VDe=async e=>{if(e==null)return 0;if(O.isBlob(e))return e.size;if(O.isSpecCompliantForm(e))return(await new Request(mt.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(O.isArrayBufferView(e)||O.isArrayBuffer(e))return e.byteLength;if(O.isURLSearchParams(e)&&(e=e+""),O.isString(e))return(await HDe(e)).byteLength},YDe=async(e,t)=>{let r=O.toFiniteNumber(e.getContentLength());return r??VDe(t)},wY=PE&&(async e=>{let{url:t,method:r,data:n,signal:s,cancelToken:i,timeout:o,onDownloadProgress:a,onUploadProgress:c,responseType:u,headers:l,withCredentials:A="same-origin",fetchOptions:f}=OE(e);u=u?(u+"").toLowerCase():"text";let d=xY([s,i&&i.toAbortSignal()],o),h,p=d&&d.unsubscribe&&(()=>{d.unsubscribe()}),C;try{if(c&&qDe&&r!=="get"&&r!=="head"&&(C=await YDe(l,n))!==0){let B=new Request(t,{method:"POST",body:n,duplex:"half"}),v;if(O.isFormData(n)&&(v=B.headers.get("content-type"))&&l.setContentType(v),B.body){let[x,Q]=Xl(C,xo(Kl(c)));n=rS(B.body,vY,x,Q)}}O.isString(A)||(A=A?"include":"omit");let m="credentials"in Request.prototype;h=new Request(t,{...f,signal:d,method:r.toUpperCase(),headers:l.normalize().toJSON(),body:n,duplex:"half",credentials:m?A:void 0});let I=await fetch(h),y=nS&&(u==="stream"||u==="response");if(nS&&(a||y&&p)){let B={};["status","statusText","headers"].forEach(S=>{B[S]=I[S]});let v=O.toFiniteNumber(I.headers.get("content-length")),[x,Q]=a&&Xl(v,xo(Kl(a),!0))||[];I=new Response(rS(I.body,vY,x,()=>{Q&&Q(),p&&p()}),B)}u=u||"text";let E=await ME[O.findKey(ME,u)||"text"](I,e);return!y&&p&&p(),await new Promise((B,v)=>{Fi(B,v,{data:E,headers:Pt.from(I.headers),status:I.status,statusText:I.statusText,config:e,request:h})})}catch(m){throw p&&p(),m&&m.name==="TypeError"&&/fetch/i.test(m.message)?Object.assign(new ae("Network Error",ae.ERR_NETWORK,e,h),{cause:m.cause||m}):ae.from(m,m&&m.code,e,h)}});var sS={http:CY,xhr:BY,fetch:wY};O.forEach(sS,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});var SY=e=>`- ${e}`,$De=e=>O.isFunction(e)||e===null||e===!1,UE={getAdapter:e=>{e=O.isArray(e)?e:[e];let{length:t}=e,r,n,s={};for(let i=0;i`adapter ${a} `+(c===!1?"is not supported by the environment":"is not available in the build")),o=t?i.length>1?`since : +`+i.map(SY).join(` +`):" "+SY(i[0]):"as no adapter specified";throw new ae("There is no suitable adapter to dispatch the request "+o,"ERR_NOT_SUPPORT")}return n},adapters:sS};function iS(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Yn(null,e)}function HE(e){return iS(e),e.headers=Pt.from(e.headers),e.data=yh.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),UE.getAdapter(e.adapter||Yl.adapter)(e).then(function(n){return iS(e),n.data=yh.call(e,e.transformResponse,n),n.headers=Pt.from(n.headers),n},function(n){return Ih(n)||(iS(e),n&&n.response&&(n.response.data=yh.call(e,e.transformResponse,n.response),n.response.headers=Pt.from(n.response.headers))),Promise.reject(n)})}var qE={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{qE[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}});var _Y={};qE.transitional=function(t,r,n){function s(i,o){return"[Axios v"+Xc+"] Transitional option '"+i+"'"+o+(n?". "+n:"")}return(i,o,a)=>{if(t===!1)throw new ae(s(o," has been removed"+(r?" in "+r:"")),ae.ERR_DEPRECATED);return r&&!_Y[o]&&(_Y[o]=!0,console.warn(s(o," has been deprecated since v"+r+" and will be removed in the near future"))),t?t(i,o,a):!0}};qE.spelling=function(t){return(r,n)=>(console.warn(`${n} is likely a misspelling of ${t}`),!0)};function GDe(e,t,r){if(typeof e!="object")throw new ae("options must be an object",ae.ERR_BAD_OPTION_VALUE);let n=Object.keys(e),s=n.length;for(;s-- >0;){let i=n[s],o=t[i];if(o){let a=e[i],c=a===void 0||o(a,i,e);if(c!==!0)throw new ae("option "+i+" must be "+c,ae.ERR_BAD_OPTION_VALUE);continue}if(r!==!0)throw new ae("Unknown option "+i,ae.ERR_BAD_OPTION)}}var wh={assertOptions:GDe,validators:qE};var Li=wh.validators,Zl=class{constructor(t){this.defaults=t,this.interceptors={request:new Qw,response:new Qw}}async request(t,r){try{return await this._request(t,r)}catch(n){if(n instanceof Error){let s={};Error.captureStackTrace?Error.captureStackTrace(s):s=new Error;let i=s.stack?s.stack.replace(/^.+\n/,""):"";try{n.stack?i&&!String(n.stack).endsWith(i.replace(/^.+\n.+\n/,""))&&(n.stack+=` +`+i):n.stack=i}catch{}}throw n}}_request(t,r){typeof t=="string"?(r=r||{},r.url=t):r=t||{},r=ei(this.defaults,r);let{transitional:n,paramsSerializer:s,headers:i}=r;n!==void 0&&wh.assertOptions(n,{silentJSONParsing:Li.transitional(Li.boolean),forcedJSONParsing:Li.transitional(Li.boolean),clarifyTimeoutError:Li.transitional(Li.boolean)},!1),s!=null&&(O.isFunction(s)?r.paramsSerializer={serialize:s}:wh.assertOptions(s,{encode:Li.function,serialize:Li.function},!0)),wh.assertOptions(r,{baseUrl:Li.spelling("baseURL"),withXsrfToken:Li.spelling("withXSRFToken")},!0),r.method=(r.method||this.defaults.method||"get").toLowerCase();let o=i&&O.merge(i.common,i[r.method]);i&&O.forEach(["delete","get","head","post","put","patch","common"],h=>{delete i[h]}),r.headers=Pt.concat(o,i);let a=[],c=!0;this.interceptors.request.forEach(function(p){typeof p.runWhen=="function"&&p.runWhen(r)===!1||(c=c&&p.synchronous,a.unshift(p.fulfilled,p.rejected))});let u=[];this.interceptors.response.forEach(function(p){u.push(p.fulfilled,p.rejected)});let l,A=0,f;if(!c){let h=[HE.bind(this),void 0];for(h.unshift.apply(h,a),h.push.apply(h,u),f=h.length,l=Promise.resolve(r);A{if(!n._listeners)return;let i=n._listeners.length;for(;i-- >0;)n._listeners[i](s);n._listeners=null}),this.promise.then=s=>{let i,o=new Promise(a=>{n.subscribe(a),i=a}).then(s);return o.cancel=function(){n.unsubscribe(i)},o},t(function(i,o,a){n.reason||(n.reason=new Yn(i,o,a),r(n.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;let r=this._listeners.indexOf(t);r!==-1&&this._listeners.splice(r,1)}toAbortSignal(){let t=new AbortController,r=n=>{t.abort(n)};return this.subscribe(r),t.signal.unsubscribe=()=>this.unsubscribe(r),t.signal}static source(){let t;return{token:new e(function(s){t=s}),cancel:t}}},RY=oS;function aS(e){return function(r){return e.apply(null,r)}}function cS(e){return O.isObject(e)&&e.isAxiosError===!0}var uS={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(uS).forEach(([e,t])=>{uS[t]=e});var DY=uS;function NY(e){let t=new Sh(e),r=gh(Sh.prototype.request,t);return O.extend(r,Sh.prototype,t,{allOwnKeys:!0}),O.extend(r,t,null,{allOwnKeys:!0}),r.create=function(s){return NY(ei(e,s))},r}var ar=NY(Yl);ar.Axios=Sh;ar.CanceledError=Yn;ar.CancelToken=RY;ar.isCancel=Ih;ar.VERSION=Xc;ar.toFormData=wa;ar.AxiosError=ae;ar.Cancel=ar.CanceledError;ar.all=function(t){return Promise.all(t)};ar.spread=aS;ar.isAxiosError=cS;ar.mergeConfig=ei;ar.AxiosHeaders=Pt;ar.formToJSON=e=>_E(O.isHTMLForm(e)?new FormData(e):e);ar.getAdapter=UE.getAdapter;ar.HttpStatusCode=DY;ar.default=ar;var eA=ar;var{Axios:Cit,AxiosError:yit,CanceledError:Iit,isCancel:bit,CancelToken:Bit,VERSION:xit,all:vit,Cancel:Qit,isAxiosError:Tit,spread:wit,toFormData:Sit,AxiosHeaders:_it,HttpStatusCode:Rit,formToJSON:Dit,getAdapter:Nit,mergeConfig:kit}=eA;var kY=Fe(require("https"),1),FY=Fe(require("http"),1),jDe=eA.create({httpsAgent:new kY.default.Agent({keepAlive:!0,rejectUnauthorized:!1}),httpAgent:new FY.default.Agent({keepAlive:!0})}),kr=jDe;var fS=Fe(Rh(),1),JDe="-https://github.com/alist-org/alist",tA=async function(e,t={}){t.method=="POST"&&t.data&&(t.body=JSON.stringify(t.data),t.headers=Object.assign({"content-type":"application/json"},t.headers));let r=await kr(e,t);return r.json=()=>r.data?r.data:null,r.text=()=>r.content,r};["get","post"].forEach(e=>{tA[e]=function(t,r={}){return tA(t,Object.assign(r,{method:e.toUpperCase()}))}});var Nh={},Dh={};async function dS(e){let t=e.indexOf("/",1),r=e.substring(1,t),n=e.substring(t);return{drives:await WDe(r),path:n}}async function WDe(e){let{settings:t,api:r,server:n}=Nh[e];if(t.v3==null){t.v3=!1;let s=(await tA.get(n+"/api/public/settings")).json().data;Array.isArray(s)?(t.title=s.find(i=>i.key=="title")?.value,t.v3=!1,t.version=s.find(i=>i.key=="version")?.value,t.enableSearch=s.find(i=>i.key=="enable search")?.value=="true"):(t.title=s.title,t.v3=!0,t.version=s.version,t.enableSearch=!1),r.login=(t.v3,"/api/auth/login/hash"),r.path=t.v3?"/api/fs/list":"/api/public/path",r.file=t.v3?"/api/fs/get":"/api/public/path",r.search=(t.v3,"/api/public/search"),r.other=t.v3?"/api/fs/other":null}return Nh[e]}async function zDe(e,t){return e.server.config.alist.forEach(r=>Nh[r.name]={name:r.name,server:r.server.endsWith("/")?r.server.substring(0,r.server.length-1):r.server,startPage:r.startPage||"/",showAll:r.showAll===!0,sort:r.sort===!0,login:r.login||{},params:r.params||{},_path_param:r.params?Object.keys(r.params).sort(function(n,s){return s.length-n.length}):[],settings:{},api:{},getLogin(){return{username:this.login.username,password:fS.default.SHA256(this.login.password+JDe).toString(fS.default.enc.Hex),otp_code:this.login.otp_code}},getParams(n){let s=this._path_param.find(i=>n.startsWith(i));return Object.assign({},this.params[s],{path:n})},async getHeaders(){return this.login.username&&this.login.username.toLowerCase()!=="guest"?{Authorization:(await tA.post(this.server+this.api.login,{data:this.getLogin()})).json().data.token}:{}},async getRes(n,s){return(await tA.post(this.server+n,{data:this.getParams(s),headers:Object.keys(this.login).length?await this.getHeaders():{}})).json()},async getPath(n){let s=await this.getRes(this.api.path,n);return this.settings.v3?s.data.content:s.data.files},async getFile(n){let s=await this.getRes(this.api.file,n),i=this.settings.v3?s.data:s.data.files[0];return this.settings.v3||(i.raw_url=i.url),i},async getOther(n,s){let i=this.getParams(s);return i.method=n,await this.getRes(this.api.other,s)},isFolder(n){return n.type==1},isVideo(n){return this.settings.v3?n.type==2:n.type==3},isSubtitle(n){return n.type==1?!1:[".srt",".ass",".scc",".stl",".ttml"].some(i=>n.name.endsWith(i))},getType(n){let s=this.isVideo(n);return this.isFolder(n)?0:s?10:1},getPic(n){return(this.settings.v3?n.thumb:n.thumbnail)||(this.isFolder(n)?"http://img1.3png.com/281e284a670865a71d91515866552b5f172b.png":"")},getSize(n){let s=n.size||0;if(s<=0)return"";let i="";return s>1024*1024*1024*1024?(s/=1024*1024*1024*1024,i="TB"):s>1024*1024*1024?(s/=1024*1024*1024,i="GB"):s>1024*1024?(s/=1024*1024,i="MB"):(s/=1024,i="KB"),s.toFixed(2)+i},getRemark(n){return""}}),{}}async function XDe(e,t){let r=e.body.path,n=e.body.page||1;for(let A in Dh)delete Dh[A];if(n=n||1,n==0&&n==1,r==="/"||r===""){let A=Object.keys(Nh).map(function(f){let d=Nh[f];return{name:d.name,path:"/"+d.name+d.startPage,type:0,thumb:""}});return{parent:"",page:n,pagecount:n,list:A}}let{drives:s,path:i}=await dS(r),o=r.endsWith("/")?r:r+"/",a=await s.getPath(i),c=[],u=[],l=[];return s.sort&&a.sort((A,f)=>{let d=parseInt(A.name.match(/^\d+/)||0),h=parseInt(f.name.match(/^\d+/)||0);return d&&h?d-h:d?-1:h?1:A.name.toLowerCase().localeCompare(f.name.toLowerCase())}),a.forEach(A=>{s.isSubtitle(A)&&c.push(A.name);let f=s.isVideo(A);if(!s.showAll&&!s.isFolder(A)&&!f)return;let d={name:A.name.replaceAll("$","_").replaceAll("#","_"),path:o+A.name+(s.isFolder(A)?"/":""),thumb:s.getPic(A),type:s.getType(A),size:s.getSize(A),remark:s.getRemark(A)};s.isVideo(A)&&u.push(d),l.push(d)}),c.length>0&&u.forEach(A=>{var f=findBestLCS(A.name,c);f.bestMatch&&(Dh[A.path]=[o+f.bestMatch.target])}),{parent:o,page:n,pagecount:n,list:l}}async function KDe(e,t){let r=e.body.path,{drives:n,path:s}=await dS(r),i=await n.getFile(s),o=[];if(Dh[r])for(let a of Dh[r])try{let c=await dS(a),u=await n.getFile(c.path);o.push(u.raw_url)}catch{}if((i.provider==="AliyundriveShare2Open"||i.provider=="AliyundriveOpen")&&n.api.other){let a=["\u539F\u753B",i.raw_url];try{let u=await n.getOther("video_preview",s);for(let l of u.data.video_preview_play_info.live_transcoding_task_list)l.status==="finished"&&(a.push(l.template_id),a.push(l.url))}catch{}return{name:i.name,url:a,size:n.getSize(i),remark:n.getRemark(i),header:{},extra:{subt:o}}}else if(i.provider==="123Pan"){let a=i.raw_url;try{a=(await tA.get(a)).json().data.redirect_url}catch{}return{name:i.name,url:a,size:n.getSize(i),remark:n.getRemark(i),header:{},extra:{subt:o}}}else return{name:i.name,url:i.raw_url,size:n.getSize(i),remark:n.getRemark(i),header:{},extra:{subt:o}}}async function ZDe(e,t){try{let r=function(o){o.statusCode&&o.statusCode==500&&console.error(o)},n=e.server.prefix,s={},i=await e.server.inject().post(`${n}/init`);return s.init=i.json(),r(i.json()),i=await e.server.inject().post(`${n}/dir`).payload({path:"/",page:1}),s.dir=i.json(),r(i.json()),i=await e.server.inject().post(`${n}/file`).payload({path:"/\u77ED\u5267/\u8FDF\u5230\u7684\u6B63\u4E49\uFF0839\u96C6\uFF09/23.mp4"}),s.file=i.json(),r(i.json()),s}catch(r){return console.error(r),t.code(500),{err:r.message,tip:"check debug console output"}}}var V$={meta:{key:"alist",name:"Alist",type:40},api:async e=>{e.post("/init",zDe),e.post("/dir",XDe),e.post("/file",KDe),e.get("/test",ZDe)}};var TC="Mozilla/5.0 (Linux; Android 11; M2007J3SC Build/RKQ1.200826.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045714 Mobile Safari/537.36",Y$="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36";var eNe={_useHtmlParser2:!1};function rA(e,t){if(!e)return t??eNe;let r={_useHtmlParser2:!!e.xmlMode,...t,...e};return e.xml?(r._useHtmlParser2=!0,r.xmlMode=!0,e.xml!==!0&&Object.assign(r,e.xml)):e.xmlMode&&(r._useHtmlParser2=!0),r}var QS={};Us(QS,{contains:()=>UC,extract:()=>JNe,html:()=>YNe,merge:()=>bG,parseHTML:()=>GNe,root:()=>jNe,text:()=>su,xml:()=>$Ne});var La={};Us(La,{DocumentPosition:()=>Is,append:()=>QNe,appendChild:()=>vNe,compareDocumentPosition:()=>EG,existsOne:()=>gG,filter:()=>AA,find:()=>LC,findAll:()=>_Ne,findOne:()=>OC,findOneChild:()=>SNe,getAttributeValue:()=>INe,getChildren:()=>lA,getElementById:()=>kNe,getElements:()=>NNe,getElementsByClassName:()=>FNe,getElementsByTagName:()=>nu,getElementsByTagType:()=>LNe,getFeed:()=>vS,getInnerHTML:()=>yNe,getName:()=>BNe,getOuterHTML:()=>hG,getParent:()=>pG,getSiblings:()=>BS,getText:()=>NC,hasAttrib:()=>bNe,hasChildren:()=>yt,innerText:()=>Mh,isCDATA:()=>nA,isComment:()=>ru,isDocument:()=>ys,isTag:()=>Ae,isText:()=>Tn,nextElementSibling:()=>kC,prepend:()=>wNe,prependChild:()=>TNe,prevElementSibling:()=>FC,removeElement:()=>wo,removeSubsets:()=>ONe,replaceElement:()=>xNe,testElement:()=>DNe,textContent:()=>To,uniqueSort:()=>ka});var st;(function(e){e.Root="root",e.Text="text",e.Directive="directive",e.Comment="comment",e.Script="script",e.Style="style",e.Tag="tag",e.CDATA="cdata",e.Doctype="doctype"})(st||(st={}));function $$(e){return e.type===st.Tag||e.type===st.Script||e.type===st.Style}var G$=st.Root,j$=st.Text,J$=st.Directive,W$=st.Comment,z$=st.Script,X$=st.Style,K$=st.Tag,Z$=st.CDATA,eG=st.Doctype;var wC=class{constructor(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}get parentNode(){return this.parent}set parentNode(t){this.parent=t}get previousSibling(){return this.prev}set previousSibling(t){this.prev=t}get nextSibling(){return this.next}set nextSibling(t){this.next=t}cloneNode(t=!1){return sA(this,t)}},kh=class extends wC{constructor(t){super(),this.data=t}get nodeValue(){return this.data}set nodeValue(t){this.data=t}},Oi=class extends kh{constructor(){super(...arguments),this.type=st.Text}get nodeType(){return 3}},Zc=class extends kh{constructor(){super(...arguments),this.type=st.Comment}get nodeType(){return 8}},eu=class extends kh{constructor(t,r){super(r),this.name=t,this.type=st.Directive}get nodeType(){return 1}},Fh=class extends wC{constructor(t){super(),this.children=t}get firstChild(){var t;return(t=this.children[0])!==null&&t!==void 0?t:null}get lastChild(){return this.children.length>0?this.children[this.children.length-1]:null}get childNodes(){return this.children}set childNodes(t){this.children=t}},Lh=class extends Fh{constructor(){super(...arguments),this.type=st.CDATA}get nodeType(){return 4}},Gn=class extends Fh{constructor(){super(...arguments),this.type=st.Root}get nodeType(){return 9}},tu=class extends Fh{constructor(t,r,n=[],s=t==="script"?st.Script:t==="style"?st.Style:st.Tag){super(n),this.name=t,this.attribs=r,this.type=s}get nodeType(){return 1}get tagName(){return this.name}set tagName(t){this.name=t}get attributes(){return Object.keys(this.attribs).map(t=>{var r,n;return{name:t,value:this.attribs[t],namespace:(r=this["x-attribsNamespace"])===null||r===void 0?void 0:r[t],prefix:(n=this["x-attribsPrefix"])===null||n===void 0?void 0:n[t]}})}};function Ae(e){return $$(e)}function nA(e){return e.type===st.CDATA}function Tn(e){return e.type===st.Text}function ru(e){return e.type===st.Comment}function SC(e){return e.type===st.Directive}function ys(e){return e.type===st.Root}function yt(e){return Object.prototype.hasOwnProperty.call(e,"children")}function sA(e,t=!1){let r;if(Tn(e))r=new Oi(e.data);else if(ru(e))r=new Zc(e.data);else if(Ae(e)){let n=t?hS(e.children):[],s=new tu(e.name,{...e.attribs},n);n.forEach(i=>i.parent=s),e.namespace!=null&&(s.namespace=e.namespace),e["x-attribsNamespace"]&&(s["x-attribsNamespace"]={...e["x-attribsNamespace"]}),e["x-attribsPrefix"]&&(s["x-attribsPrefix"]={...e["x-attribsPrefix"]}),r=s}else if(nA(e)){let n=t?hS(e.children):[],s=new Lh(n);n.forEach(i=>i.parent=s),r=s}else if(ys(e)){let n=t?hS(e.children):[],s=new Gn(n);n.forEach(i=>i.parent=s),e["x-mode"]&&(s["x-mode"]=e["x-mode"]),r=s}else if(SC(e)){let n=new eu(e.name,e.data);e["x-name"]!=null&&(n["x-name"]=e["x-name"],n["x-publicId"]=e["x-publicId"],n["x-systemId"]=e["x-systemId"]),r=n}else throw new Error(`Not implemented yet: ${e.type}`);return r.startIndex=e.startIndex,r.endIndex=e.endIndex,e.sourceCodeLocation!=null&&(r.sourceCodeLocation=e.sourceCodeLocation),r}function hS(e){let t=e.map(r=>sA(r,!0));for(let r=1;r\u403Emma\u0100;d\u05F7\u05F8\u4393;\u43DCreve;\u411E\u0180eiy\u0607\u060C\u0610dil;\u4122rc;\u411C;\u4413ot;\u4120r;\uC000\u{1D50A};\u62D9pf;\uC000\u{1D53E}eater\u0300EFGLST\u0635\u0644\u064E\u0656\u065B\u0666qual\u0100;L\u063E\u063F\u6265ess;\u62DBullEqual;\u6267reater;\u6AA2ess;\u6277lantEqual;\u6A7Eilde;\u6273cr;\uC000\u{1D4A2};\u626B\u0400Aacfiosu\u0685\u068B\u0696\u069B\u069E\u06AA\u06BE\u06CARDcy;\u442A\u0100ct\u0690\u0694ek;\u42C7;\u405Eirc;\u4124r;\u610ClbertSpace;\u610B\u01F0\u06AF\0\u06B2f;\u610DizontalLine;\u6500\u0100ct\u06C3\u06C5\xF2\u06A9rok;\u4126mp\u0144\u06D0\u06D8ownHum\xF0\u012Fqual;\u624F\u0700EJOacdfgmnostu\u06FA\u06FE\u0703\u0707\u070E\u071A\u071E\u0721\u0728\u0744\u0778\u078B\u078F\u0795cy;\u4415lig;\u4132cy;\u4401cute\u803B\xCD\u40CD\u0100iy\u0713\u0718rc\u803B\xCE\u40CE;\u4418ot;\u4130r;\u6111rave\u803B\xCC\u40CC\u0180;ap\u0720\u072F\u073F\u0100cg\u0734\u0737r;\u412AinaryI;\u6148lie\xF3\u03DD\u01F4\u0749\0\u0762\u0100;e\u074D\u074E\u622C\u0100gr\u0753\u0758ral;\u622Bsection;\u62C2isible\u0100CT\u076C\u0772omma;\u6063imes;\u6062\u0180gpt\u077F\u0783\u0788on;\u412Ef;\uC000\u{1D540}a;\u4399cr;\u6110ilde;\u4128\u01EB\u079A\0\u079Ecy;\u4406l\u803B\xCF\u40CF\u0280cfosu\u07AC\u07B7\u07BC\u07C2\u07D0\u0100iy\u07B1\u07B5rc;\u4134;\u4419r;\uC000\u{1D50D}pf;\uC000\u{1D541}\u01E3\u07C7\0\u07CCr;\uC000\u{1D4A5}rcy;\u4408kcy;\u4404\u0380HJacfos\u07E4\u07E8\u07EC\u07F1\u07FD\u0802\u0808cy;\u4425cy;\u440Cppa;\u439A\u0100ey\u07F6\u07FBdil;\u4136;\u441Ar;\uC000\u{1D50E}pf;\uC000\u{1D542}cr;\uC000\u{1D4A6}\u0580JTaceflmost\u0825\u0829\u082C\u0850\u0863\u09B3\u09B8\u09C7\u09CD\u0A37\u0A47cy;\u4409\u803B<\u403C\u0280cmnpr\u0837\u083C\u0841\u0844\u084Dute;\u4139bda;\u439Bg;\u67EAlacetrf;\u6112r;\u619E\u0180aey\u0857\u085C\u0861ron;\u413Ddil;\u413B;\u441B\u0100fs\u0868\u0970t\u0500ACDFRTUVar\u087E\u08A9\u08B1\u08E0\u08E6\u08FC\u092F\u095B\u0390\u096A\u0100nr\u0883\u088FgleBracket;\u67E8row\u0180;BR\u0899\u089A\u089E\u6190ar;\u61E4ightArrow;\u61C6eiling;\u6308o\u01F5\u08B7\0\u08C3bleBracket;\u67E6n\u01D4\u08C8\0\u08D2eeVector;\u6961ector\u0100;B\u08DB\u08DC\u61C3ar;\u6959loor;\u630Aight\u0100AV\u08EF\u08F5rrow;\u6194ector;\u694E\u0100er\u0901\u0917e\u0180;AV\u0909\u090A\u0910\u62A3rrow;\u61A4ector;\u695Aiangle\u0180;BE\u0924\u0925\u0929\u62B2ar;\u69CFqual;\u62B4p\u0180DTV\u0937\u0942\u094CownVector;\u6951eeVector;\u6960ector\u0100;B\u0956\u0957\u61BFar;\u6958ector\u0100;B\u0965\u0966\u61BCar;\u6952ight\xE1\u039Cs\u0300EFGLST\u097E\u098B\u0995\u099D\u09A2\u09ADqualGreater;\u62DAullEqual;\u6266reater;\u6276ess;\u6AA1lantEqual;\u6A7Dilde;\u6272r;\uC000\u{1D50F}\u0100;e\u09BD\u09BE\u62D8ftarrow;\u61DAidot;\u413F\u0180npw\u09D4\u0A16\u0A1Bg\u0200LRlr\u09DE\u09F7\u0A02\u0A10eft\u0100AR\u09E6\u09ECrrow;\u67F5ightArrow;\u67F7ightArrow;\u67F6eft\u0100ar\u03B3\u0A0Aight\xE1\u03BFight\xE1\u03CAf;\uC000\u{1D543}er\u0100LR\u0A22\u0A2CeftArrow;\u6199ightArrow;\u6198\u0180cht\u0A3E\u0A40\u0A42\xF2\u084C;\u61B0rok;\u4141;\u626A\u0400acefiosu\u0A5A\u0A5D\u0A60\u0A77\u0A7C\u0A85\u0A8B\u0A8Ep;\u6905y;\u441C\u0100dl\u0A65\u0A6FiumSpace;\u605Flintrf;\u6133r;\uC000\u{1D510}nusPlus;\u6213pf;\uC000\u{1D544}c\xF2\u0A76;\u439C\u0480Jacefostu\u0AA3\u0AA7\u0AAD\u0AC0\u0B14\u0B19\u0D91\u0D97\u0D9Ecy;\u440Acute;\u4143\u0180aey\u0AB4\u0AB9\u0ABEron;\u4147dil;\u4145;\u441D\u0180gsw\u0AC7\u0AF0\u0B0Eative\u0180MTV\u0AD3\u0ADF\u0AE8ediumSpace;\u600Bhi\u0100cn\u0AE6\u0AD8\xEB\u0AD9eryThi\xEE\u0AD9ted\u0100GL\u0AF8\u0B06reaterGreate\xF2\u0673essLes\xF3\u0A48Line;\u400Ar;\uC000\u{1D511}\u0200Bnpt\u0B22\u0B28\u0B37\u0B3Areak;\u6060BreakingSpace;\u40A0f;\u6115\u0680;CDEGHLNPRSTV\u0B55\u0B56\u0B6A\u0B7C\u0BA1\u0BEB\u0C04\u0C5E\u0C84\u0CA6\u0CD8\u0D61\u0D85\u6AEC\u0100ou\u0B5B\u0B64ngruent;\u6262pCap;\u626DoubleVerticalBar;\u6226\u0180lqx\u0B83\u0B8A\u0B9Bement;\u6209ual\u0100;T\u0B92\u0B93\u6260ilde;\uC000\u2242\u0338ists;\u6204reater\u0380;EFGLST\u0BB6\u0BB7\u0BBD\u0BC9\u0BD3\u0BD8\u0BE5\u626Fqual;\u6271ullEqual;\uC000\u2267\u0338reater;\uC000\u226B\u0338ess;\u6279lantEqual;\uC000\u2A7E\u0338ilde;\u6275ump\u0144\u0BF2\u0BFDownHump;\uC000\u224E\u0338qual;\uC000\u224F\u0338e\u0100fs\u0C0A\u0C27tTriangle\u0180;BE\u0C1A\u0C1B\u0C21\u62EAar;\uC000\u29CF\u0338qual;\u62ECs\u0300;EGLST\u0C35\u0C36\u0C3C\u0C44\u0C4B\u0C58\u626Equal;\u6270reater;\u6278ess;\uC000\u226A\u0338lantEqual;\uC000\u2A7D\u0338ilde;\u6274ested\u0100GL\u0C68\u0C79reaterGreater;\uC000\u2AA2\u0338essLess;\uC000\u2AA1\u0338recedes\u0180;ES\u0C92\u0C93\u0C9B\u6280qual;\uC000\u2AAF\u0338lantEqual;\u62E0\u0100ei\u0CAB\u0CB9verseElement;\u620CghtTriangle\u0180;BE\u0CCB\u0CCC\u0CD2\u62EBar;\uC000\u29D0\u0338qual;\u62ED\u0100qu\u0CDD\u0D0CuareSu\u0100bp\u0CE8\u0CF9set\u0100;E\u0CF0\u0CF3\uC000\u228F\u0338qual;\u62E2erset\u0100;E\u0D03\u0D06\uC000\u2290\u0338qual;\u62E3\u0180bcp\u0D13\u0D24\u0D4Eset\u0100;E\u0D1B\u0D1E\uC000\u2282\u20D2qual;\u6288ceeds\u0200;EST\u0D32\u0D33\u0D3B\u0D46\u6281qual;\uC000\u2AB0\u0338lantEqual;\u62E1ilde;\uC000\u227F\u0338erset\u0100;E\u0D58\u0D5B\uC000\u2283\u20D2qual;\u6289ilde\u0200;EFT\u0D6E\u0D6F\u0D75\u0D7F\u6241qual;\u6244ullEqual;\u6247ilde;\u6249erticalBar;\u6224cr;\uC000\u{1D4A9}ilde\u803B\xD1\u40D1;\u439D\u0700Eacdfgmoprstuv\u0DBD\u0DC2\u0DC9\u0DD5\u0DDB\u0DE0\u0DE7\u0DFC\u0E02\u0E20\u0E22\u0E32\u0E3F\u0E44lig;\u4152cute\u803B\xD3\u40D3\u0100iy\u0DCE\u0DD3rc\u803B\xD4\u40D4;\u441Eblac;\u4150r;\uC000\u{1D512}rave\u803B\xD2\u40D2\u0180aei\u0DEE\u0DF2\u0DF6cr;\u414Cga;\u43A9cron;\u439Fpf;\uC000\u{1D546}enCurly\u0100DQ\u0E0E\u0E1AoubleQuote;\u601Cuote;\u6018;\u6A54\u0100cl\u0E27\u0E2Cr;\uC000\u{1D4AA}ash\u803B\xD8\u40D8i\u016C\u0E37\u0E3Cde\u803B\xD5\u40D5es;\u6A37ml\u803B\xD6\u40D6er\u0100BP\u0E4B\u0E60\u0100ar\u0E50\u0E53r;\u603Eac\u0100ek\u0E5A\u0E5C;\u63DEet;\u63B4arenthesis;\u63DC\u0480acfhilors\u0E7F\u0E87\u0E8A\u0E8F\u0E92\u0E94\u0E9D\u0EB0\u0EFCrtialD;\u6202y;\u441Fr;\uC000\u{1D513}i;\u43A6;\u43A0usMinus;\u40B1\u0100ip\u0EA2\u0EADncareplan\xE5\u069Df;\u6119\u0200;eio\u0EB9\u0EBA\u0EE0\u0EE4\u6ABBcedes\u0200;EST\u0EC8\u0EC9\u0ECF\u0EDA\u627Aqual;\u6AAFlantEqual;\u627Cilde;\u627Eme;\u6033\u0100dp\u0EE9\u0EEEuct;\u620Fortion\u0100;a\u0225\u0EF9l;\u621D\u0100ci\u0F01\u0F06r;\uC000\u{1D4AB};\u43A8\u0200Ufos\u0F11\u0F16\u0F1B\u0F1FOT\u803B"\u4022r;\uC000\u{1D514}pf;\u611Acr;\uC000\u{1D4AC}\u0600BEacefhiorsu\u0F3E\u0F43\u0F47\u0F60\u0F73\u0FA7\u0FAA\u0FAD\u1096\u10A9\u10B4\u10BEarr;\u6910G\u803B\xAE\u40AE\u0180cnr\u0F4E\u0F53\u0F56ute;\u4154g;\u67EBr\u0100;t\u0F5C\u0F5D\u61A0l;\u6916\u0180aey\u0F67\u0F6C\u0F71ron;\u4158dil;\u4156;\u4420\u0100;v\u0F78\u0F79\u611Cerse\u0100EU\u0F82\u0F99\u0100lq\u0F87\u0F8Eement;\u620Builibrium;\u61CBpEquilibrium;\u696Fr\xBB\u0F79o;\u43A1ght\u0400ACDFTUVa\u0FC1\u0FEB\u0FF3\u1022\u1028\u105B\u1087\u03D8\u0100nr\u0FC6\u0FD2gleBracket;\u67E9row\u0180;BL\u0FDC\u0FDD\u0FE1\u6192ar;\u61E5eftArrow;\u61C4eiling;\u6309o\u01F5\u0FF9\0\u1005bleBracket;\u67E7n\u01D4\u100A\0\u1014eeVector;\u695Dector\u0100;B\u101D\u101E\u61C2ar;\u6955loor;\u630B\u0100er\u102D\u1043e\u0180;AV\u1035\u1036\u103C\u62A2rrow;\u61A6ector;\u695Biangle\u0180;BE\u1050\u1051\u1055\u62B3ar;\u69D0qual;\u62B5p\u0180DTV\u1063\u106E\u1078ownVector;\u694FeeVector;\u695Cector\u0100;B\u1082\u1083\u61BEar;\u6954ector\u0100;B\u1091\u1092\u61C0ar;\u6953\u0100pu\u109B\u109Ef;\u611DndImplies;\u6970ightarrow;\u61DB\u0100ch\u10B9\u10BCr;\u611B;\u61B1leDelayed;\u69F4\u0680HOacfhimoqstu\u10E4\u10F1\u10F7\u10FD\u1119\u111E\u1151\u1156\u1161\u1167\u11B5\u11BB\u11BF\u0100Cc\u10E9\u10EEHcy;\u4429y;\u4428FTcy;\u442Ccute;\u415A\u0280;aeiy\u1108\u1109\u110E\u1113\u1117\u6ABCron;\u4160dil;\u415Erc;\u415C;\u4421r;\uC000\u{1D516}ort\u0200DLRU\u112A\u1134\u113E\u1149ownArrow\xBB\u041EeftArrow\xBB\u089AightArrow\xBB\u0FDDpArrow;\u6191gma;\u43A3allCircle;\u6218pf;\uC000\u{1D54A}\u0272\u116D\0\0\u1170t;\u621Aare\u0200;ISU\u117B\u117C\u1189\u11AF\u65A1ntersection;\u6293u\u0100bp\u118F\u119Eset\u0100;E\u1197\u1198\u628Fqual;\u6291erset\u0100;E\u11A8\u11A9\u6290qual;\u6292nion;\u6294cr;\uC000\u{1D4AE}ar;\u62C6\u0200bcmp\u11C8\u11DB\u1209\u120B\u0100;s\u11CD\u11CE\u62D0et\u0100;E\u11CD\u11D5qual;\u6286\u0100ch\u11E0\u1205eeds\u0200;EST\u11ED\u11EE\u11F4\u11FF\u627Bqual;\u6AB0lantEqual;\u627Dilde;\u627FTh\xE1\u0F8C;\u6211\u0180;es\u1212\u1213\u1223\u62D1rset\u0100;E\u121C\u121D\u6283qual;\u6287et\xBB\u1213\u0580HRSacfhiors\u123E\u1244\u1249\u1255\u125E\u1271\u1276\u129F\u12C2\u12C8\u12D1ORN\u803B\xDE\u40DEADE;\u6122\u0100Hc\u124E\u1252cy;\u440By;\u4426\u0100bu\u125A\u125C;\u4009;\u43A4\u0180aey\u1265\u126A\u126Fron;\u4164dil;\u4162;\u4422r;\uC000\u{1D517}\u0100ei\u127B\u1289\u01F2\u1280\0\u1287efore;\u6234a;\u4398\u0100cn\u128E\u1298kSpace;\uC000\u205F\u200ASpace;\u6009lde\u0200;EFT\u12AB\u12AC\u12B2\u12BC\u623Cqual;\u6243ullEqual;\u6245ilde;\u6248pf;\uC000\u{1D54B}ipleDot;\u60DB\u0100ct\u12D6\u12DBr;\uC000\u{1D4AF}rok;\u4166\u0AE1\u12F7\u130E\u131A\u1326\0\u132C\u1331\0\0\0\0\0\u1338\u133D\u1377\u1385\0\u13FF\u1404\u140A\u1410\u0100cr\u12FB\u1301ute\u803B\xDA\u40DAr\u0100;o\u1307\u1308\u619Fcir;\u6949r\u01E3\u1313\0\u1316y;\u440Eve;\u416C\u0100iy\u131E\u1323rc\u803B\xDB\u40DB;\u4423blac;\u4170r;\uC000\u{1D518}rave\u803B\xD9\u40D9acr;\u416A\u0100di\u1341\u1369er\u0100BP\u1348\u135D\u0100ar\u134D\u1350r;\u405Fac\u0100ek\u1357\u1359;\u63DFet;\u63B5arenthesis;\u63DDon\u0100;P\u1370\u1371\u62C3lus;\u628E\u0100gp\u137B\u137Fon;\u4172f;\uC000\u{1D54C}\u0400ADETadps\u1395\u13AE\u13B8\u13C4\u03E8\u13D2\u13D7\u13F3rrow\u0180;BD\u1150\u13A0\u13A4ar;\u6912ownArrow;\u61C5ownArrow;\u6195quilibrium;\u696Eee\u0100;A\u13CB\u13CC\u62A5rrow;\u61A5own\xE1\u03F3er\u0100LR\u13DE\u13E8eftArrow;\u6196ightArrow;\u6197i\u0100;l\u13F9\u13FA\u43D2on;\u43A5ing;\u416Ecr;\uC000\u{1D4B0}ilde;\u4168ml\u803B\xDC\u40DC\u0480Dbcdefosv\u1427\u142C\u1430\u1433\u143E\u1485\u148A\u1490\u1496ash;\u62ABar;\u6AEBy;\u4412ash\u0100;l\u143B\u143C\u62A9;\u6AE6\u0100er\u1443\u1445;\u62C1\u0180bty\u144C\u1450\u147Aar;\u6016\u0100;i\u144F\u1455cal\u0200BLST\u1461\u1465\u146A\u1474ar;\u6223ine;\u407Ceparator;\u6758ilde;\u6240ThinSpace;\u600Ar;\uC000\u{1D519}pf;\uC000\u{1D54D}cr;\uC000\u{1D4B1}dash;\u62AA\u0280cefos\u14A7\u14AC\u14B1\u14B6\u14BCirc;\u4174dge;\u62C0r;\uC000\u{1D51A}pf;\uC000\u{1D54E}cr;\uC000\u{1D4B2}\u0200fios\u14CB\u14D0\u14D2\u14D8r;\uC000\u{1D51B};\u439Epf;\uC000\u{1D54F}cr;\uC000\u{1D4B3}\u0480AIUacfosu\u14F1\u14F5\u14F9\u14FD\u1504\u150F\u1514\u151A\u1520cy;\u442Fcy;\u4407cy;\u442Ecute\u803B\xDD\u40DD\u0100iy\u1509\u150Drc;\u4176;\u442Br;\uC000\u{1D51C}pf;\uC000\u{1D550}cr;\uC000\u{1D4B4}ml;\u4178\u0400Hacdefos\u1535\u1539\u153F\u154B\u154F\u155D\u1560\u1564cy;\u4416cute;\u4179\u0100ay\u1544\u1549ron;\u417D;\u4417ot;\u417B\u01F2\u1554\0\u155BoWidt\xE8\u0AD9a;\u4396r;\u6128pf;\u6124cr;\uC000\u{1D4B5}\u0BE1\u1583\u158A\u1590\0\u15B0\u15B6\u15BF\0\0\0\0\u15C6\u15DB\u15EB\u165F\u166D\0\u1695\u169B\u16B2\u16B9\0\u16BEcute\u803B\xE1\u40E1reve;\u4103\u0300;Ediuy\u159C\u159D\u15A1\u15A3\u15A8\u15AD\u623E;\uC000\u223E\u0333;\u623Frc\u803B\xE2\u40E2te\u80BB\xB4\u0306;\u4430lig\u803B\xE6\u40E6\u0100;r\xB2\u15BA;\uC000\u{1D51E}rave\u803B\xE0\u40E0\u0100ep\u15CA\u15D6\u0100fp\u15CF\u15D4sym;\u6135\xE8\u15D3ha;\u43B1\u0100ap\u15DFc\u0100cl\u15E4\u15E7r;\u4101g;\u6A3F\u0264\u15F0\0\0\u160A\u0280;adsv\u15FA\u15FB\u15FF\u1601\u1607\u6227nd;\u6A55;\u6A5Clope;\u6A58;\u6A5A\u0380;elmrsz\u1618\u1619\u161B\u161E\u163F\u164F\u1659\u6220;\u69A4e\xBB\u1619sd\u0100;a\u1625\u1626\u6221\u0461\u1630\u1632\u1634\u1636\u1638\u163A\u163C\u163E;\u69A8;\u69A9;\u69AA;\u69AB;\u69AC;\u69AD;\u69AE;\u69AFt\u0100;v\u1645\u1646\u621Fb\u0100;d\u164C\u164D\u62BE;\u699D\u0100pt\u1654\u1657h;\u6222\xBB\xB9arr;\u637C\u0100gp\u1663\u1667on;\u4105f;\uC000\u{1D552}\u0380;Eaeiop\u12C1\u167B\u167D\u1682\u1684\u1687\u168A;\u6A70cir;\u6A6F;\u624Ad;\u624Bs;\u4027rox\u0100;e\u12C1\u1692\xF1\u1683ing\u803B\xE5\u40E5\u0180cty\u16A1\u16A6\u16A8r;\uC000\u{1D4B6};\u402Amp\u0100;e\u12C1\u16AF\xF1\u0288ilde\u803B\xE3\u40E3ml\u803B\xE4\u40E4\u0100ci\u16C2\u16C8onin\xF4\u0272nt;\u6A11\u0800Nabcdefiklnoprsu\u16ED\u16F1\u1730\u173C\u1743\u1748\u1778\u177D\u17E0\u17E6\u1839\u1850\u170D\u193D\u1948\u1970ot;\u6AED\u0100cr\u16F6\u171Ek\u0200ceps\u1700\u1705\u170D\u1713ong;\u624Cpsilon;\u43F6rime;\u6035im\u0100;e\u171A\u171B\u623Dq;\u62CD\u0176\u1722\u1726ee;\u62BDed\u0100;g\u172C\u172D\u6305e\xBB\u172Drk\u0100;t\u135C\u1737brk;\u63B6\u0100oy\u1701\u1741;\u4431quo;\u601E\u0280cmprt\u1753\u175B\u1761\u1764\u1768aus\u0100;e\u010A\u0109ptyv;\u69B0s\xE9\u170Cno\xF5\u0113\u0180ahw\u176F\u1771\u1773;\u43B2;\u6136een;\u626Cr;\uC000\u{1D51F}g\u0380costuvw\u178D\u179D\u17B3\u17C1\u17D5\u17DB\u17DE\u0180aiu\u1794\u1796\u179A\xF0\u0760rc;\u65EFp\xBB\u1371\u0180dpt\u17A4\u17A8\u17ADot;\u6A00lus;\u6A01imes;\u6A02\u0271\u17B9\0\0\u17BEcup;\u6A06ar;\u6605riangle\u0100du\u17CD\u17D2own;\u65BDp;\u65B3plus;\u6A04e\xE5\u1444\xE5\u14ADarow;\u690D\u0180ako\u17ED\u1826\u1835\u0100cn\u17F2\u1823k\u0180lst\u17FA\u05AB\u1802ozenge;\u69EBriangle\u0200;dlr\u1812\u1813\u1818\u181D\u65B4own;\u65BEeft;\u65C2ight;\u65B8k;\u6423\u01B1\u182B\0\u1833\u01B2\u182F\0\u1831;\u6592;\u65914;\u6593ck;\u6588\u0100eo\u183E\u184D\u0100;q\u1843\u1846\uC000=\u20E5uiv;\uC000\u2261\u20E5t;\u6310\u0200ptwx\u1859\u185E\u1867\u186Cf;\uC000\u{1D553}\u0100;t\u13CB\u1863om\xBB\u13CCtie;\u62C8\u0600DHUVbdhmptuv\u1885\u1896\u18AA\u18BB\u18D7\u18DB\u18EC\u18FF\u1905\u190A\u1910\u1921\u0200LRlr\u188E\u1890\u1892\u1894;\u6557;\u6554;\u6556;\u6553\u0280;DUdu\u18A1\u18A2\u18A4\u18A6\u18A8\u6550;\u6566;\u6569;\u6564;\u6567\u0200LRlr\u18B3\u18B5\u18B7\u18B9;\u655D;\u655A;\u655C;\u6559\u0380;HLRhlr\u18CA\u18CB\u18CD\u18CF\u18D1\u18D3\u18D5\u6551;\u656C;\u6563;\u6560;\u656B;\u6562;\u655Fox;\u69C9\u0200LRlr\u18E4\u18E6\u18E8\u18EA;\u6555;\u6552;\u6510;\u650C\u0280;DUdu\u06BD\u18F7\u18F9\u18FB\u18FD;\u6565;\u6568;\u652C;\u6534inus;\u629Flus;\u629Eimes;\u62A0\u0200LRlr\u1919\u191B\u191D\u191F;\u655B;\u6558;\u6518;\u6514\u0380;HLRhlr\u1930\u1931\u1933\u1935\u1937\u1939\u193B\u6502;\u656A;\u6561;\u655E;\u653C;\u6524;\u651C\u0100ev\u0123\u1942bar\u803B\xA6\u40A6\u0200ceio\u1951\u1956\u195A\u1960r;\uC000\u{1D4B7}mi;\u604Fm\u0100;e\u171A\u171Cl\u0180;bh\u1968\u1969\u196B\u405C;\u69C5sub;\u67C8\u016C\u1974\u197El\u0100;e\u1979\u197A\u6022t\xBB\u197Ap\u0180;Ee\u012F\u1985\u1987;\u6AAE\u0100;q\u06DC\u06DB\u0CE1\u19A7\0\u19E8\u1A11\u1A15\u1A32\0\u1A37\u1A50\0\0\u1AB4\0\0\u1AC1\0\0\u1B21\u1B2E\u1B4D\u1B52\0\u1BFD\0\u1C0C\u0180cpr\u19AD\u19B2\u19DDute;\u4107\u0300;abcds\u19BF\u19C0\u19C4\u19CA\u19D5\u19D9\u6229nd;\u6A44rcup;\u6A49\u0100au\u19CF\u19D2p;\u6A4Bp;\u6A47ot;\u6A40;\uC000\u2229\uFE00\u0100eo\u19E2\u19E5t;\u6041\xEE\u0693\u0200aeiu\u19F0\u19FB\u1A01\u1A05\u01F0\u19F5\0\u19F8s;\u6A4Don;\u410Ddil\u803B\xE7\u40E7rc;\u4109ps\u0100;s\u1A0C\u1A0D\u6A4Cm;\u6A50ot;\u410B\u0180dmn\u1A1B\u1A20\u1A26il\u80BB\xB8\u01ADptyv;\u69B2t\u8100\xA2;e\u1A2D\u1A2E\u40A2r\xE4\u01B2r;\uC000\u{1D520}\u0180cei\u1A3D\u1A40\u1A4Dy;\u4447ck\u0100;m\u1A47\u1A48\u6713ark\xBB\u1A48;\u43C7r\u0380;Ecefms\u1A5F\u1A60\u1A62\u1A6B\u1AA4\u1AAA\u1AAE\u65CB;\u69C3\u0180;el\u1A69\u1A6A\u1A6D\u42C6q;\u6257e\u0261\u1A74\0\0\u1A88rrow\u0100lr\u1A7C\u1A81eft;\u61BAight;\u61BB\u0280RSacd\u1A92\u1A94\u1A96\u1A9A\u1A9F\xBB\u0F47;\u64C8st;\u629Birc;\u629Aash;\u629Dnint;\u6A10id;\u6AEFcir;\u69C2ubs\u0100;u\u1ABB\u1ABC\u6663it\xBB\u1ABC\u02EC\u1AC7\u1AD4\u1AFA\0\u1B0Aon\u0100;e\u1ACD\u1ACE\u403A\u0100;q\xC7\xC6\u026D\u1AD9\0\0\u1AE2a\u0100;t\u1ADE\u1ADF\u402C;\u4040\u0180;fl\u1AE8\u1AE9\u1AEB\u6201\xEE\u1160e\u0100mx\u1AF1\u1AF6ent\xBB\u1AE9e\xF3\u024D\u01E7\u1AFE\0\u1B07\u0100;d\u12BB\u1B02ot;\u6A6Dn\xF4\u0246\u0180fry\u1B10\u1B14\u1B17;\uC000\u{1D554}o\xE4\u0254\u8100\xA9;s\u0155\u1B1Dr;\u6117\u0100ao\u1B25\u1B29rr;\u61B5ss;\u6717\u0100cu\u1B32\u1B37r;\uC000\u{1D4B8}\u0100bp\u1B3C\u1B44\u0100;e\u1B41\u1B42\u6ACF;\u6AD1\u0100;e\u1B49\u1B4A\u6AD0;\u6AD2dot;\u62EF\u0380delprvw\u1B60\u1B6C\u1B77\u1B82\u1BAC\u1BD4\u1BF9arr\u0100lr\u1B68\u1B6A;\u6938;\u6935\u0270\u1B72\0\0\u1B75r;\u62DEc;\u62DFarr\u0100;p\u1B7F\u1B80\u61B6;\u693D\u0300;bcdos\u1B8F\u1B90\u1B96\u1BA1\u1BA5\u1BA8\u622Arcap;\u6A48\u0100au\u1B9B\u1B9Ep;\u6A46p;\u6A4Aot;\u628Dr;\u6A45;\uC000\u222A\uFE00\u0200alrv\u1BB5\u1BBF\u1BDE\u1BE3rr\u0100;m\u1BBC\u1BBD\u61B7;\u693Cy\u0180evw\u1BC7\u1BD4\u1BD8q\u0270\u1BCE\0\0\u1BD2re\xE3\u1B73u\xE3\u1B75ee;\u62CEedge;\u62CFen\u803B\xA4\u40A4earrow\u0100lr\u1BEE\u1BF3eft\xBB\u1B80ight\xBB\u1BBDe\xE4\u1BDD\u0100ci\u1C01\u1C07onin\xF4\u01F7nt;\u6231lcty;\u632D\u0980AHabcdefhijlorstuwz\u1C38\u1C3B\u1C3F\u1C5D\u1C69\u1C75\u1C8A\u1C9E\u1CAC\u1CB7\u1CFB\u1CFF\u1D0D\u1D7B\u1D91\u1DAB\u1DBB\u1DC6\u1DCDr\xF2\u0381ar;\u6965\u0200glrs\u1C48\u1C4D\u1C52\u1C54ger;\u6020eth;\u6138\xF2\u1133h\u0100;v\u1C5A\u1C5B\u6010\xBB\u090A\u016B\u1C61\u1C67arow;\u690Fa\xE3\u0315\u0100ay\u1C6E\u1C73ron;\u410F;\u4434\u0180;ao\u0332\u1C7C\u1C84\u0100gr\u02BF\u1C81r;\u61CAtseq;\u6A77\u0180glm\u1C91\u1C94\u1C98\u803B\xB0\u40B0ta;\u43B4ptyv;\u69B1\u0100ir\u1CA3\u1CA8sht;\u697F;\uC000\u{1D521}ar\u0100lr\u1CB3\u1CB5\xBB\u08DC\xBB\u101E\u0280aegsv\u1CC2\u0378\u1CD6\u1CDC\u1CE0m\u0180;os\u0326\u1CCA\u1CD4nd\u0100;s\u0326\u1CD1uit;\u6666amma;\u43DDin;\u62F2\u0180;io\u1CE7\u1CE8\u1CF8\u40F7de\u8100\xF7;o\u1CE7\u1CF0ntimes;\u62C7n\xF8\u1CF7cy;\u4452c\u026F\u1D06\0\0\u1D0Arn;\u631Eop;\u630D\u0280lptuw\u1D18\u1D1D\u1D22\u1D49\u1D55lar;\u4024f;\uC000\u{1D555}\u0280;emps\u030B\u1D2D\u1D37\u1D3D\u1D42q\u0100;d\u0352\u1D33ot;\u6251inus;\u6238lus;\u6214quare;\u62A1blebarwedg\xE5\xFAn\u0180adh\u112E\u1D5D\u1D67ownarrow\xF3\u1C83arpoon\u0100lr\u1D72\u1D76ef\xF4\u1CB4igh\xF4\u1CB6\u0162\u1D7F\u1D85karo\xF7\u0F42\u026F\u1D8A\0\0\u1D8Ern;\u631Fop;\u630C\u0180cot\u1D98\u1DA3\u1DA6\u0100ry\u1D9D\u1DA1;\uC000\u{1D4B9};\u4455l;\u69F6rok;\u4111\u0100dr\u1DB0\u1DB4ot;\u62F1i\u0100;f\u1DBA\u1816\u65BF\u0100ah\u1DC0\u1DC3r\xF2\u0429a\xF2\u0FA6angle;\u69A6\u0100ci\u1DD2\u1DD5y;\u445Fgrarr;\u67FF\u0900Dacdefglmnopqrstux\u1E01\u1E09\u1E19\u1E38\u0578\u1E3C\u1E49\u1E61\u1E7E\u1EA5\u1EAF\u1EBD\u1EE1\u1F2A\u1F37\u1F44\u1F4E\u1F5A\u0100Do\u1E06\u1D34o\xF4\u1C89\u0100cs\u1E0E\u1E14ute\u803B\xE9\u40E9ter;\u6A6E\u0200aioy\u1E22\u1E27\u1E31\u1E36ron;\u411Br\u0100;c\u1E2D\u1E2E\u6256\u803B\xEA\u40EAlon;\u6255;\u444Dot;\u4117\u0100Dr\u1E41\u1E45ot;\u6252;\uC000\u{1D522}\u0180;rs\u1E50\u1E51\u1E57\u6A9Aave\u803B\xE8\u40E8\u0100;d\u1E5C\u1E5D\u6A96ot;\u6A98\u0200;ils\u1E6A\u1E6B\u1E72\u1E74\u6A99nters;\u63E7;\u6113\u0100;d\u1E79\u1E7A\u6A95ot;\u6A97\u0180aps\u1E85\u1E89\u1E97cr;\u4113ty\u0180;sv\u1E92\u1E93\u1E95\u6205et\xBB\u1E93p\u01001;\u1E9D\u1EA4\u0133\u1EA1\u1EA3;\u6004;\u6005\u6003\u0100gs\u1EAA\u1EAC;\u414Bp;\u6002\u0100gp\u1EB4\u1EB8on;\u4119f;\uC000\u{1D556}\u0180als\u1EC4\u1ECE\u1ED2r\u0100;s\u1ECA\u1ECB\u62D5l;\u69E3us;\u6A71i\u0180;lv\u1EDA\u1EDB\u1EDF\u43B5on\xBB\u1EDB;\u43F5\u0200csuv\u1EEA\u1EF3\u1F0B\u1F23\u0100io\u1EEF\u1E31rc\xBB\u1E2E\u0269\u1EF9\0\0\u1EFB\xED\u0548ant\u0100gl\u1F02\u1F06tr\xBB\u1E5Dess\xBB\u1E7A\u0180aei\u1F12\u1F16\u1F1Als;\u403Dst;\u625Fv\u0100;D\u0235\u1F20D;\u6A78parsl;\u69E5\u0100Da\u1F2F\u1F33ot;\u6253rr;\u6971\u0180cdi\u1F3E\u1F41\u1EF8r;\u612Fo\xF4\u0352\u0100ah\u1F49\u1F4B;\u43B7\u803B\xF0\u40F0\u0100mr\u1F53\u1F57l\u803B\xEB\u40EBo;\u60AC\u0180cip\u1F61\u1F64\u1F67l;\u4021s\xF4\u056E\u0100eo\u1F6C\u1F74ctatio\xEE\u0559nential\xE5\u0579\u09E1\u1F92\0\u1F9E\0\u1FA1\u1FA7\0\0\u1FC6\u1FCC\0\u1FD3\0\u1FE6\u1FEA\u2000\0\u2008\u205Allingdotse\xF1\u1E44y;\u4444male;\u6640\u0180ilr\u1FAD\u1FB3\u1FC1lig;\u8000\uFB03\u0269\u1FB9\0\0\u1FBDg;\u8000\uFB00ig;\u8000\uFB04;\uC000\u{1D523}lig;\u8000\uFB01lig;\uC000fj\u0180alt\u1FD9\u1FDC\u1FE1t;\u666Dig;\u8000\uFB02ns;\u65B1of;\u4192\u01F0\u1FEE\0\u1FF3f;\uC000\u{1D557}\u0100ak\u05BF\u1FF7\u0100;v\u1FFC\u1FFD\u62D4;\u6AD9artint;\u6A0D\u0100ao\u200C\u2055\u0100cs\u2011\u2052\u03B1\u201A\u2030\u2038\u2045\u2048\0\u2050\u03B2\u2022\u2025\u2027\u202A\u202C\0\u202E\u803B\xBD\u40BD;\u6153\u803B\xBC\u40BC;\u6155;\u6159;\u615B\u01B3\u2034\0\u2036;\u6154;\u6156\u02B4\u203E\u2041\0\0\u2043\u803B\xBE\u40BE;\u6157;\u615C5;\u6158\u01B6\u204C\0\u204E;\u615A;\u615D8;\u615El;\u6044wn;\u6322cr;\uC000\u{1D4BB}\u0880Eabcdefgijlnorstv\u2082\u2089\u209F\u20A5\u20B0\u20B4\u20F0\u20F5\u20FA\u20FF\u2103\u2112\u2138\u0317\u213E\u2152\u219E\u0100;l\u064D\u2087;\u6A8C\u0180cmp\u2090\u2095\u209Dute;\u41F5ma\u0100;d\u209C\u1CDA\u43B3;\u6A86reve;\u411F\u0100iy\u20AA\u20AErc;\u411D;\u4433ot;\u4121\u0200;lqs\u063E\u0642\u20BD\u20C9\u0180;qs\u063E\u064C\u20C4lan\xF4\u0665\u0200;cdl\u0665\u20D2\u20D5\u20E5c;\u6AA9ot\u0100;o\u20DC\u20DD\u6A80\u0100;l\u20E2\u20E3\u6A82;\u6A84\u0100;e\u20EA\u20ED\uC000\u22DB\uFE00s;\u6A94r;\uC000\u{1D524}\u0100;g\u0673\u061Bmel;\u6137cy;\u4453\u0200;Eaj\u065A\u210C\u210E\u2110;\u6A92;\u6AA5;\u6AA4\u0200Eaes\u211B\u211D\u2129\u2134;\u6269p\u0100;p\u2123\u2124\u6A8Arox\xBB\u2124\u0100;q\u212E\u212F\u6A88\u0100;q\u212E\u211Bim;\u62E7pf;\uC000\u{1D558}\u0100ci\u2143\u2146r;\u610Am\u0180;el\u066B\u214E\u2150;\u6A8E;\u6A90\u8300>;cdlqr\u05EE\u2160\u216A\u216E\u2173\u2179\u0100ci\u2165\u2167;\u6AA7r;\u6A7Aot;\u62D7Par;\u6995uest;\u6A7C\u0280adels\u2184\u216A\u2190\u0656\u219B\u01F0\u2189\0\u218Epro\xF8\u209Er;\u6978q\u0100lq\u063F\u2196les\xF3\u2088i\xED\u066B\u0100en\u21A3\u21ADrtneqq;\uC000\u2269\uFE00\xC5\u21AA\u0500Aabcefkosy\u21C4\u21C7\u21F1\u21F5\u21FA\u2218\u221D\u222F\u2268\u227Dr\xF2\u03A0\u0200ilmr\u21D0\u21D4\u21D7\u21DBrs\xF0\u1484f\xBB\u2024il\xF4\u06A9\u0100dr\u21E0\u21E4cy;\u444A\u0180;cw\u08F4\u21EB\u21EFir;\u6948;\u61ADar;\u610Firc;\u4125\u0180alr\u2201\u220E\u2213rts\u0100;u\u2209\u220A\u6665it\xBB\u220Alip;\u6026con;\u62B9r;\uC000\u{1D525}s\u0100ew\u2223\u2229arow;\u6925arow;\u6926\u0280amopr\u223A\u223E\u2243\u225E\u2263rr;\u61FFtht;\u623Bk\u0100lr\u2249\u2253eftarrow;\u61A9ightarrow;\u61AAf;\uC000\u{1D559}bar;\u6015\u0180clt\u226F\u2274\u2278r;\uC000\u{1D4BD}as\xE8\u21F4rok;\u4127\u0100bp\u2282\u2287ull;\u6043hen\xBB\u1C5B\u0AE1\u22A3\0\u22AA\0\u22B8\u22C5\u22CE\0\u22D5\u22F3\0\0\u22F8\u2322\u2367\u2362\u237F\0\u2386\u23AA\u23B4cute\u803B\xED\u40ED\u0180;iy\u0771\u22B0\u22B5rc\u803B\xEE\u40EE;\u4438\u0100cx\u22BC\u22BFy;\u4435cl\u803B\xA1\u40A1\u0100fr\u039F\u22C9;\uC000\u{1D526}rave\u803B\xEC\u40EC\u0200;ino\u073E\u22DD\u22E9\u22EE\u0100in\u22E2\u22E6nt;\u6A0Ct;\u622Dfin;\u69DCta;\u6129lig;\u4133\u0180aop\u22FE\u231A\u231D\u0180cgt\u2305\u2308\u2317r;\u412B\u0180elp\u071F\u230F\u2313in\xE5\u078Ear\xF4\u0720h;\u4131f;\u62B7ed;\u41B5\u0280;cfot\u04F4\u232C\u2331\u233D\u2341are;\u6105in\u0100;t\u2338\u2339\u621Eie;\u69DDdo\xF4\u2319\u0280;celp\u0757\u234C\u2350\u235B\u2361al;\u62BA\u0100gr\u2355\u2359er\xF3\u1563\xE3\u234Darhk;\u6A17rod;\u6A3C\u0200cgpt\u236F\u2372\u2376\u237By;\u4451on;\u412Ff;\uC000\u{1D55A}a;\u43B9uest\u803B\xBF\u40BF\u0100ci\u238A\u238Fr;\uC000\u{1D4BE}n\u0280;Edsv\u04F4\u239B\u239D\u23A1\u04F3;\u62F9ot;\u62F5\u0100;v\u23A6\u23A7\u62F4;\u62F3\u0100;i\u0777\u23AElde;\u4129\u01EB\u23B8\0\u23BCcy;\u4456l\u803B\xEF\u40EF\u0300cfmosu\u23CC\u23D7\u23DC\u23E1\u23E7\u23F5\u0100iy\u23D1\u23D5rc;\u4135;\u4439r;\uC000\u{1D527}ath;\u4237pf;\uC000\u{1D55B}\u01E3\u23EC\0\u23F1r;\uC000\u{1D4BF}rcy;\u4458kcy;\u4454\u0400acfghjos\u240B\u2416\u2422\u2427\u242D\u2431\u2435\u243Bppa\u0100;v\u2413\u2414\u43BA;\u43F0\u0100ey\u241B\u2420dil;\u4137;\u443Ar;\uC000\u{1D528}reen;\u4138cy;\u4445cy;\u445Cpf;\uC000\u{1D55C}cr;\uC000\u{1D4C0}\u0B80ABEHabcdefghjlmnoprstuv\u2470\u2481\u2486\u248D\u2491\u250E\u253D\u255A\u2580\u264E\u265E\u2665\u2679\u267D\u269A\u26B2\u26D8\u275D\u2768\u278B\u27C0\u2801\u2812\u0180art\u2477\u247A\u247Cr\xF2\u09C6\xF2\u0395ail;\u691Barr;\u690E\u0100;g\u0994\u248B;\u6A8Bar;\u6962\u0963\u24A5\0\u24AA\0\u24B1\0\0\0\0\0\u24B5\u24BA\0\u24C6\u24C8\u24CD\0\u24F9ute;\u413Amptyv;\u69B4ra\xEE\u084Cbda;\u43BBg\u0180;dl\u088E\u24C1\u24C3;\u6991\xE5\u088E;\u6A85uo\u803B\xAB\u40ABr\u0400;bfhlpst\u0899\u24DE\u24E6\u24E9\u24EB\u24EE\u24F1\u24F5\u0100;f\u089D\u24E3s;\u691Fs;\u691D\xEB\u2252p;\u61ABl;\u6939im;\u6973l;\u61A2\u0180;ae\u24FF\u2500\u2504\u6AABil;\u6919\u0100;s\u2509\u250A\u6AAD;\uC000\u2AAD\uFE00\u0180abr\u2515\u2519\u251Drr;\u690Crk;\u6772\u0100ak\u2522\u252Cc\u0100ek\u2528\u252A;\u407B;\u405B\u0100es\u2531\u2533;\u698Bl\u0100du\u2539\u253B;\u698F;\u698D\u0200aeuy\u2546\u254B\u2556\u2558ron;\u413E\u0100di\u2550\u2554il;\u413C\xEC\u08B0\xE2\u2529;\u443B\u0200cqrs\u2563\u2566\u256D\u257Da;\u6936uo\u0100;r\u0E19\u1746\u0100du\u2572\u2577har;\u6967shar;\u694Bh;\u61B2\u0280;fgqs\u258B\u258C\u0989\u25F3\u25FF\u6264t\u0280ahlrt\u2598\u25A4\u25B7\u25C2\u25E8rrow\u0100;t\u0899\u25A1a\xE9\u24F6arpoon\u0100du\u25AF\u25B4own\xBB\u045Ap\xBB\u0966eftarrows;\u61C7ight\u0180ahs\u25CD\u25D6\u25DErrow\u0100;s\u08F4\u08A7arpoon\xF3\u0F98quigarro\xF7\u21F0hreetimes;\u62CB\u0180;qs\u258B\u0993\u25FAlan\xF4\u09AC\u0280;cdgs\u09AC\u260A\u260D\u261D\u2628c;\u6AA8ot\u0100;o\u2614\u2615\u6A7F\u0100;r\u261A\u261B\u6A81;\u6A83\u0100;e\u2622\u2625\uC000\u22DA\uFE00s;\u6A93\u0280adegs\u2633\u2639\u263D\u2649\u264Bppro\xF8\u24C6ot;\u62D6q\u0100gq\u2643\u2645\xF4\u0989gt\xF2\u248C\xF4\u099Bi\xED\u09B2\u0180ilr\u2655\u08E1\u265Asht;\u697C;\uC000\u{1D529}\u0100;E\u099C\u2663;\u6A91\u0161\u2669\u2676r\u0100du\u25B2\u266E\u0100;l\u0965\u2673;\u696Alk;\u6584cy;\u4459\u0280;acht\u0A48\u2688\u268B\u2691\u2696r\xF2\u25C1orne\xF2\u1D08ard;\u696Bri;\u65FA\u0100io\u269F\u26A4dot;\u4140ust\u0100;a\u26AC\u26AD\u63B0che\xBB\u26AD\u0200Eaes\u26BB\u26BD\u26C9\u26D4;\u6268p\u0100;p\u26C3\u26C4\u6A89rox\xBB\u26C4\u0100;q\u26CE\u26CF\u6A87\u0100;q\u26CE\u26BBim;\u62E6\u0400abnoptwz\u26E9\u26F4\u26F7\u271A\u272F\u2741\u2747\u2750\u0100nr\u26EE\u26F1g;\u67ECr;\u61FDr\xEB\u08C1g\u0180lmr\u26FF\u270D\u2714eft\u0100ar\u09E6\u2707ight\xE1\u09F2apsto;\u67FCight\xE1\u09FDparrow\u0100lr\u2725\u2729ef\xF4\u24EDight;\u61AC\u0180afl\u2736\u2739\u273Dr;\u6985;\uC000\u{1D55D}us;\u6A2Dimes;\u6A34\u0161\u274B\u274Fst;\u6217\xE1\u134E\u0180;ef\u2757\u2758\u1800\u65CAnge\xBB\u2758ar\u0100;l\u2764\u2765\u4028t;\u6993\u0280achmt\u2773\u2776\u277C\u2785\u2787r\xF2\u08A8orne\xF2\u1D8Car\u0100;d\u0F98\u2783;\u696D;\u600Eri;\u62BF\u0300achiqt\u2798\u279D\u0A40\u27A2\u27AE\u27BBquo;\u6039r;\uC000\u{1D4C1}m\u0180;eg\u09B2\u27AA\u27AC;\u6A8D;\u6A8F\u0100bu\u252A\u27B3o\u0100;r\u0E1F\u27B9;\u601Arok;\u4142\u8400<;cdhilqr\u082B\u27D2\u2639\u27DC\u27E0\u27E5\u27EA\u27F0\u0100ci\u27D7\u27D9;\u6AA6r;\u6A79re\xE5\u25F2mes;\u62C9arr;\u6976uest;\u6A7B\u0100Pi\u27F5\u27F9ar;\u6996\u0180;ef\u2800\u092D\u181B\u65C3r\u0100du\u2807\u280Dshar;\u694Ahar;\u6966\u0100en\u2817\u2821rtneqq;\uC000\u2268\uFE00\xC5\u281E\u0700Dacdefhilnopsu\u2840\u2845\u2882\u288E\u2893\u28A0\u28A5\u28A8\u28DA\u28E2\u28E4\u0A83\u28F3\u2902Dot;\u623A\u0200clpr\u284E\u2852\u2863\u287Dr\u803B\xAF\u40AF\u0100et\u2857\u2859;\u6642\u0100;e\u285E\u285F\u6720se\xBB\u285F\u0100;s\u103B\u2868to\u0200;dlu\u103B\u2873\u2877\u287Bow\xEE\u048Cef\xF4\u090F\xF0\u13D1ker;\u65AE\u0100oy\u2887\u288Cmma;\u6A29;\u443Cash;\u6014asuredangle\xBB\u1626r;\uC000\u{1D52A}o;\u6127\u0180cdn\u28AF\u28B4\u28C9ro\u803B\xB5\u40B5\u0200;acd\u1464\u28BD\u28C0\u28C4s\xF4\u16A7ir;\u6AF0ot\u80BB\xB7\u01B5us\u0180;bd\u28D2\u1903\u28D3\u6212\u0100;u\u1D3C\u28D8;\u6A2A\u0163\u28DE\u28E1p;\u6ADB\xF2\u2212\xF0\u0A81\u0100dp\u28E9\u28EEels;\u62A7f;\uC000\u{1D55E}\u0100ct\u28F8\u28FDr;\uC000\u{1D4C2}pos\xBB\u159D\u0180;lm\u2909\u290A\u290D\u43BCtimap;\u62B8\u0C00GLRVabcdefghijlmoprstuvw\u2942\u2953\u297E\u2989\u2998\u29DA\u29E9\u2A15\u2A1A\u2A58\u2A5D\u2A83\u2A95\u2AA4\u2AA8\u2B04\u2B07\u2B44\u2B7F\u2BAE\u2C34\u2C67\u2C7C\u2CE9\u0100gt\u2947\u294B;\uC000\u22D9\u0338\u0100;v\u2950\u0BCF\uC000\u226B\u20D2\u0180elt\u295A\u2972\u2976ft\u0100ar\u2961\u2967rrow;\u61CDightarrow;\u61CE;\uC000\u22D8\u0338\u0100;v\u297B\u0C47\uC000\u226A\u20D2ightarrow;\u61CF\u0100Dd\u298E\u2993ash;\u62AFash;\u62AE\u0280bcnpt\u29A3\u29A7\u29AC\u29B1\u29CCla\xBB\u02DEute;\u4144g;\uC000\u2220\u20D2\u0280;Eiop\u0D84\u29BC\u29C0\u29C5\u29C8;\uC000\u2A70\u0338d;\uC000\u224B\u0338s;\u4149ro\xF8\u0D84ur\u0100;a\u29D3\u29D4\u666El\u0100;s\u29D3\u0B38\u01F3\u29DF\0\u29E3p\u80BB\xA0\u0B37mp\u0100;e\u0BF9\u0C00\u0280aeouy\u29F4\u29FE\u2A03\u2A10\u2A13\u01F0\u29F9\0\u29FB;\u6A43on;\u4148dil;\u4146ng\u0100;d\u0D7E\u2A0Aot;\uC000\u2A6D\u0338p;\u6A42;\u443Dash;\u6013\u0380;Aadqsx\u0B92\u2A29\u2A2D\u2A3B\u2A41\u2A45\u2A50rr;\u61D7r\u0100hr\u2A33\u2A36k;\u6924\u0100;o\u13F2\u13F0ot;\uC000\u2250\u0338ui\xF6\u0B63\u0100ei\u2A4A\u2A4Ear;\u6928\xED\u0B98ist\u0100;s\u0BA0\u0B9Fr;\uC000\u{1D52B}\u0200Eest\u0BC5\u2A66\u2A79\u2A7C\u0180;qs\u0BBC\u2A6D\u0BE1\u0180;qs\u0BBC\u0BC5\u2A74lan\xF4\u0BE2i\xED\u0BEA\u0100;r\u0BB6\u2A81\xBB\u0BB7\u0180Aap\u2A8A\u2A8D\u2A91r\xF2\u2971rr;\u61AEar;\u6AF2\u0180;sv\u0F8D\u2A9C\u0F8C\u0100;d\u2AA1\u2AA2\u62FC;\u62FAcy;\u445A\u0380AEadest\u2AB7\u2ABA\u2ABE\u2AC2\u2AC5\u2AF6\u2AF9r\xF2\u2966;\uC000\u2266\u0338rr;\u619Ar;\u6025\u0200;fqs\u0C3B\u2ACE\u2AE3\u2AEFt\u0100ar\u2AD4\u2AD9rro\xF7\u2AC1ightarro\xF7\u2A90\u0180;qs\u0C3B\u2ABA\u2AEAlan\xF4\u0C55\u0100;s\u0C55\u2AF4\xBB\u0C36i\xED\u0C5D\u0100;r\u0C35\u2AFEi\u0100;e\u0C1A\u0C25i\xE4\u0D90\u0100pt\u2B0C\u2B11f;\uC000\u{1D55F}\u8180\xAC;in\u2B19\u2B1A\u2B36\u40ACn\u0200;Edv\u0B89\u2B24\u2B28\u2B2E;\uC000\u22F9\u0338ot;\uC000\u22F5\u0338\u01E1\u0B89\u2B33\u2B35;\u62F7;\u62F6i\u0100;v\u0CB8\u2B3C\u01E1\u0CB8\u2B41\u2B43;\u62FE;\u62FD\u0180aor\u2B4B\u2B63\u2B69r\u0200;ast\u0B7B\u2B55\u2B5A\u2B5Flle\xEC\u0B7Bl;\uC000\u2AFD\u20E5;\uC000\u2202\u0338lint;\u6A14\u0180;ce\u0C92\u2B70\u2B73u\xE5\u0CA5\u0100;c\u0C98\u2B78\u0100;e\u0C92\u2B7D\xF1\u0C98\u0200Aait\u2B88\u2B8B\u2B9D\u2BA7r\xF2\u2988rr\u0180;cw\u2B94\u2B95\u2B99\u619B;\uC000\u2933\u0338;\uC000\u219D\u0338ghtarrow\xBB\u2B95ri\u0100;e\u0CCB\u0CD6\u0380chimpqu\u2BBD\u2BCD\u2BD9\u2B04\u0B78\u2BE4\u2BEF\u0200;cer\u0D32\u2BC6\u0D37\u2BC9u\xE5\u0D45;\uC000\u{1D4C3}ort\u026D\u2B05\0\0\u2BD6ar\xE1\u2B56m\u0100;e\u0D6E\u2BDF\u0100;q\u0D74\u0D73su\u0100bp\u2BEB\u2BED\xE5\u0CF8\xE5\u0D0B\u0180bcp\u2BF6\u2C11\u2C19\u0200;Ees\u2BFF\u2C00\u0D22\u2C04\u6284;\uC000\u2AC5\u0338et\u0100;e\u0D1B\u2C0Bq\u0100;q\u0D23\u2C00c\u0100;e\u0D32\u2C17\xF1\u0D38\u0200;Ees\u2C22\u2C23\u0D5F\u2C27\u6285;\uC000\u2AC6\u0338et\u0100;e\u0D58\u2C2Eq\u0100;q\u0D60\u2C23\u0200gilr\u2C3D\u2C3F\u2C45\u2C47\xEC\u0BD7lde\u803B\xF1\u40F1\xE7\u0C43iangle\u0100lr\u2C52\u2C5Ceft\u0100;e\u0C1A\u2C5A\xF1\u0C26ight\u0100;e\u0CCB\u2C65\xF1\u0CD7\u0100;m\u2C6C\u2C6D\u43BD\u0180;es\u2C74\u2C75\u2C79\u4023ro;\u6116p;\u6007\u0480DHadgilrs\u2C8F\u2C94\u2C99\u2C9E\u2CA3\u2CB0\u2CB6\u2CD3\u2CE3ash;\u62ADarr;\u6904p;\uC000\u224D\u20D2ash;\u62AC\u0100et\u2CA8\u2CAC;\uC000\u2265\u20D2;\uC000>\u20D2nfin;\u69DE\u0180Aet\u2CBD\u2CC1\u2CC5rr;\u6902;\uC000\u2264\u20D2\u0100;r\u2CCA\u2CCD\uC000<\u20D2ie;\uC000\u22B4\u20D2\u0100At\u2CD8\u2CDCrr;\u6903rie;\uC000\u22B5\u20D2im;\uC000\u223C\u20D2\u0180Aan\u2CF0\u2CF4\u2D02rr;\u61D6r\u0100hr\u2CFA\u2CFDk;\u6923\u0100;o\u13E7\u13E5ear;\u6927\u1253\u1A95\0\0\0\0\0\0\0\0\0\0\0\0\0\u2D2D\0\u2D38\u2D48\u2D60\u2D65\u2D72\u2D84\u1B07\0\0\u2D8D\u2DAB\0\u2DC8\u2DCE\0\u2DDC\u2E19\u2E2B\u2E3E\u2E43\u0100cs\u2D31\u1A97ute\u803B\xF3\u40F3\u0100iy\u2D3C\u2D45r\u0100;c\u1A9E\u2D42\u803B\xF4\u40F4;\u443E\u0280abios\u1AA0\u2D52\u2D57\u01C8\u2D5Alac;\u4151v;\u6A38old;\u69BClig;\u4153\u0100cr\u2D69\u2D6Dir;\u69BF;\uC000\u{1D52C}\u036F\u2D79\0\0\u2D7C\0\u2D82n;\u42DBave\u803B\xF2\u40F2;\u69C1\u0100bm\u2D88\u0DF4ar;\u69B5\u0200acit\u2D95\u2D98\u2DA5\u2DA8r\xF2\u1A80\u0100ir\u2D9D\u2DA0r;\u69BEoss;\u69BBn\xE5\u0E52;\u69C0\u0180aei\u2DB1\u2DB5\u2DB9cr;\u414Dga;\u43C9\u0180cdn\u2DC0\u2DC5\u01CDron;\u43BF;\u69B6pf;\uC000\u{1D560}\u0180ael\u2DD4\u2DD7\u01D2r;\u69B7rp;\u69B9\u0380;adiosv\u2DEA\u2DEB\u2DEE\u2E08\u2E0D\u2E10\u2E16\u6228r\xF2\u1A86\u0200;efm\u2DF7\u2DF8\u2E02\u2E05\u6A5Dr\u0100;o\u2DFE\u2DFF\u6134f\xBB\u2DFF\u803B\xAA\u40AA\u803B\xBA\u40BAgof;\u62B6r;\u6A56lope;\u6A57;\u6A5B\u0180clo\u2E1F\u2E21\u2E27\xF2\u2E01ash\u803B\xF8\u40F8l;\u6298i\u016C\u2E2F\u2E34de\u803B\xF5\u40F5es\u0100;a\u01DB\u2E3As;\u6A36ml\u803B\xF6\u40F6bar;\u633D\u0AE1\u2E5E\0\u2E7D\0\u2E80\u2E9D\0\u2EA2\u2EB9\0\0\u2ECB\u0E9C\0\u2F13\0\0\u2F2B\u2FBC\0\u2FC8r\u0200;ast\u0403\u2E67\u2E72\u0E85\u8100\xB6;l\u2E6D\u2E6E\u40B6le\xEC\u0403\u0269\u2E78\0\0\u2E7Bm;\u6AF3;\u6AFDy;\u443Fr\u0280cimpt\u2E8B\u2E8F\u2E93\u1865\u2E97nt;\u4025od;\u402Eil;\u6030enk;\u6031r;\uC000\u{1D52D}\u0180imo\u2EA8\u2EB0\u2EB4\u0100;v\u2EAD\u2EAE\u43C6;\u43D5ma\xF4\u0A76ne;\u660E\u0180;tv\u2EBF\u2EC0\u2EC8\u43C0chfork\xBB\u1FFD;\u43D6\u0100au\u2ECF\u2EDFn\u0100ck\u2ED5\u2EDDk\u0100;h\u21F4\u2EDB;\u610E\xF6\u21F4s\u0480;abcdemst\u2EF3\u2EF4\u1908\u2EF9\u2EFD\u2F04\u2F06\u2F0A\u2F0E\u402Bcir;\u6A23ir;\u6A22\u0100ou\u1D40\u2F02;\u6A25;\u6A72n\u80BB\xB1\u0E9Dim;\u6A26wo;\u6A27\u0180ipu\u2F19\u2F20\u2F25ntint;\u6A15f;\uC000\u{1D561}nd\u803B\xA3\u40A3\u0500;Eaceinosu\u0EC8\u2F3F\u2F41\u2F44\u2F47\u2F81\u2F89\u2F92\u2F7E\u2FB6;\u6AB3p;\u6AB7u\xE5\u0ED9\u0100;c\u0ECE\u2F4C\u0300;acens\u0EC8\u2F59\u2F5F\u2F66\u2F68\u2F7Eppro\xF8\u2F43urlye\xF1\u0ED9\xF1\u0ECE\u0180aes\u2F6F\u2F76\u2F7Approx;\u6AB9qq;\u6AB5im;\u62E8i\xED\u0EDFme\u0100;s\u2F88\u0EAE\u6032\u0180Eas\u2F78\u2F90\u2F7A\xF0\u2F75\u0180dfp\u0EEC\u2F99\u2FAF\u0180als\u2FA0\u2FA5\u2FAAlar;\u632Eine;\u6312urf;\u6313\u0100;t\u0EFB\u2FB4\xEF\u0EFBrel;\u62B0\u0100ci\u2FC0\u2FC5r;\uC000\u{1D4C5};\u43C8ncsp;\u6008\u0300fiopsu\u2FDA\u22E2\u2FDF\u2FE5\u2FEB\u2FF1r;\uC000\u{1D52E}pf;\uC000\u{1D562}rime;\u6057cr;\uC000\u{1D4C6}\u0180aeo\u2FF8\u3009\u3013t\u0100ei\u2FFE\u3005rnion\xF3\u06B0nt;\u6A16st\u0100;e\u3010\u3011\u403F\xF1\u1F19\xF4\u0F14\u0A80ABHabcdefhilmnoprstux\u3040\u3051\u3055\u3059\u30E0\u310E\u312B\u3147\u3162\u3172\u318E\u3206\u3215\u3224\u3229\u3258\u326E\u3272\u3290\u32B0\u32B7\u0180art\u3047\u304A\u304Cr\xF2\u10B3\xF2\u03DDail;\u691Car\xF2\u1C65ar;\u6964\u0380cdenqrt\u3068\u3075\u3078\u307F\u308F\u3094\u30CC\u0100eu\u306D\u3071;\uC000\u223D\u0331te;\u4155i\xE3\u116Emptyv;\u69B3g\u0200;del\u0FD1\u3089\u308B\u308D;\u6992;\u69A5\xE5\u0FD1uo\u803B\xBB\u40BBr\u0580;abcfhlpstw\u0FDC\u30AC\u30AF\u30B7\u30B9\u30BC\u30BE\u30C0\u30C3\u30C7\u30CAp;\u6975\u0100;f\u0FE0\u30B4s;\u6920;\u6933s;\u691E\xEB\u225D\xF0\u272El;\u6945im;\u6974l;\u61A3;\u619D\u0100ai\u30D1\u30D5il;\u691Ao\u0100;n\u30DB\u30DC\u6236al\xF3\u0F1E\u0180abr\u30E7\u30EA\u30EEr\xF2\u17E5rk;\u6773\u0100ak\u30F3\u30FDc\u0100ek\u30F9\u30FB;\u407D;\u405D\u0100es\u3102\u3104;\u698Cl\u0100du\u310A\u310C;\u698E;\u6990\u0200aeuy\u3117\u311C\u3127\u3129ron;\u4159\u0100di\u3121\u3125il;\u4157\xEC\u0FF2\xE2\u30FA;\u4440\u0200clqs\u3134\u3137\u313D\u3144a;\u6937dhar;\u6969uo\u0100;r\u020E\u020Dh;\u61B3\u0180acg\u314E\u315F\u0F44l\u0200;ips\u0F78\u3158\u315B\u109Cn\xE5\u10BBar\xF4\u0FA9t;\u65AD\u0180ilr\u3169\u1023\u316Esht;\u697D;\uC000\u{1D52F}\u0100ao\u3177\u3186r\u0100du\u317D\u317F\xBB\u047B\u0100;l\u1091\u3184;\u696C\u0100;v\u318B\u318C\u43C1;\u43F1\u0180gns\u3195\u31F9\u31FCht\u0300ahlrst\u31A4\u31B0\u31C2\u31D8\u31E4\u31EErrow\u0100;t\u0FDC\u31ADa\xE9\u30C8arpoon\u0100du\u31BB\u31BFow\xEE\u317Ep\xBB\u1092eft\u0100ah\u31CA\u31D0rrow\xF3\u0FEAarpoon\xF3\u0551ightarrows;\u61C9quigarro\xF7\u30CBhreetimes;\u62CCg;\u42DAingdotse\xF1\u1F32\u0180ahm\u320D\u3210\u3213r\xF2\u0FEAa\xF2\u0551;\u600Foust\u0100;a\u321E\u321F\u63B1che\xBB\u321Fmid;\u6AEE\u0200abpt\u3232\u323D\u3240\u3252\u0100nr\u3237\u323Ag;\u67EDr;\u61FEr\xEB\u1003\u0180afl\u3247\u324A\u324Er;\u6986;\uC000\u{1D563}us;\u6A2Eimes;\u6A35\u0100ap\u325D\u3267r\u0100;g\u3263\u3264\u4029t;\u6994olint;\u6A12ar\xF2\u31E3\u0200achq\u327B\u3280\u10BC\u3285quo;\u603Ar;\uC000\u{1D4C7}\u0100bu\u30FB\u328Ao\u0100;r\u0214\u0213\u0180hir\u3297\u329B\u32A0re\xE5\u31F8mes;\u62CAi\u0200;efl\u32AA\u1059\u1821\u32AB\u65B9tri;\u69CEluhar;\u6968;\u611E\u0D61\u32D5\u32DB\u32DF\u332C\u3338\u3371\0\u337A\u33A4\0\0\u33EC\u33F0\0\u3428\u3448\u345A\u34AD\u34B1\u34CA\u34F1\0\u3616\0\0\u3633cute;\u415Bqu\xEF\u27BA\u0500;Eaceinpsy\u11ED\u32F3\u32F5\u32FF\u3302\u330B\u330F\u331F\u3326\u3329;\u6AB4\u01F0\u32FA\0\u32FC;\u6AB8on;\u4161u\xE5\u11FE\u0100;d\u11F3\u3307il;\u415Frc;\u415D\u0180Eas\u3316\u3318\u331B;\u6AB6p;\u6ABAim;\u62E9olint;\u6A13i\xED\u1204;\u4441ot\u0180;be\u3334\u1D47\u3335\u62C5;\u6A66\u0380Aacmstx\u3346\u334A\u3357\u335B\u335E\u3363\u336Drr;\u61D8r\u0100hr\u3350\u3352\xEB\u2228\u0100;o\u0A36\u0A34t\u803B\xA7\u40A7i;\u403Bwar;\u6929m\u0100in\u3369\xF0nu\xF3\xF1t;\u6736r\u0100;o\u3376\u2055\uC000\u{1D530}\u0200acoy\u3382\u3386\u3391\u33A0rp;\u666F\u0100hy\u338B\u338Fcy;\u4449;\u4448rt\u026D\u3399\0\0\u339Ci\xE4\u1464ara\xEC\u2E6F\u803B\xAD\u40AD\u0100gm\u33A8\u33B4ma\u0180;fv\u33B1\u33B2\u33B2\u43C3;\u43C2\u0400;deglnpr\u12AB\u33C5\u33C9\u33CE\u33D6\u33DE\u33E1\u33E6ot;\u6A6A\u0100;q\u12B1\u12B0\u0100;E\u33D3\u33D4\u6A9E;\u6AA0\u0100;E\u33DB\u33DC\u6A9D;\u6A9Fe;\u6246lus;\u6A24arr;\u6972ar\xF2\u113D\u0200aeit\u33F8\u3408\u340F\u3417\u0100ls\u33FD\u3404lsetm\xE9\u336Ahp;\u6A33parsl;\u69E4\u0100dl\u1463\u3414e;\u6323\u0100;e\u341C\u341D\u6AAA\u0100;s\u3422\u3423\u6AAC;\uC000\u2AAC\uFE00\u0180flp\u342E\u3433\u3442tcy;\u444C\u0100;b\u3438\u3439\u402F\u0100;a\u343E\u343F\u69C4r;\u633Ff;\uC000\u{1D564}a\u0100dr\u344D\u0402es\u0100;u\u3454\u3455\u6660it\xBB\u3455\u0180csu\u3460\u3479\u349F\u0100au\u3465\u346Fp\u0100;s\u1188\u346B;\uC000\u2293\uFE00p\u0100;s\u11B4\u3475;\uC000\u2294\uFE00u\u0100bp\u347F\u348F\u0180;es\u1197\u119C\u3486et\u0100;e\u1197\u348D\xF1\u119D\u0180;es\u11A8\u11AD\u3496et\u0100;e\u11A8\u349D\xF1\u11AE\u0180;af\u117B\u34A6\u05B0r\u0165\u34AB\u05B1\xBB\u117Car\xF2\u1148\u0200cemt\u34B9\u34BE\u34C2\u34C5r;\uC000\u{1D4C8}tm\xEE\xF1i\xEC\u3415ar\xE6\u11BE\u0100ar\u34CE\u34D5r\u0100;f\u34D4\u17BF\u6606\u0100an\u34DA\u34EDight\u0100ep\u34E3\u34EApsilo\xEE\u1EE0h\xE9\u2EAFs\xBB\u2852\u0280bcmnp\u34FB\u355E\u1209\u358B\u358E\u0480;Edemnprs\u350E\u350F\u3511\u3515\u351E\u3523\u352C\u3531\u3536\u6282;\u6AC5ot;\u6ABD\u0100;d\u11DA\u351Aot;\u6AC3ult;\u6AC1\u0100Ee\u3528\u352A;\u6ACB;\u628Alus;\u6ABFarr;\u6979\u0180eiu\u353D\u3552\u3555t\u0180;en\u350E\u3545\u354Bq\u0100;q\u11DA\u350Feq\u0100;q\u352B\u3528m;\u6AC7\u0100bp\u355A\u355C;\u6AD5;\u6AD3c\u0300;acens\u11ED\u356C\u3572\u3579\u357B\u3326ppro\xF8\u32FAurlye\xF1\u11FE\xF1\u11F3\u0180aes\u3582\u3588\u331Bppro\xF8\u331Aq\xF1\u3317g;\u666A\u0680123;Edehlmnps\u35A9\u35AC\u35AF\u121C\u35B2\u35B4\u35C0\u35C9\u35D5\u35DA\u35DF\u35E8\u35ED\u803B\xB9\u40B9\u803B\xB2\u40B2\u803B\xB3\u40B3;\u6AC6\u0100os\u35B9\u35BCt;\u6ABEub;\u6AD8\u0100;d\u1222\u35C5ot;\u6AC4s\u0100ou\u35CF\u35D2l;\u67C9b;\u6AD7arr;\u697Bult;\u6AC2\u0100Ee\u35E4\u35E6;\u6ACC;\u628Blus;\u6AC0\u0180eiu\u35F4\u3609\u360Ct\u0180;en\u121C\u35FC\u3602q\u0100;q\u1222\u35B2eq\u0100;q\u35E7\u35E4m;\u6AC8\u0100bp\u3611\u3613;\u6AD4;\u6AD6\u0180Aan\u361C\u3620\u362Drr;\u61D9r\u0100hr\u3626\u3628\xEB\u222E\u0100;o\u0A2B\u0A29war;\u692Alig\u803B\xDF\u40DF\u0BE1\u3651\u365D\u3660\u12CE\u3673\u3679\0\u367E\u36C2\0\0\0\0\0\u36DB\u3703\0\u3709\u376C\0\0\0\u3787\u0272\u3656\0\0\u365Bget;\u6316;\u43C4r\xEB\u0E5F\u0180aey\u3666\u366B\u3670ron;\u4165dil;\u4163;\u4442lrec;\u6315r;\uC000\u{1D531}\u0200eiko\u3686\u369D\u36B5\u36BC\u01F2\u368B\0\u3691e\u01004f\u1284\u1281a\u0180;sv\u3698\u3699\u369B\u43B8ym;\u43D1\u0100cn\u36A2\u36B2k\u0100as\u36A8\u36AEppro\xF8\u12C1im\xBB\u12ACs\xF0\u129E\u0100as\u36BA\u36AE\xF0\u12C1rn\u803B\xFE\u40FE\u01EC\u031F\u36C6\u22E7es\u8180\xD7;bd\u36CF\u36D0\u36D8\u40D7\u0100;a\u190F\u36D5r;\u6A31;\u6A30\u0180eps\u36E1\u36E3\u3700\xE1\u2A4D\u0200;bcf\u0486\u36EC\u36F0\u36F4ot;\u6336ir;\u6AF1\u0100;o\u36F9\u36FC\uC000\u{1D565}rk;\u6ADA\xE1\u3362rime;\u6034\u0180aip\u370F\u3712\u3764d\xE5\u1248\u0380adempst\u3721\u374D\u3740\u3751\u3757\u375C\u375Fngle\u0280;dlqr\u3730\u3731\u3736\u3740\u3742\u65B5own\xBB\u1DBBeft\u0100;e\u2800\u373E\xF1\u092E;\u625Cight\u0100;e\u32AA\u374B\xF1\u105Aot;\u65ECinus;\u6A3Alus;\u6A39b;\u69CDime;\u6A3Bezium;\u63E2\u0180cht\u3772\u377D\u3781\u0100ry\u3777\u377B;\uC000\u{1D4C9};\u4446cy;\u445Brok;\u4167\u0100io\u378B\u378Ex\xF4\u1777head\u0100lr\u3797\u37A0eftarro\xF7\u084Fightarrow\xBB\u0F5D\u0900AHabcdfghlmoprstuw\u37D0\u37D3\u37D7\u37E4\u37F0\u37FC\u380E\u381C\u3823\u3834\u3851\u385D\u386B\u38A9\u38CC\u38D2\u38EA\u38F6r\xF2\u03EDar;\u6963\u0100cr\u37DC\u37E2ute\u803B\xFA\u40FA\xF2\u1150r\u01E3\u37EA\0\u37EDy;\u445Eve;\u416D\u0100iy\u37F5\u37FArc\u803B\xFB\u40FB;\u4443\u0180abh\u3803\u3806\u380Br\xF2\u13ADlac;\u4171a\xF2\u13C3\u0100ir\u3813\u3818sht;\u697E;\uC000\u{1D532}rave\u803B\xF9\u40F9\u0161\u3827\u3831r\u0100lr\u382C\u382E\xBB\u0957\xBB\u1083lk;\u6580\u0100ct\u3839\u384D\u026F\u383F\0\0\u384Arn\u0100;e\u3845\u3846\u631Cr\xBB\u3846op;\u630Fri;\u65F8\u0100al\u3856\u385Acr;\u416B\u80BB\xA8\u0349\u0100gp\u3862\u3866on;\u4173f;\uC000\u{1D566}\u0300adhlsu\u114B\u3878\u387D\u1372\u3891\u38A0own\xE1\u13B3arpoon\u0100lr\u3888\u388Cef\xF4\u382Digh\xF4\u382Fi\u0180;hl\u3899\u389A\u389C\u43C5\xBB\u13FAon\xBB\u389Aparrows;\u61C8\u0180cit\u38B0\u38C4\u38C8\u026F\u38B6\0\0\u38C1rn\u0100;e\u38BC\u38BD\u631Dr\xBB\u38BDop;\u630Eng;\u416Fri;\u65F9cr;\uC000\u{1D4CA}\u0180dir\u38D9\u38DD\u38E2ot;\u62F0lde;\u4169i\u0100;f\u3730\u38E8\xBB\u1813\u0100am\u38EF\u38F2r\xF2\u38A8l\u803B\xFC\u40FCangle;\u69A7\u0780ABDacdeflnoprsz\u391C\u391F\u3929\u392D\u39B5\u39B8\u39BD\u39DF\u39E4\u39E8\u39F3\u39F9\u39FD\u3A01\u3A20r\xF2\u03F7ar\u0100;v\u3926\u3927\u6AE8;\u6AE9as\xE8\u03E1\u0100nr\u3932\u3937grt;\u699C\u0380eknprst\u34E3\u3946\u394B\u3952\u395D\u3964\u3996app\xE1\u2415othin\xE7\u1E96\u0180hir\u34EB\u2EC8\u3959op\xF4\u2FB5\u0100;h\u13B7\u3962\xEF\u318D\u0100iu\u3969\u396Dgm\xE1\u33B3\u0100bp\u3972\u3984setneq\u0100;q\u397D\u3980\uC000\u228A\uFE00;\uC000\u2ACB\uFE00setneq\u0100;q\u398F\u3992\uC000\u228B\uFE00;\uC000\u2ACC\uFE00\u0100hr\u399B\u399Fet\xE1\u369Ciangle\u0100lr\u39AA\u39AFeft\xBB\u0925ight\xBB\u1051y;\u4432ash\xBB\u1036\u0180elr\u39C4\u39D2\u39D7\u0180;be\u2DEA\u39CB\u39CFar;\u62BBq;\u625Alip;\u62EE\u0100bt\u39DC\u1468a\xF2\u1469r;\uC000\u{1D533}tr\xE9\u39AEsu\u0100bp\u39EF\u39F1\xBB\u0D1C\xBB\u0D59pf;\uC000\u{1D567}ro\xF0\u0EFBtr\xE9\u39B4\u0100cu\u3A06\u3A0Br;\uC000\u{1D4CB}\u0100bp\u3A10\u3A18n\u0100Ee\u3980\u3A16\xBB\u397En\u0100Ee\u3992\u3A1E\xBB\u3990igzag;\u699A\u0380cefoprs\u3A36\u3A3B\u3A56\u3A5B\u3A54\u3A61\u3A6Airc;\u4175\u0100di\u3A40\u3A51\u0100bg\u3A45\u3A49ar;\u6A5Fe\u0100;q\u15FA\u3A4F;\u6259erp;\u6118r;\uC000\u{1D534}pf;\uC000\u{1D568}\u0100;e\u1479\u3A66at\xE8\u1479cr;\uC000\u{1D4CC}\u0AE3\u178E\u3A87\0\u3A8B\0\u3A90\u3A9B\0\0\u3A9D\u3AA8\u3AAB\u3AAF\0\0\u3AC3\u3ACE\0\u3AD8\u17DC\u17DFtr\xE9\u17D1r;\uC000\u{1D535}\u0100Aa\u3A94\u3A97r\xF2\u03C3r\xF2\u09F6;\u43BE\u0100Aa\u3AA1\u3AA4r\xF2\u03B8r\xF2\u09EBa\xF0\u2713is;\u62FB\u0180dpt\u17A4\u3AB5\u3ABE\u0100fl\u3ABA\u17A9;\uC000\u{1D569}im\xE5\u17B2\u0100Aa\u3AC7\u3ACAr\xF2\u03CEr\xF2\u0A01\u0100cq\u3AD2\u17B8r;\uC000\u{1D4CD}\u0100pt\u17D6\u3ADCr\xE9\u17D4\u0400acefiosu\u3AF0\u3AFD\u3B08\u3B0C\u3B11\u3B15\u3B1B\u3B21c\u0100uy\u3AF6\u3AFBte\u803B\xFD\u40FD;\u444F\u0100iy\u3B02\u3B06rc;\u4177;\u444Bn\u803B\xA5\u40A5r;\uC000\u{1D536}cy;\u4457pf;\uC000\u{1D56A}cr;\uC000\u{1D4CE}\u0100cm\u3B26\u3B29y;\u444El\u803B\xFF\u40FF\u0500acdefhiosw\u3B42\u3B48\u3B54\u3B58\u3B64\u3B69\u3B6D\u3B74\u3B7A\u3B80cute;\u417A\u0100ay\u3B4D\u3B52ron;\u417E;\u4437ot;\u417C\u0100et\u3B5D\u3B61tr\xE6\u155Fa;\u43B6r;\uC000\u{1D537}cy;\u4436grarr;\u61DDpf;\uC000\u{1D56B}cr;\uC000\u{1D4CF}\u0100jn\u3B85\u3B87;\u600Dj;\u600C'.split("").map(e=>e.charCodeAt(0)));var _C=new Uint16Array("\u0200aglq \x1B\u026D\0\0p;\u4026os;\u4027t;\u403Et;\u403Cuot;\u4022".split("").map(e=>e.charCodeAt(0)));var pS,tNe=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),aA=(pS=String.fromCodePoint)!==null&&pS!==void 0?pS:function(e){let t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|e&1023),t+=String.fromCharCode(e),t};function gS(e){var t;return e>=55296&&e<=57343||e>1114111?65533:(t=tNe.get(e))!==null&&t!==void 0?t:e}var br;(function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"})(br||(br={}));var rNe=32,Da;(function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"})(Da||(Da={}));function mS(e){return e>=br.ZERO&&e<=br.NINE}function nNe(e){return e>=br.UPPER_A&&e<=br.UPPER_F||e>=br.LOWER_A&&e<=br.LOWER_F}function sNe(e){return e>=br.UPPER_A&&e<=br.UPPER_Z||e>=br.LOWER_A&&e<=br.LOWER_Z||mS(e)}function iNe(e){return e===br.EQUALS||sNe(e)}var Ir;(function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"})(Ir||(Ir={}));var jr;(function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"})(jr||(jr={}));var Na=class{constructor(t,r,n){this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=Ir.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=jr.Strict}startEntity(t){this.decodeMode=t,this.state=Ir.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}write(t,r){switch(this.state){case Ir.EntityStart:return t.charCodeAt(r)===br.NUM?(this.state=Ir.NumericStart,this.consumed+=1,this.stateNumericStart(t,r+1)):(this.state=Ir.NamedEntity,this.stateNamedEntity(t,r));case Ir.NumericStart:return this.stateNumericStart(t,r);case Ir.NumericDecimal:return this.stateNumericDecimal(t,r);case Ir.NumericHex:return this.stateNumericHex(t,r);case Ir.NamedEntity:return this.stateNamedEntity(t,r)}}stateNumericStart(t,r){return r>=t.length?-1:(t.charCodeAt(r)|rNe)===br.LOWER_X?(this.state=Ir.NumericHex,this.consumed+=1,this.stateNumericHex(t,r+1)):(this.state=Ir.NumericDecimal,this.stateNumericDecimal(t,r))}addToNumericResult(t,r,n,s){if(r!==n){let i=n-r;this.result=this.result*Math.pow(s,i)+parseInt(t.substr(r,i),s),this.consumed+=i}}stateNumericHex(t,r){let n=r;for(;r>14;for(;r>14,i!==0){if(o===br.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==jr.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1}emitNotTerminatedNamedEntity(){var t;let{result:r,decodeTree:n}=this,s=(n[r]&Da.VALUE_LENGTH)>>14;return this.emitNamedEntityData(r,s,this.consumed),(t=this.errors)===null||t===void 0||t.missingSemicolonAfterCharacterReference(),this.consumed}emitNamedEntityData(t,r,n){let{decodeTree:s}=this;return this.emitCodePoint(r===1?s[t]&~Da.VALUE_LENGTH:s[t+1],n),r===3&&this.emitCodePoint(s[t+2],n),n}end(){var t;switch(this.state){case Ir.NamedEntity:return this.result!==0&&(this.decodeMode!==jr.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case Ir.NumericDecimal:return this.emitNumericEntity(0,2);case Ir.NumericHex:return this.emitNumericEntity(0,3);case Ir.NumericStart:return(t=this.errors)===null||t===void 0||t.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case Ir.EntityStart:return 0}}};function nG(e){let t="",r=new Na(e,n=>t+=aA(n));return function(s,i){let o=0,a=0;for(;(a=s.indexOf("&",a))>=0;){t+=s.slice(o,a),r.startEntity(i);let u=r.write(s,a+1);if(u<0){o=a+r.end();break}o=a+u,a=u===0?o+1:o}let c=t+s.slice(o);return t="",c}}function oNe(e,t,r,n){let s=(t&Da.BRANCH_LENGTH)>>7,i=t&Da.JUMP_TABLE;if(s===0)return i!==0&&n===i?r:-1;if(i){let c=n-i;return c<0||c>=s?-1:e[r+c]-1}let o=r,a=o+s-1;for(;o<=a;){let c=o+a>>>1,u=e[c];if(un)a=c-1;else return e[c+s]}return-1}var tot=nG(oA),rot=nG(_C);function RC(e){for(let t=1;t$\x80-\uFFFF]/g,sG=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]),iG=String.prototype.codePointAt!=null?(e,t)=>e.codePointAt(t):(e,t)=>(e.charCodeAt(t)&64512)===55296?(e.charCodeAt(t)-55296)*1024+e.charCodeAt(t+1)-56320+65536:e.charCodeAt(t);function Oh(e){let t="",r=0,n;for(;(n=ES.exec(e))!==null;){let s=n.index,i=e.charCodeAt(s),o=sG.get(i);o!==void 0?(t+=e.substring(r,s)+o,r=s+1):(t+=`${e.substring(r,s)}&#x${iG(e,s).toString(16)};`,r=ES.lastIndex+=+((i&64512)===55296))}return t+e.substr(r)}function CS(e,t){return function(n){let s,i=0,o="";for(;s=e.exec(n);)i!==s.index&&(o+=n.substring(i,s.index)),o+=t.get(s[0].charCodeAt(0)),i=s.index+1;return o+n.substring(i)}}var oG=CS(/[&<>'"]/g,sG),cA=CS(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),uA=CS(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]]));var aG;(function(e){e[e.XML=0]="XML",e[e.HTML=1]="HTML"})(aG||(aG={}));var cG;(function(e){e[e.UTF8=0]="UTF8",e[e.ASCII=1]="ASCII",e[e.Extensive=2]="Extensive",e[e.Attribute=3]="Attribute",e[e.Text=4]="Text"})(cG||(cG={}));var AG=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(e=>[e.toLowerCase(),e])),fG=new Map(["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(e=>[e.toLowerCase(),e]));var uNe=new Set(["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"]);function lNe(e){return e.replace(/"/g,""")}function ANe(e,t){var r;if(!e)return;let n=((r=t.encodeEntities)!==null&&r!==void 0?r:t.decodeEntities)===!1?lNe:t.xmlMode||t.encodeEntities!=="utf8"?Oh:cA;return Object.keys(e).map(s=>{var i,o;let a=(i=e[s])!==null&&i!==void 0?i:"";return t.xmlMode==="foreign"&&(s=(o=fG.get(s))!==null&&o!==void 0?o:s),!t.emptyAttrs&&!t.xmlMode&&a===""?s:`${s}="${n(a)}"`}).join(" ")}var dG=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]);function bS(e,t={}){let r="length"in e?e:[e],n="";for(let s=0;s0&&(n+=bS(e.children,t)),(t.xmlMode||!dG.has(e.name))&&(n+=``)),n}function gNe(e){return`<${e.data}>`}function mNe(e,t){var r;let n=e.data||"";return((r=t.encodeEntities)!==null&&r!==void 0?r:t.decodeEntities)!==!1&&!(!t.xmlMode&&e.parent&&uNe.has(e.parent.name))&&(n=t.xmlMode||t.encodeEntities!=="utf8"?Oh(n):uA(n)),n}function ENe(e){return``}function CNe(e){return``}function hG(e,t){return DC(e,t)}function yNe(e,t){return yt(e)?e.children.map(r=>hG(r,t)).join(""):""}function NC(e){return Array.isArray(e)?e.map(NC).join(""):Ae(e)?e.name==="br"?` +`:NC(e.children):nA(e)?NC(e.children):Tn(e)?e.data:""}function To(e){return Array.isArray(e)?e.map(To).join(""):yt(e)&&!ru(e)?To(e.children):Tn(e)?e.data:""}function Mh(e){return Array.isArray(e)?e.map(Mh).join(""):yt(e)&&(e.type===st.Tag||nA(e))?Mh(e.children):Tn(e)?e.data:""}function lA(e){return yt(e)?e.children:[]}function pG(e){return e.parent||null}function BS(e){let t=pG(e);if(t!=null)return lA(t);let r=[e],{prev:n,next:s}=e;for(;n!=null;)r.unshift(n),{prev:n}=n;for(;s!=null;)r.push(s),{next:s}=s;return r}function INe(e,t){var r;return(r=e.attribs)===null||r===void 0?void 0:r[t]}function bNe(e,t){return e.attribs!=null&&Object.prototype.hasOwnProperty.call(e.attribs,t)&&e.attribs[t]!=null}function BNe(e){return e.name}function kC(e){let{next:t}=e;for(;t!==null&&!Ae(t);)({next:t}=t);return t}function FC(e){let{prev:t}=e;for(;t!==null&&!Ae(t);)({prev:t}=t);return t}function wo(e){if(e.prev&&(e.prev.next=e.next),e.next&&(e.next.prev=e.prev),e.parent){let t=e.parent.children,r=t.lastIndexOf(e);r>=0&&t.splice(r,1)}e.next=null,e.prev=null,e.parent=null}function xNe(e,t){let r=t.prev=e.prev;r&&(r.next=t);let n=t.next=e.next;n&&(n.prev=t);let s=t.parent=e.parent;if(s){let i=s.children;i[i.lastIndexOf(e)]=t,e.parent=null}}function vNe(e,t){if(wo(t),t.next=null,t.parent=e,e.children.push(t)>1){let r=e.children[e.children.length-2];r.next=t,t.prev=r}else t.prev=null}function QNe(e,t){wo(t);let{parent:r}=e,n=e.next;if(t.next=n,t.prev=e,e.next=t,t.parent=r,n){if(n.prev=t,r){let s=r.children;s.splice(s.lastIndexOf(n),0,t)}}else r&&r.children.push(t)}function TNe(e,t){if(wo(t),t.parent=e,t.prev=null,e.children.unshift(t)!==1){let r=e.children[1];r.prev=t,t.next=r}else t.next=null}function wNe(e,t){wo(t);let{parent:r}=e;if(r){let n=r.children;n.splice(n.indexOf(e),0,t)}e.prev&&(e.prev.next=t),t.parent=r,t.prev=e.prev,t.next=e,e.prev=t}function AA(e,t,r=!0,n=1/0){return LC(e,Array.isArray(t)?t:[t],r,n)}function LC(e,t,r,n){let s=[],i=[Array.isArray(t)?t:[t]],o=[0];for(;;){if(o[0]>=i[0].length){if(o.length===1)return s;i.shift(),o.shift();continue}let a=i[0][o[0]++];if(e(a)&&(s.push(a),--n<=0))return s;r&&yt(a)&&a.children.length>0&&(o.unshift(0),i.unshift(a.children))}}function SNe(e,t){return t.find(e)}function OC(e,t,r=!0){let n=Array.isArray(t)?t:[t];for(let s=0;s0){let o=OC(e,i.children,!0);if(o)return o}}return null}function gG(e,t){return(Array.isArray(t)?t:[t]).some(r=>Ae(r)&&e(r)||yt(r)&&gG(e,r.children))}function _Ne(e,t){let r=[],n=[Array.isArray(t)?t:[t]],s=[0];for(;;){if(s[0]>=n[0].length){if(n.length===1)return r;n.shift(),s.shift();continue}let i=n[0][s[0]++];Ae(i)&&e(i)&&r.push(i),yt(i)&&i.children.length>0&&(s.unshift(0),n.unshift(i.children))}}var MC={tag_name(e){return typeof e=="function"?t=>Ae(t)&&e(t.name):e==="*"?Ae:t=>Ae(t)&&t.name===e},tag_type(e){return typeof e=="function"?t=>e(t.type):t=>t.type===e},tag_contains(e){return typeof e=="function"?t=>Tn(t)&&e(t.data):t=>Tn(t)&&t.data===e}};function xS(e,t){return typeof t=="function"?r=>Ae(r)&&t(r.attribs[e]):r=>Ae(r)&&r.attribs[e]===t}function RNe(e,t){return r=>e(r)||t(r)}function mG(e){let t=Object.keys(e).map(r=>{let n=e[r];return Object.prototype.hasOwnProperty.call(MC,r)?MC[r](n):xS(r,n)});return t.length===0?null:t.reduce(RNe)}function DNe(e,t){let r=mG(e);return r?r(t):!0}function NNe(e,t,r,n=1/0){let s=mG(e);return s?AA(s,t,r,n):[]}function kNe(e,t,r=!0){return Array.isArray(t)||(t=[t]),OC(xS("id",e),t,r)}function nu(e,t,r=!0,n=1/0){return AA(MC.tag_name(e),t,r,n)}function FNe(e,t,r=!0,n=1/0){return AA(xS("class",e),t,r,n)}function LNe(e,t,r=!0,n=1/0){return AA(MC.tag_type(e),t,r,n)}function ONe(e){let t=e.length;for(;--t>=0;){let r=e[t];if(t>0&&e.lastIndexOf(r,t-1)>=0){e.splice(t,1);continue}for(let n=r.parent;n;n=n.parent)if(e.includes(n)){e.splice(t,1);break}}return e}var Is;(function(e){e[e.DISCONNECTED=1]="DISCONNECTED",e[e.PRECEDING=2]="PRECEDING",e[e.FOLLOWING=4]="FOLLOWING",e[e.CONTAINS=8]="CONTAINS",e[e.CONTAINED_BY=16]="CONTAINED_BY"})(Is||(Is={}));function EG(e,t){let r=[],n=[];if(e===t)return 0;let s=yt(e)?e:e.parent;for(;s;)r.unshift(s),s=s.parent;for(s=yt(t)?t:t.parent;s;)n.unshift(s),s=s.parent;let i=Math.min(r.length,n.length),o=0;for(;oc.indexOf(l)?a===t?Is.FOLLOWING|Is.CONTAINED_BY:Is.FOLLOWING:a===e?Is.PRECEDING|Is.CONTAINS:Is.PRECEDING}function ka(e){return e=e.filter((t,r,n)=>!n.includes(t,r+1)),e.sort((t,r)=>{let n=EG(t,r);return n&Is.PRECEDING?-1:n&Is.FOLLOWING?1:0}),e}function vS(e){let t=PC(qNe,e);return t?t.name==="feed"?MNe(t):PNe(t):null}function MNe(e){var t;let r=e.children,n={type:"atom",items:nu("entry",r).map(o=>{var a;let{children:c}=o,u={media:CG(c)};wn(u,"id","id",c),wn(u,"title","title",c);let l=(a=PC("link",c))===null||a===void 0?void 0:a.attribs.href;l&&(u.link=l);let A=Fa("summary",c)||Fa("content",c);A&&(u.description=A);let f=Fa("updated",c);return f&&(u.pubDate=new Date(f)),u})};wn(n,"id","id",r),wn(n,"title","title",r);let s=(t=PC("link",r))===null||t===void 0?void 0:t.attribs.href;s&&(n.link=s),wn(n,"description","subtitle",r);let i=Fa("updated",r);return i&&(n.updated=new Date(i)),wn(n,"author","email",r,!0),n}function PNe(e){var t,r;let n=(r=(t=PC("channel",e.children))===null||t===void 0?void 0:t.children)!==null&&r!==void 0?r:[],s={type:e.name.substr(0,3),id:"",items:nu("item",e.children).map(o=>{let{children:a}=o,c={media:CG(a)};wn(c,"id","guid",a),wn(c,"title","title",a),wn(c,"link","link",a),wn(c,"description","description",a);let u=Fa("pubDate",a)||Fa("dc:date",a);return u&&(c.pubDate=new Date(u)),c})};wn(s,"title","title",n),wn(s,"link","link",n),wn(s,"description","description",n);let i=Fa("lastBuildDate",n);return i&&(s.updated=new Date(i)),wn(s,"author","managingEditor",n,!0),s}var UNe=["url","type","lang"],HNe=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function CG(e){return nu("media:content",e).map(t=>{let{attribs:r}=t,n={medium:r.medium,isDefault:!!r.isDefault};for(let s of UNe)r[s]&&(n[s]=r[s]);for(let s of HNe)r[s]&&(n[s]=parseInt(r[s],10));return r.expression&&(n.expression=r.expression),n})}function PC(e,t){return nu(e,t,!0,1)[0]}function Fa(e,t,r=!1){return To(nu(e,t,r,1)).trim()}function wn(e,t,r,n,s=!1){let i=Fa(r,n,s);i&&(e[t]=i)}function qNe(e){return e==="rss"||e==="feed"||e==="rdf:RDF"}function IG(e,t,r){return e?e(t??e._root.children,null,void 0,r).toString():""}function VNe(e,t){return!t&&typeof e=="object"&&e!=null&&!("length"in e)&&!("type"in e)}function YNe(e,t){let r=VNe(e)?(t=e,void 0):e,n={...this===null||this===void 0?void 0:this._options,...rA(t)};return IG(this,r,n)}function $Ne(e){let t={...this._options,xmlMode:!0};return IG(this,e,t)}function su(e){let t=e??(this?this.root():[]),r="";for(let n=0;nSG,attr:()=>zNe,data:()=>eke,hasClass:()=>nke,prop:()=>XNe,removeAttr:()=>rke,removeClass:()=>_G,toggleClass:()=>RG,val:()=>tke});function bs(e){return e.cheerio!=null}function BG(e){return e.replace(/[._-](\w|$)/g,(t,r)=>r.toUpperCase())}function xG(e){return e.replace(/[A-Z]/g,"-$&").toLowerCase()}function Qt(e,t){let r=e.length;for(let n=0;ne.length-3)return!1;let r=e.charCodeAt(t+1);return(r>=iu.LowerA&&r<=iu.LowerZ||r>=iu.UpperA&&r<=iu.UpperZ||r===iu.Exclamation)&&e.includes(">",t+2)}var Uh=Object.prototype.hasOwnProperty,Hh=/\s+/,wS="data-",SS=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,WNe=/^{[^]*}$|^\[[^]*]$/;function HC(e,t,r){var n;if(!(!e||!Ae(e))){if((n=e.attribs)!==null&&n!==void 0||(e.attribs={}),!t)return e.attribs;if(Uh.call(e.attribs,t))return!r&&SS.test(t)?t:e.attribs[t];if(e.name==="option"&&t==="value")return su(e.children);if(e.name==="input"&&(e.attribs.type==="radio"||e.attribs.type==="checkbox")&&t==="value")return"on"}}function fA(e,t,r){r===null?wG(e,t):e.attribs[t]=`${r}`}function zNe(e,t){if(typeof e=="object"||t!==void 0){if(typeof t=="function"){if(typeof e!="string")throw new Error("Bad combination of arguments.");return Qt(this,(r,n)=>{Ae(r)&&fA(r,e,t.call(r,n,r.attribs[e]))})}return Qt(this,r=>{if(Ae(r))if(typeof e=="object")for(let n of Object.keys(e)){let s=e[n];fA(r,n,s)}else fA(r,e,t)})}return arguments.length>1?this:HC(this[0],e,this.options.xmlMode)}function vG(e,t,r){return t in e?e[t]:!r&&SS.test(t)?HC(e,t,!1)!==void 0:HC(e,t,r)}function TS(e,t,r,n){t in e?e[t]=r:fA(e,t,!n&&SS.test(t)?r?"":null:`${r}`)}function XNe(e,t){var r;if(typeof e=="string"&&t===void 0){let n=this[0];if(!n||!Ae(n))return;switch(e){case"style":{let s=this.css(),i=Object.keys(s);for(let o=0;o").parent().html();case"innerHTML":return this.html();default:return vG(n,e,this.options.xmlMode)}}if(typeof e=="object"||t!==void 0){if(typeof t=="function"){if(typeof e=="object")throw new TypeError("Bad combination of arguments.");return Qt(this,(n,s)=>{Ae(n)&&TS(n,e,t.call(n,s,vG(n,e,this.options.xmlMode)),this.options.xmlMode)})}return Qt(this,n=>{if(Ae(n))if(typeof e=="object")for(let s of Object.keys(e)){let i=e[s];TS(n,s,i,this.options.xmlMode)}else TS(n,e,t,this.options.xmlMode)})}}function QG(e,t,r){var n;(n=e.data)!==null&&n!==void 0||(e.data={}),typeof t=="object"?Object.assign(e.data,t):typeof t=="string"&&r!==void 0&&(e.data[t]=r)}function KNe(e){for(let t of Object.keys(e.attribs)){if(!t.startsWith(wS))continue;let r=BG(t.slice(wS.length));Uh.call(e.data,r)||(e.data[r]=TG(e.attribs[t]))}return e.data}function ZNe(e,t){let r=wS+xG(t),n=e.data;if(Uh.call(n,t))return n[t];if(Uh.call(e.attribs,r))return n[t]=TG(e.attribs[r])}function TG(e){if(e==="null")return null;if(e==="true")return!0;if(e==="false")return!1;let t=Number(e);if(e===String(t))return t;if(WNe.test(e))try{return JSON.parse(e)}catch{}return e}function eke(e,t){var r;let n=this[0];if(!n||!Ae(n))return;let s=n;return(r=s.data)!==null&&r!==void 0||(s.data={}),e==null?KNe(s):typeof e=="object"||t!==void 0?(Qt(this,i=>{Ae(i)&&(typeof e=="object"?QG(i,e):QG(i,e,t))}),this):ZNe(s,e)}function tke(e){let t=arguments.length===0,r=this[0];if(!r||!Ae(r))return t?void 0:this;switch(r.name){case"textarea":return this.text(e);case"select":{let n=this.find("option:selected");if(!t){if(this.attr("multiple")==null&&typeof e=="object")return this;this.find("option").removeAttr("selected");let s=typeof e=="object"?e:[e];for(let i of s)this.find(`option[value="${i}"]`).attr("selected","");return this}return this.attr("multiple")?n.toArray().map(s=>su(s.children)):n.attr("value")}case"input":case"option":return t?this.attr("value"):this.attr("value",e)}}function wG(e,t){!e.attribs||!Uh.call(e.attribs,t)||delete e.attribs[t]}function qC(e){return e?e.trim().split(Hh):[]}function rke(e){let t=qC(e);for(let r of t)Qt(this,n=>{Ae(n)&&wG(n,r)});return this}function nke(e){return this.toArray().some(t=>{let r=Ae(t)&&t.attribs.class,n=-1;if(r&&e.length>0)for(;(n=r.indexOf(e,n+1))>-1;){let s=n+e.length;if((n===0||Hh.test(r[n-1]))&&(s===r.length||Hh.test(r[s])))return!0}return!1})}function SG(e){if(typeof e=="function")return Qt(this,(n,s)=>{if(Ae(n)){let i=n.attribs.class||"";SG.call([n],e.call(n,s,i))}});if(!e||typeof e!="string")return this;let t=e.split(Hh),r=this.length;for(let n=0;n{Ae(s)&&_G.call([s],e.call(s,i,s.attribs.class||""))});let t=qC(e),r=t.length,n=arguments.length===0;return Qt(this,s=>{if(Ae(s))if(n)s.attribs.class="";else{let i=qC(s.attribs.class),o=!1;for(let a=0;a=0&&(i.splice(c,1),o=!0,a--)}o&&(s.attribs.class=i.join(" "))}})}function RG(e,t){if(typeof e=="function")return Qt(this,(o,a)=>{Ae(o)&&RG.call([o],e.call(o,a,o.attribs.class||"",t),t)});if(!e||typeof e!="string")return this;let r=e.split(Hh),n=r.length,s=typeof t=="boolean"?t?1:-1:0,i=this.length;for(let o=0;o=0&&l<0?c.push(r[u]):s<=0&&l>=0&&c.splice(l,1)}a.attribs.class=c.join(" ")}return this}var ZS={};Us(ZS,{_findBySelector:()=>Mke,add:()=>fFe,addBack:()=>dFe,children:()=>zke,closest:()=>qke,contents:()=>Xke,each:()=>Kke,end:()=>AFe,eq:()=>oFe,filter:()=>eFe,filterArray:()=>KS,find:()=>Oke,first:()=>sFe,get:()=>aFe,has:()=>nFe,index:()=>uFe,is:()=>tFe,last:()=>iFe,map:()=>Zke,next:()=>Vke,nextAll:()=>Yke,nextUntil:()=>$ke,not:()=>rFe,parent:()=>Pke,parents:()=>Uke,parentsUntil:()=>Hke,prev:()=>Gke,prevAll:()=>jke,prevUntil:()=>Jke,siblings:()=>Wke,slice:()=>lFe,toArray:()=>cFe});var _n=Fe(gA(),1);var qS=Fe(Oa(),1);var ti=Fe(gA(),1),_o=Fe(Oa(),1);var un=Fe(gA(),1),GG=new Map([[un.SelectorType.Universal,50],[un.SelectorType.Tag,30],[un.SelectorType.Attribute,1],[un.SelectorType.Pseudo,0]]);function Vh(e){return!GG.has(e.type)}var Eke=new Map([[un.AttributeAction.Exists,10],[un.AttributeAction.Equals,8],[un.AttributeAction.Not,7],[un.AttributeAction.Start,6],[un.AttributeAction.End,6],[un.AttributeAction.Any,5]]);function DS(e){let t=e.map(jG);for(let r=1;r=0&&n>=1)):e.type===un.SelectorType.Pseudo&&(e.data?e.name==="has"||e.name==="contains"?n=0:Array.isArray(e.data)?(n=Math.min(...e.data.map(s=>Math.min(...s.map(jG)))),n<0&&(n=0)):n=2:n=3),n}var Yh=Fe(Oa(),1),Cke=/[-[\]{}()*+?.,\\^$|#\s]/g;function JG(e){return e.replace(Cke,"\\$&")}var yke=new Set(["accept","accept-charset","align","alink","axis","bgcolor","charset","checked","clear","codetype","color","compact","declare","defer","dir","direction","disabled","enctype","face","frame","hreflang","http-equiv","lang","language","link","media","method","multiple","nohref","noresize","noshade","nowrap","readonly","rel","rev","rules","scope","scrolling","selected","shape","target","text","type","valign","valuetype","vlink"]);function ou(e,t){return typeof e.ignoreCase=="boolean"?e.ignoreCase:e.ignoreCase==="quirks"?!!t.quirksMode:!t.xmlMode&&yke.has(e.name)}var WG={equals(e,t,r){let{adapter:n}=r,{name:s}=t,{value:i}=t;return ou(t,r)?(i=i.toLowerCase(),o=>{let a=n.getAttributeValue(o,s);return a!=null&&a.length===i.length&&a.toLowerCase()===i&&e(o)}):o=>n.getAttributeValue(o,s)===i&&e(o)},hyphen(e,t,r){let{adapter:n}=r,{name:s}=t,{value:i}=t,o=i.length;return ou(t,r)?(i=i.toLowerCase(),function(c){let u=n.getAttributeValue(c,s);return u!=null&&(u.length===o||u.charAt(o)==="-")&&u.substr(0,o).toLowerCase()===i&&e(c)}):function(c){let u=n.getAttributeValue(c,s);return u!=null&&(u.length===o||u.charAt(o)==="-")&&u.substr(0,o)===i&&e(c)}},element(e,t,r){let{adapter:n}=r,{name:s,value:i}=t;if(/\s/.test(i))return Yh.default.falseFunc;let o=new RegExp(`(?:^|\\s)${JG(i)}(?:$|\\s)`,ou(t,r)?"i":"");return function(c){let u=n.getAttributeValue(c,s);return u!=null&&u.length>=i.length&&o.test(u)&&e(c)}},exists(e,{name:t},{adapter:r}){return n=>r.hasAttrib(n,t)&&e(n)},start(e,t,r){let{adapter:n}=r,{name:s}=t,{value:i}=t,o=i.length;return o===0?Yh.default.falseFunc:ou(t,r)?(i=i.toLowerCase(),a=>{let c=n.getAttributeValue(a,s);return c!=null&&c.length>=o&&c.substr(0,o).toLowerCase()===i&&e(a)}):a=>{var c;return!!(!((c=n.getAttributeValue(a,s))===null||c===void 0)&&c.startsWith(i))&&e(a)}},end(e,t,r){let{adapter:n}=r,{name:s}=t,{value:i}=t,o=-i.length;return o===0?Yh.default.falseFunc:ou(t,r)?(i=i.toLowerCase(),a=>{var c;return((c=n.getAttributeValue(a,s))===null||c===void 0?void 0:c.substr(o).toLowerCase())===i&&e(a)}):a=>{var c;return!!(!((c=n.getAttributeValue(a,s))===null||c===void 0)&&c.endsWith(i))&&e(a)}},any(e,t,r){let{adapter:n}=r,{name:s,value:i}=t;if(i==="")return Yh.default.falseFunc;if(ou(t,r)){let o=new RegExp(JG(i),"i");return function(c){let u=n.getAttributeValue(c,s);return u!=null&&u.length>=i.length&&o.test(u)&&e(c)}}return o=>{var a;return!!(!((a=n.getAttributeValue(o,s))===null||a===void 0)&&a.includes(i))&&e(o)}},not(e,t,r){let{adapter:n}=r,{name:s}=t,{value:i}=t;return i===""?o=>!!n.getAttributeValue(o,s)&&e(o):ou(t,r)?(i=i.toLowerCase(),o=>{let a=n.getAttributeValue(o,s);return(a==null||a.length!==i.length||a.toLowerCase()!==i)&&e(o)}):o=>n.getAttributeValue(o,s)!==i&&e(o)}};var ZG=Fe(gA(),1);var Ike=new Set([9,10,12,13,32]),zG=48,bke=57;function XG(e){if(e=e.trim().toLowerCase(),e==="even")return[2,0];if(e==="odd")return[2,1];let t=0,r=0,n=i(),s=o();if(t=zG&&e.charCodeAt(t)<=bke;)u=u*10+(e.charCodeAt(t)-zG),t++;return t===c?null:u}function a(){for(;ti<=r;if(t===0)return i=>i===r;if(t===1)return r<0?NS.default.trueFunc:i=>i>=r;let n=Math.abs(t),s=(r%n+n)%n;return t>1?i=>i>=r&&i%n===s:i=>i<=r&&i%n===s}function mA(e){return KG(XG(e))}var Sn=Fe(Oa(),1);function $C(e,t){return r=>{let n=t.getParent(r);return n!=null&&t.isTag(n)&&e(r)}}var EA={contains(e,t,{adapter:r}){return function(s){return e(s)&&r.getText(s).includes(t)}},icontains(e,t,{adapter:r}){let n=t.toLowerCase();return function(i){return e(i)&&r.getText(i).toLowerCase().includes(n)}},"nth-child"(e,t,{adapter:r,equals:n}){let s=mA(t);return s===Sn.default.falseFunc?Sn.default.falseFunc:s===Sn.default.trueFunc?$C(e,r):function(o){let a=r.getSiblings(o),c=0;for(let u=0;u=0&&!n(o,a[u]);u--)r.isTag(a[u])&&c++;return s(c)&&e(o)}},"nth-of-type"(e,t,{adapter:r,equals:n}){let s=mA(t);return s===Sn.default.falseFunc?Sn.default.falseFunc:s===Sn.default.trueFunc?$C(e,r):function(o){let a=r.getSiblings(o),c=0;for(let u=0;u=0;u--){let l=a[u];if(n(o,l))break;r.isTag(l)&&r.getName(l)===r.getName(o)&&c++}return s(c)&&e(o)}},root(e,t,{adapter:r}){return n=>{let s=r.getParent(n);return(s==null||!r.isTag(s))&&e(n)}},scope(e,t,r,n){let{equals:s}=r;return!n||n.length===0?EA.root(e,t,r):n.length===1?i=>s(n[0],i)&&e(i):i=>n.includes(i)&&e(i)},hover:kS("isHovered"),visited:kS("isVisited"),active:kS("isActive")};function kS(e){return function(r,n,{adapter:s}){let i=s[e];return typeof i!="function"?Sn.default.falseFunc:function(a){return i(a)&&r(a)}}}var $h={empty(e,{adapter:t}){return!t.getChildren(e).some(r=>t.isTag(r)||t.getText(r)!=="")},"first-child"(e,{adapter:t,equals:r}){if(t.prevElementSibling)return t.prevElementSibling(e)==null;let n=t.getSiblings(e).find(s=>t.isTag(s));return n!=null&&r(e,n)},"last-child"(e,{adapter:t,equals:r}){let n=t.getSiblings(e);for(let s=n.length-1;s>=0;s--){if(r(e,n[s]))return!0;if(t.isTag(n[s]))break}return!1},"first-of-type"(e,{adapter:t,equals:r}){let n=t.getSiblings(e),s=t.getName(e);for(let i=0;i=0;i--){let o=n[i];if(r(e,o))return!0;if(t.isTag(o)&&t.getName(o)===s)break}return!1},"only-of-type"(e,{adapter:t,equals:r}){let n=t.getName(e);return t.getSiblings(e).every(s=>r(e,s)||!t.isTag(s)||t.getName(s)!==n)},"only-child"(e,{adapter:t,equals:r}){return t.getSiblings(e).every(n=>r(e,n)||!t.isTag(n))}};function FS(e,t,r,n){if(r===null){if(e.length>n)throw new Error(`Pseudo-class :${t} requires an argument`)}else if(e.length===n)throw new Error(`Pseudo-class :${t} doesn't have any arguments`)}var GC={"any-link":":is(a, area, link)[href]",link:":any-link:not(:visited)",disabled:`:is( + :is(button, input, select, textarea, optgroup, option)[disabled], + optgroup[disabled] > option, + fieldset[disabled]:not(fieldset[disabled] legend:first-of-type *) + )`,enabled:":not(:disabled)",checked:":is(:is(input[type=radio], input[type=checkbox])[checked], option:selected)",required:":is(input, select, textarea)[required]",optional:":is(input, select, textarea):not([required])",selected:"option:is([selected], select:not([multiple]):not(:has(> option[selected])) > :first-of-type)",checkbox:"[type=checkbox]",file:"[type=file]",password:"[type=password]",radio:"[type=radio]",reset:"[type=reset]",image:"[type=image]",submit:"[type=submit]",parent:":not(:empty)",header:":is(h1, h2, h3, h4, h5, h6)",button:":is(button, input[type=button])",input:":is(input, textarea, select, button)",text:"input:is(:not([type!='']), [type=text])"};var Bs=Fe(Oa(),1);var MS={};function PS(e,t){return e===Bs.default.falseFunc?Bs.default.falseFunc:r=>t.isTag(r)&&e(r)}function US(e,t){let r=t.getSiblings(e);if(r.length<=1)return[];let n=r.indexOf(e);return n<0||n===r.length-1?[]:r.slice(n+1).filter(t.isTag)}function OS(e){return{xmlMode:!!e.xmlMode,lowerCaseAttributeNames:!!e.lowerCaseAttributeNames,lowerCaseTags:!!e.lowerCaseTags,quirksMode:!!e.quirksMode,cacheResults:!!e.cacheResults,pseudos:e.pseudos,adapter:e.adapter,equals:e.equals}}var LS=(e,t,r,n,s)=>{let i=s(t,OS(r),n);return i===Bs.default.trueFunc?e:i===Bs.default.falseFunc?Bs.default.falseFunc:o=>i(o)&&e(o)},jC={is:LS,matches:LS,where:LS,not(e,t,r,n,s){let i=s(t,OS(r),n);return i===Bs.default.falseFunc?e:i===Bs.default.trueFunc?Bs.default.falseFunc:o=>!i(o)&&e(o)},has(e,t,r,n,s){let{adapter:i}=r,o=OS(r);o.relativeSelector=!0;let a=t.some(l=>l.some(Vh))?[MS]:void 0,c=s(t,o,a);if(c===Bs.default.falseFunc)return Bs.default.falseFunc;let u=PS(c,i);if(a&&c!==Bs.default.trueFunc){let{shouldTestNextSiblings:l=!1}=c;return A=>{if(!e(A))return!1;a[0]=A;let f=i.getChildren(A),d=l?[...f,...US(A,i)]:f;return i.existsOne(u,d)}}return l=>e(l)&&i.existsOne(u,i.getChildren(l))}};function ej(e,t,r,n,s){var i;let{name:o,data:a}=t;if(Array.isArray(a)){if(!(o in jC))throw new Error(`Unknown pseudo-class :${o}(${a})`);return jC[o](e,a,r,n,s)}let c=(i=r.pseudos)===null||i===void 0?void 0:i[o],u=typeof c=="string"?c:GC[o];if(typeof u=="string"){if(a!=null)throw new Error(`Pseudo ${o} doesn't have any arguments`);let l=(0,ZG.parse)(u);return jC.is(e,l,r,n,s)}if(typeof c=="function")return FS(c,o,a,1),l=>c(l,a)&&e(l);if(o in EA)return EA[o](e,a,r,n);if(o in $h){let l=$h[o];return FS(l,o,a,2),A=>l(A,r,a)&&e(A)}throw new Error(`Unknown pseudo-class :${o}`)}var xs=Fe(gA(),1);function HS(e,t){let r=t.getParent(e);return r&&t.isTag(r)?r:null}function tj(e,t,r,n,s){let{adapter:i,equals:o}=r;switch(t.type){case xs.SelectorType.PseudoElement:throw new Error("Pseudo-elements are not supported by css-select");case xs.SelectorType.ColumnCombinator:throw new Error("Column combinators are not yet supported by css-select");case xs.SelectorType.Attribute:{if(t.namespace!=null)throw new Error("Namespaced attributes are not yet supported by css-select");return(!r.xmlMode||r.lowerCaseAttributeNames)&&(t.name=t.name.toLowerCase()),WG[t.action](e,t,r)}case xs.SelectorType.Pseudo:return ej(e,t,r,n,s);case xs.SelectorType.Tag:{if(t.namespace!=null)throw new Error("Namespaced tag names are not yet supported by css-select");let{name:a}=t;return(!r.xmlMode||r.lowerCaseTags)&&(a=a.toLowerCase()),function(u){return i.getName(u)===a&&e(u)}}case xs.SelectorType.Descendant:{if(r.cacheResults===!1||typeof WeakSet>"u")return function(u){let l=u;for(;l=HS(l,i);)if(e(l))return!0;return!1};let a=new WeakSet;return function(u){let l=u;for(;l=HS(l,i);)if(!a.has(l)){if(i.isTag(l)&&e(l))return!0;a.add(l)}return!1}}case"_flexibleDescendant":return function(c){let u=c;do if(e(u))return!0;while(u=HS(u,i));return!1};case xs.SelectorType.Parent:return function(c){return i.getChildren(c).some(u=>i.isTag(u)&&e(u))};case xs.SelectorType.Child:return function(c){let u=i.getParent(c);return u!=null&&i.isTag(u)&&e(u)};case xs.SelectorType.Sibling:return function(c){let u=i.getSiblings(c);for(let l=0;lt.some(nj)))}var Bke={type:ti.SelectorType.Descendant},xke={type:"_flexibleDescendant"},vke={type:ti.SelectorType.Pseudo,name:"scope",data:null};function Qke(e,{adapter:t},r){let n=!!r?.every(s=>{let i=t.isTag(s)&&t.getParent(s);return s===MS||i&&t.isTag(i)});for(let s of e){if(!(s.length>0&&Vh(s[0])&&s[0].type!==ti.SelectorType.Descendant))if(n&&!s.some(nj))s.unshift(Bke);else continue;s.unshift(vke)}}function WC(e,t,r){var n;e.forEach(DS),r=(n=t.context)!==null&&n!==void 0?n:r;let s=Array.isArray(r),i=r&&(Array.isArray(r)?r:[r]);if(t.relativeSelector!==!1)Qke(e,t,i);else if(e.some(c=>c.length>0&&Vh(c[0])))throw new Error("Relative selectors are not allowed when the `relativeSelector` option is disabled");let o=!1,a=e.map(c=>{if(c.length>=2){let[u,l]=c;u.type!==ti.SelectorType.Pseudo||u.name!=="scope"||(s&&l.type===ti.SelectorType.Descendant?c[1]=xke:(l.type===ti.SelectorType.Adjacent||l.type===ti.SelectorType.Sibling)&&(o=!0))}return Tke(c,t,i)}).reduce(wke,_o.default.falseFunc);return a.shouldTestNextSiblings=o,a}function Tke(e,t,r){var n;return e.reduce((s,i)=>s===_o.default.falseFunc?_o.default.falseFunc:tj(s,i,t,r,WC),(n=t.rootFunc)!==null&&n!==void 0?n:_o.default.trueFunc)}function wke(e,t){return t===_o.default.falseFunc||e===_o.default.trueFunc?e:e===_o.default.falseFunc||t===_o.default.trueFunc?t:function(n){return e(n)||t(n)}}var sj=(e,t)=>e===t,Ske={adapter:La,equals:sj};function ij(e){var t,r,n,s;let i=e??Ske;return(t=i.adapter)!==null&&t!==void 0||(i.adapter=La),(r=i.equals)!==null&&r!==void 0||(i.equals=(s=(n=i.adapter)===null||n===void 0?void 0:n.equals)!==null&&s!==void 0?s:sj),i}function VS(e){return function(r,n,s){let i=ij(n);return e(r,i,s)}}var kat=VS(rj),Fat=VS(JC),zC=VS(WC);function oj(e){return function(r,n,s){let i=ij(s);typeof r!="function"&&(r=JC(r,i,n));let o=XC(n,i.adapter,r.shouldTestNextSiblings);return e(r,o,i)}}function XC(e,t,r=!1){return r&&(e=_ke(e,t)),Array.isArray(e)?t.removeSubsets(e):t.getChildren(e)}function _ke(e,t){let r=Array.isArray(e)?e.slice(0):[e],n=r.length;for(let s=0;se===qS.default.falseFunc||!t||t.length===0?[]:r.adapter.findAll(e,t)),Oat=oj((e,t,r)=>e===qS.default.falseFunc||!t||t.length===0?null:r.adapter.findOne(e,t));var ZC=Fe(Oa(),1);var Rke=new Set(["first","last","eq","gt","nth","lt","even","odd"]);function CA(e){return e.type!=="pseudo"?!1:Rke.has(e.name)?!0:e.name==="not"&&Array.isArray(e.data)?e.data.some(t=>t.some(CA)):!1}function aj(e,t,r){let n=t!=null?parseInt(t,10):NaN;switch(e){case"first":return 1;case"nth":case"eq":return isFinite(n)?n>=0?n+1:1/0:0;case"lt":return isFinite(n)?n>=0?Math.min(n,r):1/0:0;case"gt":return isFinite(n)?1/0:0;case"odd":return 2*r;case"even":return 2*r-1;case"last":case"not":return 1/0}}function cj(e){for(;e.parent;)e=e.parent;return e}function KC(e){let t=[],r=[];for(let n of e)n.some(CA)?t.push(n):r.push(n);return[r,t]}var Dke={type:_n.SelectorType.Universal,namespace:null},Nke={type:_n.SelectorType.Pseudo,name:"scope",data:null};function GS(e,t,r={}){return jS([e],t,r)}function jS(e,t,r={}){if(typeof t=="function")return e.some(t);let[n,s]=KC((0,_n.parse)(t));return n.length>0&&e.some(zC(n,r))||s.some(i=>lj(i,e,r).length>0)}function kke(e,t,r,n){let s=typeof r=="string"?parseInt(r,10):NaN;switch(e){case"first":case"lt":return t;case"last":return t.length>0?[t[t.length-1]]:t;case"nth":case"eq":return isFinite(s)&&Math.abs(s)o%2===0);case"odd":return t.filter((i,o)=>o%2===1);case"not":{let i=new Set(uj(r,t,n));return t.filter(o=>!i.has(o))}}}function JS(e,t,r={}){return uj((0,_n.parse)(e),t,r)}function uj(e,t,r){if(t.length===0)return[];let[n,s]=KC(e),i;if(n.length){let o=$S(t,n,r);if(s.length===0)return o;o.length&&(i=new Set(o))}for(let o=0;oAe(l)&&!i.has(l)):t).length===0)break;let u=lj(a,t,r);if(u.length)if(i)u.forEach(l=>i.add(l));else{if(o===s.length-1)return u;i=new Set(u)}}return typeof i<"u"?i.size===t.length?t:t.filter(o=>i.has(o)):[]}function lj(e,t,r){var n;if(e.some(_n.isTraversal)){let s=(n=r.root)!==null&&n!==void 0?n:cj(t[0]),i={...r,context:t,relativeSelector:!1};return e.push(Nke),ey(s,e,i,!0,t.length)}return ey(t,e,r,!1,t.length)}function Aj(e,t,r={},n=1/0){if(typeof e=="function")return fj(t,e);let[s,i]=KC((0,_n.parse)(e)),o=i.map(a=>ey(t,a,r,!0,n));return s.length&&o.push(YS(t,s,r,n)),o.length===0?[]:o.length===1?o[0]:ka(o.reduce((a,c)=>[...a,...c]))}function ey(e,t,r,n,s){let i=t.findIndex(CA),o=t.slice(0,i),a=t[i],c=t.length-1===i?s:1/0,u=aj(a.name,a.data,c);if(u===0)return[];let A=(o.length===0&&!Array.isArray(e)?lA(e).filter(Ae):o.length===0?(Array.isArray(e)?e:[e]).filter(Ae):n||o.some(_n.isTraversal)?YS(e,[o],r,u):$S(e,[o],r)).slice(0,u),f=kke(a.name,A,a.data,r);if(f.length===0||t.length===i+1)return f;let d=t.slice(i+1),h=d.some(_n.isTraversal);if(h){if((0,_n.isTraversal)(d[0])){let{type:p}=d[0];(p===_n.SelectorType.Sibling||p===_n.SelectorType.Adjacent)&&(f=XC(f,La,!0)),d.unshift(Dke)}r={...r,relativeSelector:!1,rootFunc:p=>f.includes(p)}}else r.rootFunc&&r.rootFunc!==ZC.trueFunc&&(r={...r,rootFunc:ZC.trueFunc});return d.some(CA)?ey(f,d,r,!1,s):h?YS(f,[d],r,s):$S(f,[d],r)}function YS(e,t,r,n){let s=zC(t,r,e);return fj(e,s,n)}function fj(e,t,r=1/0){let n=XC(e,La,t.shouldTestNextSiblings);return LC(s=>Ae(s)&&t(s),n,!0,r)}function $S(e,t,r){let n=(Array.isArray(e)?e:[e]).filter(Ae);if(n.length===0)return n;let s=zC(t,r);return s===ZC.trueFunc?n:n.filter(s)}var Lke=/^\s*[+~]/;function Oke(e){if(!e)return this._make([]);if(typeof e!="string"){let t=bs(e)?e.toArray():[e],r=this.toArray();return this._make(t.filter(n=>r.some(s=>UC(s,n))))}return this._findBySelector(e,Number.POSITIVE_INFINITY)}function Mke(e,t){var r;let n=this.toArray(),s=Lke.test(e)?n:this.children().toArray(),i={context:n,root:(r=this._root)===null||r===void 0?void 0:r[0],xmlMode:this.options.xmlMode,lowerCaseTags:this.options.lowerCaseTags,lowerCaseAttributeNames:this.options.lowerCaseAttributeNames,pseudos:this.options.pseudos,quirksMode:this.options.quirksMode};return this._make(Aj(e,s,i,t))}function WS(e){return function(t,...r){return function(n){var s;let i=e(t,this);return n&&(i=KS(i,n,this.options.xmlMode,(s=this._root)===null||s===void 0?void 0:s[0])),this._make(this.length>1&&i.length>1?r.reduce((o,a)=>a(o),i):i)}}}var Gh=WS((e,t)=>{let r=[];for(let n=0;n0&&(r=r.concat(s))}return r}),zS=WS((e,t)=>{let r=[];for(let n=0;n{let o=[];return Qt(i,a=>{for(let c;(c=s(a))&&!r?.(c,o.length);a=c)o.push(c)}),o})(e,...t);return function(s,i){r=typeof s=="string"?a=>GS(a,s,this.options):s?jh(s):null;let o=n.call(this,i);return r=null,o}}function yA(e){return e.length>1?Array.from(new Set(e)):e}var Pke=zS(({parent:e})=>e&&!ys(e)?e:null,yA),Uke=Gh(e=>{let t=[];for(;e.parent&&!ys(e.parent);)t.push(e.parent),e=e.parent;return t},ka,e=>e.reverse()),Hke=XS(({parent:e})=>e&&!ys(e)?e:null,ka,e=>e.reverse());function qke(e){var t;let r=[];if(!e)return this._make(r);let n={xmlMode:this.options.xmlMode,root:(t=this._root)===null||t===void 0?void 0:t[0]},s=typeof e=="string"?i=>GS(i,e,n):jh(e);return Qt(this,i=>{for(i&&!ys(i)&&!Ae(i)&&(i=i.parent);i&&Ae(i);){if(s(i,0)){r.includes(i)||r.push(i);break}i=i.parent}}),this._make(r)}var Vke=zS(e=>kC(e)),Yke=Gh(e=>{let t=[];for(;e.next;)e=e.next,Ae(e)&&t.push(e);return t},yA),$ke=XS(e=>kC(e),yA),Gke=zS(e=>FC(e)),jke=Gh(e=>{let t=[];for(;e.prev;)e=e.prev,Ae(e)&&t.push(e);return t},yA),Jke=XS(e=>FC(e),yA),Wke=Gh(e=>BS(e).filter(t=>Ae(t)&&t!==e),ka),zke=Gh(e=>lA(e).filter(Ae),yA);function Xke(){let e=this.toArray().reduce((t,r)=>yt(r)?t.concat(r.children):t,[]);return this._make(e)}function Kke(e){let t=0,r=this.length;for(;te.call(t,r,t):bs(e)?t=>Array.prototype.includes.call(e,t):function(t){return e===t}}function eFe(e){var t;return this._make(KS(this.toArray(),e,this.options.xmlMode,(t=this._root)===null||t===void 0?void 0:t[0]))}function KS(e,t,r,n){return typeof t=="string"?JS(t,e,{xmlMode:r,root:n}):e.filter(jh(t))}function tFe(e){let t=this.toArray();return typeof e=="string"?jS(t.filter(Ae),e,this.options):e?t.some(jh(e)):!1}function rFe(e){let t=this.toArray();if(typeof e=="string"){let r=new Set(JS(e,t,this.options));t=t.filter(n=>!r.has(n))}else{let r=jh(e);t=t.filter((n,s)=>!r(n,s))}return this._make(t)}function nFe(e){return this.filter(typeof e=="string"?`:has(${e})`:(t,r)=>this._make(r).find(e).length>0)}function sFe(){return this.length>1?this._make(this[0]):this}function iFe(){return this.length>0?this._make(this[this.length-1]):this}function oFe(e){var t;return e=+e,e===0&&this.length<=1?this:(e<0&&(e=this.length+e),this._make((t=this[e])!==null&&t!==void 0?t:[]))}function aFe(e){return e==null?this.toArray():this[e<0?this.length+e:e]}function cFe(){return Array.prototype.slice.call(this)}function uFe(e){let t,r;return e==null?(t=this.parent().children(),r=this[0]):typeof e=="string"?(t=this._make(e),r=this[0]):(t=this,r=bs(e)?e[0]:e),Array.prototype.indexOf.call(t,r)}function lFe(e,t){return this._make(Array.prototype.slice.call(this,e,t))}function AFe(){var e;return(e=this.prevObject)!==null&&e!==void 0?e:this._make([])}function fFe(e,t){let r=this._make(e,t),n=ka([...this.get(),...r.get()]);return this._make(n)}function dFe(e){return this.prevObject?this.add(e?this.prevObject.filter(e):this.prevObject):this}var e2={};Us(e2,{_makeDomArray:()=>hFe,after:()=>BFe,append:()=>mFe,appendTo:()=>pFe,before:()=>vFe,clone:()=>NFe,empty:()=>SFe,html:()=>_Fe,insertAfter:()=>xFe,insertBefore:()=>QFe,prepend:()=>EFe,prependTo:()=>gFe,remove:()=>TFe,replaceWith:()=>wFe,text:()=>DFe,toString:()=>RFe,unwrap:()=>IFe,wrap:()=>CFe,wrapAll:()=>bFe,wrapInner:()=>yFe});function dj(e){return function(r,n,s,i){if(typeof Buffer<"u"&&Buffer.isBuffer(r)&&(r=r.toString()),typeof r=="string")return e(r,n,s,i);let o=r;if(!Array.isArray(o)&&ys(o))return o;let a=new Gn([]);return Ma(o,a),a}}function Ma(e,t){let r=Array.isArray(e)?e:[e];t?t.children=r:t=null;for(let n=0;n{if(!yt(n))return;let i=typeof t[0]=="function"?t[0].call(n,s,this._render(n.children)):t,o=this._makeDomArray(i,s=e.length?null:e[t+r];for(let l=0;l-1&&(f.children.splice(h,1),s===f&&t>h&&a[0]--)}A.parent=s,A.prev&&(A.prev.next=(i=A.next)!==null&&i!==void 0?i:null),A.next&&(A.next.prev=(o=A.prev)!==null&&o!==void 0?o:null),A.prev=l===0?c:n[l-1],A.next=l===n.length-1?u:n[l+1]}return c&&(c.next=n[0]),u&&(u.prev=n[n.length-1]),e.splice(...a)}function pFe(e){return(bs(e)?e:this._make(e)).append(this),this}function gFe(e){return(bs(e)?e:this._make(e)).prepend(this),this}var mFe=hj((e,t,r)=>{Pa(t,t.length,0,e,r)}),EFe=hj((e,t,r)=>{Pa(t,0,0,e,r)});function pj(e){return function(t){let r=this.length-1,n=this.parents().last();for(let s=0;s{let{parent:n}=e;if(!n)return;let s=n.children,i=s.indexOf(e);Ma([e],t),Pa(s,i,0,r,n)}),yFe=pj((e,t,r)=>{yt(e)&&(Ma(e.children,t),Ma(r,e))});function IFe(e){return this.parent(e).not("body").each((t,r)=>{this._make(r).replaceWith(r.children)}),this}function bFe(e){let t=this[0];if(t){let r=this._make(typeof e=="function"?e.call(t,0,t):e).insertBefore(t),n;for(let i=0;i{if(!yt(r)||!r.parent)return;let s=r.parent.children,i=s.indexOf(r);if(i<0)return;let o=typeof e[0]=="function"?e[0].call(r,n,this._render(r.children)):e,a=this._makeDomArray(o,n{if(!yt(r)||!r.parent)return;let s=r.parent.children,i=s.indexOf(r);if(i<0)return;let o=typeof e[0]=="function"?e[0].call(r,n,this._render(r.children)):e,a=this._makeDomArray(o,n{let s=this.clone().toArray(),{parent:i}=n;if(!i)return;let o=i.children,a=o.indexOf(n);a<0||(Pa(o,a,0,s,i),r.push(...s))}),this._make(r)}function TFe(e){let t=e?this.filter(e):this;return Qt(t,r=>{wo(r),r.prev=r.next=r.parent=null}),this}function wFe(e){return Qt(this,(t,r)=>{let{parent:n}=t;if(!n)return;let s=n.children,i=typeof e=="function"?e.call(t,r,t):e,o=this._makeDomArray(i);Ma(o,null);let a=s.indexOf(t);Pa(s,a,1,o,n),o.includes(t)||(t.parent=t.prev=t.next=null)})}function SFe(){return Qt(this,e=>{if(yt(e)){for(let t of e.children)t.next=t.prev=t.parent=null;e.children.length=0}})}function _Fe(e){if(e===void 0){let t=this[0];return!t||!yt(t)?null:this._render(t.children)}return Qt(this,t=>{if(!yt(t))return;for(let n of t.children)n.next=n.prev=n.parent=null;let r=bs(e)?e.toArray():this._parse(`${e}`,this.options,!1,t).children;Ma(r,t)})}function RFe(){return this._render(this)}function DFe(e){return e===void 0?su(this):typeof e=="function"?Qt(this,(t,r)=>this._make(t).text(e.call(t,r,su([t])))):Qt(this,t=>{if(!yt(t))return;for(let n of t.children)n.next=n.prev=n.parent=null;let r=new Oi(`${e}`);Ma(r,t)})}function NFe(){let e=Array.prototype.map.call(this.get(),r=>sA(r,!0)),t=new Gn(e);for(let r of e)r.parent=t;return this._make(e)}var t2={};Us(t2,{css:()=>kFe});function kFe(e,t){if(e!=null&&t!=null||typeof e=="object"&&!Array.isArray(e))return Qt(this,(r,n)=>{Ae(r)&&gj(r,e,t,n)});if(this.length!==0)return mj(this[0],e)}function gj(e,t,r,n){if(typeof t=="string"){let s=mj(e),i=typeof r=="function"?r.call(e,n,s[t]):r;i===""?delete s[t]:i!=null&&(s[t]=i),e.attribs.style=FFe(s)}else if(typeof t=="object"){let s=Object.keys(t);for(let i=0;i`${t}${t?" ":""}${r}: ${e[r]};`,"")}function LFe(e){if(e=(e||"").trim(),!e)return{};let t={},r;for(let n of e.split(";")){let s=n.indexOf(":");if(s<1||s===n.length-1){let i=n.trimEnd();i.length>0&&r!==void 0&&(t[r]+=`;${i}`)}else r=n.slice(0,s).trim(),t[r]=n.slice(s+1).trim()}return t}var r2={};Us(r2,{serialize:()=>MFe,serializeArray:()=>PFe});var Ej="input,select,textarea,keygen",OFe=/%20/g,Cj=/\r?\n/g;function MFe(){return this.serializeArray().map(r=>`${encodeURIComponent(r.name)}=${encodeURIComponent(r.value)}`).join("&").replace(OFe,"+")}function PFe(){return this.map((e,t)=>{let r=this._make(t);return Ae(t)&&t.name==="form"?r.find(Ej).toArray():r.filter(Ej).toArray()}).filter('[name!=""]:enabled:not(:submit, :button, :image, :reset, :file):matches([checked], :not(:checkbox, :radio))').map((e,t)=>{var r;let n=this._make(t),s=n.attr("name"),i=(r=n.val())!==null&&r!==void 0?r:"";return Array.isArray(i)?i.map(o=>({name:s,value:o.replace(Cj,`\r +`)})):{name:s,value:i.replace(Cj,`\r +`)}}).toArray()}var n2={};Us(n2,{extract:()=>HFe});function UFe(e){var t;return typeof e=="string"?{selector:e,value:"textContent"}:{selector:e.selector,value:(t=e.value)!==null&&t!==void 0?t:"textContent"}}function HFe(e){let t={};for(let r in e){let n=e[r],s=Array.isArray(n),{selector:i,value:o}=UFe(s?n[0]:n),a=typeof o=="function"?o:typeof o=="string"?c=>this._make(c).prop(o):c=>this._make(c).extract(o);if(s)t[r]=this._findBySelector(i,Number.POSITIVE_INFINITY).map((c,u)=>a(u,r,t)).get();else{let c=this._findBySelector(i,1);t[r]=c.length>0?a(c[0],r,t):void 0}}return t}var Ua=class{constructor(t,r,n){if(this.length=0,this.options=n,this._root=r,t){for(let s=0;s=55296&&e<=57343}function Ij(e){return e>=56320&&e<=57343}function bj(e,t){return(e-55296)*1024+9216+t}function ry(e){return e!==32&&e!==10&&e!==13&&e!==9&&e!==12&&e>=1&&e<=31||e>=127&&e<=159}function ny(e){return e>=64976&&e<=65007||VFe.has(e)}var V;(function(e){e.controlCharacterInInputStream="control-character-in-input-stream",e.noncharacterInInputStream="noncharacter-in-input-stream",e.surrogateInInputStream="surrogate-in-input-stream",e.nonVoidHtmlElementStartTagWithTrailingSolidus="non-void-html-element-start-tag-with-trailing-solidus",e.endTagWithAttributes="end-tag-with-attributes",e.endTagWithTrailingSolidus="end-tag-with-trailing-solidus",e.unexpectedSolidusInTag="unexpected-solidus-in-tag",e.unexpectedNullCharacter="unexpected-null-character",e.unexpectedQuestionMarkInsteadOfTagName="unexpected-question-mark-instead-of-tag-name",e.invalidFirstCharacterOfTagName="invalid-first-character-of-tag-name",e.unexpectedEqualsSignBeforeAttributeName="unexpected-equals-sign-before-attribute-name",e.missingEndTagName="missing-end-tag-name",e.unexpectedCharacterInAttributeName="unexpected-character-in-attribute-name",e.unknownNamedCharacterReference="unknown-named-character-reference",e.missingSemicolonAfterCharacterReference="missing-semicolon-after-character-reference",e.unexpectedCharacterAfterDoctypeSystemIdentifier="unexpected-character-after-doctype-system-identifier",e.unexpectedCharacterInUnquotedAttributeValue="unexpected-character-in-unquoted-attribute-value",e.eofBeforeTagName="eof-before-tag-name",e.eofInTag="eof-in-tag",e.missingAttributeValue="missing-attribute-value",e.missingWhitespaceBetweenAttributes="missing-whitespace-between-attributes",e.missingWhitespaceAfterDoctypePublicKeyword="missing-whitespace-after-doctype-public-keyword",e.missingWhitespaceBetweenDoctypePublicAndSystemIdentifiers="missing-whitespace-between-doctype-public-and-system-identifiers",e.missingWhitespaceAfterDoctypeSystemKeyword="missing-whitespace-after-doctype-system-keyword",e.missingQuoteBeforeDoctypePublicIdentifier="missing-quote-before-doctype-public-identifier",e.missingQuoteBeforeDoctypeSystemIdentifier="missing-quote-before-doctype-system-identifier",e.missingDoctypePublicIdentifier="missing-doctype-public-identifier",e.missingDoctypeSystemIdentifier="missing-doctype-system-identifier",e.abruptDoctypePublicIdentifier="abrupt-doctype-public-identifier",e.abruptDoctypeSystemIdentifier="abrupt-doctype-system-identifier",e.cdataInHtmlContent="cdata-in-html-content",e.incorrectlyOpenedComment="incorrectly-opened-comment",e.eofInScriptHtmlCommentLikeText="eof-in-script-html-comment-like-text",e.eofInDoctype="eof-in-doctype",e.nestedComment="nested-comment",e.abruptClosingOfEmptyComment="abrupt-closing-of-empty-comment",e.eofInComment="eof-in-comment",e.incorrectlyClosedComment="incorrectly-closed-comment",e.eofInCdata="eof-in-cdata",e.absenceOfDigitsInNumericCharacterReference="absence-of-digits-in-numeric-character-reference",e.nullCharacterReference="null-character-reference",e.surrogateCharacterReference="surrogate-character-reference",e.characterReferenceOutsideUnicodeRange="character-reference-outside-unicode-range",e.controlCharacterReference="control-character-reference",e.noncharacterCharacterReference="noncharacter-character-reference",e.missingWhitespaceBeforeDoctypeName="missing-whitespace-before-doctype-name",e.missingDoctypeName="missing-doctype-name",e.invalidCharacterSequenceAfterDoctypeName="invalid-character-sequence-after-doctype-name",e.duplicateAttribute="duplicate-attribute",e.nonConformingDoctype="non-conforming-doctype",e.missingDoctype="missing-doctype",e.misplacedDoctype="misplaced-doctype",e.endTagWithoutMatchingOpenElement="end-tag-without-matching-open-element",e.closingOfElementWithOpenChildElements="closing-of-element-with-open-child-elements",e.disallowedContentInNoscriptInHead="disallowed-content-in-noscript-in-head",e.openElementsLeftAfterEof="open-elements-left-after-eof",e.abandonedHeadElementChild="abandoned-head-element-child",e.misplacedStartTagForHeadElement="misplaced-start-tag-for-head-element",e.nestedNoscriptInHead="nested-noscript-in-head",e.eofInElementThatCanContainOnlyText="eof-in-element-that-can-contain-only-text"})(V||(V={}));var $Fe=65536,sy=class{constructor(t){this.handler=t,this.html="",this.pos=-1,this.lastGapPos=-2,this.gapStack=[],this.skipNextNewLine=!1,this.lastChunkWritten=!1,this.endOfChunkHit=!1,this.bufferWaterline=$Fe,this.isEol=!1,this.lineStartPos=0,this.droppedBufferSize=0,this.line=1,this.lastErrOffset=-1}get col(){return this.pos-this.lineStartPos+ +(this.lastGapPos!==this.pos)}get offset(){return this.droppedBufferSize+this.pos}getError(t,r){let{line:n,col:s,offset:i}=this,o=s+r,a=i+r;return{code:t,startLine:n,endLine:n,startCol:o,endCol:o,startOffset:a,endOffset:a}}_err(t){this.handler.onParseError&&this.lastErrOffset!==this.offset&&(this.lastErrOffset=this.offset,this.handler.onParseError(this.getError(t,0)))}_addGap(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos}_processSurrogate(t){if(this.pos!==this.html.length-1){let r=this.html.charCodeAt(this.pos+1);if(Ij(r))return this.pos++,this._addGap(),bj(t,r)}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,w.EOF;return this._err(V.surrogateInInputStream),t}willDropParsedChunk(){return this.pos>this.bufferWaterline}dropParsedChunk(){this.willDropParsedChunk()&&(this.html=this.html.substring(this.pos),this.lineStartPos-=this.pos,this.droppedBufferSize+=this.pos,this.pos=0,this.lastGapPos=-2,this.gapStack.length=0)}write(t,r){this.html.length>0?this.html+=t:this.html=t,this.endOfChunkHit=!1,this.lastChunkWritten=r}insertHtmlAtCurrentPos(t){this.html=this.html.substring(0,this.pos+1)+t+this.html.substring(this.pos+1),this.endOfChunkHit=!1}startsWith(t,r){if(this.pos+t.length>this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,!1;if(r)return this.html.startsWith(t,this.pos);for(let n=0;n=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,w.EOF;let n=this.html.charCodeAt(r);return n===w.CARRIAGE_RETURN?w.LINE_FEED:n}advance(){if(this.pos++,this.isEol&&(this.isEol=!1,this.line++,this.lineStartPos=this.pos),this.pos>=this.html.length)return this.endOfChunkHit=!this.lastChunkWritten,w.EOF;let t=this.html.charCodeAt(this.pos);return t===w.CARRIAGE_RETURN?(this.isEol=!0,this.skipNextNewLine=!0,w.LINE_FEED):t===w.LINE_FEED&&(this.isEol=!0,this.skipNextNewLine)?(this.line--,this.skipNextNewLine=!1,this._addGap(),this.advance()):(this.skipNextNewLine=!1,ty(t)&&(t=this._processSurrogate(t)),this.handler.onParseError===null||t>31&&t<127||t===w.LINE_FEED||t===w.CARRIAGE_RETURN||t>159&&t<64976||this._checkForProblematicCharacters(t),t)}_checkForProblematicCharacters(t){ry(t)?this._err(V.controlCharacterInInputStream):ny(t)&&this._err(V.noncharacterInInputStream)}retreat(t){for(this.pos-=t;this.pos=0;r--)if(e.attrs[r].name===t)return e.attrs[r].value;return null}var oy={};Us(oy,{ATTRS:()=>Pi,DOCUMENT_MODE:()=>Jr,NS:()=>W,NUMBERED_HEADERS:()=>IA,SPECIAL_ELEMENTS:()=>s2,TAG_ID:()=>g,TAG_NAMES:()=>M,getTagID:()=>Ha,hasUnescapedText:()=>i2});var W;(function(e){e.HTML="http://www.w3.org/1999/xhtml",e.MATHML="http://www.w3.org/1998/Math/MathML",e.SVG="http://www.w3.org/2000/svg",e.XLINK="http://www.w3.org/1999/xlink",e.XML="http://www.w3.org/XML/1998/namespace",e.XMLNS="http://www.w3.org/2000/xmlns/"})(W||(W={}));var Pi;(function(e){e.TYPE="type",e.ACTION="action",e.ENCODING="encoding",e.PROMPT="prompt",e.NAME="name",e.COLOR="color",e.FACE="face",e.SIZE="size"})(Pi||(Pi={}));var Jr;(function(e){e.NO_QUIRKS="no-quirks",e.QUIRKS="quirks",e.LIMITED_QUIRKS="limited-quirks"})(Jr||(Jr={}));var M;(function(e){e.A="a",e.ADDRESS="address",e.ANNOTATION_XML="annotation-xml",e.APPLET="applet",e.AREA="area",e.ARTICLE="article",e.ASIDE="aside",e.B="b",e.BASE="base",e.BASEFONT="basefont",e.BGSOUND="bgsound",e.BIG="big",e.BLOCKQUOTE="blockquote",e.BODY="body",e.BR="br",e.BUTTON="button",e.CAPTION="caption",e.CENTER="center",e.CODE="code",e.COL="col",e.COLGROUP="colgroup",e.DD="dd",e.DESC="desc",e.DETAILS="details",e.DIALOG="dialog",e.DIR="dir",e.DIV="div",e.DL="dl",e.DT="dt",e.EM="em",e.EMBED="embed",e.FIELDSET="fieldset",e.FIGCAPTION="figcaption",e.FIGURE="figure",e.FONT="font",e.FOOTER="footer",e.FOREIGN_OBJECT="foreignObject",e.FORM="form",e.FRAME="frame",e.FRAMESET="frameset",e.H1="h1",e.H2="h2",e.H3="h3",e.H4="h4",e.H5="h5",e.H6="h6",e.HEAD="head",e.HEADER="header",e.HGROUP="hgroup",e.HR="hr",e.HTML="html",e.I="i",e.IMG="img",e.IMAGE="image",e.INPUT="input",e.IFRAME="iframe",e.KEYGEN="keygen",e.LABEL="label",e.LI="li",e.LINK="link",e.LISTING="listing",e.MAIN="main",e.MALIGNMARK="malignmark",e.MARQUEE="marquee",e.MATH="math",e.MENU="menu",e.META="meta",e.MGLYPH="mglyph",e.MI="mi",e.MO="mo",e.MN="mn",e.MS="ms",e.MTEXT="mtext",e.NAV="nav",e.NOBR="nobr",e.NOFRAMES="noframes",e.NOEMBED="noembed",e.NOSCRIPT="noscript",e.OBJECT="object",e.OL="ol",e.OPTGROUP="optgroup",e.OPTION="option",e.P="p",e.PARAM="param",e.PLAINTEXT="plaintext",e.PRE="pre",e.RB="rb",e.RP="rp",e.RT="rt",e.RTC="rtc",e.RUBY="ruby",e.S="s",e.SCRIPT="script",e.SEARCH="search",e.SECTION="section",e.SELECT="select",e.SOURCE="source",e.SMALL="small",e.SPAN="span",e.STRIKE="strike",e.STRONG="strong",e.STYLE="style",e.SUB="sub",e.SUMMARY="summary",e.SUP="sup",e.TABLE="table",e.TBODY="tbody",e.TEMPLATE="template",e.TEXTAREA="textarea",e.TFOOT="tfoot",e.TD="td",e.TH="th",e.THEAD="thead",e.TITLE="title",e.TR="tr",e.TRACK="track",e.TT="tt",e.U="u",e.UL="ul",e.SVG="svg",e.VAR="var",e.WBR="wbr",e.XMP="xmp"})(M||(M={}));var g;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.A=1]="A",e[e.ADDRESS=2]="ADDRESS",e[e.ANNOTATION_XML=3]="ANNOTATION_XML",e[e.APPLET=4]="APPLET",e[e.AREA=5]="AREA",e[e.ARTICLE=6]="ARTICLE",e[e.ASIDE=7]="ASIDE",e[e.B=8]="B",e[e.BASE=9]="BASE",e[e.BASEFONT=10]="BASEFONT",e[e.BGSOUND=11]="BGSOUND",e[e.BIG=12]="BIG",e[e.BLOCKQUOTE=13]="BLOCKQUOTE",e[e.BODY=14]="BODY",e[e.BR=15]="BR",e[e.BUTTON=16]="BUTTON",e[e.CAPTION=17]="CAPTION",e[e.CENTER=18]="CENTER",e[e.CODE=19]="CODE",e[e.COL=20]="COL",e[e.COLGROUP=21]="COLGROUP",e[e.DD=22]="DD",e[e.DESC=23]="DESC",e[e.DETAILS=24]="DETAILS",e[e.DIALOG=25]="DIALOG",e[e.DIR=26]="DIR",e[e.DIV=27]="DIV",e[e.DL=28]="DL",e[e.DT=29]="DT",e[e.EM=30]="EM",e[e.EMBED=31]="EMBED",e[e.FIELDSET=32]="FIELDSET",e[e.FIGCAPTION=33]="FIGCAPTION",e[e.FIGURE=34]="FIGURE",e[e.FONT=35]="FONT",e[e.FOOTER=36]="FOOTER",e[e.FOREIGN_OBJECT=37]="FOREIGN_OBJECT",e[e.FORM=38]="FORM",e[e.FRAME=39]="FRAME",e[e.FRAMESET=40]="FRAMESET",e[e.H1=41]="H1",e[e.H2=42]="H2",e[e.H3=43]="H3",e[e.H4=44]="H4",e[e.H5=45]="H5",e[e.H6=46]="H6",e[e.HEAD=47]="HEAD",e[e.HEADER=48]="HEADER",e[e.HGROUP=49]="HGROUP",e[e.HR=50]="HR",e[e.HTML=51]="HTML",e[e.I=52]="I",e[e.IMG=53]="IMG",e[e.IMAGE=54]="IMAGE",e[e.INPUT=55]="INPUT",e[e.IFRAME=56]="IFRAME",e[e.KEYGEN=57]="KEYGEN",e[e.LABEL=58]="LABEL",e[e.LI=59]="LI",e[e.LINK=60]="LINK",e[e.LISTING=61]="LISTING",e[e.MAIN=62]="MAIN",e[e.MALIGNMARK=63]="MALIGNMARK",e[e.MARQUEE=64]="MARQUEE",e[e.MATH=65]="MATH",e[e.MENU=66]="MENU",e[e.META=67]="META",e[e.MGLYPH=68]="MGLYPH",e[e.MI=69]="MI",e[e.MO=70]="MO",e[e.MN=71]="MN",e[e.MS=72]="MS",e[e.MTEXT=73]="MTEXT",e[e.NAV=74]="NAV",e[e.NOBR=75]="NOBR",e[e.NOFRAMES=76]="NOFRAMES",e[e.NOEMBED=77]="NOEMBED",e[e.NOSCRIPT=78]="NOSCRIPT",e[e.OBJECT=79]="OBJECT",e[e.OL=80]="OL",e[e.OPTGROUP=81]="OPTGROUP",e[e.OPTION=82]="OPTION",e[e.P=83]="P",e[e.PARAM=84]="PARAM",e[e.PLAINTEXT=85]="PLAINTEXT",e[e.PRE=86]="PRE",e[e.RB=87]="RB",e[e.RP=88]="RP",e[e.RT=89]="RT",e[e.RTC=90]="RTC",e[e.RUBY=91]="RUBY",e[e.S=92]="S",e[e.SCRIPT=93]="SCRIPT",e[e.SEARCH=94]="SEARCH",e[e.SECTION=95]="SECTION",e[e.SELECT=96]="SELECT",e[e.SOURCE=97]="SOURCE",e[e.SMALL=98]="SMALL",e[e.SPAN=99]="SPAN",e[e.STRIKE=100]="STRIKE",e[e.STRONG=101]="STRONG",e[e.STYLE=102]="STYLE",e[e.SUB=103]="SUB",e[e.SUMMARY=104]="SUMMARY",e[e.SUP=105]="SUP",e[e.TABLE=106]="TABLE",e[e.TBODY=107]="TBODY",e[e.TEMPLATE=108]="TEMPLATE",e[e.TEXTAREA=109]="TEXTAREA",e[e.TFOOT=110]="TFOOT",e[e.TD=111]="TD",e[e.TH=112]="TH",e[e.THEAD=113]="THEAD",e[e.TITLE=114]="TITLE",e[e.TR=115]="TR",e[e.TRACK=116]="TRACK",e[e.TT=117]="TT",e[e.U=118]="U",e[e.UL=119]="UL",e[e.SVG=120]="SVG",e[e.VAR=121]="VAR",e[e.WBR=122]="WBR",e[e.XMP=123]="XMP"})(g||(g={}));var jFe=new Map([[M.A,g.A],[M.ADDRESS,g.ADDRESS],[M.ANNOTATION_XML,g.ANNOTATION_XML],[M.APPLET,g.APPLET],[M.AREA,g.AREA],[M.ARTICLE,g.ARTICLE],[M.ASIDE,g.ASIDE],[M.B,g.B],[M.BASE,g.BASE],[M.BASEFONT,g.BASEFONT],[M.BGSOUND,g.BGSOUND],[M.BIG,g.BIG],[M.BLOCKQUOTE,g.BLOCKQUOTE],[M.BODY,g.BODY],[M.BR,g.BR],[M.BUTTON,g.BUTTON],[M.CAPTION,g.CAPTION],[M.CENTER,g.CENTER],[M.CODE,g.CODE],[M.COL,g.COL],[M.COLGROUP,g.COLGROUP],[M.DD,g.DD],[M.DESC,g.DESC],[M.DETAILS,g.DETAILS],[M.DIALOG,g.DIALOG],[M.DIR,g.DIR],[M.DIV,g.DIV],[M.DL,g.DL],[M.DT,g.DT],[M.EM,g.EM],[M.EMBED,g.EMBED],[M.FIELDSET,g.FIELDSET],[M.FIGCAPTION,g.FIGCAPTION],[M.FIGURE,g.FIGURE],[M.FONT,g.FONT],[M.FOOTER,g.FOOTER],[M.FOREIGN_OBJECT,g.FOREIGN_OBJECT],[M.FORM,g.FORM],[M.FRAME,g.FRAME],[M.FRAMESET,g.FRAMESET],[M.H1,g.H1],[M.H2,g.H2],[M.H3,g.H3],[M.H4,g.H4],[M.H5,g.H5],[M.H6,g.H6],[M.HEAD,g.HEAD],[M.HEADER,g.HEADER],[M.HGROUP,g.HGROUP],[M.HR,g.HR],[M.HTML,g.HTML],[M.I,g.I],[M.IMG,g.IMG],[M.IMAGE,g.IMAGE],[M.INPUT,g.INPUT],[M.IFRAME,g.IFRAME],[M.KEYGEN,g.KEYGEN],[M.LABEL,g.LABEL],[M.LI,g.LI],[M.LINK,g.LINK],[M.LISTING,g.LISTING],[M.MAIN,g.MAIN],[M.MALIGNMARK,g.MALIGNMARK],[M.MARQUEE,g.MARQUEE],[M.MATH,g.MATH],[M.MENU,g.MENU],[M.META,g.META],[M.MGLYPH,g.MGLYPH],[M.MI,g.MI],[M.MO,g.MO],[M.MN,g.MN],[M.MS,g.MS],[M.MTEXT,g.MTEXT],[M.NAV,g.NAV],[M.NOBR,g.NOBR],[M.NOFRAMES,g.NOFRAMES],[M.NOEMBED,g.NOEMBED],[M.NOSCRIPT,g.NOSCRIPT],[M.OBJECT,g.OBJECT],[M.OL,g.OL],[M.OPTGROUP,g.OPTGROUP],[M.OPTION,g.OPTION],[M.P,g.P],[M.PARAM,g.PARAM],[M.PLAINTEXT,g.PLAINTEXT],[M.PRE,g.PRE],[M.RB,g.RB],[M.RP,g.RP],[M.RT,g.RT],[M.RTC,g.RTC],[M.RUBY,g.RUBY],[M.S,g.S],[M.SCRIPT,g.SCRIPT],[M.SEARCH,g.SEARCH],[M.SECTION,g.SECTION],[M.SELECT,g.SELECT],[M.SOURCE,g.SOURCE],[M.SMALL,g.SMALL],[M.SPAN,g.SPAN],[M.STRIKE,g.STRIKE],[M.STRONG,g.STRONG],[M.STYLE,g.STYLE],[M.SUB,g.SUB],[M.SUMMARY,g.SUMMARY],[M.SUP,g.SUP],[M.TABLE,g.TABLE],[M.TBODY,g.TBODY],[M.TEMPLATE,g.TEMPLATE],[M.TEXTAREA,g.TEXTAREA],[M.TFOOT,g.TFOOT],[M.TD,g.TD],[M.TH,g.TH],[M.THEAD,g.THEAD],[M.TITLE,g.TITLE],[M.TR,g.TR],[M.TRACK,g.TRACK],[M.TT,g.TT],[M.U,g.U],[M.UL,g.UL],[M.SVG,g.SVG],[M.VAR,g.VAR],[M.WBR,g.WBR],[M.XMP,g.XMP]]);function Ha(e){var t;return(t=jFe.get(e))!==null&&t!==void 0?t:g.UNKNOWN}var ee=g,s2={[W.HTML]:new Set([ee.ADDRESS,ee.APPLET,ee.AREA,ee.ARTICLE,ee.ASIDE,ee.BASE,ee.BASEFONT,ee.BGSOUND,ee.BLOCKQUOTE,ee.BODY,ee.BR,ee.BUTTON,ee.CAPTION,ee.CENTER,ee.COL,ee.COLGROUP,ee.DD,ee.DETAILS,ee.DIR,ee.DIV,ee.DL,ee.DT,ee.EMBED,ee.FIELDSET,ee.FIGCAPTION,ee.FIGURE,ee.FOOTER,ee.FORM,ee.FRAME,ee.FRAMESET,ee.H1,ee.H2,ee.H3,ee.H4,ee.H5,ee.H6,ee.HEAD,ee.HEADER,ee.HGROUP,ee.HR,ee.HTML,ee.IFRAME,ee.IMG,ee.INPUT,ee.LI,ee.LINK,ee.LISTING,ee.MAIN,ee.MARQUEE,ee.MENU,ee.META,ee.NAV,ee.NOEMBED,ee.NOFRAMES,ee.NOSCRIPT,ee.OBJECT,ee.OL,ee.P,ee.PARAM,ee.PLAINTEXT,ee.PRE,ee.SCRIPT,ee.SECTION,ee.SELECT,ee.SOURCE,ee.STYLE,ee.SUMMARY,ee.TABLE,ee.TBODY,ee.TD,ee.TEMPLATE,ee.TEXTAREA,ee.TFOOT,ee.TH,ee.THEAD,ee.TITLE,ee.TR,ee.TRACK,ee.UL,ee.WBR,ee.XMP]),[W.MATHML]:new Set([ee.MI,ee.MO,ee.MN,ee.MS,ee.MTEXT,ee.ANNOTATION_XML]),[W.SVG]:new Set([ee.TITLE,ee.FOREIGN_OBJECT,ee.DESC]),[W.XLINK]:new Set,[W.XML]:new Set,[W.XMLNS]:new Set},IA=new Set([ee.H1,ee.H2,ee.H3,ee.H4,ee.H5,ee.H6]),JFe=new Set([M.STYLE,M.SCRIPT,M.XMP,M.IFRAME,M.NOEMBED,M.NOFRAMES,M.PLAINTEXT]);function i2(e,t){return JFe.has(e)||t&&e===M.NOSCRIPT}var _;(function(e){e[e.DATA=0]="DATA",e[e.RCDATA=1]="RCDATA",e[e.RAWTEXT=2]="RAWTEXT",e[e.SCRIPT_DATA=3]="SCRIPT_DATA",e[e.PLAINTEXT=4]="PLAINTEXT",e[e.TAG_OPEN=5]="TAG_OPEN",e[e.END_TAG_OPEN=6]="END_TAG_OPEN",e[e.TAG_NAME=7]="TAG_NAME",e[e.RCDATA_LESS_THAN_SIGN=8]="RCDATA_LESS_THAN_SIGN",e[e.RCDATA_END_TAG_OPEN=9]="RCDATA_END_TAG_OPEN",e[e.RCDATA_END_TAG_NAME=10]="RCDATA_END_TAG_NAME",e[e.RAWTEXT_LESS_THAN_SIGN=11]="RAWTEXT_LESS_THAN_SIGN",e[e.RAWTEXT_END_TAG_OPEN=12]="RAWTEXT_END_TAG_OPEN",e[e.RAWTEXT_END_TAG_NAME=13]="RAWTEXT_END_TAG_NAME",e[e.SCRIPT_DATA_LESS_THAN_SIGN=14]="SCRIPT_DATA_LESS_THAN_SIGN",e[e.SCRIPT_DATA_END_TAG_OPEN=15]="SCRIPT_DATA_END_TAG_OPEN",e[e.SCRIPT_DATA_END_TAG_NAME=16]="SCRIPT_DATA_END_TAG_NAME",e[e.SCRIPT_DATA_ESCAPE_START=17]="SCRIPT_DATA_ESCAPE_START",e[e.SCRIPT_DATA_ESCAPE_START_DASH=18]="SCRIPT_DATA_ESCAPE_START_DASH",e[e.SCRIPT_DATA_ESCAPED=19]="SCRIPT_DATA_ESCAPED",e[e.SCRIPT_DATA_ESCAPED_DASH=20]="SCRIPT_DATA_ESCAPED_DASH",e[e.SCRIPT_DATA_ESCAPED_DASH_DASH=21]="SCRIPT_DATA_ESCAPED_DASH_DASH",e[e.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN=22]="SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN",e[e.SCRIPT_DATA_ESCAPED_END_TAG_OPEN=23]="SCRIPT_DATA_ESCAPED_END_TAG_OPEN",e[e.SCRIPT_DATA_ESCAPED_END_TAG_NAME=24]="SCRIPT_DATA_ESCAPED_END_TAG_NAME",e[e.SCRIPT_DATA_DOUBLE_ESCAPE_START=25]="SCRIPT_DATA_DOUBLE_ESCAPE_START",e[e.SCRIPT_DATA_DOUBLE_ESCAPED=26]="SCRIPT_DATA_DOUBLE_ESCAPED",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH=27]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH=28]="SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH",e[e.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN=29]="SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN",e[e.SCRIPT_DATA_DOUBLE_ESCAPE_END=30]="SCRIPT_DATA_DOUBLE_ESCAPE_END",e[e.BEFORE_ATTRIBUTE_NAME=31]="BEFORE_ATTRIBUTE_NAME",e[e.ATTRIBUTE_NAME=32]="ATTRIBUTE_NAME",e[e.AFTER_ATTRIBUTE_NAME=33]="AFTER_ATTRIBUTE_NAME",e[e.BEFORE_ATTRIBUTE_VALUE=34]="BEFORE_ATTRIBUTE_VALUE",e[e.ATTRIBUTE_VALUE_DOUBLE_QUOTED=35]="ATTRIBUTE_VALUE_DOUBLE_QUOTED",e[e.ATTRIBUTE_VALUE_SINGLE_QUOTED=36]="ATTRIBUTE_VALUE_SINGLE_QUOTED",e[e.ATTRIBUTE_VALUE_UNQUOTED=37]="ATTRIBUTE_VALUE_UNQUOTED",e[e.AFTER_ATTRIBUTE_VALUE_QUOTED=38]="AFTER_ATTRIBUTE_VALUE_QUOTED",e[e.SELF_CLOSING_START_TAG=39]="SELF_CLOSING_START_TAG",e[e.BOGUS_COMMENT=40]="BOGUS_COMMENT",e[e.MARKUP_DECLARATION_OPEN=41]="MARKUP_DECLARATION_OPEN",e[e.COMMENT_START=42]="COMMENT_START",e[e.COMMENT_START_DASH=43]="COMMENT_START_DASH",e[e.COMMENT=44]="COMMENT",e[e.COMMENT_LESS_THAN_SIGN=45]="COMMENT_LESS_THAN_SIGN",e[e.COMMENT_LESS_THAN_SIGN_BANG=46]="COMMENT_LESS_THAN_SIGN_BANG",e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH=47]="COMMENT_LESS_THAN_SIGN_BANG_DASH",e[e.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH=48]="COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH",e[e.COMMENT_END_DASH=49]="COMMENT_END_DASH",e[e.COMMENT_END=50]="COMMENT_END",e[e.COMMENT_END_BANG=51]="COMMENT_END_BANG",e[e.DOCTYPE=52]="DOCTYPE",e[e.BEFORE_DOCTYPE_NAME=53]="BEFORE_DOCTYPE_NAME",e[e.DOCTYPE_NAME=54]="DOCTYPE_NAME",e[e.AFTER_DOCTYPE_NAME=55]="AFTER_DOCTYPE_NAME",e[e.AFTER_DOCTYPE_PUBLIC_KEYWORD=56]="AFTER_DOCTYPE_PUBLIC_KEYWORD",e[e.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER=57]="BEFORE_DOCTYPE_PUBLIC_IDENTIFIER",e[e.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED=58]="DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED",e[e.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED=59]="DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED",e[e.AFTER_DOCTYPE_PUBLIC_IDENTIFIER=60]="AFTER_DOCTYPE_PUBLIC_IDENTIFIER",e[e.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS=61]="BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS",e[e.AFTER_DOCTYPE_SYSTEM_KEYWORD=62]="AFTER_DOCTYPE_SYSTEM_KEYWORD",e[e.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER=63]="BEFORE_DOCTYPE_SYSTEM_IDENTIFIER",e[e.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED=64]="DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED",e[e.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED=65]="DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED",e[e.AFTER_DOCTYPE_SYSTEM_IDENTIFIER=66]="AFTER_DOCTYPE_SYSTEM_IDENTIFIER",e[e.BOGUS_DOCTYPE=67]="BOGUS_DOCTYPE",e[e.CDATA_SECTION=68]="CDATA_SECTION",e[e.CDATA_SECTION_BRACKET=69]="CDATA_SECTION_BRACKET",e[e.CDATA_SECTION_END=70]="CDATA_SECTION_END",e[e.CHARACTER_REFERENCE=71]="CHARACTER_REFERENCE",e[e.AMBIGUOUS_AMPERSAND=72]="AMBIGUOUS_AMPERSAND"})(_||(_={}));var Wr={DATA:_.DATA,RCDATA:_.RCDATA,RAWTEXT:_.RAWTEXT,SCRIPT_DATA:_.SCRIPT_DATA,PLAINTEXT:_.PLAINTEXT,CDATA_SECTION:_.CDATA_SECTION};function WFe(e){return e>=w.DIGIT_0&&e<=w.DIGIT_9}function Jh(e){return e>=w.LATIN_CAPITAL_A&&e<=w.LATIN_CAPITAL_Z}function zFe(e){return e>=w.LATIN_SMALL_A&&e<=w.LATIN_SMALL_Z}function qa(e){return zFe(e)||Jh(e)}function Bj(e){return qa(e)||WFe(e)}function ay(e){return e+32}function vj(e){return e===w.SPACE||e===w.LINE_FEED||e===w.TABULATION||e===w.FORM_FEED}function xj(e){return vj(e)||e===w.SOLIDUS||e===w.GREATER_THAN_SIGN}function XFe(e){return e===w.NULL?V.nullCharacterReference:e>1114111?V.characterReferenceOutsideUnicodeRange:ty(e)?V.surrogateCharacterReference:ny(e)?V.noncharacterCharacterReference:ry(e)||e===w.CARRIAGE_RETURN?V.controlCharacterReference:null}var Wh=class{constructor(t,r){this.options=t,this.handler=r,this.paused=!1,this.inLoop=!1,this.inForeignNode=!1,this.lastStartTagName="",this.active=!1,this.state=_.DATA,this.returnState=_.DATA,this.entityStartPos=0,this.consumedAfterSnapshot=-1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr={name:"",value:""},this.preprocessor=new sy(r),this.currentLocation=this.getCurrentLocation(-1),this.entityDecoder=new Na(oA,(n,s)=>{this.preprocessor.pos=this.entityStartPos+s-1,this._flushCodePointConsumedAsCharacterReference(n)},r.onParseError?{missingSemicolonAfterCharacterReference:()=>{this._err(V.missingSemicolonAfterCharacterReference,1)},absenceOfDigitsInNumericCharacterReference:n=>{this._err(V.absenceOfDigitsInNumericCharacterReference,this.entityStartPos-this.preprocessor.pos+n)},validateNumericCharacterReference:n=>{let s=XFe(n);s&&this._err(s,1)}}:void 0)}_err(t,r=0){var n,s;(s=(n=this.handler).onParseError)===null||s===void 0||s.call(n,this.preprocessor.getError(t,r))}getCurrentLocation(t){return this.options.sourceCodeLocationInfo?{startLine:this.preprocessor.line,startCol:this.preprocessor.col-t,startOffset:this.preprocessor.offset-t,endLine:-1,endCol:-1,endOffset:-1}:null}_runParsingLoop(){if(!this.inLoop){for(this.inLoop=!0;this.active&&!this.paused;){this.consumedAfterSnapshot=0;let t=this._consume();this._ensureHibernation()||this._callState(t)}this.inLoop=!1}}pause(){this.paused=!0}resume(t){if(!this.paused)throw new Error("Parser was already resumed");this.paused=!1,!this.inLoop&&(this._runParsingLoop(),this.paused||t?.())}write(t,r,n){this.active=!0,this.preprocessor.write(t,r),this._runParsingLoop(),this.paused||n?.()}insertHtmlAtCurrentPos(t){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(t),this._runParsingLoop()}_ensureHibernation(){return this.preprocessor.endOfChunkHit?(this.preprocessor.retreat(this.consumedAfterSnapshot),this.consumedAfterSnapshot=0,this.active=!1,!0):!1}_consume(){return this.consumedAfterSnapshot++,this.preprocessor.advance()}_advanceBy(t){this.consumedAfterSnapshot+=t;for(let r=0;r0&&this._err(V.endTagWithAttributes),t.selfClosing&&this._err(V.endTagWithTrailingSolidus),this.handler.onEndTag(t)),this.preprocessor.dropParsedChunk()}emitCurrentComment(t){this.prepareToken(t),this.handler.onComment(t),this.preprocessor.dropParsedChunk()}emitCurrentDoctype(t){this.prepareToken(t),this.handler.onDoctype(t),this.preprocessor.dropParsedChunk()}_emitCurrentCharacterToken(t){if(this.currentCharacterToken){switch(t&&this.currentCharacterToken.location&&(this.currentCharacterToken.location.endLine=t.startLine,this.currentCharacterToken.location.endCol=t.startCol,this.currentCharacterToken.location.endOffset=t.startOffset),this.currentCharacterToken.type){case tt.CHARACTER:{this.handler.onCharacter(this.currentCharacterToken);break}case tt.NULL_CHARACTER:{this.handler.onNullCharacter(this.currentCharacterToken);break}case tt.WHITESPACE_CHARACTER:{this.handler.onWhitespaceCharacter(this.currentCharacterToken);break}}this.currentCharacterToken=null}}_emitEOFToken(){let t=this.getCurrentLocation(0);t&&(t.endLine=t.startLine,t.endCol=t.startCol,t.endOffset=t.startOffset),this._emitCurrentCharacterToken(t),this.handler.onEof({type:tt.EOF,location:t}),this.active=!1}_appendCharToCurrentCharacterToken(t,r){if(this.currentCharacterToken)if(this.currentCharacterToken.type===t){this.currentCharacterToken.chars+=r;return}else this.currentLocation=this.getCurrentLocation(0),this._emitCurrentCharacterToken(this.currentLocation),this.preprocessor.dropParsedChunk();this._createCharacterToken(t,r)}_emitCodePoint(t){let r=vj(t)?tt.WHITESPACE_CHARACTER:t===w.NULL?tt.NULL_CHARACTER:tt.CHARACTER;this._appendCharToCurrentCharacterToken(r,String.fromCodePoint(t))}_emitChars(t){this._appendCharToCurrentCharacterToken(tt.CHARACTER,t)}_startCharacterReference(){this.returnState=this.state,this.state=_.CHARACTER_REFERENCE,this.entityStartPos=this.preprocessor.pos,this.entityDecoder.startEntity(this._isCharacterReferenceInAttribute()?jr.Attribute:jr.Legacy)}_isCharacterReferenceInAttribute(){return this.returnState===_.ATTRIBUTE_VALUE_DOUBLE_QUOTED||this.returnState===_.ATTRIBUTE_VALUE_SINGLE_QUOTED||this.returnState===_.ATTRIBUTE_VALUE_UNQUOTED}_flushCodePointConsumedAsCharacterReference(t){this._isCharacterReferenceInAttribute()?this.currentAttr.value+=String.fromCodePoint(t):this._emitCodePoint(t)}_callState(t){switch(this.state){case _.DATA:{this._stateData(t);break}case _.RCDATA:{this._stateRcdata(t);break}case _.RAWTEXT:{this._stateRawtext(t);break}case _.SCRIPT_DATA:{this._stateScriptData(t);break}case _.PLAINTEXT:{this._statePlaintext(t);break}case _.TAG_OPEN:{this._stateTagOpen(t);break}case _.END_TAG_OPEN:{this._stateEndTagOpen(t);break}case _.TAG_NAME:{this._stateTagName(t);break}case _.RCDATA_LESS_THAN_SIGN:{this._stateRcdataLessThanSign(t);break}case _.RCDATA_END_TAG_OPEN:{this._stateRcdataEndTagOpen(t);break}case _.RCDATA_END_TAG_NAME:{this._stateRcdataEndTagName(t);break}case _.RAWTEXT_LESS_THAN_SIGN:{this._stateRawtextLessThanSign(t);break}case _.RAWTEXT_END_TAG_OPEN:{this._stateRawtextEndTagOpen(t);break}case _.RAWTEXT_END_TAG_NAME:{this._stateRawtextEndTagName(t);break}case _.SCRIPT_DATA_LESS_THAN_SIGN:{this._stateScriptDataLessThanSign(t);break}case _.SCRIPT_DATA_END_TAG_OPEN:{this._stateScriptDataEndTagOpen(t);break}case _.SCRIPT_DATA_END_TAG_NAME:{this._stateScriptDataEndTagName(t);break}case _.SCRIPT_DATA_ESCAPE_START:{this._stateScriptDataEscapeStart(t);break}case _.SCRIPT_DATA_ESCAPE_START_DASH:{this._stateScriptDataEscapeStartDash(t);break}case _.SCRIPT_DATA_ESCAPED:{this._stateScriptDataEscaped(t);break}case _.SCRIPT_DATA_ESCAPED_DASH:{this._stateScriptDataEscapedDash(t);break}case _.SCRIPT_DATA_ESCAPED_DASH_DASH:{this._stateScriptDataEscapedDashDash(t);break}case _.SCRIPT_DATA_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataEscapedLessThanSign(t);break}case _.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:{this._stateScriptDataEscapedEndTagOpen(t);break}case _.SCRIPT_DATA_ESCAPED_END_TAG_NAME:{this._stateScriptDataEscapedEndTagName(t);break}case _.SCRIPT_DATA_DOUBLE_ESCAPE_START:{this._stateScriptDataDoubleEscapeStart(t);break}case _.SCRIPT_DATA_DOUBLE_ESCAPED:{this._stateScriptDataDoubleEscaped(t);break}case _.SCRIPT_DATA_DOUBLE_ESCAPED_DASH:{this._stateScriptDataDoubleEscapedDash(t);break}case _.SCRIPT_DATA_DOUBLE_ESCAPED_DASH_DASH:{this._stateScriptDataDoubleEscapedDashDash(t);break}case _.SCRIPT_DATA_DOUBLE_ESCAPED_LESS_THAN_SIGN:{this._stateScriptDataDoubleEscapedLessThanSign(t);break}case _.SCRIPT_DATA_DOUBLE_ESCAPE_END:{this._stateScriptDataDoubleEscapeEnd(t);break}case _.BEFORE_ATTRIBUTE_NAME:{this._stateBeforeAttributeName(t);break}case _.ATTRIBUTE_NAME:{this._stateAttributeName(t);break}case _.AFTER_ATTRIBUTE_NAME:{this._stateAfterAttributeName(t);break}case _.BEFORE_ATTRIBUTE_VALUE:{this._stateBeforeAttributeValue(t);break}case _.ATTRIBUTE_VALUE_DOUBLE_QUOTED:{this._stateAttributeValueDoubleQuoted(t);break}case _.ATTRIBUTE_VALUE_SINGLE_QUOTED:{this._stateAttributeValueSingleQuoted(t);break}case _.ATTRIBUTE_VALUE_UNQUOTED:{this._stateAttributeValueUnquoted(t);break}case _.AFTER_ATTRIBUTE_VALUE_QUOTED:{this._stateAfterAttributeValueQuoted(t);break}case _.SELF_CLOSING_START_TAG:{this._stateSelfClosingStartTag(t);break}case _.BOGUS_COMMENT:{this._stateBogusComment(t);break}case _.MARKUP_DECLARATION_OPEN:{this._stateMarkupDeclarationOpen(t);break}case _.COMMENT_START:{this._stateCommentStart(t);break}case _.COMMENT_START_DASH:{this._stateCommentStartDash(t);break}case _.COMMENT:{this._stateComment(t);break}case _.COMMENT_LESS_THAN_SIGN:{this._stateCommentLessThanSign(t);break}case _.COMMENT_LESS_THAN_SIGN_BANG:{this._stateCommentLessThanSignBang(t);break}case _.COMMENT_LESS_THAN_SIGN_BANG_DASH:{this._stateCommentLessThanSignBangDash(t);break}case _.COMMENT_LESS_THAN_SIGN_BANG_DASH_DASH:{this._stateCommentLessThanSignBangDashDash(t);break}case _.COMMENT_END_DASH:{this._stateCommentEndDash(t);break}case _.COMMENT_END:{this._stateCommentEnd(t);break}case _.COMMENT_END_BANG:{this._stateCommentEndBang(t);break}case _.DOCTYPE:{this._stateDoctype(t);break}case _.BEFORE_DOCTYPE_NAME:{this._stateBeforeDoctypeName(t);break}case _.DOCTYPE_NAME:{this._stateDoctypeName(t);break}case _.AFTER_DOCTYPE_NAME:{this._stateAfterDoctypeName(t);break}case _.AFTER_DOCTYPE_PUBLIC_KEYWORD:{this._stateAfterDoctypePublicKeyword(t);break}case _.BEFORE_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateBeforeDoctypePublicIdentifier(t);break}case _.DOCTYPE_PUBLIC_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypePublicIdentifierDoubleQuoted(t);break}case _.DOCTYPE_PUBLIC_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypePublicIdentifierSingleQuoted(t);break}case _.AFTER_DOCTYPE_PUBLIC_IDENTIFIER:{this._stateAfterDoctypePublicIdentifier(t);break}case _.BETWEEN_DOCTYPE_PUBLIC_AND_SYSTEM_IDENTIFIERS:{this._stateBetweenDoctypePublicAndSystemIdentifiers(t);break}case _.AFTER_DOCTYPE_SYSTEM_KEYWORD:{this._stateAfterDoctypeSystemKeyword(t);break}case _.BEFORE_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateBeforeDoctypeSystemIdentifier(t);break}case _.DOCTYPE_SYSTEM_IDENTIFIER_DOUBLE_QUOTED:{this._stateDoctypeSystemIdentifierDoubleQuoted(t);break}case _.DOCTYPE_SYSTEM_IDENTIFIER_SINGLE_QUOTED:{this._stateDoctypeSystemIdentifierSingleQuoted(t);break}case _.AFTER_DOCTYPE_SYSTEM_IDENTIFIER:{this._stateAfterDoctypeSystemIdentifier(t);break}case _.BOGUS_DOCTYPE:{this._stateBogusDoctype(t);break}case _.CDATA_SECTION:{this._stateCdataSection(t);break}case _.CDATA_SECTION_BRACKET:{this._stateCdataSectionBracket(t);break}case _.CDATA_SECTION_END:{this._stateCdataSectionEnd(t);break}case _.CHARACTER_REFERENCE:{this._stateCharacterReference();break}case _.AMBIGUOUS_AMPERSAND:{this._stateAmbiguousAmpersand(t);break}default:throw new Error("Unknown state")}}_stateData(t){switch(t){case w.LESS_THAN_SIGN:{this.state=_.TAG_OPEN;break}case w.AMPERSAND:{this._startCharacterReference();break}case w.NULL:{this._err(V.unexpectedNullCharacter),this._emitCodePoint(t);break}case w.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateRcdata(t){switch(t){case w.AMPERSAND:{this._startCharacterReference();break}case w.LESS_THAN_SIGN:{this.state=_.RCDATA_LESS_THAN_SIGN;break}case w.NULL:{this._err(V.unexpectedNullCharacter),this._emitChars(St);break}case w.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateRawtext(t){switch(t){case w.LESS_THAN_SIGN:{this.state=_.RAWTEXT_LESS_THAN_SIGN;break}case w.NULL:{this._err(V.unexpectedNullCharacter),this._emitChars(St);break}case w.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateScriptData(t){switch(t){case w.LESS_THAN_SIGN:{this.state=_.SCRIPT_DATA_LESS_THAN_SIGN;break}case w.NULL:{this._err(V.unexpectedNullCharacter),this._emitChars(St);break}case w.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_statePlaintext(t){switch(t){case w.NULL:{this._err(V.unexpectedNullCharacter),this._emitChars(St);break}case w.EOF:{this._emitEOFToken();break}default:this._emitCodePoint(t)}}_stateTagOpen(t){if(qa(t))this._createStartTagToken(),this.state=_.TAG_NAME,this._stateTagName(t);else switch(t){case w.EXCLAMATION_MARK:{this.state=_.MARKUP_DECLARATION_OPEN;break}case w.SOLIDUS:{this.state=_.END_TAG_OPEN;break}case w.QUESTION_MARK:{this._err(V.unexpectedQuestionMarkInsteadOfTagName),this._createCommentToken(1),this.state=_.BOGUS_COMMENT,this._stateBogusComment(t);break}case w.EOF:{this._err(V.eofBeforeTagName),this._emitChars("<"),this._emitEOFToken();break}default:this._err(V.invalidFirstCharacterOfTagName),this._emitChars("<"),this.state=_.DATA,this._stateData(t)}}_stateEndTagOpen(t){if(qa(t))this._createEndTagToken(),this.state=_.TAG_NAME,this._stateTagName(t);else switch(t){case w.GREATER_THAN_SIGN:{this._err(V.missingEndTagName),this.state=_.DATA;break}case w.EOF:{this._err(V.eofBeforeTagName),this._emitChars("");break}case w.NULL:{this._err(V.unexpectedNullCharacter),this.state=_.SCRIPT_DATA_ESCAPED,this._emitChars(St);break}case w.EOF:{this._err(V.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=_.SCRIPT_DATA_ESCAPED,this._emitCodePoint(t)}}_stateScriptDataEscapedLessThanSign(t){t===w.SOLIDUS?this.state=_.SCRIPT_DATA_ESCAPED_END_TAG_OPEN:qa(t)?(this._emitChars("<"),this.state=_.SCRIPT_DATA_DOUBLE_ESCAPE_START,this._stateScriptDataDoubleEscapeStart(t)):(this._emitChars("<"),this.state=_.SCRIPT_DATA_ESCAPED,this._stateScriptDataEscaped(t))}_stateScriptDataEscapedEndTagOpen(t){qa(t)?(this.state=_.SCRIPT_DATA_ESCAPED_END_TAG_NAME,this._stateScriptDataEscapedEndTagName(t)):(this._emitChars("");break}case w.NULL:{this._err(V.unexpectedNullCharacter),this.state=_.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitChars(St);break}case w.EOF:{this._err(V.eofInScriptHtmlCommentLikeText),this._emitEOFToken();break}default:this.state=_.SCRIPT_DATA_DOUBLE_ESCAPED,this._emitCodePoint(t)}}_stateScriptDataDoubleEscapedLessThanSign(t){t===w.SOLIDUS?(this.state=_.SCRIPT_DATA_DOUBLE_ESCAPE_END,this._emitChars("/")):(this.state=_.SCRIPT_DATA_DOUBLE_ESCAPED,this._stateScriptDataDoubleEscaped(t))}_stateScriptDataDoubleEscapeEnd(t){if(this.preprocessor.startsWith(ln.SCRIPT,!1)&&xj(this.preprocessor.peek(ln.SCRIPT.length))){this._emitCodePoint(t);for(let r=0;r0&&this._isInTemplate()&&this.tmplCount--,this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,!0)}replace(t,r){let n=this._indexOf(t);this.items[n]=r,n===this.stackTop&&(this.current=r)}insertAfter(t,r,n){let s=this._indexOf(t)+1;this.items.splice(s,0,r),this.tagIDs.splice(s,0,n),this.stackTop++,s===this.stackTop&&this._updateCurrentElement(),this.handler.onItemPush(this.current,this.currentTagId,s===this.stackTop)}popUntilTagNamePopped(t){let r=this.stackTop+1;do r=this.tagIDs.lastIndexOf(t,r-1);while(r>0&&this.treeAdapter.getNamespaceURI(this.items[r])!==W.HTML);this.shortenToLength(r<0?0:r)}shortenToLength(t){for(;this.stackTop>=t;){let r=this.current;this.tmplCount>0&&this._isInTemplate()&&(this.tmplCount-=1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(r,this.stackTop=0;n--)if(t.has(this.tagIDs[n])&&this.treeAdapter.getNamespaceURI(this.items[n])===r)return n;return-1}clearBackTo(t,r){let n=this._indexOfTagNames(t,r);this.shortenToLength(n+1)}clearBackToTableContext(){this.clearBackTo(rLe,W.HTML)}clearBackToTableBodyContext(){this.clearBackTo(tLe,W.HTML)}clearBackToTableRowContext(){this.clearBackTo(eLe,W.HTML)}remove(t){let r=this._indexOf(t);r>=0&&(r===this.stackTop?this.pop():(this.items.splice(r,1),this.tagIDs.splice(r,1),this.stackTop--,this._updateCurrentElement(),this.handler.onItemPop(t,!1)))}tryPeekProperlyNestedBodyElement(){return this.stackTop>=1&&this.tagIDs[1]===g.BODY?this.items[1]:null}contains(t){return this._indexOf(t)>-1}getCommonAncestor(t){let r=this._indexOf(t)-1;return r>=0?this.items[r]:null}isRootHtmlElementCurrent(){return this.stackTop===0&&this.tagIDs[0]===g.HTML}hasInDynamicScope(t,r){for(let n=this.stackTop;n>=0;n--){let s=this.tagIDs[n];switch(this.treeAdapter.getNamespaceURI(this.items[n])){case W.HTML:{if(s===t)return!0;if(r.has(s))return!1;break}case W.SVG:{if(wj.has(s))return!1;break}case W.MATHML:{if(Tj.has(s))return!1;break}}}return!0}hasInScope(t){return this.hasInDynamicScope(t,cy)}hasInListItemScope(t){return this.hasInDynamicScope(t,KFe)}hasInButtonScope(t){return this.hasInDynamicScope(t,ZFe)}hasNumberedHeaderInScope(){for(let t=this.stackTop;t>=0;t--){let r=this.tagIDs[t];switch(this.treeAdapter.getNamespaceURI(this.items[t])){case W.HTML:{if(IA.has(r))return!0;if(cy.has(r))return!1;break}case W.SVG:{if(wj.has(r))return!1;break}case W.MATHML:{if(Tj.has(r))return!1;break}}}return!0}hasInTableScope(t){for(let r=this.stackTop;r>=0;r--)if(this.treeAdapter.getNamespaceURI(this.items[r])===W.HTML)switch(this.tagIDs[r]){case t:return!0;case g.TABLE:case g.HTML:return!1}return!0}hasTableBodyContextInTableScope(){for(let t=this.stackTop;t>=0;t--)if(this.treeAdapter.getNamespaceURI(this.items[t])===W.HTML)switch(this.tagIDs[t]){case g.TBODY:case g.THEAD:case g.TFOOT:return!0;case g.TABLE:case g.HTML:return!1}return!0}hasInSelectScope(t){for(let r=this.stackTop;r>=0;r--)if(this.treeAdapter.getNamespaceURI(this.items[r])===W.HTML)switch(this.tagIDs[r]){case t:return!0;case g.OPTION:case g.OPTGROUP:break;default:return!1}return!0}generateImpliedEndTags(){for(;Sj.has(this.currentTagId);)this.pop()}generateImpliedEndTagsThoroughly(){for(;Qj.has(this.currentTagId);)this.pop()}generateImpliedEndTagsWithExclusion(t){for(;this.currentTagId!==t&&Qj.has(this.currentTagId);)this.pop()}};var ri;(function(e){e[e.Marker=0]="Marker",e[e.Element=1]="Element"})(ri||(ri={}));var _j={type:ri.Marker},ly=class{constructor(t){this.treeAdapter=t,this.entries=[],this.bookmark=null}_getNoahArkConditionCandidates(t,r){let n=[],s=r.length,i=this.treeAdapter.getTagName(t),o=this.treeAdapter.getNamespaceURI(t);for(let a=0;a[o.name,o.value])),i=0;for(let o=0;os.get(c.name)===c.value)&&(i+=1,i>=3&&this.entries.splice(a.idx,1))}}insertMarker(){this.entries.unshift(_j)}pushElement(t,r){this._ensureNoahArkCondition(t),this.entries.unshift({type:ri.Element,element:t,token:r})}insertElementAfterBookmark(t,r){let n=this.entries.indexOf(this.bookmark);this.entries.splice(n,0,{type:ri.Element,element:t,token:r})}removeEntry(t){let r=this.entries.indexOf(t);r>=0&&this.entries.splice(r,1)}clearToLastMarker(){let t=this.entries.indexOf(_j);t>=0?this.entries.splice(0,t+1):this.entries.length=0}getElementEntryInScopeWithTagName(t){let r=this.entries.find(n=>n.type===ri.Marker||this.treeAdapter.getTagName(n.element)===t);return r&&r.type===ri.Element?r:null}getElementEntry(t){return this.entries.find(r=>r.type===ri.Element&&r.element===t)}};var vs={createDocument(){return{nodeName:"#document",mode:Jr.NO_QUIRKS,childNodes:[]}},createDocumentFragment(){return{nodeName:"#document-fragment",childNodes:[]}},createElement(e,t,r){return{nodeName:e,tagName:e,attrs:r,namespaceURI:t,childNodes:[],parentNode:null}},createCommentNode(e){return{nodeName:"#comment",data:e,parentNode:null}},createTextNode(e){return{nodeName:"#text",value:e,parentNode:null}},appendChild(e,t){e.childNodes.push(t),t.parentNode=e},insertBefore(e,t,r){let n=e.childNodes.indexOf(r);e.childNodes.splice(n,0,t),t.parentNode=e},setTemplateContent(e,t){e.content=t},getTemplateContent(e){return e.content},setDocumentType(e,t,r,n){let s=e.childNodes.find(i=>i.nodeName==="#documentType");if(s)s.name=t,s.publicId=r,s.systemId=n;else{let i={nodeName:"#documentType",name:t,publicId:r,systemId:n,parentNode:null};vs.appendChild(e,i)}},setDocumentMode(e,t){e.mode=t},getDocumentMode(e){return e.mode},detachNode(e){if(e.parentNode){let t=e.parentNode.childNodes.indexOf(e);e.parentNode.childNodes.splice(t,1),e.parentNode=null}},insertText(e,t){if(e.childNodes.length>0){let r=e.childNodes[e.childNodes.length-1];if(vs.isTextNode(r)){r.value+=t;return}}vs.appendChild(e,vs.createTextNode(t))},insertTextBefore(e,t,r){let n=e.childNodes[e.childNodes.indexOf(r)-1];n&&vs.isTextNode(n)?n.value+=t:vs.insertBefore(e,vs.createTextNode(t),r)},adoptAttributes(e,t){let r=new Set(e.attrs.map(n=>n.name));for(let n=0;ne.startsWith(r))}function Fj(e){return e.name===Dj&&e.publicId===null&&(e.systemId===null||e.systemId===sLe)}function Lj(e){if(e.name!==Dj)return Jr.QUIRKS;let{systemId:t}=e;if(t&&t.toLowerCase()===iLe)return Jr.QUIRKS;let{publicId:r}=e;if(r!==null){if(r=r.toLowerCase(),aLe.has(r))return Jr.QUIRKS;let n=t===null?oLe:Nj;if(Rj(r,n))return Jr.QUIRKS;if(n=t===null?kj:cLe,Rj(r,n))return Jr.LIMITED_QUIRKS}return Jr.NO_QUIRKS}var Oj={TEXT_HTML:"text/html",APPLICATION_XML:"application/xhtml+xml"},lLe="definitionurl",ALe="definitionURL",fLe=new Map(["attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(e=>[e.toLowerCase(),e])),dLe=new Map([["xlink:actuate",{prefix:"xlink",name:"actuate",namespace:W.XLINK}],["xlink:arcrole",{prefix:"xlink",name:"arcrole",namespace:W.XLINK}],["xlink:href",{prefix:"xlink",name:"href",namespace:W.XLINK}],["xlink:role",{prefix:"xlink",name:"role",namespace:W.XLINK}],["xlink:show",{prefix:"xlink",name:"show",namespace:W.XLINK}],["xlink:title",{prefix:"xlink",name:"title",namespace:W.XLINK}],["xlink:type",{prefix:"xlink",name:"type",namespace:W.XLINK}],["xml:lang",{prefix:"xml",name:"lang",namespace:W.XML}],["xml:space",{prefix:"xml",name:"space",namespace:W.XML}],["xmlns",{prefix:"",name:"xmlns",namespace:W.XMLNS}],["xmlns:xlink",{prefix:"xmlns",name:"xlink",namespace:W.XMLNS}]]),hLe=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(e=>[e.toLowerCase(),e])),pLe=new Set([g.B,g.BIG,g.BLOCKQUOTE,g.BODY,g.BR,g.CENTER,g.CODE,g.DD,g.DIV,g.DL,g.DT,g.EM,g.EMBED,g.H1,g.H2,g.H3,g.H4,g.H5,g.H6,g.HEAD,g.HR,g.I,g.IMG,g.LI,g.LISTING,g.MENU,g.META,g.NOBR,g.OL,g.P,g.PRE,g.RUBY,g.S,g.SMALL,g.SPAN,g.STRONG,g.STRIKE,g.SUB,g.SUP,g.TABLE,g.TT,g.U,g.UL,g.VAR]);function Mj(e){let t=e.tagID;return t===g.FONT&&e.attrs.some(({name:n})=>n===Pi.COLOR||n===Pi.SIZE||n===Pi.FACE)||pLe.has(t)}function o2(e){for(let t=0;t0&&this._setContextModes(t,r)}onItemPop(t,r){var n,s;if(this.options.sourceCodeLocationInfo&&this._setEndLocation(t,this.currentToken),(s=(n=this.treeAdapter).onItemPop)===null||s===void 0||s.call(n,t,this.openElements.current),r){let i,o;this.openElements.stackTop===0&&this.fragmentContext?(i=this.fragmentContext,o=this.fragmentContextID):{current:i,currentTagId:o}=this.openElements,this._setContextModes(i,o)}}_setContextModes(t,r){let n=t===this.document||this.treeAdapter.getNamespaceURI(t)===W.HTML;this.currentNotInHTML=!n,this.tokenizer.inForeignNode=!n&&!this._isIntegrationPoint(r,t)}_switchToTextParsing(t,r){this._insertElement(t,W.HTML),this.tokenizer.state=r,this.originalInsertionMode=this.insertionMode,this.insertionMode=N.TEXT}switchToPlaintextParsing(){this.insertionMode=N.TEXT,this.originalInsertionMode=N.IN_BODY,this.tokenizer.state=Wr.PLAINTEXT}_getAdjustedCurrentElement(){return this.openElements.stackTop===0&&this.fragmentContext?this.fragmentContext:this.openElements.current}_findFormInFragmentContext(){let t=this.fragmentContext;for(;t;){if(this.treeAdapter.getTagName(t)===M.FORM){this.formElement=t;break}t=this.treeAdapter.getParentNode(t)}}_initTokenizerForFragmentParsing(){if(!(!this.fragmentContext||this.treeAdapter.getNamespaceURI(this.fragmentContext)!==W.HTML))switch(this.fragmentContextID){case g.TITLE:case g.TEXTAREA:{this.tokenizer.state=Wr.RCDATA;break}case g.STYLE:case g.XMP:case g.IFRAME:case g.NOEMBED:case g.NOFRAMES:case g.NOSCRIPT:{this.tokenizer.state=Wr.RAWTEXT;break}case g.SCRIPT:{this.tokenizer.state=Wr.SCRIPT_DATA;break}case g.PLAINTEXT:{this.tokenizer.state=Wr.PLAINTEXT;break}default:}}_setDocumentType(t){let r=t.name||"",n=t.publicId||"",s=t.systemId||"";if(this.treeAdapter.setDocumentType(this.document,r,n,s),t.location){let o=this.treeAdapter.getChildNodes(this.document).find(a=>this.treeAdapter.isDocumentTypeNode(a));o&&this.treeAdapter.setNodeSourceCodeLocation(o,t.location)}}_attachElementToTree(t,r){if(this.options.sourceCodeLocationInfo){let n=r&&{...r,startTag:r};this.treeAdapter.setNodeSourceCodeLocation(t,n)}if(this._shouldFosterParentOnInsertion())this._fosterParentElement(t);else{let n=this.openElements.currentTmplContentOrNode;this.treeAdapter.appendChild(n,t)}}_appendElement(t,r){let n=this.treeAdapter.createElement(t.tagName,r,t.attrs);this._attachElementToTree(n,t.location)}_insertElement(t,r){let n=this.treeAdapter.createElement(t.tagName,r,t.attrs);this._attachElementToTree(n,t.location),this.openElements.push(n,t.tagID)}_insertFakeElement(t,r){let n=this.treeAdapter.createElement(t,W.HTML,[]);this._attachElementToTree(n,null),this.openElements.push(n,r)}_insertTemplate(t){let r=this.treeAdapter.createElement(t.tagName,W.HTML,t.attrs),n=this.treeAdapter.createDocumentFragment();this.treeAdapter.setTemplateContent(r,n),this._attachElementToTree(r,t.location),this.openElements.push(r,t.tagID),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,null)}_insertFakeRootElement(){let t=this.treeAdapter.createElement(M.HTML,W.HTML,[]);this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(t,null),this.treeAdapter.appendChild(this.openElements.current,t),this.openElements.push(t,g.HTML)}_appendCommentNode(t,r){let n=this.treeAdapter.createCommentNode(t.data);this.treeAdapter.appendChild(r,n),this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(n,t.location)}_insertCharacters(t){let r,n;if(this._shouldFosterParentOnInsertion()?({parent:r,beforeElement:n}=this._findFosterParentingLocation(),n?this.treeAdapter.insertTextBefore(r,t.chars,n):this.treeAdapter.insertText(r,t.chars)):(r=this.openElements.currentTmplContentOrNode,this.treeAdapter.insertText(r,t.chars)),!t.location)return;let s=this.treeAdapter.getChildNodes(r),i=n?s.lastIndexOf(n):s.length,o=s[i-1];if(this.treeAdapter.getNodeSourceCodeLocation(o)){let{endLine:c,endCol:u,endOffset:l}=t.location;this.treeAdapter.updateNodeSourceCodeLocation(o,{endLine:c,endCol:u,endOffset:l})}else this.options.sourceCodeLocationInfo&&this.treeAdapter.setNodeSourceCodeLocation(o,t.location)}_adoptNodes(t,r){for(let n=this.treeAdapter.getFirstChild(t);n;n=this.treeAdapter.getFirstChild(t))this.treeAdapter.detachNode(n),this.treeAdapter.appendChild(r,n)}_setEndLocation(t,r){if(this.treeAdapter.getNodeSourceCodeLocation(t)&&r.location){let n=r.location,s=this.treeAdapter.getTagName(t),i=r.type===tt.END_TAG&&s===r.tagName?{endTag:{...n},endLine:n.endLine,endCol:n.endCol,endOffset:n.endOffset}:{endLine:n.startLine,endCol:n.startCol,endOffset:n.startOffset};this.treeAdapter.updateNodeSourceCodeLocation(t,i)}}shouldProcessStartTagTokenInForeignContent(t){if(!this.currentNotInHTML)return!1;let r,n;return this.openElements.stackTop===0&&this.fragmentContext?(r=this.fragmentContext,n=this.fragmentContextID):{current:r,currentTagId:n}=this.openElements,t.tagID===g.SVG&&this.treeAdapter.getTagName(r)===M.ANNOTATION_XML&&this.treeAdapter.getNamespaceURI(r)===W.MATHML?!1:this.tokenizer.inForeignNode||(t.tagID===g.MGLYPH||t.tagID===g.MALIGNMARK)&&!this._isIntegrationPoint(n,r,W.HTML)}_processToken(t){switch(t.type){case tt.CHARACTER:{this.onCharacter(t);break}case tt.NULL_CHARACTER:{this.onNullCharacter(t);break}case tt.COMMENT:{this.onComment(t);break}case tt.DOCTYPE:{this.onDoctype(t);break}case tt.START_TAG:{this._processStartTag(t);break}case tt.END_TAG:{this.onEndTag(t);break}case tt.EOF:{this.onEof(t);break}case tt.WHITESPACE_CHARACTER:{this.onWhitespaceCharacter(t);break}}}_isIntegrationPoint(t,r,n){let s=this.treeAdapter.getNamespaceURI(r),i=this.treeAdapter.getAttrList(r);return Uj(t,s,i,n)}_reconstructActiveFormattingElements(){let t=this.activeFormattingElements.entries.length;if(t){let r=this.activeFormattingElements.entries.findIndex(s=>s.type===ri.Marker||this.openElements.contains(s.element)),n=r<0?t-1:r-1;for(let s=n;s>=0;s--){let i=this.activeFormattingElements.entries[s];this._insertElement(i.token,this.treeAdapter.getNamespaceURI(i.element)),i.element=this.openElements.current}}}_closeTableCell(){this.openElements.generateImpliedEndTags(),this.openElements.popUntilTableCellPopped(),this.activeFormattingElements.clearToLastMarker(),this.insertionMode=N.IN_ROW}_closePElement(){this.openElements.generateImpliedEndTagsWithExclusion(g.P),this.openElements.popUntilTagNamePopped(g.P)}_resetInsertionMode(){for(let t=this.openElements.stackTop;t>=0;t--)switch(t===0&&this.fragmentContext?this.fragmentContextID:this.openElements.tagIDs[t]){case g.TR:{this.insertionMode=N.IN_ROW;return}case g.TBODY:case g.THEAD:case g.TFOOT:{this.insertionMode=N.IN_TABLE_BODY;return}case g.CAPTION:{this.insertionMode=N.IN_CAPTION;return}case g.COLGROUP:{this.insertionMode=N.IN_COLUMN_GROUP;return}case g.TABLE:{this.insertionMode=N.IN_TABLE;return}case g.BODY:{this.insertionMode=N.IN_BODY;return}case g.FRAMESET:{this.insertionMode=N.IN_FRAMESET;return}case g.SELECT:{this._resetInsertionModeForSelect(t);return}case g.TEMPLATE:{this.insertionMode=this.tmplInsertionModeStack[0];return}case g.HTML:{this.insertionMode=this.headElement?N.AFTER_HEAD:N.BEFORE_HEAD;return}case g.TD:case g.TH:{if(t>0){this.insertionMode=N.IN_CELL;return}break}case g.HEAD:{if(t>0){this.insertionMode=N.IN_HEAD;return}break}}this.insertionMode=N.IN_BODY}_resetInsertionModeForSelect(t){if(t>0)for(let r=t-1;r>0;r--){let n=this.openElements.tagIDs[r];if(n===g.TEMPLATE)break;if(n===g.TABLE){this.insertionMode=N.IN_SELECT_IN_TABLE;return}}this.insertionMode=N.IN_SELECT}_isElementCausesFosterParenting(t){return $j.has(t)}_shouldFosterParentOnInsertion(){return this.fosterParentingEnabled&&this._isElementCausesFosterParenting(this.openElements.currentTagId)}_findFosterParentingLocation(){for(let t=this.openElements.stackTop;t>=0;t--){let r=this.openElements.items[t];switch(this.openElements.tagIDs[t]){case g.TEMPLATE:{if(this.treeAdapter.getNamespaceURI(r)===W.HTML)return{parent:this.treeAdapter.getTemplateContent(r),beforeElement:null};break}case g.TABLE:{let n=this.treeAdapter.getParentNode(r);return n?{parent:n,beforeElement:r}:{parent:this.openElements.items[t-1],beforeElement:null}}default:}}return{parent:this.openElements.items[0],beforeElement:null}}_fosterParentElement(t){let r=this._findFosterParentingLocation();r.beforeElement?this.treeAdapter.insertBefore(r.parent,t,r.beforeElement):this.treeAdapter.appendChild(r.parent,t)}_isSpecialElement(t,r){let n=this.treeAdapter.getNamespaceURI(t);return s2[n].has(r)}onCharacter(t){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){X8e(this,t);return}switch(this.insertionMode){case N.INITIAL:{zh(this,t);break}case N.BEFORE_HTML:{Kh(this,t);break}case N.BEFORE_HEAD:{Zh(this,t);break}case N.IN_HEAD:{e0(this,t);break}case N.IN_HEAD_NO_SCRIPT:{t0(this,t);break}case N.AFTER_HEAD:{r0(this,t);break}case N.IN_BODY:case N.IN_CAPTION:case N.IN_CELL:case N.IN_TEMPLATE:{jj(this,t);break}case N.TEXT:case N.IN_SELECT:case N.IN_SELECT_IN_TABLE:{this._insertCharacters(t);break}case N.IN_TABLE:case N.IN_TABLE_BODY:case N.IN_ROW:{c2(this,t);break}case N.IN_TABLE_TEXT:{Zj(this,t);break}case N.IN_COLUMN_GROUP:{dy(this,t);break}case N.AFTER_BODY:{hy(this,t);break}case N.AFTER_AFTER_BODY:{fy(this,t);break}default:}}onNullCharacter(t){if(this.skipNextNewLine=!1,this.tokenizer.inForeignNode){z8e(this,t);return}switch(this.insertionMode){case N.INITIAL:{zh(this,t);break}case N.BEFORE_HTML:{Kh(this,t);break}case N.BEFORE_HEAD:{Zh(this,t);break}case N.IN_HEAD:{e0(this,t);break}case N.IN_HEAD_NO_SCRIPT:{t0(this,t);break}case N.AFTER_HEAD:{r0(this,t);break}case N.TEXT:{this._insertCharacters(t);break}case N.IN_TABLE:case N.IN_TABLE_BODY:case N.IN_ROW:{c2(this,t);break}case N.IN_COLUMN_GROUP:{dy(this,t);break}case N.AFTER_BODY:{hy(this,t);break}case N.AFTER_AFTER_BODY:{fy(this,t);break}default:}}onComment(t){if(this.skipNextNewLine=!1,this.currentNotInHTML){u2(this,t);return}switch(this.insertionMode){case N.INITIAL:case N.BEFORE_HTML:case N.BEFORE_HEAD:case N.IN_HEAD:case N.IN_HEAD_NO_SCRIPT:case N.AFTER_HEAD:case N.IN_BODY:case N.IN_TABLE:case N.IN_CAPTION:case N.IN_COLUMN_GROUP:case N.IN_TABLE_BODY:case N.IN_ROW:case N.IN_CELL:case N.IN_SELECT:case N.IN_SELECT_IN_TABLE:case N.IN_TEMPLATE:case N.IN_FRAMESET:case N.AFTER_FRAMESET:{u2(this,t);break}case N.IN_TABLE_TEXT:{Xh(this,t);break}case N.AFTER_BODY:{wLe(this,t);break}case N.AFTER_AFTER_BODY:case N.AFTER_AFTER_FRAMESET:{SLe(this,t);break}default:}}onDoctype(t){switch(this.skipNextNewLine=!1,this.insertionMode){case N.INITIAL:{_Le(this,t);break}case N.BEFORE_HEAD:case N.IN_HEAD:case N.IN_HEAD_NO_SCRIPT:case N.AFTER_HEAD:{this._err(t,V.misplacedDoctype);break}case N.IN_TABLE_TEXT:{Xh(this,t);break}default:}}onStartTag(t){this.skipNextNewLine=!1,this.currentToken=t,this._processStartTag(t),t.selfClosing&&!t.ackSelfClosing&&this._err(t,V.nonVoidHtmlElementStartTagWithTrailingSolidus)}_processStartTag(t){this.shouldProcessStartTagTokenInForeignContent(t)?K8e(this,t):this._startTagOutsideForeignContent(t)}_startTagOutsideForeignContent(t){switch(this.insertionMode){case N.INITIAL:{zh(this,t);break}case N.BEFORE_HTML:{RLe(this,t);break}case N.BEFORE_HEAD:{NLe(this,t);break}case N.IN_HEAD:{ni(this,t);break}case N.IN_HEAD_NO_SCRIPT:{LLe(this,t);break}case N.AFTER_HEAD:{MLe(this,t);break}case N.IN_BODY:{zr(this,t);break}case N.IN_TABLE:{bA(this,t);break}case N.IN_TABLE_TEXT:{Xh(this,t);break}case N.IN_CAPTION:{k8e(this,t);break}case N.IN_COLUMN_GROUP:{d2(this,t);break}case N.IN_TABLE_BODY:{my(this,t);break}case N.IN_ROW:{Ey(this,t);break}case N.IN_CELL:{O8e(this,t);break}case N.IN_SELECT:{rJ(this,t);break}case N.IN_SELECT_IN_TABLE:{P8e(this,t);break}case N.IN_TEMPLATE:{H8e(this,t);break}case N.AFTER_BODY:{V8e(this,t);break}case N.IN_FRAMESET:{Y8e(this,t);break}case N.AFTER_FRAMESET:{G8e(this,t);break}case N.AFTER_AFTER_BODY:{J8e(this,t);break}case N.AFTER_AFTER_FRAMESET:{W8e(this,t);break}default:}}onEndTag(t){this.skipNextNewLine=!1,this.currentToken=t,this.currentNotInHTML?Z8e(this,t):this._endTagOutsideForeignContent(t)}_endTagOutsideForeignContent(t){switch(this.insertionMode){case N.INITIAL:{zh(this,t);break}case N.BEFORE_HTML:{DLe(this,t);break}case N.BEFORE_HEAD:{kLe(this,t);break}case N.IN_HEAD:{FLe(this,t);break}case N.IN_HEAD_NO_SCRIPT:{OLe(this,t);break}case N.AFTER_HEAD:{PLe(this,t);break}case N.IN_BODY:{gy(this,t);break}case N.TEXT:{x8e(this,t);break}case N.IN_TABLE:{n0(this,t);break}case N.IN_TABLE_TEXT:{Xh(this,t);break}case N.IN_CAPTION:{F8e(this,t);break}case N.IN_COLUMN_GROUP:{L8e(this,t);break}case N.IN_TABLE_BODY:{l2(this,t);break}case N.IN_ROW:{tJ(this,t);break}case N.IN_CELL:{M8e(this,t);break}case N.IN_SELECT:{nJ(this,t);break}case N.IN_SELECT_IN_TABLE:{U8e(this,t);break}case N.IN_TEMPLATE:{q8e(this,t);break}case N.AFTER_BODY:{iJ(this,t);break}case N.IN_FRAMESET:{$8e(this,t);break}case N.AFTER_FRAMESET:{j8e(this,t);break}case N.AFTER_AFTER_BODY:{fy(this,t);break}default:}}onEof(t){switch(this.insertionMode){case N.INITIAL:{zh(this,t);break}case N.BEFORE_HTML:{Kh(this,t);break}case N.BEFORE_HEAD:{Zh(this,t);break}case N.IN_HEAD:{e0(this,t);break}case N.IN_HEAD_NO_SCRIPT:{t0(this,t);break}case N.AFTER_HEAD:{r0(this,t);break}case N.IN_BODY:case N.IN_TABLE:case N.IN_CAPTION:case N.IN_COLUMN_GROUP:case N.IN_TABLE_BODY:case N.IN_ROW:case N.IN_CELL:case N.IN_SELECT:case N.IN_SELECT_IN_TABLE:{Xj(this,t);break}case N.TEXT:{v8e(this,t);break}case N.IN_TABLE_TEXT:{Xh(this,t);break}case N.IN_TEMPLATE:{sJ(this,t);break}case N.AFTER_BODY:case N.IN_FRAMESET:case N.AFTER_FRAMESET:case N.AFTER_AFTER_BODY:case N.AFTER_AFTER_FRAMESET:{f2(this,t);break}default:}}onWhitespaceCharacter(t){if(this.skipNextNewLine&&(this.skipNextNewLine=!1,t.chars.charCodeAt(0)===w.LINE_FEED)){if(t.chars.length===1)return;t.chars=t.chars.substr(1)}if(this.tokenizer.inForeignNode){this._insertCharacters(t);return}switch(this.insertionMode){case N.IN_HEAD:case N.IN_HEAD_NO_SCRIPT:case N.AFTER_HEAD:case N.TEXT:case N.IN_COLUMN_GROUP:case N.IN_SELECT:case N.IN_SELECT_IN_TABLE:case N.IN_FRAMESET:case N.AFTER_FRAMESET:{this._insertCharacters(t);break}case N.IN_BODY:case N.IN_CAPTION:case N.IN_CELL:case N.IN_TEMPLATE:case N.AFTER_BODY:case N.AFTER_AFTER_BODY:case N.AFTER_AFTER_FRAMESET:{Gj(this,t);break}case N.IN_TABLE:case N.IN_TABLE_BODY:case N.IN_ROW:{c2(this,t);break}case N.IN_TABLE_TEXT:{Kj(this,t);break}default:}}};function bLe(e,t){let r=e.activeFormattingElements.getElementEntryInScopeWithTagName(t.tagName);return r?e.openElements.contains(r.element)?e.openElements.hasInScope(t.tagID)||(r=null):(e.activeFormattingElements.removeEntry(r),r=null):zj(e,t),r}function BLe(e,t){let r=null,n=e.openElements.stackTop;for(;n>=0;n--){let s=e.openElements.items[n];if(s===t.element)break;e._isSpecialElement(s,e.openElements.tagIDs[n])&&(r=s)}return r||(e.openElements.shortenToLength(n<0?0:n),e.activeFormattingElements.removeEntry(t)),r}function xLe(e,t,r){let n=t,s=e.openElements.getCommonAncestor(t);for(let i=0,o=s;o!==r;i++,o=s){s=e.openElements.getCommonAncestor(o);let a=e.activeFormattingElements.getElementEntry(o),c=a&&i>=yLe;!a||c?(c&&e.activeFormattingElements.removeEntry(a),e.openElements.remove(o)):(o=vLe(e,a),n===t&&(e.activeFormattingElements.bookmark=a),e.treeAdapter.detachNode(n),e.treeAdapter.appendChild(o,n),n=o)}return n}function vLe(e,t){let r=e.treeAdapter.getNamespaceURI(t.element),n=e.treeAdapter.createElement(t.token.tagName,r,t.token.attrs);return e.openElements.replace(t.element,n),t.element=n,n}function QLe(e,t,r){let n=e.treeAdapter.getTagName(t),s=Ha(n);if(e._isElementCausesFosterParenting(s))e._fosterParentElement(r);else{let i=e.treeAdapter.getNamespaceURI(t);s===g.TEMPLATE&&i===W.HTML&&(t=e.treeAdapter.getTemplateContent(t)),e.treeAdapter.appendChild(t,r)}}function TLe(e,t,r){let n=e.treeAdapter.getNamespaceURI(r.element),{token:s}=r,i=e.treeAdapter.createElement(s.tagName,n,s.attrs);e._adoptNodes(t,i),e.treeAdapter.appendChild(t,i),e.activeFormattingElements.insertElementAfterBookmark(i,s),e.activeFormattingElements.removeEntry(r),e.openElements.remove(r.element),e.openElements.insertAfter(t,i,s.tagID)}function A2(e,t){for(let r=0;r=r;n--)e._setEndLocation(e.openElements.items[n],t);if(!e.fragmentContext&&e.openElements.stackTop>=0){let n=e.openElements.items[0],s=e.treeAdapter.getNodeSourceCodeLocation(n);if(s&&!s.endTag&&(e._setEndLocation(n,t),e.openElements.stackTop>=1)){let i=e.openElements.items[1],o=e.treeAdapter.getNodeSourceCodeLocation(i);o&&!o.endTag&&e._setEndLocation(i,t)}}}}function _Le(e,t){e._setDocumentType(t);let r=t.forceQuirks?Jr.QUIRKS:Lj(t);Fj(t)||e._err(t,V.nonConformingDoctype),e.treeAdapter.setDocumentMode(e.document,r),e.insertionMode=N.BEFORE_HTML}function zh(e,t){e._err(t,V.missingDoctype,!0),e.treeAdapter.setDocumentMode(e.document,Jr.QUIRKS),e.insertionMode=N.BEFORE_HTML,e._processToken(t)}function RLe(e,t){t.tagID===g.HTML?(e._insertElement(t,W.HTML),e.insertionMode=N.BEFORE_HEAD):Kh(e,t)}function DLe(e,t){let r=t.tagID;(r===g.HTML||r===g.HEAD||r===g.BODY||r===g.BR)&&Kh(e,t)}function Kh(e,t){e._insertFakeRootElement(),e.insertionMode=N.BEFORE_HEAD,e._processToken(t)}function NLe(e,t){switch(t.tagID){case g.HTML:{zr(e,t);break}case g.HEAD:{e._insertElement(t,W.HTML),e.headElement=e.openElements.current,e.insertionMode=N.IN_HEAD;break}default:Zh(e,t)}}function kLe(e,t){let r=t.tagID;r===g.HEAD||r===g.BODY||r===g.HTML||r===g.BR?Zh(e,t):e._err(t,V.endTagWithoutMatchingOpenElement)}function Zh(e,t){e._insertFakeElement(M.HEAD,g.HEAD),e.headElement=e.openElements.current,e.insertionMode=N.IN_HEAD,e._processToken(t)}function ni(e,t){switch(t.tagID){case g.HTML:{zr(e,t);break}case g.BASE:case g.BASEFONT:case g.BGSOUND:case g.LINK:case g.META:{e._appendElement(t,W.HTML),t.ackSelfClosing=!0;break}case g.TITLE:{e._switchToTextParsing(t,Wr.RCDATA);break}case g.NOSCRIPT:{e.options.scriptingEnabled?e._switchToTextParsing(t,Wr.RAWTEXT):(e._insertElement(t,W.HTML),e.insertionMode=N.IN_HEAD_NO_SCRIPT);break}case g.NOFRAMES:case g.STYLE:{e._switchToTextParsing(t,Wr.RAWTEXT);break}case g.SCRIPT:{e._switchToTextParsing(t,Wr.SCRIPT_DATA);break}case g.TEMPLATE:{e._insertTemplate(t),e.activeFormattingElements.insertMarker(),e.framesetOk=!1,e.insertionMode=N.IN_TEMPLATE,e.tmplInsertionModeStack.unshift(N.IN_TEMPLATE);break}case g.HEAD:{e._err(t,V.misplacedStartTagForHeadElement);break}default:e0(e,t)}}function FLe(e,t){switch(t.tagID){case g.HEAD:{e.openElements.pop(),e.insertionMode=N.AFTER_HEAD;break}case g.BODY:case g.BR:case g.HTML:{e0(e,t);break}case g.TEMPLATE:{cu(e,t);break}default:e._err(t,V.endTagWithoutMatchingOpenElement)}}function cu(e,t){e.openElements.tmplCount>0?(e.openElements.generateImpliedEndTagsThoroughly(),e.openElements.currentTagId!==g.TEMPLATE&&e._err(t,V.closingOfElementWithOpenChildElements),e.openElements.popUntilTagNamePopped(g.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode()):e._err(t,V.endTagWithoutMatchingOpenElement)}function e0(e,t){e.openElements.pop(),e.insertionMode=N.AFTER_HEAD,e._processToken(t)}function LLe(e,t){switch(t.tagID){case g.HTML:{zr(e,t);break}case g.BASEFONT:case g.BGSOUND:case g.HEAD:case g.LINK:case g.META:case g.NOFRAMES:case g.STYLE:{ni(e,t);break}case g.NOSCRIPT:{e._err(t,V.nestedNoscriptInHead);break}default:t0(e,t)}}function OLe(e,t){switch(t.tagID){case g.NOSCRIPT:{e.openElements.pop(),e.insertionMode=N.IN_HEAD;break}case g.BR:{t0(e,t);break}default:e._err(t,V.endTagWithoutMatchingOpenElement)}}function t0(e,t){let r=t.type===tt.EOF?V.openElementsLeftAfterEof:V.disallowedContentInNoscriptInHead;e._err(t,r),e.openElements.pop(),e.insertionMode=N.IN_HEAD,e._processToken(t)}function MLe(e,t){switch(t.tagID){case g.HTML:{zr(e,t);break}case g.BODY:{e._insertElement(t,W.HTML),e.framesetOk=!1,e.insertionMode=N.IN_BODY;break}case g.FRAMESET:{e._insertElement(t,W.HTML),e.insertionMode=N.IN_FRAMESET;break}case g.BASE:case g.BASEFONT:case g.BGSOUND:case g.LINK:case g.META:case g.NOFRAMES:case g.SCRIPT:case g.STYLE:case g.TEMPLATE:case g.TITLE:{e._err(t,V.abandonedHeadElementChild),e.openElements.push(e.headElement,g.HEAD),ni(e,t),e.openElements.remove(e.headElement);break}case g.HEAD:{e._err(t,V.misplacedStartTagForHeadElement);break}default:r0(e,t)}}function PLe(e,t){switch(t.tagID){case g.BODY:case g.HTML:case g.BR:{r0(e,t);break}case g.TEMPLATE:{cu(e,t);break}default:e._err(t,V.endTagWithoutMatchingOpenElement)}}function r0(e,t){e._insertFakeElement(M.BODY,g.BODY),e.insertionMode=N.IN_BODY,py(e,t)}function py(e,t){switch(t.type){case tt.CHARACTER:{jj(e,t);break}case tt.WHITESPACE_CHARACTER:{Gj(e,t);break}case tt.COMMENT:{u2(e,t);break}case tt.START_TAG:{zr(e,t);break}case tt.END_TAG:{gy(e,t);break}case tt.EOF:{Xj(e,t);break}default:}}function Gj(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t)}function jj(e,t){e._reconstructActiveFormattingElements(),e._insertCharacters(t),e.framesetOk=!1}function ULe(e,t){e.openElements.tmplCount===0&&e.treeAdapter.adoptAttributes(e.openElements.items[0],t.attrs)}function HLe(e,t){let r=e.openElements.tryPeekProperlyNestedBodyElement();r&&e.openElements.tmplCount===0&&(e.framesetOk=!1,e.treeAdapter.adoptAttributes(r,t.attrs))}function qLe(e,t){let r=e.openElements.tryPeekProperlyNestedBodyElement();e.framesetOk&&r&&(e.treeAdapter.detachNode(r),e.openElements.popAllUpToHtmlElement(),e._insertElement(t,W.HTML),e.insertionMode=N.IN_FRAMESET)}function VLe(e,t){e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._insertElement(t,W.HTML)}function YLe(e,t){e.openElements.hasInButtonScope(g.P)&&e._closePElement(),IA.has(e.openElements.currentTagId)&&e.openElements.pop(),e._insertElement(t,W.HTML)}function $Le(e,t){e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._insertElement(t,W.HTML),e.skipNextNewLine=!0,e.framesetOk=!1}function GLe(e,t){let r=e.openElements.tmplCount>0;(!e.formElement||r)&&(e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._insertElement(t,W.HTML),r||(e.formElement=e.openElements.current))}function jLe(e,t){e.framesetOk=!1;let r=t.tagID;for(let n=e.openElements.stackTop;n>=0;n--){let s=e.openElements.tagIDs[n];if(r===g.LI&&s===g.LI||(r===g.DD||r===g.DT)&&(s===g.DD||s===g.DT)){e.openElements.generateImpliedEndTagsWithExclusion(s),e.openElements.popUntilTagNamePopped(s);break}if(s!==g.ADDRESS&&s!==g.DIV&&s!==g.P&&e._isSpecialElement(e.openElements.items[n],s))break}e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._insertElement(t,W.HTML)}function JLe(e,t){e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._insertElement(t,W.HTML),e.tokenizer.state=Wr.PLAINTEXT}function WLe(e,t){e.openElements.hasInScope(g.BUTTON)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(g.BUTTON)),e._reconstructActiveFormattingElements(),e._insertElement(t,W.HTML),e.framesetOk=!1}function zLe(e,t){let r=e.activeFormattingElements.getElementEntryInScopeWithTagName(M.A);r&&(A2(e,t),e.openElements.remove(r.element),e.activeFormattingElements.removeEntry(r)),e._reconstructActiveFormattingElements(),e._insertElement(t,W.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function XLe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,W.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function KLe(e,t){e._reconstructActiveFormattingElements(),e.openElements.hasInScope(g.NOBR)&&(A2(e,t),e._reconstructActiveFormattingElements()),e._insertElement(t,W.HTML),e.activeFormattingElements.pushElement(e.openElements.current,t)}function ZLe(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,W.HTML),e.activeFormattingElements.insertMarker(),e.framesetOk=!1}function e8e(e,t){e.treeAdapter.getDocumentMode(e.document)!==Jr.QUIRKS&&e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._insertElement(t,W.HTML),e.framesetOk=!1,e.insertionMode=N.IN_TABLE}function Jj(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,W.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function Wj(e){let t=iy(e,Pi.TYPE);return t!=null&&t.toLowerCase()===ELe}function t8e(e,t){e._reconstructActiveFormattingElements(),e._appendElement(t,W.HTML),Wj(t)||(e.framesetOk=!1),t.ackSelfClosing=!0}function r8e(e,t){e._appendElement(t,W.HTML),t.ackSelfClosing=!0}function n8e(e,t){e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._appendElement(t,W.HTML),e.framesetOk=!1,t.ackSelfClosing=!0}function s8e(e,t){t.tagName=M.IMG,t.tagID=g.IMG,Jj(e,t)}function i8e(e,t){e._insertElement(t,W.HTML),e.skipNextNewLine=!0,e.tokenizer.state=Wr.RCDATA,e.originalInsertionMode=e.insertionMode,e.framesetOk=!1,e.insertionMode=N.TEXT}function o8e(e,t){e.openElements.hasInButtonScope(g.P)&&e._closePElement(),e._reconstructActiveFormattingElements(),e.framesetOk=!1,e._switchToTextParsing(t,Wr.RAWTEXT)}function a8e(e,t){e.framesetOk=!1,e._switchToTextParsing(t,Wr.RAWTEXT)}function Vj(e,t){e._switchToTextParsing(t,Wr.RAWTEXT)}function c8e(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,W.HTML),e.framesetOk=!1,e.insertionMode=e.insertionMode===N.IN_TABLE||e.insertionMode===N.IN_CAPTION||e.insertionMode===N.IN_TABLE_BODY||e.insertionMode===N.IN_ROW||e.insertionMode===N.IN_CELL?N.IN_SELECT_IN_TABLE:N.IN_SELECT}function u8e(e,t){e.openElements.currentTagId===g.OPTION&&e.openElements.pop(),e._reconstructActiveFormattingElements(),e._insertElement(t,W.HTML)}function l8e(e,t){e.openElements.hasInScope(g.RUBY)&&e.openElements.generateImpliedEndTags(),e._insertElement(t,W.HTML)}function A8e(e,t){e.openElements.hasInScope(g.RUBY)&&e.openElements.generateImpliedEndTagsWithExclusion(g.RTC),e._insertElement(t,W.HTML)}function f8e(e,t){e._reconstructActiveFormattingElements(),o2(t),Ay(t),t.selfClosing?e._appendElement(t,W.MATHML):e._insertElement(t,W.MATHML),t.ackSelfClosing=!0}function d8e(e,t){e._reconstructActiveFormattingElements(),a2(t),Ay(t),t.selfClosing?e._appendElement(t,W.SVG):e._insertElement(t,W.SVG),t.ackSelfClosing=!0}function Yj(e,t){e._reconstructActiveFormattingElements(),e._insertElement(t,W.HTML)}function zr(e,t){switch(t.tagID){case g.I:case g.S:case g.B:case g.U:case g.EM:case g.TT:case g.BIG:case g.CODE:case g.FONT:case g.SMALL:case g.STRIKE:case g.STRONG:{XLe(e,t);break}case g.A:{zLe(e,t);break}case g.H1:case g.H2:case g.H3:case g.H4:case g.H5:case g.H6:{YLe(e,t);break}case g.P:case g.DL:case g.OL:case g.UL:case g.DIV:case g.DIR:case g.NAV:case g.MAIN:case g.MENU:case g.ASIDE:case g.CENTER:case g.FIGURE:case g.FOOTER:case g.HEADER:case g.HGROUP:case g.DIALOG:case g.DETAILS:case g.ADDRESS:case g.ARTICLE:case g.SEARCH:case g.SECTION:case g.SUMMARY:case g.FIELDSET:case g.BLOCKQUOTE:case g.FIGCAPTION:{VLe(e,t);break}case g.LI:case g.DD:case g.DT:{jLe(e,t);break}case g.BR:case g.IMG:case g.WBR:case g.AREA:case g.EMBED:case g.KEYGEN:{Jj(e,t);break}case g.HR:{n8e(e,t);break}case g.RB:case g.RTC:{l8e(e,t);break}case g.RT:case g.RP:{A8e(e,t);break}case g.PRE:case g.LISTING:{$Le(e,t);break}case g.XMP:{o8e(e,t);break}case g.SVG:{d8e(e,t);break}case g.HTML:{ULe(e,t);break}case g.BASE:case g.LINK:case g.META:case g.STYLE:case g.TITLE:case g.SCRIPT:case g.BGSOUND:case g.BASEFONT:case g.TEMPLATE:{ni(e,t);break}case g.BODY:{HLe(e,t);break}case g.FORM:{GLe(e,t);break}case g.NOBR:{KLe(e,t);break}case g.MATH:{f8e(e,t);break}case g.TABLE:{e8e(e,t);break}case g.INPUT:{t8e(e,t);break}case g.PARAM:case g.TRACK:case g.SOURCE:{r8e(e,t);break}case g.IMAGE:{s8e(e,t);break}case g.BUTTON:{WLe(e,t);break}case g.APPLET:case g.OBJECT:case g.MARQUEE:{ZLe(e,t);break}case g.IFRAME:{a8e(e,t);break}case g.SELECT:{c8e(e,t);break}case g.OPTION:case g.OPTGROUP:{u8e(e,t);break}case g.NOEMBED:case g.NOFRAMES:{Vj(e,t);break}case g.FRAMESET:{qLe(e,t);break}case g.TEXTAREA:{i8e(e,t);break}case g.NOSCRIPT:{e.options.scriptingEnabled?Vj(e,t):Yj(e,t);break}case g.PLAINTEXT:{JLe(e,t);break}case g.COL:case g.TH:case g.TD:case g.TR:case g.HEAD:case g.FRAME:case g.TBODY:case g.TFOOT:case g.THEAD:case g.CAPTION:case g.COLGROUP:break;default:Yj(e,t)}}function h8e(e,t){if(e.openElements.hasInScope(g.BODY)&&(e.insertionMode=N.AFTER_BODY,e.options.sourceCodeLocationInfo)){let r=e.openElements.tryPeekProperlyNestedBodyElement();r&&e._setEndLocation(r,t)}}function p8e(e,t){e.openElements.hasInScope(g.BODY)&&(e.insertionMode=N.AFTER_BODY,iJ(e,t))}function g8e(e,t){let r=t.tagID;e.openElements.hasInScope(r)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(r))}function m8e(e){let t=e.openElements.tmplCount>0,{formElement:r}=e;t||(e.formElement=null),(r||t)&&e.openElements.hasInScope(g.FORM)&&(e.openElements.generateImpliedEndTags(),t?e.openElements.popUntilTagNamePopped(g.FORM):r&&e.openElements.remove(r))}function E8e(e){e.openElements.hasInButtonScope(g.P)||e._insertFakeElement(M.P,g.P),e._closePElement()}function C8e(e){e.openElements.hasInListItemScope(g.LI)&&(e.openElements.generateImpliedEndTagsWithExclusion(g.LI),e.openElements.popUntilTagNamePopped(g.LI))}function y8e(e,t){let r=t.tagID;e.openElements.hasInScope(r)&&(e.openElements.generateImpliedEndTagsWithExclusion(r),e.openElements.popUntilTagNamePopped(r))}function I8e(e){e.openElements.hasNumberedHeaderInScope()&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilNumberedHeaderPopped())}function b8e(e,t){let r=t.tagID;e.openElements.hasInScope(r)&&(e.openElements.generateImpliedEndTags(),e.openElements.popUntilTagNamePopped(r),e.activeFormattingElements.clearToLastMarker())}function B8e(e){e._reconstructActiveFormattingElements(),e._insertFakeElement(M.BR,g.BR),e.openElements.pop(),e.framesetOk=!1}function zj(e,t){let r=t.tagName,n=t.tagID;for(let s=e.openElements.stackTop;s>0;s--){let i=e.openElements.items[s],o=e.openElements.tagIDs[s];if(n===o&&(n!==g.UNKNOWN||e.treeAdapter.getTagName(i)===r)){e.openElements.generateImpliedEndTagsWithExclusion(n),e.openElements.stackTop>=s&&e.openElements.shortenToLength(s);break}if(e._isSpecialElement(i,o))break}}function gy(e,t){switch(t.tagID){case g.A:case g.B:case g.I:case g.S:case g.U:case g.EM:case g.TT:case g.BIG:case g.CODE:case g.FONT:case g.NOBR:case g.SMALL:case g.STRIKE:case g.STRONG:{A2(e,t);break}case g.P:{E8e(e);break}case g.DL:case g.UL:case g.OL:case g.DIR:case g.DIV:case g.NAV:case g.PRE:case g.MAIN:case g.MENU:case g.ASIDE:case g.BUTTON:case g.CENTER:case g.FIGURE:case g.FOOTER:case g.HEADER:case g.HGROUP:case g.DIALOG:case g.ADDRESS:case g.ARTICLE:case g.DETAILS:case g.SEARCH:case g.SECTION:case g.SUMMARY:case g.LISTING:case g.FIELDSET:case g.BLOCKQUOTE:case g.FIGCAPTION:{g8e(e,t);break}case g.LI:{C8e(e);break}case g.DD:case g.DT:{y8e(e,t);break}case g.H1:case g.H2:case g.H3:case g.H4:case g.H5:case g.H6:{I8e(e);break}case g.BR:{B8e(e);break}case g.BODY:{h8e(e,t);break}case g.HTML:{p8e(e,t);break}case g.FORM:{m8e(e);break}case g.APPLET:case g.OBJECT:case g.MARQUEE:{b8e(e,t);break}case g.TEMPLATE:{cu(e,t);break}default:zj(e,t)}}function Xj(e,t){e.tmplInsertionModeStack.length>0?sJ(e,t):f2(e,t)}function x8e(e,t){var r;t.tagID===g.SCRIPT&&((r=e.scriptHandler)===null||r===void 0||r.call(e,e.openElements.current)),e.openElements.pop(),e.insertionMode=e.originalInsertionMode}function v8e(e,t){e._err(t,V.eofInElementThatCanContainOnlyText),e.openElements.pop(),e.insertionMode=e.originalInsertionMode,e.onEof(t)}function c2(e,t){if($j.has(e.openElements.currentTagId))switch(e.pendingCharacterTokens.length=0,e.hasNonWhitespacePendingCharacterToken=!1,e.originalInsertionMode=e.insertionMode,e.insertionMode=N.IN_TABLE_TEXT,t.type){case tt.CHARACTER:{Zj(e,t);break}case tt.WHITESPACE_CHARACTER:{Kj(e,t);break}}else s0(e,t)}function Q8e(e,t){e.openElements.clearBackToTableContext(),e.activeFormattingElements.insertMarker(),e._insertElement(t,W.HTML),e.insertionMode=N.IN_CAPTION}function T8e(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,W.HTML),e.insertionMode=N.IN_COLUMN_GROUP}function w8e(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(M.COLGROUP,g.COLGROUP),e.insertionMode=N.IN_COLUMN_GROUP,d2(e,t)}function S8e(e,t){e.openElements.clearBackToTableContext(),e._insertElement(t,W.HTML),e.insertionMode=N.IN_TABLE_BODY}function _8e(e,t){e.openElements.clearBackToTableContext(),e._insertFakeElement(M.TBODY,g.TBODY),e.insertionMode=N.IN_TABLE_BODY,my(e,t)}function R8e(e,t){e.openElements.hasInTableScope(g.TABLE)&&(e.openElements.popUntilTagNamePopped(g.TABLE),e._resetInsertionMode(),e._processStartTag(t))}function D8e(e,t){Wj(t)?e._appendElement(t,W.HTML):s0(e,t),t.ackSelfClosing=!0}function N8e(e,t){!e.formElement&&e.openElements.tmplCount===0&&(e._insertElement(t,W.HTML),e.formElement=e.openElements.current,e.openElements.pop())}function bA(e,t){switch(t.tagID){case g.TD:case g.TH:case g.TR:{_8e(e,t);break}case g.STYLE:case g.SCRIPT:case g.TEMPLATE:{ni(e,t);break}case g.COL:{w8e(e,t);break}case g.FORM:{N8e(e,t);break}case g.TABLE:{R8e(e,t);break}case g.TBODY:case g.TFOOT:case g.THEAD:{S8e(e,t);break}case g.INPUT:{D8e(e,t);break}case g.CAPTION:{Q8e(e,t);break}case g.COLGROUP:{T8e(e,t);break}default:s0(e,t)}}function n0(e,t){switch(t.tagID){case g.TABLE:{e.openElements.hasInTableScope(g.TABLE)&&(e.openElements.popUntilTagNamePopped(g.TABLE),e._resetInsertionMode());break}case g.TEMPLATE:{cu(e,t);break}case g.BODY:case g.CAPTION:case g.COL:case g.COLGROUP:case g.HTML:case g.TBODY:case g.TD:case g.TFOOT:case g.TH:case g.THEAD:case g.TR:break;default:s0(e,t)}}function s0(e,t){let r=e.fosterParentingEnabled;e.fosterParentingEnabled=!0,py(e,t),e.fosterParentingEnabled=r}function Kj(e,t){e.pendingCharacterTokens.push(t)}function Zj(e,t){e.pendingCharacterTokens.push(t),e.hasNonWhitespacePendingCharacterToken=!0}function Xh(e,t){let r=0;if(e.hasNonWhitespacePendingCharacterToken)for(;r0&&e.openElements.currentTagId===g.OPTION&&e.openElements.tagIDs[e.openElements.stackTop-1]===g.OPTGROUP&&e.openElements.pop(),e.openElements.currentTagId===g.OPTGROUP&&e.openElements.pop();break}case g.OPTION:{e.openElements.currentTagId===g.OPTION&&e.openElements.pop();break}case g.SELECT:{e.openElements.hasInSelectScope(g.SELECT)&&(e.openElements.popUntilTagNamePopped(g.SELECT),e._resetInsertionMode());break}case g.TEMPLATE:{cu(e,t);break}default:}}function P8e(e,t){let r=t.tagID;r===g.CAPTION||r===g.TABLE||r===g.TBODY||r===g.TFOOT||r===g.THEAD||r===g.TR||r===g.TD||r===g.TH?(e.openElements.popUntilTagNamePopped(g.SELECT),e._resetInsertionMode(),e._processStartTag(t)):rJ(e,t)}function U8e(e,t){let r=t.tagID;r===g.CAPTION||r===g.TABLE||r===g.TBODY||r===g.TFOOT||r===g.THEAD||r===g.TR||r===g.TD||r===g.TH?e.openElements.hasInTableScope(r)&&(e.openElements.popUntilTagNamePopped(g.SELECT),e._resetInsertionMode(),e.onEndTag(t)):nJ(e,t)}function H8e(e,t){switch(t.tagID){case g.BASE:case g.BASEFONT:case g.BGSOUND:case g.LINK:case g.META:case g.NOFRAMES:case g.SCRIPT:case g.STYLE:case g.TEMPLATE:case g.TITLE:{ni(e,t);break}case g.CAPTION:case g.COLGROUP:case g.TBODY:case g.TFOOT:case g.THEAD:{e.tmplInsertionModeStack[0]=N.IN_TABLE,e.insertionMode=N.IN_TABLE,bA(e,t);break}case g.COL:{e.tmplInsertionModeStack[0]=N.IN_COLUMN_GROUP,e.insertionMode=N.IN_COLUMN_GROUP,d2(e,t);break}case g.TR:{e.tmplInsertionModeStack[0]=N.IN_TABLE_BODY,e.insertionMode=N.IN_TABLE_BODY,my(e,t);break}case g.TD:case g.TH:{e.tmplInsertionModeStack[0]=N.IN_ROW,e.insertionMode=N.IN_ROW,Ey(e,t);break}default:e.tmplInsertionModeStack[0]=N.IN_BODY,e.insertionMode=N.IN_BODY,zr(e,t)}}function q8e(e,t){t.tagID===g.TEMPLATE&&cu(e,t)}function sJ(e,t){e.openElements.tmplCount>0?(e.openElements.popUntilTagNamePopped(g.TEMPLATE),e.activeFormattingElements.clearToLastMarker(),e.tmplInsertionModeStack.shift(),e._resetInsertionMode(),e.onEof(t)):f2(e,t)}function V8e(e,t){t.tagID===g.HTML?zr(e,t):hy(e,t)}function iJ(e,t){var r;if(t.tagID===g.HTML){if(e.fragmentContext||(e.insertionMode=N.AFTER_AFTER_BODY),e.options.sourceCodeLocationInfo&&e.openElements.tagIDs[0]===g.HTML){e._setEndLocation(e.openElements.items[0],t);let n=e.openElements.items[1];n&&!(!((r=e.treeAdapter.getNodeSourceCodeLocation(n))===null||r===void 0)&&r.endTag)&&e._setEndLocation(n,t)}}else hy(e,t)}function hy(e,t){e.insertionMode=N.IN_BODY,py(e,t)}function Y8e(e,t){switch(t.tagID){case g.HTML:{zr(e,t);break}case g.FRAMESET:{e._insertElement(t,W.HTML);break}case g.FRAME:{e._appendElement(t,W.HTML),t.ackSelfClosing=!0;break}case g.NOFRAMES:{ni(e,t);break}default:}}function $8e(e,t){t.tagID===g.FRAMESET&&!e.openElements.isRootHtmlElementCurrent()&&(e.openElements.pop(),!e.fragmentContext&&e.openElements.currentTagId!==g.FRAMESET&&(e.insertionMode=N.AFTER_FRAMESET))}function G8e(e,t){switch(t.tagID){case g.HTML:{zr(e,t);break}case g.NOFRAMES:{ni(e,t);break}default:}}function j8e(e,t){t.tagID===g.HTML&&(e.insertionMode=N.AFTER_AFTER_FRAMESET)}function J8e(e,t){t.tagID===g.HTML?zr(e,t):fy(e,t)}function fy(e,t){e.insertionMode=N.IN_BODY,py(e,t)}function W8e(e,t){switch(t.tagID){case g.HTML:{zr(e,t);break}case g.NOFRAMES:{ni(e,t);break}default:}}function z8e(e,t){t.chars=St,e._insertCharacters(t)}function X8e(e,t){e._insertCharacters(t),e.framesetOk=!1}function oJ(e){for(;e.treeAdapter.getNamespaceURI(e.openElements.current)!==W.HTML&&!e._isIntegrationPoint(e.openElements.currentTagId,e.openElements.current);)e.openElements.pop()}function K8e(e,t){if(Mj(t))oJ(e),e._startTagOutsideForeignContent(t);else{let r=e._getAdjustedCurrentElement(),n=e.treeAdapter.getNamespaceURI(r);n===W.MATHML?o2(t):n===W.SVG&&(Pj(t),a2(t)),Ay(t),t.selfClosing?e._appendElement(t,n):e._insertElement(t,n),t.ackSelfClosing=!0}}function Z8e(e,t){if(t.tagID===g.P||t.tagID===g.BR){oJ(e),e._endTagOutsideForeignContent(t);return}for(let r=e.openElements.stackTop;r>0;r--){let n=e.openElements.items[r];if(e.treeAdapter.getNamespaceURI(n)===W.HTML){e._endTagOutsideForeignContent(t);break}let s=e.treeAdapter.getTagName(n);if(s.toLowerCase()===t.tagName){t.tagName=s,e.openElements.shortenToLength(r);break}}}var e4e=new Set([M.AREA,M.BASE,M.BASEFONT,M.BGSOUND,M.BR,M.COL,M.EMBED,M.FRAME,M.HR,M.IMG,M.INPUT,M.KEYGEN,M.LINK,M.META,M.PARAM,M.SOURCE,M.TRACK,M.WBR]);function t4e(e,t){return t.treeAdapter.isElementNode(e)&&t.treeAdapter.getNamespaceURI(e)===W.HTML&&e4e.has(t.treeAdapter.getTagName(e))}var r4e={treeAdapter:vs,scriptingEnabled:!0};function h2(e,t){let r={...r4e,...t};return aJ(e,r)}function n4e(e,t){let r="",n=t.treeAdapter.isElementNode(e)&&t.treeAdapter.getTagName(e)===M.TEMPLATE&&t.treeAdapter.getNamespaceURI(e)===W.HTML?t.treeAdapter.getTemplateContent(e):e,s=t.treeAdapter.getChildNodes(n);if(s)for(let i of s)r+=aJ(i,t);return r}function aJ(e,t){return t.treeAdapter.isElementNode(e)?s4e(e,t):t.treeAdapter.isTextNode(e)?o4e(e,t):t.treeAdapter.isCommentNode(e)?a4e(e,t):t.treeAdapter.isDocumentTypeNode(e)?c4e(e,t):""}function s4e(e,t){let r=t.treeAdapter.getTagName(e);return`<${r}${i4e(e,t)}>${t4e(e,t)?"":`${n4e(e,t)}`}`}function i4e(e,{treeAdapter:t}){let r="";for(let n of t.getAttrList(e)){if(r+=" ",n.namespace)switch(n.namespace){case W.XML:{r+=`xml:${n.name}`;break}case W.XMLNS:{n.name!=="xmlns"&&(r+="xmlns:"),r+=n.name;break}case W.XLINK:{r+=`xlink:${n.name}`;break}default:r+=`${n.prefix}:${n.name}`}else r+=n.name;r+=`="${cA(n.value)}"`}return r}function o4e(e,t){let{treeAdapter:r}=t,n=r.getTextNodeContent(e),s=r.getParentNode(e),i=s&&r.isElementNode(s)&&r.getTagName(s);return i&&r.getNamespaceURI(s)===W.HTML&&i2(i,t.scriptingEnabled)?n:uA(n)}function a4e(e,{treeAdapter:t}){return``}function c4e(e,{treeAdapter:t}){return``}function cJ(e,t){return au.parse(e,t)}function uJ(e,t,r){typeof e=="string"&&(r=t,t=e,e=null);let n=au.getFragmentParser(e,r);return n.tokenizer.write(t,!0),n.getFragment()}function lJ(e){let t=e.includes('"')?"'":'"';return t+e+t}function u4e(e,t,r){let n="!DOCTYPE ";return e&&(n+=e),t?n+=` PUBLIC ${lJ(t)}`:r&&(n+=" SYSTEM"),r&&(n+=` ${lJ(r)}`),n}var Ui={isCommentNode:ru,isElementNode:Ae,isTextNode:Tn,createDocument(){let e=new Gn([]);return e["x-mode"]=oy.DOCUMENT_MODE.NO_QUIRKS,e},createDocumentFragment(){return new Gn([])},createElement(e,t,r){let n=Object.create(null),s=Object.create(null),i=Object.create(null);for(let a=0;aSC(o)&&o.name==="!doctype");i?i.data=s??null:(i=new eu("!doctype",s),Ui.appendChild(e,i)),i["x-name"]=t,i["x-publicId"]=r,i["x-systemId"]=n},setDocumentMode(e,t){e["x-mode"]=t},getDocumentMode(e){return e["x-mode"]},detachNode(e){if(e.parent){let t=e.parent.children.indexOf(e),{prev:r,next:n}=e;e.prev=null,e.next=null,r&&(r.next=n),n&&(n.prev=r),e.parent.children.splice(t,1),e.parent=null}},insertText(e,t){let r=e.children[e.children.length-1];r&&Tn(r)?r.data+=t:Ui.appendChild(e,Ui.createTextNode(t))},insertTextBefore(e,t,r){let n=e.children[e.children.indexOf(r)-1];n&&Tn(n)?n.data+=t:Ui.insertBefore(e,Ui.createTextNode(t),r)},adoptAttributes(e,t){for(let r=0;r=Ie.LowerA&&e<=Ie.LowerZ||e>=Ie.UpperA&&e<=Ie.UpperZ}var Qs;(function(e){e[e.NoValue=0]="NoValue",e[e.Unquoted=1]="Unquoted",e[e.Single=2]="Single",e[e.Double=3]="Double"})(Qs||(Qs={}));var Fr={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101]),TextareaEnd:new Uint8Array([60,47,116,101,120,116,97,114,101,97])},BA=class{constructor({xmlMode:t=!1,decodeEntities:r=!0},n){this.cbs=n,this.state=Z.Text,this.buffer="",this.sectionStart=0,this.index=0,this.entityStart=0,this.baseState=Z.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.xmlMode=t,this.decodeEntities=r,this.entityDecoder=new Na(t?_C:oA,(s,i)=>this.emitCodePoint(s,i))}reset(){this.state=Z.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=Z.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}write(t){this.offset+=this.buffer.length,this.buffer=t,this.parse()}end(){this.running&&this.finish()}pause(){this.running=!1}resume(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=Z.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&t===Ie.Amp&&this.startEntity()}stateSpecialStartSequence(t){let r=this.sequenceIndex===this.currentSequence.length;if(!(r?Cy(t):(t|32)===this.currentSequence[this.sequenceIndex]))this.isSpecial=!1;else if(!r){this.sequenceIndex++;return}this.sequenceIndex=0,this.state=Z.InTagName,this.stateInTagName(t)}stateInSpecialTag(t){if(this.sequenceIndex===this.currentSequence.length){if(t===Ie.Gt||Ro(t)){let r=this.index-this.currentSequence.length;if(this.sectionStart=0?(this.state=this.baseState,t===0&&(this.index=this.entityStart)):this.index=this.offset+this.buffer.length-1}cleanup(){this.running&&this.sectionStart!==this.index&&(this.state===Z.Text||this.state===Z.InSpecialTag&&this.sequenceIndex===0?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===Z.InAttributeValueDq||this.state===Z.InAttributeValueSq||this.state===Z.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}shouldContinue(){return this.index=t||(this.state===Z.InCommentLike?this.currentSequence===Fr.CdataEnd?this.cbs.oncdata(this.sectionStart,t,0):this.cbs.oncomment(this.sectionStart,t,0):this.state===Z.InTagName||this.state===Z.BeforeAttributeName||this.state===Z.BeforeAttributeValue||this.state===Z.AfterAttributeName||this.state===Z.InAttributeName||this.state===Z.InAttributeValueSq||this.state===Z.InAttributeValueDq||this.state===Z.InAttributeValueNq||this.state===Z.InClosingTagName||this.cbs.ontext(this.sectionStart,t))}emitCodePoint(t,r){this.baseState!==Z.Text&&this.baseState!==Z.InSpecialTag?(this.sectionStart0&&o.has(this.stack[0]);){let a=this.stack.shift();(n=(r=this.cbs).onclosetag)===null||n===void 0||n.call(r,a,!0)}this.isVoidElement(t)||(this.stack.unshift(t),this.htmlMode&&(gJ.has(t)?this.foreignContext.unshift(!0):mJ.has(t)&&this.foreignContext.unshift(!1))),(i=(s=this.cbs).onopentagname)===null||i===void 0||i.call(s,t),this.cbs.onopentag&&(this.attribs={})}endOpenTag(t){var r,n;this.startIndex=this.openTagStart,this.attribs&&((n=(r=this.cbs).onopentag)===null||n===void 0||n.call(r,this.tagname,this.attribs,t),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}onopentagend(t){this.endIndex=t,this.endOpenTag(!1),this.startIndex=t+1}onclosetag(t,r){var n,s,i,o,a,c,u,l;this.endIndex=r;let A=this.getSlice(t,r);if(this.lowerCaseTagNames&&(A=A.toLowerCase()),this.htmlMode&&(gJ.has(A)||mJ.has(A))&&this.foreignContext.shift(),this.isVoidElement(A))this.htmlMode&&A==="br"&&((o=(i=this.cbs).onopentagname)===null||o===void 0||o.call(i,"br"),(c=(a=this.cbs).onopentag)===null||c===void 0||c.call(a,"br",{},!0),(l=(u=this.cbs).onclosetag)===null||l===void 0||l.call(u,"br",!1));else{let f=this.stack.indexOf(A);if(f!==-1)for(let d=0;d<=f;d++){let h=this.stack.shift();(s=(n=this.cbs).onclosetag)===null||s===void 0||s.call(n,h,d!==f)}else this.htmlMode&&A==="p"&&(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=r+1}onselfclosingtag(t){this.endIndex=t,this.recognizeSelfClosing||this.foreignContext[0]?(this.closeCurrentTag(!1),this.startIndex=t+1):this.onopentagend(t)}closeCurrentTag(t){var r,n;let s=this.tagname;this.endOpenTag(t),this.stack[0]===s&&((n=(r=this.cbs).onclosetag)===null||n===void 0||n.call(r,s,!t),this.stack.shift())}onattribname(t,r){this.startIndex=t;let n=this.getSlice(t,r);this.attribname=this.lowerCaseAttributeNames?n.toLowerCase():n}onattribdata(t,r){this.attribvalue+=this.getSlice(t,r)}onattribentity(t){this.attribvalue+=aA(t)}onattribend(t,r){var n,s;this.endIndex=r,(s=(n=this.cbs).onattribute)===null||s===void 0||s.call(n,this.attribname,this.attribvalue,t===Qs.Double?'"':t===Qs.Single?"'":t===Qs.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}getInstructionName(t){let r=t.search(h4e),n=r<0?t:t.substr(0,r);return this.lowerCaseTagNames&&(n=n.toLowerCase()),n}ondeclaration(t,r){this.endIndex=r;let n=this.getSlice(t,r);if(this.cbs.onprocessinginstruction){let s=this.getInstructionName(n);this.cbs.onprocessinginstruction(`!${s}`,`!${n}`)}this.startIndex=r+1}onprocessinginstruction(t,r){this.endIndex=r;let n=this.getSlice(t,r);if(this.cbs.onprocessinginstruction){let s=this.getInstructionName(n);this.cbs.onprocessinginstruction(`?${s}`,`?${n}`)}this.startIndex=r+1}oncomment(t,r,n){var s,i,o,a;this.endIndex=r,(i=(s=this.cbs).oncomment)===null||i===void 0||i.call(s,this.getSlice(t,r-n)),(a=(o=this.cbs).oncommentend)===null||a===void 0||a.call(o),this.startIndex=r+1}oncdata(t,r,n){var s,i,o,a,c,u,l,A,f,d;this.endIndex=r;let h=this.getSlice(t,r-n);!this.htmlMode||this.options.recognizeCDATA?((i=(s=this.cbs).oncdatastart)===null||i===void 0||i.call(s),(a=(o=this.cbs).ontext)===null||a===void 0||a.call(o,h),(u=(c=this.cbs).oncdataend)===null||u===void 0||u.call(c)):((A=(l=this.cbs).oncomment)===null||A===void 0||A.call(l,`[CDATA[${h}]]`),(d=(f=this.cbs).oncommentend)===null||d===void 0||d.call(f)),this.startIndex=r+1}onend(){var t,r;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(let n=0;n=this.buffers[0].length;)this.shiftBuffer();let n=this.buffers[0].slice(t-this.bufferOffset,r-this.bufferOffset);for(;r-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),n+=this.buffers[0].slice(0,r-this.bufferOffset);return n}shiftBuffer(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}write(t){var r,n;if(this.ended){(n=(r=this.cbs).onerror)===null||n===void 0||n.call(r,new Error(".write() after done!"));return}this.buffers.push(t),this.tokenizer.running&&(this.tokenizer.write(t),this.writeIndex++)}end(t){var r,n;if(this.ended){(n=(r=this.cbs).onerror)===null||n===void 0||n.call(r,new Error(".end() after done!"));return}t&&this.write(t),this.ended=!0,this.tokenizer.end()}pause(){this.tokenizer.pause()}resume(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndext._useHtmlParser2?EJ(e,t):AJ(e,t,r,n)),Ts=yj(g4e,(e,t)=>t._useHtmlParser2?DC(e,t):fJ(e));var uW=require("node:stream"),lW=Fe(X2(),1);var aW=Fe(iW(),1),J;(function(e){e[e.Begin=0]="Begin",e[e.BOM16BE=1]="BOM16BE",e[e.BOM16LE=2]="BOM16LE",e[e.BOM8=3]="BOM8",e[e.UTF16LE_XML_PREFIX=4]="UTF16LE_XML_PREFIX",e[e.BeginLT=5]="BeginLT",e[e.UTF16BE_XML_PREFIX=6]="UTF16BE_XML_PREFIX",e[e.BeforeTag=7]="BeforeTag",e[e.BeforeTagName=8]="BeforeTagName",e[e.BeforeCloseTagName=9]="BeforeCloseTagName",e[e.CommentStart=10]="CommentStart",e[e.CommentEnd=11]="CommentEnd",e[e.TagNameMeta=12]="TagNameMeta",e[e.TagNameOther=13]="TagNameOther",e[e.XMLDeclaration=14]="XMLDeclaration",e[e.XMLDeclarationBeforeEncoding=15]="XMLDeclarationBeforeEncoding",e[e.XMLDeclarationAfterEncoding=16]="XMLDeclarationAfterEncoding",e[e.XMLDeclarationBeforeValue=17]="XMLDeclarationBeforeValue",e[e.XMLDeclarationValue=18]="XMLDeclarationValue",e[e.WeirdTag=19]="WeirdTag",e[e.BeforeAttribute=20]="BeforeAttribute",e[e.MetaAttribHttpEquiv=21]="MetaAttribHttpEquiv",e[e.MetaAttribHttpEquivValue=22]="MetaAttribHttpEquivValue",e[e.MetaAttribC=23]="MetaAttribC",e[e.MetaAttribContent=24]="MetaAttribContent",e[e.MetaAttribCharset=25]="MetaAttribCharset",e[e.MetaAttribAfterName=26]="MetaAttribAfterName",e[e.MetaContentValueQuotedBeforeEncoding=27]="MetaContentValueQuotedBeforeEncoding",e[e.MetaContentValueQuotedAfterEncoding=28]="MetaContentValueQuotedAfterEncoding",e[e.MetaContentValueQuotedBeforeValue=29]="MetaContentValueQuotedBeforeValue",e[e.MetaContentValueQuotedValueQuoted=30]="MetaContentValueQuotedValueQuoted",e[e.MetaContentValueQuotedValueUnquoted=31]="MetaContentValueQuotedValueUnquoted",e[e.MetaContentValueUnquotedBeforeEncoding=32]="MetaContentValueUnquotedBeforeEncoding",e[e.MetaContentValueUnquotedBeforeValue=33]="MetaContentValueUnquotedBeforeValue",e[e.MetaContentValueUnquotedValueQuoted=34]="MetaContentValueUnquotedValueQuoted",e[e.MetaContentValueUnquotedValueUnquoted=35]="MetaContentValueUnquotedValueUnquoted",e[e.AnyAttribName=36]="AnyAttribName",e[e.AfterAttributeName=37]="AfterAttributeName",e[e.BeforeAttributeValue=38]="BeforeAttributeValue",e[e.AttributeValueQuoted=39]="AttributeValueQuoted",e[e.AttributeValueUnquoted=40]="AttributeValueUnquoted"})(J||(J={}));var hr;(function(e){e[e.BOM=0]="BOM",e[e.PASSED=1]="PASSED",e[e.XML_PREFIX=2]="XML_PREFIX",e[e.META_TAG=3]="META_TAG",e[e.XML_ENCODING=4]="XML_ENCODING",e[e.DEFAULT=5]="DEFAULT"})(hr||(hr={}));var Rn;(function(e){e[e.None=0]="None",e[e.HttpEquiv=1]="HttpEquiv",e[e.Content=2]="Content",e[e.Charset=3]="Charset"})(Rn||(Rn={}));var Qe;(function(e){e[e.NIL=0]="NIL",e[e.TAB=9]="TAB",e[e.LF=10]="LF",e[e.CR=13]="CR",e[e.SPACE=32]="SPACE",e[e.EXCLAMATION=33]="EXCLAMATION",e[e.DQUOTE=34]="DQUOTE",e[e.SQUOTE=39]="SQUOTE",e[e.DASH=45]="DASH",e[e.SLASH=47]="SLASH",e[e.SEMICOLON=59]="SEMICOLON",e[e.LT=60]="LT",e[e.EQUALS=61]="EQUALS",e[e.GT=62]="GT",e[e.QUESTION=63]="QUESTION",e[e.UpperA=65]="UpperA",e[e.UpperZ=90]="UpperZ",e[e.LowerA=97]="LowerA",e[e.LowerZ=122]="LowerZ"})(Qe||(Qe={}));var si=new Set([Qe.SPACE,Qe.LF,Qe.CR,Qe.TAB]),c0=new Set([Qe.SPACE,Qe.LF,Qe.CR,Qe.TAB,Qe.GT]);function ko(e){for(var t=new Uint8Array(e.length),r=0;r")};function oW(e){return e>=Qe.UpperA&&e<=Qe.UpperZ||e>=Qe.LowerA&&e<=Qe.LowerZ}function fu(e){return e===Qe.DQUOTE||e===Qe.SQUOTE}var cW=function(){function e(t){var r=t===void 0?{}:t,n=r.maxBytes,s=n===void 0?1024:n,i=r.userEncoding,o=r.transportLayerEncodingLabel,a=r.defaultEncoding;this.offset=0,this.state=J.Begin,this.sectionIndex=0,this.attribType=Rn.None,this.gotPragma=null,this.needsPragma=null,this.inMetaTag=!1,this.encoding="windows-1252",this.resultType=hr.DEFAULT,this.quoteCharacter=0,this.attributeValue=[],this.maxBytes=s,i&&this.setResult(i,hr.PASSED),o&&this.setResult(o,hr.PASSED),a&&this.setResult(a,hr.DEFAULT)}return e.prototype.setResult=function(t,r){if(this.resultType===hr.DEFAULT||this.resultType>r){var n=(0,aW.labelToName)(t);n&&(this.encoding=r===hr.META_TAG&&n==="x-user-defined"?"windows-1252":(r===hr.META_TAG||r===hr.XML_ENCODING)&&(n==="UTF-16LE"||n==="UTF-16BE")?"UTF-8":n,this.resultType=r)}},e.prototype.stateBegin=function(t){switch(t){case We.UTF16BE_BOM[0]:{this.state=J.BOM16BE;break}case We.UTF16LE_BOM[0]:{this.state=J.BOM16LE;break}case We.UTF8_BOM[0]:{this.sectionIndex=1,this.state=J.BOM8;break}case Qe.NIL:{this.state=J.UTF16BE_XML_PREFIX,this.sectionIndex=1;break}case Qe.LT:{this.state=J.BeginLT;break}default:this.state=J.BeforeTag}},e.prototype.stateBeginLT=function(t){t===Qe.NIL?(this.state=J.UTF16LE_XML_PREFIX,this.sectionIndex=2):t===Qe.QUESTION?(this.state=J.XMLDeclaration,this.sectionIndex=2):(this.state=J.BeforeTagName,this.stateBeforeTagName(t))},e.prototype.stateUTF16BE_XML_PREFIX=function(t){this.advanceSection(We.UTF16BE_XML_PREFIX,t)?this.sectionIndex===We.UTF16BE_XML_PREFIX.length&&this.setResult("utf-16be",hr.XML_PREFIX):(this.state=J.BeforeTag,this.stateBeforeTag(t))},e.prototype.stateUTF16LE_XML_PREFIX=function(t){this.advanceSection(We.UTF16LE_XML_PREFIX,t)?this.sectionIndex===We.UTF16LE_XML_PREFIX.length&&this.setResult("utf-16le",hr.XML_PREFIX):(this.state=J.BeforeTag,this.stateBeforeTag(t))},e.prototype.stateBOM16LE=function(t){t===We.UTF16LE_BOM[1]?this.setResult("utf-16le",hr.BOM):(this.state=J.BeforeTag,this.stateBeforeTag(t))},e.prototype.stateBOM16BE=function(t){t===We.UTF16BE_BOM[1]?this.setResult("utf-16be",hr.BOM):(this.state=J.BeforeTag,this.stateBeforeTag(t))},e.prototype.stateBOM8=function(t){this.advanceSection(We.UTF8_BOM,t)&&this.sectionIndex===We.UTF8_BOM.length&&this.setResult("utf-8",hr.BOM)},e.prototype.stateBeforeTag=function(t){t===Qe.LT&&(this.state=J.BeforeTagName,this.inMetaTag=!1)},e.prototype.stateBeforeTagName=function(t){if(oW(t))(t|32)===We.META[0]?(this.sectionIndex=1,this.state=J.TagNameMeta):this.state=J.TagNameOther;else switch(t){case Qe.SLASH:{this.state=J.BeforeCloseTagName;break}case Qe.EXCLAMATION:{this.state=J.CommentStart,this.sectionIndex=2;break}case Qe.QUESTION:{this.state=J.WeirdTag;break}default:this.state=J.BeforeTag,this.stateBeforeTag(t)}},e.prototype.stateBeforeCloseTagName=function(t){this.state=oW(t)?J.TagNameOther:J.WeirdTag},e.prototype.stateCommentStart=function(t){this.advanceSection(We.COMMENT_START,t)?this.sectionIndex===We.COMMENT_START.length&&(this.state=J.CommentEnd,this.sectionIndex=2):(this.state=J.WeirdTag,this.stateWeirdTag(t))},e.prototype.stateCommentEnd=function(t){this.advanceSection(We.COMMENT_END,t)?this.sectionIndex===We.COMMENT_END.length&&(this.state=J.BeforeTag):t===Qe.DASH&&(this.sectionIndex=2)},e.prototype.stateWeirdTag=function(t){t===Qe.GT&&(this.state=J.BeforeTag)},e.prototype.advanceSectionIC=function(t,r){return this.advanceSection(t,r|32)},e.prototype.advanceSection=function(t,r){return t[this.sectionIndex]===r?(this.sectionIndex++,!0):(this.sectionIndex=0,!1)},e.prototype.stateTagNameMeta=function(t){if(this.sectionIndexQe.SPACE&&(this.state=J.WeirdTag,this.stateWeirdTag(t))},e.prototype.stateXMLDeclarationBeforeValue=function(t){fu(t)?(this.attributeValue.length=0,this.state=J.XMLDeclarationValue):t>Qe.SPACE&&(this.state=J.WeirdTag,this.stateWeirdTag(t))},e.prototype.stateXMLDeclarationValue=function(t){fu(t)?(this.setResult(String.fromCharCode.apply(String,this.attributeValue),hr.XML_ENCODING),this.state=J.WeirdTag):t===Qe.GT?this.state=J.BeforeTag:t<=Qe.SPACE?this.state=J.WeirdTag:this.attributeValue.push(t|32)},e.prototype.write=function(t){for(var r=0;r ul > li > a[href!="/"]'))s.push({type_id:i.attribs.href.replace(/\//g,""),type_name:i.children[0].data.trim(),tline:2});return{class:s}}async function A$e(e,t){let r=e.body.id,n=e.body.page,s=n||1;s==0&&(s=1);var i=await Ap(Jo+`/${r}/${s}.html`);let o=Ts(i),a=[];for(let c of o("div.item")){let u=o(c).find("a:first")[0],l=o(u).find("img:first")[0],A=o(c).find("span:first")[0];a.push({book_id:u.attribs.href,book_name:l.attribs.alt,book_pic:l.attribs.src,book_remarks:A.children[0].data.trim()})}return{page:n,pagecount:o("div.page > a:contains(>)").length>0?n+1:n,list:a}}async function f$e(e,t){let r=Array.isArray(e.body.id)?e.body.id:[e.body.id],n=[];for(let c of r){var s=await Ap(Jo+c),i=Ts(s);let u={book_name:i("[property$=book_name]")[0].attribs.content,book_year:i("[property$=update_time]")[0].attribs.content,book_director:i("[property$=author]")[0].attribs.content,book_content:i("[property$=description]")[0].attribs.content};s=await Ap(Jo+c+"list.html"),i=Ts(s);let l=[],A=i('dl>dd>a[href*="/html/"]');for(let f of A){var o=i(f).text().trim(),a=f.attribs.href;l.push(o+"$"+a)}u.volumes="\u5168\u5377",u.urls=l.join("#"),n.push(u)}return{list:n}}async function d$e(e,t){let r=e.body.id;for(var n="";;){var s=await Ap(Jo+r),i=Ts(s);if(n+=i("#chaptercontent").html().replace(/
    |请收藏.*?<\/p>/g,` +`).trim(),r=i("a.Readpage_down")[0].attribs.href,r.indexOf("_")<0)break}return{content:n+` + +`}}async function h$e(e,t){let r=e.body.wd,n=await kr.get(`${Jo}/user/hm.html?q=${encodeURIComponent(r)}`,{headers:{accept:"application/json","User-Agent":TC,Referer:`${Jo}/s?q=${encodeURIComponent(r)}`}}),i=(Array.isArray(n.headers["set-cookie"])?n.headers["set-cookie"].join(";;;"):n.headers["set-cookie"]).split(";;;"),o={};for(let u of i){let l=u.trim(),A=l.indexOf("="),f=l.substr(0,A),d=l.substr(A+1,l.indexOf(";")-A-1);o[f]=d}let a=await kr.get(`${Jo}/user/search.html?q=${encodeURIComponent(r)}&so=undefined`,{headers:{accept:"application/json","User-Agent":TC,cookie:"hm="+o.hm,Referer:`${Jo}/s?q=${encodeURIComponent(r)}`}}),c=[];for(let u of a.data)c.push({book_id:u.url_list,book_name:u.articlename,book_pic:u.url_img,book_remarks:u.author});return{tline:2,list:c}}async function p$e(e,t){try{let r=function(o){o.statusCode&&o.statusCode==500&&console.error(o)},n=e.server.prefix,s={},i=await e.server.inject().post(`${n}/init`);if(s.init=i.json(),r(i.json()),i=await e.server.inject().post(`${n}/home`),s.home=i.json(),r(i.json()),s.home.class.length>0&&(i=await e.server.inject().post(`${n}/category`).payload({id:s.home.class[0].type_id,page:1,filter:!0,filters:{}}),s.category=i.json(),r(i.json()),s.category.list.length>0&&(i=await e.server.inject().post(`${n}/detail`).payload({id:s.category.list[0].book_id}),s.detail=i.json(),r(i.json()),s.detail.list&&s.detail.list.length>0))){s.play=[];for(let o of s.detail.list){let a=o.volumes.split("$$$"),c=o.urls.split("$$$");for(let u=0;u{e.post("/init",u$e),e.post("/home",l$e),e.post("/category",A$e),e.post("/detail",f$e),e.post("/play",d$e),e.post("/search",h$e),e.get("/test",p$e)}};var rs=Fe(Rh(),1);var Bf="https://www.copymanga.tv";async function xf(e){return(await kr.get(e,{headers:{"User-Agent":Y$}})).data}async function g$e(e,t){return{}}async function m$e(e,t){var r=await xf(Bf+"/comics");let n=Ts(r),s={},i={key:"region",name:"\u5730\u5340",init:""},o=[];o.push({n:"\u5168\u90E8",v:""}),o.push({n:"\u65E5\u6F2B",v:"0"}),o.push({n:"\u97D3\u6F2B",v:"1"}),o.push({n:"\u7F8E\u6F2B",v:"2"}),i.value=o;let a={key:"ordering",name:"\u6392\u5E8F",init:"-datetime_updated"},c=[];c.push({n:"\u66F4\u65B0\u6642\u9593\u2193",v:"-datetime_updated"}),c.push({n:"\u66F4\u65B0\u6642\u9593\u2191",v:"datetime_updated"}),c.push({n:"\u71B1\u9580\u2193",v:"-popular"}),c.push({n:"\u71B1\u9580\u2191",v:"popular"}),a.value=c;let u={key:"sort",name:"\u72C0\u614B",init:""},l=[];l.push({n:"\u5168\u90E8",v:""}),l.push({n:"\u9023\u8F09\u4E2D",v:"0"}),l.push({n:"\u5DF2\u5B8C\u7D50",v:"1"}),l.push({n:"\u77ED\u7BC7",v:"2"}),u.value=l,s.c1=[];let A=[{n:"\u5168\u90E8",v:""}];for(let f of n('div.classify-right>a[href*="theme="]'))A.push({n:n(f).text().trim(),v:f.attribs.href.match(/.*?theme=(.*)&/)[1]});return s.c1.push({key:"theme",name:"",init:"",wrap:1,value:A}),s.c1.push(i),s.c1.push(u),s.c1.push(a),{class:[{type_name:"all",type_id:"c1"}],filters:s}}async function E$e(inReq,_outResp){let pg=inReq.body.page,extend=inReq.body.filters,page=pg||1;page==0&&(page=1);let link=Bf+`/comics?theme=${extend.theme||""}®ion=${extend.region||""}&status=${extend.status||""}&ordering=${extend.ordering||"-datetime_updated"}`;page>1&&(link+="&offset="+(page-1)*50+"&limit=50");var html=await xf(link);let $=Ts(html),list=eval($('div[class="row exemptComic-box"]')[0].attribs.list),books=[];for(let e of list)books.push({book_id:e.path_word,book_name:e.name,book_pic:e.cover,book_remarks:e.author?e.author[0].name:""});return{page,pagecount:list.length==50?page+1:page,list:books}}async function C$e(e,t){let r=Array.isArray(e.body.id)?e.body.id:[e.body.id],n=[];for(let u of r){var s=await xf(Bf+`/comic/${u}`);let l=Ts(s),A={book_name:l("h6").text().trim(),book_director:l('span.comicParticulars-right-txt>a[href*="/author/"]').map((p,C)=>l(C).text().trim()).get().join("/"),book_content:l("p.intro").text().trim()},f=(await xf(Bf+`/comicdetail/${u}/chapters`)).results;var i=rs.default.enc.Utf8.parse("xxxmanga.woo.key"),o=rs.default.enc.Utf8.parse(f.substr(0,16)),a=rs.default.enc.Hex.parse(f.substr(16)),c=rs.default.AES.decrypt({ciphertext:a},i,{iv:o,padding:rs.default.pad.Pkcs7});c=rs.default.enc.Utf8.stringify(c);let h=JSON.parse(c).groups.default.chapters.map(p=>p.name+"$"+u+"|"+p.id).join("#");A.volumes="\u9ED8\u8A8D",A.urls=h,n.push(A)}return{list:n}}async function y$e(e,t){var n=e.body.id.split("|"),s=await xf(Bf+`/comic/${n[0]}/chapter/${n[1]}`);let o=Ts(s)("div.imageData")[0].attribs.contentkey;var a=rs.default.enc.Utf8.parse("xxxmanga.woo.key"),c=rs.default.enc.Utf8.parse(o.substr(0,16)),u=rs.default.enc.Hex.parse(o.substr(16)),l=rs.default.AES.decrypt({ciphertext:u},a,{iv:c,padding:rs.default.pad.Pkcs7});l=rs.default.enc.Utf8.stringify(l);let A=JSON.parse(l);var f=[];for(let d=0;d1?((s-1)*12).toString():""}&platform=2&limit=12&q=${n}&q_type=`;var o=(await xf(i)).results.list;let a=[];for(let c of o)a.push({book_id:c.path_word,book_name:c.name,book_pic:c.cover,book_remarks:c.author?c.author[0].name:""});return{page:s,pagecount:o.length==12?s+1:s,list:a}}async function b$e(e,t){try{let r=function(o){o.statusCode&&o.statusCode==500&&console.error(o)},n=e.server.prefix,s={},i=await e.server.inject().post(`${n}/init`);if(s.init=i.json(),r(i.json()),i=await e.server.inject().post(`${n}/home`),s.home=i.json(),r(i.json()),s.home.class.length>0&&(i=await e.server.inject().post(`${n}/category`).payload({id:s.home.class[0].type_id,page:1,filter:!0,filters:{}}),s.category=i.json(),r(i.json()),s.category.list.length>0&&(i=await e.server.inject().post(`${n}/detail`).payload({id:s.category.list[0].book_id}),s.detail=i.json(),r(i.json()),s.detail.list&&s.detail.list.length>0))){s.play=[];for(let o of s.detail.list){let a=o.volumes.split("$$$"),c=o.urls.split("$$$");for(let u=0;u{e.post("/init",g$e),e.post("/home",m$e),e.post("/category",E$e),e.post("/detail",C$e),e.post("/play",y$e),e.post("/search",I$e),e.get("/test",b$e)}};var _b=Fe(vne(),1);var Qf="",cc=[];async function pp(e){return(await kr(e,{method:"get"})).data}async function LGe(e,t){return Qf=e.server.config.ffm3u8.url,cc=e.server.config.ffm3u8.categories,{}}var Qne=[];async function OGe(e,t){let r=await pp(Qf),n=[];for(let s of r.class){let i=s.type_name.toString().trim();cc&&cc.length>0&&cc.indexOf(i)<0||n.push({type_id:s.type_id.toString(),type_name:i})}if(cc&&cc.length>0&&(n=n.sort((s,i)=>cc.indexOf(s.type_name)-cc.indexOf(i.type_name))),r.list){let s=await pp(Qf+`?ac=detail&ids=${r.list.map(i=>i.vod_id).join(",")}`);for(let i of s.list)Qne.push({vod_id:i.vod_id.toString(),vod_name:i.vod_name.toString(),vod_pic:i.vod_pic,vod_remarks:i.vod_remarks})}return{class:n}}async function MGe(e,t){let r=e.body.id,s=e.body.page||1;s==0&&(s=1);let i=await pp(Qf+`?ac=detail&t=${r}&pg=${s}`),o=[];for(let a of i.list)o.push({vod_id:a.vod_id.toString(),vod_name:a.vod_name.toString(),vod_pic:a.vod_pic,vod_remarks:a.vod_remarks});return{page:parseInt(i.page),pagecount:i.pagecount,total:i.total,list:o}}async function PGe(e,t){let r=Array.isArray(e.body.id)?e.body.id:[e.body.id],n=[];for(let s of r){let i=(await pp(Qf+`?ac=detail&ids=${s}`)).list[0],o={vod_id:i.vod_id,vod_name:i.vod_name,vod_pic:i.vod_pic,type_name:i.type_name,vod_year:i.vod_year,vod_area:i.vod_area,vod_remarks:i.vod_remarks,vod_actor:i.vod_actor,vod_director:i.vod_director,vod_content:i.vod_content.trim(),vod_play_from:i.vod_play_from,vod_play_url:i.vod_play_url};o.likes=Qne,n.push(o)}return{list:n}}async function UGe(e,t){let r=e.params.what,n=decodeURIComponent(e.params.ids);if(r=="hls"){let s=await kr(n,{method:"get"}),i=_b.parse(s.data);if(i.variants){for(let c of i.variants)c.uri.startsWith("http")||(c.uri=new URL(c.uri,n).toString());i.variants.map(c=>{c.uri=e.server.prefix+"/proxy/hls/"+encodeURIComponent(c.uri)+"/.m3u8"})}if(i.segments){for(let c of i.segments)c.uri.startsWith("http")||(c.uri=new URL(c.uri,n).toString()),c.key&&c.key.uri&&!c.key.uri.startsWith("http")&&(c.key.uri=new URL(c.key.uri,n).toString());i.segments.map(c=>{c.uri=e.server.prefix+"/proxy/ts/"+encodeURIComponent(c.uri)+"/.ts"})}let o=_b.stringify(i),a={};return s.headers["content-length"]?Object.assign(a,s.headers,{"content-length":o.length.toString()}):Object.assign(a,s.headers),delete a["transfer-encoding"],delete a["cache-control"],a["content-encoding"]=="gzip"&&delete a["content-encoding"],t.code(s.status).headers(a),o}else{t.redirect(n);return}}async function HGe(e,t){let r=e.body.id;if(r.indexOf(".m3u8")<0){let n=await e.server.messageToDart({action:"sniff",opt:{url:r,timeout:1e4,rule:"http((?!http).){12,}?\\.m3u8(?!\\?)"}});if(n&&n.url){let s={};return n.headers&&(n.headers["user-agent"]&&(s["User-Agent"]=n.headers["user-agent"]),n.headers.referer&&(s.Referer=n.headers.referer)),{parse:0,url:n.url,header:s}}}return{parse:0,url:e.server.address().dynamic+e.server.prefix+"/proxy/hls/"+encodeURIComponent(r)+"/.m3u8"}}async function qGe(e,t){let r=e.body.wd,n=await pp(Qf+`?ac=detail&wd=${r}`),s=[];for(let i of n.list)s.push({vod_id:i.vod_id.toString(),vod_name:i.vod_name.toString(),vod_pic:i.vod_pic,vod_remarks:i.vod_remarks});return{page:parseInt(n.page),pagecount:n.pagecount,total:n.total,list:s}}async function VGe(e,t){try{let r=function(o){o.statusCode&&o.statusCode==500&&console.error(o)},n=e.server.prefix,s={},i=await e.server.inject().post(`${n}/init`);if(s.init=i.json(),r(i.json()),i=await e.server.inject().post(`${n}/home`),s.home=i.json(),r(i.json()),s.home.class.length>0&&(i=await e.server.inject().post(`${n}/category`).payload({id:s.home.class[0].type_id,page:1,filter:!0,filters:{}}),s.category=i.json(),r(i.json()),s.category.list.length>0&&(i=await e.server.inject().post(`${n}/detail`).payload({id:s.category.list[0].vod_id}),s.detail=i.json(),r(i.json()),s.detail.list&&s.detail.list.length>0))){s.play=[];for(let o of s.detail.list){let a=o.vod_play_from.split("$$$"),c=o.vod_play_url.split("$$$");for(let u=0;u{e.post("/init",LGe),e.post("/home",OGe),e.post("/category",MGe),e.post("/detail",PGe),e.post("/play",HGe),e.post("/search",qGe),e.get("/proxy/:what/:ids/:end",UGe),e.get("/test",VGe)}};var Ak=Fe(Pie(),1);async function Ps(e){return(await kr(e,{method:"get"})).data}async function fk(e,t={}){return(await kr(e,{method:"post",data:t})).data}function Ko(e,t){let r=new URL(e),s={...Ak.default.parse(r.search,{ignoreQueryPrefix:!0}),...t},i=Ak.default.stringify(s);return r.search=`?${i}`,r.toString()}var $b=Fe(Rh(),1);function pWe(){let e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",t=new Array(-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-1,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-1,-1,-1,-1,-1);function r(s){var i,o,a,c,u,l;for(a=s.length,o=0,i="";o>2),i+=e.charAt((c&3)<<4),i+="==";break}if(u=s.charCodeAt(o++),o==a){i+=e.charAt(c>>2),i+=e.charAt((c&3)<<4|(u&240)>>4),i+=e.charAt((u&15)<<2),i+="=";break}l=s.charCodeAt(o++),i+=e.charAt(c>>2),i+=e.charAt((c&3)<<4|(u&240)>>4),i+=e.charAt((u&15)<<2|(l&192)>>6),i+=e.charAt(l&63)}return i}function n(s){var i,o,a,c,u,l,A;for(l=s.length,u=0,A="";u>4);do{if(a=s.charCodeAt(u++)&255,a==61)return A;a=t[a]}while(u>2);do{if(c=s.charCodeAt(u++)&255,c==61)return A;c=t[c]}while(u{if(typeof r!="object"||!r.name||!r.init)throw new Error("Invalid JSEP plugin format");this.registered[r.name]||(r.init(this.jsep),this.registered[r.name]=r)})}},Mn=class e{static get version(){return"1.4.0"}static toString(){return"JavaScript Expression Parser (JSEP) v"+e.version}static addUnaryOp(t){return e.max_unop_len=Math.max(t.length,e.max_unop_len),e.unary_ops[t]=1,e}static addBinaryOp(t,r,n){return e.max_binop_len=Math.max(t.length,e.max_binop_len),e.binary_ops[t]=r,n?e.right_associative.add(t):e.right_associative.delete(t),e}static addIdentifierChar(t){return e.additional_identifier_chars.add(t),e}static addLiteral(t,r){return e.literals[t]=r,e}static removeUnaryOp(t){return delete e.unary_ops[t],t.length===e.max_unop_len&&(e.max_unop_len=e.getMaxKeyLen(e.unary_ops)),e}static removeAllUnaryOps(){return e.unary_ops={},e.max_unop_len=0,e}static removeIdentifierChar(t){return e.additional_identifier_chars.delete(t),e}static removeBinaryOp(t){return delete e.binary_ops[t],t.length===e.max_binop_len&&(e.max_binop_len=e.getMaxKeyLen(e.binary_ops)),e.right_associative.delete(t),e}static removeAllBinaryOps(){return e.binary_ops={},e.max_binop_len=0,e}static removeLiteral(t){return delete e.literals[t],e}static removeAllLiterals(){return e.literals={},e}get char(){return this.expr.charAt(this.index)}get code(){return this.expr.charCodeAt(this.index)}constructor(t){this.expr=t,this.index=0}static parse(t){return new e(t).parse()}static getMaxKeyLen(t){return Math.max(0,...Object.keys(t).map(r=>r.length))}static isDecimalDigit(t){return t>=48&&t<=57}static binaryPrecedence(t){return e.binary_ops[t]||0}static isIdentifierStart(t){return t>=65&&t<=90||t>=97&&t<=122||t>=128&&!e.binary_ops[String.fromCharCode(t)]||e.additional_identifier_chars.has(String.fromCharCode(t))}static isIdentifierPart(t){return e.isIdentifierStart(t)||e.isDecimalDigit(t)}throwError(t){let r=new Error(t+" at character "+this.index);throw r.index=this.index,r.description=t,r}runHook(t,r){if(e.hooks[t]){let n={context:this,node:r};return e.hooks.run(t,n),n.node}return r}searchHook(t){if(e.hooks[t]){let r={context:this};return e.hooks[t].find(function(n){return n.call(r.context,r),r.node}),r.node}}gobbleSpaces(){let t=this.code;for(;t===e.SPACE_CODE||t===e.TAB_CODE||t===e.LF_CODE||t===e.CR_CODE;)t=this.expr.charCodeAt(++this.index);this.runHook("gobble-spaces")}parse(){this.runHook("before-all");let t=this.gobbleExpressions(),r=t.length===1?t[0]:{type:e.COMPOUND,body:t};return this.runHook("after-all",r)}gobbleExpressions(t){let r=[],n,s;for(;this.index0;){if(e.binary_ops.hasOwnProperty(t)&&(!e.isIdentifierStart(this.code)||this.index+t.lengthi.right_a&&A.right_a?n>A.prec:n<=A.prec;for(;s.length>2&&l(s[s.length-2]);)a=s.pop(),r=s.pop().value,o=s.pop(),t={type:e.BINARY_EXP,operator:r,left:o,right:a},s.push(t);t=this.gobbleToken(),t||this.throwError("Expected expression after "+u),s.push(i,t)}for(c=s.length-1,t=s[c];c>1;)t={type:e.BINARY_EXP,operator:s[c-1].value,left:s[c-2],right:t},c-=2;return t}gobbleToken(){let t,r,n,s;if(this.gobbleSpaces(),s=this.searchHook("gobble-token"),s)return this.runHook("after-token",s);if(t=this.code,e.isDecimalDigit(t)||t===e.PERIOD_CODE)return this.gobbleNumericLiteral();if(t===e.SQUOTE_CODE||t===e.DQUOTE_CODE)s=this.gobbleStringLiteral();else if(t===e.OBRACK_CODE)s=this.gobbleArray();else{for(r=this.expr.substr(this.index,e.max_unop_len),n=r.length;n>0;){if(e.unary_ops.hasOwnProperty(r)&&(!e.isIdentifierStart(this.code)||this.index+r.length=r.length&&this.throwError("Unexpected token "+String.fromCharCode(t));break}else if(i===e.COMMA_CODE){if(this.index++,s++,s!==r.length){if(t===e.CPAREN_CODE)this.throwError("Unexpected token ,");else if(t===e.CBRACK_CODE)for(let o=r.length;o":7,"<=":7,">=":7,"<<":8,">>":8,">>>":8,"+":9,"-":9,"*":10,"/":10,"%":10,"**":11},right_associative:new Set(["**"]),additional_identifier_chars:new Set(["$","_"]),literals:{true:!0,false:!1,null:null},this_str:"this"});Mn.max_unop_len=Mn.getMaxKeyLen(Mn.unary_ops);Mn.max_binop_len=Mn.getMaxKeyLen(Mn.binary_ops);var Zo=e=>new Mn(e).parse(),mWe=Object.getOwnPropertyNames(class{});Object.getOwnPropertyNames(Mn).filter(e=>!mWe.includes(e)&&Zo[e]===void 0).forEach(e=>{Zo[e]=Mn[e]});Zo.Jsep=Mn;var EWe="ConditionalExpression",CWe={name:"ternary",init(e){e.hooks.add("after-expression",function(r){if(r.node&&this.code===e.QUMARK_CODE){this.index++;let n=r.node,s=this.gobbleExpression();if(s||this.throwError("Expected expression"),this.gobbleSpaces(),this.code===e.COLON_CODE){this.index++;let i=this.gobbleExpression();if(i||this.throwError("Expected expression"),r.node={type:EWe,test:n,consequent:s,alternate:i},n.operator&&e.binary_ops[n.operator]<=.9){let o=n;for(;o.right.operator&&e.binary_ops[o.right.operator]<=.9;)o=o.right;r.node.test=o.right,o.right=r.node,r.node=n}}else this.throwError("Expected :")}})}};Zo.plugins.register(CWe);var Uie=47,yWe=92,IWe={name:"regex",init(e){e.hooks.add("gobble-token",function(r){if(this.code===Uie){let n=++this.index,s=!1;for(;this.index=97&&c<=122||c>=65&&c<=90||c>=48&&c<=57)o+=this.char;else break}let a;try{a=new RegExp(i,o)}catch(c){this.throwError(c.message)}return r.node={type:e.LITERAL,value:a,raw:this.expr.slice(n-1,this.index)},r.node=this.gobbleTokenProperty(r.node),r.node}this.code===e.OBRACK_CODE?s=!0:s&&this.code===e.CBRACK_CODE&&(s=!1),this.index+=this.code===yWe?2:1}this.throwError("Unclosed Regex")}})}},hk=43,bWe=45,Nf={name:"assignment",assignmentOperators:new Set(["=","*=","**=","/=","%=","+=","-=","<<=",">>=",">>>=","&=","^=","|=","||=","&&=","??="]),updateOperators:[hk,bWe],assignmentPrecedence:.9,init(e){let t=[e.IDENTIFIER,e.MEMBER_EXP];Nf.assignmentOperators.forEach(n=>e.addBinaryOp(n,Nf.assignmentPrecedence,!0)),e.hooks.add("gobble-token",function(s){let i=this.code;Nf.updateOperators.some(o=>o===i&&o===this.expr.charCodeAt(this.index+1))&&(this.index+=2,s.node={type:"UpdateExpression",operator:i===hk?"++":"--",argument:this.gobbleTokenProperty(this.gobbleIdentifier()),prefix:!0},(!s.node.argument||!t.includes(s.node.argument.type))&&this.throwError(`Unexpected ${s.node.operator}`))}),e.hooks.add("after-token",function(s){if(s.node){let i=this.code;Nf.updateOperators.some(o=>o===i&&o===this.expr.charCodeAt(this.index+1))&&(t.includes(s.node.type)||this.throwError(`Unexpected ${s.node.operator}`),this.index+=2,s.node={type:"UpdateExpression",operator:i===hk?"++":"--",argument:s.node,prefix:!1})}}),e.hooks.add("after-expression",function(s){s.node&&r(s.node)});function r(n){Nf.assignmentOperators.has(n.operator)?(n.type="AssignmentExpression",r(n.left),r(n.right)):n.operator||Object.values(n).forEach(s=>{s&&typeof s=="object"&&r(s)})}}};Zo.plugins.register(IWe,Nf);Zo.addUnaryOp("typeof");Zo.addLiteral("null",null);Zo.addLiteral("undefined",void 0);var BWe=new Set(["constructor","__proto__","__defineGetter__","__defineSetter__"]),Bt={evalAst(e,t){switch(e.type){case"BinaryExpression":case"LogicalExpression":return Bt.evalBinaryExpression(e,t);case"Compound":return Bt.evalCompound(e,t);case"ConditionalExpression":return Bt.evalConditionalExpression(e,t);case"Identifier":return Bt.evalIdentifier(e,t);case"Literal":return Bt.evalLiteral(e,t);case"MemberExpression":return Bt.evalMemberExpression(e,t);case"UnaryExpression":return Bt.evalUnaryExpression(e,t);case"ArrayExpression":return Bt.evalArrayExpression(e,t);case"CallExpression":return Bt.evalCallExpression(e,t);case"AssignmentExpression":return Bt.evalAssignmentExpression(e,t);default:throw SyntaxError("Unexpected expression",e)}},evalBinaryExpression(e,t){return{"||":(n,s)=>n||s(),"&&":(n,s)=>n&&s(),"|":(n,s)=>n|s(),"^":(n,s)=>n^s(),"&":(n,s)=>n&s(),"==":(n,s)=>n==s(),"!=":(n,s)=>n!=s(),"===":(n,s)=>n===s(),"!==":(n,s)=>n!==s(),"<":(n,s)=>n":(n,s)=>n>s(),"<=":(n,s)=>n<=s(),">=":(n,s)=>n>=s(),"<<":(n,s)=>n<>":(n,s)=>n>>s(),">>>":(n,s)=>n>>>s(),"+":(n,s)=>n+s(),"-":(n,s)=>n-s(),"*":(n,s)=>n*s(),"/":(n,s)=>n/s(),"%":(n,s)=>n%s()}[e.operator](Bt.evalAst(e.left,t),()=>Bt.evalAst(e.right,t))},evalCompound(e,t){let r;for(let n=0;n-Bt.evalAst(n,t),"!":n=>!Bt.evalAst(n,t),"~":n=>~Bt.evalAst(n,t),"+":n=>+Bt.evalAst(n,t),typeof:n=>typeof Bt.evalAst(n,t)}[e.operator](e.argument)},evalArrayExpression(e,t){return e.elements.map(r=>Bt.evalAst(r,t))},evalCallExpression(e,t){let r=e.arguments.map(s=>Bt.evalAst(s,t));return Bt.evalAst(e.callee,t)(...r)},evalAssignmentExpression(e,t){if(e.left.type!=="Identifier")throw SyntaxError("Invalid left-hand side in assignment");let r=e.left.name,n=Bt.evalAst(e.right,t);return t[r]=n,t[r]}},mk=class{constructor(t){this.code=t,this.ast=Zo(this.code)}runInNewContext(t){let r=Object.assign(Object.create(null),t);return Bt.evalAst(this.ast,r)}};function Ac(e,t){return e=e.slice(),e.push(t),e}function Ek(e,t){return t=t.slice(),t.unshift(e),t}var Ck=class extends Error{constructor(t){super('JSONPath should not be called with "new" (it prevents return of (unwrapped) scalar values)'),this.avoidNew=!0,this.value=t,this.name="NewError"}};function ut(e,t,r,n,s){if(!(this instanceof ut))try{return new ut(e,t,r,n,s)}catch(o){if(!o.avoidNew)throw o;return o.value}typeof e=="string"&&(s=n,n=r,r=t,t=e,e=null);let i=e&&typeof e=="object";if(e=e||{},this.json=e.json||r,this.path=e.path||t,this.resultType=e.resultType||"value",this.flatten=e.flatten||!1,this.wrap=Object.hasOwn(e,"wrap")?e.wrap:!0,this.sandbox=e.sandbox||{},this.eval=e.eval===void 0?"safe":e.eval,this.ignoreEvalErrors=typeof e.ignoreEvalErrors>"u"?!1:e.ignoreEvalErrors,this.parent=e.parent||null,this.parentProperty=e.parentProperty||null,this.callback=e.callback||n||null,this.otherTypeCallback=e.otherTypeCallback||s||function(){throw new TypeError("You must supply an otherTypeCallback callback option with the @other() operator.")},e.autostart!==!1){let o={path:i?e.path:t};i?"json"in e&&(o.json=e.json):o.json=r;let a=this.evaluate(o);if(!a||typeof a!="object")throw new Ck(a);return a}}ut.prototype.evaluate=function(e,t,r,n){let s=this.parent,i=this.parentProperty,{flatten:o,wrap:a}=this;if(this.currResultType=this.resultType,this.currEval=this.eval,this.currSandbox=this.sandbox,r=r||this.callback,this.currOtherTypeCallback=n||this.otherTypeCallback,t=t||this.json,e=e||this.path,e&&typeof e=="object"&&!Array.isArray(e)){if(!e.path&&e.path!=="")throw new TypeError('You must supply a "path" property when providing an object argument to JSONPath.evaluate().');if(!Object.hasOwn(e,"json"))throw new TypeError('You must supply a "json" property when providing an object argument to JSONPath.evaluate().');({json:t}=e),o=Object.hasOwn(e,"flatten")?e.flatten:o,this.currResultType=Object.hasOwn(e,"resultType")?e.resultType:this.currResultType,this.currSandbox=Object.hasOwn(e,"sandbox")?e.sandbox:this.currSandbox,a=Object.hasOwn(e,"wrap")?e.wrap:a,this.currEval=Object.hasOwn(e,"eval")?e.eval:this.currEval,r=Object.hasOwn(e,"callback")?e.callback:r,this.currOtherTypeCallback=Object.hasOwn(e,"otherTypeCallback")?e.otherTypeCallback:this.currOtherTypeCallback,s=Object.hasOwn(e,"parent")?e.parent:s,i=Object.hasOwn(e,"parentProperty")?e.parentProperty:i,e=e.path}if(s=s||null,i=i||null,Array.isArray(e)&&(e=ut.toPathString(e)),!e&&e!==""||!t)return;let c=ut.toPathArray(e);c[0]==="$"&&c.length>1&&c.shift(),this._hasParentSelector=null;let u=this._trace(c,t,["$"],s,i,r).filter(function(l){return l&&!l.isParentSelector});return u.length?!a&&u.length===1&&!u[0].hasArrExpr?this._getPreferredOutput(u[0]):u.reduce((l,A)=>{let f=this._getPreferredOutput(A);return o&&Array.isArray(f)?l=l.concat(f):l.push(f),l},[]):a?[]:void 0};ut.prototype._getPreferredOutput=function(e){let t=this.currResultType;switch(t){case"all":{let r=Array.isArray(e.path)?e.path:ut.toPathArray(e.path);return e.pointer=ut.toPointer(r),e.path=typeof e.path=="string"?e.path:ut.toPathString(e.path),e}case"value":case"parent":case"parentProperty":return e[t];case"path":return ut.toPathString(e[t]);case"pointer":return ut.toPointer(e.path);default:throw new TypeError("Unknown result type")}};ut.prototype._handleCallback=function(e,t,r){if(t){let n=this._getPreferredOutput(e);e.path=typeof e.path=="string"?e.path:ut.toPathString(e.path),t(n,r,e)}};ut.prototype._trace=function(e,t,r,n,s,i,o,a){let c;if(!e.length)return c={path:r,value:t,parent:n,parentProperty:s,hasArrExpr:o},this._handleCallback(c,i,"value"),c;let u=e[0],l=e.slice(1),A=[];function f(d){Array.isArray(d)?d.forEach(h=>{A.push(h)}):A.push(d)}if((typeof u!="string"||a)&&t&&Object.hasOwn(t,u))f(this._trace(l,t[u],Ac(r,u),t,u,i,o));else if(u==="*")this._walk(t,d=>{f(this._trace(l,t[d],Ac(r,d),t,d,i,!0,!0))});else if(u==="..")f(this._trace(l,t,r,n,s,i,o)),this._walk(t,d=>{typeof t[d]=="object"&&f(this._trace(e.slice(),t[d],Ac(r,d),t,d,i,!0))});else{if(u==="^")return this._hasParentSelector=!0,{path:r.slice(0,-1),expr:l,isParentSelector:!0};if(u==="~")return c={path:Ac(r,u),value:s,parent:n,parentProperty:null},this._handleCallback(c,i,"property"),c;if(u==="$")f(this._trace(l,t,r,null,null,i,o));else if(/^(-?\d*):(-?\d*):?(\d*)$/u.test(u))f(this._slice(u,l,t,r,n,s,i));else if(u.indexOf("?(")===0){if(this.currEval===!1)throw new Error("Eval [?(expr)] prevented in JSONPath expression.");let d=u.replace(/^\?\((.*?)\)$/u,"$1"),h=/@.?([^?]*)[['](\??\(.*?\))(?!.\)\])[\]']/gu.exec(d);h?this._walk(t,p=>{let C=[h[2]],m=h[1]?t[p][h[1]]:t[p];this._trace(C,m,r,n,s,i,!0).length>0&&f(this._trace(l,t[p],Ac(r,p),t,p,i,!0))}):this._walk(t,p=>{this._eval(d,t[p],p,r,n,s)&&f(this._trace(l,t[p],Ac(r,p),t,p,i,!0))})}else if(u[0]==="("){if(this.currEval===!1)throw new Error("Eval [(expr)] prevented in JSONPath expression.");f(this._trace(Ek(this._eval(u,t,r.at(-1),r.slice(0,-1),n,s),l),t,r,n,s,i,o))}else if(u[0]==="@"){let d=!1,h=u.slice(1,-2);switch(h){case"scalar":(!t||!["object","function"].includes(typeof t))&&(d=!0);break;case"boolean":case"string":case"undefined":case"function":typeof t===h&&(d=!0);break;case"integer":Number.isFinite(t)&&!(t%1)&&(d=!0);break;case"number":Number.isFinite(t)&&(d=!0);break;case"nonFinite":typeof t=="number"&&!Number.isFinite(t)&&(d=!0);break;case"object":t&&typeof t===h&&(d=!0);break;case"array":Array.isArray(t)&&(d=!0);break;case"other":d=this.currOtherTypeCallback(t,r,n,s);break;case"null":t===null&&(d=!0);break;default:throw new TypeError("Unknown value type "+h)}if(d)return c={path:r,value:t,parent:n,parentProperty:s},this._handleCallback(c,i,"value"),c}else if(u[0]==="`"&&t&&Object.hasOwn(t,u.slice(1))){let d=u.slice(1);f(this._trace(l,t[d],Ac(r,d),t,d,i,o,!0))}else if(u.includes(",")){let d=u.split(",");for(let h of d)f(this._trace(Ek(h,l),t,r,n,s,i,!0))}else!a&&t&&Object.hasOwn(t,u)&&f(this._trace(l,t[u],Ac(r,u),t,u,i,o,!0))}if(this._hasParentSelector)for(let d=0;d{t(r)})};ut.prototype._slice=function(e,t,r,n,s,i,o){if(!Array.isArray(r))return;let a=r.length,c=e.split(":"),u=c[2]&&Number.parseInt(c[2])||1,l=c[0]&&Number.parseInt(c[0])||0,A=c[1]&&Number.parseInt(c[1])||a;l=l<0?Math.max(0,l+a):Math.min(a,l),A=A<0?Math.max(0,A+a):Math.min(a,A);let f=[];for(let d=l;d{f.push(p)});return f};ut.prototype._eval=function(e,t,r,n,s,i){this.currSandbox._$_parentProperty=i,this.currSandbox._$_parent=s,this.currSandbox._$_property=r,this.currSandbox._$_root=this.json,this.currSandbox._$_v=t;let o=e.includes("@path");o&&(this.currSandbox._$_path=ut.toPathString(n.concat([r])));let a=this.currEval+"Script:"+e;if(!ut.cache[a]){let c=e.replaceAll("@parentProperty","_$_parentProperty").replaceAll("@parent","_$_parent").replaceAll("@property","_$_property").replaceAll("@root","_$_root").replaceAll(/@([.\s)[])/gu,"_$_v$1");if(o&&(c=c.replaceAll("@path","_$_path")),this.currEval==="safe"||this.currEval===!0||this.currEval===void 0)ut.cache[a]=new this.safeVm.Script(c);else if(this.currEval==="native")ut.cache[a]=new this.vm.Script(c);else if(typeof this.currEval=="function"&&this.currEval.prototype&&Object.hasOwn(this.currEval.prototype,"runInNewContext")){let u=this.currEval;ut.cache[a]=new u(c)}else if(typeof this.currEval=="function")ut.cache[a]={runInNewContext:u=>this.currEval(c,u)};else throw new TypeError(`Unknown "eval" property "${this.currEval}"`)}try{return ut.cache[a].runInNewContext(this.currSandbox)}catch(c){if(this.ignoreEvalErrors)return!1;throw new Error("jsonPath: "+c.message+": "+e)}};ut.cache={};ut.toPathString=function(e){let t=e,r=t.length,n="$";for(let s=1;s{let r=qie.default.createServer();r.once("error",()=>{t(!1)}),r.once("listening",()=>{r.close(()=>t(!0))}),r.listen(e)})}async function Yie(e){let t=Number(e);for(;!await xWe(t);)t+=1;return t}function fc(e){let t=/\[(.*?)\]/g,n=[...e.matchAll(t)].map(s=>s[1].split(""));return[...new Set(n.flat())]}function $ie(e){let t=[...e];for(let r=t.length-1;r>0;r--){let n=Math.floor(Math.random()*(r+1));[t[r],t[n]]=[t[n],t[r]]}return t}var Gie=Fe(r1(),1);async function vWe(e,t,r,n=0){let s=Number(n)||Number(process.env.MAX_TASK)||16,i=0,o=!1,a=[],c=Gie.default.promise(async l=>{if(o)return;let{func:A,param:f,id:d}=l;try{if(o)return;let h=await A({...f,stopExecution:()=>o});if(o)return;a.push(h),i++,t&&typeof t.func=="function"&&t.func(t.param,d,null,h)==="break"&&(o=!0),r&&i>=r&&(o=!0)}catch(h){t&&typeof t.func=="function"&&t.func(t.param,d,h,null)}},s);e.forEach(l=>{c.push(l).catch(A=>{console.error(`Task queue error for task ${l.id}:`,A)})});let u=new Promise(l=>{let A=setInterval(()=>{o&&(c.kill(),clearInterval(A),l())},50)});return await Promise.race([c.drained(),u]),console.log(`batchExecute completed with max_task: ${s} and ${i} successful tasks.`),a}var jie=vWe;var Jie={key:"drpyS",name:"\u9053\u957FDS",type:7},ro=new Map,Wie=new Map,QWe=ns(Jie.type),zie=Nr.drpyS.home_site;ro.set(QWe,{api:zie,extend:""});function kf(e){let t=ro.get(e),r=t.api;return t.extend&&(r=Ko(r,{extend:t.extend})),r}function yk(){return kf(ns("push"))}function TWe(e){e.forEach(t=>{let r=ns(t.key);ro.set(r,Object.assign(ro.get(r)||{},{api:t.ext.api,extend:t.ext.extend}))})}function wWe(e,t){Wie[e]=t}async function SWe(e,t){let r=e.server.prefix;return r.slice(r.lastIndexOf("/")+1)==="push"?"true":"false"}async function _We(e,t){let{ext:r,skey:n,stype:s}=e.body,i=ns(n);if(console.log("ext:",r),console.log("skey:",n),console.log("stype:",s),ro.has(i)){let a=ro.get(i);return console.log("\u5DF2\u50A8\u5B58:",a),a}let o={api:r.api,extend:r.ext};return ro.set(i,o),console.log("\u672A\u50A8\u5B58:",o),o}async function RWe(e,t){let r=e.server.prefix,n=ns(r.slice(r.lastIndexOf("/")+1)),s=kf(n),i=await Ps(s),o=ro.get(n);if(/platform=ysc/.test(s)&&i.filters&&typeof i.filters=="object"&&Object.keys(i.filters).length>0){let a={};Object.keys(i.filters).forEach(c=>{i.filters[c]&&!Array.isArray(i.filters[c])?a[c]=[i.filters[c]]:a[c]=i.filters[c]}),i.filters=a}return i.list&&i.list.length>0&&Array.isArray(i.class)&&(o.home_videos=i.list,i.class.unshift({type_name:"\u63A8\u8350",type_id:"dsHome"})),ro.set(n,o),i}async function DWe(e,t){let r=e.server.prefix,n=r.slice(r.lastIndexOf("/")+1),s=fc(n),i=ns(n),o=kf(i),a=e.body.id,c=e.body.page||1;if(a==="dsHome")return c===1?{list:ro.get(i).home_videos}:{list:[]};let u=e.body.filters||{},l;Object.keys(u).length>0&&(l=dk(JSON.stringify(u))),o=Ko(o,{ac:"detail",t:a,pg:c,ext:l});let f=await Ps(o);return(s.includes("\u753B")||s.includes("\u4E66"))&&(f.list=f.list.map(d=>({book_id:d.vod_id,book_name:d.vod_name,book_pic:d.vod_pic,book_remarks:d.vod_remarks,book_content:d.vod_content}))),f}async function NWe(e,t){let r=e.server.prefix,n=r.slice(r.lastIndexOf("/")+1),s=fc(n),i=ns(n),o=kf(i),a=Array.isArray(e.body.id)?e.body.id:[e.body.id];if(a[0].startsWith("push://")){let l=a[0].slice(7),A=yk();console.log("detail push _ids:",l),console.log("detail push _url:",A);let f={ac:"detail",ids:l},d;if(/platform=ysc/.test(A)?(o=Ko(o,f),d=await Ps(o)):d=await fk(A,f),d&&Array.isArray(d.list)){let h=d.list[0].vod_play_url;d.list[0].vod_play_url=h.split("#").map(p=>p.replace("$","$push://")).join("#")}return d}let c={ac:"detail",ids:a.join(",")};o=Ko(o,c);let u=await Ps(o);if(u.list&&Array.isArray(u.list)){let l=u.list[0].vod_play_url,A=u.list[0].vod_play_from;if(l&&l.includes("push://")){console.log("vod_play_url:",l);let f=[],d=A.split("$$$"),h=l.split("$$$");console.log(h);for(let p in h){let C=h[p];if(console.log("play_url:",C),C.includes("push://")){let m=C.split("#");console.log("tab_urls:",m);let I=[];for(let y of m){let E=y.split("$")[0],B=y.split("$")[1];if(B&&B.startsWith("push://")){let v=B.slice(7),x=yk();console.log("tab push _ids:",v),console.log("tab push _url:",x);let Q={ac:"detail",ids:v},S;if(/platform=ysc/.test(x)?(o=Ko(o,Q),S=await Ps(o)):S=await fk(x,Q),S&&Array.isArray(S.list)){let T=S.list[0].vod_play_url;d[p]=S.list[0].vod_play_from,I=I.concat(T.split("#").map(R=>R.replace("$","$push://")).join("#"))}}else I.push(y)}f.push(I.join("#"))}else f.push(C)}u.list[0].vod_play_url=f.join("$$$"),u.list[0].vod_play_from=d.join("$$$")}}return(s.includes("\u753B")||s.includes("\u4E66"))&&(u.list=u.list.map(l=>({book_id:l.vod_id,book_name:l.vod_name,book_pic:l.vod_pic,book_remarks:l.vod_remarks,book_content:l.vod_content,urls:l.vod_play_url,volumes:l.vod_play_from}))),u}async function kWe(e,t){let r=e.server.prefix,n=e.server.address().url.replace(":::","127.0.0.1:")+"/proxy",s=r.slice(r.lastIndexOf("/")+1),i=fc(s),o=ns(s),a=kf(o),c=e.body.id;c&&c.startsWith("push://")&&(a=yk(),c=c.slice(7),console.log("[play] push:",c));let u=e.body.flag,l=e.body.flags,A={play:`${c}`,flag:u};a=Ko(a,A);let f=await Ps(a),d={},h={},p="";if(i.includes("\u4E66")){let C=JSON.parse(f.url.replace("novel://",""));h.title=C.title,h.content=h.title+` + +`+C.content,h.header=f.header,f=h}if(i.includes("\u753B"))d.content=f.url.replace("pics://","").split("&&").map(C=>{if(C.indexOf("@Referer=")){let m=C.split("@Referer=")[0];return p=C.split("@Referer=")[1],m}else return C}),p&&(d.header={Referer:p}),f=d;else if(f&&f.jx&&f.url){let C=f.url,m=Wie.parses.filter(Q=>Q.type===1);m=$ie(m);let I=Number(Nr.drpyS.parse_count)||6,y=Number(Nr.drpyS.parse_timeout)||5e3;console.log(`\u5F85\u5E76\u53D1\u7684json\u89E3\u6790\u6570\u91CF: ${m.length}`);let E=[],B=m.map((Q,S)=>{let T=Q.url+C;return{func:async function({jxObj:D,task_id:k}){let F=await Ps(k,{timeout:y}),j=Vie.query(F,"$.url");if(Array.isArray(j)&&(j=j[0]),console.log("_url:",j),!F.code||F.code===200||![-1,404,403].includes(F.code)){if(j){let H=j.lastIndexOf("/");if(j.slice(H+1).length>10)return{...F,name:D.name}}throw new Error(`${D.name} \u89E3\u6790 ${C} \u5931\u8D25: ${JSON.stringify(F)}`)}else throw new Error(`${D.name} \u89E3\u6790 ${C} \u5931\u8D25`)},param:{jxObj:Q,task_id:T},id:T}});await jie(B,{func:(Q,S,T,R)=>{if(T?console.error(`Task ${S} failed with error: ${T.message}`):R&&E.push({original:S,...R}),Q.stopOnFirst&&R&&R.url)return"break"},param:{stopOnFirst:!1}},I,16);let x=[];return E.forEach(Q=>{x.push(Q.name,Q.url)}),{parse:0,url:x}}else if(f&&f.parse&&f.url){let C=f.url;if(C&&C.startsWith("http")){let m=Nr.drpyS.sniffer_rule||"http((?!http).){12,}?\\.m3u8(?!\\?)",I=new RegExp(m);if(I.test(C))f.parse=0;else if(!I.test(C))if(Nr.drpyS.enable_hipy_sniffer&&Nr.drpyS.hipy_sniffer_url){let y=f.js,E=f.parse_extra,B={url:C,script:y?dk(y):void 0},v=Ko(Nr.drpyS.hipy_sniffer_url,B);E&&(v+=E);try{let x=await Ps(v);return console.log(`hipy\u55C5\u63A2\u5668\u4EFB\u52A1\u6267\u884C${v} \u5B8C\u6BD5: ${x.url}`),{parse:0,url:x.url,header:x.headers}}catch(x){console.log(`hipy\u55C5\u63A2\u5668\u55C5\u63A2\u9519\u8BEF: ${x.message}`)}}else{let y=await e.server.messageToDart({action:"sniff",opt:{url:C,timeout:1e4,rule:m}});if(y&&y.url){let E={};return y.headers&&(y.headers["user-agent"]&&(E["User-Agent"]=y.headers["user-agent"]),y.headers.referer&&(E.Referer=y.headers.referer),y.headers.cookie&&(E.Cookie=y.headers.cookie)),{parse:0,url:y.url,header:E}}}}}return f.url&&typeof f.url=="string"&&f.url.includes("http://127.0.0.1:5575/")?f.url=f.url.replaceAll("http://127.0.0.1:5575/proxy",n):f.url&&Array.isArray(f.url)&&f.url.find(C=>C.startsWith("http://127.0.0.1:5575/"))&&(f.url=JSON.parse(JSON.stringify(f.url).replaceAll("http://127.0.0.1:5575/proxy",n))),f}async function FWe(e,t){let r=e.server.prefix,n=r.slice(r.lastIndexOf("/")+1),s=fc(n),i=ns(n),o=kf(i),a=e.body.wd,c=Number(e.body.page)||1,u=e.body.quick||void 0;o=Ko(o,{wd:a,pg:c,quick:u});let A=await Ps(o);return(s.includes("\u753B")||s.includes("\u4E66"))&&(A.list=A.list.map(f=>({book_id:f.vod_id,book_name:f.vod_name,book_pic:f.vod_pic,book_remarks:f.vod_remarks,book_content:f.vod_content}))),A}async function LWe(e,t){let r=e.server.prefix,n=r.slice(r.lastIndexOf("/")+1),s=fc(n),i=ns(n),o=s.includes("\u753B")||s.includes("\u4E66");try{let a=function(l){l.statusCode&&l.statusCode==500&&console.error(l)},c={},u=await e.server.inject().post(`${r}/init`).payload({ext:{api:zie,extend:""},skey:n,stype:4});if(c.init=u.json(),a(u.json()),u=await e.server.inject().post(`${r}/home`),c.home=u.json(),a(u.json()),c.home.class.length>0&&(u=await e.server.inject().post(`${r}/category`).payload({id:c.home.class[0].type_id,page:1,filter:!0,filters:{}}),c.category=u.json(),a(u.json()),c.category.list.length>0&&(u=await e.server.inject().post(`${r}/detail`).payload({id:o?c.category.list[0].book_id:c.category.list[0].vod_id}),c.detail=u.json(),a(u.json()),c.detail.list&&c.detail.list.length>0))){c.play=[];for(let l of c.detail.list){let A=o?l.volumes:l.vod_play_from,f=o?l.urls:l.vod_play_url,d=A.split("$$$"),h=f.split("$$$");for(let p=0;p{e.post("/support",SWe),e.post("/init",_We),e.post("/home",RWe),e.post("/category",DWe),e.post("/detail",NWe),e.post("/play",kWe),e.post("/search",FWe),e.get("/test",LWe)}};var Ik=Fe(Rh(),1),Hu=require("path"),hn=Fe(require("fs"),1),Kie=require("stream");async function OWe(e,t){let r=await kr.get(e,{responseType:"stream",headers:Object.assign({Range:"bytes=0-0"},t)}).catch(n=>(console.error(n),n.response||{status:500,data:{}}));if(r&&r.status===206){let n=r.headers["accept-ranges"]==="bytes",s=r.headers["content-range"],i=parseInt(r.headers["content-length"]),o=n||!!s||i===1,a=s?parseInt(s.split("/")[1]):i;return delete r.headers["content-range"],delete r.headers["content-length"],a&&(r.headers["content-length"]=a.toString()),[o,r.headers]}else return[!1,null]}var Qp={},Xie="",Ff=(process.env.NODE_PATH||".")+"/vod_cache",MWe=1024*1024*100;function PWe(e){try{hn.default.readdir(Ff,(t,r)=>{if(r)for(let n of r){if(n===e)continue;let s=(0,Hu.join)(Ff,n);hn.default.stat(s,(i,o)=>{o&&o.isDirectory()&&hn.default.readdir(s,(a,c)=>{if(c)for(let u of c)u.endsWith(".p")||hn.default.rm((0,Hu.join)(s,u),{recursive:!0},()=>{})})})}})}catch(t){console.error(t)}}async function UWe(e,t,r,n,s,i){if(n=n||Ik.default.enc.Hex.stringify(Ik.default.MD5(r)).toString(),Xie!==n&&(PWe(n),Xie=n),!Qp[n]){let[E,B]=await OWe(r,s);if(!E||!B["content-length"]){console.log(`[chunkStream] \u83B7\u53D6content-length\u5931\u8D25\uFF0C\u6267\u884C\u91CD\u5B9A\u5411\u5230: ${r}`),t.redirect(r);return}Qp[n]=B}let o=!0;await hn.default.promises.access((0,Hu.join)(Ff,n)).catch(E=>o=!1),o||await hn.default.promises.mkdir((0,Hu.join)(Ff,n),{recursive:!0});let a=parseInt(Qp[n]["content-length"]),c=0,u=a-1,l={};if(e.headers.range){let E=e.headers.range.trim().split(/=|-/);E.length>2&&E[2]&&(u=parseInt(E[2])),c=parseInt(E[1]),Object.assign(l,Qp[n]),l["content-length"]=(u-c+1).toString(),l["content-range"]=`bytes ${c}-${u}/${a}`,t.code(206)}else Object.assign(l,Qp[n]),t.code(200);i=i||{chunkSize:1024*256,poolSize:5,timeout:1e3*10};let A=i.chunkSize,f=i.poolSize,d=i.timeout,h=Math.ceil(a/A),p=Math.floor(c/A),C=p,m=!1,I={};for(let E=0;E{(async function v(x){if(m||p>=h){B();return}if(x===void 0&&(p-C)*A>=MWe){setTimeout(v,5);return}let Q=x||p++,S=`${e.id}-${Q}`;try{let T=(0,Hu.join)(Ff,n,`${e.id}-${Q}.p`),R=!0;if(await hn.default.promises.access(T).catch(D=>R=!1),!R){let D=Q*A,k=Math.min(a-1,(Q+1)*A-1),F=await kr.get(r,{responseType:"stream",timeout:d,headers:Object.assign({Range:`bytes=${D}-${k}`},s)}),j=(0,Hu.join)(Ff,n,`${e.id}-${Q}.dl`),H=hn.default.createWriteStream(j),U=setTimeout(()=>{H.destroy(new Error(`${S} read timeout`))},d),X=new Promise(Y=>{H.on("finish",async()=>{m?await hn.default.promises.rm(j).catch(G=>console.error(G)):(await hn.default.promises.rename(j,T).catch(G=>console.error(G)),I[S]=T),Y(!0)}),H.on("error",async G=>{console.error(G),await hn.default.promises.rm(j).catch(q=>console.error(q)),Y(!1)})});F.data.pipe(H);let L=await X;if(clearTimeout(U),!L){setTimeout(()=>{v(Q)},15);return}}setTimeout(v,5)}catch(T){console.error(T),setTimeout(()=>{v(Q)},15)}})()});t.headers(l);let y=new Kie.PassThrough;return new Promise(E=>{let B=!0;(async function v(){try{if(C>=h||m){y.end(),E();return}if(!B){setTimeout(v,5);return}let x=`${e.id}-${C}`;if(!I[x]){setTimeout(v,5);return}let Q=C*A,S=Math.min(a-1,(C+1)*A-1),T=Math.max(c,Q)-Q,R=I[x];delete I[x];let D=await hn.default.promises.open(R,"r"),k=Buffer.alloc(S-Q-T+1);await D.read(k,0,S-Q-T+1,T),await D.close().catch(F=>console.error(F)),await hn.default.promises.rm(R).catch(F=>console.error(F)),B=y.write(k),B||y.once("drain",()=>{B=!0}),C++,setTimeout(v,5)}catch{setTimeout(v,5)}})()}),y.on("close",async()=>{Object.keys(I).forEach(E=>{E.startsWith(e.id)&&(hn.default.rm(I[E],{recursive:!0},()=>{}),delete I[E])}),m=!0}),y}var Zie=UWe;var eoe=[Tne,bE,V$,lne,Ane,Uu],bk="/spider",Gb=[],Bk=[],Tp={},xk=null;async function vk(e){for(let t of eoe){let r=bk+"/"+t.meta.key+"/"+t.meta.type;t===Uu&&!Nr.drpyS.enable_home_site||t===bE&&Nr.drpyS.enable_dspush||(e.register(t.api,{prefix:r}),console.log("Register spider: "+r))}if(console.log(Nr),Nr.drpyS&&Nr.drpyS.config_url){let t=Nr.drpyS.config_url;if(t&&t.startsWith("http"))try{Tp=await Ps(t),Tp.homepage&&Tp.homepage.startsWith("https://github.com/hjdhnx")&&(Gb=Tp.sites.filter(n=>n.type===4).map(n=>{let s={},i=n.key,o=n.name,a=fc(o);return i==="push_agent"?s.type=4:a.includes("\u4E66")?s.type=10:a.includes("\u753B")?s.type=20:s.type=7,s.key=i==="push_agent"?"push":i,s.name=n.name,s.api=bk+"/drpyS/"+s.type+"/"+s.key,s.ext={api:n.api,extend:n.ext},s}),Bk=Tp.parses,Gb.forEach(n=>{let s=n.api;e.register(Uu.api,{prefix:s}),console.log("Register spider: "+s)}))}catch(r){xk=r.message,console.log(`\u52A0\u8F7D\u914D\u7F6E\u53D1\u751F\u4E86\u9519\u8BEF: ${xk}`)}}e.register(async t=>{t.get("/check",async function(r,n){n.send({run:!t.stop})}),t.get("/config",async function(r,n){let s={video:{sites:[]},read:{sites:[]},comic:{sites:[]},music:{sites:[]},pan:{sites:[]},color:t.config.color||[]};for(let i of eoe){if(i===Uu&&!Nr.drpyS.enable_home_site)continue;if(i===bE&&Nr.drpyS.enable_dspush)continue;let o=Object.assign({},i.meta);o.api=bk+"/"+o.key+"/"+o.type,o.key="nodejs_"+o.key,o.ext={};let a=i.meta.type;a<10?s.video.sites.push(o):a>=10&&a<20?s.read.sites.push(o):a>=20&&a<30?s.comic.sites.push(o):a>=30&&a<40?s.music.sites.push(o):a>=40&&a<50&&s.pan.sites.push(o)}Gb.forEach(i=>{let o=i.type;o<10?s.video.sites.push(i):o>=10&&o<20?s.read.sites.push(i):o>=20&&o<30?s.comic.sites.push(i):o>=30&&o<40?s.music.sites.push(i):o>=40&&o<50&&s.pan.sites.push(i)}),Uu.updateSiteMap(Gb),s.parses=Bk,s.drpyS_error=xk,Uu.updateDsCache("parses",Bk),console.log(`\u5171\u8BA1\u52A0\u8F7D\u4E86 ${s.video.sites.length} \u4E2A\u89C6\u9891\u6E90,\u5176\u4ED6\u6E90\u6682\u4E0D\u7EDF\u8BA1\uFF0C\u6B63\u5E38\u52A0\u8F7D\u5B8C\u6BD5`),n.send(s)}),t.all("/proxy",async(r,n)=>{try{let{thread:s,chunkSize:i,url:o,header:a}=r.query;if(!o){n.code(400).send({error:"url is required"});return}let c=o,u=a?JSON.parse(a):{},l=r.headers,A=new URL(c),f={...l,...u,host:A.host,origin:`${A.protocol}//${A.host}`,referer:A.href};delete f["content-length"],delete f["transfer-encoding"],f["user-agent"]=f["user-agent"]||"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36",f.accept=f.accept||"*/*",f["accept-language"]=f["accept-language"]||"en-US,en;q=0.9",f["accept-encoding"]=f["accept-encoding"]||"gzip, deflate, br",delete f["sec-fetch-site"],delete f["sec-fetch-mode"],delete f["sec-fetch-dest"],delete f["sec-ch-ua"],delete f["sec-ch-ua-mobile"],delete f["sec-ch-ua-platform"],delete f.range;let d={chunkSize:i?1024*parseInt(i,10):1024*256,poolSize:s?parseInt(s,10):6,timeout:1e3*10},h=ns(c);return await Zie(r,n,c,h,f,d)}catch(s){n.code(500).send({error:s.message})}})})}var Zb=Fe(moe(),1);var ss=null;async function rze(e){ss=(0,Eoe.default)({serverFactory:catServerFactory,forceCloseConnections:!0,logger:process.env.NODE_ENV!=="development",maxParamLength:10240}),ss.messageToDart=async(n,s)=>{try{n.prefix||(n.prefix=s?s.server.prefix:""),console.log(n);let i=catDartServerPort();return i==0?null:(await eA.post(`http://127.0.0.1:${i}/msg`,n)).data}catch{return null}},ss.address=function(){let n=this.server.address();return n.url=`http://${n.address}:${n.port}`,n.dynamic="js2p://_WEB_",n},ss.addHook("onError",async(n,s,i)=>(console.error(i),i.statusCode||(i.statusCode=500),i)),ss.stop=!1,ss.config=e,ss.db=new Zb.JsonDB(new Zb.Config((process.env.NODE_PATH||".")+"/db.json",!0,!0,"/",!0)),ss.register(vk);let t=process.env.DEV_HTTP_PORT||5758,r=await Yie(t);ss.listen({port:r,host:"::"})}async function nze(){ss&&(ss.close(),ss.stop=!0),ss=null}0&&(module.exports={start,stop}); +/*! Bundled license information: + +forwarded/index.js: + (*! + * forwarded + * Copyright(c) 2014-2017 Douglas Christopher Wilson + * MIT Licensed + *) + +proxy-addr/index.js: + (*! + * proxy-addr + * Copyright(c) 2014-2016 Douglas Christopher Wilson + * MIT Licensed + *) + +toad-cache/dist/toad-cache.cjs: + (** + * toad-cache + * + * @copyright 2024 Igor Savin + * @license MIT + * @version 3.7.0 + *) + +cookie/index.js: + (*! + * cookie + * Copyright(c) 2012-2014 Roman Shtylman + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + *) + +light-my-request/lib/form-data.js: + (*! formdata-polyfill. MIT License. Jimmy Wärting *) + +mime-db/index.js: + (*! + * mime-db + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015-2022 Douglas Christopher Wilson + * MIT Licensed + *) + +mime-types/index.js: + (*! + * mime-types + * Copyright(c) 2014 Jonathan Ong + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + *) + +crypto-js/ripemd160.js: + (** @preserve + (c) 2012 by Cédric Mesnil. All rights reserved. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + *) + +crypto-js/mode-ctr-gladman.js: + (** @preserve + * Counter block mode compatible with Dr Brian Gladman fileenc.c + * derived from CryptoJS.mode.CTR + * Jan Hruby jhruby.web@gmail.com + *) + +undici/lib/web/fetch/body.js: + (*! formdata-polyfill. MIT License. Jimmy Wärting *) + +undici/lib/web/websocket/frame.js: + (*! ws. MIT License. Einar Otto Stangvik *) + +hls-parser/index.js: + (*! Copyright Kuu Miyazaki. SPDX-License-Identifier: MIT *) + +rwlock/lib/lock.js: + (*! ReadWriteLock - v5.0.0 - 2015-01-16 + * Author: Alberto La Rocca (https://github.com/71104) + * Released under the MIT license + * Copyright (c) 2015 Alberto La Rocca *) +*/ diff --git a/data/iptv/iptv.m3u b/data/iptv/iptv.m3u new file mode 100644 index 0000000..2218af7 --- /dev/null +++ b/data/iptv/iptv.m3u @@ -0,0 +1,335 @@ +#EXTM3U +#EXTINF:-1 group-title="央视",CCTV 1 +http://$api?p=gitv&id=G_CCTV-1-AVS-4K264.m3u8 +#EXTINF:-1 group-title="央视",CCTV 2 +http://$api?p=gitv&id=G_CCTV-2-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 3 +http://$api?p=gitv&id=G_CCTV-3-AVS-4K264.m3u8 +#EXTINF:-1 group-title="央视",CCTV 4 +http://$api?p=gitv&id=G_CCTV-4-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 5 +http://$api?p=gitv&id=G_CCTV-5-AVS-4K264.m3u8 +#EXTINF:-1 group-title="央视",CCTV 5+ +http://$api?p=gitv&id=G_CCTV-5PLUS-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 6 +http://$api?p=gitv&id=G_CCTV-6-AVS-4K264.m3u8 +#EXTINF:-1 group-title="央视",CCTV 7 +http://$api?p=gitv&id=G_CCTV-7-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 8 +http://$api?p=gitv&id=G_CCTV-8-AVS-4K264.m3u8 +#EXTINF:-1 group-title="央视",CCTV 9 +http://$api?p=gitv&id=G_CCTV-9-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 10 +http://$api?p=gitv&id=G_CCTV-10-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 11 +http://$api?p=gitv&id=H265-5500k-1080P-cctv11.m3u8 +#EXTINF:-1 group-title="央视",CCTV 12 +http://$api?p=gitv&id=G_CCTV-12-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 13 +http://$api?p=gitv&id=G_CCTV-13-HD-265-8M.m3u8 +#EXTINF:-1 group-title="央视",CCTV 14 +http://$api?p=gitv&id=G_CCTV-14-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 15 +http://$api?p=gitv&id=H265-5500k-1080P-cctv15.m3u8 +#EXTINF:-1 group-title="央视",CCTV 16 +http://$api?p=gitv&id=G_CCTV-16-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 16 4K +http://$api?p=gitv&id=G_CCTV-16-4K.m3u8 +#EXTINF:-1 group-title="央视",CCTV 17 +http://$api?p=gitv&id=G_CCTV-17-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 4K +http://$api?p=gitv&id=G_CCTV-4K-HD.m3u8 +#EXTINF:-1 group-title="央视",CCTV 世界地理 +http://$api?p=gitv&id=G_SHIJIEDL-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 风云剧场 +http://$api?p=gitv&id=G_FENGYUNJC-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 风云足球 +http://$api?p=gitv&id=G_FENGSHANGZQ-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 风云音乐 +http://$api?p=gitv&id=G_FENGYUNYY-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 兵器科技 +http://$api?p=gitv&id=G_BINGQIKJ-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 央视台球 +http://$api?p=gitv&id=G_TAIQIU-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 高尔夫网球 +http://$api?p=gitv&id=G_CCTV-GOLF-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 女性时尚 +http://$api?p=gitv&id=G_NVXINGSS-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 电视指南 +http://$api?p=gitv&id=G_DIANSHIZN-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 第一剧场 +http://$api?p=gitv&id=G_DIYIJC-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 怀旧剧场 +http://$api?p=gitv&id=G_HUAIJIUJC-CQ.m3u8 +#EXTINF:-1 group-title="央视",CCTV 央视文化精品 +http://$api?p=gitv&id=G_CCTV-WENHUA-CQ.m3u8 +#EXTINF:-1 group-title="央视",CETV 早期教育 +http://$api?p=gitv&id=G_CETV-ZQJY-CQ.m3u8 +#EXTINF:-1 group-title="卫视",江苏卫视 +http://$api?p=gitv&id=G_JIANGSU-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",东方卫视 +http://$api?p=gitv&id=G_DONGFANG-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",北京卫视 +http://$api?p=gitv&id=G_BEIJING-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",广东卫视 +http://$api?p=gitv&id=G_GUANGDONG-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",山东卫视 +http://$api?p=gitv&id=G_SHANDONG-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",深圳卫视 +http://$api?p=gitv&id=G_SHENZHEN-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",湖北卫视 +http://$api?p=gitv&id=G_HUBEI-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",湖南卫视 +http://$api?p=gitv&id=G_HUNAN-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",浙江卫视 +http://$api?p=gitv&id=G_ZHEJIANG-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",黑龙江卫视 +http://$api?p=gitv&id=G_HEILONGJIANG-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",天津卫视 +http://$api?p=gitv&id=G_TIANJIN-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",安徽卫视 +http://$api?p=gitv&id=G_ANHUI-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",辽宁卫视 +http://$api?p=gitv&id=G_LIAONING-HD-265-8M.m3u8 +#EXTINF:-1 group-title="卫视",东南卫视 +http://$api?p=gitv&id=H265-5500k-1080P-dongnanstv.m3u8 +#EXTINF:-1 group-title="卫视",吉林卫视 +http://$api?p=gitv&id=G_JILIN-CQ.m3u8 +#EXTINF:-1 group-title="卫视",四川卫视 +http://$api?p=gitv&id=G_SICHUAN-CQ.m3u8 +#EXTINF:-1 group-title="卫视",江西卫视 +http://$api?p=gitv&id=G_JIANGXI-CQ.m3u8 +#EXTINF:-1 group-title="卫视",河北卫视 +http://$api?p=gitv&id=G_HEBEI-CQ.m3u8 +#EXTINF:-1 group-title="卫视",河南卫视 +http://$api?p=gitv&id=G_HENAN-CQ.m3u8 +#EXTINF:-1 group-title="卫视",贵州卫视 +http://$api?p=gitv&id=G_GUIZHOU-CQ.m3u8 +#EXTINF:-1 group-title="卫视",重庆卫视 +http://$api?p=gitv&id=G_CHONGQING-CQ.m3u8 +#EXTINF:-1 group-title="卫视",云南卫视 +http://$api?p=gitv&id=G_YUNNAN-HQ.m3u8 +#EXTINF:-1 group-title="卫视",三沙卫视 +http://$api?p=gitv&id=G_SANSHA-HQ.m3u8 +#EXTINF:-1 group-title="卫视",海南卫视 +http://$api?p=gitv&id=HD-8000k-1080P-lvyoustv.m3u8 +#EXTINF:-1 group-title="其他",上海纪实人文 +http://$api?p=gitv&id=H265-5500k-1080P-shanghaijishi.m3u8 +#EXTINF:-1 group-title="其他",北京纪实科教 +http://$api?p=gitv&id=HD-8000k-1080P-beijingjishi.m3u8 +#EXTINF:-1 group-title="卫视",凤凰卫视中文 +http://$api?p=gitv&id=HD-10000k-1080P-fhchinese5s.m3u8 +#EXTINF:-1 group-title="卫视",凤凰卫视资讯 +http://$api?p=gitv&id=HD-10000k-1080P-fhzixun5s.m3u8 +#EXTINF:-1 group-title="卫视",凤凰卫视香港 +http://$api?p=gitv&id=HD-10000k-1080P-fhhongkong5s.m3u8 +#EXTINF:-1 group-title="其他",纯享 4K +http://$api?p=gitv&id=HD-20M-2160P-chunxiang4k.m3u8 +#EXTINF:-1 group-title="其他",高清臻享睛彩篮球 +http://$api?p=gitv&id=miguaoyun01-AVS-4K01.m3u8 +#EXTINF:-1 group-title="其他",睛彩篮球 +http://$api?p=gitv&id=HD-8000k-1080P-miguaoyun1.m3u8 +#EXTINF:-1 group-title="其他",高清臻享睛彩竞技 +http://$api?p=gitv&id=miguaoyun1-AVS.m3u8 +#EXTINF:-1 group-title="其他",睛彩竞技 +http://$api?p=gitv&id=HD-8000k-1080P-miguaoyun2.m3u8 +#EXTINF:-1 group-title="其他",睛彩青少 +http://$api?p=gitv&id=HD-8000k-1080P-quanminrl.m3u8 +#EXTINF:-1 group-title="其他",黑莓电影 +http://$api?p=gitv&id=HD-8000k-1080P-Supermovie.m3u8 +#EXTINF:-1 group-title="其他",NewTV 炫舞未来 +http://$api?p=gitv&id=HD-4000k-1080P-xwwl.m3u8 +#EXTINF:-1 group-title="地方",南京新闻综合频道 +http://$api?p=gitv&id=G_NJXW.m3u8 +#EXTINF:-1 group-title="地方",南京影视频道 +http://$api?p=gitv&id=G_NJYS.m3u8 +#EXTINF:-1 group-title="地方",南京少儿频道 +http://$api?p=gitv&id=G_NJSE.m3u8 +#EXTINF:-1 group-title="地方",南京生活频道 +http://$api?p=gitv&id=G_NJSH.m3u8 +#EXTINF:-1 group-title="地方",南京信息频道 +http://$api?p=gitv&id=G_NJXX.m3u8 +#EXTINF:-1 group-title="地方",南京娱乐频道 +http://$api?p=gitv&id=G_NJYL.m3u8 +#EXTINF:-1 group-title="地方",南京教科频道 +http://$api?p=gitv&id=G_NJJK.m3u8 +#EXTINF:-1 group-title="地方",南京十八频道 +http://$api?p=gitv&id=G_NJSB.m3u8 +#EXTINF:-1 group-title="地方",徐州新闻综合 +http://$api?p=gitv&id=xzxwzh.m3u8 +#EXTINF:-1 group-title="地方",徐州经济生活 +http://$api?p=gitv&id=xzjjsh.m3u8 +#EXTINF:-1 group-title="地方",徐州文艺影视 +http://$api?p=gitv&id=xzwyys.m3u8 +#EXTINF:-1 group-title="地方",徐州公共 +http://$api?p=gitv&id=xzgg.m3u8 +#EXTINF:-1 group-title="地方",徐州新沂3套 +http://$api?p=gitv&id=G_XZXYTV-3.m3u8 +#EXTINF:-1 group-title="地方",徐州沛县新闻综合 +http://$api?p=gitv&id=xzpxxwzh.m3u8 +#EXTINF:-1 group-title="地方",徐州沛县综艺 +http://$api?p=gitv&id=xzpxzy.m3u8 +#EXTINF:-1 group-title="地方",徐州沛县生活 +http://$api?p=gitv&id=xzpxsh.m3u8 +#EXTINF:-1 group-title="地方",常州新闻 +http://$api?p=gitv&id=jsczxinwen.m3u8 +#EXTINF:-1 group-title="地方",常州都市 +http://$api?p=gitv&id=jsczdushi.m3u8 +#EXTINF:-1 group-title="地方",常州生活 +http://$api?p=gitv&id=jsczshenghuo.m3u8 +#EXTINF:-1 group-title="地方",常州公共 +http://$api?p=gitv&id=jsczgonggong.m3u8 +#EXTINF:-1 group-title="地方",睢宁综合 +http://$api?p=gitv&id=xzsnzh.m3u8 +#EXTINF:-1 group-title="地方",睢宁资讯 +http://$api?p=gitv&id=xzsnzx.m3u8 +#EXTINF:-1 group-title="地方",睢宁生活 +http://$api?p=gitv&id=xzsnshjy.m3u8 +#EXTINF:-1 group-title="地方",睢宁三农 +http://$api?p=gitv&id=xzsnsn.m3u8 +#EXTINF:-1 group-title="地方",南通一套 +http://$api?p=gitv&id=jsntyitao.m3u8 +#EXTINF:-1 group-title="地方",南通二套 +http://$api?p=gitv&id=jsntertao.m3u8 +#EXTINF:-1 group-title="地方",公共崇川 +http://$api?p=gitv&id=jsntsantao.m3u8 +#EXTINF:-1 group-title="地方",镇江一套 +http://$api?p=gitv&id=G_ZHENJIANGTV-1.m3u8 +#EXTINF:-1 group-title="地方",镇江二套 +http://$api?p=gitv&id=G_ZHENJIANGTV-2.m3u8 +#EXTINF:-1 group-title="地方",镇江三套 +http://$api?p=gitv&id=G_ZHENJIANGTV-3.m3u8 +#EXTINF:-1 group-title="地方",宿迁综合 +http://$api?p=gitv&id=G_SQZH.m3u8 +#EXTINF:-1 group-title="地方",宿迁公共 +http://$api?p=gitv&id=G_SQGG.m3u8 +#EXTINF:-1 group-title="地方",邳州综合 +http://$api?p=gitv&id=pzzonghe.m3u8 +#EXTINF:-1 group-title="地方",邳州综艺 +http://$api?p=gitv&id=pzzongyi.m3u8 +#EXTINF:-1 group-title="地方",赣榆新闻综合 +http://$api?p=gitv&id=HD-2500k-1080P-ganyutv.m3u8 +#EXTINF:-1 group-title="地方",江苏仪化电视 +http://$api?p=gitv&id=HD-4000k-1080P-jsyihua.m3u8 +#EXTINF:-1 group-title="特色",猎冰 +http://$api?p=gitv&id=cos-liebing.m3u8 +#EXTINF:-1 group-title="特色",永安梦 +http://$api?p=gitv&id=cos-yonganmeng.m3u8 +#EXTINF:-1 group-title="特色",漫长的季节 +http://$api?p=gitv&id=manchangdjj.m3u8 +#EXTINF:-1 group-title="特色",梦中的那片海 +http://$api?p=gitv&id=mengzhongdnph.m3u8 +#EXTINF:-1 group-title="特色",繁花 +http://$api?p=gitv&id=fanhua.m3u8 +#EXTINF:-1 group-title="特色",庆余年 +http://$api?p=gitv&id=zhifouzf.m3u8 +#EXTINF:-1 group-title="特色",百姓生活 +http://$api?p=gitv&id=baixingsh.m3u8 +#EXTINF:-1 group-title="特色",黑土无言 +http://$api?p=gitv&id=COSHD-4000k-1080P-htwy.m3u8 +#EXTINF:-1 group-title="特色",问心 +http://$api?p=gitv&id=COSHD-4000k-1080P-wenxin.m3u8 +#EXTINF:-1 group-title="特色",父辈的荣耀 +http://$api?p=gitv&id=COSHD-4000k-1080P-fbdry.m3u8 +#EXTINF:-1 group-title="特色",繁城之下 +http://$api?p=gitv&id=COSHD-4000k-1080P-fczx.m3u8 +#EXTINF:-1 group-title="特色",小日子 +http://$api?p=gitv&id=COSHD-4000k-1080P-xiaorizi.m3u8 +#EXTINF:-1 group-title="特色",谢谢你温暖我 +http://$api?p=gitv&id=COSHD-4000k-1080P-xxnwnw.m3u8 +#EXTINF:-1 group-title="特色",当你沉睡时 +http://$api?p=gitv&id=COSHD-4000k-1080P-dncss.m3u8 +#EXTINF:-1 group-title="特色",梨园经典荟萃 +http://$api?p=gitv&id=COSHD-4000k-1080P-lyjdhc.m3u8 +#EXTINF:-1 group-title="特色",影视剧场 +http://$api?p=gitv&id=GITV-JS-1.m3u8 +#EXTINF:-1 group-title="特色",第一院线 +http://$api?p=gitv&id=GITV-JS-2.m3u8 +#EXTINF:-1 group-title="特色",居家健身 +http://$api?p=gitv&id=GITV-JS-4.m3u8 +#EXTINF:-1 group-title="特色",电视剧 +http://$api?p=gitv&id=GITV-JS-6.m3u8 +#EXTINF:-1 group-title="特色",二更视频 +http://$api?p=gitv&id=GITV-JS-7.m3u8 +#EXTINF:-1 group-title="特色",德凯奥特曼 +http://$api?p=gitv&id=GITV-JS-9.m3u8 +#EXTINF:-1 group-title="特色",熊出没 +http://$api?p=gitv&id=GITV-JS-10.m3u8 +#EXTINF:-1 group-title="特色",超级飞侠 +http://$api?p=gitv&id=GITV-JS-11.m3u8 +#EXTINF:-1 group-title="特色",小猪佩奇 +http://$api?p=gitv&id=GITV-JS-12.m3u8 +#EXTINF:-1 group-title="特色",汪汪队立大功 +http://$api?p=gitv&id=GITV-JS-13.m3u8 +#EXTINF:-1 group-title="特色",高分电影 +http://$api?p=gitv&id=GITV-JS-14.m3u8 +#EXTINF:-1 group-title="特色",乡村爱情 +http://$api?p=gitv&id=GITV-JS-15.m3u8 +#EXTINF:-1 group-title="特色",热门综艺 +http://$api?p=gitv&id=GITV-JS-16.m3u8 +#EXTINF:-1 group-title="特色",美食美味 +http://$api?p=gitv&id=GITV-JS-17.m3u8 +#EXTINF:-1 group-title="特色",自然风景 +http://$api?p=gitv&id=GITV-JS-18.m3u8 +#EXTINF:-1 group-title="特色",动物世界 +http://$api?p=gitv&id=GITV-JS-19.m3u8 +#EXTINF:-1 group-title="特色",书籍解读 +http://$api?p=gitv&id=GITV-JS-20.m3u8 +#EXTINF:-1 group-title="特色",亲子玩具 +http://$api?p=gitv&id=GITV-JS-21.m3u8 +#EXTINF:-1 group-title="特色",广场舞 +http://$api?p=gitv&id=GITV-JS-22.m3u8 +#EXTINF:-1 group-title="特色",戏曲音乐 +http://$api?p=gitv&id=GITV-JS-23.m3u8 +#EXTINF:-1 group-title="特色",相声联欢 +http://$api?p=gitv&id=GITV-JS-24.m3u8 +#EXTINF:-1 group-title="特色",动漫星空 +http://$api?p=gitv&id=GITV-JS-25.m3u8 +#EXTINF:-1 group-title="特色",楚乔传 +http://$api?p=gitv&id=GITV-JS-26.m3u8 +#EXTINF:-1 group-title="特色",完美的她 +http://$api?p=gitv&id=GITV-JS-27.m3u8 +#EXTINF:-1 group-title="特色",哈尔滨一九四四 +http://$api?p=gitv&id=GITV-JS-28.m3u8 +#EXTINF:-1 group-title="特色",军事之旅 +http://$api?p=gitv&id=GITV-JS-29.m3u8 +#EXTINF:-1 group-title="特色",科幻世界 +http://$api?p=gitv&id=GITV-JS-30.m3u8 +#EXTINF:-1 group-title="特色",儿童天地 +http://$api?p=gitv&id=GITV-JS-31.m3u8 +#EXTINF:-1 group-title="特色",纪录片 +http://$api?p=gitv&id=GITV-JS-32.m3u8 +#EXTINF:-1 group-title="特色",音乐心情 +http://$api?p=gitv&id=GITV-JS-33.m3u8 +#EXTINF:-1 group-title="特色",掼蛋频道 +http://$api?p=gitv&id=GITV-JS-34.m3u8 +#EXTINF:-1 group-title="特色",体坛同期声 +http://$api?p=gitv&id=GITV-JS-35.m3u8 +#EXTINF:-1 group-title="特色",臻享推荐 +http://$api?p=gitv&id=GITV-JS-36.m3u8 +#EXTINF:-1 group-title="特色",怀旧MTV +http://$api?p=gitv&id=GITV-JS-37.m3u8 +#EXTINF:-1 group-title="特色",南来北往 +http://$api?p=gitv&id=GITV-JS-39.m3u8 +#EXTINF:-1 group-title="特色",狗剩快跑 +http://$api?p=gitv&id=GITV-JS-40.m3u8 +#EXTINF:-1 group-title="特色",狂飙 +http://$api?p=gitv&id=GITV-JS-41.m3u8 +#EXTINF:-1 group-title="特色",人世间 +http://$api?p=gitv&id=GITV-JS-42.m3u8 +#EXTINF:-1 group-title="特色",大江大河 +http://$api?p=gitv&id=GITV-JS-43.m3u8 +#EXTINF:-1 group-title="特色",山海情 +http://$api?p=gitv&id=GITV-JS-44.m3u8 +#EXTINF:-1 group-title="特色",冰雪竞技场 +http://$api?p=gitv&id=GITV-JS-45.m3u8 +#EXTINF:-1 group-title="特色",邪恶与疯狂 +http://$api?p=gitv&id=GITV-JS-46.m3u8 +#EXTINF:-1 group-title="特色",来自星星的你 +http://$api?p=gitv&id=GITV-JS-47.m3u8 +#EXTINF:-1 group-title="特色",哦我的鬼神大人 +http://$api?p=gitv&id=GITV-JS-48.m3u8 +#EXTINF:-1 group-title="特色",太阳的后裔 +http://$api?p=gitv&id=GITV-JS-49.m3u8 +#EXTINF:-1 group-title="特色",请回答1988 +http://$api?p=gitv&id=GITV-JS-50.m3u8 diff --git a/docs/updateRecord.md b/docs/updateRecord.md index e7d53a8..1acf857 100644 --- a/docs/updateRecord.md +++ b/docs/updateRecord.md @@ -1,5 +1,164 @@ # drpyS更新记录 +### 20250310 + +更新至V1.1.23 + +1. 修复番茄小说 +2. 新增2个源 + +### 20250227 + +更新至V1.1.22 + +1. 优化123网盘的逻辑和推送示例 +2. 优化sqlite3库兼容装逼壳 + +### 20250226 + +更新至V1.1.21 + +1. 增加123网盘的逻辑和推送示例 + +### 20250225 + +更新至V1.1.20 + +1. UC整体逻辑修改,并在扫码插件增加了UC_TOKEN扫码逻辑 +2. 数据库sqlite3优化,寻找另一个wasm实现的库平替了兼容性极差的sqlite3原生库 + +### 20250224 + +更新至V1.1.19 + +1. 修复 推送和所有网盘源涉及的UC播放问题,支持原代本和原代服务加速 +2. 更新猫爪的 alist.js +3. 新增 `sqlite` `sqlite3` 依赖,在ds源里的异步方法里直接使用,示例: + +```javascript +await database.startDb(); +console.log('database:', database); +const db = database.db; +// 创建表 +await db.run(` + CREATE TABLE IF NOT EXISTS users ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name TEXT NOT NULL + ) + `); + +// 插入数据 +await db.run('INSERT INTO users (name) VALUES (?)', ['Alice']); +await db.run('INSERT INTO users (name) VALUES (?)', ['Bob']); + +// 查询数据 +const users = await db.all('SELECT * FROM users'); +console.log(users); + +// 更新数据 +await db.run('UPDATE users SET name = ? WHERE id = ?', ['Charlie', 1]); + +// 查询更新后的数据 +const updatedUsers = await db.all('SELECT * FROM users'); +console.log(updatedUsers); + +// 删除数据 +await db.run('DELETE FROM users WHERE id = ?', [2]); + +// 查询删除后的数据 +const finalUsers = await db.all('SELECT * FROM users'); +console.log(finalUsers); +await database.endDb(); +``` + +### 20250211 + +更新至V1.1.18 + +1. 新增 `16wMv.js` +2. drpyS支持库升级,新增获取首字母拼音的函数 `getFirstLetter` + +### 20250206 + +更新至V1.1.17 + +1. parses.conf增强,支持{{host}} 与 {{hostName}} 变量,可以配置同机器服务下的其他端口php解析 +2. 设置中心新增解析 视频解析设置栏目,暂时可以设置 `芒果关解` 视频分辨率 + +### 20250123 + +更新至V1.1.16 + +1. 原代本增强,支持模式切换 `5575` 和 `7777`,原7777模式 需要自己开mediaGo,新的默认模式采用不夜加速,装逼壳直接起飞,无需外挂服务(多个壳子同时用可能会端口冲突,待验证) +2. 设置中心-系统配置 增加 设置原代本类型,现在不设置就默认是不夜加速 +3. 设置中心-接口挂载 增加设置允许挂载jar,默认关闭,设置为1可以使用挂载配置里的jar +4. 更换默认的epg地址 +5. 新增源 `iptv.js` +6. 更新 `直播转点播[合].js` 支持配置文件自定义请求头 +7. 修复 `金牌影院.js`、新增源动力出品的 `短剧库.js` +8. 修复ds猫视频不夜源 `黑木耳克隆|T4` 等一级筛选不讲规则返回的不是列表导致的兼容性问题 +9. ds猫支持不夜多线程磁盘加速 + +### 20250122 + +更新至V1.1.15 + +1. ds源和dr2源增加装逼壳图标支持 +2. 直转点加了一条记录 +3. 打包7z脚本排除本地挂载的外部T4数据 +4. ds猫源适配不讲规矩的不夜T4 +5. 挂载数据默认值改为不启用 +6. 修复移动盘播放问题 +7. 不夜的推送不讲规矩,只支持get不支持post,需要壳适配。一级不讲规则,ac只能detail才有数据,list/videolist不行 +8. 统一挨着修改网盘源,增加二级数据返回 vod_play_pan,按$$$分割的原始网盘链接,包括push也有效,方便海阔本地小程序播放 +9. 增加 [源动力](https://sourcepower.top/source) 官方出品的`短剧库.js` +10. 设置中心推送视频去掉编码,交给壳子处理,防止双层编码导致的问题 + +### 20250121 + +更新至V1.1.14 + +1. 猫源ds在线配置支持接口密码 +2. 修复移动网盘工具类(移动1可以,2和3还是不行) +3. 新增 [源动力](https://sourcepower.top/source) 官方出品的两个源 `麦田影院.js` `凡客TV.js` +4. 设置中心增加接口挂载功能,可以挂载hipy-t4和不夜t4(box在线配置) +5. 多线程播放加速新增 磁盘加速模式 + +### 20250120 + +更新至V1.1.13 + +1. 完善猫源ds在线配置 + +### 20250119 + +更新至V1.1.12 + +1. 支持猫源在线配置 + +使用教程: + +- [点这里跳进去后复制地址](/config/index.js.md5) +- 回来后手动处理地址: 在http:// 中间插入授权验证,比如 admin:drpys@ +- 举例: 你复制的地址: `http://127.0.0.1:5757/config/index.js.md5` +- 举例: 你手动处理后放猫里的的地址: `http://admin:drpys@127.0.0.1:5757/config/index.js.md5` + +### 20250117 + +本次未更新版本 + +1. 新开项目,使ds源适用于新版猫影视 [猫爪catpwd](https://github.com/CatPawApp/CatPawOpen) + +### 20250116 + +更新至V1.1.11 + +1. 更新天翼和移动网盘工具类 +2. 新增哔哩大杂烩 +3. 优化push_agent +4. 修复 雷鲸小站 +5. 央视大全推荐页增加直播,卡卡的但是能凑合看 + ### 20250115 更新至V1.1.10 diff --git a/index.js b/index.js index 16ccc2f..864dba1 100644 --- a/index.js +++ b/index.js @@ -12,7 +12,7 @@ const {fastify} = fastlogger; // 获取当前路径 const __dirname = path.dirname(fileURLToPath(import.meta.url)); const PORT = 5757; -const MAX_TEXT_SIZE = 100 * 1024; // 设置最大文本大小为 100 KB +const MAX_TEXT_SIZE = 0.1 * 1024 * 1024; // 设置最大文本大小为 0.1 MB // 静态资源 fastify.register(fastifyStatic, { diff --git a/index.json b/index.json deleted file mode 100644 index 6b71b60..0000000 --- a/index.json +++ /dev/null @@ -1,1696 +0,0 @@ -{ - "sites_count": 92, - "sites": [ - { - "key": "drpyS_设置中心", - "name": "设置中心(DS)", - "type": 4, - "api": "http://localhost:5757/api/设置中心", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "more": { - "sourceTag": "设置,动作", - "actions": [ - { - "name": "推送", - "action": "{\"actionId\":\"推送视频播放\",\"id\":\"push\",\"type\":\"input\",\"title\":\"推送视频地址进行播放\",\"tip\":\"支持网盘、官链、直链、待嗅探链接\",\"value\":\"\",\"msg\":\"请输入待推送的视频地址\",\"imageUrl\":\"https://github.catvod.com/https://raw.githubusercontent.com/hjdhnx/drpy-node/refs/heads/main/public/images/lives.jpg\",\"imageHeight\":200,\"imageType\":\"card_pic_3\",\"keep\":true,\"button\":4,\"width\":640,\"selectData\":\"腾讯:=https://v.qq.com/x/cover/mzc00200vkqr54u/u4100l66fas.html,爱奇艺:=http://www.iqiyi.com/v_1b0tk1b8tl8.html,夸克:=https://pan.quark.cn/s/6c8158e258f3,UC:=https://drive.uc.cn/s/59023f57d3ce4?public=1,阿里:=https://www.alipan.com/s/vgXMcowK8pQ,天翼:=https://cloud.189.cn/web/share?code=INJbU3NbqyUj,移动1:=https://yun.139.com/shareweb/#/w/i/0i5CLQ7BpV7Ai,移动2:=https://caiyun.139.com/m/i?2jexC1gcjeN7q,移动3:=https://yun.139.com/shareweb/#/w/i/2i2MoE9ZHn9p1,直链1:=https://vdse.bdstatic.com//628ca08719cef5987ea2ae3c6f0d2386.mp4,嗅探1:=https://www.6080kk.cc/haokanplay/178120-1-1.html,嗅探2:=https://www.hahads.com/play/537106-3-1.html,多集:=https://v.qq.com/x/cover/m441e3rjq9kwpsc/m00253deqqo.html#https://pan.quark.cn/s/6c8158e258f3,海阔二级单线路:=H4sIAAAAAAAAA52Uy27TQBSGXwUZlsT2GefadZ+AN3ATk7qKL7guUoKQXAQFeoEG6oKaVBUFlBZFbdQ0TXAIeRjPTJwVr8AYCsNyijQbnzPfPz72p3kk6WXf8aQFibzszFsb0l2p7Ni+YfusFAe78/W383C6eC8OmnEQsEVal7NxiEebeLQ/i75oKvl6iccfZwdPWY0OhnR8+uPbdnJ2kUx7ONrAo094skMOD+ZHHbL1nIbHbCf53KdBh7RPaP+Yfm8n5x+S3gWr016TtCb03VUa2Brh6A0Nm8ngVRysk7Nt+mI3aYfk9fs0YfMERxENn+FoKw6e3KJ7V8lgyF6+YnrG9UAPTLu6ZNgrpu4ZNlJRlrXve47FWrNomgzPEdJYydYtIx1/Z0rbXTzps9zrza5ZZo1l33dXFxSFPWlyvdGom5ZeNVblsmMpa27N0SvKQ6eipEwGIINAgYKGIA+lYg7kFbfKkta8Wnpqt6sC+8Z3/kQuyXm1qDZ+RbEMt6bXFVBBQ6UMy5KXfat2O4WQMIQ4pAlDGoeywlCWQzlhKMehvDCU51BBGCpwqCgMFTlUEoZKfyFQxX+uyqkbKMGdAHEnAP0Xxa0AcZWAawHiLgH3AsRlAi4GiNsE3AwQ1wm4GiDuE/zjhrhQiLuBxI1C3A0kbhTibqAb3DK/3ZAe/wSSQMKkPgYAAA==\"}", - "vod_name": "推送视频播放", - "vod_pic": "https://github.catvod.com/https://raw.githubusercontent.com/hjdhnx/drpy-node/refs/heads/main/public/images/lives.jpg", - "vod_tag": "action" - }, - { - "name": "连续对话", - "action": "{\"actionId\":\"连续对话\",\"id\":\"talk\",\"type\":\"input\",\"title\":\"连续对话\",\"tip\":\"请输入消息\",\"value\":\"\",\"msg\":\"开始新的对话\",\"button\":3,\"imageUrl\":\"https://img2.baidu.com/it/u=1206278833,3265480730&fm=253&fmt=auto&app=120&f=JPEG?w=800&h=800\",\"imageHeight\":200,\"imageType\":\"card_pic_3\",\"keep\":true,\"width\":680,\"height\":800,\"msgType\":\"long_text\",\"httpTimeout\":60,\"canceledOnTouchOutside\":false,\"selectData\":\"新的对话:=清空AI对话记录\"}" - }, - { - "name": "查看夸克cookie", - "action": "查看夸克cookie" - }, - { - "name": "设置夸克cookie", - "action": "设置夸克cookie" - }, - { - "name": "夸克扫码", - "action": "夸克扫码" - }, - { - "name": "设置玩偶域名", - "action": "{\"actionId\":\"玩偶域名\",\"id\":\"domain\",\"type\":\"input\",\"width\":450,\"title\":\"玩偶域名\",\"tip\":\"请输入玩偶域名\",\"value\":\"\",\"msg\":\"选择或输入使用的域名\",\"selectData\":\"1:=https://www.wogg.net/,2:=https://wogg.xxooo.cf/,3:=https://wogg.888484.xyz/,4:=https://www.wogg.bf/,5:=https://woggapi.333232.xyz/\"}" - } - ] - }, - "ext": "" - }, - { - "key": "drpyS_番茄小说[书]", - "name": "番茄小说[书](DS)", - "type": 4, - "api": "http://localhost:5757/api/番茄小说[书]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_大象影视", - "name": "大象影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/大象影视", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_腾云驾雾[官]", - "name": "腾云驾雾[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/腾云驾雾[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_央视大全[官]", - "name": "央视大全[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/央视大全[官]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_PTT[优]", - "name": "PTT[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/PTT[优]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_光速[优]", - "name": "光速[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/光速[优]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_皮皮虾[优]", - "name": "皮皮虾[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/皮皮虾[优]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_视觉[优]", - "name": "视觉[优](DS)", - "type": 4, - "api": "http://localhost:5757/api/视觉[优]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_hdmoli[盘]", - "name": "hdmoli[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/hdmoli[盘]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_UC分享[盘]", - "name": "UC分享[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/UC分享", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/TD3V+2tH2ZNdqPRAPAKubOwMVAAAA" - }, - { - "key": "drpyS_低端[盘]", - "name": "低端[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/低端[盘]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_团长资源[盘]", - "name": "团长资源[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/团长资源[盘]", - "searchable": 1, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_多多[盘]", - "name": "多多[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/多多[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_小米[盘]", - "name": "小米[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/小米[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_小米盘搜[盘]", - "name": "小米盘搜[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/小米盘搜[盘]", - "searchable": 1, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_木偶[盘]", - "name": "木偶[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/木偶[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_欧哥[盘]", - "name": "欧哥[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/欧哥[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_特下饭[盘]", - "name": "特下饭[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/特下饭[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_玩偶哥哥[盘]", - "name": "玩偶哥哥[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/玩偶哥哥[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_至臻[盘]", - "name": "至臻[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/至臻[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_虎斑[盘]", - "name": "虎斑[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/虎斑[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_蜡笔[盘]", - "name": "蜡笔[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/蜡笔[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_闪电优汐[盘]", - "name": "闪电优汐[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/闪电优汐[盘]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_雷鲸小站[盘]", - "name": "雷鲸小站[盘](DS)", - "type": 4, - "api": "http://localhost:5757/api/雷鲸小站[盘]", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_哔哩直播[官]", - "name": "哔哩直播[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/哔哩直播[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_哔哩影视[官]", - "name": "哔哩影视[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/哔哩影视[官]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_奇珍异兽[官]", - "name": "奇珍异兽[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/奇珍异兽[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_哔哩教育[官]", - "name": "哔哩教育[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/我的哔哩[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tfzp5ytPJK59NnfmiaZMeSAQAgv7xPBkAAAA=" - }, - { - "key": "drpyS_哔哩大全[官]", - "name": "哔哩大全[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/我的哔哩[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tfzp5ytPJK58uWf60dYUeSAQAZ2A+OBkAAAA=" - }, - { - "key": "drpyS_抖音直播弹幕[官]", - "name": "抖音直播弹幕[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/抖音直播弹幕[官]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_百忙无果[官]", - "name": "百忙无果[官](DS)", - "type": 4, - "api": "http://localhost:5757/api/百忙无果[官]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_360影视[官]", - "name": "360影视[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/360影视[官].js" - }, - { - "key": "drpy2_优酷[官]", - "name": "优酷[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/优酷[官].js" - }, - { - "key": "drpy2_百忙无果[官]", - "name": "百忙无果[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/百忙无果[官].js" - }, - { - "key": "drpy2_菜狗[官]", - "name": "菜狗[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/菜狗[官].js" - }, - { - "key": "drpy2_虎牙直播[官]", - "name": "虎牙直播[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/虎牙直播[官].js" - }, - { - "key": "drpy2_豆瓣[官]", - "name": "豆瓣[官](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 1, - "filterable": 1, - "quickSearch": 1, - "ext": "http://localhost:5757/js/豆瓣[官].js" - }, - { - "key": "push_agent", - "name": "推送(DS)", - "type": 4, - "api": "http://localhost:5757/api/push_agent", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_啊哈DJ[听]", - "name": "啊哈DJ[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/啊哈DJ[听].js" - }, - { - "key": "drpy2_爱车MV[听]", - "name": "爱车MV[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/爱车MV[听].js" - }, - { - "key": "drpyS_播剧网", - "name": "播剧网(DS)", - "type": 4, - "api": "http://localhost:5757/api/播剧网", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_播客[听]", - "name": "播客[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/播客[听].js" - }, - { - "key": "drpy2_博看听书[听]", - "name": "博看听书[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/博看听书[听].js" - }, - { - "key": "drpyS_采王2024", - "name": "采王2024(DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2m5GBkcnLuTOfNTTqgURVDFUAlKCu7yAAAAA=" - }, - { - "key": "drpyS_采王成人[密]", - "name": "采王成人[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2W/TT9W2xL+fOfNbQqAcSVjFUAQAd5YgpIQAAAA==" - }, - { - "key": "drpyS_采王道长[合]", - "name": "采王道长[合](DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ228u5M581NOqBRFQMAcGPDNobAAAA" - }, - { - "key": "drpyS_采王zy[密]", - "name": "采王zy[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/采集之王[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tf9ne/nJ2W3RVZezLuTOfNTTqgURVDAGu/MCKHwAAAA==" - }, - { - "key": "drpyS_草榴社区[密]", - "name": "草榴社区[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/草榴社区[密]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_大嫂TV[密]", - "name": "大嫂TV[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/大嫂TV[密]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_动漫巴士[漫]", - "name": "动漫巴士[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/动漫巴士[漫]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_动作交互", - "name": "动作交互(DS)", - "type": 4, - "api": "http://localhost:5757/api/动作交互", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_番薯动漫[漫]", - "name": "番薯动漫[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/番薯动漫[漫]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_瓜子H5", - "name": "瓜子H5(DS)", - "type": 4, - "api": "http://localhost:5757/api/瓜子H5", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_鬼片之家", - "name": "鬼片之家(DS)", - "type": 4, - "api": "http://localhost:5757/api/鬼片之家", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_好乐影视", - "name": "好乐影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/好乐影视", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_黑料不打烊[密]", - "name": "黑料不打烊[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/黑料不打烊[密]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_火车太堵", - "name": "火车太堵(DS)", - "type": 4, - "api": "http://localhost:5757/api/火车太堵", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_集百动漫", - "name": "集百动漫(DS)", - "type": 4, - "api": "http://localhost:5757/api/集百动漫", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_荐片", - "name": "荐片(DS)", - "type": 4, - "api": "http://localhost:5757/api/荐片", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_金牌影院", - "name": "金牌影院(DS)", - "type": 4, - "api": "http://localhost:5757/api/金牌影院", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_九七电影网", - "name": "九七电影网(DS)", - "type": 4, - "api": "http://localhost:5757/api/九七电影网", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_酷我听书[听]", - "name": "酷我听书[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/酷我听书[听].js" - }, - { - "key": "drpyS_蓝莓短剧", - "name": "蓝莓短剧(DS)", - "type": 4, - "api": "http://localhost:5757/api/蓝莓短剧", - "searchable": 2, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_老白故事[听]", - "name": "老白故事[听](DS)", - "type": 4, - "api": "http://localhost:5757/api/老白故事[听]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_六月听书[听]", - "name": "六月听书[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/六月听书[听].js" - }, - { - "key": "drpyS_美颜怪[擦]", - "name": "美颜怪[擦](DS)", - "type": 4, - "api": "http://localhost:5757/api/美颜怪[擦]", - "searchable": 0, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_七度空间[密]", - "name": "七度空间[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/七度空间[密]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_七猫小说[书]", - "name": "七猫小说[书](DS)", - "type": 4, - "api": "http://localhost:5757/api/七猫小说[书]", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_清风DJ[听]", - "name": "清风DJ[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/清风DJ[听].js" - }, - { - "key": "drpyS_秋霞电影网", - "name": "秋霞电影网(DS)", - "type": 4, - "api": "http://localhost:5757/api/秋霞电影网", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_人人视频", - "name": "人人视频(DS)", - "type": 4, - "api": "http://localhost:5757/api/人人视频", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_色花堂[密]", - "name": "色花堂[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/色花堂[密]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_色花堂[密+]", - "name": "色花堂[密+](DS)", - "type": 4, - "api": "http://localhost:5757/api/色花堂[密+]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_素白白", - "name": "素白白(DS)", - "type": 4, - "api": "http://localhost:5757/api/素白白", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_相声随身听[听]", - "name": "相声随身听[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/相声随身听[听].js" - }, - { - "key": "drpyS_星芽短剧", - "name": "星芽短剧(DS)", - "type": 4, - "api": "http://localhost:5757/api/星芽短剧", - "searchable": 2, - "filterable": 1, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_兄弟影视", - "name": "兄弟影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/兄弟影视", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_雪糕TV", - "name": "雪糕TV(DS)", - "type": 4, - "api": "http://localhost:5757/api/雪糕TV", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_伊甸园[密]", - "name": "伊甸园[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/伊甸园[密]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_樱漫[漫]", - "name": "樱漫[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/樱漫[漫]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_直播转点播[合]", - "name": "直播转点播[合](DS)", - "type": 4, - "api": "http://localhost:5757/api/直播转点播[合]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "H4sIAAAAAAAAA9PT088qzs/Tz8ksSzVKzi3WA/EAuuBHLxUAAAA=" - }, - { - "key": "drpy2_种子音乐[听]", - "name": "种子音乐[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "http://localhost:5757/js/种子音乐[听].js" - }, - { - "key": "drpyS_专享影视", - "name": "专享影视(DS)", - "type": 4, - "api": "http://localhost:5757/api/专享影视", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_ACG漫画网[画]", - "name": "ACG漫画网[画](DS)", - "type": 4, - "api": "http://localhost:5757/api/ACG漫画网[画]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_ikanbot", - "name": "ikanbot(DS)", - "type": 4, - "api": "http://localhost:5757/api/ikanbot", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpy2_KTV歌厅[听]", - "name": "KTV歌厅[听](DR2)", - "type": 3, - "api": "assets://js/lib/drpy2.js", - "searchable": 2, - "filterable": 1, - "quickSearch": 0, - "ext": "http://localhost:5757/js/KTV歌厅[听].js" - }, - { - "key": "drpyS_MP4电影[磁]", - "name": "MP4电影[磁](DS)", - "type": 4, - "api": "http://localhost:5757/api/MP4电影[磁]", - "searchable": 1, - "filterable": 1, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_Nyafun[漫]", - "name": "Nyafun[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/Nyafun[漫]", - "searchable": 1, - "filterable": 0, - "quickSearch": 1, - "ext": "" - }, - { - "key": "drpyS_OmoFun[漫]", - "name": "OmoFun[漫](DS)", - "type": 4, - "api": "http://localhost:5757/api/OmoFun[漫]", - "searchable": 2, - "filterable": 0, - "quickSearch": 0, - "ext": "" - }, - { - "key": "drpyS_TVB云播", - "name": "TVB云播(DS)", - "type": 4, - "api": "http://localhost:5757/api/TVB云播", - "searchable": 2, - "filterable": 1, - "quickSearch": 2, - "ext": "" - }, - { - "key": "drpyS_xvideos[密]", - "name": "xvideos[密](DS)", - "type": 4, - "api": "http://localhost:5757/api/xvideos[密]", - "searchable": 1, - "filterable": 0, - "quickSearch": 0, - "ext": "" - } - ], - "parses": [ - { - "name": "JSON并发", - "url": "http://localhost:5757/parse/JSON并发?url=", - "type": 2, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷", - "pptv", - "PPTV", - "letv", - "乐视", - "leshi", - "mgtv", - "芒果", - "sohu", - "xigua", - "fun", - "风行" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "JSON合集", - "url": "http://localhost:5757/parse/JSON合集?url=", - "type": 3, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷", - "pptv", - "PPTV", - "letv", - "乐视", - "leshi", - "mgtv", - "芒果", - "sohu", - "xigua", - "fun", - "风行" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "虾米", - "url": "http://localhost:5757/parse/虾米?url=", - "type": 1, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷", - "pptv", - "PPTV", - "letv", - "乐视", - "leshi", - "mgtv", - "芒果", - "sohu", - "xigua", - "fun", - "风行" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36", - "Referer": "https://jx.xmflv.com" - } - }, - { - "name": "奇奇", - "url": "http://localhost:5757/parse/奇奇?url=", - "type": 1, - "ext": { - "flag": [ - "qiyi", - "爱奇艺", - "奇艺" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "json1", - "url": "http://localhost:5757/parse/json1?url=", - "type": 1, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.91 Mobile Safari/537.36" - } - }, - { - "name": "web1", - "url": "https://bfq.cfwlgzs.cn/player?url=", - "type": 0, - "ext": { - "flag": [ - "qiyi", - "imgo", - "爱奇艺", - "奇艺", - "qq", - "qq 预告及花絮", - "腾讯", - "youku", - "优酷" - ] - }, - "header": { - "User-Agent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.91 Mobile Safari/537.36" - } - }, - { - "name": "J1", - "url": "https://zy.qiaoji8.com/gouzi.php?url=", - "type": 1, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "J2", - "url": "https://jxjson.icu/neibu.php?url=", - "type": 1, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "W1", - "url": "https://jx.xymp4.cc/?url=", - "type": 0, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "W11", - "url": "https://www.ckplayer.vip/jiexi/?url=", - "type": 0, - "header": { - "User-Agent": "Mozilla/5.0" - } - }, - { - "name": "HGvip", - "url": "http://1.94.221.189:88/algorithm.php?url=", - "type": 1, - "header": { - "User-Agent": "Mozilla/5.0" - } - } - ], - "lives": [ - { - "name": "直播", - "type": 0, - "url": "http://localhost:5757/public/lives/tv.m3u", - "playerType": 1, - "ua": "okhttp/3.12.13", - "epg": "https://epg.mxdyeah.top/api/diyp/?ch={name}&date={date}", - "logo": "https://live.mxdyeah.top/logo/{name}.png" - } - ], - "wallpaper": "https://api.likepoems.com/img/bing/", - "spider": "", - "homepage": "https://github.com/hjdhnx/drpy-node", - "aiLogo": "https://image.baidu.com/search/index?tn=baiduimage&ct=201326592&lm=-1&cl=2&word=%E7%8B%97%E4%BD%9C%E4%B8%BA%E8%BD%AF%E4%BB%B6%E5%9B%BE%E6%A0%87&dyTabStr=MCwxMiwzLDEsMiwxMyw3LDYsNSw5", - "homeLogo": "https://github.catvod.com/https://raw.githubusercontent.com/hjdhnx/drpy-node/refs/heads/main/public/images/logo500x200-1.png", - "sniffer": { - "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.27", - "isVideoFormat": "http((?!http).){26,}\\.(m3u8|mp4|flv|avi|mkv|wmv|mpg|mpeg|mov|ts|3gp|rm|rmvb|asf|m4a|mp3|wma)", - "custom": [ - { - "url": "/Cloud/Down/AliCloud/", - "mimeType": "text/html", - "encoding": "utf-8", - "header": { - "Referer": "https://zxzj.vip/" - } - }, - { - "url": "ysting.ysxs8.vip", - "mimeType": "text/html", - "encoding": "utf-8", - "header": { - "Referer": "http://ysting.ysxs8.vip:81" - } - } - ] - }, - "recommend": [ - { - "name": "豆瓣推荐", - "request": { - "method": "GET", - "header": [ - { - "key": "Referer", - "value": "https://movie.douban.com/" - } - ], - "url": { - "raw": "https://movie.douban.com/j/new_search_subjects?sort=U&range=0,10&tags=&playable=1&start=0&year_range=2022,2022" - } - }, - "response": { - "result": "$.data", - "data": [ - { - "key": "name", - "value": "title" - }, - { - "key": "note", - "value": "rate" - }, - { - "key": "pic", - "value": "cover" - } - ] - }, - "expires": "86400" - } - ], - "rating": [ - { - "name": "rating", - "request": { - "method": "GET", - "url": { - "raw": "https://api.wmdb.tv/api/v1/movie/search?q={name}&limit=1" - } - }, - "response": { - "result": "this", - "data": [ - { - "key": "rating", - "value": "doubanRating" - } - ] - } - } - ], - "doh": [ - { - "ips": [ - "8.8.4.4", - "8.8.8.8" - ], - "name": "Google", - "url": "https://dns.google/dns-query" - }, - { - "ips": [ - "1.1.1.1", - "1.0.0.1", - "2606:4700:4700::1111", - "2606:4700:4700::1001" - ], - "name": "Cloudflare", - "url": "https://cloudflare-dns.com/dns-query" - }, - { - "ips": [ - "94.140.14.140", - "94.140.14.141" - ], - "name": "AdGuard", - "url": "https://dns.adguard.com/dns-query" - }, - { - "ips": [ - "84.200.69.80", - "84.200.70.40" - ], - "name": "DNSWatch", - "url": "https://resolver2.dns.watch/dns-query" - }, - { - "ips": [ - "9.9.9.9", - "149.112.112.112" - ], - "name": "Quad9", - "url": "https://dns.quad9.net/dns-quer" - } - ], - "ijk": [ - { - "group": "软解码", - "options": [ - { - "category": 4, - "name": "opensles", - "value": "0" - }, - { - "category": 4, - "name": "overlay-format", - "value": "842225234" - }, - { - "category": 4, - "name": "framedrop", - "value": "1" - }, - { - "category": 4, - "name": "soundtouch", - "value": "1" - }, - { - "category": 4, - "name": "start-on-prepared", - "value": "1" - }, - { - "category": 1, - "name": "http-detect-range-support", - "value": "0" - }, - { - "category": 1, - "name": "fflags", - "value": "fastseek" - }, - { - "category": 2, - "name": "skip_loop_filter", - "value": "48" - }, - { - "category": 4, - "name": "reconnect", - "value": "1" - }, - { - "category": 4, - "name": "enable-accurate-seek", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec-auto-rotate", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec-handle-resolution-change", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec-hevc", - "value": "0" - }, - { - "category": 1, - "name": "dns_cache_timeout", - "value": "600000000" - }, - { - "category": 4, - "name": "max-buffer-size", - "value": "15728640" - } - ] - }, - { - "group": "硬解码", - "options": [ - { - "category": 4, - "name": "opensles", - "value": "0" - }, - { - "category": 4, - "name": "overlay-format", - "value": "842225234" - }, - { - "category": 4, - "name": "framedrop", - "value": "1" - }, - { - "category": 4, - "name": "soundtouch", - "value": "1" - }, - { - "category": 4, - "name": "start-on-prepared", - "value": "1" - }, - { - "category": 1, - "name": "http-detect-range-support", - "value": "0" - }, - { - "category": 1, - "name": "fflags", - "value": "fastseek" - }, - { - "category": 2, - "name": "skip_loop_filter", - "value": "48" - }, - { - "category": 4, - "name": "reconnect", - "value": "1" - }, - { - "category": 4, - "name": "max-buffer-size", - "value": "15728640" - }, - { - "category": 4, - "name": "enable-accurate-seek", - "value": "0" - }, - { - "category": 4, - "name": "mediacodec", - "value": "1" - }, - { - "category": 4, - "name": "mediacodec-auto-rotate", - "value": "1" - }, - { - "category": 4, - "name": "mediacodec-handle-resolution-change", - "value": "1" - }, - { - "category": 4, - "name": "mediacodec-hevc", - "value": "1" - }, - { - "category": 1, - "name": "dns_cache_timeout", - "value": "600000000" - } - ] - } - ], - "rules": [ - { - "hosts": [ - "raw.githubusercontent.com", - "googlevideo.com", - "cdn.v82u1l.com", - "cdn.iz8qkg.com", - "cdn.kin6c1.com", - "c.biggggg.com", - "c.olddddd.com", - "haiwaikan.com", - "www.histar.tv", - "youtube.com", - "uhibo.com", - ".*boku.*", - ".*nivod.*", - ".*ulivetv.*", - "wogg.link", - "wogg.xyz" - ], - "name": "proxy" - }, - { - "hosts": [ - "magnet" - ], - "name": "cl", - "regex": [ - "最新", - "直播", - "更新" - ] - }, - { - "hosts": [ - "haiwaikan" - ], - "name": "海外看", - "regex": [ - "10.0099", - "10.3333", - "16.0599", - "8.1748", - "12.33", - "10.85" - ] - }, - { - "hosts": [ - "suonizy" - ], - "name": "索尼", - "regex": [ - "15.1666", - "15.2666" - ] - }, - { - "hosts": [ - "bfzy", - "bfbfvip" - ], - "name": "暴風", - "regex": [ - "#EXTINF.*?\\s+.*?adjump.*?\\.ts\\s+" - ] - }, - { - "hosts": [ - "aws.ulivetv.net" - ], - "name": "星星", - "regex": [ - "#EXT-X-DISCONTINUITY\\r*\\n*#EXTINF:8,[\\s\\S]*?#EXT-X-DISCONTINUITY" - ] - }, - { - "hosts": [ - "vip.lz", - "hd.lz", - "v.cdnlz" - ], - "name": "量子", - "regex": [ - "18.5333" - ] - }, - { - "hosts": [ - "vip.ffzy", - "hd.ffzy" - ], - "name": "非凡", - "regex": [ - "25.1999", - "25.0666", - "25.08", - "20.52" - ] - }, - { - "hosts": [ - "huoshan.com" - ], - "name": "火山嗅探", - "regex": [ - "item_id=" - ] - }, - { - "hosts": [ - "douyin.com" - ], - "name": "抖音嗅探", - "regex": [ - "is_play_url=" - ] - }, - { - "hosts": [ - "api.52wyb.com" - ], - "name": "七新嗅探", - "regex": [ - "m3u8?pt=m3u8" - ] - }, - { - "hosts": [ - "10086.cn" - ], - "name": "czzy", - "regex": [ - "/storageWeb/servlet/downloadServlet" - ] - }, - { - "exclude": [ - ".m3u8" - ], - "hosts": [ - "bytetos.com", - "byteimg.com", - "bytednsdoc.com", - "pstatp.com" - ], - "name": "bdys", - "regex": [ - "/tos-cn" - ] - }, - { - "exclude": [ - ".m3u8" - ], - "hosts": [ - "bdys10.com" - ], - "name": "bdys10", - "regex": [ - "/obj/" - ] - } - ], - "ads": [ - "mimg.0c1q0l.cn", - "www.googletagmanager.com", - "www.google-analytics.com", - "mc.usihnbcq.cn", - "mg.g1mm3d.cn", - "mscs.svaeuzh.cn", - "cnzz.hhttm.top", - "tp.vinuxhome.com", - "cnzz.mmstat.com", - "www.baihuillq.com", - "s23.cnzz.com", - "z3.cnzz.com", - "c.cnzz.com", - "stj.v1vo.top", - "z12.cnzz.com", - "img.mosflower.cn", - "tips.gamevvip.com", - "ehwe.yhdtns.com", - "xdn.cqqc3.com", - "www.jixunkyy.cn", - "sp.chemacid.cn", - "hm.baidu.com", - "s9.cnzz.com", - "z6.cnzz.com", - "um.cavuc.com", - "mav.mavuz.com", - "wofwk.aoidf3.com", - "z5.cnzz.com", - "xc.hubeijieshikj.cn", - "tj.tianwenhu.com", - "xg.gars57.cn", - "k.jinxiuzhilv.com", - "cdn.bootcss.com", - "ppl.xunzhuo123.com", - "xomk.jiangjunmh.top", - "img.xunzhuo123.com", - "z1.cnzz.com", - "s13.cnzz.com", - "xg.huataisangao.cn", - "z7.cnzz.com", - "xg.huataisangao.cn", - "z2.cnzz.com", - "s96.cnzz.com", - "q11.cnzz.com", - "thy.dacedsfa.cn", - "xg.whsbpw.cn", - "s19.cnzz.com", - "z8.cnzz.com", - "s4.cnzz.com", - "f5w.as12df.top", - "ae01.alicdn.com", - "www.92424.cn", - "k.wudejia.com", - "vivovip.mmszxc.top", - "qiu.xixiqiu.com", - "cdnjs.hnfenxun.com", - "cms.qdwght.com", - "wan.51img1.com", - "iqiyi.hbuioo.com", - "vip.ffzyad.com", - "https://lf1-cdn-tos.bytegoofy.com/obj/tos-cn-i-dy/455ccf9e8ae744378118e4bd289288dd" - ], - "drives": [ - { - "name": "阿里", - "password": "43886374072944a2bcc55a0ed129ab48", - "type": "alidrive" - } - ] -} \ No newline at end of file diff --git "a/js/16wMV[\345\220\254].js" "b/js/16wMV[\345\220\254].js" new file mode 100644 index 0000000..6dd8054 --- /dev/null +++ "b/js/16wMV[\345\220\254].js" @@ -0,0 +1,212 @@ +var mv_list = []; +var authors = []; +const starAuthors = '周杰伦,汪苏泷,李荣浩,蔡依林,筷子兄弟,凤凰传奇,程响'; +const alphabetList = Array.from({length: 26}, (_, index) => { + const uppercase = String.fromCharCode(65 + index); // 大写字母 A-Z + const lowercase = String.fromCharCode(97 + index); // 小写字母 a-z + // return {n: uppercase, v: lowercase}; + return {n: uppercase, v: uppercase}; +}); +alphabetList.unshift({n: '全部', v: ''}); +var rule = { + 类型: '搜索', + title: '16wMV', + alias: '16wMV搜索引擎', + desc: '仅搜索源纯js写法', + host: 'hiker://empty', + url: '', + searchUrl: 'hiker://empty', + headers: { + 'User-Agent': 'PC_UA', + }, + searchable: 1, + quickSearch: 0, + filterable: 1, + double: true, + play_parse: true, + limit: 100, + class_name: '歌手', + class_url: 'author', + filter: { + author: [ + {key: 'letters', name: '首字母', value: alphabetList} + ] + }, + // 推荐样式 + hikerListCol: 'icon_round_2', + // 分类列表样式 + hikerClassListCol: 'avatar', + // home_flag: '3-0-S', + home_flag: '3', + // class_flag: '3-11-S', + class_flag: '1', + 预处理: async function () { + let t1 = (new Date()).getTime(); + let _url = rule.params; + log(`传入参数:${_url}`); + mv_list = (await request(_url)).split('\n').map((it) => { + it = it.trim(); + let _tt = it.split(',')[0]; + let _uu = it.split(',')[1]; + if (_tt.includes('-')) { + return {title: _tt, url: _uu, author: _tt.split('-')[0].trim() || '未知', name: _tt.split('-')[1].trim()} + } else { + return {title: _tt, url: _uu, author: '未知', name: _tt.trim()} + } + }); + authors = [...new Set(mv_list.filter(it => !it.author.includes('+')).map(it => it.author.trim()))]; + // log(mv_list.slice(0, 3)); + // authors = naturalSort(authors, 'author'); // 不要使用排序,数据太大了排不了 + authors = authors.sort((a, b) => a.localeCompare(b, 'zh-CN', {numeric: true, sensitivity: 'base'})); + let t2 = (new Date()).getTime(); + log(`读取文件并转json耗时:${t2 - t1}毫秒`); + }, + lazy: async function (flag, id, flags) { + return {parse: 0, url: id} + }, + proxy_rule: async function (params) { + let {input, proxyPath, getProxyUrl} = this; + let resp_not_found = [404, 'text/plain', 'not found']; + return resp_not_found + }, + action: async function (action, value) { + if (action === 'only_search') { + return '此源为纯搜索源,你直接全局搜索这个源或者使用此页面的源内搜索就好了' + } + if (action === '源内搜索') { + let content = JSON.parse(value); + return JSON.stringify({ + action: { + actionId: '__self_search__', + skey: '', //目标源key,可选,未设置或为空则使用当前源 + name: '搜索: ' + content.wd, + tid: content.wd, + flag: '1', + msg: '源内搜索' + } + }); + } + return `没有动作:${action}的可执行逻辑` + }, + 推荐: async function () { + let {publicUrl} = this; + let searchIcon = urljoin(publicUrl, './images/icon_cookie/搜索.jpg'); + let selectData = starAuthors.split(',').map(it => `${it}:=${it}`).join(','); + return [{ + vod_id: 'only_search', + vod_name: '这是个纯搜索源哦', + vod_pic: searchIcon, + vod_remarks: `歌手数量:${authors.length}`, + vod_tag: 'action' + }, + { + vod_id: JSON.stringify({ + actionId: '源内搜索', + id: 'wd', + type: 'input', + title: '源内搜索', + tip: '请输入搜索内容', + value: '', + selectData: selectData + }), + vod_name: '源内搜索', + vod_pic: searchIcon, + vod_tag: 'action', + } + ] + }, + 一级: async function (tid, pg, filter, extend) { + let {MY_FL} = this; + let d = []; + if (tid === 'author') { + let _f = rule.limit * (pg - 1); + let _t = rule.limit * pg; + let _d = []; + let _authors = authors; + // log('_f:', _f, '_t:', _t); + // log('MY_FL.letters:', MY_FL.letters); + if (MY_FL.letters) { + _authors = authors.filter(_author => getFirstLetter(_author).startsWith(MY_FL.letters)); + } + _d = _authors.slice(_f, _t); + _d.forEach(it => { + d.push({ + vod_name: it, + vod_id: 'author#' + it, + }); + }); + return d; + } + // 仅搜索作者允许翻页,其他情况只有3个固定按钮 + if (Number(pg) > 1) { + return [] + } + d.push({ + vod_name: '按歌手搜索', + vod_id: 'author#' + tid, + vod_remarks: '', + }); + d.push({ + vod_name: '按歌名搜索', + vod_id: 'name#' + tid, + vod_remarks: '', + }); + d.push({ + vod_name: '全名模糊搜索', + vod_id: 'all#' + tid, + vod_remarks: '', + }); + return d + }, + 二级: async function () { + let {orId} = this; + let _stype = orId.split('#')[0]; + let _sname = orId.split('#')[1]; + let _vname = ''; + let data = []; + switch (_stype) { + case 'author': + // log('_sname:', _sname); + _vname = '按歌手搜索'; + data = mv_list.filter(it => it.author.includes(_sname)); + break; + case 'name': + _vname = '按歌名搜索'; + data = mv_list.filter(it => it.name.includes(_sname)); + break; + default: + _vname = '全名模糊搜索'; + data = mv_list.filter(it => it.title.includes(_sname)); + break; + } + return { + vod_id: orId, + vod_name: `${_vname}:${_sname}`, + vod_remarks: `共计${data.length}`, + vod_play_from: '道长源内搜索', + vod_play_url: data.map(it => it.title + '$' + it.url).join('#') + } + }, + 搜索: async function (wd, quick, pg) { + if (Number(pg) > 1) { + return [] + } + let d = []; + d.push({ + vod_name: '按歌手搜索:' + wd, + vod_id: 'author#' + wd, + vod_remarks: '', + }); + d.push({ + vod_name: '按歌名搜索:' + wd, + vod_id: 'name#' + wd, + vod_remarks: '', + }); + d.push({ + vod_name: '全名模糊搜索:' + wd, + vod_id: 'all#' + wd, + vod_remarks: '', + }); + return d + } +} diff --git "a/js/30wMV[\345\220\254].js" "b/js/30wMV[\345\220\254].js" new file mode 100644 index 0000000..9633703 --- /dev/null +++ "b/js/30wMV[\345\220\254].js" @@ -0,0 +1,383 @@ +const dbName = './data/mv/song.db'; // 数据库路径 +const pageSize = 200; // 每页显示100条记录 +const fixUrl = 'http://em.21dtv.com/songs/'; +let songDb = null; + +async function dbQuery(dbName, query) { + if (!songDb) { + songDb = new DataBase(dbName); + } + await songDb.startDb(); + const db = songDb.db; + let data = await db.all(query); + await songDb.endDb(); + return data +} + +var rule = { + 类型: '搜索', + title: '30wMV', + alias: '30wMV点歌平台', + desc: 'KTV点歌源', + host: 'hiker://empty', + url: '', + searchUrl: 'hiker://empty', + headers: { + 'User-Agent': 'PC_UA', + }, + searchable: 0, + quickSearch: 0, + filterable: 1, + double: false, + play_parse: true, + limit: 100, + filter: '', + // 推荐样式 + hikerListCol: 'icon_round_2', + // 分类列表样式 + hikerClassListCol: 'avatar', + // home_flag: '3-0-S', + home_flag: '3', + // class_flag: '3-11-S', + class_flag: '1', + 预处理: async function () { + songDb = new DataBase(dbName); + }, + class_parse: async function () { + let classes = []; + classes.push({ + type_id: JSON.stringify({type: 'cate', id: 'cate'}), + type_name: '类型', + type_flag: '1' + }, { + type_id: JSON.stringify({type: 'singer', id: 'singer'}), + type_name: '歌手', + type_flag: '[CFS][CFPY]1' + }, { + type_id: JSON.stringify({type: 'song', id: 'song', name: '曲库', lname: '曲库'}), + type_name: '曲库', + type_flag: '[CFS][CFPY]1-11' + }, { + type_id: JSON.stringify({type: '华语歌手', id: '1'}), + type_name: '男歌手', + type_flag: '[CFPY][PY1][AN:喜爱歌手]2-00-S' + }, { + type_id: JSON.stringify({type: '华语歌手', id: '2'}), + type_name: '女歌手', + type_flag: '[CFPY][PY1][AN:喜爱歌手]2-00-S' + }, { + type_id: JSON.stringify({type: '华语歌手', id: '3'}), + type_name: '组合歌手', + type_flag: '[CFPY][PY1][AN:喜爱歌手]2-00-S' + }); + return { + class: classes, + filters: null, + type_flag: 1 + } + }, + + lazy: async function (flag, id, flags) { + return {parse: 0, url: id} + }, + proxy_rule: async function (params) { + return '' + }, + action: async function (action, value) { + return '' + }, + 推荐: async function () { + return [] + }, + 一级: async function (tid, pg, filter, extend) { + pg = pg || 1; + extend = extend || {}; + + const pageIndex = pg - 1; + const offset = pageIndex * pageSize; // 计算当前页的偏移量 + const cid = JSON.parse(tid); + + let videos = []; + let query = ''; + let data = []; + let cnt = 0; + if (cid.type == 'cate') { + query = "SELECT id, name, (SELECT COUNT(*) FROM song_type WHERE category_id=song_category.id) AS num FROM song_category LIMIT " + pageSize + " OFFSET " + offset; + data = await dbQuery(dbName, query); + data.forEach(it => { + videos.push({ + vod_id: JSON.stringify({type: 'type', id: it.id, name: it.name, lname: it.name}), + vod_name: it.name, + vod_remarks: it.num + '条', + vod_tag: 'folder', + vod_style: '1', + }); + }); + } else if (cid.type == 'type') { + query = "SELECT id, name, (SELECT COUNT(*) FROM song WHERE type_id=song_type.id) AS num" + + " FROM song_type" + + " WHERE category_id=" + cid.id + + " LIMIT " + pageSize + " OFFSET " + offset; + data = await dbQuery(dbName, query); + data.forEach(it => { + videos.push({ + vod_id: JSON.stringify({ + type: 'type_song', + id: it.id, + name: it.name, + lname: cid.lname + '-' + it.name + }), + vod_name: it.name, + vod_remarks: it.num + '首', + vod_tag: 'folder', + vod_style: '[CFS][CFPY]1-11', + }); + }); + } else if (cid.type == 'type_song') { + let customFilter = '1'; + let wd = ''; + if (extend.custom) { + wd = extend.custom.trim(); + const words = wd.split('-'); + if (words.length > 1) { + customFilter = "(singer_names like '%" + words[0] + "%' AND name like '%" + words[1] + "%')"; + } else { + customFilter = "(singer_names like '%" + wd + "%' OR name like '%" + wd + "%')"; + } + } else if (extend.custom_pinyin) { + wd = extend.custom_pinyin.trim(); + const words = wd.split('-'); + if (words.length > 1) { + customFilter = "(acronym like '%" + words[1] + "%' AND singer_names in (SELECT name FROM singer WHERE acronym like '%" + words[0] + "%'))"; + } else { + customFilter = "(acronym like '%" + wd + "%' OR singer_names in (SELECT name FROM singer WHERE acronym like '%" + wd + "%'))"; + } + } + query = "SELECT name, singer_names, number, format" + + " FROM song" + + " WHERE type_id=" + cid.id + " AND " + customFilter + + " ORDER BY acronym COLLATE NOCASE" + + " LIMIT " + pageSize + " OFFSET " + offset; + data = await dbQuery(dbName, query); + data.forEach(it => { + videos.push({ + vod_id: fixUrl + it.number + '.' + it.format + '#' + it.singer_names + '-' + it.name + '#' + cid.lname, + vod_name: it.name, + vod_remarks: it.singer_names, + }); + }); + if (videos.length > 1 && pg == 1) { + query = "SELECT COUNT(*) as num FROM song WHERE type_id=" + cid.id + " AND " + customFilter; + const d = await dbQuery(dbName, query); + videos.unshift({ + vod_id: JSON.stringify({ + type: 'type_song_page', + id: cid.id, + name: cid.name + (wd == '' ? '' : '-' + wd), + lname: cid.lname + (wd == '' ? '' : '-' + wd), + filter: customFilter + }), + vod_name: cid.name + (wd == '' ? '' : '-' + wd) + ' [分页]', + vod_remarks: d[0].num + '首 ' + Math.floor((d[0].num - 1) / pageSize + 1) + '页', + vod_tag: 'folder', + vod_style: '1', + }); + } + } else if (cid.type == 'type_song_page') { + if (pg == 1) { + query = "SELECT COUNT(*) as num FROM song WHERE type_id=" + cid.id + " AND " + cid.filter; + data = await dbQuery(dbName, query); + if (data.length > 0) { + for (let i = 0; i < data[0].num; i += pageSize) { + const pageNo = i / pageSize + 1; + const name = cid.lname + (data[0].num > pageSize ? ' (第' + pageNo + '页)' : ''); + videos.push({ + vod_id: 'multi_type_song#' + name + '#' + cid.id + '#' + i + '#' + cid.filter, + vod_name: '第 ' + pageNo + ' 页', + vod_remarks: (i + 1) + '~' + (data[0].num > pageNo * pageSize ? i + pageSize : data[0].num) + }); + } + } + } + } else if (cid.type == 'singer') { + let customFilter = '1'; + let wd = ''; + if (extend.custom) { + wd = extend.custom.trim(); + customFilter = "singer.name like '%" + wd + "%'"; + } else if (extend.custom_pinyin) { + wd = extend.custom_pinyin.trim(); + customFilter = "singer.acronym like '%" + wd + "%'"; + } + query = "SELECT distinct singer.name, singer_form.name as form_name, singer_region.name as region_name, (SELECT COUNT(*) FROM song WHERE singer_names=singer.name) AS num" + + " FROM singer left join singer_form on singer.form_id=singer_form.id left join singer_region on singer.region_id=singer_region.id" + + " WHERE " + customFilter + + " ORDER BY acronym COLLATE NOCASE" + + " LIMIT " + pageSize + " OFFSET " + offset; + data = await dbQuery(dbName, query); + data.forEach(it => { + videos.push({ + vod_id: 'singer#' + it.name, + vod_name: it.name, + vod_remarks: it.region_name + ' ' + it.form_name + ' ' + it.num + '首', + }); + }); + } else if (cid.type == 'song') { + let customFilter = '1'; + let wd = ''; + if (extend.custom) { + wd = extend.custom.trim(); + const words = wd.split('-'); + if (words.length > 1) { + customFilter = "(singer_names like '%" + words[0] + "%' AND name like '%" + words[1] + "%')"; + } else { + customFilter = "(singer_names like '%" + wd + "%' OR name like '%" + wd + "%')"; + } + } else if (extend.custom_pinyin) { + wd = extend.custom_pinyin.trim(); + const words = wd.split('-'); + if (words.length > 1) { + customFilter = "(acronym like '%" + words[1] + "%' AND singer_names in (SELECT name FROM singer WHERE acronym like '%" + words[0] + "%'))"; + } else { + // customFilter = "(acronym like '%" + wd + "%' OR singer_names in (SELECT name FROM singer WHERE acronym like '%" + wd + "%'))"; + customFilter = "(acronym like '%" + wd + "%')"; + } + } + query = "SELECT name, singer_names, number, format" + + " FROM song" + + " WHERE " + customFilter + + " ORDER BY acronym COLLATE NOCASE" + + " LIMIT " + pageSize + " OFFSET " + offset; + data = await dbQuery(dbName, query); + data.forEach(it => { + videos.push({ + vod_id: fixUrl + it.number + '.' + it.format + '#' + it.singer_names + '-' + it.name + '#' + cid.lname, + vod_name: it.name, + vod_remarks: it.singer_names, + }); + }); + if (videos.length > 1 && pg == 1) { + query = "SELECT COUNT(*) as num FROM song WHERE " + customFilter; + const d = await dbQuery(dbName, query); + videos.unshift({ + vod_id: JSON.stringify({ + type: 'song_page', + id: cid.id, + name: cid.name + (wd == '' ? '' : '-' + wd), + lname: cid.lname + (wd == '' ? '' : '-' + wd), + filter: customFilter + }), + vod_name: cid.name + (wd == '' ? '' : '-' + wd) + ' [分页]', + vod_remarks: d[0].num + '首 ' + Math.floor((d[0].num - 1) / pageSize + 1) + '页', + vod_tag: 'folder', + vod_style: '1', + }); + } + } else if (cid.type == 'song_page') { + if (pg == 1) { + query = "SELECT COUNT(*) as num FROM song WHERE " + cid.filter; + data = await dbQuery(dbName, query); + if (data.length > 0) { + for (let i = 0; i < data[0].num; i += pageSize) { + const pageNo = i / pageSize + 1; + const name = cid.lname + (data[0].num > pageSize ? ' (第' + pageNo + '页)' : ''); + videos.push({ + vod_id: 'multi_song#' + name + '#' + i + '#' + cid.filter, + vod_name: '第 ' + pageNo + ' 页', + vod_remarks: (i + 1) + '~' + (data[0].num > pageNo * pageSize ? i + pageSize : data[0].num) + }); + } + } + } + } else if (cid.type == '华语歌手') { + const cate = cid.id; + let letter = ''; + if (extend.custom_pinyin) { + letter = extend.custom_pinyin.substring(0, 1); + } + const url = `https://wapi.kuwo.cn/api/www/artist/artistInfo?category=${cate}&prefix=${letter}&pn=${pg}&rn=60`; + const _data = await req(url); + const data = JSON.parse(_data.content).data.artistList; + data.forEach(it => { + videos.push({ + vod_id: 'singer#' + it.name, + vod_name: it.name, + vod_pic: it.pic + }); + }); + } + return videos + }, + 二级: async function (_ids) { + const {orId} = this; + const id = orId; + const urls = []; + const ids = id.split('#'); + let _stype = ids[0]; + let _sname = ids[1]; + let _vname = ''; + let _content = ''; + let query = ''; + let data = []; + switch (_stype) { + case 'singer': + _vname = '歌手搜索'; + query = "SELECT name, singer_names, number, format FROM song WHERE singer_names LIKE '%" + _sname + "%' ORDER BY acronym COLLATE NOCASE LIMIT 1000"; + data = await dbQuery(dbName, query); + data.forEach(it => { + urls.push(it.singer_names + '-' + it.name + '$' + fixUrl + it.number + '.' + it.format); + }); + break; + case 'name': + _vname = '歌名搜索'; + query = "SELECT name, singer_names, number, format FROM song WHERE name LIKE '%" + _sname + "%' ORDER BY acronym COLLATE NOCASE LIMIT 1000"; + data = await dbQuery(dbName, query); + data.forEach(it => { + urls.push(it.singer_names + '-' + it.name + '$' + fixUrl + it.number + '.' + it.format); + }); + break; + case 'all': + _vname = '混合搜索'; + query = "SELECT name, singer_names, number, format FROM song WHERE singer_names LIKE '%" + _sname + "%' OR name LIKE '%" + _sname + "%' ORDER BY acronym COLLATE NOCASE LIMIT 1000"; + data = await dbQuery(dbName, query); + data.forEach(it => { + urls.push(it.singer_names + '-' + it.name + '$' + fixUrl + it.number + '.' + it.format); + }); + break; + case 'multi_type_song': + _vname = '合集'; + query = "SELECT name, singer_names, number, format FROM song WHERE type_id=" + ids[2] + " AND " + ids[4] + " ORDER BY acronym COLLATE NOCASE LIMIT " + pageSize + " OFFSET " + ids[3]; + data = await dbQuery(dbName, query); + data.forEach(it => { + urls.push(it.singer_names + '-' + it.name + '$' + fixUrl + it.number + '.' + it.format); + }); + break; + case 'multi_song': + _vname = '合集'; + query = "SELECT name, singer_names, number, format FROM song WHERE " + ids[3] + " ORDER BY acronym COLLATE NOCASE LIMIT " + pageSize + " OFFSET " + ids[2]; + data = await dbQuery(dbName, query); + data.forEach(it => { + urls.push(it.singer_names + '-' + it.name + '$' + fixUrl + it.number + '.' + it.format); + }); + break; + default: + _vname = '单曲'; + _content = ids[2]; + urls.push(_sname + '$' + _stype); + break; + } + + let vod = { + vod_id: id, + vod_name: `${_vname}: ${_sname}`, + vod_play_from: 'mv30w', + vod_play_url: urls.join('#'), + vod_content: _content + }; + + return vod + }, + 搜索: async function (wd, quick, pg) { + return [] + } +} diff --git a/js/_fq3.js b/js/_fq3.js index 5cd5698..23bb6ed 100644 --- a/js/_fq3.js +++ b/js/_fq3.js @@ -4,9 +4,10 @@ const path = require('path'); const absolutePath = path.resolve('./'); console.log(absolutePath); const data = fs.readFileSync('./js/_360.js', 'utf8'); -console.log(data); - +// console.log(data); +console.log(1111) const {getPublicIp1, getPublicIp2} = require('../js/_lib.request.cjs'); +console.log(2222) const {XMLHttpRequest} = require("xmlhttprequest"); console.log('typeof getPublicIp1:', typeof getPublicIp1); console.log('typeof getPublicIp2:', typeof getPublicIp2); @@ -19,6 +20,7 @@ return jsEncoder.gzip(a+'') `, 123); console.log('a:', a); + function test_rc4() { /* // 测试 @@ -98,6 +100,10 @@ const rule = { // log(JSON.parse(a)); // log(JSON.parse(a).fileListAO.folderList); // log(JsonBig.parse(a).fileListAO.folderList); + log(DataBase); + await database.startDb(); + // console.log('database:',database); + await database.endDb(); }, class_parse2: async function () { let {proxyUrl, getRule} = this; diff --git a/js/_lib.cntv.live.js b/js/_lib.cntv.live.js new file mode 100644 index 0000000..6ab9aa2 --- /dev/null +++ b/js/_lib.cntv.live.js @@ -0,0 +1,207 @@ +"use strict"; + +function setH5Str(inputStr) { + function _0x40fe15(_0x5a9643, _0xd017ad) { + var _0x2f8d9c = (65535 & _0x5a9643) + (65535 & _0xd017ad); + var _0x3ec3c0 = (_0x5a9643 >> 16) + (_0xd017ad >> 16) + (_0x2f8d9c >> 16); + return _0x3ec3c0 << 16 | 65535 & _0x2f8d9c; + } + + function _0x15f4df(_0x4428e8, _0x557134) { + return _0x4428e8 << _0x557134 | _0x4428e8 >>> 32 - _0x557134; + } + + function _0x4299a6(_0x291970, _0x2bb2a6, _0x1c883d, _0x2d9554, _0x2ba4b1, _0xacbca3) { + return _0x40fe15(_0x15f4df(_0x40fe15(_0x40fe15(_0x2bb2a6, _0x291970), _0x40fe15(_0x2d9554, _0xacbca3)), _0x2ba4b1), _0x1c883d); + } + + function _0x9063c4(_0x4d294a, _0x4dad24, _0x5f3fd9, _0x35bb55, _0x244abb, _0x5ee604, _0x319d8c) { + return _0x4299a6(_0x4dad24 & _0x5f3fd9 | ~_0x4dad24 & _0x35bb55, _0x4d294a, _0x4dad24, _0x244abb, _0x5ee604, _0x319d8c); + } + + function _0xe4d841(_0x44b59, _0x12258e, _0x354492, _0x402689, _0x2d60e6, _0x21154a, _0x5ef56f) { + return _0x4299a6(_0x12258e & _0x402689 | _0x354492 & ~_0x402689, _0x44b59, _0x12258e, _0x2d60e6, _0x21154a, _0x5ef56f); + } + + function _0x2b7921(_0x257d64, _0x57e029, _0x5c41dd, _0x39139, _0x2f15ca, _0x3995a2, _0x139334) { + return _0x4299a6(_0x57e029 ^ _0x5c41dd ^ _0x39139, _0x257d64, _0x57e029, _0x2f15ca, _0x3995a2, _0x139334); + } + + function _0x55488d(_0x5953d3, _0x155874, _0x4d68fc, _0x3fb337, _0x45c3ec, _0x2fc081, _0x308e70) { + return _0x4299a6(_0x4d68fc ^ (_0x155874 | ~_0x3fb337), _0x5953d3, _0x155874, _0x45c3ec, _0x2fc081, _0x308e70); + } + + function _0x9e36fc(_0x36e96d, _0x5974bf) { + _0x36e96d[_0x5974bf >> 5] |= 128 << _0x5974bf % 32; + _0x36e96d[(_0x5974bf + 64 >>> 9 << 4) + 14] = _0x5974bf; + var _0x4b5343; + var _0x177957; + var _0x4460f4; + var _0x103679; + var _0x2e6fd1; + var _0xa1432a = 1732584193; + var _0x247c23 = -271733879; + var _0x5cfb87 = -1732584194; + var _0xfbd0d2 = 271733878; + for (_0x4b5343 = 0; _0x4b5343 < _0x36e96d.length; _0x4b5343 += 16) { + _0x177957 = _0xa1432a; + _0x4460f4 = _0x247c23; + _0x103679 = _0x5cfb87; + _0x2e6fd1 = _0xfbd0d2; + _0xa1432a = _0x9063c4(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343], 7, -680876936); + _0xfbd0d2 = _0x9063c4(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 1], 12, -389564586); + _0x5cfb87 = _0x9063c4(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 2], 17, 606105819); + _0x247c23 = _0x9063c4(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 3], 22, -1044525330); + _0xa1432a = _0x9063c4(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 4], 7, -176418897); + _0xfbd0d2 = _0x9063c4(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 5], 12, 1200080426); + _0x5cfb87 = _0x9063c4(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 6], 17, -1473231341); + _0x247c23 = _0x9063c4(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 7], 22, -45705983); + _0xa1432a = _0x9063c4(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 8], 7, 1770035416); + _0xfbd0d2 = _0x9063c4(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 9], 12, -1958414417); + _0x5cfb87 = _0x9063c4(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 10], 17, -42063); + _0x247c23 = _0x9063c4(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 11], 22, -1990404162); + _0xa1432a = _0x9063c4(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 12], 7, 1804603682); + _0xfbd0d2 = _0x9063c4(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 13], 12, -40341101); + _0x5cfb87 = _0x9063c4(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 14], 17, -1502002290); + _0x247c23 = _0x9063c4(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 15], 22, 1236535329); + _0xa1432a = _0xe4d841(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 1], 5, -165796510); + _0xfbd0d2 = _0xe4d841(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 6], 9, -1069501632); + _0x5cfb87 = _0xe4d841(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 11], 14, 643717713); + _0x247c23 = _0xe4d841(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343], 20, -373897302); + _0xa1432a = _0xe4d841(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 5], 5, -701558691); + _0xfbd0d2 = _0xe4d841(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 10], 9, 38016083); + _0x5cfb87 = _0xe4d841(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 15], 14, -660478335); + _0x247c23 = _0xe4d841(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 4], 20, -405537848); + _0xa1432a = _0xe4d841(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 9], 5, 568446438); + _0xfbd0d2 = _0xe4d841(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 14], 9, -1019803690); + _0x5cfb87 = _0xe4d841(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 3], 14, -187363961); + _0x247c23 = _0xe4d841(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 8], 20, 1163531501); + _0xa1432a = _0xe4d841(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 13], 5, -1444681467); + _0xfbd0d2 = _0xe4d841(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 2], 9, -51403784); + _0x5cfb87 = _0xe4d841(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 7], 14, 1735328473); + _0x247c23 = _0xe4d841(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 12], 20, -1926607734); + _0xa1432a = _0x2b7921(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 5], 4, -378558); + _0xfbd0d2 = _0x2b7921(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 8], 11, -2022574463); + _0x5cfb87 = _0x2b7921(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 11], 16, 1839030562); + _0x247c23 = _0x2b7921(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 14], 23, -35309556); + _0xa1432a = _0x2b7921(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 1], 4, -1530992060); + _0xfbd0d2 = _0x2b7921(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 4], 11, 1272893353); + _0x5cfb87 = _0x2b7921(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 7], 16, -155497632); + _0x247c23 = _0x2b7921(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 10], 23, -1094730640); + _0xa1432a = _0x2b7921(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 13], 4, 681279174); + _0xfbd0d2 = _0x2b7921(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343], 11, -358537222); + _0x5cfb87 = _0x2b7921(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 3], 16, -722521979); + _0x247c23 = _0x2b7921(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 6], 23, 76029189); + _0xa1432a = _0x2b7921(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 9], 4, -640364487); + _0xfbd0d2 = _0x2b7921(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 12], 11, -421815835); + _0x5cfb87 = _0x2b7921(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 15], 16, 530742520); + _0x247c23 = _0x2b7921(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 2], 23, -995338651); + _0xa1432a = _0x55488d(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343], 6, -198630844); + _0xfbd0d2 = _0x55488d(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 7], 10, 1126891415); + _0x5cfb87 = _0x55488d(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 14], 15, -1416354905); + _0x247c23 = _0x55488d(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 5], 21, -57434055); + _0xa1432a = _0x55488d(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 12], 6, 1700485571); + _0xfbd0d2 = _0x55488d(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 3], 10, -1894986606); + _0x5cfb87 = _0x55488d(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 10], 15, -1051523); + _0x247c23 = _0x55488d(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 1], 21, -2054922799); + _0xa1432a = _0x55488d(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 8], 6, 1873313359); + _0xfbd0d2 = _0x55488d(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 15], 10, -30611744); + _0x5cfb87 = _0x55488d(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 6], 15, -1560198380); + _0x247c23 = _0x55488d(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 13], 21, 1309151649); + _0xa1432a = _0x55488d(_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2, _0x36e96d[_0x4b5343 + 4], 6, -145523070); + _0xfbd0d2 = _0x55488d(_0xfbd0d2, _0xa1432a, _0x247c23, _0x5cfb87, _0x36e96d[_0x4b5343 + 11], 10, -1120210379); + _0x5cfb87 = _0x55488d(_0x5cfb87, _0xfbd0d2, _0xa1432a, _0x247c23, _0x36e96d[_0x4b5343 + 2], 15, 718787259); + _0x247c23 = _0x55488d(_0x247c23, _0x5cfb87, _0xfbd0d2, _0xa1432a, _0x36e96d[_0x4b5343 + 9], 21, -343485551); + _0xa1432a = _0x40fe15(_0xa1432a, _0x177957); + _0x247c23 = _0x40fe15(_0x247c23, _0x4460f4); + _0x5cfb87 = _0x40fe15(_0x5cfb87, _0x103679); + _0xfbd0d2 = _0x40fe15(_0xfbd0d2, _0x2e6fd1); + } + return [_0xa1432a, _0x247c23, _0x5cfb87, _0xfbd0d2]; + } + + function _0x474399(_0x59408d) { + var _0x3f20bd; + var _0x230126 = ""; + for (_0x3f20bd = 0; _0x3f20bd < 32 * _0x59408d.length; _0x3f20bd += 8) { + _0x230126 += String.fromCharCode(_0x59408d[_0x3f20bd >> 5] >>> _0x3f20bd % 32 & 255); + } + return _0x230126; + } + + function _0x58cf0b(_0x5320fd) { + var _0x34b4ab; + var _0x20f031 = []; + for (_0x20f031[(_0x5320fd.length >> 2) - 1] = undefined, _0x34b4ab = 0; _0x34b4ab < _0x20f031.length; _0x34b4ab += 1) { + _0x20f031[_0x34b4ab] = 0; + } + for (_0x34b4ab = 0; _0x34b4ab < 8 * _0x5320fd.length; _0x34b4ab += 8) { + _0x20f031[_0x34b4ab >> 5] |= (255 & _0x5320fd.charCodeAt(_0x34b4ab / 8)) << _0x34b4ab % 32; + } + return _0x20f031; + } + + function _0x538feb(_0x452384) { + return _0x474399(_0x9e36fc(_0x58cf0b(_0x452384), 8 * _0x452384.length)); + } + + function _0x445ef4(_0x3db039, _0xa97f2c) { + var _0x111dd7; + var _0x13267f; + var _0x4f9b31 = _0x58cf0b(_0x3db039); + var _0x4aa321 = []; + var _0x28b715 = []; + for (_0x4aa321[15] = _0x28b715[15] = undefined, _0x4f9b31.length > 16 && (_0x4f9b31 = _0x9e36fc(_0x4f9b31, 8 * _0x3db039.length)), _0x111dd7 = 0; 16 > _0x111dd7; _0x111dd7 += 1) { + _0x4aa321[_0x111dd7] = 909522486 ^ _0x4f9b31[_0x111dd7]; + _0x28b715[_0x111dd7] = 1549556828 ^ _0x4f9b31[_0x111dd7]; + } + _0x13267f = _0x9e36fc(_0x4aa321.concat(_0x58cf0b(_0xa97f2c)), 512 + 8 * _0xa97f2c.length); + return _0x474399(_0x9e36fc(_0x28b715.concat(_0x13267f), 640)); + } + + function _0x2acaa8(_0xc47959) { + var _0x4e7ed5; + var _0x51c2ae; + var _0x4d44da = "0123456789abcdef"; + var _0x1ebc07 = ""; + for (_0x51c2ae = 0; _0x51c2ae < _0xc47959.length; _0x51c2ae += 1) { + _0x4e7ed5 = _0xc47959.charCodeAt(_0x51c2ae); + _0x1ebc07 += _0x4d44da.charAt(_0x4e7ed5 >>> 4 & 15) + _0x4d44da.charAt(15 & _0x4e7ed5); + } + return _0x1ebc07; + } + + function _0x121bf0(_0x631fbf) { + return unescape(encodeURIComponent(_0x631fbf)); + } + + function _0x218f09(_0x3f20d0) { + return _0x538feb(_0x121bf0(_0x3f20d0)); + } + + function _0x344538(_0x3272ca) { + return _0x2acaa8(_0x218f09(_0x3272ca)); + } + + function _0x368c5d(_0x5615f1, _0x33dcea) { + return _0x445ef4(_0x121bf0(_0x5615f1), _0x121bf0(_0x33dcea)); + } + + function _0x689745(_0x598b54, _0x178048) { + return _0x2acaa8(_0x368c5d(_0x598b54, _0x178048)); + } + + function _0x42da5a(_0x5112c3, _0xccc72d, _0x2b086d) { + return _0xccc72d ? _0x2b086d ? _0x368c5d(_0xccc72d, _0x5112c3) : _0x689745(_0xccc72d, _0x5112c3) : _0x2b086d ? _0x218f09(_0x5112c3) : _0x344538(_0x5112c3); + } + + return _0x42da5a(inputStr); +} + +$.exports = { + setH5Str, +} + +// 调用示例 +// const result = setH5Str("example input"); +// console.log(result); diff --git a/js/_lib.request.cjs b/js/_lib.request.cjs index 1b7923a..7af80c5 100644 --- a/js/_lib.request.cjs +++ b/js/_lib.request.cjs @@ -1,4 +1,4 @@ -const axios = require('axios'); +// const axios = require('axios'); async function getPublicIp1() { let ip_obj = JSON.parse((await req('http://httpbin.org/ip')).content); diff --git a/js/gaze.js b/js/gaze.js new file mode 100644 index 0000000..c210c0e --- /dev/null +++ b/js/gaze.js @@ -0,0 +1,591 @@ +globalThis.window = globalThis.global = globalThis; + +class Go { + constructor() { + let s = new TextEncoder("utf-8"), + i = new TextDecoder("utf-8"), + r = new DataView(new ArrayBuffer(8)); + var o = []; + + this._callbackTimeouts = new Map(); + this._nextCallbackTimeoutID = 1; + let e = () => new DataView(this._inst.exports.m.buffer); + let t = (e) => { + r.setBigInt64(0, e, !0); + let t = r.getFloat64(0, !0); + if (0 === t) return; + if (!isNaN(t)) return t; + let n = 4294967295n & e; + return this._values[n]; + }; + let n = (n) => { + let s = e().getBigUint64(n, !0); + return t(s); + }; + let l = (e) => { + if ("number" == typeof e) + return isNaN(e) + ? 2146959360n << 32n + : 0 === e + ? (2146959360n << 32n) | 1n + : (r.setFloat64(0, e, !0), r.getBigInt64(0, !0)); + switch (e) { + case void 0: + return 0n; + case null: + return (2146959360n << 32n) | 2n; + case !0: + return (2146959360n << 32n) | 3n; + case !1: + return (2146959360n << 32n) | 4n; + } + let t = this._ids.get(e); + void 0 === t && + (void 0 === (t = this._idPool.pop()) && + (t = BigInt(this._values.length)), + (this._values[t] = e), + (this._goRefCounts[t] = 0), + this._ids.set(e, t)), + this._goRefCounts[t]++; + let n = 1n; + switch (typeof e) { + case "string": + n = 2n; + break; + case "symbol": + n = 3n; + break; + case "function": + n = 4n; + } + return t | ((2146959360n | n) << 32n); + }; + let a = (t, n) => { + let s = l(n); + e().setBigUint64(t, s, !0); + }; + let c = (e, t, n) => new Uint8Array(this._inst.exports.m.buffer, e, t); + let $ = (e, t, s) => { + let i = Array(t); + for (let r = 0; r < t; r++) i[r] = n(e + 8 * r); + return i; + }; + let d = (e, t) => i.decode(new DataView(this._inst.exports.m.buffer, e, t)); + let u = Date.now() - performance.now(); + this.importObject = { + wasi_snapshot_preview1: { + fd_write: function (t, n, s, r) { + let l = 0; + if (1 == t) + for (let a = 0; a < s; a++) { + let c = n + 8 * a, + $ = e().getUint32(c + 0, !0), + d = e().getUint32(c + 4, !0); + l += d; + for (let u = 0; u < d; u++) { + let f = e().getUint8($ + u); + if (13 == f); + else if (10 == f) { + let h = i.decode(new Uint8Array(o)); + (o = []), console.log(h); + } else o.push(f); + } + } + else console.error("invalid file descriptor:", t); + return e().setUint32(r, l, !0), 0; + }, + fd_close: () => 0, + fd_fdstat_get: () => 0, + fd_seek: () => 0, + proc_exit(e) { + if (globalThis.process) process.exit(e); + else throw "trying to exit with code " + e; + }, + random_get: (e, t) => (crypto.getRandomValues(c(e, t)), 0), + }, + a: { + "runtime.ticks": () => u + performance.now(), + "runtime.sleepTicks": (e) => { + setTimeout(this._inst.exports.t, e); + }, + d(e) { + console.error("d not implemented"); + }, + e(e, t) { + let n = d(e, t); + return l(n); + }, + a(e, n, s) { + let i = d(n, s), + r = t(e), + o = Reflect.get(r, i); + return l(o); + }, + f(e, n, s, i) { + let r = t(e), + o = d(n, s), + l = t(i); + Reflect.set(r, o, l); + }, + "syscall/js.valueDelete"(e, n, s) { + let i = t(e), + r = d(n, s); + Reflect.deleteProperty(i, r); + }, + i: (e, n) => l(Reflect.get(t(e), n)), + fIndex(e, n, s) { + Reflect.set(t(e), n, t(s)); + }, + j(n, s, i, r, o, l, c) { + let u = t(s), + f = d(i, r), + h = $(o, l, c); + try { + let g = Reflect.get(u, f); + a(n, Reflect.apply(g, u, h)), e().setUint8(n + 8, 1); + } catch (p) { + a(n, p), e().setUint8(n + 8, 0); + } + }, + "syscall/js.valueInvoke"(n, s, i, r, o) { + try { + let l = t(s), + c = $(i, r, o); + a(n, Reflect.apply(l, void 0, c)), e().setUint8(n + 8, 1); + } catch (d) { + a(n, d), e().setUint8(n + 8, 0); + } + }, + g(n, s, i, r, o) { + let l = t(s), + c = $(i, r, o); + try { + a(n, Reflect.construct(l, c)), e().setUint8(n + 8, 1); + } catch (d) { + a(n, d), e().setUint8(n + 8, 0); + } + }, + h: (e) => t(e).length, + b(n, i) { + let r = String(t(i)), + o = s.encode(r); + a(n, o), e().setInt32(n + 8, o.length, !0); + }, + c(e, n, s, i) { + let r = t(e); + c(n, s, i).set(r); + }, + "syscall/js.valueInstanceOf": (e, n) => t(e) instanceof t(n), + k(n, s, i, r, o) { + let l = n + 4, + a = c(s, i), + $ = t(o); + if (!($ instanceof Uint8Array || $ instanceof Uint8ClampedArray)) { + e().setUint8(l, 0); + return; + } + let d = $.subarray(0, a.length); + a.set(d), e().setUint32(n, d.length, !0), e().setUint8(l, 1); + }, + l(n, s, i, r, o) { + let l = n + 4, + a = t(s), + $ = c(i, r); + if (!(a instanceof Uint8Array || a instanceof Uint8ClampedArray)) { + e().setUint8(l, 0); + return; + } + let d = $.subarray(0, a.length); + a.set(d), e().setUint32(n, d.length, !0), e().setUint8(l, 1); + }, + }, + }; + this.importObject.env = this.importObject.a; + } + async run(instance) { + this._inst = instance; + this._values = [NaN, 0, null, true, false, globalThis, this]; + this._goRefCounts = []; + this._ids = new Map(); + this._idPool = []; + this.exited = false; + while (true) { + const resumePromise = new Promise((resolve) => { + this._resolveCallbackPromise = () => { + if (this.exited) { + throw new Error("bad callback: Go program has already exited"); + } + setTimeout(resolve, 0); + }; + }); + + this._inst.exports.r(); + if (this.exited) break; + + await resumePromise; + } + } + _resume() { + if (this.exited) { + throw new Error("Go program has already exited"); + } + this._inst.exports.s(); + if (this.exited) { + this._resolveExitPromise(); + } + } + _makeFuncWrapper(funcId) { + const self = this; + return function () { + const event = { + id: funcId, + this: this, + args: arguments, + }; + self._pendingEvent = event; + self._resume(); + const result = event.result; + return result; + }; + } +} + +const decryptor = (() => { + let wasmInstance = null; + let go = new Go(); + + const pedanticAe = function (buffer) { + const decompressedSync = zlib.brotliDecompressSync(buffer); + return decompressedSync; + }; + const initWASM = async (func) => { + const wasmBuffer = await fetchWASM(); + const { instance } = await WebAssembly.instantiate( + wasmBuffer, + go.importObject + ); + wasmInstance = instance; + go.run(instance); + }; + const fetchWASM = async () => { + const response = await axios.get( + "https://temp-rs-1257790209.cos.ap-chengdu.myqcloud.com/IceDespair-V2.6.svg", + { + responseType: "arraybuffer", + headers: { + "Content-Type": "application/wasm", + }, + } + ); + return pedanticAe(new Uint8Array(response.data)); + }; + const parseUrlParams = (url) => { + const params = {}; + const queryString = url.split("?")[1]; + if (!queryString) return params; + + queryString.split("-").forEach((pair) => { + const [key, value] = pair.split("="); + if (key && value) params[key] = decodeURIComponent(value); + }); + return params; + }; + const getWasmFunc = (name, mid, key) => { + return window[ + bytesToString(window["DimGive"](name, mid, decodeURIComponent(key))) + ]; + }; + const decryptDataM3u = async (bytes, sign, mid, key) => { + if (!wasmInstance) await initWASM(); + const result = getWasmFunc("nihilism", mid, key)( + bytes, + sign, + mid, + decodeURIComponent(key) + ); + return bytesToString(pedanticAe(result)); + }; + const decryptData = async (data, mid, key) => { + if (!wasmInstance) await initWASM(); + const result = getWasmFunc("8069", mid, key)( + data, + mid, + decodeURIComponent(key) + ); + return bytesToString(result); + }; + const decryptStream = async (data, mid, key, url) => { + if (!url.includes("gazes_v-@_info")) return url; + const istr = url.split("/").at(-1); + const ungzipped = pako.ungzip(data, { + to: "string", + }); + const bytes = processBytes(CryptoJS.enc.Base64.parse(ungzipped)); + const sign = CryptoJS.MD5( + `${istr}- are we anti-socialists? against the government? spies? traitor? fresh blood? no, we are just weak, sick bystanders; we just need to rot little by little with formalism until we finally become food for new shoots. ` + ) + .toString() + .substring(8, 24); + return decryptDataM3u(bytes, sign, mid, key); + }; + const processBytes = (base64Data) => { + return Uint8Array.from( + { + length: base64Data.sigBytes, + }, + (_, i) => (base64Data.words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff + ); + }; + const bytesToString = (byteArray) => { + return String.fromCharCode.apply(null, byteArray); + }; + const decryptPlay = async (playUrl, src) => { + const params = parseUrlParams(playUrl); + const encryptedSrc = src; + const decryptedLink = await decryptData( + Uint8Array.from(atob(encryptedSrc), (c) => c.charCodeAt(0)), + params.mid, + params[Object.keys(params).at(-1)] + ); + return decryptedLink; + }; + const decryptM3u8 = async (playUrl, src, decryptedLink) => { + const params = parseUrlParams(playUrl); + const encryptedSrc = src; + const { data } = await axios.get(decryptedLink, { + responseType: "arraybuffer", + }); + const m3u8 = await decryptStream( + data, + params.mid, + params[Object.keys(params).at(-1)], + decryptedLink + ); + return m3u8; + }; + return { + decryptM3u8, + decryptPlay, + parseUrlParams, + }; +})(); + +var rule = { + 类型: "影视", + title: "GAZE", + desc: "源动力+L佬+秋秋+嗷呜 联合出品", + host: "https://gaze.run", + url: "/filter_movielist", + searchUrl: "/filter_movielist", + searchable: 2, + quickSearch: 0, + timeout: 5000, + play_parse: true, + filterable: 0, + class_name: "电影&剧集&番剧&国漫", + class_url: "1&2&bangumi&chinese_cartoon", + headers: { + "User-Agent": PC_UA, + Origin: "https://gaze.run", + }, + 预处理: async () => { + await rule.dealHeaders(); + }, + 推荐: async function (tid, pg, filter, extend) { + const { input, pdfa, pdfh, pd } = this; + const html = await request(input); + const d = []; + const data = pdfa(html, ".row .card"); + data.forEach((it) => { + d.push({ + title: pdfh(it, ".card-body .card-title&&Text"), + pic_url: pdfh(it, ".view img.load-imgs&&data-src"), + desc: pdfh(it, ".view .dbadge-box .badge-default&&Text"), + url: pdfh(it, ".view a&&href").replace("play/", ""), + }); + }); + return setResult(d); + }, + 一级: async function (tid, pg, filter, extend) { + const { input } = this; + const html = await request(input, { + method: "POST", + headers: { + ...this.headers, + "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", + }, + data: { + mform: tid, + mcountry: "all", + "tag_arr[]": "all", + album: "all", + years: "all", + sort: "updatetime", + title: "", + page: pg, + }, + }); + const resp = JSON.parse(html); + const d = []; + resp.mlist.forEach((it) => { + d.push({ + title: it.title, + pic_url: it.cover_img, + desc: `${it.grade}|${it.definition}`, + url: it.mid, + }); + }); + return setResult(d); + }, + 二级: async function (ids) { + const { input, pdfa, pdfh, pd } = this; + const html = await request(`${this.host}/play/${ids[0]}`, { + headers: this.headers, + }); + const vod = { + vod_id: ids[0], + vod_name: pdfh(html, ".row.p-2 img&&alt"), + vod_pic: pdfh(html, ".row.p-2 img&&src"), + type_name: pdfa(html, ".row.p-2 a") + .map((it) => pdfh(it, "a&&Text")) + .join("/"), + vod_remarks: pdfh(html, ".row.p-2 h5:eq(-1)&&Text"), + vod_year: pdfh(html, ".row.p-2 a:eq(-1)&&Text"), + vod_area: pdfh(html, ".row.p-2 a:eq(-2)&&Text"), + vod_content: pdfh(html, ".row.p-2 p&&Text"), + vod_play_from: "源动力偷的线路", + vod_play_url: pdfa(html, ".col-md-12&&.sbtn-block") + .map( + (it) => + `${pdfh(it, "button--i&&Text").trim()}$${ids[0]}|${pdfh( + it, + "button&&data-src" + )}` + ) + .join("#"), + }; + return vod; + }, + 搜索: async function (wd, quick, pg) { + const { input } = this; + const html = await request(input, { + method: "POST", + headers: { + ...this.headers, + "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", + }, + data: { + mform: "all", + mcountry: "all", + "tag_arr[]": "all", + album: "all", + years: "all", + sort: "updatetime", + title: wd, + page: pg, + }, + }); + const resp = JSON.parse(html); + const d = []; + resp.mlist.forEach((it) => { + d.push({ + title: it.title, + pic_url: it.cover_img, + desc: `${it.grade}|${it.definition}`, + url: it.mid, + }); + }); + return setResult(d); + }, + lazy: async function (flag, id, flags) { + const { pdfa, pdfh } = this; + const [data_id, data_src] = id.split("|"); + const sourceReqUrl = `${this.host}/play/${data_id}`; + console.warn(data_id, data_src); + const source = await axios.get(sourceReqUrl, { headers: this.headers }); + const script = pdfa(source.data, "script"); + const scriptContent = script.filter((e) => + e.includes("configs-n26.1.js") + )[0]; + const sourceUrl = pdfh(scriptContent, "script&&src"); + console.warn("sourceUrl", sourceUrl); + + let play = await decryptor.decryptPlay(sourceUrl, data_src); + + if (play.includes("gazes_v-@_info")) { + return { + parse: 0, + url: + getProxyUrl() + + "&playdata=" + + encodeURIComponent(JSON.stringify([sourceUrl, data_src, play])) + + "&t=0", + }; + } else { + if (play.includes("cloud.189.cn")) { + let js_data = decryptor.parseUrlParams(sourceUrl); + const thirdKey = Object.keys(js_data)[2]; + + try { + const re_link = await axios.post( + `${this.host}/fetch_189c_murl`, + { + urls: play, + mid: js_data.mid, + }, + { + headers: { + "Content-Type": + "application/x-www-form-urlencoded; charset=UTF-8", + Accept: "*/*", + Origin: this, + [thirdKey]: encodeURIComponent(js_data[thirdKey]), + Cookie: source.headers["set-cookie"] + .map((it) => it.split(";")[0]) + .join(";"), + }, + } + ); + console.log("API Response:", re_link.data); + play = re_link.data?.url; + } catch (error) { + console.error("Request Failed:", error); + } + } + return { + parse: 0, + url: play, + }; + } + }, + proxy_rule: async function (params) { + try { + const segments = JSON.parse(decodeURIComponent(params.playdata)); + let [sourceUrl, data_src, play] = segments; + console.log(segments); + + let m3u8 = await decryptor.decryptM3u8(sourceUrl, data_src, play); + return [200, "text/text", m3u8]; + } catch (e) { + console.log(e); + } + }, + dealHeaders: async function () { + const resp = await axios.get(`${this.host}/filter`, { + headers: this.headers, + }); + // cookie 处理 + const headers = resp.headers; + const cookies = headers["set-cookie"]; + const cookie = cookies.map((item) => item.split(";")[0]).join("; "); + this.headers.Cookie = cookie; + // 请求头处理 + const html = resp.data; + const kv_macth = html.match(/'headers':({[^{}]*})/)[1]; + const kv_headers = new Function(`return ${kv_macth}`)(); + for (const key in kv_headers) { + this.headers[key] = kv_headers[key]; + } + console.warn("headers", this.headers); + }, +}; diff --git a/js/iptv.js b/js/iptv.js new file mode 100644 index 0000000..392e902 --- /dev/null +++ b/js/iptv.js @@ -0,0 +1,134 @@ +var rule = { + 类型: '代理', + title: 'iptv', + alias: 'iptv代理引擎', + desc: '仅代理源纯js写法', + host: 'hiker://empty', + url: '', + searchUrl: '', + headers: { + 'User-Agent': 'PC_UA', + }, + searchable: 0, + quickSearch: 0, + filterable: 0, + double: true, + play_parse: true, + limit: 10, + class_name: '', + class_url: '', + lazy: async function () { + }, + proxy_rule: async function (params) { + let {input, proxyPath, getProxyUrl} = this; + // log('proxyPath:', proxyPath); + // log('getProxyUrl:', getProxyUrl()); + // log('params:', params); + let resp_not_found = [404, 'text/plain', 'not found']; + if (proxyPath === 'live') { + let m3u_text = pathLib.readFile('./iptv/iptv.m3u'); + let m3u_api = getProxyUrl().split('?')[0] + 'jsyd'; + let m3u_content = m3u_text.replaceAll('http://$api', m3u_api); + return [200, 'text/plain', m3u_content] + } else if (proxyPath === 'jsyd') { + const {p, id} = params; + if (!p || !id) { + return resp_not_found + } + const cleanId = id.replace('.m3u8', ''); + const authParams = await fHurl(cleanId, p); + + const redirectUrl = `http://tptvh.mobaibox.com/${p}/lookback/${cleanId}/${cleanId}?${authParams}&Author=DaBenDan`; + return [302, null, '', {location: redirectUrl}] + } + return resp_not_found + }, + action: async function (action, value) { + if (action === 'only_proxy') { + return '此源为纯代理源,你直接复制代理地址拿去用就好了' + } + return `没有动作:${action}的可执行逻辑` + }, + 推荐: async function () { + let {getProxyUrl} = this; + let live_url = getProxyUrl().split('?')[0] + 'live'; + log('live_url:', live_url); + return [{ + vod_id: 'only_proxy', + vod_name: '这是个纯代理源哦', + vod_tag: 'action' + }, + { + vod_id: JSON.stringify({ + actionId: '代理地址', + id: 'proxy_iptv', + type: 'input', + title: '直接用的代理m3u链接', + value: live_url, + }), + vod_name: '复制代理地址', + vod_tag: 'action' + } + ] + }, + 一级: async function () { + return [] + }, + 二级: async function () { + return {} + }, + 搜索: async function () { + return [] + } +} + +// 模拟 PHP 的 f_curl 函数 +const fCurl = async (url, headers = {}, data = null, resolveHosts = null, includeHeaders = false) => { + try { + const options = { + url, + method: data ? 'POST' : 'GET', + headers, + data, + validateStatus: () => true, + }; + + if (resolveHosts) { + options.headers['Host'] = resolveHosts; + } + + const response = await axios(options); + return includeHeaders ? response.headers : response.data; + } catch (error) { + console.error('Error in fCurl:', error.message); + return null; + } +}; + +// 模拟 PHP 的 f_hurl 函数 +const fHurl = async (id, pt, attempt = 1) => { + if (attempt > 3) { + throw new Error('404'); + } + + const headers = {'User-Agent': 'okhttp/3.12.0'}; + const requestBody = JSON.stringify({ContentID: id}); + const response = await fCurl('http://223.105.251.59:33200/EPG/Ott/jsp/Auth.jsp', headers, requestBody); + + if (!response) { + throw new Error('404'); + } + + const auth = response?.AuthCode; + + if (!auth) { + throw new Error('404'); + } + + if (auth === 'accountinfo=') { + return fHurl(id, pt, attempt + 1); + } + + const decodedAuth = decodeURIComponent(auth).split(':')[0] + ',END'; + return decodedAuth; +}; diff --git a/js/push_agent.js b/js/push_agent.js index 4ddb26b..d4b8167 100644 --- a/js/push_agent.js +++ b/js/push_agent.js @@ -25,9 +25,9 @@ var rule = { let vod = { vod_pic: icon, vod_id: orId, - vod_content: orId || '温馨提醒:宝子们,推送的时候记得确保ids存在哟~', - vod_name: 'DS推送:道长&秋秋倾情打造', + vod_content: 'DS推送:道长&秋秋倾情打造', } + let playPans = []; if (/^[\[{]/.test(input.trim())) { try { let push_vod = JSON.parse(input); @@ -51,12 +51,13 @@ var rule = { } } log('[push_agent] decode input:', input); - if (input.indexOf('#') > -1) { - let list = input.split('#'); + if (input.indexOf('@') > -1) { + let list = input.split('@'); // log(list); for (let i = 0; i < list.length; i++) { - if (/pan.quark.cn|drive.uc.cn|www.alipan.com|www.aliyundrive.com|cloud.189.cn|yun.139.com/.test(list[i])) { + if (/pan.quark.cn|drive.uc.cn|www.alipan.com|www.aliyundrive.com|cloud.189.cn|yun.139.com|www.123684.com|www.123865.com|www.123912.com|www.123pan.com|www.123pan.cn|www.123592.com/.test(list[i])) { if (/pan.quark.cn/.test(list[i])) { + playPans.push(list[i]); const shareData = Quark.getShareData(list[i]); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -73,6 +74,7 @@ var rule = { } } if (/drive.uc.cn/.test(list[i])) { + playPans.push(list[i]); const shareData = UC.getShareData(list[i]); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -89,6 +91,7 @@ var rule = { } } if (/www.alipan.com|www.aliyundrive.com/.test(list[i])) { + playPans.push(list[i]); const shareData = Ali.getShareData(list[i]); if (shareData) { const videos = await Ali.getFilesByShareUrl(shareData); @@ -106,6 +109,7 @@ var rule = { } } if (/cloud.189.cn/.test(list[i])) { + playPans.push(list[i]); let data = await Cloud.getShareData(list[i]) Object.keys(data).forEach(it => { playform.push('Cloud-' + it) @@ -114,23 +118,34 @@ var rule = { }) } if (/yun.139.com/.test(list[i])) { + playPans.push(list[i]); let data = await Yun.getShareData(list[i]) - playform = data.map(it => { - return 'Yun-' + it.name - }) - let json = await Promise.all(data.map(it => Yun.getShareUrl(it.path))) - json.forEach(it => { - const urls = it.map(item => item.name + "$" + [item.contentId, item.linkID].join('*')) - playurls.push(urls.join('#')) + Object.keys(data).forEach(it => { + playform.push('Yun-' + it) + const urls = data[it].map(item => item.name + "$" + [item.contentId, item.linkID].join('*')).join('#'); + playurls.push(urls); }) } + if(/www.123684.com|www.123865.com|www.123912.com/.test(list[i])) { + playPans.push(list[i]); + let shareData = await Pan.getShareData(list[i]) + let videos = await Pan.getFilesByShareUrl(shareData) + if (videos.length > 0) { + playform.push('Pan123-' + shareData); + playurls.push(videos.map((v) => { + const list = [v.ShareKey, v.FileId, v.S3KeyFlag, v.Size, v.Etag]; + return v.FileName + '$' + list.join('*'); + }).join('#')) + } + } } else { playform.push('推送'); playurls.push("推送" + '$' + list[i]) } } - } else if (/pan.quark.cn|drive.uc.cn|www.alipan.com|www.aliyundrive.com|cloud.189.cn|yun.139.com/.test(input)) { + } else if (/pan.quark.cn|drive.uc.cn|www.alipan.com|www.aliyundrive.com|cloud.189.cn|yun.139.com|www.123684.com|www.123865.com|www.123912.com|www.123pan.com|www.123pan.cn|www.123592.com/.test(input)) { if (/pan.quark.cn/.test(input)) { + playPans.push(input); const shareData = Quark.getShareData(input); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -147,6 +162,7 @@ var rule = { } } if (/drive.uc.cn/.test(input)) { + playPans.push(input); const shareData = UC.getShareData(input); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -163,6 +179,7 @@ var rule = { } } if (/www.alipan.com|www.aliyundrive.com/.test(input)) { + playPans.push(input); const shareData = Ali.getShareData(input); if (shareData) { const videos = await Ali.getFilesByShareUrl(shareData); @@ -180,6 +197,7 @@ var rule = { } } if (/cloud.189.cn/.test(input)) { + playPans.push(input); let data = await Cloud.getShareData(input) Object.keys(data).forEach(it => { playform.push('Cloud-' + it) @@ -188,14 +206,25 @@ var rule = { }) } if (/yun.139.com/.test(input)) { + playPans.push(input); let data = await Yun.getShareData(input) - playform = data.map(it => { - return 'Yun-' + it.name + Object.keys(data).forEach(it => { + playform.push('Yun-' + it) + const urls = data[it].map(item => item.name + "$" + [item.contentId, item.linkID].join('*')).join('#'); + playurls.push(urls); }) - let json = await Promise.all(data.map(it => Yun.getShareUrl(it.path))) - json.forEach(it => { - const urls = it.map(item => item.name + "$" + [item.contentId, item.linkID].join('*')) - playurls.push(urls.join('#')) + } + if(/www.123684.com|www.123865.com|www.123912.com|www.123pan.com|www.123pan.cn|www.123592.com/.test(input)) { + playPans.push(input); + let shareData = await Pan.getShareData(input) + let videos = await Pan.getFilesByShareUrl(shareData) + Object.keys(videos).forEach(it => { + playform.push('Pan123-' + it) + const urls = videos[it].map(v => { + const list = [v.ShareKey, v.FileId, v.S3KeyFlag, v.Size, v.Etag]; + return v.FileName + '$' + list.join('*'); + }).join('#'); + playurls.push(urls); }) } } else { @@ -204,6 +233,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, lazy: async function (flag, id, flags) { @@ -216,7 +246,7 @@ var rule = { } else { return {parse: 1, url: input} } - } else if (/Quark-|UC-|Ali-|Cloud-|Yun-/.test(flag)) { + } else if (/Quark-|UC-|Ali-|Cloud-|Yun-|Pan123-/.test(flag)) { const ids = input.split('*'); const urls = []; let UCDownloadingCache = {}; @@ -232,7 +262,11 @@ var rule = { }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#'); urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); - urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -244,22 +278,13 @@ var rule = { } } if (flag.startsWith('UC-')) { - log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } if (flag.startsWith('Ali-')) { const transcoding_flag = { @@ -303,8 +328,21 @@ var rule = { url: url } } + if(flag.startsWith('Pan123-')) { + log('盘123解析开始') + const url = await Pan.getDownload(ids[0],ids[1],ids[2],ids[3],ids[4]) + urls.push("原画",url) + let data = await Pan.getLiveTranscoding(ids[0],ids[1],ids[2],ids[3],ids[4]) + data.forEach((item) => { + urls.push(item.name,item.url) + }) + return { + parse: 0, + url: urls + } + } } else { return input } }, -} +} \ No newline at end of file diff --git "a/js/\344\275\216\347\253\257[\347\233\230].js" "b/js/\344\275\216\347\253\257[\347\233\230].jsd" similarity index 100% rename from "js/\344\275\216\347\253\257[\347\233\230].js" rename to "js/\344\275\216\347\253\257[\347\233\230].jsd" diff --git "a/js/\345\205\250\346\260\221\350\277\275\345\211\247.js" "b/js/\345\205\250\346\260\221\350\277\275\345\211\247.js" new file mode 100644 index 0000000..b563217 --- /dev/null +++ "b/js/\345\205\250\346\260\221\350\277\275\345\211\247.js" @@ -0,0 +1,107 @@ +var rule = { + 类型:'影视', + title:'全民追剧', + desc:'不告诉你', + host:'https://jenzg.cn', + url: '/index.php/vod/showfyfilter.html[/index.php/vod/showfyclass.html]', + searchUrl: '/index.php/vod/search/page/fypage/wd/**.html', + searchable:1,quickSearch:1,double:false,timeout:5000,play_parse:true,filterable:1,invalid:true, + class_name:'电影&电视剧&综艺&动漫&短剧', + class_url:'/id/61&/id/79&/id/88&/id/93&/id/99', + filter_url:'{{fl.area}}{{fl.class}}{{fl.cateId}}/page/fypage{{fl.year}}', + filter_def:{'/id/61':{cateId:'/id/61'},'/id/79':{cateId:'/id/79'},'/id/88':{cateId:'/id/88'},'/id/93':{cateId:'/id/93'},'/id/99':{cateId:'/id/99'}}, + 预处理: async () => {return []}, + 推荐: async function (tid, pg, filter, extend) { + let homeFn = rule.一级.bind(this); + return await homeFn(); + }, + 一级: async function (tid, pg, filter, extend) { + let {input, pdfa, pdfh, pd} = this; + let html = await request(input); + let d = []; + let data = pdfa(html, '.module-items .module-item'); + data.forEach((it) => { + d.push({ + title: pdfh(it, 'a&&title'), + pic_url: pd(it, 'img&&data-src'), + desc: pdfh(it, '.module-item-text&&Text'), + url: pd(it, 'a&&href'), + }) + }); + return setResult(d) + }, + 二级: async function (ids) { + let {input, pdfa, pdfh, pd} = this; + let html = await request(input); + let VOD = {}; + VOD.vod_name = pdfh(html, 'h1&&Text');//名称 + VOD.vod_actor = pdfh(html, '.video-info-items:eq(1)&&Text');//演员 + VOD.vod_director = pdfh(html, '.video-info-items:eq(0)&&Text');//导演 + VOD.vod_remarks = pdfh(html, '');//备注 + VOD.vod_status = pdfh(html, '');//状态 + VOD.vod_content = pdfh(html, '.video-info-content&&Text');//简介 + let playlist = pdfa(html, '.module-list'); + let tabs = pdfa(html, '.module-tab&&.module-tab-item.tab-item'); + let playmap = {}; + tabs.map((item, i) => { + const form = pdfh(item, 'span&&Text'); + const list = playlist[i]; + const a = pdfa(list, 'body&&a:not(:contains(排序))'); + a.map((it) => { + let title = pdfh(it, 'a&&Text'); + let urls = pd(it, 'a&&href', input); + if (!playmap.hasOwnProperty(form)) { + playmap[form] = []; + } + playmap[form].push(title + "$" + urls); + }); + }); + VOD.vod_play_from = Object.keys(playmap).join('$$$'); + const urls = Object.values(playmap); + const playUrls = urls.map((urllist) => { + return urllist.join("#"); + }); + VOD.vod_play_url = playUrls.join('$$$'); + return VOD; + }, + 搜索: async function (wd, quick, pg) { + let {input, pdfa, pdfh, pd} = this; + let html = await request(input); + let d = []; + let data = pdfa(html, '.module-items .module-search-item'); + data.forEach((it) => { + d.push({ + title: pdfh(it, 'a&&title'), + pic_url: pd(it, 'img&&data-src'), + desc: pdfh(it, '.video-serial&&Text'), + url: pd(it, 'a&&href'), + content: pdfh(it, '.video-info-aux&&Text'), + }) + }); + return setResult(d); + }, + lazy: async function (flag, id, flags) { + let {input, pdfa, pdfh, pd} = this; + let html = await request(input); + html = JSON.parse(html.match(/r player_.*?=(.*?) { + return [] + }, + 推荐: async function (tid, pg, filter, extend) { + const { input, pdfa, pdfh, pd, getProxyUrl } = this; + const html = await request(input); + const d = []; + const data = pdfa(html, '.video-wrap .list-wrap .item-wrap'); + + data.forEach((it) => { + const img = pdfh(it, '.normal-wrap .bg-cover&&data-src'); + + d.push({ + title: pdfh(it, '.meta-wrap a&&Text'), + pic_url: getProxyUrl() + '&url=' + base64Encode(encodeURIComponent(img)), + desc: pdfh(it, '.meta-wrap .category&&Text'), + url: pdfh(it, '.meta-wrap a&&href'), + }) + }); + + return setResult(d); + }, + 一级: async function (tid, pg, filter, extend) { + const { input, pdfa, pdfh, pd, getProxyUrl } = this; + const html = await request(input); + const d = []; + const data = pdfa(html, '.video-wrap .list-wrap .item-wrap'); + + data.forEach((it) => { + const img = pdfh(it, '.normal-wrap .bg-cover&&data-src'); + + d.push({ + title: pdfh(it, '.meta-wrap a&&Text'), + pic_url: getProxyUrl() + '&url=' + base64Encode(encodeURIComponent(img)), + desc: pdfh(it, '.meta-wrap .category&&Text'), + url: pdfh(it, '.meta-wrap a&&href'), + }) + }); + + return setResult(d); + }, + 二级: async function (ids) { + const { input, pdfa, pdfh, pd, getProxyUrl } = this; + const html = await request(`${rule.host}${ids[0]}`); + const img = pdfh(html, '.info-more .meta-wrap .thumb&&data-src'); + + const vod = { + vod_id: ids[0], + vod_name: pdfh(html, '.tab-body h1.title&&Text'), + vod_pic: getProxyUrl() + '&url=' + base64Encode(encodeURIComponent(img)), + vod_content: pdfh(html, '.info-more .desc&&Text'), + vod_remarks: pdfh(html, '.info-more .meta-wrap .mb-2&&Text'), + type_name: pdfh(html, '.info-more .meta-wrap .tag-list a&&Text') + }; + let playFroms = []; + let playUrls = []; + + const tmpFroms = {}; + const playList = pdfa(html, '.line-header .item-wrap'); + playList.forEach((it) => { + const line = pdfh(it, 'div&&data-line'); + const name = pdfh(it, 'div&&Text'); + playFroms.push(name); + tmpFroms[line] = name; + }); + + const tmpIndexs = {}; + const indexList = pdfa(html, '.line-list .anthology-list .inner-wrap .item-wrap'); + indexList.forEach((it) => { + const index = pdfh(it, 'span.number&&Text'); + const url = pdfh(it, 'div&&data-id'); + tmpIndexs[index] = url; + }); + + for (item1 in tmpFroms) { + const tmpUrls = []; + for (item2 in tmpIndexs) { + const newIndex = `${item1}-${ids[0]}-${tmpIndexs[item2]}`; + tmpUrls.push(`${item2}$${newIndex}`); + } + playUrls.push(tmpUrls.join('#')); + } + vod.vod_play_from = playFroms.join('$$$'); + vod.vod_play_url = playUrls.join('$$$'); + + return vod; + }, + 搜索: async function (wd, quick, pg) { + const { input, pdfa, pdfh, pd, getProxyUrl } = this; + const html = await request(input); + const d = []; + const data = pdfa(html, '.video-wrap .list-wrap .item-wrap'); + + data.forEach((it) => { + const img = pdfh(it, '.normal-wrap .bg-cover&&data-src'); + d.push({ + title: pdfh(it, '.meta-wrap a&&Text'), + pic_url: getProxyUrl() + '&url=' + base64Encode(encodeURIComponent(img)), + desc: pdfh(it, '.meta-wrap .category&&Text'), + url: pdfh(it, '.meta-wrap a&&href'), + }) + }); + return setResult(d); + }, + lazy: async function (flag, id, flags) { + const { input, pdfa, pdfh, pd } = this; + const [vod_from, vod_id, vod_url] = id.split("-"); + const detailUrl = `${rule.host}${vod_id}`; + const cookie = rule.generateCookie(); + const html = await request(detailUrl, { + method: 'POST', + headers: { + "Content-Type": 'application/x-www-form-urlencoded; charset=UTF-8', + origin: 'https://fktv.me', + referer: detailUrl, + cookie: cookie + }, + data: `link_id=${vod_url}&is_switch=1` + }); + const response = JSON.parse(html); + + if (response.data.play_error !== '') { + return { parse: 1, url: detailUrl } + }; + + const list = response.data.play_links; + const item = list.find((item) => item.id === vod_from); + const playUrl = `${rule.host}${item.m3u8_url}`; + + if (/m3u8|mp4/.test(playUrl)) { + return { parse: 0, url: playUrl } + } else { + return { parse: 1, url: detailUrl } + } + }, + proxy_rule: async function () { + const { input } = this; + const rawInput = input.replace(/ /g, '+'); + const url = decodeURIComponent(base64Decode(rawInput)); + if (input) { + const img_base64 = await rule.decodeImg(url); + return [200, 'image/png', img_base64, null, 1]; + } + }, + generateCookie: function () { + const t = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz102345678"; + const a = t.length; + let n = ""; + for (let i = 0; i < 32; i++) { + n += t.charAt(Math.floor(Math.random() * a)); + } + const cookie = `_did=${n}`; + return cookie; + }, + imgDecrypt: function (data) { + // 将 Uint8Array 转为 WordArray + const len = data.length; + const words = []; + for (let i = 0; i < len; i++) { + words[i >>> 2] |= (data[i] & 0xff) << (24 - (i % 4) * 8); + } + const newdata = CryptoJS.lib.WordArray.create(words, len); + + const lkey = eval( + (function (p, a, c, k, e, d) { + e = function (c) { + return ( + (c < a ? "" : e(parseInt(c / a))) + + ((c = c % a) > 35 ? String.fromCharCode(c + 29) : c.toString(36)) + ); + }; + if (!"".replace(/^/, String)) { + while (c--) d[e(c)] = k[c] || e(c); + k = [ + function (e) { + return d[e]; + }, + ]; + e = function () { + return "\\w+"; + }; + c = 1; + } + while (c--) + if (k[c]) p = p.replace(new RegExp("\\b" + e(c) + "\\b", "g"), k[c]); + return p; + })( + "b['\\0\\3\\9']['\\a\\4\\c\\8\\3\\1']['\\d\\4\\h\\i\\0']('\\6\\2\\6\\2\\7\\2\\e\\5\\1\\f\\5\\0\\7\\g\\1\\j')", + 20, + 20, + "x65|x31|x32|x6e|x61|x39|x35|x30|x69|x63|x4c|CryptoJS|x74|x70|x66|x34|x36|x72|x73|x64".split( + "|", + ), + 0, + {}, + ), + ); + const b64data = newdata.toString(CryptoJS.enc.Base64); + const decrypted = CryptoJS.AES.decrypt(b64data, lkey, { + mode: CryptoJS.mode.ECB, + padding: CryptoJS.pad.Pkcs7, + }); + + //把解密后的对象再转为base64编码,这步是关键,跟解密文字不同 + const b64 = decrypted.toString(CryptoJS.enc.Base64); + + return `data:image/png;base64,${b64}`; + }, + decodeImg: async function (url) { + const response = await axios(url, { + method: 'GET', + headers: { + "Content-Type": "application/x-www-form-urlencoded", + origin: 'https://fktv.me', + referer: 'https://fktv.me', + }, + responseType: 'arraybuffer', + }); + const uint8ArrayData = new Uint8Array(response.data); + const base64 = rule.imgDecrypt(uint8ArrayData); + return base64; + } +} \ No newline at end of file diff --git "a/js/\345\233\242\351\225\277\350\265\204\346\272\220[\347\233\230].js" "b/js/\345\233\242\351\225\277\350\265\204\346\272\220[\347\233\230].js" index 6761a88..0d27347 100644 --- "a/js/\345\233\242\351\225\277\350\265\204\346\272\220[\347\233\230].js" +++ "b/js/\345\233\242\351\225\277\350\265\204\346\272\220[\347\233\230].js" @@ -104,6 +104,7 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; let post_id = input.split('/')[3].replace('.html', '') let data = qs.stringify({ @@ -160,6 +161,7 @@ var rule = { } for (const link of urls) { if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -176,6 +178,7 @@ var rule = { } } if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -192,6 +195,7 @@ var rule = { } } if (/www.alipan.com/.test(link)) { + playPans.push(link); const shareData = Ali.getShareData(link); if (shareData) { const videos = await Ali.getFilesByShareUrl(shareData); @@ -211,6 +215,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -245,7 +250,7 @@ var rule = { return videos }, lazy: async function (flag, id, flags) { - let {getProxyUrl, input} = this; + let {getProxyUrl, input,mediaProxyUrl} = this; const ids = input.split('*'); const urls = []; const headers = [] @@ -256,8 +261,19 @@ var rule = { if (flag.startsWith('Quark-')) { console.log("夸克网盘解析开始") const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); - // urls.push("go原画代理",'http://127.0.0.1:7777/?thread=20&url='+down.download_url) + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -265,12 +281,7 @@ var rule = { return { parse: 0, url: urls, - header: { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', - 'origin': 'https://pan.quark.cn', - 'referer': 'https://pan.quark.cn/', - 'Cookie': Quark.cookie - } + header: headers } } if (flag.startsWith('UC-')) { @@ -280,15 +291,22 @@ var rule = { if (down) UCDownloadingCache[ids[1]] = down; } downUrl = UCDownloadingCache[ids[1]].download_url; + const headers = { + "Referer": "https://drive.uc.cn/", + "cookie": UC.cookie, + "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' + }; urls.push("UC原画", downUrl); + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(downUrl) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(downUrl) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(downUrl)); + } return { parse: 0, url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": ENV.get("uc_cookie"), - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, + header: headers, } } if (flag.startsWith('Ali-')) { diff --git "a/js/\345\244\232\345\244\232[\347\233\230].js" "b/js/\345\244\232\345\244\232[\347\233\230].js" index fb05bf7..797ba5c 100644 --- "a/js/\345\244\232\345\244\232[\347\233\230].js" +++ "b/js/\345\244\232\345\244\232[\347\233\230].js" @@ -67,10 +67,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -86,6 +88,7 @@ var rule = { } } } else if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -104,6 +107,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -125,7 +129,7 @@ var rule = { return videos }, lazy: async function (flag, id, flags) { - let {input} = this; + let {input,mediaProxyUrl} = this; const ids = input.split('*'); const urls = []; let UCDownloadingCache = {}; @@ -133,7 +137,19 @@ var rule = { if (flag.startsWith('Quark-')) { console.log("夸克网盘解析开始") const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -141,30 +157,16 @@ var rule = { return { parse: 0, url: urls, - header: { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', - 'origin': 'https://pan.quark.cn', - 'referer': 'https://pan.quark.cn/', - 'Cookie': Quark.cookie - } + header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\345\244\256\350\247\206\345\244\247\345\205\250[\345\256\230].js" "b/js/\345\244\256\350\247\206\345\244\247\345\205\250[\345\256\230].js" index da53232..4722a43 100644 --- "a/js/\345\244\256\350\247\206\345\244\247\345\205\250[\345\256\230].js" +++ "b/js/\345\244\256\350\247\206\345\244\247\345\205\250[\345\256\230].js" @@ -1 +1 @@ -2i3xP8S5leJjDe6mj+ocKtA6D5JVXOyO01nH60jkt03Zt22gkLdg4teMNweT3YDnS0F3UXap+TAqK3TmctYlW5mlDtMWGW7x6HbzeKMQZrZNvPfKZ+X6wZ9e/v9dC/8ow2ZPLPh52rhX8bLTObDZC0UNtOp/ruc+WwhH22Dugd83kLe3/Te/6iLjza259k1sxCgBUl6yT4BLM+KseaXYP0ml9PVvuJYyyMm5NoMdj0epGzBSqu2Uh+sw+zlOiM7BUSh89zQd5GcKPSk5eJmHEi/0Sm1yYP0Q1VcLiZt3wLaCOn10vG1YSB1IB4ZX76Z2icud2fyGl3sJUBb/dZhkeztM+zR+lnFGKp8LRAl/L7FAk6gNwVyZB/K6MWr8XxRk/QXj7ribCMWQuclLfjR0FYB4KY5jrJIIpCJ9CGEZO7zE1jDAlUbH1A3jVLzsAz0eBu2v6MGT9T+UgcQW09ksHU6hhgQkgLJiHhgCej0blqgOUPFzVBBPbLZz1ra90ks1VMsJQeDKMIQUBBCsokDO5GC/MQPMylAGmbbUK/F3s5bIDmUVvbFz8SKUSIIvaGopxzPrr6B//WNdeiEQ6C1JXosGpplKCXeUbDBmZmWaVDZKU9i19L/LgP4E3S09Ij2TWaf68XYVO0rXZ3HkWScxCutAzBxFrUWijpONFJddp96aloYH8h0ll8Ro/LGFDObwTMQNbkUK/6nEYodHpnXRpgIS4IJYPII8T+M6j5LGC1PkV9Y8LL3Ea+p6h5XDCKMObWA3UPY3XUIb4XT0/wjFtM91H5Wjuwax6NqI6fwblnb4iWVIzRmJxJS1GBjvM3+ZM5d6gY8G30PdHruImt7lu2llCuENeL+d5EHtfwTTyQ+Et6engHyL/8GQbw0nWIMULSw5kTPt5pxIjgeOHvsbFsd0vTJN8tVJU4L38MSNUuaBf6f39VC1cy1WysuGBypO8QY3vnh2jSKMwBy4BprABDUymKSj+1U+xaYdcktxTt3PJVIlWLlSyQKK+B9Fj90AzFd3D9MT9thY5grF7hp7TJ/gMtDaXjB24vp7aJCBsNvUmvdf2p0xHReu9nJXDCo6rnVj2XG3dfrKd2ez9EZNFRGnEIndwS0dTquaFZpH2zVqaTsuMN0hZcptACe/Cju89wGyh8HY22IbF9X3rLPh+QtQBrcfdUzjy8FW44MMC00iMsTYuTy5WrVSlpe1QWoo6ltzB8ZC33DnltMaDO8ymXPpvw26Mh6dpoHCHaUBboxJN2ZACbguJVryDCz790JQTXqCwZ/EQF1cHaKMjSE+b8fdxpAZl5dLJk6bV5UaMa+hucVvkKioSKtNNeXaUU+8JWmF6sF35/qKWC3H4+60+64JB9nikWOZKThxYIoGqqzVJVGByx+6Li4H7sNmXH0uesdyvoSR3/DZD0ASumJ0xtOl1UY0hXEe21toiQx/XLu5gu8n3m+qBmC04XUDYzosfFTxKnOctxvr7R23cnDPKronwaK1y5empJ9E+PtyOlqe0YIYgKFr0uLkfSleg4Aphv0yBtMHvcacwv4/2p8rSNVRG6MQvjru0bnPNXziFJ+2aD6ExG4z9g3/iJUafOoWlwrWto3lxSfQ8nASn1INEzAGAy/4CjHfYYbiWudWVk5lA9eFbFKLS3omGtRiYLdYWSNBvbst39gpN6/ozWqdXWxiqzH0EdyCMx/hAYYhdVp8C1N0i1BxyOqRGqouBESFLTN4d2Ddqfbkjxk4U+HiTl5Y/dBcdLu1m/SoyNMnO/5YJTC7jhKSBxDAEuKTQEEH0SFSlPtgvbWWiiH8CoqDhHJ9KC+zkTYpzSypCzEZg6BRYghYpi6QhQ7vr2mqryiJookUyeiTjNSNb7Z8H8Eagd0AlrLW9CTx8Ra6EhiOUhMLEbocJc1B3MlsxZXu09AtftJ7QG7k6QXak93OSgrWGBB0Jf4soM2tC/uiRZCbHic+zgHEZg4TLQ+U5IJum8ijC3BMzD/32MEmGstFfKUXtTfv8/AIRUT30MbnZrUy/RSJ14pCQDFMalvlE1jqf93wX6yQTQ5sVuH+n5pnNo+hgLiXomrav17rNvpkOVjhjK2iGwUr6w9cMvMn0VVOlmPM4GghJ5hc2WAjvBD+HEHF3wU3U/K1taFV71RbhOXNiDj8t7Hx2qv6egSzTJMGSF/g42J4qYSMAee3dQ1iCYeVYRA6R+xQmChrmsn0nk3NkOWOe/AeG3qi1HzLEdUKb8ipgrp2gaYQusfVgLrxobETK++NX4iOwR9myzd2Rv7LjWDhScWutTgHbXBJHEirmdmq7Uiduj1tfOgloPZ5yDhgNA5ETo26LtQH4WKX0mTdBaq7XH08UEnAIGIxAwkofFFd+fls8uY5ZPw3CM0Gogp9m0fmMRLWJqpU/79Pnn9aq3hIncdEdL8iRb7o9+okIYGAdtg1DB1jtnDyT3UdQcjv4u8ib8QXlYKvGNhcgBjBmG/cd9qVLyWFlXk6TaSEoIsk9mlDXAzULWJm3v+lbXwvTNtlWfsUetDXR7nPKnfHm9475jLT/1qeYGHtpwuv2P9Ncvm80KqKOREObMovjwzJW9KyqKx28VO0Nuz6YwK1XMKWmQt+14AUGdNxh3/XbInrbLUFgyE8mg9a28ZRyxABgDd6JzYLPZTmRlYO0qDyRON7eiC//2dUWroq+vt6Fvsx9fxNZf4a9JprN4bt3rNQjSH7IfteMSPdsxp2fYPj/Srfzb2HXIIA0xciiqIN+ycDge/wxM4YWncvrWPTXkb45daZVhv+heXL/vxmS72srSsACfeUwg0b7UZOC2Ym4bXwVUFMQYzdgiejoDTR1T67BthvMsdXLJU+pFvWQ3qnu7amLMi1XtP0/o6aq5D7Tjs7UuMnC+zN8KDl6BV8cLjbf1TBnJBfO7hJYvWukGlScZpYGFXG7/D/1vtJrwKAL3vxFlOPxEuXZdpafNxWoHvcFvaGjEO0qrTheVJsjtl/+gBofYpv2zh/sWEktOmxeYxOuWOn0ltpY40Hv7W15IG5DioA9G2KpcnDFqvdpo9mvUdmZDD3FjeeadORSlj4sOVWau2od1gr3KpwxgdTqq6kEPNyX1zyZEcoGQMxG1lx3hOk0la/rImlmx94lfXHjbind2PafDy9xkqPfvP5EyVjVwLsf6g+KXrkljBoutAtKQDqfem7c7CWb8TidyaLV9MtuHDk/908GC6+ualC+XjNgGHvbGRiFd7P4qnL003APs+kz4lBA960bIeOAbYP2WQHATenmSXDlOWCl1iXj2kdpMODXBwcgKGLWpfwyG8iG49pVvM8cPUmvfrzi1AYGiavZLQAmeq13W6TyuGf6lBavUpk8otZ+GFDwu+YxkUQrMYgZOaQQnwPpIHTsyq8aaTUZN57Z4s5TFzLyhvtZoHw2ZhPrurNO5NgxAri1EvWzQ8vPTmvsVHwJYHBEHi9yIeAo4pIrwLxT177j5HhEQgzccGUOyRuE2nlt0sz4oNwvQ9bwRsUspM4nkMu3eY+6AQhZat8EgDuy9S8/h+lYEy94z8eFZ/6ucnbPpp0LxPyLz1GOF3VeIjjpFvmQEwJUqomNKLlv3j+mPXzjPJ1k2J9bJPFmaPKp+55J45swkyNswfSo8tt+g6sylRMZI3WJEyJcnEkASUJFwuf0UgUW6+6xPRmlcwwjvt9oHf2YKIAT0sBvpbWwqKRcssteYIvzKpvMRZjG6EYcQflN+yMjiGKxhpLt76QxdV9ZPpoREd/oPl73NtAk1dvZFN4fzieHavhsZgu+SBy2L8nv/Trla7Lhc5n0w0vfzgAkpoTG3uoyw12tdK43YvFU1XCRdIzETqCptmNKk+NufM6i/Qk9tcsmguspi+IAXTkstkuNOCGQBntaN7KDyazeMZEoOCHPD7SsECPNOXhtZs08BsrFHvdY2sNMB5xZBULdX/hxouaBDXcjiJBsWjv8ZHV/7/Zf2xyw9Tw9uD8KnZTHL9dQ4vigj/4tOsuMDaOWgdUqO7cQw5LqbRp1WUvRuDdeoFd9h6hAjXETvBldolTR0YJCUJ7mMpgxKisZGTrYz0Cjzd1RXTmKemxsBe4vU7FecyeYGpcqaXZFrDOa8SMMryl4FM0/NwnoOpuI9NokqlMVYIJFyNE+NBf28QcR12gN5kzL69DuCUJyBFHqvK3+NHAopDQG6i6Cw0XZ2ASv30QRCRBqOo+O1XBdf/4RkNeGOYvXjz+SeAhzi1fzkr3d1OYSe65XOjvZaprTUsNOlgKKnZvuPxP78ieTtq9DSfo3hnTEHrQbwHJM8OMi/L5nCTyoZ1mGWrmy6kWdH+MIqlFXFha5jGwnlmcTfBcTqZqvtfDU5f6NBy4WVXSLXke6B+2xoDiDGdpPXF9LH3OTxh9U6aEqDVzahy0XCpSBmSpMO4R5LUerd7DNd9CeQYW3Dlf4nAPbI0RbVO0prRvCzEycCgwjaWmXgweJcZmDlyLYJlf3uBNcfE2u+hoetmsqn3dlq2C5kJAxpbIQJtDHnXw2TPVJZSs3vKCZ1if1TbL22tr9r/0Vl3IE1xbk3Emg6KpXXhdyixIL0Dki89MLturo3sIUKIxacJF6pB55VLuyM31IhJuETACHMhYggQPGxEHpGKjE7b5oOfIPR6B4HSBAgyKlBVpLhY3xQpD+IhzQiAKbhZXRMZrWhQmxfUusEJrsCdrHhOJFUAfphHNDsllXSDO1mPSqXfHI09TB30qLewtjZrZs9kserBfp82hnyM2RdZ9PUv7Y6zr+F8axvoWQKJt1usmP67LZTJwc61/MR3Slwhl5GylmYQlFj7wtOI6uL5rUuqjgXTP8SFvIrJJ1XQmEVlho0fYs9+EaYu69bHbdUIIY3TzR/tOaJ+X90xHqTnuql+fyr8Rg3bImUP4s8h99EUrpUv2tsWY7vCFrbEH6xLDMjXuQJ/mCMSUC0shMAq1+5RsgHiOChmc1Wk5cFarBAb7MAV3nmrBI+gaDsY7gVloVKdzQTX6deohvK0jdeQ8Tqe5/V1KYB0hxFzynqeRM6H7J97YPy8EipZZpv2YC2rv1LOy3GZcpfUl0KRHcYe4fJy5gUV7+cqDj3o8pqvWTpErtrkexzeEW9sY3ha9aITahTuOnONeL4dxFLfKdcaWypbRGtDecSIcteocfVsE1TR3eW5N8qLiBQSdPVzzfgUU2G+p6LROthJ7Xl2PvnDlO9T5fHQEWo8A7tW/+tv48mN1xJ6kWK9WIBG02GziGg+TLfkJ5EylKKeeb+VFyw+qgg5F5OhXlliKRSONiayE7aqTW2H9pycKMOvMfoXQBePbWgigePu7MgqSVL3F4j4Go/H4B2GvL2izqcdDshgT98dKTlndoHmHJ/u00Z3bHqW2ZN74d59SdHD0VuJnG0MvkzIEaeUJWmj2QPVHV4WnpVy2pU8mRipM+Ym1BKVkaygQzeABkB+wkKHlvUvjALI2XuhBJYks3+sP+YjZ+5KAW/nLP1a1ccEGaJPM78wxGOpf2QbjOLVSfJ5rC1BjFy5r5H8zqyMO8Dd4XOvtEUgF5phRmLzVjByYXXTnuM8s66XHgRKBeSQTl6cnzeXT0+pGFborOCCmq2XaVr6zKjwK3AQwNLklFrCYEOvrKfCOVJayo/mGUXSNaEFu1KTF3EN90ntBkmh232axz7XfjJ6FVh1zt/TzJ214ZRpfv0QzvrS6dX9VhzkyVxUZcNwGT3Ms/nOxMKH4kGAARQWcxKQhs4pK9ln3m8+Uv2XgLFLwV2Oy003zlm5LHwgZH148QAv6DpOqXk3k8nbq9QEo1IDrwgqw0wNWUqtq3nDaYKp1BflM+hUCo+s9fagr5u849dj+BIurqbnUD5ajBqVzA6nMKJNT1Xo+YrBLZcfOE8wdNbq2KjDqf4v2drksTXrSp9ZCSzuMACQdPpeBjNSliZPvIlWesfPSG2lMtLtk9yUj8tAnMLXH3wnXxgzNmGjNf2OhOBy8PXPKlWENW0S6NZnznE920jc7iDEIX5T5SxjtFAeSYjG99MiILehi6oYsmTXreM+GCu6CG1eprIdiTWJql2yYGhpsDC192iZqHqUvxBOF7O7Z3tQMHyhNB1CKaaVSbS+2eRVu1cChVbBhm6aHekJk+AHxusJ5mKH8O+SjE8oTsmTPg1BlNELzwBkzU3VfqxfmMbhUjYpiiHk/oBxTOThoO7LqzZ+ape5FwE7uP8FuZmWIUFwJK9ZlCiyz9ebFGq4P5UEAjdNxWGjnrMRMh8xMsPd6u+GNjUB+xIqeNJcc9TAssJi9XcjKihZf3l29K4i+JjKMvmJPfBfXYbtqV3HZMvt62l1HquObNJvhweVvKqEk9FwyrnoKDhRevLLpFF3TsGEahZvgRzfeM+ZMt9MO5k12qmBRk1wjao5XuR0lSod7+a3BBeHpxzYImvtdQX/j/U+9Ivm+EIFm+gZvQ24LOyXDwpSUqN/KkHzWHoUWsD5zxzN/0+bc+lggmYUjALJk/uYJ64mtnBGzG+DYUo5atCllfpOUu2emGDIMAGrV6U2fhpJe6GvwngHpKZtNx9GGInyUm4bcG8EBIFeDXl2zUj316Fvv8dLpCJnjg9XSNHWF9bwMZhtPWgVq7Z4Mk3LloNvMja2TeZbCnLRuYq61YO0L5FXmpd6oKJ6iHkUVH91C3vgSYta9gvkNLpnGwzVBAMiwhWNHxJBosQmdAn18j2NKjGYvFrC2WC1b5hPSGPv1S1dLrXYxjApWCrO2/ZuCS20p9rsraLQXKlxzi/xvC7HQ0Wlb8GU/AYsQRLIYL233sjQETUU7Ymmu7s1nxPDUGFB8VglhXglPXrpWRIxNmLaouzr80t9JQl7woZE1qiidaLuVxKzfcS6WUTOWoCyfMzBVn3+woCGrak1NgvbLLylbMqR58PUxLX+TRcaYbZxLkcZUDcb+U6PEAwrh+EfsBdpYkr0x3LCb1QwdbL50LLRgesZ5kLMaGfZYgPeoEpdxl49M6hs5pPCLgx7yAREer86nPfLLxbcadt0qYAt0Dxsrp5UBq6H8v1m3Se1UbW3f4+XcA/P/f2Xc/yDNvMmsTWbBr1eua3BNz1etgM6SlfljtsCVLiMSUUBYsY0qWC3kB/wTAzpoxSAKlTmYaHblcFMDoDJc853fsfgNyZawANjPMpOMpCKEb2LyPFIGecZ3umqT5e5XFj/41OMtHdtjKly+TVb1qsRAmtcbrrJVPP7FqjiFrwz7BhxmRpSzxGmpYXxf19hn56RJpell6Wqmlmj5nkheS7l48+DzdhgyGPfgJK6uxrOHdfxL9++IvXay/6g0My+5Eu7QoTMfQXuew7UCUviJCN0pmD3nxF1EkX9JD7hNRT0HkGLeB35+9LFmK2JvNRRf0Fa7Gq/LwM039iU1ZrSczgSWob08DJXixDo/zTxPdsHWXrIky5sJSc+b36peiP82UP93qA9mUHzLW+08Q6Yi4noJov3gZ3Nw+S0SIjtHwaVM60KI3ATzE+VOShT8ugjch5iJCpmCbUIWTdzddgFqE+aKB5+7sKEZvzLTvRDHO+u2HQ3uEg/ZwoQZAWwBzoRzXUyZv5Vw/sUtNA8RVEuU6MiE7RpfrfPA0Dhwgs/rkhcvabRDBj/P042cijTlVl7nZaWGTu0Jbl5CFtLZAfUNdCi3auedp17yUsQ0GFJdaIEgcDo15uOoNs2bR1jR0rSNlwDDBNVqOdbydXEQHcQeK5IZVpPLn0uFCXp9kzHwa+PbWq1eSnLME9T3YP4NFXcVaOSg5srwE0Ll79UlJZnFLLl2zP6FNrn4zOi3N9r6JwMKt1A4yy/zuvQLYs2+lmuRTlfsRi+l8HemIa2yKnA1bIUgKkxWbUxG3N7pCOLLHHKi9TfFcBmXTdLK0jzH7SSTE1dVkITzTrIGjDnoCWR6yAPhWLZ374PWiVQPu1/aahG959Y4oKWJK3QgxEEvYAYtaRzms8Cv8Zgo2qD5qMHVVuyyKwc6pKhrHtewu7BGNkvB+sXYUdEVRQnI/aizyiR3N7KfCs6oyYdPMk1U8RCJioXP4YR00Cg81CRLER1xW49I+o88TRYRQySUVdmTCFZ5L4LGYJiR2lrrMfBKRT5cbin9xA5fZ0+eoojF18mAcN3QZaVgy4LqBcQyG4K+brh00ZXAkcDAH1MEHr61HokPl2IcGg3PmlPNu/tKp97UvHPbfWQctcq3ya4Ckkk4UO+xajnqMRZc6x4QU8r8h8VnmrTEsbTLvahEeNdOzG4OLltyy6WH2CyPqufFOsf7fWBxr80bjQzG12J33UCE5/HLaNdEZyJu1EhG4lpq5fnyxVj0r4ZH5dOUfbuU47V/wvbwuScs4RfFHsasTJH/WeSgvsOElDFpHKzRcVhmGLesJfwgXs+as6gxITYueQy+qR15Ukcckg+4axEZfZS4AeRY5ljAAYxc8nSXchw/35G6L8lLoMsxMg9QrS8aO2ISjs8++I9v1pDlaLC2vqFMShMBDBYuZGj/HAx+I8qtMI/fsDcy0QmQdE2xLvUAGFu8IEg2Gp62K00c+5Hzf+4Kd2ylN1/5Ti7efFYVKwsgXJOHy4R2guIug9wD3oQyD17AtqRx5LwswLXUY5LF0HojmgUicK0t2NXBTZf1suQlV4xRapMK9nv//Zbnd48P6PbN6F6Mwl6o5lZI7O+CYLNx6PEy6aqRuhpTnGmsMIINYmXm2w6EoFDtkgEVBYKym6M839SF4Aej8JxKgcqHBFk2yQ6h1idTh1uaXPAxW2uKTeo6lfe+BN9cmUuRrhHQ8DN3iEK/iwvsqXUX4CXKWXvbP3VkCMA2kyx/XnDsVT+XhaSmzs+vZzEjA7u96XCwYE3mwJj2t+lFsDBjxoauRKz77XrxErscjDQve8IgW2Mk5wI8eQFNm7+m4lJcwOZhNqNU1xAO5+1PcmVGkkUpu/QRaatlT9mqnY2j9tHEDQSDOZ6HYMmjV9xNKWml99StxpEXPIwp6tS5firyoawJhf9IE9S0IKuf7C6uzMFgMQ/gqlz53SrLkUMGKnHk9CRyG/g/aPCYaqI0mkr9k/IPMu8ncfRhl2AFPiFRPenV4LdDG7SCrhi+o+Zv2lUAV/l1XlcdTf3y02v63yOHFxf4jef2kkyMrpV7ak6ShcA9GZj1TO9lXF7DseOQbKKNefIjOfj8XgjzAyGrM1dE6+2krSUxyZNKl5LTALPtliLUjp/O7/mgQYlF+6OtZXOjSjjAq4grCYGda0Whpw4eENzumO65N5loH0IK7zEvbfWM8x8CKJWmOudMou7EcJ0CAP/jasSl7d6VHQaV4ECeZTeFnf6pwyLYMEquk+5tdqYQ3WpFv6LuoxLea7J9pq4Ym998UQBaOteHn1QMQK4KTtoteL2UMYnxG70HfHhpXhAO793I0H7AK9Y6zAff0ygoDPveab1KhENi8JuN7Xz2kaKoiOY2u48OTGgcTSfaEYGpm+FyiPEz0aN9/jq3AIhc3RGPzibtiJEGpewpGtQcHsKzyEX7guAxmGnNDMrWs1ZP8ztJyOSSTYXc9iTJtKF8mXfHvL0vZGCGTWv7gQ1ga15Uwu8s2p7DX4H2UIHkT9U1p+5PCw0Rp7xHhaRdZRSvqgxEH9cPFLnwJz/KXsXwQ0DdhL4yYMmh73KlqIbPghVq3wyHgDBRxPkYt9Xxrg01QCyjNfHfcDTypsztMxsqZN6E0z+MiNoi7VAXKlkwlQ8/Zi6/2Yp1rSx6fmU2Mon/vtM6ywlJZbc3Ufm3fdMdmgGmbiOyM3+8Zp9aCCFF4Da+877nlkgEliLa0X+taIPTSKcEcry7rU4XoIBXnHJXoJWZ0a4E3l3qwL1wrbbYNxUOQnFJauzk7Dd5ibBuRh0bpKcruvf6NFoHbojjjHjLixZMxZ/q/nso1vkJBW2/09TsMpDRucDaBDPrfWpL5Yy3dfLjvkLWKNS11s6gyt4dqBnPhdC+54ACpJqPjjLZffOm/6YDA5uG9gB6wAcQcT8K7Qn4JvRcQA88TAUO2tvKrLveW0U8Kqz2y9LDRAEyQJBRrGWP0vFkx8CoHDAm60UQYOGUNQxAWZ6MLKXxgwC7yPtKvjEzKks4Ml46Q/sGHd0vRO1jQPeQ0XsTxJRxjJdWTQajCiwLCEU/G8P88dvJMSf3ZwwjdzsCSp9aaDnaBPKF10gSgcNH7aPOKNJ2fxK13S9hTQ3HB8eHsGFNLwP4C0MF3RNk+YSMEhqqWieSiEwi62sDly49GNyJRn3G/0ZF7t84MyOK5SdvhdcVuxnlF8tKpMfkJTQIz+ZE3pNRXQP6Nm+ErafDeHQC0iOx3e/GIjTVe3ld6mwGVk37W6AWYDlxQH+58vTXe9YM9TSWjsUAtviCScJE973eZab0gLVhWAImvtNRTJuvqdRqrUrRYbn7Y56KmZ4Qnv3BPUJ0DTQtDKOyV8D4rAMRXNeuOh4Do+XjcEYx2SzSsgHHEY7b6vX39uR4Lo1lA5KshnwAsFNcgM7ENYcfnr7GhaqEw13PX0VDLupStPK0D6BjbmdZBKE+hpdwtXDf5NFufT5Zt45Dd9uyWWMsSPjVnXjNg/Xs46hYoV6g7prrxxtn+25Zp9L98zgZF2ve26Fh/hqqQ1Q7ESpx5rtC1ESN+xMpeeKlqtMVbTOqWZQB8ms6ikp2BdgRhAsMPdyeGtdPCnxwOBpJSKlWtIhsnvyCraOEs/W/3ubg5tqHu9ozHfei4BO8bNsN2hu1Tf04XeBw2q3wd2hh5Xs0hC+WePrlEInPy6qnluvBwCURWKVWCVgQ3/QNDA47Iy7OqKhCeTp2WCgzoGe6LLCmEA0KuamAbLdKmTPOtjy0MvETqhcgIZHUtAGOpMPj48Y8x0R0d/gl5XY1XwJ/bW6XOLH/tU/3ruUHCAzir4z3svT1vuTORDWF3CBJZi5ykDWwzS1xGTnDZWFplysUqZWC6AJ3sd5ZqtWNVc57d3CTUR7KPcccuekOKSpBawWK9PYbXsge2eMV/mjdSPcUqro1B1aovntqQ4PrDhYDLpfWW3Sv1dugADcklPzGvhQJ7jL852CX+aWcGoC4dxinLj/DiV7CggwItaicaWZejM8an9WYEuTTXKJqnqUxaSijlITV69N5bvk28ByL+5xA7xJ71zY5dA2pi4Q0eWRHKSXICvivePLSUnvX+Yu/gWPSE+5sMmGlledEuhzw6LNfcddVKVYehp6E0YeDKOJhV0VN6hu70JEtGsniixCQNXTOZ5AQBtQRpfUGOUMCypJZzyELGcg7GLsmyGw0XfNUyGZbIrQuzHcYda1qAgTX+IvIU+V21IOzhnD1UPA+1zPGlH1Fe8Lvcbt7YDZHI2sGsqlLpSghkAJyOZF4zBB1yCdgXtuIW+Mh1BAOKRZucryi/wKtqEqgVsm2iifWX9Fc7bopPD4MIRgLoj0ERM0+UT+72w5AAnyBvPIu/W9D1gNT2bwZSDVTMR27rIHTI1QsUbTIhgsur6sfpN3etRN62mkSecew4KzJFCUtE5HxE+CZg6+74cuzZaVy5WACHOctoomhYm1IxFwlnxazl5x6f8L+aoE8Ea5Z15JYYyfss8cWvkIABeaNsvjb5G0++OErrdaASjreeIv9E/2XQF2ki35J7beDqv5nnLz1Wmktsk1d7GN42KOOprsT/7mJLy37JZADtg4RlJd4DyxenlWGj+toQKROLo0IO6zMG5cIG1TYsaYAuiLGPGCDY44ImtZ3NdrN4R8HG5RfozJ4xvELSHBO6msmN0NsonUiVG2hh0r2L3pRz82lN5wO3SB6Szxf6/7PfA9LSCuA5r88HZ1BYOdb8UsHX7SBK7kqGua4+spLSITQt8KpSKseAcgQ9bqcU1Cwjtx9QHA7mSaUQj72fWoq8EybyNE9RztrWwVDJL4qkNkIvxZkcF3AxRcr8PLoq0x1ektLtg1H3Ygu65YptjJUa6AmOTB2YVv9PxmTVauCjeOCPgAC+GcNPmfPXSJRN2jnWzTsOwdgT5eqho9y5f2m6NP6x8kbeIQqneErGv10bwvM8Q8d3cI22gz2UBrGeilM6G+2hpF8X/lSjxK+KZ8It/ff9vojZy1irTKCMSDy0oT8ngBg5ZcFpNGE0twnGf+fPblF1GBmQ2MMm2NErR4TbTKsLRTuLeVtGUsvPc8NDKHu8MBYHKo55awiA/zPce8EvMRYdLr81LPWnTwHD39v2tojRVuVuJREdXOjt5084gAFjdB3cZ+T15Gne+zlsU55fyb8CC2ueqBbvbYxL5+MZ5MEbEwdwnP7bTu1wAqjNkiMgG0/1mFr19v9qVANG5IHiwHIjfVG8o+pLZX5EuIM41nNnVv7Yn5UVpPTxCb1uSF6kUJ3CkODy/70Myzl/BZCnD6RL1nDLjiv9hODedhKU57x57Ht4RBfN5KL3NDtX5pIEI7+ua/Fy0d2xQ6W+Ao3GRTqAxyvLkAKvYs4g/3h81759/D96b2cfpKFq+Cr9rhrfTAac5R8PvuYbV7E3GbofKk+KxZuTeksUf6wAsJfsM5AifseIFEqb2xzLRU393VOBUXStnGJDKP599unfLJR9bX/MdE0ayjFpjjDhqHhAso/Rci1GXg9a72kTIIMurQ5au2AYXyOsmlXAghwDF3pgYzNGotlAA6+LqCRIZIGLVA6jIGxFkitbiAKHNHYDkcWo7f4mZCdX4k+XRW7eg799CVY/6WzNZUsvAf4NkbI5rXiwxbgAaTyu5v0ME1NqW9fpvM+Ctb82tefsXZe/wUgNC/K6LDMicdjIFf+tZ4SJ0L7nz94OWQgJSwdoJw/5SfjcuQ1s8Qni23qWNCv6+R2pz6MCgriS2SRKGpUhWENdvDqEpeBbMUKb/w9OjUFafHdTPAS++W5VFaySFdsJ9okKGtLcyzuGbYc+hCAFfe4bxn9CXU/X3tZXjcgDYxzYDNchqnHM+yQd95YBH9Vk0E7b+IvlRjIeUDiCODpmgZRKvIn84I/k01n5AFwA/Y2ALet/FV1IbGFhO9rPA7WupWYe/gVhFkCK4mtTglxXGauy6LK0PGc8fv6U8U3POfET9RKk0GyhLbP/Xk9LyMeosl+KfPyE9CWAi5SZrZGoiIiAltc7bRTURWNoW9uZh+u/Dut+QMnRfQrJW+MwOGJZ9TnKbLnbnkmjudsnzBHfMd5nWPM3xxibjELDwZgkQvYrYImxDghoq9GtwrQH9cD1jjnsRImfDyOTeWky6c+7jHMwF5C75RwNOjAPNZ1Upja6i7HYukP/ckrsxPwPlnPZNjAlBRxHDa/ShJqNMtW1FhwlBISHrm6N+inXXbEoncLX51x3k/q1umC6aHozXKu5hb/y9bfoWXrzdyLbReWud624FPncn6I2LJjMPi4TlX2DfIb95DZZwOgovEGZOmO/hsvWa11HmobwSui+1UYW36xt0GGq4tdp8Y/BeqzzkUUHzZTgf8cUoFAKThrc7IaJ9KRCTpvz7wGHI5XF7ht8eFqsaMj5F5sGt3p2Jd0ryG150483oF3QLezDEPFNMfvy7laaYdn29LG3WJWaLpk2kn+YeOqa5GxI18l9DmU2o2Gr6wyvVr3/kO9v7mM8NvpROzn9C63DZ99DCjRj8eMmLBENGu7Kt+CAyl79iD1IqbcQCdkxeGalb6lJkQ1hsXPR2FXyf2ePWgYD09EvpWgw9hjS+29nhpZA4Ui6CihMLcIcYgBN8EYfFClgA674v+dIRavAVOEusbI3EAU8qhptfaLr9WLNpZKwnovVfJjp8emTeMioPvJ1ondXKGPb2ddZVkJrnRlovrhzo94yZzPqcwsaaqySpCrChzOoRBI7OFVHaUUeP9yyQXZo9Xoq2mq6dVFd8uxQYnFa8Uz+a9wAwX0bVt0LpZrYi3Wlg9FO4rUXM48IsxpgbgRZNpX/Ksg5yWaIU2lzWlJHNhjO8EnwL0cD11LEvpBNv04x3ST4sGNp3K+ooX973oh97XRZU3ibN/jCmoif14w/XCUKKFQF+xh1DsGcYkZwwZQEHJOZXh9oNFH5pHCbMQ270ix9VDMkyljMZUw3iz9TZgdXaH+fvAgbq0PnYzph2JdVxcjNzlZNxp+I6XCOufW1agJk+UDQqxiD80aCGWBvnsiSDvX8xTL95P5vTgrhhtvRaeCLXn+z9emjtpqrSj03OUwVMwBAM5HlW3iJzv7mhYMiXsDbd59XYc4MUrcY61vPztYr7PjQ6dtevCRm8GEXhYbdv3O3myzdyIK8u+sSYGKvPgfQ7NudItCBT9/h29MmnXrqgFGR28phVoxRLeNCHpAUt/DokP/8OCLBjkLeHBPAchcCfWAJOqU5q47EG6+TlaFo2gaDzGy3wTBhooDJncIydKRFoxj90xnmI6wxQNQvySJuIsGUTgoFAcZGScQXDQs6LGnqer0VG5KBoJ6DJ7HhCByLTPE+XEK1ypM+GpoRmjOv5+Y63dkZWuV3RGVXLCGU9JqV9wN1kyRjnx/O0Yi0ZMwQr4nKWWlAUTz6O31CTGaruhaRVAOm4uwr41OXyh3Oqf72ziFXLW6UOGa9ao1RxFY0xt/G++6nHjSUbzIPBZJkQpngr5hgwQM/CGb+kGCikRN5WcBRCuX1wb7TrxS6+ezCbfhdUO7UP32SzRrMIPmSM2RjoUb9hKgDNTSB9mRitN0HjUiBUJBqPuWSPFhhARN9UmNTCBbNa8VEpxKUUcZ1AV950ReC8sSp+VCy50v8dAjc+k9a6lQbx55lPeGsdv49Rhc4d5b2wP1x2W3hZQX034Ab2K2pWvt/lYQqCLBZglnqMHlLTf/wnmqlrttkgYSNdLFY4urmxwZSNP+cHI71Alld4jQe0IqPR0nwCmwZTvSI1JDaxbGu+cDKAthHBQke2fnI0hAC/TFjW2/oALmu9E2wF11AUCfYAupHbtknpTq3C8KyYiBXdKnWv2j1TPhIebKnqwW6Pb0Dm7ex11C1EyiuCHT9g1IeOhOHq8EklmMhTBG/8CJGj6y6iH20WNBYy/NgcZ/PQxOgYRSaHj++sYpLEKx3cHaiW3sHe/2vraC6LeLSr39yaWPMy9HlnEA6lrbvOCJbhNZ1qVFIt00wGcZ4mzmebBGklcdxZUP8Jw/uO8UfQF20EPD54JyMG+nf3AlACsNGvw7fQUoZF9O6Ey8sPkaWiChTe81lV4NGlzNNyRpymsFo9aGevPL2K3Xh1umUKaxfS+3+8YhBux8RZXbyzY+H95jsIbCqtEep/kYxpWqBqEwY0oDocT18qoOoOoI560oOiIQt+uEJbMwwrID8uqAhBsfP12lz0qJ2+vMuGVU/Sgz+gtFYEss71MAgvnZ04t+OV4YGx7mdJulJqg/ZpbdcwVYXo7FGmBzbTn+7Jewy4ArIiS4Uli433fcUZP8c1uLQeFODQcneEFV8h4avtNPQMaXXdSKI0pYkYZZ7r+SxzZGxBQ8FMpRCLIro4EGAv08lFx6Ouc2DWZ67R1XyOwQB7rHKg0CRqn5LxjyS/SFGuHRQ9b9Ic9ZDaSfFAWYKy6Qn2O/L2p2d8c0rCU4MYQ9fPeBuJb3zsXUIPO/MpjgDQfgrBZhDeNwshh5aebxRicPQhczjP6wqJTaYLzD6pqoZ5SmbzKAccwO3LVck6IWtAaHCpXcxgbZK5Jt/ChRaU2izaa/5Uv/X7RKy6S7VAPY7Q3bb+pSzXlBOG9neTlnuO7Z6PoV6CcteaQj8DaEOb4c8KKgA+7QpyW+jj1GVgMlOhV7cA3GfffCeA8TUMJJirQaCzMrGYB592EeKnnwc8enO5feULMdnEA1QxrRA/PrgKxIGJaCqePXhmXhYHBp3VbEdivSdKAyI5CM3bbir7mECM6ieZG1BFV0UvRmMKj3Fey5LfA2h+f9/NY5g19od+nV8clOeHCjKIk6JmX3uxZiTKLQ31eauR6cOncfekjvoEFmVgC6Tfhw+Jx1S6AFIRA5aNY/4xyPILgF5BFMCCjPe1Qxe4ABRu5SZrsjxzWaCyuhFFyOSdSfRSvPLuWYHre/XGTgjKu4jFXfmm0GcyHKMaK60PtOXPFWxl7hmX2TMqG+Nl15YsR6/wyK1PrcY0kWTVFhHk8zdNNBNb8Ut4nMKozuGUIMyB8LwXGm73qlgnO8vYOL+yxxQWQXxy1FULaE5SHB+Vn4rnVbgFTCinsSflZHJPOM0tnUVLJTBElTMqPWXPhX6fcZiFtXHHGUoAMteunMANm38gJSraGQnFdWANqIOvqwjhrtHQpvKIuXt9hWRyJuCgJNGk699us7ZhYKkSzREqmY/SbuoDfL8PgtI8Nrw5KoJl7Ibv4laDKPvaTVS+jHliipE+ghTpbh9zCIEM/L8uiVytbTPTG7++U3Oa0vUvexoLQsPA+oVCqjCwvWuOMKsYHs2XdP328zlAqoVDfQHRtF2Q7H6D1Y+ZDBgVi2E4dXVGZ/tQx/2BtT242uNJyiAQccQs9K9Ho2HqXbQX0ecyqPPXF8tV80BstdwmjnWUTXWjt9pmybYAjC/JdfRpYOfZAK2o6b4M9pNTu1ToKIgJmys3UD4wX5dgyTUBVJAnXZ7fvPJBxwpf6Tdq0WxhVDf8BTkpIXa2ZNUFz2tEKwEn87b4wHELqL/EbFZahxKKY+SkFg3GnAtn9MOFn0KkLPhK3YsxR0PfQhsnHzBLi29yFRFAMRIShsKmZ26uTMOU3+5gJvoBdiPM+imMo7oKYoXSF8xCWMAcmnQHtwpEaUZZ2la0asA99JDqvAw2GAUAumyZmhbTsANN4Y/ZPhkVHfLAaRsq9REJT3rSkk44P9x7hrmgdYRVagoy1JPEc3pO925Rpw7N7UNmxwYufXjD7m2XPW/wMDp4T+SgRBOmsuEi09CzyjvtjWWJg7NtUXz0riqNNX2WlpNEPVxnKQAprAHSe/SNrntTQ1k+nutrXCGd5mjPFoQf4352xAGrlq0nRVRBNfSyE1CpkgQakJ08l5KJtYqzyMii5TkaQeRzjXgkBLZCSF2WPhGloTuUY/hrJBDJc2a0TMDxEXSLL/zpFLEbtzmmv3tG9XZFZAJO1GEXVLP7XmCwLw5af0EzJ7cQlFIYCTUNlXf0UUuVKZ5ChoYBRpnfXrdvuBPx/h+FoXT2+JTDD+Dp0N/99Z/wBQPvkTfuKmGB+c0AobImqtP0PO3yZ+SdHSbrxeW9TKdWs0vOWqt2EazKBjaaZDvxv9bhco9eNIKUHGLCvH4aRuPLjSa4ajRqRIeqL/4YFg8MDeq79/yDVpwJICmJCcoQ67+LA5Tsm1NfXYLdTUW545alKDkiDCQxW/oNPIu6dyvIeGss8MWdMkiEbGgzv7aIRZhzBKDU8b20dLuKLWmm7deTqs4HLus4w5qCeS94weBvFo008E3Gbuu+jrNDvSGiXqMQUz8ZVF9uQSd8MFdxrDNqTaz3Mq3QWtwnjnlHLj6wZussZFgJvaxhFv35WFNp3fzqbyBzIBCwYovTUSjqTZL32N5fk4Z+Ro/lObIH8TvDF7V4dMiVQv3fzAKM2vuZU1KT7kfgJoVKuW8xv8cykWSvqVjlUX6u6TdoYbW15GIj3lTNT9RbT0g7DpcvZku1A1xlbusICmB+Fa8gurYWemfaIZdvJH0MNVE0nGcJppv/nYqwSIBxrLD9tbqn9uWuhLgVMLArzZlkKcmPdAI7I94WUCfRmEVkpy+QnGFW0W5UINaAI0YW/L0YtICpFRz7rlR83d3YCLrwrFyIKHLs1/WJCnZu2MOdUmpq9pLgNB85am/UoiopB4dZoP+a+S9gnI+k8Uo9scPSHdEN3Wpiq2bxwlpgc/PdpSvhDBwcNm2KxXRJ5oZdEkikOkfTSBnf0LZGAeDJp1Ui8cdJN8nADIP288tlyG0VK6Au7sumj0atkiWtN9PlFz6jicVCgQMS7aoPSs0Pw6tnm+Q6GfwTpuB9t/zGWMYrq+2shc+fWTiPHTjD3SIWFEB5oWj5oaZVRxTn6MNVpiMU/B23/NNK4QnWfyM3/O/BH0gKO72QT/3Ezlakd5ytXUsPV9/G5FpHj5X/gYq/v1XJYx2mneZuhlYV3ehpd/0uY4GOkTHuCuS9ejF5cNbzOuFtvDT+HaNa35n00pn02QBFkW7o+YnWawaR947SiEwB1ol7spluDzZ7z02ZpAwu23E2/7gEMC58KY0oEsKdJiMiYPHiVtYszSF/EaGF8VJINWlHeOvGI136Cjhdt2T+TQ4rb7awJubsMFwGuL8r+/mM0J/EM3wZMmdupoQCDRmGR1aTIY04irjaN33b9Xcq6Q+JZX1CBMBMUzXwPsCENUgsl2YedRxtgg6vfdJv2/j2qGTo4FBvc0Jmw044NgzUZ9JO2Bag9Z8JeFy8//xD+eKOTM33WFLBQYcoKH4/X9B2/YhpuAh6LVYDhkCXXcg9bJfzicxOjOMaZ16ASzGVmp1KY2O6nwrJWeE4gZjt3icyp2iUzoPg7rkdq2TiKUJrXojVk4cTN+eJ6bAOLTbqxfnKz9U2zpGp7sXrYVfxqH1wqT7RqNda4trRD3rwfH9PQIaYVXL19iXwDfupqArDqc7Tk2ixFN/42NZbh+Sc+BUKSvOJCAIHrWYKPhtm2o8fdtfET/xWmc66GvjINSZNbDY2Ov4fn7cXLeKV9NZk84/KUyv+0YVUwvk+4+vPzmwPu0F0L6/ZMlX1KqC1E1+QESOw/Jd+qvYHhRNHMw7kfvGpWeAQfmR8eL9VXPvcrFTfj69q+4gyU2E7bvLhL3PdKp7SVlQgR3GZtAKfXr6nS1yyxClg3hwKSAFXN+6nwGD/7D/hN8B6Dj2dF+K6DxW5+47q8Vyjg8bvqKYcWixvQiWTj5pxfIrKaA9lg5uMr918LezWCqBu+A8s1J/mGBTZNdENFy6TMi8i1lx5VGGlZuiOzMm9zUhjHyssbVIaz0xRAAmWuzQTmUFL4KCaCYlGlrl/4Gb/EjnCmdz9dLYXuuDhUyXb0L9ywbJpZMh9e4iAMshQUZlOPJqd5AiHchQC5z16DBefmq3Ncvoe7HcVIMW9DSqEN5xE/aOPJ5knHQ8TEQ3XfG0q5gQaLoB0tU34TUc+mqeHCyoRtp/uE1JGLTuZIeFnhsstMuFy5w9ynScX5iK+nwiGY7lA72uKfTEuO4wl6gmwHG9HKyiMVERTCa9XXrcGW/fqj+vSep9QHUN9hTVMRONJeCLQwwPJI3rvHSHINQrKo2CfffVzqS43+Md33v6W18mBYXGXxnI9ZGvbH4U6jpDFhp9tKKbgeoDA0qV3K8nhj9t42//G5V8fcVLaBXv1suVaokmdFtLzPrwFfmFtz0wicQ9FKFlrFeoHllGXna1tW3TZdGBQ8ibgjf9FrgktS5Eh/Rxp6WfQ1sVHAwJk8uMgda6Rjne7PWliLztOC8qMKj8JXUPyVB+0JJYd2MdOxbRoQCnKRRqEhx99JIRGimq5w1PZaL3v4ODq3nMMNHBu/4d04Zi/iYCCkeld1lv0WzxlNW0008Om1XTVCtzE949+Phu19UplSkvnmSnlQ6SUCX0X6Es9QehZUHV/5YMqKg/3gJGLJBoFyG6G96GUE8DtRSHWqMwmsUcIMdCFTYA8ybtdF4M6MAvSZ7geh5Scfol0Ox9HyuIe3UvOgervfIXDah/ffeeMcCOEx8cRgrT3JE+bjp4H56yaJOZlPZkNKgbeHBmcRqQTyzEvRN/ZtBlRVHGmlf3D3sUbFk4zXBkIJINK8EGp/lKBzea0DEfKQZOCtJukho+Yb4Eo1ha92mgge/pSTp/VxW563rhp7yYRkfpKNrVUmh3YvuloIdEv9LVwpoZOuDK8eJcJXuvRm3bTZQVKgchyaysPaEkVwDkiMriNV3mfOx4+k0TvQbWoXTQoGtEnaygiRd8kLMJ5a8+GfrnKdG4K9q5emD3Wt+6dYLz9LvOYut2HPKS2kmoC3C7pUQmV7l2TsquTluK1JCouVWIbXBqDormjJNEk33QoJWEepzJ2tQ2wD1fg2vLtS4Ou7QTLUtJxoSCsyhf6gqOpyawo4m2PVH8UDV3tozOHTQMFkHh4ze6NSw+BmdkchUQ6bmNBHRYRRzZGhnAOG4CO8kKK54NIUwb9BvN5rQOW7Dcd/tMV6kAXhI72bmie1mUmd3pD1MfZHf+6ubWF7vrnlo7M3D49WmXUsWxZOVCj8OXGyAgvIUROyzPgm+RgbXvb0/3c05geArjT27vC9PoMVARpTh7Rd2UWFfjCjoHeRk32Yes9KgJobpCHXomVbmlV+VJ5gXr9tNF6eTeZtGWTasYk85G8eylYtWjlVx11suOvS9G8E8IwV/HDpdfeAI58ZCNimRBvQPTDPgLcemqbacigrMfiacK7a3NM6dxf/2C/wlSxJLOEIQ3/d79uWGTcb1iZqNGOpnX1fZsWr9VajY+417Qb6cuogiY+2oVuoYMwhQG75MJqoaKJAxsAHEXa30jded0mb35+Rr0UN2FsKdBLgH4CWhgEPynnh/m4xlyd8efEvd3qZencmGH1Kff0K/vT+uNnNBr7RQefyEgYOKqV4uMLosDqOwWUNjroYMxVyJIPP8ixDscRRXHIgMH9OjnNRYJpPhsq0PBN6B/0UFYTtuo1faCdjV0ZObwrZ+LCpyecxxohu4TLCjtDfI7ZTFhFgJ4FhDNNfO52dd2Hr78OPrwlL+EfbUWCkLcBYfRiHzqm5nbfV39rncrYHdWrsrjyg4Pdt7soJ/kk0fdfxuiVqNi1OSMTgZ0ZhU6IOR5x6ihjYGKi/qb7Sycgj0HQTm4qKd3QT3Suoq2FMgdzQd/uVGHghIYSnN/94yztkfgOG87wbLqej92zc5wPOM5KLOCwchyyKrAnNxwDflCsk2jIbF0RWLBs+Kz+cR1Djyy/jPIQdMw4XVh+e15aWMRNaCKi+nFq2rH3fk+2vvKy4wuZ4+6ddCmLP4W39ggcb9YID372dQanVa+b23pqose2wR++gKq9wyztERLKXEZkSRFDfaauBMadkXIzx4rBF/iBGuWHBbFNBhPXMRMvZhsWFD4OCe/GVJ5jtw6/Dn4qt8ZMLUJJU3LuxoLXw8u5OUGW9PQq08vsFg+7vN25W8qZIW8XM6Xvfv9Kz+JIRQ8VVlYDQes6yXQuj0TEbgF6nd10f56XNTMjthhxtOqZH2MCsOcxJVUFUB1IH4CMXM/URDAT0XQdEBzk2hrylgVh73j8lnJNK0ysiuFGS6RicrzB9V0wqBfBsfWTEb6dDJM7nsA9wzJ6IV5xaWMrgrbdjUknjNS4a6+Zh6fIdnrooG+zfmx7JYCG/GCEHe1K358E1Mjh9SERb1zEyCMnsR8gIU6Dv5jpbTg1dG8p+f9OassTvDiVYo4RWDMJA1MfftbqHtFKglDMlblxb/C+VuGm51VpFNqCqEXLwaImx3gizGl0odWwV79NdiDTyLgBleobaptNPvL87BQrDm26uWH81j8t8h02fVfTlmsc53dMnKM0fFBlHnziVz8UVE8HfA46WK40GC68PIemWsidcifjaOBosI+rY5A/zy+zacXvGQzyne4DXiskLrspfd7cppKawRSdMzpSjigrbZe+ylB3S9KLydSxu3yoT+dJaGF9v777DSabzbFUtN28X1uryhF8XZMgBmQMpIiZ2unmEBuV/0bF1CiYywXoPT/2tXb0NLxq0T5CFpXn7VjCdkM2UHZ4VrywR1s/E/F8NDuq0KAQqYbzmk4yytSB1wdwYVH+b9c7nN6q+f3dXD0XYxZ+iB0lyQr2X2HaUe5YcyHKlA5w0Nh4Y1WTFtx5z6SkFjlMDzSBHP1gYOBIFndQSaiaNMXyBhp1UrE1HeGAasX0Mz3HVDTVcmYer5ejJnqnAl4KwRLXYfhojk/OYx8xog8jqK2L5+lim0NesHz+w3nWISxDmsjsKC1mAo4mmcr3RQvT9Trvby+TFRN7gMMiw4QBjB4O5CQ7/gPbxuFp32gxbxUTt+Jlwi6oW4dFA5DcjTexj1fqkR6mJJm/oHwMsyxTTqPlEPTGeH/fa3M41jDbaABEBN3Rez0arDk6zMBjuSoR2tE0pOBy3KyCwB8rUrfBjpN0IRz9qA8fEj4r50SNnpXnWyW2pbZAV/mTE690zONrLaHMg9qE4sgCthCNetZeFvoMt9jTri2s9xwUBpGnuqM3onyyXRhzMj9b9VwD8zY9mlQi6V3fVp/KRTGscPQCeYsiCFeb87SKlTqOUsWbPD8ThjY9ybIwWuqVLN1bmiVNwvWMmaezsJGwXZ8KjUSHU8f6Phqc41YxKOAvKUdm5qAkrgkR9KnwONvtn1eOmn2/pGyCAN+y4bZ4xzPia9rxLyV2YO5Ow9gsPPEDhvvNXxnukleNGmqd9YYFkr82JoyQGnJ6Re4NSaN0kFAkt5LUS6nJnOiAcW9Y6k3VDr34lNVQXvAfAM07GnOYU7Ju645aNCUBsXF6CVkHQiJwiq43EXEKlmsztej+IqkIH8rys6RMXS7eG6xFFVftwOSy4IRqcdU5xJDzQ78o+WqOJc2dW8g2X5voidQ4f3nZEvj7H56awkELgPjwNUoI1dF0qL49qbeirzv977/vh4mXr9Z33hdFciH8ytkdphh4xLd+btHUYrWODrasskL96aJFceGzg2IJHt0ec23yTYp5HP8Sd9/fZKaVbYAvbZDgm/E2RZLg91X6YAQi9tE5AkGjyUm9BGk5qEZZ0jKJw5yb9XYg4kqbGyvLPugf6xt6eA/Rf0YDjyfMgUoKurh3PlAwh2cU6K4RAlrdBGW648glg2ds9FcJTU14H1XAT7kEPH6XTFwkVj1PQ/SojiDFLfLuQxx+0bZBvX+5LTCmggAP/Th0JPCpedM5FlMyiBzYGrArc0JRYkD5O5UTBjwbcN2gel4+O/7HxoZSPYbrqqeGQXaBEOXctkL+N8Wkr8Q//0+6FP2cjzLDSWMWDGFrKdFJKoFUuYGZNMZFNyCLTYXd0Ef9pNgossPY9dak2Ue3YpKtqikI4EKLHmPIKd+gw7vx730hkQoZMzfYVgEyagM7TzZMSJQNnxh+iDUhjsBtuD+r9ZRrfTbdTE9Hbj/zfpD1fg1WAML16w7SS+YaP1xmxAn98SURrJREffXWpn+5jXaoH/WhLYbNxHzBUwU57j72Mj9HsNAANLkl8LgYz1LwlEG0SH+RKb4g55Q4+3CSyJnoNwl47leAg35jVHAwUvy8jT2mDpuhY6Up/WhnlesdoUQ5Oy3p4eP8+4Y9M4N/hidJZrKVS5Tv8jvB2KW5Se3Fb1bfP02EVft7z8aq4/MMCcY67i2OrRtdO9Nee2saNKLNB9yo8aJnfs/Z/bsoY6xgTnuWgNLnb+s2lqX4WtaVTTs+GfThmzdB+NAMnbIeXZg+Eowoqkyrbw4SHZ7LhMiQ25ZvCxBa1490aDk4o+gfpG/h5viQEDTpss5w8bg2VAUjxbYQLHH/OHvCfE0h3/tpBoje/cPpdqhZpXa2i5ZrvfebFHA8glC/zZBL16MeWTznMlBfuEsrtBWxzUDI2nE3j5lI0M+x4QeO42q6aVz4hkW6SDy1leuDKtM/tpi1X4X9lqPEklpz+VgeIBgzRZF9kPCoQe+cv2DPRgMM/XO5XnsCJalFVfQLViZy4vj1kMbTlB0WLznMIsN3OIRUhzhOU= +H4sIAAAAAAAAA+18aXcjx3Xo9/kVMDUHIAUOGo0dM6J4sBIrsRIAOTNvptEL0EBv6G40FornTGJrS7Q5lp3Ykv0sRSdS4khW8pxnSd7+SyIu8yl/4VVVdwPdQINDyXr5kBPMGbJRdevWrVv33rpLNUlRUFTXqSSLJK0oWZajd12sQNHTnMpzZ649122fTI/GrExve3zYI47t+khB1XwDxbNz7xapj1ZoNRduqPI18Byr0cYgjZBd8pijAfDpLRf4qKzK0XddHgjo2UVNfVFRQUtfVSXlLoYREqujIYUFAE8fyRyAwThC4McYKXJjXmjQhEz2990Mt+dmyD03yVJ7bmkPdwt7Yb/frdCyxpJ0ntpTNZJUNbe6N1BEEyeGucYGSlZRsR6ttliKFhNcd8yXQMs+M2NYTqVlNyHTxJ6bo1XwZQ/gDoQcUIuSBia2zXA9emmPmUlEj/4GCBW0Xp0RJrP0Nh8c4yNFHmMZo0XqS/sQvznNSKWn6t7zz7sVUVb3ZJqjNUIgaTfsbLBzei/gd6szid7TIJ1uTWV5eu8O7qYIlZYAY3E32ScEgQa8hkMYjujt+XWsjxRVBphtVBJduMu43qQz0tYEpIYc6ht41+XX20iOUJRHAsFD+QgVv/7iR+dvfOW++OXbl+99dv7Rx+cvf+K+fP3L89d+dfVXfwma3Jdf/dP5H358+fqr7st3/+3q41fOX//Yff5Xn1y++zvQ5rHi1LfiO0IJJEdfkIHW5MvpKcP5jC9nZ26F1FsUEnyZgZXqX+HT2ZnHyhiAIxdS8gnz4w0Q7UCsWZ82c1pI5iT8BJcovoTPT7RMJRr0RoJsniiOR4mRVD8Ycv1Cojc5HjZrbKhGKtlCKpUJ5hPDfqrNsSEsyVVLWuAoGk/h4dD8JBY5HrTbR6P8SAxic0xockLcO69EtWlQY5hUUEnnQvwkGg1PDqOYIHU0Nhg+DE4ELcHgsUqdzGhzmWhiAWxcC3krVYbBO7GYHxuGW8lSM8qPulwjgE9OvLNCrDorADvDF/hp6CA1LB0ED0/C3WiCOWaTw0GRiabCyjyTqCSVk3AgKCvKsb/Qk3P0yJsWuWN/qRfvn/ApSWkCW5A6zoaj034wVU1lJqU5Ts5y3SJ87gZTfqZY6zUnvZNiyB+njmkhXztODWIamYhSh91eLIMLs9BUVSMnR/5+uUSEpnK5VGaPM9PBSTsVFTpllsgEJDKopb1VL56vjzSqTkUmDB2J5ecHWimGtdp8g8yER512SuaSfIPJYG2NGxV6/nmXbs7bMhE7zHBBKaCScfEI71OhguIVTobKIFpPN4fpyPgwXWVl2dupzPhMrpJV41pvkE8cp5reeUwuKaPCNJ8fFP3KqDmpqSU+OqO7XakkzPxktBM4mReaSfU43GD63DjfDhNdtjBuH4R6Xa6Zyx6MC9lEVIsNq8VwSKgWj0ODXDFHHlGzUaVYn3EdrD7yd/xVnIgnvWmqrdUYBW+VYgdRiqqhvkg3ctKtM5ImcWrWy3v59jdrIyQmHz6oYa0Tb6Yf7lQz4XCzenB8KONaAdjqBpUvaIP0UBPijfCkyaQCCW0o4Ik4m5USajETTqRqCX+vkhjw+XAyVavB5zlfDifYWt7PwvZiOMnWjuHznK+EE41axt+H7YVwslE7gs9z/jCcmNXK/gFsL4WTsxoJn+d8NZwo1lL+3jghQ/zFWgM+RyH+Ua3oZ2F7sV/1iyd4KczNY1N52ElpB1rlINYPC3V/NFRTioF22+tPUVr0qNSTu5QWLKi5ziyVaY/GNDfs0qGs1MrUBzLPasN6oFVOlVrjpsBSfIrMRIeat93Ntkq9co+sCnmqNBy0u1wslT2opoMHzCDCEvl0IhA7loRwUqyI/TBzVB5jdImjBW7U8c6GmbAY8FIkPUxPskksWZqmM4XenBamIU2Ztlvl/CAf8JYOmtNxgu3PlXIOE4b5uf8we5yNdmtarpUID4Vk5eSQwlKHQnnSTGhVunlyGM/USvMKz7TKNaCHxFDphOvhfI6oMxg3ouLFUL1Jjf0tjRHloNIOhzFZ9bJyPC52ea4Q5JpzKd086QTlkFwOh/1q3Y+Ni9W6MigxdCFONIdMcTjrsckUR8WqY5qVUvlJSeqT0xrZ6TS0uVavjU4SeZUe9huJRqvcG0Xxg2nZr5TatUJ2lBgU1aOqV6J7FUqqMbnMSUPNFw4TkWKl2aHybDDemZWioeqo7z0s1tRiPl/IFjNs8ZAseI8wplr1JsMDMVUnevmZGMjOBkpAq0wwrU7MBgE+y2fSXhHH+9hRZ9iYNUYYU5EO/MVh8zB1EGJzOCsmlcJxyH80aqdZtp46lkuNVI9P1nOjVE7g88nk0axdZrtRhu60D/BAWcn26oOCygzzilLo1Um1Eu8Oj6P08XGymYyP+vJMmpNFIRvq4DmBykZi5QnRqDUmiWKwe9whJ0SncZQJySe1XLMfF/ua2qzmgsF2Xx2l6s1aa1xsiaNqfSZ103Up0solj1WxOEhTQoBv0UQlXsknagOyP1T4vjqZJ/lZmARex4TIjytH/lqlP09VwuVhukeoyjxC4JWZ2mqnsjOuGKAqslpIiQc5ma4o8bZUOQCHiVLpNvm00p8n8/njQ40aDOYF5QSYTSYYDohHw4ao5cY1pqBF4ng6fXTY4ftCLD2fUwybjh7MQpqWV0lBS86FuhLDiOgxTktctj9uD/pdAmciFVydtQNEJUsp87CfyCcPucQBpfQy/lGJEVKVDAVMVq/V7ykEhg+ycj/a5PLFYoGqN/PtdnFCDyLDViDaHUjlVoDHsKM0P2sVIpgUpvuH6Vo9gtcBhbwabjGxQCgbP4A2P34cCsX82V46WGNb82CTKxO0d0RWj9nEpD6MUWxuFCMZjg4MAvlpZMIqeeZIKzDScODPi+0iOOwmgJZSuljhDmYnQTHe8DeEsIw35z28IWNeLRVoSjl+mIiQ1cM61w7mhRNKmp9w42AXKDXTDUjt4kEqNjr2BtWCmp7k+qVcIJY7KIwTpaxWZflRkD9OT8udQEyM8o1eNTtlOhNlkptkTlIdv5xjcYbpzfrNacXfaGERLNvq4+Q4gitCKwm6Dg/mJ0ellki1O+FisClyLYmTCQKY1VCrxgfUfi1XyDaoWpSLdSW8RtXzh31/vDr2HqbBdqalaGMeybKBY4yvxgaZ9oA6xAaTarsdFtsUMcuckCeKf35A0sX5aJ6pY+Awm3lL2chc7VeCmfmx0u75IwO2FQlpZFyI9Yk5VVUxrRSfRJRgs4NhxfGU0io5/3weVfHZoF9OxXonzHikTmg2J7fDuOit9adCPFFu9ZiAWs3RHaUZ60e0fJ3KFpOT7IAL4qET4AUE/dFYJRtjOKYn1bkYLYYa5VS15o976fpUjeaO+5g3yAbxoXcWT85mMW8x0ozV5tlSeahMj8CRWj4qz2rzDH9wdMgX8omTFNlhh8pRi/UP20exWX2ezShFjj/KiSddLcqQY+Kg0puPCVmLc+VcmK7nJ2VGlDLzhORVh7VyqhNl65XJAdMLZ6tiN9WMMPk+Xg3x9fY0p/UJ7rBXYvKt4jxR8XbZzjiRxQ6HfXruTY6C0YQUGwQHWCfUK4od7KTYSyTM4IcmKFpW7hrxE/x4jkC8cCfRowXVA5zHaurRUcKDes92jSCLp8UxCKpwP/jobRJHzB5JhKwA71qVx7TeyhHz2V0XocwE0sWMBVJlRcG1vWOZDAQ+rlNWkMbqrgt6/bsuEMxUZXE6A5EIDALVPqvcW4AD75gTe9towM5aM0RgaYW4e2OWAlg8Hnsz8K1XWlnGhca79vZARyrVbHmsdMKPgQtNfs/Wo6MjJgSrQvrLwXFsG0LbVmOh7MxFcwrtMGeo+I1nXQRrfU7xx/XYlp/1JyQlgC8YoUiwBwuBrcL8QfDP7yewIEbRDDHmVMzj8upTeEE0CYF8PKDecwNaL9/7zcXffLpGL2SvEaeYZPsUiWPVbQ/m2fEpHIhEt+8Edu77Hzot57G5HI0Spnqsb4TrMHTHtCDswGD7vhka3T414yK3Juzhj+1oDdkwQHburRFLjNV+kZ6BucFmJfQv14D3VX652TBBQSvqNqB913W6VCYPRHpnSM+ABhn4z84ckMH4GyArNCqHPqQ92xC9AyBKpEC5AtBwkI8nBJYBU/vA5j4iKZk3mbzvQayF6/76izfP3/rd059+9PRvPzt/+7fn77z19OcfXv7sB+evvHz+2Zfg4erXPz9/+5+uvv+Hq7d+e/72T85f+/zi/SdPf/V30YBfOn/tlas/fnL51qtO3FyQs0KqI3M2ASNuUkdo2+FAcwUPBCAnDBi1zbr2XnSxLrfb9T3Wp6iErCptVu1ve57z7KzObCACOzEQWWE56a7eteMoFQ7cNnscBsm0OpaFFXmHH8PwGbbQ+kFBvMUIAOMHFM0Nmveg5nUJhY6EMgIpUrQxJex/TlfCdXS6hEEBG0MjTRhGGtnoXZdHphlapmWPJYUDVcdM33gAiCizPVbYCHFmm/Js1Qqsq/qGHbfbZ/gx7BjgRZ3u0dMmPVUR+wFNGiE/eKBAAPDr+T34Y2vb593f2boHSMZ3/kxju3hy3D/nvUP7BrXaLmSmgsOko8/4tjKRcUhyLM+CIzKif6PEMcpPMQTg4u4t1Hbx1idXb75z8+NRAihY0vFYhGDQJOb5nl0LFmMAl30YywOBUZDxVHwDqedZOSxvtJcQUBMpRd/LRzAB+Yjjza20Jr+s6OEI31hQ+iyjbts3AHSZabnzjz67+vgV42DZXYOSWPKuZZ3rACy1Qa5pqYchi+BTIKHPPWMimeYJeQj2GR10529/boGxmnFDoODizL1Hv7/+4snlVx/ffGvLx49SiWYGPWRL6Fc1cZBx3miYIH1EimNBBd2BkL0T7Jk8a6gyK4CT2iV2BzSpNsXasnUbTbGynzBt+EgC1oOdIrcIWkHrTsIz48vfXLz/2uWn7z198vrVn169+N1HNtfJWIHuHdiFYE3frOT7148Eww+4fZqrNJpnTjl5CRz5JovcAviyxHm2KTG/4hVAmi28WiUSfiAdXkCI+/apBfJsBdHZGv2QmWABiM8oIet66SWbq2kC8qKg9heQ+jcHUEgqRONEo33j0GReHe8ziNzkxTifeOuKvpBYCwU7t5ycRptkmElyZ69Rd9VTuUQJD4djITwSi8RC4DeOe54lJYf0BJVAYC2kRCh6PQSWQkLF/aVEQHkIDVEpBziNLHXmvlaUHCXnz+BeaGjn3npEsNGVLhPSoshl/WxZCwxbd11biHuhiD8eDsfDwVg0iofxrXVHYmtRi1gdFAjFojgejDsOMssWK4Ni4WAoFsbxsNOgRYVjdVA8Hgr78UB0ZdDZOr8NJiD5WDLkvsHGh5tsCLKuQCEeuxcIlsEC2P3/OpvwLQVGWhUYZ1/j66/euNlxI8p5yuJIgEeKITZG2R4Ifhd4YPD3qgeA9gJ22ENo0O5jBZIbU7QC3HTbObvjpPSOnAFYHGIFVDtEjAED7jvsutEFF2X6I88NWJofU4Tgx91us34G9Ftwu8ec282xHmf3H6JaJQE0+RhRzhBkf3ubVXdgcLIuIpCQR6gOrZPSB6CAEJbvud2oeXXGxaCVANjqv0CnB7t9quM9wx6vY1gyx0dIEg2Cp8cL+NvgCSA/e7wys1NE+me6kYu9Eilne6W7acAUAIIdjIXpDG7dtSYZnn74w6d/8aPz1/726oNPHKKiLcM53NrsHSIwWIFeYHd0/hbY4LEGoTb1w7I9tGdOBs/iQUIUIMI+f+dX55/93cVPvoRL0hezETGpitfOTLEy/SwYIN8qiAzR7F/+36c//wVwxJ5+/xMQ2V988fIisP/P378Bg35E2OUffvj0g3+7fP01PQGwgLEfvCumGUx134N4D7N/jCzynocue3bougFAuhC8RXSRtMHo3tEugpEOUZ2TA2s3StBMWazS7du3122RHQMaYaQjEPhatmppAO1wuAXOTiOBRkADaQx46aXVAExFIADQNp3eoxsU2Iev9HGmv2P0B1b7xZ7ZFVzpWswXWukwdcDoDq90IylV9E4fRws94Lq+6Iq49hF05KHr7lrKtSuzNLM6ImqMiDqNMIME24iYMSLmNAKKYJ4yRXClExwuR45pX8T1Z8YtJqeP7Fbacp8IQ4Ks/2QFRkzODsYstQ9zE8DtgN7mamxyU9fSmNfBzqoisHtoyas5RB9wAqhVNRpdQ73VhV64z8lZCkVe+2gNxmxn7sVVKBxehYJ3foBmkW5epOi9jXej3BCFRc+sbpMlYFhsx8Zg4VutA12OylOgd99hP4zIYLkoYyng5FvLKNulLFRcT5b/fyfX4OszybVboI0OlCrPVmi268U771/+5sO1bbDz4usvPgXeHsyVXOecwIl1W+Z1bd3eAj8X1mvFwDqy0lyJo5bofN7gXRmTr2kJRaiED3Y+g2rok9MSqwA+K6jNyUU0OWc50QzD9YILd2If/GzUeMQVhxnMJUkEvDQoNKcOtJuU3PcsYjaY/V1EffDLQr8eLg9HsOdrR6P1A9zjq8+/f/Hj33z9xVcXP/3s6ZOfXbz546u3fnv5ux9sHLOkEyxzy6M7wXdhlteDsrye3QcPhFP/Ln6G2tBBcU0/8KSv6YVOhbV3y5k3TvbGGko7Cvt3xwR0cXDvwZYq4Q+2XnyBgAT3gVEETdumkYDkP9iCPSohA/EDfY+6HCEMjUbIRgivw734AkaA/xSrvfgNlry8fXjdem20P37mBl6/Qc/a3tUNdIh1Nq3m2vP7u91Ac7N05rvWdshFcKq139gs8BVs1aYNcmy93gqBQMMIdZf07UI/coPdWNprPTR3MNabS0AkoZJ91za95hqBgPnx1cd/f/GLd/RUxPnbP7x8939//dUrT9/96dWvf33XdfuU9vG0ooDA0RaFLrHf2GyaRZwzBySbIs9rok5rxIl2ySfTIDoh6W2PCxpJz44DvBFrAr96pdMaYaqOUxmBpfnoALEhtFwJK3XneN/1+Pzlf7l9qicsn773ymPXelhoiyt1z90B4Jq4ciWmRBq85L6tyOMUD+oytwnsZlHgSgRoJL50x+SmdRbncsqNil6riTn9Gvqi6GX4R/estEmwEvkIFgq/QYkPjqkSav9m12A8aBjM0G24EONZIIRAiy8rUef6ZRgUGkIDo8GY01KjgVq6RLOiZforHMlEI/PoqF6yXk2h+mHzYgrBsehmCiw2+2RFlVkJXQxxqvE+vn1qYjvDbp8uJnYIHE4dhuvF9TSNiuu2iyjPoYB+Zc7lgnFHBxryE91B0BkJOWrP4K570TpHGBZYM2ATYD4QUF9iuz5IGmzaFuiJCywP5YJ9sBe2rhCmY6GnQP0UFt0XMdGANoTFnGHHp4olcULLKYB/2zmz6TGB4QIWA51BF3NC2MWXVb4BmVgS9z14EPtUxQNvbaw2o1sNTgczul1k0OKjBcq45qGXbKGWrSdszI+hmvcDfj9QRfjGCIYGWF4+eviMM86KJrREA8wTK8AzoCJwMxdYk4sQKBdaBGIc+C7TLmUsSSAApimPfZqzNSaZAmZjzN71jDF34vyjH1y+YyTSL3/2Awh//v7n5z9/simbrJsfXRFs90+cwW9YoDDB4fwNVXa6uMMT0jXZ8QUvVP1Wj2q91rP13Na1wYexR8ulbbxKYyau0b0sQMwGb8jZ4zKmYdV1sdkxzia40nWUxmYZzHEAsMsqIQG2AZ8KiAGmCRTM2wP3g5foHjwTd00mXydWumkwjuYmcD7AjqzKFtTFfZdHT06Vq4GmB/oI10/uZIC6Y4ah5YWQWN7z09m8yT7oo43LMo5FAU9KX8CdNKtIosJCojx3XY+BR0uQfR703FtYqr2t26fm89nW4/UE+AIZZIfnrpU5u9dw0rY11jHGunfNFTy0Vrmv84j1w9dFy7IoI/tpesDOye374XXLsxiylIFF4e/s1i0YxqCLeyCAO//qR/qtk4sff37x5me3Fs7GejERRgcGvVCXKUsy6BtkSmzlMCAPNnW31GBVH3hwTmaDPvRo74WZRL0T/Pa6trehUy0ysEHPSEOpHgPbzrACsLrwyoStC9jRfXiH5a5r2/PvTz6EtsHo39lZwWdkmB0RWvpWMAKP20CqwwArBDxv241E5EDxPX0ZqF7mkHeHXZS93UySgy79ceU+iOV+iblmB4hFdh7AGM8OUGZ63VyH3cuDtt8hAw6T2YqexKN29Y1EbtAuXC74Qek3QnbNOENf0a4+mUPJ1rwVCNEattVeFoEfyieNlf72uuEwXvfVyVjrhYJ0F/1c7wMRnP6CJSR7rVe/tQloshuMtcDVbDFUWIF3G5Uxp25TOzb91BMTz9DPxd0a1eSiea/mWyirTANLKii0jxJJ5YYKawolyj3m0xkfOjIafeDlUClwqm5SUzt8c12jLfqu3+NCIbJTELKEmNBdcBCsqo2pUgYQjMA3KYcBAmNM+JbxBg3ZVKVaIkAt31BzgBtu3LbbWVau/P999MlSTP2PJ3+NzCNqNvxA1HYff+jTw7sdlzHK+PqttNFan923fQPmF5ZezfcYNijut9Tc0PAZWhv6Lz5VV05Hj8s4ihwO0k2HjJ4hMxT3EVJaJzUDYE5Hl66osHPjuQ47HegxdQt2P+t0gzDPPN4g0P+cb3/O+bbiEa/dL7vp+YYSYPr9nI2aYsuZfUtt+ZbuJ8cKQ2dRlWle1GiYJNg2lWizG9dbx6PdwJMzbp1tOqjGEicSFHyp7ruQUG0poh6PIZ6b5XLrpZe2dLFEaL9LuVzPbsPPjeXyO/K8gGMOBNIujfYyLryZgJ6s8oiMIuKyHnkBQXNt64EstJ4gelgbZg5d2Mf7HrgSz4aLPAhAr6Q9fOa+6+SYF/vs9fOxw8suZ1be6IMduKLr6zW8MYtLqKa0Wl8ySNSZIsNXesCqYDqzTvcyU2nbCu/p8cDmwfzI+cufnP/Lk/O/eeP8o59dffDG+RtfPn35TQsiHgbUNOK8z+czJveh1gTHbaN5dvS32wzT8/qTi/df1/E8/eBLCyrLHhrHv2UXEUa4j8aEq7tobpMw5lYUV99fe/uNK+271pLrM8ruJgmIQtulL0NVFn3Wy1uO+XA7qsA1qJyvr8H1fU9HAg7a7yEJhTkSVhjT+rb+w19e/OL9i3/9AOyFMdvFaz+BmP/z929c/fb/XP1p+RqhIczItDy+fbq4omq9oXp2a12C70ERXgirxXCr04USwpce//Cny3c/ufj0789f+ykQ76s//vH8929ffgxfg3TlmuWS6+KXr15++keLoCApI3p1Q4axF+7/rxcfel/EejotKqr4gp+LyqB1ACoRGvIFZr94708Xb37o2nILXUW6t+VaFJgv//Gri1/+3roqK0ZMh8eAAQce3c49Q1v1VUAp/8mrF+//s01Vl2/RwZTRrq6CTfSIEt9Wc6bPaJSujerzRsW1IPLwiqG3Ht7jsqos6FM8rqvP/tHl8YEe1AYWDvov//kfVvUZso821djQYYNlSLJQu1X8nehdE2wrkC68aN0PoYguBtnkaDEC8XelKGe+SiitvkloM3TrLylDq6zY3lEGg3OgH13fyQuMCGLwfQld4pKWLx1YRA+tYFPmXYcbiOveEBhng4HOCYAaiOiVYBSFyiy/vQaD60C2F4j7YXrDCNBaNW/FwtHGJmLomsp95eH+3QfYA+w+cWeeuHPivxP3PfTuPMCwnX0fsCVWtxzKIZCykk4lImTllWUEtgQxnpb1+LVq4ojkxDFllBOhbXWoN5ovwnt2VvleN1Ika8w3JrYNMDLCRsHDHOrAL0KGbp0Bbi2MWIGUcVe/EQig74P/ZpLgjgsGzYuX5e/ZFGlq3vHVR9/Xf9mGLlhlvD+s2yaT++Yr0pyFq/BQ9fB6ttmcwhiyeDUb/l6gXsiDhd2AYQ77YaDBnrfyndrIdesL19AqLEHXLYNBk4P4bLASCynUz7TnMatZ6IviEKm+A9bVl4qtR9BiHPK+HUzGsg4HC7Yu9D7Fujg7cw/t3RJ48XccYIf+JUzrDZYd3lj0syDap8S9gWJeB0CUmTtlvTSAvPQF1NIeIQgjg96muwlFofkuh6rh6612J32BysZFhz+6sDzMzT8kAfwLF7zxii+WCuMl49xKEyoNlggQNUHjtoUfQ/RnHbaIUCDgJ6J4N4hHQ5G4P8YQQTrKUFSUiMTCAWLLYqHGfBcVucqALz4ZRPXUtv5ICJQIdN31PPqzJ8YkBvgd2OZ6weWHRc1to9G7B1st1Cz/0AQiHjjwd6ADb4IbX82/gGlyAzQZ4AtAsCy90k8SHL1W7ze4bcx26+z/AWZEOaqYUwAA diff --git "a/js/\346\234\250\345\201\266[\347\233\230].js" "b/js/\346\234\250\345\201\266[\347\233\230].js" index 8ffc6dc..7f62162 100644 --- "a/js/\346\234\250\345\201\266[\347\233\230].js" +++ "b/js/\346\234\250\345\201\266[\347\233\230].js" @@ -4,7 +4,8 @@ const { } = misc; var rule = { title: '木偶[盘]', - host: 'https://www.mogg.top', + // host: 'https://www.mogg.top', + host: 'https://mogg1.banye.tech:7777', url: '/index.php/vod/show/id/fyfilter.html', filter_url: '{{fl.cateId}}{{fl.area}}{{fl.by}}{{fl.class}}{{fl.lang}}{{fl.letter}}/page/fypage{{fl.year}}', searchUrl: '/index.php/vod/search/page/fypage/wd/**.html', @@ -63,10 +64,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -83,6 +86,7 @@ var rule = { } } if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -101,6 +105,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -120,7 +125,7 @@ var rule = { return setResult(d); }, lazy: async function (flag, id, flags) { - let {input} = this; + let {input,mediaProxyUrl} = this; const ids = input.split('*'); const urls = []; let UCDownloadingCache = {}; @@ -128,7 +133,19 @@ var rule = { if (flag.startsWith('Quark-')) { console.log("夸克网盘解析开始") const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -136,30 +153,16 @@ var rule = { return { parse: 0, url: urls, - header: { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', - 'origin': 'https://pan.quark.cn', - 'referer': 'https://pan.quark.cn/', - 'Cookie': Quark.cookie - } + header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\346\254\247\345\223\245[\347\233\230].js" "b/js/\346\254\247\345\223\245[\347\233\230].js" index 7afcb69..2fe7567 100644 --- "a/js/\346\254\247\345\223\245[\347\233\230].js" +++ "b/js/\346\254\247\345\223\245[\347\233\230].js" @@ -63,10 +63,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -83,6 +85,7 @@ var rule = { } } if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -101,6 +104,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -120,7 +124,7 @@ var rule = { return setResult(d); }, lazy: async function (flag, id, flags) { - let {input} = this; + let {input,mediaProxyUrl} = this; const ids = input.split('*'); const urls = []; let UCDownloadingCache = {}; @@ -128,7 +132,19 @@ var rule = { if (flag.startsWith('Quark-')) { console.log("夸克网盘解析开始") const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -136,30 +152,16 @@ var rule = { return { parse: 0, url: urls, - header: { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', - 'origin': 'https://pan.quark.cn', - 'referer': 'https://pan.quark.cn/', - 'Cookie': Quark.cookie - } + header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\347\202\271\346\255\214\346\254\242\345\224\261[B].js" "b/js/\347\202\271\346\255\214\346\254\242\345\224\261[B].js" new file mode 100644 index 0000000..bfc3590 --- /dev/null +++ "b/js/\347\202\271\346\255\214\346\254\242\345\224\261[B].js" @@ -0,0 +1,338 @@ +var mv_list = []; +var authors = []; +var authorsPy = {}; +const hots = '周华健,周杰伦,张信哲,陈奕迅,队长,林俊杰,王靖雯,时代少年团,薛之谦,周深,邓寓君,叶泽浩,莫文蔚,小阿七,邓紫棋,郭顶,蓝心羽,李荣浩,程响,蔡健雅,任然,许嵩,张杰,汪苏泷,一颗狼星,王忻辰,王菲,李宇春,不是花火呀,毛不易,王小帅,半吨兄弟,刘至佳,苏星婕,徐佳莹,郁可唯,张碧晨,王力宏,杨丞琳,五月天,周星星,刘大壮,张学友,刘梦妤,旺仔小乔,戴羽彤,陈慧娴,张韶涵,王唯乐,黄龄,易烊千玺,来一碗老于,周传雄,告五人,白小白,李克勤,虎二,黄霄雲,曲肖冰,张靓颖,魏晗,刘德华,房东的猫,孙燕姿,张信哲,大籽,音阙诗听,刘若英,王贰浪,庄心妍,赵雷,小鬼,王以太,方大同,杨宗纬,蒋雪儿,单依纯,林宥嘉,梁静茹,阿肆,陈粒,朴树,许巍,谭咏麟,金志文,蔡依林,李玉刚,马嘉祺,张远,姚六一,王杰,宋亚轩,司南,杨千嬅'; +const starAuthors = '周杰伦,汪苏泷,李荣浩,蔡依林,筷子兄弟,凤凰传奇,程响'; +const alphabetList = Array.from({length: 26}, (_, index) => { + const uppercase = String.fromCharCode(65 + index); // 大写字母 A-Z + const lowercase = String.fromCharCode(97 + index); // 小写字母 a-z + // return {n: uppercase, v: lowercase}; + return {n: uppercase, v: uppercase}; +}); +alphabetList.unshift({n: '全部', v: ''}); +var rule = { + 类型: '搜索', + title: '点歌欢唱[B]', + alias: '点歌欢唱搜索引擎', + desc: '仅搜索源纯js写法', + logo: 'https://tva1.sinaimg.cn/crop.6.7.378.378.1024/a22d2331jw8f6hs4xrb4kj20ay0ayacy.jpg', + host: 'hiker://empty', + url: '', + searchUrl: 'hiker://empty', + headers: { + 'User-Agent': 'PC_UA', + }, + searchable: 1, + quickSearch: 0, + filterable: 1, + double: true, + play_parse: true, + limit: 100, + // class_name: '歌手&歌名&全名', + // class_url: 'author&name&all', + filter: { + author: [ + {key: 'letters', name: '首字母', value: alphabetList} + ] + }, + // 推荐样式 + hikerListCol: 'icon_round_2', + // 分类列表样式 + hikerClassListCol: 'avatar', + home_flag: '3-11-S', + // class_flag: '[CFS][CFPY]1', + 预处理: async function () { + let t1 = (new Date()).getTime(); + let _url = rule.params; + log(`传入参数:${_url}`); + let _init = getItem('init'); + if (_init === '1') { + mv_list = JSON.parse(pathLib.readFile('./mv/十六万歌曲.json')); + authors = JSON.parse(pathLib.readFile('./mv/十六万歌曲作者.json')); + authorsPy = JSON.parse(pathLib.readFile('./mv/十六万歌曲作者拼音.json')); + } else { + mv_list = (await request(_url)).split('\n').map((it) => { + it = it.trim(); + let _tt = it.split(',')[0]; + let _uu = it.split(',')[1]; + let _aa, _nn; + if (/.+-.+/.test(_tt)) { + _aa = _tt.split('-')[0].trim() || '未知'; + _nn = _tt.split('-')[1].trim(); + } else { + _aa = '未知'; + _nn = _tt.trim(); + } + return { + title: _tt, + url: _uu, + author: _aa, + name: _nn, + title_py: getFirstLetter(_tt), + author_py: getFirstLetter(_aa), + name_py: getFirstLetter(_nn) + } + }); + authors = [...new Set(mv_list.filter(it => /[\u4e00-\u9fa5]{2,}/.test(it.author)).map(it => { + const author = it.author.trim(); + authorsPy[author] = it.author_py; + return author; + }))]; + authors = authors.sort((a, b) => a.localeCompare(b, 'zh-CN', {numeric: true, sensitivity: 'base'})); + pathLib.writeFile('./mv/十六万歌曲.json', JSON.stringify(mv_list)); + pathLib.writeFile('./mv/十六万歌曲作者.json', JSON.stringify(authors)); + pathLib.writeFile('./mv/十六万歌曲作者拼音.json', JSON.stringify(authorsPy)); + setItem('init', '1'); + } + let t2 = (new Date()).getTime(); + log(`读取文件并转json耗时:${t2 - t1}毫秒`); + }, + lazy: async function () { + }, + proxy_rule: async function (params) { + let {input, proxyPath, getProxyUrl} = this; + let resp_not_found = [404, 'text/plain', 'not found']; + return resp_not_found + }, + action: async function (action, value) { + if (action === 'only_search') { + return '此源为纯搜索源,你直接全局搜索这个源或者使用此页面的源内搜索就好了' + } + if (action === '源内搜索') { + let content = JSON.parse(value); + return JSON.stringify({ + action: { + actionId: '__self_search__', + skey: '', //目标源key,可选,未设置或为空则使用当前源 + name: '搜索: ' + content.wd, + tid: content.wd, + flag: '1', + msg: '源内搜索' + } + }); + } + return `没有动作:${action}的可执行逻辑` + }, + class_parse: async () => { + let classes = [{ + type_id: 'hot', + type_name: '热门', + type_flag: '1' + }, { + type_id: 'author', + type_name: '歌手', + type_flag: '[CFS][CFPY]1' + }, { + type_id: 'name', + type_name: '歌名', + type_flag: '[CFS][CFPY]1-11' + }, { + type_id: 'all', + type_name: '全名', + type_flag: '[CFS][CFPY]1-11' + }, { + type_id: '华语歌手-1', + type_name: '男歌手', + type_flag: '[CFPY][PY1]2-00-S' + }, { + type_id: '华语歌手-2', + type_name: '女歌手', + type_flag: '[CFPY][PY1]2-00-S' + }, { + type_id: '华语歌手-3', + type_name: '组合歌手', + type_flag: '[CFPY][PY1]2-00-S' + }]; + return { + class: classes + }; + }, + 推荐: async function () { + let {publicUrl} = this; + let searchIcon = urljoin(publicUrl, './images/icon_cookie/搜索.jpg'); + let selectData = starAuthors.split(',').map(it => `${it}:=${it}`).join(','); + return [{ + vod_id: 'only_search', + vod_name: '这是个纯搜索源哦', + vod_pic: 'https://t8.baidu.com/it/u=102347688,62200072&fm=193', + vod_remarks: `歌手数量:${authors.length}`, + vod_tag: 'action' + }, + { + vod_id: JSON.stringify({ + actionId: '源内搜索', + id: 'wd', + type: 'input', + title: '源内搜索', + tip: '请输入搜索内容', + value: '', + selectData: selectData + }), + vod_name: '源内搜索', + vod_pic: searchIcon, + vod_remarks: `歌曲数量:${mv_list.length}`, + vod_tag: 'action', + }]; + }, + 一级: async function (tid, pg, filter, extend) { + let {MY_FL} = this; + let d = []; + let _f = rule.limit * (pg - 1); + let _t = rule.limit * pg; + let _d = []; + if (tid === 'hot') { + _d = hots.split(',').slice(_f, _t); + _d.forEach(it => { + d.push({ + vod_name: it, + vod_id: 'author#' + it, + }); + }); + } else if (tid === 'author') { + let _authors = authors; + if (MY_FL.custom) { + _authors = authors.filter(_author => _author.includes(MY_FL.custom)); + } else if (MY_FL.custom_pinyin) { + _authors = authors.filter(_author => authorsPy[_author].includes(MY_FL.custom_pinyin)); + } else if (MY_FL.letters) { + _authors = authors.filter(_author => authorsPy[_author].startsWith(MY_FL.letters)); + } + _d = _authors.slice(_f, _t); + _d.forEach(it => { + d.push({ + vod_name: it, + vod_id: 'author#' + it, + }); + }); + } else if (tid === 'name') { + let _data = mv_list; + if (MY_FL.custom) { + _data = mv_list.filter(it => it.name.includes(MY_FL.custom)); + } else if (MY_FL.custom_pinyin) { + _data = mv_list.filter(it => it.name_py.includes(MY_FL.custom_pinyin)); + } + _d = _data.slice(_f, _t); + _d.forEach(it => { + d.push({ + vod_name: it.title, + vod_id: it.url + '#' + it.title, + }); + }); + } else if (tid === 'all') { + let _data = mv_list; + if (MY_FL.custom) { + const words = MY_FL.custom.split('-'); + if (words.length > 1) { + _data = mv_list.filter(it => it.author.includes(words[0]) && it.name.includes(words[1])); + } else { + _data = mv_list.filter(it => it.title.includes(MY_FL.custom)); + } + } else if (MY_FL.custom_pinyin) { + const words = MY_FL.custom_pinyin.split('-'); + if (words.length > 1) { + _data = mv_list.filter(it => it.author_py.includes(words[0]) && it.name_py.includes(words[1])); + } else { + _data = mv_list.filter(it => it.title_py.includes(MY_FL.custom_pinyin)); + } + } + _d = _data.slice(_f, _t); + _d.forEach(it => { + d.push({ + vod_name: it.title, + vod_id: it.url + '#' + it.title, + }); + }); + } else if (tid.startsWith('华语歌手-')) { + const cate = tid.substring(5); + const letter = MY_FL.custom_pinyin ? MY_FL.custom_pinyin.substring(0, 1) : ''; + const url = `https://wapi.kuwo.cn/api/www/artist/artistInfo?category=${cate}&prefix=${letter}&pn=${pg}&rn=60`; + const data = JSON.parse(await request(url)).data.artistList; + data.forEach(it => { + d.push({ + vod_id: 'author#' + it.name, + vod_name: it.name, + vod_pic: it.pic + }); + }); + } else { + // 仅搜索作者允许翻页,其他情况只有3个固定按钮 + if (Number(pg) > 1) { + return [] + } + d.push({ + vod_name: '按歌手搜索', + vod_id: 'author#' + tid, + vod_remarks: '', + }); + d.push({ + vod_name: '按歌名搜索', + vod_id: 'name#' + tid, + vod_remarks: '', + }); + d.push({ + vod_name: '全名模糊搜索', + vod_id: 'all#' + tid, + vod_remarks: '', + }); + } + return d; + }, + 二级: async function () { + let {orId} = this; + + let _sname = ''; + let _vname = ''; + let data = []; + let _stype = orId.split('#')[0]; + _sname = orId.split('#')[1]; + _vname = ''; + switch (_stype) { + case 'author': + // log('_sname:', _sname); + _vname = '歌手搜索'; + data = mv_list.filter(it => it.author.includes(_sname)); + break; + case 'name': + _vname = '歌名搜索'; + data = mv_list.filter(it => it.name.includes(_sname)); + break; + case 'all': + _vname = '全名搜索'; + data = mv_list.filter(it => it.title.includes(_sname)); + break; + default: + _vname = '单曲'; + data = [{title: _sname, url: _stype}]; + break; + } + return { + vod_id: orId, + vod_name: `${_vname}:${_sname}`, + vod_remarks: `共计${data.length}`, + vod_play_from: '道长源内搜索', + vod_play_url: data.map(it => it.title + '$' + it.url).join('#') + } + }, + 搜索: async function (wd, quick, pg) { + if (Number(pg) > 1) { + return [] + } + let d = []; + d.push({ + vod_name: '按歌手搜索:' + wd, + vod_id: 'author#' + wd, + vod_remarks: '', + }); + d.push({ + vod_name: '按歌名搜索:' + wd, + vod_id: 'name#' + wd, + vod_remarks: '', + }); + d.push({ + vod_name: '全名模糊搜索:' + wd, + vod_id: 'all#' + wd, + vod_remarks: '', + }); + return d + } +} diff --git "a/js/\347\211\271\344\270\213\351\245\255[\347\233\230].js" "b/js/\347\211\271\344\270\213\351\245\255[\347\233\230].js" index 7b00456..b85112e 100644 --- "a/js/\347\211\271\344\270\213\351\245\255[\347\233\230].js" +++ "b/js/\347\211\271\344\270\213\351\245\255[\347\233\230].js" @@ -4,7 +4,8 @@ const { } = misc; var rule = { title: '特下饭[盘]', - host: 'http://txfyyds.top', + // host: 'http://txfyyds.top', + host: 'http://txfpan.top/', url: '/index.php/vod/show/id/fyfilter.html', filter_url: '{{fl.cateId}}{{fl.area}}{{fl.by}}{{fl.class}}{{fl.lang}}{{fl.letter}}/page/fypage{{fl.year}}', searchUrl: '/index.php/vod/search/page/fypage/wd/**.html', @@ -62,10 +63,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -82,6 +85,7 @@ var rule = { } } if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -100,6 +104,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -119,7 +124,7 @@ var rule = { return setResult(d); }, lazy: async function (flag, id, flags) { - let {input} = this; + let {input, mediaProxyUrl} = this; const ids = input.split('*'); const urls = []; let UCDownloadingCache = {}; @@ -127,7 +132,19 @@ var rule = { if (flag.startsWith('Quark-')) { console.log("夸克网盘解析开始") const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -139,26 +156,17 @@ var rule = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', 'origin': 'https://pan.quark.cn', 'referer': 'https://pan.quark.cn/', - 'Cookie': Quark.cookie + 'Cookie': headers } } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\347\216\251\345\201\266\345\223\245\345\223\245DM[\347\233\230].js" "b/js/\347\216\251\345\201\266\345\223\245\345\223\245DM[\347\233\230].js" new file mode 100644 index 0000000..7aa4ab8 --- /dev/null +++ "b/js/\347\216\251\345\201\266\345\223\245\345\223\245DM[\347\233\230].js" @@ -0,0 +1,405 @@ +const {getHtml} = $.require('./_lib.request.js') +const { + formatPlayUrl, +} = misc; +const aliTranscodingCache = {}; +const aliDownloadingCache = {}; +let wd_data = {} +let video_info = {} +let rule_video_info = {} +let vod_ids = [] + +var rule = { + title: '玩偶哥哥[盘]', + // host: 'https://www.wogg.net', + host: 'https://www.wogg.one/', + url: '/index.php/vodshow/fyclass-fyfilter.html', + filter_url: '{{fl.area}}-{{fl.by or "time"}}-{{fl.class}}-{{fl.lang}}-{{fl.letter}}---fypage---{{fl.year}}', + searchUrl: '/vodsearch/**----------fypage---.html', + // filter: 'H4sIAAAAAAAAA+2a2VIbRxSG30XXTmkGjLc77/u+O+UL2VElrjhOlSGpolxUsUmWsI2AwsgEASZmDwKxhICI4GXUM9JbeKRunTnzD2WNA0kqTl/q+3+d7j7dozlHMy9CZujY1y9C30dbQ8dCjyMt0fPfhA6EnkV+iDqf7eUtMfbK+fxz5OlP0arxmYNFbLbcNVvBzgcz1Paw7QBFeBppbnYDiOSM1RX7dIBQ5dtVOpRx/IqGq5HCitUsdmJZxXMtitUsVkef1T7ktShGA/XMFgsZGEgyGmimX2xuwUCSURRaG4siGc0l8a6YT8JcJKtZStlp8Xrea1GM5tKzZBfAohhbkT245VtRhZFl6qVvRYrRdLPTxe33MF3JKEp8oDw8B1Ekoyhj884aIYpkn7FHVueCPdQPFsnI0tVjdf4CFskodVspEduA1ElWs5RHB6x3U16LYjTQ0MtSMg8DSUZ52V60B38XhWVIDWEypiZLH/DUSEaW3rhIrYBFMjo1O33O9sKpkczdqYw12o87VWVk6d6xf4OlK0YJLPTbW5ndluZR+E9A5Hk0wn4BMjnxOh/0F2Bypjwcr41TCRRWiHZretjaWPI4FHITnLM2t70xJKI1bfeKkYLHoRBt+OpbdChEG/BqGR0KUYz0lJVZ8MaQiNYyPocxFHJP1R/oUMidac4/05wnxpucyE97Y0hEMbpTTpZFYs4bhiiteWrHTmXt5LB32UTdH6P31qsd58veQYmSL7Ze3BrymiTix+lp5Nm37nEqLWVLs+1Bj9NIwfHXBqgECivEthEdCtFhWZlEh0K0jemCeJNGk0vZdvtMErEjgw6F2MH0OSRiR8a3ZolY2sVil9chEU97azTy3E27lV4vp9cCpr3BaDhYC18JE64Cpjai2sjVBlQbuGqianLVQNVgqnkUVAcw9QiqR7h6GNXDXD2E6iGuNqHaxFXMlclzZWKuTJ4rE3Nl8lyZmCuT58rEXJk8VwbmyuC5MjBXBs+VgbkyeK4MzJXBc2VgrgyeKwNzZfBcGZgrg+fKwFwZPFcG5srguTIwVw7w/EZFW1qi7HIR2bS19Cbg5XKcLsVqlPBxUk6AcoKUk6CcJOUUKKdIOQ3KaVLOgHKGlLOgnCXlHCjnSDkPynlSLoBygZSLoFwk5RIol0i5DMplUq6AcoWUq6BcJeUaKNdIuQ7KdVJugHKDlJug3CTlFii3SLkNym1S7oByh5S7oNwl5R4o90i5D8p9Uh6A8oAU46ujoFUIvwQetbK7Re+AyKd8x9+9iVTiPGoNtzxx7LUhivm8lRtk6ndPWprdG/VSt0jEmdr8+Mfn0coMHh4INeyxhW3YtxbWHs/6WljFWFFSzM/4G90qhjrX53KYtb0KvYvoWBddqd06GKV8RoMtFtdFPgsWyT6vHa3XYAdoRwM02AFapQAtYHFzwtcqKeb2mjFreAk2QzKay9u4r+9VjHVT/uMh2e5FsYrir4r30mTFY47fW3ZLFLwx2Y82rH6DFKRRq9f+BGjUhnJObyJGJ7xhiOp25S+3K7rV0K2GbjV0q6FbDd1qfBmtRuMeW43GfWs1yu1Je6Ydqn7JeNHaPe4vWh1Gi13cKeUSXotiFGUga/XAUwLF3EogZm1Aja2YW06sFjf7YLqSsXKv/AGmqxhZ8vNicQwsktFcRlb8D2skoyiD49YaPtyTjKJsbFiJVDE/4HvM4lEojWu/Oj0FpFEyirjcWep4DbEk+8cK+0pLmfI6FGI1nVPlYVFeQeRYmHE2xeuQSJfBugzWZbAug3UZrMtgXQZ/0WXwwT2WwU37VgYHqHEDvMtld2VLE1BMK0YD9c7afXEYSDKy9I3ZC/jOkmRujVb3/alS32ipF14aU4wGej8hRuBfesVooPp/wVuZvP9FLcloLvXfMwrwjpvIOcleg7lIxi1Tq37LlPuww57cLv4Jr3spRlF6x0ViBKJI5h76FZGFPkQxGmikxxqGDkIxN7vLYieN2a0yVvT93X/ky0dGnnrf+xSp/l/sn6jmd12H/ttb1/u63tf1vq73db3PFF3vf9n1ftO+1vv6YtYX8//8YtbFny7+dPEXsPj7Vx/4HtnrE19376xku5VJVp5XFt7ayZfMoG+O+uaob4765qhvjvrm+J+5ObZ9BBHdMT09QAAA', + cate_exclude: '全部影片', + searchable: 1, // 固定值 + filterable: 0, // 固定值 + quickSearch: 1, // 固定值 + play_parse: true, + class_parse: async () => { + let classes = [{ + type_id: '1', + type_name: '电影', + }, { + type_id: '2', + type_name: '剧集', + }, { + type_id: '3', + type_name: '动漫', + }, { + type_id: '4', + type_name: '综艺', + }, { + type_id: '5', + type_name: '音乐', + }, { + type_id: '6', + type_name: '短剧', + }, { + type_id: '44', + type_name: ' 臻彩视界片库', + }]; + return { + class: classes, + } + }, + 预处理: async () => { + return [] + }, + 推荐: async () => { + return [] + }, + 一级: async function (tid, pg, filter, extend) { + let {MY_CATE, input} = this; + let html = (await getHtml(input)).data + const $ = pq(html) + let videos = [] + $('.module-items .module-item').each((index, item) => { + const a = $(item).find('a:first')[0]; + const img = $(item).find('img:first')[0]; + const content = $(item).find('.video-text:first').text(); + videos.push({ + "vod_name": a.attribs.title, + "vod_id": a.attribs.href, + "vod_remarks": content, + "vod_pic": img.attribs['data-src'] + }) + }) + return videos + }, + 二级: async function (ids) { + let {input,getRule} = this; + let html = (await getHtml(input)).data + const $ = pq(html) + let vod = { + "vod_name": $('h1.page-title').text(), + "vod_id": input, + "vod_remarks": $(' div.video-info-main div:nth-child(4) div.video-info-item').text(), + "vod_pic": $('.lazyload').attr('data-src'), + "vod_content": $('p.sqjj_a').text().replace(/【玩偶哥哥】[收起部分]|【玩偶哥哥】|\[收起部分\]/igs,''), + } + let playform = [] + let playurls = [] + for (const item of $('.module-row-title')) { + const a = $(item).find('p:first')[0]; + let link = a.children[0].data.trim() + if (/pan.quark.cn/.test(link)) { + const shareData = Quark.getShareData(link); + if (shareData) { + const videos = await Quark.getFilesByShareUrl(shareData); + if (videos.length > 0) { + playform.push('Quark-' + shareData.shareId); + playurls.push(videos.map((v) => { + const list = [shareData.shareId, v.stoken, v.fid, v.share_fid_token, v.subtitle ? v.subtitle.fid : '', v.subtitle ? v.subtitle.share_fid_token : '']; + return v.file_name + '$' + list.join('*'); + }).join('#')) + } else { + playform.push('Quark-' + shareData.shareId); + playurls.push("资源已经失效,请访问其他资源") + } + } + } + if (/drive.uc.cn/.test(link)) { + const shareData = UC.getShareData(link); + if (shareData) { + const videos = await UC.getFilesByShareUrl(shareData); + if (videos.length > 0) { + playform.push('UC-' + shareData.shareId); + playurls.push(videos.map((v) => { + const list = [shareData.shareId, v.stoken, v.fid, v.share_fid_token, v.subtitle ? v.subtitle.fid : '', v.subtitle ? v.subtitle.share_fid_token : '']; + return v.file_name + '$' + list.join('*'); + }).join('#')) + } else { + playform.push('UC-' + shareData.shareId); + playurls.push("资源已经失效,请访问其他资源") + } + } + } + if (/www.alipan.com/.test(link)) { + const shareData = Ali.getShareData(link); + if (shareData) { + const videos = await Ali.getFilesByShareUrl(shareData); + log(videos) + if (videos.length > 0) { + playform.push('Ali-' + shareData.shareId); + playurls.push(videos.map((v) => { + const ids = [v.share_id, v.file_id, v.subtitle ? v.subtitle.file_id : '']; + return formatPlayUrl('', v.name) + '$' + ids.join('*'); + }).join('#')) + } else { + playform.push('Ali-' + shareData.shareId); + playurls.push("资源已经失效,请访问其他资源") + } + } + } + } + vod.vod_play_from = playform.join("$$$") + vod.vod_play_url = playurls.join("$$$") + try { + if(video_info?.name){ + setItem('video_info', {}) + setItem('rule_video_info', {}) + } + setItem('danmu_flag', 'qq') + const tx_rule = await getRule('腾云驾雾[官]') + let video_list = vod.vod_play_url.split('#') + rule_video_info.name = video_list.map(item=>{ + return item.split('$')[0] + }) + rule_video_info.url = video_list.map(item=>{ + return item.split('$')[1] + }) + if (tx_rule) { + wd_data = await tx_rule.callRuleFn('搜索', [vod.vod_name]) + if (wd_data?.list) { + vod_ids = wd_data.list.filter(item => item?.vod_name === vod.vod_name).map(item => item.vod_id); + } + } + if(!Array.isArray(vod_ids)){ + vod_ids = [] + } + if (vod_ids?.length) { + let vod_data = await tx_rule.callRuleFn('二级', [vod_ids]) + if (vod_data && vod_data.list && vod_data.list.length > 0 && vod_data.list[0].vod_play_url) { + let video_urls = vod_data.list[0].vod_play_url.split('#') + video_info.name = video_urls.map(item => { + return item.split('$')[0] + }) + video_info.url = video_urls.map(item => { + return item.split('$')[1] + }) + setItem('video_info', video_info) + setItem('rule_video_info', rule_video_info) + } else { + vod_ids = [] + if (video_info?.name) { + setItem('video_info', {}) + setItem('rule_video_info', {}) + } + setItem('danmu_flag', 'qiyi') + const qy_rule = await getRule('奇珍异兽[官]') + let video_list = vod.vod_play_url.split('#') + rule_video_info.name = video_list.map(item => { + return item.split('$')[0] + }) + rule_video_info.url = video_list.map(item => { + return item.split('$')[1] + }) + if (qy_rule) { + wd_data = await qy_rule.callRuleFn('搜索', [vod.vod_name]) + wd_data.list.forEach(item => { + if (wd_data !== null && wd_data !== undefined && item?.vod_name === vod.vod_name) { + vod_ids.push(String(item.vod_id)) + } + }) + } + if (vod_ids?.length && vod_ids.length > 0) { + let vod_data = await qy_rule.callRuleFn('二级', [vod_ids]) + if (vod_data && vod_data.list && vod_data.list.length > 0 && vod_data.list[0].vod_play_url) { + let video_urls = vod_data.list[0].vod_play_url.split('#') + video_info.name = video_urls.map(item => { + return item.split('$')[0] + }) + video_info.url = video_urls.map(item => { + return item.split('$')[1] + }) + setItem('video_info', video_info) + setItem('rule_video_info', rule_video_info) + } + } + } + } + }catch (e) { + log(e) + } + return vod + }, + 搜索: async function (wd, quick, pg) { + let {input} = this + let html = (await getHtml(input)).data + const $ = pq(html) + let videos = [] + $('.module-items .module-search-item').each((index, item) => { + const a = $(item).find('a.video-serial:first')[0]; + const img = $(item).find('img:first')[0]; + const content = $(item).find('.video-text:first').text(); + videos.push({ + "vod_name": a.attribs.title, + "vod_id": a.attribs.href, + "vod_remarks": content, + "vod_pic": img.attribs['data-src'] + }) + }) + return videos + }, + lazy: async function (flag, id, flags) { + let {getProxyUrl,input,proxyUrl,mediaProxyUrl,getRule} = this; + let danmu = '' + let lazy_data = '' + try { + video_info = getItem('video_info') + rule_video_info = getItem('rule_video_info') + let danmu_flag = getItem('danmu_flag') + const tx_rule = await getRule('腾云驾雾[官]') + const qy_rule = await getRule('奇珍异兽[官]') + if(danmu_flag === 'qq'){ + for (let i = 0;i < video_info.name.length;i++) { + if(rule_video_info.url[i] === input){ + if(matchEpisode(video_info.name[i], rule_video_info.name[i])){ + lazy_data = await tx_rule.callRuleFn('lazy',['我是线路',video_info.url[i]]) + danmu = lazy_data.danmaku + }else { + lazy_data = await tx_rule.callRuleFn('lazy',['我是线路',video_info.url[i]]) + danmu = lazy_data.danmaku + } + } + } + }else if(danmu_flag === 'qiyi'){ + for (let i = 0;i < video_info.name.length;i++) { + if(rule_video_info.url[i] === input){ + if(matchEpisode(video_info.name[i], rule_video_info.name[i])){ + console.log('名字匹配成功',rule_video_info.url[i],i,video_info.url[i]) + lazy_data = await qy_rule.callRuleFn('lazy',['我是线路',video_info.url[i]]) + danmu = lazy_data.danmaku + }else { + console.log('名字匹配失败',rule_video_info.url[i],i,video_info.url[i]) + lazy_data = await qy_rule.callRuleFn('lazy',['我是线路',video_info.url[i]]) + danmu = lazy_data.danmaku + } + log("数据更新"+lazy_data) + } + } + } + + }catch (e) { + log(e) + } + const ids = input.split('*'); + const urls = []; + let result = {} + let UCDownloadingCache = {}; + let UCTranscodingCache = {}; + let downUrl = '' + if (flag.startsWith('Quark-')) { + console.log("夸克网盘解析开始") + const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; + + urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } + const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); + transcoding.forEach((t) => { + urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) + }); + result["parse"] = 0; + result["url"] = urls; + result["danmaku"] = danmu; + result["header"] = headers; + return result + } + if (flag.startsWith('UC-')) { + console.log("UC网盘解析开始") + if (!UCDownloadingCache[ids[1]]) { + const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); + if (down) UCDownloadingCache[ids[1]] = down; + } + downUrl = UCDownloadingCache[ids[1]].download_url; + const headers = { + "Referer": "https://drive.uc.cn/", + "cookie": UC.cookie, + "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' + }; + urls.push("UC原画", downUrl); + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(downUrl) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(downUrl) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(downUrl)); + } + // return { + // parse: 0, + // url: urls, + // danmaku:danmu, + // header: { + // "Referer": "https://drive.uc.cn/", + // "cookie": ENV.get("uc_cookie"), + // "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' + // }, + // } + result["parse"] = 0; + result["url"] = urls; + result["danmaku"] = danmu; + result["header"] = headers + return result + } + if (flag.startsWith('Ali-')) { + const transcoding_flag = { + UHD: "4K 超清", + QHD: "2K 超清", + FHD: "1080 全高清", + HD: "720 高清", + SD: "540 标清", + LD: "360 流畅" + }; + console.log("网盘解析开始") + const down = await Ali.getDownload(ids[0], ids[1], flag === 'down'); + urls.push("原画",down.url+"#isVideo=true##ignoreMusic=true#") + urls.push("极速原画",down.url+"#fastPlayMode##threads=10#") + const transcoding = (await Ali.getLiveTranscoding(ids[0], ids[1])).sort((a, b) => b.template_width - a.template_width); + transcoding.forEach((t) => { + if(t.url!==''){ + urls.push(transcoding_flag[t.template_id],t.url); + } + }); + // return { + // parse: 0, + // url: urls, + // danmaku:danmu, + // header: { + // 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + // 'Referer': 'https://www.aliyundrive.com/', + // }, + // } + result["parse"]=0; + result["url"]=urls; + result["danmaku"]=danmu; + result["header"]={ + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'Referer': 'https://www.aliyundrive.com/', + }; + return result; + } + }, +} + +function normalizeName(name) { + return name.toLowerCase().replace(/\W+/g, ' ').trim(); +} + +function matchEpisode(vod_name, file_name) { + const vod_normalized = normalizeName(vod_name); + const file_normalized = normalizeName(file_name); + + // 使用正则表达式匹配剧集编号 + const episodeRegex = /(\d+)/; + const vodEpisode = vod_normalized.match(episodeRegex)?.[1]; + const fileEpisode = file_normalized.match(episodeRegex)?.[1]; + + return vodEpisode === fileEpisode; +} diff --git "a/js/\347\216\251\345\201\266\345\223\245\345\223\245[\347\233\230].js" "b/js/\347\216\251\345\201\266\345\223\245\345\223\245[\347\233\230].js" index 3b304c3..1580f3b 100644 --- "a/js/\347\216\251\345\201\266\345\223\245\345\223\245[\347\233\230].js" +++ "b/js/\347\216\251\345\201\266\345\223\245\345\223\245[\347\233\230].js" @@ -4,7 +4,8 @@ const { } = misc; var rule = { title: '玩偶哥哥[盘]', - host: 'https://www.wogg.net', + // host: 'https://www.wogg.net', + host: 'https://www.wogg.one/', url: '/vodshow/fyclass-fyfilter.html', filter_url: '{{fl.area}}-{{fl.by or "time"}}-{{fl.class}}-----fypage---{{fl.year}}', searchUrl: '/vodsearch/**--------fypage---.html', @@ -79,10 +80,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -99,6 +102,7 @@ var rule = { } } if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -117,6 +121,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -136,7 +141,7 @@ var rule = { return setResult(d); }, lazy: async function (flag, id, flags) { - let {input} = this; + let {input,mediaProxyUrl} = this; const ids = input.split('*'); const urls = []; let UCDownloadingCache = {}; @@ -144,7 +149,19 @@ var rule = { if (flag.startsWith('Quark-')) { console.log("夸克网盘解析开始") const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -152,30 +169,16 @@ var rule = { return { parse: 0, url: urls, - header: { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', - 'origin': 'https://pan.quark.cn', - 'referer': 'https://pan.quark.cn/', - 'Cookie': Quark.cookie - } + header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\347\225\252\350\214\204\345\260\217\350\257\264[\344\271\246].js" "b/js/\347\225\252\350\214\204\345\260\217\350\257\264[\344\271\246].js" index 27b20df..53cb4fe 100644 --- "a/js/\347\225\252\350\214\204\345\260\217\350\257\264[\344\271\246].js" +++ "b/js/\347\225\252\350\214\204\345\260\217\350\257\264[\344\271\246].js" @@ -157,7 +157,7 @@ var rule = { content_url = `https://fanqienovel.com/reader/${input}?enter_from=reader`; log(content_url); let html = (await req(content_url, {headers: {Cookie: getFqCookie()}})).content; - html = html.match(/window.__INITIAL_STATE__=(.+?});/)[1]; + html = html.match(/window.__INITIAL_STATE__=(.+?});/)[1].replaceAll(':undefined,', ':"undefined",'); let json = JSON.parse(html).reader.chapterData; title = json.title; content = decodeText(json.content, 2); diff --git "a/js/\347\233\264\346\222\255\350\275\254\347\202\271\346\222\255[\345\220\210].js" "b/js/\347\233\264\346\222\255\350\275\254\347\202\271\346\222\255[\345\220\210].js" index 8fcedd3..b9b4235 100644 --- "a/js/\347\233\264\346\222\255\350\275\254\347\202\271\346\222\255[\345\220\210].js" +++ "b/js/\347\233\264\346\222\255\350\275\254\347\202\271\346\222\255[\345\220\210].js" @@ -19,8 +19,10 @@ const __ext = {data_dict: {}}; var rule = { title: '直播转点播[合]', author: '道长', - version: '20240628 beta7', + version: '20250123 beta1', update_info: ` +20250123 beta1: +1. 配置文件支持带请求头设置 20240628 beta6: 1.增加范冰冰v6源 2.修复带图标的m3u源识别 @@ -353,11 +355,16 @@ var rule = { }, lazy: async function (flag, id, flags) { let {input} = this; + let liveObj = __ext.data.find(it => it.name === flag.split('|')[0].split('@')[0]); + // log('liveObj:', liveObj); if (/\.(m3u8|mp4)/.test(input)) { if (input.includes('?')) { input = id; } input = {parse: 0, url: input} + if (liveObj && liveObj.headers) { + input.header = liveObj.headers + } } else if (/yangshipin|1905\.com/.test(input)) { input = {parse: 1, jx: 0, url: input, js: '', header: {'User-Agent': PC_UA}, parse_extra: '&is_pc=1'}; } diff --git "a/js/\347\237\255\345\211\247\345\272\223.js" "b/js/\347\237\255\345\211\247\345\272\223.js" new file mode 100644 index 0000000..0363005 --- /dev/null +++ "b/js/\347\237\255\345\211\247\345\272\223.js" @@ -0,0 +1,174 @@ +var rule = { + 类型: '影视', + title: '短剧库', + desc: '源动力出品', + host: 'https://duanjuzy.com', + url: '/vod/search/class/fyclass.html?page=fypage', + searchUrl: '/vod/search.html?page=fypage&wd=**', + searchable: 2, + quickSearch: 0, + timeout: 5000, + play_parse: true, + filterable: 0, + 预处理: async () => { + return [] + }, + class_parse: async function () { + const { sign, timestamp } = this.decodeCk(); + const html = await request(`${this.host}/label/tabs.html`, { + headers: { + Ck: { user_check:"", time: timestamp, sign, "Version": "1.0.0" }, + "Content-Type": "application/x-www-form-urlencoded", + Origin: "https://modupan.com", + Referer: "https://modupan.com/", + } + }); + const response = JSON.parse(html); + const lists = response.list; + const classes = []; + const filters = {}; + + for (let list of lists) { + classes.push({ + type_id: list.name, + type_name: list.name + }) + } + + return { class: classes, filters } + }, + 推荐: async function (tid, pg, filter, extend) { + const { input, pdfa, pdfh, pd } = this; + const { sign, timestamp } = this.decodeCk(); + const html = await request(`${this.host}/vod/index.html?page=1&type=recommend`, { + headers: { + Ck: { user_check:"", time: timestamp, sign, "Version": "1.0.0" }, + "Content-Type": "application/x-www-form-urlencoded", + Origin: "https://modupan.com", + Referer: "https://modupan.com/", + } + }); + const response = JSON.parse(html); + const lists = response.data; + const vod = []; + + lists.forEach((list) => { + vod.push({ + vod_name: list.title, + vod_id: list.id, + vod_pic: list.image, + vod_remarks: list.subtitle + }) + }); + + return vod; + }, + 一级: async function (tid, pg, filter, extend) { + const { input, pdfa, pdfh, pd } = this; + const { sign, timestamp } = this.decodeCk(); + const html = await request(input, { + headers: { + Ck: { user_check:"", time: timestamp, sign, "Version": "1.0.0" }, + "Content-Type": "application/x-www-form-urlencoded", + Origin: "https://modupan.com", + Referer: "https://modupan.com/", + } + }); + const response = JSON.parse(html); + const lists = response.data; + const vod = []; + + lists.forEach((list) => { + vod.push({ + vod_name: list.title, + vod_id: list.id, + vod_pic: list.image, + vod_remarks: list.subtitle + }) + }); + + return vod; + }, + 二级: async function (ids) { + const { input, pdfa, pdfh, pd } = this; + const url = `${this.host}/vod/detail/id/${ids[0]}.html`; + const { sign, timestamp } = this.decodeCk(); + const html = await request(url, { + headers: { + Ck: { user_check:"", time: timestamp, sign, "Version": "1.0.0" }, + "Content-Type": "application/x-www-form-urlencoded", + Origin: "https://modupan.com", + Referer: "https://modupan.com/", + } + }); + const response = JSON.parse(html); + const vod = { + vod_id: response.id, + vod_name: response.title, + vod_pic: response.image, + }; + + const playFroms = ["源动力偷的线路"]; + const playUrls = []; + + const episodes = response.list; + const tmpUrls = []; + const image = response.image; + const basePlayUrl = image.split('/').slice(0, -1).join('/'); + episodes.forEach((episode) => { + const index = episode.nid; + const playUrl = `${basePlayUrl}/${index}.mp4`; + tmpUrls.push(`${episode.name}$${playUrl}`); + }); + playUrls.push(tmpUrls.join('#')); + + vod.vod_play_from = playFroms.join('$$$'); + vod.vod_play_url = playUrls.join('$$$'); + + return vod; + }, + 搜索: async function (wd, quick, pg) { + const { input, pdfa, pdfh, pd } = this; + const { sign, timestamp } = this.decodeCk(); + const html = await request(input, { + headers: { + Ck: { user_check:"", time: timestamp, sign, "Version": "1.0.0" }, + "Content-Type": "application/x-www-form-urlencoded", + Origin: "https://modupan.com", + Referer: "https://modupan.com/", + } + }); + const response = JSON.parse(html); + const lists = response.data; + const vod = []; + + lists.forEach((list) => { + vod.push({ + vod_name: list.title, + vod_id: list.id, + vod_pic: list.image, + vod_remarks: list.subtitle + }) + }); + + return vod; + }, + lazy: async function (flag, id, flags) { + const { input, pdfa, pdfh, pd } = this; + + if (/m3u8|mp4|flv/.test(input)) { + return { parse: 0, url: input }; + } else { + return { parse: 1, url: input }; + } + }, + decodeCk: function () { + const prefix = 'e3e2e10r058g6'; + const suffix = 'e3e2e10r058g6'; + const version = 'Version=1.0.0'; + const timestamp = Math.ceil(new Date().getTime() / 1000); + const plainText = `${prefix}${encodeURIComponent(version)}${timestamp}${suffix}`; + const sign = md5(plainText); + return { sign, timestamp }; + } +} diff --git "a/js/\350\200\201\347\231\275\346\225\205\344\272\213[\345\220\254].js" "b/js/\350\200\201\347\231\275\346\225\205\344\272\213[\345\220\254].js" index c6e9968..9b862a6 100644 --- "a/js/\350\200\201\347\231\275\346\225\205\344\272\213[\345\220\254].js" +++ "b/js/\350\200\201\347\231\275\346\225\205\344\272\213[\345\220\254].js" @@ -30,7 +30,8 @@ const imgUrl = function (pic) { var rule = { 类型: '听书',//影视|听书|漫画|小说 title: '老白故事[听]', - host: 'https://lags.oss-cn-hangzhou.aliyuncs.com/', + // host: 'https://lags.oss-cn-hangzhou.aliyuncs.com/', + host: 'https://lbgs-1306000603.cos.ap-nanjing.myqcloud.com/', url: '', searchUrl: '#fypage', searchable: 2, diff --git "a/js/\350\207\263\350\207\273[\347\233\230].js" "b/js/\350\207\263\350\207\273[\347\233\230].js" index 87846ed..2185f4f 100644 --- "a/js/\350\207\263\350\207\273[\347\233\230].js" +++ "b/js/\350\207\263\350\207\273[\347\233\230].js" @@ -64,10 +64,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -83,6 +85,7 @@ var rule = { } } } else if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -101,6 +104,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -137,7 +141,11 @@ var rule = { urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') // http://ip:port/?thread=线程数&form=url与header编码格式&url=链接&header=所需header urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) - urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -148,22 +156,13 @@ var rule = { header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\350\231\216\346\226\221[\347\233\230].js" "b/js/\350\231\216\346\226\221[\347\233\230].js" index c7332a0..7adf4a7 100644 --- "a/js/\350\231\216\346\226\221[\347\233\230].js" +++ "b/js/\350\231\216\346\226\221[\347\233\230].js" @@ -5,7 +5,8 @@ const { var rule = { title: '虎斑[盘]', // host: 'https://wp.huban.xyz', - host: 'http://45.207.212.215:12121', + // host: 'http://45.207.212.215:12121', + host: 'https://huban.banye.tech:7086', url: '/index.php/vod/show/id/fyfilter.html', filter_url: '{{fl.cateId}}{{fl.area}}{{fl.by}}{{fl.class}}{{fl.lang}}{{fl.letter}}/page/fypage{{fl.year}}', searchUrl: '/index.php/vod/search/page/fypage/wd/**.html', @@ -66,10 +67,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -85,6 +88,7 @@ var rule = { } } } else if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -103,6 +107,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -139,9 +144,12 @@ var rule = { 'Cookie': Quark.cookie }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') - // http://ip:port/?thread=线程数&form=url与header编码格式&url=链接&header=所需header urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) - urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -152,22 +160,13 @@ var rule = { header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\350\234\241\347\254\224[\347\233\230].js" "b/js/\350\234\241\347\254\224[\347\233\230].js" index 54aff0c..304f289 100644 --- "a/js/\350\234\241\347\254\224[\347\233\230].js" +++ "b/js/\350\234\241\347\254\224[\347\233\230].js" @@ -4,7 +4,8 @@ const { } = misc; var rule = { title: '蜡笔[盘]', - host: 'https://duopan.fun', + // host: 'https://duopan.fun', + host: 'http://feimaoai.site/', url: '/index.php/vod/show/id/fyfilter.html', filter_url: '{{fl.cateId}}{{fl.area}}{{fl.by}}{{fl.class}}{{fl.lang}}{{fl.letter}}/page/fypage{{fl.year}}', searchUrl: '/index.php/vod/search/page/fypage/wd/**.html', @@ -58,7 +59,7 @@ var rule = { }, 推荐: async function (tid, pg, filter, extend) { let {MY_CATE, input} = this; - let html = (await getHtml('https://duopan.fun/index.php/vod/show/id/24.html')).data + let html = (await getHtml(rule.host+'/index.php/vod/show/id/24.html')).data const $ = pq(html) let videos = [] $('.module-items .module-item').each((index, item) => { @@ -105,10 +106,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -124,6 +127,7 @@ var rule = { } } } else if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -142,6 +146,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -175,35 +180,30 @@ var rule = { 'referer': 'https://pan.quark.cn/', 'Cookie': Quark.cookie }; + urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution === '4k' ? "4K" : t.resolution, t.video_info.url) }); - urls.push("原画", down.download_url + '#fastPlayMode##threads=10#'); - urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); - urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); return { parse: 0, url: urls, header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\350\256\276\347\275\256\344\270\255\345\277\203.js" "b/js/\350\256\276\347\275\256\344\270\255\345\277\203.js" index bb2d4de..0aafe5c 100644 --- "a/js/\350\256\276\347\275\256\344\270\255\345\277\203.js" +++ "b/js/\350\256\276\347\275\256\344\270\255\345\277\203.js" @@ -23,6 +23,7 @@ let quick_data = { 移动1: 'https://yun.139.com/shareweb/#/w/i/0i5CLQ7BpV7Ai', 移动2: 'https://caiyun.139.com/m/i?2jexC1gcjeN7q', 移动3: 'https://yun.139.com/shareweb/#/w/i/2i2MoE9ZHn9p1', + 123: 'https://www.123684.com/s/oec7Vv-DggWh?ZY4K', 直链1: 'https://vdse.bdstatic.com//628ca08719cef5987ea2ae3c6f0d2386.mp4', 嗅探1: 'https://www.6080kk.cc/haokanplay/178120-1-1.html', 嗅探2: 'https://www.hahads.com/play/537106-3-1.html', @@ -183,8 +184,8 @@ var rule = { aliScanCheck: null, biliScanCheck: null, host: 'http://empty', - class_name: '推送&夸克&UC&阿里&天翼&哔哩&系统配置&测试', - class_url: 'push&quark&uc&ali&cloud&bili&system&test', + class_name: '推送&夸克&UC&阿里&天翼&哔哩&系统配置&测试&接口挂载&视频解析', + class_url: 'push&quark&uc&ali&cloud&bili&system&test&apiLink&videoParse', url: '/fyclass', 预处理: async function (env) { @@ -313,6 +314,11 @@ var rule = { d.push(getInput('get_hide_adult', '查看青少年模式', images.settings)); d.push(genMultiInput('thread', '设置播放代理线程数', '默认为1,可自行配置成其他值如:10', images.settings)); d.push(getInput('get_thread', '查看播放代理线程数', images.settings)); + d.push(genMultiInput('play_local_proxy_type', '设置原代本类型', '默认为1,可自行配置成其他值如:2 (1 不夜5575,2 mediaGo 7777 其他:5575)', images.settings)); + d.push(getInput('get_play_local_proxy_type', '查看原代本类型', images.settings)); + + d.push(genMultiInput('play_proxy_mode', '设置播放代理模式', '默认为1,可自行配置成其他值如:2 (1 内存加速,2 磁盘加速 其他:内存加速)', images.settings)); + d.push(getInput('get_play_proxy_mode', '查看播放代理模式', images.settings)); d.push(genMultiInput('enable_dr2', '设置drpy2源启用状态', '设置为1可启用此功能(默认没设置也属于启动,设置其他值关闭)', images.settings)); d.push(getInput('get_enable_dr2', '查看drpy2源启用状态', images.settings)); d.push(genMultiInput('now_ai', '设置当前AI', '1: 讯飞星火 2:deepseek 3.讯飞智能体 4.Kimi \n如果不填,连续对话默认使用讯飞星火', images.settings)); @@ -325,6 +331,11 @@ var rule = { d.push(getInput('get_deepseek_apiKey', '查看deepseek AI鉴权', images.settings)); d.push(genMultiInput('sparkBotObject', '设置讯飞星火智能体 AI鉴权', '设置对象形式,如:{"appId":"6fafca", "uid":"道长", "assistantId":"tke24zrzq3f1"}\n 在这个页面的http鉴权信息:\nhttps://xinghuo.xfyun.cn/botcenter/createbot', images.settings)); d.push(getInput('get_sparkBotObject', '查看讯飞星火智能体 AI鉴权', images.settings)); + + d.push(genMultiInput('show_curl', '设置打印curl开关', '设置为1可启用此功能(默认关闭)', images.settings)); + d.push(getInput('get_show_curl', '查看打印curl开关', images.settings)); + d.push(genMultiInput('show_req', '设置打印req开关', '设置为1可启用此功能(默认关闭)', images.settings)); + d.push(getInput('get_req', '查看打印req开关', images.settings)); break; case 'test': d.push({ @@ -334,6 +345,23 @@ var rule = { vod_desc: "流式代理mp4等视频" }); break; + case 'apiLink': + d.push(genMultiInput('link_url', '设置挂载地址', '可以挂载t4配置链接如 hipy-t4、不夜t4', images.settings)); + d.push(getInput('get_link_url', '查看挂载地址', images.settings)); + d.push(getInput('link_data', '更新挂载数据', images.settings, '将挂载的配置数据获取到系统内方便武魂融合,远程有更新也需要执行此内容')); + d.push(getInput('get_link_data', '查看挂载数据', images.settings)); + d.push(genMultiInput('enable_link_data', '设置启用挂载数据', '设置为1可以启用。默认不启用。设置其他值禁用', images.settings)); + d.push(getInput('get_enable_link_data', '查看启用挂载数据', images.settings)); + d.push(genMultiInput('enable_link_push', '设置启用挂载推送', '设置为1可以启用。默认即关闭。设置其他值禁用', images.settings)); + d.push(getInput('get_enable_link_push', '查看启用挂载推送', images.settings)); + d.push(genMultiInput('enable_link_jar', '设置允许挂载Jar', '设置为1可以启用。默认即关闭。设置其他值禁用', images.settings)); + d.push(getInput('get_enable_link_jar', '查看允许挂载Jar', images.settings)); + + break; + case 'videoParse': + d.push(genMultiInput('mg_hz', '设置芒果解析画质', '默认为4,可自行配置成其他值 (视频质量,9=4K, 4=1080p, 3=720p, 2=560p)', images.settings)); + d.push(getInput('get_mg_hz', '查看芒果解析画质', images.settings)); + break; } return d }, @@ -931,7 +959,8 @@ var rule = { action: { actionId: '__detail__', skey: 'push_agent', - ids: encodeURIComponent(obj.push), + // ids: encodeURIComponent(obj.push), + ids: obj.push, }, toast: `开始解析视频:${obj.push}` }); @@ -964,12 +993,21 @@ var rule = { 'bili_cookie', 'hide_adult', 'thread', + 'play_local_proxy_type', + 'play_proxy_mode', 'enable_dr2', 'spark_ai_authKey', 'deepseek_apiKey', 'sparkBotObject', 'now_ai', 'allow_forward', + 'show_curl', + 'show_req', + 'link_url', + 'enable_link_data', + 'enable_link_push', + 'enable_link_jar', + 'mg_hz', ]; let get_cookie_sets = [ 'get_quark_cookie', @@ -981,12 +1019,21 @@ var rule = { 'get_bili_cookie', 'get_hide_adult', 'get_thread', + 'play_local_proxy_type', + 'get_play_proxy_mode', 'get_enable_dr2', 'get_spark_ai_authKey', 'get_deepseek_apiKey', 'get_sparkBotObject', 'get_now_ai', 'get_allow_forward', + 'get_show_curl', + 'get_show_req', + 'get_link_url', + 'get_enable_link_data', + 'get_enable_link_push', + 'get_enable_link_jar', + 'get_mg_hz', ]; if (cookie_sets.includes(action) && value) { try { @@ -1043,6 +1090,62 @@ var rule = { return '发生错误:' + e.message; } } + if (action === 'link_data' && value) { + try { + const obj = JSON.parse(value); + const auth_code = obj.auth_code; + if (!auth_code) { + return '入库授权码不允许为空!' + } + const COOKIE_AUTH_CODE = _ENV.COOKIE_AUTH_CODE || 'drpys'; + if (auth_code !== COOKIE_AUTH_CODE) { + return `您输入的入库授权码【${auth_code}】不正确` + } + const link_url = ENV.get('link_url'); + let data = await request(link_url); + pathLib.writeFile('./settings/link_data.json', data); + return '挂载数据已更新,请前往查看确保无问题'; + } catch (e) { + return '发生错误:' + e.message; + } + } + if (action === 'get_link_data' && value) { + try { + const obj = JSON.parse(value); + const auth_code = obj.auth_code; + if (!auth_code) { + return '入库授权码不允许为空!' + } + const COOKIE_AUTH_CODE = _ENV.COOKIE_AUTH_CODE || 'drpys'; + if (auth_code !== COOKIE_AUTH_CODE) { + return `您输入的入库授权码【${auth_code}】不正确` + } + let data = pathLib.readFile('./settings/link_data.json'); + let sites = []; + try { + sites = JSON.parse(data).sites.filter(site => site.type = 4); + } catch (e) { + } + sites = JSON.stringify(sites); + // log(sites); + return JSON.stringify({ + action: { + actionId: action + '_value', + id: 'link_data', + type: 'input', + title: '已挂载的数据', + tip: `你想查看的挂载数据`, + value: 'link_data.json', + width: 680, + height: 800, + msgType: 'long_text', + msg: sites + } + }); + } catch (e) { + return '发生错误:' + e.message; + } + } if (action === '查看夸克cookie') { return {action: getInput('get_quark_cookie', '查看夸克 cookie', urljoin(publicUrl, './images/icon_cookie/夸克.webp')).vod_id}; } @@ -1085,7 +1188,7 @@ function genMultiInput(actionId, title, desc, img) { } } -function getInput(actionId, title, img) { +function getInput(actionId, title, img, desc) { return { vod_id: JSON.stringify({ actionId: actionId, @@ -1094,7 +1197,7 @@ function getInput(actionId, title, img) { title: '入库授权码', tip: '请输入.env中配置的入库授权码', value: '', - msg: '查看已设置的cookie需要授权码', + msg: desc || '查看已设置的cookie需要授权码', // imageUrl: img || 'https://pic.imgdb.cn/item/667ce9f4d9c307b7e9f9d052.webp', imageUrl: img || 'https://pic.qisuidc.cn/s/2024/10/23/6718c212f1fdd.webp', imageHeight: 200, diff --git "a/js/\351\207\221\347\211\214\345\275\261\351\231\242.js" "b/js/\351\207\221\347\211\214\345\275\261\351\231\242.js" index 04a1ef4..ec8f4f6 100644 --- "a/js/\351\207\221\347\211\214\345\275\261\351\231\242.js" +++ "b/js/\351\207\221\347\211\214\345\275\261\351\231\242.js" @@ -2,20 +2,23 @@ // http://localhost:5757/api/金牌影院?ac=detail&ids=/detail/131374 // http://localhost:5757/api/金牌影院?wd=我的&pg=1 // http://localhost:5757/api/金牌影院?play=/vod/play/131374/sid/1125278&flag=金牌影院 +const {req_} = $.require('./_lib.request.js') var rule = { 类型: '影视', title: '金牌影院', desc: '金牌影院纯js版本', - host: 'https://www.cfkj86.com', + host: 'https://m.cfkj86.com', homeUrl:'', url: 'https://m.cfkj86.com/api/mw-movie/anonymous/video/list?pageNum=fypage&pageSize=30&sort=1&sortBy=1&type1=fyclass', searchUrl: '/api/mw-movie/anonymous/video/searchByWordPageable?keyword=**&pageNum=fypage&pageSize=12&type=false', - searchable: 2, - quickSearch: 0, + searchable: 1, + quickSearch: 1, timeout: 5000, play_parse: true, headers: { - 'User-Agent': 'MOBILE_UA', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7', + 'accept-language': 'zh-CN,zh;q=0.9' }, class_parse: async () => { let classes = [{ @@ -59,7 +62,6 @@ var rule = { })).content); let d = []; const list = html.data.list - log(list) list.forEach((it)=>{ d.push({ title: it.vodName, @@ -72,19 +74,31 @@ var rule = { }, 二级: async function (ids) { let {input} = this; - const html = (await req(`${input}`)).content; - const $ = pq(html) + let id = ids[0] + let id_ = id.split('/')[2] + const t = new Date().getTime() + const signkey = `id=${id_}&key=cb808529bae6b6be45ecfab29a4889bc&t=`+t + const key = CryptoJS.SHA1(CryptoJS.MD5(signkey).toString()).toString() + const html = await req_(`https://www.cfkj86.com/api/mw-movie/anonymous/video/detail?id=${id_}`,'get',{ + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36', + 'Accept': 'application/json, text/plain, */*', + 'authorization':'', + 'deviceId': '58a80c52-138c-48fd-8edb-138fd74d12c8', + 'sign': key, + 't': t.toString() + }); const vod = { - vod_id: input, - vod_name: $('h1').text().trim(), + vod_id: id, + vod_name: html.data.vodName, }; let playFroms = []; let playUrls = []; const temp = []; - let playlist=$('div.main-list-sections__BodyArea-sc-8bb7334b-2 .listitem') + let playlist = html.data.episodeList; + // let list = html.match(/\"episodeList\\":\s*(\[[\s\S]*?\])/g)[0].replace('"episodeList\\":', '').replace(/\\/g, ''); + // let playlist = JSON.parse(list) for (const it of playlist) { - const a = $(it).find('a')[0] - temp.push(a.children[0].data+'$'+a.attribs.href) + temp.push(it.name+'$'+`/vod/play/${id_}/sid/${it.nid}`) } playFroms.push('不知道倾情打造'); playUrls.push(temp.join('#')); @@ -104,9 +118,10 @@ var rule = { headers:{ 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36', 'Accept': 'application/json, text/plain, */*', + 'authorization':'', 'deviceId': '58a80c52-138c-48fd-8edb-138fd74d12c8', 'sign': key, - 't': t + 't': t.toString() } })).content); let d = []; @@ -122,52 +137,22 @@ var rule = { return setResult(d) }, lazy: async function (flag, id, flags) { - let {input} = this; + let {getProxyUrl,input} = this; const pid = input.split('/')[3] const nid = input.split('/')[5] const t = new Date().getTime() - const signkey = 'id='+pid+'&nid='+nid+'&key=cb808529bae6b6be45ecfab29a4889bc&t='+t + const signkey = `clientType=1&id=${pid}&nid=${nid}&key=cb808529bae6b6be45ecfab29a4889bc&t=`+t const key = CryptoJS.SHA1(CryptoJS.MD5(signkey).toString()).toString() - const relurl = rule.host+'/api/mw-movie/anonymous/v1/video/episode/url?id='+pid+'&nid='+nid - const html = JSON.parse((await req(relurl, - { - headers:{ - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + const relurl = 'https://www.cfkj86.com/api/mw-movie/anonymous/v1/video/episode/url?clientType=1&id='+pid+'&nid='+nid + const html = await req_(relurl,'get', { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36', 'Accept': 'application/json, text/plain, */*', - 'Accept-Encoding': 'gzip, deflate, br, zstd', - 'sec-ch-ua-platform': '"Windows"', + 'authorization':'', 'deviceId': '58a80c52-138c-48fd-8edb-138fd74d12c8', 'sign': key, - 't': t, - 'referer': `${rule.host}${input}`, - 'authorization': '', - } - })).content) - return {parse: 0, url: getProxyUrl()+'&url='+encodeURIComponent(html.data.playUrl), js: ''} - }, - proxy_rule: async function() { - let {input} = this - if (input) { - input = decodeURIComponent(input); - log(`${rule.title}代理播放:${input}`); - let m3u8 = (await req(input,{headers:rule.headers})).content; - const lines = m3u8.split('\n'); - const tsUrls = []; - let link_start = '' - lines.forEach(line => { - if (line.trim().startsWith('http') && line.endsWith('.ts')) { - tsUrls.push(/line/,link_start + line.trim()) - } - if (line.indexOf('.ts') > 0) { // 确保只匹配 TS 片段的 URL - link_start = input.split('?')[0].replace(/([^/]+)(?=\.m3u8(?:$|[\?#]))/, '').replace('.m3u8', '') - tsUrls.push(link_start + line.trim()) - }else { - tsUrls.push(line) - } - }) - let m3u8_text = tsUrls.join('\n') - return [200,'application/vnd.apple.mpegurl', m3u8_text]; - } + 't': t.toString() + }) + return {parse: 0, url: html.data.playUrl} }, }; diff --git "a/js/\351\227\252\347\224\265\344\274\230\346\261\220[\347\233\230].js" "b/js/\351\227\252\347\224\265\344\274\230\346\261\220[\347\233\230].js" index d159aa5..3e19eea 100644 --- "a/js/\351\227\252\347\224\265\344\274\230\346\261\220[\347\233\230].js" +++ "b/js/\351\227\252\347\224\265\344\274\230\346\261\220[\347\233\230].js" @@ -63,10 +63,12 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; for (const item of $('.module-row-title')) { const a = $(item).find('p:first')[0]; let link = a.children[0].data.trim() if (/drive.uc.cn/.test(link)) { + playPans.push(link); const shareData = UC.getShareData(link); if (shareData) { const videos = await UC.getFilesByShareUrl(shareData); @@ -83,6 +85,7 @@ var rule = { } } if (/pan.quark.cn/.test(link)) { + playPans.push(link); const shareData = Quark.getShareData(link); if (shareData) { const videos = await Quark.getFilesByShareUrl(shareData); @@ -101,6 +104,7 @@ var rule = { } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -120,7 +124,7 @@ var rule = { return setResult(d); }, lazy: async function (flag, id, flags) { - let {input} = this; + let {input,mediaProxyUrl} = this; const ids = input.split('*'); const urls = []; let UCDownloadingCache = {}; @@ -128,7 +132,19 @@ var rule = { if (flag.startsWith('Quark-')) { console.log("夸克网盘解析开始") const down = await Quark.getDownload(ids[0], ids[1], ids[2], ids[3], true); + const headers = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'origin': 'https://pan.quark.cn', + 'referer': 'https://pan.quark.cn/', + 'Cookie': Quark.cookie + }; urls.push("原画", down.download_url + '#fastPlayMode##threads=10#') + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))) + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(down.download_url) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(down.download_url)); + } const transcoding = (await Quark.getLiveTranscoding(ids[0], ids[1], ids[2], ids[3])).filter((t) => t.accessable); transcoding.forEach((t) => { urls.push(t.resolution === 'low' ? "流畅" : t.resolution === 'high' ? "高清" : t.resolution === 'super' ? "超清" : t.resolution, t.video_info.url) @@ -136,30 +152,16 @@ var rule = { return { parse: 0, url: urls, - header: { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', - 'origin': 'https://pan.quark.cn', - 'referer': 'https://pan.quark.cn/', - 'Cookie': Quark.cookie - } + header: headers } } else if (flag.startsWith('UC-')) { - console.log("UC网盘解析开始") + console.log("UC网盘解析开始"); if (!UCDownloadingCache[ids[1]]) { const down = await UC.getDownload(ids[0], ids[1], ids[2], ids[3], true); if (down) UCDownloadingCache[ids[1]] = down; } - downUrl = UCDownloadingCache[ids[1]].download_url; - urls.push("UC原画", downUrl); - return { - parse: 0, - url: urls, - header: { - "Referer": "https://drive.uc.cn/", - "cookie": UC.cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }, - } + const downCache = UCDownloadingCache[ids[1]]; + return await UC.getLazyResult(downCache, mediaProxyUrl) } }, } diff --git "a/js/\351\233\267\351\262\270\345\260\217\347\253\231[\347\233\230].js" "b/js/\351\233\267\351\262\270\345\260\217\347\253\231[\347\233\230].js" index c7208db..909700e 100644 --- "a/js/\351\233\267\351\262\270\345\260\217\347\253\231[\347\233\230].js" +++ "b/js/\351\233\267\351\262\270\345\260\217\347\253\231[\347\233\230].js" @@ -86,38 +86,19 @@ var rule = { } let playform = [] let playurls = [] + let playPans = []; if (/cloud.189.cn/.test(link)) { - log("云盘解析开始") - let data = await Cloud.getShareList(link) - if (Array.isArray(data)) { - playform.push('Cloud-球球啦') - playurls.push(data.map((it) => { - const urls = [it.fileId, it.shareId] - return it.name + "$" + urls.join('*') - }).join('#')) - } else { - Object.keys(data).forEach(it => { - playform.push('Cloud-' + it) - data[it].forEach(item => { - playurls.push(item.map((it) => { - const urls = [it.fileId, it.shareId] - return it.name + "$" + urls.join('*') - }).join('#')) - }) - }) - } - } - if (link && link.match(/shareCode/g)) { - log("天翼云盘解析开始") - let data = await Cloud.getShareList('' + link.split('shareCode=')[1]) - playform.push('Cloud-球球啦') - playurls.push(data.map((it) => { - const urls = [it.fileId, it.shareId] - return it.name + "$" + urls.join('*') - }).join('#')) + playPans.push(link); + let data = await Cloud.getShareData(link) + Object.keys(data).forEach(it => { + playform.push('Cloud-' + it) + const urls = data[it].map(item => item.name + "$" + [item.fileId, item.shareId].join('*')).join('#'); + playurls.push(urls); + }) } vod.vod_play_from = playform.join("$$$") vod.vod_play_url = playurls.join("$$$") + vod.vod_play_pan = playPans.join("$$$") return vod }, 搜索: async function (wd, quick, pg) { @@ -141,17 +122,11 @@ var rule = { lazy: async function (flag, id, flags) { let {getProxyUrl, input} = this; const ids = input.split('*'); - const urls = []; if (flag.startsWith('Cloud-')) { - console.log("天翼云盘解析开始") + log("天翼云盘解析开始") const url = await Cloud.getShareUrl(ids[0], ids[1]); return { url: url + "#isVideo=true#", - header: { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', - 'Accept-Encoding': 'identity;q=1, *;q=0', - 'referer': 'https://cloud.189.cn/' - } } } }, diff --git "a/js/\351\272\246\347\224\260\345\275\261\351\231\242.js" "b/js/\351\272\246\347\224\260\345\275\261\351\231\242.js" new file mode 100644 index 0000000..a1778e3 --- /dev/null +++ "b/js/\351\272\246\347\224\260\345\275\261\351\231\242.js" @@ -0,0 +1,124 @@ +var rule = { + 类型: '影视', + title: '麦田影院', + desc: '源动力出品', + host: 'https://www.mtyy1.com', + url: '/vodtype/fyclass-fypage.html', + searchUrl: '/vodsearch/**----------fypage---.html', + searchable: 2, + quickSearch: 0, + timeout: 5000, + play_parse: true, + filterable: 0, + class_name: '电视剧&电影&综艺&动漫&短剧&纪录片', + class_url: '1&2&3&4&5&6', + 预处理: async () => { + return [] + }, + 推荐: async function (tid, pg, filter, extend) { + const { input, pdfa, pdfh, pd } = this; + const html = await request(input); + const d = []; + const data = pdfa(html, '.box-width .public-list-box'); + + data.forEach((it) => { + d.push({ + title: pdfh(it, '.public-list-div a&&title'), + pic_url: pdfh(it, '.public-list-div img&&data-src'), + desc: pdfh(it, '.public-list-div .public-list-prb&&Text'), + url: pdfh(it, '.public-list-div a&&href'), + }) + }); + return setResult(d); + }, + 一级: async function (tid, pg, filter, extend) { + const { input, pdfa, pdfh, pd } = this; + const html = await request(input); + const d = []; + const data = pdfa(html, '.flex.wrap.border-box.public-r .public-list-box'); + + data.forEach((it) => { + d.push({ + title: pdfh(it, '.public-list-button a.time-title&&Text'), + pic_url: pdfh(it, '.public-list-bj img&&data-src'), + desc: pdfh(it, '.public-list-bj .public-list-prb&&Text'), + url: pdfh(it, '.public-list-button a.time-title&&href'), + }) + }); + return setResult(d); + }, + 二级: async function (ids) { + const { input, pdfa, pdfh, pd } = this; + const html = await request(`${rule.host}${ids[0]}`); + const vod = { + vod_id: ids[0], + vod_name: pdfh(html, '.slide-desc-box .this-desc-title&&Text'), + vod_content: pdfh(html, '.slide-desc-box .this-desc .text&&Text'), + }; + + let playFroms = []; + let playUrls = []; + + const playList = pdfa(html, '.vod-detail .anthology-tab .swiper-wrapper a'); + playList.forEach((it) => { + playFroms.push(pdfh(it, 'a:not([strong])&&Text')); + }); + + const indexList = pdfa(html, '.vod-detail .anthology-list .anthology-list-box'); + indexList.forEach((lines) => { + const tmpUrls = []; + const line = pdfa(lines, 'ul li'); + line.forEach((play) => { + const index = pdfh(play, 'a&&Text'); + const url = pdfh(play, 'a&&href'); + tmpUrls.push(`${index}$${url}`); + }); + playUrls.push(tmpUrls.join('#')); + }); + + vod.vod_play_from = playFroms.join('$$$'); + vod.vod_play_url = playUrls.join('$$$'); + + return vod; + }, + 搜索: async function (wd, quick, pg) { + const { input, pdfa, pdfh, pd } = this; + const html = await request(input); + const d = []; + const data = pdfa(html, '.flex.wrap.border-box.public-r .public-list-box'); + + data.forEach((it) => { + d.push({ + title: pdfh(it, '.public-list-button a.time-title&&Text'), + pic_url: pdfh(it, '.public-list-bj img&&data-src'), + desc: pdfh(it, '.public-list-bj .public-list-prb&&Text'), + url: pdfh(it, '.public-list-button a.time-title&&href'), + }) + }); + return setResult(d); + }, + lazy: async function (flag, id, flags) { + const { input, pdfa, pdfh, pd } = this; + let url = `${rule.host}${id}`; + const html = await request(url); + const script = pdfa(html, '.player-top script'); + const scriptContent = script.filter((e) => e.includes("player_aaaa"))[0]; + + const scriptRegex = /var player_aaaa=({[^;]+})/; + const match = scriptContent.match(scriptRegex); + console.warn(match) + if (match && match[1]) { + try { + const matchStr = match[1]; + const matchJson = JSON.parse(matchStr); + url = matchJson.url; + } catch (err) { } + }; + + if (/m3u8|mp4|flv/.test(url)) { + return { parse: 0, url } + } else { + return { parse: 1, url } + } + } +} diff --git "a/js_dr2/\347\231\276\345\277\231\346\227\240\346\236\234[\345\256\230].js" "b/js_dr2/\347\231\276\345\277\231\346\227\240\346\236\234[\345\256\230].js" index fde9f47..2ad0ff0 100644 --- "a/js_dr2/\347\231\276\345\277\231\346\227\240\346\236\234[\345\256\230].js" +++ "b/js_dr2/\347\231\276\345\277\231\346\227\240\346\236\234[\345\256\230].js" @@ -32,7 +32,7 @@ var rule = { // 一级:'json:data.hitDocs;title;img;updateInfo;playPartId', 二级: $js.toString(() => { fetch_params.headers.Referer = "https://www.mgtv.com"; - fetch_params.headers["User-Agent"] = UA; + fetch_params.headers["User-Agent"] = MOBILE_UA; pdfh = jsp.pdfh; pdfa = jsp.pdfa; pd = jsp.pd; @@ -137,7 +137,7 @@ var rule = { // 搜索: $js.toString(() => { // fetch_params.headers.Referer = "https://www.mgtv.com"; - // fetch_params.headers["User-Agent"] = UA; + // fetch_params.headers["User-Agent"] = MOBILE_UA; // let d = []; // let html = request(input); // let json = JSON.parse(html); @@ -171,7 +171,7 @@ var rule = { // }), 搜索: $js.toString(() => { fetch_params.headers.Referer = "https://www.mgtv.com"; - fetch_params.headers["User-Agent"] = UA; + fetch_params.headers["User-Agent"] = MOBILE_UA; let d = []; let html = request(input); let json = JSON.parse(html); @@ -201,4 +201,4 @@ var rule = { }); setResult(d); }), -} \ No newline at end of file +} diff --git "a/js_dr2/\347\272\242\346\236\234\347\237\255\345\211\247.js" "b/js_dr2/\347\272\242\346\236\234\347\237\255\345\211\247.js" new file mode 100644 index 0000000..73c9b0c --- /dev/null +++ "b/js_dr2/\347\272\242\346\236\234\347\237\255\345\211\247.js" @@ -0,0 +1,28 @@ +var rule = { + title: '红果短剧', + host: 'https://www.hongguodj.cc/', + url: '/show/fyclass--------fypage---.html', + searchUrl: '/search/**----------fypage---.html', + class_parse: '.nav li;a&&Text;a&&href;.*/(.*?).html', + searchable: 2, + quickSearch: 0, + filterable: 0, + headers: { + 'User-Agent': 'MOBILE_UA', + }, + play_parse: true, + lazy: "js:\n let html = request(input);\n let hconf = html.match(/r player_.*?=(.*?),http://em.21dtv.com/songs/60149138.mkv +DJ-重低音气氛HOUSE劲爆英文<串烧>,http://em.21dtv.com/songs/60149137.mkv +DJ-经典老歌慢摇CLUB<串烧>,http://em.21dtv.com/songs/60149136.mkv +DJ洋-越鼓HOUSE超拽慢摇<串烧>,http://em.21dtv.com/songs/60149135.mkv +DJ-零点嗨翻全场摇头打碟<串烧>,http://em.21dtv.com/songs/60149134.mkv +DJ-热播全中文DJ<串烧>,http://em.21dtv.com/songs/60149133.mkv +DJ-热播超嗨HOUSE舞曲<串烧>,http://em.21dtv.com/songs/60149132.mkv +DJ-劲爆电音跳舞DJ现场<串烧>,http://em.21dtv.com/songs/60149131.mkv +DJ-摇摆社会摇跳舞节奏电音<串烧>,http://em.21dtv.com/songs/60149130.mkv +DJ-我就是大哥劲爆中文慢摇<串烧>,http://em.21dtv.com/songs/60149129.mkv +DJ-啦啦爱动感慢摇嗨碟<串烧>,http://em.21dtv.com/songs/60149128.mkv +DJ-童话里的冰吻激情中文CLUB<串烧>,http://em.21dtv.com/songs/60149127.mkv +DJ-全中文DJ加快舞曲<串烧>,http://em.21dtv.com/songs/60149126.mkv +DJ-社会摇至伤感劲爆中文<串烧>,http://em.21dtv.com/songs/60149125.mkv +DJ-社会摇旋律开场HOUSE<串烧>,http://em.21dtv.com/songs/60149124.mkv +DJ-伤感男人中文重低音迪曲<串烧>,http://em.21dtv.com/songs/60149123.mkv +DJ-全英文超高音质COME SUN ME<串烧>,http://em.21dtv.com/songs/60149122.mkv +DJ-全新社会摇中文<串烧>,http://em.21dtv.com/songs/60149121.mkv +DJ-至嗨中文劲爆跳舞快摇<串烧>,http://em.21dtv.com/songs/60149120.mkv +DJ-热播女声情感中文重低音<串烧>,http://em.21dtv.com/songs/60149119.mkv +DJ-迷上夜店潮牌电音<串烧>,http://em.21dtv.com/songs/60149118.mkv +DJ-激情炫舞全英文电音HOUSE<串烧>,http://em.21dtv.com/songs/60149117.mkv +DJ-凉凉的情人节<串烧>,http://em.21dtv.com/songs/60149116.mkv +DJ-经典中文加快DJ<串烧>,http://em.21dtv.com/songs/60149115.mkv +DJ-劲爽中文极品DJ嗨曲<串烧>,http://em.21dtv.com/songs/60149114.mkv +DJ-劲爆HOUSE SET重低音越鼓快摇<串烧>,http://em.21dtv.com/songs/60149113.mkv +DJ-我们不一样超嗨电音<串烧>,http://em.21dtv.com/songs/60149112.mkv +DJ-急速英文经典的士高<串烧>,http://em.21dtv.com/songs/60149111.mkv +DJ-极品旋律说唱HOUSE<串烧>,http://em.21dtv.com/songs/60149110.mkv +DJ-喝醉以后一起嗨<串烧>,http://em.21dtv.com/songs/60149109.mkv +DJ-电音嗨曲顶级旋律<串烧>,http://em.21dtv.com/songs/60149108.mkv +DJ-超劲爆电音DJ<串烧>,http://em.21dtv.com/songs/60149107.mkv +DJ-超嗨电音HOUSE劲爆英文<串烧>,http://em.21dtv.com/songs/60149106.mkv +DJ-不顾一切去爱你低音嗨曲<串烧>,http://em.21dtv.com/songs/60149105.mkv +DJ-热播中文DJ<串烧>,http://em.21dtv.com/songs/60149104.mkv +DJ-重低音热恋男女情歌对唱<串烧>,http://em.21dtv.com/songs/60149103.mkv +DJ-亲亲老婆+咱们结婚吧<串烧>,http://em.21dtv.com/songs/60149102.mkv +DJ忠-唱情歌的人爱音乐中文慢摇<串烧>,http://em.21dtv.com/songs/60149101.mkv +DJ小冰-全中文弹CLUB<串烧>,http://em.21dtv.com/songs/60149100.mkv +DJ小冰-全英文MASHUP SEND A FRIEND<串烧>,http://em.21dtv.com/songs/60149099.mkv +DJ小冰-本色MASHUP顶尖HOSE嗨神<串烧>,http://em.21dtv.com/songs/60149098.mkv +DJ吴帅 -我不是个好东西潮流伤感中文慢摇<串烧>,http://em.21dtv.com/songs/60149097.mkv +DJ庆喜-全英文FUNKY HOUSE电音慢摇<串烧>,http://em.21dtv.com/songs/60149096.mkv +DJ理仔-全中文国粤语摇摆CLUB慢摇<串烧>,http://em.21dtv.com/songs/60149095.mkv +DJ科恩-伤感中文情感快摇<串烧>,http://em.21dtv.com/songs/60149094.mkv +DJ毁忆-劲爆越鼓合集<串烧>,http://em.21dtv.com/songs/60149093.mkv +DJ毁忆-电音毒药魔力上头嗨<串烧>,http://em.21dtv.com/songs/60149092.mkv +DJ辰逸-重温当年你牛什么牛<串烧>,http://em.21dtv.com/songs/60149091.mkv +DJ-爱情天堂<串烧>,http://em.21dtv.com/songs/60149090.mkv +DJ回忆-英文重磅电鼓精品<串烧>,http://em.21dtv.com/songs/60149089.mkv +龙安+伯艺-有兄弟在,http://em.21dtv.com/songs/60149088.mkv +高夫-世界很大也很小,http://em.21dtv.com/songs/60149087.mkv +陈娟儿-流泪的太阳,http://em.21dtv.com/songs/60149086.mkv +陈娟儿-搭档,http://em.21dtv.com/songs/60149085.mkv +陈娟儿-做不到,http://em.21dtv.com/songs/60149084.mkv +陈娟儿-不要离开我,http://em.21dtv.com/songs/60149083.mkv +陈娟儿-不怎样,http://em.21dtv.com/songs/60149082.mkv +阿里郎-你身边还有我,http://em.21dtv.com/songs/60149081.mkv +阿沁-毕卡索的谎言,http://em.21dtv.com/songs/60149080.mkv +邱永传-爱你有毒,http://em.21dtv.com/songs/60149079.mkv +贺一航-痛快醉一回,http://em.21dtv.com/songs/60149078.mkv +谷微-你是我的唯一,http://em.21dtv.com/songs/60149077.mkv +薛冬丽-为了遇见,http://em.21dtv.com/songs/60149076.mkv +范宏伟-停车难,http://em.21dtv.com/songs/60149075.mkv +范宏伟-停车难,http://em.21dtv.com/songs/60149074.mkv +沈旭升-不要走,http://em.21dtv.com/songs/60149073.mkv +格子兮-时线,http://em.21dtv.com/songs/60149072.mkv +杨梓文祺+金久哲-等风等雨我等你,http://em.21dtv.com/songs/60149071.mkv +杨一凡-心口如一,http://em.21dtv.com/songs/60149070.mkv +李娇-阿娇,http://em.21dtv.com/songs/60149069.mkv +张鹏-我在西塘等着你,http://em.21dtv.com/songs/60149068.mkv +寂悸-爱在天涯,http://em.21dtv.com/songs/60149067.mkv +卢军-你若不勇敢,http://em.21dtv.com/songs/60149066.mkv +好久不见了,http://em.21dtv.com/songs/60149065.mkv +丁思忖-想你我不说,http://em.21dtv.com/songs/60149064.mkv +CS GIRLS-不懂天真,http://em.21dtv.com/songs/60149063.mkv +黄品源+A LIN-永远有多远,http://em.21dtv.com/songs/60149062.mkv +马雨梵-花月,http://em.21dtv.com/songs/60149061.mkv +马雨梵-仙人掌,http://em.21dtv.com/songs/60149060.mkv +飞龙+连天-狼,http://em.21dtv.com/songs/60149059.mkv +韩大伟-我在雄安你在哪,http://em.21dtv.com/songs/60149058.mkv +韩国群星-CHRISTMAS DAY,http://em.21dtv.com/songs/60149057.mkv +陈瑞-爱还有多久,http://em.21dtv.com/songs/60149056.mkv +陈瑞-一山一水一首歌,http://em.21dtv.com/songs/60149055.mkv +陈心蕊-幸福每一天,http://em.21dtv.com/songs/60149054.mkv +陈国祥-亲爱的姐姐,http://em.21dtv.com/songs/60149053.mkv +陈咏-箐楼咏,http://em.21dtv.com/songs/60149052.mkv +陈俊彤-记忆里的人,http://em.21dtv.com/songs/60149051.mkv +阿沁-线上聊,http://em.21dtv.com/songs/60149050.mkv +阿影-十九大是一把火,http://em.21dtv.com/songs/60149049.mkv +阿冷-那年幸福,http://em.21dtv.com/songs/60149048.mkv +阿兰-牧野往事,http://em.21dtv.com/songs/60149047.mkv +闫晓-梦里通江,http://em.21dtv.com/songs/60149046.mkv +金烔完-AFTERIMAGE,http://em.21dtv.com/songs/60149045.mkv +金丹-让雪花带走我的思念,http://em.21dtv.com/songs/60149044.mkv +郑雷-假装无所谓,http://em.21dtv.com/songs/60149043.mkv +郑雷-为何相爱不相逢,http://em.21dtv.com/songs/60149042.mkv +郑中基-没听过的歌,http://em.21dtv.com/songs/60149041.mkv +赵方婧-直觉,http://em.21dtv.com/songs/60149040.mkv +薛之谦-骆驼,http://em.21dtv.com/songs/60149039.mkv +艾正正-过客,http://em.21dtv.com/songs/60149038.mkv +肖潇-阿爸阿爸,http://em.21dtv.com/songs/60149037.mkv +结城アイラ-どんな星空よりも、どんな思い出よりも,http://em.21dtv.com/songs/60149036.mkv +紫炫-红红大中国,http://em.21dtv.com/songs/60149035.mkv +白小白-不甘示弱,http://em.21dtv.com/songs/60149034.mkv +王超-别为我哭,http://em.21dtv.com/songs/60149033.mkv +王建荣+爱浪漫-长路漫漫陪你走,http://em.21dtv.com/songs/60149032.mkv +王小鹿-乡愁躲进我梦中,http://em.21dtv.com/songs/60149031.mkv +泰民-THIRSTY,http://em.21dtv.com/songs/60149030.mkv +汪苏泷+梁子-人情世故,http://em.21dtv.com/songs/60149029.mkv +毕书尽-MISSING XMAS,http://em.21dtv.com/songs/60149028.mkv +樊凡-留在故事中,http://em.21dtv.com/songs/60149027.mkv +樊凡-心好疼,http://em.21dtv.com/songs/60149026.mkv +杨千嬅+汪苏泷-人情世故,http://em.21dtv.com/songs/60149025.mkv +李剑武-折断的爱情,http://em.21dtv.com/songs/60149023.mkv +朴宝蓝-像梦一样,http://em.21dtv.com/songs/60149022.mkv +望海高歌-你从我身边匆匆地走开,http://em.21dtv.com/songs/60149021.mkv +曹轩宾-贪婪,http://em.21dtv.com/songs/60149020.mkv +春奈るな-KIRAMEKI☆ライフライン,http://em.21dtv.com/songs/60149019.mkv +成龙-英雄故事,http://em.21dtv.com/songs/60149018.mkv +广杰-酒多伤胃,http://em.21dtv.com/songs/60149016.mkv +带泪的鱼-悲哀的爱过,http://em.21dtv.com/songs/60149015.mkv +崔雨鑫-初见,http://em.21dtv.com/songs/60149014.mkv +宇多田ヒカル-あなた,http://em.21dtv.com/songs/60149013.mkv +孟庭苇-祈福,http://em.21dtv.com/songs/60149012.mkv +娜丫头-痴心不改,http://em.21dtv.com/songs/60149011.mkv +娜丫头-如果离开我你会很快乐,http://em.21dtv.com/songs/60149010.mkv +大庆小芳-你是我的充电宝,http://em.21dtv.com/songs/60149009.mkv +大平-知道,http://em.21dtv.com/songs/60149008.mkv +喜鹊-我在聊城等你,http://em.21dtv.com/songs/60149007.mkv +刘诗诗-何者般若,http://em.21dtv.com/songs/60149006.mkv +刘维-诱惑的街,http://em.21dtv.com/songs/60149005.mkv +刘子璇-嘴巴嘟嘟,http://em.21dtv.com/songs/60149004.mkv +冷漠-曾经深深爱过你,http://em.21dtv.com/songs/60149003.mkv +任重-爱的魔法师,http://em.21dtv.com/songs/60149002.mkv +中诚-中国好兄弟,http://em.21dtv.com/songs/60149001.mkv +YOUNHA-LOVE U,http://em.21dtv.com/songs/60149000.mkv +SURAN+CRUSH-LOVE STORY,http://em.21dtv.com/songs/60148999.mkv +STU48-思い出せてよかった,http://em.21dtv.com/songs/60148998.mkv +SPEXIAL-BONG,http://em.21dtv.com/songs/60148997.mkv +SOULSTAR-CAUSE I'M LOVING YOU,http://em.21dtv.com/songs/60148996.mkv +SOOL J+LQXR+JP-DIVE INTO THE LIGHT,http://em.21dtv.com/songs/60148995.mkv +SING女团-LIKE THIS,http://em.21dtv.com/songs/60148994.mkv +ROTHY-STARS,http://em.21dtv.com/songs/60148993.mkv +PETIT RABBIT’S+徳井青空+村川梨衣-セカイがカフェになっちゃった,http://em.21dtv.com/songs/60148992.mkv +PETIT RABBIT’S-ハピネスアンコール,http://em.21dtv.com/songs/60148991.mkv +MJ 7-一秒钟而已,http://em.21dtv.com/songs/60148990.mkv +LOUIS TOMLINSON-MISS YOU,http://em.21dtv.com/songs/60148989.mkv +KASSY-听这首歌,http://em.21dtv.com/songs/60148988.mkv +JIN-STAY,http://em.21dtv.com/songs/60148987.mkv +HAN ALL-除了我们,http://em.21dtv.com/songs/60148986.mkv +HAN ALL-犹豫,http://em.21dtv.com/songs/60148985.mkv +GUGUDAN-CHOCOCO,http://em.21dtv.com/songs/60148984.mkv +GU KEUNBYUL-SING MY SONG,http://em.21dtv.com/songs/60148983.mkv +G.URBAN-JUST FRIEND,http://em.21dtv.com/songs/60148982.mkv +FLY TO THE SKY-你的季节,http://em.21dtv.com/songs/60148981.mkv +FAYE 飞-勇往直前,http://em.21dtv.com/songs/60148980.mkv +EVERY SINGLE DAY+MXXG-PERFECT LIFE,http://em.21dtv.com/songs/60148979.mkv +MY LIFE,http://em.21dtv.com/songs/60148978.mkv +DAY WALKER+LAKO-ZZURU,http://em.21dtv.com/songs/60148977.mkv +CG-文爱,http://em.21dtv.com/songs/60148976.mkv +BEN-无法离开,http://em.21dtv.com/songs/60148975.mkv +BEAT IN THE TRAP-香烟,http://em.21dtv.com/songs/60148974.mkv +AQOURS-"MY LIST" TO YOU,http://em.21dtv.com/songs/60148973.mkv +AQOURS-勇気はどこに?君の胸に,http://em.21dtv.com/songs/60148972.mkv +APINK-RAINBOW,http://em.21dtv.com/songs/60148971.mkv +APINK-ORION,http://em.21dtv.com/songs/60148970.mkv +AKB48-野蛮な求爱,http://em.21dtv.com/songs/60148969.mkv +AKB48-生きることに热狂を,http://em.21dtv.com/songs/60148968.mkv +AKB48-法定速度と优越感,http://em.21dtv.com/songs/60148967.mkv +A LIN-永远有多远,http://em.21dtv.com/songs/60148966.mkv +7秒后+君が好きになる。-微笑みの瞬间,http://em.21dtv.com/songs/60148965.mkv +龚爽-源,http://em.21dtv.com/songs/60148964.mkv +陈霈然-道情,http://em.21dtv.com/songs/60148963.mkv +陈霈然-观前山白云飞,http://em.21dtv.com/songs/60148962.mkv +陈星+张艺豪-一个人的坚强,http://em.21dtv.com/songs/60148961.mkv +车璐-为老百姓着想,http://em.21dtv.com/songs/60148960.mkv +李超-爸爸妈妈,http://em.21dtv.com/songs/60148959.mkv +李书伟+何丽婷-走进巴中,http://em.21dtv.com/songs/60148958.mkv +冯霞-清明上河图,http://em.21dtv.com/songs/60148955.mkv +冯霞-国歌响起,http://em.21dtv.com/songs/60148954.mkv +余萍-远飞的燕子,http://em.21dtv.com/songs/60148953.mkv +龙泽索南-唱着情歌去康定,http://em.21dtv.com/songs/60148952.mkv +黄淑蔓-那一年零一个月,http://em.21dtv.com/songs/60148951.mkv +高颖-枷锁,http://em.21dtv.com/songs/60148950.mkv +雨中百合-亲爱的你爱我吗,http://em.21dtv.com/songs/60148949.mkv +陈瑞-爱是你给的愁,http://em.21dtv.com/songs/60148948.mkv +逆流乐队-六呎之下,http://em.21dtv.com/songs/60148947.mkv +许书豪-备胎,http://em.21dtv.com/songs/60148945.mkv +董茂-我这二十年,http://em.21dtv.com/songs/60148944.mkv +莫文蔚-刀剑如梦,http://em.21dtv.com/songs/60148943.mkv +王金金-那时窗外开满花,http://em.21dtv.com/songs/60148942.mkv +王诗安-徕卡味,http://em.21dtv.com/songs/60148941.mkv +王源-SLEEP,http://em.21dtv.com/songs/60148940.mkv +王丽达-领航新时代,http://em.21dtv.com/songs/60148939.mkv +狄以达-乘着光影恋爱,http://em.21dtv.com/songs/60148938.mkv +牛骏峰-世界,http://em.21dtv.com/songs/60148937.mkv +涓子-放弃你我真的做不到,http://em.21dtv.com/songs/60148936.mkv +沈丹丹-单单喜欢你,http://em.21dtv.com/songs/60148935.mkv +汪苏泷+霍尊-梦诛缘夏聚,http://em.21dtv.com/songs/60148934.mkv +梅朵-人道,http://em.21dtv.com/songs/60148933.mkv +林欣甫-无法拒绝的长大,http://em.21dtv.com/songs/60148932.mkv +杰克+郑如秀-痴情千万年,http://em.21dtv.com/songs/60148931.mkv +杰克+邱芸子-今生再相逢,http://em.21dtv.com/songs/60148930.mkv +杰克+詹曼铃-幸福的代,http://em.21dtv.com/songs/60148929.mkv +杰克+曼君-爱的小路.,http://em.21dtv.com/songs/60148928.mkv +杰克+曼君-双人情,http://em.21dtv.com/songs/60148927.mkv +杰克+一绫-遥远的爱,http://em.21dtv.com/songs/60148926.mkv +杨坤-聪明的一休,http://em.21dtv.com/songs/60148925.mkv +李玖哲-WILL YOU REMEMBER ME,http://em.21dtv.com/songs/60148924.mkv +李凯年-大不了AA,http://em.21dtv.com/songs/60148923.mkv +星月组合-缘分让我们在一起,http://em.21dtv.com/songs/60148922.mkv +方少珊-禅茶,http://em.21dtv.com/songs/60148921.mkv +方少珊-南海观音,http://em.21dtv.com/songs/60148920.mkv +敖犬-I'M THE BEST,http://em.21dtv.com/songs/60148919.mkv +恺乐-ONE LAST CRY,http://em.21dtv.com/songs/60148918.mkv +徐浩-睡在天台上的人,http://em.21dtv.com/songs/60148917.mkv +徐浩-两个人的恋爱,http://em.21dtv.com/songs/60148916.mkv +徐浩-REALLY RIGHT,http://em.21dtv.com/songs/60148915.mkv +徐佳莹-言不由衷,http://em.21dtv.com/songs/60148914.mkv +张杰-怪兽,http://em.21dtv.com/songs/60148913.mkv +张新-AIN'T NO OTHER MAN,http://em.21dtv.com/songs/60148912.mkv +容祖儿-重生,http://em.21dtv.com/songs/60148911.mkv +夏天播放-至少你是快乐的,http://em.21dtv.com/songs/60148910.mkv +吴亦凡-B.M,http://em.21dtv.com/songs/60148908.mkv +叶秉桓-喜剧之王,http://em.21dtv.com/songs/60148907.mkv +刘相松-浪花一朵朵,http://em.21dtv.com/songs/60148906.mkv +刘昊东-流浪的蝴蝶,http://em.21dtv.com/songs/60148905.mkv +刘一祯-美女拦江,http://em.21dtv.com/songs/60148904.mkv +凤凰传奇-友情岁月,http://em.21dtv.com/songs/60148903.mkv +六郎-想你,http://em.21dtv.com/songs/60148902.mkv +幸田来未-NEVER ENOUGH,http://em.21dtv.com/songs/60148901.mkv +佐咲纱花-GRAND SYMPHONY,http://em.21dtv.com/songs/60148900.mkv +七郎+邓咏家-鸳鸯布鲁斯,http://em.21dtv.com/songs/60148899.mkv +七郎-浪子无回头,http://em.21dtv.com/songs/60148898.mkv +七郎-樱花雪,http://em.21dtv.com/songs/60148897.mkv +七郎-失意的男儿,http://em.21dtv.com/songs/60148896.mkv +七郎-南国海岸线,http://em.21dtv.com/songs/60148895.mkv +丁晓君-中国新时代,http://em.21dtv.com/songs/60148894.mkv +TIZZY T+JONY J-想把你留在这里,http://em.21dtv.com/songs/60148893.mkv +SIA-HO HO HO,http://em.21dtv.com/songs/60148892.mkv +PITBULL+E 40+ABRAHAM MATEO+STEREOTYPES-JUNGLE,http://em.21dtv.com/songs/60148891.mkv +OWL CITY-THE 5TH OF JULY,http://em.21dtv.com/songs/60148890.mkv +MIGUEL-TOLD YOU SO,http://em.21dtv.com/songs/60148889.mkv +JA符龙飞-I'M OK,http://em.21dtv.com/songs/60148888.mkv +HONEYST-SOMEONE TO LOVE,http://em.21dtv.com/songs/60148887.mkv +GRACE VANDERWAAL-SO MUCH MORE THAN THIS,http://em.21dtv.com/songs/60148886.mkv +FLO RIDA+MALUMA-HOLA,http://em.21dtv.com/songs/60148885.mkv +黄玮昕-心有独钟,http://em.21dtv.com/songs/60148884.mkv +飞歌-月夜下的思念,http://em.21dtv.com/songs/60148883.mkv +风语-这世界有你真好,http://em.21dtv.com/songs/60148882.mkv +风语-梅雪之恋,http://em.21dtv.com/songs/60148881.mkv +风语-今生把你放心底,http://em.21dtv.com/songs/60148880.mkv +雨禾-三世轮回这份情,http://em.21dtv.com/songs/60148879.mkv +隋佳艾-枷锁,http://em.21dtv.com/songs/60148878.mkv +陈晓东+梁咏琪-心有独钟+短发+许愿,http://em.21dtv.com/songs/60148877.mkv +陈晓东+张恋歌-比我幸福,http://em.21dtv.com/songs/60148876.mkv +陈小虎-简单的幸福,http://em.21dtv.com/songs/60148875.mkv +阿文-天在下雨泪在飞,http://em.21dtv.com/songs/60148874.mkv +金婷婷+石头-美丽的神话,http://em.21dtv.com/songs/60148873.mkv +金婷婷+石头-因为爱情,http://em.21dtv.com/songs/60148872.mkv +金婷婷+石头-凉凉,http://em.21dtv.com/songs/60148871.mkv +金婷婷+张大伟-好久不见,http://em.21dtv.com/songs/60148870.mkv +金婷婷+周丝怡-祝福,http://em.21dtv.com/songs/60148869.mkv +金婷婷+何晟铭-爱的供养,http://em.21dtv.com/songs/60148868.mkv +金婷婷-风吹麦浪,http://em.21dtv.com/songs/60148867.mkv +金婷婷-跟着感觉走,http://em.21dtv.com/songs/60148866.mkv +金婷婷-红颜旧,http://em.21dtv.com/songs/60148865.mkv +金婷婷-我的歌声里,http://em.21dtv.com/songs/60148864.mkv +金婷婷-嫂子颂,http://em.21dtv.com/songs/60148863.mkv +金婷婷-十送红军,http://em.21dtv.com/songs/60148862.mkv +金婷婷-但愿人长久,http://em.21dtv.com/songs/60148861.mkv +邓子辰-学不会,http://em.21dtv.com/songs/60148860.mkv +谢和弦-光害,http://em.21dtv.com/songs/60148859.mkv +蔡依林-最炫民族风,http://em.21dtv.com/songs/60148858.mkv +葛林-中意他,http://em.21dtv.com/songs/60148857.mkv +胡月+蒋舟-请到武夷来吃茶,http://em.21dtv.com/songs/60148856.mkv +罗隽永+康天庥-FLY AWAY,http://em.21dtv.com/songs/60148855.mkv +罗旭阳-海边的告白,http://em.21dtv.com/songs/60148854.mkv +王曼玉-花火,http://em.21dtv.com/songs/60148853.mkv +王奕忠-各自珍重,http://em.21dtv.com/songs/60148852.mkv +洪磊-初恋,http://em.21dtv.com/songs/60148851.mkv +汪晨蕊+汪苏泷-携手同行,http://em.21dtv.com/songs/60148850.mkv +梁咏琪+葛林-中意他,http://em.21dtv.com/songs/60148849.mkv +枫舞-为你流下相思泪,http://em.21dtv.com/songs/60148848.mkv +杰歌-男人要有担当,http://em.21dtv.com/songs/60148847.mkv +李思颖-快乐校园,http://em.21dtv.com/songs/60148846.mkv +李冰-日不落,http://em.21dtv.com/songs/60148845.mkv +杀手锏-撞柱,http://em.21dtv.com/songs/60148844.mkv +文远-边走边忘,http://em.21dtv.com/songs/60148843.mkv +张靓颖+李荣浩-女儿国,http://em.21dtv.com/songs/60148842.mkv +张惠妹-连名带姓,http://em.21dtv.com/songs/60148841.mkv +庾澄庆-错到底,http://em.21dtv.com/songs/60148840.mkv +小米-太平,http://em.21dtv.com/songs/60148838.mkv +孙方-兄弟兄弟,http://em.21dtv.com/songs/60148837.mkv +姜世香-一生的爱只为你保留,http://em.21dtv.com/songs/60148836.mkv +周深-垃圾别烦我,http://em.21dtv.com/songs/60148835.mkv +刘思伟-只想好好和你在一起,http://em.21dtv.com/songs/60148832.mkv +净尘-净沙说,http://em.21dtv.com/songs/60148831.mkv +关晓彤-灵感 与你彤行,http://em.21dtv.com/songs/60148830.mkv +关喆-念旧,http://em.21dtv.com/songs/60148829.mkv +任盈盈-贪心贼,http://em.21dtv.com/songs/60148827.mkv +王键-苦涩的浪漫,http://em.21dtv.com/songs/60148826.mkv +潘美辰-被爱耍了,http://em.21dtv.com/songs/60148825.mkv +渔渊-雁南飞,http://em.21dtv.com/songs/60148824.mkv +沫宝-夜太刻意,http://em.21dtv.com/songs/60148823.mkv +毕文婷-殇雨,http://em.21dtv.com/songs/60148822.mkv +毕书尽-REDN'HOT,http://em.21dtv.com/songs/60148821.mkv +欧阳朵-被爱的人,http://em.21dtv.com/songs/60148820.mkv +梁文音-如歌,http://em.21dtv.com/songs/60148819.mkv +格子兮-比想象中爱你,http://em.21dtv.com/songs/60148818.mkv +査可欣-LOVE CAN TOUCH,http://em.21dtv.com/songs/60148817.mkv +杨菲洋-下雨的时候请记起我,http://em.21dtv.com/songs/60148816.mkv +杨栋梁-天生胆小,http://em.21dtv.com/songs/60148815.mkv +李胜素+王泓翔-梨花颂,http://em.21dtv.com/songs/60148814.mkv +李昕翰-华夏五千年,http://em.21dtv.com/songs/60148813.mkv +李宇春-耳机,http://em.21dtv.com/songs/60148812.mkv +李宇春-年轻气盛,http://em.21dtv.com/songs/60148811.mkv +可是我们在一起,http://em.21dtv.com/songs/60148810.mkv +李宇春-A POP SONG,http://em.21dtv.com/songs/60148809.mkv +李夏-回到拉萨+大象,http://em.21dtv.com/songs/60148808.mkv +李一桐-迷你闪电,http://em.21dtv.com/songs/60148807.mkv +望海高歌-苦苦的恋着你,http://em.21dtv.com/songs/60148806.mkv +曾轶可-不如我们重新来过,http://em.21dtv.com/songs/60148805.mkv +暴林-红尘痴笑一场梦,http://em.21dtv.com/songs/60148804.mkv +景子谦+初晴VAN-神来之笔,http://em.21dtv.com/songs/60148803.mkv +昭昭-傻子才悲伤,http://em.21dtv.com/songs/60148802.mkv +星月组合-爱情路上风雨多,http://em.21dtv.com/songs/60148801.mkv +星月组合-慢慢老去,http://em.21dtv.com/songs/60148800.mkv +明亮组合-时代节拍,http://em.21dtv.com/songs/60148799.mkv +托尼-道歉,http://em.21dtv.com/songs/60148798.mkv +戚薇+VAVA-镜像,http://em.21dtv.com/songs/60148797.mkv +张龙珍-爱怎么继续,http://em.21dtv.com/songs/60148796.mkv +张莹莹-三生再三世,http://em.21dtv.com/songs/60148795.mkv +张磊-夜晚的天空,http://em.21dtv.com/songs/60148794.mkv +张杰-九妹,http://em.21dtv.com/songs/60148793.mkv +张忆亚-小女生,http://em.21dtv.com/songs/60148792.mkv +张伦-我的老爸老妈,http://em.21dtv.com/songs/60148791.mkv +庄心妍-梦诛缘忆暖冬,http://em.21dtv.com/songs/60148790.mkv +庄心妍-最美的瞬间,http://em.21dtv.com/songs/60148789.mkv +带泪的鱼-记忆总让人哭泣,http://em.21dtv.com/songs/60148788.mkv +带泪的鱼-噩梦,http://em.21dtv.com/songs/60148787.mkv +岑雨桥-HAPPY IN THE NIGHT,http://em.21dtv.com/songs/60148786.mkv +居子铃-再续那千年奇缘,http://em.21dtv.com/songs/60148785.mkv +尚芸菲-不怕,http://em.21dtv.com/songs/60148784.mkv +少司命+新乐尘符-不归人,http://em.21dtv.com/songs/60148783.mkv +宫婷婷-我的天空,http://em.21dtv.com/songs/60148782.mkv +孤独浪子-美丽的地方,http://em.21dtv.com/songs/60148781.mkv +孟飞-感谢军旅路上有你,http://em.21dtv.com/songs/60148780.mkv +孙莞-凛冽,http://em.21dtv.com/songs/60148779.mkv +孙琪-南方以南,http://em.21dtv.com/songs/60148778.mkv +孙琪-众里寻你,http://em.21dtv.com/songs/60148777.mkv +大庆小芳-坐上高铁去北京,http://em.21dtv.com/songs/60148776.mkv +大庆小芳-一辈子都好好的,http://em.21dtv.com/songs/60148775.mkv +大壮-差一步,http://em.21dtv.com/songs/60148774.mkv +大喇叭组合-来碗烩面,http://em.21dtv.com/songs/60148773.mkv +夏天ALEX-灯火阑珊处,http://em.21dtv.com/songs/60148772.mkv +夏天ALEX-我是你伤心的时候才想起的人,http://em.21dtv.com/songs/60148771.mkv +夏天ALEX-心照不宣,http://em.21dtv.com/songs/60148770.mkv +夏天ALEX-不搭,http://em.21dtv.com/songs/60148769.mkv +唐古-画缘,http://em.21dtv.com/songs/60148768.mkv +和平路北-I'M OK,http://em.21dtv.com/songs/60148767.mkv +周扬-阿妈的期盼,http://em.21dtv.com/songs/60148766.mkv +周扬-梦中的额吉,http://em.21dtv.com/songs/60148765.mkv +周兴哲-WITHOUT HER,http://em.21dtv.com/songs/60148764.mkv +吴英绪-爱你都给你,http://em.21dtv.com/songs/60148763.mkv +吴瑕-独立日,http://em.21dtv.com/songs/60148762.mkv +吴瑕-我的大篷车,http://em.21dtv.com/songs/60148761.mkv +吴树雄-向往自由,http://em.21dtv.com/songs/60148760.mkv +吴周胜-选择了我又伤害我,http://em.21dtv.com/songs/60148759.mkv +吴丹妮-小拥抱,http://em.21dtv.com/songs/60148758.mkv +原子霏-逃不掉,http://em.21dtv.com/songs/60148757.mkv +卿松-你还好吗,http://em.21dtv.com/songs/60148756.mkv +占凤生-爹和娘,http://em.21dtv.com/songs/60148755.mkv +南宫嘉骏-快手情缘,http://em.21dtv.com/songs/60148754.mkv +华晨宇-代号魂斗罗,http://em.21dtv.com/songs/60148753.mkv +刘明湘-谢谢收看,http://em.21dtv.com/songs/60148752.mkv +刘帅良-我要你,http://em.21dtv.com/songs/60148751.mkv +关菊英-我本无罪,http://em.21dtv.com/songs/60148750.mkv +六哲-爱谁谁,http://em.21dtv.com/songs/60148749.mkv +何龙雨-水一样的母亲,http://em.21dtv.com/songs/60148748.mkv +伍语涵-青春酸甜口,http://em.21dtv.com/songs/60148747.mkv +代理仁-这个年纪,http://em.21dtv.com/songs/60148746.mkv +于海航-浮生录,http://em.21dtv.com/songs/60148745.mkv +严爵+香奈儿-LOVE TODAY,http://em.21dtv.com/songs/60148744.mkv +丁明伟-离开以后,http://em.21dtv.com/songs/60148743.mkv +丁明伟-我类想你,http://em.21dtv.com/songs/60148742.mkv +丁子峻-拥抱月的太阳,http://em.21dtv.com/songs/60148741.mkv +ZERO-乌龙情歌,http://em.21dtv.com/songs/60148740.mkv +TEAMSPARK-宝贝宝贝,http://em.21dtv.com/songs/60148739.mkv +ROY KIM-那该多好,http://em.21dtv.com/songs/60148738.mkv +O.WHEN-FALL IN LOVE,http://em.21dtv.com/songs/60148737.mkv +MARINA杨洋+熊天平-幸福像阳光一样,http://em.21dtv.com/songs/60148736.mkv +MAD KOIN+BASICK-DRUNKEN,http://em.21dtv.com/songs/60148735.mkv +HENRY-IT'S YOU,http://em.21dtv.com/songs/60148734.mkv +HAEBIN-EVERYDAY,http://em.21dtv.com/songs/60148733.mkv +HAEA-PARIS PARTY,http://em.21dtv.com/songs/60148732.mkv +GALA-你,http://em.21dtv.com/songs/60148731.mkv +GAI-大师,http://em.21dtv.com/songs/60148730.mkv +FS-YOU ARE BY MY SIDE,http://em.21dtv.com/songs/60148729.mkv +BBT-MR.LEE,http://em.21dtv.com/songs/60148728.mkv +ALAN-乐此不疲,http://em.21dtv.com/songs/60148727.mkv +龙千玉-陪阮到老,http://em.21dtv.com/songs/60148726.mkv +黎晓阳-自由泳,http://em.21dtv.com/songs/60148725.mkv +黄孝恩-误会,http://em.21dtv.com/songs/60148724.mkv +鲍国-妹妹妹妹我爱你,http://em.21dtv.com/songs/60148723.mkv +鲍国-向前方,http://em.21dtv.com/songs/60148722.mkv +高音敏子-情醉芙蓉凰,http://em.21dtv.com/songs/60148721.mkv +高睿-结婚吧,http://em.21dtv.com/songs/60148720.mkv +马艺航-美人鱼,http://em.21dtv.com/songs/60148719.mkv +马云+王菲-风清扬,http://em.21dtv.com/songs/60148718.mkv +风小筝-回忆的日记本,http://em.21dtv.com/songs/60148717.mkv +顽童MJ116-SPOTLIGHT,http://em.21dtv.com/songs/60148716.mkv +韩安旭-失恋笔记,http://em.21dtv.com/songs/60148715.mkv +静静姑娘-错过,http://em.21dtv.com/songs/60148714.mkv +陌小聪-一个人去流浪,http://em.21dtv.com/songs/60148713.mkv +陈鹏-已经长大了,http://em.21dtv.com/songs/60148712.mkv +陈雅森-烟,http://em.21dtv.com/songs/60148711.mkv +陈西洋-闭嘴别再拍马屁,http://em.21dtv.com/songs/60148710.mkv +阿喜林育品-遇见你,http://em.21dtv.com/songs/60148709.mkv +阿兰-乐此不疲,http://em.21dtv.com/songs/60148708.mkv +阳斌-花好月圆夜,http://em.21dtv.com/songs/60148707.mkv +钟舒漫-BE WATER MY FRIEND,http://em.21dtv.com/songs/60148706.mkv +金南玲-春风十里不如你,http://em.21dtv.com/songs/60148705.mkv +郑原青-第三秒心跳,http://em.21dtv.com/songs/60148704.mkv +郑兴-爱情朝九晚五,http://em.21dtv.com/songs/60148703.mkv +路童+段彤-恨透了你,http://em.21dtv.com/songs/60148702.mkv +贺敬轩-最美遇见,http://em.21dtv.com/songs/60148701.mkv +许靖韵-被讨厌的勇气,http://em.21dtv.com/songs/60148700.mkv +覃源-不低头的勇敢,http://em.21dtv.com/songs/60148699.mkv +范博-心的方向,http://em.21dtv.com/songs/60148698.mkv +花不弃-圈套,http://em.21dtv.com/songs/60148697.mkv +胡梅雄-军工路516号的夜晚,http://em.21dtv.com/songs/60148696.mkv +胜东-缺氧,http://em.21dtv.com/songs/60148695.mkv +群星-银河系音雄联盟,http://em.21dtv.com/songs/60148694.mkv +罗成萍-不老的山寨,http://em.21dtv.com/songs/60148693.mkv +秋恩娜-不甘心,http://em.21dtv.com/songs/60148692.mkv +王浩信+HANA-欲言又止,http://em.21dtv.com/songs/60148691.mkv +潘辰-敢来就敢爱,http://em.21dtv.com/songs/60148690.mkv +梁帅+金钰儿-在最美的时光遇见你,http://em.21dtv.com/songs/60148689.mkv +杜佳-演技,http://em.21dtv.com/songs/60148688.mkv +李超-娘,http://em.21dtv.com/songs/60148687.mkv +李超-全家福,http://em.21dtv.com/songs/60148686.mkv +李本锡-给华仔的歌,http://em.21dtv.com/songs/60148685.mkv +李斯丹妮-LOVE+KISS,http://em.21dtv.com/songs/60148684.mkv +李宇春-口音,http://em.21dtv.com/songs/60148683.mkv +李宇春-一趟,http://em.21dtv.com/songs/60148682.mkv +李宇春-PRIVACY,http://em.21dtv.com/songs/60148681.mkv +李予溪-傻的可以,http://em.21dtv.com/songs/60148680.mkv +曾舜晞-THANK YOU,http://em.21dtv.com/songs/60148679.mkv +曹久忆-爱人城堡,http://em.21dtv.com/songs/60148678.mkv +曲调悠扬-秋天的泪,http://em.21dtv.com/songs/60148677.mkv +晨熙-别说对不起,http://em.21dtv.com/songs/60148676.mkv +易烊千玺+关晓彤+王嘉-拥抱你,http://em.21dtv.com/songs/60148675.mkv +时杰-游子念爹娘,http://em.21dtv.com/songs/60148674.mkv +方炯镔-只剩爱,http://em.21dtv.com/songs/60148673.mkv +拉巴扎西-逝去的爱,http://em.21dtv.com/songs/60148672.mkv +徐誉滕-春花秋月夏杜鹃,http://em.21dtv.com/songs/60148671.mkv +张肇彧-命中注定的我们,http://em.21dtv.com/songs/60148670.mkv +张小耀-下辈子让我做你的红颜知己,http://em.21dtv.com/songs/60148669.mkv +张大川-相爱的人相思不相守,http://em.21dtv.com/songs/60148668.mkv +巴特-义堂,http://em.21dtv.com/songs/60148667.mkv +崔子格-我只愿相信你,http://em.21dtv.com/songs/60148666.mkv +小背心-小背心,http://em.21dtv.com/songs/60148665.mkv +安苏羽+张兮沐-猜忌,http://em.21dtv.com/songs/60148664.mkv +安苏羽-梦里的月光,http://em.21dtv.com/songs/60148663.mkv +宇宙人+熊仔-BON BON BON BON,http://em.21dtv.com/songs/60148662.mkv +宁新兵-妈妈眼中的泪花,http://em.21dtv.com/songs/60148661.mkv +孙琪-默,http://em.21dtv.com/songs/60148660.mkv +孙琪-妈妈礼赞,http://em.21dtv.com/songs/60148659.mkv +孙海洋-自信歌,http://em.21dtv.com/songs/60148658.mkv +大庆小芳-5发4爱你1辈子,http://em.21dtv.com/songs/60148657.mkv +大哲-昨夜的酒,http://em.21dtv.com/songs/60148656.mkv +吴英绪-梦想永不止步,http://em.21dtv.com/songs/60148655.mkv +吴英绪-我的好闺女,http://em.21dtv.com/songs/60148654.mkv +吴芊兴-祝福上师,http://em.21dtv.com/songs/60148653.mkv +古娇-习惯,http://em.21dtv.com/songs/60148652.mkv +华子歌-听佛说,http://em.21dtv.com/songs/60148651.mkv +刘贵贤-小白杨,http://em.21dtv.com/songs/60148650.mkv +刘增瞳+箱子君-定义友情,http://em.21dtv.com/songs/60148649.mkv +冷漠-红颜劫,http://em.21dtv.com/songs/60148648.mkv +冯杰防-防骗歌,http://em.21dtv.com/songs/60148647.mkv +光良-造天气的人,http://em.21dtv.com/songs/60148646.mkv +光泽+G.Z乐团-重生,http://em.21dtv.com/songs/60148645.mkv +佟骏-颁金乌春,http://em.21dtv.com/songs/60148644.mkv +何柏诚-小宝贝,http://em.21dtv.com/songs/60148643.mkv +九日-麻花姑娘,http://em.21dtv.com/songs/60148642.mkv +万妮达-场上称霸,http://em.21dtv.com/songs/60148641.mkv +七郎-流浪狗,http://em.21dtv.com/songs/60148640.mkv +丁可欣-抚心自问,http://em.21dtv.com/songs/60148639.mkv +TRASH-黑夜的星,http://em.21dtv.com/songs/60148638.mkv +THE ONE-想喝一杯酒,http://em.21dtv.com/songs/60148637.mkv +SEO-你的世界,http://em.21dtv.com/songs/60148636.mkv +MC小秘-邸晶晶,http://em.21dtv.com/songs/60148635.mkv +MC东东他哥-我的小可爱,http://em.21dtv.com/songs/60148634.mkv +J.Y.PARK+HEIZE-REGRETS,http://em.21dtv.com/songs/60148633.mkv +GOLDEN CHILD-LOVE LETTER,http://em.21dtv.com/songs/60148632.mkv +GAI-菜商卡头和车手,http://em.21dtv.com/songs/60148631.mkv +FS-生命协奏曲,http://em.21dtv.com/songs/60148630.mkv +FS-有你真好,http://em.21dtv.com/songs/60148629.mkv +EVERY SINGLE DAY-GO BACK,http://em.21dtv.com/songs/60148628.mkv +DAVICHI-今天也在思念,http://em.21dtv.com/songs/60148627.mkv +BROTHERSU+SEO-当你沉睡时,http://em.21dtv.com/songs/60148626.mkv +BIGDOG王可-KEEP THE FEELING,http://em.21dtv.com/songs/60148625.mkv +齐秦+秦宇子-狼,http://em.21dtv.com/songs/60148520.mkv +齐秦-如果云知道,http://em.21dtv.com/songs/60148519.mkv +黑龙+张海林-兄弟情,http://em.21dtv.com/songs/60148518.mkv +黎明-两个人的烟火,http://em.21dtv.com/songs/60148517.mkv +黄龄+张微+李博+霍上-HIGH歌,http://em.21dtv.com/songs/60148516.mkv +黄家强-光辉岁月,http://em.21dtv.com/songs/60148515.mkv +黄品源+万芳-小薇,http://em.21dtv.com/songs/60148514.mkv +鲸鱼岛乐队-I MISS YOU,http://em.21dtv.com/songs/60148513.mkv +高进+小沈阳-男人歌,http://em.21dtv.com/songs/60148512.mkv +高安-勿忘你,http://em.21dtv.com/songs/60148511.mkv +马健涛-新包容,http://em.21dtv.com/songs/60148509.mkv +韩磊+隋佶辰+王小小+李晓旭-走四方,http://em.21dtv.com/songs/60148508.mkv +陶喆+刘乙如-爱很简单,http://em.21dtv.com/songs/60148507.mkv +陈赫+邓萃雯-无敌+铁血丹心,http://em.21dtv.com/songs/60148506.mkv +陈梓童+柳畅源-刀剑如梦,http://em.21dtv.com/songs/60148505.mkv +阿杜-ANDY,http://em.21dtv.com/songs/60148504.mkv +钟欣桐+胡彦斌-在一起,http://em.21dtv.com/songs/60148503.mkv +金贵晟-I BELIEVE I CAN FLY,http://em.21dtv.com/songs/60148502.mkv +邓紫棋-IF I WERE A BOY,http://em.21dtv.com/songs/60148501.mkv +迪克牛仔+杨培安-一样的月光,http://em.21dtv.com/songs/60148500.mkv +谭咏麟+李克勤-月半小夜曲,http://em.21dtv.com/songs/60148499.mkv +谢子圻-我的舞台,http://em.21dtv.com/songs/60148498.mkv +许阁+郑恩地-大海,http://em.21dtv.com/songs/60148497.mkv +许志安-淘汰,http://em.21dtv.com/songs/60148496.mkv +蔡宜达+娄艺潇-南山南+送别,http://em.21dtv.com/songs/60148495.mkv +蔡健雅-BEAUTIFUL LOVE,http://em.21dtv.com/songs/60148494.mkv +莫艳琳-风吹麦浪,http://em.21dtv.com/songs/60148493.mkv +至上励合-棉花糖,http://em.21dtv.com/songs/60148492.mkv +羽泉-大中国+WE WILL ROCK YOU,http://em.21dtv.com/songs/60148491.mkv +羽泉-离歌,http://em.21dtv.com/songs/60148490.mkv +群星-欢乐中国年+有钱没钱回家过年,http://em.21dtv.com/songs/60148489.mkv +美-I MISS YOU,http://em.21dtv.com/songs/60148488.mkv +祁隆-第一次,http://em.21dtv.com/songs/60148487.mkv +祁隆-同学寄,http://em.21dtv.com/songs/60148486.mkv +百岁腊肉组合-梦醒时分,http://em.21dtv.com/songs/60148485.mkv +王杰-忘了你忘了我,http://em.21dtv.com/songs/60148484.mkv +王俊凯+周倩+林可欣+郭蓉-宠爱,http://em.21dtv.com/songs/60148483.mkv +玉萨-西海情歌,http://em.21dtv.com/songs/60148482.mkv +狮子合唱团-一起摇摆,http://em.21dtv.com/songs/60148481.mkv +泫雅+QIM ISLE-MORNING GLORY,http://em.21dtv.com/songs/60148480.mkv +沈丹丹-幸福恋人,http://em.21dtv.com/songs/60148479.mkv +沈丹丹-不是因为寂寞才想你,http://em.21dtv.com/songs/60148478.mkv +池石镇+胡琳-你最珍贵,http://em.21dtv.com/songs/60148477.mkv +江珊-我不愿让你一个人,http://em.21dtv.com/songs/60148476.mkv +毕夏-故乡,http://em.21dtv.com/songs/60148475.mkv +栗锦-女人花,http://em.21dtv.com/songs/60148474.mkv +林忆莲+杨啟+夏瑶+肖思齐-至少还有你,http://em.21dtv.com/songs/60148473.mkv +林俊杰-一千年以后,http://em.21dtv.com/songs/60148472.mkv +杨钰莹+翠翠+王添翼+涂晓玲-茶山情歌,http://em.21dtv.com/songs/60148471.mkv +杨升昊-说爱你,http://em.21dtv.com/songs/60148470.mkv +杨乃文-花房姑娘,http://em.21dtv.com/songs/60148469.mkv +李秉成+张靓颖-终于等到你,http://em.21dtv.com/songs/60148468.mkv +李玉刚-故乡,http://em.21dtv.com/songs/60148467.mkv +李昱和+邰正宵-好人好梦,http://em.21dtv.com/songs/60148466.mkv +李昱和+梅林组合-敖包相会,http://em.21dtv.com/songs/60148465.mkv +李斯丹妮+艾菲-兰花草,http://em.21dtv.com/songs/60148464.mkv +李代沫-原来爱情没有刚刚好,http://em.21dtv.com/songs/60148463.mkv +最后一只恐龙-听说爱情回来过,http://em.21dtv.com/songs/60148462.mkv +戴佩妮-怎样,http://em.21dtv.com/songs/60148461.mkv +彭佳慧+顺子-酒干倘卖无,http://em.21dtv.com/songs/60148460.mkv +彭佳慧+张磊-你怎么舍得我难过,http://em.21dtv.com/songs/60148459.mkv +彭佳慧-走在红毯那一天,http://em.21dtv.com/songs/60148458.mkv +彭佳慧-相见恨晚,http://em.21dtv.com/songs/60148457.mkv +张韶涵-香水百合,http://em.21dtv.com/songs/60148456.mkv +张芸京-青花,http://em.21dtv.com/songs/60148455.mkv +张继科+黄贯中+叶世荣-不再犹豫,http://em.21dtv.com/songs/60148454.mkv +张津涤-不想回家的女人,http://em.21dtv.com/songs/60148453.mkv +张津涤-一百个放心,http://em.21dtv.com/songs/60148452.mkv +张泽禹+胡钰佳-水手,http://em.21dtv.com/songs/60148451.mkv +张恒远+汪峰-像个孩子,http://em.21dtv.com/songs/60148450.mkv +张学友-祝福,http://em.21dtv.com/songs/60148449.mkv +张学友-吻别,http://em.21dtv.com/songs/60148448.mkv +张信哲+岳云鹏-不能这样活+原来的我+五环之歌,http://em.21dtv.com/songs/60148447.mkv +张信哲-过火,http://em.21dtv.com/songs/60148446.mkv +张信哲-爱如潮水,http://em.21dtv.com/songs/60148445.mkv +张信哲-宽容,http://em.21dtv.com/songs/60148444.mkv +张佳-好想再爱你,http://em.21dtv.com/songs/60148443.mkv +庞龙-幸福的两口子,http://em.21dtv.com/songs/60148442.mkv +庞龙-家在东北,http://em.21dtv.com/songs/60148441.mkv +庞龙-兄弟干杯,http://em.21dtv.com/songs/60148440.mkv +庞龙-你是我的玫瑰花,http://em.21dtv.com/songs/60148439.mkv +庄心妍-以后的以后,http://em.21dtv.com/songs/60148438.mkv +平安-回家,http://em.21dtv.com/songs/60148437.mkv +左小祖咒+钟欣潼-把悲伤留给自己,http://em.21dtv.com/songs/60148436.mkv +崔子格-卜卦,http://em.21dtv.com/songs/60148435.mkv +崔天琪-魔鬼中的天使,http://em.21dtv.com/songs/60148434.mkv +尚雯婕-小星星 THE STAR,http://em.21dtv.com/songs/60148433.mkv +小沈阳+范书铭+我想和你唱-大笑江湖,http://em.21dtv.com/songs/60148432.mkv +容祖儿+狄迪-挥着翅膀的女孩,http://em.21dtv.com/songs/60148431.mkv +安东阳+黑鸭子-情为何物,http://em.21dtv.com/songs/60148430.mkv +孟根花+阿宝-山丹丹花开红艳艳,http://em.21dtv.com/songs/60148429.mkv +姚伟涛-星晴,http://em.21dtv.com/songs/60148428.mkv +大海-想你想到心里头,http://em.21dtv.com/songs/60148427.mkv +唐宝-给我一首歌的时间,http://em.21dtv.com/songs/60148426.mkv +唐古-相思的苦,http://em.21dtv.com/songs/60148425.mkv +哎呀你是从哪儿冒出来的9号+请叫我斗牛士-好男人,http://em.21dtv.com/songs/60148424.mkv +周蕙-约定,http://em.21dtv.com/songs/60148423.mkv +周华健-朋友,http://em.21dtv.com/songs/60148422.mkv +吴克群-将军令+WE WILL ROCK YOU,http://em.21dtv.com/songs/60148421.mkv +叶世荣+黄贯中-大地,http://em.21dtv.com/songs/60148420.mkv +古振邦+陆蔚琳-SAY SOMETHING,http://em.21dtv.com/songs/60148419.mkv +卓依婷-电话情思,http://em.21dtv.com/songs/60148418.mkv +华语群星-光明,http://em.21dtv.com/songs/60148417.mkv +刘铭-平凡之路,http://em.21dtv.com/songs/60148416.mkv +刘铭-值得,http://em.21dtv.com/songs/60148415.mkv +刘铭-不再见,http://em.21dtv.com/songs/60148414.mkv +刘惜君-不期而遇,http://em.21dtv.com/songs/60148413.mkv +刘博宽-8+8等于8,http://em.21dtv.com/songs/60148412.mkv +凤凰传奇+董雪一家-月亮之上,http://em.21dtv.com/songs/60148411.mkv +凤凰传奇-开门大吉,http://em.21dtv.com/songs/60148410.mkv +凤凰传奇-中国味道,http://em.21dtv.com/songs/60148409.mkv +冷漠+杨小曼-我爱你胜过你爱我,http://em.21dtv.com/songs/60148408.mkv +冷漠+杜青-父母缘,http://em.21dtv.com/songs/60148407.mkv +冷漠-风雨漫天飞,http://em.21dtv.com/songs/60148406.mkv +冷漠-痴心的痴情,http://em.21dtv.com/songs/60148405.mkv +六人行组合-爱的主打歌,http://em.21dtv.com/songs/60148404.mkv +八三夭+任贤齐+CHI JAN-干啦干啦,http://em.21dtv.com/songs/60148403.mkv +任贤齐+侯磊-金曲串烧,http://em.21dtv.com/songs/60148402.mkv +任妙音-好想好想你,http://em.21dtv.com/songs/60148401.mkv +任军太-女人心,http://em.21dtv.com/songs/60148400.mkv +五月天-盛夏光年,http://em.21dtv.com/songs/60148399.mkv +于脖-下沙,http://em.21dtv.com/songs/60148398.mkv +万茜+音频怪物-为你成全,http://em.21dtv.com/songs/60148397.mkv +WONDER GIRLS-AIN'T NOBODY,http://em.21dtv.com/songs/60148396.mkv +VAV-ABC,http://em.21dtv.com/songs/60148395.mkv +SNH48-小苹果+GENTLEMAN,http://em.21dtv.com/songs/60148394.mkv +SILENTO-WATCH ME,http://em.21dtv.com/songs/60148393.mkv +S.H.E-痛快,http://em.21dtv.com/songs/60148392.mkv +S.H.E-恋人未满,http://em.21dtv.com/songs/60148391.mkv +S.H.E-中国话,http://em.21dtv.com/songs/60148390.mkv +S.H.E-不想长大,http://em.21dtv.com/songs/60148389.mkv +S.H.E-SUPER STAR,http://em.21dtv.com/songs/60148388.mkv +PSY-江南STYLE,http://em.21dtv.com/songs/60148387.mkv +IKON-存在,http://em.21dtv.com/songs/60148386.mkv +IKON-北京北京,http://em.21dtv.com/songs/60148385.mkv +HOPE-你不是真正的快乐,http://em.21dtv.com/songs/60148384.mkv +HEBE-寂寞寂寞就好,http://em.21dtv.com/songs/60148383.mkv +ELLA-坏女孩,http://em.21dtv.com/songs/60148382.mkv +CHLOEBABY+岳佳音-世上只有妈妈好2016,http://em.21dtv.com/songs/60148381.mkv +ANTON POWERS+PIXIE LOTT-BABY,http://em.21dtv.com/songs/60148380.mkv +A LIN-给我一个理由忘记,http://em.21dtv.com/songs/60148379.mkv +8090组合-外面的世界,http://em.21dtv.com/songs/60148378.mkv +MATTEO-C哩C哩,http://em.21dtv.com/songs/60148377.mkv +MATTEO-PANAMA,http://em.21dtv.com/songs/60148376.mkv +齐航-美丽乡村我的家,http://em.21dtv.com/songs/60148375.mkv +齐航-我,http://em.21dtv.com/songs/60148374.mkv +齐航-军人的使命,http://em.21dtv.com/songs/60148373.mkv +齐航-一生相伴,http://em.21dtv.com/songs/60148372.mkv +黄艺-熬冬,http://em.21dtv.com/songs/60148371.mkv +黄美珍-告诉我什么是爱,http://em.21dtv.com/songs/60148370.mkv +黄圣君+韦晴晴-骆越情歌,http://em.21dtv.com/songs/60148369.mkv +高安+邓滢滢-你是我的幸福,http://em.21dtv.com/songs/60148368.mkv +高安+张渼壹-今生爱上你,http://em.21dtv.com/songs/60148367.mkv +骆俊宇-记号,http://em.21dtv.com/songs/60148366.mkv +陆陟臣-微光,http://em.21dtv.com/songs/60148365.mkv +银悦西-朋友你今天笑了吗,http://em.21dtv.com/songs/60148364.mkv +钱韵多-幻像,http://em.21dtv.com/songs/60148363.mkv +那英-一眼千年,http://em.21dtv.com/songs/60148362.mkv +邝氏姐妹-老街,http://em.21dtv.com/songs/60148361.mkv +邓超予-家,http://em.21dtv.com/songs/60148360.mkv +邓文怡+邓力玮-追光者,http://em.21dtv.com/songs/60148359.mkv +邓峰-好好过,http://em.21dtv.com/songs/60148358.mkv +超音界+夏琳恩-裙下,http://em.21dtv.com/songs/60148357.mkv +赤世代-即刻救援,http://em.21dtv.com/songs/60148356.mkv +谭嘉仪-花森林,http://em.21dtv.com/songs/60148355.mkv +许艺娜-只要有你的地方,http://em.21dtv.com/songs/60148354.mkv +许明明-你是不是,http://em.21dtv.com/songs/60148353.mkv +苏子-谁的错,http://em.21dtv.com/songs/60148352.mkv +舒心怡-云,http://em.21dtv.com/songs/60148351.mkv +脆乐团-你说风景无法带走,http://em.21dtv.com/songs/60148350.mkv +聂诗-雪国,http://em.21dtv.com/songs/60148348.mkv +群星-噢湾又湾,http://em.21dtv.com/songs/60148347.mkv +神弦乐-面子,http://em.21dtv.com/songs/60148346.mkv +王晓瑾-别的小朋友都回家了,http://em.21dtv.com/songs/60148345.mkv +牟虹霓-同圆中国梦,http://em.21dtv.com/songs/60148344.mkv +潘美辰-早已习惯一个人,http://em.21dtv.com/songs/60148343.mkv +洛天依-维密你开场,http://em.21dtv.com/songs/60148342.mkv +毛不易-请记住我,http://em.21dtv.com/songs/60148341.mkv +林忆莲-血腥爱情故事,http://em.21dtv.com/songs/60148340.mkv +林俊杰-匆匆那年,http://em.21dtv.com/songs/60148339.mkv +杜德伟-你在我的爱情里,http://em.21dtv.com/songs/60148338.mkv +李荣浩-香水,http://em.21dtv.com/songs/60148337.mkv +李艾-久远的歌,http://em.21dtv.com/songs/60148336.mkv +徐大理+哈哲雷儿-你懂得,http://em.21dtv.com/songs/60148335.mkv +徐大理-阳光路上,http://em.21dtv.com/songs/60148334.mkv +徐大理-等待,http://em.21dtv.com/songs/60148333.mkv +徐大理-敢问路在何方,http://em.21dtv.com/songs/60148332.mkv +徐大理-我想大声告诉你,http://em.21dtv.com/songs/60148331.mkv +徐大理-我们结婚吧,http://em.21dtv.com/songs/60148330.mkv +徐大理-在那桃花盛开的地方,http://em.21dtv.com/songs/60148329.mkv +徐大理-举杯吧朋友,http://em.21dtv.com/songs/60148328.mkv +张靓颖-老伴,http://em.21dtv.com/songs/60148327.mkv +尹馨-高原蓝,http://em.21dtv.com/songs/60148326.mkv +尹馨-遇上你是我的缘,http://em.21dtv.com/songs/60148325.mkv +尹馨-美丽之路,http://em.21dtv.com/songs/60148324.mkv +尹馨-真情永远,http://em.21dtv.com/songs/60148323.mkv +尹馨-白发亲娘,http://em.21dtv.com/songs/60148322.mkv +尹馨-父亲的草原母亲的河,http://em.21dtv.com/songs/60148321.mkv +尹馨-望月,http://em.21dtv.com/songs/60148320.mkv +尹馨-拉骆驼的黑小伙,http://em.21dtv.com/songs/60148319.mkv +尹馨-报答,http://em.21dtv.com/songs/60148318.mkv +尹馨-我爱你中国,http://em.21dtv.com/songs/60148317.mkv +尹馨-我和我的祖国,http://em.21dtv.com/songs/60148316.mkv +尹馨-妻子,http://em.21dtv.com/songs/60148315.mkv +尹馨-好日子,http://em.21dtv.com/songs/60148314.mkv +尹馨-呼伦贝尔大草原,http://em.21dtv.com/songs/60148313.mkv +尹馨-今天是你的生日,http://em.21dtv.com/songs/60148312.mkv +尹亮-黄昏放牛,http://em.21dtv.com/songs/60148311.mkv +尹亮-你是我的眼,http://em.21dtv.com/songs/60148310.mkv +小青龙-为梦而战,http://em.21dtv.com/songs/60148309.mkv +孟鹏-一定要幸福,http://em.21dtv.com/songs/60148308.mkv +哈哲雷儿-美丽神奇的地方,http://em.21dtv.com/songs/60148307.mkv +哈哲雷儿-祖国你好,http://em.21dtv.com/songs/60148306.mkv +哈哲雷儿-我要去西藏,http://em.21dtv.com/songs/60148305.mkv +哈哲雷儿-康美之恋,http://em.21dtv.com/songs/60148304.mkv +哈哲雷儿-孝敬父母,http://em.21dtv.com/songs/60148303.mkv +哈哲雷儿-为了山里的孩子,http://em.21dtv.com/songs/60148302.mkv +吴雨霏-奉爱之名,http://em.21dtv.com/songs/60148301.mkv +吴芊兴-前世今生的缘分,http://em.21dtv.com/songs/60148300.mkv +吴芊兴-你是我最大的安慰,http://em.21dtv.com/songs/60148299.mkv +吴芊兴-习惯,http://em.21dtv.com/songs/60148298.mkv +吴欢-一别多年,http://em.21dtv.com/songs/60148297.mkv +刘璐-山风吹过,http://em.21dtv.com/songs/60148296.mkv +刘思涵-消失日,http://em.21dtv.com/songs/60148295.mkv +刘大成-不忘入党那一天,http://em.21dtv.com/songs/60148294.mkv +佚名-囧架架,http://em.21dtv.com/songs/60148293.mkv +任伯儒-后海,http://em.21dtv.com/songs/60148292.mkv +乔韶丽-勇敢向前方,http://em.21dtv.com/songs/60148291.mkv +龚爽+石倚洁-冰雪之约,http://em.21dtv.com/songs/60148290.mkv +黄鸿升-感觉对了,http://em.21dtv.com/songs/60148289.mkv +黄俊平-唱歌的小孩,http://em.21dtv.com/songs/60148288.mkv +魏如昀-美的你,http://em.21dtv.com/songs/60148287.mkv +高进-今遇兰,http://em.21dtv.com/songs/60148286.mkv +马文静-静听花开,http://em.21dtv.com/songs/60148285.mkv +顽童MJ116-2030,http://em.21dtv.com/songs/60148284.mkv +鞠丹阳-老张大哥,http://em.21dtv.com/songs/60148283.mkv +陶晶晶-一定要爱你,http://em.21dtv.com/songs/60148281.mkv +陈瑞-天上的星星是爱情的灯,http://em.21dtv.com/songs/60148280.mkv +闫泽-真经,http://em.21dtv.com/songs/60148279.mkv +钟子炫-拥抱你离去,http://em.21dtv.com/songs/60148278.mkv +连胜军-赶快离开,http://em.21dtv.com/songs/60148277.mkv +赵景春+于秋颖-我们是英雄的火箭军团,http://em.21dtv.com/songs/60148276.mkv +赵景春+于秋颖-愛的火焰,http://em.21dtv.com/songs/60148275.mkv +赵景春+于秋颖-五月赫哲乡,http://em.21dtv.com/songs/60148274.mkv +赵景春-晚风吹过哨塔,http://em.21dtv.com/songs/60148273.mkv +赵景春-故乡的月亮,http://em.21dtv.com/songs/60148272.mkv +赵景春-当兵的男儿走天涯,http://em.21dtv.com/songs/60148271.mkv +谭松韵-嘴角的甜,http://em.21dtv.com/songs/60148270.mkv +谢莉婷-心爱你甘知,http://em.21dtv.com/songs/60148269.mkv +苏勒亚其其格-健康走出来,http://em.21dtv.com/songs/60148268.mkv +肖豹-兄弟的泪,http://em.21dtv.com/songs/60148267.mkv +罗旭阳-与你白头,http://em.21dtv.com/songs/60148266.mkv +红卡-草原琪琪格,http://em.21dtv.com/songs/60148265.mkv +紫洛蓝-用爱将心偷,http://em.21dtv.com/songs/60148264.mkv +紫洛蓝-爱你那么多,http://em.21dtv.com/songs/60148263.mkv +紫洛蓝-时间久了就忘了,http://em.21dtv.com/songs/60148262.mkv +紫洛蓝-新女人花,http://em.21dtv.com/songs/60148261.mkv +紫洛蓝-我不想说再见,http://em.21dtv.com/songs/60148260.mkv +王霄阳-一棵树,http://em.21dtv.com/songs/60148259.mkv +王晰-你要忘了我,http://em.21dtv.com/songs/60148258.mkv +王旭-中国农民,http://em.21dtv.com/songs/60148257.mkv +王建荣-孤单的情人节下着伤心的雨,http://em.21dtv.com/songs/60148256.mkv +王建荣-女人没有错,http://em.21dtv.com/songs/60148255.mkv +王建荣-一朵回忆心上开,http://em.21dtv.com/songs/60148254.mkv +王峰-爱着她又不能伤害你,http://em.21dtv.com/songs/60148253.mkv +王峰-我爱上你的时候,http://em.21dtv.com/songs/60148252.mkv +王峰-初恋小镇,http://em.21dtv.com/songs/60148251.mkv +王品喆-一步之遥,http://em.21dtv.com/songs/60148250.mkv +王凯+喻越越-伟大梦想总会来临,http://em.21dtv.com/songs/60148249.mkv +熊七梅-留一个地址给我,http://em.21dtv.com/songs/60148248.mkv +满舒克-做我的猫,http://em.21dtv.com/songs/60148247.mkv +温奕心-疯语言,http://em.21dtv.com/songs/60148246.mkv +江都子-如果当初,http://em.21dtv.com/songs/60148245.mkv +毕建新-雨夜难眠,http://em.21dtv.com/songs/60148244.mkv +桃十五-我们就到这,http://em.21dtv.com/songs/60148243.mkv +杭娇-听心,http://em.21dtv.com/songs/60148242.mkv +李雨橙-星空与海,http://em.21dtv.com/songs/60148241.mkv +李鑫-洱海姑娘,http://em.21dtv.com/songs/60148240.mkv +李鑫-丫头,http://em.21dtv.com/songs/60148239.mkv +李自胜-都是爱情犯的错,http://em.21dtv.com/songs/60148238.mkv +朱莉叶-放开,http://em.21dtv.com/songs/60148237.mkv +望海高歌-飘雪的季节更想你,http://em.21dtv.com/songs/60148236.mkv +望海高歌-雪花飘飘,http://em.21dtv.com/songs/60148235.mkv +文静-距离,http://em.21dtv.com/songs/60148234.mkv +徐聪-戒不了情,http://em.21dtv.com/songs/60148233.mkv +张文成-亚麻色的信,http://em.21dtv.com/songs/60148231.mkv +张信哲+张艾嘉-永恒的印记,http://em.21dtv.com/songs/60148230.mkv +张也+张英席-到人民中去,http://em.21dtv.com/songs/60148229.mkv +廖昌永+张也-不忘初心,http://em.21dtv.com/songs/60148228.mkv +小溪-书画家乡,http://em.21dtv.com/songs/60148227.mkv +小旭GIRLS-明月行处,http://em.21dtv.com/songs/60148226.mkv +姚伟-让梦飞,http://em.21dtv.com/songs/60148225.mkv +妲己-陌生的城市,http://em.21dtv.com/songs/60148224.mkv +天佑+张勇-抬起头,http://em.21dtv.com/songs/60148223.mkv +夜猫组-驴子,http://em.21dtv.com/songs/60148222.mkv +周深-一缕执念,http://em.21dtv.com/songs/60148221.mkv +吴莫愁-乌烟瘴气,http://em.21dtv.com/songs/60148220.mkv +吴树雄-初恋情怀,http://em.21dtv.com/songs/60148219.mkv +叶子+黄超-身影,http://em.21dtv.com/songs/60148218.mkv +卢庚戌-当有一天我老了,http://em.21dtv.com/songs/60148216.mkv +南楚儿-宛在水中央,http://em.21dtv.com/songs/60148215.mkv +南楚儿-去留,http://em.21dtv.com/songs/60148214.mkv +刘子毅+张艺山-我带着故事你带着酒,http://em.21dtv.com/songs/60148213.mkv +刘子毅+张艺山-我带着故事你带着酒,http://em.21dtv.com/songs/60148212.mkv +凌波-心海爱河,http://em.21dtv.com/songs/60148211.mkv +余香凝-简单情歌,http://em.21dtv.com/songs/60148210.mkv +余振涛-爱上你却痛了我自己,http://em.21dtv.com/songs/60148209.mkv +于秋颖-赫哲花,http://em.21dtv.com/songs/60148208.mkv +于秋颖-梦北京,http://em.21dtv.com/songs/60148207.mkv +乐夏-关于流浪,http://em.21dtv.com/songs/60148206.mkv +七郎+黑面-感谢有你,http://em.21dtv.com/songs/60148205.mkv +七郎+邓咏家-恩爱甘甜,http://em.21dtv.com/songs/60148204.mkv +ROBYNN+KENDY-世界对我们,http://em.21dtv.com/songs/60148203.mkv +PSBOYZ-宝贝点进来,http://em.21dtv.com/songs/60148202.mkv +MELOMANCE-在不远的日子里,http://em.21dtv.com/songs/60148201.mkv +LILY AN-WHO KILLED U.N.OWEN,http://em.21dtv.com/songs/60148200.mkv +KQ先生-呼风又唤雨,http://em.21dtv.com/songs/60148199.mkv +FUYING+SAM-相思湖畔,http://em.21dtv.com/songs/60148198.mkv +FUYING+SAM-月光下,http://em.21dtv.com/songs/60148197.mkv +E GIRLS-DANCE WITH ME NOW,http://em.21dtv.com/songs/60148196.mkv +防弹少年团-BTS CYPHER PT 3 KILLER,http://em.21dtv.com/songs/60148195.mkv +彭丽媛-阳光路上,http://em.21dtv.com/songs/60148194.mkv +马博-梅花弄弄弄,http://em.21dtv.com/songs/60148193.mkv +龙千里-可惜没如果,http://em.21dtv.com/songs/60148192.mkv +黄大侠-英雄志,http://em.21dtv.com/songs/60148191.mkv +黄圣扉-POWER QUEEN,http://em.21dtv.com/songs/60148190.mkv +魏天宇+王赫霄-春江水暖鸭先知,http://em.21dtv.com/songs/60148189.mkv +高贵强-有妈就有家,http://em.21dtv.com/songs/60148188.mkv +马雨梵-有你爱我一生该多好,http://em.21dtv.com/songs/60148187.mkv +陈静雯-我怎么舍得让你走,http://em.21dtv.com/songs/60148186.mkv +陈明憙-天空说,http://em.21dtv.com/songs/60148185.mkv +陈冰-请你原谅我,http://em.21dtv.com/songs/60148184.mkv +陈佳一-感恩有你们,http://em.21dtv.com/songs/60148183.mkv +铁子-爱上一个爱吃醋的人,http://em.21dtv.com/songs/60148182.mkv +赛庸卓玛-阿爸,http://em.21dtv.com/songs/60148181.mkv +费玉清-失恋阵线联盟,http://em.21dtv.com/songs/60148180.mkv +蔡依林-幸福路上,http://em.21dtv.com/songs/60148179.mkv +莫文蔚-大鱼,http://em.21dtv.com/songs/60148178.mkv +范宽展+朱文芳-只要你还爱着我,http://em.21dtv.com/songs/60148177.mkv +肖文莉-有你相伴,http://em.21dtv.com/songs/60148176.mkv +耿斯汉-爱死你,http://em.21dtv.com/songs/60148175.mkv +素颜-你是我的解药,http://em.21dtv.com/songs/60148174.mkv +符泷飞-I'M OK,http://em.21dtv.com/songs/60148173.mkv +石雪峰-这个世界有你才有快乐,http://em.21dtv.com/songs/60148172.mkv +瞿伟-ANOTHER WORLD,http://em.21dtv.com/songs/60148171.mkv +王建荣-还要等多久,http://em.21dtv.com/songs/60148170.mkv +河图+音频怪物-元气封神,http://em.21dtv.com/songs/60148169.mkv +毛不易-项羽虞姬,http://em.21dtv.com/songs/60148168.mkv +樊凡-为你快乐,http://em.21dtv.com/songs/60148167.mkv +林京烨-父母,http://em.21dtv.com/songs/60148166.mkv +杨坤+苏诗丁-干了这杯波本,http://em.21dtv.com/songs/60148165.mkv +李荣浩-戒烟,http://em.21dtv.com/songs/60148164.mkv +李腾一-还世界一个笑脸,http://em.21dtv.com/songs/60148163.mkv +李梦佳-我不知道风是在哪一个方向吹,http://em.21dtv.com/songs/60148162.mkv +李千娜-命中注定,http://em.21dtv.com/songs/60148160.mkv +李凯馨-墨水笔与橡皮擦,http://em.21dtv.com/songs/60148159.mkv +李今龙-最后一次为你哭,http://em.21dtv.com/songs/60148158.mkv +李今龙-大公鸡,http://em.21dtv.com/songs/60148157.mkv +李亿珲-我的心里只有你,http://em.21dtv.com/songs/60148156.mkv +朴树-猎户星座,http://em.21dtv.com/songs/60148155.mkv +望海高歌-心有灵犀,http://em.21dtv.com/songs/60148154.mkv +曾子岚-空城,http://em.21dtv.com/songs/60148153.mkv +戴玉强-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60148152.mkv +徐骁男-有一种生物钟叫该出操了,http://em.21dtv.com/songs/60148151.mkv +张静-孤独有毒,http://em.21dtv.com/songs/60148150.mkv +张杰-星星的约会,http://em.21dtv.com/songs/60148149.mkv +张惠妹-偷故事的人,http://em.21dtv.com/songs/60148148.mkv +孙霄磊-天赐丹砂,http://em.21dtv.com/songs/60148147.mkv +孙伟雄-单身狗GO,http://em.21dtv.com/songs/60148146.mkv +周深-浅浅,http://em.21dtv.com/songs/60148145.mkv +叶秉桓-小半,http://em.21dtv.com/songs/60148144.mkv +南风-给你幸福一辈子,http://em.21dtv.com/songs/60148143.mkv +华晨宇-我很丑可是我很温柔,http://em.21dtv.com/songs/60148142.mkv +刘相松-千年等一回,http://em.21dtv.com/songs/60148141.mkv +关喆-更好的我们,http://em.21dtv.com/songs/60148140.mkv +侯旭-孤鸟,http://em.21dtv.com/songs/60148139.mkv +伊宁-情缘,http://em.21dtv.com/songs/60148138.mkv +VAST+HAZY-与浪之间,http://em.21dtv.com/songs/60148137.mkv +AT17-18,http://em.21dtv.com/songs/60148136.mkv +张杰+谢帝-闹啥子嘛闹,http://em.21dtv.com/songs/60148135.mkv +晓喜儿-缘分情缘,http://em.21dtv.com/songs/60148134.mkv +王建荣-听心,http://em.21dtv.com/songs/60148133.mkv +李朝+王圣锋-情话微甜,http://em.21dtv.com/songs/60148132.mkv +黄雅莉-我的光,http://em.21dtv.com/songs/60148131.mkv +黄致列-想念 想念你,http://em.21dtv.com/songs/60148130.mkv +黄少谷-祝你幸福,http://em.21dtv.com/songs/60148129.mkv +飞歌-念草原,http://em.21dtv.com/songs/60148128.mkv +顽GAME+口一口-大男人,http://em.21dtv.com/songs/60148127.mkv +雷深如-无神论,http://em.21dtv.com/songs/60148126.mkv +雨歌-逝去的爱情,http://em.21dtv.com/songs/60148125.mkv +雨歌-牵着我的手说你爱我,http://em.21dtv.com/songs/60148124.mkv +陈有娜-爱无讲道理,http://em.21dtv.com/songs/60148123.mkv +陈有娜-爱到疯狂,http://em.21dtv.com/songs/60148122.mkv +陈心蕊-追光者,http://em.21dtv.com/songs/60148121.mkv +金泫雅-MORNING GLORY,http://em.21dtv.com/songs/60148120.mkv +金泫雅-HOW'S THIS,http://em.21dtv.com/songs/60148119.mkv +金可儿-相思在,http://em.21dtv.com/songs/60148118.mkv +鄢青-郑州姑娘,http://em.21dtv.com/songs/60148117.mkv +郭少杰-我是好男儿,http://em.21dtv.com/songs/60148116.mkv +郭力-你知道我在想你吗,http://em.21dtv.com/songs/60148115.mkv +郭力-伤心一万个,http://em.21dtv.com/songs/60148114.mkv +郑兴-台北下的雨,http://em.21dtv.com/songs/60148113.mkv +郁可唯-外面的世界,http://em.21dtv.com/songs/60148112.mkv +邱小龙-万人迷,http://em.21dtv.com/songs/60148111.mkv +遥远-琵琶叙,http://em.21dtv.com/songs/60148110.mkv +遥远-梅花吟,http://em.21dtv.com/songs/60148109.mkv +遥远-丹桂飘香,http://em.21dtv.com/songs/60148108.mkv +轨道-陌上花,http://em.21dtv.com/songs/60148107.mkv +赵海军-牵挂,http://em.21dtv.com/songs/60148106.mkv +赵海军-感谢缘分让我们相遇,http://em.21dtv.com/songs/60148105.mkv +赛庸卓玛-吉祥如意,http://em.21dtv.com/songs/60148104.mkv +贺一航-忍者为王,http://em.21dtv.com/songs/60148103.mkv +谭维维+蒋瑶佳-夜空中最亮的星,http://em.21dtv.com/songs/60148102.mkv +谢莉婷-等你入梦,http://em.21dtv.com/songs/60148101.mkv +谢莉婷-今夜乎我醉,http://em.21dtv.com/songs/60148100.mkv +谢群+余琼莲+李有翠-女人心你伤不起,http://em.21dtv.com/songs/60148099.mkv +许霖-朋友多了路好走,http://em.21dtv.com/songs/60148098.mkv +许晓杰-瓜子吟,http://em.21dtv.com/songs/60148097.mkv +许志刚-建筑兄弟,http://em.21dtv.com/songs/60148096.mkv +许军-悬崖纵马,http://em.21dtv.com/songs/60148095.mkv +观聪-每当夜深人静,http://em.21dtv.com/songs/60148094.mkv +袁子衿-在资阳的冬天想你,http://em.21dtv.com/songs/60148093.mkv +蛇舞优优-娘子爱许仙,http://em.21dtv.com/songs/60148092.mkv +蛇舞优优-人与仙之恋,http://em.21dtv.com/songs/60148091.mkv +薛迅-凤凰山丁果湖,http://em.21dtv.com/songs/60148090.mkv +薛松-男人不能倒,http://em.21dtv.com/songs/60148089.mkv +薛松-勇往直前,http://em.21dtv.com/songs/60148088.mkv +薛松-兄弟不哭,http://em.21dtv.com/songs/60148087.mkv +薛优军-东方红,http://em.21dtv.com/songs/60148086.mkv +薛之谦-天后,http://em.21dtv.com/songs/60148085.mkv +蔡雯君+胡北清-一网深情,http://em.21dtv.com/songs/60148084.mkv +蔡红军-牵手相伴到永久,http://em.21dtv.com/songs/60148083.mkv +蔡秋凤-放乎你飞,http://em.21dtv.com/songs/60148082.mkv +蒙面合唱团-我的未来不是梦,http://em.21dtv.com/songs/60148081.mkv +蒋镇远-追逐梦想,http://em.21dtv.com/songs/60148080.mkv +董夏娟-我是大主播,http://em.21dtv.com/songs/60148079.mkv +董夏娟-我是个受伤的人,http://em.21dtv.com/songs/60148078.mkv +萧金丹-梦醒一场空,http://em.21dtv.com/songs/60148077.mkv +草屯囝仔-纯情贺尔蒙,http://em.21dtv.com/songs/60148076.mkv +老王乐队-补习班的门口高挂我的黑白照片,http://em.21dtv.com/songs/60148075.mkv +群星-青春无悔,http://em.21dtv.com/songs/60148074.mkv +群星-广东援疆队队,http://em.21dtv.com/songs/60148073.mkv +红草莓组合-摘草莓的姑娘,http://em.21dtv.com/songs/60148072.mkv +糯米-跟我一起飞,http://em.21dtv.com/songs/60148071.mkv +祁乐乐-越韵飘香,http://em.21dtv.com/songs/60148070.mkv +申勇在-借给你,http://em.21dtv.com/songs/60148069.mkv +王雨宸-星辰少年,http://em.21dtv.com/songs/60148068.mkv +王轼心-无奈的分离,http://em.21dtv.com/songs/60148067.mkv +王源-傻子,http://em.21dtv.com/songs/60148066.mkv +王月华+郭洪领-中国梦,http://em.21dtv.com/songs/60148065.mkv +王月华-中国梦,http://em.21dtv.com/songs/60148064.mkv +王晟涵+于猫儿-七年之痒,http://em.21dtv.com/songs/60148063.mkv +王明旭-科尔沁我的大草原,http://em.21dtv.com/songs/60148062.mkv +王心凌+吴克群-倒带,http://em.21dtv.com/songs/60148061.mkv +王心凌-爱呢,http://em.21dtv.com/songs/60148060.mkv +王心凌-孤独的嘉年华会,http://em.21dtv.com/songs/60148059.mkv +王心凌-别说,http://em.21dtv.com/songs/60148058.mkv +王心凌-SHINING,http://em.21dtv.com/songs/60148057.mkv +王心凌-MR HONEY,http://em.21dtv.com/songs/60148056.mkv +狂野草原-醉朦胧,http://em.21dtv.com/songs/60148055.mkv +燕妮-故乡,http://em.21dtv.com/songs/60148054.mkv +潘星臣-梦回大山,http://em.21dtv.com/songs/60148053.mkv +潘倩-一路芬芳,http://em.21dtv.com/songs/60148052.mkv +浩南-初次见面,http://em.21dtv.com/songs/60148051.mkv +洪大光+KISUM-HIP HOP是什么,http://em.21dtv.com/songs/60148050.mkv +洛桑次真-草原蝴蝶,http://em.21dtv.com/songs/60148049.mkv +汤非+王莉-天下为友,http://em.21dtv.com/songs/60148048.mkv +樊凡-普通朋友,http://em.21dtv.com/songs/60148047.mkv +柳佳佳-万人宠不如一人懂,http://em.21dtv.com/songs/60148046.mkv +林欣甫-两个人寂寞,http://em.21dtv.com/songs/60148045.mkv +林丹-别问,http://em.21dtv.com/songs/60148044.mkv +杨镜儒-一声叹息,http://em.21dtv.com/songs/60148043.mkv +杨梓文祺-我的快乐就是想你,http://em.21dtv.com/songs/60148042.mkv +李笛-十指相扣,http://em.21dtv.com/songs/60148041.mkv +李焕然-爱情密码,http://em.21dtv.com/songs/60148040.mkv +李梓萌-萌萌哒,http://em.21dtv.com/songs/60148039.mkv +李明哲-最后一句我爱你,http://em.21dtv.com/songs/60148038.mkv +李文亮-手机,http://em.21dtv.com/songs/60148037.mkv +李小明-自罚一杯,http://em.21dtv.com/songs/60148036.mkv +李建-城市之光,http://em.21dtv.com/songs/60148035.mkv +李代沫-你来 我在,http://em.21dtv.com/songs/60148034.mkv +李东+高飞-社会人,http://em.21dtv.com/songs/60148033.mkv +李东-社会我的歌,http://em.21dtv.com/songs/60148032.mkv +朱跃明-十月的阳光,http://em.21dtv.com/songs/60148031.mkv +朱涛-原来缘去,http://em.21dtv.com/songs/60148030.mkv +朱允儿-为什么不是你,http://em.21dtv.com/songs/60148029.mkv +朱主爱-阿娘喂,http://em.21dtv.com/songs/60148028.mkv +方皓玟-假使世界原来不像你预期,http://em.21dtv.com/songs/60148027.mkv +扎西邓珠-无缘的情人,http://em.21dtv.com/songs/60148025.mkv +彭佳慧-我想念我自己,http://em.21dtv.com/songs/60148024.mkv +张家成-最美女人,http://em.21dtv.com/songs/60148023.mkv +张凯-打仗时再喊我回来,http://em.21dtv.com/songs/60148022.mkv +庾澄庆-猴LONELY,http://em.21dtv.com/songs/60148021.mkv +常生-彭祖之歌,http://em.21dtv.com/songs/60148020.mkv +宿涵-垫底英雄,http://em.21dtv.com/songs/60148019.mkv +孟瑞-海鸥,http://em.21dtv.com/songs/60148018.mkv +孙楠-前生今世把手牵,http://em.21dtv.com/songs/60148017.mkv +子墨清漓-醉朦胧,http://em.21dtv.com/songs/60148016.mkv +子墨清漓-梦在烟雨的江南,http://em.21dtv.com/songs/60148015.mkv +子墨清漓-最美中国风,http://em.21dtv.com/songs/60148014.mkv +子墨清漓-曾经的爱再也不能相守,http://em.21dtv.com/songs/60148013.mkv +子墨清漓-别把解释当成借口,http://em.21dtv.com/songs/60148012.mkv +媛媛-寻梦故园,http://em.21dtv.com/songs/60148011.mkv +姜波-开缸酒,http://em.21dtv.com/songs/60148010.mkv +姚天成-我们不容易,http://em.21dtv.com/songs/60148009.mkv +天籁天-隐喻阡陌,http://em.21dtv.com/songs/60148008.mkv +天亮-呼和浩特的秋天,http://em.21dtv.com/songs/60148007.mkv +大哲-别伤女人心,http://em.21dtv.com/songs/60148006.mkv +夜猫组+李英宏-2017太空漫游,http://em.21dtv.com/songs/60148005.mkv +金志文-太傻,http://em.21dtv.com/songs/60148004.mkv +周晏伊-采,http://em.21dtv.com/songs/60148003.mkv +吴海燕-西口情,http://em.21dtv.com/songs/60148002.mkv +吴克群-I BELIEVE,http://em.21dtv.com/songs/60148001.mkv +吕蔷AMUYI-不像话,http://em.21dtv.com/songs/60148000.mkv +吕继宏-中国新时代,http://em.21dtv.com/songs/60147999.mkv +吕梓铷-草原行,http://em.21dtv.com/songs/60147998.mkv +吕梓铷-爱上草原汉,http://em.21dtv.com/songs/60147996.mkv +卓玛措-爱你的花,http://em.21dtv.com/songs/60147995.mkv +卓玛央宗-茶马古道,http://em.21dtv.com/songs/60147994.mkv +刘雅萍-请你相信我,http://em.21dtv.com/songs/60147993.mkv +刘雅萍-异乡十五暝,http://em.21dtv.com/songs/60147992.mkv +刘贵贤-最美的歌唱给妈妈,http://em.21dtv.com/songs/60147991.mkv +刘贵贤-想家的时候,http://em.21dtv.com/songs/60147990.mkv +刘贵贤-家和万事兴,http://em.21dtv.com/songs/60147989.mkv +刘漠-蓦然回首,http://em.21dtv.com/songs/60147988.mkv +刘曌-牡丹花开我等你来,http://em.21dtv.com/songs/60147987.mkv +刘和刚-家在远方,http://em.21dtv.com/songs/60147986.mkv +全宇成-MY HEART,http://em.21dtv.com/songs/60147985.mkv +依淼-美丽心情,http://em.21dtv.com/songs/60147984.mkv +依淼-我们,http://em.21dtv.com/songs/60147983.mkv +依淼-分手容易忘记难,http://em.21dtv.com/songs/60147982.mkv +任昌丁-我触犯的爱,http://em.21dtv.com/songs/60147980.mkv +三木科-敬,http://em.21dtv.com/songs/60147979.mkv +七郎+邓咏家-心在车站,http://em.21dtv.com/songs/60147977.mkv +七郎-闪酒第一名,http://em.21dtv.com/songs/60147976.mkv +ZAY HILFIGERRR+ZAYION MCCALL-JUJU ON THAT BEAT,http://em.21dtv.com/songs/60147975.mkv +USHER+FUTURE-RIVALS,http://em.21dtv.com/songs/60147974.mkv +TRAIN-PLAY THAT SONG,http://em.21dtv.com/songs/60147973.mkv +TINI-GREAT ESCAPE,http://em.21dtv.com/songs/60147972.mkv +THE WEEKND-PARTY MONSTER,http://em.21dtv.com/songs/60147971.mkv +PITBULL+FLO RIDA+LUNCHMONEY LEWIS-GREENLIGHT,http://em.21dtv.com/songs/60147970.mkv +MC阿哲-做自己,http://em.21dtv.com/songs/60147969.mkv +KQ先生-折腾吧别停下,http://em.21dtv.com/songs/60147968.mkv +JASON ALDEAN-A LITTLE MORE SUMMERTIME,http://em.21dtv.com/songs/60147967.mkv +G EAZY+CARNAGE+THIRTY RACK-GUALA,http://em.21dtv.com/songs/60147966.mkv +FUTURE+DRAKE-USED TO THIS,http://em.21dtv.com/songs/60147965.mkv +FLORIDA GEORGIA LINE+TIM MCGRAW-MAY WE ALL,http://em.21dtv.com/songs/60147964.mkv +FIFTH HARMONY-THAT'S MY GIRL,http://em.21dtv.com/songs/60147963.mkv +ELLIE GOULDING-STILL FALLING FOR YOU,http://em.21dtv.com/songs/60147962.mkv +DRAKE+RIHANNA-TOO GOOD,http://em.21dtv.com/songs/60147961.mkv +DAYA-SIT STILL LOOK PRETTY,http://em.21dtv.com/songs/60147959.mkv +CHRIS BROWN-PRIVACY,http://em.21dtv.com/songs/60147958.mkv +龙飞+西子-神仙伴侣,http://em.21dtv.com/songs/60147945.mkv +龙梅子+徐子崴-美好生活,http://em.21dtv.com/songs/60147944.mkv +龙梅子-高速公路随想曲,http://em.21dtv.com/songs/60147943.mkv +龙梅子-荷塘月色,http://em.21dtv.com/songs/60147942.mkv +龙奔+张怡诺-你的情融化了我的心,http://em.21dtv.com/songs/60147941.mkv +龙奔-人到中年,http://em.21dtv.com/songs/60147940.mkv +齐晨-桂花香,http://em.21dtv.com/songs/60147939.mkv +黎毅-胭脂醉,http://em.21dtv.com/songs/60147938.mkv +黎可辰-平民,http://em.21dtv.com/songs/60147937.mkv +黄莺莺-云河,http://em.21dtv.com/songs/60147935.mkv +黄纪福-我在他乡想着你,http://em.21dtv.com/songs/60147934.mkv +黄渤-带你一起丢手绢,http://em.21dtv.com/songs/60147933.mkv +黄文洁-OH I DO,http://em.21dtv.com/songs/60147932.mkv +黄少谷+丁当-光合作用,http://em.21dtv.com/songs/60147930.mkv +黄安-归来,http://em.21dtv.com/songs/60147928.mkv +鳄鱼乐团-黑猫,http://em.21dtv.com/songs/60147926.mkv +鳄鱼乐团-FALL,http://em.21dtv.com/songs/60147925.mkv +魏虹宁+郑立影-梦中的西藏,http://em.21dtv.com/songs/60147924.mkv +魏哲鸣-假装计较,http://em.21dtv.com/songs/60147923.mkv +高安-想你总是很甜蜜,http://em.21dtv.com/songs/60147922.mkv +高夫-想你,http://em.21dtv.com/songs/60147921.mkv +高丽云-我把微信发给你,http://em.21dtv.com/songs/60147920.mkv +马智宇-在你身边,http://em.21dtv.com/songs/60147919.mkv +马常宝+李德林+大憨+二憨+陈三哥-老男孩第二季,http://em.21dtv.com/songs/60147917.mkv +马常宝-梅兰梅兰,http://em.21dtv.com/songs/60147916.mkv +马云+王菲-清风扬,http://em.21dtv.com/songs/60147915.mkv +饶封-玫瑰姑娘,http://em.21dtv.com/songs/60147914.mkv +风语-爱之所以爱,http://em.21dtv.com/songs/60147913.mkv +风语-心结谁来解,http://em.21dtv.com/songs/60147912.mkv +风语-叹流年,http://em.21dtv.com/songs/60147911.mkv +风小筝-别丢下我不管,http://em.21dtv.com/songs/60147910.mkv +韩紫灵-草原我的天堂,http://em.21dtv.com/songs/60147909.mkv +韩紫灵-祝福送给你们,http://em.21dtv.com/songs/60147908.mkv +韩紫灵-传说,http://em.21dtv.com/songs/60147907.mkv +韩磊-天下长安,http://em.21dtv.com/songs/60147906.mkv +韩勇+吴莫愁-咖啡鬼,http://em.21dtv.com/songs/60147905.mkv +韩俊林-像我这样爱茶的人,http://em.21dtv.com/songs/60147904.mkv +韩世辉-海边的城,http://em.21dtv.com/songs/60147903.mkv +韦琪-月儿美,http://em.21dtv.com/songs/60147902.mkv +霍尊-花心,http://em.21dtv.com/songs/60147901.mkv +雷艳-姊妹梳妆,http://em.21dtv.com/songs/60147900.mkv +雨柔-前世今生缘,http://em.21dtv.com/songs/60147899.mkv +雨中百合-再说一句我爱你,http://em.21dtv.com/songs/60147898.mkv +陶大帅-习惯了一个人,http://em.21dtv.com/songs/60147897.mkv +陈鹏-2017只想再见你,http://em.21dtv.com/songs/60147896.mkv +陈雪凝-白山茶,http://em.21dtv.com/songs/60147895.mkv +陈雅森+杨梓文祺-我的快乐就是想你,http://em.21dtv.com/songs/60147894.mkv +陈雅森+任盈盈-两个人,http://em.21dtv.com/songs/60147893.mkv +陈雅森-月醉,http://em.21dtv.com/songs/60147892.mkv +陈雅森-伴你一生,http://em.21dtv.com/songs/60147891.mkv +陈筱棠-我的广东我的家,http://em.21dtv.com/songs/60147890.mkv +陈皓宸-要死要活,http://em.21dtv.com/songs/60147889.mkv +[Group] +groupName=十六万歌曲MV等 - 119 +陈瑞-见字如面,http://em.21dtv.com/songs/60147888.mkv +陈瑞-瞬间的风,http://em.21dtv.com/songs/60147887.mkv +陈瑞-夜来香,http://em.21dtv.com/songs/60147886.mkv +陈牧耶-王者同行,http://em.21dtv.com/songs/60147885.mkv +陈洁仪+行走的鹿由器-至少还有你,http://em.21dtv.com/songs/60147884.mkv +陈洁仪-爱不爱我,http://em.21dtv.com/songs/60147883.mkv +陈梓童+我要上电视-让我一次爱个够,http://em.21dtv.com/songs/60147882.mkv +陈梓童-流浪记,http://em.21dtv.com/songs/60147881.mkv +陈有娜-爱情帮帮忙,http://em.21dtv.com/songs/60147880.mkv +陈有娜-心情咖啡,http://em.21dtv.com/songs/60147879.mkv +陈明+独自绽放的树-如果有来生,http://em.21dtv.com/songs/60147877.mkv +陈明-终身美丽,http://em.21dtv.com/songs/60147876.mkv +陈明-再见的另一面,http://em.21dtv.com/songs/60147875.mkv +陈文浩-中国说,http://em.21dtv.com/songs/60147874.mkv +陈慧娴+凌晨四点的北京-不要对他说,http://em.21dtv.com/songs/60147873.mkv +陈慧娴-你怎么舍得我难过,http://em.21dtv.com/songs/60147872.mkv +陈惠-秋夜梦思,http://em.21dtv.com/songs/60147871.mkv +陈思安-痴情无路用,http://em.21dtv.com/songs/60147870.mkv +陈思安-爱恨绵绵,http://em.21dtv.com/songs/60147869.mkv +陈思安-枕头香,http://em.21dtv.com/songs/60147868.mkv +陈思安-寂寞的酒,http://em.21dtv.com/songs/60147867.mkv +陈思安-寂寞情歌,http://em.21dtv.com/songs/60147866.mkv +陈思安-女人的眼泪,http://em.21dtv.com/songs/60147865.mkv +陈思安-伤心的温柔,http://em.21dtv.com/songs/60147864.mkv +陈思安-一支番仔火,http://em.21dtv.com/songs/60147863.mkv +陈心蕊-古歌,http://em.21dtv.com/songs/60147862.mkv +陈心蕊-刚好遇见你,http://em.21dtv.com/songs/60147861.mkv +陈彦宏-马蓝花,http://em.21dtv.com/songs/60147860.mkv +陈小春-贪玩传世,http://em.21dtv.com/songs/60147859.mkv +陈宣梦-别只丢下我,http://em.21dtv.com/songs/60147858.mkv +陈宏庆-红尘情缘,http://em.21dtv.com/songs/60147857.mkv +陈宏庆-佛愿,http://em.21dtv.com/songs/60147856.mkv +陈奕迅-之外,http://em.21dtv.com/songs/60147855.mkv +陈奕迅+叶晓粤-娱乐天空,http://em.21dtv.com/songs/60147854.mkv +陈奕夫-书写寂寞,http://em.21dtv.com/songs/60147853.mkv +陈卓璇-爱笑的眼睛,http://em.21dtv.com/songs/60147852.mkv +陈军良-傻爱,http://em.21dtv.com/songs/60147851.mkv +陈健-最近你过得好吗,http://em.21dtv.com/songs/60147850.mkv +陈健-回望梦想,http://em.21dtv.com/songs/60147849.mkv +陈伟伦乐队-如梦令,http://em.21dtv.com/songs/60147848.mkv +陈予新+黄宥杰-SAY CHEESE,http://em.21dtv.com/songs/60147847.mkv +陆齐-贵州美,http://em.21dtv.com/songs/60147846.mkv +陆齐-曾经的幸福,http://em.21dtv.com/songs/60147845.mkv +阿鲁阿卓-消愁,http://em.21dtv.com/songs/60147844.mkv +阿肆+郭采洁-世界上的另一个我,http://em.21dtv.com/songs/60147843.mkv +阿枫-蛇蝎心肠,http://em.21dtv.com/songs/60147842.mkv +阿枫-红瑞力量,http://em.21dtv.com/songs/60147841.mkv +阿枫-爱上了谁,http://em.21dtv.com/songs/60147840.mkv +阿枫-最美姑娘,http://em.21dtv.com/songs/60147839.mkv +阿枫-宝贝,http://em.21dtv.com/songs/60147838.mkv +阿枫-可怜天下父母心,http://em.21dtv.com/songs/60147837.mkv +阿木古楞-寻,http://em.21dtv.com/songs/60147836.mkv +阿影-秋天的歌谣,http://em.21dtv.com/songs/60147835.mkv +阿兰-美人谷,http://em.21dtv.com/songs/60147834.mkv +阿依诺儿-轻风细雨说爱你,http://em.21dtv.com/songs/60147833.mkv +阎奕格-阎罗王,http://em.21dtv.com/songs/60147832.mkv +阎奕格-我有我自己,http://em.21dtv.com/songs/60147831.mkv +闫飞龙+杨小东-为我撑起一片天,http://em.21dtv.com/songs/60147830.mkv +闫子西-老李,http://em.21dtv.com/songs/60147829.mkv +长春小飞-朋友圈之歌,http://em.21dtv.com/songs/60147828.mkv +铭子+赵毛毛-最美的遇见,http://em.21dtv.com/songs/60147827.mkv +铁齿铜牙纪先生+这个诗人有点冷-不要说话,http://em.21dtv.com/songs/60147826.mkv +铁树兰乐队-告别完再聚,http://em.21dtv.com/songs/60147825.mkv +钱博文-青春之梦,http://em.21dtv.com/songs/60147824.mkv +钟茌-信仰的图腾,http://em.21dtv.com/songs/60147823.mkv +金钰儿-在最美的时光遇见你,http://em.21dtv.com/songs/60147822.mkv +金贵晟-红颜,http://em.21dtv.com/songs/60147821.mkv +金志文-妹子,http://em.21dtv.com/songs/60147820.mkv +金小鱼-趁年轻让我们疯狂,http://em.21dtv.com/songs/60147819.mkv +金久哲-你的借口是我的伤口,http://em.21dtv.com/songs/60147818.mkv +郭飞宏-逝去的爱情和青春,http://em.21dtv.com/songs/60147817.mkv +郭沁-但愿人长久,http://em.21dtv.com/songs/60147816.mkv +郭沁-传奇,http://em.21dtv.com/songs/60147815.mkv +郭欣桐-态度,http://em.21dtv.com/songs/60147814.mkv +郭少杰-醉长安,http://em.21dtv.com/songs/60147813.mkv +郝月华-一个人的感受,http://em.21dtv.com/songs/60147812.mkv +郝婉彤-摩西扑克牌,http://em.21dtv.com/songs/60147811.mkv +郑融+周柏豪-一事无成,http://em.21dtv.com/songs/60147810.mkv +郑紫焓-与人为善,http://em.21dtv.com/songs/60147809.mkv +郑欣宜-你是什么时候开始不爱我的,http://em.21dtv.com/songs/60147808.mkv +郑智化-水手,http://em.21dtv.com/songs/60147806.mkv +郑敬基-说不尽情话,http://em.21dtv.com/songs/60147805.mkv +郑志立-听陈奕迅的歌,http://em.21dtv.com/songs/60147804.mkv +郑延-老婆是否能回头,http://em.21dtv.com/songs/60147803.mkv +郑俊海+姚可儿-越跑越绚丽,http://em.21dtv.com/songs/60147802.mkv +郑俊海+姚可儿-我们在一起,http://em.21dtv.com/songs/60147801.mkv +郑俊海-相约恒久,http://em.21dtv.com/songs/60147800.mkv +郑俊海-唱响维多利亚,http://em.21dtv.com/songs/60147799.mkv +郑伊健+林晓峰+谢天华-热血燃烧,http://em.21dtv.com/songs/60147798.mkv +郑伊健+林晓峰+谢天华-友情岁月,http://em.21dtv.com/songs/60147797.mkv +郑伊健-虫儿飞,http://em.21dtv.com/songs/60147796.mkv +邹亚莉-大德清明,http://em.21dtv.com/songs/60147792.mkv +邹亚莉-古城追梦,http://em.21dtv.com/songs/60147791.mkv +邱锋泽+黄伟晋-断讯,http://em.21dtv.com/songs/60147790.mkv +那英+郭沁-三生三世十里桃花,http://em.21dtv.com/songs/60147789.mkv +那吾克热-让暴风雨来得更猛烈些吧,http://em.21dtv.com/songs/60147788.mkv +邓灵-谢谢你的玫瑰,http://em.21dtv.com/songs/60147786.mkv +邓海-这个秋天欠了谁,http://em.21dtv.com/songs/60147785.mkv +邓月平-女神经,http://em.21dtv.com/songs/60147784.mkv +逊克海洋-爱尽千帆,http://em.21dtv.com/songs/60147783.mkv +达达子-打花牌,http://em.21dtv.com/songs/60147782.mkv +达摩泽仁-梦在草原,http://em.21dtv.com/songs/60147781.mkv +辉星+HASH SWAN-AROMA,http://em.21dtv.com/songs/60147780.mkv +辉子-BABY DON'T GO,http://em.21dtv.com/songs/60147779.mkv +赵鑫-找个爱你的人结婚吧,http://em.21dtv.com/songs/60147778.mkv +赵鑫-原来我还在乎你,http://em.21dtv.com/songs/60147777.mkv +赵珥希-榜样,http://em.21dtv.com/songs/60147776.mkv +赵清-七仙湖情缘,http://em.21dtv.com/songs/60147775.mkv +赵涛-乐生活,http://em.21dtv.com/songs/60147774.mkv +赵星诺+黄蕊-等你在敖包,http://em.21dtv.com/songs/60147773.mkv +赵星诺-经过毡房,http://em.21dtv.com/songs/60147772.mkv +赵斌-我的青春不见了,http://em.21dtv.com/songs/60147771.mkv +赵志强+郑俊海-华人当志强,http://em.21dtv.com/songs/60147770.mkv +赵广宇-是否对我真的爱过,http://em.21dtv.com/songs/60147769.mkv +赵小炮-兄弟我懂你,http://em.21dtv.com/songs/60147768.mkv +赵小兵-淡定人生路,http://em.21dtv.com/songs/60147767.mkv +赵奕欢-悲伤小夜曲,http://em.21dtv.com/songs/60147766.mkv +赵传-深海,http://em.21dtv.com/songs/60147765.mkv +贾富营-游子归,http://em.21dtv.com/songs/60147764.mkv +贺敬轩-说好的童话,http://em.21dtv.com/songs/60147763.mkv +贺娜-我的老爸老妈,http://em.21dtv.com/songs/60147762.mkv +贺娜-大爱无边,http://em.21dtv.com/songs/60147761.mkv +贺一航-平凡先生,http://em.21dtv.com/songs/60147760.mkv +费玉清-成都,http://em.21dtv.com/songs/60147759.mkv +费玉清-在此刻,http://em.21dtv.com/songs/60147758.mkv +贲小伟-人生短短几十年,http://em.21dtv.com/songs/60147757.mkv +贯诗钦-暖风,http://em.21dtv.com/songs/60147756.mkv +谭臻臻-等下一季花开,http://em.21dtv.com/songs/60147754.mkv +谭臻臻-你也会想我吗,http://em.21dtv.com/songs/60147753.mkv +谭嘉惠-回忆杀,http://em.21dtv.com/songs/60147752.mkv +谭嘉仪-小堡垒,http://em.21dtv.com/songs/60147751.mkv +谢金晶-阿嬷,http://em.21dtv.com/songs/60147749.mkv +谢金晶-放心,http://em.21dtv.com/songs/60147748.mkv +谢金晶-我又想你了,http://em.21dtv.com/songs/60147747.mkv +谢金晶-幸福的代志,http://em.21dtv.com/songs/60147746.mkv +谢金晶-小误会,http://em.21dtv.com/songs/60147745.mkv +谢金晶-对阮爱一半,http://em.21dtv.com/songs/60147744.mkv +谢金晶-为你付出,http://em.21dtv.com/songs/60147743.mkv +谢金晶-一生最爱你,http://em.21dtv.com/songs/60147742.mkv +谢峥+ZAMA+阿男-开什么玩笑,http://em.21dtv.com/songs/60147741.mkv +谢宇轩-再不遇见,http://em.21dtv.com/songs/60147740.mkv +谢作健-快乐乒乓,http://em.21dtv.com/songs/60147739.mkv +许魏洲-IT'S ALWAYS YOU,http://em.21dtv.com/songs/60147738.mkv +许飞-时光遐想,http://em.21dtv.com/songs/60147737.mkv +许靖韵-小背心,http://em.21dtv.com/songs/60147736.mkv +许茹芸-让我好好看看你,http://em.21dtv.com/songs/60147735.mkv +许廷铿-原来我可以哭,http://em.21dtv.com/songs/60147734.mkv +许任一-重来,http://em.21dtv.com/songs/60147733.mkv +许书豪-内心戏,http://em.21dtv.com/songs/60147732.mkv +许一鸣-想你想疯了,http://em.21dtv.com/songs/60147731.mkv +薛枫-一弯月亮,http://em.21dtv.com/songs/60147729.mkv +薛凯琪+方大同-天生一对,http://em.21dtv.com/songs/60147728.mkv +薛之谦-像风一样,http://em.21dtv.com/songs/60147727.mkv +蔡秋凤-走不知路,http://em.21dtv.com/songs/60147726.mkv +蔡文程+李春丽-为缴伤悲,http://em.21dtv.com/songs/60147725.mkv +蔡恩慧-萤火虫,http://em.21dtv.com/songs/60147724.mkv +蔡国庆+李梦佳-你是人间四月天,http://em.21dtv.com/songs/60147723.mkv +蔡依林+宋念宇-倒带,http://em.21dtv.com/songs/60147722.mkv +蓝金红-过路情,http://em.21dtv.com/songs/60147721.mkv +蒋敦豪-加德满都的风铃,http://em.21dtv.com/songs/60147720.mkv +蒋大为+接厚芳-古城集安,http://em.21dtv.com/songs/60147719.mkv +葳宣+葳安-喜欢你,http://em.21dtv.com/songs/60147718.mkv +葫芦晓峰-心中的草原心爱的姑娘,http://em.21dtv.com/songs/60147717.mkv +董真-我们的甜,http://em.21dtv.com/songs/60147716.mkv +董姿彦-掌声响起,http://em.21dtv.com/songs/60147715.mkv +董万基-一颗中国心,http://em.21dtv.com/songs/60147714.mkv +萧煌奇-无声的约束,http://em.21dtv.com/songs/60147713.mkv +萧煌奇-心爱冤仇人,http://em.21dtv.com/songs/60147712.mkv +菊梓乔-下雨,http://em.21dtv.com/songs/60147711.mkv +莫斯满-你是我永远的爱恋,http://em.21dtv.com/songs/60147710.mkv +莫文蔚-鲁冰花,http://em.21dtv.com/songs/60147709.mkv +莫文蔚-管他什么音乐,http://em.21dtv.com/songs/60147708.mkv +药小云-我在奇奇里,http://em.21dtv.com/songs/60147707.mkv +草帽姐-戴着草帽唱山歌,http://em.21dtv.com/songs/60147706.mkv +草屯囝仔+臭屁婴仔-扛坝子,http://em.21dtv.com/songs/60147705.mkv +苏醒-ALLEN请注意,http://em.21dtv.com/songs/60147704.mkv +苏新华-愿你,http://em.21dtv.com/songs/60147703.mkv +苏新华-听风说你,http://em.21dtv.com/songs/60147702.mkv +苏三-多想,http://em.21dtv.com/songs/60147701.mkv +苏一晋-雕像,http://em.21dtv.com/songs/60147700.mkv +花僮-放逐之刃,http://em.21dtv.com/songs/60147699.mkv +艾畅-自欺欺人,http://em.21dtv.com/songs/60147697.mkv +艾怡良-我想我挺好的,http://em.21dtv.com/songs/60147696.mkv +艺龙-兄弟情如酒,http://em.21dtv.com/songs/60147695.mkv +舒涵-别说你还会想念我,http://em.21dtv.com/songs/60147694.mkv +致远-爱你终是痛,http://em.21dtv.com/songs/60147693.mkv +腾格尔-跟着你到天边,http://em.21dtv.com/songs/60147692.mkv +胡鸿钧-遥不可及,http://em.21dtv.com/songs/60147691.mkv +胡鸿钧-到此一游,http://em.21dtv.com/songs/60147690.mkv +胡铁-别离,http://em.21dtv.com/songs/60147689.mkv +胡译心-做我的太阳,http://em.21dtv.com/songs/60147688.mkv +胡维州-不散的友情,http://em.21dtv.com/songs/60147687.mkv +胡琳-一天也不能少,http://em.21dtv.com/songs/60147686.mkv +胡灵-爱不枉,http://em.21dtv.com/songs/60147685.mkv +胡歌-盛开,http://em.21dtv.com/songs/60147684.mkv +胡杨林-不再不见,http://em.21dtv.com/songs/60147682.mkv +胡月+蒋舟-撸起袖子加油干,http://em.21dtv.com/songs/60147681.mkv +胡彦斌-慢慢,http://em.21dtv.com/songs/60147680.mkv +胡利基-影子,http://em.21dtv.com/songs/60147679.mkv +胡一天-是梦吧,http://em.21dtv.com/songs/60147678.mkv +肖雪-谛听,http://em.21dtv.com/songs/60147677.mkv +肖阳-中华五千年,http://em.21dtv.com/songs/60147676.mkv +肖锦美-旗袍女子,http://em.21dtv.com/songs/60147675.mkv +肖迪-你的样子,http://em.21dtv.com/songs/60147674.mkv +肖潇-醉秋,http://em.21dtv.com/songs/60147673.mkv +肖凯晔-他不爱我,http://em.21dtv.com/songs/60147672.mkv +肖丫丫-成长,http://em.21dtv.com/songs/60147671.mkv +肖丫丫-守望日出又日落,http://em.21dtv.com/songs/60147670.mkv +肖丫丫-一束光,http://em.21dtv.com/songs/60147669.mkv +耿斯汉-再也没有,http://em.21dtv.com/songs/60147668.mkv +耿嘉涓渼-蝴蝶不流泪,http://em.21dtv.com/songs/60147667.mkv +老猫-水手,http://em.21dtv.com/songs/60147666.mkv +翁大涵-梦都大街,http://em.21dtv.com/songs/60147665.mkv +羽泉-我的祖国,http://em.21dtv.com/songs/60147664.mkv +羽泉-恋曲1980,http://em.21dtv.com/songs/60147663.mkv +群星-爱有使命,http://em.21dtv.com/songs/60147662.mkv +群星-我爱你中国,http://em.21dtv.com/songs/60147661.mkv +群星-小梦想,http://em.21dtv.com/songs/60147660.mkv +群星-宝贝的新朋友,http://em.21dtv.com/songs/60147659.mkv +群星-大人物,http://em.21dtv.com/songs/60147658.mkv +群星-味道+虹之间+最炫民族风+CRAZY+趁年轻,http://em.21dtv.com/songs/60147657.mkv +群星-同一屋檐下,http://em.21dtv.com/songs/60147656.mkv +群星-一家人,http://em.21dtv.com/songs/60147655.mkv +羔羊-我爱我的羔老庄,http://em.21dtv.com/songs/60147654.mkv +羔羊-带我回草原吧,http://em.21dtv.com/songs/60147653.mkv +罗艺歆-SAY LOVE YOU,http://em.21dtv.com/songs/60147652.mkv +罗美丽-只为你心疼,http://em.21dtv.com/songs/60147651.mkv +罗汉-两岸共圆中国梦,http://em.21dtv.com/songs/60147650.mkv +罗志祥+恺乐+鼓鼓-三人行,http://em.21dtv.com/songs/60147649.mkv +罗娟-如果没如果,http://em.21dtv.com/songs/60147648.mkv +罗娟-党务红辣椒,http://em.21dtv.com/songs/60147647.mkv +红陌-又见雪花飞,http://em.21dtv.com/songs/60147646.mkv +红袖-牵魂的爱,http://em.21dtv.com/songs/60147645.mkv +红袖-爱你在心间,http://em.21dtv.com/songs/60147644.mkv +红袖-我愿今生爱上你,http://em.21dtv.com/songs/60147643.mkv +红袖-彩云中的爱,http://em.21dtv.com/songs/60147642.mkv +红袖-今天我要嫁人啦,http://em.21dtv.com/songs/60147641.mkv +红花会PG ONE-PENTAKILL,http://em.21dtv.com/songs/60147640.mkv +红秀-曾经的爱河,http://em.21dtv.com/songs/60147639.mkv +紫洛蓝-爱情在哪里居住,http://em.21dtv.com/songs/60147638.mkv +紫洛蓝-感动不了你,http://em.21dtv.com/songs/60147637.mkv +索朗扎西-江南姑娘,http://em.21dtv.com/songs/60147636.mkv +糖果树-浪漫协奏曲,http://em.21dtv.com/songs/60147635.mkv +糖果树-你是我的晴天,http://em.21dtv.com/songs/60147634.mkv +糖妹-一起不一起,http://em.21dtv.com/songs/60147633.mkv +米雪-无尾鱼,http://em.21dtv.com/songs/60147632.mkv +米卫强-喊一声塞罕坝,http://em.21dtv.com/songs/60147631.mkv +箱子君-因为是你才忘不掉,http://em.21dtv.com/songs/60147630.mkv +简兮-你早干嘛去了,http://em.21dtv.com/songs/60147629.mkv +穆合甫拉-被遗忘的时光,http://em.21dtv.com/songs/60147628.mkv +程响-等你千年,http://em.21dtv.com/songs/60147627.mkv +秦宇子-CRAZY,http://em.21dtv.com/songs/60147626.mkv +秦勇-为爱寻找,http://em.21dtv.com/songs/60147625.mkv +秋裤大叔-淡定人生路,http://em.21dtv.com/songs/60147624.mkv +秋水-一场痴心一场醉,http://em.21dtv.com/songs/60147623.mkv +秀才-你给的不是爱情,http://em.21dtv.com/songs/60147622.mkv +神马乐团-只要是你,http://em.21dtv.com/songs/60147621.mkv +石梅+张轩铭-错过雨花石的情人,http://em.21dtv.com/songs/60147620.mkv +石头-撩,http://em.21dtv.com/songs/60147619.mkv +石咏莉-再见一面,http://em.21dtv.com/songs/60147618.mkv +瞿英-高山有好水,http://em.21dtv.com/songs/60147617.mkv +瞿英-看透爱情看透你,http://em.21dtv.com/songs/60147616.mkv +瞿英-爱的是谁,http://em.21dtv.com/songs/60147615.mkv +瞿英-歌在飞,http://em.21dtv.com/songs/60147614.mkv +瞿英-拉萨情歌,http://em.21dtv.com/songs/60147613.mkv +白雪-人人尽说江南好,http://em.21dtv.com/songs/60147612.mkv +白杏薇-落花满天,http://em.21dtv.com/songs/60147611.mkv +申智珉-HALLELUJAH,http://em.21dtv.com/songs/60147610.mkv +王馨-爱着你想着你,http://em.21dtv.com/songs/60147609.mkv +王闯-魅力抚顺,http://em.21dtv.com/songs/60147608.mkv +王金金-不过是一句分手吗,http://em.21dtv.com/songs/60147606.mkv +王诗安+王蕾+方大同-明天,http://em.21dtv.com/songs/60147605.mkv +王蓉-大不了AA,http://em.21dtv.com/songs/60147603.mkv +王艳薇-无色忧伤,http://em.21dtv.com/songs/60147601.mkv +王艳薇-WHO,http://em.21dtv.com/songs/60147600.mkv +王羽泽-北京离开你很难,http://em.21dtv.com/songs/60147599.mkv +王立业-追寻梦想,http://em.21dtv.com/songs/60147598.mkv +王百合+虎牙哥-阳春三月桃花红,http://em.21dtv.com/songs/60147597.mkv +王琥-无处可逃,http://em.21dtv.com/songs/60147596.mkv +王佩译-第六感的狂想,http://em.21dtv.com/songs/60147595.mkv +王爱华-爱的心窗,http://em.21dtv.com/songs/60147594.mkv +王爱华-冰凌花,http://em.21dtv.com/songs/60147593.mkv +王爱华-你是我今生最美的情书,http://em.21dtv.com/songs/60147592.mkv +王海滨-飞吧我的梦,http://em.21dtv.com/songs/60147591.mkv +王洋-大美新疆,http://em.21dtv.com/songs/60147590.mkv +王智寒-今生陪你一起走,http://em.21dtv.com/songs/60147589.mkv +王晟涵-鸟笼,http://em.21dtv.com/songs/60147588.mkv +王旭-青春,http://em.21dtv.com/songs/60147587.mkv +王旭-真的幸福,http://em.21dtv.com/songs/60147586.mkv +王心凌-给我多一些,http://em.21dtv.com/songs/60147585.mkv +王心凌-哭泣BABY,http://em.21dtv.com/songs/60147584.mkv +王心凌-去远方,http://em.21dtv.com/songs/60147583.mkv +王心凌-一点点,http://em.21dtv.com/songs/60147582.mkv +王强+元朝-义气,http://em.21dtv.com/songs/60147581.mkv +王建磊-诉说,http://em.21dtv.com/songs/60147580.mkv +王广允-一定不是爱情,http://em.21dtv.com/songs/60147579.mkv +王小鹿-月满荷塘,http://em.21dtv.com/songs/60147578.mkv +王奕心-情不变,http://em.21dtv.com/songs/60147577.mkv +王奕心-宝宝,http://em.21dtv.com/songs/60147576.mkv +王天琦-布拉格广场,http://em.21dtv.com/songs/60147575.mkv +王勇-知心朋友,http://em.21dtv.com/songs/60147574.mkv +王力宏-无声感情,http://em.21dtv.com/songs/60147573.mkv +王力宏-亲爱的,http://em.21dtv.com/songs/60147572.mkv +王力宏-A.I.爱,http://em.21dtv.com/songs/60147571.mkv +王凯+叶翠-春天中国,http://em.21dtv.com/songs/60147570.mkv +王传越+叶翠-向着伟大梦想,http://em.21dtv.com/songs/60147569.mkv +王乐先生-男人情谊,http://em.21dtv.com/songs/60147568.mkv +王乐乐-分开之后,http://em.21dtv.com/songs/60147567.mkv +王丽达-大东湖美,http://em.21dtv.com/songs/60147566.mkv +玄鸟传说-爱情是没有硝烟的战场,http://em.21dtv.com/songs/60147565.mkv +玄鸟传说-中国节奏,http://em.21dtv.com/songs/60147564.mkv +狮子合唱团-DON'T BREAK MY HEART,http://em.21dtv.com/songs/60147563.mkv +独飞-三生石的印记,http://em.21dtv.com/songs/60147562.mkv +狂野草原-落花碎,http://em.21dtv.com/songs/60147561.mkv +爱烂漫-我的爱在哪里,http://em.21dtv.com/songs/60147560.mkv +爱烂漫-你就是我最美的相遇,http://em.21dtv.com/songs/60147559.mkv +熊汝霖-自由,http://em.21dtv.com/songs/60147558.mkv +熊梓淇-破泪,http://em.21dtv.com/songs/60147557.mkv +熊梓淇-我不管,http://em.21dtv.com/songs/60147556.mkv +熊梓淇-剑心飞扬,http://em.21dtv.com/songs/60147555.mkv +熊梓淇-冠名帮凶,http://em.21dtv.com/songs/60147554.mkv +熊梓淇-冒险家,http://em.21dtv.com/songs/60147553.mkv +熊梓淇-SUPER HERO,http://em.21dtv.com/songs/60147552.mkv +焦艳敏-少年夫妻老来伴,http://em.21dtv.com/songs/60147551.mkv +火勒-梦里草原,http://em.21dtv.com/songs/60147550.mkv +火勒-千年酒香,http://em.21dtv.com/songs/60147549.mkv +潘美辰+JOANNA MOON-你管不着,http://em.21dtv.com/songs/60147548.mkv +潘粤明-白天不懂夜的黑,http://em.21dtv.com/songs/60147547.mkv +潘柯夫-第几个,http://em.21dtv.com/songs/60147546.mkv +潘柯夫-套路,http://em.21dtv.com/songs/60147545.mkv +湘唯一-今天我们相恋,http://em.21dtv.com/songs/60147544.mkv +温永杰-离开我,http://em.21dtv.com/songs/60147543.mkv +温喃-雨中柳,http://em.21dtv.com/songs/60147542.mkv +涓子-请你不要怀疑我的爱,http://em.21dtv.com/songs/60147541.mkv +涓子-警徽闪耀,http://em.21dtv.com/songs/60147540.mkv +涓子-山窝窝,http://em.21dtv.com/songs/60147539.mkv +海哥-最美遇见,http://em.21dtv.com/songs/60147538.mkv +海之声合唱团-闪亮的明欣,http://em.21dtv.com/songs/60147537.mkv +海之声合唱团-我的党章,http://em.21dtv.com/songs/60147536.mkv +洛天依+乐正绫+言和+乐正龙牙-并肩的光荣,http://em.21dtv.com/songs/60147535.mkv +洛天依-漂亮面对,http://em.21dtv.com/songs/60147534.mkv +洗凡-采桑子,http://em.21dtv.com/songs/60147533.mkv +洗凡-菩萨蛮 回廊小立,http://em.21dtv.com/songs/60147532.mkv +洗凡-菩萨蛮 人人尽说,http://em.21dtv.com/songs/60147531.mkv +洗凡-玉楼春,http://em.21dtv.com/songs/60147530.mkv +洗凡-点绛唇,http://em.21dtv.com/songs/60147529.mkv +洗凡-更漏子,http://em.21dtv.com/songs/60147528.mkv +洗凡-南乡子,http://em.21dtv.com/songs/60147527.mkv +洋子默-豆花之歌,http://em.21dtv.com/songs/60147526.mkv +波拉-这些年你过的怎么样,http://em.21dtv.com/songs/60147524.mkv +波拉-亲爱的我又想你了,http://em.21dtv.com/songs/60147523.mkv +沈波-相遇的地方,http://em.21dtv.com/songs/60147522.mkv +沈波-爱情抛物线,http://em.21dtv.com/songs/60147521.mkv +沈昵+程蔚然-母亲我心中的月亮,http://em.21dtv.com/songs/60147520.mkv +沈圭善-DREAM,http://em.21dtv.com/songs/60147519.mkv +汪苏泷-火星研究院,http://em.21dtv.com/songs/60147518.mkv +汤非+王莉-你飞过的天空真美,http://em.21dtv.com/songs/60147517.mkv +江美琪-能不能看到我,http://em.21dtv.com/songs/60147516.mkv +永军-青春,http://em.21dtv.com/songs/60147515.mkv +毅俊-和我们一起唱,http://em.21dtv.com/songs/60147514.mkv +殷越-兄弟如天,http://em.21dtv.com/songs/60147513.mkv +段林希-小丑,http://em.21dtv.com/songs/60147512.mkv +欧阳尚尚-今生今世的唯一,http://em.21dtv.com/songs/60147511.mkv +樊凡-最后一个傻子,http://em.21dtv.com/songs/60147510.mkv +樊凡-你会更快乐,http://em.21dtv.com/songs/60147509.mkv +楠楠-花雨恋,http://em.21dtv.com/songs/60147508.mkv +楚颜-陪你一起变老,http://em.21dtv.com/songs/60147507.mkv +楚歌-大祀官,http://em.21dtv.com/songs/60147506.mkv +梦苇-我心有一个好梦,http://em.21dtv.com/songs/60147505.mkv +梦然-用爱,http://em.21dtv.com/songs/60147503.mkv +梦然-爱还是不爱,http://em.21dtv.com/songs/60147502.mkv +梦然-爱情面具,http://em.21dtv.com/songs/60147501.mkv +梦然-爱你爱我,http://em.21dtv.com/songs/60147500.mkv +梦然-是爱情,http://em.21dtv.com/songs/60147497.mkv +梦然-我可以默默爱你,http://em.21dtv.com/songs/60147496.mkv +梦然-我以为,http://em.21dtv.com/songs/60147495.mkv +梦然-失宠,http://em.21dtv.com/songs/60147494.mkv +梦然-你不来我不好,http://em.21dtv.com/songs/60147493.mkv +梦然-亲爱的爱情,http://em.21dtv.com/songs/60147492.mkv +梅朵-下辈子不一定遇见,http://em.21dtv.com/songs/60147491.mkv +梁静茹-两难,http://em.21dtv.com/songs/60147490.mkv +梁锋-兄弟之歌,http://em.21dtv.com/songs/60147489.mkv +梁剑东-真正兄弟,http://em.21dtv.com/songs/60147488.mkv +梁剑东-夜色2018,http://em.21dtv.com/songs/60147485.mkv +梁剑东-BABY MY LOVE,http://em.21dtv.com/songs/60147484.mkv +梁一贞-焚心,http://em.21dtv.com/songs/60147483.mkv +桔里小姐-惊岁记,http://em.21dtv.com/songs/60147482.mkv +桃子与小慧-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60147481.mkv +桂莹莹-香水有毒,http://em.21dtv.com/songs/60147480.mkv +桂小迪-小迪公主,http://em.21dtv.com/songs/60147479.mkv +格桑英妮-梦想与现实的距离,http://em.21dtv.com/songs/60147478.mkv +柴俊-西湖畔,http://em.21dtv.com/songs/60147477.mkv +柴俊-不是说忘记就能忘记,http://em.21dtv.com/songs/60147476.mkv +查健军-青春未散场,http://em.21dtv.com/songs/60147475.mkv +查健军-杭州让我停留,http://em.21dtv.com/songs/60147474.mkv +枫舞-为何变了心,http://em.21dtv.com/songs/60147473.mkv +枫桥-看不见的忧伤,http://em.21dtv.com/songs/60147472.mkv +林雨-我的爱不曾离去,http://em.21dtv.com/songs/60147471.mkv +林闻恩-匪夷所爱,http://em.21dtv.com/songs/60147470.mkv +林忆莲-绿光,http://em.21dtv.com/songs/60147469.mkv +林可昕-忘记你需要多久,http://em.21dtv.com/songs/60147468.mkv +林俊杰-至少还有你,http://em.21dtv.com/songs/60147467.mkv +林俊杰-爱你,http://em.21dtv.com/songs/60147466.mkv +杰克+郑如秀-爱人啊保重,http://em.21dtv.com/songs/60147465.mkv +杰克+詹曼铃-梦中再相会,http://em.21dtv.com/songs/60147464.mkv +杨黎+郑智化-星星点灯,http://em.21dtv.com/songs/60147463.mkv +杨黎-星星点灯,http://em.21dtv.com/songs/60147462.mkv +杨静+庄振凯-决心对你行,http://em.21dtv.com/songs/60147461.mkv +杨静-青春俭起来放,http://em.21dtv.com/songs/60147460.mkv +杨静-等你是一个人,http://em.21dtv.com/songs/60147459.mkv +杨静-心冷的梦,http://em.21dtv.com/songs/60147458.mkv +杨静-夜莲花,http://em.21dtv.com/songs/60147457.mkv +杨静-坚强的蝴蝶,http://em.21dtv.com/songs/60147456.mkv +杨静-再会啦心爱的人,http://em.21dtv.com/songs/60147455.mkv +杨静-你心如铁,http://em.21dtv.com/songs/60147454.mkv +杨茗淇-美人鱼,http://em.21dtv.com/songs/60147453.mkv +杨海彪-我想去旅行,http://em.21dtv.com/songs/60147452.mkv +杨成-花环,http://em.21dtv.com/songs/60147451.mkv +杨小曼-漫长的短暂,http://em.21dtv.com/songs/60147450.mkv +杨宗纬-一场恋爱,http://em.21dtv.com/songs/60147449.mkv +杨子扬-三十岁 男人罪,http://em.21dtv.com/songs/60147448.mkv +杨坤-远走高飞,http://em.21dtv.com/songs/60147447.mkv +杨坤-画心,http://em.21dtv.com/songs/60147446.mkv +杨坤-今天是你的生日,http://em.21dtv.com/songs/60147445.mkv +杨军-中国美中国梦,http://em.21dtv.com/songs/60147444.mkv +杨乐-一壶好茶,http://em.21dtv.com/songs/60147443.mkv +杜桦-青花梦,http://em.21dtv.com/songs/60147442.mkv +杜桦-舞轻弦,http://em.21dtv.com/songs/60147441.mkv +杜桦-祥和中国,http://em.21dtv.com/songs/60147440.mkv +杜桦-杜鹃花,http://em.21dtv.com/songs/60147439.mkv +杜忻恬-青春的情批,http://em.21dtv.com/songs/60147438.mkv +杜忻恬-爱过放乎开,http://em.21dtv.com/songs/60147437.mkv +杜忻恬-无重力,http://em.21dtv.com/songs/60147436.mkv +杜忻恬-不想爱了,http://em.21dtv.com/songs/60147435.mkv +杜忻恬-CHASING FOREVER,http://em.21dtv.com/songs/60147434.mkv +杜德伟-无心伤害+不走,http://em.21dtv.com/songs/60147433.mkv +杜德伟-抱紧处理,http://em.21dtv.com/songs/60147431.mkv +杜德伟-情人,http://em.21dtv.com/songs/60147430.mkv +杜德伟-快乐快烧坏,http://em.21dtv.com/songs/60147429.mkv +杜德伟-一起看月亮,http://em.21dtv.com/songs/60147428.mkv +杜佳-心经,http://em.21dtv.com/songs/60147427.mkv +杜佳-为你写一首歌,http://em.21dtv.com/songs/60147426.mkv +李荣浩-后羿,http://em.21dtv.com/songs/60147425.mkv +李若溪-遇见整个世界,http://em.21dtv.com/songs/60147424.mkv +李苏杭-来生好好爱你,http://em.21dtv.com/songs/60147423.mkv +李硕-西安院子,http://em.21dtv.com/songs/60147422.mkv +李玲玉-鹤城蓝,http://em.21dtv.com/songs/60147421.mkv +李玉刚+霍尊-天地有灵,http://em.21dtv.com/songs/60147420.mkv +李玉刚+王子歌-新贵妃醉酒,http://em.21dtv.com/songs/60147419.mkv +李玉刚-雨花石,http://em.21dtv.com/songs/60147418.mkv +李玉刚-牵丝戏,http://em.21dtv.com/songs/60147417.mkv +李玉刚-李,http://em.21dtv.com/songs/60147416.mkv +李玉刚-月亮粑粑,http://em.21dtv.com/songs/60147415.mkv +李玉刚-刚好遇见你,http://em.21dtv.com/songs/60147414.mkv +李焕然-麻木不仁,http://em.21dtv.com/songs/60147413.mkv +李波-世界的味道,http://em.21dtv.com/songs/60147412.mkv +李梦尹-百分百爱你,http://em.21dtv.com/songs/60147411.mkv +李林伊迪-守护犬,http://em.21dtv.com/songs/60147410.mkv +李晓杰-狼奔狼跑,http://em.21dtv.com/songs/60147409.mkv +李新现+陈静-让中原更出彩,http://em.21dtv.com/songs/60147408.mkv +李斯丹妮-ANIMAL,http://em.21dtv.com/songs/60147407.mkv +李攀文-最后一片净土,http://em.21dtv.com/songs/60147406.mkv +李攀文-孤岛,http://em.21dtv.com/songs/60147405.mkv +李攀文-一起飞,http://em.21dtv.com/songs/60147404.mkv +李幸倪-随风而来 随风而去,http://em.21dtv.com/songs/60147403.mkv +李川+符龙飞+展昭+黄新皓+初俊辰-大人物,http://em.21dtv.com/songs/60147402.mkv +李小影-幸福老百姓,http://em.21dtv.com/songs/60147401.mkv +李宇春-流行,http://em.21dtv.com/songs/60147400.mkv +李宇春-今天雨可是我们在一起,http://em.21dtv.com/songs/60147399.mkv +李天平+耿岩淅-穿越遇见你,http://em.21dtv.com/songs/60147398.mkv +李夏-凡人歌+那个我,http://em.21dtv.com/songs/60147397.mkv +李国海-用我一生去赌你,http://em.21dtv.com/songs/60147396.mkv +李卫方-我该不该认输,http://em.21dtv.com/songs/60147395.mkv +李凯馨-那个女孩,http://em.21dtv.com/songs/60147394.mkv +李光-滚滚红尘,http://em.21dtv.com/songs/60147393.mkv +李健-城市之光,http://em.21dtv.com/songs/60147392.mkv +李佩玲-MAMA,http://em.21dtv.com/songs/60147391.mkv +李代沫-你来我在,http://em.21dtv.com/songs/60147390.mkv +李今龙-告诉妈妈,http://em.21dtv.com/songs/60147389.mkv +李丹凤-你到底有没有真心爱过我,http://em.21dtv.com/songs/60147388.mkv +权振东-一个人流浪,http://em.21dtv.com/songs/60147387.mkv +朱吴妮娜-大爱,http://em.21dtv.com/songs/60147386.mkv +朱亮-那时候不是现,http://em.21dtv.com/songs/60147385.mkv +望海高歌-爱的心窗,http://em.21dtv.com/songs/60147384.mkv +望海高歌-又是一年,http://em.21dtv.com/songs/60147383.mkv +望海高歌-世上没有后悔药,http://em.21dtv.com/songs/60147382.mkv +有高-大姐,http://em.21dtv.com/songs/60147381.mkv +月上林梢-我想你等你,http://em.21dtv.com/songs/60147380.mkv +曾之乔-几乎,http://em.21dtv.com/songs/60147379.mkv +曹雅雯-感谢,http://em.21dtv.com/songs/60147378.mkv +曹雅雯-幸福啊,http://em.21dtv.com/songs/60147377.mkv +曹雅雯-尪某情,http://em.21dtv.com/songs/60147376.mkv +曹雅雯-午后雷阵雨,http://em.21dtv.com/songs/60147375.mkv +曹雅雯-一个人,http://em.21dtv.com/songs/60147374.mkv +曹权权-患难见真情,http://em.21dtv.com/songs/60147373.mkv +晨熙-感谢你,http://em.21dtv.com/songs/60147372.mkv +晨熙-夜深人静更想你,http://em.21dtv.com/songs/60147371.mkv +晨熙-刚好你也在这里,http://em.21dtv.com/songs/60147370.mkv +春雨-键盘上的爱恋,http://em.21dtv.com/songs/60147369.mkv +春花-不忘初心,http://em.21dtv.com/songs/60147368.mkv +星月花雨-大学时代的爱情故事,http://em.21dtv.com/songs/60147367.mkv +星月组合-最美最美的歌曲,http://em.21dtv.com/songs/60147366.mkv +星座少女-男孩子们,http://em.21dtv.com/songs/60147365.mkv +旧是旧人-春山眉黛,http://em.21dtv.com/songs/60147364.mkv +方皓玟-假使世界原来不像你预期,http://em.21dtv.com/songs/60147363.mkv +方炯镔-RUN AWAY,http://em.21dtv.com/songs/60147362.mkv +方婷-不散不见,http://em.21dtv.com/songs/60147361.mkv +斯琴格日乐+常石磊-康定情歌,http://em.21dtv.com/songs/60147360.mkv +斯琴格日乐-乌兰巴托的夜,http://em.21dtv.com/songs/60147359.mkv +接厚芳+蒋大为-古城集安,http://em.21dtv.com/songs/60147358.mkv +接厚芳+戴玉强-大爱无疆,http://em.21dtv.com/songs/60147357.mkv +接厚芳-阳光路上,http://em.21dtv.com/songs/60147356.mkv +接厚芳-长白山下小江南,http://em.21dtv.com/songs/60147355.mkv +接厚芳-父老乡亲,http://em.21dtv.com/songs/60147354.mkv +接厚芳-永恒的爱,http://em.21dtv.com/songs/60147353.mkv +接厚芳-春天的风,http://em.21dtv.com/songs/60147352.mkv +接厚芳-我爱祖国的蓝天,http://em.21dtv.com/songs/60147351.mkv +接厚芳-我和我的祖国,http://em.21dtv.com/songs/60147350.mkv +接厚芳-希望的中国,http://em.21dtv.com/songs/60147349.mkv +接厚芳-好地方,http://em.21dtv.com/songs/60147348.mkv +指行者乐队-顺其自然,http://em.21dtv.com/songs/60147347.mkv +打扰一下乐团-世界不会轻易崩塌,http://em.21dtv.com/songs/60147346.mkv +扎西平措-齐天,http://em.21dtv.com/songs/60147344.mkv +扎西平措-鸟人,http://em.21dtv.com/songs/60147343.mkv +戴玉强+接厚芳-大爱无疆,http://em.21dtv.com/songs/60147342.mkv +戴爱玲-暗了亮了,http://em.21dtv.com/songs/60147340.mkv +戚薇-回转木马的孤单,http://em.21dtv.com/songs/60147338.mkv +戚薇+李承铉-PERFECT DAY,http://em.21dtv.com/songs/60147337.mkv +成成-想起情妹妹,http://em.21dtv.com/songs/60147336.mkv +愚青-乐生,http://em.21dtv.com/songs/60147335.mkv +恺乐-CHOCOLATE,http://em.21dtv.com/songs/60147334.mkv +徐靖博-路灯,http://em.21dtv.com/songs/60147333.mkv +徐良-还是想念,http://em.21dtv.com/songs/60147332.mkv +徐彬彬-妈妈是家,http://em.21dtv.com/songs/60147331.mkv +徐彬彬-兄弟我们在路上,http://em.21dtv.com/songs/60147330.mkv +徐家保-我的爱,http://em.21dtv.com/songs/60147329.mkv +徐子崴+三丫兄弟-人走茶不凉,http://em.21dtv.com/songs/60147328.mkv +影子乐队-远方,http://em.21dtv.com/songs/60147327.mkv +彭伟家+赖辉-客家人闯四方,http://em.21dtv.com/songs/60147326.mkv +张静-好想牵住你的手,http://em.21dtv.com/songs/60147325.mkv +张靓颖-浮生未歇,http://em.21dtv.com/songs/60147324.mkv +张靓颖-伤心的人别听慢歌,http://em.21dtv.com/songs/60147323.mkv +张雨佳-天下乌镇,http://em.21dtv.com/songs/60147322.mkv +张辉+张艺云-姐弟情深,http://em.21dtv.com/songs/60147321.mkv +张辉-爱在红尘里轮回,http://em.21dtv.com/songs/60147320.mkv +张超洋-与你无关,http://em.21dtv.com/songs/60147319.mkv +张贵全+官金莎-樊篱,http://em.21dtv.com/songs/60147318.mkv +张贵全-用一辈子去疼你,http://em.21dtv.com/songs/60147317.mkv +张蓉-静宁好地方,http://em.21dtv.com/songs/60147316.mkv +张莹莹-菩提花,http://em.21dtv.com/songs/60147315.mkv +张芮菲-时刻手护你,http://em.21dtv.com/songs/60147314.mkv +张芮-月亮谣,http://em.21dtv.com/songs/60147313.mkv +张硕-很想他,http://em.21dtv.com/songs/60147312.mkv +张珊珊-想见你,http://em.21dtv.com/songs/60147311.mkv +张烁-低头族,http://em.21dtv.com/songs/60147310.mkv +张烁-不想被你征服,http://em.21dtv.com/songs/60147309.mkv +张烁-一个人流泪,http://em.21dtv.com/songs/60147308.mkv +张炜-人至健则无敌,http://em.21dtv.com/songs/60147307.mkv +张海-说再见不再见,http://em.21dtv.com/songs/60147306.mkv +张津涤-女人没有错,http://em.21dtv.com/songs/60147304.mkv +张枫-动了情伤了心,http://em.21dtv.com/songs/60147303.mkv +张杰-流星雨,http://em.21dtv.com/songs/60147302.mkv +张杰-情深深雨蒙蒙,http://em.21dtv.com/songs/60147301.mkv +张杰-天上掉下个林妹妹,http://em.21dtv.com/songs/60147300.mkv +张晓彤-让我们荡起双桨,http://em.21dtv.com/songs/60147299.mkv +张敬璇-风鸟,http://em.21dtv.com/songs/60147298.mkv +张怡诺-覆水难收,http://em.21dtv.com/songs/60147297.mkv +张怡诺-爱恨总难圆,http://em.21dtv.com/songs/60147296.mkv +张小虎-诱我深入,http://em.21dtv.com/songs/60147295.mkv +张小九-野居,http://em.21dtv.com/songs/60147294.mkv +张天甫-大爱撑天,http://em.21dtv.com/songs/60147293.mkv +张天甫-丝路金桥,http://em.21dtv.com/songs/60147292.mkv +张啸尘-我们是祖国盛开的花,http://em.21dtv.com/songs/60147291.mkv +张北北-哇哦,http://em.21dtv.com/songs/60147290.mkv +张冬玲-女人不容易,http://em.21dtv.com/songs/60147289.mkv +张冬玲-一个人唱寂寞的歌,http://em.21dtv.com/songs/60147287.mkv +张佑方-佑是我,http://em.21dtv.com/songs/60147286.mkv +庄永练-德孝传家,http://em.21dtv.com/songs/60147285.mkv +广东雨神-广东爱情故事,http://em.21dtv.com/songs/60147284.mkv +常石磊-我心爱永恒,http://em.21dtv.com/songs/60147283.mkv +巴桑拉姆-寻找香巴拉,http://em.21dtv.com/songs/60147282.mkv +崔骆驼-告白,http://em.21dtv.com/songs/60147281.mkv +崔来宾-美丽家园海南岛,http://em.21dtv.com/songs/60147280.mkv +崔子格-红颜旧,http://em.21dtv.com/songs/60147279.mkv +居子涵-逆风飞行,http://em.21dtv.com/songs/60147278.mkv +尼玛乐队-生命之河,http://em.21dtv.com/songs/60147277.mkv +尚芸菲-别说,http://em.21dtv.com/songs/60147276.mkv +小龙宋-我的心中有棵树,http://em.21dtv.com/songs/60147275.mkv +小黄飞-面具人生,http://em.21dtv.com/songs/60147274.mkv +小钟快跑-心之回音,http://em.21dtv.com/songs/60147273.mkv +小苍-逆风局,http://em.21dtv.com/songs/60147272.mkv +小琢-献县魅力闪现,http://em.21dtv.com/songs/60147271.mkv +小哲-动了情碎了心,http://em.21dtv.com/songs/60147270.mkv +家蔚-两面派,http://em.21dtv.com/songs/60147269.mkv +宗海迪-祖国我为你歌唱,http://em.21dtv.com/songs/60147267.mkv +宋念宇-倒带,http://em.21dtv.com/songs/60147266.mkv +宋孟君+潘成-嘻哈有中国,http://em.21dtv.com/songs/60147265.mkv +宋孟君-脑子有病,http://em.21dtv.com/songs/60147264.mkv +宋夏婷-绿萝花,http://em.21dtv.com/songs/60147263.mkv +宋向楠-我是一个不孝的人,http://em.21dtv.com/songs/60147262.mkv +安那-你为什么不敢,http://em.21dtv.com/songs/60147261.mkv +安琪-忘了爱,http://em.21dtv.com/songs/60147260.mkv +宇宙人-你以为,http://em.21dtv.com/songs/60147259.mkv +孟静-赶牲灵,http://em.21dtv.com/songs/60147257.mkv +孟静-眊妹妹,http://em.21dtv.com/songs/60147256.mkv +孟静-拉手手,http://em.21dtv.com/songs/60147255.mkv +孟静-喝喜酒,http://em.21dtv.com/songs/60147254.mkv +孟小宝+静默-秋色爱人,http://em.21dtv.com/songs/60147253.mkv +孙雪宁-素雨,http://em.21dtv.com/songs/60147252.mkv +孙燕姿-风衣,http://em.21dtv.com/songs/60147251.mkv +孙燕姿-我很愉快,http://em.21dtv.com/songs/60147250.mkv +孙澜澜-有你无悔,http://em.21dtv.com/songs/60147249.mkv +孙健-国之大者,http://em.21dtv.com/songs/60147248.mkv +孙伯纶-活就活到底,http://em.21dtv.com/songs/60147247.mkv +威仔+苏小纯-别把我丢下,http://em.21dtv.com/songs/60147246.mkv +姜鹏-哈尔滨不冷,http://em.21dtv.com/songs/60147245.mkv +姚咏欣-TRY EVERYTHING,http://em.21dtv.com/songs/60147244.mkv +姚伟-为爱纠缠,http://em.21dtv.com/songs/60147243.mkv +妮可酱-I FELL SO GOOD,http://em.21dtv.com/songs/60147242.mkv +好妹妹乐队-请你慢一些变老好吗,http://em.21dtv.com/songs/60147241.mkv +央金措-我想去见他,http://em.21dtv.com/songs/60147240.mkv +天籁天-生生世世只爱你,http://em.21dtv.com/songs/60147239.mkv +大鹏-悟人生,http://em.21dtv.com/songs/60147238.mkv +大海-几人饮酒醉,http://em.21dtv.com/songs/60147237.mkv +大新鲜-CHANGE YOUR MIND,http://em.21dtv.com/songs/60147236.mkv +夜猫组+李英宏-健康歌,http://em.21dtv.com/songs/60147235.mkv +夜猫组+国蛋GORDON-你是我的WIFI,http://em.21dtv.com/songs/60147234.mkv +声音乐团-翅膀,http://em.21dtv.com/songs/60147233.mkv +声音乐团-最长的旅途,http://em.21dtv.com/songs/60147232.mkv +圆梦-想你的情歌,http://em.21dtv.com/songs/60147231.mkv +四郎贡布-木兰星,http://em.21dtv.com/songs/60147230.mkv +喻越越-红纱巾,http://em.21dtv.com/songs/60147229.mkv +唯莎-鹿晗我爱你,http://em.21dtv.com/songs/60147228.mkv +唯莎-鹿晗我爱你,http://em.21dtv.com/songs/60147227.mkv +唐梦菲-忘不了你,http://em.21dtv.com/songs/60147226.mkv +唐古-我又想你了,http://em.21dtv.com/songs/60147225.mkv +唐允义-不再为你流泪,http://em.21dtv.com/songs/60147224.mkv +咿一-悲伤应景,http://em.21dtv.com/songs/60147223.mkv +和汇慧-还要多久,http://em.21dtv.com/songs/60147222.mkv +和合核三人组-旺旺驾到,http://em.21dtv.com/songs/60147220.mkv +周至群星-家乡是我唱不完的歌,http://em.21dtv.com/songs/60147219.mkv +周澎-风霜雨雪五千年,http://em.21dtv.com/songs/60147218.mkv +周深+叶炫清-从前慢,http://em.21dtv.com/songs/60147217.mkv +周杰伦+董姿彦-简单爱,http://em.21dtv.com/songs/60147216.mkv +周恬熙-最美闺蜜,http://em.21dtv.com/songs/60147215.mkv +周恬熙-如果时间倒回去,http://em.21dtv.com/songs/60147214.mkv +周延英-那个人,http://em.21dtv.com/songs/60147213.mkv +周奕宏-感情的旧账,http://em.21dtv.com/songs/60147212.mkv +周奕宏-喜悦,http://em.21dtv.com/songs/60147211.mkv +周奕宏-伤心的女人容易醉,http://em.21dtv.com/songs/60147210.mkv +周华安+秦川+高鹏-戏,http://em.21dtv.com/songs/60147209.mkv +吴若希-你在我心间,http://em.21dtv.com/songs/60147207.mkv +吴瑶-想想就醉了,http://em.21dtv.com/songs/60147206.mkv +吴欢-山有木兮,http://em.21dtv.com/songs/60147205.mkv +吴樾-兽,http://em.21dtv.com/songs/60147204.mkv +吴映洁-KNOCK KNOCK KNOCK,http://em.21dtv.com/songs/60147203.mkv +吴业坤-孝顺,http://em.21dtv.com/songs/60147202.mkv +含烟-这样爱你能有多久,http://em.21dtv.com/songs/60147201.mkv +含烟-爱的感觉,http://em.21dtv.com/songs/60147200.mkv +君子-梦想的路,http://em.21dtv.com/songs/60147199.mkv +吕蔷-不像话,http://em.21dtv.com/songs/60147198.mkv +吕干君-生生世世只爱你,http://em.21dtv.com/songs/60147197.mkv +向银莹-原来爱是你,http://em.21dtv.com/songs/60147196.mkv +后来者-雪花飘落我唇际,http://em.21dtv.com/songs/60147195.mkv +后来者-一日不见如隔三秋,http://em.21dtv.com/songs/60147194.mkv +名宇-心像六月下的雪,http://em.21dtv.com/songs/60147193.mkv +司马凌峰-绝不回头,http://em.21dtv.com/songs/60147192.mkv +叶翠-春天中国,http://em.21dtv.com/songs/60147191.mkv +叶晓粤-我的时代,http://em.21dtv.com/songs/60147190.mkv +叶子-一生因,http://em.21dtv.com/songs/60147189.mkv +叶传虎-醉秋,http://em.21dtv.com/songs/60147188.mkv +去游乐场散步才是正经事+霍尊-后来,http://em.21dtv.com/songs/60147187.mkv +卫兰+袁娅维-蓝色MONDAY,http://em.21dtv.com/songs/60147186.mkv +卫兰-一晃眼,http://em.21dtv.com/songs/60147185.mkv +卢瑮莉-那个人该是我,http://em.21dtv.com/songs/60147184.mkv +卢挺-因为,http://em.21dtv.com/songs/60147183.mkv +卢挺-一生等候,http://em.21dtv.com/songs/60147182.mkv +卢信宥-星星说爱,http://em.21dtv.com/songs/60147181.mkv +南征北战-3 ON 3,http://em.21dtv.com/songs/60147180.mkv +单京妮-绒花,http://em.21dtv.com/songs/60147179.mkv +华语群星-唱响2030,http://em.21dtv.com/songs/60147178.mkv +华语群星-同一屋檐下,http://em.21dtv.com/songs/60147177.mkv +华语群星-勇敢的心,http://em.21dtv.com/songs/60147176.mkv +华晨宇+赵宥乔-深情相拥,http://em.21dtv.com/songs/60147175.mkv +华晨宇-智商二五零,http://em.21dtv.com/songs/60147174.mkv +华晨宇-天堂,http://em.21dtv.com/songs/60147173.mkv +华晨宇-夜半歌声,http://em.21dtv.com/songs/60147172.mkv +华少瑞明-夕阳,http://em.21dtv.com/songs/60147171.mkv +刘迦帝乐队-树枝孤鸟,http://em.21dtv.com/songs/60147170.mkv +刘贵贤-老乡,http://em.21dtv.com/songs/60147169.mkv +刘贵贤-欢聚一堂,http://em.21dtv.com/songs/60147168.mkv +刘贵贤-我是客家人,http://em.21dtv.com/songs/60147167.mkv +刘贵贤-天涯望月,http://em.21dtv.com/songs/60147166.mkv +刘畅-你的城,http://em.21dtv.com/songs/60147165.mkv +刘漠-最美的时光遇见你,http://em.21dtv.com/songs/60147164.mkv +刘漠-忘记你还是忘了自己,http://em.21dtv.com/songs/60147163.mkv +刘浩龙-不一定,http://em.21dtv.com/songs/60147162.mkv +刘欢+扎西平措-我和你,http://em.21dtv.com/songs/60147160.mkv +刘昊-在路上,http://em.21dtv.com/songs/60147159.mkv +刘文君-难道,http://em.21dtv.com/songs/60147158.mkv +刘惜君-遥远的歌,http://em.21dtv.com/songs/60147157.mkv +刘思涵-起承转合,http://em.21dtv.com/songs/60147156.mkv +刘思慧-向日葵,http://em.21dtv.com/songs/60147155.mkv +刘家昌-海鸥,http://em.21dtv.com/songs/60147154.mkv +刘宁+亚洲爱乐国际合唱团-红日丹心,http://em.21dtv.com/songs/60147153.mkv +刘天助-我难忘记的,http://em.21dtv.com/songs/60147152.mkv +刘天佐-空,http://em.21dtv.com/songs/60147151.mkv +刘大美人-你是我爱的人,http://em.21dtv.com/songs/60147150.mkv +刘增瞳-说好不回忆,http://em.21dtv.com/songs/60147149.mkv +刘增瞳-我是真的爱过你,http://em.21dtv.com/songs/60147148.mkv +刘增瞳-好想听你说,http://em.21dtv.com/songs/60147147.mkv +刘增瞳-不要离开你,http://em.21dtv.com/songs/60147146.mkv +刘和刚+战阳-带着父母去旅行,http://em.21dtv.com/songs/60147145.mkv +刘和刚-带着父母去旅行,http://em.21dtv.com/songs/60147144.mkv +刘可-打开你的余额宝,http://em.21dtv.com/songs/60147143.mkv +刘佳+十二星宿风之少年-爱的就是你,http://em.21dtv.com/songs/60147142.mkv +刘一尘-秋天的眼泪,http://em.21dtv.com/songs/60147141.mkv +凤凰传奇+大主宰乐团-月亮之上,http://em.21dtv.com/songs/60147140.mkv +冷漠-红姑娘,http://em.21dtv.com/songs/60147139.mkv +冰城爱歌+苏青山-心爱的人啊怎能忘记你,http://em.21dtv.com/songs/60147138.mkv +冰城爱歌-姐我不寂寞,http://em.21dtv.com/songs/60147137.mkv +冰城爱歌-你心里是否还有我,http://em.21dtv.com/songs/60147136.mkv +军嫂组合-醉美蓝桥风月,http://em.21dtv.com/songs/60147135.mkv +关键-过去的过去,http://em.21dtv.com/songs/60147134.mkv +兰旗儿+群星-堂堂正正一辈子,http://em.21dtv.com/songs/60147133.mkv +兰均-男人真的好累,http://em.21dtv.com/songs/60147132.mkv +全能阿西娜+爱唱歌的汪星人-让,http://em.21dtv.com/songs/60147130.mkv +兔子牙-白雪,http://em.21dtv.com/songs/60147129.mkv +光良-不缺,http://em.21dtv.com/songs/60147128.mkv +俞思远-就算这样,http://em.21dtv.com/songs/60147127.mkv +依淼-小花,http://em.21dtv.com/songs/60147126.mkv +何飞英-只想多看你一眼,http://em.21dtv.com/songs/60147125.mkv +伍思凯-舞月光,http://em.21dtv.com/songs/60147124.mkv +伍思凯-爱要怎么说,http://em.21dtv.com/songs/60147122.mkv +伍思凯-情网,http://em.21dtv.com/songs/60147121.mkv +伍思凯-寂寞公路,http://em.21dtv.com/songs/60147120.mkv +伍思凯-一个人跳舞,http://em.21dtv.com/songs/60147118.mkv +伍佰+大鹏+李治廷-谁是老大,http://em.21dtv.com/songs/60147117.mkv +伊然+晓东-幸福一辈子,http://em.21dtv.com/songs/60147116.mkv +伊晗-陪你到最后,http://em.21dtv.com/songs/60147115.mkv +伊晗-后来我才明白,http://em.21dtv.com/songs/60147114.mkv +伊宁-写给你的那封信,http://em.21dtv.com/songs/60147113.mkv +任盈盈-各奔东西,http://em.21dtv.com/songs/60147112.mkv +任然-画下年少然,http://em.21dtv.com/songs/60147111.mkv +任昌丁-你认识那个人吗,http://em.21dtv.com/songs/60147110.mkv +亲妞-非常主播,http://em.21dtv.com/songs/60147109.mkv +京城四姐-你走以后,http://em.21dtv.com/songs/60147108.mkv +亦勋+韦琪-闺蜜,http://em.21dtv.com/songs/60147107.mkv +亦勋+苏晴-另一个自己,http://em.21dtv.com/songs/60147106.mkv +亦勋-明明还爱你,http://em.21dtv.com/songs/60147105.mkv +亦勋-好喜欢你,http://em.21dtv.com/songs/60147104.mkv +亦勋-再见小时候,http://em.21dtv.com/songs/60147103.mkv +井建功+海佩-红地毯,http://em.21dtv.com/songs/60147102.mkv +于湉-因你而在,http://em.21dtv.com/songs/60147101.mkv +于湉-50米的蔚蓝,http://em.21dtv.com/songs/60147100.mkv +争锋四少-菠萝包,http://em.21dtv.com/songs/60147099.mkv +乐天-谎言,http://em.21dtv.com/songs/60147098.mkv +乐夏-好想你,http://em.21dtv.com/songs/60147097.mkv +不会游泳的鱼+蒋敦豪-你要的爱,http://em.21dtv.com/songs/60147096.mkv +三丫兄弟-人走茶不凉,http://em.21dtv.com/songs/60147095.mkv +万雨轩-心似孤鸿,http://em.21dtv.com/songs/60147094.mkv +万芳-你还在我歌里,http://em.21dtv.com/songs/60147093.mkv +七仙姐-十二生肖,http://em.21dtv.com/songs/60147092.mkv +丁靖懿-玛尼情歌,http://em.21dtv.com/songs/60147091.mkv +丁晓君-天下乡亲,http://em.21dtv.com/songs/60147090.mkv +丁可-THE PERFECT DAY,http://em.21dtv.com/songs/60147089.mkv +丁丁-请叫我小仙女,http://em.21dtv.com/songs/60147088.mkv +一绫+邱贤桂-有妳陪伴,http://em.21dtv.com/songs/60147087.mkv +一绫+邱贤桂-幸福旅途,http://em.21dtv.com/songs/60147086.mkv +一绫+杰克-甜蜜天地,http://em.21dtv.com/songs/60147085.mkv +一绫+张岳鹏-我欲跟你行,http://em.21dtv.com/songs/60147084.mkv +一绫-爱万万年,http://em.21dtv.com/songs/60147083.mkv +一绫-思念黑咖啡,http://em.21dtv.com/songs/60147082.mkv +一绫-快乐自己找,http://em.21dtv.com/songs/60147081.mkv +一绫-幸福满满,http://em.21dtv.com/songs/60147080.mkv +一绫-咖啡情,http://em.21dtv.com/songs/60147079.mkv +一绫-千金,http://em.21dtv.com/songs/60147078.mkv +一叶兰舟-落寞的雨,http://em.21dtv.com/songs/60147077.mkv +ZERO G-浪一夏,http://em.21dtv.com/songs/60147076.mkv +VEEGEE+黄小琥-没那么简单,http://em.21dtv.com/songs/60147075.mkv +VEEGEE-没那么简单,http://em.21dtv.com/songs/60147074.mkv +VAVA-KILL COVER,http://em.21dtv.com/songs/60147073.mkv +TY-H,http://em.21dtv.com/songs/60147072.mkv +TWICE-LIKEY,http://em.21dtv.com/songs/60147071.mkv +TOMO GO-BO CHAP,http://em.21dtv.com/songs/60147070.mkv +TIZZY T-穿过你的身体,http://em.21dtv.com/songs/60147069.mkv +THE ADE-UNREAL,http://em.21dtv.com/songs/60147068.mkv +TEAMSPARK-LOVE TRAP,http://em.21dtv.com/songs/60147067.mkv +STEVE AOKI+WALE-IF I TOLD YOU THAT I LOVE YOU,http://em.21dtv.com/songs/60147066.mkv +SOPHIA-一个人生活,http://em.21dtv.com/songs/60147065.mkv +SNH48-戎装信仰,http://em.21dtv.com/songs/60147064.mkv +SING-如梦令,http://em.21dtv.com/songs/60147062.mkv +SING-LIKE THIS,http://em.21dtv.com/songs/60147061.mkv +SF9-我的太阳,http://em.21dtv.com/songs/60147060.mkv +SEVEN-真正的铁拳,http://em.21dtv.com/songs/60147059.mkv +RITA黄汐源-手书,http://em.21dtv.com/songs/60147058.mkv +Q美先锋团-新时代红领巾,http://em.21dtv.com/songs/60147057.mkv +QUEEN-ALL DEAD ALL DEAD,http://em.21dtv.com/songs/60147056.mkv +PRC 巴音汗-80000,http://em.21dtv.com/songs/60147055.mkv +PER SE-亲爱的幽灵,http://em.21dtv.com/songs/60147054.mkv +PENTATONIX-AWAY IN A MANGER,http://em.21dtv.com/songs/60147052.mkv +P INK+吴莫愁-不懂你,http://em.21dtv.com/songs/60147051.mkv +我的一天,http://em.21dtv.com/songs/60147050.mkv +MONOGRAM-清醒梦,http://em.21dtv.com/songs/60147049.mkv +MIXNINE-JUST DANCE,http://em.21dtv.com/songs/60147048.mkv +MIWA-WE ARE THE LIGHT,http://em.21dtv.com/songs/60147047.mkv +MC苏格-别等凌晨才回家,http://em.21dtv.com/songs/60147046.mkv +MC小少焱-李太白,http://em.21dtv.com/songs/60147045.mkv +MC七星-佛说,http://em.21dtv.com/songs/60147044.mkv +LULU黄路梓茵-赖床公主,http://em.21dtv.com/songs/60147043.mkv +LESHIA乐夏-忘掉他,http://em.21dtv.com/songs/60147042.mkv +KINGS BOY-相信未来,http://em.21dtv.com/songs/60147041.mkv +KADA.C-KADA,http://em.21dtv.com/songs/60147040.mkv +JULIA WU-心动,http://em.21dtv.com/songs/60147039.mkv +JONNIC LEE THOMPESTT+周沂-红色蓝色,http://em.21dtv.com/songs/60147038.mkv +JB+王嘉尔-U&I,http://em.21dtv.com/songs/60147037.mkv +HOYA组合-这个世界真正水,http://em.21dtv.com/songs/60147035.mkv +GOT7-TO ME,http://em.21dtv.com/songs/60147033.mkv +GNAT RD-H.E.R.O,http://em.21dtv.com/songs/60147032.mkv +GAI+艾福杰尼+KUNGFU PEN-虎山行,http://em.21dtv.com/songs/60147031.mkv +GAI+不会游泳的鱼-思念是一种病,http://em.21dtv.com/songs/60147030.mkv +GAI-爱如潮水,http://em.21dtv.com/songs/60147029.mkv +FZ.方丈+金佬+李鸿儒-安好,http://em.21dtv.com/songs/60147028.mkv +FUNNY KIDS-越战越强,http://em.21dtv.com/songs/60147027.mkv +FINE乐团-十一种美丽,http://em.21dtv.com/songs/60147026.mkv +FI-PROUD OF YOU,http://em.21dtv.com/songs/60147025.mkv +EXO-POWER,http://em.21dtv.com/songs/60147024.mkv +CYBERJAPAN DANCERS-SUMMERTIME FOREVER,http://em.21dtv.com/songs/60147023.mkv +CROCKERS鳄鱼乐团-世界的另一边,http://em.21dtv.com/songs/60147022.mkv +CORE ONE-情非得已,http://em.21dtv.com/songs/60147021.mkv +CODY SIMPSON+THE TIDE-WAITING FOR THE TIDE,http://em.21dtv.com/songs/60147020.mkv +COAST 2 COAST-CLASSIC 01,http://em.21dtv.com/songs/60147019.mkv +CLEAN BANDIT+JULIA MICHAELS-I MISS YOU,http://em.21dtv.com/songs/60147018.mkv +CAT雨馨-顺流而下,http://em.21dtv.com/songs/60147017.mkv +CALVIN HARRIS+KEHLANI+LIL YACHTY-FAKING IT,http://em.21dtv.com/songs/60147016.mkv +BONGGU-非你不可,http://em.21dtv.com/songs/60147015.mkv +BOBO-雪蝴蝶,http://em.21dtv.com/songs/60147014.mkv +BOBO-请安静听我唱完这首歌,http://em.21dtv.com/songs/60147013.mkv +BOBO-茉莉,http://em.21dtv.com/songs/60147012.mkv +BOBO-红尘一梦,http://em.21dtv.com/songs/60147011.mkv +BOBO-留声,http://em.21dtv.com/songs/60147010.mkv +BOBO-灰姑娘的伤,http://em.21dtv.com/songs/60147009.mkv +BOBO-深宫,http://em.21dtv.com/songs/60147008.mkv +BOBO-樱花雨,http://em.21dtv.com/songs/60147007.mkv +BOBO-月亮不能代表我的心,http://em.21dtv.com/songs/60147006.mkv +BLING BOOM-I NEED YUH,http://em.21dtv.com/songs/60147005.mkv +BEBE REXHA+FLORIDA GEORGIA LINE-MEANT TO BE,http://em.21dtv.com/songs/60147004.mkv +B1A4-YOU ARE MY BABY,http://em.21dtv.com/songs/60147003.mkv +ALAN-美人谷,http://em.21dtv.com/songs/60147002.mkv +ALAN WALKER+NOAH CYRUS+DIGITAL FARM ANIMALS-ALL FALLS DOWN,http://em.21dtv.com/songs/60147001.mkv +AKA.IMP小鬼+朱星杰-BINGO CASH,http://em.21dtv.com/songs/60147000.mkv +AGAINST THE CURRENT-LEGENDS NEVER DIE,http://em.21dtv.com/songs/60146999.mkv +A LIN-最佳男主角,http://em.21dtv.com/songs/60146998.mkv +1617组合-一路一起,http://em.21dtv.com/songs/60146997.mkv +DJ小鑫-全中文劲爆跳舞大碟,http://em.21dtv.com/songs/60146996.mkv +DJ-流行旋律中文DISCO加快节奏跳舞大碟,http://em.21dtv.com/songs/60146995.mkv +DJ阿玛尼-原装原版中场电音HOUSE,http://em.21dtv.com/songs/60146994.mkv +DJ晓东-经典来袭全中文CLUB慢摇串烧,http://em.21dtv.com/songs/60146993.mkv +DJ晓东-神的旋律全英文CLUB慢摇串烧,http://em.21dtv.com/songs/60146992.mkv +DJ晓东-CANDY大师作品+CLUB慢摇串烧,http://em.21dtv.com/songs/60146991.mkv +DJ晓东-全英文HOUSE弹跳电节奏,http://em.21dtv.com/songs/60146990.mkv +DJ晓东-ELECTRO HOUSE夜店狂爆摇头串烧,http://em.21dtv.com/songs/60146989.mkv +DJ晓东-中文狂拽飞车极速慢摇,http://em.21dtv.com/songs/60146988.mkv +DJ晓东-重低音中文电音CLUB伤感慢摇串烧,http://em.21dtv.com/songs/60146987.mkv +DJ晓东-全中文国语弹鼓CLUB伤感慢摇串烧,http://em.21dtv.com/songs/60146986.mkv +DJ小勇+DJ沫沫-不爱我就放开我的手重低音伤感慢摇,http://em.21dtv.com/songs/60146985.mkv +DJ小勇-爱上一个人好累重低音伤感慢摇,http://em.21dtv.com/songs/60146984.mkv +DJ-重低音慢摇,http://em.21dtv.com/songs/60146983.mkv +DJ小旺-欧美时尚前卫流行英文HOUSE串烧,http://em.21dtv.com/songs/60146982.mkv +DJ小陶-全中文CLUB慢摇,http://em.21dtv.com/songs/60146981.mkv +DJ学刚-全中文CLUB全新华语乐团流行串烧,http://em.21dtv.com/songs/60146980.mkv +DJ学刚-全中文CLUB流行前线串烧,http://em.21dtv.com/songs/60146979.mkv +DJ-创造奇迹主宰未来中文CLUB串烧,http://em.21dtv.com/songs/60146978.mkv +DJ小葛-优秀DJ大师作品HOUSE CLUB 5,http://em.21dtv.com/songs/60146977.mkv +王飞-阿曼尼极品超强HOUSE电音高音质嗨串,http://em.21dtv.com/songs/60146976.mkv +DJ小涵-阿远动感节拍全中文最新系列串烧A44,http://em.21dtv.com/songs/60146975.mkv +DJ小涵-全中文热播流行前线系列串烧A43,http://em.21dtv.com/songs/60146974.mkv +DJ小庄-热播前线中文CLUB慢摇串烧,http://em.21dtv.com/songs/60146973.mkv +DJ阿少-精选热线播放中文,http://em.21dtv.com/songs/60146972.mkv +DJ忠-宠你疼你不惯你太爱你所以离开你,http://em.21dtv.com/songs/60146971.mkv +DJFLIN-全外文经典嗨曲全新版本气氛串烧,http://em.21dtv.com/songs/60146970.mkv +DJ-勇敢勇敢+透过你的双眼,http://em.21dtv.com/songs/60146969.mkv +DJ军少-越鼓HOUSE车载大碟,http://em.21dtv.com/songs/60146968.mkv +DJ优仔-夏日痴情缠绕中文慢摇醉天涯,http://em.21dtv.com/songs/60146967.mkv +DJ优仔-DUTCH HOUSE电音大碟,http://em.21dtv.com/songs/60146966.mkv +DJ四仔-全中文CLUB HIFI慢嗨串烧,http://em.21dtv.com/songs/60146965.mkv +DJ-中文伤感情歌劲嗨混音串烧,http://em.21dtv.com/songs/60146964.mkv +DJ军少-CLUB HOUSE慢摇串烧,http://em.21dtv.com/songs/60146963.mkv +佳仔-迷幻爆炸电音MASH UP串烧,http://em.21dtv.com/songs/60146962.mkv +DJ老A+DJ学刚-流行前线全中文CLUB串烧,http://em.21dtv.com/songs/60146961.mkv +DJ老A+DJ学刚-伤感流行CLUB串烧,http://em.21dtv.com/songs/60146960.mkv +DJ老A-全英文HOUSE清风音乐跳舞串烧,http://em.21dtv.com/songs/60146959.mkv +DJ老A-姑娘爱我吧串烧,http://em.21dtv.com/songs/60146958.mkv +DJ骏聪-最炫民族DISCO风,http://em.21dtv.com/songs/60146957.mkv +DJ志勇-ELECTRO HOUSE串烧,http://em.21dtv.com/songs/60146956.mkv +DJ志勇-你是我的男神,http://em.21dtv.com/songs/60146955.mkv +DJ小葛-优秀DJ大师作品HOUSE CLUB 4,http://em.21dtv.com/songs/60146954.mkv +DJ小葛-优秀DJ大师作品HOUSE CLUB 1,http://em.21dtv.com/songs/60146953.mkv +DJ小冉-王者归来CD-03,http://em.21dtv.com/songs/60146952.mkv +DJCOHENY-月亮传奇+爱美无罪,http://em.21dtv.com/songs/60146951.mkv +DJ-男人再累也要奋斗,http://em.21dtv.com/songs/60146950.mkv +DJ-我是屌丝,http://em.21dtv.com/songs/60146949.mkv +DJ-全新中文嗨歌串烧混音大碟,http://em.21dtv.com/songs/60146948.mkv +DJ-席卷风暴音声中文系列串烧,http://em.21dtv.com/songs/60146947.mkv +霍尊-茉莉花,http://em.21dtv.com/songs/60147957.mkv +霍尊+王奕程-茉莉花,http://em.21dtv.com/songs/60147956.mkv +陆树铭-生死百年,http://em.21dtv.com/songs/60147955.mkv +赵鑫-你是我的爱,http://em.21dtv.com/songs/60147954.mkv +谢三宝-盼你等你爱着你,http://em.21dtv.com/songs/60147953.mkv +玺晨-错就错在太爱你,http://em.21dtv.com/songs/60147952.mkv +王宏伟-美丽的龙泉山,http://em.21dtv.com/songs/60147951.mkv +晨熙-雪花心语,http://em.21dtv.com/songs/60147950.mkv +叶洛洛-咖喱咖喱,http://em.21dtv.com/songs/60147949.mkv +冷漠-你真的很好,http://em.21dtv.com/songs/60147948.mkv +冰窟-爱过就好,http://em.21dtv.com/songs/60147947.mkv +何遇程-我的快乐就是的想你,http://em.21dtv.com/songs/60147946.mkv +顾凯-南无阿弥陀佛,http://em.21dtv.com/songs/60146946.mkv +顾凯-南无地藏菩萨,http://em.21dtv.com/songs/60146945.mkv +白玛多吉-梵音大悲咒,http://em.21dtv.com/songs/60146944.mkv +刘清沨-六字大明咒,http://em.21dtv.com/songs/60146943.mkv +玛希-草原迎宾歌,http://em.21dtv.com/songs/60146942.mkv +玛希-草原的故事,http://em.21dtv.com/songs/60146941.mkv +玛希-美丽醉人的科尔沁,http://em.21dtv.com/songs/60146940.mkv +玛希-泪痕,http://em.21dtv.com/songs/60146939.mkv +玛希-泡泡雨,http://em.21dtv.com/songs/60146938.mkv +玛希-查干湖,http://em.21dtv.com/songs/60146937.mkv +玛希-寻梦,http://em.21dtv.com/songs/60146936.mkv +玛希-前郭尔罗斯,http://em.21dtv.com/songs/60146935.mkv +阿涵-备爱,http://em.21dtv.com/songs/60146934.mkv +DJ-韩毒,http://em.21dtv.com/songs/60146933.mkv +黄沾-道,http://em.21dtv.com/songs/60146932.mkv +罗励林-游子梦,http://em.21dtv.com/songs/60146931.mkv +张碧晨-渡红尘,http://em.21dtv.com/songs/60146930.mkv +张师羽-听不完的情歌流不完的泪,http://em.21dtv.com/songs/60146929.mkv +党飞锋+王小娟-丢了我你会不会心痛,http://em.21dtv.com/songs/60146928.mkv +MATTEO-PANAMA,http://em.21dtv.com/songs/60146927.mkv +韩再芬-谁料皇榜中状元,http://em.21dtv.com/songs/60146926.mkv +闫学晶+董宝贵-茉莉花,http://em.21dtv.com/songs/60146925.mkv +闫学晶+董宝贵-绣花灯,http://em.21dtv.com/songs/60146924.mkv +闫学晶+董宝贵-看秧歌,http://em.21dtv.com/songs/60146923.mkv +闫学晶+董宝贵-江北送情郎,http://em.21dtv.com/songs/60146922.mkv +闫学晶+董宝贵-月牙五更,http://em.21dtv.com/songs/60146921.mkv +闫学晶+董宝贵-放风筝,http://em.21dtv.com/songs/60146920.mkv +闫学晶+董宝贵-打秋千,http://em.21dtv.com/songs/60146919.mkv +闫学晶+董宝贵-小看戏,http://em.21dtv.com/songs/60146918.mkv +闫学晶+董宝贵-小拜年,http://em.21dtv.com/songs/60146917.mkv +闫学晶+董宝贵-双回门,http://em.21dtv.com/songs/60146916.mkv +闫学晶+董宝贵-十对花,http://em.21dtv.com/songs/60146915.mkv +闫学晶-大将名五更,http://em.21dtv.com/songs/60146914.mkv +闫学晶-宁舍一顿饭不舍二人转,http://em.21dtv.com/songs/60146913.mkv +潘长江-二人转关东人,http://em.21dtv.com/songs/60146912.mkv +小沈阳+沈春阳-东北二人转转歌,http://em.21dtv.com/songs/60146911.mkv +丫蛋+汤潮-桃花朵朵开,http://em.21dtv.com/songs/60146910.mkv +龚玥-秋风凉想亲娘,http://em.21dtv.com/songs/60146909.mkv +龙梅子-逆风者,http://em.21dtv.com/songs/60146908.mkv +龙怀-AI尔思龙儿,http://em.21dtv.com/songs/60146907.mkv +齐旦布-梦见你的那一夜,http://em.21dtv.com/songs/60146906.mkv +齐旦布-梦想天堂,http://em.21dtv.com/songs/60146905.mkv +齐仔-做我女朋友,http://em.21dtv.com/songs/60146904.mkv +默言+紫依-爱就爱一辈子,http://em.21dtv.com/songs/60146903.mkv +黑羽-从此心里有个你,http://em.21dtv.com/songs/60146902.mkv +黄纪福-给你一个美好的明天,http://em.21dtv.com/songs/60146901.mkv +黄汐源-血色旅店,http://em.21dtv.com/songs/60146900.mkv +黄星瑞-有点灰,http://em.21dtv.com/songs/60146899.mkv +黄旭+艾福杰尼-TOGETHER WE PLAY,http://em.21dtv.com/songs/60146898.mkv +黄慈轩+电流妹-小公举,http://em.21dtv.com/songs/60146897.mkv +黄慈轩-没有你的梦,http://em.21dtv.com/songs/60146896.mkv +黄志权-要冲开一切,http://em.21dtv.com/songs/60146894.mkv +黄志权-自由,http://em.21dtv.com/songs/60146893.mkv +黄志权-天空,http://em.21dtv.com/songs/60146892.mkv +黄少谷-忘了哭,http://em.21dtv.com/songs/60146891.mkv +黄小举-我无所谓两败俱伤,http://em.21dtv.com/songs/60146890.mkv +黄娟-来生你在我还来,http://em.21dtv.com/songs/60146889.mkv +黄妍-音乐大童,http://em.21dtv.com/songs/60146888.mkv +鹿晗-心率,http://em.21dtv.com/songs/60146887.mkv +鸣儿-我不是那种随便的人,http://em.21dtv.com/songs/60146886.mkv +鲍勃-油城大庆等你来,http://em.21dtv.com/songs/60146885.mkv +鲁朝阳-中国梦我的梦,http://em.21dtv.com/songs/60146884.mkv +魏晨-星辰大海是你,http://em.21dtv.com/songs/60146883.mkv +魏新雨-再别康桥,http://em.21dtv.com/songs/60146882.mkv +魏哲鸣+常子-喜欢你的喜欢,http://em.21dtv.com/songs/60146881.mkv +高贵强+甜妹紫烟-爱就爱一辈子,http://em.21dtv.com/songs/60146880.mkv +高安-为你所困,http://em.21dtv.com/songs/60146879.mkv +高天-不醉不回家,http://em.21dtv.com/songs/60146878.mkv +高启翔-雨天,http://em.21dtv.com/songs/60146877.mkv +高启翔-你的猫还趴在我的阳台,http://em.21dtv.com/songs/60146876.mkv +高启翔-不等你,http://em.21dtv.com/songs/60146875.mkv +马雨阳-摩托车带我出京,http://em.21dtv.com/songs/60146873.mkv +马郁-如今你在谁的身边,http://em.21dtv.com/songs/60146872.mkv +马潇潇-陪陪老妈妈,http://em.21dtv.com/songs/60146871.mkv +马智宇-天下父母的爱是最伟大,http://em.21dtv.com/songs/60146870.mkv +马旋-下辈子还等你,http://em.21dtv.com/songs/60146869.mkv +马常宝-人生如此蹉跎,http://em.21dtv.com/songs/60146868.mkv +马常宝-一条路,http://em.21dtv.com/songs/60146867.mkv +马关辉-这个地方,http://em.21dtv.com/songs/60146866.mkv +马关辉-西江姑娘,http://em.21dtv.com/songs/60146865.mkv +马伯骞+吕泽洲+周震南-齐天大圣,http://em.21dtv.com/songs/60146864.mkv +马伯骞-净说大实话,http://em.21dtv.com/songs/60146863.mkv +马伯骞-SOMETHING JUST LIKE THIS,http://em.21dtv.com/songs/60146862.mkv +马丽-飘洋过海来看你,http://em.21dtv.com/songs/60146861.mkv +馨天优组合-黄河源头,http://em.21dtv.com/songs/60146860.mkv +风雨-为你心碎为你沉醉,http://em.21dtv.com/songs/60146859.mkv +风语-花落雨季,http://em.21dtv.com/songs/60146858.mkv +风语-再唱梅殇吟,http://em.21dtv.com/songs/60146857.mkv +额尔古纳乐队-你的歌声风中飞来,http://em.21dtv.com/songs/60146856.mkv +颜振豪+麒麟BABY-不要走留下来,http://em.21dtv.com/songs/60146855.mkv +颜卓灵-BABY STOP,http://em.21dtv.com/songs/60146854.mkv +顾峰-醉十年,http://em.21dtv.com/songs/60146853.mkv +顽童MJ116-干大事,http://em.21dtv.com/songs/60146852.mkv +顽童MJ116-SOUTH SIDE,http://em.21dtv.com/songs/60146851.mkv +顽皮绅士长不大+苏慧伦-原点,http://em.21dtv.com/songs/60146850.mkv +顽皮绅士长不大-讨厌,http://em.21dtv.com/songs/60146849.mkv +音乐走廊+歌一生-心儿跟着你飞啦,http://em.21dtv.com/songs/60146848.mkv +音乐走廊+歌一生-为何伤透我的心,http://em.21dtv.com/songs/60146847.mkv +韩旭-女人心别猜,http://em.21dtv.com/songs/60146846.mkv +韩安旭-最痛的告白,http://em.21dtv.com/songs/60146845.mkv +韩勇+傅又宣-BETTER THIS WAY,http://em.21dtv.com/songs/60146844.mkv +韩健-信仰的图腾,http://em.21dtv.com/songs/60146843.mkv +韦琪-单恋关系,http://em.21dtv.com/songs/60146842.mkv +韦明华+阿妮桑-定格幸福,http://em.21dtv.com/songs/60146841.mkv +鞠红川+唐伯虎-当你老了,http://em.21dtv.com/songs/60146840.mkv +鞠红川+唐伯虎-只要有你我,http://em.21dtv.com/songs/60146839.mkv +非凡STAR-七彩童年梦,http://em.21dtv.com/songs/60146838.mkv +靖哥哥-为你心碎为你沉醉,http://em.21dtv.com/songs/60146837.mkv +雷琛瑜-无神论,http://em.21dtv.com/songs/60146836.mkv +雪十郎-我的好老婆,http://em.21dtv.com/songs/60146835.mkv +雪十郎-伤过的心,http://em.21dtv.com/songs/60146834.mkv +雨露-天长地久只是传说,http://em.21dtv.com/songs/60146833.mkv +雨禾-红尘情花开,http://em.21dtv.com/songs/60146832.mkv +雨歌-情深缘浅,http://em.21dtv.com/songs/60146831.mkv +陈黎明-看到他时听到他时是否会想起我,http://em.21dtv.com/songs/60146830.mkv +陈黎明-日思夜想,http://em.21dtv.com/songs/60146829.mkv +陈黎明-我愿意替你老,http://em.21dtv.com/songs/60146828.mkv +陈黎明-因为不守承诺的是我,http://em.21dtv.com/songs/60146827.mkv +陈零九-最后一首情歌,http://em.21dtv.com/songs/60146826.mkv +陈零九-心动店员,http://em.21dtv.com/songs/60146825.mkv +陈雅森-陌生人,http://em.21dtv.com/songs/60146824.mkv +陈雅森-那个年轻人,http://em.21dtv.com/songs/60146823.mkv +陈雅森-我有故事你有酒吗,http://em.21dtv.com/songs/60146822.mkv +陈长城-多想再把你拥抱,http://em.21dtv.com/songs/60146821.mkv +陈西洋-一步一步,http://em.21dtv.com/songs/60146820.mkv +陈英锐-拼三年,http://em.21dtv.com/songs/60146819.mkv +陈艺搏-NEVER LOVE,http://em.21dtv.com/songs/60146818.mkv +陈粒-桥豆麻袋,http://em.21dtv.com/songs/60146817.mkv +陈粒-亲爱的你,http://em.21dtv.com/songs/60146816.mkv +陈瑞-隐居,http://em.21dtv.com/songs/60146815.mkv +陈瑞-有多少爱可以辜负,http://em.21dtv.com/songs/60146814.mkv +陈珊妮+魏如萱-不要不要,http://em.21dtv.com/songs/60146813.mkv +陈珊妮-战神卡尔迪亚,http://em.21dtv.com/songs/60146812.mkv +陈玉建-赌注,http://em.21dtv.com/songs/60146811.mkv +陈炜-家,http://em.21dtv.com/songs/60146810.mkv +陈洁仪-心动,http://em.21dtv.com/songs/60146809.mkv +陈洁仪-今生今世,http://em.21dtv.com/songs/60146808.mkv +陈楚生-简单而炽热的难忘,http://em.21dtv.com/songs/60146807.mkv +陈晓东-辛苦了,http://em.21dtv.com/songs/60146806.mkv +陈思思-美好新时代,http://em.21dtv.com/songs/60146805.mkv +陈志朋-千面,http://em.21dtv.com/songs/60146804.mkv +陈康腾-当兵的兄弟,http://em.21dtv.com/songs/60146803.mkv +陈宏庆-永城我爱你,http://em.21dtv.com/songs/60146802.mkv +陈娇-不再为你流泪,http://em.21dtv.com/songs/60146801.mkv +陈奕迅-谁来剪月光,http://em.21dtv.com/songs/60146800.mkv +陈奕迅-披风,http://em.21dtv.com/songs/60146799.mkv +陈奕迅-床头灯,http://em.21dtv.com/songs/60146798.mkv +陈兆飞-曾经爱过的人,http://em.21dtv.com/songs/60146796.mkv +陈佳-恨绵绵,http://em.21dtv.com/songs/60146795.mkv +陈以桐+许佳麟+胖胖胖-追光者,http://em.21dtv.com/songs/60146794.mkv +陈予新-无痛分手,http://em.21dtv.com/songs/60146793.mkv +陈一发儿-剑与家园,http://em.21dtv.com/songs/60146792.mkv +阿雅-壁花女士,http://em.21dtv.com/songs/60146791.mkv +阿美+壹哥-美美的情歌美美的你,http://em.21dtv.com/songs/60146790.mkv +阿涵-过客,http://em.21dtv.com/songs/60146789.mkv +阿斯根-神秘的布达拉,http://em.21dtv.com/songs/60146788.mkv +阿斯根-幽兰情,http://em.21dtv.com/songs/60146787.mkv +阿悄-疯狂地想你,http://em.21dtv.com/songs/60146786.mkv +阿悄-特别特别的特别,http://em.21dtv.com/songs/60146785.mkv +阿悄-此物最相思,http://em.21dtv.com/songs/60146784.mkv +阿悄-我们孤单地倔强,http://em.21dtv.com/songs/60146783.mkv +阿悄-如果,http://em.21dtv.com/songs/60146782.mkv +阿悄-城市画家,http://em.21dtv.com/songs/60146781.mkv +阿悄-三人戏,http://em.21dtv.com/songs/60146780.mkv +阿影-远山月,http://em.21dtv.com/songs/60146779.mkv +阿影-思念是你的颜色,http://em.21dtv.com/songs/60146778.mkv +阿影-写一首秋词温暖时光,http://em.21dtv.com/songs/60146777.mkv +阿影-不是我想要的选择,http://em.21dtv.com/songs/60146776.mkv +阿云嘎-额尔古纳河,http://em.21dtv.com/songs/60146775.mkv +阿东木-美丽新疆大花园,http://em.21dtv.com/songs/60146774.mkv +阔少帅-万国红旗飘扬,http://em.21dtv.com/songs/60146773.mkv +阎奕格-今夜三更,http://em.21dtv.com/songs/60146772.mkv +镐天-这一碗酒,http://em.21dtv.com/songs/60146771.mkv +错觉-心在想你眼在流泪,http://em.21dtv.com/songs/60146770.mkv +铁齿铜牙纪先生-勇敢一点,http://em.21dtv.com/songs/60146769.mkv +钟语珊+江婧涵-从林东启航,http://em.21dtv.com/songs/60146768.mkv +钟洁+蓝褶-最终没说清,http://em.21dtv.com/songs/60146767.mkv +钟子炫-幸福记忆,http://em.21dtv.com/songs/60146766.mkv +钟子炫-分手也是种解脱,http://em.21dtv.com/songs/60146765.mkv +钟亚华-濠江颂,http://em.21dtv.com/songs/60146764.mkv +金玟岐-偶像,http://em.21dtv.com/songs/60146763.mkv +金玄雨-我就是我,http://em.21dtv.com/songs/60146762.mkv +金润吉+庄心妍-一人一城,http://em.21dtv.com/songs/60146761.mkv +金志文-虽然前途未卜我愿陪你吃土,http://em.21dtv.com/songs/60146760.mkv +金志文-给我一点寂寞的时间,http://em.21dtv.com/songs/60146758.mkv +金志文-永不消逝,http://em.21dtv.com/songs/60146757.mkv +金志文-哭给你听,http://em.21dtv.com/songs/60146756.mkv +金少祥-不要找借口说分手,http://em.21dtv.com/songs/60146755.mkv +金久哲-男人要有男人样,http://em.21dtv.com/songs/60146754.mkv +郭纯+林千鹿-直男癌修炼手册,http://em.21dtv.com/songs/60146753.mkv +郭旭-行者,http://em.21dtv.com/songs/60146752.mkv +郭峰-中国,http://em.21dtv.com/songs/60146751.mkv +郝月华-哭泣的依美人,http://em.21dtv.com/songs/60146750.mkv +郑颖杰-阑珊,http://em.21dtv.com/songs/60146749.mkv +郑颖杰-狠好,http://em.21dtv.com/songs/60146748.mkv +郑颖杰-泪恋,http://em.21dtv.com/songs/60146747.mkv +郑融-心头大石,http://em.21dtv.com/songs/60146746.mkv +郑源-为爱守护,http://em.21dtv.com/songs/60146745.mkv +郑晓填-我的木吉他,http://em.21dtv.com/songs/60146744.mkv +郑开来-再,一起,http://em.21dtv.com/songs/60146743.mkv +郑子威-同桌的你,http://em.21dtv.com/songs/60146742.mkv +邵洪-预约,http://em.21dtv.com/songs/60146741.mkv +邵建华+黄威-心中的雪莲,http://em.21dtv.com/songs/60146740.mkv +那英+达布希勒图-那又怎样,http://em.21dtv.com/songs/60146739.mkv +那英-有个爱你的人不容易,http://em.21dtv.com/songs/60146738.mkv +那英-你不是说,http://em.21dtv.com/songs/60146737.mkv +那英-三生三世十里桃花,http://em.21dtv.com/songs/60146736.mkv +邓鸿-每天每夜在想你,http://em.21dtv.com/songs/60146734.mkv +邓鸿-带上遗憾离开你,http://em.21dtv.com/songs/60146733.mkv +邓鸿-好痛,http://em.21dtv.com/songs/60146732.mkv +邓耀邦-留在漫天风雨里,http://em.21dtv.com/songs/60146731.mkv +邓童天-心海,http://em.21dtv.com/songs/60146730.mkv +邓海-故乡的阿香,http://em.21dtv.com/songs/60146729.mkv +邓文怡+邓力玮-凉凉,http://em.21dtv.com/songs/60146728.mkv +邓开来-与你相逢,http://em.21dtv.com/songs/60146727.mkv +邓小龙-南宁,http://em.21dtv.com/songs/60146726.mkv +邓小龙-南宁,http://em.21dtv.com/songs/60146725.mkv +邓咏家+陈明阳-钱哪遐歹赚,http://em.21dtv.com/songs/60146724.mkv +邓咏家+陈明阳-恋情恰恰,http://em.21dtv.com/songs/60146723.mkv +邓咏家-风吹雪,http://em.21dtv.com/songs/60146722.mkv +邓咏家-男人味,http://em.21dtv.com/songs/60146721.mkv +邓咏家-永远的伴,http://em.21dtv.com/songs/60146720.mkv +邓咏家-我醉了,http://em.21dtv.com/songs/60146719.mkv +邓咏家-伤脑筋,http://em.21dtv.com/songs/60146718.mkv +邓咏家-世间的女人,http://em.21dtv.com/songs/60146717.mkv +道一上师-道,http://em.21dtv.com/songs/60146716.mkv +迪子-安卓珍尼,http://em.21dtv.com/songs/60146715.mkv +达布希勒图-DEAR FRIEND,http://em.21dtv.com/songs/60146714.mkv +边永城-天下大同,http://em.21dtv.com/songs/60146713.mkv +辉子+张语格-BEE WITH U,http://em.21dtv.com/songs/60146712.mkv +路晨旭-你曾是少年,http://em.21dtv.com/songs/60146711.mkv +路勇-执迷不悟的骆驼,http://em.21dtv.com/songs/60146710.mkv +赵鑫-最后的祈求,http://em.21dtv.com/songs/60146709.mkv +赵鑫-我爱的是你,http://em.21dtv.com/songs/60146708.mkv +赵涛AO-我们怎么了,http://em.21dtv.com/songs/60146707.mkv +赵海伟+李健-兄弟有没有想家,http://em.21dtv.com/songs/60146706.mkv +赵根硕-青春,http://em.21dtv.com/songs/60146705.mkv +赵晔-神经,http://em.21dtv.com/songs/60146704.mkv +赵斌-你伤过多少男人的心,http://em.21dtv.com/songs/60146703.mkv +赵天宇+孟子坤+陈萝莉-初恋薛凯琪,http://em.21dtv.com/songs/60146702.mkv +赵天宇-光,http://em.21dtv.com/songs/60146701.mkv +赵喜同-小同同,http://em.21dtv.com/songs/60146700.mkv +赖辉-男人也需要安慰,http://em.21dtv.com/songs/60146699.mkv +贾晓晨-环游世界进行曲,http://em.21dtv.com/songs/60146698.mkv +贾晓晨-如果就是你,http://em.21dtv.com/songs/60146697.mkv +贾富营-爱你的人泪在流,http://em.21dtv.com/songs/60146696.mkv +贺一航-爱她伤己,http://em.21dtv.com/songs/60146695.mkv +贝若德华-忆情歌,http://em.21dtv.com/songs/60146694.mkv +贝若德华-又双叒叕,http://em.21dtv.com/songs/60146693.mkv +贝儿-千年,http://em.21dtv.com/songs/60146692.mkv +谭联耀-恋爱滋味,http://em.21dtv.com/songs/60146691.mkv +谭维维+扎西平措-窗,http://em.21dtv.com/songs/60146690.mkv +谭维维+冀行-鱼鸟之恋,http://em.21dtv.com/songs/60146689.mkv +谭维维-陌上花开,http://em.21dtv.com/songs/60146688.mkv +谭景泓-沂蒙山小调,http://em.21dtv.com/songs/60146687.mkv +谭嘉仪-快乐快活人,http://em.21dtv.com/songs/60146686.mkv +谢雷-院中花正红,http://em.21dtv.com/songs/60146685.mkv +谢海涛-锦绣虎乡春常在,http://em.21dtv.com/songs/60146684.mkv +谢春花-一棵会开花的树,http://em.21dtv.com/songs/60146683.mkv +谢容儿-爱说话,http://em.21dtv.com/songs/60146682.mkv +谢容儿-不要装熟,http://em.21dtv.com/songs/60146681.mkv +许飞-蓝青,http://em.21dtv.com/songs/60146680.mkv +许飞-我踮起脚尖就能看见来世,http://em.21dtv.com/songs/60146679.mkv +许晓杰+孙鸽-风雨同行,http://em.21dtv.com/songs/60146678.mkv +许晓杰-宝贝,http://em.21dtv.com/songs/60146677.mkv +许志安-狂兽,http://em.21dtv.com/songs/60146676.mkv +许佳慧-逆流者,http://em.21dtv.com/songs/60146675.mkv +许云龙+张海娟-桃花潭,http://em.21dtv.com/songs/60146674.mkv +褚桐羽-重返人间,http://em.21dtv.com/songs/60146673.mkv +褚桐羽-感谢,http://em.21dtv.com/songs/60146672.mkv +袁娅维+邓鼓-DEAR FRIEND,http://em.21dtv.com/songs/60146671.mkv +袁娅维-ROLL,http://em.21dtv.com/songs/60146670.mkv +薛之谦-遗憾,http://em.21dtv.com/songs/60146669.mkv +蔡旻佑+倪安东+李佳薇+管罄-情敌,http://em.21dtv.com/songs/60146668.mkv +蔡佩轩-宣言,http://em.21dtv.com/songs/60146667.mkv +蔡佩轩-你说你爱我,http://em.21dtv.com/songs/60146666.mkv +蔚雨芯-CC,http://em.21dtv.com/songs/60146665.mkv +蓝羽+明雅芳-COME BACK,http://em.21dtv.com/songs/60146664.mkv +蓝玫瑰-多想陪在你身旁,http://em.21dtv.com/songs/60146663.mkv +蒋雪儿-爱的样子,http://em.21dtv.com/songs/60146662.mkv +蒋蒋-退,http://em.21dtv.com/songs/60146661.mkv +蒋敦豪-少年心事,http://em.21dtv.com/songs/60146660.mkv +蒋婴-浣莲为梦,http://em.21dtv.com/songs/60146659.mkv +董真-容若记忆,http://em.21dtv.com/songs/60146658.mkv +[Group] +groupName=十六万歌曲MV等 - 118 +董晨-表达,http://em.21dtv.com/songs/60146657.mkv +董姿彦-OPEN ARMS+情人的眼泪,http://em.21dtv.com/songs/60146656.mkv +萱萱-我以为,http://em.21dtv.com/songs/60146655.mkv +萧镇佑-给你的歌,http://em.21dtv.com/songs/60146654.mkv +萧敬腾-爱的大未来,http://em.21dtv.com/songs/60146652.mkv +菜籽-愿做你爱的宝贝,http://em.21dtv.com/songs/60146651.mkv +菊梓乔-忘记我自己,http://em.21dtv.com/songs/60146650.mkv +莫文蔚-今儿个真高兴,http://em.21dtv.com/songs/60146649.mkv +莎妮娅-圈套,http://em.21dtv.com/songs/60146648.mkv +莎妮娅-发色,http://em.21dtv.com/songs/60146647.mkv +荷兹HEZ+X玖少年团-WE WANT WHAT WE WANT,http://em.21dtv.com/songs/60146646.mkv +草东没有派对-大风吹,http://em.21dtv.com/songs/60146645.mkv +草上飞-相思的路,http://em.21dtv.com/songs/60146644.mkv +草上飞-你,http://em.21dtv.com/songs/60146643.mkv +范文泽-流泪的心得不到回答,http://em.21dtv.com/songs/60146642.mkv +苏醒+何洁-STAND UP AGAIN,http://em.21dtv.com/songs/60146641.mkv +苏运莹-2-0+1,http://em.21dtv.com/songs/60146640.mkv +苏永康-从不知,http://em.21dtv.com/songs/60146639.mkv +苏慧伦-原来你也在这里,http://em.21dtv.com/songs/60146638.mkv +苏小花+刘冲-真心爱你,http://em.21dtv.com/songs/60146637.mkv +花僮-安全出口,http://em.21dtv.com/songs/60146636.mkv +艾伦+马丽-虽然前途未卜我愿陪你吃土,http://em.21dtv.com/songs/60146634.mkv +艾丽雅-安纳基的国王,http://em.21dtv.com/songs/60146633.mkv +胡进-爱你却让我好无奈,http://em.21dtv.com/songs/60146632.mkv +胡蝶-月亮城的蝴蝶香,http://em.21dtv.com/songs/60146631.mkv +胡蕊蓝-太阳照在屋顶上,http://em.21dtv.com/songs/60146630.mkv +胡艾彤-她的爱不完美,http://em.21dtv.com/songs/60146629.mkv +胡渭康-感冒,http://em.21dtv.com/songs/60146628.mkv +冀行-雪莲,http://em.21dtv.com/songs/60146627.mkv +胡彦斌-高手,http://em.21dtv.com/songs/60146626.mkv +胡彦斌-GIVE ME A CHANCE,http://em.21dtv.com/songs/60146625.mkv +肖环-我的梦里全是你,http://em.21dtv.com/songs/60146624.mkv +肖亮+杜欣馨-红尘知己,http://em.21dtv.com/songs/60146623.mkv +肖亮-问菩萨,http://em.21dtv.com/songs/60146622.mkv +肖丫丫-姐的爱情姐作主,http://em.21dtv.com/songs/60146621.mkv +耿直男儿-醉酒歌,http://em.21dtv.com/songs/60146620.mkv +耿嘉涓渼-我多么想,http://em.21dtv.com/songs/60146619.mkv +群星-读唐诗,http://em.21dtv.com/songs/60146617.mkv +群星-福歌,http://em.21dtv.com/songs/60146616.mkv +群星-相亲相爱,http://em.21dtv.com/songs/60146615.mkv +群星-歌唱祖国,http://em.21dtv.com/songs/60146614.mkv +群星-无畏造英雄,http://em.21dtv.com/songs/60146613.mkv +群星-我要夏天,http://em.21dtv.com/songs/60146612.mkv +群星-喂鸡,http://em.21dtv.com/songs/60146610.mkv +群星-唱响2030,http://em.21dtv.com/songs/60146609.mkv +群星-呼唤,http://em.21dtv.com/songs/60146608.mkv +群星-兄弟好久不见,http://em.21dtv.com/songs/60146607.mkv +群星-兄弟同盟,http://em.21dtv.com/songs/60146606.mkv +罗时丰-天黑就想醉,http://em.21dtv.com/songs/60146605.mkv +罗时丰-后台,http://em.21dtv.com/songs/60146604.mkv +罗力威-日落大道,http://em.21dtv.com/songs/60146603.mkv +缝纫机乐队-不再犹豫,http://em.21dtv.com/songs/60146602.mkv +给你点颜色-红色高跟鞋,http://em.21dtv.com/songs/60146601.mkv +纪佳松-I KNOW YOU LOVE ME,http://em.21dtv.com/songs/60146600.mkv +紫炫-红杏出墙,http://em.21dtv.com/songs/60146599.mkv +紫浪-全世界最伤心的人,http://em.21dtv.com/songs/60146598.mkv +紫洛蓝-秋天的玫瑰,http://em.21dtv.com/songs/60146597.mkv +紫洛蓝-枫叶情,http://em.21dtv.com/songs/60146596.mkv +紫洛蓝-情无所依,http://em.21dtv.com/songs/60146595.mkv +紫洛蓝-大江东去,http://em.21dtv.com/songs/60146594.mkv +米雪-对的时间遇到错的人,http://em.21dtv.com/songs/60146593.mkv +米雪-孤独的人唱寂寞的歌,http://em.21dtv.com/songs/60146592.mkv +简弘亦-阍者,http://em.21dtv.com/songs/60146591.mkv +简弘亦-再看一眼,http://em.21dtv.com/songs/60146589.mkv +章古-香烟爱上寂寞,http://em.21dtv.com/songs/60146588.mkv +窦唯-重返魔域,http://em.21dtv.com/songs/60146587.mkv +程大-领土不容侵犯,http://em.21dtv.com/songs/60146586.mkv +秦宇子-LIAR,http://em.21dtv.com/songs/60146585.mkv +秦博-策,http://em.21dtv.com/songs/60146584.mkv +秀兰玛雅-无词的歌,http://em.21dtv.com/songs/60146583.mkv +神马乐团-眼泪日记,http://em.21dtv.com/songs/60146582.mkv +神马乐团-最深的孤独,http://em.21dtv.com/songs/60146581.mkv +神将帝王-非走不可,http://em.21dtv.com/songs/60146580.mkv +神将帝王-兄弟难得,http://em.21dtv.com/songs/60146579.mkv +石雪峰+刘馨月-一生痴恋,http://em.21dtv.com/songs/60146577.mkv +石砚彬-坚持梦想,http://em.21dtv.com/songs/60146576.mkv +着迷-累了,http://em.21dtv.com/songs/60146575.mkv +直来直往的小魔女+铁齿铜牙纪先生-找自己,http://em.21dtv.com/songs/60146574.mkv +白里格+许芳芳-齐心协力修大路,http://em.21dtv.com/songs/60146573.mkv +白小白+朱鸽-只想说声爱你,http://em.21dtv.com/songs/60146572.mkv +白一凡-我想你了,http://em.21dtv.com/songs/60146571.mkv +田晟熙-你有多么舍不得我,http://em.21dtv.com/songs/60146570.mkv +田培良-大丰收老冰棍,http://em.21dtv.com/songs/60146569.mkv +田华-老城,http://em.21dtv.com/songs/60146568.mkv +琳熙-相遇有罪,http://em.21dtv.com/songs/60146567.mkv +玺晨-不打自招,http://em.21dtv.com/songs/60146566.mkv +玖壹壹-没你我没差,http://em.21dtv.com/songs/60146565.mkv +王馨-今生不再为我美,http://em.21dtv.com/songs/60146564.mkv +王键-后悔没有原谅你,http://em.21dtv.com/songs/60146563.mkv +王贺-男儿担当,http://em.21dtv.com/songs/60146562.mkv +王贺-丝绸古道,http://em.21dtv.com/songs/60146561.mkv +王诗安-一步成诗,http://em.21dtv.com/songs/60146560.mkv +王菀之-忘记有时,http://em.21dtv.com/songs/60146559.mkv +王莉-长城中国,http://em.21dtv.com/songs/60146558.mkv +王若琳-ALICE IN WONDERLAND,http://em.21dtv.com/songs/60146557.mkv +王若冰-冰临城下,http://em.21dtv.com/songs/60146556.mkv +王艺霖-明白,http://em.21dtv.com/songs/60146555.mkv +王笔锋-我会像孩子一样的赖着你,http://em.21dtv.com/songs/60146554.mkv +王笔锋-你没告诉我,http://em.21dtv.com/songs/60146553.mkv +王琥-两万五千里,http://em.21dtv.com/songs/60146552.mkv +王玮玮-今生跟随你,http://em.21dtv.com/songs/60146551.mkv +王烁巽-景珹之歌,http://em.21dtv.com/songs/60146550.mkv +王烁巽-如果爱有明天,http://em.21dtv.com/songs/60146549.mkv +王烁巽-亲爱的兄弟,http://em.21dtv.com/songs/60146548.mkv +王泉雅-LOVE SONG,http://em.21dtv.com/songs/60146547.mkv +王晟涵-哪怕缘尽了,http://em.21dtv.com/songs/60146546.mkv +王昊-你是否和我也一样,http://em.21dtv.com/songs/60146545.mkv +王旭-老榆树,http://em.21dtv.com/songs/60146544.mkv +王振宇-老师,http://em.21dtv.com/songs/60146543.mkv +王峰峰-放了我别伤害我,http://em.21dtv.com/songs/60146542.mkv +王小荣-真爱永远,http://em.21dtv.com/songs/60146541.mkv +王子熙-我开始想你了,http://em.21dtv.com/songs/60146540.mkv +王如华-一个人的北京,http://em.21dtv.com/songs/60146539.mkv +王奕心-偏偏喜欢你,http://em.21dtv.com/songs/60146538.mkv +王奕心-不做爱情胆小鬼,http://em.21dtv.com/songs/60146537.mkv +王大痣-DOPE MAN DOPE MUSIC,http://em.21dtv.com/songs/60146536.mkv +王华峰-这首歌是我写给你的,http://em.21dtv.com/songs/60146535.mkv +王华峰-跋涉千里来看你,http://em.21dtv.com/songs/60146534.mkv +王华峰-自己,http://em.21dtv.com/songs/60146533.mkv +王华峰-等候,http://em.21dtv.com/songs/60146532.mkv +王华峰-破冬,http://em.21dtv.com/songs/60146531.mkv +王华峰-病患,http://em.21dtv.com/songs/60146530.mkv +王华峰-疯子疯了,http://em.21dtv.com/songs/60146529.mkv +王华峰-海誓山盟,http://em.21dtv.com/songs/60146528.mkv +王华峰-樱花东街,http://em.21dtv.com/songs/60146527.mkv +王华峰-也许我会死于今晚,http://em.21dtv.com/songs/60146526.mkv +王华峰-CHERRY,http://em.21dtv.com/songs/60146525.mkv +王勇-我愿,http://em.21dtv.com/songs/60146524.mkv +王冕-我没有你说的那么坚强,http://em.21dtv.com/songs/60146523.mkv +王俊琪-我多喜欢你你会知道,http://em.21dtv.com/songs/60146522.mkv +王俊凯-冷暖,http://em.21dtv.com/songs/60146520.mkv +玄-无心无痛,http://em.21dtv.com/songs/60146519.mkv +狮子合唱团-我们的爱,http://em.21dtv.com/songs/60146518.mkv +狮子合唱团-天亮以后说分手,http://em.21dtv.com/songs/60146517.mkv +牛欣欣-梦计划,http://em.21dtv.com/songs/60146516.mkv +爱飞飞-依然爱你,http://em.21dtv.com/songs/60146515.mkv +熊七梅-月光情思,http://em.21dtv.com/songs/60146514.mkv +焱煊-清醒,http://em.21dtv.com/songs/60146513.mkv +炎亚纶+曾之乔-上辈子的双胞胎,http://em.21dtv.com/songs/60146512.mkv +灯塔-身不由己,http://em.21dtv.com/songs/60146511.mkv +灯塔-守不住的承诺,http://em.21dtv.com/songs/60146510.mkv +潘美辰+JOANNA MOON-好久都没有,http://em.21dtv.com/songs/60146508.mkv +潘晓峰-女汉子,http://em.21dtv.com/songs/60146507.mkv +漠心藤-回忆逃逃逃,http://em.21dtv.com/songs/60146506.mkv +满舒克+刘力扬-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60146505.mkv +游牧人组合-醉乡,http://em.21dtv.com/songs/60146504.mkv +游牧人组合-行走,http://em.21dtv.com/songs/60146503.mkv +温莎森林乐队-沉迷,http://em.21dtv.com/songs/60146502.mkv +温建林-满天星星一颗明,http://em.21dtv.com/songs/60146501.mkv +温建林-树梢上月亮,http://em.21dtv.com/songs/60146500.mkv +温建林-我爱唱东方红,http://em.21dtv.com/songs/60146499.mkv +淳于珊珊+张煜枫-兄弟一辈子,http://em.21dtv.com/songs/60146498.mkv +涓子-爱情的牢无处可逃,http://em.21dtv.com/songs/60146497.mkv +涓子-感情的戏我没有演技,http://em.21dtv.com/songs/60146496.mkv +海生-别等了别傻了,http://em.21dtv.com/songs/60146495.mkv +浩林+若郗-牵手在一起,http://em.21dtv.com/songs/60146494.mkv +浅忆-心结谁来解,http://em.21dtv.com/songs/60146493.mkv +泽旺多吉-康巴红,http://em.21dtv.com/songs/60146491.mkv +沈震轩+周丽淇-我真的很好,http://em.21dtv.com/songs/60146490.mkv +沈震轩-我很好,http://em.21dtv.com/songs/60146489.mkv +沈波-若你还在,http://em.21dtv.com/songs/60146488.mkv +沈昊华+陈海娟+胡蝶-佛佑苍生,http://em.21dtv.com/songs/60146487.mkv +沈佳玉-痴情祭,http://em.21dtv.com/songs/60146486.mkv +沈丹丹-爱的旧电影,http://em.21dtv.com/songs/60146485.mkv +沈丹丹-爱情的名义,http://em.21dtv.com/songs/60146484.mkv +沈丹丹-梦游,http://em.21dtv.com/songs/60146483.mkv +沈丹丹-只因喜欢你,http://em.21dtv.com/songs/60146482.mkv +汪峰-那年我五岁,http://em.21dtv.com/songs/60146481.mkv +汤非+王莉-不忘初心,http://em.21dtv.com/songs/60146480.mkv +汤潮-战友兄弟,http://em.21dtv.com/songs/60146479.mkv +汤潮-大雨,http://em.21dtv.com/songs/60146478.mkv +江轩-别再让我哭,http://em.21dtv.com/songs/60146477.mkv +江央扎西-相伴到天涯,http://em.21dtv.com/songs/60146476.mkv +江嘎才里-今生爱人,http://em.21dtv.com/songs/60146475.mkv +江一燕-扎西德勒,http://em.21dtv.com/songs/60146474.mkv +永夜极光乐团+S AK-王者,http://em.21dtv.com/songs/60146473.mkv +永夜极光乐团-热血光芒,http://em.21dtv.com/songs/60146472.mkv +水果哥-寻千年,http://em.21dtv.com/songs/60146471.mkv +毛不易+钟易轩+廖俊涛-意料之中,http://em.21dtv.com/songs/60146470.mkv +毛不易-青春,http://em.21dtv.com/songs/60146469.mkv +毛不易-盛夏,http://em.21dtv.com/songs/60146468.mkv +毕书尽-我想你了,http://em.21dtv.com/songs/60146467.mkv +毕书尽-BE YOUR LIGHT,http://em.21dtv.com/songs/60146466.mkv +歌莉雅+何秉舜-香港八几,http://em.21dtv.com/songs/60146465.mkv +欧阳朵-小想念,http://em.21dtv.com/songs/60146464.mkv +欧阳娜娜+成龙-梦的天空,http://em.21dtv.com/songs/60146463.mkv +欧阳俊-既然你选择了分手,http://em.21dtv.com/songs/60146462.mkv +欣哲-四海的朋友,http://em.21dtv.com/songs/60146461.mkv +次仁央宗-唱歌给你听,http://em.21dtv.com/songs/60146460.mkv +樊君吉-男人难人,http://em.21dtv.com/songs/60146459.mkv +梦然-爱你让我忘了疼,http://em.21dtv.com/songs/60146458.mkv +梦彤-小康路上,http://em.21dtv.com/songs/60146457.mkv +梅朵-想你就是我的幸福,http://em.21dtv.com/songs/60146456.mkv +梅朵-岁月无痕,http://em.21dtv.com/songs/60146455.mkv +梁晓珺-沉重,http://em.21dtv.com/songs/60146454.mkv +梁山-梁山好汉,http://em.21dtv.com/songs/60146453.mkv +桑扎卓玛+泽尔丹+班永强+张岚-感恩有你,http://em.21dtv.com/songs/60146452.mkv +格桑英妮-就这么任性,http://em.21dtv.com/songs/60146451.mkv +查可欣-LOVE CAN TOUCH,http://em.21dtv.com/songs/60146450.mkv +林隆璇+魏如昀-那些歌儿,http://em.21dtv.com/songs/60146449.mkv +林隆璇-羽化,http://em.21dtv.com/songs/60146448.mkv +林贞儿-我在奇奇里,http://em.21dtv.com/songs/60146447.mkv +林紫媛-为你,http://em.21dtv.com/songs/60146446.mkv +林欣彤-毕业之后,http://em.21dtv.com/songs/60146445.mkv +林国庆-酒是知己烟是伴,http://em.21dtv.com/songs/60146444.mkv +林可昕-小王子,http://em.21dtv.com/songs/60146443.mkv +林军-不要放弃哟BABY,http://em.21dtv.com/songs/60146442.mkv +林俊杰+消除联萌-丹宁执着,http://em.21dtv.com/songs/60146441.mkv +杰歌-人生的方向,http://em.21dtv.com/songs/60146440.mkv +杰克+邱芸子-甘愿剖心肝,http://em.21dtv.com/songs/60146439.mkv +杰克+一绫-今生无后悔,http://em.21dtv.com/songs/60146438.mkv +杨澜-草原天路,http://em.21dtv.com/songs/60146437.mkv +杨澜-欢天喜地歌儿飞,http://em.21dtv.com/songs/60146436.mkv +杨溢升+徐真真+VYAN-一样不一样,http://em.21dtv.com/songs/60146435.mkv +杨梓文祺-最后一次等你到天亮,http://em.21dtv.com/songs/60146434.mkv +杨梓文祺-合欢树下,http://em.21dtv.com/songs/60146433.mkv +杨桐-风球,http://em.21dtv.com/songs/60146432.mkv +杨桐-隐秘对话,http://em.21dtv.com/songs/60146431.mkv +杨桐-哼唱月光,http://em.21dtv.com/songs/60146430.mkv +杨宗纬-浮生千山路,http://em.21dtv.com/songs/60146429.mkv +杨多一-TOUCH OF LOVE,http://em.21dtv.com/songs/60146428.mkv +杨坤-游击队之歌,http://em.21dtv.com/songs/60146427.mkv +杨坤-孤独颂,http://em.21dtv.com/songs/60146426.mkv +杨启斯-怎么还没睡,http://em.21dtv.com/songs/60146425.mkv +杨叶伟-在天亮之前说分手,http://em.21dtv.com/songs/60146424.mkv +杨卿俪+李雨衡-相约雷锋城,http://em.21dtv.com/songs/60146423.mkv +杨卿俪-呵呵,http://em.21dtv.com/songs/60146422.mkv +杨千桦-WONDER WOMAN,http://em.21dtv.com/songs/60146421.mkv +杨千嬅+丁子高-平行,http://em.21dtv.com/songs/60146420.mkv +杨乐婷-为了你 我愿意,http://em.21dtv.com/songs/60146418.mkv +杨一凡-酒鬼,http://em.21dtv.com/songs/60146417.mkv +杜若溪-独白,http://em.21dtv.com/songs/60146416.mkv +杜德伟-快乐颂,http://em.21dtv.com/songs/60146415.mkv +李雄-油菜花开我的爱,http://em.21dtv.com/songs/60146414.mkv +李雄-我在门源等你来,http://em.21dtv.com/songs/60146413.mkv +李荣浩+毛不易+马伯骞-模特,http://em.21dtv.com/songs/60146412.mkv +李荣浩-祝你幸福,http://em.21dtv.com/songs/60146411.mkv +李维-烟花易冷,http://em.21dtv.com/songs/60146410.mkv +李研心-跟着太阳走,http://em.21dtv.com/songs/60146409.mkv +李泰-一生执念,http://em.21dtv.com/songs/60146407.mkv +李泉-我想爱,http://em.21dtv.com/songs/60146406.mkv +李沐霖-忘情2017,http://em.21dtv.com/songs/60146405.mkv +李永江+崔向波+赵继影+赵慧勇-乘警之歌,http://em.21dtv.com/songs/60146404.mkv +李晓杰-半壶老酒,http://em.21dtv.com/songs/60146403.mkv +李春丽-风尘女,http://em.21dtv.com/songs/60146402.mkv +李昕融+弘诺方舟-静夜思,http://em.21dtv.com/songs/60146401.mkv +李敏荣-DEAR BOLA,http://em.21dtv.com/songs/60146400.mkv +李政-等待,http://em.21dtv.com/songs/60146399.mkv +李慧珍+冷场王驾到-我爱你中国,http://em.21dtv.com/songs/60146398.mkv +李慧珍-追梦赤子心,http://em.21dtv.com/songs/60146397.mkv +李强-相约艺都,http://em.21dtv.com/songs/60146396.mkv +李小杰-干了这一杯,http://em.21dtv.com/songs/60146395.mkv +李家伟-FANTASY,http://em.21dtv.com/songs/60146394.mkv +李安-I'M NOT OK,http://em.21dtv.com/songs/60146393.mkv +李天华-蓝色北京梦,http://em.21dtv.com/songs/60146392.mkv +李国超-似醉未醒,http://em.21dtv.com/songs/60146391.mkv +李响-留住时间的光,http://em.21dtv.com/songs/60146390.mkv +李华-这一次我不说再见,http://em.21dtv.com/songs/60146389.mkv +李剑青-出城,http://em.21dtv.com/songs/60146388.mkv +李剑青-不变的事,http://em.21dtv.com/songs/60146387.mkv +李克勤-龙须糖,http://em.21dtv.com/songs/60146386.mkv +李光-往事随风,http://em.21dtv.com/songs/60146385.mkv +李健-等爱的人,http://em.21dtv.com/songs/60146384.mkv +李健-梦中的娘,http://em.21dtv.com/songs/60146383.mkv +权施文-心碎了无痕,http://em.21dtv.com/songs/60146382.mkv +朵朵-不想起床,http://em.21dtv.com/songs/60146381.mkv +朵女郎大咖-我们的态度,http://em.21dtv.com/songs/60146380.mkv +朴赞颖-不过是再见,http://em.21dtv.com/songs/60146379.mkv +朱贺-一个亿,http://em.21dtv.com/songs/60146378.mkv +朱娜-爱懂,http://em.21dtv.com/songs/60146377.mkv +朱兴东-怎么走散了,http://em.21dtv.com/songs/60146376.mkv +朱亮-那时候不是现在,http://em.21dtv.com/songs/60146375.mkv +望海高歌+蒋婴-情歌唱到月亮上,http://em.21dtv.com/songs/60146374.mkv +望海高歌-缘分真的好奇妙,http://em.21dtv.com/songs/60146373.mkv +望海高歌-相思湖畔相思的歌,http://em.21dtv.com/songs/60146372.mkv +望海高歌-欣欣向荣,http://em.21dtv.com/songs/60146371.mkv +望海高歌-我的身边再也没有你,http://em.21dtv.com/songs/60146370.mkv +望海高歌-人在天涯心在家乡,http://em.21dtv.com/songs/60146369.mkv +曾楠-无忧岛,http://em.21dtv.com/songs/60146368.mkv +曾春年-念旧,http://em.21dtv.com/songs/60146367.mkv +曾春年-宣告,http://em.21dtv.com/songs/60146366.mkv +GORDAN,http://em.21dtv.com/songs/60146365.mkv +曾一鸣-会不会突然想起我,http://em.21dtv.com/songs/60146364.mkv +曹杨+陈颖恩-记得,http://em.21dtv.com/songs/60146363.mkv +曹权权-患难见真情,http://em.21dtv.com/songs/60146360.mkv +晶迪+超越-三千道义,http://em.21dtv.com/songs/60146359.mkv +晴小晴-假装不难过,http://em.21dtv.com/songs/60146358.mkv +晨熙-落情花,http://em.21dtv.com/songs/60146357.mkv +晓月-相思茧,http://em.21dtv.com/songs/60146356.mkv +晓月-相亲相爱,http://em.21dtv.com/songs/60146355.mkv +晓月-你像彩云又像风,http://em.21dtv.com/songs/60146354.mkv +晓晓+枫舞-遥远的思念,http://em.21dtv.com/songs/60146353.mkv +晓依-来世化蝶与你共舞,http://em.21dtv.com/songs/60146352.mkv +晏敏敏-情满靖州,http://em.21dtv.com/songs/60146351.mkv +昭娟-I FEEL LOVE,http://em.21dtv.com/songs/60146350.mkv +星月组合-把爱酿成酒,http://em.21dtv.com/songs/60146349.mkv +星月组合-情是故乡浓,http://em.21dtv.com/songs/60146348.mkv +星月组合-思乡夜,http://em.21dtv.com/songs/60146347.mkv +时翔云-美丽军花,http://em.21dtv.com/songs/60146346.mkv +旗美美-一把交椅西贝红,http://em.21dtv.com/songs/60146345.mkv +施颖-蜉蝣,http://em.21dtv.com/songs/60146344.mkv +方雨晨-黄昏夏,http://em.21dtv.com/songs/60146343.mkv +方瑶-飞花的中国遍地的歌,http://em.21dtv.com/songs/60146342.mkv +方泂镔-最笨的人是我,http://em.21dtv.com/songs/60146339.mkv +方泂镔-我不是神,http://em.21dtv.com/songs/60146338.mkv +斯日古楞-我看见,http://em.21dtv.com/songs/60146337.mkv +斯日古楞-天边的缘,http://em.21dtv.com/songs/60146336.mkv +文龙-逃爱2018,http://em.21dtv.com/songs/60146335.mkv +敖日格勒-古纳尔河之恋,http://em.21dtv.com/songs/60146334.mkv +持学法师-情僧,http://em.21dtv.com/songs/60146333.mkv +打扰一下乐团-MMA,http://em.21dtv.com/songs/60146332.mkv +扎西平措-阿妈的手,http://em.21dtv.com/songs/60146331.mkv +扎西多吉-醉毕节,http://em.21dtv.com/songs/60146330.mkv +扎西多吉-再为你唱首歌,http://em.21dtv.com/songs/60146329.mkv +戴爱玲-了不起寂寞,http://em.21dtv.com/songs/60146328.mkv +成龙-普通人,http://em.21dtv.com/songs/60146327.mkv +成泉-不忘初心,http://em.21dtv.com/songs/60146326.mkv +成学迅-姑娘跟我走,http://em.21dtv.com/songs/60146325.mkv +念晴-过家家的小新郎,http://em.21dtv.com/songs/60146324.mkv +徐誉滕-三千个月亮,http://em.21dtv.com/songs/60146323.mkv +徐睿轩-夜晚的女孩,http://em.21dtv.com/songs/60146322.mkv +徐佳莹-完美落地,http://em.21dtv.com/songs/60146320.mkv +彭玮瀚+朱克-我是一只小蚂蚁,http://em.21dtv.com/songs/60146319.mkv +彭伟家-梦醉大草原,http://em.21dtv.com/songs/60146318.mkv +张龙珍-嗨嗨情歌,http://em.21dtv.com/songs/60146317.mkv +张雷-看你流泪我会心碎,http://em.21dtv.com/songs/60146314.mkv +张雨飞-雨在飞,http://em.21dtv.com/songs/60146313.mkv +张辛怡-一生有你,http://em.21dtv.com/songs/60146312.mkv +张芝明-借母溪,http://em.21dtv.com/songs/60146311.mkv +张艺兴-SHEEP,http://em.21dtv.com/songs/60146310.mkv +张艺兴-I NEED U,http://em.21dtv.com/songs/60146309.mkv +张腾-DARLING,http://em.21dtv.com/songs/60146308.mkv +张继心-春风也知道,http://em.21dtv.com/songs/60146307.mkv +张磊-一厢情愿的不舍,http://em.21dtv.com/songs/60146306.mkv +张珊珊-LION,http://em.21dtv.com/songs/60146304.mkv +张淳媛-自己感悟,http://em.21dtv.com/songs/60146302.mkv +张海滨-好男儿志在四方,http://em.21dtv.com/songs/60146301.mkv +张梦羽-若水,http://em.21dtv.com/songs/60146300.mkv +张杰+胡斯默-波罗维茨舞曲,http://em.21dtv.com/songs/60146299.mkv +张杰+子子-JUST ONE LAST DANCE,http://em.21dtv.com/songs/60146298.mkv +张杰-回娘家,http://em.21dtv.com/songs/60146297.mkv +张智成-超人心,http://em.21dtv.com/songs/60146296.mkv +张智成-爱我,http://em.21dtv.com/songs/60146295.mkv +张智成-伤了和气,http://em.21dtv.com/songs/60146294.mkv +张晟源-拖延症,http://em.21dtv.com/songs/60146293.mkv +张怡诺-谁也离不开谁,http://em.21dtv.com/songs/60146292.mkv +张怡诺-记得咱的家,http://em.21dtv.com/songs/60146291.mkv +张心柔与漂鸟乐团-角落的咖啡店,http://em.21dtv.com/songs/60146290.mkv +张彥博+骆胤鸣-有种爱情,http://em.21dtv.com/songs/60146289.mkv +张小五-强军路上有你有我,http://em.21dtv.com/songs/60146288.mkv +张小九-海的故事,http://em.21dtv.com/songs/60146287.mkv +张学礼-我真的好想你,http://em.21dtv.com/songs/60146286.mkv +张多金-爱情的弱点,http://em.21dtv.com/songs/60146285.mkv +张多金-恐龙,http://em.21dtv.com/songs/60146284.mkv +张嘉洵-铁鹰飞翔,http://em.21dtv.com/songs/60146283.mkv +张北北-谁先认真谁先输,http://em.21dtv.com/songs/60146282.mkv +张冬玲-我的爱在草原,http://em.21dtv.com/songs/60146281.mkv +张信哲-时间都去哪儿了,http://em.21dtv.com/songs/60146280.mkv +张二嫂-扎心了老铁,http://em.21dtv.com/songs/60146279.mkv +张书瑶-你是我今生最爱的人,http://em.21dtv.com/songs/60146278.mkv +张书瑶-你不是真的爱我,http://em.21dtv.com/songs/60146277.mkv +张东朗-维西谣,http://em.21dtv.com/songs/60146276.mkv +张三弥-哑巴酒馆,http://em.21dtv.com/songs/60146275.mkv +开新傲-321,http://em.21dtv.com/songs/60146274.mkv +廖昌永-老师我总是想起你,http://em.21dtv.com/songs/60146273.mkv +廖媛-春天再唱响,http://em.21dtv.com/songs/60146272.mkv +庾澄庆+董姿彦-老实情歌+靠近,http://em.21dtv.com/songs/60146271.mkv +庾澄庆+卓猷燕-安静,http://em.21dtv.com/songs/60146270.mkv +庾澄庆-猴喜翻,http://em.21dtv.com/songs/60146269.mkv +康小白-奶泡与马克杯,http://em.21dtv.com/songs/60146268.mkv +康小白-刘筱雯,http://em.21dtv.com/songs/60146267.mkv +庞哲-找个爱你的人,http://em.21dtv.com/songs/60146266.mkv +庆钊-我们变他们了,http://em.21dtv.com/songs/60146265.mkv +庆钊-小人物的梦想,http://em.21dtv.com/songs/60146264.mkv +庄镇凯+杨静-床头梦,http://em.21dtv.com/songs/60146263.mkv +庄振凯+杨静-忍冬花,http://em.21dtv.com/songs/60146261.mkv +庄振凯-问情歌,http://em.21dtv.com/songs/60146260.mkv +庄振凯-有缘作伙,http://em.21dtv.com/songs/60146259.mkv +庄振凯-情泪,http://em.21dtv.com/songs/60146258.mkv +庄振凯-借孤单,http://em.21dtv.com/songs/60146257.mkv +庄振凯-你甘会体会,http://em.21dtv.com/songs/60146256.mkv +庄振凯-伤心味,http://em.21dtv.com/songs/60146255.mkv +幸运蜡笔-你愿意吗,http://em.21dtv.com/songs/60146253.mkv +常静-硷畔上的人,http://em.21dtv.com/songs/60146252.mkv +常静-三十里铺,http://em.21dtv.com/songs/60146251.mkv +常生-中华子孙,http://em.21dtv.com/songs/60146250.mkv +常思思-心有星光,http://em.21dtv.com/songs/60146249.mkv +带泪的鱼-我的吃货男朋友,http://em.21dtv.com/songs/60146248.mkv +带泪的鱼-为什么受伤也不走,http://em.21dtv.com/songs/60146247.mkv +希林娜依·高-无与伦比的美丽,http://em.21dtv.com/songs/60146246.mkv +希希-看准你,http://em.21dtv.com/songs/60146245.mkv +希希-愿意,http://em.21dtv.com/songs/60146244.mkv +希希-很愿意在一起,http://em.21dtv.com/songs/60146243.mkv +巩新亮-恶魔天使,http://em.21dtv.com/songs/60146242.mkv +崔红武-同聚旧情,http://em.21dtv.com/songs/60146241.mkv +崔子格-初心,http://em.21dtv.com/songs/60146240.mkv +岳靖川-就让我们骄傲的老去,http://em.21dtv.com/songs/60146239.mkv +岳峰-小的时候我的梦想是有一辆摩托,http://em.21dtv.com/songs/60146238.mkv +山羊哥李永聪+戴静-等你在直苴,http://em.21dtv.com/songs/60146237.mkv +山羊哥哥李永聪+戴静-羊哥哥羊妹妹,http://em.21dtv.com/songs/60146236.mkv +山羊哥哥李永聪-赛装赛到北京克,http://em.21dtv.com/songs/60146235.mkv +山羊哥哥李永聪-羊羔回家了,http://em.21dtv.com/songs/60146234.mkv +尼玛东周-草原之恋,http://em.21dtv.com/songs/60146233.mkv +尹元-LIKE YESTERDAY,http://em.21dtv.com/songs/60146232.mkv +小男孩乐团-思念种子,http://em.21dtv.com/songs/60146231.mkv +小曾+文海地-难说再见,http://em.21dtv.com/songs/60146230.mkv +小旭音乐+吾恩+喵☆酱-月照京华,http://em.21dtv.com/songs/60146229.mkv +小旭乐团-I'M COMING,http://em.21dtv.com/songs/60146228.mkv +小旭RMX-苏三PARTY,http://em.21dtv.com/songs/60146227.mkv +小旭RMX-民音驰放,http://em.21dtv.com/songs/60146226.mkv +小旭RMX-但愿人长久,http://em.21dtv.com/songs/60146225.mkv +小旭GIRLS-活在当下,http://em.21dtv.com/songs/60146224.mkv +小心的哥哥们-BEAUTIFUL GIRL,http://em.21dtv.com/songs/60146223.mkv +小夫妻组合-恩爱小夫妻,http://em.21dtv.com/songs/60146222.mkv +小亮-爱在湖南,http://em.21dtv.com/songs/60146221.mkv +尉金莹-好山好水好梦,http://em.21dtv.com/songs/60146220.mkv +寂悸-浮云梦,http://em.21dtv.com/songs/60146219.mkv +宫俊-平行者,http://em.21dtv.com/songs/60146218.mkv +宋雨霏-最美的光,http://em.21dtv.com/songs/60146217.mkv +宋孟君+潘成-中国有吴亦凡,http://em.21dtv.com/songs/60146216.mkv +宋向楠-如果你还爱着我,http://em.21dtv.com/songs/60146215.mkv +宋向楠-单身的人的生活,http://em.21dtv.com/songs/60146214.mkv +安那-蛤,http://em.21dtv.com/songs/60146213.mkv +安那-我无法懂得,http://em.21dtv.com/songs/60146212.mkv +安苏羽-很爱很爱你,http://em.21dtv.com/songs/60146211.mkv +安悦溪-年少的时光,http://em.21dtv.com/songs/60146210.mkv +宇宙人-现在就让我走,http://em.21dtv.com/songs/60146209.mkv +孤独大阳+汤一美-葬心之卑微的爱,http://em.21dtv.com/songs/60146208.mkv +季彦霖-勇敢一点点,http://em.21dtv.com/songs/60146207.mkv +孟笑-如果你想爱他,http://em.21dtv.com/songs/60146206.mkv +孟瑞-小勇敢,http://em.21dtv.com/songs/60146205.mkv +孟杨-佛前一盏灯,http://em.21dtv.com/songs/60146204.mkv +孟成昊+夏蓉-月满西楼,http://em.21dtv.com/songs/60146203.mkv +孟佳逸-小公主,http://em.21dtv.com/songs/60146202.mkv +孙露-光辉岁月,http://em.21dtv.com/songs/60146201.mkv +孙语赛-戒不掉,http://em.21dtv.com/songs/60146200.mkv +孙燕姿-跳舞的梵谷,http://em.21dtv.com/songs/60146198.mkv +孙澜澜-只要一个你,http://em.21dtv.com/songs/60146197.mkv +孙澜澜-今生的约定,http://em.21dtv.com/songs/60146196.mkv +孙楠-新的天地,http://em.21dtv.com/songs/60146195.mkv +孙杨-龙的传人,http://em.21dtv.com/songs/60146194.mkv +孙晨-不然呢,http://em.21dtv.com/songs/60146193.mkv +孙晓彬-最好的兄弟,http://em.21dtv.com/songs/60146192.mkv +孙晓彬-我在别人的歌里听见我们的故事,http://em.21dtv.com/songs/60146191.mkv +孔东东-爷们,http://em.21dtv.com/songs/60146190.mkv +子子-你都好吗,http://em.21dtv.com/songs/60146189.mkv +子子-CARELESS WHISPER,http://em.21dtv.com/songs/60146188.mkv +娅琳-再唱真的好想你,http://em.21dtv.com/songs/60146187.mkv +威仔+阿夏-你知道我会难过,http://em.21dtv.com/songs/60146186.mkv +姜楠-蓝天下的自由,http://em.21dtv.com/songs/60146185.mkv +姚歌-我有酒你有故事吗,http://em.21dtv.com/songs/60146184.mkv +妞妞-爱让彼此更寂寞,http://em.21dtv.com/songs/60146183.mkv +妖精放了我爷爷-新长征路上的摇滚,http://em.21dtv.com/songs/60146182.mkv +奶油糖组合-看好你的男朋友,http://em.21dtv.com/songs/60146181.mkv +天缘兄弟组合-情歌唱给卓玛拉,http://em.21dtv.com/songs/60146180.mkv +天籁天-飘零的晚秋,http://em.21dtv.com/songs/60146179.mkv +天籁天-爱的天意,http://em.21dtv.com/songs/60146178.mkv +天籁天-潍坊,http://em.21dtv.com/songs/60146177.mkv +天籁天-只为一眼,http://em.21dtv.com/songs/60146176.mkv +天生兄妹-贵州我深爱的家乡,http://em.21dtv.com/songs/60146175.mkv +大鹏-都选C,http://em.21dtv.com/songs/60146174.mkv +大校-故乡芒果香,http://em.21dtv.com/songs/60146173.mkv +大喇叭组合-如果你真的和我分手,http://em.21dtv.com/songs/60146171.mkv +大喇叭组合-如果你真的和我分手,http://em.21dtv.com/songs/60146170.mkv +大哲-还是想着你,http://em.21dtv.com/songs/60146169.mkv +大哲-不再少年,http://em.21dtv.com/songs/60146168.mkv +大哲-三十出头,http://em.21dtv.com/songs/60146167.mkv +济南宽厚里,http://em.21dtv.com/songs/60146166.mkv +夏婉安-初见先生,http://em.21dtv.com/songs/60146165.mkv +夏启明+朱婷婷-全世界谁倾听你,http://em.21dtv.com/songs/60146164.mkv +壮声+MC天佑-有梦不觉累,http://em.21dtv.com/songs/60146163.mkv +圣结石-一定会追到你,http://em.21dtv.com/songs/60146162.mkv +圈圈-散落的拼图,http://em.21dtv.com/songs/60146161.mkv +嚎嚎-蓝玫瑰的眼泪,http://em.21dtv.com/songs/60146160.mkv +唯莎-命中注定的分手,http://em.21dtv.com/songs/60146159.mkv +唯莎-命中注定的分手,http://em.21dtv.com/songs/60146158.mkv +唐飞+甄小瑄-潦落去,http://em.21dtv.com/songs/60146157.mkv +唐飞-跟着我回去,http://em.21dtv.com/songs/60146156.mkv +唐飞-花离枝,http://em.21dtv.com/songs/60146155.mkv +唐飞-看着你的批,http://em.21dtv.com/songs/60146154.mkv +唐飞-痴情麦寮港,http://em.21dtv.com/songs/60146153.mkv +唐飞-放抹离,http://em.21dtv.com/songs/60146152.mkv +唐飞-心痛的恋情,http://em.21dtv.com/songs/60146151.mkv +唐飞-心爱是兄弟,http://em.21dtv.com/songs/60146150.mkv +唐飞-夜市,http://em.21dtv.com/songs/60146149.mkv +唐飞-吉他情歌,http://em.21dtv.com/songs/60146148.mkv +唐薇+樊少华-爱情的力量,http://em.21dtv.com/songs/60146147.mkv +唐美华-我想再陪爸妈三十年,http://em.21dtv.com/songs/60146146.mkv +唐子超-江山一盏,http://em.21dtv.com/songs/60146145.mkv +唐古-太倔强,http://em.21dtv.com/songs/60146144.mkv +呼斯楞-遥远的妈妈,http://em.21dtv.com/songs/60146142.mkv +呼斯楞-夜莺,http://em.21dtv.com/songs/60146141.mkv +周艺轩+SEMON大圣-MR.INKE,http://em.21dtv.com/songs/60146140.mkv +周笔畅+给你点颜色-十字街头,http://em.21dtv.com/songs/60146139.mkv +周笔畅-自然醒,http://em.21dtv.com/songs/60146138.mkv +周澎+李思宇-春满人间,http://em.21dtv.com/songs/60146137.mkv +周澎+张鹤-光荣和梦想,http://em.21dtv.com/songs/60146136.mkv +周澎-七夕等你,http://em.21dtv.com/songs/60146135.mkv +周深-曾经沧海,http://em.21dtv.com/songs/60146134.mkv +周涛-你能不能先放下手机,http://em.21dtv.com/songs/60146133.mkv +周殷廷-爱与罪,http://em.21dtv.com/songs/60146132.mkv +周杰伦+陈颖恩+肖敏晔+朱文婷-乌克丽丽,http://em.21dtv.com/songs/60146131.mkv +周杰伦+达布希勒图+张鑫+李硕-想你就写信+彩虹,http://em.21dtv.com/songs/60146130.mkv +周杰伦-告白气球,http://em.21dtv.com/songs/60146129.mkv +周慧欣-JUST RIGHT,http://em.21dtv.com/songs/60146128.mkv +周慧欣-ENCHANTED,http://em.21dtv.com/songs/60146127.mkv +周恬熙-月卷星河,http://em.21dtv.com/songs/60146126.mkv +周安信-天之大,http://em.21dtv.com/songs/60146125.mkv +周国贤-物极必反,http://em.21dtv.com/songs/60146124.mkv +周品+崔子格-你曾说,http://em.21dtv.com/songs/60146123.mkv +告五人-迷雾之子,http://em.21dtv.com/songs/60146122.mkv +吴进法-命运啊命运,http://em.21dtv.com/songs/60146119.mkv +吴超-兄弟的酒,http://em.21dtv.com/songs/60146117.mkv +吴莫愁-旅程,http://em.21dtv.com/songs/60146116.mkv +吴莫愁-噪音,http://em.21dtv.com/songs/60146115.mkv +吴莫愁-信天游,http://em.21dtv.com/songs/60146114.mkv +吴欢+辜樱樱-送你去远方,http://em.21dtv.com/songs/60146113.mkv +吴森丰-想要赚有钱,http://em.21dtv.com/songs/60146112.mkv +吴建豪-BASS GUN,http://em.21dtv.com/songs/60146111.mkv +吴尚倪-千万祝福,http://em.21dtv.com/songs/60146110.mkv +吴亦凡+TRAVIS SCOTT-DESERVE,http://em.21dtv.com/songs/60146109.mkv +君子-走着走着就散了,http://em.21dtv.com/songs/60146108.mkv +君子-永远不回头,http://em.21dtv.com/songs/60146107.mkv +吕蔷-爱无所畏,http://em.21dtv.com/songs/60146106.mkv +吕蔷-O LOVE,http://em.21dtv.com/songs/60146105.mkv +向银莹-爱你是我犯的贱,http://em.21dtv.com/songs/60146104.mkv +吉囍+刘莉-爱的誓言,http://em.21dtv.com/songs/60146103.mkv +吉克隽逸-往事随风,http://em.21dtv.com/songs/60146102.mkv +吉克隽逸-一生所爱,http://em.21dtv.com/songs/60146101.mkv +司唯-情殇,http://em.21dtv.com/songs/60146100.mkv +叶里-碧落,http://em.21dtv.com/songs/60146099.mkv +叶贝文-年轻的选择,http://em.21dtv.com/songs/60146098.mkv +叶炫清-从前慢,http://em.21dtv.com/songs/60146097.mkv +叶炫清-为爱诛仙,http://em.21dtv.com/songs/60146096.mkv +叶晓粤-母系社会,http://em.21dtv.com/songs/60146095.mkv +叶巧琳-神把眼泪都留给了人,http://em.21dtv.com/songs/60146094.mkv +叶子淇-树的梦,http://em.21dtv.com/songs/60146093.mkv +叶子淇-时光之舞,http://em.21dtv.com/songs/60146092.mkv +叶子淇-我的时间,http://em.21dtv.com/songs/60146091.mkv +原子霏-勿念,http://em.21dtv.com/songs/60146090.mkv +印子月-安可,http://em.21dtv.com/songs/60146089.mkv +卫兰-想像空间,http://em.21dtv.com/songs/60146088.mkv +卫兰-LONELY,http://em.21dtv.com/songs/60146087.mkv +南游记乐队-你不在南京,http://em.21dtv.com/songs/60146086.mkv +南征北战-绽放,http://em.21dtv.com/songs/60146085.mkv +卓猷燕-不能说的秘密,http://em.21dtv.com/songs/60146084.mkv +华语群星-新时代,http://em.21dtv.com/songs/60146083.mkv +华语群星-宝贝的新朋友,http://em.21dtv.com/songs/60146082.mkv +华晨宇-阿里山的姑娘,http://em.21dtv.com/songs/60146081.mkv +华少瑞明-挣钱难,http://em.21dtv.com/songs/60146080.mkv +华少瑞明-找个伴,http://em.21dtv.com/songs/60146079.mkv +华子歌-相守,http://em.21dtv.com/songs/60146078.mkv +千译-同命,http://em.21dtv.com/songs/60146077.mkv +匡龙舟-被爱伤过的滋味,http://em.21dtv.com/songs/60146076.mkv +初晴VAN-无人街,http://em.21dtv.com/songs/60146075.mkv +刘馨蔚-一加一不再等于我和你,http://em.21dtv.com/songs/60146074.mkv +刘风雷-为梦飞翔,http://em.21dtv.com/songs/60146073.mkv +刘霞米拉-你的情是假还是真,http://em.21dtv.com/songs/60146072.mkv +刘贵贤-甘肃老家,http://em.21dtv.com/songs/60146071.mkv +刘贵贤-父亲,http://em.21dtv.com/songs/60146070.mkv +刘贵贤-格桑美朵,http://em.21dtv.com/songs/60146069.mkv +刘贵贤-故乡有话告诉你,http://em.21dtv.com/songs/60146068.mkv +刘贵贤-我的好妈妈,http://em.21dtv.com/songs/60146067.mkv +刘贵贤-当你的秀发拂过我的钢枪,http://em.21dtv.com/songs/60146066.mkv +刘贵贤-儿行千里,http://em.21dtv.com/songs/60146065.mkv +刘芮岐-言不由衷,http://em.21dtv.com/songs/60146064.mkv +刘维+薛之谦-婚礼的祝福,http://em.21dtv.com/songs/60146063.mkv +刘维-冲动,http://em.21dtv.com/songs/60146062.mkv +刘秋实-深圳荔园颂中国,http://em.21dtv.com/songs/60146061.mkv +刘漠-绝情的分手,http://em.21dtv.com/songs/60146060.mkv +刘漠-爱上你的我该怎么办,http://em.21dtv.com/songs/60146059.mkv +刘海辰-哥流的是伤心不是眼泪,http://em.21dtv.com/songs/60146057.mkv +刘欢-落叶,http://em.21dtv.com/songs/60146056.mkv +刘欢-情怨,http://em.21dtv.com/songs/60146055.mkv +刘欢-夜,http://em.21dtv.com/songs/60146053.mkv +刘桐-地涌金莲,http://em.21dtv.com/songs/60146052.mkv +刘昱贤-傲气雄风,http://em.21dtv.com/songs/60146051.mkv +刘明辉-唤醒,http://em.21dtv.com/songs/60146050.mkv +刘旭阳-毕业婚礼式,http://em.21dtv.com/songs/60146049.mkv +刘惜君-罪,http://em.21dtv.com/songs/60146048.mkv +刘思涵-寂寞绑架,http://em.21dtv.com/songs/60146047.mkv +刘思涵-不特别得很特别,http://em.21dtv.com/songs/60146046.mkv +刘思涵-不懂爱,http://em.21dtv.com/songs/60146044.mkv +刘德华+炫棋儿-香港北京道一号,http://em.21dtv.com/songs/60146043.mkv +刘德华-香港北京道一号,http://em.21dtv.com/songs/60146042.mkv +刘增瞳-我们都已经长大,http://em.21dtv.com/songs/60146041.mkv +刘增瞳-属于你的歌,http://em.21dtv.com/songs/60146040.mkv +刘增瞳-多想留在你身边,http://em.21dtv.com/songs/60146039.mkv +刘增瞳-圈套,http://em.21dtv.com/songs/60146038.mkv +刘增瞳-命运的施舍,http://em.21dtv.com/songs/60146037.mkv +刘增瞳-你怕不怕失去我,http://em.21dtv.com/songs/60146036.mkv +刘增瞳-你从不知道,http://em.21dtv.com/songs/60146035.mkv +刘坤-美丽的姑娘,http://em.21dtv.com/songs/60146034.mkv +刘和刚-叫您一声妈妈,http://em.21dtv.com/songs/60146033.mkv +刘伟德-离开寂寞的寂寞,http://em.21dtv.com/songs/60146032.mkv +刘伟德-放手才有自由,http://em.21dtv.com/songs/60146031.mkv +刘伟德-WISH爱,http://em.21dtv.com/songs/60146030.mkv +凌宏兵-不想你走,http://em.21dtv.com/songs/60146029.mkv +冷漠+小沈龙-有梦人展翅飞翔,http://em.21dtv.com/songs/60146028.mkv +冷漠-秋雨连绵的日子,http://em.21dtv.com/songs/60146027.mkv +冷场王驾到+杜德伟-制造浪漫,http://em.21dtv.com/songs/60146026.mkv +冷场王驾到-走在冷风中,http://em.21dtv.com/songs/60146025.mkv +冯提莫-空心,http://em.21dtv.com/songs/60146024.mkv +冯提莫-沈洁洁,http://em.21dtv.com/songs/60146023.mkv +胡斯默-红眼睛,http://em.21dtv.com/songs/60146022.mkv +关晓彤-都二十了,http://em.21dtv.com/songs/60146021.mkv +六水-只是朋友,http://em.21dtv.com/songs/60146020.mkv +八三夭-我不想改变世界我只想不被世界改变,http://em.21dtv.com/songs/60146019.mkv +光良-九种使用孤独的正确方式,http://em.21dtv.com/songs/60146018.mkv +光头阿兴-一生为你等待,http://em.21dtv.com/songs/60146017.mkv +先宇YU-BUTTERFLY,http://em.21dtv.com/songs/60146016.mkv +俞思远+罗开元-JUST BE ALL RIGHT,http://em.21dtv.com/songs/60146015.mkv +侯觉-盛世颂歌,http://em.21dtv.com/songs/60146013.mkv +依梦-爱的格桑花,http://em.21dtv.com/songs/60146012.mkv +佟铁鑫-人到中年,http://em.21dtv.com/songs/60146011.mkv +何钤菡-悠悠古镇情,http://em.21dtv.com/songs/60146010.mkv +何生明-不再彷徨,http://em.21dtv.com/songs/60146009.mkv +何洁-双倍心跳,http://em.21dtv.com/songs/60146008.mkv +何昌旭+妮妮-一首写不完的歌,http://em.21dtv.com/songs/60146007.mkv +何必在乎我是谁+人间极品小魔头-相见不如怀念,http://em.21dtv.com/songs/60146006.mkv +何弘轩-小器鬼,http://em.21dtv.com/songs/60146005.mkv +何嘉深-月光舞,http://em.21dtv.com/songs/60146004.mkv +何君琪-有你的冬天就不会冷,http://em.21dtv.com/songs/60146003.mkv +伍昊予-还记得你说,http://em.21dtv.com/songs/60146002.mkv +伍昊予-你,http://em.21dtv.com/songs/60146001.mkv +伍昊予-下一个街角,http://em.21dtv.com/songs/60146000.mkv +伊雪-不想被打扰,http://em.21dtv.com/songs/60145999.mkv +伊晗-他从不知道,http://em.21dtv.com/songs/60145998.mkv +任盈盈-是否真心给错了人,http://em.21dtv.com/songs/60145997.mkv +任明-喜事临门,http://em.21dtv.com/songs/60145996.mkv +任妙音-梵唱,http://em.21dtv.com/songs/60145995.mkv +任妙音-佛珠转呀转,http://em.21dtv.com/songs/60145994.mkv +任妙音-一棵开花的树,http://em.21dtv.com/songs/60145993.mkv +付子恒-王妃,http://em.21dtv.com/songs/60145992.mkv +人间极品小魔头-我恨我爱你,http://em.21dtv.com/songs/60145991.mkv +五月天-终于结束的起点,http://em.21dtv.com/songs/60145990.mkv +五月-配角而已,http://em.21dtv.com/songs/60145989.mkv +云菲菲-鸳鸯戏水,http://em.21dtv.com/songs/60145988.mkv +于小冉-想念妈妈,http://em.21dtv.com/songs/60145987.mkv +二珂-带着音乐去旅行,http://em.21dtv.com/songs/60145986.mkv +乱弹阿翔-男人,http://em.21dtv.com/songs/60145985.mkv +习谱予-等下一个他,http://em.21dtv.com/songs/60145984.mkv +习冠-星光下的记忆,http://em.21dtv.com/songs/60145983.mkv +乔盼-恋不够的双山梁,http://em.21dtv.com/songs/60145981.mkv +乌兰托娅-转世莲花,http://em.21dtv.com/songs/60145980.mkv +乌兰托娅-心中的西藏,http://em.21dtv.com/songs/60145979.mkv +乌兰托娅-向往拉萨,http://em.21dtv.com/songs/60145978.mkv +义飞-兄弟加油,http://em.21dtv.com/songs/60145977.mkv +丹真罗布-上谷福地,http://em.21dtv.com/songs/60145976.mkv +丹尼·翁-都是男人惹的祸,http://em.21dtv.com/songs/60145975.mkv +丹尼·翁-都是男人惹的祸,http://em.21dtv.com/songs/60145974.mkv +丹尼·翁-你是我的幸福,http://em.21dtv.com/songs/60145973.mkv +丹尼.翁-幸好遇见你,http://em.21dtv.com/songs/60145972.mkv +严爵-边缘朋友,http://em.21dtv.com/songs/60145971.mkv +严爵-我是水,http://em.21dtv.com/songs/60145970.mkv +东方依依-这首歌写给谁,http://em.21dtv.com/songs/60145969.mkv +东子-勇敢去追,http://em.21dtv.com/songs/60145968.mkv +丛林-回忆的缺口,http://em.21dtv.com/songs/60145967.mkv +万国鹏-在风中,http://em.21dtv.com/songs/60145966.mkv +丁薇-搜爱,http://em.21dtv.com/songs/60145965.mkv +丁泽群-自由,http://em.21dtv.com/songs/60145964.mkv +丁思忖-漂亮女孩,http://em.21dtv.com/songs/60145963.mkv +丁子高+杨千桦-平行,http://em.21dtv.com/songs/60145962.mkv +丁可-BEAUTIFUL LIFE,http://em.21dtv.com/songs/60145961.mkv +丁一-向往乌托邦,http://em.21dtv.com/songs/60145960.mkv +ZDEV OGKM-地图,http://em.21dtv.com/songs/60145959.mkv +YHBOYS-国家,http://em.21dtv.com/songs/60145957.mkv +YEP GIRLS-ONE MORE NIGHT,http://em.21dtv.com/songs/60145956.mkv +YELLOWDOG-贝贝,http://em.21dtv.com/songs/60145955.mkv +XL组合-海芋恋,http://em.21dtv.com/songs/60145954.mkv +VAVA+TY.+王倩倩-我的新衣,http://em.21dtv.com/songs/60145953.mkv +VAVA+BLOW+刘昱妤-EGO,http://em.21dtv.com/songs/60145952.mkv +VAVA-RAP STAR,http://em.21dtv.com/songs/60145951.mkv +TY.-谁的错,http://em.21dtv.com/songs/60145950.mkv +THE VAMPS+MAGGIE LINDEMANN-PERSONAL,http://em.21dtv.com/songs/60145949.mkv +THE BARBERETTES-FALL IS COMING,http://em.21dtv.com/songs/60145948.mkv +TEAM SPARK-LOVE TRAP,http://em.21dtv.com/songs/60145947.mkv +SUPPER MOMENT-灵感床,http://em.21dtv.com/songs/60145946.mkv +SUPPER MOMENT-大丈夫,http://em.21dtv.com/songs/60145945.mkv +SNH48-那不勒斯的黎明,http://em.21dtv.com/songs/60145944.mkv +SNH48-记忆中的你我,http://em.21dtv.com/songs/60145943.mkv +SNH48-绚丽时代,http://em.21dtv.com/songs/60145942.mkv +SNH48-爱恨的泪,http://em.21dtv.com/songs/60145941.mkv +SMILE小千+橙翼-天地由我,http://em.21dtv.com/songs/60145940.mkv +SLAMER+孙盛希-念夏,http://em.21dtv.com/songs/60145939.mkv +SING女团-寄明月,http://em.21dtv.com/songs/60145938.mkv +SING女团-冒险时代,http://em.21dtv.com/songs/60145937.mkv +SHY48-甜甜圈,http://em.21dtv.com/songs/60145936.mkv +SHY48-华丽探险,http://em.21dtv.com/songs/60145935.mkv +SHY48-前行的力量,http://em.21dtv.com/songs/60145934.mkv +SHY48-WE ARE THE ONE,http://em.21dtv.com/songs/60145933.mkv +SHY48-SHY,http://em.21dtv.com/songs/60145932.mkv +SHAWN MENDES-DON'T BE A FOOL,http://em.21dtv.com/songs/60145931.mkv +SELINA-娃娃,http://em.21dtv.com/songs/60145930.mkv +RYAN.B OF CNBALLER+AY杨佬叁-再也没有,http://em.21dtv.com/songs/60145929.mkv +RJ+方玥-BEFORE YOU GO,http://em.21dtv.com/songs/60145928.mkv +PSYKHON+吴莫愁-TAKE IT EASY,http://em.21dtv.com/songs/60145926.mkv +PER SE-家变,http://em.21dtv.com/songs/60145925.mkv +NOWHERE BOYS+游学修-普通华,http://em.21dtv.com/songs/60145924.mkv +NOWHERE BOYS+吴嘉熙-夕阳武士,http://em.21dtv.com/songs/60145923.mkv +NOWHERE BOYS-狂想曲,http://em.21dtv.com/songs/60145921.mkv +NOWHERE BOYS-爱情动作神功,http://em.21dtv.com/songs/60145920.mkv +NOWHERE BOYS-大步走,http://em.21dtv.com/songs/60145919.mkv +NOWHERE BOYS-地心吸力,http://em.21dtv.com/songs/60145918.mkv +NOOVY-三等星,http://em.21dtv.com/songs/60145917.mkv +NOOVY-ONE,http://em.21dtv.com/songs/60145916.mkv +NOOVY-KALEIDOSCOPE,http://em.21dtv.com/songs/60145915.mkv +NIALL HORAN-FLICKER,http://em.21dtv.com/songs/60145914.mkv +MOONSHINE+DASH-FEEL FEEL,http://em.21dtv.com/songs/60145913.mkv +MATTEO-PANAMA,http://em.21dtv.com/songs/60145911.mkv +LULU黄路梓茵-全都给你了,http://em.21dtv.com/songs/60145910.mkv +LOKEY低调组合-双人座,http://em.21dtv.com/songs/60145909.mkv +LIAM PAYNE-BEDROOM FLOOR,http://em.21dtv.com/songs/60145908.mkv +KT TUNSTALL+JAMES BAY-TWO WAY,http://em.21dtv.com/songs/60145907.mkv +KQ先生-谁知道领队的苦与累,http://em.21dtv.com/songs/60145906.mkv +KELLY CLARKSON-MEANING OF LIFE,http://em.21dtv.com/songs/60145905.mkv +JW-你带着我的青春离去,http://em.21dtv.com/songs/60145904.mkv +JUDE-SICK OF YOU,http://em.21dtv.com/songs/60145903.mkv +JOHN PARK-命运般,http://em.21dtv.com/songs/60145902.mkv +JKAI-超进化物语,http://em.21dtv.com/songs/60145901.mkv +JKAI-没有谁记得,http://em.21dtv.com/songs/60145900.mkv +J.SHEON+ALIN-你点的歌救了我,http://em.21dtv.com/songs/60145899.mkv +HOOP圈圈-音乐教室,http://em.21dtv.com/songs/60145898.mkv +GNZ48-蠢蠢,http://em.21dtv.com/songs/60145897.mkv +GNZ48-SAY NO,http://em.21dtv.com/songs/60145896.mkv +GAI+祖海-好运来,http://em.21dtv.com/songs/60145895.mkv +FLUX-东京大夜逃,http://em.21dtv.com/songs/60145894.mkv +EVANESCENCE-IMPERFECTION,http://em.21dtv.com/songs/60145892.mkv +DOUBLE K-CYPHER,http://em.21dtv.com/songs/60145891.mkv +DELTA GOODREM-POSSESSIONLESS,http://em.21dtv.com/songs/60145890.mkv +DEAR JANE-也许我不会活多一岁,http://em.21dtv.com/songs/60145889.mkv +CRITTY-明月故里,http://em.21dtv.com/songs/60145888.mkv +CORE ONE-MY WORD,http://em.21dtv.com/songs/60145886.mkv +COOKIE GIRLS-爱疯的我,http://em.21dtv.com/songs/60145885.mkv +CLARIS-SHIORI,http://em.21dtv.com/songs/60145884.mkv +CHERRY璐璐-卑微者,http://em.21dtv.com/songs/60145883.mkv +CHARLIE PUTH-HOW LONG,http://em.21dtv.com/songs/60145882.mkv +CELINE DION-ONE HEART,http://em.21dtv.com/songs/60145881.mkv +C ALLSTAR-此刻无价,http://em.21dtv.com/songs/60145880.mkv +BOYSANDGIRLS组合-画梦,http://em.21dtv.com/songs/60145879.mkv +BIHAO-陪着你,http://em.21dtv.com/songs/60145877.mkv +BIHAO-看,http://em.21dtv.com/songs/60145876.mkv +BIHAO-明明,http://em.21dtv.com/songs/60145875.mkv +BIGDOG王可-继续,http://em.21dtv.com/songs/60145874.mkv +BEJ48-百变惊叹号,http://em.21dtv.com/songs/60145873.mkv +BEJ48-光芒,http://em.21dtv.com/songs/60145872.mkv +BC221-如果你能感同我的身受,http://em.21dtv.com/songs/60145871.mkv +AZA微唱团-从别后,http://em.21dtv.com/songs/60145870.mkv +ANNALISA-DIREZIONE LA VITA,http://em.21dtv.com/songs/60145869.mkv +ALEX-首都机场,http://em.21dtv.com/songs/60145868.mkv +AKI阿杰-闲云志,http://em.21dtv.com/songs/60145866.mkv +AFTER10-层压时代,http://em.21dtv.com/songs/60145865.mkv +A LIN+妖精放了我爷爷-DON'T BREAK MY HEART,http://em.21dtv.com/songs/60145864.mkv +A LIN-光之海,http://em.21dtv.com/songs/60145863.mkv +A LIN-伤痕,http://em.21dtv.com/songs/60145862.mkv +3ASIC+JONY J-套路,http://em.21dtv.com/songs/60145861.mkv +1931组合-FEELING GOOD,http://em.21dtv.com/songs/60145860.mkv +何必在乎我是谁-虎口脱险,http://em.21dtv.com/songs/60145859.mkv +龚宏-黑键,http://em.21dtv.com/songs/60145858.mkv +龚宏-小孩,http://em.21dtv.com/songs/60145857.mkv +龙飘飘-我没醉,http://em.21dtv.com/songs/60145856.mkv +龙梅子-离别的眼泪,http://em.21dtv.com/songs/60145855.mkv +龙奔-扪心自问,http://em.21dtv.com/songs/60145854.mkv +龙奔-埋在心里的痛,http://em.21dtv.com/songs/60145853.mkv +齐秦-乖,http://em.21dtv.com/songs/60145852.mkv +齐晨-我爱你,http://em.21dtv.com/songs/60145851.mkv +黑卓-趿拉板鞋,http://em.21dtv.com/songs/60145850.mkv +黎朝霞-思念,http://em.21dtv.com/songs/60145849.mkv +黎明-遇见,http://em.21dtv.com/songs/60145848.mkv +黄韵玲+肖凯晔-生命中的精灵,http://em.21dtv.com/songs/60145847.mkv +黄韵玲+古洁縈-喜欢你现在的样子,http://em.21dtv.com/songs/60145846.mkv +黄路梓茵-全都给你了,http://em.21dtv.com/songs/60145845.mkv +黄路梓茵-倒霉农场,http://em.21dtv.com/songs/60145844.mkv +黄荣猷-继续重聚,http://em.21dtv.com/songs/60145843.mkv +黄舒行-孤独,http://em.21dtv.com/songs/60145842.mkv +黄美珍-旋转木马的独白,http://em.21dtv.com/songs/60145841.mkv +黄淑惠-危险世界,http://em.21dtv.com/songs/60145840.mkv +黄汐源-半明半暗,http://em.21dtv.com/songs/60145839.mkv +黄明志-啪啪啪,http://em.21dtv.com/songs/60145838.mkv +黄小琥-坦白,http://em.21dtv.com/songs/60145837.mkv +黄宇-你是我永远放不下的缘,http://em.21dtv.com/songs/60145836.mkv +黄子韬-想成为你,http://em.21dtv.com/songs/60145835.mkv +黄婷婷-黑夜女神,http://em.21dtv.com/songs/60145834.mkv +黄姗姗-盛夏,http://em.21dtv.com/songs/60145833.mkv +黄伟霖+郭少轩-寂寞魂,http://em.21dtv.com/songs/60145832.mkv +黄伟霖-残月,http://em.21dtv.com/songs/60145831.mkv +黄伟霖-MY LOVE,http://em.21dtv.com/songs/60145830.mkv +黄云龙-诸葛说,http://em.21dtv.com/songs/60145829.mkv +鹿晗-追梦赤子心,http://em.21dtv.com/songs/60145828.mkv +鹏涛-默守情缘,http://em.21dtv.com/songs/60145827.mkv +鸿雁-大喜的日子,http://em.21dtv.com/songs/60145826.mkv +魏菲儿-谷雨承康,http://em.21dtv.com/songs/60145825.mkv +魏小也-太平公主,http://em.21dtv.com/songs/60145824.mkv +魏妙如-妙不可言,http://em.21dtv.com/songs/60145823.mkv +魏如萱+杜星萤-末路狂花,http://em.21dtv.com/songs/60145822.mkv +魏佳艺-不正经姑娘,http://em.21dtv.com/songs/60145821.mkv +高进-靠自己,http://em.21dtv.com/songs/60145820.mkv +高翊菲-泸沽湖的女儿,http://em.21dtv.com/songs/60145819.mkv +高敏-辉腾锡勒请你来,http://em.21dtv.com/songs/60145818.mkv +高安-勿忘我,http://em.21dtv.com/songs/60145817.mkv +高一清-不若相见,http://em.21dtv.com/songs/60145816.mkv +驴嫂单良-我想陪你一起走到老,http://em.21dtv.com/songs/60145815.mkv +马昕-如果爱情是海,http://em.21dtv.com/songs/60145814.mkv +马旗-警卫兵最忠诚,http://em.21dtv.com/songs/60145813.mkv +马旗-小小的哨所,http://em.21dtv.com/songs/60145812.mkv +马文吉-用尽一生去爱你,http://em.21dtv.com/songs/60145811.mkv +马宥熙-最好的前任,http://em.21dtv.com/songs/60145810.mkv +马嘉瞳+田正-愁人的青春,http://em.21dtv.com/songs/60145809.mkv +马向雷-寂寞的夜里我不能入睡,http://em.21dtv.com/songs/60145808.mkv +马伯骞-触不可及,http://em.21dtv.com/songs/60145807.mkv +马伯骞-我该走了 2.0,http://em.21dtv.com/songs/60145806.mkv +马伯骞-NO DIFFERENCE,http://em.21dtv.com/songs/60145805.mkv +馨天优组合-拉手手亲口口,http://em.21dtv.com/songs/60145804.mkv +馨天优组合-我想你,http://em.21dtv.com/songs/60145803.mkv +馨天优组合-一对对鸳鸯水上漂,http://em.21dtv.com/songs/60145802.mkv +香香-落差,http://em.21dtv.com/songs/60145801.mkv +风语-水烟隔千城,http://em.21dtv.com/songs/60145800.mkv +颜铭蔚-华佗,http://em.21dtv.com/songs/60145799.mkv +韩笙笙-看得见寂寞,http://em.21dtv.com/songs/60145798.mkv +韩磊-我站立的地方是中国,http://em.21dtv.com/songs/60145797.mkv +韩帅-小鸟,http://em.21dtv.com/songs/60145796.mkv +韩宝仪-一曲相思唱不完,http://em.21dtv.com/songs/60145795.mkv +韩子豪-词人歌者,http://em.21dtv.com/songs/60145794.mkv +鞠红川+唐伯虎-当你老了,http://em.21dtv.com/songs/60145793.mkv +鞠红川+唐伯虎-FALLING SLOWLY,http://em.21dtv.com/songs/60145792.mkv +非明荣-一路唱到天安门,http://em.21dtv.com/songs/60145791.mkv +青柠乐队-星光,http://em.21dtv.com/songs/60145790.mkv +雷雨哥-夕爱,http://em.21dtv.com/songs/60145789.mkv +雷生冬-喝了这杯酒,http://em.21dtv.com/songs/60145788.mkv +雷佳-水墨中国,http://em.21dtv.com/songs/60145787.mkv +雷佳-春蚕,http://em.21dtv.com/songs/60145786.mkv +雨露-天长地久只是传说,http://em.21dtv.com/songs/60145785.mkv +雨霏-爸妈是我心中的天,http://em.21dtv.com/songs/60145784.mkv +雨霏-春暖花开,http://em.21dtv.com/songs/60145783.mkv +雨霏-我要陪你变老,http://em.21dtv.com/songs/60145782.mkv +雨霏-失去爱情错过你,http://em.21dtv.com/songs/60145781.mkv +陶醉+白水鉴心-情愿在爱中沦陷,http://em.21dtv.com/songs/60145779.mkv +陶辚竹-争奇斗艳,http://em.21dtv.com/songs/60145778.mkv +陶喆+水汪汪的大眼睛-当爱已成往事,http://em.21dtv.com/songs/60145777.mkv +陶喆-黑色星期二,http://em.21dtv.com/songs/60145776.mkv +陶喆-她来听我的演唱会,http://em.21dtv.com/songs/60145775.mkv +降央卓玛-这里,http://em.21dtv.com/songs/60145774.mkv +陈骁-闪耀,http://em.21dtv.com/songs/60145773.mkv +陈骁-女模头,http://em.21dtv.com/songs/60145772.mkv +陈飞鸿-我从春风中走来,http://em.21dtv.com/songs/60145771.mkv +陈零九+郭雪芙-阿不然现在是怎样,http://em.21dtv.com/songs/60145770.mkv +陈雅森+高飞-亲爱的让我爱上你,http://em.21dtv.com/songs/60145769.mkv +陈雅森+向银莹-如果我们老了,http://em.21dtv.com/songs/60145768.mkv +你有酒吗,http://em.21dtv.com/songs/60145767.mkv +陈辉权-披头四,http://em.21dtv.com/songs/60145766.mkv +陈美缘-美好缘分,http://em.21dtv.com/songs/60145765.mkv +陈珊妮-他是末日预言中的宇宙碎片,http://em.21dtv.com/songs/60145764.mkv +陈珊妮-乱码,http://em.21dtv.com/songs/60145763.mkv +陈牧耶-我喜欢你,http://em.21dtv.com/songs/60145762.mkv +陈波+张健雄-手机外套,http://em.21dtv.com/songs/60145761.mkv +陈治-就是热,http://em.21dtv.com/songs/60145760.mkv +陈楚生+SPY.C-空,http://em.21dtv.com/songs/60145759.mkv +陈楚生-渺小,http://em.21dtv.com/songs/60145758.mkv +陈柏宇-砖头,http://em.21dtv.com/songs/60145757.mkv +陈晓东-不唱情歌,http://em.21dtv.com/songs/60145756.mkv +陈惠婷-纯爱世代X,http://em.21dtv.com/songs/60145754.mkv +陈怡婷-风中的花蕊,http://em.21dtv.com/songs/60145753.mkv +陈怡婷-美丽纯情梦,http://em.21dtv.com/songs/60145752.mkv +陈怡婷-爱我万万年,http://em.21dtv.com/songs/60145751.mkv +陈怡婷-孤恋花开,http://em.21dtv.com/songs/60145750.mkv +陈岩-绝情的邂逅II,http://em.21dtv.com/songs/60145749.mkv +陈尚依+李天平-玄奘,http://em.21dtv.com/songs/60145748.mkv +陈姿-我们都叫刘铭传,http://em.21dtv.com/songs/60145747.mkv +陈咏-霸王情歌,http://em.21dtv.com/songs/60145746.mkv +陈升-穗花,http://em.21dtv.com/songs/60145745.mkv +陈升-浮云车站,http://em.21dtv.com/songs/60145744.mkv +陈升-昨天 今天 明天,http://em.21dtv.com/songs/60145743.mkv +陈升-归乡,http://em.21dtv.com/songs/60145742.mkv +陈升-61号省道,http://em.21dtv.com/songs/60145741.mkv +陈冠希-爽,http://em.21dtv.com/songs/60145739.mkv +陈乘-爱在光年外,http://em.21dtv.com/songs/60145738.mkv +陆依-男儿心中一团火,http://em.21dtv.com/songs/60145737.mkv +陆依-牛气,http://em.21dtv.com/songs/60145736.mkv +阿郎-赤子的心,http://em.21dtv.com/songs/60145734.mkv +阿郎-昔日情怀,http://em.21dtv.com/songs/60145733.mkv +阿来-天亮之后,http://em.21dtv.com/songs/60145732.mkv +阿杜-为爱投降,http://em.21dtv.com/songs/60145730.mkv +阿权-司机哥们,http://em.21dtv.com/songs/60145729.mkv +阿旺-五节酒之歌,http://em.21dtv.com/songs/60145728.mkv +阿斯根-帕玛,http://em.21dtv.com/songs/60145727.mkv +阿影-追梦的女孩,http://em.21dtv.com/songs/60145726.mkv +阿影-谢谢你陪我这一程,http://em.21dtv.com/songs/60145725.mkv +阿影-我一直都有一种勇气,http://em.21dtv.com/songs/60145724.mkv +阿影-写首情歌给自己,http://em.21dtv.com/songs/60145723.mkv +阿彬哥+何馨-今生爱人,http://em.21dtv.com/songs/60145722.mkv +阿力普-GVLSEYDIXAN,http://em.21dtv.com/songs/60145720.mkv +阿云嘎-蒙古香,http://em.21dtv.com/songs/60145719.mkv +阎维文-人民在我心中,http://em.21dtv.com/songs/60145717.mkv +阎维文-一起为祖国,http://em.21dtv.com/songs/60145716.mkv +闵厚权-相爱十年生日快乐,http://em.21dtv.com/songs/60145715.mkv +闲不住的铁娘子+没朋友的球鞋侠-屋顶,http://em.21dtv.com/songs/60145714.mkv +闲不住的铁娘子-眼泪,http://em.21dtv.com/songs/60145713.mkv +闫宗清-汉子谣,http://em.21dtv.com/songs/60145712.mkv +门丽-美的不要不要的,http://em.21dtv.com/songs/60145711.mkv +门丽-三生石上,http://em.21dtv.com/songs/60145710.mkv +长江商学院EMBA27期三班-长江毕业歌,http://em.21dtv.com/songs/60145709.mkv +钟盛忠+钟晓玉-还爱着你,http://em.21dtv.com/songs/60145708.mkv +钟盛忠+钟晓玉-我们在一起好吗,http://em.21dtv.com/songs/60145707.mkv +钟易轩+廖俊涛-I WILL MISS YOU,http://em.21dtv.com/songs/60145705.mkv +钟丽燕-清明,http://em.21dtv.com/songs/60145704.mkv +钟丽燕-匆匆那年,http://em.21dtv.com/songs/60145703.mkv +钟SIR+圆梦俊情小歌手-荷花仙子,http://em.21dtv.com/songs/60145702.mkv +金志文+徐佳莹-远走高飞,http://em.21dtv.com/songs/60145701.mkv +金南玲-二月,http://em.21dtv.com/songs/60145700.mkv +郭笑-一年以后,http://em.21dtv.com/songs/60145699.mkv +郭沁-船歌,http://em.21dtv.com/songs/60145698.mkv +郭少杰-只有你最懂,http://em.21dtv.com/songs/60145696.mkv +郭娅丽-我的陕北我的梦,http://em.21dtv.com/songs/60145695.mkv +郝婉彤-完整的残缺,http://em.21dtv.com/songs/60145694.mkv +郑顺鹏-回忆那些年,http://em.21dtv.com/songs/60145693.mkv +郑晓填-喝醉,http://em.21dtv.com/songs/60145692.mkv +郑恺-我怀念的,http://em.21dtv.com/songs/60145690.mkv +郑思雨-四季的秘密,http://em.21dtv.com/songs/60145689.mkv +郑建鹏+阿细-告白气球,http://em.21dtv.com/songs/60145688.mkv +郑延-爱你不会改变,http://em.21dtv.com/songs/60145687.mkv +郑俊峰+姜晓东+张磊-梦想的光芒,http://em.21dtv.com/songs/60145686.mkv +邵滢-早该如此,http://em.21dtv.com/songs/60145685.mkv +邵洪-预约,http://em.21dtv.com/songs/60145684.mkv +邵洪-预约,http://em.21dtv.com/songs/60145683.mkv +邵明明-无法回头的爱情,http://em.21dtv.com/songs/60145682.mkv +邵峰-到我怀里来,http://em.21dtv.com/songs/60145681.mkv +邵可然-意人宴,http://em.21dtv.com/songs/60145680.mkv +邱锋泽-经典对白,http://em.21dtv.com/songs/60145679.mkv +邱锋泽-再不然,http://em.21dtv.com/songs/60145678.mkv +邱芸子+邱贤桂-世间情路,http://em.21dtv.com/songs/60145677.mkv +邱芸子+李明洋-茶酒恋,http://em.21dtv.com/songs/60145676.mkv +邱芸子-酒摊相逢,http://em.21dtv.com/songs/60145675.mkv +邱芸子-留恋的心,http://em.21dtv.com/songs/60145674.mkv +邱芸子-玫瑰舞台,http://em.21dtv.com/songs/60145673.mkv +邱芸子-爱情诗,http://em.21dtv.com/songs/60145672.mkv +邱芸子-水中花,http://em.21dtv.com/songs/60145671.mkv +邱芸子-放阮做你走,http://em.21dtv.com/songs/60145670.mkv +邱芸子-幸福的毒,http://em.21dtv.com/songs/60145669.mkv +邱芸子-伴嫁,http://em.21dtv.com/songs/60145668.mkv +邪让多杰-备胎之王,http://em.21dtv.com/songs/60145667.mkv +那对夫妻-父母,http://em.21dtv.com/songs/60145666.mkv +邓鸣璐-舞翔,http://em.21dtv.com/songs/60145665.mkv +邓童天-飘,http://em.21dtv.com/songs/60145664.mkv +邓童天-日出东方,http://em.21dtv.com/songs/60145663.mkv +邓童天-唱得幸福来,http://em.21dtv.com/songs/60145662.mkv +邓童天-侠骨柔情,http://em.21dtv.com/songs/60145661.mkv +邓文怡+邓力玮-成都,http://em.21dtv.com/songs/60145660.mkv +邓文怡+邓力玮-光阴的故事,http://em.21dtv.com/songs/60145659.mkv +邓文怡-童年最美丽,http://em.21dtv.com/songs/60145658.mkv +邓小龙-演员,http://em.21dtv.com/songs/60145657.mkv +邓子辰-我就是我,http://em.21dtv.com/songs/60145656.mkv +邓咏家-针线缘,http://em.21dtv.com/songs/60145655.mkv +邓咏家-导演,http://em.21dtv.com/songs/60145654.mkv +逃跑计划-重来,http://em.21dtv.com/songs/60145653.mkv +连诗雅+侧田-不甘示弱,http://em.21dtv.com/songs/60145652.mkv +达布希勒图-达尔文,http://em.21dtv.com/songs/60145651.mkv +辉子+辛巴-AIRMATE,http://em.21dtv.com/songs/60145650.mkv +轻云望月-求你给我一点爱,http://em.21dtv.com/songs/60145649.mkv +车建光-给你全部,http://em.21dtv.com/songs/60145648.mkv +路逍遥-陪你说说话,http://em.21dtv.com/songs/60145647.mkv +路逍遥-老婆你是我心中的玫瑰,http://em.21dtv.com/songs/60145646.mkv +路逍遥-爱了痛了笑了哭,http://em.21dtv.com/songs/60145645.mkv +路逍遥-我坚信,http://em.21dtv.com/songs/60145644.mkv +路逍遥-我们是永远的好兄弟,http://em.21dtv.com/songs/60145643.mkv +路逍遥-宝贝嫁给我吧,http://em.21dtv.com/songs/60145642.mkv +路逍遥-中国中国,http://em.21dtv.com/songs/60145641.mkv +路勇-难道秋天就是用来思念,http://em.21dtv.com/songs/60145640.mkv +路勇-菩提树下,http://em.21dtv.com/songs/60145639.mkv +赵鑫-男人好累,http://em.21dtv.com/songs/60145638.mkv +赵真+莫力达瓦98战友-我的战友我的好兄弟,http://em.21dtv.com/songs/60145637.mkv +赵真-月儿圆念双亲,http://em.21dtv.com/songs/60145636.mkv +赵熙贝-双鱼处女座,http://em.21dtv.com/songs/60145635.mkv +赵景春-放歌大三江,http://em.21dtv.com/songs/60145634.mkv +赵景春-我是南海人,http://em.21dtv.com/songs/60145633.mkv +赵景春-冰雪圆舞曲,http://em.21dtv.com/songs/60145632.mkv +赵奕欢-TOMORROW,http://em.21dtv.com/songs/60145631.mkv +赵天宇+孟子坤-红尘客栈,http://em.21dtv.com/songs/60145630.mkv +赵天宇-CITY OF STARS,http://em.21dtv.com/songs/60145629.mkv +赤龙-我是真的不愿放开你的手,http://em.21dtv.com/songs/60145628.mkv +赖辉-客家人系有料,http://em.21dtv.com/songs/60145627.mkv +贾玲+方磊-依兰爱情故事,http://em.21dtv.com/songs/60145626.mkv +贾爱国+张献仁-奉天逍遥,http://em.21dtv.com/songs/60145625.mkv +贾剑龙-过客,http://em.21dtv.com/songs/60145624.mkv +贺敬轩-飞逝的季节,http://em.21dtv.com/songs/60145623.mkv +贺一航-相思的愁,http://em.21dtv.com/songs/60145622.mkv +费玉清-梦诛缘锁清秋,http://em.21dtv.com/songs/60145621.mkv +贯诗钦-你,http://em.21dtv.com/songs/60145620.mkv +谭维维-行走在茫茫月光的中间,http://em.21dtv.com/songs/60145619.mkv +谭晶-风从南海来,http://em.21dtv.com/songs/60145618.mkv +谢知言-放飞梦想,http://em.21dtv.com/songs/60145617.mkv +谢宇轩-醉扬州,http://em.21dtv.com/songs/60145616.mkv +谢作健-谢氏辉煌,http://em.21dtv.com/songs/60145615.mkv +谢中杰-死了都要爱,http://em.21dtv.com/songs/60145614.mkv +谢中杰-小苹果,http://em.21dtv.com/songs/60145613.mkv +谈诗玲+杨哲-陪伴阮身边,http://em.21dtv.com/songs/60145612.mkv +谈诗玲-虎头埤之恋,http://em.21dtv.com/songs/60145611.mkv +谈诗玲-破碎心嘛无人管,http://em.21dtv.com/songs/60145610.mkv +谈诗玲-爱甲这呢雄,http://em.21dtv.com/songs/60145609.mkv +谈诗玲-有梦一路陪,http://em.21dtv.com/songs/60145608.mkv +谈诗玲-有外爱,http://em.21dtv.com/songs/60145607.mkv +谈诗玲-心的锁匙,http://em.21dtv.com/songs/60145606.mkv +谈诗玲-今夜呼阮为你醉,http://em.21dtv.com/songs/60145605.mkv +诶姆-高温下的巧克力,http://em.21dtv.com/songs/60145604.mkv +许鹤缤-永恒魔法,http://em.21dtv.com/songs/60145603.mkv +许魏洲-那又怎样,http://em.21dtv.com/songs/60145602.mkv +许魏洲-时光之墟,http://em.21dtv.com/songs/60145601.mkv +许馨文+ALEX HONG-IN THE ZONE,http://em.21dtv.com/songs/60145600.mkv +许飞+姚晨-一些规律,http://em.21dtv.com/songs/60145599.mkv +许飞-老男人,http://em.21dtv.com/songs/60145598.mkv +许飞-我就是个谜,http://em.21dtv.com/songs/60145597.mkv +许飞-如果你想做一些别人做不到的事,http://em.21dtv.com/songs/60145596.mkv +许靖韵-琢磨,http://em.21dtv.com/songs/60145595.mkv +许霖-大结局,http://em.21dtv.com/songs/60145594.mkv +许蕴熙-一把雨伞,http://em.21dtv.com/songs/60145593.mkv +许耀奇-中国好妈妈,http://em.21dtv.com/songs/60145592.mkv +许歌淳一-萤火虫对星星说,http://em.21dtv.com/songs/60145591.mkv +许廷铿-神奇之旅,http://em.21dtv.com/songs/60145590.mkv +许巍-四季,http://em.21dtv.com/songs/60145589.mkv +许大伟-兄弟有我,http://em.21dtv.com/songs/60145587.mkv +许先-哑巴,http://em.21dtv.com/songs/60145586.mkv +许亮宇+梁祖仪-注定要分开,http://em.21dtv.com/songs/60145585.mkv +许亮宇-色盲,http://em.21dtv.com/songs/60145584.mkv +许一鸣-我如此爱你,http://em.21dtv.com/songs/60145583.mkv +覃源-到后来我才懂,http://em.21dtv.com/songs/60145582.mkv +覃浩-傻瓜,http://em.21dtv.com/songs/60145581.mkv +覃春泉-情控,http://em.21dtv.com/songs/60145580.mkv +袁莉媛-最灵,http://em.21dtv.com/songs/60145579.mkv +袁宇-开心的果实,http://em.21dtv.com/songs/60145578.mkv +袁娅维+艾福杰尼-一见如故,http://em.21dtv.com/songs/60145577.mkv +袁娅维+PG ONE-BURN,http://em.21dtv.com/songs/60145576.mkv +袁双洋+梁铖+郑敏-托起战鹰的翅膀,http://em.21dtv.com/songs/60145575.mkv +衡越+侯旭-秸杆颂歌,http://em.21dtv.com/songs/60145574.mkv +薛家燕-家中的太阳,http://em.21dtv.com/songs/60145573.mkv +薛凯琪-远远关心,http://em.21dtv.com/songs/60145572.mkv +薛凯琪-520,http://em.21dtv.com/songs/60145571.mkv +薛之谦+毛不易-一半,http://em.21dtv.com/songs/60145570.mkv +薛之谦-凤凰花千年恋,http://em.21dtv.com/songs/60145569.mkv +蔡晓+郑晓填-选择跟他走,http://em.21dtv.com/songs/60145567.mkv +蔡恩雨-I LOVE THE SKY,http://em.21dtv.com/songs/60145566.mkv +蔡宗强-不为谁而作的歌,http://em.21dtv.com/songs/60145565.mkv +蔡义德+澎恰恰-咱是一家人,http://em.21dtv.com/songs/60145564.mkv +蔡义德+戴梅君-将你惜命命,http://em.21dtv.com/songs/60145563.mkv +蔡义德-没你那有我,http://em.21dtv.com/songs/60145562.mkv +蔡义德-无理由,http://em.21dtv.com/songs/60145561.mkv +蔡义德-冲冲冲,http://em.21dtv.com/songs/60145560.mkv +蓝冰儿-欺爱,http://em.21dtv.com/songs/60145559.mkv +蒋舟+龚丹-大愿九华,http://em.21dtv.com/songs/60145558.mkv +蒋旭-伤了我还说爱我,http://em.21dtv.com/songs/60145557.mkv +蒋婴-爱那么近那么远,http://em.21dtv.com/songs/60145556.mkv +董育君-已读不回,http://em.21dtv.com/songs/60145555.mkv +董姿彦-我要你的爱,http://em.21dtv.com/songs/60145554.mkv +董冉-空荡荡的夜,http://em.21dtv.com/songs/60145553.mkv +葛倩吟-全世界的失眠患者,http://em.21dtv.com/songs/60145552.mkv +萧闳仁-爱哪里存在,http://em.21dtv.com/songs/60145551.mkv +萧闳仁-不忘春风,http://em.21dtv.com/songs/60145550.mkv +菲菲-爱难言,http://em.21dtv.com/songs/60145549.mkv +菲菲-梦中,http://em.21dtv.com/songs/60145548.mkv +莫日根-男人别哭,http://em.21dtv.com/songs/60145546.mkv +莫文蔚-I DO,http://em.21dtv.com/songs/60145545.mkv +荷兹HEZ-我和你的那年夏天,http://em.21dtv.com/songs/60145544.mkv +能和你遇到,http://em.21dtv.com/songs/60145543.mkv +荷兹-亡灵序曲,http://em.21dtv.com/songs/60145542.mkv +草屯囝仔+臭屁婴仔-放荡不羁,http://em.21dtv.com/songs/60145541.mkv +草东没有派对-山海,http://em.21dtv.com/songs/60145540.mkv +荆纯-野花,http://em.21dtv.com/songs/60145539.mkv +荆晶-小书包大梦想,http://em.21dtv.com/songs/60145538.mkv +茄子哥-茄子歌,http://em.21dtv.com/songs/60145537.mkv +范玮琪+宝宝翻身把歌唱-我要你,http://em.21dtv.com/songs/60145536.mkv +范玮琪-自己,http://em.21dtv.com/songs/60145535.mkv +范海荣-逐梦长江,http://em.21dtv.com/songs/60145534.mkv +苦鬼乐队-如此漫长的短暂,http://em.21dtv.com/songs/60145533.mkv +苏雨馨-红颜命,http://em.21dtv.com/songs/60145532.mkv +苏雅琪琪格-爱的火焰,http://em.21dtv.com/songs/60145531.mkv +苏运莹+孟子坤-午夜前的十分钟,http://em.21dtv.com/songs/60145530.mkv +苏立生-流着泪说分手,http://em.21dtv.com/songs/60145529.mkv +苏玮-雅丹,http://em.21dtv.com/songs/60145528.mkv +苏永康+李幸倪-和每天讲再见,http://em.21dtv.com/songs/60145527.mkv +苏永康-朦胧夜雨里,http://em.21dtv.com/songs/60145526.mkv +苏永康-也许,http://em.21dtv.com/songs/60145525.mkv +苏一音-我的小苏达,http://em.21dtv.com/songs/60145524.mkv +艾菲-GET OUT,http://em.21dtv.com/songs/60145523.mkv +艾歌-红红的日子,http://em.21dtv.com/songs/60145522.mkv +艾丽娅琪琪格-月光草原,http://em.21dtv.com/songs/60145521.mkv +艺枫-我还傻傻的爱着谁,http://em.21dtv.com/songs/60145520.mkv +艺枫-为伤心的人唱暖心的歌,http://em.21dtv.com/songs/60145519.mkv +舒米恩+FRAN法兰-眼泪不要掉下来,http://em.21dtv.com/songs/60145518.mkv +舒米恩-最初,http://em.21dtv.com/songs/60145517.mkv +舒米恩-十年,http://em.21dtv.com/songs/60145516.mkv +自然主义-我们是一家人,http://em.21dtv.com/songs/60145515.mkv +脆乐团-提醒,http://em.21dtv.com/songs/60145514.mkv +胡月+蒋舟-岚岛之蓝,http://em.21dtv.com/songs/60145513.mkv +胡月-白芽奇兰,http://em.21dtv.com/songs/60145512.mkv +胡彦斌+俺们屯的音乐大匠+哎呀我打翻了调色板-笨小孩,http://em.21dtv.com/songs/60145511.mkv +胡彦斌-小半,http://em.21dtv.com/songs/60145510.mkv +胡夏-青春遗言,http://em.21dtv.com/songs/60145509.mkv +胡夏-青春不停跑,http://em.21dtv.com/songs/60145508.mkv +肖竹沁-只为想他,http://em.21dtv.com/songs/60145506.mkv +肖环-我的梦里全是你,http://em.21dtv.com/songs/60145505.mkv +肖潇-爱太真伤太深,http://em.21dtv.com/songs/60145504.mkv +肖潇-守望流光,http://em.21dtv.com/songs/60145503.mkv +肖敏晔-MAD+给我一首歌的时间,http://em.21dtv.com/songs/60145502.mkv +肖康-大寿光,http://em.21dtv.com/songs/60145501.mkv +肖凯晔-至少还有你,http://em.21dtv.com/songs/60145500.mkv +肖凯晔-臭美,http://em.21dtv.com/songs/60145499.mkv +肖兵-不再是我的谁,http://em.21dtv.com/songs/60145498.mkv +耿志杰-一搭搭里,http://em.21dtv.com/songs/60145497.mkv +老鹰-博状元,http://em.21dtv.com/songs/60145496.mkv +老猫-伤不起2017,http://em.21dtv.com/songs/60145494.mkv +群星-那些花儿,http://em.21dtv.com/songs/60145493.mkv +群星-第一个雅皮士,http://em.21dtv.com/songs/60145492.mkv +群星-爸爸去哪儿,http://em.21dtv.com/songs/60145491.mkv +群星-日落大道,http://em.21dtv.com/songs/60145490.mkv +群星-完美坚持,http://em.21dtv.com/songs/60145489.mkv +群星-传承少年,http://em.21dtv.com/songs/60145488.mkv +群星-亲亲海思羽,http://em.21dtv.com/songs/60145487.mkv +羔羊-路上的幸福,http://em.21dtv.com/songs/60145486.mkv +羔羊-紫色天空,http://em.21dtv.com/songs/60145485.mkv +羔羊-月亮,http://em.21dtv.com/songs/60145484.mkv +罗永乾-专注,http://em.21dtv.com/songs/60145483.mkv +罗时丰-单向人生,http://em.21dtv.com/songs/60145482.mkv +罗时丰-为了什么,http://em.21dtv.com/songs/60145481.mkv +罗开元+余孟霏-那几年,http://em.21dtv.com/songs/60145480.mkv +大鹏+乔杉+小青龙-塑料袋,http://em.21dtv.com/songs/60145479.mkv +缝纫机乐队+小青龙-塑料袋,http://em.21dtv.com/songs/60145478.mkv +纪晓斌-人生若只如初见,http://em.21dtv.com/songs/60145477.mkv +红花乐团-有种爱,http://em.21dtv.com/songs/60145476.mkv +红朵-走遍天涯唱情歌,http://em.21dtv.com/songs/60145475.mkv +紫薇花儿-百合伞,http://em.21dtv.com/songs/60145474.mkv +紫洛蓝-下定决心忘记你,http://em.21dtv.com/songs/60145473.mkv +紫小俊ZAT-完结,http://em.21dtv.com/songs/60145472.mkv +紫依+默言-爱就一辈子,http://em.21dtv.com/songs/60145471.mkv +糯米-兄弟一起醉,http://em.21dtv.com/songs/60145470.mkv +粟紫妍-相守的季节,http://em.21dtv.com/songs/60145469.mkv +简弘亦-当过去只剩下这一声叹息,http://em.21dtv.com/songs/60145468.mkv +简兮-个性女郎,http://em.21dtv.com/songs/60145467.mkv +符致逸-终点之外,http://em.21dtv.com/songs/60145466.mkv +符致逸-I NEED YOUR LOVE,http://em.21dtv.com/songs/60145465.mkv +符美豪-送给妈妈的歌,http://em.21dtv.com/songs/60145464.mkv +程芷渝+白健恩-创伤,http://em.21dtv.com/songs/60145463.mkv +程芷渝+李紫昕+林雅诗+黄榕+郑伊娜-心想必应,http://em.21dtv.com/songs/60145462.mkv +程芷渝-GO GO GO,http://em.21dtv.com/songs/60145460.mkv +程学冰+西小贝-最美的地方,http://em.21dtv.com/songs/60145459.mkv +程响-不敢,http://em.21dtv.com/songs/60145458.mkv +秦选发-大凉山小会东,http://em.21dtv.com/songs/60145457.mkv +秦芹-等爱相逢,http://em.21dtv.com/songs/60145456.mkv +秦磊+亚楠-兄弟如酒,http://em.21dtv.com/songs/60145455.mkv +秦官-有些,http://em.21dtv.com/songs/60145454.mkv +秦宇子-小伞花,http://em.21dtv.com/songs/60145453.mkv +秦奋-痛爱,http://em.21dtv.com/songs/60145452.mkv +秦勇-无,http://em.21dtv.com/songs/60145451.mkv +科尔沁-爱在路上,http://em.21dtv.com/songs/60145450.mkv +秋裤大叔-梦在前方,http://em.21dtv.com/songs/60145449.mkv +秋裤大叔-一晃就老了,http://em.21dtv.com/songs/60145448.mkv +神马乐团-后来才知道,http://em.21dtv.com/songs/60145447.mkv +石咏莉-不愿一个人,http://em.21dtv.com/songs/60145446.mkv +眼睛魔-没你坚强,http://em.21dtv.com/songs/60145445.mkv +盛琰-好想天天有你陪伴,http://em.21dtv.com/songs/60145444.mkv +皖东阳光-我爱你亲爱的,http://em.21dtv.com/songs/60145443.mkv +白静-祝福长白山,http://em.21dtv.com/songs/60145442.mkv +白晓洋-陈靖姑,http://em.21dtv.com/songs/60145441.mkv +痛仰乐队-愿爱无忧,http://em.21dtv.com/songs/60145440.mkv +申菲-我的老同学,http://em.21dtv.com/songs/60145439.mkv +申明-中国生日快乐,http://em.21dtv.com/songs/60145438.mkv +田锋-腰鼓浪腰鼓美,http://em.21dtv.com/songs/60145437.mkv +田源+高进-原来,http://em.21dtv.com/songs/60145436.mkv +田晶妹-怪怪怪,http://em.21dtv.com/songs/60145435.mkv +田晟熙-我的世界你曾来过,http://em.21dtv.com/songs/60145434.mkv +田晟熙-壳,http://em.21dtv.com/songs/60145433.mkv +琴音儿-热爱的大草原,http://em.21dtv.com/songs/60145432.mkv +王铥铥-你在北京我在纽约,http://em.21dtv.com/songs/60145431.mkv +王金永-分手快乐,http://em.21dtv.com/songs/60145430.mkv +王跃禄-老爹老娘,http://em.21dtv.com/songs/60145429.mkv +王超-夜空的忧伤,http://em.21dtv.com/songs/60145428.mkv +王贺俊-歌手,http://em.21dtv.com/songs/60145427.mkv +王蓦骞-与爱同行,http://em.21dtv.com/songs/60145426.mkv +王莉+汤非-你飞过的天空真美,http://em.21dtv.com/songs/60145425.mkv +王立婷-神秘吸引,http://em.21dtv.com/songs/60145424.mkv +王立华-伤了不该伤害的人,http://em.21dtv.com/songs/60145423.mkv +王禾-远方那片花儿,http://em.21dtv.com/songs/60145422.mkv +王瑞淇-搭配,http://em.21dtv.com/songs/60145421.mkv +王玉玺-还我自由,http://em.21dtv.com/songs/60145419.mkv +王浩伦-淘汰的月球,http://em.21dtv.com/songs/60145418.mkv +王李陈-提琴与她,http://em.21dtv.com/songs/60145417.mkv +王李陈-你的轮廓,http://em.21dtv.com/songs/60145416.mkv +王明宇-老爸戒烟吧,http://em.21dtv.com/songs/60145415.mkv +王彦霖-白桦林,http://em.21dtv.com/songs/60145414.mkv +王庆爽-绿色,http://em.21dtv.com/songs/60145412.mkv +王庆爽-知己红颜,http://em.21dtv.com/songs/60145411.mkv +王庆爽-哥哥不来花不开,http://em.21dtv.com/songs/60145410.mkv +王平-山妹妹,http://em.21dtv.com/songs/60145409.mkv +王小荣-长江流过我家乡,http://em.21dtv.com/songs/60145408.mkv +王小荣-我们中国人,http://em.21dtv.com/songs/60145407.mkv +王家霖-老婆你最美,http://em.21dtv.com/songs/60145406.mkv +王子牛-远方,http://em.21dtv.com/songs/60145405.mkv +王奕心-爱情泡沫,http://em.21dtv.com/songs/60145404.mkv +王嘉诚-生日快乐歌,http://em.21dtv.com/songs/60145403.mkv +王嘉尔+马伯骞-PAPILLON,http://em.21dtv.com/songs/60145402.mkv +王嘉尔+GAI-PAPILLON,http://em.21dtv.com/songs/60145401.mkv +王嘉尔-巴比龙,http://em.21dtv.com/songs/60145400.mkv +王嘉尔-九州天空城,http://em.21dtv.com/songs/60145399.mkv +[Group] +groupName=十六万歌曲MV等 - 117 +王君馨-IF I BELIEVE,http://em.21dtv.com/songs/60145398.mkv +王可儿-敬酒不吃吃罚酒,http://em.21dtv.com/songs/60145397.mkv +王勇-念秋,http://em.21dtv.com/songs/60145396.mkv +王兮-心急吃不了热豆腐,http://em.21dtv.com/songs/60145395.mkv +王傲然-落单的候鸟,http://em.21dtv.com/songs/60145394.mkv +王乐汀-怕你为自己流泪,http://em.21dtv.com/songs/60145393.mkv +王丽达-我的祖国我的梦,http://em.21dtv.com/songs/60145391.mkv +王中龙-关帝颂,http://em.21dtv.com/songs/60145390.mkv +王中龙-万物崇道月圆宜春,http://em.21dtv.com/songs/60145389.mkv +王一然-SWEET DREAM,http://em.21dtv.com/songs/60145388.mkv +牛晓迪-要分开的是我,http://em.21dtv.com/songs/60145387.mkv +爱心觉罗.阿南-罂粟花的眼泪,http://em.21dtv.com/songs/60145386.mkv +爱啾-反面教材,http://em.21dtv.com/songs/60145385.mkv +爱发呆的红骑士+断肠人在天涯-用情,http://em.21dtv.com/songs/60145384.mkv +爱发呆的红骑士-一场游戏一场梦,http://em.21dtv.com/songs/60145383.mkv +爱乐团王超-夜空的忧伤,http://em.21dtv.com/songs/60145382.mkv +熊淑娇-你就是我最美的相遇,http://em.21dtv.com/songs/60145381.mkv +熊七梅-我爱的姑娘在草原,http://em.21dtv.com/songs/60145380.mkv +焦永辉-独生子女,http://em.21dtv.com/songs/60145379.mkv +热力组合-热力干将,http://em.21dtv.com/songs/60145378.mkv +热力组合-我们有一个信仰,http://em.21dtv.com/songs/60145377.mkv +热力组合-我们是热力供暖,http://em.21dtv.com/songs/60145376.mkv +炫棋儿-楷模两树情,http://em.21dtv.com/songs/60145375.mkv +炫棋儿-拿了就走,http://em.21dtv.com/songs/60145374.mkv +灵零乐队-梦开始的那年,http://em.21dtv.com/songs/60145373.mkv +灭火器乐团-长途夜车,http://em.21dtv.com/songs/60145372.mkv +火勒-辣员外,http://em.21dtv.com/songs/60145370.mkv +火勒-兄弟一起闯,http://em.21dtv.com/songs/60145369.mkv +潘玮柏-哑巴,http://em.21dtv.com/songs/60145368.mkv +潘柯夫-学着习惯,http://em.21dtv.com/songs/60145366.mkv +潘倩倩-约定,http://em.21dtv.com/songs/60145365.mkv +潇戈-伤心的人唱伤心的歌,http://em.21dtv.com/songs/60145364.mkv +潇公子-老铁,http://em.21dtv.com/songs/60145363.mkv +漠心藤+夕落-离开你没什么大不了,http://em.21dtv.com/songs/60145362.mkv +漠心藤-是啊我变了,http://em.21dtv.com/songs/60145361.mkv +温建林-想你我不烦,http://em.21dtv.com/songs/60145360.mkv +温力铭-SIAPA,http://em.21dtv.com/songs/60145359.mkv +清清-甜蜜的单相思,http://em.21dtv.com/songs/60145358.mkv +淘气的粉红女王+陈楚生-岁月神偷,http://em.21dtv.com/songs/60145357.mkv +涵昱-风水轶书,http://em.21dtv.com/songs/60145356.mkv +涵昱-桃花韵,http://em.21dtv.com/songs/60145355.mkv +涵昱-另类,http://em.21dtv.com/songs/60145354.mkv +涵昱-南山,http://em.21dtv.com/songs/60145353.mkv +海风-改写的剧情,http://em.21dtv.com/songs/60145352.mkv +海鑫-世界上最大的谎言就是你不行,http://em.21dtv.com/songs/60145351.mkv +海生-美好的年华,http://em.21dtv.com/songs/60145350.mkv +浩林-追逐我的梦,http://em.21dtv.com/songs/60145349.mkv +浩林-远去的身影,http://em.21dtv.com/songs/60145348.mkv +洪雨雷-初次见面,http://em.21dtv.com/songs/60145347.mkv +没朋友的球鞋侠-小幸运,http://em.21dtv.com/songs/60145346.mkv +沙宝亮-飘,http://em.21dtv.com/songs/60145345.mkv +沙宝亮-暗香,http://em.21dtv.com/songs/60145344.mkv +沙宝亮-只因为爱,http://em.21dtv.com/songs/60145343.mkv +沙宝亮-一声忧伤,http://em.21dtv.com/songs/60145342.mkv +沙宝亮-1314,http://em.21dtv.com/songs/60145341.mkv +汪苏泷-追光者,http://em.21dtv.com/songs/60145340.mkv +汪禹辰-喇叭花,http://em.21dtv.com/songs/60145339.mkv +汤非-雪还没有落下,http://em.21dtv.com/songs/60145338.mkv +汤非-笑看万水千山,http://em.21dtv.com/songs/60145337.mkv +汤非-淅川一高校歌,http://em.21dtv.com/songs/60145336.mkv +江莱恩+邱比比-超级玩咖,http://em.21dtv.com/songs/60145335.mkv +江美琪-看不见的星星,http://em.21dtv.com/songs/60145334.mkv +江美琪-亲爱的世界,http://em.21dtv.com/songs/60145333.mkv +江山-嘿SIRI,http://em.21dtv.com/songs/60145331.mkv +江山-偃师我爱你,http://em.21dtv.com/songs/60145330.mkv +水汪汪的大眼睛-到不了,http://em.21dtv.com/songs/60145329.mkv +毛雨张-烟火里的尘埃,http://em.21dtv.com/songs/60145328.mkv +毛不易+马伯骞-南一道街+NORTH HOLLYWOOD,http://em.21dtv.com/songs/60145326.mkv +毛不易-等,http://em.21dtv.com/songs/60145325.mkv +毛不易-深夜一角,http://em.21dtv.com/songs/60145324.mkv +毛不易-明天的孩子们,http://em.21dtv.com/songs/60145323.mkv +毛不易-故乡游,http://em.21dtv.com/songs/60145322.mkv +毛不易-借,http://em.21dtv.com/songs/60145321.mkv +毛不易-借,http://em.21dtv.com/songs/60145320.mkv +毛不易-IMAGINE,http://em.21dtv.com/songs/60145319.mkv +毕婕-罗定在哪里,http://em.21dtv.com/songs/60145318.mkv +毕婕-最美泷州,http://em.21dtv.com/songs/60145317.mkv +毕书尽-NOTHING AT ALL,http://em.21dtv.com/songs/60145315.mkv +段娟-阳光之歌,http://em.21dtv.com/songs/60145314.mkv +正能量组合-传奇庄河,http://em.21dtv.com/songs/60145313.mkv +正熙-勒索,http://em.21dtv.com/songs/60145312.mkv +歌声飞扬-爱到深处全是泪,http://em.21dtv.com/songs/60145311.mkv +歆小瑶-旧的事情,http://em.21dtv.com/songs/60145310.mkv +欧阳靖-零,http://em.21dtv.com/songs/60145309.mkv +欧阳靖-一起HAPPY2017,http://em.21dtv.com/songs/60145308.mkv +欧阳尚尚-生意兴隆,http://em.21dtv.com/songs/60145307.mkv +欧阳尚尚-别掉眼泪,http://em.21dtv.com/songs/60145306.mkv +欧美-火火的情歌,http://em.21dtv.com/songs/60145305.mkv +次仁央宗-林芝的春天,http://em.21dtv.com/songs/60145304.mkv +樊少华+唐薇-爱情的力量,http://em.21dtv.com/songs/60145303.mkv +樊君吉-匆匆,http://em.21dtv.com/songs/60145302.mkv +森美-在这世界看不够,http://em.21dtv.com/songs/60145301.mkv +梦然-不以为然,http://em.21dtv.com/songs/60145300.mkv +梦先生-苏丽+SUELY,http://em.21dtv.com/songs/60145299.mkv +梓赫-早说,http://em.21dtv.com/songs/60145298.mkv +梅朵措-舟曲呀罗,http://em.21dtv.com/songs/60145297.mkv +梅朵-温柔岁月,http://em.21dtv.com/songs/60145296.mkv +梅朵-柔软女人心,http://em.21dtv.com/songs/60145295.mkv +梅朵-如果最先遇到的人是我,http://em.21dtv.com/songs/60145294.mkv +梅朵-人到中年,http://em.21dtv.com/songs/60145293.mkv +梁皓筠-初恋日记,http://em.21dtv.com/songs/60145292.mkv +梁海洋-想你很久了,http://em.21dtv.com/songs/60145291.mkv +梁根荣+汪小敏-MISSING YOU,http://em.21dtv.com/songs/60145290.mkv +梁枫-大东北,http://em.21dtv.com/songs/60145289.mkv +梁晓宇+木杰+张海-火火中国龙,http://em.21dtv.com/songs/60145288.mkv +梁晓宇+木杰+张海-兄弟正能量,http://em.21dtv.com/songs/60145287.mkv +梁晓宇+木杰+张海-一起摇,http://em.21dtv.com/songs/60145286.mkv +梁文音-自然の颜,http://em.21dtv.com/songs/60145285.mkv +梁博+希林娜依·高-男孩,http://em.21dtv.com/songs/60145284.mkv +梁光榜-你还是从前的你吗,http://em.21dtv.com/songs/60145283.mkv +格格四爷组合-父亲,http://em.21dtv.com/songs/60145282.mkv +格子兮-枫林尽染,http://em.21dtv.com/songs/60145281.mkv +柳欢欢-此心无悔,http://em.21dtv.com/songs/60145280.mkv +柠洁-命运交响曲,http://em.21dtv.com/songs/60145279.mkv +柠洁-不要隐藏,http://em.21dtv.com/songs/60145278.mkv +林育品-我的爱情不平凡,http://em.21dtv.com/songs/60145277.mkv +林欣甫-十三月的雨,http://em.21dtv.com/songs/60145276.mkv +林德信-FIRELIGHT,http://em.21dtv.com/songs/60145275.mkv +林大晋-废虚,http://em.21dtv.com/songs/60145274.mkv +林大晋-单人舞,http://em.21dtv.com/songs/60145273.mkv +林听-其实我们都懂,http://em.21dtv.com/songs/60145272.mkv +林可昕-不知道,http://em.21dtv.com/songs/60145271.mkv +林保怡+刘美君-偷窥,http://em.21dtv.com/songs/60145270.mkv +杨颖慧-爸说,http://em.21dtv.com/songs/60145269.mkv +杨蔺-听听,http://em.21dtv.com/songs/60145268.mkv +杨玉和-女人不容易,http://em.21dtv.com/songs/60145267.mkv +杨溢升-EX,http://em.21dtv.com/songs/60145266.mkv +杨淑廉-入画,http://em.21dtv.com/songs/60145265.mkv +杨浩浩-忘掉还是记牢,http://em.21dtv.com/songs/60145264.mkv +杨梓文祺-等风等雨我等你,http://em.21dtv.com/songs/60145263.mkv +杨建文+顾时笙-花纹,http://em.21dtv.com/songs/60145262.mkv +杨小曼-骗我为何不骗到底,http://em.21dtv.com/songs/60145261.mkv +杨学峰-智会人生,http://em.21dtv.com/songs/60145260.mkv +杨奇煜-隐形超人,http://em.21dtv.com/songs/60145259.mkv +杨坤+黄渤-大叔也不错,http://em.21dtv.com/songs/60145258.mkv +杨坤-替身,http://em.21dtv.com/songs/60145257.mkv +杨坤-干了这杯波本,http://em.21dtv.com/songs/60145256.mkv +杨坤-分不开,http://em.21dtv.com/songs/60145255.mkv +杨千嬅+叶晓粤-平凡之路,http://em.21dtv.com/songs/60145254.mkv +杨千嬅+于梓贝-可惜我是水瓶座,http://em.21dtv.com/songs/60145253.mkv +杨军-一生一世都永远爱你,http://em.21dtv.com/songs/60145252.mkv +杨兴发-海大你欠我的,http://em.21dtv.com/songs/60145251.mkv +杨丽-愿做菩萨那朵莲,http://em.21dtv.com/songs/60145250.mkv +杨丞琳-青春住了谁,http://em.21dtv.com/songs/60145249.mkv +杨东伟-站台一别情成殇,http://em.21dtv.com/songs/60145248.mkv +杜怿超-WIOT,http://em.21dtv.com/songs/60145247.mkv +杜志宏-土豆歌,http://em.21dtv.com/songs/60145246.mkv +杜侑澎-那笑容是夏天的,http://em.21dtv.com/songs/60145245.mkv +杜侑澎-你是传奇,http://em.21dtv.com/songs/60145244.mkv +杜佳-让我怎么样,http://em.21dtv.com/songs/60145243.mkv +李郡一-塔拉诺特格,http://em.21dtv.com/songs/60145242.mkv +李达仁-如果说,http://em.21dtv.com/songs/60145241.mkv +李达仁-原来你,http://em.21dtv.com/songs/60145240.mkv +李萧萧-天凉好个秋,http://em.21dtv.com/songs/60145239.mkv +李荣浩+闫峻-演员和歌手,http://em.21dtv.com/songs/60145238.mkv +李荣浩+张泽-内疚,http://em.21dtv.com/songs/60145237.mkv +李荣浩-歌谣,http://em.21dtv.com/songs/60145236.mkv +李荣浩-我看着你的时候,http://em.21dtv.com/songs/60145235.mkv +李荣浩-如果有一天,http://em.21dtv.com/songs/60145234.mkv +李若希-追忆,http://em.21dtv.com/songs/60145233.mkv +李绍雄-蒹葭,http://em.21dtv.com/songs/60145232.mkv +李硕-位置,http://em.21dtv.com/songs/60145231.mkv +李瑨瑶-单行路,http://em.21dtv.com/songs/60145230.mkv +李智英-其实我们不该这样的,http://em.21dtv.com/songs/60145228.mkv +李晓舟-天堂里的哥哥,http://em.21dtv.com/songs/60145227.mkv +李旨伊-擦肩而过,http://em.21dtv.com/songs/60145226.mkv +李斯丹妮+周震南-YOU FEEL ME YA,http://em.21dtv.com/songs/60145225.mkv +李弘礼-一首歌,http://em.21dtv.com/songs/60145224.mkv +李建科-五龙圣境,http://em.21dtv.com/songs/60145223.mkv +李川HE-这是一种态度,http://em.21dtv.com/songs/60145222.mkv +李小马飞-虚伪的誓言,http://em.21dtv.com/songs/60145221.mkv +李小马飞-烟草的味道,http://em.21dtv.com/songs/60145220.mkv +李天平+杨玲龙+徐莞崎+蒋小雪-别让自己那么累,http://em.21dtv.com/songs/60145219.mkv +李克勤-谁最爱你,http://em.21dtv.com/songs/60145217.mkv +李佩玲-说,http://em.21dtv.com/songs/60145216.mkv +李书伟-四川老家,http://em.21dtv.com/songs/60145215.mkv +权施文-震业兴旺闯天涯,http://em.21dtv.com/songs/60145214.mkv +朴树-空帆船,http://em.21dtv.com/songs/60145213.mkv +朴树-狗屁青春,http://em.21dtv.com/songs/60145212.mkv +朴树-清白之年,http://em.21dtv.com/songs/60145211.mkv +再见,http://em.21dtv.com/songs/60145210.mkv +朴树-我去2000年,http://em.21dtv.com/songs/60145209.mkv +我,http://em.21dtv.com/songs/60145208.mkv +朴树-好好地,http://em.21dtv.com/songs/60145207.mkv +朴树-THE FEAR IN MY HEART,http://em.21dtv.com/songs/60145206.mkv +朴树-NEVER KNOWS TOMORROW,http://em.21dtv.com/songs/60145204.mkv +朴树-FOREVER YOUNG,http://em.21dtv.com/songs/60145203.mkv +ДО СВИДАНИЯ,http://em.21dtv.com/songs/60145202.mkv +朱朱+张志良-东方飞歌,http://em.21dtv.com/songs/60145201.mkv +朱文婷-别让梦醒来,http://em.21dtv.com/songs/60145200.mkv +朱俐静-反对眼泪,http://em.21dtv.com/songs/60145199.mkv +朱丽-大梦歌,http://em.21dtv.com/songs/60145198.mkv +望海高歌-爱那么近那么远,http://em.21dtv.com/songs/60145197.mkv +望海高歌-渴望你的爱,http://em.21dtv.com/songs/60145196.mkv +望海高歌-我还是从前的那个我,http://em.21dtv.com/songs/60145195.mkv +望海高歌-我的身边再也没有你,http://em.21dtv.com/songs/60145194.mkv +望海高歌-你给的永远有多远,http://em.21dtv.com/songs/60145193.mkv +望海高歌-两情相依心好甜,http://em.21dtv.com/songs/60145192.mkv +曾惜-不要你为难,http://em.21dtv.com/songs/60145191.mkv +曾之乔-亮了,http://em.21dtv.com/songs/60145190.mkv +曹雪-希望所有的人都快乐,http://em.21dtv.com/songs/60145189.mkv +曹芙嘉+陈苏威-忠诚,http://em.21dtv.com/songs/60145188.mkv +曹海波+万勇+唐巧林-好兄弟干一杯,http://em.21dtv.com/songs/60145187.mkv +曹格+陈苇廷-梁山伯与朱丽叶,http://em.21dtv.com/songs/60145186.mkv +曹格-甜蜜蜜,http://em.21dtv.com/songs/60145185.mkv +曹格-寂寞先生,http://em.21dtv.com/songs/60145184.mkv +曹格-不好吗,http://em.21dtv.com/songs/60145183.mkv +曹格-CLOSE TO YOU,http://em.21dtv.com/songs/60145182.mkv +曹格-3721+荷里活+起床歌,http://em.21dtv.com/songs/60145181.mkv +曹宇擎-圣歌,http://em.21dtv.com/songs/60145180.mkv +曲泉丞+周琼-有你足够,http://em.21dtv.com/songs/60145179.mkv +曲泉丞-泉水荷花,http://em.21dtv.com/songs/60145178.mkv +曲泉丞-有你足够,http://em.21dtv.com/songs/60145177.mkv +晨熙-昨夜的雨今夜的你,http://em.21dtv.com/songs/60145176.mkv +晨熙-我是一条受伤的鱼,http://em.21dtv.com/songs/60145175.mkv +晨熙-LET'S GO,http://em.21dtv.com/songs/60145174.mkv +晓月老板+孟慧圆-我们的故事从没钱开始,http://em.21dtv.com/songs/60145173.mkv +晓依+董升-927,http://em.21dtv.com/songs/60145172.mkv +晓依-928,http://em.21dtv.com/songs/60145171.mkv +昭宥-THE BLUE NIGHT OF JEJU ISLAND,http://em.21dtv.com/songs/60145170.mkv +易晓寒-倔强的未来,http://em.21dtv.com/songs/60145169.mkv +易小川-浪漫的乐章,http://em.21dtv.com/songs/60145168.mkv +易小川-心中的月亮,http://em.21dtv.com/songs/60145167.mkv +旺福-你少在那边,http://em.21dtv.com/songs/60145166.mkv +施蕴倪+郑杨妮+周恒莹+小圣哥-城隍爷,http://em.21dtv.com/songs/60145165.mkv +方磊-依兰爱情故事,http://em.21dtv.com/songs/60145164.mkv +方皓玟-UWILC,http://em.21dtv.com/songs/60145163.mkv +方玥-我喜欢你,http://em.21dtv.com/songs/60145162.mkv +新奇-今夜一杯酒,http://em.21dtv.com/songs/60145161.mkv +断肠人在天涯+周传雄-爱你,http://em.21dtv.com/songs/60145160.mkv +断肠人在天涯-一定要幸福,http://em.21dtv.com/songs/60145159.mkv +文龙-爱情渡口,http://em.21dtv.com/songs/60145158.mkv +拉玛大力-为何我们只是朋友,http://em.21dtv.com/songs/60145157.mkv +扎西华旦-我爱的姑娘叫卓玛,http://em.21dtv.com/songs/60145156.mkv +戴爱玲-懦弱,http://em.21dtv.com/songs/60145155.mkv +戴爱玲-以分手为前提,http://em.21dtv.com/songs/60145154.mkv +戴景耀+李凯馨-青春上演,http://em.21dtv.com/songs/60145153.mkv +我是赞助商派来的-背叛,http://em.21dtv.com/songs/60145152.mkv +我们白着呢+李荣浩-龙卷风,http://em.21dtv.com/songs/60145151.mkv +成龙+刘涛-普通人,http://em.21dtv.com/songs/60145150.mkv +成雨霏-大草原,http://em.21dtv.com/songs/60145149.mkv +成方圆-一路风情嘉年华,http://em.21dtv.com/songs/60145148.mkv +成方圆+熊汝霖-WHAT A WONDERFUL WORLD,http://em.21dtv.com/songs/60145147.mkv +成方圆-往日时光,http://em.21dtv.com/songs/60145145.mkv +成方圆-我的心里只有你没有他,http://em.21dtv.com/songs/60145144.mkv +成方圆-童年,http://em.21dtv.com/songs/60145143.mkv +成方圆-贝加尔湖畔,http://em.21dtv.com/songs/60145142.mkv +成方圆-我要你,http://em.21dtv.com/songs/60145141.mkv +憷小陌-我还傻傻的爱着谁,http://em.21dtv.com/songs/60145140.mkv +憷小陌-我的男闺蜜,http://em.21dtv.com/songs/60145139.mkv +惠沁-最美的守候,http://em.21dtv.com/songs/60145138.mkv +恩宠-做你的小猫咪,http://em.21dtv.com/songs/60145137.mkv +思卫-陌生天使,http://em.21dtv.com/songs/60145136.mkv +思卫-早知道的知道,http://em.21dtv.com/songs/60145135.mkv +徐誉滕-走心,http://em.21dtv.com/songs/60145134.mkv +徐良-上火星球,http://em.21dtv.com/songs/60145133.mkv +徐秉龙-鸽子,http://em.21dtv.com/songs/60145132.mkv +徐秉龙-失物招领,http://em.21dtv.com/songs/60145131.mkv +徐环-来不及爱你,http://em.21dtv.com/songs/60145130.mkv +徐江宝+李立楠-没人安慰也不能说累,http://em.21dtv.com/songs/60145129.mkv +徐晶晶-采桑子春,http://em.21dtv.com/songs/60145128.mkv +徐方艺-快乐的小精灵,http://em.21dtv.com/songs/60145127.mkv +徐彬彬-社会现象,http://em.21dtv.com/songs/60145126.mkv +徐彬彬-相濡以沫,http://em.21dtv.com/songs/60145125.mkv +徐彬彬-新孤枕难眠,http://em.21dtv.com/songs/60145124.mkv +彭韵豪-别来无恙,http://em.21dtv.com/songs/60145123.mkv +彭磊-尴尬的年纪,http://em.21dtv.com/songs/60145122.mkv +张韶涵+我是赞助商派来的-复刻回忆,http://em.21dtv.com/songs/60145121.mkv +张韶涵-是否爱过我,http://em.21dtv.com/songs/60145120.mkv +张靓颖+TIMBALAND-DUST MY SHOULDERS OFF,http://em.21dtv.com/songs/60145119.mkv +张靓颖+NE YO-ANGELS AND HARMONY,http://em.21dtv.com/songs/60145118.mkv +张超-一步青山一首歌,http://em.21dtv.com/songs/60145117.mkv +张萨-有你以后,http://em.21dtv.com/songs/60145116.mkv +张芝明-槐花盛开的季节,http://em.21dtv.com/songs/60145115.mkv +再见,http://em.21dtv.com/songs/60145114.mkv +张碧晨+赵天宇-白月光,http://em.21dtv.com/songs/60145113.mkv +张真-真爱,http://em.21dtv.com/songs/60145112.mkv +张烁-逆风奔跑,http://em.21dtv.com/songs/60145110.mkv +张炚瑩-回家的路,http://em.21dtv.com/songs/60145109.mkv +张澳-如烟,http://em.21dtv.com/songs/60145108.mkv +张泽-周大侠,http://em.21dtv.com/songs/60145107.mkv +张曼莉+陈辉权+梁天山+傅嘉威-大四喜,http://em.21dtv.com/songs/60145105.mkv +张智霖-算你狠,http://em.21dtv.com/songs/60145104.mkv +张明远-诚德之歌,http://em.21dtv.com/songs/60145103.mkv +张明远-美丽的姑娘,http://em.21dtv.com/songs/60145102.mkv +张明远-桃园三结义,http://em.21dtv.com/songs/60145101.mkv +张明远-天堂里的妈妈,http://em.21dtv.com/songs/60145100.mkv +张明远-三月的北京,http://em.21dtv.com/songs/60145099.mkv +张旭-我在淮南等你,http://em.21dtv.com/songs/60145098.mkv +张斌-阿曼尼 SHOW TIME,http://em.21dtv.com/songs/60145097.mkv +张敬轩+泳儿-带着梦飞翔,http://em.21dtv.com/songs/60145096.mkv +张惠-月亮望成小竹篮,http://em.21dtv.com/songs/60145095.mkv +张彬+珍惜-天定情缘,http://em.21dtv.com/songs/60145094.mkv +张家成-相思桃花雨,http://em.21dtv.com/songs/60145093.mkv +张婉清-因为单身的缘故,http://em.21dtv.com/songs/60145092.mkv +张天诚+阿旺-现在的我,http://em.21dtv.com/songs/60145091.mkv +张千里-流星,http://em.21dtv.com/songs/60145090.mkv +张冬玲-别让爱你的人掉眼泪,http://em.21dtv.com/songs/60145089.mkv +张健-一辈子陪着你,http://em.21dtv.com/songs/60145087.mkv +张信哲-见坏就收,http://em.21dtv.com/songs/60145086.mkv +张伟-我们是兄弟,http://em.21dtv.com/songs/60145085.mkv +张也-寻梦崀山,http://em.21dtv.com/songs/60145084.mkv +张三弥-隐形病症,http://em.21dtv.com/songs/60145083.mkv +廖媛-襄水河畔,http://em.21dtv.com/songs/60145082.mkv +庞龙-躲在心里的时光,http://em.21dtv.com/songs/60145081.mkv +庄振凯+杨静-床头梦,http://em.21dtv.com/songs/60145079.mkv +庄心妍-热恋过后,http://em.21dtv.com/songs/60145078.mkv +庄心妍-恨嫁,http://em.21dtv.com/songs/60145077.mkv +平安-变脸,http://em.21dtv.com/songs/60145076.mkv +常小宝-最爱宋小宝,http://em.21dtv.com/songs/60145075.mkv +席木梓-我相信,http://em.21dtv.com/songs/60145074.mkv +希林娜依·高-她来听我的演唱会,http://em.21dtv.com/songs/60145073.mkv +帅霖-我不甘心,http://em.21dtv.com/songs/60145072.mkv +布志纶-人在野,http://em.21dtv.com/songs/60145071.mkv +川妹子梅梅-猪哥哥爱上傻妹妹,http://em.21dtv.com/songs/60145070.mkv +川妹子梅梅-做个好男人吧,http://em.21dtv.com/songs/60145069.mkv +崔恕+方磊+杨蔺-美丽村庄,http://em.21dtv.com/songs/60145068.mkv +崔子格-百花残,http://em.21dtv.com/songs/60145067.mkv +崔健-迷失的季节,http://em.21dtv.com/songs/60145066.mkv +崔健-红旗下的蛋,http://em.21dtv.com/songs/60145065.mkv +崔健-滚动的蛋,http://em.21dtv.com/songs/60145064.mkv +崔健-最后一枪,http://em.21dtv.com/songs/60145063.mkv +崔健-农村包围城市,http://em.21dtv.com/songs/60145060.mkv +岳太阳-你是我的好媳妇,http://em.21dtv.com/songs/60145056.mkv +岳太阳-BABY我爱你,http://em.21dtv.com/songs/60145054.mkv +岳云鹏+好妹妹乐队-送情郎,http://em.21dtv.com/songs/60145053.mkv +尹正-一生所爱,http://em.21dtv.com/songs/60145052.mkv +尹晓芸-风吹麦浪,http://em.21dtv.com/songs/60145051.mkv +尹晓芸-青黄不接,http://em.21dtv.com/songs/60145050.mkv +尹晓芸-花之春晓,http://em.21dtv.com/songs/60145049.mkv +尹晓芸-SUPER WOMAN,http://em.21dtv.com/songs/60145048.mkv +尹姝贻-白夜,http://em.21dtv.com/songs/60145047.mkv +尤胤竣-中国好妈妈,http://em.21dtv.com/songs/60145046.mkv +尚思辰-我的夜太黑,http://em.21dtv.com/songs/60145045.mkv +尚思辰-你说,http://em.21dtv.com/songs/60145044.mkv +尚思辰-三生,http://em.21dtv.com/songs/60145043.mkv +小鱼-天生你是一个男儿,http://em.21dtv.com/songs/60145042.mkv +小青龙+孙八一-记录,http://em.21dtv.com/songs/60145041.mkv +小青龙-饿,http://em.21dtv.com/songs/60145040.mkv +小贱+泳儿-不要走太远,http://em.21dtv.com/songs/60145039.mkv +小缘-宇宙少女梦,http://em.21dtv.com/songs/60145038.mkv +小琢-心中的汤池,http://em.21dtv.com/songs/60145037.mkv +小琢-墨色,http://em.21dtv.com/songs/60145036.mkv +小潘-有没有这样的夜你也会想起我,http://em.21dtv.com/songs/60145035.mkv +小木-桑道轮回,http://em.21dtv.com/songs/60145034.mkv +小曾-等我从战场回来,http://em.21dtv.com/songs/60145033.mkv +小曾-我用准备打仗的方式致敬青春,http://em.21dtv.com/songs/60145032.mkv +小旭音乐-醉沙场,http://em.21dtv.com/songs/60145030.mkv +小旭乐团-百鬼传说,http://em.21dtv.com/songs/60145029.mkv +小旭PRO-幻想者,http://em.21dtv.com/songs/60145027.mkv +小旭AUV-中国茶,http://em.21dtv.com/songs/60145026.mkv +小小浩+阿夏-故事里没有你,http://em.21dtv.com/songs/60145025.mkv +小宇-不好过,http://em.21dtv.com/songs/60145024.mkv +小圣哥+谢雷-父子同心,http://em.21dtv.com/songs/60145022.mkv +小圣哥-聊聊聊,http://em.21dtv.com/songs/60145021.mkv +小圣哥-尚水的妈妈,http://em.21dtv.com/songs/60145019.mkv +小乐-为你停留,http://em.21dtv.com/songs/60145018.mkv +寂悸-手心里的宝,http://em.21dtv.com/songs/60145017.mkv +宵上淇-以为爱以为,http://em.21dtv.com/songs/60145016.mkv +宝宝翻身把歌唱+成方圆-夜夜夜夜,http://em.21dtv.com/songs/60145015.mkv +宝宝翻身把歌唱-你就不要想起我,http://em.21dtv.com/songs/60145014.mkv +宋秉洋-成都成都,http://em.21dtv.com/songs/60145013.mkv +宋晓峰-农安,http://em.21dtv.com/songs/60145012.mkv +宋孟君+阿夏-王者峡谷,http://em.21dtv.com/songs/60145011.mkv +宋夏婷-巴旦姆更爱新疆的家,http://em.21dtv.com/songs/60145010.mkv +宋伟峰-一直很想你,http://em.21dtv.com/songs/60145009.mkv +安那-踮脚尖,http://em.21dtv.com/songs/60145008.mkv +安又琪-勇敢爱,http://em.21dtv.com/songs/60145007.mkv +孟笑-高手,http://em.21dtv.com/songs/60145006.mkv +孟杨-你要做我的孙悟空,http://em.21dtv.com/songs/60145005.mkv +孟晓辉-有聚无散,http://em.21dtv.com/songs/60145004.mkv +孟晓辉-东沟雪,http://em.21dtv.com/songs/60145003.mkv +孟文豪+鲁璐-箜篌引,http://em.21dtv.com/songs/60145002.mkv +孟子坤-时间轴,http://em.21dtv.com/songs/60145001.mkv +孟子坤-十二月的奇迹,http://em.21dtv.com/songs/60145000.mkv +孙露-小小的太阳,http://em.21dtv.com/songs/60144999.mkv +孙露-伤了心的女人怎么了,http://em.21dtv.com/songs/60144997.mkv +孙阳荣-平顶山,http://em.21dtv.com/songs/60144996.mkv +孙钰皓-你离开身边,http://em.21dtv.com/songs/60144995.mkv +孙远志-爱像单行道,http://em.21dtv.com/songs/60144994.mkv +孙远志-拥抱不及外套,http://em.21dtv.com/songs/60144993.mkv +孙艺程-再看我一眼,http://em.21dtv.com/songs/60144992.mkv +孙艳-蓝玫瑰的眼泪,http://em.21dtv.com/songs/60144991.mkv +孙文-不顾一切爱你,http://em.21dtv.com/songs/60144989.mkv +孙文-一个人很爱一个人,http://em.21dtv.com/songs/60144988.mkv +孙怡-初见初恋,http://em.21dtv.com/songs/60144987.mkv +孙俪-忘不掉,http://em.21dtv.com/songs/60144985.mkv +孔兰兰-爱在草原,http://em.21dtv.com/songs/60144984.mkv +孔令奇+满舒克-REAL LIFE,http://em.21dtv.com/songs/60144983.mkv +子芙-青春,http://em.21dtv.com/songs/60144982.mkv +子芙-曼哈顿恋人,http://em.21dtv.com/songs/60144981.mkv +不见,http://em.21dtv.com/songs/60144980.mkv +婳诗诗-这个圣诞会下雪吗,http://em.21dtv.com/songs/60144979.mkv +姜欣欣-我很累但我无路可退,http://em.21dtv.com/songs/60144978.mkv +姚金桥-桥头恋歌,http://em.21dtv.com/songs/60144977.mkv +姚金桥-家的味道,http://em.21dtv.com/songs/60144976.mkv +姚琦+庄杨筱+唐佑林+金桂桂-朋友圈里有个孙中山,http://em.21dtv.com/songs/60144975.mkv +奶油糖CANDY CREAM组合-爱你,http://em.21dtv.com/songs/60144973.mkv +女孩与机器人+李权哲+方Q-自动导航,http://em.21dtv.com/songs/60144972.mkv +天籁天-你还是从前的你吗,http://em.21dtv.com/songs/60144971.mkv +天府事变-厉害了我的国,http://em.21dtv.com/songs/60144970.mkv +天喜果-如意郎君,http://em.21dtv.com/songs/60144969.mkv +大鹏-第一滴泪,http://em.21dtv.com/songs/60144967.mkv +大笑-我们不熟,http://em.21dtv.com/songs/60144966.mkv +大炜-坚强坚强,http://em.21dtv.com/songs/60144965.mkv +大炜-你就是一生的最爱,http://em.21dtv.com/songs/60144964.mkv +大海-如果当时能够勇敢,http://em.21dtv.com/songs/60144963.mkv +大张凡-熊猫火锅,http://em.21dtv.com/songs/60144962.mkv +大张伟+巫启贤+黎明-青春修炼手册,http://em.21dtv.com/songs/60144961.mkv +大张伟-我在诗里看到了你,http://em.21dtv.com/songs/60144960.mkv +大庆小芳-老冰棍儿,http://em.21dtv.com/songs/60144959.mkv +大庆小芳-我妈是我妈,http://em.21dtv.com/songs/60144958.mkv +大哲-三十出头,http://em.21dtv.com/songs/60144957.mkv +大合唱-星火,http://em.21dtv.com/songs/60144956.mkv +大冢爱-私,http://em.21dtv.com/songs/60144955.mkv +多元神话-财运滚滚来,http://em.21dtv.com/songs/60144954.mkv +夏菲儿-留不住爱情留不住你,http://em.21dtv.com/songs/60144953.mkv +夏侯钰涵-有你才有一个家,http://em.21dtv.com/songs/60144952.mkv +声音玩具-我有一个梦想,http://em.21dtv.com/songs/60144951.mkv +圈圈-海豚海,http://em.21dtv.com/songs/60144950.mkv +圈圈-释放,http://em.21dtv.com/songs/60144949.mkv +圈圈-约吗,http://em.21dtv.com/songs/60144948.mkv +嘉林-你不是我的谁,http://em.21dtv.com/songs/60144946.mkv +唐美华-月岩寻梦,http://em.21dtv.com/songs/60144945.mkv +哎呀我打翻了调色板-全世界谁倾听你,http://em.21dtv.com/songs/60144944.mkv +咪依鲁江+晟涵-真爱一对,http://em.21dtv.com/songs/60144943.mkv +咏峰-骆驼草,http://em.21dtv.com/songs/60144942.mkv +咏峰-爸爸妈妈,http://em.21dtv.com/songs/60144941.mkv +咏峰-好一个大中国,http://em.21dtv.com/songs/60144940.mkv +咏峰-儿女的好榜样,http://em.21dtv.com/songs/60144939.mkv +咏峰-不落的太阳,http://em.21dtv.com/songs/60144938.mkv +和楽器バンド-千本桜,http://em.21dtv.com/songs/60144937.mkv +周震南-JAIL,http://em.21dtv.com/songs/60144934.mkv +周震南-A LITTLE BRAVER,http://em.21dtv.com/songs/60144933.mkv +周紫溪-沙滩沙滩,http://em.21dtv.com/songs/60144932.mkv +周笔畅+赵天宇-岁月神偷,http://em.21dtv.com/songs/60144931.mkv +周笔畅+周震南-TIME ZONE,http://em.21dtv.com/songs/60144930.mkv +周笔畅+VAVA-RAP STAR,http://em.21dtv.com/songs/60144929.mkv +周笔畅-神秘的塞班岛,http://em.21dtv.com/songs/60144928.mkv +周笔畅-七分钟好女孩七分钟坏女孩,http://em.21dtv.com/songs/60144926.mkv +周笔畅-FASCINATION,http://em.21dtv.com/songs/60144925.mkv +周深+郭沁-大鱼,http://em.21dtv.com/songs/60144924.mkv +周汤豪-不放,http://em.21dtv.com/songs/60144923.mkv +周楠-红色文家市,http://em.21dtv.com/songs/60144922.mkv +周柏豪-天网,http://em.21dtv.com/songs/60144921.mkv +周星濠-又梦夜来香,http://em.21dtv.com/songs/60144920.mkv +周昀-从没忘记你,http://em.21dtv.com/songs/60144919.mkv +周恬熙-爱多简单,http://em.21dtv.com/songs/60144917.mkv +周德森-很美,http://em.21dtv.com/songs/60144916.mkv +周子龙-等风等雨不如等你,http://em.21dtv.com/songs/60144915.mkv +周兴哲-快乐一次拥有,http://em.21dtv.com/songs/60144914.mkv +周传雄-告白气球,http://em.21dtv.com/songs/60144913.mkv +周以晴-如眉弯,http://em.21dtv.com/songs/60144912.mkv +吴非华-不朽的远行,http://em.21dtv.com/songs/60144911.mkv +吴超-等爱相逢,http://em.21dtv.com/songs/60144910.mkv +吴超-守望流光,http://em.21dtv.com/songs/60144909.mkv +吴竹丽-桃为媒,http://em.21dtv.com/songs/60144908.mkv +吴竹丽-大冶,http://em.21dtv.com/songs/60144907.mkv +吴竹丽-去大冶,http://em.21dtv.com/songs/60144906.mkv +吴燕菁-爱你也不差,http://em.21dtv.com/songs/60144905.mkv +吴浩康-较早前录影,http://em.21dtv.com/songs/60144904.mkv +吴河军-伤心的泪花,http://em.21dtv.com/songs/60144903.mkv +吴柏正+余林翰-牵连,http://em.21dtv.com/songs/60144902.mkv +吴映华-渔船人之歌,http://em.21dtv.com/songs/60144900.mkv +吴佳一-为爱奔跑RUN FOR LOVE,http://em.21dtv.com/songs/60144899.mkv +吴亦凡-我选择的路,http://em.21dtv.com/songs/60144898.mkv +吕继宏-背着月亮走,http://em.21dtv.com/songs/60144897.mkv +吕继宏-大别山夜话,http://em.21dtv.com/songs/60144896.mkv +吉囍-老婆最大,http://em.21dtv.com/songs/60144894.mkv +吉喆-又见炊烟,http://em.21dtv.com/songs/60144893.mkv +吉喆-住在天边,http://em.21dtv.com/songs/60144892.mkv +司云阁-唯灵,http://em.21dtv.com/songs/60144891.mkv +叶青-爱太真伤太深,http://em.21dtv.com/songs/60144890.mkv +叶蓓-红蜻蜓,http://em.21dtv.com/songs/60144889.mkv +叶炫清+张碧晨-胡桃夹子,http://em.21dtv.com/songs/60144888.mkv +叶炫清-没懂爱,http://em.21dtv.com/songs/60144887.mkv +叶炫清-想自由,http://em.21dtv.com/songs/60144886.mkv +叶晓粤-BAD BOY,http://em.21dtv.com/songs/60144885.mkv +叶娜+毕凯强-TIMEFLOWER,http://em.21dtv.com/songs/60144884.mkv +史宁广-北大荒之恋,http://em.21dtv.com/songs/60144883.mkv +史子晨-想入非非,http://em.21dtv.com/songs/60144882.mkv +古洁縈-失了分寸,http://em.21dtv.com/songs/60144881.mkv +古天乐-月亮代表我的心,http://em.21dtv.com/songs/60144880.mkv +古墓派小龙女-亲爱的情郎,http://em.21dtv.com/songs/60144879.mkv +原子霏-泪点相思,http://em.21dtv.com/songs/60144878.mkv +原子霏-妙音心,http://em.21dtv.com/songs/60144877.mkv +原乡+高音敏子-夏夜风轻摇,http://em.21dtv.com/songs/60144876.mkv +卧轨的火车-火海,http://em.21dtv.com/songs/60144875.mkv +卞义-心痛的寂寞,http://em.21dtv.com/songs/60144873.mkv +南燕-幻爱,http://em.21dtv.com/songs/60144872.mkv +南征北战-骄傲的少年,http://em.21dtv.com/songs/60144871.mkv +南征北战-遥远星球的来客,http://em.21dtv.com/songs/60144870.mkv +南征北战-穿越,http://em.21dtv.com/songs/60144869.mkv +南征北战-破影而出,http://em.21dtv.com/songs/60144868.mkv +南征北战-盛夏的幻想,http://em.21dtv.com/songs/60144867.mkv +南征北战-狂欢警报,http://em.21dtv.com/songs/60144866.mkv +南征北战-海,http://em.21dtv.com/songs/60144865.mkv +南征北战-明天,http://em.21dtv.com/songs/60144864.mkv +南征北战-我乐意,http://em.21dtv.com/songs/60144863.mkv +南征北战-天使之城,http://em.21dtv.com/songs/60144862.mkv +南征北战-回忆,http://em.21dtv.com/songs/60144861.mkv +南征北战-哦啦啦耶,http://em.21dtv.com/songs/60144860.mkv +南征北战-亮晶晶,http://em.21dtv.com/songs/60144859.mkv +南征北战-一级棒,http://em.21dtv.com/songs/60144858.mkv +南征北战-HAPPY SONG,http://em.21dtv.com/songs/60144857.mkv +南宫嘉骏+姜玉阳-回忆总想哭,http://em.21dtv.com/songs/60144856.mkv +南宫嘉骏-这个你深爱的秋,http://em.21dtv.com/songs/60144855.mkv +南丁-有关于你的故事,http://em.21dtv.com/songs/60144854.mkv +单待-远方的惦念,http://em.21dtv.com/songs/60144853.mkv +单小源+谢明君-东京遇上洛杉矶,http://em.21dtv.com/songs/60144852.mkv +卓俊-同心同路,http://em.21dtv.com/songs/60144851.mkv +华语群星-水手很忙+牛仔怕水,http://em.21dtv.com/songs/60144850.mkv +华语群星-如果你相信,http://em.21dtv.com/songs/60144849.mkv +华晨宇+马伯骞-差不多先生,http://em.21dtv.com/songs/60144847.mkv +华晨宇+孟子坤-你就不要想起我,http://em.21dtv.com/songs/60144846.mkv +千百惠-情未了,http://em.21dtv.com/songs/60144845.mkv +匡于泉-我一定要成功,http://em.21dtv.com/songs/60144844.mkv +刘霞米拉-你的眼泪湿透我的手背,http://em.21dtv.com/songs/60144843.mkv +刘雨KEY-红叶,http://em.21dtv.com/songs/60144842.mkv +刘雨KEY-左眼泪右伤悲,http://em.21dtv.com/songs/60144841.mkv +刘雨KEY-什么都没有,http://em.21dtv.com/songs/60144840.mkv +刘雨KEY-I HAVE IT,http://em.21dtv.com/songs/60144839.mkv +刘鑫喆-给我一点爱,http://em.21dtv.com/songs/60144838.mkv +刘金宇-兄弟,http://em.21dtv.com/songs/60144837.mkv +刘莉+李晓波-暗夜星光,http://em.21dtv.com/songs/60144836.mkv +刘莉-我亲爱的爸妈,http://em.21dtv.com/songs/60144835.mkv +刘莉-傻女人,http://em.21dtv.com/songs/60144834.mkv +刘若英-彼得潘,http://em.21dtv.com/songs/60144832.mkv +刘航孟-最美是高原,http://em.21dtv.com/songs/60144831.mkv +刘瑞琦-温暖的房间,http://em.21dtv.com/songs/60144830.mkv +刘炫吟-心上毛尖,http://em.21dtv.com/songs/60144829.mkv +刘瀚声-雨天没伞,http://em.21dtv.com/songs/60144828.mkv +刘栋升+戴舒涵-爱要向前冲,http://em.21dtv.com/songs/60144827.mkv +刘李-不渝的男人,http://em.21dtv.com/songs/60144825.mkv +刘晓斌-红尘有你不孤单,http://em.21dtv.com/songs/60144824.mkv +刘昱贤-孤舟,http://em.21dtv.com/songs/60144823.mkv +刘明煜-英雄上马的地方,http://em.21dtv.com/songs/60144822.mkv +刘惠峰-追梦的心,http://em.21dtv.com/songs/60144821.mkv +刘惜君+毛不易-芬芳一生,http://em.21dtv.com/songs/60144820.mkv +刘忻-就是你,http://em.21dtv.com/songs/60144819.mkv +刘忻-再见昨天,http://em.21dtv.com/songs/60144818.mkv +刘子墨-爱上你的我怎么办,http://em.21dtv.com/songs/60144817.mkv +刘媛媛+林志超-青春的军旅,http://em.21dtv.com/songs/60144816.mkv +刘婉茹-刺客,http://em.21dtv.com/songs/60144815.mkv +刘大宝-在守候,http://em.21dtv.com/songs/60144814.mkv +刘国强-胜利之歌,http://em.21dtv.com/songs/60144813.mkv +刘国强-我爱好花红的故乡,http://em.21dtv.com/songs/60144812.mkv +刘国强-想念家乡,http://em.21dtv.com/songs/60144811.mkv +刘和刚-临江仙,http://em.21dtv.com/songs/60144810.mkv +刘力扬+满舒克-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60144809.mkv +刘亦菲+王铮亮-还在这里,http://em.21dtv.com/songs/60144808.mkv +刘丽琳-我爱东方之珠,http://em.21dtv.com/songs/60144807.mkv +冷漠+王旭+杜青-在释放,http://em.21dtv.com/songs/60144806.mkv +冷漠+杨小曼-你不懂,http://em.21dtv.com/songs/60144805.mkv +冷漠-飞上天空的鱼,http://em.21dtv.com/songs/60144804.mkv +冷漠-不是所有,http://em.21dtv.com/songs/60144803.mkv +冷小志-瑶人殇,http://em.21dtv.com/songs/60144802.mkv +冯果-寒山僧踪,http://em.21dtv.com/songs/60144801.mkv +冯朗朗-抱紧紧,http://em.21dtv.com/songs/60144800.mkv +冯提莫+FOGGI RA-识龙虾啤酒火锅等夜食者为俊杰,http://em.21dtv.com/songs/60144799.mkv +冯小刚+黄轩+苗苗-那些花儿,http://em.21dtv.com/songs/60144798.mkv +冯宝宝+刘一武-回不去的从前,http://em.21dtv.com/songs/60144797.mkv +冯俊嘉+冯俊晴-童年最大,http://em.21dtv.com/songs/60144795.mkv +冈林-够意思,http://em.21dtv.com/songs/60144794.mkv +冈林-为她流下相思泪,http://em.21dtv.com/songs/60144793.mkv +关晓彤+王一博-二次初恋,http://em.21dtv.com/songs/60144792.mkv +克欣诺娜-左手牵右手,http://em.21dtv.com/songs/60144791.mkv +克欣诺娜-俄罗斯姑娘爱北京,http://em.21dtv.com/songs/60144790.mkv +先宇YU-阴天的秘密,http://em.21dtv.com/songs/60144788.mkv +傲雪-时间会冲淡一切,http://em.21dtv.com/songs/60144787.mkv +俺们屯的音乐大匠+蔡宗强-不潮不用花钱,http://em.21dtv.com/songs/60144786.mkv +俺们屯的音乐大匠-火,http://em.21dtv.com/songs/60144785.mkv +信-如果还有明天,http://em.21dtv.com/songs/60144784.mkv +俊歌-分手后你过得好不好,http://em.21dtv.com/songs/60144783.mkv +侯本岗+张鹏-孤狼,http://em.21dtv.com/songs/60144782.mkv +侯本岗+崔大笨-兄弟加油,http://em.21dtv.com/songs/60144781.mkv +侯本岗-梦回唐图,http://em.21dtv.com/songs/60144780.mkv +侯本岗-分手以后,http://em.21dtv.com/songs/60144779.mkv +侯本岗-中国梦祥龙行,http://em.21dtv.com/songs/60144778.mkv +侯昊洲-富饶的定边我的家乡,http://em.21dtv.com/songs/60144777.mkv +侯丽娟+王庆超-人民的兵,http://em.21dtv.com/songs/60144776.mkv +侯丽娟-永远的怀念,http://em.21dtv.com/songs/60144775.mkv +佳灏+陈烨菲-梦语难言,http://em.21dtv.com/songs/60144774.mkv +余珂-一路走来,http://em.21dtv.com/songs/60144773.mkv +余丹丹-举杯祝福,http://em.21dtv.com/songs/60144772.mkv +何鹏+陈娇-猴哥回来了,http://em.21dtv.com/songs/60144771.mkv +何鹏+赵真-流泪的两只鹅,http://em.21dtv.com/songs/60144770.mkv +何翘翘-妈妈好赞,http://em.21dtv.com/songs/60144769.mkv +何紫淇-那个亲爱的他,http://em.21dtv.com/songs/60144768.mkv +何坤+东方重山-XJY,http://em.21dtv.com/songs/60144767.mkv +伤心欲绝-破了洞的美梦,http://em.21dtv.com/songs/60144766.mkv +伍富桥-我怎会如此,http://em.21dtv.com/songs/60144765.mkv +伍嘉成+周震南-西门少年,http://em.21dtv.com/songs/60144764.mkv +伊雪-这不过是一首儿歌,http://em.21dtv.com/songs/60144763.mkv +伊雪-请帮我带一句问候给他,http://em.21dtv.com/songs/60144762.mkv +伊雪-找无调的歌声,http://em.21dtv.com/songs/60144761.mkv +伊雪-在那一瞬间,http://em.21dtv.com/songs/60144760.mkv +伊然+晓东-东游 是你,http://em.21dtv.com/songs/60144759.mkv +伊然-只是听说,http://em.21dtv.com/songs/60144758.mkv +任盈盈-你的爱情我搞不懂,http://em.21dtv.com/songs/60144757.mkv +任海旺-哪辈子欠你的,http://em.21dtv.com/songs/60144756.mkv +任家萱-娃娃,http://em.21dtv.com/songs/60144755.mkv +以冬-我的一个道姑朋友,http://em.21dtv.com/songs/60144754.mkv +付成-我不能再假装悲伤,http://em.21dtv.com/songs/60144753.mkv +亦帆-闪,http://em.21dtv.com/songs/60144752.mkv +亦帆-无你的一生一世,http://em.21dtv.com/songs/60144751.mkv +亦帆-他给的伤,http://em.21dtv.com/songs/60144750.mkv +亦帆-一帆风顺,http://em.21dtv.com/songs/60144749.mkv +井宿-孤单的海岛,http://em.21dtv.com/songs/60144748.mkv +云朵-缘定今生,http://em.21dtv.com/songs/60144747.mkv +云丹久美-梦想起航的地方,http://em.21dtv.com/songs/60144746.mkv +于金胜+杨玉和-女人不容易,http://em.21dtv.com/songs/60144745.mkv +于金胜-女人不容易,http://em.21dtv.com/songs/60144744.mkv +于海涛-白浪河边的晚上,http://em.21dtv.com/songs/60144743.mkv +于海涛-河畔情思,http://em.21dtv.com/songs/60144742.mkv +于海利-爱需要灌溉情需要浇,http://em.21dtv.com/songs/60144741.mkv +于洋-重说爱,http://em.21dtv.com/songs/60144740.mkv +于梓贝-普通朋友,http://em.21dtv.com/songs/60144739.mkv +于惠茜+童小伟+应尛疼-久伴情长,http://em.21dtv.com/songs/60144738.mkv +于惠茜+小禹-当年,http://em.21dtv.com/songs/60144737.mkv +二珂-樱花粉的浪漫,http://em.21dtv.com/songs/60144736.mkv +二珂-告白气球,http://em.21dtv.com/songs/60144735.mkv +二珂-三角题,http://em.21dtv.com/songs/60144734.mkv +乔玲儿-爱情没有想象中的美,http://em.21dtv.com/songs/60144733.mkv +乌兰托娅-草原祝酒歌,http://em.21dtv.com/songs/60144732.mkv +世外桃源-H,http://em.21dtv.com/songs/60144731.mkv +三藏梵音-山景,http://em.21dtv.com/songs/60144730.mkv +万凯-兄弟和酒,http://em.21dtv.com/songs/60144729.mkv +七朵组合-青蛇,http://em.21dtv.com/songs/60144728.mkv +丁芳菲-翅膀,http://em.21dtv.com/songs/60144727.mkv +丁芳菲-和平颂,http://em.21dtv.com/songs/60144726.mkv +丁少华+龚淑均-清风来过,http://em.21dtv.com/songs/60144725.mkv +一阳+益佳-明明很用心,http://em.21dtv.com/songs/60144724.mkv +ZOOM超能团-英雄电影,http://em.21dtv.com/songs/60144723.mkv +YAMY-AY,http://em.21dtv.com/songs/60144722.mkv +WOWO王军-勇敢向前走,http://em.21dtv.com/songs/60144721.mkv +VAVA-谁比我有范儿,http://em.21dtv.com/songs/60144719.mkv +VAVA-YO LIFE悠生活,http://em.21dtv.com/songs/60144718.mkv +VAVA-GET IT ON THE FLOOR,http://em.21dtv.com/songs/60144717.mkv +VAVA-300环之歌,http://em.21dtv.com/songs/60144716.mkv +VAST+HAZY-归属,http://em.21dtv.com/songs/60144715.mkv +TY.-比你浪比你棒,http://em.21dtv.com/songs/60144714.mkv +TY.-你觉得,http://em.21dtv.com/songs/60144713.mkv +TRASH-午夜梦回,http://em.21dtv.com/songs/60144712.mkv +TOR+-约定旅程,http://em.21dtv.com/songs/60144711.mkv +TONICK-回忆备份,http://em.21dtv.com/songs/60144710.mkv +TOLEIN+刘阡羽-FUN,http://em.21dtv.com/songs/60144709.mkv +THE PRETTY RECKLESS-MY MEDICINE,http://em.21dtv.com/songs/60144708.mkv +SUPERBABY-超级宝宝,http://em.21dtv.com/songs/60144707.mkv +SUPER GIRLS-女仆,http://em.21dtv.com/songs/60144706.mkv +SPACE-无法一吻,http://em.21dtv.com/songs/60144705.mkv +SING-快乐循环,http://em.21dtv.com/songs/60144704.mkv +ROBYNN+KENDY-急救中,http://em.21dtv.com/songs/60144703.mkv +RAINBOW计划-分礼进行曲,http://em.21dtv.com/songs/60144702.mkv +PG ONE-英雄归来,http://em.21dtv.com/songs/60144701.mkv +PG ONE-中二病,http://em.21dtv.com/songs/60144700.mkv +PG ONE-PENTA KILL,http://em.21dtv.com/songs/60144699.mkv +NOWHERE BOYS-光の序曲,http://em.21dtv.com/songs/60144698.mkv +NOCTURNES曳取-就像你在回应我,http://em.21dtv.com/songs/60144697.mkv +NATALIE+杨紫-大姨妈会传染,http://em.21dtv.com/songs/60144695.mkv +MR.MISS-秋别,http://em.21dtv.com/songs/60144694.mkv +MIKE+毛晓彤-遥远的诺言,http://em.21dtv.com/songs/60144692.mkv +MERA-THE BRIGHTEST DIAMOND,http://em.21dtv.com/songs/60144691.mkv +MC辛小星-死在江南烟雨中,http://em.21dtv.com/songs/60144689.mkv +MC张大正-温柔而又薄情,http://em.21dtv.com/songs/60144688.mkv +MC孤他-从前慢,http://em.21dtv.com/songs/60144687.mkv +MC天佑+毛不易-如果有一天我变得很有钱,http://em.21dtv.com/songs/60144686.mkv +MC九局-喊麦之王,http://em.21dtv.com/songs/60144685.mkv +MC LIER+DJ NOISE MAN-LET'S PARTY,http://em.21dtv.com/songs/60144684.mkv +MC LIER-PARTY PARTY,http://em.21dtv.com/songs/60144683.mkv +MC LIER-BYE BYE,http://em.21dtv.com/songs/60144682.mkv +LADY S-青蛇,http://em.21dtv.com/songs/60144680.mkv +JW-妒忌心,http://em.21dtv.com/songs/60144679.mkv +JUDE-人间失格,http://em.21dtv.com/songs/60144678.mkv +JESSIE J-THUNDER,http://em.21dtv.com/songs/60144677.mkv +IVI-卧底,http://em.21dtv.com/songs/60144676.mkv +IVI-YOU,http://em.21dtv.com/songs/60144675.mkv +HANA-忘记我自己,http://em.21dtv.com/songs/60144674.mkv +GAI-没钱咋个整,http://em.21dtv.com/songs/60144673.mkv +魏新雨-最美的情缘,http://em.21dtv.com/songs/60144671.mkv +魏家林-液光,http://em.21dtv.com/songs/60144670.mkv +马文会-爱情下的雪,http://em.21dtv.com/songs/60144669.mkv +陈卿-逗比的生活,http://em.21dtv.com/songs/60144668.mkv +许先-家乡的姑娘真漂亮,http://em.21dtv.com/songs/60144667.mkv +艾丽娅琪琪格-蒙古词典,http://em.21dtv.com/songs/60144666.mkv +李冬风+优优-一次就好,http://em.21dtv.com/songs/60144664.mkv +周子龙-等风等雨不如等你,http://em.21dtv.com/songs/60144663.mkv +后来者-假如爱有天意,http://em.21dtv.com/songs/60144662.mkv +原子霏-说好一起到白头,http://em.21dtv.com/songs/60144661.mkv +DJ何鹏-看透爱情看透你,http://em.21dtv.com/songs/60144660.mkv +COOLBABY+宋孟君-小可爱,http://em.21dtv.com/songs/60144659.mkv +CMO乐团-远行,http://em.21dtv.com/songs/60144658.mkv +CHICKNUP-彩虹森林,http://em.21dtv.com/songs/60144657.mkv +BRANT.B小白+DP-WAITING,http://em.21dtv.com/songs/60144656.mkv +BOY STORY-HOW OLD R U,http://em.21dtv.com/songs/60144655.mkv +BLASTER-码头的辛酸,http://em.21dtv.com/songs/60144654.mkv +BINGO-环球圣诞,http://em.21dtv.com/songs/60144653.mkv +BAKERIE-NIGO IS MY DAD,http://em.21dtv.com/songs/60144652.mkv +AT17-GIRLS GIRLS GIRLS,http://em.21dtv.com/songs/60144651.mkv +阿兰-龙女,http://em.21dtv.com/songs/60144650.mkv +AKA.IMP小鬼-新生代,http://em.21dtv.com/songs/60144649.mkv +ACE组合-食味江湖,http://em.21dtv.com/songs/60144648.mkv +1022女声-永远的我们,http://em.21dtv.com/songs/60144646.mkv +龙梅子-下辈子做你的女人,http://em.21dtv.com/songs/60144645.mkv +黎丹-受伤的女人,http://em.21dtv.com/songs/60144644.mkv +马博-菊花爆满山,http://em.21dtv.com/songs/60144643.mkv +降央卓玛-鸿雁,http://em.21dtv.com/songs/60144642.mkv +门丽+严龙-凤凰情歌,http://em.21dtv.com/songs/60144641.mkv +萧全-社会摇,http://em.21dtv.com/songs/60144640.mkv +艺涛+DJ CANDY-夜色,http://em.21dtv.com/songs/60144639.mkv +肖家永-好兄弟,http://em.21dtv.com/songs/60144638.mkv +罗百吉-I MISS YOU,http://em.21dtv.com/songs/60144637.mkv +网络歌手-法国慢摇非主流,http://em.21dtv.com/songs/60144636.mkv +祁隆+何鹏+苏月-亲爱的别想我,http://em.21dtv.com/songs/60144635.mkv +祁隆+乐凡-爱你一生,http://em.21dtv.com/songs/60144634.mkv +王绎龙-电音之王,http://em.21dtv.com/songs/60144633.mkv +王绎龙-摇摆哥,http://em.21dtv.com/songs/60144632.mkv +王绎龙-不变的音乐,http://em.21dtv.com/songs/60144631.mkv +火山-兄弟一辈子,http://em.21dtv.com/songs/60144630.mkv +汪峰+DJ佳楠-存在,http://em.21dtv.com/songs/60144629.mkv +梁剑东-饮歌,http://em.21dtv.com/songs/60144628.mkv +梁剑东+DJ CANDY+艺涛-夜色,http://em.21dtv.com/songs/60144627.mkv +杨青-不守妇道,http://em.21dtv.com/songs/60144626.mkv +杨海彪-寂寞的人伤心的歌,http://em.21dtv.com/songs/60144625.mkv +杨娜-爱呀呀,http://em.21dtv.com/songs/60144624.mkv +李贞贤-哇,http://em.21dtv.com/songs/60144623.mkv +李清坡+DJ良少-单身的苦,http://em.21dtv.com/songs/60144622.mkv +戴耀光-夜诱,http://em.21dtv.com/songs/60144621.mkv +张卫-机器铃砍菜刀,http://em.21dtv.com/songs/60144620.mkv +庄心妍+DJ阿远-真的不容易,http://em.21dtv.com/songs/60144619.mkv +孟小笛+祁隆-啦啦爱,http://em.21dtv.com/songs/60144618.mkv +姜玉阳-秋风落叶,http://em.21dtv.com/songs/60144617.mkv +妖姬-夜色,http://em.21dtv.com/songs/60144616.mkv +唐古-做你心上的人,http://em.21dtv.com/songs/60144615.mkv +周怡然-自己的传奇,http://em.21dtv.com/songs/60144614.mkv +勾辉-老婆你听我说,http://em.21dtv.com/songs/60144613.mkv +刀郎-守候在凌晨两点的伤心酒吧,http://em.21dtv.com/songs/60144612.mkv +凤凰传奇-走天涯,http://em.21dtv.com/songs/60144611.mkv +冷漠-醉红颜,http://em.21dtv.com/songs/60144610.mkv +冲儿+广智-心跳为你加快,http://em.21dtv.com/songs/60144609.mkv +何鹏-月红,http://em.21dtv.com/songs/60144608.mkv +何鹏-DJ,http://em.21dtv.com/songs/60144607.mkv +何鹏+马建军-伤心的人唱着寂寞的歌,http://em.21dtv.com/songs/60144606.mkv +何鹏+马博-菊花爆满山,http://em.21dtv.com/songs/60144605.mkv +何鹏+马健南-依然相信,http://em.21dtv.com/songs/60144604.mkv +何鹏+阿筎那-月亮对我说,http://em.21dtv.com/songs/60144603.mkv +何鹏+赵真-真的伤不起,http://em.21dtv.com/songs/60144602.mkv +何鹏+赵真+祁隆-真的没骗你,http://em.21dtv.com/songs/60144601.mkv +何鹏+赵真+东方红艳-火火的姑娘,http://em.21dtv.com/songs/60144600.mkv +何鹏+索南扎西-远方爱人,http://em.21dtv.com/songs/60144599.mkv +何鹏+秋裤大叔+冷漠-元芳 你怎么看,http://em.21dtv.com/songs/60144598.mkv +何鹏+格格-游牧情歌,http://em.21dtv.com/songs/60144597.mkv +何鹏+张北北-拥抱你离去,http://em.21dtv.com/songs/60144596.mkv +何鹏+张冬玲+冷漠-真不是闹着玩,http://em.21dtv.com/songs/60144595.mkv +何鹏+唐古-你牛什么牛,http://em.21dtv.com/songs/60144594.mkv +何鹏+司徒兰芳-扎西哥哥,http://em.21dtv.com/songs/60144593.mkv +何鹏+任妙音-天在下雨我在想你,http://em.21dtv.com/songs/60144592.mkv +ZEDD+ARIANA GRANDE-BREAK FREE,http://em.21dtv.com/songs/60144591.mkv +WIZ KHALIFA+CHARLIE PUTH-SEE YOU AGAIN,http://em.21dtv.com/songs/60144590.mkv +VEXENTO-MASKED HEROES,http://em.21dtv.com/songs/60144589.mkv +UMMET OZCAN-WAKE UP THE SUN,http://em.21dtv.com/songs/60144588.mkv +TUNGEVAAG+ITALOBROTHERS-SPRINGFIELD,http://em.21dtv.com/songs/60144587.mkv +TOLEIN+张倩云-在一起,http://em.21dtv.com/songs/60144586.mkv +TIESTO-RED LIGHTS,http://em.21dtv.com/songs/60144585.mkv +TIESTO-EVERYTHING,http://em.21dtv.com/songs/60144584.mkv +THEFATRAT-UNITY,http://em.21dtv.com/songs/60144583.mkv +THE XX-INTRO,http://em.21dtv.com/songs/60144582.mkv +THE WANTED-GLAD YOU CAME,http://em.21dtv.com/songs/60144581.mkv +TAIO CRUZ+KYLIE MINOGUE-HIGHER,http://em.21dtv.com/songs/60144580.mkv +SWEETBOX-LIFE IS COOL,http://em.21dtv.com/songs/60144579.mkv +SNOOP DOGG+DAVID GUETTA-SWEAT,http://em.21dtv.com/songs/60144578.mkv +SKRILLEX-SCARY MONSTERS AND NICE SPRITES,http://em.21dtv.com/songs/60144577.mkv +SHOWTEK+WE ARE LOUD+SONNY WILSON-BOOYAH,http://em.21dtv.com/songs/60144576.mkv +SHAKIRA-TRY EVERYTHING,http://em.21dtv.com/songs/60144575.mkv +SELENA GOMEZ+ZEDD-I WANT YOU TO KNOW,http://em.21dtv.com/songs/60144574.mkv +SAK NOEL+SITO ROCKS-PARTY ON MY LEVEL,http://em.21dtv.com/songs/60144573.mkv +RIHANNA-RUDE BOY,http://em.21dtv.com/songs/60144572.mkv +RIHANNA-DIAMONDS,http://em.21dtv.com/songs/60144571.mkv +RIHANNA+DAVID GUETTA-WHO'S THAT CHICK,http://em.21dtv.com/songs/60144570.mkv +PSY+CL[2NE1]-DADDY,http://em.21dtv.com/songs/60144568.mkv +PIXIE PARIS-ES RAPPELT IM KARTON,http://em.21dtv.com/songs/60144567.mkv +PITBULL+T-PAIN,http://em.21dtv.com/songs/60144566.mkv +PHAXE-MODERN TERMS,http://em.21dtv.com/songs/60144565.mkv +PAUL VAN DYK-ROCK THIS,http://em.21dtv.com/songs/60144564.mkv +P!NK-GET THE PARTY STARTED,http://em.21dtv.com/songs/60144563.mkv +MITIS-ENDEAVORS,http://em.21dtv.com/songs/60144562.mkv +MILEY CYRUS-WRECKING BALL,http://em.21dtv.com/songs/60144561.mkv +MICHAEL JACKSON-SMOOTH CRIMINAL,http://em.21dtv.com/songs/60144560.mkv +MICHAEL JACKSON-DANGEROUS,http://em.21dtv.com/songs/60144559.mkv +MC魏小然-我有孤独和烈酒,http://em.21dtv.com/songs/60144558.mkv +MC天佑-绝情B,http://em.21dtv.com/songs/60144557.mkv +MC天佑-男人的痛,http://em.21dtv.com/songs/60144556.mkv +MC天佑-曾经的王者,http://em.21dtv.com/songs/60144555.mkv +MC天佑-吉拉拉,http://em.21dtv.com/songs/60144554.mkv +MC天佑-一人我饮酒醉,http://em.21dtv.com/songs/60144553.mkv +MC冰鑫-九世轮回篇,http://em.21dtv.com/songs/60144552.mkv +MARK RONSON+BRUNO MARS-UPTOWN FUNK1,http://em.21dtv.com/songs/60144551.mkv +MARK RONSON+BRUNO MARS-UPTOWN FUNK,http://em.21dtv.com/songs/60144550.mkv +MAJOR LAZER+MO+DJ SNAKE-LEAN ON,http://em.21dtv.com/songs/60144549.mkv +LILY ALLEN-HARD OUT HERE,http://em.21dtv.com/songs/60144548.mkv +LENKA-THE SHOW,http://em.21dtv.com/songs/60144547.mkv +LADY GAGA-JUDAS,http://em.21dtv.com/songs/60144546.mkv +KATY PERRY-FIREWORK,http://em.21dtv.com/songs/60144544.mkv +JUSTIN BIEBER+BIG SEAN-AS LONG AS YOU LOVE ME,http://em.21dtv.com/songs/60144543.mkv +JTR-OH MY MY,http://em.21dtv.com/songs/60144542.mkv +JENNIFER LOPEZ+PITBULL-ON THE FLOOR,http://em.21dtv.com/songs/60144541.mkv +JASON DERULO-WHAT CHA SAY,http://em.21dtv.com/songs/60144540.mkv +INNA-SUN IS UP,http://em.21dtv.com/songs/60144539.mkv +HILLSONG YOUNG AND FREE-WAKE,http://em.21dtv.com/songs/60144538.mkv +HAMPTON THE HAMPSTER-THE HAMPSTER DANCE SONG,http://em.21dtv.com/songs/60144537.mkv +GUI BORATTO-TAKE MY BREATH AWAY,http://em.21dtv.com/songs/60144536.mkv +GROOVE COVERAGE-SHE,http://em.21dtv.com/songs/60144535.mkv +GROOVE COVERAGE-GOD IS A GIRL1,http://em.21dtv.com/songs/60144534.mkv +GROOVE COVERAGE-GOD IS A GIRL,http://em.21dtv.com/songs/60144533.mkv +GROOVE COVERAGE-FAR AWAY FROM HOME,http://em.21dtv.com/songs/60144532.mkv +GREEN DAY-21 GUNS,http://em.21dtv.com/songs/60144531.mkv +FRANKMUSIK-WRECKING BALL,http://em.21dtv.com/songs/60144530.mkv +FLO RIDA-WHISTLE,http://em.21dtv.com/songs/60144529.mkv +FLAVA AND STEVENSON+FREEG AND FAT-K,http://em.21dtv.com/songs/60144528.mkv +FIFTH HARMONY+KID INK-WORTH IT,http://em.21dtv.com/songs/60144527.mkv +FARENTHIDE+HUBERTUSE-BOMB SHAKER,http://em.21dtv.com/songs/60144526.mkv +FAR EAST MOVEMENT+JUNIOR CALDERA+NATALIA KILLS-LIGHTS OUT,http://em.21dtv.com/songs/60144525.mkv +FALL OUT BOY-THE PHOENIX,http://em.21dtv.com/songs/60144524.mkv +FALL OUT BOY-IMMORTALS,http://em.21dtv.com/songs/60144523.mkv +EXID-上下,http://em.21dtv.com/songs/60144522.mkv +EMELI SANDÉ-NEXT TO ME,http://em.21dtv.com/songs/60144521.mkv +ELTON JOHN-CAN YOU FEEL THE LOVE TONIGHT,http://em.21dtv.com/songs/60144520.mkv +ELLIE GOULDING-LOVE ME LIKE YOU DO,http://em.21dtv.com/songs/60144519.mkv +EDDY WATA-LA BOMBA,http://em.21dtv.com/songs/60144518.mkv +DON OMAR+LUCENZO-DANZA KUDURO,http://em.21dtv.com/songs/60144517.mkv +DMX-PARTY UP,http://em.21dtv.com/songs/60144516.mkv +DJ良少+赵煜铭-漂亮的姑娘美翻了,http://em.21dtv.com/songs/60144515.mkv +DJ良少+罗豆豆-美丽的姑娘,http://em.21dtv.com/songs/60144514.mkv +DJ舞曲-车载慢摇,http://em.21dtv.com/songs/60144513.mkv +DJ舞曲-耶耶耶,http://em.21dtv.com/songs/60144512.mkv +DJ舞曲-玩腻,http://em.21dtv.com/songs/60144511.mkv +DJ舞曲-火花,http://em.21dtv.com/songs/60144510.mkv +DJ舞曲-印度风格慢摇,http://em.21dtv.com/songs/60144509.mkv +DJ舞曲-冰河时代 1,http://em.21dtv.com/songs/60144508.mkv +DJ舞曲-一万个舍不得,http://em.21dtv.com/songs/60144507.mkv +DJ舞曲-DELIGHT CHA CHA,http://em.21dtv.com/songs/60144506.mkv +DJ小文杰-鹰爱高飞人往高走,http://em.21dtv.com/songs/60144505.mkv +DJ小文杰-27秒你觉得怎么样,http://em.21dtv.com/songs/60144504.mkv +DJ OKAWARI-LUV LETTER,http://em.21dtv.com/songs/60144503.mkv +DJ MR.AN-社会摇5,http://em.21dtv.com/songs/60144502.mkv +DJ MR.AN-社会摇2,http://em.21dtv.com/songs/60144501.mkv +DJ MR.AN-社会摇3,http://em.21dtv.com/songs/60144500.mkv +DJ MR.AN-社会摇7,http://em.21dtv.com/songs/60144499.mkv +DJ MR.AN-社会摇1,http://em.21dtv.com/songs/60144498.mkv +DJ CANDY+艺涛-夜色,http://em.21dtv.com/songs/60144497.mkv +DJ CANDY+秋风-眼泪为谁流,http://em.21dtv.com/songs/60144496.mkv +DJ CANDY+庄心妍-以后的以后,http://em.21dtv.com/songs/60144495.mkv +DJ BOBO+MIKE CANDYS-TAKE CONTROL,http://em.21dtv.com/songs/60144494.mkv +DEORRO-FIVE HOURS,http://em.21dtv.com/songs/60144493.mkv +DAVID GUETTA-PARIS,http://em.21dtv.com/songs/60144492.mkv +DAVID GUETTA-DREAMS,http://em.21dtv.com/songs/60144491.mkv +DAVID GUETTA+USHER-WITHOUT YOU,http://em.21dtv.com/songs/60144490.mkv +DAVID GUETTA+SIA-TITANIUM,http://em.21dtv.com/songs/60144488.mkv +DAVID GUETTA+NICKI MINAJ+FLO RIDA-WHERE THEM GIRLS AT,http://em.21dtv.com/songs/60144487.mkv +DAVID GUETTA+KID CUDI-MEMORIES,http://em.21dtv.com/songs/60144486.mkv +DAVID GUETTA+JESSIE J-REPEAT,http://em.21dtv.com/songs/60144485.mkv +DAVID GUETTA+JENNIFER HUDSON-NIGHT OF YOUR LIFE,http://em.21dtv.com/songs/60144484.mkv +DAVID GUETTA+CHRIS WILLIS+FERGIE+LMFAO-GETTIN OVER YOU,http://em.21dtv.com/songs/60144483.mkv +DAVID GUETTA+CHRIS BROWN+LIL WAYNE-I CAN ONLY IMAGINE,http://em.21dtv.com/songs/60144482.mkv +DAVID GUETTA+AKON-SEXY BITCH,http://em.21dtv.com/songs/60144481.mkv +DAVID GUETTA+AKON-CRANK IT UP,http://em.21dtv.com/songs/60144480.mkv +DARIN-B WHAT U WANNA B,http://em.21dtv.com/songs/60144479.mkv +DANIEL POWTER-FREE LOOP,http://em.21dtv.com/songs/60144478.mkv +D.O.D-ZIPPER,http://em.21dtv.com/songs/60144477.mkv +CRAZY FROG-AXEL F,http://em.21dtv.com/songs/60144476.mkv +COLDPLAY-VIVA LA VIDA,http://em.21dtv.com/songs/60144475.mkv +CHARICE-LOUDER,http://em.21dtv.com/songs/60144474.mkv +CALVIN HARRIS+JOHN NEWMAN-BLAME,http://em.21dtv.com/songs/60144473.mkv +CALVIN HARRIS+ELLIE GOULDING-OUTSIDE,http://em.21dtv.com/songs/60144472.mkv +BRITNEY SPEARS-LUCKY,http://em.21dtv.com/songs/60144471.mkv +BRITNEY SPEARS-I WANNA GO,http://em.21dtv.com/songs/60144470.mkv +BRITNEY SPEARS+GIORGIO MORODER-TOM'S DINER,http://em.21dtv.com/songs/60144469.mkv +BLUE-ALL RISE,http://em.21dtv.com/songs/60144468.mkv +BINGO PLAYERS-OUT OF MY MIND,http://em.21dtv.com/songs/60144467.mkv +BINGO PLAYERS-KNOCK YOU OUT,http://em.21dtv.com/songs/60144466.mkv +BIGBANG-OH MA BABY,http://em.21dtv.com/songs/60144465.mkv +BEYONCÉ-HALO,http://em.21dtv.com/songs/60144464.mkv +BENNY BENASSI+SERJ TANKIAN-SHOOTING HELICOPTERS,http://em.21dtv.com/songs/60144463.mkv +BASSHUNTER-ANGEL IN THE NIGHT,http://em.21dtv.com/songs/60144462.mkv +AXERO+BILLY SAX-TRIBE,http://em.21dtv.com/songs/60144461.mkv +AVRIL LAVIGNE-WHEN YOU'RE GONE,http://em.21dtv.com/songs/60144460.mkv +AVRIL LAVIGNE-INNOCENCE,http://em.21dtv.com/songs/60144459.mkv +AVRIL LAVIGNE-HERE'S TO NEVER GROWING UP,http://em.21dtv.com/songs/60144458.mkv +AVICII-WAITING FOR LOVE,http://em.21dtv.com/songs/60144457.mkv +ATB+CRISTINA SOTO-TWISTED LOVE,http://em.21dtv.com/songs/60144456.mkv +ARMIN VAN BUUREN-PING PONG,http://em.21dtv.com/songs/60144455.mkv +ARMIN VAN BUUREN+TREVOR GUTHRIE-THIS IS WHAT IT FEELS LIKE,http://em.21dtv.com/songs/60144454.mkv +ARIANA GRANDE+ZEDD-BREAK FREE,http://em.21dtv.com/songs/60144453.mkv +ARIANA GRANDE+IGGY AZALEA-PROBLEM,http://em.21dtv.com/songs/60144452.mkv +APINK-HUSH,http://em.21dtv.com/songs/60144451.mkv +ALONG+7妹-7妹最新混音慢摇,http://em.21dtv.com/songs/60144450.mkv +ALAN WALKER-FADE1,http://em.21dtv.com/songs/60144449.mkv +ALAN WALKER-FADE,http://em.21dtv.com/songs/60144448.mkv +AKON-RIGHT NOW,http://em.21dtv.com/songs/60144447.mkv +A-TEENS,http://em.21dtv.com/songs/60144446.mkv +7妹-震动拉锯火火火,http://em.21dtv.com/songs/60144445.mkv +7妹-钢琴电音,http://em.21dtv.com/songs/60144444.mkv +7妹-钢琴抒情,http://em.21dtv.com/songs/60144443.mkv +7妹-立场7妹,http://em.21dtv.com/songs/60144442.mkv +7妹-天籁之音,http://em.21dtv.com/songs/60144441.mkv +7妹-嗨翻2016,http://em.21dtv.com/songs/60144440.mkv +7妹-哦咧咧哦啦啦,http://em.21dtv.com/songs/60144439.mkv +7妹-3D环绕车载电子,http://em.21dtv.com/songs/60144438.mkv +7妹+小可-完美心动纯电,http://em.21dtv.com/songs/60144437.mkv +7妹+小可-7妹快手神曲甩曲,http://em.21dtv.com/songs/60144436.mkv +7OBU-LIFE,http://em.21dtv.com/songs/60144435.mkv +2.0T-音雄联盟,http://em.21dtv.com/songs/60144434.mkv +2.0T-音雄本色,http://em.21dtv.com/songs/60144433.mkv +2.0T-致敬经典,http://em.21dtv.com/songs/60144432.mkv +2.0T-叶问谁与争锋,http://em.21dtv.com/songs/60144431.mkv +黑鸭子-让我们荡起双桨,http://em.21dtv.com/songs/60144430.mkv +黄莺莺-葬心,http://em.21dtv.com/songs/60144429.mkv +黄莺莺-哭砂,http://em.21dtv.com/songs/60144428.mkv +黄红英-初次尝到寂寞,http://em.21dtv.com/songs/60144427.mkv +闫学敏-鼓诗,http://em.21dtv.com/songs/60144424.mkv +郭峰-雪花飞扬,http://em.21dtv.com/songs/60144423.mkv +郭公芳-THE RED LANTERN,http://em.21dtv.com/songs/60144422.mkv +邓凯云-南海姑娘,http://em.21dtv.com/songs/60144421.mkv +赵鹏-月亮代表我的心,http://em.21dtv.com/songs/60144419.mkv +赵鹏-外婆的澎湖湾,http://em.21dtv.com/songs/60144418.mkv +蔡琴-被遗忘的时光,http://em.21dtv.com/songs/60144417.mkv +蔡琴-月光小夜曲,http://em.21dtv.com/songs/60144415.mkv +蔡琴-恰似你的温柔,http://em.21dtv.com/songs/60144414.mkv +蔡琴-张三的歌,http://em.21dtv.com/songs/60144413.mkv +萨拉萨蒂-流浪者之歌,http://em.21dtv.com/songs/60144412.mkv +腾格尔-黄河的水乾了,http://em.21dtv.com/songs/60144411.mkv +群星-龙卷风暴,http://em.21dtv.com/songs/60144410.mkv +群星-高山流水,http://em.21dtv.com/songs/60144409.mkv +群星-送别,http://em.21dtv.com/songs/60144408.mkv +群星-迟到,http://em.21dtv.com/songs/60144407.mkv +群星-试音方程式,http://em.21dtv.com/songs/60144406.mkv +群星-街头月,http://em.21dtv.com/songs/60144405.mkv +群星-竹笛,http://em.21dtv.com/songs/60144404.mkv +群星-穆特小提琴4,http://em.21dtv.com/songs/60144403.mkv +群星-穆特小提琴1,http://em.21dtv.com/songs/60144402.mkv +群星-知音,http://em.21dtv.com/songs/60144401.mkv +群星-生死时速主题曲,http://em.21dtv.com/songs/60144400.mkv +群星-琵琶对萨克斯,http://em.21dtv.com/songs/60144399.mkv +群星-狩猎波尔卡,http://em.21dtv.com/songs/60144398.mkv +群星-热情奏鸣曲,http://em.21dtv.com/songs/60144397.mkv +群星-火箭升空,http://em.21dtv.com/songs/60144396.mkv +群星-波罗吉他,http://em.21dtv.com/songs/60144395.mkv +群星-步步高,http://em.21dtv.com/songs/60144394.mkv +群星-欢乐颂,http://em.21dtv.com/songs/60144393.mkv +群星-梁祝,http://em.21dtv.com/songs/60144392.mkv +群星-普通一兵,http://em.21dtv.com/songs/60144391.mkv +群星-映山红,http://em.21dtv.com/songs/60144390.mkv +群星-敲击卡门,http://em.21dtv.com/songs/60144389.mkv +群星-摇滚迪士高,http://em.21dtv.com/songs/60144388.mkv +群星-布兰诗歌,http://em.21dtv.com/songs/60144387.mkv +群星-山高水远,http://em.21dtv.com/songs/60144386.mkv +群星-山丹丹开花红艳艳,http://em.21dtv.com/songs/60144385.mkv +群星-屋顶上的提琴手,http://em.21dtv.com/songs/60144384.mkv +群星-小提琴,http://em.21dtv.com/songs/60144383.mkv +群星-四季之歌,http://em.21dtv.com/songs/60144382.mkv +群星-古琴对唢呐,http://em.21dtv.com/songs/60144381.mkv +群星-古琴,http://em.21dtv.com/songs/60144380.mkv +群星-口琴,http://em.21dtv.com/songs/60144379.mkv +群星-发烧经典,http://em.21dtv.com/songs/60144378.mkv +群星-卡门前奏曲,http://em.21dtv.com/songs/60144377.mkv +群星-午夜梦回,http://em.21dtv.com/songs/60144376.mkv +群星-今夜无人入睡,http://em.21dtv.com/songs/60144375.mkv +群星-O,http://em.21dtv.com/songs/60144374.mkv +群星-F,http://em.21dtv.com/songs/60144373.mkv +群星-DENON HI,http://em.21dtv.com/songs/60144372.mkv +群星-BASS & BASS 低音提琴 低音王,http://em.21dtv.com/songs/60144371.mkv +群星-ASIAN ROOTS 竹竹 测试合成1,http://em.21dtv.com/songs/60144370.mkv +群星-2001太空漫游,http://em.21dtv.com/songs/60144369.mkv +玉置浩二-夜色,http://em.21dtv.com/songs/60144368.mkv +柏林之声-LIVE IN AMERICA,http://em.21dtv.com/songs/60144367.mkv +杨曼莉-挥着翅膀的女孩,http://em.21dtv.com/songs/60144366.mkv +杨小林-情人的眼泪,http://em.21dtv.com/songs/60144365.mkv +朱哲琴-央金玛,http://em.21dtv.com/songs/60144364.mkv +木村好夫-濑柳小镇,http://em.21dtv.com/songs/60144363.mkv +晓逍-走过咖啡屋,http://em.21dtv.com/songs/60144362.mkv +德德玛-牧人,http://em.21dtv.com/songs/60144361.mkv +帕格尼尼-ALLEGRO SPIRITOSO,http://em.21dtv.com/songs/60144360.mkv +小号-卡门前奏曲,http://em.21dtv.com/songs/60144359.mkv +吉它-斯卡布罗集市波罗,http://em.21dtv.com/songs/60144358.mkv +古璇-跟着感觉走,http://em.21dtv.com/songs/60144357.mkv +卡拉扬-拉德斯基进行曲,http://em.21dtv.com/songs/60144356.mkv +区瑞强-相思河畔,http://em.21dtv.com/songs/60144355.mkv +区瑞强-月亮代表我的心,http://em.21dtv.com/songs/60144354.mkv +区瑞强-偏偏喜欢你,http://em.21dtv.com/songs/60144353.mkv +刘紫玲-牧羊曲,http://em.21dtv.com/songs/60144351.mkv +刘星-闲云孤鹤,http://em.21dtv.com/songs/60144350.mkv +刘亮鹭-往事如昔,http://em.21dtv.com/songs/60144349.mkv +刘亮鹭-干杯,朋友,http://em.21dtv.com/songs/60144348.mkv +八只眼-达坂城姑娘,http://em.21dtv.com/songs/60144347.mkv +何训田-尘鼓,http://em.21dtv.com/songs/60144346.mkv +何玉玲-泪海,http://em.21dtv.com/songs/60144345.mkv +仙尼娅唐恩-YOU'VE GOT A WAY,http://em.21dtv.com/songs/60144344.mkv +TONI BRAXTON-LET IT FLOW,http://em.21dtv.com/songs/60144343.mkv +STEVE GIBBONS-THE WAITING GAME,http://em.21dtv.com/songs/60144342.mkv +SMILE-两千年等一次,http://em.21dtv.com/songs/60144341.mkv +RAY LYNCH-CELESTIAL SODA POP,http://em.21dtv.com/songs/60144340.mkv +MEAV-ONE I LOVE,http://em.21dtv.com/songs/60144339.mkv +KENNY-GOING HOME,http://em.21dtv.com/songs/60144338.mkv +KARI BREMNES-柏林恋人,http://em.21dtv.com/songs/60144337.mkv +ELMER BERNSTEIN-THE MAGNIFICENT SEVEN,http://em.21dtv.com/songs/60144336.mkv +EAGLES-加州旅馆,http://em.21dtv.com/songs/60144335.mkv +龙梅子-等爱,http://em.21dtv.com/songs/60144334.mkv +音频怪物-长安忆,http://em.21dtv.com/songs/60144333.mkv +音频怪物-琴师,http://em.21dtv.com/songs/60144332.mkv +音频怪物-日月之尊,http://em.21dtv.com/songs/60144331.mkv +音频怪物-啦啦啦德玛西亚,http://em.21dtv.com/songs/60144330.mkv +雨中百合-爱的渡口一直等着你,http://em.21dtv.com/songs/60144329.mkv +陈瑞-醉后之夜,http://em.21dtv.com/songs/60144328.mkv +陈瑞-退路,http://em.21dtv.com/songs/60144327.mkv +陈瑞-让爱结束在最美的时候,http://em.21dtv.com/songs/60144326.mkv +陈瑞-相伴有你,http://em.21dtv.com/songs/60144325.mkv +陈瑞-猜心,http://em.21dtv.com/songs/60144324.mkv +陈瑞-流星泪,http://em.21dtv.com/songs/60144323.mkv +陈瑞-泪洒爱琴海,http://em.21dtv.com/songs/60144322.mkv +陈瑞-没有人比你更爱我,http://em.21dtv.com/songs/60144321.mkv +陈瑞-没有,http://em.21dtv.com/songs/60144320.mkv +陈瑞-母亲的期待,http://em.21dtv.com/songs/60144319.mkv +陈瑞-月光下等待,http://em.21dtv.com/songs/60144318.mkv +陈瑞-曾有一个人,http://em.21dtv.com/songs/60144317.mkv +陈瑞-抽烟的女人,http://em.21dtv.com/songs/60144316.mkv +陈瑞-我不再是你最疼爱的人,http://em.21dtv.com/songs/60144315.mkv +陈瑞-想你总在多年以后,http://em.21dtv.com/songs/60144314.mkv +陈瑞-情人节的玫瑰,http://em.21dtv.com/songs/60144313.mkv +陈瑞-恋人泪,http://em.21dtv.com/songs/60144312.mkv +陈瑞-心中的牵挂,http://em.21dtv.com/songs/60144311.mkv +陈瑞-尘缘,http://em.21dtv.com/songs/60144310.mkv +陈瑞-太阳的眼泪太阳雨,http://em.21dtv.com/songs/60144309.mkv +陈瑞-你是我生命的传奇,http://em.21dtv.com/songs/60144308.mkv +陈瑞-今夜你会在哪里,http://em.21dtv.com/songs/60144307.mkv +陈瑞-五百年情缘,http://em.21dtv.com/songs/60144306.mkv +陈瑞-一个人的情人节,http://em.21dtv.com/songs/60144305.mkv +阿宝+张冬玲-妹妹的山丹花,http://em.21dtv.com/songs/60144304.mkv +银临+Aki阿杰-牵丝戏,http://em.21dtv.com/songs/60144303.mkv +银临-腐草为萤,http://em.21dtv.com/songs/60144302.mkv +路童+林淇-情之恋,http://em.21dtv.com/songs/60144301.mkv +赵鑫+陈瑞-旧情缘,http://em.21dtv.com/songs/60144300.mkv +萌萌哒天团-谁的谁,http://em.21dtv.com/songs/60144299.mkv +萌萌哒天团-等待,http://em.21dtv.com/songs/60144298.mkv +萌萌哒天团-王者荣耀,http://em.21dtv.com/songs/60144297.mkv +萌萌哒天团-执念,http://em.21dtv.com/songs/60144296.mkv +萌萌哒天团-天涯,http://em.21dtv.com/songs/60144295.mkv +萌萌哒天团-中国画,http://em.21dtv.com/songs/60144294.mkv +白水鉴心-只要你还爱着我,http://em.21dtv.com/songs/60144293.mkv +王新-三年的等待,http://em.21dtv.com/songs/60144292.mkv +王二妮+红都组合-西口赶牲灵,http://em.21dtv.com/songs/60144291.mkv +王二妮+王小妮-姐妹花,http://em.21dtv.com/songs/60144290.mkv +王二妮+王小妮-三妮儿的笑,http://em.21dtv.com/songs/60144289.mkv +王二妮-高楼万丈平地起,http://em.21dtv.com/songs/60144288.mkv +王二妮-老祖先留下人爱人,http://em.21dtv.com/songs/60144287.mkv +王二妮-桃花红,http://em.21dtv.com/songs/60144286.mkv +王二妮-故乡,http://em.21dtv.com/songs/60144285.mkv +王二妮-我从西边来,http://em.21dtv.com/songs/60144284.mkv +王二妮-情哥哥,http://em.21dtv.com/songs/60144283.mkv +王二妮-崖畔上开花,http://em.21dtv.com/songs/60144282.mkv +牛歌-孩子的泪水,http://em.21dtv.com/songs/60144281.mkv +深海-你的美让我醉,http://em.21dtv.com/songs/60144280.mkv +海生+蒋钰华-白首不相离,http://em.21dtv.com/songs/60144279.mkv +洛天依-与你最后的夏天,http://em.21dtv.com/songs/60144278.mkv +毛阿敏-篱笆墙的影子,http://em.21dtv.com/songs/60144277.mkv +毕福剑+王二妮-白毛女,http://em.21dtv.com/songs/60144276.mkv +樱九-画骨成沙,http://em.21dtv.com/songs/60144275.mkv +梁剑东-理想速度,http://em.21dtv.com/songs/60144274.mkv +梁剑东-嗨爆,http://em.21dtv.com/songs/60144273.mkv +梁剑东-再见友情,http://em.21dtv.com/songs/60144272.mkv +李琦-爱的颜色,http://em.21dtv.com/songs/60144271.mkv +星月组合-许你一世情缘,http://em.21dtv.com/songs/60144270.mkv +张津涤+陈瑞-千年孤影,http://em.21dtv.com/songs/60144269.mkv +屠洪纲-精忠报国(演唱会),http://em.21dtv.com/songs/60144268.mkv +少司命-错过的爱情,http://em.21dtv.com/songs/60144267.mkv +少司命-蜀道难,http://em.21dtv.com/songs/60144266.mkv +少司命-独孤九剑,http://em.21dtv.com/songs/60144265.mkv +少司命-某位,http://em.21dtv.com/songs/60144264.mkv +少司命-承欢殿,http://em.21dtv.com/songs/60144263.mkv +少司命-客官请进,http://em.21dtv.com/songs/60144262.mkv +小曲儿+贰婶-湖心亭,http://em.21dtv.com/songs/60144261.mkv +小曲儿-奈何,http://em.21dtv.com/songs/60144260.mkv +小曲儿-天局,http://em.21dtv.com/songs/60144259.mkv +小曲儿-假面,http://em.21dtv.com/songs/60144258.mkv +喻嘉+王馨-别做世上负心人,http://em.21dtv.com/songs/60144257.mkv +唐菲-等了一个不该等的人,http://em.21dtv.com/songs/60144256.mkv +双笙-采茶纪,http://em.21dtv.com/songs/60144255.mkv +双笙-离歌,http://em.21dtv.com/songs/60144254.mkv +双笙-月出,http://em.21dtv.com/songs/60144253.mkv +双笙-别赋,http://em.21dtv.com/songs/60144252.mkv +冷漠+陈瑞-心照不宣,http://em.21dtv.com/songs/60144251.mkv +冷漠+杨小曼-爱如星火,http://em.21dtv.com/songs/60144250.mkv +二手玫瑰-仙儿,http://em.21dtv.com/songs/60144249.mkv +MC阿哲+Q哥-做你的兄弟,http://em.21dtv.com/songs/60144248.mkv +龚淑均+丁少华-清风来过,http://em.21dtv.com/songs/60144247.mkv +龙飞+马昕-风雨醉情缘,http://em.21dtv.com/songs/60144246.mkv +龙梅子-恋爱协议书,http://em.21dtv.com/songs/60144245.mkv +龙影云-昔日山坡,http://em.21dtv.com/songs/60144244.mkv +龙奔-来生还要和你长相守,http://em.21dtv.com/songs/60144243.mkv +龙奔-成长,http://em.21dtv.com/songs/60144242.mkv +龙奔-夜幕下的北京,http://em.21dtv.com/songs/60144241.mkv +齐晨-到此为止,http://em.21dtv.com/songs/60144240.mkv +黑龙+利哥-棒打鸳鸯,http://em.21dtv.com/songs/60144239.mkv +黄鲲-小鸡咕叽咕叽,http://em.21dtv.com/songs/60144238.mkv +黄韵琴-You Oughta Know(现场版),http://em.21dtv.com/songs/60144237.mkv +黄霆睿-天堂不是想像,http://em.21dtv.com/songs/60144236.mkv +黄路梓茵-美小鸭,http://em.21dtv.com/songs/60144235.mkv +黄执雄+孙权-机务的玫瑰,http://em.21dtv.com/songs/60144234.mkv +黄意雅-You Re My Everything,http://em.21dtv.com/songs/60144233.mkv +黄小琥-白天不懂夜的黑,http://em.21dtv.com/songs/60144232.mkv +黄博-民富国强少年梦,http://em.21dtv.com/songs/60144231.mkv +黄剑文-爱人们,http://em.21dtv.com/songs/60144230.mkv +黄伟燐-伟大论,http://em.21dtv.com/songs/60144229.mkv +魏虹宁-新时代最可爱的人,http://em.21dtv.com/songs/60144228.mkv +魏新雨-翡翠心语,http://em.21dtv.com/songs/60144227.mkv +魏新雨-想你如海,http://em.21dtv.com/songs/60144226.mkv +魏招进-向梦想前进,http://em.21dtv.com/songs/60144225.mkv +高音敏子+原乡-一梦枕江南,http://em.21dtv.com/songs/60144224.mkv +高翊菲-爱上兵哥哥,http://em.21dtv.com/songs/60144223.mkv +高爱国-想起你,http://em.21dtv.com/songs/60144222.mkv +高安-你是我的幸福,http://em.21dtv.com/songs/60144221.mkv +高安-中华大舞台,http://em.21dtv.com/songs/60144220.mkv +高向鹏+邓咏家-雨中情绵绵,http://em.21dtv.com/songs/60144219.mkv +高向鹏+邓咏家-沉重的负担,http://em.21dtv.com/songs/60144218.mkv +高向鹏+文显-皇帝命,http://em.21dtv.com/songs/60144217.mkv +高向鹏-莎唷娜拉,http://em.21dtv.com/songs/60144216.mkv +高向鹏-自由人生,http://em.21dtv.com/songs/60144215.mkv +高向鹏-白云我问你,http://em.21dtv.com/songs/60144214.mkv +高向鹏-情煞无是非,http://em.21dtv.com/songs/60144213.mkv +高向鹏-思念的开始,http://em.21dtv.com/songs/60144212.mkv +高向鹏-心痴迷,http://em.21dtv.com/songs/60144211.mkv +高向鹏-出外条条难,http://em.21dtv.com/songs/60144210.mkv +高兰萨朵-在彼岸盛开,http://em.21dtv.com/songs/60144209.mkv +骆超-忘记你需要多少年,http://em.21dtv.com/songs/60144208.mkv +马頔-大雁,http://em.21dtv.com/songs/60144207.mkv +马雨阳-尘灰,http://em.21dtv.com/songs/60144206.mkv +马槜铿-牛郎,http://em.21dtv.com/songs/60144205.mkv +马槜铿-冲动,http://em.21dtv.com/songs/60144204.mkv +马智宇+杨子一-美丽中国梦,http://em.21dtv.com/songs/60144203.mkv +马智宇-最炫民族风,http://em.21dtv.com/songs/60144202.mkv +马智宇-在一起,http://em.21dtv.com/songs/60144201.mkv +马旭勤+张仪嘉-爱是你,http://em.21dtv.com/songs/60144200.mkv +马旭东+马剑芬-思念泛滥成灾,http://em.21dtv.com/songs/60144199.mkv +马文会-爱情下的雪,http://em.21dtv.com/songs/60144198.mkv +马天龙-窒息,http://em.21dtv.com/songs/60144197.mkv +马伯骞+周震南-Are You Ready(现场版),http://em.21dtv.com/songs/60144196.mkv +马伯骞-总结出的歪理(现场版),http://em.21dtv.com/songs/60144195.mkv +马伯骞-从心(现场版),http://em.21dtv.com/songs/60144194.mkv +马伯骞-With You(现场版),http://em.21dtv.com/songs/60144193.mkv +马伯骞-Going Down This Road,http://em.21dtv.com/songs/60144192.mkv +香格里拉组合-黑衣姑娘,http://em.21dtv.com/songs/60144191.mkv +香格里拉组合-飞旋的香巴拉,http://em.21dtv.com/songs/60144190.mkv +香格里拉组合-长发飘飘的姑娘,http://em.21dtv.com/songs/60144189.mkv +香格里拉组合-走进尼汝,http://em.21dtv.com/songs/60144188.mkv +香格里拉组合-美丽的香格里拉,http://em.21dtv.com/songs/60144187.mkv +香格里拉组合-月夜,http://em.21dtv.com/songs/60144186.mkv +香格里拉组合-普达措,http://em.21dtv.com/songs/60144185.mkv +香格里拉组合-我的家在香巴拉,http://em.21dtv.com/songs/60144184.mkv +香格里拉组合-康巴人之歌,http://em.21dtv.com/songs/60144183.mkv +香格里拉组合-庆功酒,http://em.21dtv.com/songs/60144182.mkv +香格里拉组合-云中的路,http://em.21dtv.com/songs/60144181.mkv +香格里拉组合-七彩云南,http://em.21dtv.com/songs/60144180.mkv +香子-骑上马儿来看你,http://em.21dtv.com/songs/60144179.mkv +香子-科尔沁的浪漫,http://em.21dtv.com/songs/60144178.mkv +飞翔-分手以后更想你,http://em.21dtv.com/songs/60144177.mkv +颜卓灵-闪光,http://em.21dtv.com/songs/60144176.mkv +颜力妃-完美的一天(现场版),http://em.21dtv.com/songs/60144175.mkv +颖宝儿-存在,http://em.21dtv.com/songs/60144174.mkv +顾小曼-我不是陆小曼,http://em.21dtv.com/songs/60144173.mkv +项翊+陈思桦-新梦 意桥岛,http://em.21dtv.com/songs/60144172.mkv +韩帅-烽火扬州路(现场版),http://em.21dtv.com/songs/60144171.mkv +韩帅-天高地远,http://em.21dtv.com/songs/60144170.mkv +韩帅-填空题,http://em.21dtv.com/songs/60144169.mkv +韩帅-到了夏天我就离开,http://em.21dtv.com/songs/60144168.mkv +韩帅-公平的比试,http://em.21dtv.com/songs/60144167.mkv +韩夏-再见,http://em.21dtv.com/songs/60144166.mkv +韦琪-备胎,http://em.21dtv.com/songs/60144165.mkv +靳东-你不孤单,http://em.21dtv.com/songs/60144164.mkv +霍尊-桃花雨,http://em.21dtv.com/songs/60144163.mkv +雾虹-舞蹈,http://em.21dtv.com/songs/60144162.mkv +雨露-新一曲红尘,http://em.21dtv.com/songs/60144161.mkv +雨宗林+王羽泽+小军-谁懂男人心,http://em.21dtv.com/songs/60144160.mkv +雨宗林-幸福太昂贵,http://em.21dtv.com/songs/60144159.mkv +雨侨-花季,http://em.21dtv.com/songs/60144158.mkv +陶静-风中芦苇荡,http://em.21dtv.com/songs/60144157.mkv +陈鸿宇-理想三旬,http://em.21dtv.com/songs/60144156.mkv +陈骁-泡泡糖Bubble Gum,http://em.21dtv.com/songs/60144155.mkv +陈香水-老爸老妈,http://em.21dtv.com/songs/60144154.mkv +陈香水-美丽新田,http://em.21dtv.com/songs/60144153.mkv +陈颖恩-那些你很冒险的梦(现场版),http://em.21dtv.com/songs/60144152.mkv +陈颖恩-时间有泪(现场版),http://em.21dtv.com/songs/60144151.mkv +陈雪伊-离别的花雨,http://em.21dtv.com/songs/60144150.mkv +陈雅森+苏勒亚其其格+李佳丹+赵伟-最美士兵,http://em.21dtv.com/songs/60144149.mkv +陈雅森-懂得爱,http://em.21dtv.com/songs/60144148.mkv +陈超-求佛(动画),http://em.21dtv.com/songs/60144147.mkv +陈诗雨-有一种感念叫泪滴,http://em.21dtv.com/songs/60144146.mkv +陈萝莉-大喊大叫的流行歌,http://em.21dtv.com/songs/60144145.mkv +陈莉姗-锦墨辞,http://em.21dtv.com/songs/60144144.mkv +陈艺搏-墨客行,http://em.21dtv.com/songs/60144143.mkv +陈群-情不自禁,http://em.21dtv.com/songs/60144142.mkv +陈美诗-我会照顾你,http://em.21dtv.com/songs/60144141.mkv +[Group] +groupName=十六万歌曲MV等 - 116 +陈百潭+陈凯欣-情难了,http://em.21dtv.com/songs/60144140.mkv +陈百潭+张艾莉-心中尺,http://em.21dtv.com/songs/60144139.mkv +陈百潭-欢喜酒,http://em.21dtv.com/songs/60144138.mkv +陈百潭-声声叹,http://em.21dtv.com/songs/60144137.mkv +陈百潭-一半心,http://em.21dtv.com/songs/60144136.mkv +陈瑞-时间久了就忘了,http://em.21dtv.com/songs/60144135.mkv +陈瑞-你情我怨,http://em.21dtv.com/songs/60144134.mkv +陈瑞-不是我不温柔,http://em.21dtv.com/songs/60144133.mkv +陈珊妮-独处,http://em.21dtv.com/songs/60144132.mkv +陈王杰-我的爱(现场版),http://em.21dtv.com/songs/60144131.mkv +陈炜迪-留下寂寞,http://em.21dtv.com/songs/60144130.mkv +陈海立-流浪的思念,http://em.21dtv.com/songs/60144129.mkv +陈洪-爱你心不悔,http://em.21dtv.com/songs/60144128.mkv +陈洪-毕业说再见,http://em.21dtv.com/songs/60144127.mkv +陈正乐-爱不能强求,http://em.21dtv.com/songs/60144126.mkv +陈梦+连朕-暖冬,http://em.21dtv.com/songs/60144125.mkv +陈梦-烛,http://em.21dtv.com/songs/60144124.mkv +陈栩晴-小溪,http://em.21dtv.com/songs/60144123.mkv +陈栩晴-为什么要长大,http://em.21dtv.com/songs/60144122.mkv +陈林波-朋友就是这样,http://em.21dtv.com/songs/60144121.mkv +陈林波-听见未来,http://em.21dtv.com/songs/60144120.mkv +陈杉雨-误入真心,http://em.21dtv.com/songs/60144119.mkv +陈昱志-太宠我,http://em.21dtv.com/songs/60144118.mkv +陈星+那日松-打工梦,http://em.21dtv.com/songs/60144117.mkv +陈明憙-画布,http://em.21dtv.com/songs/60144116.mkv +陈惠婷-记忆边境(MTV),http://em.21dtv.com/songs/60144115.mkv +陈思镝-模范情书(现场版),http://em.21dtv.com/songs/60144114.mkv +陈心蕊+东方红艳-家在草原根在草原,http://em.21dtv.com/songs/60144113.mkv +陈德隆-回不去的爱,http://em.21dtv.com/songs/60144112.mkv +陈彼得+孙八一-阿里巴巴,http://em.21dtv.com/songs/60144111.mkv +陈彼得-阿里巴巴,http://em.21dtv.com/songs/60144110.mkv +陈展鹏-一触即发,http://em.21dtv.com/songs/60144109.mkv +陈娇-说好的爱情呢,http://em.21dtv.com/songs/60144108.mkv +陈威男+张渼壹-牛郎织女情,http://em.21dtv.com/songs/60144107.mkv +陈姝伊-雪花在那山间,http://em.21dtv.com/songs/60144106.mkv +陈奕迅-谁来剪月光,http://em.21dtv.com/songs/60144105.mkv +陈奕迅-海胆,http://em.21dtv.com/songs/60144104.mkv +陈奕夫-并不是一个人,http://em.21dtv.com/songs/60144103.mkv +陈嘉杰-苏丽珍,http://em.21dtv.com/songs/60144102.mkv +陈历祥-兄弟吉祥,http://em.21dtv.com/songs/60144101.mkv +陈光标+陈韵融+姚斯婷-一家人,http://em.21dtv.com/songs/60144100.mkv +陈兆飞+陈芳-一生爱你,http://em.21dtv.com/songs/60144099.mkv +陈兆飞+倪梓悠-当爱已成传说,http://em.21dtv.com/songs/60144098.mkv +陈兆飞-难道你不爱我,http://em.21dtv.com/songs/60144097.mkv +陈兆飞-温州,http://em.21dtv.com/songs/60144096.mkv +陈兆飞-曾经爱过的人,http://em.21dtv.com/songs/60144095.mkv +陈兆飞-妈妈,http://em.21dtv.com/songs/60144094.mkv +陈兆飞-伤心的站台,http://em.21dtv.com/songs/60144093.mkv +陈信喆-失踪者,http://em.21dtv.com/songs/60144092.mkv +陈义夫-葫芦娃,http://em.21dtv.com/songs/60144091.mkv +陈一发儿-阿婆说,http://em.21dtv.com/songs/60144090.mkv +陆树铭-好朋友常聚首,http://em.21dtv.com/songs/60144089.mkv +陆晓虎-一个人的情歌,http://em.21dtv.com/songs/60144088.mkv +阿郎-再出发,http://em.21dtv.com/songs/60144087.mkv +阿达+陈大天+阿量-懒,http://em.21dtv.com/songs/60144086.mkv +阿赖+李华-酒逢知己千杯少,http://em.21dtv.com/songs/60144085.mkv +阿熏+喜鹊+柏辰-辰哥,http://em.21dtv.com/songs/60144084.mkv +阿熏-默海,http://em.21dtv.com/songs/60144083.mkv +阿熏-绽放光芒,http://em.21dtv.com/songs/60144082.mkv +阿旺-让爱洒满人间,http://em.21dtv.com/songs/60144081.mkv +阿旺-我要飞上蓝天,http://em.21dtv.com/songs/60144080.mkv +阿旺-为你守候,http://em.21dtv.com/songs/60144079.mkv +阿悄-绿茶和白莲,http://em.21dtv.com/songs/60144078.mkv +阿悄-三十三岁的少女,http://em.21dtv.com/songs/60144077.mkv +阿影-花开花谢女人心,http://em.21dtv.com/songs/60144076.mkv +阿影-相思苦,http://em.21dtv.com/songs/60144075.mkv +阿影-做栋梁,http://em.21dtv.com/songs/60144074.mkv +阿影-世界是我们的舞台,http://em.21dtv.com/songs/60144073.mkv +阿吉太组合-喜欢你,http://em.21dtv.com/songs/60144072.mkv +阿吉太组合-叙事曲,http://em.21dtv.com/songs/60144071.mkv +阿云嘎+张志+于晓璘+丁辉-我的遗愿清单,http://em.21dtv.com/songs/60144070.mkv +阮经天+马念先+蓝郁婷-胡八一你不要来,http://em.21dtv.com/songs/60144069.mkv +阮思源-青春笔记,http://em.21dtv.com/songs/60144068.mkv +闫杰晨-唐延路,http://em.21dtv.com/songs/60144067.mkv +闫峻-没有你(现场版),http://em.21dtv.com/songs/60144066.mkv +闪光爆裂民乐团-Show Me!,http://em.21dtv.com/songs/60144065.mkv +门丽-听着门丽的歌心里想着你,http://em.21dtv.com/songs/60144064.mkv +镐天-山那边,http://em.21dtv.com/songs/60144063.mkv +镐天-内蒙古大草原,http://em.21dtv.com/songs/60144062.mkv +镐天-你的哭泣连着我的心,http://em.21dtv.com/songs/60144061.mkv +银纱-想起你,http://em.21dtv.com/songs/60144060.mkv +银临-棠梨煎雪,http://em.21dtv.com/songs/60144059.mkv +钟洁-对不起,http://em.21dtv.com/songs/60144058.mkv +钟易轩-长大(现场版),http://em.21dtv.com/songs/60144057.mkv +钟易轩-想说的话(现场版),http://em.21dtv.com/songs/60144056.mkv +钟易轩-孤夜,http://em.21dtv.com/songs/60144055.mkv +钟易轩-儿时(现场版),http://em.21dtv.com/songs/60144054.mkv +金铃-雪域桃花,http://em.21dtv.com/songs/60144053.mkv +金甲组合-九妹(现场版),http://em.21dtv.com/songs/60144052.mkv +金波-心中的渴望,http://em.21dtv.com/songs/60144051.mkv +金志文-我们的爱,http://em.21dtv.com/songs/60144050.mkv +金婷婷-小路,http://em.21dtv.com/songs/60144049.mkv +金克成-梦想与是现实的距离,http://em.21dtv.com/songs/60144048.mkv +金久哲-左右为难,http://em.21dtv.com/songs/60144047.mkv +重情仔-我爱你,http://em.21dtv.com/songs/60144046.mkv +释魂乐队-战定不退,http://em.21dtv.com/songs/60144045.mkv +醉歌+寒风-妹在歌里头,http://em.21dtv.com/songs/60144044.mkv +鄂美伊-春天圆舞曲,http://em.21dtv.com/songs/60144043.mkv +郭飞宏-走,http://em.21dtv.com/songs/60144042.mkv +郭金-爱情让我着了魔(MTV),http://em.21dtv.com/songs/60144041.mkv +郭金-亲爱的你对我有没有在意,http://em.21dtv.com/songs/60144040.mkv +郭海庆-北方姑娘,http://em.21dtv.com/songs/60144039.mkv +郭沁-美若黎明(现场版),http://em.21dtv.com/songs/60144038.mkv +郭欣桐-不会再有以后,http://em.21dtv.com/songs/60144037.mkv +郭欣桐-123,http://em.21dtv.com/songs/60144036.mkv +郭强盛-漫瀚情歌,http://em.21dtv.com/songs/60144035.mkv +郭婷筠-女人梦,http://em.21dtv.com/songs/60144034.mkv +郭婷筠-原来的幸福,http://em.21dtv.com/songs/60144033.mkv +郭婷筠-不应该,http://em.21dtv.com/songs/60144032.mkv +郭伟隆-赚钱歌,http://em.21dtv.com/songs/60144031.mkv +郭京飞+Sq-罪若花开,http://em.21dtv.com/songs/60144030.mkv +郭丽霞-的哥的妹,http://em.21dtv.com/songs/60144029.mkv +郭丽霞-幸福盐湖,http://em.21dtv.com/songs/60144028.mkv +郝杰-形同陌路,http://em.21dtv.com/songs/60144027.mkv +郑顺鹏-醉色,http://em.21dtv.com/songs/60144026.mkv +郑金滔-威廉古堡,http://em.21dtv.com/songs/60144025.mkv +郑金滔-四号病房,http://em.21dtv.com/songs/60144024.mkv +郑茜匀-爱情候鸟,http://em.21dtv.com/songs/60144023.mkv +郑紫阳-静静,http://em.21dtv.com/songs/60144022.mkv +郑紫阳-彼此,http://em.21dtv.com/songs/60144021.mkv +郑瑾瑜+徐峰-好想你爸爸,http://em.21dtv.com/songs/60144020.mkv +郑源-刺青,http://em.21dtv.com/songs/60144019.mkv +郑源-伴,http://em.21dtv.com/songs/60144018.mkv +郑晓填+陈西洋-如果寂寞了,http://em.21dtv.com/songs/60144017.mkv +郑晓填-海风,http://em.21dtv.com/songs/60144016.mkv +郑康淳-想为我唱首歌,http://em.21dtv.com/songs/60144015.mkv +郑宜农-那些酒精成瘾的日子,http://em.21dtv.com/songs/60144014.mkv +郑国锋+何曼婷-小巷酒馆,http://em.21dtv.com/songs/60144013.mkv +郑俊弘-战胜吧,http://em.21dtv.com/songs/60144012.mkv +郑业成+安悦溪-专属爱情,http://em.21dtv.com/songs/60144011.mkv +郁可唯-我好想你,http://em.21dtv.com/songs/60144010.mkv +邵洪-死都不怕,http://em.21dtv.com/songs/60144009.mkv +邵峰-迷人小妹,http://em.21dtv.com/songs/60144008.mkv +邵峰-套路太深,http://em.21dtv.com/songs/60144007.mkv +邵元-闪光的回忆(现场版),http://em.21dtv.com/songs/60144006.mkv +邵元-推开世界的门(现场版),http://em.21dtv.com/songs/60144005.mkv +邱胜翊-爱正在发生,http://em.21dtv.com/songs/60144004.mkv +邱永传+陈正乐-我已经失去你,http://em.21dtv.com/songs/60144003.mkv +邱永传-我的好大哥,http://em.21dtv.com/songs/60144002.mkv +邱小龙-奔向前方,http://em.21dtv.com/songs/60144001.mkv +那英-三生三世十里桃花(MTV),http://em.21dtv.com/songs/60144000.mkv +那吾克热-趁年轻,http://em.21dtv.com/songs/60143999.mkv +邓紫棋-穿越火线,http://em.21dtv.com/songs/60143998.mkv +邓紫棋-死了都要爱,http://em.21dtv.com/songs/60143997.mkv +邓童天-三生如初见,http://em.21dtv.com/songs/60143996.mkv +邓文怡-诗书故乡,http://em.21dtv.com/songs/60143995.mkv +邓子辰-记忆,http://em.21dtv.com/songs/60143994.mkv +邓子辰-我就是我,http://em.21dtv.com/songs/60143993.mkv +邓子辰-一生醉爱,http://em.21dtv.com/songs/60143992.mkv +邓卓轩-就是这个范儿(人物),http://em.21dtv.com/songs/60143991.mkv +连诗雅-不意外的意外(MTV),http://em.21dtv.com/songs/60143990.mkv +连淮伟-全部都是你,http://em.21dtv.com/songs/60143989.mkv +达布希勒图-第三人称(现场版),http://em.21dtv.com/songs/60143988.mkv +边琦钧-哥哥别走,http://em.21dtv.com/songs/60143987.mkv +辉子-Gonna Be Fine,http://em.21dtv.com/songs/60143986.mkv +超级童颜乐队-风去云不回,http://em.21dtv.com/songs/60143985.mkv +赵霏儿-欠我一次旅行,http://em.21dtv.com/songs/60143984.mkv +赵粤-甜蜜冒险,http://em.21dtv.com/songs/60143983.mkv +赵真-十跪爹娘,http://em.21dtv.com/songs/60143982.mkv +赵真-世界上最美的花,http://em.21dtv.com/songs/60143981.mkv +赵海霞-唠叨是因为我爱你,http://em.21dtv.com/songs/60143980.mkv +赵永-勇敢追梦的人,http://em.21dtv.com/songs/60143979.mkv +赵果-犯二的女人,http://em.21dtv.com/songs/60143978.mkv +赵晨唏-我在等你,http://em.21dtv.com/songs/60143977.mkv +赵星翔-给句痛快话(人物),http://em.21dtv.com/songs/60143976.mkv +赵星翔-我的爱情是你的无情,http://em.21dtv.com/songs/60143975.mkv +赵星翔-你的梦里是否有个我,http://em.21dtv.com/songs/60143974.mkv +赵旋宇-错过,http://em.21dtv.com/songs/60143973.mkv +赵旋宇-沉淀,http://em.21dtv.com/songs/60143972.mkv +赵旋宇-我总会有一天,http://em.21dtv.com/songs/60143971.mkv +赵旋宇-多么多么,http://em.21dtv.com/songs/60143970.mkv +赵建军-拉手手亲口口,http://em.21dtv.com/songs/60143969.mkv +赵建军-唱起我的南泥湾,http://em.21dtv.com/songs/60143968.mkv +赵天宇-遗憾(现场版),http://em.21dtv.com/songs/60143967.mkv +赵天宇-被驯服的象(现场版),http://em.21dtv.com/songs/60143966.mkv +赵天宇-我喜欢上你时的内心活动,http://em.21dtv.com/songs/60143965.mkv +赵天宇-Faith(现场版),http://em.21dtv.com/songs/60143964.mkv +赵传-看不见的地方,http://em.21dtv.com/songs/60143963.mkv +赖辉-爱的火焰,http://em.21dtv.com/songs/60143962.mkv +贾永久-情满西湖爱在人间,http://em.21dtv.com/songs/60143961.mkv +贾富营-新婚曲,http://em.21dtv.com/songs/60143960.mkv +贾富营-到底爱还是不爱,http://em.21dtv.com/songs/60143959.mkv +贺敬轩+邵明明-情人,http://em.21dtv.com/songs/60143958.mkv +贺一航-我们分手吧,http://em.21dtv.com/songs/60143957.mkv +贺一航-弄你,http://em.21dtv.com/songs/60143956.mkv +费玉清-梦诛缘锁清秋(MTV),http://em.21dtv.com/songs/60143955.mkv +费小祥-七夕情歌,http://em.21dtv.com/songs/60143954.mkv +谭联耀-矜持,http://em.21dtv.com/songs/60143953.mkv +谭维维+韩磊-不忘初心,http://em.21dtv.com/songs/60143952.mkv +谭周瑞+王佳宁-忆未央,http://em.21dtv.com/songs/60143951.mkv +谢茸儿-么么(MTV),http://em.21dtv.com/songs/60143950.mkv +谢熙妍-亲爱的你,http://em.21dtv.com/songs/60143949.mkv +谢有才+杨蕾-何苦痴情又伤心,http://em.21dtv.com/songs/60143948.mkv +谢慧娴-我是一只鱼(现场版),http://em.21dtv.com/songs/60143947.mkv +谢慧娴-Flow(现场版),http://em.21dtv.com/songs/60143946.mkv +谢帝-这才是成都(风景),http://em.21dtv.com/songs/60143945.mkv +我坐讲台旁边,http://em.21dtv.com/songs/60143944.mkv +谢帝-You already know,http://em.21dtv.com/songs/60143943.mkv +谢少唐-When I Was Your Man(现场版),http://em.21dtv.com/songs/60143942.mkv +谢少唐-Lay Me Down(现场版),http://em.21dtv.com/songs/60143941.mkv +谢宜君+陈随意-风铃声,http://em.21dtv.com/songs/60143940.mkv +谢宜君-风中飘,http://em.21dtv.com/songs/60143939.mkv +谢宜君-醉人生,http://em.21dtv.com/songs/60143938.mkv +谢宜君-痴恋的一生,http://em.21dtv.com/songs/60143937.mkv +谢宜君-痴心等无爱,http://em.21dtv.com/songs/60143936.mkv +谢宜君-承认,http://em.21dtv.com/songs/60143935.mkv +谢宜君-心追风,http://em.21dtv.com/songs/60143934.mkv +谢宜君-女人纯情梦,http://em.21dtv.com/songs/60143933.mkv +谢子圻-失控的玩具熊,http://em.21dtv.com/songs/60143932.mkv +谢华+姜玉阳-千年之约,http://em.21dtv.com/songs/60143931.mkv +谢作健-相信自己,http://em.21dtv.com/songs/60143930.mkv +谢作健-宜山宜山,http://em.21dtv.com/songs/60143929.mkv +谢作健-兄弟情谊,http://em.21dtv.com/songs/60143928.mkv +谢作健-不怕挑战,http://em.21dtv.com/songs/60143927.mkv +谢丹+金久哲-一再迁就,http://em.21dtv.com/songs/60143926.mkv +许魏洲-忘了我吧,http://em.21dtv.com/songs/60143925.mkv +许靖韵-Shut Up(MTV),http://em.21dtv.com/songs/60143924.mkv +许晓杰-兄长,http://em.21dtv.com/songs/60143923.mkv +许志刚-草原的女人,http://em.21dtv.com/songs/60143922.mkv +许巍+叶蓓-流浪途中爱上你,http://em.21dtv.com/songs/60143921.mkv +许千千+祝洋-爱你一万载,http://em.21dtv.com/songs/60143920.mkv +许佳麟+颜慧萍+赖淞凤-这样的知己,http://em.21dtv.com/songs/60143919.mkv +许佳慧+东来东往-默契,http://em.21dtv.com/songs/60143918.mkv +许佳慧-夜行动物,http://em.21dtv.com/songs/60143917.mkv +许书豪-不畏谁,http://em.21dtv.com/songs/60143916.mkv +讲者-僵尸拉,http://em.21dtv.com/songs/60143915.mkv +覃艺馨-家乡恋歌,http://em.21dtv.com/songs/60143914.mkv +覃浩-请你到平南来做客,http://em.21dtv.com/songs/60143913.mkv +覃桢-路过我耳朵的忧伤,http://em.21dtv.com/songs/60143912.mkv +覃亮添-看手机的人,http://em.21dtv.com/songs/60143911.mkv +袁野+徐真真-哪里下的雨都一样,http://em.21dtv.com/songs/60143910.mkv +袁莉媛+小旭音乐-如果寂寞了,http://em.21dtv.com/songs/60143909.mkv +袁娅维-问情,http://em.21dtv.com/songs/60143908.mkv +袁冬东-慈溪,http://em.21dtv.com/songs/60143907.mkv +袁俊-男人轻易不说累,http://em.21dtv.com/songs/60143906.mkv +袁丽媛-也许再见,http://em.21dtv.com/songs/60143905.mkv +薛明媛+朱贺-非酋,http://em.21dtv.com/songs/60143904.mkv +薛之谦-王子公主,http://em.21dtv.com/songs/60143903.mkv +蔡晓-哭吧,http://em.21dtv.com/songs/60143902.mkv +蔡文静-命中注定,http://em.21dtv.com/songs/60143901.mkv +蔡佳麟+郭婷筠-今世情 再世缘,http://em.21dtv.com/songs/60143900.mkv +蓝琪儿-天蓝蓝水蓝蓝,http://em.21dtv.com/songs/60143899.mkv +蓝琪儿-五星红旗在雪域上飘扬,http://em.21dtv.com/songs/60143898.mkv +蓝天组合-黑脸帅哥,http://em.21dtv.com/songs/60143897.mkv +蓝天组合-起飞线上的我和你,http://em.21dtv.com/songs/60143896.mkv +蒙面哥-初见恨晚,http://em.21dtv.com/songs/60143895.mkv +蒙阿哥-2017母亲,http://em.21dtv.com/songs/60143894.mkv +蒋龙-行者,http://em.21dtv.com/songs/60143893.mkv +蒋雪儿-你走后的时光,http://em.21dtv.com/songs/60143892.mkv +蒋洋-男人模样,http://em.21dtv.com/songs/60143891.mkv +蒋婴-远方的爱人,http://em.21dtv.com/songs/60143890.mkv +蒋婴-舞红袖,http://em.21dtv.com/songs/60143889.mkv +蒋婴-泪红颜,http://em.21dtv.com/songs/60143888.mkv +董阳+格桑英妮-看上眼,http://em.21dtv.com/songs/60143887.mkv +董贞-白色阳光,http://em.21dtv.com/songs/60143886.mkv +董怡辰-不朽的诗篇,http://em.21dtv.com/songs/60143885.mkv +董子健+宋祖儿-冒险吧!龙之谷,http://em.21dtv.com/songs/60143884.mkv +董力-梦中情人,http://em.21dtv.com/songs/60143883.mkv +董俊-稻香^One Day,http://em.21dtv.com/songs/60143882.mkv +葛禹-爱上不能爱的人,http://em.21dtv.com/songs/60143881.mkv +莫日根-满江红,http://em.21dtv.com/songs/60143880.mkv +莫小娘-别怪我先走,http://em.21dtv.com/songs/60143879.mkv +莫安琪-好汉歌(现场版),http://em.21dtv.com/songs/60143878.mkv +荷兹HeZ-杀破狼(现场版),http://em.21dtv.com/songs/60143877.mkv +荷兹HeZ-我的(现场版),http://em.21dtv.com/songs/60143876.mkv +荷兹-搞不清的姐姐们的想不通的爱情,http://em.21dtv.com/songs/60143875.mkv +荷兹-啾啾啾(现场版),http://em.21dtv.com/songs/60143874.mkv +范陈炜-那情那爱那思念,http://em.21dtv.com/songs/60143873.mkv +苗苗+阿明-新洪湖水,http://em.21dtv.com/songs/60143872.mkv +苗苗-新洪湖水,http://em.21dtv.com/songs/60143871.mkv +苗伟-围城,http://em.21dtv.com/songs/60143870.mkv +苗伟-再不爱我就老了,http://em.21dtv.com/songs/60143869.mkv +苏珮卿-盼(MTV),http://em.21dtv.com/songs/60143868.mkv +苏星研-偶然间看到,http://em.21dtv.com/songs/60143867.mkv +苏成-风中芦苇荡,http://em.21dtv.com/songs/60143866.mkv +苏家恒-小人物K歌,http://em.21dtv.com/songs/60143865.mkv +花鼓小调-株洲风景游,http://em.21dtv.com/songs/60143864.mkv +花儿梦组合-幸福花儿梦,http://em.21dtv.com/songs/60143863.mkv +花僮-爱不关己,http://em.21dtv.com/songs/60143862.mkv +节奏部落-Hey Jude,http://em.21dtv.com/songs/60143861.mkv +艾菲-离骚,http://em.21dtv.com/songs/60143860.mkv +艾丽雅-信了,http://em.21dtv.com/songs/60143859.mkv +艾丽娅琪琪格-蒙古词典(MTV),http://em.21dtv.com/songs/60143858.mkv +艺涛+吴天世-战狼战狼,http://em.21dtv.com/songs/60143857.mkv +舒米恩-眼泪不要掉下来,http://em.21dtv.com/songs/60143856.mkv +舒清+冷漠-最美的时光,http://em.21dtv.com/songs/60143855.mkv +胡蒎-天国之吻,http://em.21dtv.com/songs/60143854.mkv +胡栋栋-我想我不会爱你(现场版),http://em.21dtv.com/songs/60143853.mkv +胡彦斌-男配角,http://em.21dtv.com/songs/60143852.mkv +胡建烽-爱的深伤的深,http://em.21dtv.com/songs/60143851.mkv +胡宇威-知道,http://em.21dtv.com/songs/60143850.mkv +肖龙-兄弟感谢有你,http://em.21dtv.com/songs/60143849.mkv +肖雪-青衣,http://em.21dtv.com/songs/60143848.mkv +肖雪-约定,http://em.21dtv.com/songs/60143847.mkv +肖雪-红娘,http://em.21dtv.com/songs/60143846.mkv +肖雪-白蛇(MTV),http://em.21dtv.com/songs/60143845.mkv +肖雪-情深意长,http://em.21dtv.com/songs/60143844.mkv +肖雪-原来你也在这里,http://em.21dtv.com/songs/60143843.mkv +肖磊+龙彦如-手牵手,http://em.21dtv.com/songs/60143842.mkv +肖敏晔-回到过去(现场版),http://em.21dtv.com/songs/60143841.mkv +肖凯晔-爱我(现场版),http://em.21dtv.com/songs/60143840.mkv +老光-微商,http://em.21dtv.com/songs/60143839.mkv +老光-回家,http://em.21dtv.com/songs/60143838.mkv +翁大涵-假如时间变成哑巴,http://em.21dtv.com/songs/60143837.mkv +群星-告白情歌,http://em.21dtv.com/songs/60143836.mkv +群星-你的哭泣连着我的心,http://em.21dtv.com/songs/60143835.mkv +群星-一辈子的朋友,http://em.21dtv.com/songs/60143834.mkv +罗正委-比幸福更幸福,http://em.21dtv.com/songs/60143833.mkv +罗大佑-家(MTV),http://em.21dtv.com/songs/60143832.mkv +罗大佑-同学会,http://em.21dtv.com/songs/60143831.mkv +罗启聪-衰仔大学(MTV),http://em.21dtv.com/songs/60143830.mkv +罗力威-古董车(MTV),http://em.21dtv.com/songs/60143829.mkv +缪以欣-那一天,http://em.21dtv.com/songs/60143828.mkv +缪以欣-侵噬(MTV),http://em.21dtv.com/songs/60143827.mkv +红袖标乐队-翠湖畔,http://em.21dtv.com/songs/60143826.mkv +红花乐团-真实的快乐,http://em.21dtv.com/songs/60143825.mkv +红花乐团-无名超人,http://em.21dtv.com/songs/60143824.mkv +紫炫-人生真滋味,http://em.21dtv.com/songs/60143823.mkv +索朗措+乐正剑-回家,http://em.21dtv.com/songs/60143822.mkv +索朗措-草原情歌,http://em.21dtv.com/songs/60143821.mkv +索朗措-回家,http://em.21dtv.com/songs/60143820.mkv +索朗扎西-四川姑娘,http://em.21dtv.com/songs/60143819.mkv +糖果树-零下二十一度的爱情,http://em.21dtv.com/songs/60143818.mkv +糖果树-爱情启示录,http://em.21dtv.com/songs/60143817.mkv +糖果树-最后的温柔,http://em.21dtv.com/songs/60143816.mkv +糖果树-天天,http://em.21dtv.com/songs/60143815.mkv +糖果树-印烙,http://em.21dtv.com/songs/60143814.mkv +糖果树-你还在,http://em.21dtv.com/songs/60143813.mkv +简弘亦-退场嘉宾,http://em.21dtv.com/songs/60143812.mkv +符致逸-寡人,http://em.21dtv.com/songs/60143811.mkv +程欢-我们是兄弟,http://em.21dtv.com/songs/60143810.mkv +程晶晶-你走了,http://em.21dtv.com/songs/60143809.mkv +程响-怎么会不难过,http://em.21dtv.com/songs/60143808.mkv +秦宇子-Luna,http://em.21dtv.com/songs/60143807.mkv +秦子墨-刀剑如梦,http://em.21dtv.com/songs/60143806.mkv +神鹰乐队-机务兄弟,http://em.21dtv.com/songs/60143805.mkv +神马乐团-累了,http://em.21dtv.com/songs/60143804.mkv +神马乐团-眼泪的错觉,http://em.21dtv.com/songs/60143803.mkv +神马乐团-爱河,http://em.21dtv.com/songs/60143802.mkv +神马乐团-梦的起点,http://em.21dtv.com/songs/60143801.mkv +神马乐团-来不及,http://em.21dtv.com/songs/60143800.mkv +神马乐团-忍耐,http://em.21dtv.com/songs/60143799.mkv +神马乐团-家,http://em.21dtv.com/songs/60143798.mkv +神马乐团-单爱,http://em.21dtv.com/songs/60143797.mkv +神马乐团-做梦,http://em.21dtv.com/songs/60143796.mkv +神马乐团-不安分,http://em.21dtv.com/songs/60143795.mkv +祝子杰-海上的月亮(现场版),http://em.21dtv.com/songs/60143794.mkv +祝子杰-棉花糖(现场版),http://em.21dtv.com/songs/60143793.mkv +祝子杰-恶作剧,http://em.21dtv.com/songs/60143792.mkv +祝代丽-做你的宝贝,http://em.21dtv.com/songs/60143791.mkv +祈inory+桐子(KiRiKo)-出发吧!新世纪,http://em.21dtv.com/songs/60143790.mkv +祈inory-出发吧新世界,http://em.21dtv.com/songs/60143789.mkv +石咏莉-以前,http://em.21dtv.com/songs/60143788.mkv +石俊贵+刘心-森迷,http://em.21dtv.com/songs/60143787.mkv +石俊哲-爱已时过境迁,http://em.21dtv.com/songs/60143786.mkv +看雪听风-悲凉的月亮,http://em.21dtv.com/songs/60143785.mkv +白海生-留住的就是幸福,http://em.21dtv.com/songs/60143784.mkv +白晓洋-相约袁州,http://em.21dtv.com/songs/60143783.mkv +白小白-她不是真的爱我,http://em.21dtv.com/songs/60143782.mkv +疯格-情歌唱到九十九,http://em.21dtv.com/songs/60143781.mkv +田越-我没有哭只是流眼泪,http://em.21dtv.com/songs/60143780.mkv +田田-阳光下的阿爸,http://em.21dtv.com/songs/60143779.mkv +田田-轻轻地爱淡淡地想念,http://em.21dtv.com/songs/60143778.mkv +田田-莲生三朵,http://em.21dtv.com/songs/60143777.mkv +田田-美丽的牧羊姑娘,http://em.21dtv.com/songs/60143776.mkv +田田-等你在西藏,http://em.21dtv.com/songs/60143775.mkv +田田-心约青海湖,http://em.21dtv.com/songs/60143774.mkv +田田-兰殇,http://em.21dtv.com/songs/60143773.mkv +瑞桐-凤凰涅槃,http://em.21dtv.com/songs/60143772.mkv +琴剑-沉香醉墨,http://em.21dtv.com/songs/60143771.mkv +理想后花园-给一个焦虑症的朋友,http://em.21dtv.com/songs/60143770.mkv +玖壹壹-派对侠,http://em.21dtv.com/songs/60143769.mkv +王馨-爱过你真的不后悔,http://em.21dtv.com/songs/60143768.mkv +王铮亮+郁可唯-星月,http://em.21dtv.com/songs/60143767.mkv +王超-远方,http://em.21dtv.com/songs/60143766.mkv +王起宏-爱到心口,http://em.21dtv.com/songs/60143765.mkv +王起宏-我好寂寞,http://em.21dtv.com/songs/60143764.mkv +王起宏-帆船之恋,http://em.21dtv.com/songs/60143763.mkv +王起宏-天涯痴情客,http://em.21dtv.com/songs/60143762.mkv +王起宏-不要说分手,http://em.21dtv.com/songs/60143761.mkv +王觉-激情中国,http://em.21dtv.com/songs/60143760.mkv +王觉-世上没有后悔药,http://em.21dtv.com/songs/60143759.mkv +王紫格-格调,http://em.21dtv.com/songs/60143758.mkv +王竟力-花样年华(现场版),http://em.21dtv.com/songs/60143757.mkv +王竟力-开到荼蘼(现场版),http://em.21dtv.com/songs/60143756.mkv +王竟力-但愿人长久,http://em.21dtv.com/songs/60143755.mkv +王竟力-Love(现场版),http://em.21dtv.com/songs/60143754.mkv +王祥森-一起高呼,http://em.21dtv.com/songs/60143753.mkv +王珞丹-Forever Young,http://em.21dtv.com/songs/60143752.mkv +王爱华-爱不需要说那么多,http://em.21dtv.com/songs/60143751.mkv +王爱华-宝贝不要哭泣,http://em.21dtv.com/songs/60143750.mkv +王爱华-不要在你伤心的时候找我,http://em.21dtv.com/songs/60143749.mkv +王滔-原来我以为,http://em.21dtv.com/songs/60143748.mkv +王海滨-爱的诺言,http://em.21dtv.com/songs/60143747.mkv +王柏龙-旅行的意义,http://em.21dtv.com/songs/60143746.mkv +王林-怎样,http://em.21dtv.com/songs/60143745.mkv +王月华-雪飞梅红,http://em.21dtv.com/songs/60143744.mkv +王月华-热恋,http://em.21dtv.com/songs/60143743.mkv +王月华-新唱钗头凤,http://em.21dtv.com/songs/60143742.mkv +王月华-中华啊我的母亲,http://em.21dtv.com/songs/60143741.mkv +王晟涵-大爱晚成,http://em.21dtv.com/songs/60143740.mkv +王晟涵-伤了那么久,http://em.21dtv.com/songs/60143739.mkv +王懿佳-心的距离(现场版),http://em.21dtv.com/songs/60143738.mkv +王思远-逃不掉,http://em.21dtv.com/songs/60143737.mkv +王思远-心脏,http://em.21dtv.com/songs/60143736.mkv +王强-人生难得几回醉,http://em.21dtv.com/songs/60143735.mkv +王建荣-明珠之城,http://em.21dtv.com/songs/60143734.mkv +王建房-在人间,http://em.21dtv.com/songs/60143733.mkv +王岩-强扭的瓜不甜,http://em.21dtv.com/songs/60143732.mkv +王岩-就是爱你,http://em.21dtv.com/songs/60143731.mkv +王岩-卤水点豆腐,http://em.21dtv.com/songs/60143730.mkv +王岩-余生只能爱你,http://em.21dtv.com/songs/60143729.mkv +王岩-一朵鲜花长在牛粪上,http://em.21dtv.com/songs/60143728.mkv +王小荣-孪生姐妹,http://em.21dtv.com/songs/60143727.mkv +王寅时-啊嘤,http://em.21dtv.com/songs/60143726.mkv +王子-做自己的王子,http://em.21dtv.com/songs/60143725.mkv +王城-为你改变我自己,http://em.21dtv.com/songs/60143724.mkv +王嘉诚-机器男友,http://em.21dtv.com/songs/60143723.mkv +王嘉仪-给男神的面书,http://em.21dtv.com/songs/60143722.mkv +王喆-醉美酒城宫,http://em.21dtv.com/songs/60143721.mkv +王可-妄语戒,http://em.21dtv.com/songs/60143720.mkv +王冠逸-信教育,http://em.21dtv.com/songs/60143719.mkv +王倩+周怡然-厉害了我的国,http://em.21dtv.com/songs/60143718.mkv +王佳佳-黄土亲祖辈亲愿,http://em.21dtv.com/songs/60143717.mkv +王乐汀-Leave Me Alone(现场版),http://em.21dtv.com/songs/60143716.mkv +王中平-好好爱护你,http://em.21dtv.com/songs/60143715.mkv +王一博+关晓彤-二次初恋,http://em.21dtv.com/songs/60143714.mkv +牟德冰-最爱的女人,http://em.21dtv.com/songs/60143713.mkv +牙牙乐-备胎的懦弱,http://em.21dtv.com/songs/60143712.mkv +燕池-九重山,http://em.21dtv.com/songs/60143711.mkv +熊梓淇+黄伟晋-破泪,http://em.21dtv.com/songs/60143710.mkv +炫棋儿-阴阳劫,http://em.21dtv.com/songs/60143709.mkv +炫棋儿-神奇的可可西里,http://em.21dtv.com/songs/60143708.mkv +炫棋儿-我是雄鹰你是狼,http://em.21dtv.com/songs/60143707.mkv +炫棋儿-上海的奉贤是我家,http://em.21dtv.com/songs/60143706.mkv +炎洋+王晓瑜-比想象永恒,http://em.21dtv.com/songs/60143705.mkv +炎洋+李承+李阳-Keep Real Me,http://em.21dtv.com/songs/60143704.mkv +炎洋-那样一个人,http://em.21dtv.com/songs/60143703.mkv +炎洋-纪月嵘,http://em.21dtv.com/songs/60143702.mkv +炎洋-离散季节,http://em.21dtv.com/songs/60143701.mkv +炎洋-碎年之隔,http://em.21dtv.com/songs/60143700.mkv +炎洋-宣告3,http://em.21dtv.com/songs/60143699.mkv +炎洋-只是我未曾忘记,http://em.21dtv.com/songs/60143698.mkv +炎洋-从未懂得炎洋,http://em.21dtv.com/songs/60143697.mkv +炎洋-不同人,http://em.21dtv.com/songs/60143696.mkv +潘玮柏战队-700(现场版),http://em.21dtv.com/songs/60143695.mkv +潘军+司红军-老伴儿,http://em.21dtv.com/songs/60143694.mkv +潘军-英雄依旧,http://em.21dtv.com/songs/60143693.mkv +潘军-湘女神韵,http://em.21dtv.com/songs/60143692.mkv +潘军-温暖,http://em.21dtv.com/songs/60143691.mkv +潘军-渔舟唱晚,http://em.21dtv.com/songs/60143690.mkv +潘军-母亲河,http://em.21dtv.com/songs/60143689.mkv +潘军-桃花红杏花白,http://em.21dtv.com/songs/60143688.mkv +潘军-春满京城,http://em.21dtv.com/songs/60143687.mkv +潘军-映山红,http://em.21dtv.com/songs/60143686.mkv +潘军-无名花,http://em.21dtv.com/songs/60143685.mkv +潘军-恋我故乡,http://em.21dtv.com/songs/60143684.mkv +潘军-忠诚,http://em.21dtv.com/songs/60143683.mkv +潘军-妈妈留给我一首歌,http://em.21dtv.com/songs/60143682.mkv +潘军-太空中有一行中国的脚印,http://em.21dtv.com/songs/60143681.mkv +潘军-天天是春天,http://em.21dtv.com/songs/60143680.mkv +潘伯仲-我是病人,http://em.21dtv.com/songs/60143679.mkv +温建林-一搭搭里,http://em.21dtv.com/songs/60143678.mkv +温建林-一对对鸳鸯水上漂,http://em.21dtv.com/songs/60143677.mkv +温建林-一壶老酒,http://em.21dtv.com/songs/60143676.mkv +深海-对着回忆说再见,http://em.21dtv.com/songs/60143675.mkv +涓子-只恋百合美,http://em.21dtv.com/songs/60143674.mkv +海镔-爱你恨你放不下你,http://em.21dtv.com/songs/60143673.mkv +海生-死不放手其实很丑,http://em.21dtv.com/songs/60143672.mkv +海弦月-婚礼进行时,http://em.21dtv.com/songs/60143671.mkv +浅笑-爱染残花香,http://em.21dtv.com/songs/60143670.mkv +派伟俊-战斗吧枪娘,http://em.21dtv.com/songs/60143669.mkv +洛天依-花花世界,http://em.21dtv.com/songs/60143668.mkv +泽央卓玛-爸爸妈妈,http://em.21dtv.com/songs/60143667.mkv +泽仁哈姆-贴近太阳的地方,http://em.21dtv.com/songs/60143666.mkv +泽仁哈姆-莫尼山,http://em.21dtv.com/songs/60143665.mkv +泽仁哈姆-草原夜色美,http://em.21dtv.com/songs/60143664.mkv +泽仁哈姆-玛尼情歌,http://em.21dtv.com/songs/60143663.mkv +泽仁哈姆-歌在飞,http://em.21dtv.com/songs/60143662.mkv +泽仁哈姆-梦来梦去醉千年,http://em.21dtv.com/songs/60143661.mkv +泽仁哈姆-月光下的布达拉,http://em.21dtv.com/songs/60143660.mkv +泽仁哈姆-手心里的温柔,http://em.21dtv.com/songs/60143659.mkv +泽仁哈姆-我的根在草原,http://em.21dtv.com/songs/60143658.mkv +泽仁哈姆-慈祥的阿爸,http://em.21dtv.com/songs/60143657.mkv +泽仁哈姆-慈祥的母亲,http://em.21dtv.com/songs/60143656.mkv +泽仁哈姆-呼伦贝尔大草原,http://em.21dtv.com/songs/60143655.mkv +法兰黛乐团-一时脆弱,http://em.21dtv.com/songs/60143654.mkv +沈佳玉-你们很配,http://em.21dtv.com/songs/60143653.mkv +沁心小筑+烟圈-妹妹花,http://em.21dtv.com/songs/60143652.mkv +汪苏泷-吃土,http://em.21dtv.com/songs/60143651.mkv +汪苏泷-I'll Be There,http://em.21dtv.com/songs/60143650.mkv +汪泓-梦想之巅,http://em.21dtv.com/songs/60143649.mkv +汪峰-雨天的回忆,http://em.21dtv.com/songs/60143648.mkv +汪峰-一瞬间,http://em.21dtv.com/songs/60143647.mkv +汪小敏-Waiting For You,http://em.21dtv.com/songs/60143646.mkv +江若琳-我只不过是我,http://em.21dtv.com/songs/60143645.mkv +水果哥-我还没有把你爱够,http://em.21dtv.com/songs/60143644.mkv +水果哥-心牢,http://em.21dtv.com/songs/60143643.mkv +毛雨张-你敢我就敢(现场版),http://em.21dtv.com/songs/60143642.mkv +毛泽少-微凉,http://em.21dtv.com/songs/60143641.mkv +毛泽少-可以如果,http://em.21dtv.com/songs/60143640.mkv +毛泽少-亲爱的请留下,http://em.21dtv.com/songs/60143639.mkv +毛不易-消愁(现场版),http://em.21dtv.com/songs/60143638.mkv +毛不易-感觉自己是巨星,http://em.21dtv.com/songs/60143637.mkv +毛不易-像我这样的人(现场版),http://em.21dtv.com/songs/60143636.mkv +毛不易-二零三(现场版),http://em.21dtv.com/songs/60143635.mkv +毕书尽-You're Gone,http://em.21dtv.com/songs/60143634.mkv +段娟-农民工我的好兄弟,http://em.21dtv.com/songs/60143633.mkv +段娟-乡恋,http://em.21dtv.com/songs/60143632.mkv +正负极组合-拥抱中国梦,http://em.21dtv.com/songs/60143631.mkv +正云-我问你,http://em.21dtv.com/songs/60143630.mkv +欧阳靖+Tizzy T-无束缚,http://em.21dtv.com/songs/60143629.mkv +欧阳靖-Rhyme Book,http://em.21dtv.com/songs/60143628.mkv +欧阳靖-Hiphop Man,http://em.21dtv.com/songs/60143627.mkv +欧阳青-敬佛要有一颗慈悲心,http://em.21dtv.com/songs/60143626.mkv +欧阳朵+小小浩-时光荏苒,http://em.21dtv.com/songs/60143625.mkv +欧阳尚尚-别问爱的对不对,http://em.21dtv.com/songs/60143624.mkv +楚颜-清衣襟,http://em.21dtv.com/songs/60143623.mkv +梦彤-相约虎邱,http://em.21dtv.com/songs/60143622.mkv +梅朵-一辈子对你好,http://em.21dtv.com/songs/60143621.mkv +梅朵-一曲禅音,http://em.21dtv.com/songs/60143620.mkv +梅子飘香-我在苍溪等你来,http://em.21dtv.com/songs/60143619.mkv +梁静茹-我就知道那是爱,http://em.21dtv.com/songs/60143618.mkv +梁汉文-缠绵朋友,http://em.21dtv.com/songs/60143617.mkv +梁根荣-后退,http://em.21dtv.com/songs/60143616.mkv +梁文福+刘瑞政+王邦吉-细水长流,http://em.21dtv.com/songs/60143615.mkv +桑娜央金-我爱你西藏,http://em.21dtv.com/songs/60143614.mkv +桑娜央金-心中的西藏,http://em.21dtv.com/songs/60143613.mkv +格桑英妮-美丽的草原,http://em.21dtv.com/songs/60143612.mkv +校长-带你去旅行,http://em.21dtv.com/songs/60143611.mkv +柴俊-无法原谅,http://em.21dtv.com/songs/60143610.mkv +柳月芽-记忆晴空,http://em.21dtv.com/songs/60143609.mkv +柯言-再叫你一声亲爱的,http://em.21dtv.com/songs/60143608.mkv +柯羽-老妹儿,http://em.21dtv.com/songs/60143607.mkv +柯泯薰-失去光的萤火,http://em.21dtv.com/songs/60143606.mkv +柯泯薰-光害,http://em.21dtv.com/songs/60143605.mkv +枫舞+何文秀-黑夜梦见孤身游,http://em.21dtv.com/songs/60143604.mkv +枫舞-一缕芳魂蓝桥梦,http://em.21dtv.com/songs/60143603.mkv +林正-To Mom,http://em.21dtv.com/songs/60143602.mkv +林欣甫-克隆太阳,http://em.21dtv.com/songs/60143601.mkv +林思彤-思童,http://em.21dtv.com/songs/60143600.mkv +林奕匡-有泪多好,http://em.21dtv.com/songs/60143599.mkv +林和夜-相聚万年树,http://em.21dtv.com/songs/60143598.mkv +杰子-新一曲红尘,http://em.21dtv.com/songs/60143597.mkv +杨静-我们还要不要爱下去,http://em.21dtv.com/songs/60143596.mkv +杨语浠-爱的就是你,http://em.21dtv.com/songs/60143595.mkv +杨英越+杨琳-心中的向往,http://em.21dtv.com/songs/60143594.mkv +杨清明-全身而退,http://em.21dtv.com/songs/60143593.mkv +杨海莺-好戏连台,http://em.21dtv.com/songs/60143592.mkv +杨洪铭+刘晓霞-我爱你中国,http://em.21dtv.com/songs/60143591.mkv +杨洪铭-滚滚长江东逝水,http://em.21dtv.com/songs/60143590.mkv +杨洪铭-夕阳红,http://em.21dtv.com/songs/60143589.mkv +杨梓文祺-那么近那么远(MTV),http://em.21dtv.com/songs/60143588.mkv +杨格-炸毁这种妖艳的世界,http://em.21dtv.com/songs/60143587.mkv +杨斯捷-不说再见,http://em.21dtv.com/songs/60143586.mkv +杨敏-时光情书,http://em.21dtv.com/songs/60143585.mkv +杨帆-无处可躲,http://em.21dtv.com/songs/60143584.mkv +杨小帅-儿时(现场版),http://em.21dtv.com/songs/60143583.mkv +杨子杰-她走了,http://em.21dtv.com/songs/60143582.mkv +杨培安+崔子格-生死相随,http://em.21dtv.com/songs/60143581.mkv +杨卿俪-勿忘初心,http://em.21dtv.com/songs/60143580.mkv +杨军-健康最重要,http://em.21dtv.com/songs/60143579.mkv +杨军-今生来世好兄弟,http://em.21dtv.com/songs/60143578.mkv +杨光-呼吸不说谎,http://em.21dtv.com/songs/60143577.mkv +杨仪秀-您好房莹瑜伽,http://em.21dtv.com/songs/60143576.mkv +杨东伟-不尽的思念,http://em.21dtv.com/songs/60143575.mkv +杜瑞才-喜哈哈,http://em.21dtv.com/songs/60143574.mkv +杜桦-三生三世桃花缘,http://em.21dtv.com/songs/60143573.mkv +杜星萤-致姗姗来迟的你(现场版),http://em.21dtv.com/songs/60143572.mkv +杜星萤-给你看(现场版),http://em.21dtv.com/songs/60143571.mkv +杜冠宏-爱情天份,http://em.21dtv.com/songs/60143570.mkv +李雅-越过山丘(现场版),http://em.21dtv.com/songs/60143569.mkv +李雅-旅途(现场版),http://em.21dtv.com/songs/60143568.mkv +李采娜-不再过问,http://em.21dtv.com/songs/60143567.mkv +李道鹏-那些岁月,http://em.21dtv.com/songs/60143566.mkv +李道鹏-亏欠,http://em.21dtv.com/songs/60143565.mkv +李行亮-如果可以这样爱,http://em.21dtv.com/songs/60143564.mkv +李荣浩-裙姊,http://em.21dtv.com/songs/60143563.mkv +李素专+李明洋-爱像一把火,http://em.21dtv.com/songs/60143562.mkv +李素专+黄燿德-有你作伴,http://em.21dtv.com/songs/60143561.mkv +李素专+阿锜-舒适啦,http://em.21dtv.com/songs/60143560.mkv +李素专+阿堂-情定爱河桥,http://em.21dtv.com/songs/60143559.mkv +李素专+邱贤桂-我有你,http://em.21dtv.com/songs/60143558.mkv +李素专-美梦成真,http://em.21dtv.com/songs/60143557.mkv +李素专-相思伴孤影,http://em.21dtv.com/songs/60143556.mkv +李素专-爱这重,http://em.21dtv.com/songs/60143555.mkv +李素专-探戈恋歌,http://em.21dtv.com/songs/60143554.mkv +李素专-可爱的人,http://em.21dtv.com/songs/60143553.mkv +李硕-如果你爱我(现场版),http://em.21dtv.com/songs/60143552.mkv +李玲玉-江南吟,http://em.21dtv.com/songs/60143551.mkv +李炜-光芒,http://em.21dtv.com/songs/60143550.mkv +李炎欣-以父之名,http://em.21dtv.com/songs/60143549.mkv +李永和-一枚戒指,http://em.21dtv.com/songs/60143548.mkv +李智英-你的绝情伤害了我,http://em.21dtv.com/songs/60143547.mkv +李明源-告白气球^稻香,http://em.21dtv.com/songs/60143546.mkv +李昊-遥远的她,http://em.21dtv.com/songs/60143545.mkv +李志敏-只是,http://em.21dtv.com/songs/60143544.mkv +李建科-道心,http://em.21dtv.com/songs/60143543.mkv +李建科-过了命的兄弟,http://em.21dtv.com/songs/60143542.mkv +李小薇-爱自已多一点,http://em.21dtv.com/songs/60143541.mkv +李小薇-暗恋的味道,http://em.21dtv.com/songs/60143540.mkv +李小影-春雨,http://em.21dtv.com/songs/60143539.mkv +李宣榕-101滴点滴,http://em.21dtv.com/songs/60143538.mkv +李宗任-永远都是好兄弟,http://em.21dtv.com/songs/60143537.mkv +李大奔-Bibble时尚圣经,http://em.21dtv.com/songs/60143536.mkv +李克非-海市,http://em.21dtv.com/songs/60143535.mkv +李克勤+6号-黑胶,http://em.21dtv.com/songs/60143534.mkv +李克勤-失魂记(MTV),http://em.21dtv.com/songs/60143533.mkv +李俊聪-哭了,http://em.21dtv.com/songs/60143532.mkv +李一哲-Fat Boy,http://em.21dtv.com/songs/60143531.mkv +朱海君+吴俊宏-爱的灯火,http://em.21dtv.com/songs/60143530.mkv +朱海君-等天光,http://em.21dtv.com/songs/60143529.mkv +朱海君-石磨的心,http://em.21dtv.com/songs/60143528.mkv +朱海君-梦醒在天涯,http://em.21dtv.com/songs/60143527.mkv +朱海君-春天的露水,http://em.21dtv.com/songs/60143526.mkv +朱海君-探戈跳抹煞,http://em.21dtv.com/songs/60143525.mkv +朱海君-思念行李,http://em.21dtv.com/songs/60143524.mkv +朱海君-不是不爱,http://em.21dtv.com/songs/60143523.mkv +朱泽锋-天已黑,http://em.21dtv.com/songs/60143522.mkv +朱泽轩-不平凡的梦,http://em.21dtv.com/songs/60143521.mkv +朱梓溶-总有阳光在等候,http://em.21dtv.com/songs/60143520.mkv +朱婷婷-我(现场版),http://em.21dtv.com/songs/60143519.mkv +朱俐静-其实没聊什么,http://em.21dtv.com/songs/60143518.mkv +望海高歌-散了吧忘了吧,http://em.21dtv.com/songs/60143517.mkv +望海高歌-归家的男人,http://em.21dtv.com/songs/60143516.mkv +望海高歌-因为爱着你才不会再联系,http://em.21dtv.com/songs/60143515.mkv +望海高歌-三生三世爱不变,http://em.21dtv.com/songs/60143514.mkv +曾沛慈-我爱你,http://em.21dtv.com/songs/60143513.mkv +曾春年-隔壁的童话,http://em.21dtv.com/songs/60143512.mkv +曾妮-我的幸福化了妆,http://em.21dtv.com/songs/60143511.mkv +曾之乔-猜猜看,http://em.21dtv.com/songs/60143510.mkv +曹蕾-斑马,http://em.21dtv.com/songs/60143509.mkv +曹芙嘉-苏绣,http://em.21dtv.com/songs/60143508.mkv +曲德腾-妈妈的温暖,http://em.21dtv.com/songs/60143507.mkv +曲大雷-你为我哭过,http://em.21dtv.com/songs/60143506.mkv +曲大雷-一往直前,http://em.21dtv.com/songs/60143505.mkv +曲丹+汤非-山水恋情,http://em.21dtv.com/songs/60143504.mkv +曦美-我爱你,http://em.21dtv.com/songs/60143503.mkv +暴林-走到生命尽头也不分手,http://em.21dtv.com/songs/60143502.mkv +暴林-痴心是我犯的错,http://em.21dtv.com/songs/60143501.mkv +晨熙-爱是一道美丽的伤痕,http://em.21dtv.com/songs/60143500.mkv +晨熙-你是我的情意,http://em.21dtv.com/songs/60143499.mkv +晨熙-下一次相遇(MTV),http://em.21dtv.com/songs/60143498.mkv +晓白-真的喜欢你,http://em.21dtv.com/songs/60143497.mkv +晓枫-甘蔗林,http://em.21dtv.com/songs/60143496.mkv +晓月-无处可诉,http://em.21dtv.com/songs/60143495.mkv +晓依-网络遇见你,http://em.21dtv.com/songs/60143494.mkv +晓依-在网络认识你,http://em.21dtv.com/songs/60143493.mkv +晋州雨夜-下雨的夜晚更想你,http://em.21dtv.com/songs/60143492.mkv +星月组合-爱情就像一首歌,http://em.21dtv.com/songs/60143491.mkv +星月组合-爱情上上签,http://em.21dtv.com/songs/60143490.mkv +星月组合-多想做你最爱的人,http://em.21dtv.com/songs/60143489.mkv +星月组合-一首醉人的歌,http://em.21dtv.com/songs/60143488.mkv +星月组合-一生痴恋,http://em.21dtv.com/songs/60143487.mkv +易安音乐社-不二剧本,http://em.21dtv.com/songs/60143486.mkv +明日之憧乐队-处女座,http://em.21dtv.com/songs/60143485.mkv +旧是旧人-梦里长辞,http://em.21dtv.com/songs/60143484.mkv +施炎灿-无期的守候,http://em.21dtv.com/songs/60143483.mkv +方雨晨-小巷,http://em.21dtv.com/songs/60143482.mkv +方宥心-蓝色纪念日,http://em.21dtv.com/songs/60143481.mkv +方圆-You Are My Sunshine,http://em.21dtv.com/songs/60143480.mkv +方亦娜-争取不到的幸福,http://em.21dtv.com/songs/60143479.mkv +文龙-爱到不能爱,http://em.21dtv.com/songs/60143478.mkv +文彰-不是故意爱上你,http://em.21dtv.com/songs/60143477.mkv +敬永建-重生,http://em.21dtv.com/songs/60143476.mkv +敬永建-自由天堂,http://em.21dtv.com/songs/60143475.mkv +敬永建-男儿有泪可轻弹,http://em.21dtv.com/songs/60143474.mkv +敬永建-永远的共产党,http://em.21dtv.com/songs/60143473.mkv +敬永建-微爱信,http://em.21dtv.com/songs/60143472.mkv +敬永建-如意娘的泪,http://em.21dtv.com/songs/60143471.mkv +敬永建-嗨p(人物),http://em.21dtv.com/songs/60143470.mkv +敖都-阿妈的高原,http://em.21dtv.com/songs/60143469.mkv +敖都-等你回家,http://em.21dtv.com/songs/60143468.mkv +敖都-回家,http://em.21dtv.com/songs/60143467.mkv +放飞乐队-可爱的机务兵,http://em.21dtv.com/songs/60143466.mkv +放飞乐队-勇敢的机务兵,http://em.21dtv.com/songs/60143465.mkv +放飞乐队-出征,http://em.21dtv.com/songs/60143464.mkv +放飞乐队-光荣的机务兵,http://em.21dtv.com/songs/60143463.mkv +收音机人-虚度,http://em.21dtv.com/songs/60143462.mkv +拒绝燃烧-泪红颜,http://em.21dtv.com/songs/60143461.mkv +拉巴次仁-醉美阿里,http://em.21dtv.com/songs/60143460.mkv +拉巴次仁-梦入你心房,http://em.21dtv.com/songs/60143459.mkv +托尼三郎-德艺龙之歌,http://em.21dtv.com/songs/60143458.mkv +扎西平措-春(现场版),http://em.21dtv.com/songs/60143457.mkv +才旺罗布-牧歌,http://em.21dtv.com/songs/60143456.mkv +才旺罗布-When I Was Your Man,http://em.21dtv.com/songs/60143455.mkv +才旺罗布-Sorry Seems To Be The Hardest Word,http://em.21dtv.com/songs/60143454.mkv +才旺罗布-Runaway Baby(现场版),http://em.21dtv.com/songs/60143453.mkv +戴荃-河神之歌,http://em.21dtv.com/songs/60143452.mkv +战月源-算了吧,http://em.21dtv.com/songs/60143451.mkv +成龙+欧阳娜娜-A Whole New World,http://em.21dtv.com/songs/60143450.mkv +成雷-别为她哭了,http://em.21dtv.com/songs/60143449.mkv +成雷-今夜留下来,http://em.21dtv.com/songs/60143448.mkv +成方圆-思念成殇,http://em.21dtv.com/songs/60143447.mkv +戈阳-你若懂我,http://em.21dtv.com/songs/60143446.mkv +慢慢说乐团-SE NO,http://em.21dtv.com/songs/60143445.mkv +恩宠-快到碗里来(MTV),http://em.21dtv.com/songs/60143444.mkv +思予-爱情大风暴,http://em.21dtv.com/songs/60143443.mkv +徐飞-无悔的存在,http://em.21dtv.com/songs/60143442.mkv +徐铭志-我知道,http://em.21dtv.com/songs/60143441.mkv +徐菲-说爱,http://em.21dtv.com/songs/60143440.mkv +徐秉龙+桃十五-青柠,http://em.21dtv.com/songs/60143439.mkv +徐环-我的狗,http://em.21dtv.com/songs/60143438.mkv +徐彬彬-明明,http://em.21dtv.com/songs/60143437.mkv +徐彬彬-一生相随,http://em.21dtv.com/songs/60143436.mkv +徐云霄-敢爱的冲动,http://em.21dtv.com/songs/60143435.mkv +徐云霄-不如,http://em.21dtv.com/songs/60143434.mkv +彭天琪-要你快乐,http://em.21dtv.com/songs/60143433.mkv +强东亮+杜歌-一生兄弟大过天,http://em.21dtv.com/songs/60143432.mkv +张静-千年丝路,http://em.21dtv.com/songs/60143431.mkv +张靓颖-十里桃花,http://em.21dtv.com/songs/60143430.mkv +张震岳热狗战队-遥远不远(现场版),http://em.21dtv.com/songs/60143429.mkv +张震岳+MC Hotdog-差不多先生,http://em.21dtv.com/songs/60143428.mkv +张雷-也许,http://em.21dtv.com/songs/60143427.mkv +张阳阳-昨夜以前的星光,http://em.21dtv.com/songs/60143426.mkv +张鑫-如果来生还能遇见你(现场版),http://em.21dtv.com/songs/60143425.mkv +张鑫-Blue Suede Shoes(现场版),http://em.21dtv.com/songs/60143424.mkv +张计划-虚伪的世界,http://em.21dtv.com/songs/60143423.mkv +张薇+汤子星-为爱牵手,http://em.21dtv.com/songs/60143422.mkv +张薇+马智宇-因为爱情,http://em.21dtv.com/songs/60143421.mkv +张薇-约定,http://em.21dtv.com/songs/60143420.mkv +张薇-天亮了,http://em.21dtv.com/songs/60143419.mkv +张蔷-你还记得那个电影演员吗,http://em.21dtv.com/songs/60143418.mkv +张莹-我的家园,http://em.21dtv.com/songs/60143417.mkv +张莹-人人都说沂蒙美,http://em.21dtv.com/songs/60143416.mkv +张禄籴-只如初见(现场版),http://em.21dtv.com/songs/60143415.mkv +张祖诚-一样,http://em.21dtv.com/songs/60143414.mkv +张磊-故意,http://em.21dtv.com/songs/60143413.mkv +张碧晨-如果一切没有发生过,http://em.21dtv.com/songs/60143412.mkv +张珊珊-刚刚好(现场版),http://em.21dtv.com/songs/60143411.mkv +张燕燕-黑脸帅哥,http://em.21dtv.com/songs/60143410.mkv +张燕燕-起飞线上的我和你,http://em.21dtv.com/songs/60143409.mkv +张烁-你是我不该爱的人,http://em.21dtv.com/songs/60143408.mkv +张涛+张研-草原迎宾曲,http://em.21dtv.com/songs/60143407.mkv +张涛-歌声领我去草原,http://em.21dtv.com/songs/60143406.mkv +张津涤+陈瑞-一吻成诗,http://em.21dtv.com/songs/60143405.mkv +张津涤-相遇宁波湾,http://em.21dtv.com/songs/60143404.mkv +张津涤-流星说的谎,http://em.21dtv.com/songs/60143403.mkv +张津涤-最后一个女人,http://em.21dtv.com/songs/60143402.mkv +张津涤-别怪我狠心,http://em.21dtv.com/songs/60143401.mkv +张洢豪-安全感,http://em.21dtv.com/songs/60143400.mkv +张樊-李荣浩遇上李清照,http://em.21dtv.com/songs/60143399.mkv +张栋河-初爱,http://em.21dtv.com/songs/60143398.mkv +张怡萱-格姆女神,http://em.21dtv.com/songs/60143397.mkv +张德力-多年以后再相见,http://em.21dtv.com/songs/60143396.mkv +张宇轩+刘家敏-今生只想和你在一起,http://em.21dtv.com/songs/60143395.mkv +张婉清-浪人情歌(现场版),http://em.21dtv.com/songs/60143394.mkv +张含韵-七绝,http://em.21dtv.com/songs/60143393.mkv +张北北-疯狂哆来咪,http://em.21dtv.com/songs/60143392.mkv +张利红-酒泉,http://em.21dtv.com/songs/60143391.mkv +张凤英-美丽西藏,http://em.21dtv.com/songs/60143390.mkv +张冬玲-入骨相思,http://em.21dtv.com/songs/60143389.mkv +张佳彤-小傻瓜么么哒,http://em.21dtv.com/songs/60143388.mkv +张任杰-残酷月光,http://em.21dtv.com/songs/60143387.mkv +张云龙-汉之云,http://em.21dtv.com/songs/60143386.mkv +张为-桃花坞,http://em.21dtv.com/songs/60143385.mkv +张一腾-性别(现场版),http://em.21dtv.com/songs/60143384.mkv +廖俊涛-说走就走(现场版),http://em.21dtv.com/songs/60143383.mkv +廖俊涛-很多事要唱(现场版),http://em.21dtv.com/songs/60143382.mkv +廖俊涛-你说得对,http://em.21dtv.com/songs/60143381.mkv +庆庆-空心,http://em.21dtv.com/songs/60143380.mkv +庄闲-火一把,http://em.21dtv.com/songs/60143379.mkv +庄心妍+贺敬轩-再遇不到你这样的人,http://em.21dtv.com/songs/60143378.mkv +常艾非-举起手来,http://em.21dtv.com/songs/60143377.mkv +常斌-小手拉大手,http://em.21dtv.com/songs/60143376.mkv +常斌-如果有来生(现场版),http://em.21dtv.com/songs/60143375.mkv +常思思-注定(MTV),http://em.21dtv.com/songs/60143374.mkv +席燕娟-城,http://em.21dtv.com/songs/60143373.mkv +席文静-广丰人家,http://em.21dtv.com/songs/60143372.mkv +带泪的鱼+MC诺-醒来后的失落感,http://em.21dtv.com/songs/60143371.mkv +希林娜依高-无与伦比的美丽(现场版),http://em.21dtv.com/songs/60143370.mkv +巴桑拉姆-佛说布达拉,http://em.21dtv.com/songs/60143369.mkv +左欣怡-我是草原上的小姑娘(MTV),http://em.21dtv.com/songs/60143368.mkv +左左右右-眼睛体操,http://em.21dtv.com/songs/60143367.mkv +左左右右-发现心乐园,http://em.21dtv.com/songs/60143366.mkv +左左右右-动物王国,http://em.21dtv.com/songs/60143365.mkv +崔雨鑫-安和桥,http://em.21dtv.com/songs/60143364.mkv +崔子格-来不及对不起,http://em.21dtv.com/songs/60143363.mkv +崔子格-情未央,http://em.21dtv.com/songs/60143362.mkv +山子华-想い出の途中で,http://em.21dtv.com/songs/60143361.mkv +尼玛扎西-姑娘已长大,http://em.21dtv.com/songs/60143360.mkv +尹红月-时光山丘,http://em.21dtv.com/songs/60143359.mkv +尹磊磊-英雄金寨,http://em.21dtv.com/songs/60143358.mkv +尚迪-他给你的爱,http://em.21dtv.com/songs/60143357.mkv +少司命-素雪风华,http://em.21dtv.com/songs/60143356.mkv +小马哥-终点,http://em.21dtv.com/songs/60143355.mkv +小贱-旧时光,http://em.21dtv.com/songs/60143354.mkv +小艾-小仙女,http://em.21dtv.com/songs/60143353.mkv +小肥-当你走了以后,http://em.21dtv.com/songs/60143352.mkv +小肥-内外,http://em.21dtv.com/songs/60143351.mkv +小美Sunny-留下我吧西藏,http://em.21dtv.com/songs/60143350.mkv +小石头-碎爱,http://em.21dtv.com/songs/60143349.mkv +小男孩乐团-相信,http://em.21dtv.com/songs/60143348.mkv +小潘潘-只不过(MTV),http://em.21dtv.com/songs/60143347.mkv +小沈龙+宋晗-兄弟顶天立地,http://em.21dtv.com/songs/60143346.mkv +小山-小鸟不回来,http://em.21dtv.com/songs/60143345.mkv +小右+Hoodtwins-与MASK的飞行日记,http://em.21dtv.com/songs/60143344.mkv +宫俊-每个男人,http://em.21dtv.com/songs/60143343.mkv +宋念宇-不好过,http://em.21dtv.com/songs/60143342.mkv +宋孟君+电流妹-电流妹妹,http://em.21dtv.com/songs/60143341.mkv +宋孟君-彼岸花,http://em.21dtv.com/songs/60143340.mkv +宋孟君-东皇太一,http://em.21dtv.com/songs/60143339.mkv +安琥-曾一起凝望的那片星空,http://em.21dtv.com/songs/60143338.mkv +安泽泽-我想在你身边,http://em.21dtv.com/songs/60143337.mkv +安妮朵拉-鱼说,http://em.21dtv.com/songs/60143336.mkv +安妮朵拉-是有多寂寞,http://em.21dtv.com/songs/60143335.mkv +安妮朵拉-昨天,http://em.21dtv.com/songs/60143334.mkv +宁可-林之花语,http://em.21dtv.com/songs/60143333.mkv +孟静-一搭搭里(MTV),http://em.21dtv.com/songs/60143332.mkv +孟杨+许家豪-千年修行千年伤,http://em.21dtv.com/songs/60143331.mkv +孟庭苇-风中有朵雨做的云,http://em.21dtv.com/songs/60143330.mkv +孟庭苇-野百合也有春天,http://em.21dtv.com/songs/60143329.mkv +孟庭苇-谁的眼泪在飞,http://em.21dtv.com/songs/60143328.mkv +孟庭苇-羞答答的玫瑰静悄悄的开,http://em.21dtv.com/songs/60143327.mkv +孟庭苇-我只在乎你,http://em.21dtv.com/songs/60143326.mkv +孟庭苇-往事,http://em.21dtv.com/songs/60143325.mkv +孟小宝-一个转身天涯路太远,http://em.21dtv.com/songs/60143324.mkv +孟子坤-流着泪说分手,http://em.21dtv.com/songs/60143323.mkv +孟子坤-泡沫(现场版),http://em.21dtv.com/songs/60143322.mkv +孟子坤-再也没有(现场版),http://em.21dtv.com/songs/60143321.mkv +孟子坤-你还要我怎样(现场版),http://em.21dtv.com/songs/60143320.mkv +孙露-美人脸,http://em.21dtv.com/songs/60143319.mkv +孙露-爱你真的好难,http://em.21dtv.com/songs/60143318.mkv +孙露-烟雨年代,http://em.21dtv.com/songs/60143317.mkv +孙爱群-美江南,http://em.21dtv.com/songs/60143316.mkv +孙晓磊-爸爸多想唱一首歌给您,http://em.21dtv.com/songs/60143315.mkv +孙晓磊-晓磊经典串烧(演唱会),http://em.21dtv.com/songs/60143314.mkv +孙宇豪-多想唱一首歌给你,http://em.21dtv.com/songs/60143313.mkv +孙嘉梵-花开,http://em.21dtv.com/songs/60143312.mkv +孙八一-阿里巴巴,http://em.21dtv.com/songs/60143311.mkv +孙伯纶-一生一程,http://em.21dtv.com/songs/60143310.mkv +子阳-遥相忆,http://em.21dtv.com/songs/60143309.mkv +娅琳-天边诺言,http://em.21dtv.com/songs/60143308.mkv +娅琳-圣山雪莲,http://em.21dtv.com/songs/60143307.mkv +娅琳-冰雪梅花,http://em.21dtv.com/songs/60143306.mkv +娃娃-时间都去哪了(现场版),http://em.21dtv.com/songs/60143305.mkv +威仔+阿夏-这个夏天我们离别,http://em.21dtv.com/songs/60143304.mkv +姜玉阳-给自己的拥抱,http://em.21dtv.com/songs/60143303.mkv +姜晓东-最美集安,http://em.21dtv.com/songs/60143302.mkv +姚曦-Bang Bang,http://em.21dtv.com/songs/60143301.mkv +妞妞-放肆的爱,http://em.21dtv.com/songs/60143300.mkv +奥云格日乐+高保利-牧歌,http://em.21dtv.com/songs/60143299.mkv +奥云格日乐+吴·乌日根-梦中的额吉,http://em.21dtv.com/songs/60143298.mkv +奥云格日乐-这就是草原,http://em.21dtv.com/songs/60143297.mkv +奥云格日乐-草原绿色的歌谣,http://em.21dtv.com/songs/60143296.mkv +奥云格日乐-草原之夜,http://em.21dtv.com/songs/60143295.mkv +奥云格日乐-接风洗尘歌,http://em.21dtv.com/songs/60143294.mkv +奥云格日乐-天边的阿妈,http://em.21dtv.com/songs/60143293.mkv +奥云格日乐-喀什葛尔女郎,http://em.21dtv.com/songs/60143292.mkv +奔月-月圆时候,http://em.21dtv.com/songs/60143291.mkv +奔月-中国道路,http://em.21dtv.com/songs/60143290.mkv +天赐-我是偶像,http://em.21dtv.com/songs/60143289.mkv +天籁天+王勇-倾世之恋,http://em.21dtv.com/songs/60143288.mkv +天籁天-爱的困惑,http://em.21dtv.com/songs/60143287.mkv +天籁天-你留在海边的画,http://em.21dtv.com/songs/60143286.mkv +大鱼+艾福杰尼-Fat Boy Flow,http://em.21dtv.com/songs/60143285.mkv +大海-如果当时能够勇敢(故事情节),http://em.21dtv.com/songs/60143284.mkv +大海-如果当时能够勇敢(DJ),http://em.21dtv.com/songs/60143283.mkv +大山-我不寂寞我很好,http://em.21dtv.com/songs/60143282.mkv +大喇叭组合-百家姓,http://em.21dtv.com/songs/60143281.mkv +大哲-最远的你是我最近的爱,http://em.21dtv.com/songs/60143280.mkv +大哲-不再爱了,http://em.21dtv.com/songs/60143279.mkv +大勇-让视界充满爱,http://em.21dtv.com/songs/60143278.mkv +大勇-我们的信仰,http://em.21dtv.com/songs/60143277.mkv +大勇-兄弟的事,http://em.21dtv.com/songs/60143276.mkv +夏韶声-Chaos,http://em.21dtv.com/songs/60143275.mkv +夏婉安-带我回家,http://em.21dtv.com/songs/60143274.mkv +夏墨彦-亲爱的妈妈,http://em.21dtv.com/songs/60143273.mkv +夏启明-全世界谁倾听你(现场版),http://em.21dtv.com/songs/60143272.mkv +夏启明-Only You(现场版),http://em.21dtv.com/songs/60143271.mkv +壮声人声乐团-花,http://em.21dtv.com/songs/60143270.mkv +墨妍-I Think I,http://em.21dtv.com/songs/60143269.mkv +国辉+李敏-幸福的苗寨幸福的爱,http://em.21dtv.com/songs/60143268.mkv +喻嘉+王馨-别做世上负心人,http://em.21dtv.com/songs/60143267.mkv +喜鹊-喜鹊报喜,http://em.21dtv.com/songs/60143266.mkv +唯莎-爱上未来的他,http://em.21dtv.com/songs/60143265.mkv +唐钰儿-轻信爱情犯了错,http://em.21dtv.com/songs/60143264.mkv +唐钰儿-花花心肠,http://em.21dtv.com/songs/60143263.mkv +唐钰儿-美丽的瓮安,http://em.21dtv.com/songs/60143262.mkv +唐钰儿-相约来生,http://em.21dtv.com/songs/60143261.mkv +唐钰儿-爱了才说放手,http://em.21dtv.com/songs/60143260.mkv +唐钰儿-没有谁离不开谁,http://em.21dtv.com/songs/60143259.mkv +唐钰儿-最怕你离开,http://em.21dtv.com/songs/60143258.mkv +唐钰儿-我要疯狂,http://em.21dtv.com/songs/60143257.mkv +唐美华-飞渡,http://em.21dtv.com/songs/60143256.mkv +唐美华-放手,http://em.21dtv.com/songs/60143255.mkv +唐唐-十字路口,http://em.21dtv.com/songs/60143254.mkv +唐古+章古-你对我很重要,http://em.21dtv.com/songs/60143253.mkv +唐代卫-窗外斜阳,http://em.21dtv.com/songs/60143252.mkv +咿一-梦一场,http://em.21dtv.com/songs/60143251.mkv +周震南-整整两年了(现场版),http://em.21dtv.com/songs/60143250.mkv +周震南-Say Something,http://em.21dtv.com/songs/60143249.mkv +周震南-On The Top(现场版),http://em.21dtv.com/songs/60143248.mkv +周震南-Do What I Want(现场版),http://em.21dtv.com/songs/60143247.mkv +周雅霏-外太空里飞,http://em.21dtv.com/songs/60143246.mkv +周裔平-不想别离,http://em.21dtv.com/songs/60143245.mkv +周炜-扬我雄风,http://em.21dtv.com/songs/60143244.mkv +周炜-我武维扬,http://em.21dtv.com/songs/60143243.mkv +周深-小小,http://em.21dtv.com/songs/60143242.mkv +周晏伊-佛韵莲香,http://em.21dtv.com/songs/60143241.mkv +周恬熙-爱随风飞,http://em.21dtv.com/songs/60143240.mkv +周占超-我在梨乡等你,http://em.21dtv.com/songs/60143239.mkv +周关干-想喊声妈妈,http://em.21dtv.com/songs/60143238.mkv +吴非华-Never Say Never,http://em.21dtv.com/songs/60143237.mkv +吴樾-月亮代表我的心,http://em.21dtv.com/songs/60143236.mkv +吴易航-放声高歌,http://em.21dtv.com/songs/60143235.mkv +吴亦帆-他给的伤,http://em.21dtv.com/songs/60143234.mkv +吴亦凡战队-How Do(现场版),http://em.21dtv.com/songs/60143233.mkv +吴亦凡-6(中国有嘻哈),http://em.21dtv.com/songs/60143232.mkv +吴亦凡-6(MTV),http://em.21dtv.com/songs/60143231.mkv +吴丹妮-最美的夏天,http://em.21dtv.com/songs/60143230.mkv +吕泽洲-齐天大圣,http://em.21dtv.com/songs/60143229.mkv +吕泽洲-野子(现场版),http://em.21dtv.com/songs/60143228.mkv +吕泽洲-悟空,http://em.21dtv.com/songs/60143227.mkv +吉雅-草原情缘,http://em.21dtv.com/songs/60143226.mkv +吉克隽逸-空空山海,http://em.21dtv.com/songs/60143225.mkv +司徒嘉伟-小烦孤单,http://em.21dtv.com/songs/60143224.mkv +司徒兰芳-错过了缘分错过你,http://em.21dtv.com/songs/60143223.mkv +司徒兰芳-别把爱你的人弄丢了,http://em.21dtv.com/songs/60143222.mkv +叶香成-Y.X.C,http://em.21dtv.com/songs/60143221.mkv +叶贺芝-缘,http://em.21dtv.com/songs/60143220.mkv +叶贺芝-终于,http://em.21dtv.com/songs/60143219.mkv +叶贺芝-痕迹,http://em.21dtv.com/songs/60143218.mkv +叶贺芝-爱情专卖,http://em.21dtv.com/songs/60143217.mkv +叶贺芝-点头娃娃,http://em.21dtv.com/songs/60143216.mkv +叶贺芝-没关系,http://em.21dtv.com/songs/60143215.mkv +叶贺芝-我要爱情告诉他,http://em.21dtv.com/songs/60143214.mkv +叶贺芝-同学会,http://em.21dtv.com/songs/60143213.mkv +叶贺芝-只爱你,http://em.21dtv.com/songs/60143212.mkv +叶贺芝-I'll Always Be There For You,http://em.21dtv.com/songs/60143211.mkv +叶蓓+许巍-流浪途中爱上你,http://em.21dtv.com/songs/60143210.mkv +叶胜钦+秀兰玛雅-幸福的代志,http://em.21dtv.com/songs/60143209.mkv +叶胜钦-宠你飞上天,http://em.21dtv.com/songs/60143208.mkv +叶巧琳-能见度,http://em.21dtv.com/songs/60143207.mkv +叶子淇-猜猜我是谁,http://em.21dtv.com/songs/60143206.mkv +叶子淇-你可以爱我吗,http://em.21dtv.com/songs/60143205.mkv +古洁萦-Bang Bang(现场版),http://em.21dtv.com/songs/60143204.mkv +古洁莹-Oh Boy(现场版),http://em.21dtv.com/songs/60143203.mkv +古天乐+吴樾-月亮代表我的心,http://em.21dtv.com/songs/60143202.mkv +原子霏-驼铃,http://em.21dtv.com/songs/60143201.mkv +原子霏-爱的代价,http://em.21dtv.com/songs/60143200.mkv +原子邦妮-现在你好吗,http://em.21dtv.com/songs/60143199.mkv +印玉莲-心愿,http://em.21dtv.com/songs/60143198.mkv +印子月-跷跷板,http://em.21dtv.com/songs/60143197.mkv +卫兰-差半步,http://em.21dtv.com/songs/60143196.mkv +I Don't Care,http://em.21dtv.com/songs/60143195.mkv +卢宜均-蜡烛光与青地砖,http://em.21dtv.com/songs/60143194.mkv +卢宜均-浪人,http://em.21dtv.com/songs/60143193.mkv +南风-希望你,http://em.21dtv.com/songs/60143192.mkv +南征北战-迈克尔杰克逊,http://em.21dtv.com/songs/60143191.mkv +南征北战-独一无二,http://em.21dtv.com/songs/60143190.mkv +南征北战-冠军,http://em.21dtv.com/songs/60143189.mkv +南宫嘉骏-回忆总想哭,http://em.21dtv.com/songs/60143188.mkv +卓猷燕-不能说的秘密(现场版),http://em.21dtv.com/songs/60143187.mkv +华语群星-认真的雪,http://em.21dtv.com/songs/60143186.mkv +华语群星-明日之子,http://em.21dtv.com/songs/60143185.mkv +华语群星-我管你,http://em.21dtv.com/songs/60143184.mkv +十三狼-撸起袖子加油干,http://em.21dtv.com/songs/60143183.mkv +包胡尔查-月夜,http://em.21dtv.com/songs/60143182.mkv +包小龙-锡林郭勒酒,http://em.21dtv.com/songs/60143181.mkv +刺客团-舌尖美味,http://em.21dtv.com/songs/60143180.mkv +刘锦明-妈妈的爱暖心头,http://em.21dtv.com/songs/60143179.mkv +刘珂矣-弄戏,http://em.21dtv.com/songs/60143178.mkv +刘牧-窗台上的猫(MTV),http://em.21dtv.com/songs/60143177.mkv +刘浩航+荣叔岩-最后的勇气,http://em.21dtv.com/songs/60143176.mkv +刘梦-完美邂逅,http://em.21dtv.com/songs/60143175.mkv +刘惜君-醉里红尘,http://em.21dtv.com/songs/60143174.mkv +刘志刚-相守,http://em.21dtv.com/songs/60143173.mkv +刘心+石俊贵-森迷,http://em.21dtv.com/songs/60143172.mkv +刘小强-相约深澳,http://em.21dtv.com/songs/60143171.mkv +刘小强-咱家乡,http://em.21dtv.com/songs/60143170.mkv +刘宜-亲爱的你怎么还不懂,http://em.21dtv.com/songs/60143169.mkv +刘威煌-灰狗,http://em.21dtv.com/songs/60143168.mkv +刘奕彤-纷扰,http://em.21dtv.com/songs/60143167.mkv +刘奕彤-为爱迷路,http://em.21dtv.com/songs/60143166.mkv +刘天-爱情到底是哪路神,http://em.21dtv.com/songs/60143165.mkv +刘大卫-匆匆忙忙,http://em.21dtv.com/songs/60143164.mkv +刘增瞳+束禾-Everything Goes Well,http://em.21dtv.com/songs/60143163.mkv +刘增瞳-熄灭的昨天,http://em.21dtv.com/songs/60143162.mkv +刘增瞳-新夏旧梦,http://em.21dtv.com/songs/60143161.mkv +刘增瞳-心痛的标签,http://em.21dtv.com/songs/60143160.mkv +刘增瞳-你走我当你没来过,http://em.21dtv.com/songs/60143159.mkv +刘增瞳-也许有一天,http://em.21dtv.com/songs/60143158.mkv +刘国庆-今夜没喝醉,http://em.21dtv.com/songs/60143157.mkv +刘嘉亮-老歌,http://em.21dtv.com/songs/60143156.mkv +刘凯-天黑(现场版),http://em.21dtv.com/songs/60143155.mkv +刘党庆-老同学好久不见,http://em.21dtv.com/songs/60143154.mkv +刘云龙-咖喱咖喱,http://em.21dtv.com/songs/60143153.mkv +凤凰传奇-远方的远方还是远方,http://em.21dtv.com/songs/60143152.mkv +凡间精灵-你的脚步,http://em.21dtv.com/songs/60143151.mkv +冷漠+一飞-一辈子兄弟,http://em.21dtv.com/songs/60143150.mkv +冰城爱歌-笑姻缘,http://em.21dtv.com/songs/60143149.mkv +冯颖琪+汤凯婷-水晶灵魂,http://em.21dtv.com/songs/60143148.mkv +冯晓荣-小灰人,http://em.21dtv.com/songs/60143147.mkv +冯允谦-Thank you,http://em.21dtv.com/songs/60143146.mkv +冈林-雪莲,http://em.21dtv.com/songs/60143145.mkv +冀行-极乐世界(现场版),http://em.21dtv.com/songs/60143144.mkv +关庆小海-有些爱注定错就对了,http://em.21dtv.com/songs/60143143.mkv +六哲+章古-爱情狙击手,http://em.21dtv.com/songs/60143142.mkv +儋州群星-男人歌,http://em.21dtv.com/songs/60143141.mkv +儋州群星-男人歌,http://em.21dtv.com/songs/60143140.mkv +保峰-我的家乡在广西,http://em.21dtv.com/songs/60143139.mkv +侯刚-光芒,http://em.21dtv.com/songs/60143138.mkv +侯丽娟-毛主席的话儿记心上,http://em.21dtv.com/songs/60143137.mkv +余林翰+吴柏正-牵连,http://em.21dtv.com/songs/60143136.mkv +何雨谦-亲爱滴,http://em.21dtv.com/songs/60143135.mkv +何洁-好想你,http://em.21dtv.com/songs/60143134.mkv +何杰玲-第二人格,http://em.21dtv.com/songs/60143133.mkv +何建清-一生最爱的是你,http://em.21dtv.com/songs/60143132.mkv +伊晗+苏琛-不想和你做朋友,http://em.21dtv.com/songs/60143131.mkv +伊晗+刘增瞳-我们回不去了,http://em.21dtv.com/songs/60143130.mkv +伊丽媛-香岛花语,http://em.21dtv.com/songs/60143129.mkv +伊丽媛-乌兰巴托之夜,http://em.21dtv.com/songs/60143128.mkv +任宇翔-一人我饮酒醉,http://em.21dtv.com/songs/60143127.mkv +任妙音-雨中相逢,http://em.21dtv.com/songs/60143126.mkv +任妙音-玫瑰恋情,http://em.21dtv.com/songs/60143125.mkv +任妙音-无怨无悔陪你一起老,http://em.21dtv.com/songs/60143124.mkv +任妙音-忘不了,http://em.21dtv.com/songs/60143123.mkv +任妙音-如意花,http://em.21dtv.com/songs/60143122.mkv +任妙音-天在下雨我在想你(演唱会),http://em.21dtv.com/songs/60143121.mkv +代乐乐-岁月静好(MTV),http://em.21dtv.com/songs/60143120.mkv +仁钦卓玛-花开舟曲,http://em.21dtv.com/songs/60143119.mkv +亮剑合唱团-中国航母,http://em.21dtv.com/songs/60143118.mkv +五月天-少年他的奇幻漂流,http://em.21dtv.com/songs/60143117.mkv +云珂-迷失,http://em.21dtv.com/songs/60143116.mkv +云乐团-爱河,http://em.21dtv.com/songs/60143115.mkv +云丹久美+花儿梦组合-甘谷信合是我家,http://em.21dtv.com/songs/60143114.mkv +云丹久美-等着我来爱(MTV),http://em.21dtv.com/songs/60143113.mkv +于清龙-兄弟的歌,http://em.21dtv.com/songs/60143112.mkv +于洋-桃花美人,http://em.21dtv.com/songs/60143111.mkv +于子将-片刻,http://em.21dtv.com/songs/60143110.mkv +二毛+Bridge-掐死大象的蚂蚁,http://em.21dtv.com/songs/60143109.mkv +乔玲儿-爱囚,http://em.21dtv.com/songs/60143108.mkv +丹尼 翁-小眼睛的男人(故事情节),http://em.21dtv.com/songs/60143107.mkv +丹尼 翁-小眼睛的男人(DJ),http://em.21dtv.com/songs/60143106.mkv +丛伟-紫荆花开,http://em.21dtv.com/songs/60143105.mkv +万博-噢同学,http://em.21dtv.com/songs/60143104.mkv +丁毅+耿婕妤-紫藤花,http://em.21dtv.com/songs/60143103.mkv +丁楚翰-日光之城拉萨,http://em.21dtv.com/songs/60143102.mkv +丁思忖-猫和你,http://em.21dtv.com/songs/60143101.mkv +丁于-欠你的歌,http://em.21dtv.com/songs/60143100.mkv +ZERO G男团-勇敢的小蘑菇,http://em.21dtv.com/songs/60143099.mkv +YHBOYS-魔Fun乐园,http://em.21dtv.com/songs/60143098.mkv +Yan Ting-小姐你好(MTV),http://em.21dtv.com/songs/60143097.mkv +Ty-书没读好,http://em.21dtv.com/songs/60143096.mkv +ToNick-圣诞歌 Last Christmas,http://em.21dtv.com/songs/60143095.mkv +Tizzy T+MC Jin-无束缚,http://em.21dtv.com/songs/60143094.mkv +Tizzy T-市中心,http://em.21dtv.com/songs/60143093.mkv +TFBOYS-同一秒快乐,http://em.21dtv.com/songs/60143092.mkv +Supper Moment-灵感床,http://em.21dtv.com/songs/60143091.mkv +Suby-心理罪,http://em.21dtv.com/songs/60143090.mkv +SNH48-自我主张,http://em.21dtv.com/songs/60143089.mkv +SNH48-甜蜜冒险,http://em.21dtv.com/songs/60143088.mkv +SNH48-我心翱翔,http://em.21dtv.com/songs/60143087.mkv +SING女团-快乐循环,http://em.21dtv.com/songs/60143086.mkv +SING女团-123木头人,http://em.21dtv.com/songs/60143085.mkv +RPG+朱俐静-其实没聊什么,http://em.21dtv.com/songs/60143084.mkv +Punkey-怪男人,http://em.21dtv.com/songs/60143083.mkv +PG One+Yamy-Wait a minute,http://em.21dtv.com/songs/60143082.mkv +OK绷-爱你唷 LUV YO,http://em.21dtv.com/songs/60143081.mkv +OB03-Two Two,http://em.21dtv.com/songs/60143080.mkv +MERA-Hello梦想,http://em.21dtv.com/songs/60143079.mkv +MC马可-我的小可爱,http://em.21dtv.com/songs/60143078.mkv +MC王子浩-我喜欢你,http://em.21dtv.com/songs/60143077.mkv +MC法老+冷风-我说了算,http://em.21dtv.com/songs/60143076.mkv +Major Lazer+李宇春-一百种热爱,http://em.21dtv.com/songs/60143075.mkv +K帅先生-鹏举鸿飞,http://em.21dtv.com/songs/60143074.mkv +Kimi.Cat王泉雅-Love Song,http://em.21dtv.com/songs/60143073.mkv +Jam-不露声色,http://em.21dtv.com/songs/60143072.mkv +Jade Eyes-Vivian,http://em.21dtv.com/songs/60143071.mkv +J.V.E李以诺-最兄弟,http://em.21dtv.com/songs/60143070.mkv +J.V.E李以诺-新酒,http://em.21dtv.com/songs/60143069.mkv +J Sleeper性感的拖鞋+VaVa+Young Gee-玻尿酸,http://em.21dtv.com/songs/60143068.mkv +Iris七叶-风月令,http://em.21dtv.com/songs/60143067.mkv +Higher Brothers-Young Master,http://em.21dtv.com/songs/60143066.mkv +Heyo+卫诗-盛夏的舞,http://em.21dtv.com/songs/60143065.mkv +Gosh-Don't You,http://em.21dtv.com/songs/60143064.mkv +GALI-RAMBO,http://em.21dtv.com/songs/60143063.mkv +GAI-王者降临,http://em.21dtv.com/songs/60143062.mkv +邓紫棋+曹格-背叛(现场版),http://em.21dtv.com/songs/60143061.mkv +邓紫棋-泡沫(现场版),http://em.21dtv.com/songs/60143060.mkv +邓紫棋-多远都要在一起(现场版),http://em.21dtv.com/songs/60143059.mkv +邓紫棋-回忆的沙漏(现场版),http://em.21dtv.com/songs/60143058.mkv +邓紫棋-光年之外(现场版),http://em.21dtv.com/songs/60143057.mkv +邓紫棋-偶尔(现场版),http://em.21dtv.com/songs/60143056.mkv +FLUX-杰森史塔森,http://em.21dtv.com/songs/60143055.mkv +FLUX-Too Young To Die,http://em.21dtv.com/songs/60143054.mkv +D.l-单向人生,http://em.21dtv.com/songs/60143053.mkv +Cy凌+刘倾夏-纸飞机,http://em.21dtv.com/songs/60143052.mkv +Core One-信号,http://em.21dtv.com/songs/60143051.mkv +Bridge-老大,http://em.21dtv.com/songs/60143050.mkv +BrAnT.B+辛巴-Zero To Hero,http://em.21dtv.com/songs/60143049.mkv +BLACKPINK-Playing With Fire,http://em.21dtv.com/songs/60143048.mkv +Bingo-I Know What You Want(MTV),http://em.21dtv.com/songs/60143047.mkv +B.Gs-我们的小宇宙,http://em.21dtv.com/songs/60143046.mkv +Avicii-Waiting For Love,http://em.21dtv.com/songs/60143045.mkv +ATF-我是极光,http://em.21dtv.com/songs/60143044.mkv +AKA.imp小鬼-Rap口播1,http://em.21dtv.com/songs/60143043.mkv +A2A-只要在一起,http://em.21dtv.com/songs/60143042.mkv +A Lin+J.Sheon-你点的歌救了我,http://em.21dtv.com/songs/60143041.mkv +94836部队+机务一中队-第一之歌,http://em.21dtv.com/songs/60143040.mkv +51-徒步爱情,http://em.21dtv.com/songs/60143039.mkv +51-喇ㄉ一赛,http://em.21dtv.com/songs/60143038.mkv +51-没有我自己,http://em.21dtv.com/songs/60143037.mkv +51-假象的圆满,http://em.21dtv.com/songs/60143036.mkv +王紫菲-想爹娘,http://em.21dtv.com/songs/60139337.mkv +燕尾蝶-爱在蒙古高原,http://em.21dtv.com/songs/60139336.mkv +天籁天-恋你在红尘,http://em.21dtv.com/songs/60139335.mkv +龙梅子-苦雨,http://em.21dtv.com/songs/60139334.mkv +龙奔+刘增瞳-王者荣耀,http://em.21dtv.com/songs/60139333.mkv +龙奔-全民K歌,http://em.21dtv.com/songs/60139332.mkv +龙奔-一亿个承诺,http://em.21dtv.com/songs/60139331.mkv +齐秦-鼓声若响,http://em.21dtv.com/songs/60139330.mkv +齐晨-西塘,http://em.21dtv.com/songs/60139329.mkv +黑龙-几十年,http://em.21dtv.com/songs/60139328.mkv +黑豹乐队-孤独的灵魂,http://em.21dtv.com/songs/60139327.mkv +黑哥-是错了的爱还是我爱的错,http://em.21dtv.com/songs/60139326.mkv +黎晓阳-Mr Weather Man,http://em.21dtv.com/songs/60139325.mkv +黄龄-问情,http://em.21dtv.com/songs/60139324.mkv +黄鹤翔-陪您变老,http://em.21dtv.com/songs/60139323.mkv +黄贯中-大英雄,http://em.21dtv.com/songs/60139322.mkv +黄观-一首伤感的情歌,http://em.21dtv.com/songs/60139321.mkv +黄星羱-喵喵喵,http://em.21dtv.com/songs/60139320.mkv +黄明志-击败人,http://em.21dtv.com/songs/60139319.mkv +黄慈轩-喵了个咪,http://em.21dtv.com/songs/60139318.mkv +黄子韬-还来得及,http://em.21dtv.com/songs/60139317.mkv +黄婷婷-星光闪耀,http://em.21dtv.com/songs/60139316.mkv +黄品源+万芳-小薇,http://em.21dtv.com/songs/60139315.mkv +黄品源-那么爱你为什么,http://em.21dtv.com/songs/60139314.mkv +黄品源-海浪,http://em.21dtv.com/songs/60139313.mkv +黄品源-原来有你,http://em.21dtv.com/songs/60139312.mkv +黄品源-你怎么舍得我难过,http://em.21dtv.com/songs/60139311.mkv +黄品源-不想说再见,http://em.21dtv.com/songs/60139310.mkv +黄勇+小琢-花桥情歌,http://em.21dtv.com/songs/60139309.mkv +黄丽萍-节日欢歌,http://em.21dtv.com/songs/60139308.mkv +黄中原-最害怕唱情歌,http://em.21dtv.com/songs/60139307.mkv +麦震烁-浮华盛世,http://em.21dtv.com/songs/60139306.mkv +鹿晗+AR-零界点,http://em.21dtv.com/songs/60139305.mkv +鹿晗-触发,http://em.21dtv.com/songs/60139304.mkv +鲁士郎-那些,http://em.21dtv.com/songs/60139303.mkv +魏晨-自我崇拜,http://em.21dtv.com/songs/60139302.mkv +魏如萱+马頔-星期三或礼拜三,http://em.21dtv.com/songs/60139301.mkv +魏大勋-白桦林,http://em.21dtv.com/songs/60139300.mkv +魏大勋-当我想你的时候,http://em.21dtv.com/songs/60139299.mkv +高晓攀-问莲鱼说,http://em.21dtv.com/songs/60139298.mkv +高安-天涯各一方,http://em.21dtv.com/songs/60139297.mkv +高夫-别把爱你的人弄丢了,http://em.21dtv.com/songs/60139296.mkv +高云翔-绅士,http://em.21dtv.com/songs/60139295.mkv +高云翔-改变自己,http://em.21dtv.com/songs/60139294.mkv +马洁+徐汕-幸运女神,http://em.21dtv.com/songs/60139293.mkv +马智宇-新娘,http://em.21dtv.com/songs/60139292.mkv +马德-戒不掉的习惯,http://em.21dtv.com/songs/60139291.mkv +飞翔-醉美茶陵,http://em.21dtv.com/songs/60139290.mkv +风语-深海的鱼,http://em.21dtv.com/songs/60139289.mkv +颜裕林-再见吧脂肪,http://em.21dtv.com/songs/60139288.mkv +颜裕林-兄弟你累了吗,http://em.21dtv.com/songs/60139287.mkv +颜佳欣-云顶,http://em.21dtv.com/songs/60139286.mkv +音乐走廊+歌一声-只要今生你幸福,http://em.21dtv.com/songs/60139285.mkv +韩磊+隋佶辰+王小小+李晓旭-走四方,http://em.21dtv.com/songs/60139284.mkv +韩磊+王小小-花开在眼前,http://em.21dtv.com/songs/60139283.mkv +韩栋+韩雪-空情,http://em.21dtv.com/songs/60139282.mkv +韩旭-天地人合,http://em.21dtv.com/songs/60139281.mkv +韩俊林-原来我什么都不好,http://em.21dtv.com/songs/60139280.mkv +韩俊林-兄弟干了这杯酒,http://em.21dtv.com/songs/60139279.mkv +韩丹彤-十年,http://em.21dtv.com/songs/60139278.mkv +韩丹彤-勇气,http://em.21dtv.com/songs/60139277.mkv +韦礼安-爱如空气,http://em.21dtv.com/songs/60139276.mkv +鞠红川+唐伯虎-我要你,http://em.21dtv.com/songs/60139275.mkv +雷鸣-武隆老家,http://em.21dtv.com/songs/60139274.mkv +雷二狗-当爱情变成亲情,http://em.21dtv.com/songs/60139273.mkv +雷二狗-女人和家,http://em.21dtv.com/songs/60139272.mkv +雨阳-男人也会哭,http://em.21dtv.com/songs/60139271.mkv +雨柔+望海高歌-永不分离,http://em.21dtv.com/songs/60139270.mkv +雨宗林-此情不渝,http://em.21dtv.com/songs/60139269.mkv +雨宗林-幸福满满,http://em.21dtv.com/songs/60139268.mkv +雨宗林-不配,http://em.21dtv.com/songs/60139267.mkv +雀斑乐团-坏习惯,http://em.21dtv.com/songs/60139266.mkv +隔壁团-再见十八岁,http://em.21dtv.com/songs/60139265.mkv +陶钰玉-遇见爱,http://em.21dtv.com/songs/60139264.mkv +陶红-堂堂正正一辈子,http://em.21dtv.com/songs/60139263.mkv +陶晶莹+曾慧兰-太委屈,http://em.21dtv.com/songs/60139262.mkv +陶晶莹+奯淇组合+曾慧兰+姬紫兰-姐姐妹妹站起来,http://em.21dtv.com/songs/60139261.mkv +降央贡布-我的姑娘,http://em.21dtv.com/songs/60139260.mkv +陈霜-已故之事,http://em.21dtv.com/songs/60139259.mkv +陈霈然-黄梅飘香,http://em.21dtv.com/songs/60139258.mkv +陈霈然-山野的风,http://em.21dtv.com/songs/60139257.mkv +陈霈然-天之大,http://em.21dtv.com/songs/60139256.mkv +陈雅纹-让你受了伤,http://em.21dtv.com/songs/60139255.mkv +陈雅纹-分手以后,http://em.21dtv.com/songs/60139254.mkv +陈雅森-爱到孤独会想哭,http://em.21dtv.com/songs/60139253.mkv +陈随意+谢宜君-问相思,http://em.21dtv.com/songs/60139252.mkv +陈随意+谢宜君-借一挂风,http://em.21dtv.com/songs/60139251.mkv +陈随意-鹿港的花蕊,http://em.21dtv.com/songs/60139250.mkv +陈随意-爱我还是伊,http://em.21dtv.com/songs/60139249.mkv +陈随意-爱情冲冲冲,http://em.21dtv.com/songs/60139248.mkv +陈随意-爱不对时,http://em.21dtv.com/songs/60139247.mkv +陈随意-春风有情,http://em.21dtv.com/songs/60139246.mkv +陈随意-惦惦离开,http://em.21dtv.com/songs/60139245.mkv +陈赫+小沈阳-光辉岁月,http://em.21dtv.com/songs/60139244.mkv +陈赫-最美,http://em.21dtv.com/songs/60139243.mkv +[Group] +groupName=十六万歌曲MV等 - 115 +陈赫-唱歌给你听,http://em.21dtv.com/songs/60139242.mkv +陈赫-Mamak档,http://em.21dtv.com/songs/60139241.mkv +陈诗雨-故乡,http://em.21dtv.com/songs/60139240.mkv +陈西洋-别怪我,http://em.21dtv.com/songs/60139239.mkv +陈蔚琦-TC,http://em.21dtv.com/songs/60139238.mkv +陈璐瑶-当你老了,http://em.21dtv.com/songs/60139237.mkv +陈瑞-恨你爱我又放手,http://em.21dtv.com/songs/60139236.mkv +陈瑞-怀爱不遇,http://em.21dtv.com/songs/60139235.mkv +陈柯帆-青春的约定,http://em.21dtv.com/songs/60139234.mkv +陈晓东-时间做证,http://em.21dtv.com/songs/60139233.mkv +陈明憙-最后安慰,http://em.21dtv.com/songs/60139232.mkv +陈文浩-何必等以后,http://em.21dtv.com/songs/60139231.mkv +陈扬君-我想你的夜,http://em.21dtv.com/songs/60139230.mkv +陈扬君-你不再是我亲爱的,http://em.21dtv.com/songs/60139229.mkv +陈慧恬-以后的现在,http://em.21dtv.com/songs/60139228.mkv +陈惠婷-记忆边境,http://em.21dtv.com/songs/60139227.mkv +陈彦昊-男人不是受伤的天才,http://em.21dtv.com/songs/60139226.mkv +陈建斌+齐秦-狂流,http://em.21dtv.com/songs/60139225.mkv +陈建斌-给内个谁的第一首诗,http://em.21dtv.com/songs/60139224.mkv +陈娟儿-未见面的朋友,http://em.21dtv.com/songs/60139223.mkv +陈圣夫-听妈妈讲那过去的故事,http://em.21dtv.com/songs/60139222.mkv +陈哲宇-永远,http://em.21dtv.com/songs/60139221.mkv +陈剑-上上之策,http://em.21dtv.com/songs/60139220.mkv +陈冰-隐没在戈壁,http://em.21dtv.com/songs/60139219.mkv +陈俊析+蔡国庆-我和我的祖国,http://em.21dtv.com/songs/60139218.mkv +陈伟霆-因你,http://em.21dtv.com/songs/60139217.mkv +陆平-希腊神话,http://em.21dtv.com/songs/60139216.mkv +阿达+吕士轩-打我啊笨蛋,http://em.21dtv.com/songs/60139215.mkv +阿达+LuLu黄路梓茵-我说宝贝,http://em.21dtv.com/songs/60139214.mkv +阿熏-大唐盛世,http://em.21dtv.com/songs/60139213.mkv +阿火-我的心里话,http://em.21dtv.com/songs/60139212.mkv +阿火-如果你真的要走,http://em.21dtv.com/songs/60139211.mkv +阿火-喝酒不开车,http://em.21dtv.com/songs/60139210.mkv +阿斌-为什么爱到最后总是受伤,http://em.21dtv.com/songs/60139209.mkv +阿悄-孤独的太阳,http://em.21dtv.com/songs/60139208.mkv +阿帆-还有你,http://em.21dtv.com/songs/60139207.mkv +阿妮桑-伤的都是有情人,http://em.21dtv.com/songs/60139206.mkv +阿喜-我的爱情不平凡,http://em.21dtv.com/songs/60139205.mkv +阿吉太组合-星星照亮回家的路,http://em.21dtv.com/songs/60139204.mkv +阿军-天涯的兄弟,http://em.21dtv.com/songs/60139203.mkv +阿兰-热血三国,http://em.21dtv.com/songs/60139202.mkv +阎维文+王子辰+屈奕彤+侯欣悦+侯欣然-戏曲大联唱,http://em.21dtv.com/songs/60139201.mkv +阎维文-党建是魂,http://em.21dtv.com/songs/60139200.mkv +银临-裁梦为魂,http://em.21dtv.com/songs/60139199.mkv +钮劲涵-自我,http://em.21dtv.com/songs/60139198.mkv +钟镇涛+钟懿-闪闪星辰,http://em.21dtv.com/songs/60139197.mkv +金灿-简单,http://em.21dtv.com/songs/60139196.mkv +金润吉-学到老爱到老,http://em.21dtv.com/songs/60139195.mkv +金志文-明天,http://em.21dtv.com/songs/60139194.mkv +金志文-一望千年,http://em.21dtv.com/songs/60139193.mkv +金南玲-我不送,http://em.21dtv.com/songs/60139192.mkv +金久哲-你不珍惜我不等候,http://em.21dtv.com/songs/60139191.mkv +醉美-情歌跳出心窝窝,http://em.21dtv.com/songs/60139190.mkv +郭顶-水星记,http://em.21dtv.com/songs/60139189.mkv +郭鑫-兄弟你说,http://em.21dtv.com/songs/60139188.mkv +郭忠佑+曾玮中+林孟宗-乘风破浪,http://em.21dtv.com/songs/60139187.mkv +郭宏武-一路走一起老,http://em.21dtv.com/songs/60139186.mkv +郭保成+妹儿姐-中国我为你自豪,http://em.21dtv.com/songs/60139185.mkv +郭保成-长寿歌,http://em.21dtv.com/songs/60139184.mkv +郭一橙-想得美,http://em.21dtv.com/songs/60139183.mkv +郝杰-父亲的脚步,http://em.21dtv.com/songs/60139182.mkv +郑顺鹏-新理想友,http://em.21dtv.com/songs/60139181.mkv +郑永波-天涯何处无芳草,http://em.21dtv.com/songs/60139180.mkv +郑欣怡-青藏高原,http://em.21dtv.com/songs/60139179.mkv +郑延-爱人爱人,http://em.21dtv.com/songs/60139178.mkv +郑圆明-道情,http://em.21dtv.com/songs/60139177.mkv +郑嘉嘉-我不想见人,http://em.21dtv.com/songs/60139176.mkv +郑兴琦-毁灭马戏团,http://em.21dtv.com/songs/60139175.mkv +郁可唯-未至,http://em.21dtv.com/songs/60139174.mkv +邹一刀-不承诺,http://em.21dtv.com/songs/60139173.mkv +邵婉儿-感恩妈妈,http://em.21dtv.com/songs/60139172.mkv +邱锋泽-我知道你存在,http://em.21dtv.com/songs/60139171.mkv +邱贤桂-三更梦,http://em.21dtv.com/songs/60139170.mkv +邱苡晰+邱苡媃-外婆的澎湖湾,http://em.21dtv.com/songs/60139169.mkv +邱永传-忘了吧算了吧,http://em.21dtv.com/songs/60139168.mkv +那英+陈奕迅-天地在我心,http://em.21dtv.com/songs/60139167.mkv +那英+周杰伦-因为爱情,http://em.21dtv.com/songs/60139166.mkv +那依辰-悟空传,http://em.21dtv.com/songs/60139165.mkv +邓紫棋+戴斯琪+肖茗+余赛亚-泡沫,http://em.21dtv.com/songs/60139164.mkv +邓紫棋+余赛亚-光年之外,http://em.21dtv.com/songs/60139163.mkv +邓文怡+邓力玮-时间煮雨,http://em.21dtv.com/songs/60139162.mkv +邓文怡-甜蜜的小尾巴,http://em.21dtv.com/songs/60139161.mkv +邓才昶-是不是因为我长得太丑,http://em.21dtv.com/songs/60139160.mkv +邓伦+杨宗纬-天已黑,http://em.21dtv.com/songs/60139159.mkv +邓伦-心动,http://em.21dtv.com/songs/60139158.mkv +邓伦-倔强,http://em.21dtv.com/songs/60139157.mkv +迪玛希-时光沧海,http://em.21dtv.com/songs/60139156.mkv +迪奥-独家记忆,http://em.21dtv.com/songs/60139155.mkv +迪奥-时候,http://em.21dtv.com/songs/60139154.mkv +迪奥-情在不言中,http://em.21dtv.com/songs/60139153.mkv +迪奥-心上江南,http://em.21dtv.com/songs/60139152.mkv +迪奥-信仰,http://em.21dtv.com/songs/60139151.mkv +迪奥-Say Hi,http://em.21dtv.com/songs/60139150.mkv +迪克牛仔+杨培安-一样的月光,http://em.21dtv.com/songs/60139149.mkv +迪克牛仔+刘心-有多少爱可以重来,http://em.21dtv.com/songs/60139148.mkv +迪克牛仔-男人真命苦,http://em.21dtv.com/songs/60139147.mkv +迪克牛仔-无力去爱谁,http://em.21dtv.com/songs/60139146.mkv +迪克牛仔-哭不出来,http://em.21dtv.com/songs/60139145.mkv +迟云-湘江,http://em.21dtv.com/songs/60139144.mkv +达娃卓玛-情的牧场,http://em.21dtv.com/songs/60139143.mkv +路滨琪-我的Hong Kong,http://em.21dtv.com/songs/60139142.mkv +赵骏-只对你说,http://em.21dtv.com/songs/60139141.mkv +赵雷-鼓楼,http://em.21dtv.com/songs/60139140.mkv +赵雷-玛丽,http://em.21dtv.com/songs/60139139.mkv +赵鑫-相思的秋,http://em.21dtv.com/songs/60139138.mkv +赵鑫-爱怕了孤独,http://em.21dtv.com/songs/60139137.mkv +赵越-思乡曲,http://em.21dtv.com/songs/60139136.mkv +赵英俊-绝世高手,http://em.21dtv.com/songs/60139135.mkv +赵英俊-悟空传,http://em.21dtv.com/songs/60139134.mkv +赵若琳-老爸老爸,http://em.21dtv.com/songs/60139133.mkv +赵真+康又萁-我在等风也在等你,http://em.21dtv.com/songs/60139132.mkv +赵炫棋-萍桥,http://em.21dtv.com/songs/60139131.mkv +赵星翔-给句痛快话,http://em.21dtv.com/songs/60139130.mkv +赵一磊-是不是不爱我了,http://em.21dtv.com/songs/60139129.mkv +赖鸿根-楚乔传,http://em.21dtv.com/songs/60139128.mkv +贾添-不懂,http://em.21dtv.com/songs/60139127.mkv +贾孟昕-疯狂爱一回,http://em.21dtv.com/songs/60139126.mkv +贾双辉-莫忘初心,http://em.21dtv.com/songs/60139125.mkv +贺敬轩+邵明明-说散就散,http://em.21dtv.com/songs/60139124.mkv +贺宣-花儿为你开,http://em.21dtv.com/songs/60139123.mkv +贺世哲-熟悉的城市陌生的你,http://em.21dtv.com/songs/60139122.mkv +贺一航+孟杨-天生一对,http://em.21dtv.com/songs/60139121.mkv +贺一航-没必要,http://em.21dtv.com/songs/60139120.mkv +贺一航-我对你动了心,http://em.21dtv.com/songs/60139119.mkv +贯诗钦-悬念,http://em.21dtv.com/songs/60139118.mkv +谭艳-光明,http://em.21dtv.com/songs/60139117.mkv +谭维维-绣春,http://em.21dtv.com/songs/60139116.mkv +谭维维-昨天涯,http://em.21dtv.com/songs/60139115.mkv +谭竹青+汤非-为人父母,http://em.21dtv.com/songs/60139114.mkv +谭竹青-招金天下,http://em.21dtv.com/songs/60139113.mkv +谭竹青-为人父母,http://em.21dtv.com/songs/60139112.mkv +谭水明-熟悉的城市陌生的你,http://em.21dtv.com/songs/60139111.mkv +谭松韵+熊梓淇-爱上你的好天气,http://em.21dtv.com/songs/60139110.mkv +谭咏麟+许冠杰-为你歌唱,http://em.21dtv.com/songs/60139109.mkv +谭咏麟-何苦,http://em.21dtv.com/songs/60139108.mkv +谢茸儿-么么,http://em.21dtv.com/songs/60139107.mkv +谢忠良-梦想的道路,http://em.21dtv.com/songs/60139106.mkv +谢帝-请揣满人民币Freestyle,http://em.21dtv.com/songs/60139105.mkv +谢帝-瓜老外,http://em.21dtv.com/songs/60139104.mkv +谢娜+张杰-天下,http://em.21dtv.com/songs/60139103.mkv +谢娜-突然想爱你,http://em.21dtv.com/songs/60139102.mkv +谢娜-将军令,http://em.21dtv.com/songs/60139101.mkv +谢和弦+张智成-在没有你以后,http://em.21dtv.com/songs/60139100.mkv +谌容-为你祝福,http://em.21dtv.com/songs/60139099.mkv +许鹤缤-相伴,http://em.21dtv.com/songs/60139098.mkv +许鹤缤-One Belt One Road,http://em.21dtv.com/songs/60139097.mkv +许诗煌-意识,http://em.21dtv.com/songs/60139096.mkv +许嵩-通关,http://em.21dtv.com/songs/60139095.mkv +许峰-爱上合肥,http://em.21dtv.com/songs/60139094.mkv +许佳琪-纽约梦,http://em.21dtv.com/songs/60139093.mkv +许佳慧-调侃,http://em.21dtv.com/songs/60139092.mkv +薛锐+王奕洁-四季情歌,http://em.21dtv.com/songs/60139091.mkv +薛之谦+大张伟-意外,http://em.21dtv.com/songs/60139090.mkv +薛之谦-小孩,http://em.21dtv.com/songs/60139089.mkv +蔡琴-你一定要是个孩子,http://em.21dtv.com/songs/60139088.mkv +蔡恩慧-三月的春风,http://em.21dtv.com/songs/60139087.mkv +蔡恩慧-七彩田园,http://em.21dtv.com/songs/60139086.mkv +蔡国庆+郭采洁-新365个祝福,http://em.21dtv.com/songs/60139085.mkv +蔡国庆+伊丽莎白-茉莉花,http://em.21dtv.com/songs/60139084.mkv +蔡健雅-紫,http://em.21dtv.com/songs/60139083.mkv +蔡依林+田馥甄-明瞭,http://em.21dtv.com/songs/60139082.mkv +蓝琪儿-纵横天涯,http://em.21dtv.com/songs/60139081.mkv +蒲巴甲-英雄酒,http://em.21dtv.com/songs/60139080.mkv +蒙面哥-曾经我最爱的人,http://em.21dtv.com/songs/60139079.mkv +蒙面哥-我失眠了,http://em.21dtv.com/songs/60139078.mkv +蒙面哥-不想起不忘记,http://em.21dtv.com/songs/60139077.mkv +蒙克+魏君华-怀梦塞上,http://em.21dtv.com/songs/60139076.mkv +蒋雪儿-说句话能死吗,http://em.21dtv.com/songs/60139075.mkv +蒋雪儿-爱有什么罪,http://em.21dtv.com/songs/60139074.mkv +蒋洋-自己模样,http://em.21dtv.com/songs/60139073.mkv +董阳+龙永+龙强+安声铮+徐绍平+王伟-铁血兄弟,http://em.21dtv.com/songs/60139072.mkv +董贞+郭飞宏-假如有如果,http://em.21dtv.com/songs/60139071.mkv +董贞-雨花泪,http://em.21dtv.com/songs/60139070.mkv +董研-爱成瘾,http://em.21dtv.com/songs/60139069.mkv +董姿彦-恋曲1990,http://em.21dtv.com/songs/60139068.mkv +葛林-岁月有情,http://em.21dtv.com/songs/60139067.mkv +葛巍-慢慢陪你变老,http://em.21dtv.com/songs/60139066.mkv +萧洋-今生最爱的人就是你,http://em.21dtv.com/songs/60139065.mkv +萧敬腾-河,http://em.21dtv.com/songs/60139064.mkv +萧忆情-空,http://em.21dtv.com/songs/60139063.mkv +萧忆情-拜无忧,http://em.21dtv.com/songs/60139062.mkv +萧全-互相伤害,http://em.21dtv.com/songs/60139061.mkv +萌萌哒天团-飞舞,http://em.21dtv.com/songs/60139060.mkv +萌萌哒天团-兰亭序,http://em.21dtv.com/songs/60139059.mkv +菲林+乐洋-告白气球,http://em.21dtv.com/songs/60139058.mkv +荒山亮-风起的时候,http://em.21dtv.com/songs/60139057.mkv +茶乡组合-采茶谣,http://em.21dtv.com/songs/60139056.mkv +范誉蓝-可可西里,http://em.21dtv.com/songs/60139055.mkv +苗苗+赵越-雁南飞,http://em.21dtv.com/songs/60139054.mkv +苗苗+赵越-等你回来,http://em.21dtv.com/songs/60139053.mkv +苗苗+赵越-楼上楼下,http://em.21dtv.com/songs/60139052.mkv +苗苗+赵越-映山红,http://em.21dtv.com/songs/60139051.mkv +苗苗+赵越-大海啊故乡,http://em.21dtv.com/songs/60139050.mkv +苗圃-霸王别姬,http://em.21dtv.com/songs/60139049.mkv +苗圃-野花,http://em.21dtv.com/songs/60139048.mkv +苏霏-我在北方等着你,http://em.21dtv.com/songs/60139047.mkv +苏珮卿-盼,http://em.21dtv.com/songs/60139046.mkv +苏永宝-希格希日,http://em.21dtv.com/songs/60139045.mkv +花之悦-你知我懂,http://em.21dtv.com/songs/60139044.mkv +艾怡良-Waterfall,http://em.21dtv.com/songs/60139043.mkv +艾丽雅-关于爱情这件小事,http://em.21dtv.com/songs/60139042.mkv +腾宇-新的梦想,http://em.21dtv.com/songs/60139041.mkv +胡鸿钧-朋友身份,http://em.21dtv.com/songs/60139040.mkv +胡蝶-再见林妹妹,http://em.21dtv.com/songs/60139039.mkv +胡耘豪-治愈元素,http://em.21dtv.com/songs/60139038.mkv +胡梅-两地情,http://em.21dtv.com/songs/60139037.mkv +胡斯默-三月,http://em.21dtv.com/songs/60139036.mkv +胡宗祥+苏立生+于洪林-血雨风霜,http://em.21dtv.com/songs/60139035.mkv +胡宗祥+苏立生-一起闯,http://em.21dtv.com/songs/60139034.mkv +胡宇威-请不要打扰我们的爱,http://em.21dtv.com/songs/60139033.mkv +胡夏+谢雅儿-爱夏,http://em.21dtv.com/songs/60139032.mkv +胡圣燕-北疆乌镇,http://em.21dtv.com/songs/60139031.mkv +胡可+安吉-去未来,http://em.21dtv.com/songs/60139030.mkv +肖光平-湘西迎宾歌,http://em.21dtv.com/songs/60139029.mkv +老猫-哥哥我爱上你了,http://em.21dtv.com/songs/60139028.mkv +耀阳-就让我们一起,http://em.21dtv.com/songs/60139027.mkv +耀阳-你过得还好吗,http://em.21dtv.com/songs/60139026.mkv +群星-青龙永夜,http://em.21dtv.com/songs/60139025.mkv +群星-畅游吧,http://em.21dtv.com/songs/60139024.mkv +群星-唱起草原的歌,http://em.21dtv.com/songs/60139023.mkv +群星-呼吸·蓝,http://em.21dtv.com/songs/60139022.mkv +群星-十七岁的我有些话想说,http://em.21dtv.com/songs/60139021.mkv +罗海东+张智霖+林夏羽+麦贝夷-现代爱情故事,http://em.21dtv.com/songs/60139020.mkv +罗大佑-家,http://em.21dtv.com/songs/60139019.mkv +罗丽珊-站在草原望北京,http://em.21dtv.com/songs/60139018.mkv +罗中旭-成品家装方程式,http://em.21dtv.com/songs/60139017.mkv +缪杰-那一年,http://em.21dtv.com/songs/60139016.mkv +缪以欣-没关系我爱你,http://em.21dtv.com/songs/60139015.mkv +缪以欣-侵噬,http://em.21dtv.com/songs/60139014.mkv +缝纫机乐队-悟空传,http://em.21dtv.com/songs/60139013.mkv +红禹-爱是陪伴,http://em.21dtv.com/songs/60139012.mkv +紫心雾-爱的风景,http://em.21dtv.com/songs/60139011.mkv +紫心雾-旁观者,http://em.21dtv.com/songs/60139010.mkv +索朗扎西-北京姑娘,http://em.21dtv.com/songs/60139009.mkv +糖果树-爱上你的季节,http://em.21dtv.com/songs/60139008.mkv +简弘亦+毛泽少-天涯明月,http://em.21dtv.com/songs/60139007.mkv +简弘亦-老人与棉花糖和夏天,http://em.21dtv.com/songs/60139006.mkv +符荣鹏-无条件,http://em.21dtv.com/songs/60139005.mkv +章子清-花样江南,http://em.21dtv.com/songs/60139004.mkv +章子清-梦残,http://em.21dtv.com/songs/60139003.mkv +章子清-回家,http://em.21dtv.com/songs/60139002.mkv +章子清-不曾远走,http://em.21dtv.com/songs/60139001.mkv +程思琪-斑点狗,http://em.21dtv.com/songs/60139000.mkv +程响-心若倦了,http://em.21dtv.com/songs/60138999.mkv +秦博-你是我今生最爱的女孩,http://em.21dtv.com/songs/60138998.mkv +秦博-今生最爱,http://em.21dtv.com/songs/60138997.mkv +种丹妮-不孤单友,http://em.21dtv.com/songs/60138996.mkv +石尚-人心隔肚皮,http://em.21dtv.com/songs/60138995.mkv +盛希+邓力川-七彩中国梦,http://em.21dtv.com/songs/60138994.mkv +白雪-等你一万年,http://em.21dtv.com/songs/60138993.mkv +白小白-勺子,http://em.21dtv.com/songs/60138992.mkv +白小白-伤心街道,http://em.21dtv.com/songs/60138991.mkv +甲子慧-青春梦,http://em.21dtv.com/songs/60138990.mkv +甲子慧-用心肝叫你的名字,http://em.21dtv.com/songs/60138989.mkv +甲子慧-甘有真心爱过我,http://em.21dtv.com/songs/60138988.mkv +甲子慧-斗缠,http://em.21dtv.com/songs/60138987.mkv +甲子慧-放抹离,http://em.21dtv.com/songs/60138986.mkv +甲子慧-捡恨,http://em.21dtv.com/songs/60138985.mkv +田柏涛+木棉-让爱飞扬,http://em.21dtv.com/songs/60138984.mkv +甜美真-阿们,http://em.21dtv.com/songs/60138983.mkv +瓦其依合与空行者-出云之月,http://em.21dtv.com/songs/60138982.mkv +玖壹壹+黄立成-黑暗的社会,http://em.21dtv.com/songs/60138981.mkv +玖壹壹-都是我的错,http://em.21dtv.com/songs/60138980.mkv +王馨怡+王馨悦-春天在哪里,http://em.21dtv.com/songs/60138979.mkv +王芊桦-遗失的美好,http://em.21dtv.com/songs/60138978.mkv +王芊桦-遇见,http://em.21dtv.com/songs/60138977.mkv +王芊桦-无条件为你,http://em.21dtv.com/songs/60138976.mkv +王艺醒-绘好中华,http://em.21dtv.com/songs/60138975.mkv +王聆燕-旗帜飞扬,http://em.21dtv.com/songs/60138974.mkv +王琥-无处可逃,http://em.21dtv.com/songs/60138973.mkv +王珞丹+朴树-清白之年,http://em.21dtv.com/songs/60138972.mkv +王珞丹-平凡之路,http://em.21dtv.com/songs/60138971.mkv +王珞丹-You Don't Trust Me At All,http://em.21dtv.com/songs/60138970.mkv +王滔-爱到错位,http://em.21dtv.com/songs/60138969.mkv +王源-阳光不锈,http://em.21dtv.com/songs/60138968.mkv +王泽宇-庸情俗爱,http://em.21dtv.com/songs/60138967.mkv +王柯心-飞,http://em.21dtv.com/songs/60138966.mkv +王柯心-小小村庄,http://em.21dtv.com/songs/60138965.mkv +王柯心-何必,http://em.21dtv.com/songs/60138964.mkv +王晰-最远的心跳,http://em.21dtv.com/songs/60138963.mkv +王旭刚+阿熏-兄弟同行,http://em.21dtv.com/songs/60138962.mkv +王旭刚-没钱没车没有老婆,http://em.21dtv.com/songs/60138961.mkv +王振诺-别说没爱过,http://em.21dtv.com/songs/60138960.mkv +王建房-在人间,http://em.21dtv.com/songs/60138959.mkv +王庆爽-梁祝新歌,http://em.21dtv.com/songs/60138958.mkv +王庆爽-千古绝唱,http://em.21dtv.com/songs/60138957.mkv +王小荣-强迫自己不爱你,http://em.21dtv.com/songs/60138956.mkv +王小荣-你的爱我永远携带,http://em.21dtv.com/songs/60138955.mkv +王婧-心,http://em.21dtv.com/songs/60138954.mkv +王呈章-舍得,http://em.21dtv.com/songs/60138953.mkv +王华峰-你好 少年,http://em.21dtv.com/songs/60138952.mkv +王力宏-听爱,http://em.21dtv.com/songs/60138951.mkv +王刚-重要的就那么一个,http://em.21dtv.com/songs/60138950.mkv +王俊凯+林可欣-树读,http://em.21dtv.com/songs/60138949.mkv +王俊凯+周倩+林可欣+郭蓉-宠爱,http://em.21dtv.com/songs/60138948.mkv +王丽达-花开中国,http://em.21dtv.com/songs/60138947.mkv +王丽达-画卷,http://em.21dtv.com/songs/60138946.mkv +王丽达-快乐领航,http://em.21dtv.com/songs/60138945.mkv +王丽达-你把春天留下来,http://em.21dtv.com/songs/60138944.mkv +狮子合唱团+陈佳彬+刘文君+虞雨舟-Lion,http://em.21dtv.com/songs/60138943.mkv +狮子合唱团+虞雨舟-最后的请求,http://em.21dtv.com/songs/60138942.mkv +牛青畾-唱一首歌,http://em.21dtv.com/songs/60138941.mkv +牛奶咖啡-咖喱咖喱,http://em.21dtv.com/songs/60138940.mkv +牛奶咖啡-偶尔还是会想起你,http://em.21dtv.com/songs/60138939.mkv +牛奶咖啡-一个人的风景,http://em.21dtv.com/songs/60138938.mkv +爱烂漫-有你的时光就是最美的歌,http://em.21dtv.com/songs/60138937.mkv +熊梓淇+谭松韵-爱上你的好天气,http://em.21dtv.com/songs/60138936.mkv +炫棋儿-境界传奇,http://em.21dtv.com/songs/60138935.mkv +火歌-男人三十,http://em.21dtv.com/songs/60138934.mkv +潘玮柏-Coming Home,http://em.21dtv.com/songs/60138933.mkv +温喃-涛声依旧2016,http://em.21dtv.com/songs/60138932.mkv +温喃-如果能重来,http://em.21dtv.com/songs/60138931.mkv +深圳时代学校合唱队-崭新的时代有我,http://em.21dtv.com/songs/60138930.mkv +海铭-今生你我是兄弟,http://em.21dtv.com/songs/60138929.mkv +海浪飞歌+驿动儿-马头琴颂曲,http://em.21dtv.com/songs/60138928.mkv +浩明+思小玥-爱情一条线,http://em.21dtv.com/songs/60138927.mkv +洪卓立-闪先,http://em.21dtv.com/songs/60138926.mkv +泳儿-习惯爱你,http://em.21dtv.com/songs/60138925.mkv +波拉-爸爸的宝贝,http://em.21dtv.com/songs/60138924.mkv +汪苏泷+陈墨一-有点甜,http://em.21dtv.com/songs/60138923.mkv +汪苏泷+明柏辰+杨梓鑫+陈墨一+明筱岩-一笑倾城,http://em.21dtv.com/songs/60138922.mkv +汪苏泷-金曲捞,http://em.21dtv.com/songs/60138921.mkv +汪峰-我会在这儿等你,http://em.21dtv.com/songs/60138920.mkv +汪刚-想要忘记你真的不容易,http://em.21dtv.com/songs/60138919.mkv +汤米儿-留守的孩子,http://em.21dtv.com/songs/60138918.mkv +江若琳-思念做宵夜,http://em.21dtv.com/songs/60138917.mkv +江福永-月儿,http://em.21dtv.com/songs/60138916.mkv +江珊+Richard Marx-Right Here Waiting(跨界歌王),http://em.21dtv.com/songs/60138915.mkv +江珊-歌剧魅影,http://em.21dtv.com/songs/60138914.mkv +江珊-Time To Say Goodbye(跨界歌王),http://em.21dtv.com/songs/60138913.mkv +段丽阳-三字经人之初,http://em.21dtv.com/songs/60138912.mkv +歌武传奇-雄狮中国,http://em.21dtv.com/songs/60138911.mkv +歌武传奇-爱的传奇,http://em.21dtv.com/songs/60138910.mkv +欧阳莎莎-月,http://em.21dtv.com/songs/60138909.mkv +欧豪-放马过来,http://em.21dtv.com/songs/60138908.mkv +次仁拉吉-穷开心,http://em.21dtv.com/songs/60138907.mkv +樊少华+江山-中国军人,http://em.21dtv.com/songs/60138906.mkv +楼沁-你的名字,http://em.21dtv.com/songs/60138905.mkv +楼小华+傅波-美丽的神话,http://em.21dtv.com/songs/60138904.mkv +楼小华-涛声依旧,http://em.21dtv.com/songs/60138903.mkv +楼小华-来生缘,http://em.21dtv.com/songs/60138902.mkv +楼小华-故乡的云,http://em.21dtv.com/songs/60138901.mkv +楼小华-我只在乎你,http://em.21dtv.com/songs/60138900.mkv +楼小华-我一见你就笑,http://em.21dtv.com/songs/60138899.mkv +楼小华-情人的关怀,http://em.21dtv.com/songs/60138898.mkv +楼小华-外面的世界,http://em.21dtv.com/songs/60138897.mkv +楼小华-南海姑娘,http://em.21dtv.com/songs/60138896.mkv +楼小华-北国之春,http://em.21dtv.com/songs/60138895.mkv +楼小华-你怎么说,http://em.21dtv.com/songs/60138894.mkv +楼小华-何日君再来,http://em.21dtv.com/songs/60138893.mkv +楼小华-但愿人长久,http://em.21dtv.com/songs/60138892.mkv +楼小华-一片落叶,http://em.21dtv.com/songs/60138891.mkv +梦然-听我的歌不许掉眼泪,http://em.21dtv.com/songs/60138890.mkv +梅朵措-花开舟曲,http://em.21dtv.com/songs/60138889.mkv +梅朵措-沧海桑田,http://em.21dtv.com/songs/60138888.mkv +梅朵-大慈大悲观世音菩萨,http://em.21dtv.com/songs/60138887.mkv +梅朵-今生只为与你邂逅,http://em.21dtv.com/songs/60138886.mkv +梁静茹-秘果,http://em.21dtv.com/songs/60138885.mkv +梁剑东-夜色,http://em.21dtv.com/songs/60138884.mkv +梁丰富-求月老,http://em.21dtv.com/songs/60138883.mkv +柯泯薰-形状,http://em.21dtv.com/songs/60138882.mkv +枫舞+伊然-携手相牵,http://em.21dtv.com/songs/60138881.mkv +果味VC-唯一拥有的筹码是我们的一生,http://em.21dtv.com/songs/60138880.mkv +林海峰+Kiri T-九号鞋,http://em.21dtv.com/songs/60138879.mkv +林沁仪-最初来到世界的模样,http://em.21dtv.com/songs/60138878.mkv +林忆莲+杨啟+夏瑶+肖思齐-至少还有你,http://em.21dtv.com/songs/60138877.mkv +林忆莲+杨啟-为你我受冷风吹,http://em.21dtv.com/songs/60138876.mkv +林子祥+林凯轩+林志程+黄嘉玲-男儿当自强,http://em.21dtv.com/songs/60138875.mkv +林凯轩+林子祥-敢爱敢做,http://em.21dtv.com/songs/60138874.mkv +林一峰-影子战,http://em.21dtv.com/songs/60138873.mkv +杰子-多年前的兄弟,http://em.21dtv.com/songs/60138872.mkv +杰子-只为你守候,http://em.21dtv.com/songs/60138871.mkv +杨雅坤+阎维文-谁不说俺家乡好,http://em.21dtv.com/songs/60138870.mkv +杨雅坤-南泥湾,http://em.21dtv.com/songs/60138869.mkv +杨钻+林子亮-阮是陆丰人,http://em.21dtv.com/songs/60138868.mkv +杨菲洋-无字演说,http://em.21dtv.com/songs/60138867.mkv +杨舒钧-天地之中,http://em.21dtv.com/songs/60138866.mkv +杨烁-快乐的00后,http://em.21dtv.com/songs/60138865.mkv +杨梓文祺-不爱就散,http://em.21dtv.com/songs/60138864.mkv +杨敏+林思彤-信任指数,http://em.21dtv.com/songs/60138863.mkv +杨慧方-铸魂歌,http://em.21dtv.com/songs/60138862.mkv +杨慧方-妈妈妈妈,http://em.21dtv.com/songs/60138861.mkv +杨峰-不甘心,http://em.21dtv.com/songs/60138860.mkv +杨小曼-那些经过,http://em.21dtv.com/songs/60138859.mkv +杨宗纬-越过山丘,http://em.21dtv.com/songs/60138858.mkv +杨宗纬-生命被你照亮,http://em.21dtv.com/songs/60138857.mkv +杨学峰-神仙悠,http://em.21dtv.com/songs/60138856.mkv +杨学峰-好好活着吧,http://em.21dtv.com/songs/60138855.mkv +杨子+相随-相思扣,http://em.21dtv.com/songs/60138854.mkv +杨哲+谈诗玲-爱到心痛,http://em.21dtv.com/songs/60138853.mkv +杨哲-花蕊,http://em.21dtv.com/songs/60138852.mkv +杨哲-稳赢,http://em.21dtv.com/songs/60138851.mkv +杨哲-男儿情泪,http://em.21dtv.com/songs/60138850.mkv +杨哲-爱过就可以,http://em.21dtv.com/songs/60138849.mkv +杨哲-爱情孤单行,http://em.21dtv.com/songs/60138848.mkv +杨哲-淡水旧情,http://em.21dtv.com/songs/60138847.mkv +杨哲-没志气,http://em.21dtv.com/songs/60138846.mkv +杨冰怡+宋昕冉-初恋蝴蝶,http://em.21dtv.com/songs/60138845.mkv +杜玫-你若安好我不打扰,http://em.21dtv.com/songs/60138844.mkv +杜枚-一吻红尘,http://em.21dtv.com/songs/60138843.mkv +杜佳-谁的宠物,http://em.21dtv.com/songs/60138842.mkv +杜丽莎+谭咏麟-爱与痛的边缘,http://em.21dtv.com/songs/60138841.mkv +李青+怡然-你是风来我是雨,http://em.21dtv.com/songs/60138840.mkv +李霞儿+懒春梦-网海茫茫中牵手了你,http://em.21dtv.com/songs/60138839.mkv +李行亮+崔子格-还好在这里,http://em.21dtv.com/songs/60138838.mkv +李行亮-思美人兮,http://em.21dtv.com/songs/60138837.mkv +李莉+徐文涛-全世界都下着相思的雨,http://em.21dtv.com/songs/60138836.mkv +李荣浩-就这样,http://em.21dtv.com/songs/60138835.mkv +李艺彤+宋昕冉+刘炅然+费沁源+赵粤-御龙倾天下,http://em.21dtv.com/songs/60138834.mkv +李艳-冷爱,http://em.21dtv.com/songs/60138833.mkv +李祥祥-奔跑的女孩,http://em.21dtv.com/songs/60138832.mkv +李玉刚+徐天意+祝颂皓+杨姣-新贵妃醉酒,http://em.21dtv.com/songs/60138831.mkv +李玉刚+徐天意-刚好遇见你,http://em.21dtv.com/songs/60138830.mkv +李炎+杨红丽-云中的草原,http://em.21dtv.com/songs/60138829.mkv +李洪运-走马仙女山,http://em.21dtv.com/songs/60138828.mkv +李洋洋-兄弟闯江湖,http://em.21dtv.com/songs/60138827.mkv +李智英-忆 庐州姑娘,http://em.21dtv.com/songs/60138826.mkv +李春华-冰美人,http://em.21dtv.com/songs/60138825.mkv +李文+王耀辰-爱恨痴嗔,http://em.21dtv.com/songs/60138824.mkv +李志洲-你就是我的天使,http://em.21dtv.com/songs/60138823.mkv +李建科-悟空传 齐天大圣,http://em.21dtv.com/songs/60138822.mkv +李宇春+彭雅纯+周君怡+刘思良-下个路口见,http://em.21dtv.com/songs/60138821.mkv +李宇春+彭雅纯-再不疯狂我们就老了,http://em.21dtv.com/songs/60138820.mkv +李宇春-一百种热爱,http://em.21dtv.com/songs/60138819.mkv +李天平-李什么,http://em.21dtv.com/songs/60138818.mkv +李多娜-不要伤害,http://em.21dtv.com/songs/60138817.mkv +李夏-骄阳似我,http://em.21dtv.com/songs/60138816.mkv +李国超-幸福的钥匙,http://em.21dtv.com/songs/60138815.mkv +李国超-如虎似狼,http://em.21dtv.com/songs/60138814.mkv +李勇-火一样的陕北,http://em.21dtv.com/songs/60138813.mkv +李剑青-平凡故事,http://em.21dtv.com/songs/60138812.mkv +李佩玉-依依惜别的时候,http://em.21dtv.com/songs/60138811.mkv +李佑晨-想你,http://em.21dtv.com/songs/60138810.mkv +杀手锏乐队-风铃的味道,http://em.21dtv.com/songs/60138809.mkv +朱潮勇-请你到山西来做客,http://em.21dtv.com/songs/60138808.mkv +朱潮勇-梦中的格桑花,http://em.21dtv.com/songs/60138807.mkv +朱方元+李雨轩+泊毅炫+董思蔓+黎芷琪-张开歌声的翅膀,http://em.21dtv.com/songs/60138806.mkv +朱文婷-淘汰,http://em.21dtv.com/songs/60138805.mkv +朱克-要你现在,http://em.21dtv.com/songs/60138804.mkv +朱主爱-快接电话,http://em.21dtv.com/songs/60138803.mkv +望海高歌-陕西味道,http://em.21dtv.com/songs/60138802.mkv +望海高歌-我托星星带个话,http://em.21dtv.com/songs/60138801.mkv +曾雨轩-纠缠,http://em.21dtv.com/songs/60138800.mkv +曾雨轩-丽江恋,http://em.21dtv.com/songs/60138799.mkv +曾雨轩-不要让你的女人哭,http://em.21dtv.com/songs/60138798.mkv +曾沛慈-你离开他了吗,http://em.21dtv.com/songs/60138797.mkv +曹震豪-分前演习,http://em.21dtv.com/songs/60138796.mkv +曹雷+久久-恋曲,http://em.21dtv.com/songs/60138795.mkv +曹雷+久久-就这样爱上你,http://em.21dtv.com/songs/60138794.mkv +曹宇擎-落英神剑,http://em.21dtv.com/songs/60138793.mkv +曲调悠扬-爱在这里,http://em.21dtv.com/songs/60138792.mkv +暴林+乔玲儿-今夜的你又在和谁约会,http://em.21dtv.com/songs/60138791.mkv +暴林-脚踏两只船,http://em.21dtv.com/songs/60138790.mkv +智王桑珠+达娃卓玛-这一首歌,http://em.21dtv.com/songs/60138789.mkv +景健-看花开,http://em.21dtv.com/songs/60138788.mkv +晨熙-受伤的男人不要哭,http://em.21dtv.com/songs/60138787.mkv +晨熙-下一次相遇,http://em.21dtv.com/songs/60138786.mkv +晓月-覆水难收,http://em.21dtv.com/songs/60138785.mkv +晓晓+海风轻扬-若你我今生无缘,http://em.21dtv.com/songs/60138784.mkv +晓依-想念的你,http://em.21dtv.com/songs/60138783.mkv +晓东+伊然-亲爱的我在想你,http://em.21dtv.com/songs/60138782.mkv +春风得意-花好月圆红尘恋,http://em.21dtv.com/songs/60138781.mkv +星月组合-许你一世情缘,http://em.21dtv.com/songs/60138780.mkv +易琴-微笑的祝福,http://em.21dtv.com/songs/60138779.mkv +明泽-远行路上的阳光,http://em.21dtv.com/songs/60138778.mkv +明泽-男人怎能为难女人,http://em.21dtv.com/songs/60138777.mkv +明泽-封锁区,http://em.21dtv.com/songs/60138776.mkv +明泽-剩下的人,http://em.21dtv.com/songs/60138775.mkv +明泽-前生石,http://em.21dtv.com/songs/60138774.mkv +时嘉-心儿飞到你身边,http://em.21dtv.com/songs/60138773.mkv +旗音文龙-曾遇见,http://em.21dtv.com/songs/60138772.mkv +旅行团乐队-封夜,http://em.21dtv.com/songs/60138771.mkv +新四季合唱团-我为什么要歌唱,http://em.21dtv.com/songs/60138770.mkv +拓建鹏-爱在陕北,http://em.21dtv.com/songs/60138769.mkv +扎西平措-一面湖水,http://em.21dtv.com/songs/60138768.mkv +才让东珠+南江秋措-酒歌,http://em.21dtv.com/songs/60138767.mkv +才让东珠-远方的情人,http://em.21dtv.com/songs/60138766.mkv +才让东珠-英雄回来的岁月,http://em.21dtv.com/songs/60138765.mkv +才让东珠-相聚在朝圣路上,http://em.21dtv.com/songs/60138764.mkv +才让东珠-泪之源,http://em.21dtv.com/songs/60138763.mkv +才让东珠-沉默,http://em.21dtv.com/songs/60138762.mkv +才让东珠-我的祖先,http://em.21dtv.com/songs/60138761.mkv +才让东珠-情歌,http://em.21dtv.com/songs/60138760.mkv +才让东珠-心之宠,http://em.21dtv.com/songs/60138759.mkv +才让东珠-布琼啦,http://em.21dtv.com/songs/60138758.mkv +戴荃-悟空,http://em.21dtv.com/songs/60138757.mkv +思予-云朵上的拉萨,http://em.21dtv.com/songs/60138756.mkv +德德玛+阿比亚斯+苏永宝-呼伦贝尔大草原,http://em.21dtv.com/songs/60138755.mkv +徐良-边境记号,http://em.21dtv.com/songs/60138754.mkv +徐良-Candy Knife,http://em.21dtv.com/songs/60138753.mkv +徐海星-你一定会在这里,http://em.21dtv.com/songs/60138752.mkv +徐文涛-全世界都下着相思的雨,http://em.21dtv.com/songs/60138751.mkv +徐承邦-追美梦,http://em.21dtv.com/songs/60138750.mkv +徐承邦-甲天拼输赢,http://em.21dtv.com/songs/60138749.mkv +徐承邦-爱狠大,http://em.21dtv.com/songs/60138748.mkv +徐承邦-爱你这句话,http://em.21dtv.com/songs/60138747.mkv +徐承邦-不愿醒的人,http://em.21dtv.com/songs/60138746.mkv +徐惠芬-才子佳人,http://em.21dtv.com/songs/60138745.mkv +徐千雅-乡音,http://em.21dtv.com/songs/60138744.mkv +徐佳莹-因爱闪光,http://em.21dtv.com/songs/60138743.mkv +彭清-静静的花,http://em.21dtv.com/songs/60138742.mkv +彭清-把爱留给你,http://em.21dtv.com/songs/60138741.mkv +彭清-十万个为什么,http://em.21dtv.com/songs/60138740.mkv +彭子翱-太阳出来喜洋洋,http://em.21dtv.com/songs/60138739.mkv +彩贝与海-青春变迁,http://em.21dtv.com/songs/60138738.mkv +彩贝与海-绿茵梦,http://em.21dtv.com/songs/60138737.mkv +彩贝与海-漂泊少年,http://em.21dtv.com/songs/60138736.mkv +彩贝与海-夏末夜,http://em.21dtv.com/songs/60138735.mkv +彩贝与海-地球的诉说,http://em.21dtv.com/songs/60138734.mkv +彩贝与海-冬雪夜,http://em.21dtv.com/songs/60138733.mkv +弦子-当我们只剩下我,http://em.21dtv.com/songs/60138732.mkv +张靓颖-请让爱情相信你,http://em.21dtv.com/songs/60138731.mkv +张靓颖-玲珑,http://em.21dtv.com/songs/60138730.mkv +张靓颖-日落大道,http://em.21dtv.com/songs/60138729.mkv +张辛怡-青春再见,http://em.21dtv.com/songs/60138728.mkv +张跃-等到伤口貌美如花,http://em.21dtv.com/songs/60138727.mkv +张赫宣-FREEDOM,http://em.21dtv.com/songs/60138726.mkv +张行-行者归来,http://em.21dtv.com/songs/60138725.mkv +张荣琼-草原情郎,http://em.21dtv.com/songs/60138724.mkv +张美仪-想和你去吹吹风,http://em.21dtv.com/songs/60138723.mkv +张继科+黄贯中+叶世荣-不再犹豫,http://em.21dtv.com/songs/60138722.mkv +张继科-成都,http://em.21dtv.com/songs/60138721.mkv +张继科-夜空中最亮的星,http://em.21dtv.com/songs/60138720.mkv +张继科-不会改变,http://em.21dtv.com/songs/60138719.mkv +张礼慧-仙女山你让我好想,http://em.21dtv.com/songs/60138718.mkv +张磊-因为一个人,http://em.21dtv.com/songs/60138717.mkv +张瀚元-如果李白遇到霾,http://em.21dtv.com/songs/60138716.mkv +张溪原+刘明扬-相约武隆,http://em.21dtv.com/songs/60138715.mkv +张淑虹-阳光圆舞曲,http://em.21dtv.com/songs/60138714.mkv +张涛-美丽户塬,http://em.21dtv.com/songs/60138713.mkv +张津涤-该还的情债,http://em.21dtv.com/songs/60138712.mkv +张泽-天气这么热,http://em.21dtv.com/songs/60138711.mkv +张月+耿清清+强巴央珍+马蜀君+魏冰雪+瑞彦米嘉尔-Call Me 老司机,http://em.21dtv.com/songs/60138710.mkv +张智霖+林夏羽-岁月如歌,http://em.21dtv.com/songs/60138709.mkv +张智成-每次都忘记,http://em.21dtv.com/songs/60138708.mkv +张智成-在我记忆最深的地方,http://em.21dtv.com/songs/60138707.mkv +张晏铭-你好重庆,http://em.21dtv.com/songs/60138706.mkv +张旸-如相恋,http://em.21dtv.com/songs/60138705.mkv +张方-日出东海岸,http://em.21dtv.com/songs/60138704.mkv +张文娟-飘雪的记忆,http://em.21dtv.com/songs/60138703.mkv +张德力-说好不分离,http://em.21dtv.com/songs/60138702.mkv +张德力-父亲,http://em.21dtv.com/songs/60138701.mkv +张幂涵-像傻瓜一样,http://em.21dtv.com/songs/60138700.mkv +张华-再唱想亲亲,http://em.21dtv.com/songs/60138699.mkv +张北北-对你的爱是寂寞的毒,http://em.21dtv.com/songs/60138698.mkv +张傲阳-一起做兄弟,http://em.21dtv.com/songs/60138697.mkv +张健-老吉他,http://em.21dtv.com/songs/60138696.mkv +张健-不变的情缘,http://em.21dtv.com/songs/60138695.mkv +张信哲-说,http://em.21dtv.com/songs/60138694.mkv +张伟明-不懂爱,http://em.21dtv.com/songs/60138693.mkv +张仟姿-骆驼,http://em.21dtv.com/songs/60138692.mkv +张仟姿-我的眼里流着你的泪,http://em.21dtv.com/songs/60138691.mkv +张东辉-淮南王,http://em.21dtv.com/songs/60138690.mkv +张一山+周冬雨-如果我爱你,http://em.21dtv.com/songs/60138689.mkv +廖启翔-感动,http://em.21dtv.com/songs/60138688.mkv +廖丽-我的爱遗落在你的城,http://em.21dtv.com/songs/60138687.mkv +庞龙-走着唱着,http://em.21dtv.com/songs/60138686.mkv +庞龙-聊,http://em.21dtv.com/songs/60138685.mkv +庞龙-多了,http://em.21dtv.com/songs/60138684.mkv +庞晓宇+棋子-我的爱非你莫属,http://em.21dtv.com/songs/60138683.mkv +庞晓宇-我的爱非你莫属,http://em.21dtv.com/songs/60138682.mkv +庄鹃瑛-真实世界,http://em.21dtv.com/songs/60138681.mkv +庄鹃瑛-此时此刻,http://em.21dtv.com/songs/60138680.mkv +常石磊-山花烂漫时,http://em.21dtv.com/songs/60138679.mkv +席跃华-说爱,http://em.21dtv.com/songs/60138678.mkv +席跃华-爱了就别放手,http://em.21dtv.com/songs/60138677.mkv +席跃华-爱一回,http://em.21dtv.com/songs/60138676.mkv +带泪的鱼-被讨厌的勇气,http://em.21dtv.com/songs/60138675.mkv +帅霖-草原情歌,http://em.21dtv.com/songs/60138674.mkv +帅霖-留住你的人留不住你的心,http://em.21dtv.com/songs/60138673.mkv +帅霖-曾经最美,http://em.21dtv.com/songs/60138672.mkv +巫定定-就那么一眼,http://em.21dtv.com/songs/60138671.mkv +崔泽飞-甜蜜花絮,http://em.21dtv.com/songs/60138670.mkv +崔泽飞-感谢有你,http://em.21dtv.com/songs/60138669.mkv +崔泽飞-小叮当,http://em.21dtv.com/songs/60138668.mkv +崔泽飞-你的话伤了我的心,http://em.21dtv.com/songs/60138667.mkv +岳靖川-你丫闭嘴,http://em.21dtv.com/songs/60138666.mkv +居山植-亲爱的宝贝,http://em.21dtv.com/songs/60138665.mkv +尹子慧-我的祖国,http://em.21dtv.com/songs/60138664.mkv +尚雯婕-江湖有情,http://em.21dtv.com/songs/60138663.mkv +少军-梦想的舞台,http://em.21dtv.com/songs/60138662.mkv +少军-喜得贵子,http://em.21dtv.com/songs/60138661.mkv +小连杀-飞 致我们的星辰大海,http://em.21dtv.com/songs/60138660.mkv +小贱-方圆,http://em.21dtv.com/songs/60138659.mkv +小肥-R.E.M,http://em.21dtv.com/songs/60138658.mkv +小筑-就这样轻轻地爱你,http://em.21dtv.com/songs/60138657.mkv +小琢-我是一只羔羊,http://em.21dtv.com/songs/60138656.mkv +小球(庄鹃瑛)-真实世界,http://em.21dtv.com/songs/60138655.mkv +小水-为爱沉沦,http://em.21dtv.com/songs/60138654.mkv +小桥流水+清清-如果情还在,http://em.21dtv.com/songs/60138653.mkv +富富-爸爸妈妈你们在哪,http://em.21dtv.com/songs/60138652.mkv +寂悸+木子鹏-女神精,http://em.21dtv.com/songs/60138651.mkv +寂悸-有你我就会很快乐,http://em.21dtv.com/songs/60138650.mkv +寂悸-情深深十里画廊,http://em.21dtv.com/songs/60138649.mkv +宿涵+刘祖君-可我不想走,http://em.21dtv.com/songs/60138648.mkv +容舒-舍得,http://em.21dtv.com/songs/60138647.mkv +宋念宇-这样好不好,http://em.21dtv.com/songs/60138646.mkv +宋念宇-理想时代,http://em.21dtv.com/songs/60138645.mkv +宋孟君+童可可-嬉戏大作战,http://em.21dtv.com/songs/60138644.mkv +宋向楠+李智英-今生相偎相依,http://em.21dtv.com/songs/60138643.mkv +安悦溪-当你,http://em.21dtv.com/songs/60138642.mkv +安悦溪-你的微笑,http://em.21dtv.com/songs/60138641.mkv +安娜-武隆最美的地方,http://em.21dtv.com/songs/60138640.mkv +安东阳+门丽-美丽的遇见,http://em.21dtv.com/songs/60138639.mkv +安东阳-爱是我给你的一片天,http://em.21dtv.com/songs/60138638.mkv +孟橙+申江-美丽的神话,http://em.21dtv.com/songs/60138637.mkv +孟橙+申江-你最珍贵,http://em.21dtv.com/songs/60138636.mkv +孟橙-成都,http://em.21dtv.com/songs/60138635.mkv +孟橙-不要怕,http://em.21dtv.com/songs/60138634.mkv +孟文豪-最好的相伴,http://em.21dtv.com/songs/60138633.mkv +孟利-钱是好东西,http://em.21dtv.com/songs/60138632.mkv +孟利-潮流时代,http://em.21dtv.com/songs/60138631.mkv +孙露-黄玫瑰,http://em.21dtv.com/songs/60138630.mkv +孙豆尔-我们是恋人还是朋友,http://em.21dtv.com/songs/60138629.mkv +孙艺程-书生与秋,http://em.21dtv.com/songs/60138628.mkv +孙盛希-很晚的晚安,http://em.21dtv.com/songs/60138627.mkv +孙玲莉+谭香+小马-武隆行,http://em.21dtv.com/songs/60138626.mkv +孙浩然-放不下,http://em.21dtv.com/songs/60138625.mkv +孙楠-奉献美好,http://em.21dtv.com/songs/60138624.mkv +孙十一-我用命来爱你够不够,http://em.21dtv.com/songs/60138623.mkv +孙八一+钧泽-Take It Easy,http://em.21dtv.com/songs/60138622.mkv +孔雀眼-你在等什么,http://em.21dtv.com/songs/60138621.mkv +孔庆学-草原牧歌,http://em.21dtv.com/songs/60138620.mkv +孔庆学-等待,http://em.21dtv.com/songs/60138619.mkv +孔庆学-祝福,http://em.21dtv.com/songs/60138618.mkv +孔庆学-桃花为什么这样红,http://em.21dtv.com/songs/60138617.mkv +孔庆学-故乡恋,http://em.21dtv.com/songs/60138616.mkv +孔垂楠-诗人,http://em.21dtv.com/songs/60138615.mkv +子子-Careless Whisper,http://em.21dtv.com/songs/60138614.mkv +媚儿菲菲+林喜-心动的爱人,http://em.21dtv.com/songs/60138613.mkv +媚儿菲菲-姐姐的男神,http://em.21dtv.com/songs/60138612.mkv +娄译心-长寿哲学,http://em.21dtv.com/songs/60138611.mkv +娄艺潇-野生情人,http://em.21dtv.com/songs/60138610.mkv +娄艺潇-泡沫,http://em.21dtv.com/songs/60138609.mkv +娄艺潇-开门见山,http://em.21dtv.com/songs/60138608.mkv +娄峻硕-你老爸在你背后,http://em.21dtv.com/songs/60138607.mkv +姜玉阳+南宫嘉骏-回忆总想哭,http://em.21dtv.com/songs/60138606.mkv +姚晨+李健-被遗忘的传奇般的温柔,http://em.21dtv.com/songs/60138605.mkv +姚晨-父亲写的散文诗,http://em.21dtv.com/songs/60138604.mkv +姚晨-光之翼,http://em.21dtv.com/songs/60138603.mkv +姚亮-兄弟一杯酒,http://em.21dtv.com/songs/60138602.mkv +妹儿姐-相思在草原,http://em.21dtv.com/songs/60138601.mkv +妍妍-你睡了吗,http://em.21dtv.com/songs/60138600.mkv +好妹妹乐队-不说再见,http://em.21dtv.com/songs/60138599.mkv +奚坚刚-醉美天台,http://em.21dtv.com/songs/60138598.mkv +奚坚刚-我来自浙江,http://em.21dtv.com/songs/60138597.mkv +奚坚刚-不要说走你就走,http://em.21dtv.com/songs/60138596.mkv +央措柯秀-离开,http://em.21dtv.com/songs/60138595.mkv +央措柯秀-玛尼情歌,http://em.21dtv.com/songs/60138594.mkv +央措柯秀-爱在千里之外,http://em.21dtv.com/songs/60138593.mkv +央措柯秀-浴火凤凰,http://em.21dtv.com/songs/60138592.mkv +央措柯秀-次仁拉索,http://em.21dtv.com/songs/60138591.mkv +央措柯秀-收回,http://em.21dtv.com/songs/60138590.mkv +央措柯秀-我要醉在草原上,http://em.21dtv.com/songs/60138589.mkv +央措柯秀-我只有独自悲哀,http://em.21dtv.com/songs/60138588.mkv +央措柯秀-心中的草原,http://em.21dtv.com/songs/60138587.mkv +央措柯秀-天海,http://em.21dtv.com/songs/60138586.mkv +央措柯秀-在那遥远的地方,http://em.21dtv.com/songs/60138585.mkv +央措柯秀-听不见你的爱,http://em.21dtv.com/songs/60138584.mkv +央措柯秀-不是不爱了,http://em.21dtv.com/songs/60138583.mkv +太极乐队-你爱我不,http://em.21dtv.com/songs/60138582.mkv +太极-今天我非常寂寞,http://em.21dtv.com/songs/60138581.mkv +天津李树-转眼二十年,http://em.21dtv.com/songs/60138580.mkv +大平-孝敬爹和妈,http://em.21dtv.com/songs/60138579.mkv +大哲-闯码头2017,http://em.21dtv.com/songs/60138578.mkv +大哲-新郎不是我 新娘我爱过,http://em.21dtv.com/songs/60138577.mkv +大哲-下定决心等着你,http://em.21dtv.com/songs/60138576.mkv +大哲-下定决心忘记你2017,http://em.21dtv.com/songs/60138575.mkv +夏邦-看见,http://em.21dtv.com/songs/60138574.mkv +夏莉-别再说爱我,http://em.21dtv.com/songs/60138573.mkv +夏冬+周凤岭-北京1986,http://em.21dtv.com/songs/60138572.mkv +城末+文博+扬扬-人生若只如初见,http://em.21dtv.com/songs/60138571.mkv +囚鸟-终究还是要别离,http://em.21dtv.com/songs/60138570.mkv +喻越越-你的美丽动我心,http://em.21dtv.com/songs/60138569.mkv +唐薇-输过败过何曾怕过,http://em.21dtv.com/songs/60138568.mkv +唐禹哲-再见安打,http://em.21dtv.com/songs/60138567.mkv +唐晓菁+朱喆炜-梦想,http://em.21dtv.com/songs/60138566.mkv +唐三彩-今天你会了吗,http://em.21dtv.com/songs/60138565.mkv +咖龙-中国很忙,http://em.21dtv.com/songs/60138564.mkv +周蕙+王栎鑫-风铃,http://em.21dtv.com/songs/60138563.mkv +周蕙-可惜,http://em.21dtv.com/songs/60138562.mkv +周艺轩+雨馨-Still Me,http://em.21dtv.com/songs/60138561.mkv +周笔畅-用尽我的一切奔向你,http://em.21dtv.com/songs/60138560.mkv +周笔畅-无所事事,http://em.21dtv.com/songs/60138559.mkv +周淳婷-我是一只小百灵,http://em.21dtv.com/songs/60138558.mkv +周沂+Mike Killess-误会太深,http://em.21dtv.com/songs/60138557.mkv +周沂+Jaeson Ma-Black Hole,http://em.21dtv.com/songs/60138556.mkv +周杰伦+陈奕迅-谢谢侬^印第安老斑鸠,http://em.21dtv.com/songs/60138555.mkv +周杰-感谢兄弟,http://em.21dtv.com/songs/60138554.mkv +周亚辉+程莉莉-水墨武隆,http://em.21dtv.com/songs/60138553.mkv +周亚辉-武隆美武隆秀,http://em.21dtv.com/songs/60138552.mkv +吴芊兴-寂寞英雄,http://em.21dtv.com/songs/60138551.mkv +吴耀杰+孙楠-我可爱的爸爸,http://em.21dtv.com/songs/60138550.mkv +吴瑶-刷我滴卡,http://em.21dtv.com/songs/60138549.mkv +吴欣亚-遇见你就是最好的时光,http://em.21dtv.com/songs/60138548.mkv +吴庆国-乌兰姑娘,http://em.21dtv.com/songs/60138547.mkv +吴哲晗+徐子轩-人鱼,http://em.21dtv.com/songs/60138546.mkv +吴六夕-心在战场,http://em.21dtv.com/songs/60138545.mkv +吴俊宏+朱海君-你的温柔,http://em.21dtv.com/songs/60138544.mkv +吴俊宏-阿尼基,http://em.21dtv.com/songs/60138543.mkv +吴俊宏-钱钱钱,http://em.21dtv.com/songs/60138542.mkv +吴俊宏-纯情玫瑰花,http://em.21dtv.com/songs/60138541.mkv +吴俊宏-爱是三分迷七分痴,http://em.21dtv.com/songs/60138540.mkv +吴俊宏-来去卡拉OK,http://em.21dtv.com/songs/60138539.mkv +吴俊宏-后生,http://em.21dtv.com/songs/60138538.mkv +吴俊宏-台湾加油,http://em.21dtv.com/songs/60138537.mkv +吴京-风去云不回,http://em.21dtv.com/songs/60138536.mkv +吴业坤-伤心到变形,http://em.21dtv.com/songs/60138535.mkv +吕鋆峰-一生一遇,http://em.21dtv.com/songs/60138534.mkv +吕薇+张英席-相逢春天,http://em.21dtv.com/songs/60138533.mkv +吕梓铷-风中的影子,http://em.21dtv.com/songs/60138532.mkv +吕梓铷-爱上了你,http://em.21dtv.com/songs/60138531.mkv +吕冉-亲兄弟,http://em.21dtv.com/songs/60138530.mkv +司徒骏文-愿望,http://em.21dtv.com/songs/60138529.mkv +司夏+河图-缘生意转,http://em.21dtv.com/songs/60138528.mkv +叶炫清-风一样的我,http://em.21dtv.com/songs/60138527.mkv +叶炫清-从前慢,http://em.21dtv.com/songs/60138526.mkv +叶炫清-九张机,http://em.21dtv.com/songs/60138525.mkv +叶晓粤-闷,http://em.21dtv.com/songs/60138524.mkv +叶健锋-爱炫的一代,http://em.21dtv.com/songs/60138523.mkv +叶世荣+黄贯中+刘志远-灰色轨迹^大地,http://em.21dtv.com/songs/60138522.mkv +叶世荣+黄贯中-大地,http://em.21dtv.com/songs/60138521.mkv +古墓派小龙女-罗马古城的风在吹,http://em.21dtv.com/songs/60138520.mkv +古墓派小龙女-泪蝶,http://em.21dtv.com/songs/60138519.mkv +双笙-我的一个道姑朋友,http://em.21dtv.com/songs/60138518.mkv +原子霏-半打玫瑰,http://em.21dtv.com/songs/60138517.mkv +卢广仲-鱼仔,http://em.21dtv.com/songs/60138516.mkv +卢奕熊-孤琴,http://em.21dtv.com/songs/60138515.mkv +卢奕熊-唔甘心,http://em.21dtv.com/songs/60138514.mkv +卢一秒-一万个肿么啦,http://em.21dtv.com/songs/60138513.mkv +卞洪强-不要让你的女人哭,http://em.21dtv.com/songs/60138512.mkv +卞义-望儿山妈妈,http://em.21dtv.com/songs/60138511.mkv +南太铉-LIAR,http://em.21dtv.com/songs/60138510.mkv +南太铉-I Got The Blues,http://em.21dtv.com/songs/60138509.mkv +单小源-在没有你的以后,http://em.21dtv.com/songs/60138508.mkv +单宇飞-终结者,http://em.21dtv.com/songs/60138507.mkv +卓卓+Tizzy T-回到未来,http://em.21dtv.com/songs/60138506.mkv +华语群星-送别,http://em.21dtv.com/songs/60138505.mkv +华晨宇-易燃易爆炸,http://em.21dtv.com/songs/60138504.mkv +华倚峰-致亲爱的人,http://em.21dtv.com/songs/60138503.mkv +千百顺-很任性,http://em.21dtv.com/songs/60138502.mkv +千百顺-佛前最美的莲,http://em.21dtv.com/songs/60138501.mkv +区密-别再相信,http://em.21dtv.com/songs/60138500.mkv +刘超-兄弟情义,http://em.21dtv.com/songs/60138499.mkv +刘至佳-思无来,http://em.21dtv.com/songs/60138498.mkv +刘红孜-飞恍天涯,http://em.21dtv.com/songs/60138497.mkv +刘涛-等着你回来,http://em.21dtv.com/songs/60138496.mkv +刘涛-剪爱,http://em.21dtv.com/songs/60138495.mkv +刘海辰-哥流的是伤心不是眼泪,http://em.21dtv.com/songs/60138494.mkv +刘洋宝宝-爱你动了心,http://em.21dtv.com/songs/60138493.mkv +刘欢+陈奕迅-菊花台,http://em.21dtv.com/songs/60138492.mkv +刘欢+那英+周杰伦+陈奕迅-沧海一声笑,http://em.21dtv.com/songs/60138491.mkv +刘欢+那英-过把瘾,http://em.21dtv.com/songs/60138490.mkv +刘欢+周杰伦-一笑而过^你的背包,http://em.21dtv.com/songs/60138489.mkv +刘春雨-醉红颜,http://em.21dtv.com/songs/60138488.mkv +刘春雨-梦的路口,http://em.21dtv.com/songs/60138487.mkv +刘春雨-挽殇,http://em.21dtv.com/songs/60138486.mkv +刘春雨-不曾说分手,http://em.21dtv.com/songs/60138485.mkv +刘思祺-花木兰羞答答,http://em.21dtv.com/songs/60138484.mkv +刘忻-热血少女,http://em.21dtv.com/songs/60138483.mkv +刘心-有回忆的人,http://em.21dtv.com/songs/60138482.mkv +刘夕爱-最后的阳光,http://em.21dtv.com/songs/60138481.mkv +刘夕爱-就,http://em.21dtv.com/songs/60138480.mkv +刘增瞳-别再强求,http://em.21dtv.com/songs/60138479.mkv +刘增瞳-分不清的爱,http://em.21dtv.com/songs/60138478.mkv +刘国正-西侯度,http://em.21dtv.com/songs/60138477.mkv +刘嘉亮-在路上,http://em.21dtv.com/songs/60138476.mkv +刘向圆-为你疯魔,http://em.21dtv.com/songs/60138475.mkv +刘习军-让梦想飞翔,http://em.21dtv.com/songs/60138474.mkv +凌宏兵-遗失的爱,http://em.21dtv.com/songs/60138473.mkv +冷漠-你若安好我不打扰,http://em.21dtv.com/songs/60138472.mkv +冷漠-你的一生我只借一程,http://em.21dtv.com/songs/60138471.mkv +冰城爱歌+飞歌-唯一的爱,http://em.21dtv.com/songs/60138470.mkv +冯光-寂寞里飞翔,http://em.21dtv.com/songs/60138469.mkv +关智斌-习惯说谎,http://em.21dtv.com/songs/60138468.mkv +关晓彤-想要去的地方,http://em.21dtv.com/songs/60138467.mkv +关东-一生最爱的人,http://em.21dtv.com/songs/60138466.mkv +兰清青-风中的天使,http://em.21dtv.com/songs/60138465.mkv +兰清林-弯弯月亮船,http://em.21dtv.com/songs/60138464.mkv +六哲+陈雅森-懂我的人,http://em.21dtv.com/songs/60138463.mkv +信-泪伤,http://em.21dtv.com/songs/60138462.mkv +信-摇滚区,http://em.21dtv.com/songs/60138461.mkv +信-危城,http://em.21dtv.com/songs/60138460.mkv +保峰-我多想你回来,http://em.21dtv.com/songs/60138459.mkv +保峰-再也没有了以后,http://em.21dtv.com/songs/60138458.mkv +侯觉-英雄印象,http://em.21dtv.com/songs/60138457.mkv +侯丽娟+马国超-中乔之歌,http://em.21dtv.com/songs/60138456.mkv +侯丽娟-中乔之歌,http://em.21dtv.com/songs/60138455.mkv +余芷慧-观察日记,http://em.21dtv.com/songs/60138454.mkv +余佳运-我想,http://em.21dtv.com/songs/60138453.mkv +何维健-换我爱你,http://em.21dtv.com/songs/60138452.mkv +伯艺-兄弟一杯酒,http://em.21dtv.com/songs/60138451.mkv +优我女团-Call Me老司机,http://em.21dtv.com/songs/60138450.mkv +任静-陕西故事,http://em.21dtv.com/songs/60138449.mkv +任静-幸福丝路,http://em.21dtv.com/songs/60138448.mkv +任静-如约桃花开,http://em.21dtv.com/songs/60138447.mkv +代平-武隆好,http://em.21dtv.com/songs/60138446.mkv +代乐乐-岁月静好,http://em.21dtv.com/songs/60138445.mkv +付美东-开心果,http://em.21dtv.com/songs/60138444.mkv +于洋-我的老矿,http://em.21dtv.com/songs/60138443.mkv +于洋-奶奶,http://em.21dtv.com/songs/60138442.mkv +于毅-怒放的生命,http://em.21dtv.com/songs/60138441.mkv +于梓贝-模特,http://em.21dtv.com/songs/60138440.mkv +乔馒凝-小白杨,http://em.21dtv.com/songs/60138439.mkv +乐正绫+洛天依-世末歌者,http://em.21dtv.com/songs/60138438.mkv +乌兰托娅-高原上的情歌,http://em.21dtv.com/songs/60138437.mkv +乌兰图雅-送你一首生日歌,http://em.21dtv.com/songs/60138436.mkv +乌兰吉雅-情寄大草原,http://em.21dtv.com/songs/60138435.mkv +中岛美嘉-电光石火之间,http://em.21dtv.com/songs/60138434.mkv +东来东往-时差,http://em.21dtv.com/songs/60138433.mkv +东东-狂野的美,http://em.21dtv.com/songs/60138432.mkv +东东-涯兜客家人,http://em.21dtv.com/songs/60138431.mkv +丛荣泽萌-山里江南,http://em.21dtv.com/songs/60138430.mkv +不靠谱组合-怎么不可以,http://em.21dtv.com/songs/60138429.mkv +上海彩虹室内合唱团-孤独是种病,http://em.21dtv.com/songs/60138428.mkv +上官依一-把纯真的感情留给你,http://em.21dtv.com/songs/60138427.mkv +上官依一-我太执着,http://em.21dtv.com/songs/60138426.mkv +万芳-新不了情,http://em.21dtv.com/songs/60138425.mkv +丁思忖-Hello 想见你,http://em.21dtv.com/songs/60138424.mkv +丁一-东归的故乡,http://em.21dtv.com/songs/60138423.mkv +X Time-We Are Rising Star,http://em.21dtv.com/songs/60138422.mkv +WiLL D+VaVa-Watch Out,http://em.21dtv.com/songs/60138421.mkv +Urban Zakapa+Beenzino-星期四晚上,http://em.21dtv.com/songs/60138420.mkv +Ty.-Real Life,http://em.21dtv.com/songs/60138419.mkv +TPA+AL Rocco+艾菲-China Trap House,http://em.21dtv.com/songs/60138418.mkv +The Writers写手-Burn,http://em.21dtv.com/songs/60138417.mkv +The May Stars-给你的歌,http://em.21dtv.com/songs/60138416.mkv +TFBOYS-萤火,http://em.21dtv.com/songs/60138415.mkv +TFBOYS-加油AMIGO,http://em.21dtv.com/songs/60138414.mkv +Sunshine-青春进行曲,http://em.21dtv.com/songs/60138413.mkv +Stella Jang-少女时代,http://em.21dtv.com/songs/60138412.mkv +Smile小千-初见便是永远,http://em.21dtv.com/songs/60138411.mkv +SING女团-战,http://em.21dtv.com/songs/60138410.mkv +Sam Smith-Lay Me Down,http://em.21dtv.com/songs/60138409.mkv +Rita Ora-Your Song,http://em.21dtv.com/songs/60138408.mkv +Q美先锋团-大朋友,http://em.21dtv.com/songs/60138407.mkv +PG One-中二病,http://em.21dtv.com/songs/60138406.mkv +Olly Murs+Louisa Johnson-Unpredictable,http://em.21dtv.com/songs/60138405.mkv +New Kids On the Block-Thankful,http://em.21dtv.com/songs/60138404.mkv +N.P.E自由引力-亲爱的阴影,http://em.21dtv.com/songs/60138403.mkv +Momoko-红颜无双,http://em.21dtv.com/songs/60138402.mkv +Milky Chance-Stolen Dance,http://em.21dtv.com/songs/60138401.mkv +MaseWonder+YunB-MOONLIT,http://em.21dtv.com/songs/60138400.mkv +Mars毒药-超凡战纪,http://em.21dtv.com/songs/60138399.mkv +LIGHTS-GIANTS,http://em.21dtv.com/songs/60138398.mkv +Lao干妈-少年西游行,http://em.21dtv.com/songs/60138397.mkv +LADYBEARD+丁香-金刚芭比,http://em.21dtv.com/songs/60138396.mkv +Kodaline-Brother,http://em.21dtv.com/songs/60138395.mkv +Ki.DAstronaut+赵钦-有我在,http://em.21dtv.com/songs/60138394.mkv +Kendrick Lamar-ELEMENT.,http://em.21dtv.com/songs/60138393.mkv +红眼睛,http://em.21dtv.com/songs/60138392.mkv +JinSoul-Singing in the Rain,http://em.21dtv.com/songs/60138391.mkv +JERO+Beenzino-红绿灯,http://em.21dtv.com/songs/60138390.mkv +JC-现任朋友,http://em.21dtv.com/songs/60138389.mkv +James Blunt-Tears And Rain,http://em.21dtv.com/songs/60138388.mkv +Hunter Hayes-Amen,http://em.21dtv.com/songs/60138387.mkv +Hoop圈圈-九九乘法表,http://em.21dtv.com/songs/60138386.mkv +Hiphopman+OBi+M03-兄弟们的歌,http://em.21dtv.com/songs/60138385.mkv +Heize-太不了解你,http://em.21dtv.com/songs/60138384.mkv +HAIM-Want You Back,http://em.21dtv.com/songs/60138383.mkv +Green Day-Still Breathing,http://em.21dtv.com/songs/60138382.mkv +GAI+赵涛-只听自己的歌,http://em.21dtv.com/songs/60138381.mkv +GAI-天干物燥,http://em.21dtv.com/songs/60138380.mkv +G.Soul+Hoody-Tequila,http://em.21dtv.com/songs/60138379.mkv +FZ方丈-燃情春秋,http://em.21dtv.com/songs/60138378.mkv +Fall Out Boy+Missy Elliott-Ghostbusters,http://em.21dtv.com/songs/60138377.mkv +Fall Out Boy-Champion,http://em.21dtv.com/songs/60138376.mkv +EXID-Up&Down,http://em.21dtv.com/songs/60138375.mkv +Enrique Iglesias-Ring My Bells,http://em.21dtv.com/songs/60138374.mkv +first,http://em.21dtv.com/songs/60138373.mkv +ELO-ROSE,http://em.21dtv.com/songs/60138372.mkv +DJ辉仔-如果你愿意,http://em.21dtv.com/songs/60138371.mkv +DJ Khaled+Sizzla-I'm so Grateful,http://em.21dtv.com/songs/60138370.mkv +Dick Punks-星星般闪耀的你,http://em.21dtv.com/songs/60138369.mkv +DIA-Mr.Potter,http://em.21dtv.com/songs/60138368.mkv +David Guetta+Ne Yo+Akon-Play Hard,http://em.21dtv.com/songs/60138367.mkv +Crush+韩相元-SKIP,http://em.21dtv.com/songs/60138366.mkv +COSMOS组合-GO,http://em.21dtv.com/songs/60138365.mkv +Carly Rae Jepsen-Cut To The Feeling,http://em.21dtv.com/songs/60138364.mkv +C ALLSTAR-灵魂进化,http://em.21dtv.com/songs/60138363.mkv +Bruno Mars-Versace On The Floor,http://em.21dtv.com/songs/60138362.mkv +Brave Girls-Yoohoo,http://em.21dtv.com/songs/60138361.mkv +BOBO-与爱无关,http://em.21dtv.com/songs/60138360.mkv +Bingo-I Know What You Want,http://em.21dtv.com/songs/60138359.mkv +Ben-My All,http://em.21dtv.com/songs/60138358.mkv +Beast-Butterfly,http://em.21dtv.com/songs/60138357.mkv +Bambino-Mamma Mia,http://em.21dtv.com/songs/60138356.mkv +Artists for Grenfell-Bridge Over Troubled Water,http://em.21dtv.com/songs/60138355.mkv +Arie-我不是那个女孩,http://em.21dtv.com/songs/60138354.mkv +Apink-FIVE,http://em.21dtv.com/songs/60138353.mkv +Anly-EMERGENCY,http://em.21dtv.com/songs/60138352.mkv +Alin-一直走,http://em.21dtv.com/songs/60138351.mkv +Aga-吃定我,http://em.21dtv.com/songs/60138350.mkv +A.T女神-做自己的女神,http://em.21dtv.com/songs/60138349.mkv +24K-Still 24K,http://em.21dtv.com/songs/60138348.mkv +1931女子偶像组合-盛夏星空,http://em.21dtv.com/songs/60138347.mkv +1931女子偶像组合-爱神的方向,http://em.21dtv.com/songs/60138346.mkv +1931女子偶像组合-深秋的许愿池,http://em.21dtv.com/songs/60138345.mkv +1931女子偶像组合-欢聚时刻1931,http://em.21dtv.com/songs/60138344.mkv +1931女子偶像组合-来自未来的嘱托,http://em.21dtv.com/songs/60138343.mkv +1931女子偶像组合-春雨的痕迹,http://em.21dtv.com/songs/60138342.mkv +1931女子偶像组合-天际的声音,http://em.21dtv.com/songs/60138341.mkv +1931女子偶像组合-夏日的和弦,http://em.21dtv.com/songs/60138340.mkv +1931女子偶像组合-圣诞告白日,http://em.21dtv.com/songs/60138339.mkv +1931女子偶像组合-偶像很伟大,http://em.21dtv.com/songs/60138338.mkv +1931女子偶像组合-二分之一,http://em.21dtv.com/songs/60138337.mkv +1931女子偶像组合-中点,http://em.21dtv.com/songs/60138336.mkv +1931女子偶像组合-与你的季节,http://em.21dtv.com/songs/60138335.mkv +1931女子偶像组合-下一个天晴,http://em.21dtv.com/songs/60138334.mkv +1931女子偶像组合-Tiramisu,http://em.21dtv.com/songs/60138333.mkv +1931女子偶像组合-Summer Love,http://em.21dtv.com/songs/60138332.mkv +龚琳娜-将界,http://em.21dtv.com/songs/60138331.mkv +龙飘飘-恨你情难守,http://em.21dtv.com/songs/60138330.mkv +龙飘飘-不能不想你,http://em.21dtv.com/songs/60138329.mkv +龙巴特-龙腾世纪风,http://em.21dtv.com/songs/60138328.mkv +龙奔-真正的兄弟,http://em.21dtv.com/songs/60138327.mkv +龙奔-寻找从前的我们,http://em.21dtv.com/songs/60138326.mkv +齐霖-爸爸妈妈,http://em.21dtv.com/songs/60138325.mkv +齐霖-其实,http://em.21dtv.com/songs/60138324.mkv +齐雅-小小蜗居,http://em.21dtv.com/songs/60138323.mkv +齐峰-草原在哪里,http://em.21dtv.com/songs/60138322.mkv +黑豹乐队+于谦-Don't Break My Heart,http://em.21dtv.com/songs/60138321.mkv +黑豹乐队-靠近我,http://em.21dtv.com/songs/60138320.mkv +黑豹乐队-无畏,http://em.21dtv.com/songs/60138319.mkv +黑豹乐队-无地自容,http://em.21dtv.com/songs/60138318.mkv +黑豹乐队-干杯,http://em.21dtv.com/songs/60138317.mkv +黑豹乐队-兄弟,http://em.21dtv.com/songs/60138316.mkv +黑豹乐队-低头士,http://em.21dtv.com/songs/60138315.mkv +黑豹乐队-为所有爱我们的人,http://em.21dtv.com/songs/60138314.mkv +黑撒-校花隔壁的流川枫,http://em.21dtv.com/songs/60138313.mkv +黑哥-百善孝为先,http://em.21dtv.com/songs/60138312.mkv +黄金豆-让我们荡起双桨,http://em.21dtv.com/songs/60138311.mkv +黄绮珊+郑洁-一起来,http://em.21dtv.com/songs/60138310.mkv +黄绮珊-爱得太多,http://em.21dtv.com/songs/60138309.mkv +黄绮珊-灯塔,http://em.21dtv.com/songs/60138308.mkv +黄绮珊-思念,http://em.21dtv.com/songs/60138307.mkv +黄绮珊-坦诉,http://em.21dtv.com/songs/60138306.mkv +黄绮珊-只有你,http://em.21dtv.com/songs/60138305.mkv +黄立绮-限定款,http://em.21dtv.com/songs/60138304.mkv +黄立绮-不痛不痛,http://em.21dtv.com/songs/60138303.mkv +黄立绮-不想成为那一种大人,http://em.21dtv.com/songs/60138302.mkv +黄淑惠-嘿,http://em.21dtv.com/songs/60138301.mkv +黄永兴-老爸,http://em.21dtv.com/songs/60138300.mkv +黄望二-烂醉如泥,http://em.21dtv.com/songs/60138299.mkv +黄文武-讲不出的秘密,http://em.21dtv.com/songs/60138298.mkv +黄思思-请到哨卡来,http://em.21dtv.com/songs/60138297.mkv +黄思思-爱在月照河,http://em.21dtv.com/songs/60138296.mkv +黄尊-要火,http://em.21dtv.com/songs/60138295.mkv +黄国伦-我不睡,http://em.21dtv.com/songs/60138294.mkv +黄可门-新一曲红尘,http://em.21dtv.com/songs/60138293.mkv +黄勇-朋友听我说,http://em.21dtv.com/songs/60138292.mkv +麦浚龙+冯颖琪-何地有方,http://em.21dtv.com/songs/60138291.mkv +鹿晗-夜行记,http://em.21dtv.com/songs/60138290.mkv +鹿乃-day by day,http://em.21dtv.com/songs/60138289.mkv +鹏鸽-错爱一生,http://em.21dtv.com/songs/60138288.mkv +鹏鸽-一个不懂爱的人,http://em.21dtv.com/songs/60138287.mkv +鸿飞-说走就走,http://em.21dtv.com/songs/60138286.mkv +鸿飞-慢慢爱你,http://em.21dtv.com/songs/60138285.mkv +魏晨+Ryan B-藤蔓之间,http://em.21dtv.com/songs/60138284.mkv +高进-幻觉,http://em.21dtv.com/songs/60138283.mkv +高胜美-采槟榔,http://em.21dtv.com/songs/60138282.mkv +高胜美-追梦人,http://em.21dtv.com/songs/60138281.mkv +高恺蔚-让一切重来,http://em.21dtv.com/songs/60138280.mkv +高咏梅-红梅赞,http://em.21dtv.com/songs/60138279.mkv +高咏梅-秦岭最美是商洛,http://em.21dtv.com/songs/60138278.mkv +高咏梅-祖国之恋,http://em.21dtv.com/songs/60138277.mkv +高咏梅-清粼粼的水 蓝莹莹的天,http://em.21dtv.com/songs/60138276.mkv +高咏梅-洪湖水浪打浪,http://em.21dtv.com/songs/60138275.mkv +高咏梅-梨花颂,http://em.21dtv.com/songs/60138274.mkv +高咏梅-五洲人民齐欢笑,http://em.21dtv.com/songs/60138273.mkv +高原天籁-最美的相遇,http://em.21dtv.com/songs/60138272.mkv +高俊-布依圣境,http://em.21dtv.com/songs/60138271.mkv +高云翔+蔡宜达-让我一次爱个够,http://em.21dtv.com/songs/60138270.mkv +高云翔+王珞丹-潇洒走一回 千年等一回,http://em.21dtv.com/songs/60138269.mkv +高云翔-情人,http://em.21dtv.com/songs/60138268.mkv +高丽云-思念家乡,http://em.21dtv.com/songs/60138267.mkv +马雨阳-离家的少年,http://em.21dtv.com/songs/60138266.mkv +马雨梵-猎爱,http://em.21dtv.com/songs/60138265.mkv +马洁+徐汕-幸运女神,http://em.21dtv.com/songs/60138264.mkv +马嘉均-幽默感,http://em.21dtv.com/songs/60138263.mkv +你为什么总是不听话,http://em.21dtv.com/songs/60138262.mkv +馨天优组合-梦中的兰花花,http://em.21dtv.com/songs/60138261.mkv +风雨-爱的路上永相随,http://em.21dtv.com/songs/60138260.mkv +风语-醉枣醉,http://em.21dtv.com/songs/60138259.mkv +风语-苦涩的爱,http://em.21dtv.com/songs/60138258.mkv +风语-水仙诉,http://em.21dtv.com/songs/60138257.mkv +风语-无奈的放弃,http://em.21dtv.com/songs/60138256.mkv +风语-放不下的牵挂,http://em.21dtv.com/songs/60138255.mkv +风小筝-青狐媚,http://em.21dtv.com/songs/60138254.mkv +顾总-给你时间给我甩起来,http://em.21dtv.com/songs/60138253.mkv +顾建华-爱情赌注,http://em.21dtv.com/songs/60138252.mkv +音乐走廊+歌一生-江南妹子,http://em.21dtv.com/songs/60138251.mkv +音乐走廊+歌一生-感谢让我遇见你,http://em.21dtv.com/songs/60138250.mkv +音乐走廊+歌一生-女人心女人泪,http://em.21dtv.com/songs/60138249.mkv +音乐走廊+歌一生-唱首爱你的歌,http://em.21dtv.com/songs/60138248.mkv +音乐走廊+歌一生-今生和你生死相依,http://em.21dtv.com/songs/60138247.mkv +音乐走廊+果缘-爱上你是我今生最大的骄傲,http://em.21dtv.com/songs/60138246.mkv +音乐走廊+果缘-我的心里装满都是你,http://em.21dtv.com/songs/60138245.mkv +音乐走廊+果缘-亲爱的人何时回我怀中,http://em.21dtv.com/songs/60138244.mkv +音乐走廊-朋友跟我一起来,http://em.21dtv.com/songs/60138243.mkv +韩金希-燃烧起来了,http://em.21dtv.com/songs/60138242.mkv +韩磊-白鹿原,http://em.21dtv.com/songs/60138241.mkv +韩冰+云朵-情歌赛过春江水,http://em.21dtv.com/songs/60138240.mkv +韩冰+云朵-情歌,http://em.21dtv.com/songs/60138239.mkv +韩东-老妹你真美,http://em.21dtv.com/songs/60138238.mkv +韩一菲-不要迷恋姐,http://em.21dtv.com/songs/60138237.mkv +韦东明-醒来吧,http://em.21dtv.com/songs/60138236.mkv +韦东明-遗落的阳台,http://em.21dtv.com/songs/60138235.mkv +鞠婧祎-等不到你,http://em.21dtv.com/songs/60138234.mkv +靖儿-Say A Little Word,http://em.21dtv.com/songs/60138233.mkv +雪晗-雨荷,http://em.21dtv.com/songs/60138232.mkv +雪无影-可惜你走了,http://em.21dtv.com/songs/60138231.mkv +雨霖枫-宁负天下不负你,http://em.21dtv.com/songs/60138230.mkv +雨霖枫-唱尽伤心,http://em.21dtv.com/songs/60138229.mkv +陶钰玉-小寂寞,http://em.21dtv.com/songs/60138228.mkv +陶喆+汪苏泷-心乱飞,http://em.21dtv.com/songs/60138227.mkv +陈鹏升-时空之外,http://em.21dtv.com/songs/60138226.mkv +陈雅森-男人的胸膛,http://em.21dtv.com/songs/60138225.mkv +陈雅森-再见吧昨天,http://em.21dtv.com/songs/60138224.mkv +陈雅森-My lost lover,http://em.21dtv.com/songs/60138223.mkv +陈阳-木兰花,http://em.21dtv.com/songs/60138222.mkv +妈妈,http://em.21dtv.com/songs/60138221.mkv +陈赫-亲亲我的宝贝 爱的就是你,http://em.21dtv.com/songs/60138220.mkv +陈萝莉-我爱过很多人,http://em.21dtv.com/songs/60138219.mkv +陈艺之-不同凡想[梦想的声音],http://em.21dtv.com/songs/60138218.mkv +陈联栋-我的太阳,http://em.21dtv.com/songs/60138217.mkv +陈直-梦一般遗忘,http://em.21dtv.com/songs/60138216.mkv +陈瑞+赵鑫-不是萍水不相逢,http://em.21dtv.com/songs/60138215.mkv +陈瑞+张津涤-只爱一个你,http://em.21dtv.com/songs/60138214.mkv +陈瑞-秋日私语,http://em.21dtv.com/songs/60138213.mkv +陈玮儒-History,http://em.21dtv.com/songs/60138212.mkv +陈玉建+金美滟-我被爱情撞了一下腰,http://em.21dtv.com/songs/60138211.mkv +陈爽-家,http://em.21dtv.com/songs/60138210.mkv +陈泓文-随风,http://em.21dtv.com/songs/60138209.mkv +陈梓童-未来,http://em.21dtv.com/songs/60138208.mkv +陈梓童-心战,http://em.21dtv.com/songs/60138207.mkv +陈明憙-1064℃,http://em.21dtv.com/songs/60138206.mkv +陈文浩-等等我,http://em.21dtv.com/songs/60138205.mkv +陈文浩-男人的歌,http://em.21dtv.com/songs/60138204.mkv +陈威男+柳佳佳-天地情,http://em.21dtv.com/songs/60138203.mkv +陈奕迅-放,http://em.21dtv.com/songs/60138202.mkv +陈奕迅-披风,http://em.21dtv.com/songs/60138201.mkv +陈奕迅-喜欢一个人,http://em.21dtv.com/songs/60138200.mkv +陈奕夫-空,http://em.21dtv.com/songs/60138199.mkv +陈夏辉-女人已是半边天,http://em.21dtv.com/songs/60138198.mkv +陈咏-你是我最疼的牵挂,http://em.21dtv.com/songs/60138197.mkv +陈兆飞-老婆我爱你,http://em.21dtv.com/songs/60138196.mkv +陈俊析-小小少年,http://em.21dtv.com/songs/60138195.mkv +陈丽娜-你的眼神,http://em.21dtv.com/songs/60138194.mkv +陈一发儿-童话镇,http://em.21dtv.com/songs/60138193.mkv +陆毅-特洛伊,http://em.21dtv.com/songs/60138192.mkv +阿鲁阿卓+云飞-民歌联唱,http://em.21dtv.com/songs/60138191.mkv +阿鲁阿卓-要走的阿老表,http://em.21dtv.com/songs/60138190.mkv +阿鲁阿卓-盟,http://em.21dtv.com/songs/60138189.mkv +阿鲁阿卓-朋友来了不想走,http://em.21dtv.com/songs/60138188.mkv +阿达+玖壹壹+杨铭威-大酷哥,http://em.21dtv.com/songs/60138187.mkv +阿达+春风+杨铭威-大酷哥,http://em.21dtv.com/songs/60138186.mkv +阿达-身体健康,http://em.21dtv.com/songs/60138185.mkv +阿文-你是伤我最深的人,http://em.21dtv.com/songs/60138184.mkv +阿敬-不露声色,http://em.21dtv.com/songs/60138183.mkv +阿影-龙行天下,http://em.21dtv.com/songs/60138182.mkv +阿影-中原告诉世界,http://em.21dtv.com/songs/60138181.mkv +阿库诗玺-唱首歌给爸爸妈妈,http://em.21dtv.com/songs/60138180.mkv +阿但-为你等候,http://em.21dtv.com/songs/60138179.mkv +阿云嘎-落花城外,http://em.21dtv.com/songs/60138178.mkv +阎维文+阿鲁阿卓-在那遥远的地方,http://em.21dtv.com/songs/60138177.mkv +门丽-雨夜想你,http://em.21dtv.com/songs/60138176.mkv +镐天-我是延长人,http://em.21dtv.com/songs/60138175.mkv +镐天-大陕北,http://em.21dtv.com/songs/60138174.mkv +键人乐队-沦陷,http://em.21dtv.com/songs/60138173.mkv +钱琳-无锡是个好地方,http://em.21dtv.com/songs/60138172.mkv +钟镇涛-红叶斜落我心寂寞时,http://em.21dtv.com/songs/60138171.mkv +钟镇涛-情变,http://em.21dtv.com/songs/60138170.mkv +钟镇涛-一段情,http://em.21dtv.com/songs/60138169.mkv +钟英-高洁流芳,http://em.21dtv.com/songs/60138168.mkv +钟舒漫-小碎步,http://em.21dtv.com/songs/60138167.mkv +钟洁+Rill-最后的洗礼,http://em.21dtv.com/songs/60138166.mkv +钟宇+黄靖淞-司仪 伴郎,http://em.21dtv.com/songs/60138165.mkv +钟国松-不期而遇,http://em.21dtv.com/songs/60138164.mkv +钟丽燕-啊中国的土地,http://em.21dtv.com/songs/60138163.mkv +金贤重-风车,http://em.21dtv.com/songs/60138162.mkv +金贤重-Wake me up,http://em.21dtv.com/songs/60138161.mkv +金贤重-Stay here,http://em.21dtv.com/songs/60138160.mkv +金请夏+Nucksal-Why Don't You Know,http://em.21dtv.com/songs/60138159.mkv +金熙泽-泪在飞,http://em.21dtv.com/songs/60138158.mkv +金池-何为仙,http://em.21dtv.com/songs/60138157.mkv +金志文+黄绮珊-梨花又开放,http://em.21dtv.com/songs/60138156.mkv +金志文-那片星空那片海,http://em.21dtv.com/songs/60138155.mkv +金志文-等待,http://em.21dtv.com/songs/60138154.mkv +金志文-一样的月光,http://em.21dtv.com/songs/60138153.mkv +金少祥-穿越战士,http://em.21dtv.com/songs/60138152.mkv +金少祥-男人难做男人难当,http://em.21dtv.com/songs/60138151.mkv +金娱-男人如绵,http://em.21dtv.com/songs/60138150.mkv +金娱-深爱的对不起,http://em.21dtv.com/songs/60138149.mkv +金娱-我愿用一切换回你,http://em.21dtv.com/songs/60138148.mkv +金娱-保持好心情,http://em.21dtv.com/songs/60138147.mkv +金娱-不要假装对我好,http://em.21dtv.com/songs/60138146.mkv +金南玲-子夜歌,http://em.21dtv.com/songs/60138145.mkv +金久哲-请你再借我一点温柔,http://em.21dtv.com/songs/60138144.mkv +醉美-花舞人间,http://em.21dtv.com/songs/60138143.mkv +都市苍狼-甜蜜的单相思,http://em.21dtv.com/songs/60138142.mkv +郭美美-你能听见吗,http://em.21dtv.com/songs/60138141.mkv +郭真言-要一起走吗,http://em.21dtv.com/songs/60138140.mkv +郭津彤+云飞-在水伊方,http://em.21dtv.com/songs/60138139.mkv +郭欣桐-态度密,http://em.21dtv.com/songs/60138138.mkv +郭忠佑+曹雅雯-简单的爱,http://em.21dtv.com/songs/60138137.mkv +郭忠佑-情深才有爱,http://em.21dtv.com/songs/60138136.mkv +郭忠佑-偏偏不流泪,http://em.21dtv.com/songs/60138135.mkv +郭常辉-醉今朝,http://em.21dtv.com/songs/60138134.mkv +郭宇迪-一人城梦,http://em.21dtv.com/songs/60138133.mkv +郭一橙-有种别回来,http://em.21dtv.com/songs/60138132.mkv +郑镒勋-Fancy Shoes,http://em.21dtv.com/songs/60138131.mkv +郑迦文-微光,http://em.21dtv.com/songs/60138130.mkv +郑欣宜+李拾壹-Fake A Smile,http://em.21dtv.com/songs/60138129.mkv +郑智杰-我有故事你有酒吗,http://em.21dtv.com/songs/60138128.mkv +郑斯仁-喜欢你 但我不敢爱你,http://em.21dtv.com/songs/60138127.mkv +郑宜农+卢凯彤-Our Pop Song,http://em.21dtv.com/songs/60138126.mkv +郑宜农-酒店关门之后,http://em.21dtv.com/songs/60138125.mkv +郑兴琦-轻伤,http://em.21dtv.com/songs/60138124.mkv +郑俊弘-你走的那个晚上,http://em.21dtv.com/songs/60138123.mkv +郑世豪-逐格回味,http://em.21dtv.com/songs/60138122.mkv +郁可唯-水中央,http://em.21dtv.com/songs/60138121.mkv +郁可唯-小小天涯,http://em.21dtv.com/songs/60138120.mkv +邹凯-想你的夜,http://em.21dtv.com/songs/60138119.mkv +邵明明-从前我爱过你,http://em.21dtv.com/songs/60138118.mkv +邱贤桂+丁国琳+一绫-圆满的爱,http://em.21dtv.com/songs/60138117.mkv +邱贤桂-相借问,http://em.21dtv.com/songs/60138116.mkv +邱贤桂-男人的歌,http://em.21dtv.com/songs/60138115.mkv +邱贤桂-爱已过站,http://em.21dtv.com/songs/60138114.mkv +邱贤桂-掌心泪,http://em.21dtv.com/songs/60138113.mkv +邱贤桂-我还是妳当初爱的那个人,http://em.21dtv.com/songs/60138112.mkv +邱贤桂-感情这条路,http://em.21dtv.com/songs/60138111.mkv +邱贤桂-妳过了好吗,http://em.21dtv.com/songs/60138110.mkv +邱贤桂-三更梦,http://em.21dtv.com/songs/60138109.mkv +邱贤桂-一路顺风,http://em.21dtv.com/songs/60138108.mkv +邱海昕-一寸光阴一寸金,http://em.21dtv.com/songs/60138107.mkv +邱敬婷-但愿你的梦中有我,http://em.21dtv.com/songs/60138106.mkv +邱敬婷-世界之巅,http://em.21dtv.com/songs/60138105.mkv +邰正宵-没有你的我,http://em.21dtv.com/songs/60138104.mkv +邓麒鸣-你再不来我就走了,http://em.21dtv.com/songs/60138103.mkv +邓萃雯+陈赫-无敌 铁血丹心,http://em.21dtv.com/songs/60138102.mkv +邓萃雯-哭了,http://em.21dtv.com/songs/60138101.mkv +邓紫棋-桃花诺,http://em.21dtv.com/songs/60138100.mkv +邓紫棋-心之焰,http://em.21dtv.com/songs/60138099.mkv +邓小龙-珠江啤酒,http://em.21dtv.com/songs/60138098.mkv +邓小良-遇见你,http://em.21dtv.com/songs/60138097.mkv +邓小巧-两沟,http://em.21dtv.com/songs/60138096.mkv +邓伦-哭不出来,http://em.21dtv.com/songs/60138095.mkv +辛晓琪+A Lin-空窗,http://em.21dtv.com/songs/60138094.mkv +路飞老湿+苏伈塘-六扇门风云,http://em.21dtv.com/songs/60138093.mkv +路飞老湿-后海,http://em.21dtv.com/songs/60138092.mkv +路飞老湿-北海道初晴,http://em.21dtv.com/songs/60138091.mkv +赵骏-吻我吧,http://em.21dtv.com/songs/60138090.mkv +赵雷-家乡,http://em.21dtv.com/songs/60138089.mkv +赵鑫-僧,http://em.21dtv.com/songs/60138088.mkv +赵贺-怎样,http://em.21dtv.com/songs/60138087.mkv +赵蕊-情人,http://em.21dtv.com/songs/60138086.mkv +赵艺涵-口弦,http://em.21dtv.com/songs/60138085.mkv +赵玥+叶柳青-天长地久,http://em.21dtv.com/songs/60138084.mkv +赖馨仪-中国梦七彩梦,http://em.21dtv.com/songs/60138083.mkv +赖晶熙-将军吟,http://em.21dtv.com/songs/60138082.mkv +赖富正-忘英雄,http://em.21dtv.com/songs/60138081.mkv +贾璐+杨眼眼-那些关于你的故事,http://em.21dtv.com/songs/60138080.mkv +贾富营-有你的日子好幸福,http://em.21dtv.com/songs/60138079.mkv +贾富营-人生不能没有爱,http://em.21dtv.com/songs/60138078.mkv +贺宣-落幕,http://em.21dtv.com/songs/60138077.mkv +贺宣-希望你能好好的生活,http://em.21dtv.com/songs/60138076.mkv +贺宣-奢侈的幸福,http://em.21dtv.com/songs/60138075.mkv +贺一航-为什么相爱却不能相守,http://em.21dtv.com/songs/60138074.mkv +谭艳-别让你的泪打湿我的眼,http://em.21dtv.com/songs/60138073.mkv +谭维维+郑浩天+那吾克热玉素甫江-Blah Blah Blah,http://em.21dtv.com/songs/60138072.mkv +谭维维+张雨佳+郑浩天+泽宙斯姬-如果有来生,http://em.21dtv.com/songs/60138071.mkv +谭珮妮+王娅琦-妈妈宝贝,http://em.21dtv.com/songs/60138070.mkv +谭珮妮-Shining Days,http://em.21dtv.com/songs/60138069.mkv +谭松韵-亲爱的,http://em.21dtv.com/songs/60138068.mkv +谭晶-报答,http://em.21dtv.com/songs/60138067.mkv +谭春梅-奔跑吧兄弟,http://em.21dtv.com/songs/60138066.mkv +谭咏麟+许冠杰-阿Sam与阿Tam,http://em.21dtv.com/songs/60138065.mkv +谢震廷-走,http://em.21dtv.com/songs/60138064.mkv +谢震廷-灯光,http://em.21dtv.com/songs/60138063.mkv +谢震廷-年,http://em.21dtv.com/songs/60138062.mkv +谢忠良-爱上98,http://em.21dtv.com/songs/60138061.mkv +谢娜-给我感觉,http://em.21dtv.com/songs/60138060.mkv +谢娜-校园的早晨,http://em.21dtv.com/songs/60138059.mkv +谢和弦+E SO-苹果,http://em.21dtv.com/songs/60138058.mkv +诱导社乐队-窥视,http://em.21dtv.com/songs/60138057.mkv +许艺娜-就是不想要,http://em.21dtv.com/songs/60138056.mkv +许歌淳一-让爱成书,http://em.21dtv.com/songs/60138055.mkv +许歌淳一-小小梦想家,http://em.21dtv.com/songs/60138054.mkv +许歌淳一-哦老爸,http://em.21dtv.com/songs/60138053.mkv +许歌淳一-TFBOYS,http://em.21dtv.com/songs/60138052.mkv +许明杰-超完美情人,http://em.21dtv.com/songs/60138051.mkv +许廷铿+王嘉仪-根,http://em.21dtv.com/songs/60138050.mkv +许先-家乡的姑娘真漂亮,http://em.21dtv.com/songs/60138049.mkv +许佳慧+金泽-宽容,http://em.21dtv.com/songs/60138048.mkv +许佳慧-说好一起走,http://em.21dtv.com/songs/60138047.mkv +许佳慧-爱没我想的美,http://em.21dtv.com/songs/60138046.mkv +许佳慧-从未开口的秘密,http://em.21dtv.com/songs/60138045.mkv +许仁杰-寂寞的恋人啊,http://em.21dtv.com/songs/60138044.mkv +许仁杰-别让爱情沉睡了,http://em.21dtv.com/songs/60138043.mkv +[Group] +groupName=十六万歌曲MV等 - 114 +觅雅乐队-父亲的身影,http://em.21dtv.com/songs/60138042.mkv +西域胡杨-我是重庆人,http://em.21dtv.com/songs/60138041.mkv +褚海辰-母亲是中华,http://em.21dtv.com/songs/60138040.mkv +袁鹤-钢铁担当,http://em.21dtv.com/songs/60138039.mkv +袁成杰+戚薇-如果你是天空,http://em.21dtv.com/songs/60138038.mkv +袁天恩-温柔有种,http://em.21dtv.com/songs/60138037.mkv +蜜蜂少女队-梦想日记,http://em.21dtv.com/songs/60138036.mkv +薛之谦+林乐仪-时间煮雨,http://em.21dtv.com/songs/60138035.mkv +薛之谦-一半,http://em.21dtv.com/songs/60138034.mkv +蔡淳云-陪恁作阵行,http://em.21dtv.com/songs/60138033.mkv +蔡淳云-摇摇摇,http://em.21dtv.com/songs/60138032.mkv +蔡淳云-捉袂着你的心,http://em.21dtv.com/songs/60138031.mkv +蔡淳云-伤心的酒杯,http://em.21dtv.com/songs/60138030.mkv +蔡宜达+娄艺潇-南山南 送别,http://em.21dtv.com/songs/60138029.mkv +蔡宜达-蜗牛 You Raise Me Up,http://em.21dtv.com/songs/60138028.mkv +蔡宜达-圣诞结,http://em.21dtv.com/songs/60138027.mkv +蔡佳麟-回,http://em.21dtv.com/songs/60138026.mkv +蔚雨芯-微光,http://em.21dtv.com/songs/60138025.mkv +蓝蜻蜓-蓝蜻蜓,http://em.21dtv.com/songs/60138024.mkv +蒋舟+肖豆豆-爱的名义,http://em.21dtv.com/songs/60138023.mkv +蒋沐函-怀念战友,http://em.21dtv.com/songs/60138022.mkv +蒋婴-贞节牌坊,http://em.21dtv.com/songs/60138021.mkv +董贞-清平闲事,http://em.21dtv.com/songs/60138020.mkv +董贞-东风恨,http://em.21dtv.com/songs/60138019.mkv +董文华-总想走进你心里,http://em.21dtv.com/songs/60138018.mkv +董义-方向,http://em.21dtv.com/songs/60138017.mkv +葛小虎-等,http://em.21dtv.com/songs/60138016.mkv +葛小虎-狂野年代,http://em.21dtv.com/songs/60138015.mkv +菲尔孜娅 木扎帕尔-娃哈哈,http://em.21dtv.com/songs/60138014.mkv +菊梓乔-久别重逢,http://em.21dtv.com/songs/60138013.mkv +莺子-阿依佐拉,http://em.21dtv.com/songs/60138012.mkv +莫日根-我的爱,http://em.21dtv.com/songs/60138011.mkv +莫日根-兄弟难当,http://em.21dtv.com/songs/60138010.mkv +莫少聪-有一天,http://em.21dtv.com/songs/60138009.mkv +草蜢+何洁-我只剩下自己,http://em.21dtv.com/songs/60138008.mkv +范逸臣-大世界小世界,http://em.21dtv.com/songs/60138007.mkv +苏西-远方的阿哥你好吗,http://em.21dtv.com/songs/60138006.mkv +苏莞雯-白鲸星,http://em.21dtv.com/songs/60138005.mkv +苏美娜-我不哭,http://em.21dtv.com/songs/60138004.mkv +苏灿-假如当时,http://em.21dtv.com/songs/60138003.mkv +苏暖晴-流浪在,http://em.21dtv.com/songs/60138002.mkv +苏勒亚其其格-勒勒车上唱情歌,http://em.21dtv.com/songs/60138001.mkv +苏佩卿-我们都是寂寞的,http://em.21dtv.com/songs/60138000.mkv +苏伟-送你一件蒙古袍,http://em.21dtv.com/songs/60137999.mkv +花僮-爱逃,http://em.21dtv.com/songs/60137998.mkv +艾莎娜-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60137997.mkv +艾爰爰-那年那月,http://em.21dtv.com/songs/60137996.mkv +艾正正+自然主义-你是我心中永远的唯一,http://em.21dtv.com/songs/60137995.mkv +艾丽雅-塔莉娅,http://em.21dtv.com/songs/60137994.mkv +艾丽雅-只要和你,http://em.21dtv.com/songs/60137993.mkv +艾丽雅-优先级,http://em.21dtv.com/songs/60137992.mkv +艾丽娅琪琪格-蒙古词典,http://em.21dtv.com/songs/60137991.mkv +艺龙-老爸和老妈,http://em.21dtv.com/songs/60137990.mkv +舞法天女朵法拉-朵蜜之歌,http://em.21dtv.com/songs/60137989.mkv +臻言-杜鹃泪,http://em.21dtv.com/songs/60137988.mkv +自由发挥-3D舞力全失,http://em.21dtv.com/songs/60137987.mkv +脆乐团-麻辣汤头,http://em.21dtv.com/songs/60137986.mkv +胡金龙-乡村有情,http://em.21dtv.com/songs/60137985.mkv +胡苗-万丈高楼平地起,http://em.21dtv.com/songs/60137984.mkv +胡杨林-嫁给我,http://em.21dtv.com/songs/60137983.mkv +胡大亮-玩伴,http://em.21dtv.com/songs/60137982.mkv +胡夏-夏至未至,http://em.21dtv.com/songs/60137981.mkv +胡军+刘波儿-小情人,http://em.21dtv.com/songs/60137980.mkv +肖潇-红颜怨,http://em.21dtv.com/songs/60137979.mkv +肖洋-父爱如山,http://em.21dtv.com/songs/60137978.mkv +肖家永-好兄弟,http://em.21dtv.com/songs/60137977.mkv +肖丫丫-假如有一天,http://em.21dtv.com/songs/60137976.mkv +老鬼团-在爱里臣服,http://em.21dtv.com/songs/60137975.mkv +翰林-街角,http://em.21dtv.com/songs/60137974.mkv +翁立友+黄思婷-侵门踏户,http://em.21dtv.com/songs/60137973.mkv +翁立友-幸福的等待,http://em.21dtv.com/songs/60137972.mkv +群星-Gang Up,http://em.21dtv.com/songs/60137971.mkv +美希+龚浩宇-你就不要想起我,http://em.21dtv.com/songs/60137970.mkv +罗爱玲-去看庐山夏天,http://em.21dtv.com/songs/60137969.mkv +罗力威-古董车,http://em.21dtv.com/songs/60137968.mkv +罗军-故乡遥,http://em.21dtv.com/songs/60137967.mkv +罗俊-那些承诺,http://em.21dtv.com/songs/60137966.mkv +罗俊-易朵咪彩,http://em.21dtv.com/songs/60137965.mkv +细哥细妹-恋歌,http://em.21dtv.com/songs/60137964.mkv +练练-野百合也有春天,http://em.21dtv.com/songs/60137963.mkv +纳兰珠儿-越来越美,http://em.21dtv.com/songs/60137962.mkv +纳兰珠儿-我的快乐就是想你,http://em.21dtv.com/songs/60137961.mkv +红陌-有你的日子好幸福,http://em.21dtv.com/songs/60137960.mkv +红陌-人生不能没有爱,http://em.21dtv.com/songs/60137959.mkv +红秀-秋天的最后一片落叶,http://em.21dtv.com/songs/60137958.mkv +糖果树-青春告白,http://em.21dtv.com/songs/60137957.mkv +糖果树-最美的遗忘,http://em.21dtv.com/songs/60137956.mkv +糖妹-阳光小姐,http://em.21dtv.com/songs/60137955.mkv +箱子君+刘增瞳-多久才能够忘记,http://em.21dtv.com/songs/60137954.mkv +箱子君-戏剧上演,http://em.21dtv.com/songs/60137953.mkv +箱子君-失眠夜,http://em.21dtv.com/songs/60137952.mkv +笨宝-幸运的笨宝,http://em.21dtv.com/songs/60137951.mkv +符泷飞-YOU're MY EVERYTHING,http://em.21dtv.com/songs/60137950.mkv +笑天-知己难求,http://em.21dtv.com/songs/60137949.mkv +童可可-天灰灰,http://em.21dtv.com/songs/60137948.mkv +童丽-小河淌水,http://em.21dtv.com/songs/60137947.mkv +章古+黄柏霖+梁韵希-我想,http://em.21dtv.com/songs/60137946.mkv +程璧-船帆,http://em.21dtv.com/songs/60137945.mkv +程恢弘-有腔有调,http://em.21dtv.com/songs/60137944.mkv +程恢弘-Missing Soul,http://em.21dtv.com/songs/60137943.mkv +程响-不辞而别,http://em.21dtv.com/songs/60137942.mkv +秦艺博-痛也是醉,http://em.21dtv.com/songs/60137941.mkv +秦奋-醉霓裳,http://em.21dtv.com/songs/60137940.mkv +祝美美-下雨天,http://em.21dtv.com/songs/60137939.mkv +祖海-灵渠葡萄水灵灵,http://em.21dtv.com/songs/60137938.mkv +祁隆-人生路,http://em.21dtv.com/songs/60137937.mkv +盛希-载歌载舞,http://em.21dtv.com/songs/60137936.mkv +盛希-党旗更鲜艳,http://em.21dtv.com/songs/60137935.mkv +百里屠伕-只怪我是金牛座,http://em.21dtv.com/songs/60137934.mkv +白百合-难道,http://em.21dtv.com/songs/60137933.mkv +白玛多吉-献给阿妈的歌,http://em.21dtv.com/songs/60137932.mkv +白娥娟+The Barberettes-Sweet lies,http://em.21dtv.com/songs/60137931.mkv +白举纲-走了,http://em.21dtv.com/songs/60137930.mkv +白一凡-擦肩的恋人,http://em.21dtv.com/songs/60137929.mkv +田万良-请勿缺席,http://em.21dtv.com/songs/60137928.mkv +玖壹壹-大显神威,http://em.21dtv.com/songs/60137927.mkv +王鸿翔-梦北京,http://em.21dtv.com/songs/60137926.mkv +王馨+刘润泽-嫁给我吧,http://em.21dtv.com/songs/60137925.mkv +王馨-只要你幸福就好,http://em.21dtv.com/songs/60137924.mkv +王青-我,http://em.21dtv.com/songs/60137923.mkv +王铮亮-谢谢你 冬的雪,http://em.21dtv.com/songs/60137922.mkv +王郑欣-陪你成长,http://em.21dtv.com/songs/60137921.mkv +王郑欣-我是网红,http://em.21dtv.com/songs/60137920.mkv +王觉-桃树林下又见兰草初叶,http://em.21dtv.com/songs/60137919.mkv +王莉+汤非-不忘初心,http://em.21dtv.com/songs/60137918.mkv +王聆燕-蒙古高原,http://em.21dtv.com/songs/60137917.mkv +王聆燕-百姓是父母,http://em.21dtv.com/songs/60137916.mkv +王聆燕-日照海天,http://em.21dtv.com/songs/60137915.mkv +王聆燕-好难忘,http://em.21dtv.com/songs/60137914.mkv +王维哲-航海体育场,http://em.21dtv.com/songs/60137913.mkv +王紫菲-铁血丹心,http://em.21dtv.com/songs/60137912.mkv +王紫菲-知道不知道,http://em.21dtv.com/songs/60137911.mkv +王紫菲-独上西楼,http://em.21dtv.com/songs/60137910.mkv +王紫菲-牵手,http://em.21dtv.com/songs/60137909.mkv +王紫菲-爱的箴言,http://em.21dtv.com/songs/60137908.mkv +王紫菲-爱情鸟,http://em.21dtv.com/songs/60137907.mkv +王紫菲-烛光里的妈妈,http://em.21dtv.com/songs/60137906.mkv +王紫菲-潇洒走一回,http://em.21dtv.com/songs/60137905.mkv +王紫菲-晚秋,http://em.21dtv.com/songs/60137904.mkv +王紫菲-昨夜星辰,http://em.21dtv.com/songs/60137903.mkv +王紫菲-我是中国人,http://em.21dtv.com/songs/60137902.mkv +王紫菲-我和我的祖国,http://em.21dtv.com/songs/60137901.mkv +王紫菲-往事只能回味,http://em.21dtv.com/songs/60137900.mkv +王紫菲-带我到山顶,http://em.21dtv.com/songs/60137899.mkv +王紫菲-外婆的澎湖湾,http://em.21dtv.com/songs/60137898.mkv +王紫菲-在水一方,http://em.21dtv.com/songs/60137897.mkv +王紫菲-中国好姑娘,http://em.21dtv.com/songs/60137896.mkv +王相周-五十六种颜色,http://em.21dtv.com/songs/60137895.mkv +王璐-圆圆的月弯弯的河,http://em.21dtv.com/songs/60137894.mkv +王琦月-数说时代,http://em.21dtv.com/songs/60137893.mkv +王珞丹-香格里拉,http://em.21dtv.com/songs/60137892.mkv +王浩信+谭嘉仪-陪着你走,http://em.21dtv.com/songs/60137891.mkv +王洋-我叫王洋,http://em.21dtv.com/songs/60137890.mkv +王法英-相思花黄,http://em.21dtv.com/songs/60137889.mkv +王杰+黄绮珊-爱得太多,http://em.21dtv.com/songs/60137888.mkv +王杰-英雄泪,http://em.21dtv.com/songs/60137887.mkv +王杰-安妮,http://em.21dtv.com/songs/60137886.mkv +王杰-她的背影,http://em.21dtv.com/songs/60137885.mkv +王杰-为了爱梦一生,http://em.21dtv.com/songs/60137884.mkv +王杰-不浪漫罪名,http://em.21dtv.com/songs/60137883.mkv +王易阳-那年花开月正圆,http://em.21dtv.com/songs/60137882.mkv +王易阳-花开月正圆,http://em.21dtv.com/songs/60137881.mkv +王旭刚-也许哭一场痛会少一点,http://em.21dtv.com/songs/60137880.mkv +王强+孟影-寂寞的天相思的雨,http://em.21dtv.com/songs/60137879.mkv +王康玲+王曼玲-远方的客人请你留下来,http://em.21dtv.com/songs/60137878.mkv +王峰峰-我的姑娘,http://em.21dtv.com/songs/60137877.mkv +王小栋-你这样如雨如画如水的女人,http://em.21dtv.com/songs/60137876.mkv +王小唯-妈妈宝贝,http://em.21dtv.com/songs/60137875.mkv +王宏涛-你答应过我不会再和他联系,http://em.21dtv.com/songs/60137874.mkv +王宏伟-梦中的格桑花,http://em.21dtv.com/songs/60137873.mkv +王宏伟-故乡有话告诉你,http://em.21dtv.com/songs/60137872.mkv +王如华-大埔姑娘,http://em.21dtv.com/songs/60137871.mkv +王凯平-一轮青春要过了,http://em.21dtv.com/songs/60137870.mkv +王佳佳-你在身边,http://em.21dtv.com/songs/60137869.mkv +王中平-向天要一点爱,http://em.21dtv.com/songs/60137868.mkv +王不火-我干杯你随意,http://em.21dtv.com/songs/60137867.mkv +特曼+玄觞-刀剑无梦,http://em.21dtv.com/songs/60137866.mkv +牛骏峰-暗算,http://em.21dtv.com/songs/60137865.mkv +牛歌+小草-相伴一生,http://em.21dtv.com/songs/60137864.mkv +牙牙乐-限量版的你,http://em.21dtv.com/songs/60137863.mkv +熊翎好-梦中的小狗,http://em.21dtv.com/songs/60137862.mkv +熊梓淇-战火荒烟,http://em.21dtv.com/songs/60137861.mkv +熊志鹏+郑杰-怎么办,http://em.21dtv.com/songs/60137860.mkv +熊天平+曹轩宾-I Wish,http://em.21dtv.com/songs/60137859.mkv +热娜+云飞-天边,http://em.21dtv.com/songs/60137858.mkv +炫风组合-全民时尚,http://em.21dtv.com/songs/60137857.mkv +火星电台-Zoo,http://em.21dtv.com/songs/60137856.mkv +火山-兄弟一辈子,http://em.21dtv.com/songs/60137855.mkv +潘龙江-青春校园民谣,http://em.21dtv.com/songs/60137854.mkv +潘柯夫-怒放的豆芽,http://em.21dtv.com/songs/60137853.mkv +潘成-动次哒次,http://em.21dtv.com/songs/60137852.mkv +潘宝新-同路陌路,http://em.21dtv.com/songs/60137851.mkv +满汉全席-前男友的一百种死法,http://em.21dtv.com/songs/60137850.mkv +滕歆-善的赞歌,http://em.21dtv.com/songs/60137849.mkv +游喧-想爱就爱,http://em.21dtv.com/songs/60137848.mkv +涓子-我的心已破碎,http://em.21dtv.com/songs/60137847.mkv +海燕-江南女子,http://em.21dtv.com/songs/60137846.mkv +海涛-偷偷做情人,http://em.21dtv.com/songs/60137845.mkv +海华-极速心跳,http://em.21dtv.com/songs/60137844.mkv +浅笑-杜鹃泪,http://em.21dtv.com/songs/60137843.mkv +洪学文-这一路上,http://em.21dtv.com/songs/60137842.mkv +泰民-さよならひとり,http://em.21dtv.com/songs/60137841.mkv +泰欥+金世正-喜欢 不喜欢,http://em.21dtv.com/songs/60137840.mkv +法兰黛乐团+李英宏-该死的冷战,http://em.21dtv.com/songs/60137839.mkv +法兰黛乐团-我只是你的爱人,http://em.21dtv.com/songs/60137838.mkv +沙靖杰-其实还爱你,http://em.21dtv.com/songs/60137837.mkv +沈建豪-甘是我,http://em.21dtv.com/songs/60137836.mkv +沈建豪-注定,http://em.21dtv.com/songs/60137835.mkv +沈建豪-梦中雨,http://em.21dtv.com/songs/60137834.mkv +沈建豪-最后才知影,http://em.21dtv.com/songs/60137833.mkv +沈建豪-感谢,http://em.21dtv.com/songs/60137832.mkv +沈建豪-心痛,http://em.21dtv.com/songs/60137831.mkv +沈剑宇-不要怕,http://em.21dtv.com/songs/60137830.mkv +汪苏泷-那个男孩,http://em.21dtv.com/songs/60137829.mkv +汪苏泷-未来告白,http://em.21dtv.com/songs/60137828.mkv +汪苏泷-心乱飞,http://em.21dtv.com/songs/60137827.mkv +汪苏泷-关于你,http://em.21dtv.com/songs/60137826.mkv +汪东城-英雄也会流泪,http://em.21dtv.com/songs/60137825.mkv +汤俊-巫山云雨,http://em.21dtv.com/songs/60137824.mkv +江美琪-没有不可能,http://em.21dtv.com/songs/60137823.mkv +江珊-Moon River Dancing Queen,http://em.21dtv.com/songs/60137822.mkv +江淑娜-烟雨蒙蒙,http://em.21dtv.com/songs/60137821.mkv +江俊翰+安苡葳-落漆,http://em.21dtv.com/songs/60137820.mkv +毛泽少-天问,http://em.21dtv.com/songs/60137819.mkv +毕晓鑫+袁娅维-阿楚姑娘,http://em.21dtv.com/songs/60137818.mkv +毕晓鑫+孙守靖+董竞群+袁娅维-不同凡想,http://em.21dtv.com/songs/60137817.mkv +殷秀梅-无言,http://em.21dtv.com/songs/60137816.mkv +段莉莉-春天里藏着的回忆,http://em.21dtv.com/songs/60137815.mkv +正能量组合-赤诚,http://em.21dtv.com/songs/60137814.mkv +正能量组合-沈阳啊 沈阳,http://em.21dtv.com/songs/60137813.mkv +欧阳朵-爱情是什么,http://em.21dtv.com/songs/60137812.mkv +欧阳朵-一天的回忆,http://em.21dtv.com/songs/60137811.mkv +欧阳尚尚-第一次喝醉,http://em.21dtv.com/songs/60137810.mkv +欧宇轩-梦出发,http://em.21dtv.com/songs/60137809.mkv +梦苇-礼仪东方,http://em.21dtv.com/songs/60137808.mkv +梦彤-太湖东岸升起的明珠,http://em.21dtv.com/songs/60137807.mkv +梦之旅-衷心赞美,http://em.21dtv.com/songs/60137806.mkv +梅花雪-来吧朋友,http://em.21dtv.com/songs/60137805.mkv +梁理凯+黄薏儒-如画,http://em.21dtv.com/songs/60137804.mkv +梁咏琪+吕佳思-偏见,http://em.21dtv.com/songs/60137803.mkv +梁博+陶孟童+高誉容+肖和东-男孩,http://em.21dtv.com/songs/60137802.mkv +梁博+肖和东-变了,http://em.21dtv.com/songs/60137801.mkv +桃子-男人的奢侈品,http://em.21dtv.com/songs/60137800.mkv +柳佳佳-做一个大女人,http://em.21dtv.com/songs/60137799.mkv +枫舞+相容-走失的爱情,http://em.21dtv.com/songs/60137798.mkv +枫舞+晓晓-碎心石,http://em.21dtv.com/songs/60137797.mkv +枫舞+南山娃娃-情已断泪已流,http://em.21dtv.com/songs/60137796.mkv +枫舞-爱一个人有什么罪,http://em.21dtv.com/songs/60137795.mkv +果缘-龙的脉搏,http://em.21dtv.com/songs/60137794.mkv +果缘-我亲爱的妈妈,http://em.21dtv.com/songs/60137793.mkv +果缘-因为有爱因为有你,http://em.21dtv.com/songs/60137792.mkv +果缘-一首茉莉花,http://em.21dtv.com/songs/60137791.mkv +林风+木偶-烟花三月下扬州,http://em.21dtv.com/songs/60137790.mkv +林闻恩-看不见的存在,http://em.21dtv.com/songs/60137789.mkv +林鑫-快乐我自有一套,http://em.21dtv.com/songs/60137788.mkv +林蔷-我的爱请别走,http://em.21dtv.com/songs/60137787.mkv +林秉谆-有我在,http://em.21dtv.com/songs/60137786.mkv +林秉谆-初心,http://em.21dtv.com/songs/60137785.mkv +林琳-春天的故事,http://em.21dtv.com/songs/60137784.mkv +林欣彤-奇怪,http://em.21dtv.com/songs/60137783.mkv +林欣彤-三生有幸,http://em.21dtv.com/songs/60137782.mkv +林明祯-Tou,http://em.21dtv.com/songs/60137781.mkv +林志炫+杜丽莎-拆穿,http://em.21dtv.com/songs/60137780.mkv +林志炫-52赫兹 我爱你,http://em.21dtv.com/songs/60137779.mkv +林孟宗+陈怡婷-今生的牵挂,http://em.21dtv.com/songs/60137778.mkv +林孟宗+楼心潼-家,http://em.21dtv.com/songs/60137777.mkv +林孟宗-真爱歹收回,http://em.21dtv.com/songs/60137776.mkv +林孟宗-相思伴月,http://em.21dtv.com/songs/60137775.mkv +林子祥+何洁-决定,http://em.21dtv.com/songs/60137774.mkv +林健辉+王博文-乌龟,http://em.21dtv.com/songs/60137773.mkv +林俊杰-超越无限,http://em.21dtv.com/songs/60137772.mkv +林二汶+岑宁儿-银发白,http://em.21dtv.com/songs/60137771.mkv +林二汶-玫瑰奴隶,http://em.21dtv.com/songs/60137770.mkv +林为音-爱若心伤,http://em.21dtv.com/songs/60137769.mkv +杰歌-别用我的爱填补你的寂寞,http://em.21dtv.com/songs/60137768.mkv +杰歌-亲爱的别哭,http://em.21dtv.com/songs/60137767.mkv +杰斌-盛夏的光年,http://em.21dtv.com/songs/60137766.mkv +杰文-放开你等于放过我,http://em.21dtv.com/songs/60137765.mkv +杨迪+卢正雨-他还只是个孩子,http://em.21dtv.com/songs/60137764.mkv +杨西音子-梦赤水,http://em.21dtv.com/songs/60137763.mkv +杨玲龙+徐莞崎-给我杯酒,http://em.21dtv.com/songs/60137762.mkv +杨玲龙-男人的心酸,http://em.21dtv.com/songs/60137761.mkv +杨玲龙-斑马,http://em.21dtv.com/songs/60137760.mkv +杨森-说一个理由,http://em.21dtv.com/songs/60137759.mkv +杨梓文祺-那么近那么远,http://em.21dtv.com/songs/60137758.mkv +杨梓文祺-你真是笨死了,http://em.21dtv.com/songs/60137757.mkv +杨栋梁+陈羽涵-安徒生的小说,http://em.21dtv.com/songs/60137756.mkv +杨惠麟-感谢有你,http://em.21dtv.com/songs/60137755.mkv +杨志广-三沙你是我一生的牵挂,http://em.21dtv.com/songs/60137754.mkv +杨平-心里装着百姓,http://em.21dtv.com/songs/60137753.mkv +杨平-一带一路天地共舞,http://em.21dtv.com/songs/60137752.mkv +杨宗纬-天龙八部,http://em.21dtv.com/songs/60137751.mkv +杨宁+杨平-牡丹花与放羊娃,http://em.21dtv.com/songs/60137750.mkv +杨可-美丽的翡翠湾,http://em.21dtv.com/songs/60137749.mkv +杨卿俪-相约雷锋城,http://em.21dtv.com/songs/60137748.mkv +杨卿俪-春的消息,http://em.21dtv.com/songs/60137747.mkv +杨卿俪-我会在你身边幸福歌唱,http://em.21dtv.com/songs/60137746.mkv +杨卿俪-心情美丽,http://em.21dtv.com/songs/60137745.mkv +杨卿俪-幸福赞歌,http://em.21dtv.com/songs/60137744.mkv +杨卿俪-天之大,http://em.21dtv.com/songs/60137743.mkv +杨千嬅+叶雪如+周怡+吴昊煜-大城大事,http://em.21dtv.com/songs/60137742.mkv +杨千嬅+叶雪如-可惜我是水瓶座,http://em.21dtv.com/songs/60137741.mkv +杜博-这一刻,http://em.21dtv.com/songs/60137740.mkv +杜丽莎-爱的根源,http://em.21dtv.com/songs/60137739.mkv +杜丽莎-拆穿,http://em.21dtv.com/songs/60137738.mkv +李让-第一缕阳光,http://em.21dtv.com/songs/60137737.mkv +李让-我的凝望,http://em.21dtv.com/songs/60137736.mkv +李蕙敏-再度,http://em.21dtv.com/songs/60137735.mkv +李荣浩-嗯,http://em.21dtv.com/songs/60137734.mkv +李艾+徐洁儿-非常突然,http://em.21dtv.com/songs/60137733.mkv +李翊君+江宏恩-放心,http://em.21dtv.com/songs/60137732.mkv +李翊君-自在,http://em.21dtv.com/songs/60137731.mkv +李翊君-背叛无所谓,http://em.21dtv.com/songs/60137730.mkv +李翊君-爱情路口,http://em.21dtv.com/songs/60137729.mkv +李翊君-倒数,http://em.21dtv.com/songs/60137728.mkv +李美璇-断发情歌,http://em.21dtv.com/songs/60137727.mkv +李纲锋-不要用你的眼泪安慰我,http://em.21dtv.com/songs/60137726.mkv +李红-水墨丹青一世情,http://em.21dtv.com/songs/60137725.mkv +李琪-元气少女,http://em.21dtv.com/songs/60137724.mkv +李琦-海岸线,http://em.21dtv.com/songs/60137723.mkv +李琦-冬日熊,http://em.21dtv.com/songs/60137722.mkv +李玉刚-长安故事,http://em.21dtv.com/songs/60137721.mkv +李焕然-我们的时代,http://em.21dtv.com/songs/60137720.mkv +李泫憙-Catnip,http://em.21dtv.com/songs/60137719.mkv +李沐子-东方红,http://em.21dtv.com/songs/60137718.mkv +李晨-不破不立,http://em.21dtv.com/songs/60137717.mkv +李映熹-One For Da Money,http://em.21dtv.com/songs/60137716.mkv +李念-放歌千山外,http://em.21dtv.com/songs/60137715.mkv +李志敏-爱的俘虏,http://em.21dtv.com/songs/60137714.mkv +李德林+朱晓春+严雨丽+黄俊-撸起袖子加油干,http://em.21dtv.com/songs/60137713.mkv +李庆芳-立春歌,http://em.21dtv.com/songs/60137712.mkv +李庆芳-江南实在好,http://em.21dtv.com/songs/60137711.mkv +李庆芳-大运河我可爱的母亲河,http://em.21dtv.com/songs/60137710.mkv +李小影-等你诉情怀,http://em.21dtv.com/songs/60137709.mkv +李小影-没事洗洗早点睡,http://em.21dtv.com/songs/60137708.mkv +李小影-旧巢,http://em.21dtv.com/songs/60137707.mkv +李小影-寂寞的时候想起我,http://em.21dtv.com/songs/60137706.mkv +李小影-后会有期,http://em.21dtv.com/songs/60137705.mkv +李宣榕-101滴点滴,http://em.21dtv.com/songs/60137704.mkv +李宗璞-黑猫警长,http://em.21dtv.com/songs/60137703.mkv +李宏毅+李明霖-我想见到你,http://em.21dtv.com/songs/60137702.mkv +李宇春-春风十里[演唱会],http://em.21dtv.com/songs/60137701.mkv +李天平-陪伴你的每天今生不再孤单,http://em.21dtv.com/songs/60137700.mkv +李千娜-不曾回来过,http://em.21dtv.com/songs/60137699.mkv +李克勤+容祖儿-时间的错,http://em.21dtv.com/songs/60137698.mkv +李克勤-偶尔平凡,http://em.21dtv.com/songs/60137697.mkv +李健-矜持,http://em.21dtv.com/songs/60137696.mkv +李佳乐-等你嫁给我,http://em.21dtv.com/songs/60137695.mkv +李佑晨-交给国家,http://em.21dtv.com/songs/60137694.mkv +朱泓宇-Cat Girl,http://em.21dtv.com/songs/60137693.mkv +朱敏+李天平-穷开心,http://em.21dtv.com/songs/60137692.mkv +朱其民-好想听你说,http://em.21dtv.com/songs/60137691.mkv +朱兴东-孤独感,http://em.21dtv.com/songs/60137690.mkv +朱兴东-你会怎么回忆我们,http://em.21dtv.com/songs/60137689.mkv +朱主爱(四叶草)-不老的传说,http://em.21dtv.com/songs/60137688.mkv +望海高歌-相偎相依到永远,http://em.21dtv.com/songs/60137687.mkv +望海高歌-有你的时光就是最美的歌,http://em.21dtv.com/songs/60137686.mkv +望海高歌-今生一缕相思情,http://em.21dtv.com/songs/60137685.mkv +望海高歌-今夜的风好凉,http://em.21dtv.com/songs/60137684.mkv +曾沛慈-偏爱,http://em.21dtv.com/songs/60137683.mkv +曾春年-继续演戏,http://em.21dtv.com/songs/60137682.mkv +曹轩宾-I Wish,http://em.21dtv.com/songs/60137681.mkv +曹格-一念成魔,http://em.21dtv.com/songs/60137680.mkv +曹敏-我中了你的毒,http://em.21dtv.com/songs/60137679.mkv +曲调悠扬-红颜怨,http://em.21dtv.com/songs/60137678.mkv +曲调悠扬-梅泪凝香,http://em.21dtv.com/songs/60137677.mkv +暴林-跟我一起摇摆,http://em.21dtv.com/songs/60137676.mkv +暴林-爱情已走远,http://em.21dtv.com/songs/60137675.mkv +晨熙-别在我的世界路过,http://em.21dtv.com/songs/60137674.mkv +晨熙-不再为你流泪,http://em.21dtv.com/songs/60137673.mkv +晓枫-古宇湖,http://em.21dtv.com/songs/60137672.mkv +晓月-金宏之光,http://em.21dtv.com/songs/60137671.mkv +晓月-无尽相思泪,http://em.21dtv.com/songs/60137670.mkv +晓月-孤枕难眠,http://em.21dtv.com/songs/60137669.mkv +晓晓+枫舞-爱是寂寞的外衣,http://em.21dtv.com/songs/60137668.mkv +晓依-让我为你唱情歌,http://em.21dtv.com/songs/60137667.mkv +晓依-痴心女人,http://em.21dtv.com/songs/60137666.mkv +晓依-在网络认识你,http://em.21dtv.com/songs/60137665.mkv +星月组合-十指紧扣心相守,http://em.21dtv.com/songs/60137664.mkv +易琴-咖喱咖喱,http://em.21dtv.com/songs/60137663.mkv +明望组合-仰望,http://em.21dtv.com/songs/60137662.mkv +时代兄弟-回家路上,http://em.21dtv.com/songs/60137661.mkv +方颖昕-向阳花,http://em.21dtv.com/songs/60137660.mkv +方瑞娥-痴情了憨工,http://em.21dtv.com/songs/60137659.mkv +方丈-燃情春秋,http://em.21dtv.com/songs/60137658.mkv +新裤子乐队-弹着吉他的少年,http://em.21dtv.com/songs/60137657.mkv +新裤子乐队-Bye Bye Disco,http://em.21dtv.com/songs/60137656.mkv +新街口组合+RJ-关你屁事,http://em.21dtv.com/songs/60137655.mkv +新蛋糕乐队-燕雀的理想,http://em.21dtv.com/songs/60137654.mkv +文斗-谢谢你祝我生日快乐,http://em.21dtv.com/songs/60137653.mkv +户中之-尽管,http://em.21dtv.com/songs/60137652.mkv +戴荃-大护法,http://em.21dtv.com/songs/60137651.mkv +戴佩妮+郁可唯-水中央,http://em.21dtv.com/songs/60137650.mkv +戚宝-一个人的江湖,http://em.21dtv.com/songs/60137649.mkv +成铭-除了你我谁都不要,http://em.21dtv.com/songs/60137648.mkv +成铭-梨花泪,http://em.21dtv.com/songs/60137647.mkv +成铭-有一种爱叫做放弃,http://em.21dtv.com/songs/60137646.mkv +成铭-感恩爸妈,http://em.21dtv.com/songs/60137645.mkv +成林江措-天边的情歌,http://em.21dtv.com/songs/60137644.mkv +思卫-幸福的模样,http://em.21dtv.com/songs/60137643.mkv +思予-女人花开,http://em.21dtv.com/songs/60137642.mkv +思予-多情的萨日朗,http://em.21dtv.com/songs/60137641.mkv +思予-国色天香,http://em.21dtv.com/songs/60137640.mkv +思予-一路有你,http://em.21dtv.com/songs/60137639.mkv +忢詍-就是这草原,http://em.21dtv.com/songs/60137638.mkv +志王-女孩的心,http://em.21dtv.com/songs/60137637.mkv +徐飞-知己,http://em.21dtv.com/songs/60137636.mkv +徐飞-旅途人生,http://em.21dtv.com/songs/60137635.mkv +徐贝涵-我爱你中国,http://em.21dtv.com/songs/60137634.mkv +徐蕾斯佳-冬日恋歌,http://em.21dtv.com/songs/60137633.mkv +徐海俏-南下,http://em.21dtv.com/songs/60137632.mkv +徐海乔-侠客行,http://em.21dtv.com/songs/60137631.mkv +徐浩-真的好吗,http://em.21dtv.com/songs/60137630.mkv +徐峻豪-忠诚眷属,http://em.21dtv.com/songs/60137629.mkv +徐子超+吕佳思+梁咏琪+王思嘉-短发,http://em.21dtv.com/songs/60137628.mkv +徐婧-陪你做梦的女人歌,http://em.21dtv.com/songs/60137627.mkv +徐大乐-长安忆,http://em.21dtv.com/songs/60137626.mkv +徐大乐-奎妮的情歌,http://em.21dtv.com/songs/60137625.mkv +徐大乐-一个人的朝圣,http://em.21dtv.com/songs/60137624.mkv +徐嘉苇-喵星人与熊孩子,http://em.21dtv.com/songs/60137623.mkv +徐千惠-江南桂花香,http://em.21dtv.com/songs/60137622.mkv +徐俊-大侠,http://em.21dtv.com/songs/60137621.mkv +徐佳莹+金志文-一样的月光,http://em.21dtv.com/songs/60137620.mkv +徐佳莹-最初的记忆,http://em.21dtv.com/songs/60137619.mkv +彭靖惠-美好时光,http://em.21dtv.com/songs/60137618.mkv +彭进成-诚实,http://em.21dtv.com/songs/60137617.mkv +彭运铝-我不是大虾,http://em.21dtv.com/songs/60137616.mkv +彭清-一面一念,http://em.21dtv.com/songs/60137615.mkv +彭佳慧+余超颖+赵宥乔+郭琛-走在红毯那一天,http://em.21dtv.com/songs/60137614.mkv +彭佳慧+余超颖-大龄女子,http://em.21dtv.com/songs/60137613.mkv +彭佳慧-梦的声音,http://em.21dtv.com/songs/60137612.mkv +彭丽嘉-爱情过过招,http://em.21dtv.com/songs/60137611.mkv +张非艳-我要好好爱一回,http://em.21dtv.com/songs/60137610.mkv +张靓颖+李秉成+王艺陶+卢昶宇-画心,http://em.21dtv.com/songs/60137609.mkv +张靓颖+李秉成-终于等到你,http://em.21dtv.com/songs/60137608.mkv +张靓颖-给不起的爱,http://em.21dtv.com/songs/60137607.mkv +张鑫怡-妈妈留给我一首歌,http://em.21dtv.com/songs/60137606.mkv +张赫宣-暗火,http://em.21dtv.com/songs/60137605.mkv +张蔷-雪人,http://em.21dtv.com/songs/60137604.mkv +张蔷-北京女孩,http://em.21dtv.com/songs/60137603.mkv +张葛亮-不明不白,http://em.21dtv.com/songs/60137602.mkv +张胜淼-爱都给你,http://em.21dtv.com/songs/60137601.mkv +张继聪+白只-双截龙,http://em.21dtv.com/songs/60137600.mkv +张简君伟-不小心,http://em.21dtv.com/songs/60137599.mkv +张碧晨+赵丽颖-望,http://em.21dtv.com/songs/60137598.mkv +张碧晨+杜海涛-凉凉,http://em.21dtv.com/songs/60137597.mkv +张璐璐-氧气,http://em.21dtv.com/songs/60137596.mkv +张爱玛-蜗牛与黄鹂鸟,http://em.21dtv.com/songs/60137595.mkv +张汝柯+赵肖宇-看看世界有多大,http://em.21dtv.com/songs/60137594.mkv +张杰+X Ambassadors-Torches,http://em.21dtv.com/songs/60137593.mkv +张晶晶-我们的生活甜得像糖,http://em.21dtv.com/songs/60137592.mkv +张晓旭-湖心,http://em.21dtv.com/songs/60137591.mkv +张晏端-非我不行,http://em.21dtv.com/songs/60137590.mkv +张斯然-玫瑰迷惑,http://em.21dtv.com/songs/60137589.mkv +张承-岛,http://em.21dtv.com/songs/60137588.mkv +张德力-母校我为你祝福,http://em.21dtv.com/songs/60137587.mkv +张德力-心有真情意,http://em.21dtv.com/songs/60137586.mkv +张平-我最爱的你,http://em.21dtv.com/songs/60137585.mkv +张学友-停格,http://em.21dtv.com/songs/60137584.mkv +张地-聊城故事,http://em.21dtv.com/songs/60137583.mkv +张博-绝望的伤,http://em.21dtv.com/songs/60137582.mkv +张北北-心碎的回忆,http://em.21dtv.com/songs/60137581.mkv +张刚-奔跑的力量,http://em.21dtv.com/songs/60137580.mkv +张凤英-李清照,http://em.21dtv.com/songs/60137579.mkv +张信哲+陈沁-白月光,http://em.21dtv.com/songs/60137578.mkv +张信哲+伍思凯-特别的爱给特别的你,http://em.21dtv.com/songs/60137577.mkv +张信哲+伊黎哈穆+闪烁+陈沁-过火,http://em.21dtv.com/songs/60137576.mkv +张信哲-逃生,http://em.21dtv.com/songs/60137575.mkv +张信哲-过火,http://em.21dtv.com/songs/60137574.mkv +张信哲-爱如潮水,http://em.21dtv.com/songs/60137573.mkv +张信哲-别怕我伤心,http://em.21dtv.com/songs/60137572.mkv +张佳彤-奔跑吧兄弟,http://em.21dtv.com/songs/60137571.mkv +张乐彤-长安夜,http://em.21dtv.com/songs/60137570.mkv +张东朗-月亮粑粑,http://em.21dtv.com/songs/60137569.mkv +开心快乐组合-Dreams Fly Higher,http://em.21dtv.com/songs/60137568.mkv +廖梦心-萝莉精灵,http://em.21dtv.com/songs/60137567.mkv +廖昌永-啊中国的土地,http://em.21dtv.com/songs/60137566.mkv +廖士贤-MONEY无够济,http://em.21dtv.com/songs/60137565.mkv +庞龙-面朝大海春暖花开,http://em.21dtv.com/songs/60137564.mkv +庞龙-走着唱着,http://em.21dtv.com/songs/60137563.mkv +庞龙-聊,http://em.21dtv.com/songs/60137562.mkv +庞龙-极光,http://em.21dtv.com/songs/60137561.mkv +庞龙-多了,http://em.21dtv.com/songs/60137560.mkv +庄心妍-行李,http://em.21dtv.com/songs/60137559.mkv +庄心妍-流着泪说分手,http://em.21dtv.com/songs/60137558.mkv +庄心妍-最后一次,http://em.21dtv.com/songs/60137557.mkv +庄心妍-暖暖的依靠,http://em.21dtv.com/songs/60137556.mkv +庄心妍-我不相信,http://em.21dtv.com/songs/60137555.mkv +庄心妍-屋檐下的浪漫,http://em.21dtv.com/songs/60137554.mkv +庄心妍-天眼,http://em.21dtv.com/songs/60137553.mkv +庄心妍-你在哪里,http://em.21dtv.com/songs/60137552.mkv +庄心妍-他,http://em.21dtv.com/songs/60137551.mkv +庄婉婷-在劫难逃,http://em.21dtv.com/songs/60137550.mkv +常艾非-不够,http://em.21dtv.com/songs/60137549.mkv +带泪的鱼-悲伤重播,http://em.21dtv.com/songs/60137548.mkv +帅少-厉害了我的哥,http://em.21dtv.com/songs/60137547.mkv +巴桑拉姆-走出空城走不出想念,http://em.21dtv.com/songs/60137546.mkv +巴桑拉姆-梦中的雪莲花,http://em.21dtv.com/songs/60137545.mkv +巴桑拉姆-放马曲,http://em.21dtv.com/songs/60137544.mkv +巫启贤+王铮亮-谢谢你 冬的雪,http://em.21dtv.com/songs/60137543.mkv +左酷-Baby,http://em.21dtv.com/songs/60137542.mkv +崔子格-来不及对不起,http://em.21dtv.com/songs/60137541.mkv +崔云飞-DJ的歌,http://em.21dtv.com/songs/60137540.mkv +岑碧琪-从头爱过,http://em.21dtv.com/songs/60137539.mkv +岑宁儿-追光者,http://em.21dtv.com/songs/60137538.mkv +山水组合-青青马桑树,http://em.21dtv.com/songs/60137537.mkv +山子华-菩提树下一朵莲,http://em.21dtv.com/songs/60137536.mkv +屈玲琳+王溢-舞会,http://em.21dtv.com/songs/60137535.mkv +屈奕彤-说唱脸谱,http://em.21dtv.com/songs/60137534.mkv +尹子璐-大家一起喜羊羊,http://em.21dtv.com/songs/60137533.mkv +尚文祁-风月笑,http://em.21dtv.com/songs/60137532.mkv +尔萨-五千年,http://em.21dtv.com/songs/60137531.mkv +小老头-我的老父亲,http://em.21dtv.com/songs/60137530.mkv +小沈龙-默默,http://em.21dtv.com/songs/60137529.mkv +小叶子-你是我的动力我的爱,http://em.21dtv.com/songs/60137528.mkv +小凌-输赢,http://em.21dtv.com/songs/60137527.mkv +封亚龙-子洲我的家,http://em.21dtv.com/songs/60137526.mkv +宸靖-这又何苦,http://em.21dtv.com/songs/60137525.mkv +宣子-爱的宣言,http://em.21dtv.com/songs/60137524.mkv +官有韦-不老的爸爸,http://em.21dtv.com/songs/60137523.mkv +宗义博-我们是兄弟,http://em.21dtv.com/songs/60137522.mkv +宋飞-为什么相爱的人不能在一起,http://em.21dtv.com/songs/60137521.mkv +宋靖宇-等风来,http://em.21dtv.com/songs/60137520.mkv +宋靖宇-怎么唱歌,http://em.21dtv.com/songs/60137519.mkv +宋昱锦-天地独尊,http://em.21dtv.com/songs/60137518.mkv +宋孟君-安琪拉的魔法书,http://em.21dtv.com/songs/60137517.mkv +宋向楠-看我中华大地,http://em.21dtv.com/songs/60137516.mkv +宋冬野-郭源潮,http://em.21dtv.com/songs/60137515.mkv +安悦溪-红尘客栈,http://em.21dtv.com/songs/60137514.mkv +安东阳+樊桐舟-万水千山总是爱(HD),http://em.21dtv.com/songs/60137513.mkv +宇宙少女-HAPPY,http://em.21dtv.com/songs/60137512.mkv +宁梦恬-时光,http://em.21dtv.com/songs/60137511.mkv +孟笑-说散就散,http://em.21dtv.com/songs/60137510.mkv +孟笑-你就不要想起我,http://em.21dtv.com/songs/60137509.mkv +孟佳-Who's That Girl 她是谁,http://em.21dtv.com/songs/60137508.mkv +孙露-情人的眼泪,http://em.21dtv.com/songs/60137507.mkv +孙雯雯-珊瑚之恋,http://em.21dtv.com/songs/60137506.mkv +孙雯雯-放不下的牵挂,http://em.21dtv.com/songs/60137505.mkv +孙阳荣-爱情雪,http://em.21dtv.com/songs/60137504.mkv +孙邦楠-酒不醉,http://em.21dtv.com/songs/60137503.mkv +孙豆尔-情歌唱的没有从前那么认真,http://em.21dtv.com/songs/60137502.mkv +孙楠-对你说爱,http://em.21dtv.com/songs/60137501.mkv +孙楠-天香楼,http://em.21dtv.com/songs/60137500.mkv +孙晓磊-也许哭一场痛会少一点,http://em.21dtv.com/songs/60137499.mkv +孙博-带你一起丢手绢,http://em.21dtv.com/songs/60137498.mkv +孙伯纶-给我走,http://em.21dtv.com/songs/60137497.mkv +媛媛-千岛湖,http://em.21dtv.com/songs/60137496.mkv +娅琳-遥望千年,http://em.21dtv.com/songs/60137495.mkv +娅琳-请告诉我他是谁,http://em.21dtv.com/songs/60137494.mkv +娅琳-梦断三生缘,http://em.21dtv.com/songs/60137493.mkv +娅琳-当爱已成空,http://em.21dtv.com/songs/60137492.mkv +娄艺潇-晴天,http://em.21dtv.com/songs/60137491.mkv +娄艺潇-Rumour Has It 爱什么稀罕,http://em.21dtv.com/songs/60137490.mkv +娄艺潇-Don't Cry For Me Argentina let It Go,http://em.21dtv.com/songs/60137489.mkv +威仔+阿夏-不爱又何必纠缠,http://em.21dtv.com/songs/60137488.mkv +姬诗雅-追梦少年,http://em.21dtv.com/songs/60137487.mkv +姜达康-不该回忆,http://em.21dtv.com/songs/60137486.mkv +姜潮-早已心动,http://em.21dtv.com/songs/60137485.mkv +姚乙-叫我怎么办,http://em.21dtv.com/songs/60137484.mkv +妲己-王者荣耀,http://em.21dtv.com/songs/60137483.mkv +好妹妹乐队-给自己的信,http://em.21dtv.com/songs/60137482.mkv +奥杰阿格-我在这里世界在那里,http://em.21dtv.com/songs/60137481.mkv +太极-风中劲草,http://em.21dtv.com/songs/60137480.mkv +太极-别人的歌,http://em.21dtv.com/songs/60137479.mkv +天籁天-带我走,http://em.21dtv.com/songs/60137478.mkv +天籁天-今天特别想你,http://em.21dtv.com/songs/60137477.mkv +天梯乐队-马路天使,http://em.21dtv.com/songs/60137476.mkv +天梯乐队-残酷的温柔,http://em.21dtv.com/songs/60137475.mkv +天梯乐队-拥抱你,http://em.21dtv.com/songs/60137474.mkv +天梯乐队-我真的需要你,http://em.21dtv.com/songs/60137473.mkv +天梯乐队-我很丑 可是我很温柔,http://em.21dtv.com/songs/60137472.mkv +天梯乐队-带不走你的天堂,http://em.21dtv.com/songs/60137471.mkv +天梯乐队-多想你在我身边,http://em.21dtv.com/songs/60137470.mkv +天梯乐队-午后的阳光,http://em.21dtv.com/songs/60137469.mkv +天梯乐队-你知我知,http://em.21dtv.com/songs/60137468.mkv +天梯乐队-你的样子,http://em.21dtv.com/songs/60137467.mkv +天梯乐队-作别秋风,http://em.21dtv.com/songs/60137466.mkv +天梯乐队-Wind Of Change,http://em.21dtv.com/songs/60137465.mkv +天梯乐队-The Show Must Go On,http://em.21dtv.com/songs/60137464.mkv +天梯乐队-The Power Of Love,http://em.21dtv.com/songs/60137463.mkv +天梯乐队-Holiday,http://em.21dtv.com/songs/60137462.mkv +天堂鸟-TAKE ME HIGHER,http://em.21dtv.com/songs/60137461.mkv +大鹏+梁龙-好爸爸坏爸爸,http://em.21dtv.com/songs/60137460.mkv +大航-祖国赞歌,http://em.21dtv.com/songs/60137459.mkv +大航-爱你无人代替,http://em.21dtv.com/songs/60137458.mkv +大航-姑娘嫁给我,http://em.21dtv.com/songs/60137457.mkv +大庆小芳-牵你的手一起老去,http://em.21dtv.com/songs/60137456.mkv +大庆小芳-牛郎织女星,http://em.21dtv.com/songs/60137455.mkv +大宝哥-度母心,http://em.21dtv.com/songs/60137454.mkv +大女孩-亲爱的我在,http://em.21dtv.com/songs/60137453.mkv +大壮-我们不一样,http://em.21dtv.com/songs/60137452.mkv +大喇叭组合-郑州女孩,http://em.21dtv.com/songs/60137451.mkv +夏婉安-领悟,http://em.21dtv.com/songs/60137450.mkv +夏婉安-霜凝,http://em.21dtv.com/songs/60137449.mkv +夏婉安-在一起,http://em.21dtv.com/songs/60137448.mkv +夏天播放-褪变无路,http://em.21dtv.com/songs/60137447.mkv +圣结石+圣嫂DoDo-真的不想嘴,http://em.21dtv.com/songs/60137446.mkv +圣结石-安俪,http://em.21dtv.com/songs/60137445.mkv +嘿羽+于建英-相约梦想,http://em.21dtv.com/songs/60137444.mkv +嘿羽-谁也不欠谁,http://em.21dtv.com/songs/60137443.mkv +嘿羽-草原天路密,http://em.21dtv.com/songs/60137442.mkv +嘿羽-冰雪之梦,http://em.21dtv.com/songs/60137441.mkv +唯莎+DJ何鹏-离别的车站,http://em.21dtv.com/songs/60137440.mkv +唯莎+DJ何鹏-爱的世界只有你,http://em.21dtv.com/songs/60137439.mkv +唯莎-爱上你嫁给你,http://em.21dtv.com/songs/60137438.mkv +唯莎-爱上你嫁给你,http://em.21dtv.com/songs/60137437.mkv +唯莎-我的心永远属于你,http://em.21dtv.com/songs/60137436.mkv +唯莎-我的心永远属于你,http://em.21dtv.com/songs/60137435.mkv +唐艺昕-面对面,http://em.21dtv.com/songs/60137434.mkv +唐子桐-地震安全歌,http://em.21dtv.com/songs/60137433.mkv +唐古-你是我哭着唱的歌,http://em.21dtv.com/songs/60137432.mkv +唐伯虎-醉美酒城,http://em.21dtv.com/songs/60137431.mkv +唐伯虎-折磨,http://em.21dtv.com/songs/60137430.mkv +周艳泓-暖春2017,http://em.21dtv.com/songs/60137429.mkv +周柏豪-爱是彩色的,http://em.21dtv.com/songs/60137428.mkv +周柏豪-月光浓汤,http://em.21dtv.com/songs/60137427.mkv +周柏豪-上下线,http://em.21dtv.com/songs/60137426.mkv +周恬熙-游春图,http://em.21dtv.com/songs/60137425.mkv +周恬熙-就当我们没爱过,http://em.21dtv.com/songs/60137424.mkv +周国贤-月球上的人,http://em.21dtv.com/songs/60137423.mkv +周冬雨-消失,http://em.21dtv.com/songs/60137422.mkv +周兴哲-永不失联的爱,http://em.21dtv.com/songs/60137421.mkv +周传雄+蔡旻佑-男人海洋,http://em.21dtv.com/songs/60137420.mkv +周传雄+孙骁-哈萨亚琪,http://em.21dtv.com/songs/60137419.mkv +周传雄-黄昏,http://em.21dtv.com/songs/60137418.mkv +周传雄-有没有那么一首歌,http://em.21dtv.com/songs/60137417.mkv +周传雄-我的心太乱,http://em.21dtv.com/songs/60137416.mkv +周传雄-寂寞沙洲冷,http://em.21dtv.com/songs/60137415.mkv +周传雄-关不上的窗,http://em.21dtv.com/songs/60137414.mkv +吴静祎-亲爱的朋友,http://em.21dtv.com/songs/60137413.mkv +吴陌川-看透,http://em.21dtv.com/songs/60137412.mkv +吴芊兴-爱情来的刚好,http://em.21dtv.com/songs/60137411.mkv +吴明喜-兄弟醉一回,http://em.21dtv.com/songs/60137410.mkv +吴悦彤-我的世界,http://em.21dtv.com/songs/60137409.mkv +吴彤-伤城故事,http://em.21dtv.com/songs/60137408.mkv +吴建豪-玻璃屋,http://em.21dtv.com/songs/60137407.mkv +吴奇隆+颖儿-千年一刻,http://em.21dtv.com/songs/60137406.mkv +吴健+杨一方-情与爱相约,http://em.21dtv.com/songs/60137405.mkv +吴丹妮-忘记忘不记,http://em.21dtv.com/songs/60137404.mkv +听风-水仙诉,http://em.21dtv.com/songs/60137403.mkv +君子-活出个样来给自己看,http://em.21dtv.com/songs/60137402.mkv +向银莹-你的影子,http://em.21dtv.com/songs/60137401.mkv +向珩心-一二三四歌 红星歌 游击队之歌 打靶归来,http://em.21dtv.com/songs/60137400.mkv +名威-父亲,http://em.21dtv.com/songs/60137399.mkv +吉克皓-1234567,http://em.21dtv.com/songs/60137398.mkv +吉佑社-说谎,http://em.21dtv.com/songs/60137397.mkv +叶诺帆+陈宥希-可乐,http://em.21dtv.com/songs/60137396.mkv +叶诺帆+张艾莉(凤娘)-别说无所谓,http://em.21dtv.com/songs/60137395.mkv +叶诺帆-追不到的爱,http://em.21dtv.com/songs/60137394.mkv +叶诺帆-一步一步行,http://em.21dtv.com/songs/60137393.mkv +叶子-恋上一座城,http://em.21dtv.com/songs/60137392.mkv +可泽+雨烨-风中的眼泪,http://em.21dtv.com/songs/60137391.mkv +原子霏-半打玫瑰,http://em.21dtv.com/songs/60137390.mkv +印子月-LUNA,http://em.21dtv.com/songs/60137389.mkv +卫婷婷-鸿高飞,http://em.21dtv.com/songs/60137388.mkv +卫兰-一格格,http://em.21dtv.com/songs/60137387.mkv +卢广仲-鱼仔,http://em.21dtv.com/songs/60137386.mkv +卞义-望儿山妈妈,http://em.21dtv.com/songs/60137385.mkv +南太铉-Hug Me,http://em.21dtv.com/songs/60137384.mkv +卓玛央宗-爱在察隅,http://em.21dtv.com/songs/60137383.mkv +卓文-草原我的爱,http://em.21dtv.com/songs/60137382.mkv +卓么-遇见最美的你,http://em.21dtv.com/songs/60137381.mkv +华语群星-拥抱世界拥抱你,http://em.21dtv.com/songs/60137380.mkv +华语群星-守护,http://em.21dtv.com/songs/60137379.mkv +华晨宇-齐天,http://em.21dtv.com/songs/60137378.mkv +动力火车+彝蒙组合+付小墨+伊西永藏-当,http://em.21dtv.com/songs/60137377.mkv +动力火车+伊西永藏-彩虹,http://em.21dtv.com/songs/60137376.mkv +功夫胖-Laid Back,http://em.21dtv.com/songs/60137375.mkv +刘鼎峯+刘紫优-船歌,http://em.21dtv.com/songs/60137374.mkv +刘长凯-空楼,http://em.21dtv.com/songs/60137373.mkv +刘长凯-琵琶行,http://em.21dtv.com/songs/60137372.mkv +刘航-心想万事成,http://em.21dtv.com/songs/60137371.mkv +刘美君-Superstar,http://em.21dtv.com/songs/60137370.mkv +刘美君-Ocean Deep,http://em.21dtv.com/songs/60137369.mkv +刘瑞琦-来不及,http://em.21dtv.com/songs/60137368.mkv +刘清沨-你是蓝的,http://em.21dtv.com/songs/60137367.mkv +刘涛-胡莱三国2之战城南,http://em.21dtv.com/songs/60137366.mkv +刘浩航-有些人注定错过,http://em.21dtv.com/songs/60137365.mkv +刘济玮-诗意少年,http://em.21dtv.com/songs/60137364.mkv +刘沁-爱宝贝,http://em.21dtv.com/songs/60137363.mkv +刘沁-You Are Beautiful,http://em.21dtv.com/songs/60137362.mkv +刘欢-幸福消失了多久,http://em.21dtv.com/songs/60137361.mkv +刘杰-天生我才必有用,http://em.21dtv.com/songs/60137360.mkv +刘杰-hello 任贤齐,http://em.21dtv.com/songs/60137359.mkv +刘明辉-爱到五十年以后,http://em.21dtv.com/songs/60137358.mkv +刘文正-热线你和我,http://em.21dtv.com/songs/60137357.mkv +刘心-疯狂而倔强的你,http://em.21dtv.com/songs/60137356.mkv +刘子来-上学那几年,http://em.21dtv.com/songs/60137355.mkv +刘增瞳-放空你的抉择,http://em.21dtv.com/songs/60137354.mkv +刘增瞳-我们的故事,http://em.21dtv.com/songs/60137353.mkv +刘增瞳-危险感觉,http://em.21dtv.com/songs/60137352.mkv +刘和刚-贵州茶香,http://em.21dtv.com/songs/60137351.mkv +刘和刚-我的爸爸妈妈,http://em.21dtv.com/songs/60137350.mkv +刘佳-泪美人,http://em.21dtv.com/songs/60137349.mkv +凤凰传奇-让世界听我的,http://em.21dtv.com/songs/60137348.mkv +凤凰传奇-花烛夜,http://em.21dtv.com/songs/60137347.mkv +凤凰传奇-乡关何处是,http://em.21dtv.com/songs/60137346.mkv +冷漠+杨小曼-伤心的雨,http://em.21dtv.com/songs/60137345.mkv +冷漠-陪伴,http://em.21dtv.com/songs/60137344.mkv +冯颖琪-彳亍,http://em.21dtv.com/songs/60137343.mkv +冯允谦-枫叶书签,http://em.21dtv.com/songs/60137342.mkv +关关+张挥-最美天使,http://em.21dtv.com/songs/60137341.mkv +八三夭-小心肝,http://em.21dtv.com/songs/60137340.mkv +全悦-This Is A War,http://em.21dtv.com/songs/60137339.mkv +兄弟本色-摩托车,http://em.21dtv.com/songs/60137338.mkv +傅又宣-Saty With Me,http://em.21dtv.com/songs/60137337.mkv +倪尔萍-多瑙河畔,http://em.21dtv.com/songs/60137336.mkv +倪安东-最美的拥有,http://em.21dtv.com/songs/60137335.mkv +信-摇滚区,http://em.21dtv.com/songs/60137334.mkv +信-危城,http://em.21dtv.com/songs/60137333.mkv +侯欣然+侯欣悦-编花篮,http://em.21dtv.com/songs/60137332.mkv +侯明昊-脸谱,http://em.21dtv.com/songs/60137331.mkv +佘延生-老禾埔,http://em.21dtv.com/songs/60137330.mkv +何龙雨+邱敬婷-但愿你的梦中有我,http://em.21dtv.com/songs/60137329.mkv +何龙雨-欺骗你欺骗我,http://em.21dtv.com/songs/60137328.mkv +何超与海胆仔-何漂移,http://em.21dtv.com/songs/60137327.mkv +何洁-给陌生女孩的歌,http://em.21dtv.com/songs/60137326.mkv +何洁-我只剩下自己,http://em.21dtv.com/songs/60137325.mkv +何洁-决定,http://em.21dtv.com/songs/60137324.mkv +何曼婷-倒数三二一,http://em.21dtv.com/songs/60137323.mkv +何曼婷-不能原谅,http://em.21dtv.com/songs/60137322.mkv +何思谕-完美的世界,http://em.21dtv.com/songs/60137321.mkv +何建清+王峰峰-今生兄弟情,http://em.21dtv.com/songs/60137320.mkv +伍灵儿-中国侗族在三江,http://em.21dtv.com/songs/60137319.mkv +伍思凯-爱的钢琴手,http://em.21dtv.com/songs/60137318.mkv +伊然-你是我最深的依偎,http://em.21dtv.com/songs/60137317.mkv +伊丽莎白-茉莉花,http://em.21dtv.com/songs/60137316.mkv +令狐-单身浅唱,http://em.21dtv.com/songs/60137315.mkv +代理仁-洋歌,http://em.21dtv.com/songs/60137314.mkv +代慧颖-摇起来,http://em.21dtv.com/songs/60137313.mkv +付豪-失明的城市,http://em.21dtv.com/songs/60137312.mkv +付笛声+黄格选+江涛-爱的箴言,http://em.21dtv.com/songs/60137311.mkv +付笛声+江涛-愚公移山,http://em.21dtv.com/songs/60137310.mkv +付笛声+任静-知心爱人,http://em.21dtv.com/songs/60137309.mkv +付笛声-暗香,http://em.21dtv.com/songs/60137308.mkv +付笛声-姑娘月亮,http://em.21dtv.com/songs/60137307.mkv +付笛声-中国志气,http://em.21dtv.com/songs/60137306.mkv +京城龙少-一路上的兄弟,http://em.21dtv.com/songs/60137305.mkv +亦心+臻言-山水唱情歌,http://em.21dtv.com/songs/60137304.mkv +五条人-晚上好春天小姐,http://em.21dtv.com/songs/60137303.mkv +五条人-像将军那样喝酒,http://em.21dtv.com/songs/60137302.mkv +五月天+萧敬腾-凡人歌,http://em.21dtv.com/songs/60137301.mkv +五月天-现在就是永远,http://em.21dtv.com/songs/60137300.mkv +五月天-成名在望,http://em.21dtv.com/songs/60137299.mkv +五月天-兄弟,http://em.21dtv.com/songs/60137298.mkv +云飞+郝亚青-牡丹花和放羊娃,http://em.21dtv.com/songs/60137297.mkv +云飞+泽仁央金-我从雪山来,http://em.21dtv.com/songs/60137296.mkv +云飞+孟根-爱的眼神,http://em.21dtv.com/songs/60137295.mkv +云飞-神奇的耒阳,http://em.21dtv.com/songs/60137294.mkv +云飞-天边,http://em.21dtv.com/songs/60137293.mkv +云飞-回乡姑娘,http://em.21dtv.com/songs/60137292.mkv +云丹久美-前世今生的缘,http://em.21dtv.com/songs/60137291.mkv +于若鸿-小学校歌,http://em.21dtv.com/songs/60137290.mkv +于洋-巫峡之春,http://em.21dtv.com/songs/60137289.mkv +于洋-巫山梦,http://em.21dtv.com/songs/60137288.mkv +于洋-从这里起飞,http://em.21dtv.com/songs/60137287.mkv +于洋-中国恋城巫山,http://em.21dtv.com/songs/60137286.mkv +于毅+江珊-千年之恋,http://em.21dtv.com/songs/60137285.mkv +于毅+娄艺潇-凉凉,http://em.21dtv.com/songs/60137284.mkv +于毅-牧歌,http://em.21dtv.com/songs/60137283.mkv +于毅-当爱已成往事,http://em.21dtv.com/songs/60137282.mkv +乔冬宇-枉凝眉,http://em.21dtv.com/songs/60137281.mkv +乌兰托娅+岑雨桥-嫂子,http://em.21dtv.com/songs/60137280.mkv +乌兰托娅-草原爱情海,http://em.21dtv.com/songs/60137279.mkv +严艺丹-错遇,http://em.21dtv.com/songs/60137278.mkv +严艺丹-方向感全部都已经彻底失灵啦,http://em.21dtv.com/songs/60137277.mkv +严新豪+唐琪琪+曾惠靖-最美的旅途,http://em.21dtv.com/songs/60137276.mkv +丛荣泽萌-山里江南,http://em.21dtv.com/songs/60137275.mkv +丛荣泽萌-嗨如花,http://em.21dtv.com/songs/60137274.mkv +上海彩虹室内合唱团-魔都 魔都,http://em.21dtv.com/songs/60137273.mkv +三木科+卓玛央宗-普姆卓玛,http://em.21dtv.com/songs/60137272.mkv +万梓晴-爱你却无缘,http://em.21dtv.com/songs/60137271.mkv +万梓晴-下一个晴天,http://em.21dtv.com/songs/60137270.mkv +丁香-金刚芭比,http://em.21dtv.com/songs/60137269.mkv +丁艳+石浩-诗画中国,http://em.21dtv.com/songs/60137268.mkv +丁艳-感恩,http://em.21dtv.com/songs/60137267.mkv +丁艳-天那边有个美丽的传说,http://em.21dtv.com/songs/60137266.mkv +丁艳-南充颂歌,http://em.21dtv.com/songs/60137265.mkv +一只舟-迷失的自我,http://em.21dtv.com/songs/60137264.mkv +Yuna+Usher-Crush,http://em.21dtv.com/songs/60137263.mkv +Yong Yong-Scribbling,http://em.21dtv.com/songs/60137262.mkv +Yangpa-Aurora,http://em.21dtv.com/songs/60137261.mkv +XYLo-I Still Wait For You,http://em.21dtv.com/songs/60137260.mkv +WK-疼爱,http://em.21dtv.com/songs/60137259.mkv +WK-指尖的痛,http://em.21dtv.com/songs/60137258.mkv +Wake Up+ Girls!-TUNAGO,http://em.21dtv.com/songs/60137257.mkv +Vox玩声乐团-寂寞寂寞就好,http://em.21dtv.com/songs/60137256.mkv +Usher-Crash,http://em.21dtv.com/songs/60137255.mkv +Tyler Ward-If I'm Being Honest,http://em.21dtv.com/songs/60137254.mkv +TWICE-SIGNAL,http://em.21dtv.com/songs/60137253.mkv +twenty one pilots-Ride,http://em.21dtv.com/songs/60137252.mkv +Twenty one Pilots-House Of Gold,http://em.21dtv.com/songs/60137251.mkv +twenty one pilots-Heathens,http://em.21dtv.com/songs/60137250.mkv +TrySail-adrenaline!!!,http://em.21dtv.com/songs/60137249.mkv +Troye Sivan-Youth,http://em.21dtv.com/songs/60137248.mkv +Tory Lanez-Luv,http://em.21dtv.com/songs/60137247.mkv +TOPSECRET-MIND CONTROL,http://em.21dtv.com/songs/60137246.mkv +TOP1-这世界不能没有你,http://em.21dtv.com/songs/60137245.mkv +TOP1-我最挺你,http://em.21dtv.com/songs/60137244.mkv +ToNick-阿飞与阿基,http://em.21dtv.com/songs/60137243.mkv +Tom Odell-Wrong Crowd,http://em.21dtv.com/songs/60137242.mkv +Timeflies-Once In A While,http://em.21dtv.com/songs/60137241.mkv +Tim McGraw-Humble and Kind,http://em.21dtv.com/songs/60137240.mkv +The Veronicas-In My Blood,http://em.21dtv.com/songs/60137239.mkv +The Last Shadow Puppets-Bad Habits,http://em.21dtv.com/songs/60137238.mkv +The Chainsmokers+Halsey-Closer,http://em.21dtv.com/songs/60137237.mkv +The Black Skirts-Who Do You Love,http://em.21dtv.com/songs/60137236.mkv +Take That-New Day,http://em.21dtv.com/songs/60137235.mkv +T ara-我的名字叫,http://em.21dtv.com/songs/60137234.mkv +Sunshine-拜托别黑我,http://em.21dtv.com/songs/60137233.mkv +SunBeatzz+大龙-信仰,http://em.21dtv.com/songs/60137232.mkv +SunBeatzz-慢慢变老,http://em.21dtv.com/songs/60137231.mkv +SummerBaby-新年啦 我好开心,http://em.21dtv.com/songs/60137230.mkv +SummerBaby-One Night In 惠州,http://em.21dtv.com/songs/60137229.mkv +STU48-瀬戸内の声,http://em.21dtv.com/songs/60137228.mkv +Spica-Secret Time,http://em.21dtv.com/songs/60137227.mkv +Sofia Carson-Love Is the Name,http://em.21dtv.com/songs/60137226.mkv +SNH48-夏日柠檬船,http://em.21dtv.com/songs/60137225.mkv +Slate-Oh Little Girl,http://em.21dtv.com/songs/60137224.mkv +SISTAR-LONELY,http://em.21dtv.com/songs/60137223.mkv +Sia-Free Me,http://em.21dtv.com/songs/60137222.mkv +Sia-Cheap Thrills,http://em.21dtv.com/songs/60137221.mkv +Sheryl Crow-Halfway There,http://em.21dtv.com/songs/60137220.mkv +Seventeen-Don't Wanna Cry,http://em.21dtv.com/songs/60137219.mkv +SEVENTEEN-Check In,http://em.21dtv.com/songs/60137218.mkv +Selena Gomez-Kill Em With Kindness,http://em.21dtv.com/songs/60137217.mkv +San E+脸红的思春期-mohae,http://em.21dtv.com/songs/60137216.mkv +Samuel Seo+QIM ISLE-Mango,http://em.21dtv.com/songs/60137215.mkv +Sam Hunt-Body Like A Back Road,http://em.21dtv.com/songs/60137214.mkv +Roy Kim-突然,http://em.21dtv.com/songs/60137213.mkv +RHODES-Sleep Is a Rose,http://em.21dtv.com/songs/60137212.mkv +Placebo-Life's What You Make It,http://em.21dtv.com/songs/60137211.mkv +Pharrell Williams-Yellow Light,http://em.21dtv.com/songs/60137210.mkv +PENTAGON-漂亮得要死,http://em.21dtv.com/songs/60137209.mkv +PDD-我是全英雄联盟最骚的骚猪,http://em.21dtv.com/songs/60137208.mkv +Passenger-Anywhere,http://em.21dtv.com/songs/60137207.mkv +Panic! At The Disco-Bohemian Rhapsody,http://em.21dtv.com/songs/60137206.mkv +OneRepublic-Life In Color,http://em.21dtv.com/songs/60137205.mkv +OneRepublic-I Lived,http://em.21dtv.com/songs/60137204.mkv +Onerepublic-Counting Stars,http://em.21dtv.com/songs/60137203.mkv +One Republic-All The Right Moves,http://em.21dtv.com/songs/60137202.mkv +NU'EST-Love Paint,http://em.21dtv.com/songs/60137201.mkv +Noah Cyrus-I'm Stuck,http://em.21dtv.com/songs/60137200.mkv +MYAR+江嘉敏-不变的爱,http://em.21dtv.com/songs/60137199.mkv +Monster KaR-相信公路,http://em.21dtv.com/songs/60137198.mkv +Monster KaR-梦幻街七号,http://em.21dtv.com/songs/60137197.mkv +Monsta X-只对你执着,http://em.21dtv.com/songs/60137196.mkv +MOBB+Kush-HIT ME,http://em.21dtv.com/songs/60137195.mkv +MO-Final Song,http://em.21dtv.com/songs/60137194.mkv +我爱你,http://em.21dtv.com/songs/60137193.mkv +MC梦柯+张思思-我的小可爱,http://em.21dtv.com/songs/60137192.mkv +MC天佑-一人饮酒醉,http://em.21dtv.com/songs/60137191.mkv +Mary Lambert-Know Your Name,http://em.21dtv.com/songs/60137190.mkv +MAMAMOO-New York,http://em.21dtv.com/songs/60137189.mkv +Machine Gun Kelly-Kiss The Sky,http://em.21dtv.com/songs/60137188.mkv +LTB-想念你,http://em.21dtv.com/songs/60137187.mkv +lollipop-加油加油gogo,http://em.21dtv.com/songs/60137186.mkv +LOCO-早晨是黑暗的,http://em.21dtv.com/songs/60137185.mkv +Little Mix+Stormzy-Power,http://em.21dtv.com/songs/60137184.mkv +Little Mix+Sean Paul-Hair,http://em.21dtv.com/songs/60137183.mkv +Lilith乐队-Arcadia,http://em.21dtv.com/songs/60137182.mkv +Lil Uzi Vert+wiz Khalifa-Pull Up,http://em.21dtv.com/songs/60137181.mkv +Laysha+NASSUN-Chocolate Cream,http://em.21dtv.com/songs/60137180.mkv +LABOUM-Shooting Love,http://em.21dtv.com/songs/60137179.mkv +Knock-请打开,http://em.21dtv.com/songs/60137178.mkv +星,http://em.21dtv.com/songs/60137177.mkv +Kisum-No Jam,http://em.21dtv.com/songs/60137176.mkv +Kings Of Leon-Waste A Moment,http://em.21dtv.com/songs/60137175.mkv +Kiki li-始终难舍你,http://em.21dtv.com/songs/60137174.mkv +Kid Ink+Starrah-No Strings,http://em.21dtv.com/songs/60137173.mkv +Kehlani-Gangsta,http://em.21dtv.com/songs/60137172.mkv +Katy Perry-Rise,http://em.21dtv.com/songs/60137171.mkv +Kanye West+schoolboy Q-THat Part,http://em.21dtv.com/songs/60137170.mkv +K NoW NAME-Freesia,http://em.21dtv.com/songs/60137169.mkv +K NoW NAME-Blue Rose,http://em.21dtv.com/songs/60137168.mkv +K NoW NAME-ASTER,http://em.21dtv.com/songs/60137167.mkv +Justin Bieber+MO-Cold Water,http://em.21dtv.com/songs/60137166.mkv +Jun.K-Young Forever,http://em.21dtv.com/songs/60137165.mkv +JUN.K-THINK ABOUT YOU,http://em.21dtv.com/songs/60137164.mkv +JUDE-他他他,http://em.21dtv.com/songs/60137163.mkv +JESSICA-WONDERLAND,http://em.21dtv.com/songs/60137162.mkv +Jessi-My Romeo,http://em.21dtv.com/songs/60137161.mkv +J.Sheon-别问很可怕,http://em.21dtv.com/songs/60137160.mkv +IVI-爱为爱,http://em.21dtv.com/songs/60137159.mkv +iKON-B DAY,http://em.21dtv.com/songs/60137158.mkv +HONEYST-为你着迷,http://em.21dtv.com/songs/60137157.mkv +Highlight-SLEEP TIGHT,http://em.21dtv.com/songs/60137156.mkv +Highlight-CALLING YOU,http://em.21dtv.com/songs/60137155.mkv +Halsey-Walls Could Talk,http://em.21dtv.com/songs/60137154.mkv +Halsey-100 Letters,http://em.21dtv.com/songs/60137153.mkv +Hailee Steinfeld-Starving,http://em.21dtv.com/songs/60137152.mkv +Gray+one+simon D-Comfortable,http://em.21dtv.com/songs/60137151.mkv +GNZ48-向日葵约定,http://em.21dtv.com/songs/60137150.mkv +Giriboy+Mad Color-搬家,http://em.21dtv.com/songs/60137149.mkv +GFriend-NAVILLERA,http://em.21dtv.com/songs/60137148.mkv +GENERATIONS from EXILE TRIBE-空,http://em.21dtv.com/songs/60137147.mkv +GENERATIONS from EXILE TRIBE-涙,http://em.21dtv.com/songs/60137146.mkv +GARNiDELiA-SPEED STAR,http://em.21dtv.com/songs/60137145.mkv +FTISLAND-Wind,http://em.21dtv.com/songs/60137144.mkv +Foo Fighters-Run,http://em.21dtv.com/songs/60137143.mkv +Fleur East-Sax,http://em.21dtv.com/songs/60137142.mkv +FINE乐团-配不上你,http://em.21dtv.com/songs/60137141.mkv +Faye-象牙塔,http://em.21dtv.com/songs/60137140.mkv +Faye-河畔,http://em.21dtv.com/songs/60137139.mkv +EXILE ATSUSHI-Beautiful Gorgeous Love,http://em.21dtv.com/songs/60137138.mkv +ELO+Gray+Loco-GOOD,http://em.21dtv.com/songs/60137137.mkv +Ed Sheeran-Galway Girl,http://em.21dtv.com/songs/60137136.mkv +Eagles-HOTEL CALIFORNIA(演唱会),http://em.21dtv.com/songs/60137135.mkv +Dua Lipa+Miguel-Lost In Your Light,http://em.21dtv.com/songs/60137134.mkv +Dragon Pig+CLOUD WANG+CNBALLER-全部都是你,http://em.21dtv.com/songs/60137133.mkv +DJ阿远+雷龙-小啤酒,http://em.21dtv.com/songs/60137132.mkv +DJ宝贝-该死的温柔,http://em.21dtv.com/songs/60137131.mkv +DJ奶小深-我好想逃,http://em.21dtv.com/songs/60137130.mkv +DJ Khaled+Justin Bieber-I'm The One,http://em.21dtv.com/songs/60137129.mkv +Declan McKenna-Humongous,http://em.21dtv.com/songs/60137128.mkv +DAY6-I Smile,http://em.21dtv.com/songs/60137127.mkv +David Guetta+Justin Bieber-2U,http://em.21dtv.com/songs/60137126.mkv +CROSS GENE-My Face,http://em.21dtv.com/songs/60137125.mkv +Coldplay-All I Can Think About Is You,http://em.21dtv.com/songs/60137124.mkv +C ALLSTAR-Take Your Time,http://em.21dtv.com/songs/60137123.mkv +Booboo Stewart+Cameron Boyce-Ways to Be Wicked,http://em.21dtv.com/songs/60137122.mkv +BELL宇田-蝌蚪,http://em.21dtv.com/songs/60137121.mkv +Bastille-Glory,http://em.21dtv.com/songs/60137120.mkv +ASTRO-爱,http://em.21dtv.com/songs/60137119.mkv +ASTRO-告白,http://em.21dtv.com/songs/60137118.mkv +Ashley-大海啊故乡,http://em.21dtv.com/songs/60137117.mkv +Ariana Grande-My Everything,http://em.21dtv.com/songs/60137116.mkv +APRIL-MAYDAY,http://em.21dtv.com/songs/60137115.mkv +APRIL-Lovesick,http://em.21dtv.com/songs/60137114.mkv +Aoi 香菇她妈-为你而战,http://em.21dtv.com/songs/60137113.mkv +Ailee-If You,http://em.21dtv.com/songs/60137112.mkv +ACEMAX RED-暖光,http://em.21dtv.com/songs/60137111.mkv +A Lin-空窗,http://em.21dtv.com/songs/60137110.mkv +3LAU+Yeah Boy-On My Mind,http://em.21dtv.com/songs/60137109.mkv +2PM-Promise,http://em.21dtv.com/songs/60137108.mkv +龚爽-鸽子花,http://em.21dtv.com/songs/60137107.mkv +龙梅子-别把我的感情当游戏,http://em.21dtv.com/songs/60137106.mkv +龙梅-酒歌,http://em.21dtv.com/songs/60137105.mkv +龙奔+张怡诺-一首歌送给我的心上人,http://em.21dtv.com/songs/60137104.mkv +龙奔-百姓心声,http://em.21dtv.com/songs/60137103.mkv +龙奔-男人太难,http://em.21dtv.com/songs/60137102.mkv +龙奔-小姐姐,http://em.21dtv.com/songs/60137101.mkv +龙俊亨+Heize-会一直在吗,http://em.21dtv.com/songs/60137100.mkv +龙俊亨-Too Much Love Kills Me,http://em.21dtv.com/songs/60137099.mkv +齐航+崔杰+郭保成+马艺航-魅力中国,http://em.21dtv.com/songs/60137098.mkv +齐晨-青春不留白,http://em.21dtv.com/songs/60137097.mkv +齐妍妍-女人三十一枝花,http://em.21dtv.com/songs/60137096.mkv +默言-爱的执着,http://em.21dtv.com/songs/60137095.mkv +黑龙-盗心贼,http://em.21dtv.com/songs/60137094.mkv +黑哥-人黑心不黑,http://em.21dtv.com/songs/60137093.mkv +黎瑞恩-假使有日能忘记,http://em.21dtv.com/songs/60137092.mkv +黎明花-桂林不是我的家,http://em.21dtv.com/songs/60137091.mkv +黄龄-明珠,http://em.21dtv.com/songs/60137090.mkv +黄鸿升-北风和太阳,http://em.21dtv.com/songs/60137089.mkv +黄胜华-我和祖国,http://em.21dtv.com/songs/60137088.mkv +黄立绮-打分数,http://em.21dtv.com/songs/60137087.mkv +黄磊+王迅+魏大勋-妇女之友,http://em.21dtv.com/songs/60137086.mkv +黄睿铭-滚,http://em.21dtv.com/songs/60137085.mkv +黄浩琳-缠路,http://em.21dtv.com/songs/60137084.mkv +黄文武+陈玉建-做兄弟,http://em.21dtv.com/songs/60137083.mkv +黄子韬-Promise,http://em.21dtv.com/songs/60137082.mkv +黄子韬-Collateral Love,http://em.21dtv.com/songs/60137081.mkv +黄勇-天在上,http://em.21dtv.com/songs/60137080.mkv +麦浚龙-禽兽,http://em.21dtv.com/songs/60137079.mkv +鱼椒盐-无限大,http://em.21dtv.com/songs/60137078.mkv +魏晨-弟兄,http://em.21dtv.com/songs/60137077.mkv +魏什么-母亲的心,http://em.21dtv.com/songs/60137076.mkv +高峰-滔滔北部湾,http://em.21dtv.com/songs/60137075.mkv +高安+郑莉莉-你是我最难舍的人,http://em.21dtv.com/songs/60137074.mkv +高安+格格-哥妹情缘,http://em.21dtv.com/songs/60137073.mkv +马成林-可爱的全州,http://em.21dtv.com/songs/60137072.mkv +马希尔-须弥,http://em.21dtv.com/songs/60137071.mkv +马希尔-六盘山,http://em.21dtv.com/songs/60137070.mkv +马嘉+孙燕姿+严莉+严玲+张小晴-神奇,http://em.21dtv.com/songs/60137069.mkv +马嘉+孙燕姿-半句再见,http://em.21dtv.com/songs/60137068.mkv +马健涛-爱情也虚假,http://em.21dtv.com/songs/60137067.mkv +飘飘-你在温暖的地方等我,http://em.21dtv.com/songs/60137066.mkv +颜婷婷-念谁,http://em.21dtv.com/songs/60137065.mkv +顾芮宁-撑过黑暗,http://em.21dtv.com/songs/60137064.mkv +音悦之路老师-音悦之路,http://em.21dtv.com/songs/60137063.mkv +音乐走廊+音乐魅力-每天都想在一起,http://em.21dtv.com/songs/60137062.mkv +音乐走廊+酒窝-幸福的人,http://em.21dtv.com/songs/60137061.mkv +音乐走廊+酒窝-女人心女人泪,http://em.21dtv.com/songs/60137060.mkv +音乐走廊+歌一生-想着你的那个人,http://em.21dtv.com/songs/60137059.mkv +音乐走廊+天爱-花开花落知多少,http://em.21dtv.com/songs/60137058.mkv +音乐走廊+天爱-有缘千里,http://em.21dtv.com/songs/60137057.mkv +音乐走廊+十一妹-情愿陪你走天涯,http://em.21dtv.com/songs/60137056.mkv +音乐走廊-王式情歌,http://em.21dtv.com/songs/60137055.mkv +音乐走廊-时光煮雨,http://em.21dtv.com/songs/60137054.mkv +音乐走廊-故乡小镇,http://em.21dtv.com/songs/60137053.mkv +音乐走廊-我的心你不懂,http://em.21dtv.com/songs/60137052.mkv +音乐走廊-孤芳别自赏,http://em.21dtv.com/songs/60137051.mkv +音乐走廊-京腔戏浓,http://em.21dtv.com/songs/60137050.mkv +音乐走廊-一首茉莉花,http://em.21dtv.com/songs/60137049.mkv +韩梦雨-青春不毕业,http://em.21dtv.com/songs/60137048.mkv +韩丹彤-演员,http://em.21dtv.com/songs/60137047.mkv +霍然-认真,http://em.21dtv.com/songs/60137046.mkv +雷深如-我错,http://em.21dtv.com/songs/60137045.mkv +雷深如-Fantasy,http://em.21dtv.com/songs/60137044.mkv +雨露-我的心下起了雪,http://em.21dtv.com/songs/60137043.mkv +雨露-下一次相遇,http://em.21dtv.com/songs/60137042.mkv +雨霖枫-世上最伤心的人,http://em.21dtv.com/songs/60137041.mkv +雨中百合-爱到深处全是泪,http://em.21dtv.com/songs/60137040.mkv +陶辰宇-停在你的时间,http://em.21dtv.com/songs/60137039.mkv +陶思哲+黄楒灿+丁弼洲+叶倩文-潇洒走一回,http://em.21dtv.com/songs/60137038.mkv +降央卓玛-父亲,http://em.21dtv.com/songs/60137037.mkv +陈雅森+杨梓文琪-夜空和星星,http://em.21dtv.com/songs/60137036.mkv +陈雅森-离别多年,http://em.21dtv.com/songs/60137035.mkv +陈雅森-爱有超能力,http://em.21dtv.com/songs/60137034.mkv +陈雅森-夜空和星星,http://em.21dtv.com/songs/60137033.mkv +陈贤聪-兄弟,http://em.21dtv.com/songs/60137032.mkv +陈贤聪-为什么伤一个爱你的人,http://em.21dtv.com/songs/60137031.mkv +陈贤聪-不再为你流泪,http://em.21dtv.com/songs/60137030.mkv +陈直-青春的纪念品,http://em.21dtv.com/songs/60137029.mkv +陈瑞-终于放了手,http://em.21dtv.com/songs/60137028.mkv +陈瑞-不是情人不必情深,http://em.21dtv.com/songs/60137027.mkv +陈浩东-Firer,http://em.21dtv.com/songs/60137026.mkv +陈永强-岳飞,http://em.21dtv.com/songs/60137025.mkv +陈梓童-观音阁,http://em.21dtv.com/songs/60137024.mkv +陈松龄-忆往事,http://em.21dtv.com/songs/60137023.mkv +陈明憙-浓雾,http://em.21dtv.com/songs/60137022.mkv +陈文浩-如今我们是陌生人,http://em.21dtv.com/songs/60137021.mkv +陈惠婷-摩天大楼,http://em.21dtv.com/songs/60137020.mkv +陈思成-探索成长的神奇,http://em.21dtv.com/songs/60137019.mkv +陈彦允-梦中情人,http://em.21dtv.com/songs/60137018.mkv +陈彦允-城门城门鸡蛋糕,http://em.21dtv.com/songs/60137017.mkv +陈彦允-Money Back Me Home,http://em.21dtv.com/songs/60137016.mkv +陈建斌+韩丹彤-在那遥远的地方,http://em.21dtv.com/songs/60137015.mkv +陈建斌+王珞丹-你把我灌醉,http://em.21dtv.com/songs/60137014.mkv +陈建斌+任嘉伦-失恋阵线联盟,http://em.21dtv.com/songs/60137013.mkv +陈建斌-驿动的心,http://em.21dtv.com/songs/60137012.mkv +陈建斌-弹起我心爱的土琵琶,http://em.21dtv.com/songs/60137011.mkv +陈建斌-天涯歌女,http://em.21dtv.com/songs/60137010.mkv +歌声和一阵风,http://em.21dtv.com/songs/60137009.mkv +陈娟儿-对的那个人,http://em.21dtv.com/songs/60137008.mkv +陈奕迅-你给我听好,http://em.21dtv.com/songs/60137007.mkv +陈奕迅-I Do,http://em.21dtv.com/songs/60137006.mkv +陈奕夫+傲日其楞+张碧晨+唐倩-凉凉,http://em.21dtv.com/songs/60137005.mkv +陈夏莲-守护星,http://em.21dtv.com/songs/60137004.mkv +陈友良-母亲的魅力,http://em.21dtv.com/songs/60137003.mkv +陈冰-大雨,http://em.21dtv.com/songs/60137002.mkv +陈兆飞-熟悉的你,http://em.21dtv.com/songs/60137001.mkv +陈兆飞-你的承诺欺骗了我,http://em.21dtv.com/songs/60137000.mkv +陈信喆-我又想你了,http://em.21dtv.com/songs/60136999.mkv +陈佳乐-我是你伤害过的女人,http://em.21dtv.com/songs/60136998.mkv +陈佳乐-剧透,http://em.21dtv.com/songs/60136997.mkv +陈伟霆-着迷,http://em.21dtv.com/songs/60136996.mkv +陈伟霆-相依为命,http://em.21dtv.com/songs/60136995.mkv +陈亭甫+虞舒然-嘿!泸州,http://em.21dtv.com/songs/60136994.mkv +陈一玲-夜,http://em.21dtv.com/songs/60136993.mkv +阿菁-雨停的那一天,http://em.21dtv.com/songs/60136992.mkv +阿比亚斯-呼伦贝尔大草原,http://em.21dtv.com/songs/60136991.mkv +阿桑格来鹏措-醉九洲,http://em.21dtv.com/songs/60136990.mkv +阿杜-烂好人,http://em.21dtv.com/songs/60136989.mkv +阿杜-一诺千年,http://em.21dtv.com/songs/60136988.mkv +阿旺-拜佛,http://em.21dtv.com/songs/60136987.mkv +阿文+刘颖儿-好好爱一回,http://em.21dtv.com/songs/60136986.mkv +阿年-确定就是你,http://em.21dtv.com/songs/60136985.mkv +阿帆-过往,http://em.21dtv.com/songs/60136984.mkv +阿帆-流水时光,http://em.21dtv.com/songs/60136983.mkv +阿帆-习惯遗忘,http://em.21dtv.com/songs/60136982.mkv +阿宝-疙梁梁,http://em.21dtv.com/songs/60136981.mkv +阿哲-若不是,http://em.21dtv.com/songs/60136980.mkv +阿但-冷情失意,http://em.21dtv.com/songs/60136979.mkv +防弹少年团-啃老族,http://em.21dtv.com/songs/60136978.mkv +门丽+张天龙-我的好媳妇儿,http://em.21dtv.com/songs/60136977.mkv +门丽-爱情二维码,http://em.21dtv.com/songs/60136976.mkv +门丽-情终人散,http://em.21dtv.com/songs/60136975.mkv +银纱-网络真爱,http://em.21dtv.com/songs/60136974.mkv +银纱-爱是我情是你,http://em.21dtv.com/songs/60136973.mkv +银纱-也许,http://em.21dtv.com/songs/60136972.mkv +铁竹堂之PLAYAZ玩家帮+Mc HotDog-有玩没完,http://em.21dtv.com/songs/60136971.mkv +钟英-高洁流芳,http://em.21dtv.com/songs/60136970.mkv +钟洁-你要和谁在一起,http://em.21dtv.com/songs/60136969.mkv +金灿-弥勒颂,http://em.21dtv.com/songs/60136968.mkv +金池+毕夏-她在睡前哭泣,http://em.21dtv.com/songs/60136967.mkv +金志文+周蕙-不爱了也是一种爱,http://em.21dtv.com/songs/60136966.mkv +金志文-远走高飞,http://em.21dtv.com/songs/60136965.mkv +金志文-不爱了也是一种爱,http://em.21dtv.com/songs/60136964.mkv +金宇宙-春雨,http://em.21dtv.com/songs/60136963.mkv +金婷婷-青春小鸟,http://em.21dtv.com/songs/60136962.mkv +金婷婷-走在小康路上,http://em.21dtv.com/songs/60136961.mkv +金婷婷-渔家姑娘在海边,http://em.21dtv.com/songs/60136960.mkv +金婷婷-梨花颂,http://em.21dtv.com/songs/60136959.mkv +金婷婷-帕米尔我的家乡多么美,http://em.21dtv.com/songs/60136958.mkv +金婷婷-女驸马,http://em.21dtv.com/songs/60136957.mkv +金婷婷-坚守,http://em.21dtv.com/songs/60136956.mkv +金婷婷-全家福,http://em.21dtv.com/songs/60136955.mkv +金南玲-子夜歌,http://em.21dtv.com/songs/60136954.mkv +金久哲-隔山隔水隔思念,http://em.21dtv.com/songs/60136953.mkv +释恒炜-怀念妈妈,http://em.21dtv.com/songs/60136952.mkv +郭美美-你能听见吗,http://em.21dtv.com/songs/60136951.mkv +郭树东-做自己,http://em.21dtv.com/songs/60136950.mkv +郭景玲-再唱邓美人,http://em.21dtv.com/songs/60136949.mkv +郭建良-少年侠气,http://em.21dtv.com/songs/60136948.mkv +郭少杰-妈妈变老了,http://em.21dtv.com/songs/60136947.mkv +郭宴-鸿雁,http://em.21dtv.com/songs/60136946.mkv +郭宴-送别,http://em.21dtv.com/songs/60136945.mkv +郭宴-跟着感觉走,http://em.21dtv.com/songs/60136944.mkv +郭宴-行动派,http://em.21dtv.com/songs/60136943.mkv +郭宴-突然想爱你,http://em.21dtv.com/songs/60136942.mkv +郭宴-灰姑娘,http://em.21dtv.com/songs/60136941.mkv +郭宴-当我想你的时候,http://em.21dtv.com/songs/60136940.mkv +郭宴-冬天来了,http://em.21dtv.com/songs/60136939.mkv +郭宴-假行僧,http://em.21dtv.com/songs/60136938.mkv +郭如碧-男人一生,http://em.21dtv.com/songs/60136937.mkv +郭东坡-那年秋天,http://em.21dtv.com/songs/60136936.mkv +郑钧+黄绮珊-长安长安,http://em.21dtv.com/songs/60136935.mkv +郑迦文-猜测,http://em.21dtv.com/songs/60136934.mkv +郑莉莉+汪旭-喜欢腻,http://em.21dtv.com/songs/60136933.mkv +郑莉莉+查理-樱花泪,http://em.21dtv.com/songs/60136932.mkv +郑莉莉-海风吹,http://em.21dtv.com/songs/60136931.mkv +郑莉莉-你向左我向右,http://em.21dtv.com/songs/60136930.mkv +郑茜匀-我在你眼里到底算什么,http://em.21dtv.com/songs/60136929.mkv +郑旭-我们是兄弟,http://em.21dtv.com/songs/60136928.mkv +郑兴琦-像鲸鱼游向大海,http://em.21dtv.com/songs/60136927.mkv +郑俊弘-风沙,http://em.21dtv.com/songs/60136926.mkv +郑俊弘-迷,http://em.21dtv.com/songs/60136925.mkv +郁可唯+品冠-从来没有想过,http://em.21dtv.com/songs/60136924.mkv +郁可唯-落在胸口的星星,http://em.21dtv.com/songs/60136923.mkv +郁可唯-心不由己,http://em.21dtv.com/songs/60136922.mkv +郁可唯-影子,http://em.21dtv.com/songs/60136921.mkv +郁可唯-倒流,http://em.21dtv.com/songs/60136920.mkv +郁可唯-从来没有想过,http://em.21dtv.com/songs/60136919.mkv +郁可唯-21天,http://em.21dtv.com/songs/60136918.mkv +邵洪-路过幸福错过爱,http://em.21dtv.com/songs/60136917.mkv +邰正宵+台湾爽乐团-一起筑梦,http://em.21dtv.com/songs/60136916.mkv +邰正宵-没有你的我,http://em.21dtv.com/songs/60136915.mkv +邰正宵-一起筑梦,http://em.21dtv.com/songs/60136914.mkv +那广子+超模学员-我是主角,http://em.21dtv.com/songs/60136913.mkv +邓紫棋-于是,http://em.21dtv.com/songs/60136912.mkv +邓卓轩-比梦更自由,http://em.21dtv.com/songs/60136911.mkv +邓伦+孙怡-想把我唱给你听,http://em.21dtv.com/songs/60136910.mkv +邓伦-爱我所爱,http://em.21dtv.com/songs/60136909.mkv +迪玛希+陈彦宏+周易+刘璐-一个忧伤者的求救,http://em.21dtv.com/songs/60136908.mkv +迪玛希+刘璐-秋意浓,http://em.21dtv.com/songs/60136907.mkv +迪子-一莲托生,http://em.21dtv.com/songs/60136906.mkv +辰亦儒-硬,http://em.21dtv.com/songs/60136905.mkv +路勇-菩萨座前,http://em.21dtv.com/songs/60136904.mkv +路勇-佛音,http://em.21dtv.com/songs/60136903.mkv +赵雷-画,http://em.21dtv.com/songs/60136902.mkv +赵雷-我们的时光,http://em.21dtv.com/songs/60136901.mkv +赵雷-妈妈,http://em.21dtv.com/songs/60136900.mkv +赵鑫-爱恨不容易,http://em.21dtv.com/songs/60136899.mkv +赵照-一匹白马,http://em.21dtv.com/songs/60136898.mkv +赵洪强-兄弟不分离,http://em.21dtv.com/songs/60136897.mkv +赵泽-老父亲,http://em.21dtv.com/songs/60136896.mkv +赵斌-铁了心忘记你,http://em.21dtv.com/songs/60136895.mkv +赵文卓-凯歌,http://em.21dtv.com/songs/60136894.mkv +赵安平-长歌清明祭,http://em.21dtv.com/songs/60136893.mkv +赵兵-时代尖兵,http://em.21dtv.com/songs/60136892.mkv +赵兵-如果有那么一天,http://em.21dtv.com/songs/60136891.mkv +赵一磊-爱情这杯酒,http://em.21dtv.com/songs/60136890.mkv +赵一磊-情债,http://em.21dtv.com/songs/60136889.mkv +赖伟锋-两个人的单身生活,http://em.21dtv.com/songs/60136888.mkv +赖仔-老同学,http://em.21dtv.com/songs/60136887.mkv +赖仔-I Need You,http://em.21dtv.com/songs/60136886.mkv +贾永久-站在海边的姑娘,http://em.21dtv.com/songs/60136885.mkv +贺燕-舞出精彩,http://em.21dtv.com/songs/60136884.mkv +贺敬轩-让全世界知道我爱你,http://em.21dtv.com/songs/60136883.mkv +贺敬轩-是我,http://em.21dtv.com/songs/60136882.mkv +贺敬轩-我可能谈了场假恋爱,http://em.21dtv.com/songs/60136881.mkv +贺敬轩-好闺蜜,http://em.21dtv.com/songs/60136880.mkv +贺敬轩-多希望是你,http://em.21dtv.com/songs/60136879.mkv +贺敬轩-夏日的思念,http://em.21dtv.com/songs/60136878.mkv +贺敬轩-Love U,http://em.21dtv.com/songs/60136877.mkv +贺娜-花弦月,http://em.21dtv.com/songs/60136876.mkv +贺娜-爱着大陕北,http://em.21dtv.com/songs/60136875.mkv +贺娜-做你的新娘,http://em.21dtv.com/songs/60136874.mkv +贺一航-最好的朋友,http://em.21dtv.com/songs/60136873.mkv +贺一航-明明爱你,http://em.21dtv.com/songs/60136872.mkv +费玉清+好妹妹乐队-屋檐下的思念,http://em.21dtv.com/songs/60136871.mkv +贯诗钦-好想你,http://em.21dtv.com/songs/60136870.mkv +谷小雨-边缘,http://em.21dtv.com/songs/60136869.mkv +谭嘉仪-陪着你走,http://em.21dtv.com/songs/60136868.mkv +谭嘉仪-我不归去,http://em.21dtv.com/songs/60136867.mkv +谭咏麟+谭维维-强者背后,http://em.21dtv.com/songs/60136866.mkv +谭咏麟+张学友-观,http://em.21dtv.com/songs/60136865.mkv +谭咏麟+五月天-脱胎换骨,http://em.21dtv.com/songs/60136864.mkv +谭咏麟+丁当-强求好吗,http://em.21dtv.com/songs/60136863.mkv +谢帝-绝世武神,http://em.21dtv.com/songs/60136862.mkv +谢嘉全-绑架,http://em.21dtv.com/songs/60136861.mkv +谢和弦+E SO-苹果,http://em.21dtv.com/songs/60136860.mkv +谢三宝-亲爱的老婆听我说,http://em.21dtv.com/songs/60136859.mkv +谎言留声机-一年,http://em.21dtv.com/songs/60136858.mkv +诗韵-相约经典,http://em.21dtv.com/songs/60136857.mkv +许魏洲-尖叫之夜,http://em.21dtv.com/songs/60136856.mkv +许靖韵-Shut Up,http://em.21dtv.com/songs/60136855.mkv +许阁-你这样的理由,http://em.21dtv.com/songs/60136854.mkv +许志安+杜丽莎-我还能爱谁,http://em.21dtv.com/songs/60136853.mkv +许廷铿-痛醒,http://em.21dtv.com/songs/60136852.mkv +许富凯-偷泪的小偷,http://em.21dtv.com/songs/60136851.mkv +许国星-永远和你在一起,http://em.21dtv.com/songs/60136850.mkv +许云上-雨,http://em.21dtv.com/songs/60136849.mkv +许云上-画笔,http://em.21dtv.com/songs/60136848.mkv +许书豪-爱上一个女孩,http://em.21dtv.com/songs/60136847.mkv +詹曼铃-生命的锁匙,http://em.21dtv.com/songs/60136846.mkv +詹曼铃-望秋风,http://em.21dtv.com/songs/60136845.mkv +詹曼铃-心静,http://em.21dtv.com/songs/60136844.mkv +詹曼铃-希望,http://em.21dtv.com/songs/60136843.mkv +[Group] +groupName=十六万歌曲MV等 - 113 +詹曼铃-少女的仰望,http://em.21dtv.com/songs/60136842.mkv +詹曼铃-一条情歌,http://em.21dtv.com/songs/60136841.mkv +西野カナ-パッ,http://em.21dtv.com/songs/60136840.mkv +西域木兰-弱肉强食,http://em.21dtv.com/songs/60136839.mkv +袁树雄-如果有一天我们都老了,http://em.21dtv.com/songs/60136838.mkv +袁小征-如虹,http://em.21dtv.com/songs/60136837.mkv +蜜蜂少女队-I'm so ok,http://em.21dtv.com/songs/60136836.mkv +薛之谦+李好-为了遇见你,http://em.21dtv.com/songs/60136835.mkv +薛之谦+何洁-有没有,http://em.21dtv.com/songs/60136834.mkv +薛之谦-高尚,http://em.21dtv.com/songs/60136833.mkv +薛之谦-苏黎世的从前,http://em.21dtv.com/songs/60136832.mkv +薛之谦-绅士,http://em.21dtv.com/songs/60136831.mkv +薛之谦-有没有,http://em.21dtv.com/songs/60136830.mkv +薛之谦-暧昧,http://em.21dtv.com/songs/60136829.mkv +薛之谦-我害怕,http://em.21dtv.com/songs/60136828.mkv +薛之谦-动物世界,http://em.21dtv.com/songs/60136827.mkv +蔡淳佳-我是我,http://em.21dtv.com/songs/60136826.mkv +蔡依林-让爱传出去,http://em.21dtv.com/songs/60136825.mkv +蔡一杰-流泪的怪兽,http://em.21dtv.com/songs/60136824.mkv +蒋雪儿-爱河,http://em.21dtv.com/songs/60136823.mkv +蒋蓉-走下去,http://em.21dtv.com/songs/60136822.mkv +蒋蒋+小右-你是什么咖,http://em.21dtv.com/songs/60136821.mkv +蒋欣-不怕一个人,http://em.21dtv.com/songs/60136820.mkv +蒋明-你好陌生人,http://em.21dtv.com/songs/60136819.mkv +蒋文涵-阳光少年,http://em.21dtv.com/songs/60136818.mkv +蒋婴-淡念,http://em.21dtv.com/songs/60136817.mkv +董贞-静女思,http://em.21dtv.com/songs/60136816.mkv +落墨惊云-云谁思,http://em.21dtv.com/songs/60136815.mkv +萧正楠-不变的爱,http://em.21dtv.com/songs/60136814.mkv +萧全-你是自己的太阳,http://em.21dtv.com/songs/60136813.mkv +菲菲-故乡的路,http://em.21dtv.com/songs/60136812.mkv +菜籽-祝福新人,http://em.21dtv.com/songs/60136811.mkv +菊梓乔-手中沙,http://em.21dtv.com/songs/60136810.mkv +菊梓乔-傻瓜里的童话,http://em.21dtv.com/songs/60136809.mkv +菅田将晖-见たこともない景色,http://em.21dtv.com/songs/60136808.mkv +荒山亮-永远的家,http://em.21dtv.com/songs/60136807.mkv +范玮琪+张云凌+杨超毅+顾艺璇-最初的梦想,http://em.21dtv.com/songs/60136806.mkv +范玮琪-陪你,http://em.21dtv.com/songs/60136805.mkv +苗苗-水墨青花,http://em.21dtv.com/songs/60136804.mkv +苗春+虫虫-此情惘然,http://em.21dtv.com/songs/60136803.mkv +苗佳-揭竿而起的爱情,http://em.21dtv.com/songs/60136802.mkv +苏菲-新角色,http://em.21dtv.com/songs/60136801.mkv +苏灿-爱的赌注,http://em.21dtv.com/songs/60136800.mkv +苏佳欣-靠自己骨头长肉,http://em.21dtv.com/songs/60136799.mkv +苏佩卿+光良-宁静海,http://em.21dtv.com/songs/60136798.mkv +花僮+张北北-我没有你想的那么脆弱,http://em.21dtv.com/songs/60136797.mkv +艺夲-老家,http://em.21dtv.com/songs/60136796.mkv +艺夲-原来,http://em.21dtv.com/songs/60136795.mkv +艺夲-信,http://em.21dtv.com/songs/60136794.mkv +良一+艾莉-幸福等伫这,http://em.21dtv.com/songs/60136793.mkv +良一+艾莉-各自分飞,http://em.21dtv.com/songs/60136792.mkv +良一+幸妏-风中的爱,http://em.21dtv.com/songs/60136791.mkv +良一+吴幸妏-爱着那奴娃,http://em.21dtv.com/songs/60136790.mkv +良一-袂冻放,http://em.21dtv.com/songs/60136789.mkv +良一-最后才知,http://em.21dtv.com/songs/60136788.mkv +良一-春天后母面,http://em.21dtv.com/songs/60136787.mkv +良一-我呒惊,http://em.21dtv.com/songs/60136786.mkv +臻言-爱情的戏,http://em.21dtv.com/songs/60136785.mkv +腾格尔-万古仙穹,http://em.21dtv.com/songs/60136784.mkv +胡鸿钧-情人自扰,http://em.21dtv.com/songs/60136783.mkv +胡雪珊-幸福海洋,http://em.21dtv.com/songs/60136782.mkv +胡芳芳-Forever 不回头,http://em.21dtv.com/songs/60136781.mkv +胡梅雄-纳木错宽阔却不是海洋,http://em.21dtv.com/songs/60136780.mkv +胡彦斌+莫安琪+罗杨云子+薛明媛-红颜,http://em.21dtv.com/songs/60136779.mkv +胡彦斌+莫安琪-男人KTV,http://em.21dtv.com/songs/60136778.mkv +胡婷婷-生查子 元夕,http://em.21dtv.com/songs/60136777.mkv +胡婷婷-爱莲说,http://em.21dtv.com/songs/60136776.mkv +胡婷婷-春夜喜雨,http://em.21dtv.com/songs/60136775.mkv +胡婷婷-早发白帝城,http://em.21dtv.com/songs/60136774.mkv +胡婷婷-凉州词,http://em.21dtv.com/songs/60136773.mkv +胡婷婷-元日,http://em.21dtv.com/songs/60136772.mkv +肖依依-重庆的味道,http://em.21dtv.com/songs/60136771.mkv +肖丫丫-心伤,http://em.21dtv.com/songs/60136770.mkv +老鬼团-老鬼心不死,http://em.21dtv.com/songs/60136769.mkv +翁航融-梦想家,http://em.21dtv.com/songs/60136768.mkv +翁航融-你比想象中勇敢,http://em.21dtv.com/songs/60136767.mkv +群星-青春白皮书,http://em.21dtv.com/songs/60136766.mkv +群星-我想和你唱,http://em.21dtv.com/songs/60136765.mkv +群星-四海,http://em.21dtv.com/songs/60136764.mkv +罗艺达-向着太阳,http://em.21dtv.com/songs/60136763.mkv +罗成萍-静秘翁丁,http://em.21dtv.com/songs/60136762.mkv +罗帅-这一生的回忆,http://em.21dtv.com/songs/60136761.mkv +罗帅-后悔没有珍惜你,http://em.21dtv.com/songs/60136760.mkv +罗帅-叹息,http://em.21dtv.com/songs/60136759.mkv +纪绮昭-中国梦腾鲤情,http://em.21dtv.com/songs/60136758.mkv +红陌-亲爱的我爱你,http://em.21dtv.com/songs/60136757.mkv +索丽娜-爱到忘了我,http://em.21dtv.com/songs/60136756.mkv +箱子君-等你回头,http://em.21dtv.com/songs/60136755.mkv +简弘亦-天问,http://em.21dtv.com/songs/60136754.mkv +符致逸-灵魂独舞,http://em.21dtv.com/songs/60136753.mkv +笑天-我并没那么坚强,http://em.21dtv.com/songs/60136752.mkv +税子洺-我爱你,http://em.21dtv.com/songs/60136751.mkv +程飞鸣-皇冠在闪耀,http://em.21dtv.com/songs/60136750.mkv +程诗迦-闪烁,http://em.21dtv.com/songs/60136749.mkv +程恢弘-堂吉诃德,http://em.21dtv.com/songs/60136748.mkv +秦川-阳光照在我脸上,http://em.21dtv.com/songs/60136747.mkv +秦川-梦中的妈妈,http://em.21dtv.com/songs/60136746.mkv +秘密俱乐部-小男孩,http://em.21dtv.com/songs/60136745.mkv +科尔沁夫-回家,http://em.21dtv.com/songs/60136744.mkv +祥龙-酒量,http://em.21dtv.com/songs/60136743.mkv +石雨菲-帘外相思雨,http://em.21dtv.com/songs/60136742.mkv +盛云龙-多年前的兄弟,http://em.21dtv.com/songs/60136741.mkv +白云-暗恋,http://em.21dtv.com/songs/60136740.mkv +田率-高不成低不就,http://em.21dtv.com/songs/60136739.mkv +甄强-金钱世界,http://em.21dtv.com/songs/60136738.mkv +甄强-孤独的老狼,http://em.21dtv.com/songs/60136737.mkv +王馨-鸳鸯戏水,http://em.21dtv.com/songs/60136736.mkv +王雪懿-隐形的翅膀,http://em.21dtv.com/songs/60136735.mkv +王雪懿-老师,http://em.21dtv.com/songs/60136734.mkv +王雪懿-A Little Love,http://em.21dtv.com/songs/60136733.mkv +王铮亮+陈楚生+王栎鑫-唯一 球球 Demo 亲亲我的宝贝,http://em.21dtv.com/songs/60136732.mkv +王铮亮-幸福时光机,http://em.21dtv.com/songs/60136731.mkv +一起放手 时间都去哪儿了,http://em.21dtv.com/songs/60136730.mkv +王铮亮-You Raise Me Up,http://em.21dtv.com/songs/60136729.mkv +王铮亮-Kiss Goodbye,http://em.21dtv.com/songs/60136728.mkv +王谦-莫尼山,http://em.21dtv.com/songs/60136727.mkv +王蓉-啪啪S舞,http://em.21dtv.com/songs/60136726.mkv +王菀之-突然一生人,http://em.21dtv.com/songs/60136725.mkv +王莉-大美西藏,http://em.21dtv.com/songs/60136724.mkv +王芊桦-柠檬草的味道,http://em.21dtv.com/songs/60136723.mkv +王羽泽-想一个人才会孤单,http://em.21dtv.com/songs/60136722.mkv +王紫菲-老公真的不容易,http://em.21dtv.com/songs/60136721.mkv +王祝海-细雨情丝,http://em.21dtv.com/songs/60136720.mkv +王祝海-等到来生再爱你,http://em.21dtv.com/songs/60136719.mkv +王祝海-明月乡愁,http://em.21dtv.com/songs/60136718.mkv +王珞丹+姚晨-当时的月亮,http://em.21dtv.com/songs/60136717.mkv +王珞丹-直来直往,http://em.21dtv.com/songs/60136716.mkv +王珞丹-左边,http://em.21dtv.com/songs/60136715.mkv +王爱华-原配的泪小三的罪,http://em.21dtv.com/songs/60136714.mkv +王正尧-凤阳花鼓,http://em.21dtv.com/songs/60136713.mkv +王月华-中国茶,http://em.21dtv.com/songs/60136712.mkv +王慧强-就当做是我不对,http://em.21dtv.com/songs/60136711.mkv +王小荣-你知不知道我对你的好,http://em.21dtv.com/songs/60136710.mkv +王小荣-你知不知道我对你的好,http://em.21dtv.com/songs/60136709.mkv +王子文-我管可爱你管帅,http://em.21dtv.com/songs/60136708.mkv +王嘉尔-拜托了冰箱,http://em.21dtv.com/songs/60136707.mkv +王嘉仪-愁滋味,http://em.21dtv.com/songs/60136706.mkv +王佳佳-有梦不觉夜长,http://em.21dtv.com/songs/60136705.mkv +牛奶咖啡-咖喱咖啡,http://em.21dtv.com/songs/60136704.mkv +牛国长-午夜香茗,http://em.21dtv.com/songs/60136703.mkv +牙牙乐-找不到,http://em.21dtv.com/songs/60136702.mkv +熊梓淇-画师,http://em.21dtv.com/songs/60136701.mkv +灭火器Fire EX-Song For You,http://em.21dtv.com/songs/60136700.mkv +潘柯夫-地藏心,http://em.21dtv.com/songs/60136699.mkv +潇俊郎-哥不寂寞有老婆,http://em.21dtv.com/songs/60136698.mkv +湛郎+萧雨-姑娘莫犟,http://em.21dtv.com/songs/60136697.mkv +海鸣威-离开为了更好的回来,http://em.21dtv.com/songs/60136696.mkv +海鸣威-分开以后,http://em.21dtv.com/songs/60136695.mkv +浅笑-爱情的戏,http://em.21dtv.com/songs/60136694.mkv +流苏-谁弹琵琶问君愁,http://em.21dtv.com/songs/60136693.mkv +洪荣宏-手中玫瑰花,http://em.21dtv.com/songs/60136692.mkv +洪太-孤单,http://em.21dtv.com/songs/60136691.mkv +洪卓立-带着骨灰去旅行,http://em.21dtv.com/songs/60136690.mkv +洛天依+言和+乐正绫-还不是因为你长得不好看,http://em.21dtv.com/songs/60136689.mkv +泳儿+黎瑞恩-摇篮曲,http://em.21dtv.com/songs/60136688.mkv +波拉-再让我为你醉一回,http://em.21dtv.com/songs/60136687.mkv +沙宝亮+陶晶莹-没有爱情藏得住,http://em.21dtv.com/songs/60136686.mkv +沙宝亮+徐怀钰-友情卡片,http://em.21dtv.com/songs/60136685.mkv +沙宝亮-没有爱情藏得住,http://em.21dtv.com/songs/60136684.mkv +沙宝亮-友情卡片,http://em.21dtv.com/songs/60136683.mkv +汪苏泷+江美琪-东京铁塔的幸福,http://em.21dtv.com/songs/60136682.mkv +汪苏泷-青春白皮书,http://em.21dtv.com/songs/60136681.mkv +汪苏泷-东京铁塔的幸福,http://em.21dtv.com/songs/60136680.mkv +汪守一-初恋,http://em.21dtv.com/songs/60136679.mkv +汪佩蓉-有心唱情歌,http://em.21dtv.com/songs/60136678.mkv +江珊+姚晨-我愿意,http://em.21dtv.com/songs/60136677.mkv +江珊-被遗忘的时光 我要你,http://em.21dtv.com/songs/60136676.mkv +江珊-爱的代价,http://em.21dtv.com/songs/60136675.mkv +江珊-Memory,http://em.21dtv.com/songs/60136674.mkv +江洋+福州警官艺术团-让我告诉你,http://em.21dtv.com/songs/60136673.mkv +江一燕-Let's go Belt and Road,http://em.21dtv.com/songs/60136672.mkv +民雄-男人难当,http://em.21dtv.com/songs/60136671.mkv +毛泽少-思美人,http://em.21dtv.com/songs/60136670.mkv +毛泽少-天问,http://em.21dtv.com/songs/60136669.mkv +殷志源+李秀贤+金恩菲-Love song,http://em.21dtv.com/songs/60136668.mkv +歌莉雅-是否想离自己远一点,http://em.21dtv.com/songs/60136667.mkv +歌浴森-会发光的梦想,http://em.21dtv.com/songs/60136666.mkv +欧宁安娜-送别,http://em.21dtv.com/songs/60136665.mkv +欣哲-舞动梦想,http://em.21dtv.com/songs/60136664.mkv +棱镜-机场雷雨,http://em.21dtv.com/songs/60136663.mkv +梦娜-刚好遇见你,http://em.21dtv.com/songs/60136662.mkv +梅朵-默默祝福你,http://em.21dtv.com/songs/60136661.mkv +梅朵-阿弥陀佛,http://em.21dtv.com/songs/60136660.mkv +梅朵-若你懂我心,http://em.21dtv.com/songs/60136659.mkv +梅朵-缘来是一家,http://em.21dtv.com/songs/60136658.mkv +梅朵-祝福你,http://em.21dtv.com/songs/60136657.mkv +梅朵-相思愁,http://em.21dtv.com/songs/60136656.mkv +梅朵-男人的背后,http://em.21dtv.com/songs/60136655.mkv +梅朵-爱到老爱不老,http://em.21dtv.com/songs/60136654.mkv +梅朵-梅花香,http://em.21dtv.com/songs/60136653.mkv +梅朵-新一生一世爱能几回,http://em.21dtv.com/songs/60136652.mkv +梅朵-我与你,http://em.21dtv.com/songs/60136651.mkv +梅朵-愿做菩萨那朵莲,http://em.21dtv.com/songs/60136650.mkv +梅朵-心上的一棵树,http://em.21dtv.com/songs/60136649.mkv +梅朵-女人的泪男人的罪,http://em.21dtv.com/songs/60136648.mkv +梅朵-回家的感觉真好,http://em.21dtv.com/songs/60136647.mkv +梅朵-同学情,http://em.21dtv.com/songs/60136646.mkv +梅朵-半个月亮半片月光,http://em.21dtv.com/songs/60136645.mkv +梅朵-千年守候,http://em.21dtv.com/songs/60136644.mkv +梅朵-别让女人流泪,http://em.21dtv.com/songs/60136643.mkv +梅朵-一生修行,http://em.21dtv.com/songs/60136642.mkv +梁钊峰-别消失,http://em.21dtv.com/songs/60136641.mkv +梁译木+江珊-等你爱我,http://em.21dtv.com/songs/60136640.mkv +梁译木+江珊-小幸运,http://em.21dtv.com/songs/60136639.mkv +梁译木-玫瑰,http://em.21dtv.com/songs/60136638.mkv +梁译木-Shall We Talk,http://em.21dtv.com/songs/60136637.mkv +梁良-幸福花季,http://em.21dtv.com/songs/60136636.mkv +梁川宇-不爱就放手吧,http://em.21dtv.com/songs/60136635.mkv +梁咏琪+陈明憙-胆小鬼,http://em.21dtv.com/songs/60136634.mkv +梁咏琪-错过,http://em.21dtv.com/songs/60136633.mkv +梁咏琪-花火,http://em.21dtv.com/songs/60136632.mkv +梁咏琪-短发,http://em.21dtv.com/songs/60136631.mkv +梁咏琪-新鲜,http://em.21dtv.com/songs/60136630.mkv +梁咏琪-中意他,http://em.21dtv.com/songs/60136629.mkv +梁咏琪-B面第一首,http://em.21dtv.com/songs/60136628.mkv +梁古驰-悟懂,http://em.21dtv.com/songs/60136627.mkv +梁剑东-跳动,http://em.21dtv.com/songs/60136626.mkv +梁一贞-离开以后,http://em.21dtv.com/songs/60136625.mkv +柏磊-走,http://em.21dtv.com/songs/60136624.mkv +林熹瞳+艾威-囧男囧女,http://em.21dtv.com/songs/60136623.mkv +林欣锴-我唱哎沙吗,http://em.21dtv.com/songs/60136622.mkv +林明祯-不是不爱,http://em.21dtv.com/songs/60136621.mkv +林明祯-Change,http://em.21dtv.com/songs/60136620.mkv +林志颖-Amazing,http://em.21dtv.com/songs/60136619.mkv +林志颖-Amazing,http://em.21dtv.com/songs/60136618.mkv +林建涛-绝不投降,http://em.21dtv.com/songs/60136617.mkv +林圣杰-态度,http://em.21dtv.com/songs/60136616.mkv +林亭翰-不可能不爱你,http://em.21dtv.com/songs/60136615.mkv +林为音+林俊吉-一生只爱你,http://em.21dtv.com/songs/60136614.mkv +林为音-半梦半醒,http://em.21dtv.com/songs/60136613.mkv +杨黎+张雅涵-念无念念,http://em.21dtv.com/songs/60136612.mkv +杨黎-水心,http://em.21dtv.com/songs/60136611.mkv +杨雅涵-萤火虫,http://em.21dtv.com/songs/60136610.mkv +杨雅坤-谁不说俺家乡好,http://em.21dtv.com/songs/60136609.mkv +杨紫+吴昊宸-小酒窝,http://em.21dtv.com/songs/60136608.mkv +杨紫-蚯蚓,http://em.21dtv.com/songs/60136607.mkv +杨玏-梦,http://em.21dtv.com/songs/60136606.mkv +杨烁-吻你之时别再躲,http://em.21dtv.com/songs/60136605.mkv +杨清明-如果当初没有认识你,http://em.21dtv.com/songs/60136604.mkv +杨洋-熟悉的旋律,http://em.21dtv.com/songs/60136603.mkv +杨栋梁-爱一个人真的有错吗,http://em.21dtv.com/songs/60136602.mkv +杨栋梁-不要用爱的名义剪短我的翅膀,http://em.21dtv.com/songs/60136601.mkv +杨斌+沙美玉-爱的圣殿,http://em.21dtv.com/songs/60136600.mkv +杨宗纬+范甲君-流浪记,http://em.21dtv.com/songs/60136599.mkv +杨宗纬+杨旭+于东然+范甲君-其实都没有,http://em.21dtv.com/songs/60136598.mkv +杨宗纬-天龙八部,http://em.21dtv.com/songs/60136597.mkv +杜丽莎-我还能爱谁,http://em.21dtv.com/songs/60136596.mkv +村川梨衣-水色のFantasy,http://em.21dtv.com/songs/60136595.mkv +村川梨衣-Tiny Tiny,http://em.21dtv.com/songs/60136594.mkv +李鸿玉-扶贫之歌,http://em.21dtv.com/songs/60136593.mkv +李鸿玉-你的眼泪,http://em.21dtv.com/songs/60136592.mkv +李雯-致爸爸,http://em.21dtv.com/songs/60136591.mkv +李闻霖-诙谐,http://em.21dtv.com/songs/60136590.mkv +李金平-路过爱情,http://em.21dtv.com/songs/60136589.mkv +李金平-让思念陶醉,http://em.21dtv.com/songs/60136588.mkv +李谷一+李双江-梅竹同心永相爱,http://em.21dtv.com/songs/60136587.mkv +李西子-敬酒歌,http://em.21dtv.com/songs/60136586.mkv +李行亮-原来都是梦,http://em.21dtv.com/songs/60136585.mkv +李萌-住在通州,http://em.21dtv.com/songs/60136584.mkv +李菓-黑色冬季,http://em.21dtv.com/songs/60136583.mkv +李芳蕊-情迷花蕊,http://em.21dtv.com/songs/60136582.mkv +李艾-清明祭,http://em.21dtv.com/songs/60136581.mkv +李艳-幻影幻灭,http://em.21dtv.com/songs/60136580.mkv +李秋睿-炫境,http://em.21dtv.com/songs/60136579.mkv +李玲玉+尤泓斐-美人吟,http://em.21dtv.com/songs/60136578.mkv +李玲玉-粉红色的回忆,http://em.21dtv.com/songs/60136577.mkv +李玲玉-牧野情歌,http://em.21dtv.com/songs/60136576.mkv +李玲玉-山寨相亲,http://em.21dtv.com/songs/60136575.mkv +李玲玉-天竺少女,http://em.21dtv.com/songs/60136574.mkv +李森-城市套路深我要回农村,http://em.21dtv.com/songs/60136573.mkv +李晓舟-杉杉兰歌,http://em.21dtv.com/songs/60136572.mkv +李晓玉-那年今日,http://em.21dtv.com/songs/60136571.mkv +李晓杰-Hello 大叔,http://em.21dtv.com/songs/60136570.mkv +李强+张喜英-山海惠东,http://em.21dtv.com/songs/60136569.mkv +李建科-祝福中华,http://em.21dtv.com/songs/60136568.mkv +李幸倪+郭伟亮-双双,http://em.21dtv.com/songs/60136567.mkv +李幸倪-天变地变情不变,http://em.21dtv.com/songs/60136566.mkv +李宗任-网恋情未了,http://em.21dtv.com/songs/60136565.mkv +李好-今天等我来,http://em.21dtv.com/songs/60136564.mkv +李天平+潘子华-给我杯酒,http://em.21dtv.com/songs/60136563.mkv +李南希-草语,http://em.21dtv.com/songs/60136562.mkv +李克勤+陈冰-大雨,http://em.21dtv.com/songs/60136561.mkv +李健达+张锦程-好朋友,http://em.21dtv.com/songs/60136560.mkv +李人杰-咖啡已冷,http://em.21dtv.com/songs/60136559.mkv +权珍雅-Fly away,http://em.21dtv.com/songs/60136558.mkv +朴宰范-Hulk Hogan,http://em.21dtv.com/songs/60136557.mkv +朴宝蓝+Basick-命运一样,http://em.21dtv.com/songs/60136556.mkv +朱隽言-住在地球晒夕阳,http://em.21dtv.com/songs/60136555.mkv +朱戬-三更时分柳树前,http://em.21dtv.com/songs/60136554.mkv +朱兴东-喷嚏,http://em.21dtv.com/songs/60136553.mkv +朱一龙-疯狂的爱,http://em.21dtv.com/songs/60136552.mkv +未来-为我加油,http://em.21dtv.com/songs/60136551.mkv +木森+谭咏麟-讲不出再见,http://em.21dtv.com/songs/60136550.mkv +木森+南方三叔叔+谭咏麟+王伟东-朋友,http://em.21dtv.com/songs/60136549.mkv +望海高歌-老娘亲,http://em.21dtv.com/songs/60136548.mkv +望海高歌-爱的路上我和你[原伴],http://em.21dtv.com/songs/60136547.mkv +望海高歌-残忍的结局,http://em.21dtv.com/songs/60136546.mkv +望海高歌-一爱就是一万年,http://em.21dtv.com/songs/60136545.mkv +月上林梢+龙影云-跟爱一起走,http://em.21dtv.com/songs/60136544.mkv +曾韵融-但愿人长久,http://em.21dtv.com/songs/60136543.mkv +曾沛慈-我爱你,http://em.21dtv.com/songs/60136542.mkv +曾春年+周恬熙-想念一个人,http://em.21dtv.com/songs/60136541.mkv +曾敏-来世情缘,http://em.21dtv.com/songs/60136540.mkv +曾咏熙+刘雨昕+张悠然-穷得只剩音乐,http://em.21dtv.com/songs/60136539.mkv +曹雅雯-海阔天空,http://em.21dtv.com/songs/60136538.mkv +智英-女子モドキ,http://em.21dtv.com/songs/60136537.mkv +景子谦+初晴van-琴女,http://em.21dtv.com/songs/60136536.mkv +晨熙-阴差阳错,http://em.21dtv.com/songs/60136535.mkv +晨熙-给你幸福,http://em.21dtv.com/songs/60136534.mkv +晓月老板-思凡,http://em.21dtv.com/songs/60136533.mkv +晓晓+香山飘红叶-最美的等待,http://em.21dtv.com/songs/60136532.mkv +晓晓-我把思念捎给你,http://em.21dtv.com/songs/60136531.mkv +晓依-说好了不再为你流泪,http://em.21dtv.com/songs/60136530.mkv +晓依-月下独依,http://em.21dtv.com/songs/60136529.mkv +晏文彬-隔世的爱,http://em.21dtv.com/songs/60136528.mkv +晏文彬-谢谢你没放弃,http://em.21dtv.com/songs/60136527.mkv +晏文彬-你说长大以后要嫁给我,http://em.21dtv.com/songs/60136526.mkv +晏文彬-你是否听着,http://em.21dtv.com/songs/60136525.mkv +星月组合-记得咱的家,http://em.21dtv.com/songs/60136524.mkv +星弟-放弃,http://em.21dtv.com/songs/60136523.mkv +易烊千玺-离骚,http://em.21dtv.com/songs/60136522.mkv +明阳+金波-最亲的人,http://em.21dtv.com/songs/60136521.mkv +明阳+玛丽亚+好弟+王国群-中国梦,http://em.21dtv.com/songs/60136520.mkv +明阳-过节回家,http://em.21dtv.com/songs/60136519.mkv +明阳-让爱飞翔,http://em.21dtv.com/songs/60136518.mkv +明阳-爱的种子,http://em.21dtv.com/songs/60136517.mkv +明阳-激流勇进,http://em.21dtv.com/songs/60136516.mkv +明阳-中国舞起来,http://em.21dtv.com/songs/60136515.mkv +无悔-今生的爱前世的债,http://em.21dtv.com/songs/60136514.mkv +方皓玟-Common Sense,http://em.21dtv.com/songs/60136513.mkv +方瑞娥-红颜花,http://em.21dtv.com/songs/60136512.mkv +方瑞娥-女人的愿望,http://em.21dtv.com/songs/60136511.mkv +方瑄-燃起草原爱情的火,http://em.21dtv.com/songs/60136510.mkv +方宥心-飞啊飞,http://em.21dtv.com/songs/60136509.mkv +方圆-橘颂,http://em.21dtv.com/songs/60136508.mkv +新予-前朝今世,http://em.21dtv.com/songs/60136507.mkv +操申满-携手升龙,http://em.21dtv.com/songs/60136506.mkv +操奕恒+万莉-江南北国,http://em.21dtv.com/songs/60136505.mkv +扎西华旦-求神,http://em.21dtv.com/songs/60136504.mkv +扈岩岩-来得及,http://em.21dtv.com/songs/60136503.mkv +戚雪-鱼和飞鸟的故事,http://em.21dtv.com/songs/60136502.mkv +戚薇-雨天,http://em.21dtv.com/songs/60136501.mkv +戚薇-梦诛缘 春生,http://em.21dtv.com/songs/60136500.mkv +成泉-派头十足,http://em.21dtv.com/songs/60136499.mkv +成方圆-在时光的记忆中看见你,http://em.21dtv.com/songs/60136498.mkv +恭硕良-爱后记,http://em.21dtv.com/songs/60136497.mkv +恒恒-永远的闺蜜,http://em.21dtv.com/songs/60136496.mkv +志王-你的爱我不明白,http://em.21dtv.com/songs/60136495.mkv +德格金+迪拉甘-森林中的鄂温克,http://em.21dtv.com/songs/60136494.mkv +徐靖博-纪念,http://em.21dtv.com/songs/60136493.mkv +徐金慧-沂蒙山小调,http://em.21dtv.com/songs/60136492.mkv +徐聪-注孤生,http://em.21dtv.com/songs/60136491.mkv +徐琦-燃烧,http://em.21dtv.com/songs/60136490.mkv +徐熙娣-小时候,http://em.21dtv.com/songs/60136489.mkv +徐浩-后来呢,http://em.21dtv.com/songs/60136488.mkv +徐林-烦人的星期一,http://em.21dtv.com/songs/60136487.mkv +徐子崴-失落的缘,http://em.21dtv.com/songs/60136486.mkv +徐天佑-我们没有不期而遇,http://em.21dtv.com/songs/60136485.mkv +徐大乐-春天的17个瞬间,http://em.21dtv.com/songs/60136484.mkv +徐向东-还有八百年,http://em.21dtv.com/songs/60136483.mkv +徐千雅-苏州游,http://em.21dtv.com/songs/60136482.mkv +徐千雅-父亲,http://em.21dtv.com/songs/60136481.mkv +徐千雅-杭州寻踪,http://em.21dtv.com/songs/60136480.mkv +徐千雅-岁月之影,http://em.21dtv.com/songs/60136479.mkv +彭运铝-初心不忘,http://em.21dtv.com/songs/60136478.mkv +彭清-错觉,http://em.21dtv.com/songs/60136477.mkv +彭佳慧-贪婪,http://em.21dtv.com/songs/60136476.mkv +张静-心中的歌声寄给妈,http://em.21dtv.com/songs/60136475.mkv +张靓颖-思美人,http://em.21dtv.com/songs/60136474.mkv +张震岳+E SO-思念是一种病,http://em.21dtv.com/songs/60136473.mkv +张译丹-春风渡水,http://em.21dtv.com/songs/60136472.mkv +张莹莹-江南夜色,http://em.21dtv.com/songs/60136471.mkv +张莹莹-云水恋,http://em.21dtv.com/songs/60136470.mkv +张莲花-江西姑娘,http://em.21dtv.com/songs/60136469.mkv +张莲花-映山红又红,http://em.21dtv.com/songs/60136468.mkv +张芸京+大张伟-留心,http://em.21dtv.com/songs/60136467.mkv +张芸京-留心,http://em.21dtv.com/songs/60136466.mkv +张艺兴-祈愿,http://em.21dtv.com/songs/60136465.mkv +张翠萍-亲爱的老公听我说,http://em.21dtv.com/songs/60136464.mkv +张羿凡-湖,http://em.21dtv.com/songs/60136463.mkv +张羿凡-吾爱,http://em.21dtv.com/songs/60136462.mkv +张美仪-深海,http://em.21dtv.com/songs/60136461.mkv +张秀卿+庄振凯-坚持的爱,http://em.21dtv.com/songs/60136460.mkv +张秀卿-阿哥哥,http://em.21dtv.com/songs/60136459.mkv +张秀卿-车票,http://em.21dtv.com/songs/60136458.mkv +张秀卿-痴情梦,http://em.21dtv.com/songs/60136457.mkv +张秀卿-无声的思念,http://em.21dtv.com/songs/60136456.mkv +张秀卿-心声泪,http://em.21dtv.com/songs/60136455.mkv +张秀卿-坚强的女性,http://em.21dtv.com/songs/60136454.mkv +张秀卿-为你放袂落,http://em.21dtv.com/songs/60136453.mkv +张碧晨+唐倩-年轮,http://em.21dtv.com/songs/60136452.mkv +张生艳-雨荷的等待,http://em.21dtv.com/songs/60136451.mkv +张生艳-抢红包,http://em.21dtv.com/songs/60136450.mkv +张生艳-多彩旗袍,http://em.21dtv.com/songs/60136449.mkv +张狄-蓝天下的高原,http://em.21dtv.com/songs/60136448.mkv +张淳媛-学会转身,http://em.21dtv.com/songs/60136447.mkv +张涵予+黎明-大宝,http://em.21dtv.com/songs/60136446.mkv +张欣-幸福的列车开往天门站,http://em.21dtv.com/songs/60136445.mkv +张梓瑶-桃花渡,http://em.21dtv.com/songs/60136444.mkv +张梓瑶-枯萎,http://em.21dtv.com/songs/60136443.mkv +张梓瑶-寂寞高手,http://em.21dtv.com/songs/60136442.mkv +张梓瑶-城中事,http://em.21dtv.com/songs/60136441.mkv +张梓瑶-困城,http://em.21dtv.com/songs/60136440.mkv +张梓瑶-哭着醒来的人,http://em.21dtv.com/songs/60136439.mkv +张梓瑶-你走以后,http://em.21dtv.com/songs/60136438.mkv +张梓瑶-以后的以后的以后,http://em.21dtv.com/songs/60136437.mkv +张朕清-乌苏里船歌,http://em.21dtv.com/songs/60136436.mkv +张明明-忘记的誓言,http://em.21dtv.com/songs/60136435.mkv +张敬轩-好时辰,http://em.21dtv.com/songs/60136434.mkv +张怡诺-如果你爱上她,http://em.21dtv.com/songs/60136433.mkv +张怡诺-好好说话,http://em.21dtv.com/songs/60136432.mkv +张德兰-春光美,http://em.21dtv.com/songs/60136431.mkv +张小厚-很高兴认识你,http://em.21dtv.com/songs/60136430.mkv +张小五-娘做的饭,http://em.21dtv.com/songs/60136429.mkv +张家成-梦回延安,http://em.21dtv.com/songs/60136428.mkv +张家成-对酒当歌,http://em.21dtv.com/songs/60136427.mkv +张宇轩-梦魇,http://em.21dtv.com/songs/60136426.mkv +张嘉旭-从早忙到晚,http://em.21dtv.com/songs/60136425.mkv +张喜英-巽寮湾巽寮湾,http://em.21dtv.com/songs/60136424.mkv +张喜秋-迟到的明白,http://em.21dtv.com/songs/60136423.mkv +张北北-在哪呢,http://em.21dtv.com/songs/60136422.mkv +张信哲-迁徙,http://em.21dtv.com/songs/60136421.mkv +张云凌+范玮琪-最重要的决定,http://em.21dtv.com/songs/60136420.mkv +张书姚+张书南-爱无边际,http://em.21dtv.com/songs/60136419.mkv +张书南-爱的路上干万里,http://em.21dtv.com/songs/60136418.mkv +张为-老婆辛苦了,http://em.21dtv.com/songs/60136417.mkv +张东朗-画里含山,http://em.21dtv.com/songs/60136416.mkv +廖毅华-我的爱今生只为你,http://em.21dtv.com/songs/60136415.mkv +廖昌永-登天台,http://em.21dtv.com/songs/60136414.mkv +康慷-万福万宁,http://em.21dtv.com/songs/60136413.mkv +庞龙-躲在心里的时光,http://em.21dtv.com/songs/60136412.mkv +年才让-藏地传奇,http://em.21dtv.com/songs/60136411.mkv +年才让-花开舟曲,http://em.21dtv.com/songs/60136410.mkv +常石磊-天地眉间,http://em.21dtv.com/songs/60136409.mkv +带泪的鱼-怎么还是没有时间陪我,http://em.21dtv.com/songs/60136408.mkv +帅霖-思美人,http://em.21dtv.com/songs/60136407.mkv +巴桑拉姆-布达拉宫的月光,http://em.21dtv.com/songs/60136406.mkv +巫淑琳-把心留给你惠东,http://em.21dtv.com/songs/60136405.mkv +巨敏+阿牛哥-花儿美,http://em.21dtv.com/songs/60136404.mkv +崔阿扎-算了,http://em.21dtv.com/songs/60136403.mkv +崔译文-包楞调,http://em.21dtv.com/songs/60136402.mkv +崔明-步步伤心,http://em.21dtv.com/songs/60136401.mkv +崔博-什么状况,http://em.21dtv.com/songs/60136400.mkv +尹飞儿-水中的月亮,http://em.21dtv.com/songs/60136399.mkv +尹飞儿-一起向前跑,http://em.21dtv.com/songs/60136398.mkv +尹冰-么么哒,http://em.21dtv.com/songs/60136397.mkv +小肥-差一点,http://em.21dtv.com/songs/60136396.mkv +小男孩乐团-等着你回来,http://em.21dtv.com/songs/60136395.mkv +小曾-羡慕,http://em.21dtv.com/songs/60136394.mkv +小旭GIRLS-牵心,http://em.21dtv.com/songs/60136393.mkv +小宇-惯性取暖,http://em.21dtv.com/songs/60136392.mkv +小S-小时候,http://em.21dtv.com/songs/60136391.mkv +容祖儿-麻烦你,http://em.21dtv.com/songs/60136390.mkv +容祖儿-最好时光,http://em.21dtv.com/songs/60136389.mkv +家家-家家酒,http://em.21dtv.com/songs/60136388.mkv +宫小宇-为你梳妆,http://em.21dtv.com/songs/60136387.mkv +宗义博-单身狗,http://em.21dtv.com/songs/60136386.mkv +宋飞-我爱的女人变了心,http://em.21dtv.com/songs/60136385.mkv +宋旭+宋美睿-爱的陪伴,http://em.21dtv.com/songs/60136384.mkv +宋念宇-惯性取暖,http://em.21dtv.com/songs/60136383.mkv +宋季英-想你,http://em.21dtv.com/songs/60136382.mkv +安苡葳+许志豪-速力八,http://em.21dtv.com/songs/60136381.mkv +安苡葳-黑白无常,http://em.21dtv.com/songs/60136380.mkv +安苡葳-爱得嫑嫑,http://em.21dtv.com/songs/60136379.mkv +安东阳+司徒兰芳-你开心所以我快乐,http://em.21dtv.com/songs/60136378.mkv +孙豆尔-妈妈,http://em.21dtv.com/songs/60136377.mkv +孙豆尔-再次相见,http://em.21dtv.com/songs/60136376.mkv +孙耀威-Its My Day,http://em.21dtv.com/songs/60136375.mkv +孙江枫-我的情歌,http://em.21dtv.com/songs/60136374.mkv +孙小聪-朋友别哭,http://em.21dtv.com/songs/60136373.mkv +孙宇-花开等你来,http://em.21dtv.com/songs/60136372.mkv +孙华+居子涵-下一站幸福,http://em.21dtv.com/songs/60136371.mkv +字金美-雨夜,http://em.21dtv.com/songs/60136370.mkv +字金美-心梦,http://em.21dtv.com/songs/60136369.mkv +媛媛-美了三亚醉了我,http://em.21dtv.com/songs/60136368.mkv +媛媛-梦想光荣 与美同行,http://em.21dtv.com/songs/60136367.mkv +娜宝-怼怼怼,http://em.21dtv.com/songs/60136366.mkv +娇兰 阿里木江-花儿为什么这样红,http://em.21dtv.com/songs/60136365.mkv +威仔-我会原谅,http://em.21dtv.com/songs/60136364.mkv +姜玉阳-盈月,http://em.21dtv.com/songs/60136363.mkv +姚晨-贝加尔湖畔,http://em.21dtv.com/songs/60136362.mkv +姚晨-开到荼蘼,http://em.21dtv.com/songs/60136361.mkv +姚晨-大鱼,http://em.21dtv.com/songs/60136360.mkv +姚嘉儿-空气草,http://em.21dtv.com/songs/60136359.mkv +好妹妹乐队-杜鹃鸟的黄昏,http://em.21dtv.com/songs/60136358.mkv +好妹妹乐队-屋檐下的思念,http://em.21dtv.com/songs/60136357.mkv +央措柯秀-丝路雨,http://em.21dtv.com/songs/60136356.mkv +大鹏+MC天佑-一人饮酒醉,http://em.21dtv.com/songs/60136355.mkv +大贺兄弟-妈妈说,http://em.21dtv.com/songs/60136354.mkv +大光-男人的泪,http://em.21dtv.com/songs/60136353.mkv +夜の本気ダンス-Shiny,http://em.21dtv.com/songs/60136352.mkv +多元神话-神州舞起来,http://em.21dtv.com/songs/60136351.mkv +夏滨-远行,http://em.21dtv.com/songs/60136350.mkv +夏滨-无处可藏,http://em.21dtv.com/songs/60136349.mkv +夏滨-南山南诸暨版,http://em.21dtv.com/songs/60136348.mkv +夏滨-Always,http://em.21dtv.com/songs/60136347.mkv +夏婉安-习惯,http://em.21dtv.com/songs/60136346.mkv +夏天Alex-很爱很爱的,http://em.21dtv.com/songs/60136345.mkv +増田有华-爱してたの,http://em.21dtv.com/songs/60136344.mkv +善莹-寂寞之旅,http://em.21dtv.com/songs/60136343.mkv +善莹-只怕错过你,http://em.21dtv.com/songs/60136342.mkv +唯莎-没有你在真的好孤单,http://em.21dtv.com/songs/60136341.mkv +唯莎-没有你在真的好孤单,http://em.21dtv.com/songs/60136340.mkv +唐心-越闪越爱,http://em.21dtv.com/songs/60136339.mkv +唐古-心慌,http://em.21dtv.com/songs/60136338.mkv +唐古-你的过去我不介意,http://em.21dtv.com/songs/60136337.mkv +唐丞武-校车上的朋友,http://em.21dtv.com/songs/60136336.mkv +哈辉-撒拉情,http://em.21dtv.com/songs/60136335.mkv +哈桑-宁静之城,http://em.21dtv.com/songs/60136334.mkv +咪依鲁江-累了我真的累了,http://em.21dtv.com/songs/60136333.mkv +周融儿-天赐礼物,http://em.21dtv.com/songs/60136332.mkv +周磊-以后我再也不吃瓜子了,http://em.21dtv.com/songs/60136331.mkv +周深-黎明的翅膀,http://em.21dtv.com/songs/60136330.mkv +周柏豪+卫兰-近在千里,http://em.21dtv.com/songs/60136329.mkv +周杰-朋友一生一起走,http://em.21dtv.com/songs/60136328.mkv +周恬熙-白露之前,http://em.21dtv.com/songs/60136327.mkv +周怡然-厉害了我的国,http://em.21dtv.com/songs/60136326.mkv +周子龙-我到底哪里有错,http://em.21dtv.com/songs/60136325.mkv +周子琰-烟火,http://em.21dtv.com/songs/60136324.mkv +周传雄+张芸京-青花,http://em.21dtv.com/songs/60136323.mkv +吴陌川-陌川,http://em.21dtv.com/songs/60136322.mkv +吴芊兴-懂我的人,http://em.21dtv.com/songs/60136321.mkv +吴耀杰-我只是个孩子,http://em.21dtv.com/songs/60136320.mkv +吴森丰-俺潮汕人,http://em.21dtv.com/songs/60136319.mkv +吴易航-红尘过客,http://em.21dtv.com/songs/60136318.mkv +吴昊-春天是个好季节,http://em.21dtv.com/songs/60136317.mkv +吴宝龙-发发发,http://em.21dtv.com/songs/60136316.mkv +吴亦凡-JUICE,http://em.21dtv.com/songs/60136315.mkv +吴业坤+JW-原来只因深爱着,http://em.21dtv.com/songs/60136314.mkv +吕小毅-灵魂记忆,http://em.21dtv.com/songs/60136313.mkv +吕士轩+J.Sheon-啵啦,http://em.21dtv.com/songs/60136312.mkv +后来者-期待来生,http://em.21dtv.com/songs/60136311.mkv +叶晓红-一生只爱你,http://em.21dtv.com/songs/60136310.mkv +可岚-匆匆一生,http://em.21dtv.com/songs/60136309.mkv +原子霏-疯了爱,http://em.21dtv.com/songs/60136308.mkv +原子邦妮-蒸发的世界剩下我,http://em.21dtv.com/songs/60136307.mkv +卫兰-天敌,http://em.21dtv.com/songs/60136306.mkv +卢笃昕-无声的世界,http://em.21dtv.com/songs/60136305.mkv +卢洁云-陪我散步回家,http://em.21dtv.com/songs/60136304.mkv +卢思池-在意,http://em.21dtv.com/songs/60136303.mkv +卢庚戌-九月,http://em.21dtv.com/songs/60136302.mkv +卢凯彤-之所以是你我,http://em.21dtv.com/songs/60136301.mkv +卜文武-她的寂寞让我掏了心,http://em.21dtv.com/songs/60136300.mkv +南条爱乃-岚のなかで君だけは,http://em.21dtv.com/songs/60136299.mkv +南征北战-不愿回头,http://em.21dtv.com/songs/60136298.mkv +单小源+谢明君-甜蜜不加糖,http://em.21dtv.com/songs/60136297.mkv +卓玛央宗-天上有个纳木措,http://em.21dtv.com/songs/60136296.mkv +卓嫣儿-一城烟雨半城湖,http://em.21dtv.com/songs/60136295.mkv +华政双-不老的草原,http://em.21dtv.com/songs/60136294.mkv +匡于泉-回来吧爱人,http://em.21dtv.com/songs/60136293.mkv +包蔓-老公是我心里的宝,http://em.21dtv.com/songs/60136292.mkv +初晨-等待,http://em.21dtv.com/songs/60136291.mkv +初晨-江南岸,http://em.21dtv.com/songs/60136290.mkv +刘馨蔚-中国火起来,http://em.21dtv.com/songs/60136289.mkv +刘隋山-信念,http://em.21dtv.com/songs/60136288.mkv +刘锦明-擦肩的缘,http://em.21dtv.com/songs/60136287.mkv +刘秀文-老娘,http://em.21dtv.com/songs/60136286.mkv +刘秀文-老同学,http://em.21dtv.com/songs/60136285.mkv +刘理鹤-青莲花,http://em.21dtv.com/songs/60136284.mkv +刘清沨-弟子求忏悔,http://em.21dtv.com/songs/60136283.mkv +刘涛+蒋欣+王子文+杨紫+乔欣-总有幸福在等你,http://em.21dtv.com/songs/60136282.mkv +刘涛-遇到爱,http://em.21dtv.com/songs/60136281.mkv +刘心+李炜+谭佑铭+武艺-义,http://em.21dtv.com/songs/60136280.mkv +刘小静-十里桃花,http://em.21dtv.com/songs/60136279.mkv +刘奋+吴奕漩-放,http://em.21dtv.com/songs/60136278.mkv +刘增瞳-你却选择了她,http://em.21dtv.com/songs/60136277.mkv +刘增瞳-专属情歌,http://em.21dtv.com/songs/60136276.mkv +刘增瞳-不搭调,http://em.21dtv.com/songs/60136275.mkv +刘国亮-爱笑的姑娘,http://em.21dtv.com/songs/60136274.mkv +刘其贤+X.M组合-爸妈,http://em.21dtv.com/songs/60136273.mkv +凤凰传奇-瞄着你就爱,http://em.21dtv.com/songs/60136272.mkv +凡恩-闭上眼看见,http://em.21dtv.com/songs/60136271.mkv +冷泉夜月-包包包包,http://em.21dtv.com/songs/60136270.mkv +冯家妹-明亮,http://em.21dtv.com/songs/60136269.mkv +冯冬-相信明天,http://em.21dtv.com/songs/60136268.mkv +冉青霞-美丽的谎言,http://em.21dtv.com/songs/60136267.mkv +关楚耀-死亡之吻,http://em.21dtv.com/songs/60136266.mkv +关晓彤-明月,http://em.21dtv.com/songs/60136265.mkv +六水-怀念母亲,http://em.21dtv.com/songs/60136264.mkv +六哲-想你的苦,http://em.21dtv.com/songs/60136263.mkv +全建军+小可-远航,http://em.21dtv.com/songs/60136262.mkv +兄弟本色-把最甜的都给你,http://em.21dtv.com/songs/60136261.mkv +兄弟本色-我的时代,http://em.21dtv.com/songs/60136260.mkv +兄弟本色-Super Duper,http://em.21dtv.com/songs/60136259.mkv +兄弟印象-我们是兄弟,http://em.21dtv.com/songs/60136258.mkv +信-说说脸,http://em.21dtv.com/songs/60136257.mkv +侧田-不经不觉,http://em.21dtv.com/songs/60136256.mkv +佚名-我家有个小九妹,http://em.21dtv.com/songs/60136255.mkv +余浩阳-灰飞烟灭,http://em.21dtv.com/songs/60136254.mkv +余林-在满天星星的夜里,http://em.21dtv.com/songs/60136253.mkv +余文乐+杨千桦-当我想起你,http://em.21dtv.com/songs/60136252.mkv +何雁诗+郑俊弘-真心真意,http://em.21dtv.com/songs/60136251.mkv +何雁诗-我不会撒娇,http://em.21dtv.com/songs/60136250.mkv +何流-我在你眼里到底算什么,http://em.21dtv.com/songs/60136249.mkv +何流-兄弟为你,http://em.21dtv.com/songs/60136248.mkv +何洁-有没有,http://em.21dtv.com/songs/60136247.mkv +何洁-小情书,http://em.21dtv.com/songs/60136246.mkv +何洁-冲动,http://em.21dtv.com/songs/60136245.mkv +何沐阳-虚构,http://em.21dtv.com/songs/60136244.mkv +何沐阳-欢喜的期盼,http://em.21dtv.com/songs/60136243.mkv +何沐阳-患难是一场浪漫的旅行,http://em.21dtv.com/songs/60136242.mkv +何沐阳-当篝火已经熄灭,http://em.21dtv.com/songs/60136241.mkv +何人-一起打拼的兄弟,http://em.21dtv.com/songs/60136240.mkv +何一-亲爱的你在哪里,http://em.21dtv.com/songs/60136239.mkv +伦桑-神之印记,http://em.21dtv.com/songs/60136238.mkv +伍佳丽-给狗一根骨头,http://em.21dtv.com/songs/60136237.mkv +伍佰+China Blue-东石,http://em.21dtv.com/songs/60136236.mkv +伊藤美来-ルージュバック,http://em.21dtv.com/songs/60136235.mkv +伊然-潮湿的思念,http://em.21dtv.com/songs/60136234.mkv +伊晗-如果这都不是爱,http://em.21dtv.com/songs/60136233.mkv +任素汐-心恋,http://em.21dtv.com/songs/60136232.mkv +任立佳+千百顺-两个我们,http://em.21dtv.com/songs/60136231.mkv +任妙音-如果你是落花,http://em.21dtv.com/songs/60136230.mkv +任嘉伦+姚晨-你是我心内的一首歌,http://em.21dtv.com/songs/60136229.mkv +任嘉伦-让我留在你身边,http://em.21dtv.com/songs/60136228.mkv +任嘉伦-Sexy Back,http://em.21dtv.com/songs/60136227.mkv +付睿煊+汪宜慧子-拾光,http://em.21dtv.com/songs/60136226.mkv +付强-空巢老人,http://em.21dtv.com/songs/60136225.mkv +仓木麻衣-渡月桥 ~君 想ふ~,http://em.21dtv.com/songs/60136224.mkv +享乐团+陈奂仁-一年又一年,http://em.21dtv.com/songs/60136223.mkv +亦心-走江南,http://em.21dtv.com/songs/60136222.mkv +云飞+李玲玉-窗外,http://em.21dtv.com/songs/60136221.mkv +云菲菲-东北偏北的地方,http://em.21dtv.com/songs/60136220.mkv +云泉法师-阿弥陀佛莲花开,http://em.21dtv.com/songs/60136219.mkv +于毅+梁译木-秋意浓,http://em.21dtv.com/songs/60136218.mkv +于毅-流浪记,http://em.21dtv.com/songs/60136217.mkv +于朦胧-一半,http://em.21dtv.com/songs/60136216.mkv +于小磊-想你的时候,http://em.21dtv.com/songs/60136215.mkv +于子将-双击666,http://em.21dtv.com/songs/60136214.mkv +九尾狐-天使之翼,http://em.21dtv.com/songs/60136213.mkv +乔赫伦-等待,http://em.21dtv.com/songs/60136212.mkv +乔欣+邓伦-我们的小世界,http://em.21dtv.com/songs/60136211.mkv +乔欣-想做你的疯女孩,http://em.21dtv.com/songs/60136210.mkv +乌拉多恩-好久不见,http://em.21dtv.com/songs/60136209.mkv +么春生-月披双桥,http://em.21dtv.com/songs/60136208.mkv +丽江小倩-我们的歌,http://em.21dtv.com/songs/60136207.mkv +严艺丹-敲喜欢你,http://em.21dtv.com/songs/60136206.mkv +七音盒-沦陷游戏,http://em.21dtv.com/songs/60136205.mkv +丁芳菲-秋阳,http://em.21dtv.com/songs/60136204.mkv +丁泽群-妈妈别难过,http://em.21dtv.com/songs/60136203.mkv +丁彦斌-幸福是什么,http://em.21dtv.com/songs/60136202.mkv +丁彦斌-不肯长大,http://em.21dtv.com/songs/60136201.mkv +丁弼洲+叶倩文-选择,http://em.21dtv.com/songs/60136200.mkv +さユり-Birthday Song,http://em.21dtv.com/songs/60136199.mkv +ZERO G-我要!我要!嫩牛五方,http://em.21dtv.com/songs/60136198.mkv +Yukilovey-Paris Is A Bad Boy,http://em.21dtv.com/songs/60136197.mkv +Yep Girls-Its Alright,http://em.21dtv.com/songs/60136196.mkv +YELLOW-朝如青丝,http://em.21dtv.com/songs/60136195.mkv +Yellow!-唔红有原因,http://em.21dtv.com/songs/60136194.mkv +X玖少年团-炫斗青春,http://em.21dtv.com/songs/60136193.mkv +Xun-那年你我,http://em.21dtv.com/songs/60136192.mkv +VIXX-桃源境,http://em.21dtv.com/songs/60136191.mkv +Varsity-Hole In One,http://em.21dtv.com/songs/60136190.mkv +Vanessa White-Running Wild,http://em.21dtv.com/songs/60136189.mkv +Tyga-Eyes Closed,http://em.21dtv.com/songs/60136188.mkv +Triple H-365 FRESH,http://em.21dtv.com/songs/60136187.mkv +Tom Chaplin-See It so Clear,http://em.21dtv.com/songs/60136186.mkv +Thomas Rhett+Maren Morris-Craving You,http://em.21dtv.com/songs/60136185.mkv +The Winery Dogs-Oblivion,http://em.21dtv.com/songs/60136184.mkv +The Bright Lights-第一夜,http://em.21dtv.com/songs/60136183.mkv +SWIN组合+蔡国庆+王云峰+王宛尘-三百六十五个祝福,http://em.21dtv.com/songs/60136182.mkv +SWIN组合+蔡国庆-听妈妈讲那过去的事 风吹麦浪,http://em.21dtv.com/songs/60136181.mkv +Sweet California+Juan Magan-Hum,http://em.21dtv.com/songs/60136180.mkv +Suran+Changmo-今日若醉,http://em.21dtv.com/songs/60136179.mkv +Super Girls-从今以后,http://em.21dtv.com/songs/60136178.mkv +Sunshine-朵蜜,http://em.21dtv.com/songs/60136177.mkv +Spider Man-That Spidey Life,http://em.21dtv.com/songs/60136176.mkv +sp'ACE-主角,http://em.21dtv.com/songs/60136175.mkv +SNH48-7Senses,http://em.21dtv.com/songs/60136174.mkv +SING女团-Run For More,http://em.21dtv.com/songs/60136173.mkv +Shawn Mendes-Theres Nothing Holdin Me Back,http://em.21dtv.com/songs/60136172.mkv +SEVENTEEN-漂亮,http://em.21dtv.com/songs/60136171.mkv +Serrini-放弃治疗,http://em.21dtv.com/songs/60136170.mkv +SECHSKIES-Sad Song,http://em.21dtv.com/songs/60136169.mkv +SECHSKIES-Be Well,http://em.21dtv.com/songs/60136168.mkv +Sean Paul+Migos-Body,http://em.21dtv.com/songs/60136167.mkv +Roy Kim-自私警报,http://em.21dtv.com/songs/60136166.mkv +Robynn+Kendy-负摄石,http://em.21dtv.com/songs/60136165.mkv +Robynn+Kendy-无敌,http://em.21dtv.com/songs/60136164.mkv +Robin Schulz+James Blunt-OK,http://em.21dtv.com/songs/60136163.mkv +Robbie Williams-The Heavy Entertainment Show,http://em.21dtv.com/songs/60136162.mkv +ReDor锐豆乐队-Spotlight,http://em.21dtv.com/songs/60136161.mkv +Reddy-Supreme,http://em.21dtv.com/songs/60136160.mkv +PSY-I LUV IT,http://em.21dtv.com/songs/60136159.mkv +Plain White T's-Land Of The Living,http://em.21dtv.com/songs/60136158.mkv +Pentatonix-Cant Help Falling in Love,http://em.21dtv.com/songs/60136157.mkv +Paramore-Told You So,http://em.21dtv.com/songs/60136156.mkv +Paramore-Hard Times,http://em.21dtv.com/songs/60136155.mkv +OneRepublic-No Vacancy,http://em.21dtv.com/songs/60136154.mkv +O.WHEN-No one else,http://em.21dtv.com/songs/60136153.mkv +Nothing But Thieves-Amsterdam,http://em.21dtv.com/songs/60136152.mkv +Nathan Sykes+G Eazy-Give It Up,http://em.21dtv.com/songs/60136151.mkv +MR-不屈,http://em.21dtv.com/songs/60136150.mkv +MOMOLAND-惊人,http://em.21dtv.com/songs/60136149.mkv +Modern Children-Quiet Place,http://em.21dtv.com/songs/60136148.mkv +Modern Children-Mr Q,http://em.21dtv.com/songs/60136147.mkv +Modern Children-Bittersweet Memories,http://em.21dtv.com/songs/60136146.mkv +MKB48-传说,http://em.21dtv.com/songs/60136145.mkv +MIND U+Mad Clown-Loved U,http://em.21dtv.com/songs/60136144.mkv +Migos+Gucci Mane-Slippery,http://em.21dtv.com/songs/60136143.mkv +Metallica-Sad But True,http://em.21dtv.com/songs/60136142.mkv +MC梦柯-大话西游,http://em.21dtv.com/songs/60136141.mkv +MC九局-欢乐狼人杀,http://em.21dtv.com/songs/60136140.mkv +MastaMic+何建曦-Backseat Love,http://em.21dtv.com/songs/60136139.mkv +Mary J. Blige-Strength Of A Woman,http://em.21dtv.com/songs/60136138.mkv +Marshmello-Moving On,http://em.21dtv.com/songs/60136137.mkv +Maria Cordero-天赐的滋味,http://em.21dtv.com/songs/60136136.mkv +我们,http://em.21dtv.com/songs/60136135.mkv +Linkin Park-Invisible,http://em.21dtv.com/songs/60136134.mkv +Lawrence Park-Sugar,http://em.21dtv.com/songs/60136133.mkv +L.I.K.E-单身盛事,http://em.21dtv.com/songs/60136132.mkv +Kygo+Selena Gomez-It Aint Me,http://em.21dtv.com/songs/60136131.mkv +Kenny Chesney-Rich and Miserable,http://em.21dtv.com/songs/60136130.mkv +K.A.R.D-RUMOR,http://em.21dtv.com/songs/60136129.mkv +July Tereshenko-Guardians,http://em.21dtv.com/songs/60136128.mkv +JOY-等你的法则,http://em.21dtv.com/songs/60136127.mkv +Jonita Gandhi-Gilehriyaan,http://em.21dtv.com/songs/60136126.mkv +JeA+Ra.D-你不一样,http://em.21dtv.com/songs/60136125.mkv +JA符龙飞-You're My Everything,http://em.21dtv.com/songs/60136124.mkv +James Blunt-Don't Give me Those Eyes,http://em.21dtv.com/songs/60136123.mkv +James Arthur-Say You Wont Let Go,http://em.21dtv.com/songs/60136122.mkv +J.Sheon-You'll Never Know,http://em.21dtv.com/songs/60136121.mkv +IU+G DRAGON-palette,http://em.21dtv.com/songs/60136120.mkv +IU-这一刻,http://em.21dtv.com/songs/60136119.mkv +HYUKOH-万里,http://em.21dtv.com/songs/60136118.mkv +HYUKOH-TOMBOY,http://em.21dtv.com/songs/60136117.mkv +HYUKOH-Paul,http://em.21dtv.com/songs/60136116.mkv +Hello Nico-荒芜,http://em.21dtv.com/songs/60136115.mkv +Harry Styles-Two Ghosts,http://em.21dtv.com/songs/60136114.mkv +Harry Styles-Kiwi,http://em.21dtv.com/songs/60136113.mkv +Harry Styles-Carolina,http://em.21dtv.com/songs/60136112.mkv +Halestorm-Dear Daughter,http://em.21dtv.com/songs/60136111.mkv +Guns N' Roses-Welcome To The Jungle,http://em.21dtv.com/songs/60136110.mkv +GUMI-夜もすがら君想ふ,http://em.21dtv.com/songs/60136109.mkv +Gryffin+ILLENIUM+Daya-Feel Good,http://em.21dtv.com/songs/60136108.mkv +GNZ48-蒲公英的脚印,http://em.21dtv.com/songs/60136107.mkv +GENERATIONS from EXILE TRIBE-花,http://em.21dtv.com/songs/60136106.mkv +GENERATIONS from EXILE TRIBE-いつか晴れ渡る空の下で,http://em.21dtv.com/songs/60136105.mkv +GARNiDELiA-桃源恋歌,http://em.21dtv.com/songs/60136104.mkv +fripSide-clockwork planet,http://em.21dtv.com/songs/60136103.mkv +Freia-Call My Name,http://em.21dtv.com/songs/60136102.mkv +FFC Acrush-行动派,http://em.21dtv.com/songs/60136101.mkv +Fall Out Boy-Young and Menace,http://em.21dtv.com/songs/60136100.mkv +EXY+Euna Kim+Zia-LOVE THERAPY,http://em.21dtv.com/songs/60136099.mkv +EXILE ATSUSHI+久石譲-天音,http://em.21dtv.com/songs/60136098.mkv +Edges+Corners-逐渐殒落的光,http://em.21dtv.com/songs/60136097.mkv +Ed Sheeran-Photograph,http://em.21dtv.com/songs/60136096.mkv +Dua Lipa-Blow Your Mind,http://em.21dtv.com/songs/60136095.mkv +Dua Lipa-Be The One,http://em.21dtv.com/songs/60136094.mkv +Dreamcatcher-GOOD NIGHT,http://em.21dtv.com/songs/60136093.mkv +Dok2+金孝恩-Wattup,http://em.21dtv.com/songs/60136092.mkv +DNCE-Forever,http://em.21dtv.com/songs/60136091.mkv +DIA-和我交往吗,http://em.21dtv.com/songs/60136090.mkv +Deorro-Rise and Shine,http://em.21dtv.com/songs/60136089.mkv +DEAR JANE-终点的拥抱,http://em.21dtv.com/songs/60136088.mkv +DAY6-DANCE DANCE,http://em.21dtv.com/songs/60136087.mkv +D DAY吴昊-理想2017,http://em.21dtv.com/songs/60136086.mkv +Céline Dion-How Does a Moment Last Forever,http://em.21dtv.com/songs/60136085.mkv +Corinne Bailey Rae-Night,http://em.21dtv.com/songs/60136084.mkv +Chris Brown+Big Sean+Jeremih-I Think of You,http://em.21dtv.com/songs/60136083.mkv +Chloebaby+岳佳音-世上只有妈妈好2016,http://em.21dtv.com/songs/60136082.mkv +Charlie Puth-Attention,http://em.21dtv.com/songs/60136081.mkv +Cashmere Cat+M+Sophie-9,http://em.21dtv.com/songs/60136080.mkv +Camila Cabello-Crying in the Club,http://em.21dtv.com/songs/60136079.mkv +Bleachers-Dont Take The Money,http://em.21dtv.com/songs/60136078.mkv +Bingo冰果女团-Hurt Me Boy 全天候爱我,http://em.21dtv.com/songs/60136077.mkv +Big Sean+Migos-Sacrifices,http://em.21dtv.com/songs/60136076.mkv +Bebe Rexha+Lil Wayne-The Way I Are,http://em.21dtv.com/songs/60136075.mkv +Aqours-恋になりたいAQUARIUM,http://em.21dtv.com/songs/60136074.mkv +Anoc-若时间流逝,http://em.21dtv.com/songs/60136073.mkv +Aimer-歌鸟风月,http://em.21dtv.com/songs/60136072.mkv +AGA+Ghost Style-3AM,http://em.21dtv.com/songs/60136071.mkv +Afrojack+David Guetta+Ester Dean-Another Life,http://em.21dtv.com/songs/60136070.mkv +A TEAM-Mr. A Team,http://em.21dtv.com/songs/60136069.mkv +1931女子偶像组合-并肩闪耀,http://em.21dtv.com/songs/60136068.mkv +黄阅-萤火,http://em.21dtv.com/songs/60128638.mkv +群星-Hey Jude Smoke On The Water We Will Rock You,http://em.21dtv.com/songs/60126043.mkv +吉杰+温岚+柯以敏+高明骏-Dont Break My Heart+新长征路上的摇滚+你的柔情我永远不懂+蓝莲花+完美生活,http://em.21dtv.com/songs/60094843.mkv +张韶涵-What A Wonderful World&New York New York,http://em.21dtv.com/songs/60094505.mkv +Air Supply-Here I Am[just When I Thought I Was Over You],http://em.21dtv.com/songs/60121205.mkv +李玟-I Will Survive Survivor Run The World,http://em.21dtv.com/songs/60120637.mkv +Maroon 5-This summer's gonna hurt like motherfucker,http://em.21dtv.com/songs/60111634.mkv +郑秀文+MC仁-Touch Medley+Water of Love+独家试唱+星秀传说+信者得爱,http://em.21dtv.com/songs/60112309.mkv +英文的高-I Cant Erase You(DJ Hyo Ext Mix)Pop Dance,http://em.21dtv.com/songs/50000233.mkv +ELTON JOHN-SOMETHING ABOUT THE WAY YOU LOOK TONIGHT,http://em.21dtv.com/songs/60103013.mkv +G.E.M.邓紫棋-有多少爱可以重来+爱与痛的边缘(DJ阿彪 Dance Remix 弹)(无损),http://em.21dtv.com/songs/50000264.mkv +李宇春-If You Were The Only Girl In The World,http://em.21dtv.com/songs/60125697.mkv +李宇春-If You Were The Only Girl In The World,http://em.21dtv.com/songs/60111968.mkv +Zedd-I Want You To Know (Steve James Remix),http://em.21dtv.com/songs/50000113.mkv +吉杰-Fallin Its a Mans Mans Mans World,http://em.21dtv.com/songs/60094841.mkv +谭轩辕-We Are the Champions We Will Rock You,http://em.21dtv.com/songs/60115406.mkv +DJ舞曲-I Don't Want To Live Without You(无损),http://em.21dtv.com/songs/50000257.mkv +Torres-Steel Drums(DJ版 Dj Golden Mashup),http://em.21dtv.com/songs/50000168.mkv +赵大格-Ain't No Mountain High Enough,http://em.21dtv.com/songs/60115419.mkv +Lily James-A Dream Is a Wish Your Heart Makes,http://em.21dtv.com/songs/60109842.mkv +刘德华+Djlee-情人Happy Birthday(DJ版 House 弹 Mix),http://em.21dtv.com/songs/50000206.mkv +Air Supply-Making Love Out Of Nothing At All,http://em.21dtv.com/songs/60121206.mkv +萧敬腾+劳晓音-I Hate Myself For Loving You,http://em.21dtv.com/songs/60102690.mkv +GREEN DAY-BOULEVARD OF BROKEN DREAMS,http://em.21dtv.com/songs/60111609.mkv +群星-再出发+那么爱你为什么+我是一只鱼+你怎么舍得我难过+伤心太平洋,http://em.21dtv.com/songs/60097997.mkv +李玟-Medley 喜气洋洋 宝贝对不起 Sha La La,http://em.21dtv.com/songs/60125709.mkv +那英+杨坤+汪峰+齐秦-勇敢的心^无情的雨无情的你^白天不懂夜的黑^月亮可以代表我的心,http://em.21dtv.com/songs/60102783.mkv +Cassadee Pope-I Wish I Could Break Your Heart,http://em.21dtv.com/songs/60101739.mkv +Shawn Mendes+Camila Cabello-I Know What You Did Last Summer,http://em.21dtv.com/songs/60116475.mkv +HUNTER HAYES+JASON MRAZ-Everybodys Got Somebody But Me,http://em.21dtv.com/songs/60093925.mkv +Dionne Warwick-Do you know the way to San Jose,http://em.21dtv.com/songs/60107402.mkv +Justin Bieber+mariah Carey-All I Want For Christmas Is You,http://em.21dtv.com/songs/60129950.mkv +Justin Bieber+Mariah Carey-All I Want For Christmas Is You,http://em.21dtv.com/songs/60124915.mkv +卫兰-You're Always Everything to Me,http://em.21dtv.com/songs/60106667.mkv +艾菲+李斯丹妮-我好想你 Empire State of Mind,http://em.21dtv.com/songs/60126096.mkv +鸡蛋蒸肉饼-That day I went to his funeral,http://em.21dtv.com/songs/60134484.mkv +迪高喊麦现场-深圳龙华天龙大道狂嗨现场(Dj明仔 VS 女MC小黎)专辑二,http://em.21dtv.com/songs/50000211.mkv +杜丽莎-Rumour Has It Someone Like You,http://em.21dtv.com/songs/60135387.mkv +丁紫&DJ二宝-结束了就算了吧(DJ版 2K15 Extended Mix),http://em.21dtv.com/songs/50000194.mkv +李琪-It's a Man's Man's Man's World,http://em.21dtv.com/songs/60104213.mkv +Dionne Warwick-I'll never love this way again,http://em.21dtv.com/songs/60107403.mkv +JESSICA SIMPSON-When You Told Me You Loved Me,http://em.21dtv.com/songs/60093926.mkv +佚名-SANTA CLAUS IS COMING TO TOWN,http://em.21dtv.com/songs/60094402.mkv +Geeks-Officially Missing You,http://em.21dtv.com/songs/60111605.mkv +Westlife-Nothings Gonna Change My Love,http://em.21dtv.com/songs/60134820.mkv +张玮-狐狸 What Does The Fox Say,http://em.21dtv.com/songs/60125526.mkv +PSY+佚名-Gentleman Rap FX Drunk Arcade,http://em.21dtv.com/songs/60115560.mkv +Ultra Naté&Ultra Nate-Free 2015(DJ版 Craig C & Sinna,http://em.21dtv.com/songs/50000171.mkv +Usher&Pitbull-DJ Got Us Fallin‘ In Love(无损),http://em.21dtv.com/songs/50000265.mkv +曹格-Can You Feel The Love Tonight,http://em.21dtv.com/songs/60113576.mkv +Regina Spektor-While My Guitar Gently Weeps,http://em.21dtv.com/songs/60131101.mkv +庄心妍+DjEmil-我不会在老地方等你(2k15 Extended Mix),http://em.21dtv.com/songs/50000160.mkv +网络歌手-是谁带走了你的心加快串烧 dj 劲爆好听串烧 21266,http://em.21dtv.com/songs/50000224.mkv +王若琳-Isn’t It Exciting 这不是很令人兴奋吗?,http://em.21dtv.com/songs/60130599.mkv +刘文天-I Don't Want To Miss A Thing,http://em.21dtv.com/songs/60125193.mkv +Jess Glynne-Don't Be So Hard On Yourself,http://em.21dtv.com/songs/60114339.mkv +张栋梁+DjEmil-当你孤单你会想起谁(2k15 Extended Mix),http://em.21dtv.com/songs/50000164.mkv +酒吧串烧-Dj蛇仔(新快音乐全英文说唱电音House音乐风格串烧),http://em.21dtv.com/songs/50000213.mkv +Ciara-Dance Like We're Making Love,http://em.21dtv.com/songs/60113141.mkv +小沈阳+多亮+李佳薇-我是一只小小鸟^我的未来不是梦^当爱已成往事^海阔天空,http://em.21dtv.com/songs/60105775.mkv +郑俊树+刘明湘-Tonight I Celebrate My Love,http://em.21dtv.com/songs/60104483.mkv +井口裕香-rainbow heart rainbow dream,http://em.21dtv.com/songs/60093967.mkv +Billy Currington-Must Be Doin Somethin Right,http://em.21dtv.com/songs/60117436.mkv +彭佳慧-I Wanna Dance With Somebody,http://em.21dtv.com/songs/60135268.mkv +Blake Shelton-Every Time i Hear That Song,http://em.21dtv.com/songs/60132055.mkv +张杰-Everything Will Say Goodbye,http://em.21dtv.com/songs/60131405.mkv +梁永泰-Everybody Feel Like Dancing,http://em.21dtv.com/songs/60103397.mkv +Tori Kelly-Dont You Worry Bout A Thing,http://em.21dtv.com/songs/60133302.mkv +付豪-东风破 Can't Feel My Face,http://em.21dtv.com/songs/60126590.mkv +DJ晓东+领音车载-重新定义夜店气氛高潮嗨曲House慢摇串烧(DJ版),http://em.21dtv.com/songs/50000140.mkv +黄致列+Gummy-You Are My Everything,http://em.21dtv.com/songs/60121184.mkv +fripSide-Two souls toward the truth,http://em.21dtv.com/songs/60117457.mkv +群星-Todomundo La Copa De Todos,http://em.21dtv.com/songs/60126045.mkv +戴爱玲-THIS IS HOW A HEART BREAKS,http://em.21dtv.com/songs/60114561.mkv +谭维维+杨蒨时-伤痕+If I Ain't Got You,http://em.21dtv.com/songs/60112254.mkv +Usher+Nicki Minaj-She Came To Give It To You,http://em.21dtv.com/songs/60109904.mkv +Whitney Houston-Saving All My Love For You,http://em.21dtv.com/songs/60125047.mkv +冯光-人在江湖漂(DJ小波 Extended Remix),http://em.21dtv.com/songs/50000201.mkv +Team H-Raining On The Dance Floor,http://em.21dtv.com/songs/60103042.mkv +吉克隽逸-Now That You Can't Have Me,http://em.21dtv.com/songs/60104873.mkv +英文的高-Narcotic(Black Toys Remix),http://em.21dtv.com/songs/50000234.mkv +WHITNEY HOUSTON-MILLION DOLLAR BILL,http://em.21dtv.com/songs/60112471.mkv +群星-蓝色啤酒海+河堤上的傻瓜+星期天不要见面+你给我记住,http://em.21dtv.com/songs/60098001.mkv +D Lime+Tabago Crusoe-London Is The Place For Me,http://em.21dtv.com/songs/60109808.mkv +Panic At The Disco-I Write Sins Not Tragedies,http://em.21dtv.com/songs/60119171.mkv +胡渭康-I Will Give My Love To You,http://em.21dtv.com/songs/60132820.mkv +李玟-I Just Wanna Marry You,http://em.21dtv.com/songs/60108578.mkv +尚雯婕-蝴蝶记忆太短 Six Seconds' Memory,http://em.21dtv.com/songs/60116754.mkv +Sing Street-Drive It Like You Stole It,http://em.21dtv.com/songs/60129990.mkv +那英+那英组四强-Can't Take My Eyes Off You,http://em.21dtv.com/songs/60105416.mkv +张靓颖-Can't Help Falling In Love,http://em.21dtv.com/songs/60114552.mkv +Train-Bulletproof Picasso,http://em.21dtv.com/songs/60122439.mkv +Jake Owen-American Country Love Song,http://em.21dtv.com/songs/60121253.mkv +Alvaro-Welcome To the Jungle[DJ],http://em.21dtv.com/songs/60122334.mkv +DJ Snake+Lil Jon-Turn Down For What,http://em.21dtv.com/songs/60122366.mkv +潘越云-天天天蓝+浮生千山路+我的思念+再见离别+无言的歌,http://em.21dtv.com/songs/60097996.mkv +Rihanna+Calvin Harris-This Is What You Came For,http://em.21dtv.com/songs/60123522.mkv +王若琳-Simply Nothing You Can Do,http://em.21dtv.com/songs/60113878.mkv +Tony Romera+Lunde Bros-Show Me(DJ版 Original Mix),http://em.21dtv.com/songs/50000167.mkv +王金金-Pretty Little Psycho,http://em.21dtv.com/songs/60124289.mkv +DJ舞曲-Nine Million Bicycles(无损),http://em.21dtv.com/songs/50000258.mkv +符致逸-Love You More Than Anyone,http://em.21dtv.com/songs/60103500.mkv +Bic Runga-Listening For The Weather,http://em.21dtv.com/songs/60104653.mkv +窦靖童-Its just what we do,http://em.21dtv.com/songs/60129463.mkv +Cruz Beckham-If Everyday Was Christmas,http://em.21dtv.com/songs/60131048.mkv +Flo Rida+Robin Thicke-I Don't Like It I Love It,http://em.21dtv.com/songs/60113159.mkv +刘涛+梁博-Don't Break My Heart,http://em.21dtv.com/songs/60125204.mkv +迪高喊麦现场-DMC波仔(七月新歌劲打齐齐摇头上太空现场专辑六),http://em.21dtv.com/songs/50000210.mkv +Usher+Pitbull-Dj Got Us Falling In Love,http://em.21dtv.com/songs/60125037.mkv +VIXX-Chained up 谢谢你的爱1999,http://em.21dtv.com/songs/60125040.mkv +李泉-比我幸福+神奇+我等到花儿也谢了+一千个伤心的理由,http://em.21dtv.com/songs/60080211.mkv +Stevie Hoang-Before You Break My Heart,http://em.21dtv.com/songs/60120243.mkv +金润吉-When A Man Loves A Woman,http://em.21dtv.com/songs/60122193.mkv +The Saturdays-What Are You Waiting For,http://em.21dtv.com/songs/60101834.mkv +One Direction-They Don'T Know About Us,http://em.21dtv.com/songs/60124966.mkv +张梓轩-The Faraway Autumn Water,http://em.21dtv.com/songs/60105852.mkv +John Mayer-Still Feel Like Your Man,http://em.21dtv.com/songs/60134713.mkv +LOCO+YUJU-SPRING IS GONE BY CHANCE,http://em.21dtv.com/songs/60118269.mkv +Alex Goot+Madilyn Bailey-Something Just Like This,http://em.21dtv.com/songs/60134634.mkv +The Chainsmokers+Coldplay-Something Just Like This,http://em.21dtv.com/songs/60133294.mkv +朱桦+萨顶顶+麦子杰-请你放心+听说爱情回来过+天黑黑+想你的365天,http://em.21dtv.com/songs/60094925.mkv +刘金-Once A Blue Forever Blue,http://em.21dtv.com/songs/60126660.mkv +鹿晗-某时某刻Catch Me When I Fall,http://em.21dtv.com/songs/60129827.mkv +林二汶-Little Girl In The World,http://em.21dtv.com/songs/60104238.mkv +叶秉桓-Life Can Be So Beautiful,http://em.21dtv.com/songs/60121480.mkv +秦宇子-I Love Rock N Rolly,http://em.21dtv.com/songs/60125999.mkv +Rascal Flatts-I Like The Sound Of That,http://em.21dtv.com/songs/60119175.mkv +R5-I Can'T Forget About You,http://em.21dtv.com/songs/60124972.mkv +Tom Staar-Higher(DJ版 Original Mix),http://em.21dtv.com/songs/50000166.mkv +Eric Church-Give Me Back My Hometown,http://em.21dtv.com/songs/60103771.mkv +罗景文-Blue Suede Shoes^看见什么吃什么,http://em.21dtv.com/songs/60102626.mkv +邓丽欣-信自己+一分钟都市一分钟恋爱+大日子+热血青年,http://em.21dtv.com/songs/60093236.mkv +朱桦+吉杰+麦子杰-雪人+如果云知道+这一次我决不放手+婚礼的祝福,http://em.21dtv.com/songs/60094923.mkv +吉杰+朱桦+麦子杰-雪人+如果云知道+这一次我绝不放手+婚礼的祝福,http://em.21dtv.com/songs/60079931.mkv +Marlon Roudette-When The Beat Drops Out,http://em.21dtv.com/songs/60114349.mkv +Craig David+Big Narstie-When The Bassline Drops,http://em.21dtv.com/songs/60119116.mkv +Kenny Chesney-Wailers Spread The Love,http://em.21dtv.com/songs/60124924.mkv +Westlife-Too Hard To Say Goodbye,http://em.21dtv.com/songs/60125046.mkv +Mick Jagger+Jennifer Lopez-T H E[The Hardest Ever],http://em.21dtv.com/songs/60101800.mkv +于湉-Thank You For Loving Me,http://em.21dtv.com/songs/60116534.mkv +许志安-Super Dance Medley,http://em.21dtv.com/songs/60119965.mkv +NIRVANA-SMELLS LIKE TEEN SPIRIT,http://em.21dtv.com/songs/60109859.mkv +ALESSIA CARA-SCARS TO YOUR BEAUTIFUL,http://em.21dtv.com/songs/60131028.mkv +杨凯琳-Right Here Waiting,http://em.21dtv.com/songs/60129270.mkv +萧敬腾+许一鸣-Right Here Waiting,http://em.21dtv.com/songs/60126132.mkv +张信哲-平凡之路 See You Again,http://em.21dtv.com/songs/60125490.mkv +ピコ太郎-PEN PINEAPPLE APPLE PEN,http://em.21dtv.com/songs/60130021.mkv +克丽丝叮-No One Else Is Like You,http://em.21dtv.com/songs/60105607.mkv +东南-never gonna give you up,http://em.21dtv.com/songs/60098068.mkv +DJ舞曲-My Body Remix(女说顶级电子节拍),http://em.21dtv.com/songs/50000141.mkv +DJ Cassidy+R. Kelly-Make The World Go Round,http://em.21dtv.com/songs/60101753.mkv +Joy Division-Love Will Tear Us Apart,http://em.21dtv.com/songs/60119155.mkv +Mad Clown+Suran-Love is A Dog From Hell,http://em.21dtv.com/songs/60133239.mkv +黄凯芹-流离所爱+缘份的天空+望星星+飞花+雨季不再来,http://em.21dtv.com/songs/60089030.mkv +冯允谦-Let's Keep This Tonight,http://em.21dtv.com/songs/60109999.mkv +Afrojack+Matthew Koma-Keep Our Love Alive[DJ],http://em.21dtv.com/songs/60122331.mkv +徐林+刘伟男-Just The Way You Are 稻香,http://em.21dtv.com/songs/60114556.mkv +岳靖淇-It's A Man's World,http://em.21dtv.com/songs/60126815.mkv +Ha Hyeon Woo-I Can't Stop Loving You,http://em.21dtv.com/songs/60114335.mkv +UMI KUUN-I am Just Feeling Alive,http://em.21dtv.com/songs/60130001.mkv +The Pussycat Dolls-Happily Never After(无损),http://em.21dtv.com/songs/50000245.mkv +Big Sean-Halfway Off The Balcony,http://em.21dtv.com/songs/60132054.mkv +尚雯婕-From Moment To Gloaming(现场版),http://em.21dtv.com/songs/60098301.mkv +℃ute-风を起こすんだ Exciting Fight!,http://em.21dtv.com/songs/60115650.mkv +Park Won+裴秀智-Dont Wait For Your Love,http://em.21dtv.com/songs/60133260.mkv +Glee Cast-Don't Rain On My Parade,http://em.21dtv.com/songs/60103016.mkv +迪玛希-Confessa The Diva Dance,http://em.21dtv.com/songs/60135788.mkv +Kika+Andreas Wijk-Can T Feel Love Tonight,http://em.21dtv.com/songs/60124927.mkv +Shane Filan-Baby Let's Dance,http://em.21dtv.com/songs/60107432.mkv +Brandy+Ray J-Another Day In Paradise,http://em.21dtv.com/songs/60104655.mkv +徐浩伦-Amazing Christmas Night,http://em.21dtv.com/songs/60131435.mkv +郑智化-AI T FLYING LILE A BIRD,http://em.21dtv.com/songs/60098808.mkv +Coldplay-Adventure Of A Lifetime,http://em.21dtv.com/songs/60118247.mkv +陶喆-祝福+Time to Say Goodbye,http://em.21dtv.com/songs/60094333.mkv +王麟+DjAlex.x-小伙伴们都惊呆了 (Mix Version),http://em.21dtv.com/songs/50000179.mkv +李琦+王力宏-我的天空 Just A Dream,http://em.21dtv.com/songs/60127046.mkv +李琦-我的天空 Just A Dream,http://em.21dtv.com/songs/60125714.mkv +DJ-Walking In The Sun[DJ],http://em.21dtv.com/songs/60115575.mkv +马蹄帮乐团-TRIBUTE TO BANDS OF HK,http://em.21dtv.com/songs/60124716.mkv +羽田-Thinking Out Loud 凤凰于飞,http://em.21dtv.com/songs/60127287.mkv +羽田-Thinking Out Loud 凤凰于飞,http://em.21dtv.com/songs/60126068.mkv +高姗-The Road Not Taken,http://em.21dtv.com/songs/60109051.mkv +王若琳(Joanna Wang)-The Rightful Heir正当继承人,http://em.21dtv.com/songs/60131670.mkv +DJ舞曲-Superwomen(加快 版 好加快高速),http://em.21dtv.com/songs/50000142.mkv +Fall Out Boy-Sugar We're Going Down,http://em.21dtv.com/songs/60119138.mkv +妥云福+罗熙杰+李玟-Stuk On You 宝贝对不起,http://em.21dtv.com/songs/60125365.mkv +陈奕迅-STRANGER_UNDER_MY_SKIN,http://em.21dtv.com/songs/60098856.mkv +Trash Gordon+Amfree-Shimmy ShakeAgain(DJ版),http://em.21dtv.com/songs/50000169.mkv +龙梅子-情路弯弯 (DJ阿远 Remix)(无损),http://em.21dtv.com/songs/50000253.mkv +魏晨-Party Like A Rock Star,http://em.21dtv.com/songs/60095237.mkv +Katie Melua-Ninem Million Bicycles,http://em.21dtv.com/songs/60124920.mkv +赵炫棋-Never Can Say Good Bye,http://em.21dtv.com/songs/60130775.mkv +曹格-明天会更好 We Are The World,http://em.21dtv.com/songs/60110243.mkv +四叶草Joyce-马来西亚查某 Malaysia Chabor,http://em.21dtv.com/songs/60116677.mkv +ONE DIRECTION-LIVE WHILE WE RE YOUNG,http://em.21dtv.com/songs/60098048.mkv +Coldplay-Life in Technicolor II,http://em.21dtv.com/songs/60129908.mkv +庄心妍+Dj纯-两个人的回忆一个人过(DJ版)(Remix),http://em.21dtv.com/songs/50000161.mkv +BigBang-Let's Not Fall In Love,http://em.21dtv.com/songs/60119103.mkv +黄小琥-I Will Always Love You,http://em.21dtv.com/songs/60114910.mkv +Mike Posner-I Took A Pill In Ibiza,http://em.21dtv.com/songs/60120228.mkv +Enrique-How Can I Not Love You,http://em.21dtv.com/songs/60110759.mkv +TWINS-欢乐年年+财神到+恭喜恭喜+新春颂献+迎春花,http://em.21dtv.com/songs/60092218.mkv +Mariah Carey-Here Comes Santa Claus,http://em.21dtv.com/songs/60131078.mkv +Maddie+Tae-Girl In a Country Song,http://em.21dtv.com/songs/60108232.mkv +The Band Perry-Forever Mine Nevermind,http://em.21dtv.com/songs/60125018.mkv +Groove Coverage-Far Away From Home(无损),http://em.21dtv.com/songs/50000246.mkv +陶喆+王奕丁+杨腾飞-独上西楼^I'm With You,http://em.21dtv.com/songs/60102907.mkv +Delacey-Dream It Possible,http://em.21dtv.com/songs/60126521.mkv +王小娟-Dont say goodbye to me,http://em.21dtv.com/songs/60129389.mkv +吴莫愁+张玮-从此以后Happily Ever After,http://em.21dtv.com/songs/60116647.mkv +Justin Timberlake-Can't Stop The Feeling,http://em.21dtv.com/songs/60121270.mkv +SNH48-倍儿爽 Gangnam Style,http://em.21dtv.com/songs/60124993.mkv +欧豪-Beautiful Light,http://em.21dtv.com/songs/60113760.mkv +Idina Menzel+Michael Buble-Baby It's Cold Outside,http://em.21dtv.com/songs/60110768.mkv +Miwa-あなたがここにいて抱きしめることができるなら,http://em.21dtv.com/songs/60115616.mkv +Tyler Farr-A Guy Walks Into A Bar,http://em.21dtv.com/songs/60117507.mkv +Block B-A few years later(欣赏版),http://em.21dtv.com/songs/60123451.mkv +曹寅-You Are My Everything,http://em.21dtv.com/songs/60132505.mkv +Gummy-You Are My Everything,http://em.21dtv.com/songs/60119148.mkv +金承熙-You Are My Everything,http://em.21dtv.com/songs/60103636.mkv +林恺伦-Writing's On the Wall,http://em.21dtv.com/songs/60127106.mkv +张靓颖-Writing's On The Wall,http://em.21dtv.com/songs/60116809.mkv +Sam Smith-Writing's On The Wall,http://em.21dtv.com/songs/60115629.mkv +陈奕迅-WELCOME_TO_THE_FUTURE,http://em.21dtv.com/songs/60098857.mkv +Charlie Puth+Selena Gomez-We Don't Talk Anymore,http://em.21dtv.com/songs/60120198.mkv +张杰-我的王国 We Will Rock You,http://em.21dtv.com/songs/60135206.mkv +Jamie Lawson-Wasn't Expecting That,http://em.21dtv.com/songs/60115599.mkv +Toni Braxton+Il Divo-The Time Of Our Lives,http://em.21dtv.com/songs/60125028.mkv +林二汶-There's No Such Thing,http://em.21dtv.com/songs/60104239.mkv +Midlake-The Old And The Young,http://em.21dtv.com/songs/60124950.mkv +陶喆+萧敬腾-The Girl Is Mine,http://em.21dtv.com/songs/60102908.mkv +WONDER GIRLS-THE DJ IS MINE,http://em.21dtv.com/songs/60122446.mkv +MARIAH CAREY-The Art Of Letting Go,http://em.21dtv.com/songs/60093934.mkv +韩庚-Tell Me What You Want,http://em.21dtv.com/songs/60116362.mkv +胡杏儿-Someone Like You,http://em.21dtv.com/songs/60123093.mkv +张敬轩-世纪未烟花+明知故犯+爱与情+抬起我的头来,http://em.21dtv.com/songs/60092611.mkv +TAYLOR SWIFT-SAFE AND SOUND,http://em.21dtv.com/songs/60109895.mkv +李斯丹妮+艾菲-忍者 Hello Bitches,http://em.21dtv.com/songs/60127028.mkv +MOTi+Bassjackers-On The Floor Like,http://em.21dtv.com/songs/60124954.mkv +EXID-Night Rather Than Day,http://em.21dtv.com/songs/60134671.mkv +柯智棠-ME AND MY CANDY HOUSE,http://em.21dtv.com/songs/60117857.mkv +李琪+赵祺-Make You Feel My Love,http://em.21dtv.com/songs/60104215.mkv +Tim Mcgraw-Lookin' For That Girl,http://em.21dtv.com/songs/60125026.mkv +The Summer Set-Lightning In A Bottle,http://em.21dtv.com/songs/60104744.mkv +Selena Gomez-Kill Em With Kindness,http://em.21dtv.com/songs/60123533.mkv +M4-Just Want You To Know,http://em.21dtv.com/songs/60122398.mkv +PINK-JUST LIKE FIRE,http://em.21dtv.com/songs/60124969.mkv +蔡小虎-今生最爱的人+心疼+用真心爱一个人+意难忘,http://em.21dtv.com/songs/60085295.mkv +Jimmy Eat World-I Will Steal You Back,http://em.21dtv.com/songs/60098033.mkv +陈大智-Ill Never Say Goodbye,http://em.21dtv.com/songs/60131934.mkv +Olivia Ong-I Feel The Earth Move,http://em.21dtv.com/songs/60114353.mkv +P!nk-Get The Party Started,http://em.21dtv.com/songs/50000126.mkv +R5-(I Can't)Forget About You,http://em.21dtv.com/songs/60103810.mkv +TIMBALAND+张靓颖-DUST MY SHOULDER SOFF,http://em.21dtv.com/songs/60128710.mkv +SNOOP DOGG-DROP IT LIKE IT'S HOT,http://em.21dtv.com/songs/60098055.mkv +张靓颖-Dream It Possible,http://em.21dtv.com/songs/60126904.mkv +Lady Bees-对面的女孩看过来 我的未来不是梦 曾经的你,http://em.21dtv.com/songs/60122393.mkv +Rihanna+bruno Mars+Katy Perry-Christmas Mashup 2016,http://em.21dtv.com/songs/60129980.mkv +Don Diablo+Marnik-Children Of A Miracle,http://em.21dtv.com/songs/60133191.mkv +KTVXG-Children Love To Sing,http://em.21dtv.com/songs/60129954.mkv +Katy Perry+Skip Marley-Chained to the Rhythm,http://em.21dtv.com/songs/60132091.mkv +毕书尽-Catch Your Double Eye,http://em.21dtv.com/songs/60122934.mkv +郑潇-BRIGHTER THAN THE SUN,http://em.21dtv.com/songs/60120025.mkv +群星-爱已经满满的+在你和天空之间+明天也要作伴,http://em.21dtv.com/songs/60097999.mkv +梁晓雪-A Long Way To Be Home,http://em.21dtv.com/songs/60107838.mkv +那英+汪峰+庾澄庆+周杰伦-只有为你 安静 不管有多苦 满 我要夏天,http://em.21dtv.com/songs/60124546.mkv +黄绮珊+曾文力-You Raise Me Up,http://em.21dtv.com/songs/60102982.mkv +吴俊余-You Are So Beautiful,http://em.21dtv.com/songs/60118441.mkv +吴俊余-You Are So Beautiful,http://em.21dtv.com/songs/60117612.mkv +赵祺-You Are So Beautiful,http://em.21dtv.com/songs/60103597.mkv +高姗-遇见你的时候所有星星都落到我头上,http://em.21dtv.com/songs/60110708.mkv +DJ小鱼儿+孙浩雨-像我一样爱她(Extended Mix),http://em.21dtv.com/songs/50000139.mkv +朱桦+麦子杰+萨顶顶+毛宁-笑忘书+至少还有你+闷+你的名字我的姓氏,http://em.21dtv.com/songs/60094926.mkv +林志炫-Writings On The Wall,http://em.21dtv.com/songs/60132619.mkv +林忆莲-Within You'll Remain,http://em.21dtv.com/songs/60125775.mkv +林忆莲-Within You'll Remain,http://em.21dtv.com/songs/60121819.mkv +魏晨-Where Went Yesterday,http://em.21dtv.com/songs/60120155.mkv +Miranda Lambert-We Should be Friends,http://em.21dtv.com/songs/60132109.mkv +Daughtry-Waiting For Superman,http://em.21dtv.com/songs/60104662.mkv +孙楠-听妈妈讲那过去的故事+映山红,http://em.21dtv.com/songs/60094876.mkv +Melody Day-The song of the star,http://em.21dtv.com/songs/60133249.mkv +周笔畅+田俊行-Talk About Love,http://em.21dtv.com/songs/60123772.mkv +周笔畅+田俊行-Talk About Love,http://em.21dtv.com/songs/60122605.mkv +Dierks Bentley-SomeWhere On A Beach,http://em.21dtv.com/songs/60121236.mkv +Brantley Gilbert+Justin Moore+Thomas Rhett-Small Town Throwdown,http://em.21dtv.com/songs/60103754.mkv +群星-闪亮的日子 来自你来自我来自他,http://em.21dtv.com/songs/60126063.mkv +Rizzle Kicks-Skip To The Good Bit,http://em.21dtv.com/songs/60124978.mkv +WIZ KHALIFA+CHARLIE PUTH-SEE YOU AGAIN,http://em.21dtv.com/songs/60110806.mkv +The xx-Say Something Loving,http://em.21dtv.com/songs/60133297.mkv +DJ舞曲-甩 甩 甩 起来 别控制(兰妮罕见硬电),http://em.21dtv.com/songs/50000187.mkv +Nicki Minaj-Regret In Your Tears,http://em.21dtv.com/songs/60134773.mkv +Michael buble-quando quando quando,http://em.21dtv.com/songs/60114955.mkv +王金金-Pretty Little Psycho,http://em.21dtv.com/songs/60125954.mkv +Justin Bieber-One Less Lonely Girl,http://em.21dtv.com/songs/60121261.mkv +家家-Once The Night Comes,http://em.21dtv.com/songs/60104949.mkv +何韵诗+郑秀文+罗佩文-女人之苦+伤+喜欢你+失恋王+爱你+伤痕,http://em.21dtv.com/songs/60090617.mkv +陈洁仪-NOTHING COMPARES 2 U,http://em.21dtv.com/songs/60108130.mkv +徐良+刘思涵-那年夏天我学会了在被子里抱紧自己,http://em.21dtv.com/songs/60111105.mkv +陶喆+王奕丁-梦醒时分 Take A Bow,http://em.21dtv.com/songs/60126414.mkv +MCFLY-Love Is On The Radio,http://em.21dtv.com/songs/60093935.mkv +Sam Tsui+Megan Nicole-Locked Out of Heaven,http://em.21dtv.com/songs/60103817.mkv +Birdy-Keeping Your Head Up,http://em.21dtv.com/songs/60119104.mkv +Nightwish-I Want My Tears Back,http://em.21dtv.com/songs/60103803.mkv +Kat Daklila-I think I am in love,http://em.21dtv.com/songs/60122389.mkv +许魏洲-I Remember Your Eyes,http://em.21dtv.com/songs/60120944.mkv +秦宇子-I Love Rock 'n' Roll,http://em.21dtv.com/songs/60103496.mkv +朱元冰-I Don't Wanna Lose U,http://em.21dtv.com/songs/60118650.mkv +Coldplay+Beyonce-Hymn For The Weekend,http://em.21dtv.com/songs/60119114.mkv +黑豹-How Do We Find A Way,http://em.21dtv.com/songs/60130945.mkv +侧田+Dough boy-Heads Up Phones Down,http://em.21dtv.com/songs/60134896.mkv +Florida Georgia Line+Backstreet Boys-God Your Mama And Me,http://em.21dtv.com/songs/60132077.mkv +网络歌手-低音炮电音舞曲(伴奏)_gf(网络歌手),http://em.21dtv.com/songs/50000222.mkv +尚雯婕-单身男孩 bling bling boy,http://em.21dtv.com/songs/60130273.mkv +尚雯婕-单身男孩 bling bling boy,http://em.21dtv.com/songs/60129011.mkv +以格-Don't worry too much,http://em.21dtv.com/songs/60123617.mkv +Glee Cast-Don't Stop Believing,http://em.21dtv.com/songs/60103017.mkv +胡彦斌-Don't Break My Heart,http://em.21dtv.com/songs/60108820.mkv +毕夏-Don't break my heart,http://em.21dtv.com/songs/60107861.mkv +李文琦-Don't break my heart,http://em.21dtv.com/songs/60104202.mkv +陈羽凡+米可+-Dont Break My Heart,http://em.21dtv.com/songs/60095139.mkv +Lady Bees-对面的女孩看过来 我的未来不是 曾经的你,http://em.21dtv.com/songs/60124930.mkv +Katy B-Crying For No Reason,http://em.21dtv.com/songs/60098036.mkv +陈彦允-Cant Stop Loving You,http://em.21dtv.com/songs/60133041.mkv +陈彦允-Cant Stop Loving You,http://em.21dtv.com/songs/60131942.mkv +Céline Dion+Peabo Bryson-Beauty and the Beast,http://em.21dtv.com/songs/60133189.mkv +Ariana Grande+John Legend-Beauty and the Beast,http://em.21dtv.com/songs/60133170.mkv +小右-Back To The Old Time,http://em.21dtv.com/songs/60133593.mkv +罗中旭+纪敏佳+郁可唯-暗香 梅花三弄 爱江山更爱美人,http://em.21dtv.com/songs/60126026.mkv +Elle King-America S Sweetheart,http://em.21dtv.com/songs/60124870.mkv +小松未可子-终わらないメロディーを歌いだしました。,http://em.21dtv.com/songs/60103234.mkv +金池-You Don't Wanna Cry,http://em.21dtv.com/songs/60121034.mkv +鹿晗-有点儿意思THAT GOOD GOOD,http://em.21dtv.com/songs/60117400.mkv +八大巨星-新年喜眉梢+福星高照乐开怀+醒狮来拜年,http://em.21dtv.com/songs/60089146.mkv +舞曲-相见不如怀念+为你朝思暮想+山不转水转,http://em.21dtv.com/songs/60090138.mkv +罗中旭+伍思凯-星光灿烂 特别的爱给特别的你,http://em.21dtv.com/songs/60126025.mkv +乔任梁-Wonderful Life,http://em.21dtv.com/songs/60121347.mkv +Matoma-Wonderful Life,http://em.21dtv.com/songs/60121284.mkv +咖啡少年-Why Would I Do Like,http://em.21dtv.com/songs/60131276.mkv +David Guetta+Emeli Sande-What I Did For Love,http://em.21dtv.com/songs/60109086.mkv +ADAM LAMBERT+LALEH-WELCOME TO THE SHOW,http://em.21dtv.com/songs/60129876.mkv +TVB群星-We Are The Only One,http://em.21dtv.com/songs/60103046.mkv +Fais+Afrojack-Used To Have It All,http://em.21dtv.com/songs/60129929.mkv +Elle King-Under the Influence,http://em.21dtv.com/songs/60122371.mkv +KELLY CLARKSON-Underneath The Tree(演唱会),http://em.21dtv.com/songs/60093930.mkv +Mims-This Is Why I'M Hot,http://em.21dtv.com/songs/60124952.mkv +Florida Georgia Line+Luke Bryan-This Is How We Roll,http://em.21dtv.com/songs/60104673.mkv +Chet Faker+Marcus Marr-The Trouble With Us,http://em.21dtv.com/songs/60119113.mkv +迪玛希-The Show Must Go On,http://em.21dtv.com/songs/60132952.mkv +BBF-The Show Must Go On,http://em.21dtv.com/songs/60132043.mkv +张靓颖-The Diva Dance(演唱会),http://em.21dtv.com/songs/60129126.mkv +脸红的思春期-Tell me you love me,http://em.21dtv.com/songs/60131751.mkv +高凯莉-TELL ME YOU LOVE ME,http://em.21dtv.com/songs/60124720.mkv +MIKA-TAKE IT EASY,http://em.21dtv.com/songs/60103798.mkv +Justin Bieber-Stuck In The Moment,http://em.21dtv.com/songs/60121264.mkv +前山田健一-Start it right away,http://em.21dtv.com/songs/60107547.mkv +Keith Urban-Somewhere In My Car,http://em.21dtv.com/songs/60104694.mkv +群星-思念谁 同桌的你 心动 鸿雁,http://em.21dtv.com/songs/60126055.mkv +Victoria's Secret Angels-Sing Deck The Halls,http://em.21dtv.com/songs/60130004.mkv +范晶-Show Your Beautiful,http://em.21dtv.com/songs/60119921.mkv +Martin Garrix+Dua Lipa-Scared To Be Lonely,http://em.21dtv.com/songs/60134754.mkv +J.Fla-Scared To Be Lonely,http://em.21dtv.com/songs/60134705.mkv +妤桢-Say You Wont Let Go,http://em.21dtv.com/songs/60132339.mkv +赵炫棋-Rumble Tumble Dance,http://em.21dtv.com/songs/60111416.mkv +陈大天-Rock N Roll Is Dead,http://em.21dtv.com/songs/60107311.mkv +ゆいかおり-Ring Ring Rainbow!!,http://em.21dtv.com/songs/60115652.mkv +巫启贤+腾格尔+艾菲-绒花 改变自己 999朵玫瑰,http://em.21dtv.com/songs/60125461.mkv +张津涤-如果不爱我(DJ Remix)(无损),http://em.21dtv.com/songs/50000256.mkv +Michael Ray-Real Men Love Jesus,http://em.21dtv.com/songs/60124948.mkv +纪敏佳+李翊君+温岚-请走人行道+假行僧+花房姑娘+无地自容,http://em.21dtv.com/songs/60095028.mkv +DJ小晨-其实男人也会流眼泪(DJ版Remix),http://em.21dtv.com/songs/50000138.mkv +Nathan Sykes-Over And Over Again,http://em.21dtv.com/songs/60117477.mkv +Juicy J+The Weeknd-One of Those Nights,http://em.21dtv.com/songs/60108230.mkv +周杰伦+邓丽君-你怎么说+红尘客栈+千里之外,http://em.21dtv.com/songs/60094855.mkv +INFINITE F-My Heart Is Beating,http://em.21dtv.com/songs/60118261.mkv +艾丽雅-Miss Rain & Mr.Wind,http://em.21dtv.com/songs/60129519.mkv +陈杰瑞-Love You More 爱你多一些,http://em.21dtv.com/songs/60134406.mkv +陈杰瑞-Love You More 爱你多一些,http://em.21dtv.com/songs/60133045.mkv +Ellie Goulding-Love Me Like You Do,http://em.21dtv.com/songs/60121244.mkv +KYLIE MINOGUE-LOVE AT FIRST SIGHT,http://em.21dtv.com/songs/60109838.mkv +Eve+Gwen Stefani-Let Me Blow Ya Mind,http://em.21dtv.com/songs/60104671.mkv +倪力-I wanna be with you,http://em.21dtv.com/songs/60125145.mkv +Robbie Williams+Olly Murs-I Wanna Be Like You,http://em.21dtv.com/songs/60115622.mkv +陈奂仁-Its Just What We Do,http://em.21dtv.com/songs/60135911.mkv +林昭宇-It'S Alright I'M Ok,http://em.21dtv.com/songs/60125781.mkv +Michael Wong-I'm So Bad I'm Good,http://em.21dtv.com/songs/60110780.mkv +唐一嘉+萧敬腾-I Believe I Can Fly,http://em.21dtv.com/songs/60094441.mkv +James Bay-Hold Back The River,http://em.21dtv.com/songs/60109096.mkv +Dj Shah+brian Laruso+jes-Higher Than The Sun,http://em.21dtv.com/songs/60129915.mkv +群星-HEY JUDE+SMOKE ON THE WATER+WE WILL ROCK YOU+I LOVE ROCK AND ROLL+WE ARE THE CHAMPIONS,http://em.21dtv.com/songs/60097995.mkv +shooting star,http://em.21dtv.com/songs/60109852.mkv +Moumoon-Hello Shooting star,http://em.21dtv.com/songs/60109104.mkv +Aurora-Half The World Away,http://em.21dtv.com/songs/60123444.mkv +柯智棠-Goodbye Goodnight,http://em.21dtv.com/songs/60115244.mkv +Bon Jovi-God Bless This Mess,http://em.21dtv.com/songs/60131037.mkv +小沈阳+多亮+李佳薇-哥哥^听妈妈的话^天地在我心^真的爱你,http://em.21dtv.com/songs/60105774.mkv +戸松遥+日笠阳子+雨宫天-Eyecatch! Too much!,http://em.21dtv.com/songs/60131458.mkv +柯以敏+阿杜+郁可唯-电台情歌+水晶+爱情+如果·爱+我愿意,http://em.21dtv.com/songs/60094964.mkv +柯以敏+郁可唯+罗中旭-999朵玫瑰+我终于失去了你+用心良苦,http://em.21dtv.com/songs/60094963.mkv +Meghan Trainor-Dear Future Husband,http://em.21dtv.com/songs/60109102.mkv +林俊杰-打错了 Its Your Chance,http://em.21dtv.com/songs/60130479.mkv +萧敬腾+许一鸣-Cry Me A River,http://em.21dtv.com/songs/60126131.mkv +Demi Lovato-Cool for the Summer,http://em.21dtv.com/songs/60113145.mkv +少女时代-Catch Me If You Can,http://em.21dtv.com/songs/60111028.mkv +刘至佳-Can't stop luvin' U,http://em.21dtv.com/songs/60122532.mkv +Blake Shelton-Came Here To Forget,http://em.21dtv.com/songs/60122349.mkv +Justin Bieber-Born To Be Somebody,http://em.21dtv.com/songs/60121258.mkv +谭维维-Blah Blah Blah,http://em.21dtv.com/songs/60129621.mkv +Chris Brown+Tyga+Schoolboy Q-Bitches N Marijuana,http://em.21dtv.com/songs/60113140.mkv +Helena Bonham Carter-Bibbidi Bobbidi Boo,http://em.21dtv.com/songs/60109821.mkv +蔡健雅-Beautiful Love,http://em.21dtv.com/songs/60117193.mkv +许佳慧-Baby Love Love Love,http://em.21dtv.com/songs/60103566.mkv +Train-Angel in Blue Jeans,http://em.21dtv.com/songs/60103833.mkv +Meghan Trainor-All About That Bass,http://em.21dtv.com/songs/60121290.mkv +MEGHAN TRAINOR-ALL ABOUT THAT BASS,http://em.21dtv.com/songs/60120227.mkv +Jess Glynne-Ain't Got Far To Go,http://em.21dtv.com/songs/60119153.mkv +iKON-周大侠 Rhythm Ta,http://em.21dtv.com/songs/60123480.mkv +古巨基-找到你是我最伟大的成功,http://em.21dtv.com/songs/60113320.mkv +贝贝-Young Rock Star,http://em.21dtv.com/songs/60124504.mkv +李文慧-Yellow^流星,http://em.21dtv.com/songs/60113626.mkv +卢广仲-星座爱情故事之巨蟹座可不可以继续说爱,http://em.21dtv.com/songs/60125245.mkv +坂本真绫-幸せについて私が知っている5つの方法,http://em.21dtv.com/songs/60110104.mkv +SNH48-小苹果 Gentleman,http://em.21dtv.com/songs/60124996.mkv +腾格尔+阿鲁阿卓+巫启贤-小河淌水^要走的阿老表^阿里山的姑娘,http://em.21dtv.com/songs/60102650.mkv +吴克羣-我要快乐+你要的爱+对面的女孩看过来,http://em.21dtv.com/songs/60094849.mkv +DJ舞曲-Wonderful Life(无损),http://em.21dtv.com/songs/50000260.mkv +[Group] +groupName=十六万歌曲MV等 - 112 +Take That-When We Were Young,http://em.21dtv.com/songs/60117497.mkv +Sabrina Carpenter-We'll Be The Stars,http://em.21dtv.com/songs/60114355.mkv +sweetbox-We Can Work It Out,http://em.21dtv.com/songs/60110798.mkv +Hugh Grant-Way Back Into Love,http://em.21dtv.com/songs/60110767.mkv +梁静茹+品冠-Way Back Into Love,http://em.21dtv.com/songs/60098531.mkv +David Guetta+Zara Larsson-This One's For You,http://em.21dtv.com/songs/60122362.mkv +袁野-THINKING ABOUT YOU,http://em.21dtv.com/songs/60124462.mkv +鸡蛋蒸肉饼-The loving mothers,http://em.21dtv.com/songs/60134485.mkv +吴祥+张照娣-Thank You Love You,http://em.21dtv.com/songs/60105699.mkv +ONE OK ROCK+5 Seconds of Summer-Take what you want,http://em.21dtv.com/songs/60131095.mkv +SNH48-Super Star 上下,http://em.21dtv.com/songs/60124992.mkv +Frankie Ballard-Sunshine & Whiskey,http://em.21dtv.com/songs/60103772.mkv +Lana Del Rey-Summertime Sadness,http://em.21dtv.com/songs/60109840.mkv +喜多修平-Starlight Rhapsody,http://em.21dtv.com/songs/60121523.mkv +沈建宏+卢芃宇-Some Kinds Of Love,http://em.21dtv.com/songs/60130534.mkv +沈建宏+卢芃宇-Some Kinds Of Love,http://em.21dtv.com/songs/60129339.mkv +网络歌手-Soho超嗨酒吧超叼开场锋少(DJ),http://em.21dtv.com/songs/50000221.mkv +爱搭积木的粉刷匠(黄雅莉)-Shall We Talk,http://em.21dtv.com/songs/60129370.mkv +Lady Gaga-Second Time Around,http://em.21dtv.com/songs/60110775.mkv +贺一航-是爱情老了还是我们老了,http://em.21dtv.com/songs/60115413.mkv +方大同+Fifi Rong-Run From Your Love,http://em.21dtv.com/songs/60131466.mkv +Sofia Carson-Rotten To The Core,http://em.21dtv.com/songs/60129991.mkv +陈奕迅-热辣辣+反斗星+头发乱了+好戏在后头,http://em.21dtv.com/songs/60093403.mkv +黄凯芹-情人+一生何求+千言万语+好歌献给你,http://em.21dtv.com/songs/60089029.mkv +Glee Cast-Party All The Time,http://em.21dtv.com/songs/60111608.mkv +张学友-One Shining Moment,http://em.21dtv.com/songs/60096068.mkv +小沈阳+多亮+李佳薇-牛三斤 难念的经 我心永恒,http://em.21dtv.com/songs/60125431.mkv +50 CENT+CHRIS BROWN-NO ROMEO NO JULIET,http://em.21dtv.com/songs/60129871.mkv +The Script-No Good in Goodbye,http://em.21dtv.com/songs/60108251.mkv +谢和弦-Never Let You Down,http://em.21dtv.com/songs/60105371.mkv +Bethany Mota+Mike Tompkins-Need You Right Now,http://em.21dtv.com/songs/60115570.mkv +卢凯彤-你的完美有点难懂并不代表世界不能包容,http://em.21dtv.com/songs/60131230.mkv +卢凯彤-你的完美有点难懂并不代表世界不能包容,http://em.21dtv.com/songs/60128859.mkv +陈彦允-Money Back Me Home,http://em.21dtv.com/songs/60135917.mkv +金桢勋+玄英-Marry Me Marry You,http://em.21dtv.com/songs/60123260.mkv +关诗敏-Luv Me Luv Me 要说出来,http://em.21dtv.com/songs/60125155.mkv +UNION J-Loving You Is Easy,http://em.21dtv.com/songs/60093942.mkv +艾菲-LOVE ON TOP[中国梦之声],http://em.21dtv.com/songs/60112909.mkv +王敏德-Love In The Middle,http://em.21dtv.com/songs/60113863.mkv +莫安琪-Lose Yourself,http://em.21dtv.com/songs/60124419.mkv +Owl City-Light Of Christmas,http://em.21dtv.com/songs/60124967.mkv +La Roux-Let Me Down Gently,http://em.21dtv.com/songs/60103025.mkv +李克勤+容祖儿-克不容缓组曲 逃 嘭门 说好的幸福呢,http://em.21dtv.com/songs/60120609.mkv +郭涛-可爱的一朵玫瑰花 流星无悔,http://em.21dtv.com/songs/60124579.mkv +Icona Pop-Just Another Night,http://em.21dtv.com/songs/60124898.mkv +Barry Manilow-I Write The Songs,http://em.21dtv.com/songs/60103752.mkv +黎晓阳-I WILL BE A LRIGHT,http://em.21dtv.com/songs/60136034.mkv +Zedd+Selena Gomez-I Want You to Know,http://em.21dtv.com/songs/60109909.mkv +清水翔太-I miss you refrain,http://em.21dtv.com/songs/60111241.mkv +秦宇子-I Love Rock'n Roll,http://em.21dtv.com/songs/60104346.mkv +Tiffany-I Just Wanna Dance,http://em.21dtv.com/songs/60125025.mkv +Glen Hansard+Marketa Irglova-If You Want Me,http://em.21dtv.com/songs/60103779.mkv +陈梓童-If I Ain't Got You,http://em.21dtv.com/songs/60115494.mkv +群星-贺新年_财神的照料_大家恭喜_贺新年,http://em.21dtv.com/songs/60091864.mkv +金俊秀-How Can I Love You,http://em.21dtv.com/songs/60121021.mkv +Avril Lavigne-Hello Kitty,http://em.21dtv.com/songs/60110746.mkv +Wiz Khalifa+Iggy Azalea-Go Hard or Go Home,http://em.21dtv.com/songs/60110807.mkv +ROMEO-Give Me Your Heart,http://em.21dtv.com/songs/60104715.mkv +耿斯汉+王凯琪+帕尔哈提+李琪-Give Me One Reason,http://em.21dtv.com/songs/60104373.mkv +帕尔哈提-Give Me One Reason,http://em.21dtv.com/songs/60104094.mkv +Maroon 5-Give A Little More,http://em.21dtv.com/songs/60118270.mkv +张靓颖-Get Out Of My Life,http://em.21dtv.com/songs/60102246.mkv +Leona Lewis-Fire Under My Feet,http://em.21dtv.com/songs/60112443.mkv +Sia-Fire Meet Gasoline,http://em.21dtv.com/songs/60111650.mkv +Glen Hansard+Marketa Irglova-Falling Slowly,http://em.21dtv.com/songs/60103778.mkv +年哥-当我孤独的时候还可以抱着你,http://em.21dtv.com/songs/60113443.mkv +张靓颖-Dream Party,http://em.21dtv.com/songs/60119551.mkv +Adele-Don't You Remember,http://em.21dtv.com/songs/60115561.mkv +PSY-DADDY 江南Style,http://em.21dtv.com/songs/60122411.mkv +朱莉叶-吃太饱 Check The Ball,http://em.21dtv.com/songs/60132519.mkv +群星-CRY_ON_MY_SHOULDER,http://em.21dtv.com/songs/60094632.mkv +Justin Bieber-Common Denominator,http://em.21dtv.com/songs/60121259.mkv +NAFLA+刘昱妤-COCO MADE ME DO IT,http://em.21dtv.com/songs/60133254.mkv +Jibbs-Chain Hang Low,http://em.21dtv.com/songs/60122387.mkv +By2-Cat And Mouse,http://em.21dtv.com/songs/60113134.mkv +Ed Sheeran-Castle on the Hill,http://em.21dtv.com/songs/60131058.mkv +The Weeknd-Can't Feel My Face,http://em.21dtv.com/songs/60113197.mkv +乔紫乔-不要每天陪我聊天因为我害怕会喜欢上你,http://em.21dtv.com/songs/60128747.mkv +大张伟-北京小妞 新长征路上的摇滚,http://em.21dtv.com/songs/60125348.mkv +朴孝信-Beautiful Tomorrow,http://em.21dtv.com/songs/60130398.mkv +WestLife-Beautiful In White,http://em.21dtv.com/songs/60134819.mkv +Sam Tsui+Kina Grannis-Baby One More Time,http://em.21dtv.com/songs/60134793.mkv +王晰-Autumn Leaves,http://em.21dtv.com/songs/60125926.mkv +曾路得-AS HIGH AS THE SKY,http://em.21dtv.com/songs/60129197.mkv +Various Artists-Another Day of Sun,http://em.21dtv.com/songs/60134817.mkv +群星-Angels 时代曲 摘星,http://em.21dtv.com/songs/60126042.mkv +The Henningsens-American Beautiful,http://em.21dtv.com/songs/60125019.mkv +林俊杰-ALWAYS ONLINE,http://em.21dtv.com/songs/60129295.mkv +黄霄云-All By Myself,http://em.21dtv.com/songs/60115553.mkv +ONE☆DRAFT-ダイヤモンド~世界で一番固いイシ~,http://em.21dtv.com/songs/60101808.mkv +李泉-只有为你+靠近+直觉+鲁冰花+味道,http://em.21dtv.com/songs/60080213.mkv +李泉+高明骏+黄龄-只为有你+靠近+直觉+鲁冰花+味道,http://em.21dtv.com/songs/60094939.mkv +好妹妹乐队-祝天下所有的情侣都是失散多年的兄妹,http://em.21dtv.com/songs/60110122.mkv +央金兰泽-又是羊羔花盛开的季节,http://em.21dtv.com/songs/60111799.mkv +胡利基-You Wont Be Alone,http://em.21dtv.com/songs/60131741.mkv +魏妙如-50 SHAPES OF KUEH,http://em.21dtv.com/songs/60124728.mkv +John The Whistler-Wild Wild Web[DJ],http://em.21dtv.com/songs/60114947.mkv +蜜蜂少女队-Where To Find You,http://em.21dtv.com/songs/60135717.mkv +蜜蜂少女队-Where To Find You,http://em.21dtv.com/songs/60134206.mkv +Avril Lavigne-When You Are Gone,http://em.21dtv.com/songs/60103000.mkv +Wherever,http://em.21dtv.com/songs/60133233.mkv +周觅-Whats Your Number,http://em.21dtv.com/songs/60130199.mkv +兄弟本色-We Will Rule 背水一战,http://em.21dtv.com/songs/60122501.mkv +C block+李沫萱-Walking On My Way,http://em.21dtv.com/songs/60131043.mkv +王若琳-Truckin' Everyday,http://em.21dtv.com/songs/60113879.mkv +果味VC-Together We Fight,http://em.21dtv.com/songs/60112802.mkv +Pitbull+Ne Yo-Time Of Our Lives,http://em.21dtv.com/songs/60110789.mkv +Katy Perry-This Is How We Do,http://em.21dtv.com/songs/60103024.mkv +侧田-Thinking Out Loud,http://em.21dtv.com/songs/60133374.mkv +Aloe Blacc+David Correy-The World Is Ours,http://em.21dtv.com/songs/60101725.mkv +周子琰-The World is Love(HD),http://em.21dtv.com/songs/10012745.mkv +Elvis Presley-The Wonder Of You,http://em.21dtv.com/songs/60129928.mkv +Bruno Mars-Thats What I Like,http://em.21dtv.com/songs/60134650.mkv +Justin Bieber-That Should Be Me,http://em.21dtv.com/songs/60121265.mkv +萨顶顶+朱桦+麦子杰-听海+独角戏+我是不是你最疼爱的人,http://em.21dtv.com/songs/60080690.mkv +Tinie Tempah+Tinashe-Text From Your Ex,http://em.21dtv.com/songs/60134812.mkv +Hozier-Take Me To Church,http://em.21dtv.com/songs/60107410.mkv +So Good,http://em.21dtv.com/songs/60118897.mkv +成诗京-Somewhere Someday,http://em.21dtv.com/songs/60130356.mkv +Nicole-Something Special,http://em.21dtv.com/songs/60114350.mkv +G Eazy+Marc E.Bassy-Some Kind of Drug,http://em.21dtv.com/songs/60129935.mkv +Tough Love-So Freaking Tight,http://em.21dtv.com/songs/60110800.mkv +ROLLUPHILLS-Sign Of The Times,http://em.21dtv.com/songs/60134790.mkv +Harry Styles-Sign of the Times,http://em.21dtv.com/songs/60134692.mkv +刀郎-守候在凌晨两点的伤心酒吧(DJ版),http://em.21dtv.com/songs/50000204.mkv +Walk The Moon-Shut Up And Dance,http://em.21dtv.com/songs/60110805.mkv +Tori Kelly-Should've Been Us,http://em.21dtv.com/songs/60113199.mkv +别日克-Senorita,http://em.21dtv.com/songs/60113306.mkv +Ben Haenow+Kelly Clarkson-Second Hand Heart,http://em.21dtv.com/songs/60119101.mkv +张智成-是不是这样的夜晚你才会这样的想起我,http://em.21dtv.com/songs/60093817.mkv +吴宗宪-是不是这样的夜晚你才会这样的想起我,http://em.21dtv.com/songs/60089206.mkv +LAGOON-Rhapsody In White,http://em.21dtv.com/songs/60117471.mkv +Fort Minor-Remember The Name,http://em.21dtv.com/songs/60124874.mkv +Perfume-Relax In The City,http://em.21dtv.com/songs/60111640.mkv +Demi Lovato+Cher Lloyd-Really Don't Care,http://em.21dtv.com/songs/60101752.mkv +姚希-青春修炼手册 听妈妈的话,http://em.21dtv.com/songs/60126770.mkv +NC.A+陆星材-Playing with fire,http://em.21dtv.com/songs/60131090.mkv +Nissy-Playing With Fire,http://em.21dtv.com/songs/60117479.mkv +JONAS BLUE+JP COOPER-PERFECT STRANGERS,http://em.21dtv.com/songs/60129946.mkv +ALL OFF-One More Chance!!,http://em.21dtv.com/songs/60116434.mkv +谢郡+周艳泓-One Belt One Road,http://em.21dtv.com/songs/60126206.mkv +Zico+mino-Okey Dokey,http://em.21dtv.com/songs/60125058.mkv +刘德华+Djlee-偶断丝连(DJ版 Fkhouse),http://em.21dtv.com/songs/50000205.mkv +群星-弄狮弄龙贺新年+紧来过新年+大发财,http://em.21dtv.com/songs/60095869.mkv +Blonde+Craig David-Nothing Like This,http://em.21dtv.com/songs/60122350.mkv +Little Mix+Machine Gun Kelly-No More Sad Songs,http://em.21dtv.com/songs/60134740.mkv +杨珏婷-Never Say Goodbye,http://em.21dtv.com/songs/60119697.mkv +艾怡良-Never Be The Same,http://em.21dtv.com/songs/60107151.mkv +Jessica Mauboy-Never Be The Same,http://em.21dtv.com/songs/60104691.mkv +泳儿+尚雯婕+莫龙丹-你不知道的事^爱我还是他^夜夜夜夜,http://em.21dtv.com/songs/60106066.mkv +孙楠+王逸洁-莫斯科郊外的晚上^映山红,http://em.21dtv.com/songs/60102121.mkv +白举纲-Mr.White&mr.Black,http://em.21dtv.com/songs/60112129.mkv +林子祥-美丽小姑娘+世运在莫斯科+阿里巴巴,http://em.21dtv.com/songs/60092860.mkv +耿斯汉-美丽世界的孤儿,http://em.21dtv.com/songs/60103524.mkv +艾丽雅-Miss Rain Mr.Wind,http://em.21dtv.com/songs/60130680.mkv +one direction-midnight memories,http://em.21dtv.com/songs/60098049.mkv +Jeffree Star-Love To My Cobain,http://em.21dtv.com/songs/60124908.mkv +David Guetta+Sam Martin-Lovers On The Sun,http://em.21dtv.com/songs/60101750.mkv +Steven Tyler-Love Is Your Name,http://em.21dtv.com/songs/60114358.mkv +袁娅维-Love Can Fly,http://em.21dtv.com/songs/60119956.mkv +张杰-LOST IN THE STARS,http://em.21dtv.com/songs/60126884.mkv +热斑-Lost In The Night,http://em.21dtv.com/songs/60133961.mkv +群星-浪花一朵朵+小薇+对面的女孩看过来,http://em.21dtv.com/songs/60098000.mkv +GOT7-LAUGH LAUGH LAUGH,http://em.21dtv.com/songs/60134685.mkv +饭田里穂-KISS! KISS! KISS!,http://em.21dtv.com/songs/60120131.mkv +iKON-Kiss Goodbye,http://em.21dtv.com/songs/60124899.mkv +阿超-寂寞电台 lonely radio,http://em.21dtv.com/songs/60098833.mkv +DJ-劲爆摇滚欧美舞曲绝美萨克斯电音串烧,http://em.21dtv.com/songs/60119127.mkv +LINKIN PARK-IN THE END,http://em.21dtv.com/songs/60107418.mkv +AI-Independent Woman,http://em.21dtv.com/songs/60134632.mkv +Taron Egerton-Im Still Standing,http://em.21dtv.com/songs/60133292.mkv +Lonestar-I'M Already There,http://em.21dtv.com/songs/60124934.mkv +Gnash+Olivia Obrien-I Hate U I Love U,http://em.21dtv.com/songs/60124884.mkv +刘双双-I Am Me Once More,http://em.21dtv.com/songs/60103922.mkv +大张伟+6只脚组合-红星闪闪 穷开心 嘻唰唰,http://em.21dtv.com/songs/60123799.mkv +TJR-How Ya Feelin[DJ],http://em.21dtv.com/songs/60122438.mkv +Ed Sheeran-How Would You Fee,http://em.21dtv.com/songs/60132071.mkv +Michelle Branch-Hopeless Romantic,http://em.21dtv.com/songs/60133250.mkv +TrySail-High Free Spirits,http://em.21dtv.com/songs/60121313.mkv +Aqours-HAPPY PARTY TRAIN,http://em.21dtv.com/songs/60134642.mkv +陈零九-Good Morning 我的乡愁,http://em.21dtv.com/songs/60119032.mkv +A Pink-Good Morning Baby,http://em.21dtv.com/songs/60098003.mkv +柯智棠-Goodbye&Goodnight,http://em.21dtv.com/songs/60116056.mkv +张杰-Give You My World,http://em.21dtv.com/songs/60130324.mkv +128 House Mr B-Girls Girls Girls,http://em.21dtv.com/songs/60119083.mkv +Got7-Girls Girls Girls,http://em.21dtv.com/songs/60106540.mkv +Kiesza-Giant In My Heart,http://em.21dtv.com/songs/60101782.mkv +CHRIS BROWN-FINE BY ME,http://em.21dtv.com/songs/60121231.mkv +欢子-Don't Say Goodbye,http://em.21dtv.com/songs/60127132.mkv +Daya-Don'T Let Me Down,http://em.21dtv.com/songs/60124855.mkv +The Chainsmokers+Daya-Don't Let Me Down,http://em.21dtv.com/songs/60121311.mkv +DJ Fresh+Jay Fay+Ms Dynamite-Dibby Dibby Sound,http://em.21dtv.com/songs/60109087.mkv +豫剧-到边关在显显俺杨家威风《五世请缨》,http://em.21dtv.com/songs/60134546.mkv +网络歌手-车载低音Huose很给力 (舞曲),http://em.21dtv.com/songs/50000227.mkv +DJ舞曲-串烧(绝世经典 65分钟 迪士高),http://em.21dtv.com/songs/50000144.mkv +Cheryl Cole+Tinie Tempah-Crazy Stupid Love,http://em.21dtv.com/songs/60101743.mkv +张靓颖-Change Your World,http://em.21dtv.com/songs/60117744.mkv +张靓颖-Change Your World,http://em.21dtv.com/songs/60113501.mkv +曹震豪-Change For Chance,http://em.21dtv.com/songs/60125654.mkv +曹震豪-CHANGE FOR CHANCE,http://em.21dtv.com/songs/60122803.mkv +安室奈美惠+叶加濑太郎-CAN YOU CELEBRATE,http://em.21dtv.com/songs/60102148.mkv +DNCE-Cake By The Ocean,http://em.21dtv.com/songs/60119135.mkv +张振宇+DJ小巨人-不要再来伤害我(DJ版Remix),http://em.21dtv.com/songs/50000163.mkv +Nightwish-Bye Bye Beautiful,http://em.21dtv.com/songs/60103031.mkv +Pentatonix-Bohemian Rhapsody,http://em.21dtv.com/songs/60134785.mkv +后海大鲨鱼-BLING BLING BLING,http://em.21dtv.com/songs/60133460.mkv +詹小栎+黄圣文-比较大的大提琴 超级玛丽 水手怕水,http://em.21dtv.com/songs/60114768.mkv +Madonna+Nicki Minaj-Bitch I'm Madonna,http://em.21dtv.com/songs/60111631.mkv +韩语-Big Baby Baby(HD),http://em.21dtv.com/songs/10012837.mkv +Berry Good-BibbidiBobbidiBoo,http://em.21dtv.com/songs/60134648.mkv +TRICKY+艾菲-BEIJING TO BERLIN,http://em.21dtv.com/songs/60123551.mkv +Banks-Beggin For Thread,http://em.21dtv.com/songs/60103003.mkv +灭火器乐团-Back To The World,http://em.21dtv.com/songs/60106081.mkv +Sofia Carson-Back to Beautiful,http://em.21dtv.com/songs/60132133.mkv +高登-Baby In Your Eyes,http://em.21dtv.com/songs/60123378.mkv +Jake Bugg-A Song About Love,http://em.21dtv.com/songs/60124904.mkv +谭咏麟-爱上您+爱多一次痛多一次+第一滴泪,http://em.21dtv.com/songs/60093213.mkv +Rick Astley-Angels On My Side,http://em.21dtv.com/songs/60129979.mkv +肖懿航+萧敬腾-Always On My Mind,http://em.21dtv.com/songs/60094641.mkv +林俊杰-ALWAYS ONLINE,http://em.21dtv.com/songs/60107822.mkv +林奕匡-All I Have is You,http://em.21dtv.com/songs/60132601.mkv +Tinashe-All Hands On Deck,http://em.21dtv.com/songs/60133298.mkv +尚雯婕-A Horses Dream 梦马,http://em.21dtv.com/songs/60129009.mkv +岸尾だいすけ-Of~love Forever~,http://em.21dtv.com/songs/60098307.mkv +TWINS-仲有最靓既猪腩肉+旧欢如梦+热咖啡,http://em.21dtv.com/songs/60092204.mkv +杨宗纬-张士超你到底把我家钥匙放在哪里了,http://em.21dtv.com/songs/60130460.mkv +羽泉+范玮琪-最初的梦想+奔跑+我的未来不是梦,http://em.21dtv.com/songs/60094637.mkv +张杰-因为爱情来得不容易,http://em.21dtv.com/songs/60126885.mkv +梁朝伟+DJ伟然-一天一点爱恋(DJ版Remix),http://em.21dtv.com/songs/50000174.mkv +Grace+G Eazy-You Don't Own Me,http://em.21dtv.com/songs/60117458.mkv +VIA-You Are My Dream,http://em.21dtv.com/songs/60131118.mkv +高姗-遇见你的时候所有星星都落到我头上,http://em.21dtv.com/songs/60111538.mkv +吉杰+温岚+高明骏+柯以敏-夜会+流年+你的背包+我最亲爱的,http://em.21dtv.com/songs/60094844.mkv +李翊君-雨蝶+泪海+往事随风+明天的明天的明天,http://em.21dtv.com/songs/60079943.mkv +GACKT-晓月夜 DAY BREAKERS,http://em.21dtv.com/songs/60112435.mkv +李泉+黄龄+顺子-旋木+梦一场+勇敢一点+执迷不悔,http://em.21dtv.com/songs/60080625.mkv +陈雅森-我只能爱你到一百岁,http://em.21dtv.com/songs/60114232.mkv +金志文-我天空中的那颗superstar,http://em.21dtv.com/songs/60135844.mkv +中四舞曲-我们之间两个世界+收留+你的样子,http://em.21dtv.com/songs/60090477.mkv +钧泽-五环之歌+北京北京[梦想的声音],http://em.21dtv.com/songs/60133014.mkv +Sam Tsui-Wherever You Are,http://em.21dtv.com/songs/60103815.mkv +Priscilla Ahn-When You Grow Up,http://em.21dtv.com/songs/60112455.mkv +东方依依-我会等着你把我一生交给你,http://em.21dtv.com/songs/60123591.mkv +Florence And The Machine-What Kind Of Man,http://em.21dtv.com/songs/60114333.mkv +Justin Bieber-What Do You Mean,http://em.21dtv.com/songs/60114341.mkv +Gorillaz+Jehnny Beth-We Got The Power,http://em.21dtv.com/songs/60134682.mkv +吴万力-WE ARE WONDERFUL,http://em.21dtv.com/songs/60123741.mkv +Avicii-Waiting For Love,http://em.21dtv.com/songs/60121214.mkv +Gwen Stefani-Used To Love You,http://em.21dtv.com/songs/60115589.mkv +黄子韬-Underground King,http://em.21dtv.com/songs/60122302.mkv +官灵芝-Unchain My Heart,http://em.21dtv.com/songs/60125414.mkv +萧敬腾+肖懿航-Unchained Melody,http://em.21dtv.com/songs/60094670.mkv +宋秉洋-U Make Me Strong,http://em.21dtv.com/songs/60130259.mkv +岚-Treasure of life,http://em.21dtv.com/songs/60135161.mkv +郑秀文-抬起我的头来+女人之苦+爱你+伤,http://em.21dtv.com/songs/60093310.mkv +Flower-TOMORROW しあわせの法则,http://em.21dtv.com/songs/60109817.mkv +Michael Buble-To Love Somebody,http://em.21dtv.com/songs/60101799.mkv +尚雯婕-谭某某 Viva La Vida,http://em.21dtv.com/songs/60115127.mkv +群星-头家发花红+大家大发财+新年如意,http://em.21dtv.com/songs/60095868.mkv +teve Aoki-Time Capsule,http://em.21dtv.com/songs/60125015.mkv +Mr.Probz-Till Youre Loved,http://em.21dtv.com/songs/60132111.mkv +One Direction-Through The Dark,http://em.21dtv.com/songs/60112452.mkv +Rae Sremmurd-This Could Be Us,http://em.21dtv.com/songs/60110790.mkv +张基河和脸们-The Smell's Gone,http://em.21dtv.com/songs/60123917.mkv +Edgar Ramirez-The Power Of Now,http://em.21dtv.com/songs/60119136.mkv +林峯-The Feelin',http://em.21dtv.com/songs/60127104.mkv +Ruth B.-Superficial Love,http://em.21dtv.com/songs/60134792.mkv +Ruth B-Superficial Love,http://em.21dtv.com/songs/60124982.mkv +信-Still Loving You,http://em.21dtv.com/songs/60118357.mkv +金京浩-Still Loving You,http://em.21dtv.com/songs/60114837.mkv +谭轩辕-Still Loving You,http://em.21dtv.com/songs/60114081.mkv +谭轩辕-Still Loving You,http://em.21dtv.com/songs/60112973.mkv +Ben Haenow-Something I Need,http://em.21dtv.com/songs/60107395.mkv +Onerepublic-Something I Need,http://em.21dtv.com/songs/60098051.mkv +曹格-Someone Like You,http://em.21dtv.com/songs/60113573.mkv +林志炫-Somebody To Love,http://em.21dtv.com/songs/60135425.mkv +Justin Bieber-Somebody To Love,http://em.21dtv.com/songs/60121263.mkv +朴孝信-Shine Your Light,http://em.21dtv.com/songs/60111152.mkv +Little Mix-Secret Love Song,http://em.21dtv.com/songs/60119157.mkv +UNDER LOVER-SAY OLNY MY BABY,http://em.21dtv.com/songs/60123555.mkv +Carly Rae Jepsen-Run Away With Me,http://em.21dtv.com/songs/60114935.mkv +分岛花音-Right Light Rise,http://em.21dtv.com/songs/60111711.mkv +IKON-Rhythm Ta,http://em.21dtv.com/songs/60121252.mkv +鹿晗-如果WHAT IF I SAID,http://em.21dtv.com/songs/60134490.mkv +Brandnew Music家族-Respect The Name,http://em.21dtv.com/songs/60129897.mkv +JODE C-READY TO THE TOP,http://em.21dtv.com/songs/60120218.mkv +Lady Gaga-Perfect Illusion,http://em.21dtv.com/songs/60132094.mkv +陈绮贞-peacerevolution,http://em.21dtv.com/songs/60098890.mkv +Taylor Swift-Out Of The Woods,http://em.21dtv.com/songs/60118279.mkv +ROYAL BLOOD-OUT OF THE BLACK,http://em.21dtv.com/songs/60129983.mkv +DJ-欧美夜店酒吧英文劲爆电音慢摇舞曲,http://em.21dtv.com/songs/60123462.mkv +阿宝-农业重金属 (广场舞版)(无损),http://em.21dtv.com/songs/50000249.mkv +LINKIN PARK-NUMB ENCORE[演唱会],http://em.21dtv.com/songs/60112444.mkv +徐良+刘思涵-那年夏天我学会了在被子中抱紧自己,http://em.21dtv.com/songs/60125579.mkv +丁紫-你还会像以前一样深爱我吗,http://em.21dtv.com/songs/60122453.mkv +GENERATIONS from EXILE TRIBE-NEVER LET YOU GO,http://em.21dtv.com/songs/60112436.mkv +Mnek+Zara Larsson-Never Forget You,http://em.21dtv.com/songs/60121294.mkv +张韶涵-Never Forget You,http://em.21dtv.com/songs/60098368.mkv +正午-你把我的幸福给了谁,http://em.21dtv.com/songs/60107855.mkv +James Blake-My Willing Heart,http://em.21dtv.com/songs/60133215.mkv +胡彦斌-毛委员和我们在一起,http://em.21dtv.com/songs/60112900.mkv +Sam Smith-Money On My Mind,http://em.21dtv.com/songs/60098054.mkv +赖伟锋-Money Money Home,http://em.21dtv.com/songs/60122138.mkv +Exile Atsushi-MELROSE ~爱さない约束~,http://em.21dtv.com/songs/60101758.mkv +毛鹏懿-Maybe I Love You,http://em.21dtv.com/songs/60125845.mkv +BoA-Masayume Chasing,http://em.21dtv.com/songs/60101735.mkv +Gwen Stefani-Make Me Like You,http://em.21dtv.com/songs/60120213.mkv +张韶涵+雨馨+雨薇-淋雨一直走 隐形的翅膀,http://em.21dtv.com/songs/60123963.mkv +张韶涵+雨馨+雨薇-淋雨一直走 隐形的翅膀,http://em.21dtv.com/songs/60122755.mkv +Jessica-Love Me The Same,http://em.21dtv.com/songs/60134710.mkv +Little Mix-Love Me Like You,http://em.21dtv.com/songs/60115611.mkv +MIXX-Love Is A Sudden,http://em.21dtv.com/songs/60131085.mkv +卫诗-Lonely Christmas,http://em.21dtv.com/songs/60130145.mkv +2BIC-LONELY CHRISTMAS,http://em.21dtv.com/songs/60102986.mkv +舞曲-离家的孩子+军中绿花+我不够爱你(中四),http://em.21dtv.com/songs/60090139.mkv +F.I.R.-Light Up The Way,http://em.21dtv.com/songs/60098024.mkv +David Guetta+Nicki Minaj+Lil Wayne-Light My Body Up,http://em.21dtv.com/songs/60133190.mkv +三森すずこ-Light for Knight,http://em.21dtv.com/songs/60115659.mkv +DJViper-两个人的回忆一个人过 (Mix),http://em.21dtv.com/songs/50000133.mkv +Ed Sheeran+Rudimental-Lay It All On Me,http://em.21dtv.com/songs/60118253.mkv +Gentleman-Ladies&Gentleman,http://em.21dtv.com/songs/60115587.mkv +李斯丹妮+艾菲-快让我在这雪地上撒点野,http://em.21dtv.com/songs/60124072.mkv +纪敏佳+郁可唯+罗中旭+伍思凯-开门见山+出卖+爱情转移+谢谢侬,http://em.21dtv.com/songs/60095029.mkv +Melody Day-KISS ON THE LIPS,http://em.21dtv.com/songs/60132107.mkv +冯允谦-Keep On Fight On,http://em.21dtv.com/songs/60123652.mkv +冯允谦+MastaMic-Keep On Fight On,http://em.21dtv.com/songs/60119274.mkv +祈Inory-Keep on Fighting,http://em.21dtv.com/songs/60135612.mkv +柯以敏-999朵玫瑰+我终于失去了你+用心良苦,http://em.21dtv.com/songs/60080603.mkv +金志文-Its Time To Play,http://em.21dtv.com/songs/60131905.mkv +张力尹+泳儿+蔡淳佳-I Swear^听海^短发^童话,http://em.21dtv.com/songs/60105821.mkv +张杰-I See The Lights,http://em.21dtv.com/songs/60111874.mkv +AronChupa-I'm An Albatraoz,http://em.21dtv.com/songs/60110743.mkv +Pretenders-Ill Stand By You,http://em.21dtv.com/songs/60132122.mkv +费翔-I'll Be Your Man,http://em.21dtv.com/songs/60108014.mkv +ak人声-i gotta feelling,http://em.21dtv.com/songs/60098008.mkv +妥云福-I Fell Good,http://em.21dtv.com/songs/60125363.mkv +The Weeknd+Daft Punk-I Feel It Coming,http://em.21dtv.com/songs/60133296.mkv +The Weeknd-I Feel It Coming,http://em.21dtv.com/songs/60131113.mkv +于忆-I feel good 一起摇摆,http://em.21dtv.com/songs/60130055.mkv +刘洺瑒-I don't love you,http://em.21dtv.com/songs/60126646.mkv +木棉-I Can't Lose You,http://em.21dtv.com/songs/60110252.mkv +Michael Bublé-I Believe in You,http://em.21dtv.com/songs/60132108.mkv +宋媛媛-i am yes i am no,http://em.21dtv.com/songs/60098268.mkv +Dua Lipa-Hotter Than Hell,http://em.21dtv.com/songs/60121240.mkv +Passenger-Hotel California,http://em.21dtv.com/songs/60134783.mkv +赵传-Hotel California,http://em.21dtv.com/songs/60118931.mkv +蚝酒众人-蚝酒大会之我们放肆摇晃的青春尾巴,http://em.21dtv.com/songs/60098756.mkv +Jonalyn Viray-Help Me Get Over,http://em.21dtv.com/songs/60121256.mkv +Tpi-Hello My Friends,http://em.21dtv.com/songs/60113200.mkv +Simon D+tiffany-Heartbreak Hotel,http://em.21dtv.com/songs/60129989.mkv +罗琦-给所有知道我名字的人,http://em.21dtv.com/songs/60107946.mkv +Kat Tun-GREATEST JOURNEY,http://em.21dtv.com/songs/60134719.mkv +郑迦文-Goodbye My Lover,http://em.21dtv.com/songs/60126285.mkv +大原樱子-Glorious morning,http://em.21dtv.com/songs/60114464.mkv +Hayley Kiyoko-Girls Like Girls,http://em.21dtv.com/songs/60119149.mkv +姚亦晴-Getting Stronger,http://em.21dtv.com/songs/60132342.mkv +赵晗君-Getting Stronger,http://em.21dtv.com/songs/60104455.mkv +Take That-Get Ready For It,http://em.21dtv.com/songs/60109894.mkv +Daniel Powter-Free Loop,http://em.21dtv.com/songs/60112426.mkv +The Kooks-Forgive & Forget,http://em.21dtv.com/songs/60103828.mkv +Linkin Park-Final Masquerade,http://em.21dtv.com/songs/60103027.mkv +张靓颖+Big Sean-Fighting Shadows,http://em.21dtv.com/songs/60112695.mkv +Abbi-Fa o Cum Trebuie,http://em.21dtv.com/songs/60129874.mkv +户松遥-Fantastic Soda!!,http://em.21dtv.com/songs/60109386.mkv +ISU-Everlasting love,http://em.21dtv.com/songs/60133213.mkv +E Girls-E.G.summer RIDER,http://em.21dtv.com/songs/60123464.mkv +谭咏麟-但愿人长久_小城故事_月亮代表我,http://em.21dtv.com/songs/60088671.mkv +DJ舞曲-地球人都知道我爱上了你(DJ版),http://em.21dtv.com/songs/50000153.mkv +Daya-Dont Let Me Down,http://em.21dtv.com/songs/60132065.mkv +Guns N' Roses-Don't Cry,http://em.21dtv.com/songs/60117459.mkv +钟瑾桦-DON'T ASK ME WHY,http://em.21dtv.com/songs/60123266.mkv +张冬玲+DJ阿圣-东北东北(2015 Remix),http://em.21dtv.com/songs/50000162.mkv +Aqours-Daydream Warrior,http://em.21dtv.com/songs/60131035.mkv +豫剧-《朝阳沟》俺代表娘儿家来欢迎选段,http://em.21dtv.com/songs/60134527.mkv +Slick Rick-Children's Story,http://em.21dtv.com/songs/60119189.mkv +刘浩龙-Change Your Life,http://em.21dtv.com/songs/60110034.mkv +Jessie Ware-Champagne Kisses,http://em.21dtv.com/songs/60111621.mkv +亮亮-冲动的惩罚+回心转意_我说我爱你,http://em.21dtv.com/songs/60087267.mkv +尹美莱-Capture The City,http://em.21dtv.com/songs/60113432.mkv +吴若希-Can't Let You Go,http://em.21dtv.com/songs/60113332.mkv +Whitney Houston-Call You Tonight,http://em.21dtv.com/songs/60101840.mkv +刘依纯-California Hotel,http://em.21dtv.com/songs/60103102.mkv +蔡健东-不要在我离开的时候抱着我,http://em.21dtv.com/songs/60114759.mkv +安室奈美惠+初音ミク-B Who I Want 2 B,http://em.21dtv.com/songs/60121587.mkv +张博林-Boys 'Round Here,http://em.21dtv.com/songs/60113456.mkv +林惠敏+丁泽强-Blue Suede Shoes,http://em.21dtv.com/songs/60094951.mkv +黄子韬-Black White,http://em.21dtv.com/songs/60124735.mkv +魏枫-别怪我把你删除(DJ版)(无损),http://em.21dtv.com/songs/50000252.mkv +灿多-Because It Hurts,http://em.21dtv.com/songs/60106082.mkv +乔毓明-Beautiful Melody,http://em.21dtv.com/songs/60114971.mkv +袁娅维-Beautiful Inside,http://em.21dtv.com/songs/60126165.mkv +李玟-Bad Romance,http://em.21dtv.com/songs/60125708.mkv +До свидания,http://em.21dtv.com/songs/60130402.mkv +杨千嬅-爱在旁若无人的太空,http://em.21dtv.com/songs/60124104.mkv +刘美麟+李斯丹妮+艾菲+大张伟-暗香 十面埋伏 葫芦娃,http://em.21dtv.com/songs/60126658.mkv +Glee Cast-Away In A Manger,http://em.21dtv.com/songs/60124880.mkv +江蕙-爱情雨+无情的人请你离开+想起伊,http://em.21dtv.com/songs/60091589.mkv +JUSTIN BIEBER-All That Matters,http://em.21dtv.com/songs/60093927.mkv +Ed Sheeran-All Of The Stars,http://em.21dtv.com/songs/60101755.mkv +小野贤章-Against The Wind,http://em.21dtv.com/songs/60135144.mkv +坡上村-在开始那一天天色湛蓝你手心出汗,http://em.21dtv.com/songs/60107618.mkv +王杰+DJ伟然-自己带自己回家(DJ版Mix),http://em.21dtv.com/songs/50000177.mkv +黄绮珊+陈波-烛光里的妈妈^鲁冰花,http://em.21dtv.com/songs/60102983.mkv +银环-祖国的大建设一日千里,http://em.21dtv.com/songs/60126335.mkv +金子晴-中国大兵Soldier Man,http://em.21dtv.com/songs/60117290.mkv +五月天-有些事现在不做一辈子都不会做了,http://em.21dtv.com/songs/60096034.mkv +五月天-有些事现在不做一辈子都不会做了(演唱会),http://em.21dtv.com/songs/60084449.mkv +杨坤+旦增尼玛-要死就一定死在你手里,http://em.21dtv.com/songs/60125733.mkv +林志美-You Raise Me Up,http://em.21dtv.com/songs/60113704.mkv +郑淳元-You Raise Me Up,http://em.21dtv.com/songs/60108924.mkv +郑俊树-You Raise Me Up,http://em.21dtv.com/songs/60103619.mkv +郑俊树-You Raise Me Up(中国好声音第三季),http://em.21dtv.com/songs/60102794.mkv +郑淳元-You Are My Rose,http://em.21dtv.com/songs/60113015.mkv +黑龙+王璐岢-You Are My Baby,http://em.21dtv.com/songs/60124761.mkv +李克勤+王铭言-月半小夜曲 护花使者,http://em.21dtv.com/songs/60122840.mkv +刘德华-谢谢你的爱[演唱会],http://em.21dtv.com/songs/60107522.mkv +群星合唱-星星爱月亮+台湾小调+旧欢如梦,http://em.21dtv.com/songs/60093055.mkv +张晓蕊-幸福像金达莱一样,http://em.21dtv.com/songs/60119524.mkv +和田光司-イノセント ~无邪気なままで~,http://em.21dtv.com/songs/60116668.mkv +DJ-外文动感年轻人必备潮锯电音舞曲,http://em.21dtv.com/songs/60119129.mkv +蔡诗芸-Won't Hold Back,http://em.21dtv.com/songs/60105354.mkv +Justin Bieber-Where Are U Now,http://em.21dtv.com/songs/60112440.mkv +BigBang-We like 2 party,http://em.21dtv.com/songs/60112422.mkv +Opetaia Foa'i+Lin Manuel Miranda-We Know the Way,http://em.21dtv.com/songs/60129975.mkv +京晋-We Are Tomorrow,http://em.21dtv.com/songs/60118315.mkv +胡杏儿-我的心里只有你没有他,http://em.21dtv.com/songs/60124380.mkv +黄小琥+刘书含+杜明雅+逗小闷-我的心里只有你没有他,http://em.21dtv.com/songs/60123400.mkv +黄小琥-我的心里只有你没有他,http://em.21dtv.com/songs/60118213.mkv +崔杰+马艺航-我的好兄弟之.唐 鸿胪井与刻石,http://em.21dtv.com/songs/60135165.mkv +李琦-我并不是那么坚强,http://em.21dtv.com/songs/60112762.mkv +Jason Derulo-Want To Want Me,http://em.21dtv.com/songs/60110770.mkv +蔡诗芸+Kevin Lester-Unrequited Love,http://em.21dtv.com/songs/60105355.mkv +Joel Hanson-Traveling Light,http://em.21dtv.com/songs/60103022.mkv +Rihanna-Towards the sun,http://em.21dtv.com/songs/60109865.mkv +王祖蓝+杜丽莎-The Prayer,http://em.21dtv.com/songs/60125940.mkv +Dia Frampton-The Broken Ones,http://em.21dtv.com/songs/60103767.mkv +群星-Talk About Love,http://em.21dtv.com/songs/60106198.mkv +贺国丰-神仙挡不住人想人,http://em.21dtv.com/songs/60118923.mkv +高心远-Superwoman,http://em.21dtv.com/songs/60129820.mkv +张震岳+MC HotDog+顽童MJ116-Super Duper Fly,http://em.21dtv.com/songs/60098366.mkv +Enrique Iglesias+Descemer Bueno+Zion+Lennox-SUBEME LA RADIO,http://em.21dtv.com/songs/60133198.mkv +Deana Carter-Strawberry Wine,http://em.21dtv.com/songs/60117445.mkv +Shawn Mendes-Stitches,http://em.21dtv.com/songs/60118274.mkv +The Vamps-Somebody To You,http://em.21dtv.com/songs/60101835.mkv +李文豪-思念是一种病,http://em.21dtv.com/songs/60113627.mkv +Dj Shah+dj Cosmo+ray Wilson-Show Me The Way,http://em.21dtv.com/songs/60129916.mkv +熊猫团+玩伴组合-Shining Shining,http://em.21dtv.com/songs/60105234.mkv +萧敬腾+马达-是否+Love Is Over,http://em.21dtv.com/songs/60094677.mkv +Scarlett Johansson-Set It All Free,http://em.21dtv.com/songs/60133276.mkv +吴莫愁-Set It All Free,http://em.21dtv.com/songs/60132295.mkv +小北-是不是一个人的生活比两个人快活,http://em.21dtv.com/songs/60126804.mkv +Toni Gonzaga-Say You Love Me,http://em.21dtv.com/songs/60125029.mkv +蔡诗芸-Say You Love Me,http://em.21dtv.com/songs/60105353.mkv +Jessie Ware-Say You Love Me,http://em.21dtv.com/songs/60103787.mkv +金钟民-Sali Go Dali Go,http://em.21dtv.com/songs/60104514.mkv +那英+庾澄庆+汪峰+张惠妹-让我一次爱个够+征服+哭不出来+存在,http://em.21dtv.com/songs/60081495.mkv +Kelly Clarkson-Run Run Rudolph,http://em.21dtv.com/songs/60109097.mkv +F(X)-RUM PUM PUM PUM,http://em.21dtv.com/songs/60093923.mkv +刘昱妤-请你给我好一点的情敌,http://em.21dtv.com/songs/60128829.mkv +欢子-情歌再也唱不出我的伤悲,http://em.21dtv.com/songs/60103401.mkv +郭涛-青春修炼手册+小苹果,http://em.21dtv.com/songs/60123243.mkv +陈奕迅-陪你度过漫长岁月,http://em.21dtv.com/songs/60118150.mkv +Highlight-Plz dont be sad,http://em.21dtv.com/songs/60133207.mkv +John Legend-Ordinary People,http://em.21dtv.com/songs/60132089.mkv +刘铭-Open+Your+Heart,http://em.21dtv.com/songs/60121457.mkv +Soul Star-Only One For Me,http://em.21dtv.com/songs/60131108.mkv +钟舒漫-One More Chance,http://em.21dtv.com/songs/60126329.mkv +Creed-One Last Breath,http://em.21dtv.com/songs/60104661.mkv +News-One For The Win,http://em.21dtv.com/songs/60111638.mkv +Timeflies-Once In A While,http://em.21dtv.com/songs/60123545.mkv +俞胜恩-Oh You Yeah You,http://em.21dtv.com/songs/60115694.mkv +The Vamps-Oh Cecilia(Breaking My Heart),http://em.21dtv.com/songs/60103830.mkv +黄致列-你只是在比我高的地方,http://em.21dtv.com/songs/60126488.mkv +群星-年轻的白杨 蝴蝶飞啊,http://em.21dtv.com/songs/60126054.mkv +蔡依林-Now Is The Time,http://em.21dtv.com/songs/60102709.mkv +吕雨澄+伊登-No One Like You,http://em.21dtv.com/songs/60135006.mkv +Hardwell+craig David-No Holding Back,http://em.21dtv.com/songs/60129942.mkv +邱比-你的一切都是我的风格,http://em.21dtv.com/songs/60120015.mkv +Elbow-My Sad Captains,http://em.21dtv.com/songs/60111600.mkv +梦然-没有你陪伴真的好孤单(演唱会)(HD),http://em.21dtv.com/songs/60133900.mkv +VC组合-魅影流声,http://em.21dtv.com/songs/60123559.mkv +王子文-梦醒时分 至少还有你,http://em.21dtv.com/songs/60125907.mkv +Melanie Martinez-Mrs.Potato Head,http://em.21dtv.com/songs/60129966.mkv +Lady Gaga-Million Reasons,http://em.21dtv.com/songs/60129959.mkv +From Totally Tv-Merry Christmas,http://em.21dtv.com/songs/60129934.mkv +孟鹏-Merry Christmas,http://em.21dtv.com/songs/60125397.mkv +刘瑞琦-每次和你走在路上都会看见一只喵,http://em.21dtv.com/songs/60103124.mkv +朱主爱-MALAYSIA CHABOR,http://em.21dtv.com/songs/60117795.mkv +黄大炜-Love Of My Life,http://em.21dtv.com/songs/60133123.mkv +陈伟霆+Jessica-Love Love Aloha,http://em.21dtv.com/songs/60126364.mkv +Joy Enriquez-Losing The Love,http://em.21dtv.com/songs/60123486.mkv +张曼玉-LOOK IN MY EYES,http://em.21dtv.com/songs/60129091.mkv +周笔畅-Longing For You,http://em.21dtv.com/songs/60121512.mkv +Madonna-Living For Love,http://em.21dtv.com/songs/60109099.mkv +Meghan Trainor-Lips Are Moving,http://em.21dtv.com/songs/60107419.mkv +容祖儿-留给这世上我最爱的人,http://em.21dtv.com/songs/60115105.mkv +牛奶咖啡-Let You Go,http://em.21dtv.com/songs/60119789.mkv +陈慧琳-Let's Celebrate,http://em.21dtv.com/songs/60117342.mkv +DJ Snake+Justin Bieber-Let Me Love You,http://em.21dtv.com/songs/60129918.mkv +Justin Bieber-Let Me Love You,http://em.21dtv.com/songs/60126531.mkv +Ronan Keating-Let Me Love You,http://em.21dtv.com/songs/60122414.mkv +Ariana Grande+Lil Wayne-Let Me Love You,http://em.21dtv.com/songs/60122339.mkv +Mario-Let Me Help You,http://em.21dtv.com/songs/60133242.mkv +王力宏+Djlee-龙的传人(DJ版 House),http://em.21dtv.com/songs/50000176.mkv +潘粤明-快让我在雪地上撒点野,http://em.21dtv.com/songs/60122973.mkv +EXILE-Ki mi ni mu chu,http://em.21dtv.com/songs/60117449.mkv +HKT48-控えめI love you !,http://em.21dtv.com/songs/60111618.mkv +薛凯琪-JUST YOU AND ME,http://em.21dtv.com/songs/60107196.mkv +毕书尽-I Will Miss You,http://em.21dtv.com/songs/60132662.mkv +赵晨唏-I Will Miss You,http://em.21dtv.com/songs/60116264.mkv +Girls'Generation+Tahiti-I Want To Party,http://em.21dtv.com/songs/60129940.mkv +朴宝蓝-Isnt She Lovely,http://em.21dtv.com/songs/60132521.mkv +Eagles Of Death Metal-I Only Want You,http://em.21dtv.com/songs/60124865.mkv +张伟晋-I'm Not The One,http://em.21dtv.com/songs/60119495.mkv +Narsha-I'm In Love,http://em.21dtv.com/songs/60109106.mkv +尚雯婕-i kissed a girl,http://em.21dtv.com/songs/60098302.mkv +Glee Cast-If I Were A Boy,http://em.21dtv.com/songs/60124881.mkv +Miguel+Kendrick Lamar-How Many Drinks,http://em.21dtv.com/songs/60098043.mkv +Darius Rucker-Homegrown Honey,http://em.21dtv.com/songs/60124853.mkv +A Great Big World-Hold Each Other,http://em.21dtv.com/songs/60121200.mkv +雨天-会哭的人不一定会流泪2007之DJ,http://em.21dtv.com/songs/60090303.mkv +阿鲁阿卓+程琳-花儿为什么这样红,http://em.21dtv.com/songs/60122216.mkv +Selena Gomez-Hands To Myself,http://em.21dtv.com/songs/60117485.mkv +羽泉+韩磊+韩红-给所有知道我名字的人,http://em.21dtv.com/songs/60126067.mkv +羽泉+韩磊+韩红-给所有知道我名字的人,http://em.21dtv.com/songs/60120855.mkv +萧敬腾+徐诣帆-Goodbye My Love,http://em.21dtv.com/songs/60112188.mkv +王梵瑞-Goodbey Darling,http://em.21dtv.com/songs/60130590.mkv +板野友美-Gimme Gimme Luv,http://em.21dtv.com/songs/60112793.mkv +群星-桂花巷+纯情青春梦+情字这条路,http://em.21dtv.com/songs/60097998.mkv +Deorro+Chris Brown-Five More Hours,http://em.21dtv.com/songs/60120203.mkv +苏醒-Falling In Love,http://em.21dtv.com/songs/60118007.mkv +Twinko-Falling In Love,http://em.21dtv.com/songs/60106561.mkv +尚雯婕-Extremology 极端者,http://em.21dtv.com/songs/60129010.mkv +刘增瞳-Everybody Knows,http://em.21dtv.com/songs/60134928.mkv +Avril Lavigne-Everybody Hurts,http://em.21dtv.com/songs/60098012.mkv +张信哲-2002年的第一场雪,http://em.21dtv.com/songs/60129068.mkv +李玟+Ne Yo-Earth Song,http://em.21dtv.com/songs/60120640.mkv +段玉宏+李紫欣-见钟情驻心房,http://em.21dtv.com/songs/60093828.mkv +阿杜-电台情歌+水晶+爱情+如果·爱+我愿意,http://em.21dtv.com/songs/60080074.mkv +阿杜+柯以敏+郁可唯-电台情歌+水晶+爱情+如果·爱+我愿意,http://em.21dtv.com/songs/60080073.mkv +Selena-Dreaming of you,http://em.21dtv.com/songs/60111647.mkv +韩昇延-Do you remember,http://em.21dtv.com/songs/60131976.mkv +Vic Mensa-Down On My Luck,http://em.21dtv.com/songs/60117514.mkv +Maroon 5-Dont Wanna Know,http://em.21dtv.com/songs/60132101.mkv +钟舒漫+冯允谦+谢文雅+彭纪谚+Eternity-Dedicate My All,http://em.21dtv.com/songs/60108099.mkv +泳儿-挡不住的风情 对你爱不完 烈女,http://em.21dtv.com/songs/60114651.mkv +Ariana Grande-Dangerous Woman,http://em.21dtv.com/songs/60121212.mkv +妤桢-Come Back To Me,http://em.21dtv.com/songs/60125360.mkv +PARTYNEXTDOOR-COME AND SEE ME,http://em.21dtv.com/songs/60129977.mkv +Gentlemen-C'mon Gentlemen,http://em.21dtv.com/songs/60115588.mkv +Parmalee-Close Your Eyes,http://em.21dtv.com/songs/60101811.mkv +K Michelle-Christmas Night,http://em.21dtv.com/songs/60124919.mkv +Fear And Loathing In Las Vegas-Cast Your Shell,http://em.21dtv.com/songs/60119139.mkv +PENTAGON-Can you feel it,http://em.21dtv.com/songs/60134784.mkv +白艺潾-Bye Bye My Blue,http://em.21dtv.com/songs/60124312.mkv +Bea Miller-burning bridges,http://em.21dtv.com/songs/60134646.mkv +崔龙阳-BridgeToFreedom,http://em.21dtv.com/songs/60123878.mkv +MATTHEW LIEN-BRESSANONE,http://em.21dtv.com/songs/60113174.mkv +Charli XCX-Break The Rules,http://em.21dtv.com/songs/60103755.mkv +D+51-Brand New World(动画),http://em.21dtv.com/songs/60101754.mkv +群星-Born To Be Wild,http://em.21dtv.com/songs/60130655.mkv +张信哲+岳云鹏-不能这样活+原来的我+五环之歌,http://em.21dtv.com/songs/60133646.mkv +Lil Wayne+Drake+future-Bitches Love Me,http://em.21dtv.com/songs/60101789.mkv +杨永聪+Emily-Better Man,http://em.21dtv.com/songs/60125754.mkv +方皓玟-Believe In Live,http://em.21dtv.com/songs/60120577.mkv +林采缇-Be cool Be good,http://em.21dtv.com/songs/60107829.mkv +Olly Murs-Beautiful To Me,http://em.21dtv.com/songs/60108239.mkv +Owl City+Lindsey Stirling-Beautiful Times,http://em.21dtv.com/songs/60101810.mkv +姚贝娜-Beautiful Light(HD),http://em.21dtv.com/songs/10012763.mkv +A Mac+居来提-Beautiful Girls,http://em.21dtv.com/songs/60113122.mkv +Passenger+BIRDY-Beautiful Birds,http://em.21dtv.com/songs/60133261.mkv +Linkin Park-Battle Symphony,http://em.21dtv.com/songs/60133226.mkv +Lady Gaga-bad romance,http://em.21dtv.com/songs/60109839.mkv +Hyemi-Back in the day,http://em.21dtv.com/songs/60133211.mkv +宁桓宇-Baby I Love You,http://em.21dtv.com/songs/60114487.mkv +高恺蔚-Are You With Me,http://em.21dtv.com/songs/60103721.mkv +太极乐队-爱你1314,http://em.21dtv.com/songs/60119398.mkv +太极乐队-爱你1314(替换)(MTV),http://em.21dtv.com/songs/60115081.mkv +AND-ANGEL AND DEVIL,http://em.21dtv.com/songs/60121208.mkv +和田光司+AiM-an Endless tale,http://em.21dtv.com/songs/60116669.mkv +Rihanna-American Oxygen,http://em.21dtv.com/songs/60110792.mkv +Mint-Already Go Lady,http://em.21dtv.com/songs/60121293.mkv +羽泉-Alone In Lonely,http://em.21dtv.com/songs/60107124.mkv +Olivia Ong-All Out Of Love,http://em.21dtv.com/songs/60098046.mkv +Meek Mill+Nicki Minaj-All Eyes On You,http://em.21dtv.com/songs/60113176.mkv +Jennifer Lopez-Ain't Your Mama,http://em.21dtv.com/songs/60121254.mkv +Avicii-Addicted To You(故事情节),http://em.21dtv.com/songs/60098011.mkv +Elyar Fox-A Billion Girls,http://em.21dtv.com/songs/60104669.mkv +Juice Juice-イジワルしないで抱きしめてよ,http://em.21dtv.com/songs/60101776.mkv +寒武纪+李萧杰-只要坚持 梦想总是可以实现的,http://em.21dtv.com/songs/60125420.mkv +向剑林-在那桃花盛开的地方,http://em.21dtv.com/songs/60128878.mkv +庄心妍-再见只是陌生人,http://em.21dtv.com/songs/60115139.mkv +Nora Says+郑宏澧-州界女孩State Line,http://em.21dtv.com/songs/60107424.mkv +江蕙-再会啦心爱的无缘的人+情网+SUKIYAKI,http://em.21dtv.com/songs/60095725.mkv +FIESTAR-You're Pitiful,http://em.21dtv.com/songs/60113158.mkv +潘粤明-Young Man,http://em.21dtv.com/songs/60122971.mkv +Suzu-You Can Do It!,http://em.21dtv.com/songs/60104737.mkv +Olivia-You And Me,http://em.21dtv.com/songs/60108238.mkv +The Pierces-You’ll Be Mine,http://em.21dtv.com/songs/60104743.mkv +张杰+王中幸子-原来你什么都不想要,http://em.21dtv.com/songs/60125514.mkv +胡杏儿-原来你什么都不想要,http://em.21dtv.com/songs/60124377.mkv +刚力彩芽-あなたの100の嫌いなところ,http://em.21dtv.com/songs/60110895.mkv +司徒兰芳-原来爱情已经离我很远,http://em.21dtv.com/songs/60121481.mkv +Lady Bees-小幸运 那些年 青春修炼手册,http://em.21dtv.com/songs/60122394.mkv +八大巨星-新年真好+万事如意+恭贺新禧,http://em.21dtv.com/songs/60089149.mkv +崔子格-我在人民广场跳广场舞(无损),http://em.21dtv.com/songs/50000255.mkv +萧敬腾-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60129559.mkv +徐千雅-我在景德镇等你,http://em.21dtv.com/songs/60126912.mkv +何鹏+张计划-我要去迪拜[DJ版],http://em.21dtv.com/songs/60122483.mkv +田馥甄-无与伦比的美丽[梦想的声音],http://em.21dtv.com/songs/60132759.mkv +怕胖团-我想要MacBook Pro,http://em.21dtv.com/songs/60107750.mkv +本兮-我想要的音乐到底该是什么风格,http://em.21dtv.com/songs/60080429.mkv +陈慧琳+陈小春-无心睡眠+花花宇宙+拒绝再玩,http://em.21dtv.com/songs/60093446.mkv +陶喆+张也-万事如意 小镇姑娘,http://em.21dtv.com/songs/60109718.mkv +好妹妹乐队-我说今晚月光那么美 你说是的,http://em.21dtv.com/songs/60079904.mkv +Kelly Clarkson-Wrapped in Red,http://em.21dtv.com/songs/60106549.mkv +Fifth Harmony+Ty Dolla $ign-Work From Home,http://em.21dtv.com/songs/60120208.mkv +Tyga-Word On Street,http://em.21dtv.com/songs/60125033.mkv +池约翰-Wonderful Life,http://em.21dtv.com/songs/60112053.mkv +Sanchez+Beenzino-5 More Minutes,http://em.21dtv.com/songs/60133273.mkv +Taylor Swift-Wildest Dreams,http://em.21dtv.com/songs/60114360.mkv +轻日记 Cozy Diary-Why So Serious,http://em.21dtv.com/songs/60118082.mkv +Cozy Diary轻日记-Why So Serious,http://em.21dtv.com/songs/60117443.mkv +孟佳-Whos That Girl,http://em.21dtv.com/songs/60131343.mkv +梁心颐-Where Do We Go,http://em.21dtv.com/songs/60131572.mkv +赵传-我很丑可是我很温柔,http://em.21dtv.com/songs/60117255.mkv +张惠妹+林忆莲+蔡健雅+那英-We Are One,http://em.21dtv.com/songs/60104125.mkv +华晨宇-我的滑板鞋2016,http://em.21dtv.com/songs/60128849.mkv +MC HOTDOG+顽童+呆宝静-WATCH ME DO IT,http://em.21dtv.com/songs/60123501.mkv +梦苇-Try Everything,http://em.21dtv.com/songs/60125820.mkv +Shakira-Try Everything,http://em.21dtv.com/songs/60119182.mkv +Green Day-Troubled Times,http://em.21dtv.com/songs/60131063.mkv +Years&Years-Tove Lo Desire,http://em.21dtv.com/songs/60120255.mkv +Stromae-Tous Les Memes,http://em.21dtv.com/songs/60125008.mkv +Panic At The Disco-This Is Gospel,http://em.21dtv.com/songs/60129976.mkv +Ariana Grande-They Dont Know,http://em.21dtv.com/songs/60128665.mkv +麦子杰-特别的爱给特别的你,http://em.21dtv.com/songs/60126463.mkv +Sam Hunt-Take Your Time,http://em.21dtv.com/songs/60109868.mkv +Juice=juice-私が言う前に抱きしめなきゃね,http://em.21dtv.com/songs/60098035.mkv +吴建豪-属于你和我之间的事,http://em.21dtv.com/songs/60125286.mkv +孙刚-上一道道坡坡下一道道梁[演],http://em.21dtv.com/songs/60094869.mkv +安室奈美惠-Sweet 19 Blues,http://em.21dtv.com/songs/60102147.mkv +Kygo+Parson James-Stole The Show,http://em.21dtv.com/songs/60113169.mkv +ZAYN+PARTYNEXTDOOR-Still Got Time,http://em.21dtv.com/songs/60133314.mkv +户松遥-STEP A GO! GO!,http://em.21dtv.com/songs/60115962.mkv +Zedd+Hayley Williams-Stay The Night,http://em.21dtv.com/songs/60112476.mkv +DJ-绅士电这开场我就爱上英文电音,http://em.21dtv.com/songs/60119130.mkv +谭维维-数人玩就是这个调调,http://em.21dtv.com/songs/60119982.mkv +大哲-谁让你爱上有家的男人,http://em.21dtv.com/songs/60103179.mkv +Gwen Stefani-Spark The Fire,http://em.21dtv.com/songs/60107408.mkv +Dal★shabet-Someone like U,http://em.21dtv.com/songs/60117444.mkv +沢井美空-こんな世界、知りたくなかった,http://em.21dtv.com/songs/60110337.mkv +DEAN+Heize-Shut Up&groove,http://em.21dtv.com/songs/60129911.mkv +Jet-She's A Genius,http://em.21dtv.com/songs/60101775.mkv +Lana Del Rey-Shades Of Cool,http://em.21dtv.com/songs/60101785.mkv +Bueno Clinic-Sex Appeal[DJ],http://em.21dtv.com/songs/60122352.mkv +Nada-Seorae Village,http://em.21dtv.com/songs/60131089.mkv +GOD-Saturday Night,http://em.21dtv.com/songs/60101772.mkv +TUNGEVAAG+Tungevaag & Emila-Samsara(DJ版 Jo,http://em.21dtv.com/songs/50000170.mkv +Luke Bryan-Roller Coaster,http://em.21dtv.com/songs/60101792.mkv +Automatic+金俊秀+The Quiett-Rock The World,http://em.21dtv.com/songs/60129884.mkv +ROBBIE WILLIAMS-ROCK DJ,http://em.21dtv.com/songs/60108243.mkv +左成-人们只会看到自己想看到的东西,http://em.21dtv.com/songs/60135170.mkv +The Vamps-Rest Your Love,http://em.21dtv.com/songs/60132140.mkv +The Vamps-Rest Your Love,http://em.21dtv.com/songs/60125021.mkv +Megan Lee-Ready For Love,http://em.21dtv.com/songs/60103029.mkv +车静子-千金难买我的爱,http://em.21dtv.com/songs/60114111.mkv +陈韫-PORCELAIN SOUL,http://em.21dtv.com/songs/60121101.mkv +Kelly Clarkson-Piece By Piece,http://em.21dtv.com/songs/60120220.mkv +猴子飞行员-Peace And Love,http://em.21dtv.com/songs/60129375.mkv +LEONA LEWIS-One More Sleep,http://em.21dtv.com/songs/60093931.mkv +Sunny Hill-Once In Summer,http://em.21dtv.com/songs/60103041.mkv +陈大天-娘子啊 快跟牛魔王出来看上帝,http://em.21dtv.com/songs/60108119.mkv +开开-你要的爱,http://em.21dtv.com/songs/60103263.mkv +刘恺名+杨小曼-你是我今生的依靠,http://em.21dtv.com/songs/60128823.mkv +陈雅森-你是我曾经最爱的女人,http://em.21dtv.com/songs/60114231.mkv +白宁-女神 FASCINATION,http://em.21dtv.com/songs/60109552.mkv +蓝岚-你是不是我最疼爱的人,http://em.21dtv.com/songs/60122089.mkv +单良-南屏晚钟 I'm Yours,http://em.21dtv.com/songs/60125240.mkv +周杰伦-Now You See Me,http://em.21dtv.com/songs/60123755.mkv +周杰伦-Now You See Me,http://em.21dtv.com/songs/60122598.mkv +Tinie Tempah+Jess Glynne-Not Letting Go,http://em.21dtv.com/songs/60112467.mkv +DVBBS+CMC$+Gia Koka-Not Going Home,http://em.21dtv.com/songs/60133194.mkv +AlunaGeorge-Not Above Love,http://em.21dtv.com/songs/60132040.mkv +胡铁-你妈把你嫁给谁,http://em.21dtv.com/songs/60110480.mkv +徐千雅-你来得正是时候,http://em.21dtv.com/songs/60115942.mkv +龙彪-你的心里是谁把我代替,http://em.21dtv.com/songs/60113119.mkv +蓝波-你到底有没有爱过我(DJ版),http://em.21dtv.com/songs/50000235.mkv +牧野由依-嗫きは“Crescendo”,http://em.21dtv.com/songs/60106090.mkv +Little Glee Monster-My Best Friend,http://em.21dtv.com/songs/60134739.mkv +周华健-明天我要嫁给你昨晚你已嫁给谁,http://em.21dtv.com/songs/60089738.mkv +陈奕迅-MR.LONELY,http://em.21dtv.com/songs/60118147.mkv +马博-梅花弄弄弄(DJ版)(无损),http://em.21dtv.com/songs/50000250.mkv +Pitbull+Enrique Iglesias-Messin' Around,http://em.21dtv.com/songs/60123517.mkv +Tujamo-Make U Love Me,http://em.21dtv.com/songs/60133303.mkv +MICHAEL ANDREWS-MAD WORLD(演唱会),http://em.21dtv.com/songs/60095181.mkv +歌一生-留一份感情来生再回味,http://em.21dtv.com/songs/60112815.mkv +孩子王-Lucky And Kobe,http://em.21dtv.com/songs/60104047.mkv +大张雨-老婆不败家赚钱给谁花,http://em.21dtv.com/songs/60123801.mkv +李秋泽-Loving You,http://em.21dtv.com/songs/60105156.mkv +Only You+挪威森林-Love Love Love,http://em.21dtv.com/songs/60129974.mkv +5Tion-Love Love Love,http://em.21dtv.com/songs/60102992.mkv +Dok2+孝琳-Love Like This,http://em.21dtv.com/songs/60129925.mkv +Kodaline-Love Like This,http://em.21dtv.com/songs/60124929.mkv +Wale+Sam Dew-Lovehate Thing,http://em.21dtv.com/songs/60125043.mkv +ROYAL BLOOD-LITTLE MONSTER,http://em.21dtv.com/songs/60129982.mkv +Ron Pope-Lick My Wounds,http://em.21dtv.com/songs/60124979.mkv +Rilo Kiley-Let Me Back In,http://em.21dtv.com/songs/60124977.mkv +李佩玲-Let It Go,http://em.21dtv.com/songs/60129221.mkv +刘轩蓁-Let It Go,http://em.21dtv.com/songs/60125222.mkv +林忆莲-Leslie Forever,http://em.21dtv.com/songs/60135423.mkv +Todays hits 2015-Left Hand Free,http://em.21dtv.com/songs/60134813.mkv +宇宙人+孙盛希-LAST CHRISTMAS,http://em.21dtv.com/songs/60131344.mkv +Alizee-la isla bonita,http://em.21dtv.com/songs/60101724.mkv +邓紫棋-Lady Marmalade,http://em.21dtv.com/songs/60098799.mkv +李斯丹妮+艾菲-Kiss 头发乱了,http://em.21dtv.com/songs/60124071.mkv +翁航融+拾音社-Kiss Kiss Kiss,http://em.21dtv.com/songs/60113963.mkv +Rihanna-Kiss It Better,http://em.21dtv.com/songs/60121302.mkv +P!NK-Just Like Fire,http://em.21dtv.com/songs/60132119.mkv +P!nk-Just Like Fire,http://em.21dtv.com/songs/60121297.mkv +郭峰-今天你就要做我新娘,http://em.21dtv.com/songs/60129670.mkv +李志洲-今生只爱你一个,http://em.21dtv.com/songs/60113624.mkv +DJ-劲速极品欧美电音高端超嗨舞曲,http://em.21dtv.com/songs/60123461.mkv +大飞-寂寞的时候别唱情歌,http://em.21dtv.com/songs/60109252.mkv +汪峰-加德满都的风铃,http://em.21dtv.com/songs/60114643.mkv +杨宝心+张博林-Jailhouse Rock,http://em.21dtv.com/songs/60113679.mkv +魏如萱-I Will Be Fine,http://em.21dtv.com/songs/60133116.mkv +魏如萱-I Will Be Fine,http://em.21dtv.com/songs/60132001.mkv +魏如萱-I Will Be Fine,http://em.21dtv.com/songs/60130912.mkv +双龙兄弟+林妙可-I Saw An Angel,http://em.21dtv.com/songs/60125256.mkv +melissa etheridge-I Run For Life,http://em.21dtv.com/songs/60104705.mkv +林俊杰-I Pray For You,http://em.21dtv.com/songs/60114622.mkv +Kalafina-into the world,http://em.21dtv.com/songs/60134716.mkv +刘忻+姜潮-I'm Not Afraid,http://em.21dtv.com/songs/60116586.mkv +SPYAIR-I'M A BELIEVER,http://em.21dtv.com/songs/60115638.mkv +Jay Park-I Like 2 Party,http://em.21dtv.com/songs/60098032.mkv +胡维纳+范玮琪-I Have Nothing,http://em.21dtv.com/songs/60095063.mkv +DJ KHALED+JAY Z+FUTURE-I GOT THE KEYS,http://em.21dtv.com/songs/60129914.mkv +姚亦晴-If You Want Me,http://em.21dtv.com/songs/60132343.mkv +Leanne Mitchell-If I Knew Then,http://em.21dtv.com/songs/60098038.mkv +2PM-I Can't,http://em.21dtv.com/songs/60112414.mkv +Sky Ferreira-I Blame Myself,http://em.21dtv.com/songs/60104726.mkv +苏盈之-I Am X A Loser,http://em.21dtv.com/songs/60135673.mkv +Youjeen-I Am What I Am,http://em.21dtv.com/songs/60133312.mkv +八大巨星-贺新年+财神的照料+大家恭喜,http://em.21dtv.com/songs/60089151.mkv +容祖儿-海市蜃楼+热情的沙漠+热爱岛,http://em.21dtv.com/songs/60092527.mkv +容祖儿-海市蜃楼_热情的沙漠_热爱岛,http://em.21dtv.com/songs/60087700.mkv +Andy Grammer-Honey I'm Good,http://em.21dtv.com/songs/60113126.mkv +群星-欢乐中国年^有钱没钱回家过年,http://em.21dtv.com/songs/60131731.mkv +丁于+田斯斯-High High High,http://em.21dtv.com/songs/60094791.mkv +袁娅维-灰姑娘遇上埃及王子,http://em.21dtv.com/songs/60119957.mkv +丁丁+夏末-荒废了16年 17岁后重头来过,http://em.21dtv.com/songs/60087229.mkv +自由发挥-HEY PEOPLE SAY,http://em.21dtv.com/songs/60115343.mkv +美宝-Hero And Angel,http://em.21dtv.com/songs/60107118.mkv +Adele+Tim Berg-Hello Bromance,http://em.21dtv.com/songs/60119095.mkv +Kelly Clarkson-Heartbeat Song,http://em.21dtv.com/songs/60109832.mkv +王艺洁-Happy Birthday,http://em.21dtv.com/songs/60121942.mkv +Ryo+Chelly-Great Distance,http://em.21dtv.com/songs/60111646.mkv +PSY-Gentleman,http://em.21dtv.com/songs/60115559.mkv +Psy-Gentleman,http://em.21dtv.com/songs/60115558.mkv +暴风-感恩的心(主祷文)基督教歌曲,http://em.21dtv.com/songs/60093823.mkv +BONKA Mashup-Funky Zulu Boy,http://em.21dtv.com/songs/60119108.mkv +茅原实里-Fool the world,http://em.21dtv.com/songs/60106228.mkv +Lucy Rose+The Staves-Floral Dresses,http://em.21dtv.com/songs/60134748.mkv +地雷-附近人搜走了我老婆[DJ版],http://em.21dtv.com/songs/60117632.mkv +于勃-飞机场的10∶30,http://em.21dtv.com/songs/60103064.mkv +Dannic+Sick Individuals-Feel Your Love,http://em.21dtv.com/songs/60119121.mkv +Jennifer Lopez-Feel The Light,http://em.21dtv.com/songs/60109824.mkv +黄铃凯-Facing the sun,http://em.21dtv.com/songs/60113116.mkv +Sexy Zone-24 7~仆らのストーリー~,http://em.21dtv.com/songs/60132127.mkv +A R I Z O N A-Electric Touch,http://em.21dtv.com/songs/60134625.mkv +祁紫檀+蔡健雅-得知平淡珍贵的一天,http://em.21dtv.com/songs/60109555.mkv +VIXX-独一无二 眉飞色舞,http://em.21dtv.com/songs/60123562.mkv +Lady Gaga+R.Kell-Do What U Want,http://em.21dtv.com/songs/60098037.mkv +林志美-DON'T KNOW WHY,http://em.21dtv.com/songs/60113703.mkv +L'Arc en Ciel-Dont be Afraid,http://em.21dtv.com/songs/60131076.mkv +Wa$$up-Dominant Woman,http://em.21dtv.com/songs/60134818.mkv +蒋大为-大路上铺满金色的阳光,http://em.21dtv.com/songs/60122081.mkv +Soul StayZ-Digital Single,http://em.21dtv.com/songs/60104732.mkv +Kiesza-Dearly Beloved,http://em.21dtv.com/songs/60131075.mkv +蓝心湄+谢和弦-到底是哪个混蛋敢欺负我的朋友,http://em.21dtv.com/songs/60085030.mkv +豫剧-《朝阳坡》选段别说那个外行话,http://em.21dtv.com/songs/60134526.mkv +大原樱子-Coming Soon!!!,http://em.21dtv.com/songs/60133528.mkv +KT Tunstall-Come On Get In,http://em.21dtv.com/songs/60101783.mkv +涓子-除了你谁还值得我珍惜,http://em.21dtv.com/songs/60112080.mkv +向洋-城里的月光 女人花,http://em.21dtv.com/songs/60128879.mkv +牛梦瑶-馋 看见什么吃什么,http://em.21dtv.com/songs/60129373.mkv +Minions-Christmas Song,http://em.21dtv.com/songs/60129968.mkv +back number-Christmas Song,http://em.21dtv.com/songs/60116437.mkv +The Gregory Brothers-Chicken Attack,http://em.21dtv.com/songs/60132138.mkv +Against The Current-Chasing Ghosts,http://em.21dtv.com/songs/60134629.mkv +薛之谦+万妮达-丑八怪 给我一个吻,http://em.21dtv.com/songs/60129592.mkv +Marc Anthony-Cambio De Piel,http://em.21dtv.com/songs/60124939.mkv +VALSHE-Butterfly Core(动画),http://em.21dtv.com/songs/60101838.mkv +羽泉-Brand^New^Life,http://em.21dtv.com/songs/60117127.mkv +Apink-Brand New Days,http://em.21dtv.com/songs/60120190.mkv +Diplo+GTA-Boy Oh Boy,http://em.21dtv.com/songs/60124858.mkv +BLINK182-BORED TO DEATH,http://em.21dtv.com/songs/60129895.mkv +LEESSANG-不能分手的女人不能离开的男人,http://em.21dtv.com/songs/60082656.mkv +谭维维-Blah Blah Blah,http://em.21dtv.com/songs/60127413.mkv +Cross Gene-Black or White,http://em.21dtv.com/songs/60132062.mkv +唐一嘉+萧敬腾-Black or White,http://em.21dtv.com/songs/60094440.mkv +羽泉-北京夏天难道你真的没有感觉到,http://em.21dtv.com/songs/60088483.mkv +The Kooks-Be Who You Are,http://em.21dtv.com/songs/60134809.mkv +Louisa Johnson-Best Behaviour,http://em.21dtv.com/songs/60134747.mkv +金娜英-Being an Adult,http://em.21dtv.com/songs/60135843.mkv +林采缇-Be CoolBe Good,http://em.21dtv.com/songs/60108626.mkv +茜拉+陈湘胤-Because Of You,http://em.21dtv.com/songs/60104391.mkv +Eminem+Sia-Beautiful Pain,http://em.21dtv.com/songs/60115577.mkv +侯磊-Beautiful Love,http://em.21dtv.com/songs/60106608.mkv +冯博-Beautiful Life,http://em.21dtv.com/songs/60116566.mkv +朱娜-Beautiful Liar,http://em.21dtv.com/songs/60130396.mkv +郭富城-Beautiful Girl,http://em.21dtv.com/songs/60102803.mkv +回来娶你-百度搜不到哥的寂寞,http://em.21dtv.com/songs/60094448.mkv +莫倪moni-宝贝我不再是穿着花裙的小傻X,http://em.21dtv.com/songs/60118875.mkv +黄致列-Bang Bang Bang,http://em.21dtv.com/songs/60119073.mkv +BigBang-BANG BANG BANG,http://em.21dtv.com/songs/60114325.mkv +郑秀文-Bang Bang Bang,http://em.21dtv.com/songs/60106327.mkv +杰利(Jelly)-Baking Holiday,http://em.21dtv.com/songs/60111191.mkv +Migos+Lil Uzi Vert-Bad And Boujee,http://em.21dtv.com/songs/60129967.mkv +赵传+大女孩组合-爱要怎么说出口,http://em.21dtv.com/songs/60123194.mkv +HEART B-A Song For You,http://em.21dtv.com/songs/60115590.mkv +Celine Dion-A Song For You,http://em.21dtv.com/songs/60109802.mkv +李佩玲+那英+汪晨蕊-爱上你等于爱上寂寞,http://em.21dtv.com/songs/60129222.mkv +TJR-Angry Duck[DJ],http://em.21dtv.com/songs/60122437.mkv +ONE OK ROCK-American Girls,http://em.21dtv.com/songs/60132116.mkv +许阁-Along The Days,http://em.21dtv.com/songs/60135740.mkv +Thiaguinho+Projota-Alma E Coracao,http://em.21dtv.com/songs/60132142.mkv +Thiaguinho+Projota-Alma e Coracao,http://em.21dtv.com/songs/60125023.mkv +Big Sean+Kanye West-All Your Fault,http://em.21dtv.com/songs/60113131.mkv +张靓颖-All Of Me,http://em.21dtv.com/songs/60111091.mkv +FIFTH HARMONY+FETTY WAP-ALL IN MY HEAD,http://em.21dtv.com/songs/60129932.mkv +Sturgill Simpson-All Around You,http://em.21dtv.com/songs/60132134.mkv +High4+金艺林-A Little Close,http://em.21dtv.com/songs/60103021.mkv +Adam Levine-A Higher Place,http://em.21dtv.com/songs/60112416.mkv +A応P-はなまるぴっぴはよいこだけ,http://em.21dtv.com/songs/60118245.mkv +李胜利-只要你是真心爱我[DJ版],http://em.21dtv.com/songs/60103372.mkv +龙梅子-重要的事情要说三遍,http://em.21dtv.com/songs/60122323.mkv +王麟-再痛都只记得你的好,http://em.21dtv.com/songs/60106147.mkv +林佑威-再说一次 Yes I Do,http://em.21dtv.com/songs/60109454.mkv +林佑威-再说一次 Yes I Do,http://em.21dtv.com/songs/60107820.mkv +大庆小芳-致那些年我们看过的乡村爱情,http://em.21dtv.com/songs/60117638.mkv +关诗敏+李安-自己 Reflection,http://em.21dtv.com/songs/60114401.mkv +邓丽欣-再见不是朋友,http://em.21dtv.com/songs/60115430.mkv +连续-中国有个河南,http://em.21dtv.com/songs/60108026.mkv +张振宇-祝福你我心爱的姑娘,http://em.21dtv.com/songs/60118561.mkv +大哲-这辈子只想牵你的手,http://em.21dtv.com/songs/60113374.mkv +巫启贤+萨顶顶-最爱的人伤我最深,http://em.21dtv.com/songs/60125462.mkv +舞曲-永远+爱情故事+分别的时光(快四),http://em.21dtv.com/songs/60090135.mkv +舞曲-永远+爱情故事+分别的时候(快四),http://em.21dtv.com/songs/60090134.mkv +龙啸-一声兄弟一生兄弟[DJ版],http://em.21dtv.com/songs/60103735.mkv +伊人佳人组合-伊人佳人[行进版],http://em.21dtv.com/songs/60098096.mkv +伊人佳人组合-伊人佳人[柔情版],http://em.21dtv.com/songs/60098094.mkv +伊人佳人组合-伊人佳人[清新版],http://em.21dtv.com/songs/60098095.mkv +张之夏-有人常常把爱情比作一种冲动,http://em.21dtv.com/songs/60080362.mkv +吴江-17岁女生的温柔 我是女生,http://em.21dtv.com/songs/60125294.mkv +Katelyn Tarver-You Dont Know,http://em.21dtv.com/songs/60134722.mkv +Ice Cube-You Can Do It,http://em.21dtv.com/songs/60124897.mkv +华语群星-有没有那么一首歌,http://em.21dtv.com/songs/60117591.mkv +东方依依+陈玉建-月亮下面说出我爱你,http://em.21dtv.com/songs/60113215.mkv +乃木坂46-鱼たちのLOVE SONG,http://em.21dtv.com/songs/60114373.mkv +陈升+曹启泰-拥挤的乐园+秀 我还是要上,http://em.21dtv.com/songs/60097994.mkv +孙晓磊-一个人孤独的生活,http://em.21dtv.com/songs/60128962.mkv +许诺-一个人不能决定两个人的未来,http://em.21dtv.com/songs/60101170.mkv +DJ Chotto+齐柒柒-夜光(Remix DJ版),http://em.21dtv.com/songs/50000238.mkv +陶德-远方的朋友欢迎你到柴达木来,http://em.21dtv.com/songs/60128564.mkv +Leona Lewis-Yesterday,http://em.21dtv.com/songs/60120222.mkv +Eddy Kim-2 Years Apart,http://em.21dtv.com/songs/60104665.mkv +岳磊+邓小坤+郭帅-有多少爱可以重来,http://em.21dtv.com/songs/60125451.mkv +乃木坂46-あらかじめ语られるロマンス,http://em.21dtv.com/songs/60119232.mkv +雨柔-心中永不凋落的玫瑰,http://em.21dtv.com/songs/60110658.mkv +温亮亮-相信我们会创造奇迹,http://em.21dtv.com/songs/60103424.mkv +黄山怡-想跟你去野餐,http://em.21dtv.com/songs/60119069.mkv +萧敬腾+洪晶晶+李怡辉-心动^背对背拥抱,http://em.21dtv.com/songs/60102691.mkv +龙飞-我真的不想你受委屈,http://em.21dtv.com/songs/60102056.mkv +孔雀哥哥-我想在东川最美的时候遇到你,http://em.21dtv.com/songs/60109260.mkv +张靓颖-微笑以后 书签 孩子的眼睛,http://em.21dtv.com/songs/60135251.mkv +龚琳娜-我希望你爱上我,http://em.21dtv.com/songs/60095175.mkv +好妹妹乐队-往事只能回味,http://em.21dtv.com/songs/60122641.mkv +郑源-为什幺相爱的人不可以在一起,http://em.21dtv.com/songs/60088768.mkv +好妹妹乐队-我说今晚月光那么美你说是的,http://em.21dtv.com/songs/60102089.mkv +刘宸启-Wrecking Ball,http://em.21dtv.com/songs/60118383.mkv +陈冰-Wrecking Ball,http://em.21dtv.com/songs/60105471.mkv +Frankmusik-Wrecking Ball,http://em.21dtv.com/songs/60103014.mkv +A$AP MINEFERG+BIG MINESEAN-WORLD IS MINE,http://em.21dtv.com/songs/60129873.mkv +刘涛-为你我受冷风吹,http://em.21dtv.com/songs/60126653.mkv +邢天溯-我们在蓝色海上漂,http://em.21dtv.com/songs/60118954.mkv +崔健+林忆莲+大卫MC+李秋泽-外面的世界更精彩,http://em.21dtv.com/songs/60119471.mkv +陈玉建-网络真情也有我和你,http://em.21dtv.com/songs/60111490.mkv +刘沛洋-我可以做你的男人[DJ版],http://em.21dtv.com/songs/60103934.mkv +张希-我就是那个窜天猴,http://em.21dtv.com/songs/60119515.mkv +邢菲-我会永远爱坐在我对面的男生,http://em.21dtv.com/songs/60131868.mkv +Wonder Girls-Why So Lonely,http://em.21dtv.com/songs/60125052.mkv +OneRepublic-Wherever I Go,http://em.21dtv.com/songs/60132117.mkv +Dustin Lynch-Where It's At,http://em.21dtv.com/songs/60117447.mkv +EMINEM-WHEN IM GONE,http://em.21dtv.com/songs/60093920.mkv +张冬玲-我和草原一起来唱歌,http://em.21dtv.com/songs/60114526.mkv +朱兴东-我很丑但我很温柔,http://em.21dtv.com/songs/60125668.mkv +DJ舞曲-Wet Smoke(无损),http://em.21dtv.com/songs/50000259.mkv +白婧-WE HAVE TO GO,http://em.21dtv.com/songs/60124309.mkv +MILEY CYRUS-We Cant Stop,http://em.21dtv.com/songs/60095182.mkv +裘海正-我打了一通不说话的电话给你,http://em.21dtv.com/songs/60097991.mkv +吉克隽逸-我等到花儿也谢了,http://em.21dtv.com/songs/60123734.mkv +叶炫清-我等到花儿也谢了,http://em.21dtv.com/songs/60128869.mkv +邓小龙-我不是一个好男人[DJ版],http://em.21dtv.com/songs/60102777.mkv +四叶草-我不是韩国人,http://em.21dtv.com/songs/60110101.mkv +孙楠+孙艺恬-我爱你中国 鸿雁,http://em.21dtv.com/songs/60125384.mkv +于文文-Want You Back,http://em.21dtv.com/songs/60105560.mkv +阚杰-我爱老婆老婆爱我[DJ版],http://em.21dtv.com/songs/60098823.mkv +MC HotDog+蛋堡+葛仲珊-Walk This Way,http://em.21dtv.com/songs/60106550.mkv +群星-Wake Up In It,http://em.21dtv.com/songs/60126046.mkv +白承宪-Wait A Minute,http://em.21dtv.com/songs/60107924.mkv +胡彦斌-太阳最红毛主席最亲,http://em.21dtv.com/songs/60112899.mkv +群星-天下黄河九十九道湾+套马杆,http://em.21dtv.com/songs/60097990.mkv +常艾非-听我唱歌你会想起谁,http://em.21dtv.com/songs/60108469.mkv +Monken-突然想起你(DJ版Mix),http://em.21dtv.com/songs/50000125.mkv +Tove Lo-True Disaster,http://em.21dtv.com/songs/60129996.mkv +Sistar-Touch My Body,http://em.21dtv.com/songs/60103037.mkv +巴图-她来听我的演唱会,http://em.21dtv.com/songs/60125463.mkv +侧田-THREE TWO ONE,http://em.21dtv.com/songs/60108306.mkv +钟洁希-There You Are,http://em.21dtv.com/songs/60130818.mkv +LM.C-The Love Song,http://em.21dtv.com/songs/60103794.mkv +Chen-The Best Luck,http://em.21dtv.com/songs/60103012.mkv +柴超-Tears Tonight,http://em.21dtv.com/songs/60127119.mkv +傣语-TAI TAM MUSIC,http://em.21dtv.com/songs/60124777.mkv +李光洁+陈思诚-睡在我上铺的兄弟,http://em.21dtv.com/songs/60125694.mkv +花泽香菜-Sweets Parade,http://em.21dtv.com/songs/60119908.mkv +Perfue-Sweet Refrain,http://em.21dtv.com/songs/60093937.mkv +Livetune-Sweet Clapper,http://em.21dtv.com/songs/60134741.mkv +DJ-SuperWave[DJ],http://em.21dtv.com/songs/60122368.mkv +DJ一文-Sugar(DJ版Mix),http://em.21dtv.com/songs/50000135.mkv +Luke Bryan-Strip It Down,http://em.21dtv.com/songs/60117475.mkv +Suran-Still breathe,http://em.21dtv.com/songs/60134806.mkv +Alabama Shakes-Sound Color,http://em.21dtv.com/songs/60119098.mkv +Shawn Mendes-Something Big,http://em.21dtv.com/songs/60111648.mkv +庄上荣-山里阿妹爱唱歌[客家话版],http://em.21dtv.com/songs/60096063.mkv +黄恺-世界上不存在的歌,http://em.21dtv.com/songs/60129840.mkv +TPI-Show The Life,http://em.21dtv.com/songs/60106559.mkv +Cross Gene-Shooting Star,http://em.21dtv.com/songs/60120201.mkv +Laboum-Shooting Love,http://em.21dtv.com/songs/60129956.mkv +The Chainsmokers+XYL-Setting Fires,http://em.21dtv.com/songs/60129995.mkv +刘雪婧-See You Again,http://em.21dtv.com/songs/60125225.mkv +长宇-See You Again,http://em.21dtv.com/songs/60115464.mkv +张杰+吴汶芳-See You Again,http://em.21dtv.com/songs/60113473.mkv +H2K-See You Again,http://em.21dtv.com/songs/60112438.mkv +蔡健雅-see you again,http://em.21dtv.com/songs/60112215.mkv +Wiz Khalifa+Charlie Puth-See You Again,http://em.21dtv.com/songs/60109907.mkv +GOT7-SEE THE LIGHT,http://em.21dtv.com/songs/60124885.mkv +女孩与机器人-Seek and Hide,http://em.21dtv.com/songs/60117644.mkv +Blady-Secret Number,http://em.21dtv.com/songs/60119106.mkv +黄若乔-Second Chance,http://em.21dtv.com/songs/60130937.mkv +佚名-圣诞节视频(无伴奏),http://em.21dtv.com/songs/60094405.mkv +郭富城-是不是每一个恋爱的人都像我,http://em.21dtv.com/songs/60102807.mkv +古振邦+陆蔚琳-Say Something,http://em.21dtv.com/songs/60115037.mkv +古振邦-Say Something,http://em.21dtv.com/songs/60113321.mkv +ChRISTINA AGUILERA-Say Something,http://em.21dtv.com/songs/60098002.mkv +Ariana Grande-Santa Tell Me,http://em.21dtv.com/songs/60107394.mkv +Selena Gomez-Same Old Love,http://em.21dtv.com/songs/60115630.mkv +尹航-Sa Lang He Yo,http://em.21dtv.com/songs/60105784.mkv +加藤ミリヤ+清水翔太-Sakura Melody,http://em.21dtv.com/songs/60105654.mkv +杨钰莹+王添翼-让我轻轻的告诉你,http://em.21dtv.com/songs/60122892.mkv +任俊陶-Run This City,http://em.21dtv.com/songs/60109952.mkv +高姗-Roll The Dice,http://em.21dtv.com/songs/60103720.mkv +喜多修平-RISE OF SOULS,http://em.21dtv.com/songs/60114461.mkv +春奈るな-Ripple Effect,http://em.21dtv.com/songs/60122794.mkv +WINNER-REALLY REALLY,http://em.21dtv.com/songs/60134823.mkv +KEVIN GATES-REALLY REALLY,http://em.21dtv.com/songs/60121273.mkv +DVBBS+vinaitha-Raveology,http://em.21dtv.com/songs/60124863.mkv +孙晓磊-牵着你的手不放开(演唱会),http://em.21dtv.com/songs/60126779.mkv +带泪的鱼-全世界丢弃了我你也不离开我,http://em.21dtv.com/songs/60083692.mkv +齐秦+胡海泉-齐秦经典歌曲串烧,http://em.21dtv.com/songs/60126499.mkv +程响-亲爱的你可知我有多么思念你,http://em.21dtv.com/songs/60099435.mkv +阿利-亲爱的你还爱不爱我,http://em.21dtv.com/songs/60126345.mkv +张韶涵-亲爱的那不是爱情,http://em.21dtv.com/songs/60116814.mkv +红蔷薇-亲爱的别让我失去你,http://em.21dtv.com/songs/60126018.mkv +洪辰-Phucking Love,http://em.21dtv.com/songs/60129346.mkv +孙佳仁-Paradise Lost,http://em.21dtv.com/songs/60110131.mkv +AR-Only You,http://em.21dtv.com/songs/60119099.mkv +大贺兄弟-ONE MORE TIME,http://em.21dtv.com/songs/60135090.mkv +郭美美-One More Time,http://em.21dtv.com/songs/60134331.mkv +Craig David-One More Time,http://em.21dtv.com/songs/60132061.mkv +王霏霏-ONE MORE KISS,http://em.21dtv.com/songs/60125959.mkv +Ariana Grande-One Last Time,http://em.21dtv.com/songs/60109798.mkv +Charlie Puth-One Call Away,http://em.21dtv.com/songs/60132059.mkv +张苡澄-OK OK GO AWAY,http://em.21dtv.com/songs/60105866.mkv +新宝岛康乐队+赵咏华-Okinawa Blues,http://em.21dtv.com/songs/60126946.mkv +Mariah Carey-Oh Holy Night,http://em.21dtv.com/songs/60124940.mkv +Pitbull+TJR-Ode To Oi[DJ],http://em.21dtv.com/songs/60122409.mkv +感觉自己萌萌哒+快要崩溃的一哥(张磊+彭佳慧)-你怎么舍得我难过,http://em.21dtv.com/songs/60129155.mkv +白百何-你知道我在等你吗,http://em.21dtv.com/songs/60124310.mkv +张信哲-难以抗拒你的容颜,http://em.21dtv.com/songs/60116778.mkv +群星-宁夏 浪花一朵朵,http://em.21dtv.com/songs/60126052.mkv +紫海-你是我这一生中最爱的那个人,http://em.21dtv.com/songs/60100368.mkv +心大俊-你是魔鬼紧紧缠着我,http://em.21dtv.com/songs/60125587.mkv +阿勇-男人是天男人是地[军旅版],http://em.21dtv.com/songs/60098825.mkv +黄昌平-No Zuo No Die,http://em.21dtv.com/songs/60110729.mkv +肖洒+花僮-No Zuo No Die,http://em.21dtv.com/songs/60106206.mkv +阿译(A译)-NOW FOLLOW ME,http://em.21dtv.com/songs/60107303.mkv +Wiz Khalifa-No Permission,http://em.21dtv.com/songs/60111664.mkv +WONDER GIRLS-NOBODY,http://em.21dtv.com/songs/60110808.mkv +萨顶顶+常石磊-你快回来+你怎么舍得我难过,http://em.21dtv.com/songs/60097993.mkv +Block B-Nillili Mambo,http://em.21dtv.com/songs/60107396.mkv +One Direction-Night Changes,http://em.21dtv.com/songs/60108240.mkv +好妹妹乐队+王子云-你飞到城市另一边,http://em.21dtv.com/songs/60122642.mkv +Bon Jovi-New Years Day,http://em.21dtv.com/songs/60131038.mkv +Taylor Swift-New Romantics,http://em.21dtv.com/songs/60121310.mkv +高永泰+林吾耀-Need U Love U,http://em.21dtv.com/songs/60117393.mkv +门丽-你的眼角流着我的泪,http://em.21dtv.com/songs/60102845.mkv +胡杏儿-你的名字我的姓氏,http://em.21dtv.com/songs/60126083.mkv +群星-你把我灌醉让每个人都心碎,http://em.21dtv.com/songs/60098694.mkv +华语群星-你把我灌醉+让每个人都心碎,http://em.21dtv.com/songs/60097992.mkv +李一哲-My Happy Song,http://em.21dtv.com/songs/60120595.mkv +方敏雅-My First Kiss,http://em.21dtv.com/songs/60130370.mkv +权起范-My Everything,http://em.21dtv.com/songs/60118658.mkv +狮子合唱团-Music Fighter,http://em.21dtv.com/songs/60130560.mkv +狮子合唱团-MUSIC FIGHTER,http://em.21dtv.com/songs/60129374.mkv +Super Junior-Mr Simple[DJ],http://em.21dtv.com/songs/60122424.mkv +王菀之-Mode Of Water,http://em.21dtv.com/songs/60106136.mkv +袁娅维-蒙娜丽莎的眼泪,http://em.21dtv.com/songs/60106269.mkv +黑鸭子合唱组-妈妈从我梦中走来[欣赏版],http://em.21dtv.com/songs/60102977.mkv +何韵诗-明明白白我的心+有一点动心,http://em.21dtv.com/songs/60087324.mkv +舞曲-曼利+初吻+我的祝福记得吗(中四),http://em.21dtv.com/songs/60090133.mkv +Robbie Williams-Mixed Signals,http://em.21dtv.com/songs/60133271.mkv +郭赛伟-Missing Piece,http://em.21dtv.com/songs/60118974.mkv +G eazy+Bebe Rexha-Me Myself & I,http://em.21dtv.com/songs/60120212.mkv +张敬轩-Make Me Proud,http://em.21dtv.com/songs/60133657.mkv +张敬轩-Make Me Proud,http://em.21dtv.com/songs/60131400.mkv +泰坦Titan-Make Me Crazy,http://em.21dtv.com/songs/60133928.mkv +TITAN-Make me crazy,http://em.21dtv.com/songs/60133299.mkv +Lana Del Rey+The Weeknd-Lust for Life,http://em.21dtv.com/songs/60134735.mkv +Blady-Love You So I,http://em.21dtv.com/songs/60119105.mkv +Justin Bieber-Love Yourself,http://em.21dtv.com/songs/60117466.mkv +金俊秀-Love You More,http://em.21dtv.com/songs/60120036.mkv +吴梓涵-Love You Baby,http://em.21dtv.com/songs/60107580.mkv +金明洙+金艺林-Love U Like U,http://em.21dtv.com/songs/60122189.mkv +尹健-Love Too Much,http://em.21dtv.com/songs/60105783.mkv +Robbie Williams-Love My Life,http://em.21dtv.com/songs/60131102.mkv +EXO-Love Me Right,http://em.21dtv.com/songs/60111602.mkv +莫安琪-Lose Yourself,http://em.21dtv.com/songs/60126119.mkv +袁娅维-流花 Love Herby,http://em.21dtv.com/songs/60130737.mkv +EXO-两个视线一个视线,http://em.21dtv.com/songs/60113154.mkv +徐志强-看透了世界看不透你,http://em.21dtv.com/songs/60104155.mkv +林志颖+伍思凯+郁可唯+罗中旭+纪敏佳-快乐至上 老男孩,http://em.21dtv.com/songs/60125778.mkv +THE ORAL CIGARETTES-狂乱 Hey Kids!!,http://em.21dtv.com/songs/60117498.mkv +贺凌妍-快乐的小英才,http://em.21dtv.com/songs/60093831.mkv +石梅-看到你流泪我会心碎,http://em.21dtv.com/songs/60112862.mkv +吴莫愁-就现在 无所不在,http://em.21dtv.com/songs/60125302.mkv +SPYAIR-Just One Life,http://em.21dtv.com/songs/60101828.mkv +云朵-倔强,http://em.21dtv.com/songs/60080829.mkv +龙梅子+杨海彪-寂寞的人伤心的歌(DJ版),http://em.21dtv.com/songs/50000220.mkv +遥远-家里有个老妈妈才是幸福的家,http://em.21dtv.com/songs/60099517.mkv +Jesus Fashion Family-Jesus Fashion,http://em.21dtv.com/songs/60106548.mkv +Justin Oh+孝琳-Jekyll & Hyde,http://em.21dtv.com/songs/60133221.mkv +陈钧铨-九百九十九朵玫瑰,http://em.21dtv.com/songs/60129760.mkv +Skylar Grey-I Will Return,http://em.21dtv.com/songs/60111652.mkv +Karmin-I Want it All,http://em.21dtv.com/songs/60101781.mkv +Sevyn Streeter+Chris Brown-It Won'T Stop,http://em.21dtv.com/songs/60124988.mkv +李国毅-In A Good Way,http://em.21dtv.com/songs/60104197.mkv +蔡依林+安室奈美惠-I'm Not Yours,http://em.21dtv.com/songs/60108880.mkv +Justin Bieber-I'll Show You,http://em.21dtv.com/songs/60115604.mkv +舒浩炀+张靓颖-I'll Be There,http://em.21dtv.com/songs/60118862.mkv +2NE1-If I Were You,http://em.21dtv.com/songs/60121199.mkv +Imagine Dragons-I Bet My Life,http://em.21dtv.com/songs/60106541.mkv +金贵晟-I Believe 爱不离,http://em.21dtv.com/songs/60107288.mkv +STARS-hold on when you get love and let go when you give it,http://em.21dtv.com/songs/60082180.mkv +周柏豪+黄宇希-How Do I Look,http://em.21dtv.com/songs/60132302.mkv +DAY6-How Can I Say,http://em.21dtv.com/songs/60134664.mkv +Drake-Hotline Bling,http://em.21dtv.com/songs/60115576.mkv +Rixton-Hotel Ceiling,http://em.21dtv.com/songs/60111642.mkv +皇后皮箱-Hold Me Tight,http://em.21dtv.com/songs/60106166.mkv +5 Seconds Of Summer-Hey Everybody,http://em.21dtv.com/songs/60119087.mkv +李斯丹妮+艾菲-花儿为什么这样红,http://em.21dtv.com/songs/60124073.mkv +西域胡杨-花儿为什么这么红 青春舞曲,http://em.21dtv.com/songs/60123161.mkv +CL-Hello Bitches,http://em.21dtv.com/songs/60117439.mkv +Indiana-Heart On Fire,http://em.21dtv.com/songs/60104688.mkv +TFBOYS-Heart 宠爱 大梦想家,http://em.21dtv.com/songs/60118280.mkv +老猫-哥已经爱上你啦 (舞曲版),http://em.21dtv.com/songs/50000230.mkv +A Lin+陈嘉欣+李林涛+黄菁-给我一个理由忘记,http://em.21dtv.com/songs/60122328.mkv +io乐团-Gotta Give Me,http://em.21dtv.com/songs/60119151.mkv +Beast-Good Luck,http://em.21dtv.com/songs/60110748.mkv +姚斯婷-给你Double A的精彩,http://em.21dtv.com/songs/60106753.mkv +GRANRODEO-Glorious days,http://em.21dtv.com/songs/60134687.mkv +Showtek+Noisecontrollers-Get Loose,http://em.21dtv.com/songs/60124989.mkv +Lloyd-Get It Shawty,http://em.21dtv.com/songs/60124933.mkv +信-GANGNAM STYLE,http://em.21dtv.com/songs/60118356.mkv +戴燕妮+张柏鸣-Funny Partner,http://em.21dtv.com/songs/60103311.mkv +李日詹-FOREVER YOUNG,http://em.21dtv.com/songs/60124074.mkv +王以纶-Fight For You,http://em.21dtv.com/songs/60133972.mkv +小男孩乐团-Feel The Heat,http://em.21dtv.com/songs/60133598.mkv +JW-Feel The Bass,http://em.21dtv.com/songs/60093928.mkv +Armin Van Buuren+Nadia Ali-Feels So Good,http://em.21dtv.com/songs/60116435.mkv +Clean Bandit+Sharna Bass-Extraordinary,http://em.21dtv.com/songs/60111595.mkv +Phoenix-Entertainment(故事情节),http://em.21dtv.com/songs/60098052.mkv +LiSA-EMPTY MERMAiD,http://em.21dtv.com/songs/60115610.mkv +Afilia Saga-Embrace Blade,http://em.21dtv.com/songs/60116429.mkv +蔡依林+陈星翰-EGO HOLIC 恋我癖,http://em.21dtv.com/songs/60129580.mkv +乃木坂46-気づいたら片想い,http://em.21dtv.com/songs/60099719.mkv +Otto Knows+Alex Aris-Dying For You,http://em.21dtv.com/songs/60122405.mkv +崔皓+田娃-打一辈子光棍,http://em.21dtv.com/songs/60121619.mkv +幸田来未-Dreaming Now!,http://em.21dtv.com/songs/60094086.mkv +钟舒祺-Dreamers,http://em.21dtv.com/songs/60126330.mkv +陈嘉唯-DON T SAVE ME,http://em.21dtv.com/songs/60124614.mkv +Owlle-Don'T Lose It,http://em.21dtv.com/songs/60124968.mkv +Epik High-Don't Hate Me,http://em.21dtv.com/songs/60124871.mkv +Diplo+CL+Riff Raff+OG Maco-Doctor Pepper,http://em.21dtv.com/songs/60115574.mkv +蔡晓-等你说I Love You,http://em.21dtv.com/songs/60111391.mkv +张栋梁-当你孤单你会想起谁(DJ),http://em.21dtv.com/songs/50000165.mkv +舞曲-大妹子+冰糖葫芦+一无所有(快四),http://em.21dtv.com/songs/60090131.mkv +西野加奈-もしも达命の人がいるのなら,http://em.21dtv.com/songs/60124463.mkv +朱主爱-对面的女孩看过来,http://em.21dtv.com/songs/60124040.mkv +DJ Mark&许茹芸-独角戏(DJ版Remix),http://em.21dtv.com/songs/50000239.mkv +陶喆+包尔淦+李美熹-冬季到台北来看雨,http://em.21dtv.com/songs/60126410.mkv +One Ok Rock-Deeper Deeper,http://em.21dtv.com/songs/60098050.mkv +大原樱子-Dear My Dream,http://em.21dtv.com/songs/60115770.mkv +KAT TUN-Dead or Alive,http://em.21dtv.com/songs/60109831.mkv +王峰-对爱Say Goodbye,http://em.21dtv.com/songs/60131658.mkv +卡拉OK-草原上的红卫兵见到了毛主席,http://em.21dtv.com/songs/60090776.mkv +誉恩+金保亨+Suran-Cross Country,http://em.21dtv.com/songs/60135729.mkv +96猫-Crimson Stain,http://em.21dtv.com/songs/60123425.mkv +泷 翼-Crazy Rainbow,http://em.21dtv.com/songs/60102480.mkv +秦宇子-Crazy In Love,http://em.21dtv.com/songs/60105282.mkv +李泉-草帽歌^吉祥三宝,http://em.21dtv.com/songs/60113635.mkv +孝琳-Closer To The,http://em.21dtv.com/songs/60117665.mkv +周国贤-Children Song,http://em.21dtv.com/songs/60119358.mkv +郑容和+林俊杰-CHECKMATE,http://em.21dtv.com/songs/60108923.mkv +郭纯+陈宇骁-长得帅死得快,http://em.21dtv.com/songs/60118973.mkv +Steve Aoki+Felix Jaehn+Adam Lamber-Can't Go Home,http://em.21dtv.com/songs/60123540.mkv +DJ-Cake Face[DJ],http://em.21dtv.com/songs/60122367.mkv +刘冲+冲击力乐队-别再对我谈起感情,http://em.21dtv.com/songs/60128814.mkv +目思者-Break Me Down,http://em.21dtv.com/songs/60130627.mkv +群星-Brand New Day,http://em.21dtv.com/songs/60108809.mkv +Ariana Grande+Meghan Trainor+Who Is Fancy-Boys Like You,http://em.21dtv.com/songs/60122340.mkv +网络歌手-把你的名字写在烟上吸进肺里,http://em.21dtv.com/songs/60098685.mkv +Flower-Blue Sky Blue,http://em.21dtv.com/songs/60111604.mkv +LYn+Leo-Blossom Tears,http://em.21dtv.com/songs/60104700.mkv +Cross Gene-Billion Dolla,http://em.21dtv.com/songs/60109085.mkv +Sia-Big Girls Cry,http://em.21dtv.com/songs/60119183.mkv +刘德华-北国之春之榕树下之故乡的雨,http://em.21dtv.com/songs/60114420.mkv +郑志立-Believe In Me,http://em.21dtv.com/songs/60104487.mkv +金贤重-Beauty Beauty,http://em.21dtv.com/songs/60103641.mkv +Zedd+Jon Bellion-Beautiful Now,http://em.21dtv.com/songs/60120256.mkv +4Men-BEAUTIFUL DAY,http://em.21dtv.com/songs/60102989.mkv +周冰倩-把爱停留在你不能杀伤的距离,http://em.21dtv.com/songs/60089212.mkv +六哲-爱我你给的幸福不是我想要的,http://em.21dtv.com/songs/60087354.mkv +王曦-Autumn Leaves,http://em.21dtv.com/songs/60119816.mkv +杨宝心-Are You Ready,http://em.21dtv.com/songs/60113678.mkv +杨宝心-Are You Ready,http://em.21dtv.com/songs/60112790.mkv +秦宇子-Are You Ready,http://em.21dtv.com/songs/60105281.mkv +林惠敏+杨丹-Are You Ready,http://em.21dtv.com/songs/60094952.mkv +Florida Georgia Line-Anything Goes,http://em.21dtv.com/songs/60113160.mkv +唐宝+黄德毅-爱你就等于爱自己,http://em.21dtv.com/songs/60125325.mkv +Blonde-All Cried Out,http://em.21dtv.com/songs/60111586.mkv +迪玛希-All By Myself,http://em.21dtv.com/songs/60134279.mkv +Cando-All About You,http://em.21dtv.com/songs/60119112.mkv +米茄子Eggplant-All about you,http://em.21dtv.com/songs/60116186.mkv +欅坂46-サイレントマジョリティー,http://em.21dtv.com/songs/60122926.mkv +Base Ball Bear-ファンファーレがきこえる,http://em.21dtv.com/songs/60101730.mkv +罗心洁-在这一个孤单的夜你离开我,http://em.21dtv.com/songs/60084517.mkv +蓝波+司空雷-真正男子汉,http://em.21dtv.com/songs/60114026.mkv +张靓颖-转眼一生转身一世,http://em.21dtv.com/songs/60113502.mkv +群星-只要有你一起唱,http://em.21dtv.com/songs/60126051.mkv +费玉清-昨夜小楼又东风,http://em.21dtv.com/songs/60117249.mkv +怕胖团-只有我的旁边 旁边没有人,http://em.21dtv.com/songs/60097983.mkv +李之勤-再也没有人像你对我这么好,http://em.21dtv.com/songs/60114590.mkv +贺东-只要坚持梦想总是可以实现,http://em.21dtv.com/songs/60131827.mkv +梦乐团-整夜的rock Roll,http://em.21dtv.com/songs/60125818.mkv +顾凯-祝愿,http://em.21dtv.com/songs/60080535.mkv +萧亚轩+阿云嘎-最熟悉的陌生人,http://em.21dtv.com/songs/60124423.mkv +邹仁-只求你记得你的世界我来过,http://em.21dtv.com/songs/60131875.mkv +Monsta X-在那遥远的地方,http://em.21dtv.com/songs/60123510.mkv +游怡婷-在你肩膀上入睡,http://em.21dtv.com/songs/60125881.mkv +张阳阳-做你的Gentleman,http://em.21dtv.com/songs/60116806.mkv +萧敬腾+高鸿涛-怎么说我不爱你,http://em.21dtv.com/songs/60122069.mkv +霓裳-最美还是家乡雪[欣赏版],http://em.21dtv.com/songs/60102923.mkv +郭涛-怎么办 狐狸叫,http://em.21dtv.com/songs/60123242.mkv +群星-咱来祝福+看弄狮+打锣鼓,http://em.21dtv.com/songs/60095867.mkv +李克勤+叶倩文+林子祥-左林右莉走一回,http://em.21dtv.com/songs/60120608.mkv +杜佳瑶-致敬邓丽君,http://em.21dtv.com/songs/60118693.mkv +王晓天-再见吧 喵小姐,http://em.21dtv.com/songs/60098643.mkv +马艺航-中华精神 咱们都是中国人,http://em.21dtv.com/songs/60136006.mkv +迪克牛仔-蒸发太平洋,http://em.21dtv.com/songs/60118950.mkv +正午-只差一点点,http://em.21dtv.com/songs/60107856.mkv +王菀之+刘浩龙-真爱在明天+情未了+流言,http://em.21dtv.com/songs/60092993.mkv +鹿晗-致爱 Your Song,http://em.21dtv.com/songs/60120161.mkv +南天-最爱的你让我喝了最苦的酒,http://em.21dtv.com/songs/60093653.mkv +张平辉-养正一个孩子兴旺一个民族,http://em.21dtv.com/songs/60110192.mkv +DJ舞曲-耶耶耶(DJ版)(无损),http://em.21dtv.com/songs/50000262.mkv +杨延辉-杨延辉坐宫院四郎探母选段,http://em.21dtv.com/songs/60091401.mkv +大哲-越想忘记越想起你,http://em.21dtv.com/songs/60113373.mkv +齐霖-也许我爱错了牵错了你的手,http://em.21dtv.com/songs/60116421.mkv +刘维-因为你是范晓萱,http://em.21dtv.com/songs/60118397.mkv +音乐走廊-一生陪你唱情歌,http://em.21dtv.com/songs/60094768.mkv +音乐走廊-一生陪你唱情歌(DJ版),http://em.21dtv.com/songs/60093710.mkv +赵雷-已是两条路上的人,http://em.21dtv.com/songs/60108025.mkv +艺涛+DJG-夜色(DJ版Remix),http://em.21dtv.com/songs/50000232.mkv +陈粒-易燃易爆炸,http://em.21dtv.com/songs/60123325.mkv +ROBYNN+KENDY-一切很美只因有你,http://em.21dtv.com/songs/60115625.mkv +JUN. K-Your Wedding,http://em.21dtv.com/songs/60131073.mkv +吴若希+Dj伟少-越难越爱(DJ版Mix),http://em.21dtv.com/songs/50000208.mkv +承利-原谅我一生放纵不羁爱自由,http://em.21dtv.com/songs/60126934.mkv +[Group] +groupName=十六万歌曲MV等 - 111 +姚笛-原来你也在这里,http://em.21dtv.com/songs/60125371.mkv +SNH48-月亮代表我的心,http://em.21dtv.com/songs/60122419.mkv +莫文蔚-夜空中最亮的星,http://em.21dtv.com/songs/60129555.mkv +邓紫棋-夜空中最亮的星,http://em.21dtv.com/songs/60124543.mkv +卓文萱+黄鸿升-一句话+不屑+爱的主旋律,http://em.21dtv.com/songs/60097982.mkv +谭维维-有故事的人[不朽之名曲],http://em.21dtv.com/songs/60118061.mkv +威仔+格子兮-一个人也会好好的,http://em.21dtv.com/songs/60121560.mkv +威仔+格子兮-一个人也会好好的,http://em.21dtv.com/songs/60108414.mkv +欢子-一个人的街,http://em.21dtv.com/songs/60125835.mkv +黎明-一个故事之赤脚男人的山谷,http://em.21dtv.com/songs/60089068.mkv +DJ-Ye Ye Ye[DJ],http://em.21dtv.com/songs/60122369.mkv +群星-野百合也有春天,http://em.21dtv.com/songs/60129500.mkv +快要崩溃的一哥+花粉过敏的花房姑娘-野百合也有春天,http://em.21dtv.com/songs/60129149.mkv +周觅-野百合也有春天,http://em.21dtv.com/songs/60125318.mkv +宋嘉其-因爱存在 My dear,http://em.21dtv.com/songs/60111007.mkv +刘牧-新一生一世爱能几回,http://em.21dtv.com/songs/60101976.mkv +云菲菲-小小新娘花,http://em.21dtv.com/songs/60113238.mkv +李克勤-谢谢你的 一起走过的日子,http://em.21dtv.com/songs/60118662.mkv +关心妍-像我这样的一个雅兹迪女子,http://em.21dtv.com/songs/60118367.mkv +冷漠+何鹏-小三(DJ版 Rnb),http://em.21dtv.com/songs/50000202.mkv +张玮-掀起你的盖头来,http://em.21dtv.com/songs/60126893.mkv +茜拉+五洲唱响组合-想你的365天,http://em.21dtv.com/songs/60126116.mkv +李玟-想你的365天,http://em.21dtv.com/songs/60116920.mkv +金志文-夏洛特烦恼,http://em.21dtv.com/songs/60118109.mkv +曾昭玮-幸亏没生在古代,http://em.21dtv.com/songs/60119632.mkv +周超-欣 I love you,http://em.21dtv.com/songs/60117623.mkv +欧阳靖+吴彦祖-香港 Superstar,http://em.21dtv.com/songs/60113762.mkv +刘晓盈-献给冥王星的歌,http://em.21dtv.com/songs/60119302.mkv +常石磊+萨顶顶-新贵妃醉酒当爱已成往事,http://em.21dtv.com/songs/60098313.mkv +DJViper+海心-兄弟不容易(Remix),http://em.21dtv.com/songs/50000128.mkv +余润泽-想不到连你都会走,http://em.21dtv.com/songs/60108304.mkv +唐宁-我站在你妈妈看不到的地方,http://em.21dtv.com/songs/60118463.mkv +赵传-我终于失去了你,http://em.21dtv.com/songs/60117257.mkv +海镔+黑鸭子-我只想和你在一起,http://em.21dtv.com/songs/60098592.mkv +谢有才-我只是那个用痛教你爱的人,http://em.21dtv.com/songs/60085946.mkv +苏青山-我最亲爱的人呀你幸福了吗,http://em.21dtv.com/songs/60085952.mkv +彭英英-我最亲爱的人呀你幸福了吗,http://em.21dtv.com/songs/60085951.mkv +林忆莲+许志安-我最亲爱的情人,http://em.21dtv.com/songs/60119704.mkv +徐海星-我在朋友婚礼上唱的这首歌,http://em.21dtv.com/songs/60099250.mkv +木童-我在那个叫爱情的地方等你,http://em.21dtv.com/songs/60117794.mkv +金海心-我要找到你[围炉音乐会],http://em.21dtv.com/songs/60131908.mkv +陈羽凡+肖懿航-我要我们在一起,http://em.21dtv.com/songs/60126402.mkv +从酋长到球长+花粉过敏的花房姑娘(李琦+杨乃文)-我要我们在一起,http://em.21dtv.com/songs/60128762.mkv +许飞宇-我想你永远不知道,http://em.21dtv.com/songs/60110527.mkv +沙玛尔西-我为心上人唱首歌,http://em.21dtv.com/songs/60111233.mkv +金志文-往事只能回味,http://em.21dtv.com/songs/60121027.mkv +徐子谦-我是真的想和你永远在一起,http://em.21dtv.com/songs/60120567.mkv +卢冠廷+李宗盛-我是一只小小鸟,http://em.21dtv.com/songs/60117598.mkv +赵传-我是一只小小鸟,http://em.21dtv.com/songs/60117256.mkv +张碧晨-为什么我好想告诉他我是谁,http://em.21dtv.com/songs/60123940.mkv +郑智勋-为什么我不是你爱的那个人,http://em.21dtv.com/songs/60099527.mkv +秦影-为什么爱到最后只能做朋友,http://em.21dtv.com/songs/60100343.mkv +陈邵康-我说过我想去的最远的地方,http://em.21dtv.com/songs/60097985.mkv +Machine Gun Kelly-World Series,http://em.21dtv.com/songs/60117476.mkv +赵雷-我们的时光,http://em.21dtv.com/songs/60111421.mkv +零点乐队-无论我走到哪里总会想起你,http://em.21dtv.com/songs/60106438.mkv +吴莫愁-乌拉拉Camayzing(HD),http://em.21dtv.com/songs/10012739.mkv +陈玉建-忘记你还需要多久,http://em.21dtv.com/songs/60109702.mkv +寒龙-忘记你不是我的错,http://em.21dtv.com/songs/60104063.mkv +LABOUM-Winter Story,http://em.21dtv.com/songs/60129957.mkv +鸿飞-Wifi Wifi我的爱,http://em.21dtv.com/songs/60111544.mkv +王麟-我和我的小伙伴们都惊呆了,http://em.21dtv.com/songs/60081700.mkv +金小曦-Who tells me,http://em.21dtv.com/songs/60127499.mkv +东方依依-我会等着你把我一生交给你,http://em.21dtv.com/songs/60097989.mkv +秦晓林+戎琦-王妃^Dangerous,http://em.21dtv.com/songs/60104349.mkv +华晨宇-We Are Young,http://em.21dtv.com/songs/60095269.mkv +Eddy Kim+李圣经-我的嘴唇像温暖的咖啡一样,http://em.21dtv.com/songs/60121243.mkv +李晓东-我的心是你永远落脚的地方,http://em.21dtv.com/songs/60124083.mkv +余家辉-我的未来不是梦,http://em.21dtv.com/songs/60125133.mkv +低调组合-我的天空 Rap God,http://em.21dtv.com/songs/60125119.mkv +卢庚戌-我的生命不过是温柔的疯狂,http://em.21dtv.com/songs/60133440.mkv +潘美辰-我等你说出这一句等了好久,http://em.21dtv.com/songs/60088249.mkv +MG女团-我的麦克风 火,http://em.21dtv.com/songs/60126539.mkv +牛梦瑶-维多利亚的秘密,http://em.21dtv.com/songs/60129372.mkv +约瑟翰庞麦郎-我的滑板鞋[原MV原伴],http://em.21dtv.com/songs/60106186.mkv +李玮-我不是一个爱过就算了的人,http://em.21dtv.com/songs/60088033.mkv +贺一航-我爱的姑娘做了别人的新娘,http://em.21dtv.com/songs/60097986.mkv +伊克拉木+李文琦-Vincent,http://em.21dtv.com/songs/60103878.mkv +SoulstaR-Unbelievable,http://em.21dtv.com/songs/60133286.mkv +Owl City+Hanson-Unbelievable,http://em.21dtv.com/songs/60113179.mkv +张震+赵薇-天下无双那个啦想说啦啦啦,http://em.21dtv.com/songs/60091160.mkv +Union J-Tonight(We Live Forever),http://em.21dtv.com/songs/60103047.mkv +张佑赫-Time Is Over,http://em.21dtv.com/songs/60108479.mkv +Dwntwn-Til Tomorrow,http://em.21dtv.com/songs/60124864.mkv +誉恩-Thru the sky,http://em.21dtv.com/songs/60134213.mkv +Rae Sremmurd+Nicki Minaj+Young Thug-Throw Sum Mo,http://em.21dtv.com/songs/60109864.mkv +周兴哲-This Is Love,http://em.21dtv.com/songs/60126710.mkv +Christine welch(克丽丝叮)-That's How It Is,http://em.21dtv.com/songs/60103006.mkv +Frightened Rabbit-The Woodpile,http://em.21dtv.com/songs/60124875.mkv +何雁诗-The Only One,http://em.21dtv.com/songs/60125124.mkv +豫剧-听孩儿把书馆之事细说原因,http://em.21dtv.com/songs/60134553.mkv +Christina Grimmie-Tell My Mama,http://em.21dtv.com/songs/60103758.mkv +张艾嘉-她的心是一个巨大的修车厂,http://em.21dtv.com/songs/60087836.mkv +满文军-特别的爱给特别的你懂你,http://em.21dtv.com/songs/60098606.mkv +满文军-特别的爱给特别的你+懂你,http://em.21dtv.com/songs/60097988.mkv +Troye Sivan-Talk Me Down,http://em.21dtv.com/songs/60121312.mkv +Tove Lo-Talking Body,http://em.21dtv.com/songs/60111659.mkv +谭维维-Take My Hand,http://em.21dtv.com/songs/60122129.mkv +Midnight Red-Take Me Home,http://em.21dtv.com/songs/60124951.mkv +Jess Glynne-Take Me Home,http://em.21dtv.com/songs/60117464.mkv +DJ舞曲-Take Me Away,http://em.21dtv.com/songs/50000143.mkv +AKIRA-キリエ トロイメンの调べ,http://em.21dtv.com/songs/60112418.mkv +豫剧-谁知道你的心比那冰棍还凉,http://em.21dtv.com/songs/60134608.mkv +任妙音-Susen 我是如此爱你,http://em.21dtv.com/songs/60113243.mkv +王思远-Summer Stage,http://em.21dtv.com/songs/60113859.mkv +金珠娜-Summer Dream,http://em.21dtv.com/songs/60130814.mkv +Twenty One Pilots-Stressed Out,http://em.21dtv.com/songs/60119204.mkv +焚梵-Stop Hurting,http://em.21dtv.com/songs/60107041.mkv +柴超-Stay With Me,http://em.21dtv.com/songs/60127118.mkv +李玟-Stay With Me,http://em.21dtv.com/songs/60119664.mkv +仓木麻衣-Stand By You,http://em.21dtv.com/songs/60108290.mkv +韩广英+王莹-谁是我的太阳谁是我的月亮,http://em.21dtv.com/songs/60100627.mkv +万能青年旅店-杀死那个石家庄人,http://em.21dtv.com/songs/60103845.mkv +乌兰图雅-送你一首吉祥的歌,http://em.21dtv.com/songs/60106576.mkv +Travis-3 Miles High,http://em.21dtv.com/songs/60125030.mkv +Trey Song-Smart Phones,http://em.21dtv.com/songs/60117502.mkv +Sara Evans-Slow Me Down,http://em.21dtv.com/songs/60104718.mkv +Fifth Harmony-Sledgehammer,http://em.21dtv.com/songs/60108221.mkv +鹿晗-SKIN TO SKIN,http://em.21dtv.com/songs/60136017.mkv +佚名-时嘉VS龙庚 七朵百合花,http://em.21dtv.com/songs/60093868.mkv +降央卓玛-谁见过梦中的草原梦中的河(演唱会),http://em.21dtv.com/songs/60083826.mkv +杨坤+丁诗瑀-时间都去哪儿了,http://em.21dtv.com/songs/60112776.mkv +EXO-Sing For You,http://em.21dtv.com/songs/60117451.mkv +马蹄帮乐团-Silent Night,http://em.21dtv.com/songs/60113094.mkv +刀郎-守侯在凌晨两点的伤心秀吧,http://em.21dtv.com/songs/60087379.mkv +Sam Feldt+Kimberly Anne-Show Me Love,http://em.21dtv.com/songs/60115628.mkv +BoA-Shout It Out,http://em.21dtv.com/songs/60098015.mkv +David Guetta-Shot Me Down,http://em.21dtv.com/songs/60119123.mkv +天堂飘雪-说好了今生不分手,http://em.21dtv.com/songs/60126746.mkv +Robin Schulz+David Guetta+Cheat Codes-Shed a Light,http://em.21dtv.com/songs/60132123.mkv +Ed Sheeran-Shape of You,http://em.21dtv.com/songs/60133197.mkv +Ed Sheeran-Shape of You,http://em.21dtv.com/songs/60131059.mkv +Taylor Swift-Shake It Off,http://em.21dtv.com/songs/60133293.mkv +Nick Kroll+Reese Witherspoon-Shake It Off,http://em.21dtv.com/songs/60133257.mkv +Taylor Swift-Shake It Off,http://em.21dtv.com/songs/60103824.mkv +刘美麟-山歌好比春江水,http://em.21dtv.com/songs/60125218.mkv +周艳泓-是否爱你就不该让你离开我,http://em.21dtv.com/songs/60090848.mkv +刘力扬-Set You Free,http://em.21dtv.com/songs/60112533.mkv +Adele-Send My Love,http://em.21dtv.com/songs/60122330.mkv +廖昌永-山丹丹开花红艳艳,http://em.21dtv.com/songs/60123903.mkv +马旭东-谁都不是谁的唯一,http://em.21dtv.com/songs/60114897.mkv +阿译(A译)-SAY GOOD BYE,http://em.21dtv.com/songs/60107305.mkv +Xandria-Save My Life,http://em.21dtv.com/songs/60125054.mkv +Gorillaz+Popcaan-Saturnz Barz,http://em.21dtv.com/songs/60134683.mkv +吴克群+任贤齐-任逍遥 心太软,http://em.21dtv.com/songs/60125285.mkv +阿克江阿依丁-让我一次爱个够,http://em.21dtv.com/songs/60127528.mkv +汪峰战队-让我一次爱个够,http://em.21dtv.com/songs/60115258.mkv +温拿乐队-让我欢喜让我忧_爱如潮水,http://em.21dtv.com/songs/60088232.mkv +大槻真希-Run!Run!Run!,http://em.21dtv.com/songs/60102080.mkv +Wale+Lil Wayne-Running Back,http://em.21dtv.com/songs/60132149.mkv +董事长乐园-Run Baby Run,http://em.21dtv.com/songs/60108873.mkv +董事长乐团-RUN BABY RUN,http://em.21dtv.com/songs/60108870.mkv +萧敬腾+龚泽艺-让每个人都心碎,http://em.21dtv.com/songs/60112196.mkv +大张伟-人间精品起来嗨,http://em.21dtv.com/songs/60126740.mkv +贯诗钦-Ring My Bell,http://em.21dtv.com/songs/60129624.mkv +李光洁-如果这都不算爱,http://em.21dtv.com/songs/60122836.mkv +左成-如果我在最安详的时候死去,http://em.21dtv.com/songs/60135174.mkv +何韵诗-如果我们只剩一首歌的时间,http://em.21dtv.com/songs/60080548.mkv +冯光-如果你爱上我是为了忘记他,http://em.21dtv.com/songs/60122505.mkv +雨霖枫-如果感情的路可以重新来过,http://em.21dtv.com/songs/60135966.mkv +王亚乔-Remain As Is,http://em.21dtv.com/songs/60125897.mkv +UB40-Red Red Wine,http://em.21dtv.com/songs/60107450.mkv +周旸-Racheal,http://em.21dtv.com/songs/60126719.mkv +万海东+王语心-前世修来今生的爱,http://em.21dtv.com/songs/60125065.mkv +回来娶你-前世今生的轮回,http://em.21dtv.com/songs/60094445.mkv +陶晶晶-亲爱的你在想我吗,http://em.21dtv.com/songs/60127571.mkv +刘恺名-亲爱的你在想我吗,http://em.21dtv.com/songs/60118390.mkv +陈星+余世清-亲爱的爸爸,http://em.21dtv.com/songs/60114862.mkv +李宗盛-漂洋过海来看你[演唱会],http://em.21dtv.com/songs/60106939.mkv +李光洁-漂洋过海来看你,http://em.21dtv.com/songs/60122839.mkv +刘明湘-漂洋过海来看你,http://em.21dtv.com/songs/60103116.mkv +DJ Candy+刘明湘-漂洋过海来看你(Mix),http://em.21dtv.com/songs/50000237.mkv +Britney Spears+Iggy Azalea-Pretty Girls,http://em.21dtv.com/songs/60110750.mkv +何嘉茵-Perfect Girl,http://em.21dtv.com/songs/60130074.mkv +何嘉茵-PERFECT GIRL,http://em.21dtv.com/songs/60123625.mkv +少女时代-PARTY,http://em.21dtv.com/songs/60113430.mkv +Tinashe-Party Favors,http://em.21dtv.com/songs/60116480.mkv +Tori Kelly-Paper Hearts,http://em.21dtv.com/songs/60119203.mkv +JENNIFER LOPEZ+PITBULL-ON THE FLOOR,http://em.21dtv.com/songs/60101774.mkv +Les Miserables Cast-One Day More,http://em.21dtv.com/songs/60115609.mkv +吴克羣+张韶涵-One Day More,http://em.21dtv.com/songs/60094025.mkv +モーニング娘。-One and Only,http://em.21dtv.com/songs/60117518.mkv +刘思涵-Oh Let It Be,http://em.21dtv.com/songs/60110883.mkv +陈明憙-OCTOBER SNOW,http://em.21dtv.com/songs/60124638.mkv +凌志辉-你怎么忍心让我一个人生活,http://em.21dtv.com/songs/60087371.mkv +本兮+单小源-你在看孤独的风景,http://em.21dtv.com/songs/60094532.mkv +常石磊-你知道我在你等吗,http://em.21dtv.com/songs/60105802.mkv +杨宗纬+吉克隽逸-你知道你是谁SORRY,http://em.21dtv.com/songs/60098508.mkv +李行亮-那些年我们一起追过的女孩,http://em.21dtv.com/songs/60081346.mkv +于朦胧-那些你教我的事,http://em.21dtv.com/songs/60128752.mkv +梁栋江-你为了多少人哭,http://em.21dtv.com/songs/60118730.mkv +覃飞宇-你是值得我一辈子去爱的人,http://em.21dtv.com/songs/60085536.mkv +彭三-你是我的玫瑰花,http://em.21dtv.com/songs/60129134.mkv +张铭峰-男人伤心也流泪之伤心城市,http://em.21dtv.com/songs/60115167.mkv +张铭峰-男人伤心也流泪之伤情男人,http://em.21dtv.com/songs/60099244.mkv +何鹏+张雷-男人苦点算什么(DJ版),http://em.21dtv.com/songs/50000196.mkv +龙梅子-女人不拽容易被甩,http://em.21dtv.com/songs/60126503.mkv +Halsey-Now Or Never,http://em.21dtv.com/songs/60134691.mkv +Anda-Nobody knows,http://em.21dtv.com/songs/60134636.mkv +丁紫-你明明爱着我却还要嫁给他,http://em.21dtv.com/songs/60123580.mkv +花哥-你明明爱着我却还要嫁给他,http://em.21dtv.com/songs/60080566.mkv +巴桑拉姆-纳木措恋人,http://em.21dtv.com/songs/60114515.mkv +京剧-那里有人民那里就有赵永刚,http://em.21dtv.com/songs/60090535.mkv +贺一航-你就这样把我丢下,http://em.21dtv.com/songs/60112976.mkv +艳阳天+黄帆-你就是我最爱的人,http://em.21dtv.com/songs/60111368.mkv +叶雨欣-Nice Feeling,http://em.21dtv.com/songs/60133453.mkv +姜洋-你画的彩虹,http://em.21dtv.com/songs/60113391.mkv +陈翔-Need To Know,http://em.21dtv.com/songs/60106423.mkv +TONICK-你对我已经唔係好似以前咁,http://em.21dtv.com/songs/60080412.mkv +德德玛-你从前是这样现在还是这样,http://em.21dtv.com/songs/60091211.mkv +丁当+MP魔幻力量-Natural High,http://em.21dtv.com/songs/60121326.mkv +李双江-毛主席的恩情比天高比水长,http://em.21dtv.com/songs/60087989.mkv +我要成为更好的人,http://em.21dtv.com/songs/60107406.mkv +EVE-Mystery Love,http://em.21dtv.com/songs/60104670.mkv +柯有伦+林明祯-My Only Love,http://em.21dtv.com/songs/60125799.mkv +柯有伦+林明祯-My Only Love,http://em.21dtv.com/songs/60124147.mkv +韩晶-没有你的日子我真的好难过,http://em.21dtv.com/songs/60089542.mkv +孙燕姿-明天的记忆,http://em.21dtv.com/songs/60115096.mkv +Pia Mia-Mr President,http://em.21dtv.com/songs/60121298.mkv +C.INFANTA-MORNING CALL,http://em.21dtv.com/songs/60123452.mkv +LIL UZI VERT-MONEY LONGER,http://em.21dtv.com/songs/60129961.mkv +Sunny Hil-Monday Blues,http://em.21dtv.com/songs/60103823.mkv +Popu Lady-妈妈送我一个吉他2013,http://em.21dtv.com/songs/60103033.mkv +马钰淇-妈妈让我再爱你一次,http://em.21dtv.com/songs/60102945.mkv +紫琴-默默流泪默默哭泣是在为谁,http://em.21dtv.com/songs/60083437.mkv +常石磊-MJ Love,http://em.21dtv.com/songs/60119481.mkv +HOTSHOT-Midnight Sun,http://em.21dtv.com/songs/60111619.mkv +许景淳-玫瑰人生+睡吧! 我的爱,http://em.21dtv.com/songs/60097987.mkv +黄龄+李博-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60123410.mkv +黄榕-MELTY YELLOW,http://em.21dtv.com/songs/60123403.mkv +Block B+Bastarz-Make It Rain,http://em.21dtv.com/songs/60129896.mkv +Ed Sheeran-Make It Rain,http://em.21dtv.com/songs/60124867.mkv +李宇春-Magical Show,http://em.21dtv.com/songs/60127000.mkv +袁娅维-旅行中忘记,http://em.21dtv.com/songs/60123150.mkv +Maroon5-Lucky Strike,http://em.21dtv.com/songs/60124941.mkv +于湉-Lucky Strike,http://em.21dtv.com/songs/60116532.mkv +古惑仔&DJ平仔-乱世巨星(DJ版Mix),http://em.21dtv.com/songs/50000207.mkv +沙玛尔西-凉山的月亮,http://em.21dtv.com/songs/60122948.mkv +曹格+殷嘉恩+Tara+洪茜茜-梁山伯与朱丽叶,http://em.21dtv.com/songs/60124027.mkv +李秋泽-Love U Momma,http://em.21dtv.com/songs/60121780.mkv +周觅+黄子韬-Love Tonight,http://em.21dtv.com/songs/60125319.mkv +Jason Mraz-Love Someone,http://em.21dtv.com/songs/60101773.mkv +平安-LOVE IS TRUE,http://em.21dtv.com/songs/60105002.mkv +妤桢-Love Is Pain,http://em.21dtv.com/songs/60114471.mkv +李健-Love is over,http://em.21dtv.com/songs/60135352.mkv +白智英-Love Is Over,http://em.21dtv.com/songs/60130624.mkv +袁娅维-Love Can Fly,http://em.21dtv.com/songs/60094291.mkv +张艺兴-LOSE CONTROL,http://em.21dtv.com/songs/60129119.mkv +孟小笛&祁隆-啦啦爱 (DJ)(无损),http://em.21dtv.com/songs/50000254.mkv +李佑晨-Listen To Me,http://em.21dtv.com/songs/60119646.mkv +AAA-Lil'Infinity,http://em.21dtv.com/songs/60111572.mkv +Zayn-Like I Would,http://em.21dtv.com/songs/60121316.mkv +Fergie-Life Goes On,http://em.21dtv.com/songs/60131061.mkv +陈奕迅-LIFE_GOES_ON,http://em.21dtv.com/songs/60098855.mkv +光头阿兴-离婚都是我的错[第二版],http://em.21dtv.com/songs/60098119.mkv +独飞-两个人烦恼不如一个人孤单,http://em.21dtv.com/songs/60117909.mkv +NMB48-Let it snow!,http://em.21dtv.com/songs/60131092.mkv +香香-落单的恋人,http://em.21dtv.com/songs/60107360.mkv +李荣浩-李白(DJ啊纹 Mix),http://em.21dtv.com/songs/50000173.mkv +崔子格-可念不可说,http://em.21dtv.com/songs/60126818.mkv +陈楚生-快乐不过是做你想做的而已,http://em.21dtv.com/songs/60080449.mkv +佳仁-Kiss or Kill,http://em.21dtv.com/songs/60133369.mkv +Boa-Kiss My Lips,http://em.21dtv.com/songs/60111588.mkv +Fairies-Kiss Me Babe,http://em.21dtv.com/songs/60110761.mkv +汪定中-KISS GOODBYE,http://em.21dtv.com/songs/60131598.mkv +萧敬腾+宋宇-Kiss Goodbye,http://em.21dtv.com/songs/60111380.mkv +丢火车乐队-卡尔加里路,http://em.21dtv.com/songs/60114969.mkv +强裕涵-Keep Hold On,http://em.21dtv.com/songs/60105891.mkv +J.I-卡布奇诺的泡泡,http://em.21dtv.com/songs/60124903.mkv +范玮琪+曾静玟-可不可以不勇敢,http://em.21dtv.com/songs/60124414.mkv +AKB48-君と出会って仆は変わった,http://em.21dtv.com/songs/60101721.mkv +乌兰图雅-寄一片绿叶到草原,http://em.21dtv.com/songs/60121340.mkv +黎明-今夜你会不会来,http://em.21dtv.com/songs/60118224.mkv +Steve Aoki+Louis Tomlinson-Just Hold on,http://em.21dtv.com/songs/60131109.mkv +顽童MJ116-JUST BELIEVE,http://em.21dtv.com/songs/60102935.mkv +陶喆+王奕丁-今天你要嫁给我,http://em.21dtv.com/songs/60126412.mkv +DJ舞曲-今天你嗨了么(DJ云飞),http://em.21dtv.com/songs/50000145.mkv +DJ-劲速中外文棒棒棒电音嗨曲,http://em.21dtv.com/songs/60119128.mkv +Twins-就说我们都是华丽的单身族,http://em.21dtv.com/songs/60127687.mkv +Six Bomb-就请等我10年 BABY,http://em.21dtv.com/songs/60122417.mkv +李一哲-坚强打死爱哭鬼,http://em.21dtv.com/songs/60119642.mkv +李泽坚-寂寞我一人,http://em.21dtv.com/songs/60113638.mkv +龙梅子-寂寞的人伤心的歌,http://em.21dtv.com/songs/60109071.mkv +冷漠-寂寞的人别去拉萨,http://em.21dtv.com/songs/60114407.mkv +中四舞曲-九九女儿红+舞女泪+追求,http://em.21dtv.com/songs/60090475.mkv +KTVXG-Jingle Bells,http://em.21dtv.com/songs/60129955.mkv +龙啸-嫁个对你好的男人,http://em.21dtv.com/songs/60102942.mkv +群星-酒歌 春天来了 守望相助,http://em.21dtv.com/songs/60119886.mkv +Alesso+Nico And Vinz-I Wanna Know,http://em.21dtv.com/songs/60128664.mkv +曹景豪+谭轩辕-It's My Life,http://em.21dtv.com/songs/60115203.mkv +谭轩辕+曹景豪-It's My Life,http://em.21dtv.com/songs/60114802.mkv +Glee Cast-It's My Life,http://em.21dtv.com/songs/60103018.mkv +朴翔-Is This Love,http://em.21dtv.com/songs/60126991.mkv +Fall Out Boy-Irresistible,http://em.21dtv.com/songs/60115582.mkv +The Weeknd-In The Night,http://em.21dtv.com/songs/60119202.mkv +Girl's Day-Ill Be Yours,http://em.21dtv.com/songs/60134680.mkv +岚-Ill be there,http://em.21dtv.com/songs/60135160.mkv +张玮-I'll Be Back,http://em.21dtv.com/songs/60116798.mkv +Vanilla Ice-Ice Ice Baby,http://em.21dtv.com/songs/60123556.mkv +金贵晟-I Believe爱不离,http://em.21dtv.com/songs/60106348.mkv +迟志强-含着眼泪朝前走,http://em.21dtv.com/songs/60104467.mkv +韩磊-鸿雁+走四方+向天再借五百年,http://em.21dtv.com/songs/60098544.mkv +柒拾趴-How You Feel,http://em.21dtv.com/songs/60105194.mkv +N.S 允智-Honey Summer,http://em.21dtv.com/songs/60112451.mkv +Jess Glynne-Hold My Hand,http://em.21dtv.com/songs/60109825.mkv +李恕权-回+每次都想呼喊你的名字,http://em.21dtv.com/songs/60097984.mkv +胡慧萍+郑锦昌+朱咪咪-欢乐年年+财神到+迎春花,http://em.21dtv.com/songs/60093058.mkv +Emeli Sandé-Highs & Lows,http://em.21dtv.com/songs/60132075.mkv +赵大格-Hero Hug 抱一起,http://em.21dtv.com/songs/60118072.mkv +Halestorm-Here's To Us,http://em.21dtv.com/songs/60103020.mkv +Kygo+Ella Henderson-Here for You,http://em.21dtv.com/songs/60122391.mkv +Frankie Ballard-Helluva Life,http://em.21dtv.com/songs/60101767.mkv +Adele-Hello,http://em.21dtv.com/songs/60118242.mkv +Jason Derulo+Flo Rida-Hello Friday,http://em.21dtv.com/songs/60122385.mkv +Girl's Day-Hello Bubble,http://em.21dtv.com/songs/60111607.mkv +AOA-Heart Attack,http://em.21dtv.com/songs/60112419.mkv +Luna+楚伊-Healing Love,http://em.21dtv.com/songs/60114347.mkv +李玉和-红灯具+穷人的孩子早当家(戏曲),http://em.21dtv.com/songs/60091329.mkv +吴静-何必西天万里遥,http://em.21dtv.com/songs/60126706.mkv +曾鸿禧-Have A Break,http://em.21dtv.com/songs/60119634.mkv +乐瞳-Happy Tinkle,http://em.21dtv.com/songs/60122465.mkv +白举纲-Happy Ending,http://em.21dtv.com/songs/60131693.mkv +黄耀彬-给一个你走的理由,http://em.21dtv.com/songs/60107378.mkv +张燕峰-感谢你从墨尔本带回来的雨,http://em.21dtv.com/songs/60133678.mkv +杨宗纬+华晨宇-国王与乞丐,http://em.21dtv.com/songs/60122885.mkv +Luce Twinkle Wink-go to Romanc,http://em.21dtv.com/songs/60133230.mkv +LINKIN PARK+Pusha T+Stormzy-Good Goodbye,http://em.21dtv.com/songs/60134737.mkv +Eric Nam-Good For You,http://em.21dtv.com/songs/60120206.mkv +Selena Gomez-Good For You,http://em.21dtv.com/songs/60112459.mkv +Nu'est-Good Bye Bye,http://em.21dtv.com/songs/60103804.mkv +Gorgon City-Go All Night,http://em.21dtv.com/songs/60109093.mkv +梁栋江-光芒,http://em.21dtv.com/songs/60103396.mkv +罗志祥+蔡依林-够了 play我play,http://em.21dtv.com/songs/60124347.mkv +张文绮-Give Me High,http://em.21dtv.com/songs/60122723.mkv +张文绮-Give Me High,http://em.21dtv.com/songs/60116792.mkv +赵奕欢-Give Me Five,http://em.21dtv.com/songs/60122143.mkv +章小军-GIVE ME FIVE,http://em.21dtv.com/songs/60121983.mkv +刘至佳-Girl On Fire,http://em.21dtv.com/songs/60101992.mkv +Robin Thicke-Get Her Back,http://em.21dtv.com/songs/60101818.mkv +刀郎+云朵-共产党来了苦变甜,http://em.21dtv.com/songs/60108330.mkv +马健南-告别2015迎接2016,http://em.21dtv.com/songs/60120134.mkv +Dan Croll-From Nowhere,http://em.21dtv.com/songs/60109809.mkv +Eric Paslay-Friday Night,http://em.21dtv.com/songs/60098023.mkv +狮子合唱团-Forever Love,http://em.21dtv.com/songs/60135527.mkv +Mini Sister-Forever Love,http://em.21dtv.com/songs/60126541.mkv +Buzz-Forever Love,http://em.21dtv.com/songs/60121224.mkv +杨坤+人声兄弟-Forever Love,http://em.21dtv.com/songs/60113668.mkv +茜拉-Forever Love,http://em.21dtv.com/songs/60098719.mkv +毕书尽-Find The Way,http://em.21dtv.com/songs/60102430.mkv +王梓轩+卢靖姗-Fighting For,http://em.21dtv.com/songs/60125928.mkv +鞠婧祎-FIGHTING DAY,http://em.21dtv.com/songs/60124679.mkv +网络歌手-法国慢摇非主流(DJ版),http://em.21dtv.com/songs/50000225.mkv +林志炫-Feeling Good,http://em.21dtv.com/songs/60133874.mkv +李健-Feeling Good,http://em.21dtv.com/songs/60120604.mkv +Twenty One Pilots-Fairly Local,http://em.21dtv.com/songs/60123552.mkv +萧敬腾+吴琼-Endless Love,http://em.21dtv.com/songs/60094664.mkv +Chvrches-Empty Threat,http://em.21dtv.com/songs/60117438.mkv +Melody Day-EAUTIFUL Day,http://em.21dtv.com/songs/60131084.mkv +伍凌枫-大自然的灵魂是我们的责任,http://em.21dtv.com/songs/60114996.mkv +邓紫棋-多远都要在一起,http://em.21dtv.com/songs/60108911.mkv +黄磊+张清芳+黄舒骏-当我想你的时候,http://em.21dtv.com/songs/60104634.mkv +艾怡良-带我去一个阳光普照的岛屿,http://em.21dtv.com/songs/60123103.mkv +One Direction-Drag Me Down,http://em.21dtv.com/songs/60114354.mkv +蔡诗芸+周汤豪-Down With Me,http://em.21dtv.com/songs/60105356.mkv +Beyoncé-Die With You,http://em.21dtv.com/songs/60134649.mkv +谢沛恩-Daddy‘s Girl,http://em.21dtv.com/songs/60114063.mkv +山子华-ジェルソミーナの歩いた道,http://em.21dtv.com/songs/60115129.mkv +薛凯琪-除下吊带前,http://em.21dtv.com/songs/60114036.mkv +BINGO-CRUSH ON YOU,http://em.21dtv.com/songs/60122347.mkv +群星-猜评团开场串烧,http://em.21dtv.com/songs/60127283.mkv +袁咏琳+嘎嘎+廷廷-Come To Mami,http://em.21dtv.com/songs/60110502.mkv +The One-Close to you,http://em.21dtv.com/songs/60133295.mkv +卓依婷-常来常往_我的祝福记得吗,http://em.21dtv.com/songs/60087459.mkv +CARRIE UNDERWOOD-CHURCH BELLS,http://em.21dtv.com/songs/60129902.mkv +AKB48-唇にBe My Baby,http://em.21dtv.com/songs/60117430.mkv +EXO-Call Me Baby,http://em.21dtv.com/songs/60109816.mkv +门丽-别再用眼泪欺骗我,http://em.21dtv.com/songs/60116322.mkv +DjVing+程响-不再联系(DJ版Mix),http://em.21dtv.com/songs/50000127.mkv +蔡健东-不要在我离开的时候抱着我,http://em.21dtv.com/songs/60117191.mkv +陶钰玉-不要在我寂寞的时候说爱我,http://em.21dtv.com/songs/60109719.mkv +张煜枫-不要在我的朋友圈里卖面膜,http://em.21dtv.com/songs/60114545.mkv +余零-不要躺在别人怀里打我电话,http://em.21dtv.com/songs/60099750.mkv +孙子涵-毕业后你不是我的,http://em.21dtv.com/songs/60098233.mkv +我不是一只小小鸟+白天不懂爷的黑-不为谁而作的歌,http://em.21dtv.com/songs/60129160.mkv +徐佳莹+林俊杰-不为谁而作的歌,http://em.21dtv.com/songs/60120565.mkv +唐磊-别忘了你的世界我曾经来过,http://em.21dtv.com/songs/60082630.mkv +唐磊-别忘了你的世界我曾经来过,http://em.21dtv.com/songs/60110096.mkv +林舞耀-Butcher^Game,http://em.21dtv.com/songs/60106986.mkv +黑豹+刘文杰-白天不懂夜的黑,http://em.21dtv.com/songs/60126495.mkv +刘涛-白天不懂夜的黑,http://em.21dtv.com/songs/60122527.mkv +吴生全-悲伤的爱情也有悲伤的美丽,http://em.21dtv.com/songs/60127835.mkv +吴生全-悲伤的爱情也有悲伤地美丽,http://em.21dtv.com/songs/60086452.mkv +吴生全-悲伤的爱情也有悲伤的美丽,http://em.21dtv.com/songs/60084889.mkv +刘芳-不是爱人不配情深,http://em.21dtv.com/songs/60106651.mkv +T.I-Bring Em Out,http://em.21dtv.com/songs/60125013.mkv +安室奈美恵-Brighter Day,http://em.21dtv.com/songs/60105767.mkv +Carly Rae Jepsen-Boy Problems,http://em.21dtv.com/songs/60121227.mkv +BOYS AND MEN-BOYMEN NINJA,http://em.21dtv.com/songs/60119110.mkv +130 House Maxup-Bootknocking,http://em.21dtv.com/songs/60119084.mkv +姜兴琦-斑马斑马,http://em.21dtv.com/songs/60105738.mkv +Paloma Faith-Black & Blue,http://em.21dtv.com/songs/60103805.mkv +乃木坂46-别れ际、もっと好きになる,http://em.21dtv.com/songs/60114372.mkv +JJCC-BingBingBing,http://em.21dtv.com/songs/60103790.mkv +谭维维-白桦林^莫斯科郊外的夜晚,http://em.21dtv.com/songs/60114070.mkv +伊尔盼+郑湫泓-半个月亮爬上来,http://em.21dtv.com/songs/60125111.mkv +赵心蕾+高恺蔚-不管发生什么别放开我的手,http://em.21dtv.com/songs/60120976.mkv +陈洁仪-被风吹散的人们,http://em.21dtv.com/songs/60126394.mkv +Rachel Platten-Better Place,http://em.21dtv.com/songs/60123520.mkv +王晰-Besame Mucho,http://em.21dtv.com/songs/60119813.mkv +阿瑞-Beat It 一起摇摆,http://em.21dtv.com/songs/60126350.mkv +姚璇辰+严爵-把不起妹妹就Battle,http://em.21dtv.com/songs/60106754.mkv +吴莫愁-Bad Boy,http://em.21dtv.com/songs/60123747.mkv +易欣-爱做开始痛做结尾,http://em.21dtv.com/songs/60118634.mkv +夏雪-爱上你是我今生最大的错误,http://em.21dtv.com/songs/60107620.mkv +龚玥菲-爱上都敏俊,http://em.21dtv.com/songs/60102393.mkv +何沛璇-ANDERSEN也不明白,http://em.21dtv.com/songs/60123628.mkv +朴树-傲慢的上校,http://em.21dtv.com/songs/60117804.mkv +群星-奥林匹克风_新北京新奥运,http://em.21dtv.com/songs/60088454.mkv +张靓颖-All Of Me ok,http://em.21dtv.com/songs/60109339.mkv +Madison Beer+Jack&Jack-All For Love,http://em.21dtv.com/songs/60119159.mkv +Jasmine Thompson-Ain't Nobody,http://em.21dtv.com/songs/60113166.mkv +Wonder Girls-Ain't Nobody,http://em.21dtv.com/songs/60103837.mkv +LEGO BIG MORL-あなたがいればいいのに,http://em.21dtv.com/songs/60134736.mkv +小泽亚李-ウラオモテフォーチュン,http://em.21dtv.com/songs/60108456.mkv +萧全-走着走着就散了,http://em.21dtv.com/songs/60120911.mkv +范玮琪-最重要的决定,http://em.21dtv.com/songs/60118011.mkv +柴郡猫-整座城市都是我的游乐园,http://em.21dtv.com/songs/60124151.mkv +张雨生-这一夜我睡不着,http://em.21dtv.com/songs/60110213.mkv +叶炫清-这一生只为你,http://em.21dtv.com/songs/60128870.mkv +天威-在一起胜过千万句我爱你,http://em.21dtv.com/songs/60121541.mkv +李克勤-在一起却很寂寞,http://em.21dtv.com/songs/60111961.mkv +肖家永-只愿你能永远过的比我好,http://em.21dtv.com/songs/60117132.mkv +张彬-找一个像我这样爱你的人(HD),http://em.21dtv.com/songs/10012781.mkv +张彬-找一个像我这样爱你的人,http://em.21dtv.com/songs/60093714.mkv +张张-战友当你走在离队的路上,http://em.21dtv.com/songs/60130311.mkv +廖兆军-在我心里真的不想失去你,http://em.21dtv.com/songs/60097976.mkv +晓依-在我心里没有谁能代替你,http://em.21dtv.com/songs/60119616.mkv +蓝瘦的海盗很香菇-祝我生日快乐,http://em.21dtv.com/songs/60129576.mkv +曹格-祝我生日快乐,http://em.21dtv.com/songs/60113575.mkv +陈飞好-在我流泪的时候别说爱我,http://em.21dtv.com/songs/60119034.mkv +婳诗诗+格子-只是想要一个明确的关系,http://em.21dtv.com/songs/60131319.mkv +彭清-最熟悉的陌生人,http://em.21dtv.com/songs/60120553.mkv +周啊想+默契李智-这世界最珍贵的是你的心,http://em.21dtv.com/songs/60081109.mkv +脆乐团-这世界没有你想像的苦涩,http://em.21dtv.com/songs/60124385.mkv +覃浩-这首歌写给你,http://em.21dtv.com/songs/60129603.mkv +林二汶-至死不渝,http://em.21dtv.com/songs/60108613.mkv +唐禹哲-只欠一句我爱你,http://em.21dtv.com/songs/60115068.mkv +王梵瑞-追求吧 一生就这么一次,http://em.21dtv.com/songs/60130592.mkv +唐古-做你心上的人[DJ版],http://em.21dtv.com/songs/60098213.mkv +李琦-怎么说我不爱(中国好声音第二季),http://em.21dtv.com/songs/60105148.mkv +孙刚-这么好的妹子见不上个面,http://em.21dtv.com/songs/60087112.mkv +刘美君-最后一夜,http://em.21dtv.com/songs/60117588.mkv +冷漠-醉红颜(DJ)(无损),http://em.21dtv.com/songs/50000266.mkv +羽田-只怪自己活该,http://em.21dtv.com/songs/60109576.mkv +李志-这个世界会好吗2015,http://em.21dtv.com/songs/60111163.mkv +纪敏佳+李翊君+伍思凯-征服+爱情傀儡+离开我,http://em.21dtv.com/songs/60080587.mkv +肖洋+琳琳-在冬天和奶奶一起晒太阳(演唱会),http://em.21dtv.com/songs/60084509.mkv +储毅-这点伤其实也是一种幸福,http://em.21dtv.com/songs/60105604.mkv +古巨基-找到你是我最伟大的成功,http://em.21dtv.com/songs/60111739.mkv +谭芷昀-真的爱你,http://em.21dtv.com/songs/60114080.mkv +群星-在灿烂的阳光下,http://em.21dtv.com/songs/60105298.mkv +祁隆-再唱等你那么久,http://em.21dtv.com/songs/60114714.mkv +湘东雨-这辈子真的不能在一起吗,http://em.21dtv.com/songs/60084531.mkv +江智民+周虹-这辈子我们还能在一起吗,http://em.21dtv.com/songs/60113773.mkv +王铮亮-越走越远的旅客,http://em.21dtv.com/songs/60124291.mkv +晨悠组合-野子,http://em.21dtv.com/songs/60113571.mkv +白致瑶+泽旺多吉-沿着社会主义大道奔前方,http://em.21dtv.com/songs/60117090.mkv +兰天-有一种爱永远都不会改变,http://em.21dtv.com/songs/60097977.mkv +洛天依+言和-阴阳先生,http://em.21dtv.com/songs/60110340.mkv +曾春年-也许我不是你想要爱的人,http://em.21dtv.com/songs/60114578.mkv +帕尔哈提+汪峰-有些事我们永远无法左右,http://em.21dtv.com/songs/60104995.mkv +卓依婷-原乡情歌+碧蓝村的姑娘,http://em.21dtv.com/songs/60087451.mkv +A Lin-一想到你呀 老人饮酒歌,http://em.21dtv.com/songs/60109077.mkv +张韶涵-隐形的翅膀+有形的翅膀,http://em.21dtv.com/songs/60087061.mkv +张韶涵-隐形的翅膀^有形的翅膀,http://em.21dtv.com/songs/60096295.mkv +豫剧-有什么心里话你明说直讲,http://em.21dtv.com/songs/60134586.mkv +沙宝亮-要死就一定要死在你手里,http://em.21dtv.com/songs/60113797.mkv +杨坤+旦增尼玛-要死就一定要死在你手里,http://em.21dtv.com/songs/60112011.mkv +谭维维-要死就一定要死在你手里,http://em.21dtv.com/songs/60110541.mkv +杨坤-要死就一定要死在你手里(演唱会),http://em.21dtv.com/songs/60103382.mkv +郑钧+莫西子诗-要死就一定要死在你手里,http://em.21dtv.com/songs/60102802.mkv +莫西子诗-要死就一定要死在你手里,http://em.21dtv.com/songs/60080671.mkv +华晨宇-易燃易爆炸[天籁之战],http://em.21dtv.com/songs/60132266.mkv +MC阿峰-一人我两袖清风,http://em.21dtv.com/songs/60126538.mkv +The Veronicas-You Ruin Me,http://em.21dtv.com/songs/60107447.mkv +张杰+莫文蔚-一念之间,http://em.21dtv.com/songs/60118564.mkv +吴若希-越难越爱,http://em.21dtv.com/songs/60106688.mkv +阿肆-有女朋友别忘了请我吃饭,http://em.21dtv.com/songs/60087073.mkv +韩磊-雁南飞 呼伦贝尔大草原,http://em.21dtv.com/songs/60110670.mkv +樊海峰-有没有一种爱可以不流泪,http://em.21dtv.com/songs/60112045.mkv +云菲菲-有没有一种爱可以不放手,http://em.21dtv.com/songs/60126583.mkv +云菲菲-有没有一种爱可以不放手,http://em.21dtv.com/songs/60103869.mkv +羽泉-一面湖水[梦想的声音],http://em.21dtv.com/songs/60134132.mkv +羽泉-一面湖水[梦想的声音],http://em.21dtv.com/songs/60132806.mkv +上坂すみれ-阎魔大王に讯いてごらん,http://em.21dtv.com/songs/60110815.mkv +谢安琪-亚拉伯跳舞女郎+钟无艳,http://em.21dtv.com/songs/60093171.mkv +张浩-有苦难言,http://em.21dtv.com/songs/60113479.mkv +SNH48-雨季之后修正中文词作者,http://em.21dtv.com/songs/60117492.mkv +英皇群星-英皇15周年演唱会组曲,http://em.21dtv.com/songs/60120895.mkv +赵宥乔-烟火里的尘埃,http://em.21dtv.com/songs/60129638.mkv +汤子星+王丽达-月光下的诉说[演唱会],http://em.21dtv.com/songs/60131591.mkv +唐古-有个傻瓜爱过你[DJ],http://em.21dtv.com/songs/60107611.mkv +晓依-一个人的寂寞两个人的错,http://em.21dtv.com/songs/60084353.mkv +草原兄妹-要唱就要唱一首草原的歌,http://em.21dtv.com/songs/60123111.mkv +马丽-一次就好,http://em.21dtv.com/songs/60118188.mkv +柯言-拥抱的时候你为什么会哭,http://em.21dtv.com/songs/60124150.mkv +衣湿乐队-宜宾的董小姐,http://em.21dtv.com/songs/60112222.mkv +Flower-やさしさで溢れるように,http://em.21dtv.com/songs/60134674.mkv +乃木坂46-夏のFree&Eazy,http://em.21dtv.com/songs/60103061.mkv +钟婧-西枝江源 我可爱的故乡,http://em.21dtv.com/songs/60114155.mkv +清清儿-想要忘记你怎么就这么难,http://em.21dtv.com/songs/60125875.mkv +清清儿-想要忘记你怎么就这么难,http://em.21dtv.com/songs/60115273.mkv +萧楠+平易-下一个路口我还为你等候,http://em.21dtv.com/songs/60101492.mkv +豫剧-新一代要继壮志汗洒高山,http://em.21dtv.com/songs/60134584.mkv +赤龙-下一辈子你就是我的唯一,http://em.21dtv.com/songs/60086970.mkv +陈瑞-像我这样的人你能懂几分,http://em.21dtv.com/songs/60098884.mkv +赵传-像我一样骄傲,http://em.21dtv.com/songs/60117254.mkv +张胜淼-想谈一场永不分手的恋爱,http://em.21dtv.com/songs/60099241.mkv +胡彦斌-潇洒走一回,http://em.21dtv.com/songs/60095044.mkv +袁玉峰-相守一个云淡风轻的日子,http://em.21dtv.com/songs/60112953.mkv +莫龙丹+汪小敏-小苹果^最炫民族风^火,http://em.21dtv.com/songs/60107161.mkv +群星-新年歌曲串烧2015年,http://em.21dtv.com/songs/60107948.mkv +黄龄+李泉+顺子-旋木+梦一场+勇敢一点,http://em.21dtv.com/songs/60086069.mkv +程琳-熊猫咪咪+只有一个地球,http://em.21dtv.com/songs/60134050.mkv +OLIVIA-幸福记号,http://em.21dtv.com/songs/60117481.mkv +邓紫棋-新的心跳,http://em.21dtv.com/songs/60116280.mkv +曾咏欣-心的构造,http://em.21dtv.com/songs/60119630.mkv +茅威涛+黄依群-惜别离(选自孔雀东南飞),http://em.21dtv.com/songs/60090185.mkv +许志安-相爱的人本来就该黏着的,http://em.21dtv.com/songs/60090211.mkv +彭钧-我站在有阳光的地方等你,http://em.21dtv.com/songs/60125557.mkv +陈红-我这一次真的留下来陪你,http://em.21dtv.com/songs/60090297.mkv +赖慈泓-我在洗澡的时候唱着情歌,http://em.21dtv.com/songs/60128422.mkv +网络歌手-我在下一个路口为你守候,http://em.21dtv.com/songs/60086954.mkv +一只舟+乌丫-我在下一个路口为你守候,http://em.21dtv.com/songs/60099057.mkv +小沈阳+强东玥+赵庆望+范书铭-我只是个传说,http://em.21dtv.com/songs/60122679.mkv +彭丽媛-五洲人民齐欢笑,http://em.21dtv.com/songs/60110218.mkv +胡丹丹-我最Beautiful,http://em.21dtv.com/songs/60112896.mkv +孟文豪-我要醉在草原上,http://em.21dtv.com/songs/60115859.mkv +张瀚元-我要是唐僧就留在女儿国,http://em.21dtv.com/songs/60094896.mkv +张妮-我一定要回去[演唱会],http://em.21dtv.com/songs/60112664.mkv +天爱-我想问你一声有没有爱过,http://em.21dtv.com/songs/60130220.mkv +汪哲-我想是我不够好,http://em.21dtv.com/songs/60109488.mkv +陈绮贞-我喜欢上你时的内心活动,http://em.21dtv.com/songs/60135939.mkv +张瀚元-我心爱的姑娘要嫁到远方,http://em.21dtv.com/songs/60094503.mkv +陶喆-弯弯的月亮,http://em.21dtv.com/songs/60095152.mkv +好妹妹乐队+王子云+李善愿+向阳-往事只能回味,http://em.21dtv.com/songs/60122643.mkv +云海组合-我是一个没有谁心疼的人,http://em.21dtv.com/songs/60128756.mkv +胡瓜-我是一个很容易上瘾的人,http://em.21dtv.com/songs/60091901.mkv +齐会超-我是你的男人,http://em.21dtv.com/songs/60116419.mkv +孙燕-为什么你要绝情的离开我,http://em.21dtv.com/songs/60087663.mkv +叶玉卿-我是多么的不愿意离开你,http://em.21dtv.com/songs/60089718.mkv +史不凡-我是不是恁哥,http://em.21dtv.com/songs/60115038.mkv +史不凡-我是不是恁哥,http://em.21dtv.com/songs/60103137.mkv +Rev. from DVL-屋上のスキマ 白いソラ,http://em.21dtv.com/songs/60119176.mkv +Fifth Harmony-Write On Me,http://em.21dtv.com/songs/60121247.mkv +萧煌奇+杨培安-我期待大海黄河长江,http://em.21dtv.com/songs/60098733.mkv +AGA-Wonderful u,http://em.21dtv.com/songs/60129878.mkv +DJ舞曲-玩腻(DJ版)(无损),http://em.21dtv.com/songs/50000261.mkv +儿歌-我们要做雷峰式的好少年,http://em.21dtv.com/songs/60089137.mkv +于海槟-我们留下一点一点的回忆,http://em.21dtv.com/songs/60113233.mkv +范玮琪-我们的纪念日,http://em.21dtv.com/songs/60118010.mkv +臧天朔-我们等待这一天大地飞歌,http://em.21dtv.com/songs/60088508.mkv +多情流星+小琢-网络里的我和你,http://em.21dtv.com/songs/60111794.mkv +张碧晨-我可以忘记你,http://em.21dtv.com/songs/60123941.mkv +好妹妹乐队-我可是你手中那一朵鲜花,http://em.21dtv.com/songs/60104025.mkv +东于哲-我就是谁,http://em.21dtv.com/songs/60115660.mkv +豫剧-我坚决在农村干他一百年,http://em.21dtv.com/songs/60134571.mkv +黄致列-Without You,http://em.21dtv.com/songs/60124756.mkv +Beast-Without You,http://em.21dtv.com/songs/60122343.mkv +Alessia Cara-Wild Things,http://em.21dtv.com/songs/60120188.mkv +MC HOTDOG+岳云鹏-五环之歌,http://em.21dtv.com/songs/60112448.mkv +郑希怡-Why So Cool,http://em.21dtv.com/songs/60105427.mkv +温馨四季-为何无缘还会爱的那么深,http://em.21dtv.com/songs/60094209.mkv +晨熙-我和我的小伙伴都惊呆了,http://em.21dtv.com/songs/60086926.mkv +赵小兵-我和我的小伙伴都惊呆了,http://em.21dtv.com/songs/60085899.mkv +冷漠-我会让你幸福的,http://em.21dtv.com/songs/60110865.mkv +Boa+Gaeko-Who Are You,http://em.21dtv.com/songs/60111589.mkv +Fifth Harmony-Who Are You,http://em.21dtv.com/songs/60109091.mkv +Led apple-Who Are You,http://em.21dtv.com/songs/60104698.mkv +Foxes-White Coats,http://em.21dtv.com/songs/60117455.mkv +张艺兴-What U Need,http://em.21dtv.com/songs/60129120.mkv +豫剧-为改变穷山沟咱各显本领,http://em.21dtv.com/songs/60134532.mkv +刘嘉亮-我付出所有的爱在你身上,http://em.21dtv.com/songs/60085898.mkv +Wiz Khalifa-We Dem Boyz,http://em.21dtv.com/songs/60104748.mkv +Alicia Keys-We Are Here,http://em.21dtv.com/songs/60106520.mkv +Eddy Kim+李圣经-我的嘴唇像咖啡一样温暖,http://em.21dtv.com/songs/60132072.mkv +阿兰-我的月光,http://em.21dtv.com/songs/60115470.mkv +陈美玲-我第一次做女人的那一天,http://em.21dtv.com/songs/60100603.mkv +俞静-我的明天是我心中的歌咏,http://em.21dtv.com/songs/60116556.mkv +陈雅森-我的快乐就是想你,http://em.21dtv.com/songs/60118172.mkv +杨丽-我的空间我的爱,http://em.21dtv.com/songs/60105997.mkv +胡量-我的家乡有一条美丽的河,http://em.21dtv.com/songs/60100401.mkv +David Oh-W.D.I.A.G.W,http://em.21dtv.com/songs/60121235.mkv +李宇春-1987我不知会遇见你,http://em.21dtv.com/songs/60102334.mkv +黄磊-我不知道风是哪个方向吹,http://em.21dtv.com/songs/60090362.mkv +孙艳-我不是一个你最爱的女人,http://em.21dtv.com/songs/60120453.mkv +高峰-我不是那只披着羊皮的狼,http://em.21dtv.com/songs/60088995.mkv +蝶中蝶-我不是白娘子你不是许仙,http://em.21dtv.com/songs/60102716.mkv +月光星子-我不仅给你温情还有真心,http://em.21dtv.com/songs/60091282.mkv +二兵-我爱的人到最后伤我最深,http://em.21dtv.com/songs/60116523.mkv +雨宫天-Velvet Rays,http://em.21dtv.com/songs/60116353.mkv +迪玛希-Uptown Funk,http://em.21dtv.com/songs/60132953.mkv +Mark Ronson+Bruno Mars-Uptown Funk,http://em.21dtv.com/songs/60132100.mkv +黄圣文-Uptown Funk,http://em.21dtv.com/songs/60114906.mkv +丁少华-UPTOWN FUNK,http://em.21dtv.com/songs/60113207.mkv +周笔畅-Uptown Funk,http://em.21dtv.com/songs/60110091.mkv +Ye_A-Up And Down,http://em.21dtv.com/songs/60103049.mkv +SANNA NIELSEN-UNDO,http://em.21dtv.com/songs/60123532.mkv +Fall Out Boy-Uma Thurman,http://em.21dtv.com/songs/60115583.mkv +李大霏-躺在你的衣柜,http://em.21dtv.com/songs/60124059.mkv +王祥如-太阳月亮[中国新声代],http://em.21dtv.com/songs/60112852.mkv +王莹-天一我是一朵北方的雪花,http://em.21dtv.com/songs/60106126.mkv +西楚霸王-他一定很爱你,http://em.21dtv.com/songs/60129599.mkv +周麒-他一定很爱你,http://em.21dtv.com/songs/60128909.mkv +孙楠-天天想你+今夜无人入眠,http://em.21dtv.com/songs/60086878.mkv +孙楠-天天想你^今夜无人入眠,http://em.21dtv.com/songs/60096242.mkv +周杰伦+Dj伟少-甜甜的(DJ版Mix),http://em.21dtv.com/songs/50000209.mkv +林宥嘉-天上的男人 地上的女人,http://em.21dtv.com/songs/60118719.mkv +Zedd+Ke$ha-True Colors,http://em.21dtv.com/songs/60122448.mkv +小田和正-突如其来的爱情,http://em.21dtv.com/songs/60120475.mkv +Granrodeo-TRASH CANDY,http://em.21dtv.com/songs/60134688.mkv +Hey! Say! JUMP-Traffic Jam,http://em.21dtv.com/songs/60131068.mkv +Greyson Chance-Take My Heart,http://em.21dtv.com/songs/60103632.mkv +April-Tinker Bell,http://em.21dtv.com/songs/60121211.mkv +Eminem+Rihanna-The Monster,http://em.21dtv.com/songs/60122372.mkv +Justin Bieber+Halsey-The Feeling,http://em.21dtv.com/songs/60121268.mkv +Hitomi-TEPPEN STAR,http://em.21dtv.com/songs/60098030.mkv +Dual Flare-Temperature,http://em.21dtv.com/songs/60116444.mkv +南优贤+Key-Tell Me Why,http://em.21dtv.com/songs/60105672.mkv +过江龙-唐伯虎点秋香(DJ版),http://em.21dtv.com/songs/50000236.mkv +阿念+Mr漓+秦浩燃-顺着时间寻找枯萎的花开,http://em.21dtv.com/songs/60133029.mkv +反其道-顺着时间寻找枯萎的花开,http://em.21dtv.com/songs/60131235.mkv +网络歌手-十指紧扣心相守,http://em.21dtv.com/songs/60109565.mkv +孟静-上一道道坡坡下一道道梁,http://em.21dtv.com/songs/60123835.mkv +孙刚-上一道道坡坡下一道道梁,http://em.21dtv.com/songs/60097975.mkv +顾芮宁-随心流浪,http://em.21dtv.com/songs/60115529.mkv +古皓-伤心的人进不了天堂的门,http://em.21dtv.com/songs/60090783.mkv +徐一鸣-伤心的情歌一夜都唱不完,http://em.21dtv.com/songs/60107737.mkv +威仔+孙紫涵-是我一人放不下,http://em.21dtv.com/songs/60111802.mkv +威仔+孙紫涵-是我一人放不下,http://em.21dtv.com/songs/60121559.mkv +Sigala-Sweet Lovin,http://em.21dtv.com/songs/60118275.mkv +The Script-Superheroes,http://em.21dtv.com/songs/60112464.mkv +赵泳鑫-Super Daddy,http://em.21dtv.com/songs/60103594.mkv +Greyson Chance-Summertrain,http://em.21dtv.com/songs/60126525.mkv +Chancellor-SUGAR SUGAR,http://em.21dtv.com/songs/60122359.mkv +苏俏慧-Strong Girl,http://em.21dtv.com/songs/60130683.mkv +苏俏慧-STRONG GIRL,http://em.21dtv.com/songs/60129537.mkv +JYP-Still Alive,http://em.21dtv.com/songs/60124917.mkv +FLOW-Steppin'out,http://em.21dtv.com/songs/60119141.mkv +鹿乃-Stella Rium,http://em.21dtv.com/songs/60112396.mkv +许嵩-山水之间,http://em.21dtv.com/songs/60114772.mkv +望海高歌-三生石上一滴泪,http://em.21dtv.com/songs/60117789.mkv +高安+沁思-思思念念全是你,http://em.21dtv.com/songs/60108163.mkv +哎呀你是从哪儿冒出来的9号-是什么让我遇见这样的你,http://em.21dtv.com/songs/60127863.mkv +李文琦-是什么让我遇见这样的你,http://em.21dtv.com/songs/60105140.mkv +李宇春-十七岁的雨季青苹果乐园,http://em.21dtv.com/songs/60088005.mkv +Niel+JUNIEL-Spring Love,http://em.21dtv.com/songs/60116465.mkv +Amy Lee-Speak To Me,http://em.21dtv.com/songs/60133169.mkv +Hozier-Someone New,http://em.21dtv.com/songs/60114336.mkv +王爱华-思念一年又一年,http://em.21dtv.com/songs/60124265.mkv +董潞-是你让我唱的情歌跑了调,http://em.21dtv.com/songs/60120919.mkv +MC天佑-十年戎马心孤单,http://em.21dtv.com/songs/60115613.mkv +旅行团-生命是场马拉松,http://em.21dtv.com/songs/60107760.mkv +丁丁-失恋Style,http://em.21dtv.com/songs/60111667.mkv +陈奕迅-Sleep Alone,http://em.21dtv.com/songs/60116336.mkv +王诗安-Skinny Love,http://em.21dtv.com/songs/60098653.mkv +羽泉+于魁智-三家店 奔跑,http://em.21dtv.com/songs/60110464.mkv +少女标本-Simple Girl,http://em.21dtv.com/songs/60119450.mkv +少女标本-Simple Girl,http://em.21dtv.com/songs/60117687.mkv +Yellow Claw+Rochelle-Shotgun,http://em.21dtv.com/songs/60125056.mkv +Zico-Shes a Baby,http://em.21dtv.com/songs/60134828.mkv +杨子杰-She Is Gone,http://em.21dtv.com/songs/60130457.mkv +Westlife-Shadows,http://em.21dtv.com/songs/60101839.mkv +林峰-是否我忘记了爱情的味道,http://em.21dtv.com/songs/60092866.mkv +AKB48-Set me free,http://em.21dtv.com/songs/60123429.mkv +黄家强-时代序曲,http://em.21dtv.com/songs/60115546.mkv +南宫嘉骏-谁的新欢不是别人的旧爱,http://em.21dtv.com/songs/60085737.mkv +刘锦泽-十点半的地铁,http://em.21dtv.com/songs/60119317.mkv +何龙雨-谁才是你今生最爱的人语,http://em.21dtv.com/songs/60087325.mkv +袁洁琼-是不是不爱了就应该放手,http://em.21dtv.com/songs/60085722.mkv +华帝-舍不得就别放开手(演),http://em.21dtv.com/songs/60093833.mkv +王祖蓝-说不出的快活,http://em.21dtv.com/songs/60124271.mkv +丁当-Say Forever,http://em.21dtv.com/songs/60117521.mkv +贺一航-是爱情老了还是我们老了,http://em.21dtv.com/songs/60116254.mkv +任军太-任性不是哥的错,http://em.21dtv.com/songs/60118317.mkv +关泽楠-让我做你一生一世的红颜,http://em.21dtv.com/songs/60101923.mkv +Octopuss-Run Run Run,http://em.21dtv.com/songs/60134778.mkv +Kelly Clarkson+John Legend-Run Run Run,http://em.21dtv.com/songs/60109833.mkv +钟明秋-人生何处不相逢,http://em.21dtv.com/songs/60108092.mkv +Travie McCoy+Jason Mraz-Rough Water,http://em.21dtv.com/songs/60110801.mkv +Dnce+Hailee Steinfeld-Rock Bottom,http://em.21dtv.com/songs/60124861.mkv +Hailee Steinfeld-Rock Bottom,http://em.21dtv.com/songs/60122381.mkv +周柏豪+连诗雅-日落日出,http://em.21dtv.com/songs/60110090.mkv +Helly Luv-Risk It All,http://em.21dtv.com/songs/60124890.mkv +Girl's Day-Ring My Bel,http://em.21dtv.com/songs/60112437.mkv +方大同-Ring Finger,http://em.21dtv.com/songs/60129171.mkv +陈珊妮-如果有一件事是最重要的,http://em.21dtv.com/songs/60088903.mkv +原子霏+胡译仁-如果有两个你,http://em.21dtv.com/songs/60126673.mkv +张鹏-如果下辈子还做你的情人,http://em.21dtv.com/songs/60085658.mkv +团风依依-如果我们两个能够在一起,http://em.21dtv.com/songs/60103173.mkv +大庆小芳-如果你要嫁人你嫁给我吧,http://em.21dtv.com/songs/60110958.mkv +大庆小芳-如果你要嫁人你嫁给我吧,http://em.21dtv.com/songs/60097978.mkv +张政-如果你是我眼中的一滴泪,http://em.21dtv.com/songs/60091101.mkv +栾凯-如果你曾经爱过一名军人,http://em.21dtv.com/songs/60119716.mkv +乐飞扬-如果你不爱我请让我单飞,http://em.21dtv.com/songs/60099727.mkv +唐薇+樊少华-如果你爱我像我爱你那样,http://em.21dtv.com/songs/60133519.mkv +六哲-如果没有他你还会爱我吗,http://em.21dtv.com/songs/60087353.mkv +郭富城-如果今生不能和你在一起,http://em.21dtv.com/songs/60088783.mkv +陈咏-如果苍天再给我一个轮回,http://em.21dtv.com/songs/60094740.mkv +单紫宁-如果爱上别人早点告诉我,http://em.21dtv.com/songs/60089704.mkv +雨哲-如果爱情可以不再那么假,http://em.21dtv.com/songs/60108140.mkv +张北北-如果爱你注定是我受的罪,http://em.21dtv.com/songs/60129072.mkv +雷龙-如果爱可以重来,http://em.21dtv.com/songs/60120122.mkv +Jennifer Hudson-Remember Me,http://em.21dtv.com/songs/60134708.mkv +Eric Church-Record Year,http://em.21dtv.com/songs/60124872.mkv +李真-阮的Happy Day,http://em.21dtv.com/songs/60106952.mkv +羽泉-让暴风雨来得更猛烈些吧,http://em.21dtv.com/songs/60088486.mkv +铁热沁夫+曹菲儿-让爱凝固在你离开的瞬间,http://em.21dtv.com/songs/60088818.mkv +Phillip Phillips-Raging Fire,http://em.21dtv.com/songs/60101814.mkv +关诗敏-晴天,http://em.21dtv.com/songs/60113273.mkv +金久哲-情是自己亲手种下的莲花,http://em.21dtv.com/songs/60122186.mkv +蔡琴-恰似你的温柔[演唱会],http://em.21dtv.com/songs/60107989.mkv +林木-其实你不是我想要的温柔,http://em.21dtv.com/songs/60088111.mkv +徐熙媛-全世界没有人比我更爱你,http://em.21dtv.com/songs/60091201.mkv +FUYING+SAM-全世界都以为我们在一起,http://em.21dtv.com/songs/60097981.mkv +王锦嫣-千年只为遇见你,http://em.21dtv.com/songs/60114698.mkv +罗宁娜-青粼粼的水来蓝莹莹的天,http://em.21dtv.com/songs/60088431.mkv +岚-青空の下、キミのとなり,http://em.21dtv.com/songs/60111833.mkv +门口塘-情歌中的故事情歌中的你,http://em.21dtv.com/songs/60114168.mkv +胡鸿钧+徐子珊-棋逢敌手,http://em.21dtv.com/songs/60126088.mkv +光良-请不要在别人的肩上哭泣,http://em.21dtv.com/songs/60132216.mkv +徐誉滕-亲爱的我有了1080P,http://em.21dtv.com/songs/60093884.mkv +六仔-亲爱的老婆我是真的爱你,http://em.21dtv.com/songs/60098120.mkv +热们泽-亲爱的和你一起去日喀则,http://em.21dtv.com/songs/60130558.mkv +陈雅森+贺一航-亲爱的爸爸妈妈我想你了,http://em.21dtv.com/songs/60118175.mkv +沐子希-朋友陪你醉(DJ加快),http://em.21dtv.com/songs/50000175.mkv +丁当-飘洋过海来看你,http://em.21dtv.com/songs/60105539.mkv +洛天依+言和-普通disco,http://em.21dtv.com/songs/60112067.mkv +覃浩-怕受伤的男人,http://em.21dtv.com/songs/60129602.mkv +Maggie Lindemann-Pretty Girl,http://em.21dtv.com/songs/60133240.mkv +Calvin Harris+Haim-Pray To God,http://em.21dtv.com/songs/60109801.mkv +陈坤-Power To Go,http://em.21dtv.com/songs/60121068.mkv +Ellis Adventure feat Alexander Lausch-Perfect Day,http://em.21dtv.com/songs/60123465.mkv +阿译(A译)-PARTY QUEEN,http://em.21dtv.com/songs/60107304.mkv +Kassy+Eluphant-Ooh Ooh Ooh,http://em.21dtv.com/songs/60116460.mkv +Far East Movement+曲婉婷-On The Edge,http://em.21dtv.com/songs/60129930.mkv +Tina Arena-Only Lonely,http://em.21dtv.com/songs/60125027.mkv +Babylon+San E-Ocean Drive,http://em.21dtv.com/songs/60134645.mkv +Duke Dumont-Ocean Drive,http://em.21dtv.com/songs/60121241.mkv +侯梦亮-你在最美的时候遇见了谁,http://em.21dtv.com/songs/60117557.mkv +邓超+董子健+高华阳+韩寒-男子汉宣言之乘风破浪歌,http://em.21dtv.com/songs/60132975.mkv +群星-男子汉誓言之乘风破浪歌,http://em.21dtv.com/songs/60132799.mkv +许志安-你要的爱_再见露丝玛莉,http://em.21dtv.com/songs/60088643.mkv +TimeZ-那些我们一起恋过的青春,http://em.21dtv.com/songs/60113198.mkv +LINKIN PARK-NUMB,http://em.21dtv.com/songs/60110776.mkv +段俊宝-你是我这一辈子的好兄弟,http://em.21dtv.com/songs/60083529.mkv +乐凡-你是我心里的宝,http://em.21dtv.com/songs/60114377.mkv +王英俊-你是我生命中最爱的女人,http://em.21dtv.com/songs/60129418.mkv +文心-你伤我伤的太深,http://em.21dtv.com/songs/60113539.mkv +张磊-你是我今生抹不掉的回忆,http://em.21dtv.com/songs/60085532.mkv +囚鸟-你是我的老公我是你的妻,http://em.21dtv.com/songs/60108404.mkv +囚鸟-你是我的老公我是你的妻,http://em.21dtv.com/songs/60107617.mkv +胡杰夕-你是世界上最狠心的女人,http://em.21dtv.com/songs/60105310.mkv +王洪恩-女人的苦男人是否会清楚,http://em.21dtv.com/songs/60132735.mkv +金南玲-逆流成河,http://em.21dtv.com/songs/60113020.mkv +孙楠+戴玉强-你快回来 今夜无人入眠,http://em.21dtv.com/songs/60110143.mkv +李国辉-你就是让我爱到心疼的人,http://em.21dtv.com/songs/60110272.mkv +胡杰夕-你分手不给我一个理由吗,http://em.21dtv.com/songs/60086147.mkv +DEMI LOVATO-Neon Lights,http://em.21dtv.com/songs/60094371.mkv +文杰-你的眼泪是你说不出的苦,http://em.21dtv.com/songs/60100069.mkv +柴强-你的温柔我hold不住,http://em.21dtv.com/songs/60116061.mkv +赵纲-你的世界有没有我都一样,http://em.21dtv.com/songs/60123201.mkv +刘文涛-你的平安是我最大的安慰,http://em.21dtv.com/songs/60121442.mkv +张震岳-难道你闲我伤的还不够深,http://em.21dtv.com/songs/60091163.mkv +江珊-你的激清只有一点点虚假,http://em.21dtv.com/songs/60089397.mkv +李政飞-那哒哒也不如咱山沟沟好,http://em.21dtv.com/songs/60110275.mkv +郭美美-你不是我一定要去的地方,http://em.21dtv.com/songs/60134334.mkv +曲婉婷-没有什么不同[演唱会],http://em.21dtv.com/songs/60104177.mkv +Jace-My Serenade,http://em.21dtv.com/songs/60103785.mkv +邓小龙-没有你陪伴我真的好孤单,http://em.21dtv.com/songs/60132970.mkv +冷漠-没有你陪伴我真的好孤单,http://em.21dtv.com/songs/60125165.mkv +Andrea Begley-My Immortal(现场版),http://em.21dtv.com/songs/60098009.mkv +陈粒-My Dear Art,http://em.21dtv.com/songs/60135937.mkv +滨崎步-My All[演唱会],http://em.21dtv.com/songs/60133956.mkv +雪村-梅我们是否该要个孩子了,http://em.21dtv.com/songs/60088932.mkv +刘惜君-莫忘空城,http://em.21dtv.com/songs/60115022.mkv +陈惠婷-明日我将以我的方式狂欢,http://em.21dtv.com/songs/60126385.mkv +Ludacris+Pharrell-Money Maker,http://em.21dtv.com/songs/60124936.mkv +微胖女神-Modern Girl,http://em.21dtv.com/songs/60125585.mkv +超音界-蒙娜丽莎,http://em.21dtv.com/songs/60127447.mkv +关涛-妈妈我不想再唱悲伤的歌,http://em.21dtv.com/songs/60111701.mkv +杨志广-妈妈 请您今晚睡个好觉,http://em.21dtv.com/songs/60125744.mkv +许亚童-慢慢慢慢忘记你,http://em.21dtv.com/songs/60112958.mkv +黄家强+雷有辉-马路天使+失恋+冷雨夜,http://em.21dtv.com/songs/60093533.mkv +陈翔-没了你 我把哭当成了笑,http://em.21dtv.com/songs/60094750.mkv +曾昭玮-迷路了问问道,http://em.21dtv.com/songs/60118646.mkv +林奕匡-Missing You,http://em.21dtv.com/songs/60132602.mkv +MINI SISTER-MINI SISTER,http://em.21dtv.com/songs/60126542.mkv +Dustin Lynch-Mind Reader,http://em.21dtv.com/songs/60121242.mkv +FERGIE-M.I.L.F. $.,http://em.21dtv.com/songs/60129931.mkv +魏新雨-每个人心中都有一片草原,http://em.21dtv.com/songs/60097979.mkv +平井坚-魔法って言っていいかな,http://em.21dtv.com/songs/60123888.mkv +老狼-模范情书,http://em.21dtv.com/songs/60117985.mkv +Luce Twinkle Wink-meteor bell,http://em.21dtv.com/songs/60133231.mkv +Juicy J Wiz Khalifa TM88-Medication,http://em.21dtv.com/songs/60129947.mkv +罗家宝-梦断香销四十年沈园题壁(戏曲),http://em.21dtv.com/songs/60093024.mkv +毛泽少-每次回头都看到你在微笑,http://em.21dtv.com/songs/60111216.mkv +李嘉琪-漫步,http://em.21dtv.com/songs/60113617.mkv +Jessie J-Masterpiece,http://em.21dtv.com/songs/60110771.mkv +Charlie Puth-Marvin Gaye,http://em.21dtv.com/songs/60114936.mkv +张靓颖-Make It Big,http://em.21dtv.com/songs/60119552.mkv +帅霖-留住你的人留不住你的心,http://em.21dtv.com/songs/60102176.mkv +马上又+那英-老有所依,http://em.21dtv.com/songs/60107361.mkv +潘建义-龙湾潭,http://em.21dtv.com/songs/60093852.mkv +李承铉+戚薇-LUCKY LUCKY,http://em.21dtv.com/songs/60125701.mkv +戚薇+李承铉-Lucky Lucky,http://em.21dtv.com/songs/60105920.mkv +王羽泽-老婆永远是对的,http://em.21dtv.com/songs/60107907.mkv +成云刚+王星星-老婆老婆你要乖,http://em.21dtv.com/songs/60118600.mkv +袁娅维-Love On Top,http://em.21dtv.com/songs/60132869.mkv +Goose house-LOVE LIFE,http://em.21dtv.com/songs/60119146.mkv +Infinite-Love Letter,http://em.21dtv.com/songs/60119150.mkv +SpeXial-Love Killah,http://em.21dtv.com/songs/60108247.mkv +赵奕欢-Love is You,http://em.21dtv.com/songs/60134262.mkv +Skull+Haha-Love Inside,http://em.21dtv.com/songs/60121307.mkv +吉克隽逸-Lotion Song,http://em.21dtv.com/songs/60118426.mkv +吉克隽逸-Lotion Song,http://em.21dtv.com/songs/60116623.mkv +CHARLES KELLEY-LONELY GIRL,http://em.21dtv.com/songs/60129903.mkv +Rock City+Adam Levine-Locked Away,http://em.21dtv.com/songs/60115626.mkv +符琼音-离开,是为了回来的理由,http://em.21dtv.com/songs/60126011.mkv +六哲-离开你不是我想要的结果,http://em.21dtv.com/songs/60099097.mkv +Corinne Bailey Rae-Like A Star,http://em.21dtv.com/songs/60109806.mkv +幂雅-Like A Fool,http://em.21dtv.com/songs/60131382.mkv +逃跑计划-Like A Bird,http://em.21dtv.com/songs/60123219.mkv +BIRDY-Light Me Up,http://em.21dtv.com/songs/60093913.mkv +大庆小芳-老公赚钱老婆花,http://em.21dtv.com/songs/60107634.mkv +田园-两个人的森林,http://em.21dtv.com/songs/60129430.mkv +井柏然+杨烁+白敬亭-Let's Fight,http://em.21dtv.com/songs/60126586.mkv +Thunder-Leona Lewis,http://em.21dtv.com/songs/60122436.mkv +崔子格-路灯下的大女孩,http://em.21dtv.com/songs/60105789.mkv +罗文锦-老板我要涨工资,http://em.21dtv.com/songs/60112886.mkv +慢摇舞曲-罗百吉&Britney Spears-DJ!放那首歌,http://em.21dtv.com/songs/30000603.mkv +The Vamps-Last Tnight,http://em.21dtv.com/songs/60125020.mkv +冯建宇-狂想 Rhapsody,http://em.21dtv.com/songs/60131191.mkv +阿鲁阿卓-看山看水看四川,http://em.21dtv.com/songs/60105462.mkv +李荣浩-快让我在雪地上撒点儿野,http://em.21dtv.com/songs/60107799.mkv +Andrea Paci-Komsi Komsa,http://em.21dtv.com/songs/60114933.mkv +TWICE-KNOCK KNOCK,http://em.21dtv.com/songs/60132145.mkv +池昌旭-KISSING YOU,http://em.21dtv.com/songs/60131590.mkv +大鹏-恐高的鸟,http://em.21dtv.com/songs/60114468.mkv +卡拉OK-柯尔克孜人民歌唱毛主席(军旅),http://em.21dtv.com/songs/60089708.mkv +FS-可不可以你也刚好喜欢我,http://em.21dtv.com/songs/60108222.mkv +FS-可不可以你也刚好喜欢我,http://em.21dtv.com/songs/60104676.mkv +FS(Fuying+Sam)-可不可以你也刚好喜欢我,http://em.21dtv.com/songs/60103777.mkv +龚柯允+Eternity-将一生交给你,http://em.21dtv.com/songs/60126509.mkv +TFBOYS-街舞少年,http://em.21dtv.com/songs/60108249.mkv +Popu Lady-Just Say It,http://em.21dtv.com/songs/60104713.mkv +鲸鱼岛乐队-Just Eat It,http://em.21dtv.com/songs/60108174.mkv +茅小勇-Just A Game,http://em.21dtv.com/songs/60102664.mkv +樊桐舟-今天你要嫁给我,http://em.21dtv.com/songs/60120681.mkv +秦腔-见嫂嫂她直哭得悲哀伤痛,http://em.21dtv.com/songs/60090103.mkv +王麟-就算全世界我都可以放弃,http://em.21dtv.com/songs/60114702.mkv +许云上-九三年的六月[第二版],http://em.21dtv.com/songs/60098763.mkv +江涛+乌兰托娅-九十九分的爱情,http://em.21dtv.com/songs/60105206.mkv +刘涛-假如爱有天意,http://em.21dtv.com/songs/60123683.mkv +Madonna-Joan Of Arc,http://em.21dtv.com/songs/60110778.mkv +小虎队-叫你一声My Love,http://em.21dtv.com/songs/60115112.mkv +刘涛-寂寞的恋人啊,http://em.21dtv.com/songs/60123684.mkv +乃木坂46-今、话したい谁かがいる,http://em.21dtv.com/songs/60116511.mkv +黄凯芹-绝对自我+我沾湿了的脸,http://em.21dtv.com/songs/60089031.mkv +DJ舞曲-酒吧热门慢摇舞曲精选1,http://em.21dtv.com/songs/50000191.mkv +大石昌良-君じゃなきゃダメみたい,http://em.21dtv.com/songs/60107636.mkv +2BiC-It's Summer,http://em.21dtv.com/songs/60118241.mkv +狮子合唱团-Its My Life,http://em.21dtv.com/songs/60132699.mkv +Celine Dion-I Surrender,http://em.21dtv.com/songs/60121228.mkv +ALEX HONG+许馨文-IN THE ZONE,http://em.21dtv.com/songs/60126510.mkv +Dev-In My Trunk,http://em.21dtv.com/songs/60098017.mkv +Kiesza Giant-In My Heart,http://em.21dtv.com/songs/60124926.mkv +刘在石+朴振英-I'm So Sexy,http://em.21dtv.com/songs/60117578.mkv +Kygo+James Vincent McMorrow-I'm In Love,http://em.21dtv.com/songs/60123496.mkv +Jean Roch+Flo Rida+Kat Deluna-I M Alright,http://em.21dtv.com/songs/60124907.mkv +Sistar-I Like That,http://em.21dtv.com/songs/60122416.mkv +曾翠如-I Just Want,http://em.21dtv.com/songs/60114580.mkv +王诗安-I Dont Know,http://em.21dtv.com/songs/60130606.mkv +汪苏泷-I Believe 2,http://em.21dtv.com/songs/60121857.mkv +林振轩-I am a king,http://em.21dtv.com/songs/60131549.mkv +儿歌-杭州姑娘+掀起你盖头来,http://em.21dtv.com/songs/60090642.mkv +白云龙-还有谁能陪我唱这首老歌,http://em.21dtv.com/songs/60125975.mkv +巴图-会有那么一天,http://em.21dtv.com/songs/60129036.mkv +孙恭庆-回忆里的你一切都那么好,http://em.21dtv.com/songs/60110136.mkv +周蕙-好想好好爱你,http://em.21dtv.com/songs/60116663.mkv +陈兴瑜-好想对你说+爱只是传说(DJ),http://em.21dtv.com/songs/60090289.mkv +魏如萱-还是要相信爱情啊混蛋们,http://em.21dtv.com/songs/60111541.mkv +邓紫棋-红蔷薇白玫瑰,http://em.21dtv.com/songs/60124544.mkv +Mc张凯-花千骨她泪三尺,http://em.21dtv.com/songs/60126535.mkv +旺福大乐团-好朋友应该做的番石榴事,http://em.21dtv.com/songs/60089323.mkv +张伦硕-Honey Honey,http://em.21dtv.com/songs/60129067.mkv +李晖-火辣辣的军营火辣辣的兵,http://em.21dtv.com/songs/60086618.mkv +庄秋玉-海口 我梦想起飞的地方,http://em.21dtv.com/songs/60126849.mkv +刘德华-回家的路,http://em.21dtv.com/songs/60113296.mkv +LOLO-HIT AND RUN,http://em.21dtv.com/songs/60129962.mkv +王岩-红火火的中国甜美美的家,http://em.21dtv.com/songs/60130582.mkv +合唱-黄河边上两个老乡的对唱,http://em.21dtv.com/songs/60089725.mkv +AVICII-Hey Brother,http://em.21dtv.com/songs/60093912.mkv +华晨宇-Here We Are,http://em.21dtv.com/songs/60126665.mkv +华晨宇-Here We Are,http://em.21dtv.com/songs/60123709.mkv +黄子韬+Wiz Khalifa-Hello Hello,http://em.21dtv.com/songs/60127617.mkv +MVP-HEAR ME OUT,http://em.21dtv.com/songs/60133252.mkv +群星-花店+一个人有一个梦想,http://em.21dtv.com/songs/60093047.mkv +雨露-红尘路上拥有你,http://em.21dtv.com/songs/60122255.mkv +古巨基-何必打扰,http://em.21dtv.com/songs/60122554.mkv +YUKI LOVEY-坏碑唇雷克雅未克的情书,http://em.21dtv.com/songs/60083070.mkv +自由发挥-Happy Ma Ma,http://em.21dtv.com/songs/60116213.mkv +马磊-给我个理由就好,http://em.21dtv.com/songs/60114900.mkv +Beyonce-Grown Woman,http://em.21dtv.com/songs/60111583.mkv +Lorde-Green Light,http://em.21dtv.com/songs/60133228.mkv +AKB48-GREEN FLASH,http://em.21dtv.com/songs/60112417.mkv +周旖喆-Green Dream,http://em.21dtv.com/songs/60094854.mkv +雷佳-国旗升起,http://em.21dtv.com/songs/60102911.mkv +2 Chainz+Lil Wayne-Gotta Lotta,http://em.21dtv.com/songs/60134624.mkv +Jussie Smollett+Empire Cast-Good Enough,http://em.21dtv.com/songs/60115603.mkv +生物股长-Golden Girl,http://em.21dtv.com/songs/60111304.mkv +N Sonic-Going Going,http://em.21dtv.com/songs/60111637.mkv +刘子毅-姑娘嫁给我吧[DJ版],http://em.21dtv.com/songs/60103109.mkv +彭青-GLOWING SUN,http://em.21dtv.com/songs/60107734.mkv +屈慧-归来吧我们美丽的钓鱼岛,http://em.21dtv.com/songs/60082983.mkv +Shiggy Jr.-GHOST PARTY,http://em.21dtv.com/songs/60115631.mkv +过江龙+修美娜-哥哥赚钱妹妹花,http://em.21dtv.com/songs/60109640.mkv +路童+珍美儿-哥哥哥哥我爱你,http://em.21dtv.com/songs/60114110.mkv +马丽-感恩你爱我 记得我爱你,http://em.21dtv.com/songs/60109751.mkv +蒙面哥-孤单中秋,http://em.21dtv.com/songs/60124434.mkv +周小明+尹兔-歌词里的那个谁,http://em.21dtv.com/songs/60115757.mkv +许茹芸-反正大家都爱过谁也不欠,http://em.21dtv.com/songs/60126189.mkv +包伟铭-Fun Fun Fun,http://em.21dtv.com/songs/60123703.mkv +Half Moon Run-Full Circle,http://em.21dtv.com/songs/60124887.mkv +温岚-Fly With Me,http://em.21dtv.com/songs/60112083.mkv +温岚-Fly With Me,http://em.21dtv.com/songs/60111244.mkv +袁咏琳-Fly Tonight,http://em.21dtv.com/songs/60107992.mkv +王思佳-Fly Fly Fly,http://em.21dtv.com/songs/60107902.mkv +Gavin Degraw-Fire,http://em.21dtv.com/songs/60123475.mkv +庄心妍-放过自己,http://em.21dtv.com/songs/60123891.mkv +林忆莲-分分钟需要你,http://em.21dtv.com/songs/60125776.mkv +陈小云+DJ铁匠-风飞沙(DJ版Mix),http://em.21dtv.com/songs/50000217.mkv +Christina Grimmie-Feelin'Good,http://em.21dtv.com/songs/60103756.mkv +郭修彧+葛仲珊-Extrication,http://em.21dtv.com/songs/60131887.mkv +モーニング娘。-ENDLESS SKY,http://em.21dtv.com/songs/60119216.mkv +外国组合-2015维多利亚的秘密,http://em.21dtv.com/songs/60116679.mkv +何鹏+张靓颖-饿狼传说(DJ加快版),http://em.21dtv.com/songs/50000197.mkv +张希-刀子嘴地雷心,http://em.21dtv.com/songs/60118557.mkv +徐佳莹-大雨将至,http://em.21dtv.com/songs/60118578.mkv +方圆-地狱就是天堂,http://em.21dtv.com/songs/60123997.mkv +网络歌手-第一次亲密接触之板砖脸,http://em.21dtv.com/songs/60091824.mkv +张艳君-窦王岭 我梦中的欢乐谷,http://em.21dtv.com/songs/60129118.mkv +徐玉珊-Dream Lover,http://em.21dtv.com/songs/60133718.mkv +I.O.I-Dream Girls,http://em.21dtv.com/songs/60134700.mkv +April-Dream Candy,http://em.21dtv.com/songs/60122337.mkv +张铠麟-DOUBLE FACE,http://em.21dtv.com/songs/60102244.mkv +范逸臣-Don't Wanna,http://em.21dtv.com/songs/60098718.mkv +K.A.R.D-Dont Recall,http://em.21dtv.com/songs/60132090.mkv +Pia Mia+Chris Brown+Tyga-Do It Again,http://em.21dtv.com/songs/60113182.mkv +卓依婷-等你在老地方,http://em.21dtv.com/songs/60121463.mkv +李念-待你君临天下,http://em.21dtv.com/songs/60129229.mkv +洪辰-等你的时候 我像个傻瓜,http://em.21dtv.com/songs/60109495.mkv +La PomPon-达命のルーレット廻して,http://em.21dtv.com/songs/60134730.mkv +La PomPon-达命のルーレット廻して,http://em.21dtv.com/songs/60121278.mkv +台湾爽-Disco Night,http://em.21dtv.com/songs/60123724.mkv +Tata Young-Dhoom Dhoom,http://em.21dtv.com/songs/60122430.mkv +Tori Kelly-Dear No One,http://em.21dtv.com/songs/60123549.mkv +古巨基-Dear Leslie,http://em.21dtv.com/songs/60134970.mkv +古巨基-Dear Leslie,http://em.21dtv.com/songs/60126677.mkv +平安-Dear Friend,http://em.21dtv.com/songs/60118535.mkv +齐秦-Dear Friend,http://em.21dtv.com/songs/60118227.mkv +长宇-Dear Friend,http://em.21dtv.com/songs/60114843.mkv +黄小琥-Dear Friend,http://em.21dtv.com/songs/60094780.mkv +DJViper-帝都(DJ版 Mix),http://em.21dtv.com/songs/50000134.mkv +昏鸦-打包我的心当午餐吧宝贝,http://em.21dtv.com/songs/60082769.mkv +李光洁-对不起,谢谢,http://em.21dtv.com/songs/60122837.mkv +柏敏杰-打败你的不是天真是无邪,http://em.21dtv.com/songs/60082768.mkv +吴莫愁-得不到的爱情,http://em.21dtv.com/songs/60125303.mkv +大宝-大宝大宝,http://em.21dtv.com/songs/60110957.mkv +许阁+Simon D-DAY N NIGHT,http://em.21dtv.com/songs/60106275.mkv +大王叫我来巡山-当爱已成往事,http://em.21dtv.com/songs/60128941.mkv +木尹儿-唱一支小情歌给前男友听,http://em.21dtv.com/songs/60111951.mkv +音乐走廊-草原上的姑娘敖包来相会,http://em.21dtv.com/songs/60109738.mkv +韩宝仪-痴心小妹,http://em.21dtv.com/songs/60122264.mkv +七郎-出外的囝仔唱着故乡的月,http://em.21dtv.com/songs/60126563.mkv +NC.A-Coming Soon,http://em.21dtv.com/songs/60108235.mkv +Sigma+Rita Ora-Coming Home,http://em.21dtv.com/songs/60132130.mkv +Sigma+Rita Ora-Coming Home,http://em.21dtv.com/songs/60117486.mkv +孙嘉敏-从明天起做一个幸福的人,http://em.21dtv.com/songs/60090889.mkv +赵咏华-聪明煳涂心+最浪漫的事,http://em.21dtv.com/songs/60097980.mkv +王云飞-城里套路深 我想回农村,http://em.21dtv.com/songs/60128214.mkv +杭天琪-唱脸谱+前门相思大碗茶,http://em.21dtv.com/songs/60133861.mkv +何君妮-除了你没有人能让我哭泣,http://em.21dtv.com/songs/60087302.mkv +曹越-曾经最爱的姑娘,http://em.21dtv.com/songs/60105117.mkv +豫剧-从今后再莫说你治家有方,http://em.21dtv.com/songs/60134537.mkv +SNH48-憧憬的POP STAR,http://em.21dtv.com/songs/60107438.mkv +阿权-吃喝嫖赌抽(DJ龙飞),http://em.21dtv.com/songs/50000216.mkv +D.Holic-Chewy Chewy,http://em.21dtv.com/songs/60119119.mkv +Omi-Cheerleader,http://em.21dtv.com/songs/60110785.mkv +张惠雅-CHEEKY GIRL,http://em.21dtv.com/songs/60123921.mkv +覃浩-错过缘分错过爱2015,http://em.21dtv.com/songs/60117215.mkv +涛子-唱不完的情歌流不完的泪,http://em.21dtv.com/songs/60114661.mkv +正歌-别在我最痛的时候说分手,http://em.21dtv.com/songs/60094186.mkv +晓亮-别再为了不爱你的人流泪,http://em.21dtv.com/songs/60111939.mkv +望海高歌-别再让我一个人孤单的走,http://em.21dtv.com/songs/60132511.mkv +飞鹰(邢国英)-别在你哭泣时背着我流泪,http://em.21dtv.com/songs/60108155.mkv +广智-不再回头,http://em.21dtv.com/songs/60121634.mkv +Raye+Jonas Blue-By Your Sid,http://em.21dtv.com/songs/60134788.mkv +杨军-别用我的爱填补你的寂寞,http://em.21dtv.com/songs/60116934.mkv +古巨基-不要说你不知道,http://em.21dtv.com/songs/60113318.mkv +王璐-巴彦淖尔一个神奇的地方,http://em.21dtv.com/songs/60111280.mkv +杜疆-别用你的清纯刺痛我的心,http://em.21dtv.com/songs/60120648.mkv +王霏霏-不要急 Fantasy,http://em.21dtv.com/songs/60125960.mkv +崔云飞-不要等到失去才懂得珍惜,http://em.21dtv.com/songs/60121612.mkv +iKON-奔向未来日子,http://em.21dtv.com/songs/60123481.mkv +周蕙-不想让你知道,http://em.21dtv.com/songs/60116662.mkv +尚雯婕-Bulletproof,http://em.21dtv.com/songs/60114509.mkv +李春波+甘萍-不是所有的相逢都能守候,http://em.21dtv.com/songs/60089339.mkv +张碧晨-白芍花开,http://em.21dtv.com/songs/60110206.mkv +刘乙骏-别让友谊的小船说翻就翻,http://em.21dtv.com/songs/60123667.mkv +VAV-Brotherhood,http://em.21dtv.com/songs/60122442.mkv +宫崎歩-Brave heart,http://em.21dtv.com/songs/60121591.mkv +余微雪-BOOTY MUSIC,http://em.21dtv.com/songs/60128783.mkv +马健涛-被你迷的快失忆,http://em.21dtv.com/songs/60122276.mkv +Ed Sheeran-Bloodstream,http://em.21dtv.com/songs/60109088.mkv +Twinko-Bling Bling,http://em.21dtv.com/songs/60106560.mkv +谢雷-碧兰村的姑娘梨花痴情花,http://em.21dtv.com/songs/60089478.mkv +Iggy Azalea+Rita Ora-Black Widow,http://em.21dtv.com/songs/60103784.mkv +Little Mix-Black Magic,http://em.21dtv.com/songs/60112445.mkv +郭采洁-Bird n'Tree,http://em.21dtv.com/songs/60118105.mkv +陈红松+侯健-白搁这儿乱啦,http://em.21dtv.com/songs/60104572.mkv +宋宇宁-别给我打电话,http://em.21dtv.com/songs/60119437.mkv +赵鑫-不过是你不爱我,http://em.21dtv.com/songs/60124529.mkv +卓文萱-Be Yourself,http://em.21dtv.com/songs/60109204.mkv +Foxes-Better Love,http://em.21dtv.com/songs/60117452.mkv +F.I.R-Better Life,http://em.21dtv.com/songs/60093924.mkv +Young Thug-Best Friend,http://em.21dtv.com/songs/60119213.mkv +UNIQ-BEST FRIEND,http://em.21dtv.com/songs/60115644.mkv +UmeBand-Be My Lover,http://em.21dtv.com/songs/60125035.mkv +UME Band-Be My Lover,http://em.21dtv.com/songs/60117508.mkv +3 Doors Dow-BeLike That,http://em.21dtv.com/songs/60104646.mkv +Nicki Minaj-Bed Of Lies,http://em.21dtv.com/songs/60109858.mkv +Echo(李昶俊)-Beatbox 的那个,http://em.21dtv.com/songs/60133196.mkv +ひめキュンフルーツ缶-あの坂道を驱け上がれ!,http://em.21dtv.com/songs/60117517.mkv +邓紫棋-不存在的存在,http://em.21dtv.com/songs/60112292.mkv +是妈妈先追的他,http://em.21dtv.com/songs/60132675.mkv +威仔+阿夏-不爱又何必纠缠,http://em.21dtv.com/songs/60102103.mkv +周笔畅-别爱我像爱个朋友+解脱,http://em.21dtv.com/songs/60096059.mkv +六哲-被爱伤过的心还可以爱谁,http://em.21dtv.com/songs/60121394.mkv +左左右右-Bar Bar Bar,http://em.21dtv.com/songs/60104093.mkv +李玟-BAD_ROMANCE,http://em.21dtv.com/songs/60120636.mkv +LADY GAGA-BAD ROMANCE,http://em.21dtv.com/songs/60114346.mkv +马涛-Bad Romance,http://em.21dtv.com/songs/60104606.mkv +余枫-Back at one,http://em.21dtv.com/songs/60103884.mkv +FUYING+SAM-爱一个人不一定要在一起,http://em.21dtv.com/songs/60123472.mkv +宋宇宁-哎呀 跌倒了,http://em.21dtv.com/songs/60118520.mkv +周笔畅-AUTUMN MOON,http://em.21dtv.com/songs/60123770.mkv +望海高歌+雨柔-爱是痛苦的迷离,http://em.21dtv.com/songs/60125663.mkv +成云刚-爱是痛苦的迷离,http://em.21dtv.com/songs/60125594.mkv +打扰一下-爱是怀疑,http://em.21dtv.com/songs/60111929.mkv +孙露-爱上不该爱的人,http://em.21dtv.com/songs/60105762.mkv +刘美麟-爱情三十六计,http://em.21dtv.com/songs/60123691.mkv +蒋寅-爱情是个无人知道的问题,http://em.21dtv.com/songs/60104406.mkv +APRIL-April Story,http://em.21dtv.com/songs/60131033.mkv +南风-爱你一生不后悔,http://em.21dtv.com/songs/60103135.mkv +乐晴+祁隆-爱你我幸福的哭,http://em.21dtv.com/songs/60120285.mkv +Maroon 5-Animals,http://em.21dtv.com/songs/60109101.mkv +LF兄弟-Angela大baby,http://em.21dtv.com/songs/60111626.mkv +时杰-爱你不是我的罪,http://em.21dtv.com/songs/60118622.mkv +温岚+吉杰-阿里山的姑娘+康定情歌,http://em.21dtv.com/songs/60094985.mkv +月老+蓝月亮-阿哥阿妹不分手,http://em.21dtv.com/songs/60111950.mkv +乔嘉-爱的越真伤越深2013,http://em.21dtv.com/songs/60101873.mkv +刘馨蔚-爱车爱房没有错,http://em.21dtv.com/songs/60118399.mkv +小嶋阳菜-気づかれないように…,http://em.21dtv.com/songs/60133595.mkv +Unlimited Tone-うたたねサンシャイン,http://em.21dtv.com/songs/60122441.mkv +AKB48-さよならサーフボード,http://em.21dtv.com/songs/60120186.mkv +乃木坂46-せっかちなかたつむり,http://em.21dtv.com/songs/60119233.mkv +茅原实里-ありがとう、だいすき,http://em.21dtv.com/songs/60114009.mkv +きゃりーぱみゅぱみゅ-もったいないとらんど,http://em.21dtv.com/songs/60098057.mkv +KARA-エレクトリックボーイ,http://em.21dtv.com/songs/60074222.mkv +乙女新党-サクラカウントダウン,http://em.21dtv.com/songs/60105554.mkv +哈哈一笑很倾城-站在高岗上,http://em.21dtv.com/songs/60128915.mkv +阿权-最真的朋友,http://em.21dtv.com/songs/60129713.mkv +何人-总有一首歌我能打动你,http://em.21dtv.com/songs/60111689.mkv +冷漠-总有一首歌让你想起我,http://em.21dtv.com/songs/60101933.mkv +虹谷乐团-这一夜你还会想起我吗,http://em.21dtv.com/songs/60118895.mkv +吴生全-这一生醉倒在你的梦中,http://em.21dtv.com/songs/60086239.mkv +秋裤大叔-只要你好好的我无所谓,http://em.21dtv.com/songs/60108754.mkv +赵小兵-只要你好好的我无所谓,http://em.21dtv.com/songs/60099509.mkv +雷婷-找一个可以喝醉的理由,http://em.21dtv.com/songs/60087109.mkv +长春虫子-找一个爱我的人在一起,http://em.21dtv.com/songs/60084530.mkv +邱比-整夜大雨后,http://em.21dtv.com/songs/60120016.mkv +孙艺琪-最远的你是我最近的爱,http://em.21dtv.com/songs/60131336.mkv +孙艺琪-最远的你是我最近的爱,http://em.21dtv.com/songs/60128968.mkv +阿斯根+完玛三智-最远的你是我最近的爱,http://em.21dtv.com/songs/60122213.mkv +童安格-最远的你是我最近的爱,http://em.21dtv.com/songs/60116185.mkv +Frank秋枫-最远的你是我最近的爱,http://em.21dtv.com/songs/60103774.mkv +大哲-最远的你是我最近的爱,http://em.21dtv.com/songs/60084655.mkv +史俊鹏-最远的你是我最近的爱,http://em.21dtv.com/songs/60096208.mkv +刘建国-战友啊你们如今在何方,http://em.21dtv.com/songs/60089163.mkv +顾凯-珍惜生命(请勿堕胎),http://em.21dtv.com/songs/60080532.mkv +刘美麟-最炫民族风,http://em.21dtv.com/songs/60126657.mkv +凤凰传奇+李明霖+李艳恰+刘洋+董雪一家-最炫民族风,http://em.21dtv.com/songs/60125170.mkv +成铭-在心里为你划上一个圈,http://em.21dtv.com/songs/60086211.mkv +小老头-在我心里永远都祝福你,http://em.21dtv.com/songs/60094882.mkv +成铭-只为情到深处人孤独吗,http://em.21dtv.com/songs/60086251.mkv +清清儿-在我离开的最后一眼里,http://em.21dtv.com/songs/60111243.mkv +DJ-中文DJHI曲,http://em.21dtv.com/songs/30000609.mkv +NMB48-サヨナラ 踵を踏む人,http://em.21dtv.com/songs/60120231.mkv +孙楠+九妹-至少还有你,http://em.21dtv.com/songs/60125383.mkv +戏曲-再世红梅记之闹府装疯,http://em.21dtv.com/songs/60092725.mkv +毛泽少-只能12点以后听的歌,http://em.21dtv.com/songs/60127151.mkv +徐宁-怎能忘记曾经深爱的你,http://em.21dtv.com/songs/60091191.mkv +吴歌-在你的耳边轻轻唱首歌,http://em.21dtv.com/songs/60120406.mkv +贾满赏-在你的窗外跌落我的泪,http://em.21dtv.com/songs/60087102.mkv +阿权-咱们中国人,http://em.21dtv.com/songs/60129711.mkv +罗凯楠-咱们屯里的人,http://em.21dtv.com/songs/60116191.mkv +李政飞-这么好的妹子见不上面,http://em.21dtv.com/songs/60111983.mkv +节奏部落-最美 彩虹,http://em.21dtv.com/songs/60129522.mkv +欢子-再见再也不见,http://em.21dtv.com/songs/60121842.mkv +秦海璐-再见萤火虫,http://em.21dtv.com/songs/60123057.mkv +网络歌手-再见了我曾经最爱的人,http://em.21dtv.com/songs/60087097.mkv +九江天空-再见了我曾经最爱的人,http://em.21dtv.com/songs/60086203.mkv +肖雨蒙-再见了热泪盈眶的青春,http://em.21dtv.com/songs/60108817.mkv +郭静-最精彩的艳遇,http://em.21dtv.com/songs/60103633.mkv +区密-总会有一个人,http://em.21dtv.com/songs/60105661.mkv +阿鲁阿卓+陈键锋-最坏时候遇上最好的你,http://em.21dtv.com/songs/60096529.mkv +常思思-祖国最美的歌,http://em.21dtv.com/songs/60111837.mkv +黄绍成-中国中国一点都不能少,http://em.21dtv.com/songs/60124752.mkv +孙晓磊-最贵是健康,http://em.21dtv.com/songs/60128963.mkv +李书伟-中国石化员工守则之歌,http://em.21dtv.com/songs/60097966.mkv +笑天歌-中国南海 母亲的摇篮,http://em.21dtv.com/songs/60126010.mkv +豫剧-祖国的大建设一日千里,http://em.21dtv.com/songs/60134598.mkv +王梓旭-致父亲,我亲爱的爸爸,http://em.21dtv.com/songs/60117039.mkv +望海高歌-绽放你的容颜,http://em.21dtv.com/songs/60124037.mkv +王绎龙-真的停不下来(无损),http://em.21dtv.com/songs/50000271.mkv +张龙珍-在对的时间遇上对的你,http://em.21dtv.com/songs/60116819.mkv +严艺丹-醉城伤,http://em.21dtv.com/songs/60121337.mkv +张军-再唱路边的野花不要采,http://em.21dtv.com/songs/60117718.mkv +向洋-最长的电影,http://em.21dtv.com/songs/60128880.mkv +DJ-最爱怡红院[泳装],http://em.21dtv.com/songs/30000612.mkv +天籁回音-最爱我的人最懂我的心,http://em.21dtv.com/songs/60084635.mkv +晓依-有一种思念叫望眼欲穿,http://em.21dtv.com/songs/60105109.mkv +郭富城-用一首歌的时间怀念你,http://em.21dtv.com/songs/60120028.mkv +松田圣子-永远のもっと果てまで,http://em.21dtv.com/songs/60116036.mkv +信-一样的月光,http://em.21dtv.com/songs/60125143.mkv +张敬轩+王菀之-友谊的小船,http://em.21dtv.com/songs/60129081.mkv +李允-永远的陌生我如此熟悉,http://em.21dtv.com/songs/60087067.mkv +祁隆-永远爱你的我,http://em.21dtv.com/songs/60107093.mkv +雪无影-有些人爱着爱着就没了,http://em.21dtv.com/songs/60102910.mkv +京剧-要学那泰山顶上一棵松,http://em.21dtv.com/songs/60090534.mkv +雨霖枫-也许哭一场痛会少一点,http://em.21dtv.com/songs/60128570.mkv +陈芳-也许哭一场痛会少一点,http://em.21dtv.com/songs/60120097.mkv +张韶涵-隐形的翅膀,http://em.21dtv.com/songs/60116817.mkv +徐新军-用我一生爱着你陪着你,http://em.21dtv.com/songs/60107743.mkv +方圆-因为一个人爱上一座城,http://em.21dtv.com/songs/60084398.mkv +脆弱少女组-因为你承载了我的灵魂,http://em.21dtv.com/songs/60135645.mkv +马磊-一万个为什么,http://em.21dtv.com/songs/60114899.mkv +甘萍-用我的真情暖暖你的手,http://em.21dtv.com/songs/60091758.mkv +苏永康-因为爱你更珍惜我自己,http://em.21dtv.com/songs/60093083.mkv +豫剧-严天民雪夜秉烛审案卷,http://em.21dtv.com/songs/60134531.mkv +雨湘-愿所有姑娘都嫁给爱情,http://em.21dtv.com/songs/60119042.mkv +何宗龙-用什么方法可以忘记你,http://em.21dtv.com/songs/60099082.mkv +梁剑东-夜色2016,http://em.21dtv.com/songs/60121832.mkv +赵紫龙-一生的情歌都唱给你听,http://em.21dtv.com/songs/60124526.mkv +张韶涵-遗失的美好,http://em.21dtv.com/songs/60116816.mkv +刘天-有钱男子汉没钱汉子难,http://em.21dtv.com/songs/60126636.mkv +东浩-有钱男子汉没钱汉子难,http://em.21dtv.com/songs/60109929.mkv +豫剧-用巧计哄元帅出账去了,http://em.21dtv.com/songs/60134597.mkv +张杰+吴汶芳-一切都值得,http://em.21dtv.com/songs/60112673.mkv +林晏如-有情的人爱着无缘的人,http://em.21dtv.com/songs/60095677.mkv +佚名-有情的人爱着无缘的人,http://em.21dtv.com/songs/60043299.mkv +SNUPER-YOU=HEAVEN,http://em.21dtv.com/songs/60125004.mkv +瞿勤春-You And Me,http://em.21dtv.com/songs/60108743.mkv +韩浚易-愿你像玫瑰花一样美丽,http://em.21dtv.com/songs/60117376.mkv +豫剧-辕门外三声炮如同雷震,http://em.21dtv.com/songs/60134612.mkv +张胜淼-要么不开始要么一辈子,http://em.21dtv.com/songs/60121667.mkv +唐古-原来你从来没有爱过我[原伴],http://em.21dtv.com/songs/60100795.mkv +唐古-原来你从来没有爱过我,http://em.21dtv.com/songs/60097971.mkv +蔡雯君-遇见你是我今生的幸运,http://em.21dtv.com/songs/60128375.mkv +张赫宣-永隔一江水,http://em.21dtv.com/songs/60125536.mkv +韩红-永隔一江水,http://em.21dtv.com/songs/60124697.mkv +谭维维-有故事的人,http://em.21dtv.com/songs/60126214.mkv +韩红-一个人,http://em.21dtv.com/songs/60124696.mkv +凤凰传奇-一个人跳舞,http://em.21dtv.com/songs/60117570.mkv +刘涛-一个人跳舞,http://em.21dtv.com/songs/60122525.mkv +曾沛慈-一个人还是想着一个人,http://em.21dtv.com/songs/60111948.mkv +徐威-一个人的罪两个人来背,http://em.21dtv.com/songs/60087877.mkv +邰正宵-一个人的我依然会微笑,http://em.21dtv.com/songs/60117273.mkv +品冠-一个人不一定就不快乐,http://em.21dtv.com/songs/60110945.mkv +朱子峰+陈诗妮-遇到你是我最大的幸福,http://em.21dtv.com/songs/60125671.mkv +周杰伦-印第安老斑鸠,http://em.21dtv.com/songs/60106701.mkv +孙明-与爱情无关与寂寞有染,http://em.21dtv.com/songs/60110140.mkv +闻韬-想着你的美流着我的泪,http://em.21dtv.com/songs/60128491.mkv +祖海-心中的歌儿献给解放军,http://em.21dtv.com/songs/60091796.mkv +何祺-心中的苍井空,http://em.21dtv.com/songs/60109965.mkv +薛之谦+张信哲-信仰 演员 爱如潮水,http://em.21dtv.com/songs/60127370.mkv +卓依婷-星语心愿_不该欺骗我,http://em.21dtv.com/songs/60087469.mkv +陈雅森-下雨天我没有带着雨伞,http://em.21dtv.com/songs/60133056.mkv +一只舟-下一个路口还为你守候,http://em.21dtv.com/songs/60120260.mkv +[Group] +groupName=十六万歌曲MV等 - 110 +群星-下一个路口还为你守候,http://em.21dtv.com/songs/60085983.mkv +钟盛忠-小幸运,http://em.21dtv.com/songs/60120047.mkv +乔嘉-修行千年换来一世情缘,http://em.21dtv.com/songs/60101868.mkv +暴林+张怡诺-谢谢你陪着我,http://em.21dtv.com/songs/60118639.mkv +杨昭-谢谢你给的一切照片版,http://em.21dtv.com/songs/60093893.mkv +歌一生-谢谢你把我留在你梦中,http://em.21dtv.com/songs/60131583.mkv +歌一生-谢谢你把我留在你梦中,http://em.21dtv.com/songs/60120684.mkv +林道华-谢谢你爱我这么多年来,http://em.21dtv.com/songs/60098522.mkv +豫剧-先王爷封我是个长寿星,http://em.21dtv.com/songs/60134543.mkv +小山-心痛2015,http://em.21dtv.com/songs/60112644.mkv +曹格-潇洒走一回,http://em.21dtv.com/songs/60129190.mkv +梁静茹-小手拉大手,http://em.21dtv.com/songs/60117866.mkv +俊歌-想你是种不愿治愈的病,http://em.21dtv.com/songs/60105592.mkv +张德力-想你的滋味一杯又一杯,http://em.21dtv.com/songs/60113462.mkv +豫剧-学你爹心红胆壮志如钢,http://em.21dtv.com/songs/60134560.mkv +徐志强-想你的时候你也想我么,http://em.21dtv.com/songs/60087880.mkv +冷漠-想你不只是在午夜时分,http://em.21dtv.com/songs/60115703.mkv +颜裕林-小妹听哥说[DJ版],http://em.21dtv.com/songs/60096554.mkv +欧阳尚尚-心乱如麻[电音舞曲],http://em.21dtv.com/songs/60096373.mkv +欧阳尚尚-心乱如麻[慢摇舞曲],http://em.21dtv.com/songs/60096372.mkv +欧阳尚尚-心乱如麻[DJ舞曲],http://em.21dtv.com/songs/60096371.mkv +欧阳尚尚-心乱如麻[DJ版],http://em.21dtv.com/songs/60096370.mkv +豫剧-修挎包《小二黑结婚》,http://em.21dtv.com/songs/60134540.mkv +太极乐队-献给 PAULINE,http://em.21dtv.com/songs/60095287.mkv +杨坤-下个路口见,http://em.21dtv.com/songs/60129271.mkv +陆毅+鲍蕾+陆雨萱-幸福家家有,http://em.21dtv.com/songs/60126358.mkv +蔡黄汝+林逸欣+管罄+曾咏熙-幸福的答案,http://em.21dtv.com/songs/60126150.mkv +豫剧-羞答答对奶奶详情禀告,http://em.21dtv.com/songs/60134602.mkv +豫剧-羞答答出门来将头低下,http://em.21dtv.com/songs/60134601.mkv +豫剧-想当初孙飞虎围困寺院,http://em.21dtv.com/songs/60134570.mkv +豫剧-小苍娃我离了登封小县,http://em.21dtv.com/songs/60134562.mkv +曲剧-小苍娃我离了登封小县,http://em.21dtv.com/songs/60091276.mkv +王杰-下次的相逢在什么时候,http://em.21dtv.com/songs/60088294.mkv +大庆小芳-下辈子我们一定在一起,http://em.21dtv.com/songs/60132334.mkv +任强-下辈子我们还要在一起,http://em.21dtv.com/songs/60101891.mkv +DJ-炫,http://em.21dtv.com/songs/30000613.mkv +晓依-我在永州等你,http://em.21dtv.com/songs/60118636.mkv +王雯-我在月光里想你,http://em.21dtv.com/songs/60104324.mkv +刘涛-我终于成了别人的女人,http://em.21dtv.com/songs/60123685.mkv +许佳慧-我在神经什么,http://em.21dtv.com/songs/60109620.mkv +郑茜匀-我在你眼里到底算什么,http://em.21dtv.com/songs/60135816.mkv +成泉-我在你眼里到底算什么,http://em.21dtv.com/songs/60121716.mkv +西域刀郎-我在你眼里到底算什么,http://em.21dtv.com/songs/60088626.mkv +儿歌-我在马路边捡到一分钱,http://em.21dtv.com/songs/60089629.mkv +宋向楠-我这个受尽伤痕的女人,http://em.21dtv.com/songs/60132377.mkv +支涛-我只道自古荒田稗草生,http://em.21dtv.com/songs/60087907.mkv +童珺-王子的新衣,http://em.21dtv.com/songs/60129466.mkv +萧敬腾+龚泽艺-王子的新衣,http://em.21dtv.com/songs/60126134.mkv +李志洲-我知道我们不能在一起,http://em.21dtv.com/songs/60106940.mkv +彭浩-我知道你不再心疼我哭,http://em.21dtv.com/songs/60111096.mkv +李菓-我最爱的人却伤我最深,http://em.21dtv.com/songs/60081042.mkv +许霖-我最爱的人你还记得吗,http://em.21dtv.com/songs/60118044.mkv +豫剧-我有心到书馆前去探望,http://em.21dtv.com/songs/60134573.mkv +马常宝-我以为你是流过泪的人,http://em.21dtv.com/songs/60115538.mkv +车继龄-我以为你是流过泪的人,http://em.21dtv.com/songs/60090233.mkv +颜小健-我以为还差一首抒情歌,http://em.21dtv.com/songs/60085937.mkv +方炯嘉-五月天抢走我的女朋友,http://em.21dtv.com/songs/60105102.mkv +吴超-唯有你的浅笑醉落天星,http://em.21dtv.com/songs/60099880.mkv +郝祺-我要把那支歌唱给你听,http://em.21dtv.com/songs/60106329.mkv +周笔畅-我选择喜欢你,http://em.21dtv.com/songs/60115060.mkv +啊信-我心中尚未崩溃的地方,http://em.21dtv.com/songs/60087613.mkv +黄韵玲-我心中尚未崩坏的地方,http://em.21dtv.com/songs/60114306.mkv +羊进达-我心依旧(DJ版),http://em.21dtv.com/songs/60093886.mkv +柯羽-我希望你们都能好好的,http://em.21dtv.com/songs/60127117.mkv +金花+MJ-我喜欢过的 那个时节,http://em.21dtv.com/songs/60123264.mkv +沙楠杰-万万没想到,http://em.21dtv.com/songs/60119760.mkv +詹小栎-弯弯的月亮,http://em.21dtv.com/songs/60114049.mkv +戴佩妮-未完不待续,http://em.21dtv.com/songs/60125596.mkv +孙楠-我听别人唱着天长地久,http://em.21dtv.com/songs/60090911.mkv +农里-我是有多久没有见到你,http://em.21dtv.com/songs/60123651.mkv +阿悄-我是我的情人,http://em.21dtv.com/songs/60094732.mkv +张地-我是堂堂正正的中国人,http://em.21dtv.com/songs/60120508.mkv +张地-我是堂堂正正的中国人,http://em.21dtv.com/songs/60117724.mkv +网络歌手-我是神经病(二鬼哥),http://em.21dtv.com/songs/50000223.mkv +王喆-我深深地爱你我的祖国,http://em.21dtv.com/songs/60088285.mkv +张林-我送你的花你能接受吗,http://em.21dtv.com/songs/60091117.mkv +张博-我送你的花你能接受吗,http://em.21dtv.com/songs/60091055.mkv +龙奔-为什么我们不能在一起,http://em.21dtv.com/songs/60099642.mkv +李明洋-为什么思念总在分手后,http://em.21dtv.com/songs/60089958.mkv +面具-为什么世界末日没成真,http://em.21dtv.com/songs/60098907.mkv +王德一彪-为什么你是那么的无情,http://em.21dtv.com/songs/60123000.mkv +少军-为什么你背着我在流泪,http://em.21dtv.com/songs/60132395.mkv +郁可唯+潘越云-我是不是你最疼爱的人,http://em.21dtv.com/songs/60098805.mkv +小虫-我是不是你最疼爱的人,http://em.21dtv.com/songs/60084072.mkv +萱萱-我是不是你最疼爱的人,http://em.21dtv.com/songs/60097968.mkv +杜江-我是不是该安静的走开,http://em.21dtv.com/songs/60124098.mkv +曾敏杰-我是不是该安静的走开,http://em.21dtv.com/songs/60124031.mkv +李正宇-我其实很爱你,http://em.21dtv.com/songs/60102346.mkv +凤凰传奇-忘情森巴舞,http://em.21dtv.com/songs/60117572.mkv +高胜美-我悄悄的蒙上你的眼睛,http://em.21dtv.com/songs/60089547.mkv +瞿颖-我却朦住眼睛,http://em.21dtv.com/songs/60117947.mkv +小沈阳+李佳薇-无情的情书,http://em.21dtv.com/songs/60125432.mkv +孙楠+李沅帮+丛浩楠-无情的情书,http://em.21dtv.com/songs/60102120.mkv +蔡秋凤-无情的梦留乎无情的人(无原唱),http://em.21dtv.com/songs/60095918.mkv +豫剧-我盼你当一个劳动英雄,http://em.21dtv.com/songs/60134577.mkv +任贤齐-外婆的澎湖湾2015,http://em.21dtv.com/songs/60111685.mkv +gugudan-Wonderland,http://em.21dtv.com/songs/60131064.mkv +Gugudan-Wonderland,http://em.21dtv.com/songs/60129941.mkv +Gugudan-Wonderland,http://em.21dtv.com/songs/60123476.mkv +吴克羣-为你写诗,http://em.21dtv.com/songs/60094847.mkv +凡人歌-我拿你当宝你把我当草,http://em.21dtv.com/songs/60119282.mkv +谢小雨-为你掉下了第一滴眼泪,http://em.21dtv.com/songs/60107221.mkv +林依轮-我们在太阳升起的地方,http://em.21dtv.com/songs/60091425.mkv +郁可唯-问明月,http://em.21dtv.com/songs/60127454.mkv +朱明-我们是兄弟[影视版],http://em.21dtv.com/songs/60102312.mkv +向荣-我们是快乐的调查队员,http://em.21dtv.com/songs/60081208.mkv +TFBOYS+韩庚-我们是共产主义接班人,http://em.21dtv.com/songs/60111656.mkv +谢笙东野-我们可以继续如此相爱,http://em.21dtv.com/songs/60100465.mkv +牡丹独秀-我们的首长我们的将军,http://em.21dtv.com/songs/60080951.mkv +邓小巧-我们都寂寞,http://em.21dtv.com/songs/60103610.mkv +林凡-我们的故事只讲了一半,http://em.21dtv.com/songs/60096353.mkv +高登-我们的爱情和别人一样,http://em.21dtv.com/songs/60123381.mkv +DJ-舞林至尊,http://em.21dtv.com/songs/30000648.mkv +小龙女-我叫小龙女不叫小龙虾,http://em.21dtv.com/songs/60116751.mkv +小龙女-我叫小龙女不叫小龙虾,http://em.21dtv.com/songs/60098290.mkv +杜维瀚-我就喜欢你这样的丫头,http://em.21dtv.com/songs/60105995.mkv +衡越-我就是你的人,http://em.21dtv.com/songs/60123146.mkv +张健-为健康导航为生命喝彩,http://em.21dtv.com/songs/60083974.mkv +玺儿-无尽的旅途,http://em.21dtv.com/songs/60098659.mkv +王馨-我嫁的不是我最爱的人,http://em.21dtv.com/songs/60119836.mkv +L'Arc en Ciel-Wings Flap,http://em.21dtv.com/songs/60117470.mkv +李仙姬-WindFlower,http://em.21dtv.com/songs/60130406.mkv +Enrique Iglesias-Why Not Me,http://em.21dtv.com/songs/60112433.mkv +王若琳-When I Nod,http://em.21dtv.com/songs/60113880.mkv +1N1-What To Do,http://em.21dtv.com/songs/60109788.mkv +邱永传-我该忘记你吗,http://em.21dtv.com/songs/60105418.mkv +殆死悲爱-无法忘记爱之罪的惩罚,http://em.21dtv.com/songs/60133907.mkv +郁可唯-WE ARE ONE,http://em.21dtv.com/songs/60124557.mkv +林忆莲+张惠妹+那英+蔡健雅-We Are One,http://em.21dtv.com/songs/60105183.mkv +蔡健雅-WE ARE ONE,http://em.21dtv.com/songs/60102711.mkv +杨美莲-我的忧伤不让你看出来,http://em.21dtv.com/songs/60089985.mkv +青青凉-我的音乐根本停不下来,http://em.21dtv.com/songs/60129779.mkv +敖威-我的心永远和你在一起,http://em.21dtv.com/songs/60084042.mkv +东方奇奇-我的心里只有你没有他,http://em.21dtv.com/songs/60125073.mkv +汤琦-我的心里只有你没有他,http://em.21dtv.com/songs/60111224.mkv +林木-我的心里你永远都存在,http://em.21dtv.com/songs/60088112.mkv +刘佳成-我的小宝贝咱俩是一对,http://em.21dtv.com/songs/60112531.mkv +蓝心湄-我的温柔只有你看得见,http://em.21dtv.com/songs/60116232.mkv +苏青山-我的生命里你曾经来过,http://em.21dtv.com/songs/60120887.mkv +满文军-我的世界为你留住春天,http://em.21dtv.com/songs/60090051.mkv +萧闳仁-我的世界没有你的音准,http://em.21dtv.com/songs/60096120.mkv +笑天-我对你的爱一直没有变,http://em.21dtv.com/songs/60129467.mkv +李秋实-我的绝情刺杀了我自己,http://em.21dtv.com/songs/60125716.mkv +邓小龙-我的好兄弟[DJ版],http://em.21dtv.com/songs/60102778.mkv +豫剧-我的韩伯父《南阳关》,http://em.21dtv.com/songs/60134576.mkv +SNH48-我的歌声里,http://em.21dtv.com/songs/60124997.mkv +王奕心-我的唇吻不到我爱的人,http://em.21dtv.com/songs/60112097.mkv +潘美辰-我的爱那么容易受伤害,http://em.21dtv.com/songs/60088247.mkv +任贤齐+周华键-我从新加坡流泪到新山,http://em.21dtv.com/songs/60090540.mkv +汤唯-我曾经也想过一了百了,http://em.21dtv.com/songs/60122944.mkv +东来东往-我曾经那么接近的幸福,http://em.21dtv.com/songs/60100759.mkv +郑志立-我才不要做你的男闺蜜,http://em.21dtv.com/songs/60126275.mkv +谢雨欣-我不愿我的猜疑是真的,http://em.21dtv.com/songs/60092098.mkv +旅行团乐队-我不想失去你,http://em.21dtv.com/songs/60104169.mkv +李志洲-我不想情人节一个人过,http://em.21dtv.com/songs/60095307.mkv +京剧-我本是卧龙岗散淡的人,http://em.21dtv.com/songs/60089116.mkv +张地-我不是潘金莲,http://em.21dtv.com/songs/60125497.mkv +曾沛慈-我不是你该爱的那个人,http://em.21dtv.com/songs/60126975.mkv +曾沛慈-我不是你该爱的那个人,http://em.21dtv.com/songs/60124033.mkv +王璐奇-我不是花瓶[DJ版],http://em.21dtv.com/songs/60102541.mkv +吴克羣-我不难过,http://em.21dtv.com/songs/60094848.mkv +刘冲-我把爱情想的太完美,http://em.21dtv.com/songs/60081792.mkv +雨柔-我爱着你深深地爱着你,http://em.21dtv.com/songs/60094758.mkv +华歌-为爱伤一次哭过千百回,http://em.21dtv.com/songs/60122545.mkv +Linkin Park-Wastelands,http://em.21dtv.com/songs/60117474.mkv +Meghan Trainor-Walkashame,http://em.21dtv.com/songs/60110779.mkv +Rixton-Wait On Me,http://em.21dtv.com/songs/60108241.mkv +小刘欢-我爱的女人住在别人家,http://em.21dtv.com/songs/60126795.mkv +DJ-V6(现场),http://em.21dtv.com/songs/30000679.mkv +Michelle Williams-Unexpected,http://em.21dtv.com/songs/60124949.mkv +G.R.L.-Ugly Heart,http://em.21dtv.com/songs/60103015.mkv +DJ-挑战脉搏[非版],http://em.21dtv.com/songs/30000615.mkv +环球群星-谭咏麟经典金曲大合唱,http://em.21dtv.com/songs/60091751.mkv +梁海洋+马旭成-天涯海角也会一路顺风,http://em.21dtv.com/songs/60117863.mkv +马丽-同一个太阳同一个月亮,http://em.21dtv.com/songs/60109746.mkv +群星合唱-同一个世界同一个梦想,http://em.21dtv.com/songs/60088475.mkv +段丽阳-同一个世界同一个梦想,http://em.21dtv.com/songs/60088169.mkv +无名-台湾同胞我的骨肉兄弟,http://em.21dtv.com/songs/60091264.mkv +PANDA-TWO TIGERS,http://em.21dtv.com/songs/60134781.mkv +赵小兵-唐僧也疯狂(DJ版),http://em.21dtv.com/songs/60103587.mkv +胡松-她说男人不坏女人不爱,http://em.21dtv.com/songs/60132817.mkv +林宥嘉-天上的男人地上的女人,http://em.21dtv.com/songs/60119701.mkv +徐佳莹-突然好想你,http://em.21dtv.com/songs/60120563.mkv +DJ-Tremor,http://em.21dtv.com/songs/60124860.mkv +Fetty Wap-Trap Queen,http://em.21dtv.com/songs/60110762.mkv +京剧-听樵楼打罢了初更时候,http://em.21dtv.com/songs/60089115.mkv +Jessie Ware-Tough Love,http://em.21dtv.com/songs/60103788.mkv +品冠-疼你的责任,http://em.21dtv.com/songs/60116671.mkv +彭松杰-听妈妈讲那过去的事情,http://em.21dtv.com/songs/60130345.mkv +汤晶锦-天亮了,http://em.21dtv.com/songs/60116100.mkv +DJ-踏啦啦,http://em.21dtv.com/songs/30000638.mkv +六折真人-谈恋爱我真的没有天分,http://em.21dtv.com/songs/60123646.mkv +DJ-痛快SHEDJ,http://em.21dtv.com/songs/30000674.mkv +杨竣-痛苦迁就不如痛快放手,http://em.21dtv.com/songs/60106013.mkv +许哲佩-TIPPY TOES,http://em.21dtv.com/songs/60102727.mkv +Audiosonik X Jerome-Thong Song,http://em.21dtv.com/songs/60123443.mkv +早安少女组-The Vision,http://em.21dtv.com/songs/60122787.mkv +陈永馨-The Prayer,http://em.21dtv.com/songs/60105491.mkv +Avicii-The Nights,http://em.21dtv.com/songs/60110744.mkv +Tpi-The Moment,http://em.21dtv.com/songs/60113201.mkv +DAVICHI-The Letter,http://em.21dtv.com/songs/60093915.mkv +许魏洲-The Heroes,http://em.21dtv.com/songs/60134224.mkv +陈瑞-太懂事的女人没人心疼,http://em.21dtv.com/songs/60135933.mkv +十三狼-他大舅他二舅都是他舅,http://em.21dtv.com/songs/60104845.mkv +雨湘-铁打的相思流水的爱情,http://em.21dtv.com/songs/60135964.mkv +杨树林+石头-坦荡荡甜蜜蜜地吃炸鸡,http://em.21dtv.com/songs/60135399.mkv +杨树林+石头-坦荡荡甜蜜蜜地吃炸鸡,http://em.21dtv.com/songs/60133847.mkv +疯子-唐伯虎点秋香[DJ],http://em.21dtv.com/songs/60104331.mkv +Sam Tsui-Talk Dirty,http://em.21dtv.com/songs/60103814.mkv +ONE OK ROCK-Taking Off,http://em.21dtv.com/songs/60129973.mkv +储毅-她爱的是我哥哥不是我,http://em.21dtv.com/songs/60105602.mkv +SKE48-コケティッシュ涉滞中,http://em.21dtv.com/songs/60111651.mkv +彭炽权-顺治与董贵妃之空门恨(戏曲),http://em.21dtv.com/songs/60092695.mkv +黄晓军+孔昱-谁在我床头放一束玫瑰,http://em.21dtv.com/songs/60093834.mkv +Frank秋枫-谁知道我戴着面具活着,http://em.21dtv.com/songs/60114941.mkv +慕容晓晓-岁月是有去无回的旅行,http://em.21dtv.com/songs/60126926.mkv +伍华-说一句你爱我,http://em.21dtv.com/songs/60101897.mkv +李玲玉-沈阳啊 沈阳我的故乡,http://em.21dtv.com/songs/60088035.mkv +未卜乐队-生下来活下去,http://em.21dtv.com/songs/60107773.mkv +沈凌云-手心里的温柔,http://em.21dtv.com/songs/60098559.mkv +DJ-伤心胶囊,http://em.21dtv.com/songs/30000610.mkv +左健-伤心的时候有我陪着你,http://em.21dtv.com/songs/60099979.mkv +欢子-伤心的时候可以唱情歌,http://em.21dtv.com/songs/60091536.mkv +马建军-伤心的人唱着寂寞的歌,http://em.21dtv.com/songs/60104602.mkv +TYRESE-SWEET LADY,http://em.21dtv.com/songs/60130000.mkv +大庆小芳-十五的月亮代表我的心,http://em.21dtv.com/songs/60118482.mkv +ERIC Z+MC LIER-SWAG QUEEN,http://em.21dtv.com/songs/60123467.mkv +萧敬腾+肖洒-SuperWoman,http://em.21dtv.com/songs/60094675.mkv +崔艺根+金日道-Super Moon,http://em.21dtv.com/songs/60114513.mkv +房业凯-Super^Hero,http://em.21dtv.com/songs/60116849.mkv +金池-Super Girl,http://em.21dtv.com/songs/60122190.mkv +Snoop Dogg-Super Crip,http://em.21dtv.com/songs/60133285.mkv +陈盛宇-SUN OF SON,http://em.21dtv.com/songs/60121090.mkv +少女标本-Sugar Free,http://em.21dtv.com/songs/60121601.mkv +蔡诗芸-Stray Love,http://em.21dtv.com/songs/60131793.mkv +Hobbie Stuart+Ghetts-Still Here,http://em.21dtv.com/songs/60124894.mkv +江东-生是我的人死是我的鬼,http://em.21dtv.com/songs/60133915.mkv +东方健-生是我的人死是我的鬼,http://em.21dtv.com/songs/60132158.mkv +谭锡禧-simple simon says+sugar sugar+love potion no9+venus(演唱会),http://em.21dtv.com/songs/60082327.mkv +赵雷-三十岁的女人,http://em.21dtv.com/songs/60114811.mkv +张庚萱-谁说男人的心不会流泪,http://em.21dtv.com/songs/60107713.mkv +高原-生是你的人死是你的鬼,http://em.21dtv.com/songs/60109048.mkv +葛西瓦-山上拉钉人,http://em.21dtv.com/songs/60119939.mkv +何韵诗-沙沙的雨+总有你鼓励,http://em.21dtv.com/songs/60092277.mkv +韩宝仪-深深的恋情,http://em.21dtv.com/songs/60107346.mkv +张铭峰-谁让我爱上你这样的人,http://em.21dtv.com/songs/60099245.mkv +越调-四千岁你莫要羞愧难当,http://em.21dtv.com/songs/60134622.mkv +王莹-神奇的瑶都美丽的天堂,http://em.21dtv.com/songs/60114692.mkv +东方神起-Spellbound,http://em.21dtv.com/songs/60099063.mkv +清水翔太-Snow Smile,http://em.21dtv.com/songs/60111242.mkv +陈玉建-谁能给我一个温暖的家,http://em.21dtv.com/songs/60105496.mkv +刘苓-什么样的男人是你最爱,http://em.21dtv.com/songs/60110891.mkv +云飞+王二妮-手拉手亲口口,http://em.21dtv.com/songs/60110835.mkv +洛嘉+东方依依-输了你赢了世界又如何,http://em.21dtv.com/songs/60129342.mkv +A Lin-输了你赢了世界又如何,http://em.21dtv.com/songs/60107390.mkv +阿来-输了你赢了世界又如何,http://em.21dtv.com/songs/60086840.mkv +孟庭苇-伤了你的心的我好伤心,http://em.21dtv.com/songs/60089241.mkv +秦海璐+孙楠-死了都要爱,http://em.21dtv.com/songs/60126000.mkv +信+何玺+朴惠子+李思音-死了都要爱,http://em.21dtv.com/songs/60122497.mkv +杨坤+旦增尼玛-死了都要爱,http://em.21dtv.com/songs/60113672.mkv +田维英-算了吧^你不会明白的,http://em.21dtv.com/songs/60106157.mkv +鸿飞-世界这么大我想去看看,http://em.21dtv.com/songs/60111545.mkv +冯雪刚-世界这么大我想去看看,http://em.21dtv.com/songs/60110863.mkv +秦永-是酒也是泪[欣赏版],http://em.21dtv.com/songs/60102596.mkv +孟文豪-世界那么大我想去看看,http://em.21dtv.com/songs/60110999.mkv +唐志星-双击666中国人最牛,http://em.21dtv.com/songs/60133511.mkv +孙子涵-手机里放的歌代表的痛,http://em.21dtv.com/songs/60113401.mkv +风男塾-瞬间到来フューチャー,http://em.21dtv.com/songs/60111525.mkv +京剧-沙家浜走有一天会解放,http://em.21dtv.com/songs/60090530.mkv +丘亦华-说好了我们永远不放手,http://em.21dtv.com/songs/60106572.mkv +望海高歌-说好了不再为你流眼泪,http://em.21dtv.com/songs/60133778.mkv +毛泽少-输给你是我最大的幸福,http://em.21dtv.com/songs/60124184.mkv +孙露-是否得不到的才最珍贵,http://em.21dtv.com/songs/60115826.mkv +VC组合-是否爱过我,http://em.21dtv.com/songs/60126555.mkv +DJ-输的我是赢的不是你,http://em.21dtv.com/songs/30000629.mkv +豫剧-谁的是谁的非天在上头,http://em.21dtv.com/songs/60134607.mkv +苏云+周志刚-伸出你的手献出我的爱,http://em.21dtv.com/songs/60081388.mkv +曹龙-上辈子你也是我的新娘,http://em.21dtv.com/songs/60103332.mkv +张彦子-是不是我们都真的老了,http://em.21dtv.com/songs/60083810.mkv +何宗龙-是不是分手都是我的错,http://em.21dtv.com/songs/60126601.mkv +王洪迪-舍不得让你流着泪转身,http://em.21dtv.com/songs/60121929.mkv +Victoria's Secret Angels-Santa Baby,http://em.21dtv.com/songs/60130003.mkv +张瀛仁-SA KU RA之恋,http://em.21dtv.com/songs/60115913.mkv +DJ安之-热血燃烧激情战歌系列,http://em.21dtv.com/songs/50000137.mkv +赵雷-让我偷偷看你,http://em.21dtv.com/songs/60126240.mkv +国辉-让我们的岁月一样生动,http://em.21dtv.com/songs/60097967.mkv +杨丽-让我们的爱永远在一起,http://em.21dtv.com/songs/60096093.mkv +GROOVE COVERAGE-RUNAWAY[DJ],http://em.21dtv.com/songs/60104686.mkv +林宥嘉+陈珊妮-如同悲伤被下载了两次,http://em.21dtv.com/songs/60114625.mkv +张磊-人生是一次热血的流浪,http://em.21dtv.com/songs/60121662.mkv +冉青霞-让世界充满爱[下集],http://em.21dtv.com/songs/60098122.mkv +朱兴东+Emily-热情的沙漠,http://em.21dtv.com/songs/60125669.mkv +张杰+萧敬腾+杨坤+谭维维-热情的沙漠,http://em.21dtv.com/songs/60125516.mkv +庾澄庆-热情的沙漠,http://em.21dtv.com/songs/60122699.mkv +紫海-让你枕着我的歌声入眠,http://em.21dtv.com/songs/60118838.mkv +张梦弘-让你知道更让你感觉到,http://em.21dtv.com/songs/60081747.mkv +轶翔-如果这辈子不能在一起,http://em.21dtv.com/songs/60107253.mkv +南合文斗+庞龙-如果有一天所有的玫瑰,http://em.21dtv.com/songs/60090765.mkv +叶文辉-如果相恋不可以没有歌,http://em.21dtv.com/songs/60103963.mkv +阿生-如果下辈子我还记得你,http://em.21dtv.com/songs/60088842.mkv +杨皓天-如果我失去了你的温柔,http://em.21dtv.com/songs/60106007.mkv +杨皓天-如果我失去了你的温柔,http://em.21dtv.com/songs/60081731.mkv +洋葱妹妹-如果我们真的没有爱过,http://em.21dtv.com/songs/60088221.mkv +风芝韵-如果我的心还为你停留,http://em.21dtv.com/songs/60109742.mkv +王森-如果天长地久是个传说,http://em.21dtv.com/songs/60088302.mkv +高原-如果世界只剩下一分钟,http://em.21dtv.com/songs/60109040.mkv +吴汶芳-如果世界只剩下你和我,http://em.21dtv.com/songs/60115753.mkv +海生-如果离开我你会很快乐,http://em.21dtv.com/songs/60124209.mkv +上官清清-如果离开我你会很快乐,http://em.21dtv.com/songs/60110816.mkv +凌志辉-如果离开我你会更快乐,http://em.21dtv.com/songs/60087372.mkv +韩信-如果爱就深爱,http://em.21dtv.com/songs/60123360.mkv +Crystal Kay+安室奈美惠-Revolution,http://em.21dtv.com/songs/60119118.mkv +安室奈美惠-Red Carpet,http://em.21dtv.com/songs/60117669.mkv +高桥李依+豊崎爱生-Red Battle,http://em.21dtv.com/songs/60134471.mkv +陈明章-阮不是一个没感情个人,http://em.21dtv.com/songs/60089528.mkv +豫剧-秦雪梅观诗文心花怒放,http://em.21dtv.com/songs/60134599.mkv +乌兰图雅-琴弦等着歌,http://em.21dtv.com/songs/60114374.mkv +李刚锋-其实他根本不会再爱你,http://em.21dtv.com/songs/60111159.mkv +杜歌-其实每个男人都不容易,http://em.21dtv.com/songs/60131514.mkv +李玖龙-钱是魔的魂心是魔的根,http://em.21dtv.com/songs/60108577.mkv +东方依依-全世界都下着相思的雨,http://em.21dtv.com/songs/60133322.mkv +唐美华-前世的花瓣雨今生的泪,http://em.21dtv.com/songs/60106728.mkv +DJ-情人[的],http://em.21dtv.com/songs/30000621.mkv +DJ-全球夜猫的士高11,http://em.21dtv.com/songs/30000669.mkv +DJ-全球夜猫的士高15,http://em.21dtv.com/songs/30000673.mkv +DJ-全球夜猫的士高14,http://em.21dtv.com/songs/30000672.mkv +DJ-全球夜猫的士高13,http://em.21dtv.com/songs/30000671.mkv +DJ-全球夜猫的士高10,http://em.21dtv.com/songs/30000668.mkv +DJ-全球夜猫的士高12,http://em.21dtv.com/songs/30000670.mkv +DJ-全球夜猫的士高1,http://em.21dtv.com/songs/30000659.mkv +DJ-全球夜猫的士高5,http://em.21dtv.com/songs/30000663.mkv +DJ-全球夜猫的士高4,http://em.21dtv.com/songs/30000662.mkv +DJ-全球夜猫的士高3,http://em.21dtv.com/songs/30000661.mkv +DJ-全球夜猫的士高7,http://em.21dtv.com/songs/30000665.mkv +DJ-全球夜猫的士高6,http://em.21dtv.com/songs/30000664.mkv +DJ-全球夜猫的士高9,http://em.21dtv.com/songs/30000667.mkv +DJ-全球夜猫的士高2,http://em.21dtv.com/songs/30000660.mkv +DJ-全球夜猫的士高8,http://em.21dtv.com/songs/30000666.mkv +DJ-全球夜猫迪吧,http://em.21dtv.com/songs/30000650.mkv +段红-亲亲河东水亲亲河东土,http://em.21dtv.com/songs/60109474.mkv +王菲+邓丽君-清平调,http://em.21dtv.com/songs/60112856.mkv +天爱-请你记得我曾经爱过你,http://em.21dtv.com/songs/60120442.mkv +莫龙丹-请你给我好一点的情敌,http://em.21dtv.com/songs/60097972.mkv +田馥甄-请你给我好一点的情敌,http://em.21dtv.com/songs/60088359.mkv +豫剧-清凌凌水来蓝莹莹的天,http://em.21dtv.com/songs/60134593.mkv +回来娶你-囚禁你的爱,http://em.21dtv.com/songs/60094446.mkv +豫剧-劝将军暂平你的心中忿,http://em.21dtv.com/songs/60134548.mkv +刘汉强-情歌不该唱得这么悲伤(无原唱),http://em.21dtv.com/songs/60095466.mkv +DJ舞曲-汽车HiFi御用慢摇,http://em.21dtv.com/songs/50000183.mkv +大庆小芳-情长长爱久久,http://em.21dtv.com/songs/60107633.mkv +张津涤-请别爱上我这样的歌手,http://em.21dtv.com/songs/60100027.mkv +冯晓荣-亲爱的!也许你会受伤,http://em.21dtv.com/songs/60126622.mkv +萧敬腾+徐诣帆-亲爱的小孩,http://em.21dtv.com/songs/60112922.mkv +苏仨-亲爱的我们究竟怎么了,http://em.21dtv.com/songs/60107964.mkv +天爱-亲爱的人何时回我怀中,http://em.21dtv.com/songs/60120440.mkv +段千寻-亲爱的请你回到我身边,http://em.21dtv.com/songs/60088173.mkv +江美琪-亲爱的你怎么不我身边,http://em.21dtv.com/songs/60088196.mkv +DJ-亲爱的你还爱我吗,http://em.21dtv.com/songs/30000627.mkv +徐国人-亲爱的 你过的怎么样,http://em.21dtv.com/songs/60110219.mkv +王羽泽-亲爱的好想你,http://em.21dtv.com/songs/60111286.mkv +解修宇-亲爱的姑娘考虑考虑我,http://em.21dtv.com/songs/60117216.mkv +随性乐团-亲爱的别扼杀我的灵魂,http://em.21dtv.com/songs/60130864.mkv +欧阳大龙-亲爱的爸爸妈妈别太累,http://em.21dtv.com/songs/60088163.mkv +黑豹乐队+张赫宣+刘文杰-朋友^兄弟^天高地厚,http://em.21dtv.com/songs/60101849.mkv +李健+吴秀波-朋友 和自己赛跑的人,http://em.21dtv.com/songs/60110265.mkv +安苏羽-朋友还是没有爱情伟大,http://em.21dtv.com/songs/60133575.mkv +娃娃-飘洋过海来看你+大雨,http://em.21dtv.com/songs/60097973.mkv +Oliver+Jimi Jules-Pushing On,http://em.21dtv.com/songs/60104710.mkv +Omarion+Chris Brown+Jhene Aiko-Post To Be,http://em.21dtv.com/songs/60109861.mkv +FTISLAND-Polar Star,http://em.21dtv.com/songs/60120209.mkv +豫剧-婆母娘且息怒站在路口,http://em.21dtv.com/songs/60134559.mkv +彭三-彭麻麻带你去K歌了吗,http://em.21dtv.com/songs/60108515.mkv +早安少女组-泡沫サタデーナイト!,http://em.21dtv.com/songs/60122788.mkv +豫剧-平了贼儿回家再孝双亲,http://em.21dtv.com/songs/60134565.mkv +柴博引-怕冷 你偏偏爱上了雪,http://em.21dtv.com/songs/60132627.mkv +王宏天-漂亮的姑娘都爱高富帅,http://em.21dtv.com/songs/60130578.mkv +ZAYN-Pillowtalk,http://em.21dtv.com/songs/60119214.mkv +Perfume-Pick Me Up,http://em.21dtv.com/songs/60110786.mkv +童珺-Piano,http://em.21dtv.com/songs/60129465.mkv +陆星材+金南珠-Photograph,http://em.21dtv.com/songs/60118133.mkv +Ed Sheeran-Photograph,http://em.21dtv.com/songs/60112430.mkv +Eminem-Phenomenal,http://em.21dtv.com/songs/60114332.mkv +DJ-泼不息的高温烈火[非版],http://em.21dtv.com/songs/30000614.mkv +郑华娟-漂泊的心停泊在基隆港,http://em.21dtv.com/songs/60090255.mkv +lol-Party up!!,http://em.21dtv.com/songs/60134745.mkv +SOLIDEMO-Party Tune,http://em.21dtv.com/songs/60134801.mkv +Glee Cast-On Our Way,http://em.21dtv.com/songs/60124882.mkv +小旭AUV-On my mind,http://em.21dtv.com/songs/60133596.mkv +魏佳艺-OK OK,http://em.21dtv.com/songs/60109054.mkv +宋孟君+迟漠寒-Oh My Love,http://em.21dtv.com/songs/60110155.mkv +DJ-噢姑娘,http://em.21dtv.com/songs/30000623.mkv +黄致列-你只是在比我高的地方,http://em.21dtv.com/songs/60120167.mkv +岳夏-你怎么舍得放我一个人,http://em.21dtv.com/songs/60093809.mkv +杨磊-你怎么忍心丢下我就走,http://em.21dtv.com/songs/60098513.mkv +戴佩妮-你怎么可以安心的睡着,http://em.21dtv.com/songs/60080116.mkv +沈伊莎-你怎么可以安心的睡着,http://em.21dtv.com/songs/60097969.mkv +万海东-你怎么会舍得让我离去,http://em.21dtv.com/songs/60105541.mkv +潘美辰-你走的那一天我没有哭,http://em.21dtv.com/songs/60131621.mkv +蔡丽津-你一直住置我的心内面,http://em.21dtv.com/songs/60135698.mkv +张梦弘-你一直在撒谎,http://em.21dtv.com/songs/60105046.mkv +王思焱-你养我长大我陪你变老,http://em.21dtv.com/songs/60123002.mkv +曹锦-你养我长大我陪你变老,http://em.21dtv.com/songs/60121739.mkv +郑俊海-你养我长大我陪你变老,http://em.21dtv.com/songs/60118961.mkv +崔云飞-你养我长大我陪你变老,http://em.21dtv.com/songs/60118528.mkv +方雪雯-那一日钱塘道上送你归,http://em.21dtv.com/songs/60087920.mkv +豫剧-那一日你言道张生有恙,http://em.21dtv.com/songs/60134613.mkv +我们就如何,http://em.21dtv.com/songs/60132428.mkv +小曾-那些再没有回来的兄弟,http://em.21dtv.com/songs/60113421.mkv +廖文强-那些你不敢解决的问题,http://em.21dtv.com/songs/60125487.mkv +莫日根-你心里的那个男人是谁,http://em.21dtv.com/songs/60086738.mkv +Vanilla Beans-女はそれを我慢しない,http://em.21dtv.com/songs/60117512.mkv +杨子军-你是我一生不变的承诺,http://em.21dtv.com/songs/60112783.mkv +贾争艳-你是我心中永远的温柔,http://em.21dtv.com/songs/60112274.mkv +望海高歌-你是我心中永远的美丽,http://em.21dtv.com/songs/60132510.mkv +储毅-那是我们回不去的从前,http://em.21dtv.com/songs/60085492.mkv +董芹-你是我今生最美的相遇,http://em.21dtv.com/songs/60114752.mkv +苏成-你是我今生最美的回忆,http://em.21dtv.com/songs/60124404.mkv +卢喃-你是我今生最美的回忆,http://em.21dtv.com/songs/60123717.mkv +深海-你是我今生最爱的女人,http://em.21dtv.com/songs/60103421.mkv +晓月-你是我今生不老的思念,http://em.21dtv.com/songs/60100085.mkv +邓小龙-你是我今生不变的守侯,http://em.21dtv.com/songs/60085531.mkv +李雨伦-你是我拒绝别人的理由,http://em.21dtv.com/songs/60129250.mkv +星月组合-你是我红尘中最美的缘,http://em.21dtv.com/songs/60116861.mkv +杨晓峰-拿什么去爱你微观文化,http://em.21dtv.com/songs/60112792.mkv +权振东-你什么都想要,http://em.21dtv.com/songs/60111959.mkv +曾羽飞-你是否愿意做我的老婆,http://em.21dtv.com/songs/60117788.mkv +晏文彬-你说长大以后要嫁给我,http://em.21dtv.com/songs/60106897.mkv +张冬玲-你是不是值得我爱的人,http://em.21dtv.com/songs/60099224.mkv +贺一航-男人再晚也别忘了回家,http://em.21dtv.com/songs/60132906.mkv +贺一航-男人再晚也别忘了回家,http://em.21dtv.com/songs/60116255.mkv +贺一航-男人再晚也别忘了回家,http://em.21dtv.com/songs/60107230.mkv +贺一航-男人再晚也别忘了回家,http://em.21dtv.com/songs/60081318.mkv +贾富营-男人有了钱你就了变坏,http://em.21dtv.com/songs/60135768.mkv +宋鹏宇-男人有了钱就有女人缘,http://em.21dtv.com/songs/60093589.mkv +王觉+时嘉-女人是世界最美丽的花,http://em.21dtv.com/songs/60125952.mkv +时嘉-女人是世界最美丽的花,http://em.21dtv.com/songs/60111129.mkv +陈冠茜-你若是爱我请你说出口,http://em.21dtv.com/songs/60088854.mkv +最后一只恐龙-女人的选择,http://em.21dtv.com/songs/60129199.mkv +赵鑫-男人的泪别让女人知道,http://em.21dtv.com/songs/60116267.mkv +姚红梅+柴华-你若不离我便生死相依,http://em.21dtv.com/songs/60109259.mkv +张杰+吴汶芳-年轻的战场,http://em.21dtv.com/songs/60113474.mkv +最美和声32强-年轻的白杨^蝴蝶飞呀,http://em.21dtv.com/songs/60113582.mkv +华晨宇+苏诗丁-南屏晚钟[天籁之战],http://em.21dtv.com/songs/60132267.mkv +Jace+Kisum-NOT ENOUGH,http://em.21dtv.com/songs/60114337.mkv +何鹏+唐古-你牛什么牛(DJ版),http://em.21dtv.com/songs/50000195.mkv +DJ-尼可[非版],http://em.21dtv.com/songs/30000611.mkv +林蒙-你可曾听到心碎的声音,http://em.21dtv.com/songs/60089370.mkv +紫琪儿-你看不到我流下的眼泪,http://em.21dtv.com/songs/60110446.mkv +涓子-你就这样轻轻的离开我,http://em.21dtv.com/songs/60114660.mkv +潘建义-农合行 你永远的朋友,http://em.21dtv.com/songs/60093856.mkv +赵纲-你给的冷漠我必须承受,http://em.21dtv.com/songs/60123202.mkv +新田恵海-NEXT PHASE,http://em.21dtv.com/songs/60110236.mkv +李治廷+卫兰-NEVER KNOW,http://em.21dtv.com/songs/60112761.mkv +GOT7-Never Ever,http://em.21dtv.com/songs/60133204.mkv +东京女子流-Never ever,http://em.21dtv.com/songs/60114367.mkv +Monsta X-男儿当自强,http://em.21dtv.com/songs/60123511.mkv +大哲-你的眼泪滴穿了我的心,http://em.21dtv.com/songs/60087625.mkv +张祥洪-你的眼泪穿过我的心海,http://em.21dtv.com/songs/60083504.mkv +甘萍-你的心总是最新的请帖,http://em.21dtv.com/songs/60091755.mkv +DJ-你的选择dj易欣,http://em.21dtv.com/songs/30000635.mkv +潘广益-难道你真的不曾爱过我,http://em.21dtv.com/songs/60083481.mkv +张振宇-难道你还嫌伤我不够深,http://em.21dtv.com/songs/60089861.mkv +许嘉文-你的难过让我不知所措,http://em.21dtv.com/songs/60099497.mkv +林道华-难道你的承诺都是谎言,http://em.21dtv.com/songs/60094560.mkv +侯懿航-你的灵魂背叛了你的心,http://em.21dtv.com/songs/60083496.mkv +江姗-你的激情有一点点虚假,http://em.21dtv.com/songs/60089395.mkv +张振宇-难道还嫌我上的不够深,http://em.21dtv.com/songs/60089275.mkv +蓝波-你到底有没有爱过我^,http://em.21dtv.com/songs/60101681.mkv +王馨-你的唇上留着谁的温度,http://em.21dtv.com/songs/60127220.mkv +黎毅-你的唇上留着谁的温度,http://em.21dtv.com/songs/60126494.mkv +王二妮+阿宝-拿出你的情抓住你的爱,http://em.21dtv.com/songs/60098631.mkv +陈芳-你爱着我心里却想着她,http://em.21dtv.com/songs/60126404.mkv +DAVII+Heize-Navigation,http://em.21dtv.com/songs/60131050.mkv +PSY-NAPAL BAJI,http://em.21dtv.com/songs/60116469.mkv +黎子明-Naomi,http://em.21dtv.com/songs/60109783.mkv +陈萝莉-你安静起来,http://em.21dtv.com/songs/60109706.mkv +晨熙-没有我的日子你开心吗,http://em.21dtv.com/songs/60128055.mkv +张杰-My Sunhine,http://em.21dtv.com/songs/60107715.mkv +Hello Venus-Mysterious,http://em.21dtv.com/songs/60131066.mkv +代慧颖-没有人在乎我,http://em.21dtv.com/songs/60109949.mkv +我什么都不是,http://em.21dtv.com/songs/60129748.mkv +梦然-没有你陪伴真的好孤单,http://em.21dtv.com/songs/60116078.mkv +冷漠-没有你陪伴真的好孤单,http://em.21dtv.com/songs/60109172.mkv +梦然-没有你陪伴真的好孤单,http://em.21dtv.com/songs/60108644.mkv +梦然-没有你陪伴真的好孤单,http://em.21dtv.com/songs/60081952.mkv +张可儿-没有你的世界爱是黑白,http://em.21dtv.com/songs/60113457.mkv +任栩麟-木有money徒伤悲,http://em.21dtv.com/songs/60109141.mkv +罗志强-没有关系我们只是朋友,http://em.21dtv.com/songs/60099446.mkv +申晨-每一个存在都有他的价,http://em.21dtv.com/songs/60131691.mkv +SELENA GOMEZ+THE SCENE-MY DILEMMA,http://em.21dtv.com/songs/60129985.mkv +DJ舞曲-慢摇 a8 极品串烧,http://em.21dtv.com/songs/50000180.mkv +范媛媛-母系社会[天籁之战],http://em.21dtv.com/songs/60132836.mkv +王宏恩+羽泉-梦想的颜色,http://em.21dtv.com/songs/60109528.mkv +王宏恩-梦想的颜色,http://em.21dtv.com/songs/60109527.mkv +罗艺恒-没想到的梦,http://em.21dtv.com/songs/60119882.mkv +孙露-满天的雨水都是我的泪,http://em.21dtv.com/songs/60128971.mkv +姚安娜-末世考验KADAWA,http://em.21dtv.com/songs/60123812.mkv +徐良+连诗雅-MR.RAINBOW,http://em.21dtv.com/songs/60108523.mkv +龙飞-梦然—爱上爱情爱上你,http://em.21dtv.com/songs/60098975.mkv +王思远-木偶人的倒数第一个梦,http://em.21dtv.com/songs/60113862.mkv +T.I-Money Talk,http://em.21dtv.com/songs/60125014.mkv +陈多情(多情哥)-美女我要追到你,http://em.21dtv.com/songs/60105477.mkv +黄小琥+杜明雅-没那么简单,http://em.21dtv.com/songs/60123401.mkv +黄小琥-没那么简单,http://em.21dtv.com/songs/60118214.mkv +林道华-妹妹你就是哥哥的最爱,http://em.21dtv.com/songs/60085442.mkv +品冠+汪小敏-明明很爱你,http://em.21dtv.com/songs/60116672.mkv +伤感一哥-明明不想我却说你爱我,http://em.21dtv.com/songs/60120302.mkv +康慷-美丽中国年,http://em.21dtv.com/songs/60094091.mkv +吕继宏+吕薇-梦里也牵手[演唱会],http://em.21dtv.com/songs/60131245.mkv +常石磊-茉莉花[不朽之名曲],http://em.21dtv.com/songs/60115138.mkv +马海生+郑兴琦-美丽的神话,http://em.21dtv.com/songs/60126450.mkv +孙楠+王逸洁+朱婷婷-美丽的神话,http://em.21dtv.com/songs/60102122.mkv +刘和刚-美丽的楼兰姑娘,http://em.21dtv.com/songs/60101955.mkv +熊七梅-美丽的家园可爱的家乡,http://em.21dtv.com/songs/60111254.mkv +刚毅-美丽的高原红,http://em.21dtv.com/songs/60119318.mkv +云飞-美丽的草原美丽的姑娘,http://em.21dtv.com/songs/60108288.mkv +王梦然+冯碧云-美丽笨女人,http://em.21dtv.com/songs/60125930.mkv +豫剧-满江中波浪静月光惨淡,http://em.21dtv.com/songs/60134594.mkv +薛凯琪-Miss Fiona,http://em.21dtv.com/songs/60123141.mkv +Emblem3-3000 Miles,http://em.21dtv.com/songs/60098022.mkv +何乌兰-蒙古高原—永远的歌谣,http://em.21dtv.com/songs/60103075.mkv +KISS-梦の浮世に咲いてみな,http://em.21dtv.com/songs/60112442.mkv +韩广英-母恩重如山母情深似海,http://em.21dtv.com/songs/60100628.mkv +张学友-每次都想呼喊你的名字,http://em.21dtv.com/songs/60105827.mkv +李恕权-每次都想呼唤你的名字,http://em.21dtv.com/songs/60089957.mkv +醉美-马背上的太阳,http://em.21dtv.com/songs/60107283.mkv +刘维-面包的故事,http://em.21dtv.com/songs/60119311.mkv +Hey!Say!JUMP-Masquerade,http://em.21dtv.com/songs/60124891.mkv +张伟文-恋之火我的心里没有她,http://em.21dtv.com/songs/60087790.mkv +歌一生-留一份感情来生再回味,http://em.21dtv.com/songs/60108649.mkv +孙露-旅行中的想念,http://em.21dtv.com/songs/60118504.mkv +DJ-龙王DISCO,http://em.21dtv.com/songs/30000647.mkv +刘美麟-Lucky Star,http://em.21dtv.com/songs/60131216.mkv +Yunchi-Lucky Girl,http://em.21dtv.com/songs/60115648.mkv +慕容天宝-恋上一个人爱上一座城,http://em.21dtv.com/songs/60129156.mkv +豫剧-李世民登龙位万民称颂,http://em.21dtv.com/songs/60134588.mkv +华晨宇-老鼠爱大米,http://em.21dtv.com/songs/60128851.mkv +DJ-老鼠爱大米DJ,http://em.21dtv.com/songs/30000657.mkv +徐海涛-老婆我爱你[舞曲版],http://em.21dtv.com/songs/60098383.mkv +勾辉-老婆你听我说(无损),http://em.21dtv.com/songs/50000267.mkv +王英俊-老婆不容易老公要珍惜,http://em.21dtv.com/songs/60129419.mkv +张靓颖-Loving You,http://em.21dtv.com/songs/60135246.mkv +刘凤瑶-Loving You,http://em.21dtv.com/songs/60121425.mkv +博轼-LovingMaMa,http://em.21dtv.com/songs/60119325.mkv +Nocturnes曳取-Love Kills,http://em.21dtv.com/songs/60133258.mkv +华莎+eSNa-Love Comes,http://em.21dtv.com/songs/60134955.mkv +Girl's Day-Love Again,http://em.21dtv.com/songs/60134681.mkv +小七-Love Again,http://em.21dtv.com/songs/60119444.mkv +郑迦文-Lost Stars,http://em.21dtv.com/songs/60127475.mkv +Keira Knightley-Lost Stars,http://em.21dtv.com/songs/60111623.mkv +曹轩宾-Losing You,http://em.21dtv.com/songs/60121738.mkv +林昕阳-Losing You,http://em.21dtv.com/songs/60112023.mkv +Meek Mill-Lord Knows,http://em.21dtv.com/songs/60119162.mkv +Nicki Minaj-Lookin Ass,http://em.21dtv.com/songs/60117478.mkv +Superbee+myunDo-Look At It,http://em.21dtv.com/songs/60133289.mkv +DJ-弄你DISCO,http://em.21dtv.com/songs/30000649.mkv +DJ-弄你迪高DJ,http://em.21dtv.com/songs/30000658.mkv +豫剧-柳明月坐绣案思绪绵绵,http://em.21dtv.com/songs/60134589.mkv +AKB48-恋をすると马鹿を见る,http://em.21dtv.com/songs/60123430.mkv +音乐走廊-溜溜的情人溜溜的情歌,http://em.21dtv.com/songs/60109737.mkv +蒋婴-离开我只有转身的距离,http://em.21dtv.com/songs/60128369.mkv +符琼音-离开是为了回来的理由,http://em.21dtv.com/songs/60121989.mkv +马健涛-离开你是我今生犯的错,http://em.21dtv.com/songs/60135998.mkv +豫剧-历艰辛保皇叔重把业创,http://em.21dtv.com/songs/60134551.mkv +Cody Simpson-Livin Easy,http://em.21dtv.com/songs/60121234.mkv +Sam Smith-Like I Can,http://em.21dtv.com/songs/60106553.mkv +王嘉仪-LIKE A GUN,http://em.21dtv.com/songs/60133982.mkv +EXO-LIGHTSABER,http://em.21dtv.com/songs/60117450.mkv +Lucy Spraggan-Lighthouse,http://em.21dtv.com/songs/60098040.mkv +蔡妍-两个人,http://em.21dtv.com/songs/60111389.mkv +李松-两个人的生活一个人过,http://em.21dtv.com/songs/60115224.mkv +庄心妍-两个人的回忆一个人过,http://em.21dtv.com/songs/60105804.mkv +潘长江-两个对我恩重如山的人,http://em.21dtv.com/songs/60091668.mkv +DJ-凉风有信,http://em.21dtv.com/songs/30000634.mkv +华晨宇-Let You Go,http://em.21dtv.com/songs/60103947.mkv +叶俊岑-LET US TRY,http://em.21dtv.com/songs/60125263.mkv +叶俊岑-LET US TRY,http://em.21dtv.com/songs/60123727.mkv +龙宽+李嫣-Let's Love,http://em.21dtv.com/songs/60103737.mkv +大张伟+李嫣-Let's Love,http://em.21dtv.com/songs/60102079.mkv +严正花-Let Me Cry,http://em.21dtv.com/songs/60133326.mkv +刘伟男-Lemon Tree,http://em.21dtv.com/songs/60113288.mkv +刘伟男-Lemon Tree,http://em.21dtv.com/songs/60112530.mkv +王若琳-Lemon Tree,http://em.21dtv.com/songs/60106122.mkv +刘玮-绿都河源我可爱的家园,http://em.21dtv.com/songs/60089681.mkv +DJ-蜡笔小新,http://em.21dtv.com/songs/30000630.mkv +小曾-老兵你什么时候回拉萨,http://em.21dtv.com/songs/60104080.mkv +幸田来未-lalalalala,http://em.21dtv.com/songs/60098323.mkv +UME BAND-LADY FIRST,http://em.21dtv.com/songs/60128712.mkv +邓子霆-恋爱到底是什么一回事,http://em.21dtv.com/songs/60080123.mkv +陈奕迅-可以了,http://em.21dtv.com/songs/60110616.mkv +万山红-看天下劳苦大众都解放,http://em.21dtv.com/songs/60120269.mkv +豫剧-哭啼啼将官人急忙搀起,http://em.21dtv.com/songs/60090221.mkv +DJ-渴死的鱼DJ,http://em.21dtv.com/songs/30000645.mkv +郑志立-可是对不起(加长版),http://em.21dtv.com/songs/60094716.mkv +崔健-快让我在雪地上撒点野,http://em.21dtv.com/songs/60133618.mkv +崔健-快让我在雪地上撒点野,http://em.21dtv.com/songs/60121613.mkv +盛一伦+崔子格-可念不可说,http://em.21dtv.com/songs/60129447.mkv +卓依婷-开门红_这个日子真好,http://em.21dtv.com/songs/60087462.mkv +DJ-快渴死的鱼,http://em.21dtv.com/songs/30000625.mkv +豫剧-抗军令定斩人头不留情,http://em.21dtv.com/songs/60134582.mkv +龙梅子-哭不回的爱哭不回的你,http://em.21dtv.com/songs/60112413.mkv +S.H.E-金钟罩铁布衫,http://em.21dtv.com/songs/60109867.mkv +亚东-今夜想起寨子里的姑娘,http://em.21dtv.com/songs/60119248.mkv +ALIN-今夜想念的人是不是我,http://em.21dtv.com/songs/60087175.mkv +A-Lin-今夜想念的人是不是我,http://em.21dtv.com/songs/60087173.mkv +李玖龙-今夜就让我一个人喝醉,http://em.21dtv.com/songs/60108574.mkv +星月组合-今夜的你又在和谁约会,http://em.21dtv.com/songs/60135316.mkv +涓子-今夜的你又在和谁约会,http://em.21dtv.com/songs/60132686.mkv +望海高歌-今夜的你又在和谁约会,http://em.21dtv.com/songs/60113588.mkv +暴林-今夜的你又在和谁约会,http://em.21dtv.com/songs/60109399.mkv +暴林-今夜的你又和谁在约会,http://em.21dtv.com/songs/60117778.mkv +刘冲-就要爱到底[繁体版],http://em.21dtv.com/songs/60098141.mkv +魏伽妮-鸡西穆棱河我的母亲河,http://em.21dtv.com/songs/60085250.mkv +阿弟仔-今天又下了一丝丝的雨(无原唱),http://em.21dtv.com/songs/60095959.mkv +李健-今天是你的生日,妈妈,http://em.21dtv.com/songs/60108559.mkv +京剧-见太娘跪倒地魂飞天外,http://em.21dtv.com/songs/60089602.mkv +红蔷薇-今生和你一起白头到老,http://em.21dtv.com/songs/60120846.mkv +NC.A-即使回到记忆中的那天,http://em.21dtv.com/songs/60134770.mkv +拉毛王旭-九色甘南 寻梦的地方,http://em.21dtv.com/songs/60111117.mkv +阿日布杰+哈斯+阿箃娜-金色的梦幻+巴丹吉林(演唱会),http://em.21dtv.com/songs/60085303.mkv +歌浴森-脚是大地上飞翔的翅膀,http://em.21dtv.com/songs/60124173.mkv +晓风久久-就让星星带走我的思念,http://em.21dtv.com/songs/60086643.mkv +风芝韵-就让星星带走我的思念,http://em.21dtv.com/songs/60097974.mkv +张继红-假如幸福的话拍拍手吧,http://em.21dtv.com/songs/60089284.mkv +斯琴巴特-军人的情怀妻子的心声,http://em.21dtv.com/songs/60091252.mkv +BOBBY-举起盾牌Bounce,http://em.21dtv.com/songs/60122351.mkv +Lady Gaga-John Wayne,http://em.21dtv.com/songs/60132093.mkv +谢世超-寂寞的人唱着寂寞的歌,http://em.21dtv.com/songs/60085258.mkv +DJ-寂寞的情人节,http://em.21dtv.com/songs/30000626.mkv +淳歌-寂寞的情歌我唱给谁听,http://em.21dtv.com/songs/60115272.mkv +民歌-九里里山疙瘩十里里沟,http://em.21dtv.com/songs/60091551.mkv +张火丁-江姐之春蚕到死丝方尽,http://em.21dtv.com/songs/60104137.mkv +唐古-究竟是谁的错,http://em.21dtv.com/songs/60118462.mkv +华伦-家驹你永远活在我心中,http://em.21dtv.com/songs/60113311.mkv +张赫宣+孟根花-寂静的天空,http://em.21dtv.com/songs/60125537.mkv +群星-激光中+举高只手+RESPECT就OK,http://em.21dtv.com/songs/60093043.mkv +孙露-酒干倘卖无,http://em.21dtv.com/songs/60128973.mkv +文儿+老猫-交个男朋友还是养条狗,http://em.21dtv.com/songs/60125608.mkv +老猫+文儿-交个男朋友还是养条狗,http://em.21dtv.com/songs/60123089.mkv +邢天溯-居尔特,http://em.21dtv.com/songs/60108919.mkv +刘心宇-就当作从来没有爱过我,http://em.21dtv.com/songs/60103113.mkv +DJ舞曲-酒吧热门慢摇舞曲精选,http://em.21dtv.com/songs/50000190.mkv +南征北战-骄傲的少年,http://em.21dtv.com/songs/60120391.mkv +至上励合-I WANT YOU,http://em.21dtv.com/songs/60107150.mkv +Kelly Clarkson-Invincible,http://em.21dtv.com/songs/60114343.mkv +蒋卓嘉-In The End,http://em.21dtv.com/songs/60104402.mkv +Yellow Claw+DJ Mustard+Ty Dolla $ign+Tyga-In My Room,http://em.21dtv.com/songs/60119212.mkv +张敬轩-I Need You(演唱会),http://em.21dtv.com/songs/60105043.mkv +Celine Dion+Ne_Yo-Incredible,http://em.21dtv.com/songs/60101740.mkv +DAY6-Im Serious,http://em.21dtv.com/songs/60134665.mkv +美-I Miss You,http://em.21dtv.com/songs/60135630.mkv +鲸鱼岛乐队-I Miss You,http://em.21dtv.com/songs/60134483.mkv +N SONIC-I MISS YOU,http://em.21dtv.com/songs/60123515.mkv +张文绮-I Miss You,http://em.21dtv.com/songs/60122724.mkv +张文绮-I Miss You,http://em.21dtv.com/songs/60116793.mkv +邓佳坤-Im In Love,http://em.21dtv.com/songs/60130783.mkv +陈彦允-Im Burning,http://em.21dtv.com/songs/60135916.mkv +张媛媛-I'm Boring,http://em.21dtv.com/songs/60102209.mkv +尾崎豊-I LOVE YOU,http://em.21dtv.com/songs/60135153.mkv +Axwell Ingrosso+Kid Ink-I Love You,http://em.21dtv.com/songs/60133171.mkv +金范秀-I Love You,http://em.21dtv.com/songs/60130816.mkv +尹飞儿-I love you,http://em.21dtv.com/songs/60125450.mkv +尹飞儿-I Love You,http://em.21dtv.com/songs/60122687.mkv +乐童音乐家-I Love You,http://em.21dtv.com/songs/60108269.mkv +OK绷-I LOVE YOU,http://em.21dtv.com/songs/60108237.mkv +Skylar Grey-I know You,http://em.21dtv.com/songs/60119188.mkv +洪大光-I Feel You,http://em.21dtv.com/songs/60104282.mkv +无法沟通-i dont cry,http://em.21dtv.com/songs/60130375.mkv +林泳-I Dare You,http://em.21dtv.com/songs/60106984.mkv +林俊杰+jason Mraz-I Am Alive,http://em.21dtv.com/songs/60107827.mkv +孙子涵-回忆那么伤,http://em.21dtv.com/songs/60128960.mkv +DJ-回心转意DJ,http://em.21dtv.com/songs/30000656.mkv +疯医-HUSH A BYE,http://em.21dtv.com/songs/60135588.mkv +豫剧-恨上来骂法海不如禽兽,http://em.21dtv.com/songs/60134568.mkv +陆正信-红水河照耀我幸福的家,http://em.21dtv.com/songs/60100557.mkv +周深-化身孤岛的鲸,http://em.21dtv.com/songs/60115760.mkv +信+朴惠子-火烧的寂寞,http://em.21dtv.com/songs/60122498.mkv +DJ-回声DJ,http://em.21dtv.com/songs/30000652.mkv +舞曲-嗨曲 (迪厅开场曲),http://em.21dtv.com/songs/50000231.mkv +Daisy x Daisy-Holy Shine,http://em.21dtv.com/songs/60108216.mkv +豫剧-花木兰羞答答施礼拜上,http://em.21dtv.com/songs/60134605.mkv +张冬玲-花开的时候你就来看我,http://em.21dtv.com/songs/60105017.mkv +孙楠+丛浩楠-花祭^冬雨,http://em.21dtv.com/songs/60102117.mkv +板凳甜八宝-HIT HIT红不让,http://em.21dtv.com/songs/60104237.mkv +黄龄+张微+李博+霍上-High歌,http://em.21dtv.com/songs/60123409.mkv +黄佳欣-坏坏惹人爱,http://em.21dtv.com/songs/60124733.mkv +胡彦斌-还魂门,http://em.21dtv.com/songs/60127299.mkv +何鹏+赵真+东方红艳-火火的姑娘(DJ版),http://em.21dtv.com/songs/50000198.mkv +刘涛-回顾邓丽君,http://em.21dtv.com/songs/60122526.mkv +裸儿+杨宗纬-会飞的野马,http://em.21dtv.com/songs/60109618.mkv +廖梦心-Here We Go,http://em.21dtv.com/songs/60122700.mkv +Amy Diamond-Heartbeats,http://em.21dtv.com/songs/60111579.mkv +DJ-挥不去的影子,http://em.21dtv.com/songs/30000624.mkv +EZFLY组合-海边的抒情是为了女孩[纪念版],http://em.21dtv.com/songs/60099658.mkv +Happy Girl-Happy Girl,http://em.21dtv.com/songs/60126527.mkv +Pentatonix-Hallelujah,http://em.21dtv.com/songs/60131097.mkv +游鸿明-和爱过的人说我的伤心,http://em.21dtv.com/songs/60112087.mkv +西野加奈-あなたの好きなところ,http://em.21dtv.com/songs/60122104.mkv +谢安琪-跟着眼泪转弯,http://em.21dtv.com/songs/60118047.mkv +张振宇-跟着幸福走,http://em.21dtv.com/songs/60111870.mkv +李克勤-给自己的情书,http://em.21dtv.com/songs/60112745.mkv +官灵芝-给自己的歌,http://em.21dtv.com/songs/60126791.mkv +潘粤明-给自己的歌,http://em.21dtv.com/songs/60124225.mkv +新裤子-关于夜晚和失眠的世界,http://em.21dtv.com/songs/60129168.mkv +常石磊-高原Top,http://em.21dtv.com/songs/60119483.mkv +吉香-高原上走来吉祥的牦牛,http://em.21dtv.com/songs/60090802.mkv +蔡晓-感谢上天赐给我的礼物,http://em.21dtv.com/songs/60134200.mkv +李健-故乡山川 乌苏里船歌,http://em.21dtv.com/songs/60110263.mkv +万妮达-给我一个吻,http://em.21dtv.com/songs/60126567.mkv +孟鹏+塔斯肯-跟往事干杯,http://em.21dtv.com/songs/60125398.mkv +痛仰乐队-敢问路在何方,http://em.21dtv.com/songs/60121969.mkv +孙楠-给所有知道我名字的人,http://em.21dtv.com/songs/60115093.mkv +吴秀波-给所有知道我名字的人,http://em.21dtv.com/songs/60102035.mkv +羽泉-给所有知道我名字的人,http://em.21dtv.com/songs/60080041.mkv +罗琦-给所有知道我名字的人,http://em.21dtv.com/songs/60096434.mkv +刘德华-该说的我已说,http://em.21dtv.com/songs/60103926.mkv +简迷离-怪兽不跳舞,http://em.21dtv.com/songs/60108795.mkv +Double K+李玟雨-Green wave,http://em.21dtv.com/songs/60134667.mkv +廖昌永-共青团员之歌,http://em.21dtv.com/songs/60123901.mkv +Jake Miller-Good Thing,http://em.21dtv.com/songs/60133214.mkv +颜慧萍-Good Night,http://em.21dtv.com/songs/60106452.mkv +张雷-给你自由我失去了所有,http://em.21dtv.com/songs/60111901.mkv +马仕健-给你所有的泪水够不够,http://em.21dtv.com/songs/60081115.mkv +阿火-姑娘你要嫁人就嫁给我,http://em.21dtv.com/songs/60113046.mkv +李泫憙-Give U All,http://em.21dtv.com/songs/60111166.mkv +lol-Girlfriend,http://em.21dtv.com/songs/60134743.mkv +Solidemo-Girlfriend,http://em.21dtv.com/songs/60112461.mkv +SNH48-Girl Crush,http://em.21dtv.com/songs/60134799.mkv +Adam Lambert-Ghost Town,http://em.21dtv.com/songs/60111573.mkv +阿妮桑-孤独的人最懂伤感情歌,http://em.21dtv.com/songs/60130822.mkv +阿妮桑-孤独的人最懂伤感情歌,http://em.21dtv.com/songs/60129708.mkv +青燕子演唱组-孤独的牧羊人,http://em.21dtv.com/songs/60112381.mkv +唐古-放下你不容易,http://em.21dtv.com/songs/60126729.mkv +DJ-凤舞九天,http://em.21dtv.com/songs/30000631.mkv +邰正宵-放我的真心在你的手心,http://em.21dtv.com/songs/60097970.mkv +MOBB-FULL HOUSE,http://em.21dtv.com/songs/60129969.mkv +戏曲-非是我嘱咐叮咛把话讲,http://em.21dtv.com/songs/60089308.mkv +张胜淼+哆哆-分手了就请别再说想我,http://em.21dtv.com/songs/60112693.mkv +刘溪-分手就分手何必做朋友,http://em.21dtv.com/songs/60120366.mkv +刘德斌-分手后还能不能做朋友,http://em.21dtv.com/songs/60134931.mkv +关泽楠-分手不是我想要的结果,http://em.21dtv.com/songs/60103896.mkv +陈升-凡人的告白书,http://em.21dtv.com/songs/60108972.mkv +Joel Compass-Forgive Me,http://em.21dtv.com/songs/60124910.mkv +Cee Lo Green-Forget You,http://em.21dtv.com/songs/60109084.mkv +陈兴瑜-非你莫嫁,http://em.21dtv.com/songs/60099575.mkv +豫剧-府门外三声炮花轿起动,http://em.21dtv.com/songs/60134566.mkv +Jessie J-Flashlight,http://em.21dtv.com/songs/60112439.mkv +DJ-疯狂列车之2005串烧,http://em.21dtv.com/songs/30000637.mkv +SONAMOO-First Kiss,http://em.21dtv.com/songs/60129992.mkv +Code Kunst+G.Soul+Tablo-Fire Water,http://em.21dtv.com/songs/60133185.mkv +李佩玲-Fight Song,http://em.21dtv.com/songs/60126993.mkv +杨凯琳-FIGHT SONG,http://em.21dtv.com/songs/60124102.mkv +Rachel Platten-Fight Song,http://em.21dtv.com/songs/60111641.mkv +谢珊-风过泸州带酒香,http://em.21dtv.com/songs/60118057.mkv +Hugo Nandez+Dj.Jonny Rose-Feel Alive,http://em.21dtv.com/songs/60123478.mkv +杨燕毅-扶大宋锦华夷赤心肝胆,http://em.21dtv.com/songs/60091411.mkv +Toni Braxton-Fairy Tale,http://em.21dtv.com/songs/60103045.mkv +Passenger-Everything,http://em.21dtv.com/songs/60131096.mkv +小男孩乐团-Everything,http://em.21dtv.com/songs/60111829.mkv +蒙太奇乐队-Everything,http://em.21dtv.com/songs/60107979.mkv +Kaho-Every Hero,http://em.21dtv.com/songs/60093929.mkv +豫剧-耳旁边忽听得金鸡三唱,http://em.21dtv.com/songs/60134603.mkv +DJ-2002年第一场雪DJ,http://em.21dtv.com/songs/30000653.mkv +德德玛-鄂尔多斯我美丽的家乡,http://em.21dtv.com/songs/60091218.mkv +韩磊-二百个春秋五千年的戏,http://em.21dtv.com/songs/60088954.mkv +张杰-Earth Song,http://em.21dtv.com/songs/60110201.mkv +豫剧-打坐在李离庙细问家桑,http://em.21dtv.com/songs/60134580.mkv +DJ-地狱之门DISCO,http://em.21dtv.com/songs/30000646.mkv +李伟-但愿人长久[央视版],http://em.21dtv.com/songs/60098448.mkv +我不是一只小小鸟-但愿人长久,http://em.21dtv.com/songs/60129159.mkv +郭涛-电影那些年,http://em.21dtv.com/songs/60126287.mkv +Babylon-第一次见的女人都漂亮,http://em.21dtv.com/songs/60123445.mkv +张强-等我有了钱你就嫁给我,http://em.21dtv.com/songs/60126881.mkv +潘粤明-带我到山顶,http://em.21dtv.com/songs/60122972.mkv +韩信-待我长发及腰娶我可好,http://em.21dtv.com/songs/60124689.mkv +SNH48-DU DU Baby,http://em.21dtv.com/songs/60124991.mkv +杜青-多少人走着走着就散了,http://em.21dtv.com/songs/60132578.mkv +杜青-多少人走着走着就散了,http://em.21dtv.com/songs/60131516.mkv +刚力彩芽-くやしいけど大事な人,http://em.21dtv.com/songs/60110049.mkv +陶喆+范晓萱+刘欢+胡海泉-导师开场曲,http://em.21dtv.com/songs/60119035.mkv +舞曲-多情人都把灵魂给了谁,http://em.21dtv.com/songs/60090130.mkv +六哲-多情的人总比无情的伤,http://em.21dtv.com/songs/60087352.mkv +王慕然-动情的女人结局都一样,http://em.21dtv.com/songs/60105245.mkv +Joey Graceffa-Don'T Wait,http://em.21dtv.com/songs/60124911.mkv +5 Seconds Of Summer-Don't Stop,http://em.21dtv.com/songs/60102991.mkv +Kent Jones-Don'T Mind,http://em.21dtv.com/songs/60124925.mkv +Chris Webby-Do Like Me,http://em.21dtv.com/songs/60111593.mkv +枫舞+小筑-等你在最初相遇的地方,http://em.21dtv.com/songs/60121827.mkv +赵真-爹娘的眼泪只为儿女流,http://em.21dtv.com/songs/60122145.mkv +哈哈一笑很倾城+暴脾气的小明-对你爱不完,http://em.21dtv.com/songs/60128916.mkv +吴莫愁-大美丽My Lips,http://em.21dtv.com/songs/60117614.mkv +吴莫愁-大美丽My Lips,http://em.21dtv.com/songs/60115754.mkv +王晓敏-断了联系不代表不想你,http://em.21dtv.com/songs/60131663.mkv +张满强-打开你亿万美金的开关,http://em.21dtv.com/songs/60100031.mkv +苗小青-多叫一声哥少爬十里坡,http://em.21dtv.com/songs/60112173.mkv +DJ-DJ我最狂,http://em.21dtv.com/songs/30000678.mkv +DJ-DJ双龙中文21,http://em.21dtv.com/songs/30000681.mkv +京剧-党叫儿做一个刚强铁汉,http://em.21dtv.com/songs/60090524.mkv +Skrillex+CL+ G Dragon-Dirty Vibe,http://em.21dtv.com/songs/60107433.mkv +Ke$Ha+Iggy Pop-Dirty Love,http://em.21dtv.com/songs/60124922.mkv +Serebro-Dirty Kiss,http://em.21dtv.com/songs/60128697.mkv +王梓旭-大海有多深鱼儿不知道,http://em.21dtv.com/songs/60111273.mkv +喻嘉-打工苦,http://em.21dtv.com/songs/60112588.mkv +Madonna-Devil Pray,http://em.21dtv.com/songs/60111630.mkv +小野正利-Departure!,http://em.21dtv.com/songs/60109280.mkv +TTS-Dear Santa,http://em.21dtv.com/songs/60117503.mkv +优客李林-等待是一生最初的苍老,http://em.21dtv.com/songs/60087298.mkv +郭富城-到底什么时候你才知道,http://em.21dtv.com/songs/60102805.mkv +豫剧-当初他甜言蜜语将我骗,http://em.21dtv.com/songs/60134567.mkv +陈娇-等不起的爱情,http://em.21dtv.com/songs/60104551.mkv +豫剧-打不尽豺狼决不下战场,http://em.21dtv.com/songs/60134579.mkv +High4-Day By Day,http://em.21dtv.com/songs/60108228.mkv +DJCandy+王语心+祁隆-Darling我爱你,http://em.21dtv.com/songs/60119132.mkv +王语心+祁隆-Darling我爱你,http://em.21dtv.com/songs/60114695.mkv +Paloalto+Zico+孝琳-DARK PANDA,http://em.21dtv.com/songs/60122406.mkv +萧全-当爱情不在美丽的时候,http://em.21dtv.com/songs/60090188.mkv +凡间精灵-等爱的情人都在夜里哭,http://em.21dtv.com/songs/60089157.mkv +DJ-嘟啊嘟,http://em.21dtv.com/songs/30000639.mkv +Teen Top-从早上开始到早上为止,http://em.21dtv.com/songs/60113192.mkv +储毅-唱自己的歌让别人去说,http://em.21dtv.com/songs/60101911.mkv +豫剧-闯一条致富路幸福长久,http://em.21dtv.com/songs/60134614.mkv +德德玛-草原上有一座美丽的城,http://em.21dtv.com/songs/60091216.mkv +德德玛-草原上有个美丽的传说,http://em.21dtv.com/songs/60091217.mkv +胡斌-草原上升起不落的太阳,http://em.21dtv.com/songs/60117143.mkv +乌兰图雅-草原上升起不落的太阳,http://em.21dtv.com/songs/60116517.mkv +石头-草原上升起不落的太阳,http://em.21dtv.com/songs/60111324.mkv +游子组合-草原上升起不落的太阳,http://em.21dtv.com/songs/60107891.mkv +李潮-草原上升起不落的太阳,http://em.21dtv.com/songs/60082696.mkv +姚东耀-草原上升起不落的太阳,http://em.21dtv.com/songs/60080811.mkv +豫剧-常言说不看僧面看佛面,http://em.21dtv.com/songs/60134564.mkv +歌一生+音乐走廊-草原姑娘爱上草原的郎,http://em.21dtv.com/songs/60112816.mkv +豫剧-朝阳沟好地方名不虚传,http://em.21dtv.com/songs/60134587.mkv +庄心妍-差一点,http://em.21dtv.com/songs/60112653.mkv +金秀妍-Cutie Girl,http://em.21dtv.com/songs/60126303.mkv +DJ-城市炸弹,http://em.21dtv.com/songs/30000695.mkv +DJ-城市炸弹,http://em.21dtv.com/songs/30000694.mkv +果然哥-城市套路深俺要回农村,http://em.21dtv.com/songs/60129301.mkv +浪哥-城市水太深我要回农村,http://em.21dtv.com/songs/60129348.mkv +DJ-超速_世界上最伤心的人,http://em.21dtv.com/songs/30000692.mkv +DJ-超速快串,http://em.21dtv.com/songs/30000693.mkv +曾春年-Crazy Love,http://em.21dtv.com/songs/60121744.mkv +袁娅维-Crazy^不同凡想,http://em.21dtv.com/songs/60117205.mkv +刘胡轶-从前慢[中国好歌曲],http://em.21dtv.com/songs/60109193.mkv +大石昌良-纯情可怜书店屋ガール,http://em.21dtv.com/songs/60107637.mkv +晨熙-痴情的时候最容易受伤,http://em.21dtv.com/songs/60135323.mkv +谢天笑-潮起潮落是什么都不为,http://em.21dtv.com/songs/60110534.mkv +Florida Georgia Line-Confession,http://em.21dtv.com/songs/60121248.mkv +Goo Goo Dolls-Come To Me,http://em.21dtv.com/songs/60103780.mkv +WINNER-Color Ring,http://em.21dtv.com/songs/60103834.mkv +Eddy Kim+Solar-Coffee&Tea,http://em.21dtv.com/songs/60112431.mkv +MC阿哲-吹牛逼,http://em.21dtv.com/songs/60126537.mkv +梁咏琪-聪明的女人爱情黑盒子,http://em.21dtv.com/songs/60090014.mkv +罗大佑-沉默的表示吉卜赛情人,http://em.21dtv.com/songs/60090112.mkv +罗大佑+袁佩英-沉默的表示吉卜赛情人,http://em.21dtv.com/songs/60090111.mkv +刘晓斌-城里套路深我想回农村,http://em.21dtv.com/songs/60128830.mkv +DJ-吹喇叭,http://em.21dtv.com/songs/30000696.mkv +蓝雨-除了爱我们还能做什么,http://em.21dtv.com/songs/60104410.mkv +刘嘉亮-此刻你听好了,http://em.21dtv.com/songs/60126632.mkv +王诗安-穿盔甲的精灵,http://em.21dtv.com/songs/60095009.mkv +林子祥-从今失去她_最爱是谁,http://em.21dtv.com/songs/60088093.mkv +DJ-超级慢嗨,http://em.21dtv.com/songs/30000691.mkv +刘美麟-沧海一声笑,http://em.21dtv.com/songs/60125219.mkv +张书宝-闯海人劈波斩浪闯天下,http://em.21dtv.com/songs/60111850.mkv +DJ-超嗨轰炸全英文CLUB慢摇,http://em.21dtv.com/songs/30000690.mkv +Sia-Chandelier,http://em.21dtv.com/songs/60119184.mkv +VIXX-Chained Up,http://em.21dtv.com/songs/60116487.mkv +毛宁-穿过你的黑发的我的眼,http://em.21dtv.com/songs/60082737.mkv +王岚-穿过你的黑发的我的手,http://em.21dtv.com/songs/60128223.mkv +张新-穿过你的黑发的我的手,http://em.21dtv.com/songs/60091112.mkv +萧磊-穿过大半个中国去睡你,http://em.21dtv.com/songs/60128359.mkv +徐若瑄-长大以后不要忘记的事,http://em.21dtv.com/songs/60084966.mkv +DJ-冲动的惩罚DJ,http://em.21dtv.com/songs/30000655.mkv +李泽坚-村长的新娘[DJ版],http://em.21dtv.com/songs/60102348.mkv +薛之谦-丑八怪,http://em.21dtv.com/songs/60122093.mkv +Gallant+Tablo+Eric Nam-Cave Me In,http://em.21dtv.com/songs/60132080.mkv +As One-Candy Ball,http://em.21dtv.com/songs/60119100.mkv +张驰-别在转身的时候说爱我,http://em.21dtv.com/songs/60084913.mkv +李雨寿-不只有读书才会有出息,http://em.21dtv.com/songs/60135383.mkv +冷漠-别在需要的时候想起我,http://em.21dtv.com/songs/60118376.mkv +蔡健雅-别找我麻烦,http://em.21dtv.com/songs/60117195.mkv +黄小琥-不只是朋友,http://em.21dtv.com/songs/60118212.mkv +唐古-别再轻易对我许下承诺,http://em.21dtv.com/songs/60120421.mkv +林佳仪-不在你面前流泪说再见,http://em.21dtv.com/songs/60089991.mkv +孙露-别在分手的时候说爱我,http://em.21dtv.com/songs/60115804.mkv +管康海-不要再用谎言伤我的心,http://em.21dtv.com/songs/60118831.mkv +DJ-不要在我寂寞的时候,http://em.21dtv.com/songs/30000689.mkv +范小倩-不要再说你依然爱着我,http://em.21dtv.com/songs/60120897.mkv +祁隆-不要再让我一个人寂寞,http://em.21dtv.com/songs/60098675.mkv +DJ-不要再来伤害我,http://em.21dtv.com/songs/30000688.mkv +庄心妍-不要再缠着我,http://em.21dtv.com/songs/60126835.mkv +雪十郎-不要因为寂寞而去爱我,http://em.21dtv.com/songs/60084940.mkv +李纲锋-不要用你的眼泪安慰我,http://em.21dtv.com/songs/60131508.mkv +彭筝-别用她的感情伤我的心,http://em.21dtv.com/songs/60084911.mkv +刘继业-不要让我在黑夜里哭泣,http://em.21dtv.com/songs/60084938.mkv +金久哲-不要让女人轻易流眼泪,http://em.21dtv.com/songs/60104507.mkv +吉佑社-毕业那天我们一起失恋,http://em.21dtv.com/songs/60103967.mkv +SG Wannabe-By My Side,http://em.21dtv.com/songs/60132129.mkv +林一峰-By My Side,http://em.21dtv.com/songs/60121814.mkv +毕书尽-By My Side,http://em.21dtv.com/songs/60108655.mkv +刀刀刀-别用烈酒试探我的寂寞,http://em.21dtv.com/songs/60104806.mkv +陈堃古月-不要烦我女友,http://em.21dtv.com/songs/60121069.mkv +王宏恩-不用担心我,http://em.21dtv.com/songs/60125913.mkv +李佩玲-不要对他说,http://em.21dtv.com/songs/60126994.mkv +王杰-不要从我的眼中离开我,http://em.21dtv.com/songs/60090086.mkv +Miss A-不要别的男人 只要你,http://em.21dtv.com/songs/60109849.mkv +巴图-被驯服的象,http://em.21dtv.com/songs/60122697.mkv +和田光司-Butter Fly,http://em.21dtv.com/songs/60120413.mkv +Jessie J+2 Chainz-Burnin' Up,http://em.21dtv.com/songs/60104692.mkv +帅霖+大哲-被他伤透你才会想起我,http://em.21dtv.com/songs/60111038.mkv +DJ-不是因为寂寞才想你DJ,http://em.21dtv.com/songs/30000677.mkv +麦霸阿杜-别伤一个爱你的女人心,http://em.21dtv.com/songs/60108178.mkv +郑源-别说我的眼泪你无所谓,http://em.21dtv.com/songs/60126280.mkv +甘萍-不是所有相逢都能守侯,http://em.21dtv.com/songs/60091754.mkv +李日詹-不是说你不能没有我吗,http://em.21dtv.com/songs/60130421.mkv +唐志星-不是钱的事有钱就没事,http://em.21dtv.com/songs/60128924.mkv +唐志星-不是钱的事有钱就没事,http://em.21dtv.com/songs/60123783.mkv +唐志星+黄丽群-不是钱的事有钱就没事,http://em.21dtv.com/songs/60111786.mkv +婷汐+李俊杰-别让我放不下,http://em.21dtv.com/songs/60110972.mkv +张杰+齐晨君-不让我的眼泪陪我过夜,http://em.21dtv.com/songs/60111079.mkv +胡夏-不让我的眼泪陪我过夜(演唱会),http://em.21dtv.com/songs/60082659.mkv +樊桐舟-不让我的眼泪陪我过夜,http://em.21dtv.com/songs/60099356.mkv +韩晓辉-别让伤痛撕碎你的梦想,http://em.21dtv.com/songs/60116364.mkv +ASTRO-Breathless,http://em.21dtv.com/songs/60123441.mkv +Sia-Breathe Me,http://em.21dtv.com/songs/60101824.mkv +The Script-Break Even,http://em.21dtv.com/songs/60113196.mkv +张杰+高振铭-别怕我伤心,http://em.21dtv.com/songs/60112678.mkv +张惠妹-Booty Call,http://em.21dtv.com/songs/60105031.mkv +打扰一下-不能说的秘密,http://em.21dtv.com/songs/60109387.mkv +季秋洋-不能没有你,http://em.21dtv.com/songs/60118512.mkv +阿龙正罡-变了心的女人,http://em.21dtv.com/songs/60108969.mkv +Lenka-Blue Skies,http://em.21dtv.com/songs/60109841.mkv +严艺丹-BlingBling,http://em.21dtv.com/songs/60113222.mkv +耳听爱情的年纪,http://em.21dtv.com/songs/60108858.mkv +王凯琪-Blank Page,http://em.21dtv.com/songs/60105242.mkv +吉佑社-不解释的结局,http://em.21dtv.com/songs/60125270.mkv +郭慧敏-不嫁高富帅不爱美富白,http://em.21dtv.com/songs/60104495.mkv +王奕程-贝加尔湖畔,http://em.21dtv.com/songs/60125904.mkv +DJ-冰河时代(中文版),http://em.21dtv.com/songs/30000686.mkv +DJ-冰河时代II,http://em.21dtv.com/songs/30000641.mkv +DJ-冰河时代,http://em.21dtv.com/songs/30000687.mkv +DJ-冰河时代,http://em.21dtv.com/songs/30000651.mkv +DJ-冰河时代Ⅲ,http://em.21dtv.com/songs/30000644.mkv +PIUS+Jin-Be With Me,http://em.21dtv.com/songs/60120234.mkv +张杰-Better Man,http://em.21dtv.com/songs/60132441.mkv +廖国钺-把耳朵叫醒,http://em.21dtv.com/songs/60125485.mkv +Ariana Grande-Be Alright,http://em.21dtv.com/songs/60123440.mkv +宋荷艺-Be Alright,http://em.21dtv.com/songs/60110157.mkv +何俊-百度也搜不到哥的伤悲,http://em.21dtv.com/songs/60132199.mkv +蔡黄汝-壁咚 Beedong,http://em.21dtv.com/songs/60115364.mkv +邓小龙-宝贝呀宝贝[DJ版],http://em.21dtv.com/songs/60102776.mkv +阿摩司-爸爸去哪儿(英文版),http://em.21dtv.com/songs/60094738.mkv +潘世科-爸爸妈妈回家过年好吗,http://em.21dtv.com/songs/60093740.mkv +DJ-不变的音乐,http://em.21dtv.com/songs/30000642.mkv +易丹-把爱塞进超载的伤痛里,http://em.21dtv.com/songs/60089921.mkv +KNK-BACK AGAIN,http://em.21dtv.com/songs/60122390.mkv +徐一鸣-爱一个人为什么那么难,http://em.21dtv.com/songs/60104151.mkv +孙燕姿-爱一个人就该相信自己,http://em.21dtv.com/songs/60090931.mkv +李雨寿-爱一个人不一定拥有她,http://em.21dtv.com/songs/60125727.mkv +林薇琪-爱已不是你想珍惜的事,http://em.21dtv.com/songs/60099346.mkv +DJ-哎呦哎呦对不起,http://em.21dtv.com/songs/30000683.mkv +王强-爱相随[原MV消伴],http://em.21dtv.com/songs/60120766.mkv +豫剧-俺外甥在部队给我来信,http://em.21dtv.com/songs/60134541.mkv +花たん-Awaken Day,http://em.21dtv.com/songs/60135670.mkv +Machine Gun Kelly+Hailee Steinfeld-At My Best,http://em.21dtv.com/songs/60134750.mkv +DJ-爱上这样的女人DJ,http://em.21dtv.com/songs/30000654.mkv +湘东雨-爱上一个人 只要一天,http://em.21dtv.com/songs/60093676.mkv +陈明真-爱上一个人是很苦的事,http://em.21dtv.com/songs/60088882.mkv +林忆莲-爱上一个人不回家的人,http://em.21dtv.com/songs/60088099.mkv +曹沁芳-爱是悬崖峭壁边缘的花,http://em.21dtv.com/songs/60125652.mkv +陈少华+孟杨-爱上你不只是一个人错,http://em.21dtv.com/songs/60130837.mkv +胡杰夕-爱情这杯酒怎么喝都醉,http://em.21dtv.com/songs/60080004.mkv +干露露-爱情这杯酒谁喝都得醉,http://em.21dtv.com/songs/60113441.mkv +干毛毛-爱情这杯酒谁喝都得醉,http://em.21dtv.com/songs/60110173.mkv +孙露-爱情这杯酒谁喝都得醉,http://em.21dtv.com/songs/60094880.mkv +钟应龙-爱情已走远dj,http://em.21dtv.com/songs/60105447.mkv +DJ-爱情小偷,http://em.21dtv.com/songs/30000685.mkv +李天平+朱敏-爱情是什么爱情是什么,http://em.21dtv.com/songs/60110273.mkv +冷漠-爱情伤了你爱情害了我,http://em.21dtv.com/songs/60084839.mkv +凤娘-爱情就是连你我都不懂,http://em.21dtv.com/songs/60084831.mkv +林志美-爱情幻像^月影^初恋,http://em.21dtv.com/songs/60113706.mkv +葛笑-爱情的眼泪伤了我的心,http://em.21dtv.com/songs/60110497.mkv +MY LITTLE AIRPORT-爱情DISABLED,http://em.21dtv.com/songs/60119167.mkv +萧磊-爱情不像我们说的那样,http://em.21dtv.com/songs/60107168.mkv +孙家山-爱情北极圈[DJ版],http://em.21dtv.com/songs/60104041.mkv +刘思涵-Angle,http://em.21dtv.com/songs/60125188.mkv +祁隆-爱你的话还没有说出口,http://em.21dtv.com/songs/60102590.mkv +DJ-爱你爱的死心塌地,http://em.21dtv.com/songs/30000684.mkv +Nico&Vinz-Am I Wrong,http://em.21dtv.com/songs/60111639.mkv +李敏镐-Always you,http://em.21dtv.com/songs/60133799.mkv +伊晗-暗恋是一个奇怪的东西,http://em.21dtv.com/songs/60134877.mkv +张信哲-爱就一个字,http://em.21dtv.com/songs/60116776.mkv +DJViper+龙梅子-爱就要爆灯(Mix),http://em.21dtv.com/songs/50000132.mkv +郑东-爱过了你爱过了几个秋,http://em.21dtv.com/songs/60101185.mkv +李国强+淡雅清秋-爱过的人儿叫我怎能忘,http://em.21dtv.com/songs/60098459.mkv +DJ-阿凡提,http://em.21dtv.com/songs/30000682.mkv +Brandy-Afrodisiac,http://em.21dtv.com/songs/60108212.mkv +望海高歌-爱的心已太累,http://em.21dtv.com/songs/60125660.mkv +望海高歌-爱到心碎还想着你的美,http://em.21dtv.com/songs/60106913.mkv +黄晓明-爱的就是你[欣赏版],http://em.21dtv.com/songs/60102975.mkv +黄晓明-爱的就是你,http://em.21dtv.com/songs/60126480.mkv +曹格-爱的初体验,http://em.21dtv.com/songs/60129191.mkv +Team K-哀愁のトランペッター,http://em.21dtv.com/songs/60122432.mkv +DJ-A8时尚慢摇,http://em.21dtv.com/songs/30000680.mkv +初音ミク-ロミオとシンデレラ,http://em.21dtv.com/songs/60134946.mkv +中岛麻未-トライエヴリシング,http://em.21dtv.com/songs/60120284.mkv +マジカル☆どりーみん-マジカル☆チェンジ,http://em.21dtv.com/songs/60115653.mkv +スマイレージ-ミステリーナイト!,http://em.21dtv.com/songs/60109121.mkv +きゃりーぱみゅぱみゅ-にんじゃりばんばん,http://em.21dtv.com/songs/60098056.mkv +SDN48-终わらないアンコール,http://em.21dtv.com/songs/60067806.mkv +SOUND HORIZON-终端の王と异世界の骑士,http://em.21dtv.com/songs/60071528.mkv +FLUMPOOL-觉醒アイデンティティ,http://em.21dtv.com/songs/60062028.mkv +AKB48-呼び舍てファンタジー,http://em.21dtv.com/songs/60064315.mkv +HEY SAY JUMP-真夜中のシャドーボーイ,http://em.21dtv.com/songs/60069002.mkv +AKB48-ポニーテールとシュシュ,http://em.21dtv.com/songs/60061945.mkv +AKB48-ヘビーローテーション,http://em.21dtv.com/songs/60065757.mkv +AKB48-ファースト ラビット,http://em.21dtv.com/songs/60070435.mkv +モーニング娘-ピョコピョコ ウルトラ,http://em.21dtv.com/songs/60065756.mkv +ヒャダイン-ヒャダインのじょーじょーゆーじょー,http://em.21dtv.com/songs/60062190.mkv +SKE48-パレオはエメラルド,http://em.21dtv.com/songs/60060961.mkv +JAY'ED+JUJU-永远はただの一秒から,http://em.21dtv.com/songs/60065381.mkv +FLUMPOOL-どんな未来にも爱はある,http://em.21dtv.com/songs/60062027.mkv +AKB48-ちょうだい、ダーリン,http://em.21dtv.com/songs/60068025.mkv +指原莉乃-ソフトクリームキス,http://em.21dtv.com/songs/60071700.mkv +SMAP-世界に一つだけの花(演唱会),http://em.21dtv.com/songs/60062160.mkv +芦田爱菜-ステキな日曜日~gyu gyu グッデイ!~,http://em.21dtv.com/songs/60063821.mkv +芦田爱菜-ずっとずっとトモダチ,http://em.21dtv.com/songs/60071699.mkv +ドリームモーニング娘-シャイニング バタフライ,http://em.21dtv.com/songs/60065749.mkv +冰川清志-最後と决めた女だから,http://em.21dtv.com/songs/60072833.mkv +FUNKY MONKEY BABYS-この世界に生まれたわけ,http://em.21dtv.com/songs/60065747.mkv +SKE48-声がかすれるくらい,http://em.21dtv.com/songs/60066305.mkv +℃ UTE-君は自行车私は电车で归宅,http://em.21dtv.com/songs/60067148.mkv +BRIGHT-キミがいるから~ココロのとなりで,http://em.21dtv.com/songs/60065744.mkv +中孝介-想い出のすぐそばで,http://em.21dtv.com/songs/60063452.mkv +AKB48-思い出す度につらくなる,http://em.21dtv.com/songs/60071149.mkv +平原绫香-おひさま~大切なあなたへ,http://em.21dtv.com/songs/60062814.mkv +SDN48-おねだりシャンパン,http://em.21dtv.com/songs/60062149.mkv +Goose House-オトノナルホウヘ→,http://em.21dtv.com/songs/60104685.mkv +KARA-ウィンターマジック,http://em.21dtv.com/songs/60063819.mkv +CONAN-命のルーレット廻して,http://em.21dtv.com/songs/60061995.mkv +风男塾-雨ときどき晴れのち虹,http://em.21dtv.com/songs/60072753.mkv +ワカバ-明日仆は君に会いに行く,http://em.21dtv.com/songs/60070947.mkv +谢金燕-站在左岸想右岸的你,http://em.21dtv.com/songs/60057523.mkv +张清芳-走在阳光里如果能够,http://em.21dtv.com/songs/60059978.mkv +范冰冰-坐在巷口的那对男女,http://em.21dtv.com/songs/60086313.mkv +自然卷-坐在巷口的那对男女,http://em.21dtv.com/songs/60060689.mkv +Rita黄汐源-战争世界,http://em.21dtv.com/songs/60123523.mkv +许昊珂-在这世界上没有天使,http://em.21dtv.com/songs/60129609.mkv +简弘亦-在这世界上没有天使,http://em.21dtv.com/songs/60127259.mkv +毛泽少-在这世界上没有天使,http://em.21dtv.com/songs/60125843.mkv +罗建章-战争后只有一种选择,http://em.21dtv.com/songs/60057497.mkv +陈瑞-站在灌木丛旁的女人,http://em.21dtv.com/songs/60113070.mkv +凤凰传奇-自由自在,http://em.21dtv.com/songs/60117574.mkv +反光镜-只有音乐才是我的解药,http://em.21dtv.com/songs/60069011.mkv +常雅申-只要有你什么都可以,http://em.21dtv.com/songs/60125467.mkv +陈卫东+张翠萍-只要有你陪在我身旁,http://em.21dtv.com/songs/60130830.mkv +冷漠+杨小曼-只要有你陪在我身边,http://em.21dtv.com/songs/60058548.mkv +龚赞生-只有我愿意为你流泪,http://em.21dtv.com/songs/60108289.mkv +陈洁仪-终于忘记了你的生日(演唱会),http://em.21dtv.com/songs/60059047.mkv +张宇-这一生我只牵你的手,http://em.21dtv.com/songs/60057944.mkv +佚名-这一生我只牵你的手(无原唱),http://em.21dtv.com/songs/60057943.mkv +BY2-怎样说清此刻的心情,http://em.21dtv.com/songs/60101738.mkv +关泽楠-这一生回忆有你就足够,http://em.21dtv.com/songs/60057940.mkv +雷婷-这一生还能不能相信爱情,http://em.21dtv.com/songs/60061885.mkv +张宇-这一生都要为你受苦,http://em.21dtv.com/songs/60057937.mkv +韩泽金-在有生的瞬间遇见你,http://em.21dtv.com/songs/60131977.mkv +高安+时嘉-这一生的爱好好把握,http://em.21dtv.com/songs/60114278.mkv +佚名-只有你是我永远的难忘,http://em.21dtv.com/songs/60058604.mkv +老狼-只有你陪我一起唱歌,http://em.21dtv.com/songs/60091887.mkv +刘德华-只有你会当我圣诞树,http://em.21dtv.com/songs/60092349.mkv +李俊旭-只要你还爱我一点就好,http://em.21dtv.com/songs/60058504.mkv +赵咏华-只要你对我再好一点,http://em.21dtv.com/songs/60058499.mkv +张萍-状元媒-自那日与六郎阵前相见,http://em.21dtv.com/songs/60059491.mkv +游国维-再也没有什么令我难过的理由(无原唱),http://em.21dtv.com/songs/60057002.mkv +赵薇-这一刻我相信你说我爱你,http://em.21dtv.com/songs/60057922.mkv +夏宇童-找一句新的话来说喜欢我,http://em.21dtv.com/songs/60057716.mkv +陈业柯-祖英姐姐我们都喜欢你,http://em.21dtv.com/songs/60065524.mkv +张怡诺-做一个女人实在太难,http://em.21dtv.com/songs/60135200.mkv +刘栋升-找一个可以喝醉的理由,http://em.21dtv.com/songs/60057704.mkv +龙帝-找一个可以放弃你的理由,http://em.21dtv.com/songs/60079539.mkv +祁隆-找一个不伤心的理由,http://em.21dtv.com/songs/60118817.mkv +张雷-找一个不等你的理由,http://em.21dtv.com/songs/60057702.mkv +阿赛-找一个爱我的人在一起,http://em.21dtv.com/songs/60057701.mkv +白描-这一分钟,http://em.21dtv.com/songs/60115319.mkv +佚名-自幼儿蒙嫂娘训教抚养,http://em.21dtv.com/songs/60059797.mkv +羽泉-这样的夜里我容易喝醉(演唱会),http://em.21dtv.com/songs/60057888.mkv +好妹妹乐队-周一的清晨还在下雨,http://em.21dtv.com/songs/60079672.mkv +好妹妹乐队-周一的清晨还在下着雨,http://em.21dtv.com/songs/60072814.mkv +郑源-最远的你是我最近的爱,http://em.21dtv.com/songs/60079821.mkv +金悦-最远的你是我最近的爱,http://em.21dtv.com/songs/60060448.mkv +车继铃-最远的你是我最近的爱,http://em.21dtv.com/songs/60060447.mkv +毛俊杰-怎样的女人,http://em.21dtv.com/songs/60103405.mkv +佚名-中原的后代铁打的汉,http://em.21dtv.com/songs/60058993.mkv +彦华-庄严的国徽最美的花,http://em.21dtv.com/songs/60115929.mkv +吴大维-再野的风也想被挽留(无原唱),http://em.21dtv.com/songs/60057004.mkv +佚名-这一次我是真的失去你,http://em.21dtv.com/songs/60057911.mkv +陈红-这一次我是真的留下来陪你,http://em.21dtv.com/songs/60057910.mkv +陈红-这一次我是真的留下来陪你(演唱会),http://em.21dtv.com/songs/60057909.mkv +李泽坚-这一次我是真的失去了你,http://em.21dtv.com/songs/60072793.mkv +吴峙轩-这一次你真的伤透我的心,http://em.21dtv.com/songs/60057906.mkv +张钧喻-怎样才能接受我的爱,http://em.21dtv.com/songs/60057401.mkv +天星董阳-这样爱你是错还是对,http://em.21dtv.com/songs/60126749.mkv +董阳-这样爱你是错还是对,http://em.21dtv.com/songs/60107977.mkv +格桑英妮-这样爱你是错还是对,http://em.21dtv.com/songs/60107832.mkv +谢小雨+梦雅轩-这样爱你没什么道理,http://em.21dtv.com/songs/60120947.mkv +陈淑桦-这样爱你对不对(双语种),http://em.21dtv.com/songs/60057879.mkv +汪正正-这样爱你不是我的错,http://em.21dtv.com/songs/60121856.mkv +易欣-这样爱你不是我的错,http://em.21dtv.com/songs/60097953.mkv +刀郎-只有艾得勒斯能看见,http://em.21dtv.com/songs/60070245.mkv +久久+曹雷-只想做你一生的风景,http://em.21dtv.com/songs/60133329.mkv +李玲玉-只想要你的一份牵挂,http://em.21dtv.com/songs/60058479.mkv +邱永传-真心喜欢你,http://em.21dtv.com/songs/60122164.mkv +李锦航-走雪-我主仆怎过光华山,http://em.21dtv.com/songs/60059966.mkv +周渝民-只想天天和你在一起,http://em.21dtv.com/songs/60090847.mkv +高信-最心疼的人伤我最深,http://em.21dtv.com/songs/60084654.mkv +山脚下男孩-中学生不适合谈恋爱,http://em.21dtv.com/songs/60091004.mkv +李明洋-真心能让世界不相同,http://em.21dtv.com/songs/60058257.mkv +豫剧-在绣楼我奉小姐言命,http://em.21dtv.com/songs/60134556.mkv +高玉秋-在绣楼我奉了小姐言命,http://em.21dtv.com/songs/60057189.mkv +小树-在心里从此永远有个你,http://em.21dtv.com/songs/60057187.mkv +司文-在心里从此永远有个你,http://em.21dtv.com/songs/60057186.mkv +高安-在心里从此永远有个你,http://em.21dtv.com/songs/60057185.mkv +办桌二人组-在心里从此永远有个你,http://em.21dtv.com/songs/60057184.mkv +易帆-在心里从此永远有个你,http://em.21dtv.com/songs/60066578.mkv +江智民+周虹-在心里从此永远有个你,http://em.21dtv.com/songs/60062512.mkv +红蔷薇-只想今生和你在一起,http://em.21dtv.com/songs/60103512.mkv +张秋霞-只想和你走向那永远,http://em.21dtv.com/songs/60094102.mkv +李春波-真想告诉你你是我的全部,http://em.21dtv.com/songs/60058217.mkv +本兮-只想唱这首歌给你听,http://em.21dtv.com/songs/60079618.mkv +曹雷-真心把你一生来守候,http://em.21dtv.com/songs/60125653.mkv +扎雪-真心爱过还是没结果,http://em.21dtv.com/songs/60135302.mkv +孙青-在我心中你永远是最美,http://em.21dtv.com/songs/60061873.mkv +江南-在我心里永远有个你,http://em.21dtv.com/songs/60057170.mkv +孙中亮-在我心里你是最美的,http://em.21dtv.com/songs/60122652.mkv +张晓明-在我心里没有谁能代替你,http://em.21dtv.com/songs/60067772.mkv +丁春秀-在我深深爱上你的时候,http://em.21dtv.com/songs/60079488.mkv +皓天+金婧-在我生命中的每一天,http://em.21dtv.com/songs/60086210.mkv +孙琳+高扬-在我生命中的每一天,http://em.21dtv.com/songs/60057168.mkv +成龙+苏慧伦-在我生命中的每一天,http://em.21dtv.com/songs/60057167.mkv +毛宁+杨钰莹-在我生命中的每一天(演唱会),http://em.21dtv.com/songs/60057166.mkv +唐涛-最温暖的地方还是家,http://em.21dtv.com/songs/60067839.mkv +赵英俊-致我们终将逝去的青春,http://em.21dtv.com/songs/60079641.mkv +黄维德-在我们有生之年的日子,http://em.21dtv.com/songs/60057160.mkv +雪玲儿-在我流泪的时候别说爱我,http://em.21dtv.com/songs/60057158.mkv +苏泉-皱纹的笑是最深的爱,http://em.21dtv.com/songs/60072815.mkv +程香宙-在我的心里从此永远有个你,http://em.21dtv.com/songs/60057156.mkv +金城旭-在我的城市里没有你,http://em.21dtv.com/songs/60127493.mkv +吴奇隆-在我爱的天空下拥抱你,http://em.21dtv.com/songs/60057155.mkv +李玉山-Zumbakema,http://em.21dtv.com/songs/60132560.mkv +李玉山-Zumbakema,http://em.21dtv.com/songs/60131506.mkv +谢天笑-昨天晚上我可能死了,http://em.21dtv.com/songs/60060591.mkv +舒方-这条路上我们一起走,http://em.21dtv.com/songs/60128331.mkv +T.R.Y-昨天了不起今天伤不起,http://em.21dtv.com/songs/60065536.mkv +张柏芝-昨天的我恋上明天的你,http://em.21dtv.com/songs/60060579.mkv +好妹妹乐队-昨天的你的现在的未来,http://em.21dtv.com/songs/60072846.mkv +佚名-昨天不小心喝醉的时候,http://em.21dtv.com/songs/60060574.mkv +吴雁泽-走上这高高的兴安岭,http://em.21dtv.com/songs/60059942.mkv +TIZZY BAC-这是因为我们能感到疼痛,http://em.21dtv.com/songs/60079551.mkv +马吟吟-在水一方,http://em.21dtv.com/songs/60115534.mkv +佚名-棕色头发不要再卷起,http://em.21dtv.com/songs/60059824.mkv +单九希+威仔-只是睡过吧,http://em.21dtv.com/songs/60111734.mkv +歆小瑶-只是那些记忆没忘记,http://em.21dtv.com/songs/60129322.mkv +李子杰-这是你给我的伤我的,http://em.21dtv.com/songs/60086237.mkv +孟舒-这是你第几次离开我,http://em.21dtv.com/songs/60113410.mkv +郭慧敏-做什么都不对,http://em.21dtv.com/songs/60104497.mkv +杨洪基-在森林铁路的站台上,http://em.21dtv.com/songs/60057129.mkv +雨柔-转身就是最好的选择,http://em.21dtv.com/songs/60094759.mkv +张秋霞-转身就是最好的选择,http://em.21dtv.com/songs/60087142.mkv +陈宝珠+梅雪诗-再世红梅记之折梅巧遇,http://em.21dtv.com/songs/60056969.mkv +群星-再世红梅记之脱阱救裴,http://em.21dtv.com/songs/60056968.mkv +任剑辉+白雪仙-再世红梅记之脱阱救裴(无原唱),http://em.21dtv.com/songs/60056967.mkv +龙剑笙-再世红梅记折梅巧遇,http://em.21dtv.com/songs/60079468.mkv +任剑辉+白雪仙-再世红梅记-折梅巧遇(无原唱),http://em.21dtv.com/songs/60056960.mkv +群星-再世红梅记之兰府装疯,http://em.21dtv.com/songs/60056966.mkv +群星-再世红梅记之蕉窗魂合,http://em.21dtv.com/songs/60056965.mkv +任剑辉+任冰儿-再世红梅记之环佩魂归,http://em.21dtv.com/songs/60056964.mkv +白雪仙-再世红梅记之环佩魂归(无原唱),http://em.21dtv.com/songs/60056963.mkv +尹光+钟丽蓉-再世红梅记之观柳还琴(演唱会),http://em.21dtv.com/songs/60079469.mkv +任剑辉+白雪仙-再世红梅记之观柳还琴,http://em.21dtv.com/songs/60056962.mkv +陈咏仪-再世红梅记之病倚蕉窗,http://em.21dtv.com/songs/60056961.mkv +刘惠鸣+白雪红-再世红梅记之折梅巧遇,http://em.21dtv.com/songs/60068973.mkv +刘惠鸣+白雪红-再世红梅记之脱穽救裴,http://em.21dtv.com/songs/60068972.mkv +刘惠鸣+白雪红-再世红梅记之观柳还琴,http://em.21dtv.com/songs/60068971.mkv +尹光+邓美玲-再世红梅记之折梅巧遇,http://em.21dtv.com/songs/60065451.mkv +佚名-再世红梅记-脱阱救裴-上卷,http://em.21dtv.com/songs/60056959.mkv +白雪仙-再世红梅记-倩女回魂,http://em.21dtv.com/songs/60056958.mkv +任剑辉+白雪仙-再世红梅记-观柳还琴(无原唱),http://em.21dtv.com/songs/60056957.mkv +白雪仙-再世红梅记-病倚蕉窗,http://em.21dtv.com/songs/60056956.mkv +安云武-赵氏孤儿-在白虎大堂奉了命,http://em.21dtv.com/songs/60057728.mkv +陈乃春-赵氏孤儿-一身正气效忠良,http://em.21dtv.com/songs/60057727.mkv +钟舒漫-这首歌的名字是秘密,http://em.21dtv.com/songs/60120048.mkv +JKAI-这首歌不是送给你的,http://em.21dtv.com/songs/60115602.mkv +快要崩溃的一哥(彭佳慧)-张三的歌,http://em.21dtv.com/songs/60129147.mkv +李紫涵-总是不知不觉想起你,http://em.21dtv.com/songs/60072826.mkv +林二汶+林一峰-至死不渝,http://em.21dtv.com/songs/60109453.mkv +吴碧霞-战士把春天捧给祖国,http://em.21dtv.com/songs/60108384.mkv +张峰-最深爱的人最深的伤痕,http://em.21dtv.com/songs/60060409.mkv +黄品源-纵然有一天我们分离(演唱会),http://em.21dtv.com/songs/60059853.mkv +TIZZY BAC-周日午后的妇女时间,http://em.21dtv.com/songs/60061907.mkv +李东桥-周仁回府-见嫂嫂她直哭得悲哀伤痛,http://em.21dtv.com/songs/60059185.mkv +李长春-智取威虎山-这些兵急人难,http://em.21dtv.com/songs/60058849.mkv +[Group] +groupName=十六万歌曲MV等 - 109 +雒瑞-智取威虎山-只盼着深山出太阳,http://em.21dtv.com/songs/60058850.mkv +佚名-智取威虎山-自己的队伍来到面前,http://em.21dtv.com/songs/60058851.mkv +佚名-智取威虎山-迎来春色换人间,http://em.21dtv.com/songs/60058848.mkv +佚名-智取威虎山-我们是工农子弟兵,http://em.21dtv.com/songs/60058847.mkv +佚名-智取威虎山-甘洒热血写春秋,http://em.21dtv.com/songs/60058845.mkv +于魁智-智取威虎山-共产党员时刻听从党召唤,http://em.21dtv.com/songs/60058846.mkv +萱草-中秋我和李白一起唱,http://em.21dtv.com/songs/60103549.mkv +索南扎西-舟曲扛起明天的太阳,http://em.21dtv.com/songs/60069020.mkv +龚琳娜-致青春,http://em.21dtv.com/songs/60095176.mkv +冷漠-在你之前我早已有了她,http://em.21dtv.com/songs/60079484.mkv +赵小兵-在你之前我早已有了她,http://em.21dtv.com/songs/60065456.mkv +陈瑞-在你之前我已有了他,http://em.21dtv.com/songs/60081614.mkv +孙楠-在你眼里我看见了自己的寂寞,http://em.21dtv.com/songs/60057120.mkv +方季惟-在你心中已不在的我,http://em.21dtv.com/songs/60057119.mkv +潘美辰-在你心中已不在的我(无原唱),http://em.21dtv.com/songs/60057118.mkv +蒋大为-在那桃花盛开的地方,http://em.21dtv.com/songs/60128364.mkv +蒋大为+霍尊-在那桃花盛开的地方,http://em.21dtv.com/songs/60111384.mkv +龚月-在那桃花盛开的地方,http://em.21dtv.com/songs/60079481.mkv +刘斌-在那桃花盛开的地方,http://em.21dtv.com/songs/60057090.mkv +蒋大为-在那桃花盛开的地方,http://em.21dtv.com/songs/60057089.mkv +蒋大为-在那桃花盛开的地方(演唱会),http://em.21dtv.com/songs/60057088.mkv +金悦-在奶奶温暖的怀抱里,http://em.21dtv.com/songs/60057102.mkv +郭峰-在你面前我好想流泪,http://em.21dtv.com/songs/60057111.mkv +潘长江-咱农民的胸怀比天地宽,http://em.21dtv.com/songs/60057252.mkv +伊风-在你离开之前我离开,http://em.21dtv.com/songs/60057110.mkv +佚名-在那空荡荡的田野上,http://em.21dtv.com/songs/60057087.mkv +邱琢然-最难过最美好的回忆,http://em.21dtv.com/songs/60126259.mkv +沈凌云-做你的爱人,http://em.21dtv.com/songs/60098556.mkv +洪卓立-在你的爱人身上找到我遗失已久的幸福(演唱会),http://em.21dtv.com/songs/60072779.mkv +刘锡明-在你背影消失的时候(演唱会)(无原唱),http://em.21dtv.com/songs/60057105.mkv +冰淇淋少女组-在没有雨水滋润的星球上是无法付出爱的吧,http://em.21dtv.com/songs/60057075.mkv +孔繁涛-怎么样我最心爱的姑娘,http://em.21dtv.com/songs/60065463.mkv +郑源-赵默有情人终成眷属,http://em.21dtv.com/songs/60088773.mkv +王力宏-在每一秒里都想见到你,http://em.21dtv.com/songs/60057078.mkv +闻君-在每一个想你的夜晚,http://em.21dtv.com/songs/60057077.mkv +丁楠皓-怎么挽救你我的爱人,http://em.21dtv.com/songs/60086539.mkv +黄晓明-咱们屯里的人,http://em.21dtv.com/songs/60118216.mkv +李克勤-这么深爱你的只有我,http://em.21dtv.com/songs/60092800.mkv +焯皓-在末日里方可抱紧你,http://em.21dtv.com/songs/60133964.mkv +焯皓-在末日里方可抱紧你,http://em.21dtv.com/songs/60129368.mkv +杨宗宪-怎么能再做普通朋友(无原唱),http://em.21dtv.com/songs/60057374.mkv +程响-怎么能忘了,http://em.21dtv.com/songs/60112865.mkv +李伟-在茉莉花盛开的地方,http://em.21dtv.com/songs/60098450.mkv +张其萍-在茉莉花盛开的地方,http://em.21dtv.com/songs/60070217.mkv +齐晨-咱们结婚吧(DJ),http://em.21dtv.com/songs/50000219.mkv +张芯-怎么忽然就成了这样,http://em.21dtv.com/songs/60057354.mkv +天堂飘雪-最美的遇见,http://em.21dtv.com/songs/60114469.mkv +黄品源-最梦的梦是最痛的痛,http://em.21dtv.com/songs/60060388.mkv +六哲-最美的回忆,http://em.21dtv.com/songs/60108320.mkv +刀郎-最美的还是我们新疆(演唱会),http://em.21dtv.com/songs/60065528.mkv +陈水林-最美的歌儿献给妈妈,http://em.21dtv.com/songs/60086297.mkv +蒋大为+拥江帆-最美的歌儿唱给妈妈,http://em.21dtv.com/songs/60098744.mkv +蒋大为-最美的歌儿唱给妈妈,http://em.21dtv.com/songs/60060368.mkv +来国庆-最美的地方还是草原,http://em.21dtv.com/songs/60129262.mkv +李发牢-铡美案杀庙-民妇人与我讲来历,http://em.21dtv.com/songs/60057425.mkv +韩丽霞-铡美案告状-包相爷与民伸屈冤,http://em.21dtv.com/songs/60057424.mkv +韩磊+刘婕-走了这么久你变了没有,http://em.21dtv.com/songs/60059925.mkv +张杰-这里是神奇的赛尔号,http://em.21dtv.com/songs/60061884.mkv +佚名-这里是红军走过的地方,http://em.21dtv.com/songs/60057818.mkv +邓紫棋-再见,http://em.21dtv.com/songs/60116279.mkv +红尘独舞-走进新时代我们中国,http://em.21dtv.com/songs/60059914.mkv +黎明-最近我有没有说过我爱你,http://em.21dtv.com/songs/60060348.mkv +方亚芬-只见她目定口呆神色泪,http://em.21dtv.com/songs/60058414.mkv +孙浩雨-这就是我流浪的地方,http://em.21dtv.com/songs/60110992.mkv +童唱-壮家少年在红旗下成长,http://em.21dtv.com/songs/60059477.mkv +MICHAEL JACKSON-终极收藏危险演唱会6,http://em.21dtv.com/songs/60059018.mkv +MICHAEL JACKSON-终极收藏危险演唱会5,http://em.21dtv.com/songs/60059017.mkv +MICHAEL JACKSON-终极收藏危险演唱会4,http://em.21dtv.com/songs/60059016.mkv +MICHAEL JACKSON-终极收藏危险演唱会3,http://em.21dtv.com/songs/60059015.mkv +MICHAEL JACKSON-终极收藏危险演唱会2,http://em.21dtv.com/songs/60059014.mkv +张杰+周一豪-这就是爱,http://em.21dtv.com/songs/60123927.mkv +许志安+何韵诗-再见露丝玛莉+迷你与我+兄弟+我没有事(演唱会),http://em.21dtv.com/songs/60056879.mkv +孙子涵-最近还好么,http://em.21dtv.com/songs/60094053.mkv +齐秦-自己的心情自己感受,http://em.21dtv.com/songs/60118230.mkv +齐秦-自己的心情自己感受,http://em.21dtv.com/songs/60059697.mkv +谢雨欣-再见的人终究会再见,http://em.21dtv.com/songs/60092094.mkv +吕继宏-自己的老婆自己要疼,http://em.21dtv.com/songs/60072824.mkv +佚名-自己的队伍来到面前,http://em.21dtv.com/songs/60059692.mkv +李佳丹-紫禁城门外,http://em.21dtv.com/songs/60104191.mkv +陈明真-再见不是最伤感的话,http://em.21dtv.com/songs/60088879.mkv +何杰-最后一次再说我爱你,http://em.21dtv.com/songs/60060262.mkv +罗建章-最后一次借你-我的手,http://em.21dtv.com/songs/60060258.mkv +佚名-中华人民共和国国歌,http://em.21dtv.com/songs/60058960.mkv +李文林-斩黄袍-孤王酒醉桃花宫,http://em.21dtv.com/songs/60057444.mkv +马智宇-最后你还是离开了我,http://em.21dtv.com/songs/60110695.mkv +马智宇-最后你还是离开了我(演唱会),http://em.21dtv.com/songs/60066620.mkv +卓依婷-再会啦心爱的无缘的人,http://em.21dtv.com/songs/60056788.mkv +庄学忠-再会啦心爱的无缘的人,http://em.21dtv.com/songs/60056787.mkv +施文彬-再会啦心爱的无缘的人,http://em.21dtv.com/songs/60056786.mkv +江蕙-再会啦心爱的无缘的人,http://em.21dtv.com/songs/60056785.mkv +司空雷+蓝波-中华好兄弟,http://em.21dtv.com/songs/60113326.mkv +李佳薇-最好的幸福,http://em.21dtv.com/songs/60113612.mkv +佚名-中国中国鲜红的太阳永不落,http://em.21dtv.com/songs/60058941.mkv +音乐走廊-中国中国我为你骄傲,http://em.21dtv.com/songs/60109732.mkv +宋祖英-中国永远收获着希望,http://em.21dtv.com/songs/60058934.mkv +群星-中国永远把你记在心上,http://em.21dtv.com/songs/60058932.mkv +董文华-祖国我在你的怀抱里,http://em.21dtv.com/songs/60060017.mkv +拉齐-祖国我是你生命的延续,http://em.21dtv.com/songs/60060015.mkv +刀郎-中国我们都是你的孩子,http://em.21dtv.com/songs/60070253.mkv +合唱-中国少年先锋队队歌,http://em.21dtv.com/songs/60058913.mkv +合唱-中国石化加油员之歌,http://em.21dtv.com/songs/60087136.mkv +田馥甄-这个人已经与我无关,http://em.21dtv.com/songs/60095214.mkv +大合唱-中国人民志愿军军歌,http://em.21dtv.com/songs/60058912.mkv +佚名-中国人民解放军进行曲,http://em.21dtv.com/songs/60058910.mkv +佚名-中国人民解放军军歌,http://em.21dtv.com/songs/60058911.mkv +张轶-中国梦 我为你喝彩,http://em.21dtv.com/songs/60114551.mkv +我为你喝彩,http://em.21dtv.com/songs/60113497.mkv +李翊君-走过来时不该走的路,http://em.21dtv.com/songs/60059892.mkv +佚名-诸葛亮吊孝-历艰辛保皇叔重把业创,http://em.21dtv.com/songs/60059216.mkv +左立-找个靠谱的男朋友吧,http://em.21dtv.com/songs/60107695.mkv +孙彭飞-找个干净的地方坐坐,http://em.21dtv.com/songs/60062960.mkv +隆熙俊-这个冬天会不会太冷,http://em.21dtv.com/songs/60088922.mkv +孙子涵-这孤独世界幸好有你,http://em.21dtv.com/songs/60122655.mkv +现代京剧-祖国的好山河寸土不让,http://em.21dtv.com/songs/60060001.mkv +熊磊-中国的复兴不可阻挡,http://em.21dtv.com/songs/60058875.mkv +袁震-找个差不多的女人就娶了吧,http://em.21dtv.com/songs/60066588.mkv +杨春霞-这杠棒跟随咱经历艰难世道,http://em.21dtv.com/songs/60057777.mkv +殷秀梅-祖国啊我永远热爱你,http://em.21dtv.com/songs/60059995.mkv +佟铁鑫-祖国啊我亲爱的祖国,http://em.21dtv.com/songs/60084618.mkv +乔军-祖国啊 我的好母亲,http://em.21dtv.com/songs/60081135.mkv +王杰-在风中呼唤你的名字,http://em.21dtv.com/songs/60057047.mkv +李小锋-祝福-我自幼多亏哥抚养,http://em.21dtv.com/songs/60059336.mkv +李小锋-祝福-天亮前送你下山林,http://em.21dtv.com/songs/60059335.mkv +李锦航-祝福-四十年血和泪我那里吐冤,http://em.21dtv.com/songs/60059334.mkv +张振宇-祝福你我最心爱的姑娘,http://em.21dtv.com/songs/60059328.mkv +佚名-祝福毛主席万寿无疆,http://em.21dtv.com/songs/60059317.mkv +豫剧-斩驸马本是把孤王欺,http://em.21dtv.com/songs/60134583.mkv +彭玟玲-在风里面的会是什么(无原唱),http://em.21dtv.com/songs/60057046.mkv +张玉梅-祝福-今日赎罪走回来,http://em.21dtv.com/songs/60059313.mkv +杜鹏-捉放曹-听他言吓得我心惊胆怕,http://em.21dtv.com/songs/60059582.mkv +张玉梅-祝福-残冬将尽逢新年,http://em.21dtv.com/songs/60059308.mkv +何永俊-这份爱到底会是谁的错,http://em.21dtv.com/songs/60057770.mkv +李乐诗-逐段逐渐在梦里消失去,http://em.21dtv.com/songs/60059243.mkv +卓依婷-朱大嫂送鸡蛋+刮地风,http://em.21dtv.com/songs/60059199.mkv +佚名-真的爱我就不要让我伤心,http://em.21dtv.com/songs/60058087.mkv +黎明-真的爱情定可到未来,http://em.21dtv.com/songs/60058086.mkv +黄耀明+BEYOND-真的爱你+下落不明,http://em.21dtv.com/songs/60089055.mkv +书画-这次我是真的动了情,http://em.21dtv.com/songs/60084532.mkv +寒武纪-这次我是真的受了伤,http://em.21dtv.com/songs/60067787.mkv +冯立-这次你真的离开了我,http://em.21dtv.com/songs/60071512.mkv +林子祥-这次你是真的伤了我的心(演唱会),http://em.21dtv.com/songs/60057761.mkv +胡尧峰-再次拿起我的麦克风,http://em.21dtv.com/songs/60081639.mkv +樊少华-走出你的世界我更寂寞,http://em.21dtv.com/songs/60061927.mkv +任剑辉-紫钗记之独醉玉门关(无原唱),http://em.21dtv.com/songs/60059634.mkv +康凯-在错的时间遇见对的人,http://em.21dtv.com/songs/60057041.mkv +因果兄弟-这辈子我们还能在一起吗,http://em.21dtv.com/songs/60057752.mkv +NUEST+ORANGE CARAMEL-在白雪中踏着高跟鞋,http://em.21dtv.com/songs/60079476.mkv +武权-这不是我想要的结果,http://em.21dtv.com/songs/60057755.mkv +骆超勇-这不是我想要的结果,http://em.21dtv.com/songs/60057754.mkv +王若琳-这不是很令人兴奋吗,http://em.21dtv.com/songs/60129417.mkv +杨乐-这把年纪,http://em.21dtv.com/songs/60119682.mkv +蓝雨-这不就是你想要的结果,http://em.21dtv.com/songs/60079543.mkv +徐彪-再不疯狂我们就老了,http://em.21dtv.com/songs/60111100.mkv +李宇春-再不疯狂我们就老了,http://em.21dtv.com/songs/60070206.mkv +谢雷-找不到人陪我喝喝酒,http://em.21dtv.com/songs/60057663.mkv +杜德伟+张震岳-钟爱一生+爱我别走,http://em.21dtv.com/songs/60097956.mkv +谢雨欣-在爱人身边让我们的歌声在大一点,http://em.21dtv.com/songs/60057032.mkv +邰正宵-最爱你哭泣时候的眼睛,http://em.21dtv.com/songs/60060093.mkv +白龙-最爱你的人已不是我,http://em.21dtv.com/songs/60099429.mkv +张德力-最爱你的人还没有睡,http://em.21dtv.com/songs/60114534.mkv +FIRE-最爱的人伤我也最深,http://em.21dtv.com/songs/60060080.mkv +沙靖杰-最爱的人确伤我最深,http://em.21dtv.com/songs/60088215.mkv +沙靖杰-最爱的人却伤我最深,http://em.21dtv.com/songs/60060079.mkv +谢珊-最爱的你让我喝了最苦的酒,http://em.21dtv.com/songs/60071553.mkv +潮峰-最爱的女人伤我最深,http://em.21dtv.com/songs/60060069.mkv +苏运莹-野子,http://em.21dtv.com/songs/60107966.mkv +小琢-有种缘分认识你真好,http://em.21dtv.com/songs/60125434.mkv +刘惠鸣+白雪红-胭脂巷口故人来之孤雁还巢,http://em.21dtv.com/songs/60068896.mkv +佚名-沿着社会主义大道奔前方,http://em.21dtv.com/songs/60052024.mkv +蒋大为-沿着社会主义大道奔前方,http://em.21dtv.com/songs/60052023.mkv +民歌-园子里长的是绿韭菜,http://em.21dtv.com/songs/60091553.mkv +刘金泉-野猪林-自从贤弟遭罗网,http://em.21dtv.com/songs/60052505.mkv +刘金泉-野猪林-当年关西把人伤,http://em.21dtv.com/songs/60052504.mkv +牛会龙-用祝福的方式放弃你,http://em.21dtv.com/songs/60107056.mkv +RUBBER BAND-一早地下铁+几分钟的约会(演唱会),http://em.21dtv.com/songs/60053856.mkv +曾春年+秀才-永远做兄弟,http://em.21dtv.com/songs/60110248.mkv +新街口组合-有一种温暖叫姐们儿,http://em.21dtv.com/songs/60128035.mkv +王铮亮-有一种爱是为了分离,http://em.21dtv.com/songs/60127214.mkv +何龙雨-有一种爱叫做不放弃,http://em.21dtv.com/songs/60055375.mkv +郭涛-夜夜夜夜,http://em.21dtv.com/songs/60123241.mkv +薛之谦-演员,http://em.21dtv.com/songs/60122095.mkv +秦博-原以为可以把你忘记,http://em.21dtv.com/songs/60130630.mkv +林胜天-原以为可以把你忘记,http://em.21dtv.com/songs/60086181.mkv +翁汕汕-有一天我终将会死去,http://em.21dtv.com/songs/60080758.mkv +萧敬腾+王呈章-一眼瞬间,http://em.21dtv.com/songs/60112924.mkv +昏鸦-寓言式的深黑色风景,http://em.21dtv.com/songs/60080183.mkv +容祖儿-用一千双手臂拥抱你,http://em.21dtv.com/songs/60054930.mkv +何华栈+苏春梅-鸳鸯泪洒莫愁湖之倾诉,http://em.21dtv.com/songs/60055889.mkv +张菱-要饮就饮著搁诸彼多,http://em.21dtv.com/songs/60095525.mkv +李文+刘华-月圆花好同结并蒂莲,http://em.21dtv.com/songs/60056552.mkv +刘华+李文-月园花好同结并蒂莲,http://em.21dtv.com/songs/60056542.mkv +江得胜-用一个温暖的冬天等你,http://em.21dtv.com/songs/60054929.mkv +六哲-有雨的日子,http://em.21dtv.com/songs/60101917.mkv +冯晓泉-遥远的城镇遥远的人,http://em.21dtv.com/songs/60052324.mkv +李家伟-永远把你留在心里面,http://em.21dtv.com/songs/60120618.mkv +齐如意+陶日金-也许有一天我在等你,http://em.21dtv.com/songs/60118226.mkv +南台湾小姑娘-有闲写信没闲打电话(无原唱),http://em.21dtv.com/songs/60095484.mkv +袁震-也许上辈子我是你的男人,http://em.21dtv.com/songs/60052442.mkv +卓依婷-原乡情歌+碧兰村的姑娘,http://em.21dtv.com/songs/60056018.mkv +戴雪儿-也许你只是爱我的美,http://em.21dtv.com/songs/60087902.mkv +佚名-要学那泰山顶上一青松,http://em.21dtv.com/songs/60052399.mkv +哈哈一笑很倾城-用心良苦,http://em.21dtv.com/songs/60128914.mkv +贾争艳-也许离开才能想起我,http://em.21dtv.com/songs/60112272.mkv +蔡幸娟-有些话不敢当面告诉你,http://em.21dtv.com/songs/60055335.mkv +佚名-有些话不敢当面告诉你(无原唱),http://em.21dtv.com/songs/60055334.mkv +陈邵康-有西瓜吃何必要喝水,http://em.21dtv.com/songs/60097965.mkv +李维-隐形的翅膀,http://em.21dtv.com/songs/60120642.mkv +秦浩-要我怎样你才会爱我,http://em.21dtv.com/songs/60129454.mkv +李玲玉-有我有你有梦还有天,http://em.21dtv.com/songs/60089345.mkv +薛之谦-意外,http://em.21dtv.com/songs/60127368.mkv +群星-仰望星空,http://em.21dtv.com/songs/60126048.mkv +陈一郎-因为我是一个行船人,http://em.21dtv.com/songs/60054284.mkv +季欣霈-因为 我呢だつて))わたしの,http://em.21dtv.com/songs/60054207.mkv +黄征-一无所有时爱你的人,http://em.21dtv.com/songs/60071431.mkv +戴爱玲-一无所惧,http://em.21dtv.com/songs/60113531.mkv +佚名-以为你在等像我这样的人(无原唱),http://em.21dtv.com/songs/60054092.mkv +夏青-因为你高兴所以我快乐,http://em.21dtv.com/songs/60079195.mkv +何韵诗-愿我可以学会放低你,http://em.21dtv.com/songs/60056227.mkv +群星-亿万股民同一个梦想,http://em.21dtv.com/songs/60062854.mkv +魏如萱-一万个不回头的方法,http://em.21dtv.com/songs/60132002.mkv +魏如萱-一万个不回头的方法,http://em.21dtv.com/songs/60130913.mkv +林志颖-用我的真心宝贝你的心(演唱会),http://em.21dtv.com/songs/60054899.mkv +潘美辰-用我的心我的情感动你,http://em.21dtv.com/songs/60054895.mkv +高隆-用我的心去握你的手,http://em.21dtv.com/songs/60054894.mkv +东方二重唱-用我的长发做你的窗帘,http://em.21dtv.com/songs/60054898.mkv +晟瑶-用我的爱感恩你的心,http://em.21dtv.com/songs/60068936.mkv +张杰-因为爱情来得不容易(HD),http://em.21dtv.com/songs/10012783.mkv +张杰-因为爱情来得不容易,http://em.21dtv.com/songs/60096285.mkv +丁祎文-愿天下有情的人都成眷属,http://em.21dtv.com/songs/60065423.mkv +秀爱组合-雨天是放声哭泣的时间,http://em.21dtv.com/songs/60055708.mkv +黄依群-夜听琴勾起了女儿心事,http://em.21dtv.com/songs/60052653.mkv +林翠萍-一声再见,http://em.21dtv.com/songs/60104245.mkv +林慧萍-一生只爱一回的故事(无原唱),http://em.21dtv.com/songs/60053618.mkv +慢摇舞曲-夜色 粤语男声_DJcandy Mix,http://em.21dtv.com/songs/30000604.mkv +邓容-一生一世一年一月一夜一些,http://em.21dtv.com/songs/60053603.mkv +谭维维+郑棋元-一生一世心上一个人,http://em.21dtv.com/songs/60112261.mkv +欣新-一生一世守着那份爱,http://em.21dtv.com/songs/60096367.mkv +金熙泽-有谁像我一样的疼你,http://em.21dtv.com/songs/60055314.mkv +阿来-又是三更 念一个人,http://em.21dtv.com/songs/60113043.mkv +南梓轩-一生去忘掉对你的爱,http://em.21dtv.com/songs/60087500.mkv +李琛-有谁能够爱你超过我,http://em.21dtv.com/songs/60055309.mkv +陈洁丽-以水流年+有了你今生今世(演唱会),http://em.21dtv.com/songs/60054087.mkv +晓月-越是拒绝越是爱得深,http://em.21dtv.com/songs/60133758.mkv +晓月-越是拒绝越是爱得深,http://em.21dtv.com/songs/60114572.mkv +张驰-一生回忆有你就足够,http://em.21dtv.com/songs/60086125.mkv +孙博-一生回忆有你就足够,http://em.21dtv.com/songs/60061822.mkv +姜鹏-有时候男人比女人更脆弱,http://em.21dtv.com/songs/60055298.mkv +韩真真-有时候男人比女人更脆弱,http://em.21dtv.com/songs/60055297.mkv +古巨基-有谁共鸣 沉默是金,http://em.21dtv.com/songs/60134983.mkv +张淑敏-用手儿打开了百宝箱,http://em.21dtv.com/songs/60091136.mkv +渔圈-夜声带走最后一个我,http://em.21dtv.com/songs/60079067.mkv +罗时丰-一生的爱留乎你作伴,http://em.21dtv.com/songs/60053531.mkv +安倍なつみ-雨上がりの虹のように,http://em.21dtv.com/songs/60055690.mkv +Mc天佑-一人饮酒醉,http://em.21dtv.com/songs/60114953.mkv +李宁-依然清清澈澈的是你(演唱会),http://em.21dtv.com/songs/60053999.mkv +张悦-愚人码头,http://em.21dtv.com/songs/60129078.mkv +张之夏-有人常常把爱情比做一种冲动,http://em.21dtv.com/songs/60079295.mkv +吉克隽逸-依然爱你,http://em.21dtv.com/songs/60123733.mkv +谭咏麟-用去最后那半分温柔,http://em.21dtv.com/songs/60054888.mkv +刘天-一曲相思,http://em.21dtv.com/songs/60126634.mkv +陈小春+郑伊健+钱嘉乐+林晓峰+谢天华-友情岁月[演唱会],http://em.21dtv.com/songs/60110635.mkv +陈小春-友情岁月[演唱会],http://em.21dtv.com/songs/60110634.mkv +不会弹吉他的吉他侠(李祥祥)-友情岁月,http://em.21dtv.com/songs/60128720.mkv +郑伊健+陈小春&Djlee-友情岁月(DJ版),http://em.21dtv.com/songs/50000212.mkv +刘集中-有情人从此不再伤悲,http://em.21dtv.com/songs/60087430.mkv +黄格选+李研心-一千年以后的江南风,http://em.21dtv.com/songs/60136028.mkv +寒雨-一千零一次的想起你,http://em.21dtv.com/songs/60053402.mkv +王中平+向蕙玲-有情惊拆散无情惊拖磨,http://em.21dtv.com/songs/60055266.mkv +群星-一千九百九十九个祝福,http://em.21dtv.com/songs/60053400.mkv +路勇-一切都是最好的安排,http://em.21dtv.com/songs/60111422.mkv +少女时代-You Think,http://em.21dtv.com/songs/60114507.mkv +曲婉婷-Your Girl,http://em.21dtv.com/songs/60126958.mkv +Madeon+Kyan-You're On,http://em.21dtv.com/songs/60113172.mkv +艾丽雅-Your Boat,http://em.21dtv.com/songs/60131755.mkv +杨坤+杨坤组四强-Young Man,http://em.21dtv.com/songs/60105175.mkv +Charli XCX-You,http://em.21dtv.com/songs/60108213.mkv +HiJack-You+Burst,http://em.21dtv.com/songs/60103783.mkv +天天-YOLO同一个节奏(HD),http://em.21dtv.com/songs/10012757.mkv +李玲玉-有你有我有梦还有天(演唱会),http://em.21dtv.com/songs/60055247.mkv +林凡-愿你是漆黑中我哭泣的背影,http://em.21dtv.com/songs/60056213.mkv +晓枫-有你陪着我是幸福的,http://em.21dtv.com/songs/60055234.mkv +余帝+魏海珊-要你感动不要你心痛,http://em.21dtv.com/songs/60052378.mkv +佚名-要你感动不要你心痛,http://em.21dtv.com/songs/60052377.mkv +佚名-用你的心去听别人的心(无原唱),http://em.21dtv.com/songs/60054879.mkv +佚名-用你的温柔抚平我伤口,http://em.21dtv.com/songs/60054878.mkv +罗密欧-有你的天空才是蓝色的(无原唱),http://em.21dtv.com/songs/60055218.mkv +苏勒亚其其格-有你才是最美的天堂,http://em.21dtv.com/songs/60079286.mkv +孙艳-有你爱过也算是一种满足,http://em.21dtv.com/songs/60055204.mkv +李文林-辕门斩子-杨延昭下位去迎接娘来,http://em.21dtv.com/songs/60056123.mkv +张保卫-辕门斩子-贤爷休把功劳表,http://em.21dtv.com/songs/60056122.mkv +李玉琴-辕门斩子-娘不记举家在山后,http://em.21dtv.com/songs/60056121.mkv +张保卫-辕门斩子-见太娘跪倒地魂飞天外,http://em.21dtv.com/songs/60056120.mkv +李玉琴+杜景云-辕门斩子-儿斩子为国家整一整律条,http://em.21dtv.com/songs/60056119.mkv +阿龙正刚-一秒钟认识一辈子忘记,http://em.21dtv.com/songs/60053317.mkv +蓝雨-有没有一种幸福可以让我不哭,http://em.21dtv.com/songs/60062570.mkv +许强-有没有一种思念永不疲惫,http://em.21dtv.com/songs/60055190.mkv +晓依-有没有一种思念永不疲惫,http://em.21dtv.com/songs/60055189.mkv +李子璇-有没有一种爱让人不流泪,http://em.21dtv.com/songs/60055188.mkv +周华健-有没有一首歌会让你想起我,http://em.21dtv.com/songs/60055187.mkv +周华健-有没有一首歌会让你想起我(演唱会),http://em.21dtv.com/songs/60055186.mkv +周传雄-有没有一首歌会让你想起我(演唱会),http://em.21dtv.com/songs/60055185.mkv +满文军-有没有人像我一样爱你,http://em.21dtv.com/songs/60055181.mkv +叶少兰-辕门射戟-将军休要逞刚强,http://em.21dtv.com/songs/60056117.mkv +沈健瑾-杨门女将-风萧萧雾漫漫星光惨淡,http://em.21dtv.com/songs/60052211.mkv +阿牛-用马来西亚的天气来说爱你,http://em.21dtv.com/songs/60054875.mkv +群星-用马来西亚的天气来说爱你(演唱会),http://em.21dtv.com/songs/60054874.mkv +扎西顿珠-有梦的地方就有阳光,http://em.21dtv.com/songs/60129161.mkv +泳儿-原来只要为你活一天,http://em.21dtv.com/songs/60089401.mkv +张崇基+张崇德-原来只要共你活一天(演唱会),http://em.21dtv.com/songs/60079375.mkv +张学友-原来只要共你活一天,http://em.21dtv.com/songs/60055979.mkv +张学友-原来只要共你活一天(演唱会),http://em.21dtv.com/songs/60055978.mkv +梁雁翎-原来只喜欢孤单一个,http://em.21dtv.com/songs/60092929.mkv +彭家丽-原来只喜欢孤单一个,http://em.21dtv.com/songs/60055977.mkv +茹雪+枫舞-原来这是一场梦而已,http://em.21dtv.com/songs/60127346.mkv +茹雪-原来这是一场梦而已,http://em.21dtv.com/songs/60127345.mkv +孙子涵-原谅这世界没那么好,http://em.21dtv.com/songs/60081984.mkv +李建衡-月亮怎能代表我的心,http://em.21dtv.com/songs/60056444.mkv +鲍国-月亮怎能代表我的心,http://em.21dtv.com/songs/60056443.mkv +阮丹青-原来真的有这样的人,http://em.21dtv.com/songs/60095948.mkv +璃猫-夜里亦始终想念着你,http://em.21dtv.com/songs/60134019.mkv +张嘉倪-一帘幽梦之相遇的魔咒,http://em.21dtv.com/songs/60053264.mkv +盖鸣晖+吴美英-月老笑狂生-仙庵惊艳,http://em.21dtv.com/songs/60056373.mkv +林健辉-原来我最爱的人是你不是他,http://em.21dtv.com/songs/60055973.mkv +陈楚生-原来我一直都不孤单,http://em.21dtv.com/songs/60055971.mkv +吴展濠-眼泪为你流2003,http://em.21dtv.com/songs/60092453.mkv +李冠宇-原谅我没有好好爱你,http://em.21dtv.com/songs/60126996.mkv +万芳-原来我们都是爱着的,http://em.21dtv.com/songs/60068957.mkv +熊胡杰-原来我们都变了模样[消伴],http://em.21dtv.com/songs/60100922.mkv +戴佩妮-原谅我就是这样的女生,http://em.21dtv.com/songs/60056003.mkv +尔萨-原来我不是你的天堂,http://em.21dtv.com/songs/60055969.mkv +伍天宇-原谅我不能和你在一起,http://em.21dtv.com/songs/60055997.mkv +朱长松-原来她什么都不想要,http://em.21dtv.com/songs/60079370.mkv +高进+翔子-原来是这样,http://em.21dtv.com/songs/60109053.mkv +法瑷-一路顺风山牙族的好朋友(无原唱),http://em.21dtv.com/songs/60053291.mkv +丁童-原来你只爱我的钱不爱我的人,http://em.21dtv.com/songs/60068956.mkv +王雅民-原来你也可以离开我爱他,http://em.21dtv.com/songs/60079372.mkv +梁静茹-原来你也唱过我的歌(演唱会),http://em.21dtv.com/songs/60055956.mkv +广智-原来你是我最爱的人,http://em.21dtv.com/songs/60061857.mkv +磕着瓜子的猫+童话里不是骗人的-原来你什么都不想要,http://em.21dtv.com/songs/60128267.mkv +许志安-原来你什么都不想要,http://em.21dtv.com/songs/60118041.mkv +黄品源-原来你什么都不想要,http://em.21dtv.com/songs/60089035.mkv +许志安-原来你什么都不想要,http://em.21dtv.com/songs/60088644.mkv +何韵诗-原来你什么都不想要,http://em.21dtv.com/songs/60087323.mkv +谭锡禧-原来你什么都不想要(演唱会),http://em.21dtv.com/songs/60084477.mkv +迪克牛仔-原来你什么都不想要,http://em.21dtv.com/songs/60055949.mkv +陈芳语-原来你就是我的快乐,http://em.21dtv.com/songs/60110650.mkv +贡维特-原来你从来没有真正爱过我,http://em.21dtv.com/songs/60055947.mkv +洋旭-原来你背着我爱上他,http://em.21dtv.com/songs/60055943.mkv +刘冲-眼泪落他乡,http://em.21dtv.com/songs/60104813.mkv +杨坤-月亮可以代表我的心,http://em.21dtv.com/songs/60056414.mkv +萧蔷+杨坤-月亮可以代表我的心,http://em.21dtv.com/songs/60056413.mkv +李代沫-原来爱情没有刚刚好,http://em.21dtv.com/songs/60094144.mkv +新街口组合-有了爱情就别碰暧昧,http://em.21dtv.com/songs/60105097.mkv +罗艺-原来爱情都是骗人的东西,http://em.21dtv.com/songs/60068955.mkv +WEWE-原来爱你是那么快乐,http://em.21dtv.com/songs/60055929.mkv +蔡济文-一颗真心真的深爱着你,http://em.21dtv.com/songs/60053238.mkv +袁咏仪-要哭我就等到下雨天,http://em.21dtv.com/songs/60052372.mkv +李腾-有空就来听听我唱歌,http://em.21dtv.com/songs/60055157.mkv +张萌萌-一九六九年二月二九日,http://em.21dtv.com/songs/60063512.mkv +伊扬-眼睛渴望眼睛的重逢,http://em.21dtv.com/songs/60052048.mkv +孙悦+郭东林-有家就有立事的根儿,http://em.21dtv.com/songs/60089236.mkv +王羚柔-一九九八年的黑咖啡,http://em.21dtv.com/songs/60053191.mkv +杨宗纬-遇见+回旋木马的终端(演唱会),http://em.21dtv.com/songs/60055842.mkv +王羚柔-一九八八年的黑咖啡(无原唱),http://em.21dtv.com/songs/60053187.mkv +李欣-渔家傲-反第一次大围剿,http://em.21dtv.com/songs/60055549.mkv +欧恒-遗憾,http://em.21dtv.com/songs/60117878.mkv +何晟铭-永恒是不可计算的爱,http://em.21dtv.com/songs/60086153.mkv +王璐岢-以后的以后谁会幸福,http://em.21dtv.com/songs/60115303.mkv +李进-阳光照耀我的破衣裳,http://em.21dtv.com/songs/60052194.mkv +资资-用根在泥土深处寻找,http://em.21dtv.com/songs/60086158.mkv +秦川-阳光已照在我的脸上,http://em.21dtv.com/songs/60129451.mkv +谭咏麟-一个永远不好的伤口(演唱会),http://em.21dtv.com/songs/60053121.mkv +赵传-勇敢一点,http://em.21dtv.com/songs/60118070.mkv +范玮琪-一个像夏天一个像秋天,http://em.21dtv.com/songs/60053116.mkv +郑伊健-一个为你甘去渡火海的人,http://em.21dtv.com/songs/60053111.mkv +郑伊健-一个为你甘去蹈火海的人(演唱会),http://em.21dtv.com/songs/60053110.mkv +郑伊健+谢安琪-一个为你甘去蹈火海的人(演唱会),http://em.21dtv.com/songs/60053109.mkv +梁咏琪-一个为你甘去蹈火海的人(演唱会),http://em.21dtv.com/songs/60053108.mkv +石乔-勇敢踏出人生第一步,http://em.21dtv.com/songs/60135603.mkv +蓝雨-应该是我对你说分手,http://em.21dtv.com/songs/60054550.mkv +江美琪-月光森林之留在谁的心里,http://em.21dtv.com/songs/60056346.mkv +王韵婵-一个失魂落魄的女子(无原唱),http://em.21dtv.com/songs/60053103.mkv +伍义-一个容易受伤的男人,http://em.21dtv.com/songs/60053100.mkv +吕梓铷-一个人一颗心一个家,http://em.21dtv.com/songs/60114439.mkv +童唱-一个人跳舞多么寂寞,http://em.21dtv.com/songs/60053087.mkv +蔡恒-一个人孤单两个人寂寞,http://em.21dtv.com/songs/60053050.mkv +林佳仪-一个人的我依然会微笑,http://em.21dtv.com/songs/60053039.mkv +黄格选-一个人的日子还好吗,http://em.21dtv.com/songs/60053025.mkv +孙艳-一个人的寂寞两个人的错,http://em.21dtv.com/songs/60053011.mkv +贺一航-一个人的寂寞两个人的错,http://em.21dtv.com/songs/60053010.mkv +波拉-一个人的寂寞两个人的错,http://em.21dtv.com/songs/60053009.mkv +吴勇滨-一个人的Disco,http://em.21dtv.com/songs/60094027.mkv +张柏芝-一个人背两个人的债,http://em.21dtv.com/songs/60052995.mkv +陈慧琳-一个女人一个男人的事,http://em.21dtv.com/songs/60052972.mkv +李进-一个迷失于南方的男子,http://em.21dtv.com/songs/60052961.mkv +曹卉娟-一个陌生女人的来信,http://em.21dtv.com/songs/60052963.mkv +朱贝贝-一个好女人,http://em.21dtv.com/songs/60105962.mkv +黎明-一个故事之别来无恙,http://em.21dtv.com/songs/60089067.mkv +李炆-有个地方很美丽我要带你去,http://em.21dtv.com/songs/60055124.mkv +周赛刚-一个不是理由的理由,http://em.21dtv.com/songs/60118458.mkv +吴是闳-一个不去爱你的理由,http://em.21dtv.com/songs/60107578.mkv +李玟-月光爱人,http://em.21dtv.com/songs/60120639.mkv +李玟-月光爱人,http://em.21dtv.com/songs/60116921.mkv +那英-有个爱你的人不容易,http://em.21dtv.com/songs/60130789.mkv +那英-有个爱你的人不容易,http://em.21dtv.com/songs/60129656.mkv +郭宴-有个爱你的人不容易,http://em.21dtv.com/songs/60127481.mkv +林忆莲-一分钟都市一分钟恋爱(演唱会),http://em.21dtv.com/songs/60052930.mkv +沙宝亮-远方,http://em.21dtv.com/songs/60114649.mkv +方毅-与父相谈,http://em.21dtv.com/songs/60118614.mkv +安东阳-缘分惹的祸,http://em.21dtv.com/songs/60061858.mkv +佚名-与驸马打坐开封堂上,http://em.21dtv.com/songs/60055579.mkv +韩春雨-缘分来了请你别放手,http://em.21dtv.com/songs/60121121.mkv +凤凰传奇-远方的远方还是远方,http://em.21dtv.com/songs/60130106.mkv +明月微风-远方的你也在想我吗,http://em.21dtv.com/songs/60124017.mkv +宋祖英-运方的客人请你留下来,http://em.21dtv.com/songs/60056693.mkv +佚名-远方的客人请你留下来,http://em.21dtv.com/songs/60056137.mkv +群星-远方的客人请你留下来(演唱会),http://em.21dtv.com/songs/60056136.mkv +卓依婷-远方的客人请你留下来(无原唱),http://em.21dtv.com/songs/60056135.mkv +李东升-一分不是爱,http://em.21dtv.com/songs/60122830.mkv +郭修彧-Yesterday,http://em.21dtv.com/songs/60131885.mkv +李安-Yesterday,http://em.21dtv.com/songs/60114598.mkv +黄子韬-Yesterday,http://em.21dtv.com/songs/60114298.mkv +佚名-一二三四五六七多劳多得,http://em.21dtv.com/songs/60052920.mkv +赫和美罗-YES OR NO,http://em.21dtv.com/songs/60124511.mkv +阎维文-羊肚子手巾三道道蓝,http://em.21dtv.com/songs/60052157.mkv +张琳-有爹有娘才是咱的福,http://em.21dtv.com/songs/60097948.mkv +谢华-鱼的眼泪只有水知道,http://em.21dtv.com/songs/60086166.mkv +王莹-一带一路都在春光里,http://em.21dtv.com/songs/60119825.mkv +苏晴-有多想你就有多爱你,http://em.21dtv.com/songs/60079278.mkv +孙子涵-一刀未剪,http://em.21dtv.com/songs/60128958.mkv +叶丽仪-you dont have to say you love me(演唱会),http://em.21dtv.com/songs/60074181.mkv +蒋雪儿-用多少眼泪才能让你相信,http://em.21dtv.com/songs/60054870.mkv +佚名-有多少苦同胞怨声载道,http://em.21dtv.com/songs/60055117.mkv +伊琳-有多少爱伤了还能重来,http://em.21dtv.com/songs/60055116.mkv +陈瑞-有多少爱能为你停留,http://em.21dtv.com/songs/60126398.mkv +望海高歌-遇到你这样一个女人,http://em.21dtv.com/songs/60126986.mkv +殷浩-一朵花两朵花三朵花,http://em.21dtv.com/songs/60089379.mkv +殷浩-一朵花二朵花三朵花,http://em.21dtv.com/songs/60052893.mkv +枫桥-云淡风轻独看百合花,http://em.21dtv.com/songs/60101124.mkv +贺国丰-一对对山羊一串串走,http://em.21dtv.com/songs/60118920.mkv +豫剧-一道道水来一道道山,http://em.21dtv.com/songs/60134528.mkv +彭丽媛-一道道水来一道道山,http://em.21dtv.com/songs/60102253.mkv +佚名-一道道水来一道道山,http://em.21dtv.com/songs/60052846.mkv +王宏伟-羊肚肚手巾三道道蓝,http://em.21dtv.com/songs/60052156.mkv +赵纲-一道道伤痕一个个你,http://em.21dtv.com/songs/60123198.mkv +林木-有多爱你就有多恨你,http://em.21dtv.com/songs/60055110.mkv +指原莉乃+アンリレ-意気地なしマスカレード,http://em.21dtv.com/songs/60072727.mkv +陈晓东-一次真爱追寻一百次,http://em.21dtv.com/songs/60052822.mkv +马如龙-一场说走就走的旅行,http://em.21dtv.com/songs/60131987.mkv +费玉清-一次就好,http://em.21dtv.com/songs/60129625.mkv +感觉自己萌萌哒+哈哈一笑很倾城-一次就好,http://em.21dtv.com/songs/60129154.mkv +杨宗纬+洪健轶-一次就好,http://em.21dtv.com/songs/60122886.mkv +正月十五-一辈子的爱,http://em.21dtv.com/songs/60111215.mkv +严爵-又不是这样就不孤独,http://em.21dtv.com/songs/60055420.mkv +宋迪-有本事你就别给我打电话,http://em.21dtv.com/songs/60061844.mkv +佚名-延边人民热爱毛主席,http://em.21dtv.com/songs/60052007.mkv +水晶乐坊-延边人民热爱毛主席,http://em.21dtv.com/songs/60052006.mkv +韩红-一杯美酒 楼兰姑娘,http://em.21dtv.com/songs/60110672.mkv +盖鸣晖-烟波江上西子情之宁萝访艳(演唱会),http://em.21dtv.com/songs/60051941.mkv +盖鸣晖+吴美英-烟波江上西子情-语儿亭,http://em.21dtv.com/songs/60051940.mkv +盖鸣晖-烟波江上西子情五湖泛舟-遁世仙乡(演唱会),http://em.21dtv.com/songs/60051939.mkv +沈曼-盐不及泪咸,http://em.21dtv.com/songs/60120693.mkv +娅琳-拥抱黑夜与星星为伴,http://em.21dtv.com/songs/60128952.mkv +佚名-迎宾歌送你一束鲜花,http://em.21dtv.com/songs/60054485.mkv +张津涤-一百个放心,http://em.21dtv.com/songs/60115910.mkv +林心如-一百八十分钟零七秒,http://em.21dtv.com/songs/60052719.mkv +张冬玲-要爱就深爱,http://em.21dtv.com/songs/60118554.mkv +中岛みゆき-银の龙の背に乘って,http://em.21dtv.com/songs/60054337.mkv +雨柔-心中永不凋落的玫瑰,http://em.21dtv.com/songs/60126420.mkv +林奕匡-小众情人,http://em.21dtv.com/songs/60125772.mkv +乔海清-想找个人来伤我的心,http://em.21dtv.com/songs/60049292.mkv +萧敬腾+宋宇-小镇姑娘,http://em.21dtv.com/songs/60112920.mkv +李双江-心中歌儿献给解放军,http://em.21dtv.com/songs/60087988.mkv +范玮琪-想知道现在你好不好,http://em.21dtv.com/songs/60049307.mkv +邝美云-现在的我最需要人安慰,http://em.21dtv.com/songs/60048518.mkv +佚名-心中的歌献给解放军,http://em.21dtv.com/songs/60050731.mkv +祖海+耿为华-心中的歌儿献给解放军(演唱会),http://em.21dtv.com/songs/60050730.mkv +铭鑫-心中的BEYOND,http://em.21dtv.com/songs/60113031.mkv +黎骏-现在的爱情都背叛了永远,http://em.21dtv.com/songs/60048512.mkv +金志文-下一站我是你的依靠,http://em.21dtv.com/songs/60121025.mkv +王凯-夕阳醉了,http://em.21dtv.com/songs/60122987.mkv +杨洪基-夕阳绽放着灿烂的光芒,http://em.21dtv.com/songs/60078492.mkv +杨俊伟-想要一辈子唱给你听,http://em.21dtv.com/songs/60078645.mkv +邓广福-想一天就可以想你到永远,http://em.21dtv.com/songs/60049287.mkv +四郎多登-雪域神山我的香巴拉,http://em.21dtv.com/songs/60051757.mkv +徐新军-想用时间来把你忘记,http://em.21dtv.com/songs/60133716.mkv +温兆伦-心要伤几次才能变聪明,http://em.21dtv.com/songs/60050660.mkv +萧敬腾+游梦娇-写一首歌,http://em.21dtv.com/songs/60112190.mkv +陈幸子-写一首歌送给我自己,http://em.21dtv.com/songs/60071336.mkv +顺子-写一首歌april 5 1969,http://em.21dtv.com/songs/60050019.mkv +张馨戈-相遇是场美丽的误会,http://em.21dtv.com/songs/60048872.mkv +佚名-想要你也难不想你也难,http://em.21dtv.com/songs/60049277.mkv +孟庭苇-校园里的消息传得特别快,http://em.21dtv.com/songs/60049908.mkv +武笑羽-相遇就在寒冷的季节,http://em.21dtv.com/songs/60078594.mkv +辛宝达-逍遥津-父子们在宫院伤心落泪,http://em.21dtv.com/songs/60049424.mkv +曾庆瑜-下一个男人也许会更好,http://em.21dtv.com/songs/60048311.mkv +蔡健雅-下一次爱情来的时候(演唱会),http://em.21dtv.com/songs/60048303.mkv +包贝尔-小样别跑,http://em.21dtv.com/songs/60128846.mkv +あゆみくりかまき-心友フォーエヴァー,http://em.21dtv.com/songs/60117516.mkv +吴宗宪-谢谢一路有你陪着我,http://em.21dtv.com/songs/60050090.mkv +孙露-小小新娘花,http://em.21dtv.com/songs/60114483.mkv +温亮亮-相信我们会创造奇迹,http://em.21dtv.com/songs/60127178.mkv +杨钰莹-星星是我看你的眼睛,http://em.21dtv.com/songs/60051117.mkv +门丽+胡小宝-谢谢上天让我遇见你,http://em.21dtv.com/songs/60066480.mkv +盖鸣晖+吴美英-香销十二美人楼-吾爱吾仇,http://em.21dtv.com/songs/60048950.mkv +盖鸣晖+吴美英-香销十二美人楼-夙愿成空,http://em.21dtv.com/songs/60048949.mkv +盖鸣晖+吴美英-香销十二美人楼-换巢鸾凤,http://em.21dtv.com/songs/60048948.mkv +林峰-夏雪+凭良心说再见+自己保重,http://em.21dtv.com/songs/60048419.mkv +沈芳如-谢谢你终于肯离开我(无原唱),http://em.21dtv.com/songs/60050079.mkv +庞龙-谢谢你祝我生日快乐,http://em.21dtv.com/songs/60050081.mkv +庞龙-谢谢你祝我生日快乐(演唱会),http://em.21dtv.com/songs/60050080.mkv +陈明-相信你总会被我感动(演唱会),http://em.21dtv.com/songs/60048842.mkv +群星-谢谢你一直陪我唱歌,http://em.21dtv.com/songs/60050077.mkv +雪村-谢谢你我亲爱的媳妇,http://em.21dtv.com/songs/60050075.mkv +许志安-心血+男人最痛+恋爱片段(演唱会),http://em.21dtv.com/songs/60050652.mkv +柯以敏-谢谢你让我这么爱你,http://em.21dtv.com/songs/60050073.mkv +肖亮-谢谢你让我这么爱你,http://em.21dtv.com/songs/60066479.mkv +王馨-谢谢你给我的网络情缘,http://em.21dtv.com/songs/60063040.mkv +姚黛玮-谢谢你给我成熟的机会(无原唱),http://em.21dtv.com/songs/60050065.mkv +王源+沙溢-谢谢你的菜2017,http://em.21dtv.com/songs/60133992.mkv +随性乐团-谢谢你的爱2016,http://em.21dtv.com/songs/60130866.mkv +马海生-谢谢你的爱2009,http://em.21dtv.com/songs/60050059.mkv +后弦-谢谢你的爱2009,http://em.21dtv.com/songs/60050058.mkv +谢霆锋-谢谢你的爱1999,http://em.21dtv.com/songs/60050057.mkv +谢霆锋-谢谢你的爱1999(演唱会),http://em.21dtv.com/songs/60050056.mkv +郭玲玲-西厢记-先只说迎张郎娘把诺言来践,http://em.21dtv.com/songs/60047949.mkv +周虹-新小城故事,http://em.21dtv.com/songs/60104888.mkv +裘海正-像我这样重感情的人,http://em.21dtv.com/songs/60049407.mkv +岳明-像我这样为爱痴情的男人(演唱会),http://em.21dtv.com/songs/60049405.mkv +成云刚-像我这样深情的人多不多,http://em.21dtv.com/songs/60078667.mkv +林志颖-像我这样的人哪里找,http://em.21dtv.com/songs/60091472.mkv +大哲-像我这样的男人哪里找,http://em.21dtv.com/songs/60066467.mkv +岳明-像我这样痴情的男人(演唱会),http://em.21dtv.com/songs/60063330.mkv +豫剧-下位劝一劝贵妃娘娘,http://em.21dtv.com/songs/60134529.mkv +佚名-想问你是否可以爱我,http://em.21dtv.com/songs/60049256.mkv +贺宣-希望你能好好的生活,http://em.21dtv.com/songs/60126220.mkv +任贤齐-希望你明年冬天会回来,http://em.21dtv.com/songs/60047992.mkv +谢雷-响往+风从那里来+往事只能回味+泪的小花+今天不回家(演唱会),http://em.21dtv.com/songs/60048971.mkv +张也-希望的中国走向未来,http://em.21dtv.com/songs/60047982.mkv +佚名-习天书学兵法犹如反掌,http://em.21dtv.com/songs/60048082.mkv +潘东文-想听你开口说一句你爱我,http://em.21dtv.com/songs/60049248.mkv +郭慧敏-心疼你的人你不心疼,http://em.21dtv.com/songs/60104498.mkv +博才-心疼才是最真的表达,http://em.21dtv.com/songs/60119324.mkv +周华健-新天长地久之男大当恋女大当爱,http://em.21dtv.com/songs/60050957.mkv +盖鸣晖+吴美英-新三笑姻缘-千里追舟,http://em.21dtv.com/songs/60050926.mkv +盖鸣晖+吴美英-新三笑姻缘-庙过求神,http://em.21dtv.com/songs/60050925.mkv +盖鸣晖+吴美英-新三笑姻缘-虎丘惊艳,http://em.21dtv.com/songs/60050923.mkv +萧亚轩+男团Notice+阿云嘎+WalkingXL乐队-潇洒小姐,http://em.21dtv.com/songs/60124422.mkv +王婷-西施-水殿风来秋气紧,http://em.21dtv.com/songs/60047943.mkv +杨宗宪-想啥人怨啥人等啥人,http://em.21dtv.com/songs/60049232.mkv +佚名-心上人啊快给我力量,http://em.21dtv.com/songs/60050471.mkv +萧敬腾+刘洋-袖手旁观,http://em.21dtv.com/songs/60126130.mkv +巴图-袖手旁观,http://em.21dtv.com/songs/60129037.mkv +靳永棠-心声泪影之寒江钓雪(戏曲),http://em.21dtv.com/songs/60093506.mkv +朱咪咪-相思泪+百花亭之恋,http://em.21dtv.com/songs/60092768.mkv +蒲庭龙-向世界证明咱的力量,http://em.21dtv.com/songs/60095883.mkv +禇桐羽-小伞给我撑起一个家,http://em.21dtv.com/songs/60121979.mkv +高山林-写首歌唱给无情的你,http://em.21dtv.com/songs/60050013.mkv +陈瑞-相思的债,http://em.21dtv.com/songs/60127564.mkv +王小武-心上的人啊你在哪里,http://em.21dtv.com/songs/60135549.mkv +红蔷薇-相思的泪水,http://em.21dtv.com/songs/60112878.mkv +金子乔-新时代雷锋郭明义,http://em.21dtv.com/songs/60071351.mkv +朱婧汐-心碎大道,http://em.21dtv.com/songs/60119640.mkv +佚名-夏日里最后一朵玫瑰,http://em.21dtv.com/songs/60048381.mkv +周艳泓-夏日的最后一朵玫瑰,http://em.21dtv.com/songs/60048370.mkv +佚名-夏日的最后一朵玫瑰,http://em.21dtv.com/songs/60048369.mkv +张伟文+吕珊-雪人不见了+santa claus is coming to town,http://em.21dtv.com/songs/60051726.mkv +陈雅森-喜气洋洋 吉吉向上,http://em.21dtv.com/songs/60133057.mkv +新宠儿组合+新七小福+陈雅森-喜气洋洋 吉吉向上,http://em.21dtv.com/songs/60132494.mkv +群星-喜气洋洋 花开富贵满华堂,http://em.21dtv.com/songs/60048165.mkv +孙燕姿-星期一天气晴我离开你,http://em.21dtv.com/songs/60051092.mkv +刘沛洋-相亲情歌[DJ版],http://em.21dtv.com/songs/60103936.mkv +童唱-小朋友爱唱社会主义好,http://em.21dtv.com/songs/60049693.mkv +群星-新年有缘+过新年+甲你拜年,http://em.21dtv.com/songs/60050905.mkv +佚名-想你也难不想你也难,http://em.21dtv.com/songs/60049169.mkv +龙飘飘-想你又恨你,http://em.21dtv.com/songs/60104643.mkv +唐冰冰-想你想到眼泪掉下来,http://em.21dtv.com/songs/60094031.mkv +姚可儿-想你特别是在圣诞夜,http://em.21dtv.com/songs/60099921.mkv +郑俊海-想你特别是在圣诞夜,http://em.21dtv.com/songs/60063446.mkv +洪小乔-想念是一首愉快的诗,http://em.21dtv.com/songs/60091617.mkv +单色凌-想念你就和你在一起,http://em.21dtv.com/songs/60084196.mkv +CT GIRLS-新年快乐+大家说恭喜,http://em.21dtv.com/songs/60050883.mkv +CT GIRLS-新年so crazy+恭喜新年好,http://em.21dtv.com/songs/60050872.mkv +何禹妃-想你的心伤得那么深,http://em.21dtv.com/songs/60099085.mkv +李翊君-想你的心情没有尽头,http://em.21dtv.com/songs/60049124.mkv +万一英-学你爹心红胆壮志如钢,http://em.21dtv.com/songs/60051651.mkv +高淑娟-学你爹心红胆壮志如钢,http://em.21dtv.com/songs/60051650.mkv +徐志强-想你的时候你也想我吗,http://em.21dtv.com/songs/60049116.mkv +汤潮-想你的时候你是否会想我,http://em.21dtv.com/songs/60049115.mkv +张枫-想你的时候你会想我吗,http://em.21dtv.com/songs/60049114.mkv +王雯萱-想你的时候没有理由(无原唱),http://em.21dtv.com/songs/60049113.mkv +许强-想你的时候还会泪流,http://em.21dtv.com/songs/60081099.mkv +晓月-想你的时候还会泪流,http://em.21dtv.com/songs/60080360.mkv +李玟-想你的三百六十五天,http://em.21dtv.com/songs/60049107.mkv +胡云鹏-想你的日夜你却不在,http://em.21dtv.com/songs/60122036.mkv +金城-想你的感觉,http://em.21dtv.com/songs/60122188.mkv +华峰-想念草原慈祥的母亲,http://em.21dtv.com/songs/60084195.mkv +豫剧-西门外放罢了催阵炮,http://em.21dtv.com/songs/60134606.mkv +后来者-心里有你是我的安慰,http://em.21dtv.com/songs/60133458.mkv +胡海波-醒来就能看见你的脸,http://em.21dtv.com/songs/60071360.mkv +陈奎-血泪仇-听人说边区好难民优待,http://em.21dtv.com/songs/60051789.mkv +晏菲+魏金栋-新龙船调,http://em.21dtv.com/songs/60129181.mkv +陈奎-血泪仇-手拖孙女好悲伤,http://em.21dtv.com/songs/60051788.mkv +谭咏麟+李克勤-笑看人生+暴风神女+世界停顿(演唱会),http://em.21dtv.com/songs/60049935.mkv +沈凌云-向快乐问好,http://em.21dtv.com/songs/60098558.mkv +张涛-西江月夜行黄沙道中(演唱会),http://em.21dtv.com/songs/60067613.mkv +豫剧-下决心要娶她魏淑兰,http://em.21dtv.com/songs/60134530.mkv +佚名-血溅乌纱-严天民雪夜秉烛审案卷,http://em.21dtv.com/songs/60051787.mkv +佚名-血溅乌纱-打坐在李离庙细问农桑,http://em.21dtv.com/songs/60051786.mkv +红霞-香魂塘月朦胧我心寒意冷,http://em.21dtv.com/songs/60078606.mkv +冷漠+奥迪-新欢旧爱[DJ版],http://em.21dtv.com/songs/60101938.mkv +李发牢-下河东-王想起先行兄妹珠泪倾,http://em.21dtv.com/songs/60048285.mkv +李发牢-下河东-哭先行哭的王如醉倒,http://em.21dtv.com/songs/60048284.mkv +罗品超+倪惠英-璇宫艳史之夜宴璇宫(戏曲),http://em.21dtv.com/songs/60093022.mkv +阿坝州歌舞团-献给你一片高原的云,http://em.21dtv.com/songs/60048550.mkv +张非艳-写给你的情歌唱给谁,http://em.21dtv.com/songs/60116813.mkv +铭鑫-习惯了有你在我身边,http://em.21dtv.com/songs/60106357.mkv +萧敬腾+许一鸣-像个孩子,http://em.21dtv.com/songs/60102693.mkv +黑鸭子-相逢是首歌,http://em.21dtv.com/songs/60109067.mkv +许嵩-小烦恼没什么大不了,http://em.21dtv.com/songs/60078688.mkv +赵真-幸福就是有你在我身边,http://em.21dtv.com/songs/60051330.mkv +赵真-幸福就是有你在我身边(演唱会),http://em.21dtv.com/songs/60051329.mkv +祁隆+桂莹莹-幸福就是你也爱着我,http://em.21dtv.com/songs/60132773.mkv +桂莹莹+祁隆-幸福就是你也爱着我,http://em.21dtv.com/songs/60131569.mkv +林佑威+赵韩樱子-幸福的样子,http://em.21dtv.com/songs/60106977.mkv +晓枫-享福的时候更想爹娘,http://em.21dtv.com/songs/60108538.mkv +吴美英+盖鸣晖-喜得银可抱月归之海囚,http://em.21dtv.com/songs/60048106.mkv +盖鸣晖+吴美英-喜得银河抱月归-瑶池梦会,http://em.21dtv.com/songs/60048105.mkv +佚名-喜得银河抱月归-哭江,http://em.21dtv.com/songs/60048104.mkv +余超颖-辛德瑞拉,http://em.21dtv.com/songs/60128786.mkv +谭维维+杨宇-心的祈祷,http://em.21dtv.com/songs/60112969.mkv +杜歌-兄弟难当[影视版],http://em.21dtv.com/songs/60103380.mkv +熊大-兄弟的事就是我的事,http://em.21dtv.com/songs/60107047.mkv +孟庭苇-羞答答的玫瑰静悄悄的开,http://em.21dtv.com/songs/60051505.mkv +格格-羞答答的玫瑰唱情歌,http://em.21dtv.com/songs/60072675.mkv +佚名-响当当的连队呱呱叫的兵,http://em.21dtv.com/songs/60048970.mkv +李贵府-羞答答的姑娘我爱你,http://em.21dtv.com/songs/60084297.mkv +黎骏-现代的爱情都背叛了永远,http://em.21dtv.com/songs/60048494.mkv +越剧-想当初遇娘子共舟湖上,http://em.21dtv.com/songs/60049009.mkv +佚名-想当初妹妹从江南初来到,http://em.21dtv.com/songs/60049008.mkv +叶良俊-下次如果我们再相爱,http://em.21dtv.com/songs/60048268.mkv +佚名-徐策跑城-他虽然年幼性猛勇,http://em.21dtv.com/songs/60051556.mkv +李琼-西藏风云吉祥的云彩,http://em.21dtv.com/songs/60091355.mkv +佚名-下次的相逢在什么时候(无原唱),http://em.21dtv.com/songs/60048266.mkv +佚名-兴冲冲奉命把花送-送花楼会,http://em.21dtv.com/songs/60051192.mkv +马郁-下辈子如果我还记得你,http://em.21dtv.com/songs/60048256.mkv +冰火组合-下辈子如果我还记得你(演唱会),http://em.21dtv.com/songs/60048255.mkv +姜鹏-下辈子你还是我的女人,http://em.21dtv.com/songs/60048254.mkv +王晓敏-下辈子还做你的女人,http://em.21dtv.com/songs/60112103.mkv +龚天齐-下辈子还做你的男人,http://em.21dtv.com/songs/60048252.mkv +索朗扎西-下辈子还要和你在一起,http://em.21dtv.com/songs/60072597.mkv +何龙雨-下辈子不要再遇见你,http://em.21dtv.com/songs/60084155.mkv +艾歌-下辈子不要再遇见你,http://em.21dtv.com/songs/60048243.mkv +洪卓立-萧邦也弹不出我的难过,http://em.21dtv.com/songs/60068840.mkv +周强-西柏坡我是你的读者,http://em.21dtv.com/songs/60065157.mkv +宇宙人-想把你拍成一部电影,http://em.21dtv.com/songs/60078615.mkv +扎西尼玛+阿斯满-香巴拉神山见证我们的爱,http://em.21dtv.com/songs/60063354.mkv +最后一只恐龙-新不了情,http://em.21dtv.com/songs/60129200.mkv +佚名-绣罢了绿线绣红红线,http://em.21dtv.com/songs/60051522.mkv +兰天-雪白的鸽子虚空里飞,http://em.21dtv.com/songs/60071386.mkv +佚名-巡案斩子-八字衙门朝南开,http://em.21dtv.com/songs/60051853.mkv +邓丽君-相爱如往昔,http://em.21dtv.com/songs/60103605.mkv +那英+郎朗-相爱恨早,http://em.21dtv.com/songs/60127452.mkv +李茂山-心爱的总有一天你会了解,http://em.21dtv.com/songs/60050148.mkv +黄雅莉-相爱的人都等在这地方,http://em.21dtv.com/songs/60048598.mkv +冷漠-相爱的人不要随便说分手,http://em.21dtv.com/songs/60048597.mkv +许志安-相爱的人本来就该粘着的,http://em.21dtv.com/songs/60048596.mkv +佚名-幸せなら手をたたこう,http://em.21dtv.com/songs/60051197.mkv +三枝夕夏IN DB-雪どけのあの川の流れのように,http://em.21dtv.com/songs/60051670.mkv +佚名-幸せはのむぎのひがし,http://em.21dtv.com/songs/60051199.mkv +张艾嘉-我站在全世界的屋顶,http://em.21dtv.com/songs/60046828.mkv +周华健-我站在全世界的屋顶(演唱会),http://em.21dtv.com/songs/60046827.mkv +齐秦-我只在乎你,http://em.21dtv.com/songs/60078421.mkv +谭圳-我只知道爱你一个人,http://em.21dtv.com/songs/60046918.mkv +王杰-我只要一个真实的明天,http://em.21dtv.com/songs/60046904.mkv +晓雨-我早已习惯为你等待,http://em.21dtv.com/songs/60061712.mkv +瞿颖-我终于失去了你的温柔,http://em.21dtv.com/songs/60046964.mkv +小捷-我只要你爱我一个人,http://em.21dtv.com/songs/60046901.mkv +爽爽心-我只要你爱我一个人,http://em.21dtv.com/songs/60046900.mkv +薛之谦-我终于成了别人的女人,http://em.21dtv.com/songs/60046958.mkv +翁航融-我再也不要对你那么好,http://em.21dtv.com/songs/60046766.mkv +崔子格-我再也不相信爱情了,http://em.21dtv.com/songs/60111033.mkv +崔子格-我再也不相信爱情了,http://em.21dtv.com/songs/60072567.mkv +白安-我只想在乎我在乎的,http://em.21dtv.com/songs/60072573.mkv +黄小琥-我只想知道你是否真的爱我(演唱会)(无原唱),http://em.21dtv.com/songs/60046897.mkv +赵龙啸-我只想要与你共有一秒(无原唱),http://em.21dtv.com/songs/60046896.mkv +MOJO乐团-我在想你的时候睡着了,http://em.21dtv.com/songs/60046801.mkv +林宥嘉-我总是一个人在练习一个人,http://em.21dtv.com/songs/60061717.mkv +小小-我只是一个平凡的女子,http://em.21dtv.com/songs/60066434.mkv +陈好-我在世界这头想念你,http://em.21dtv.com/songs/60046797.mkv +陈零九-我只是害怕不在你身旁,http://em.21dtv.com/songs/60078419.mkv +阿肆-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60122215.mkv +赵大格-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60114097.mkv +赵大格-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60112982.mkv +阿肆-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60084102.mkv +许明明-我在人民广场吃炸鸡,http://em.21dtv.com/songs/60084101.mkv +汤潮-我最亲爱亲爱的老婆,http://em.21dtv.com/songs/60078429.mkv +静物乐团-我在欧洲打电话给你,http://em.21dtv.com/songs/60046793.mkv +央金兰泽-我在念着你我的爱人,http://em.21dtv.com/songs/60068797.mkv +藏娃-我在你眼里到底算什么,http://em.21dtv.com/songs/60046789.mkv +冯曦妤-我在那一角落患过伤风,http://em.21dtv.com/songs/60078405.mkv +马健涛-我在那一角落患过伤风,http://em.21dtv.com/songs/60046785.mkv +苏慧伦-我在你心里有没有重量,http://em.21dtv.com/songs/60046788.mkv +张祥洪-我只能爱你到一百岁,http://em.21dtv.com/songs/60085945.mkv +天籁天-我在梦中来到你身旁,http://em.21dtv.com/songs/60133535.mkv +伍咏薇-我在梦中给你打电话,http://em.21dtv.com/songs/60046783.mkv +黄柄龙-我怎么舍得让你难过,http://em.21dtv.com/songs/60078409.mkv +周治平-我怎么可能会爱上你,http://em.21dtv.com/songs/60046809.mkv +陈淑芳-我这里假意儿懒睁杏眼,http://em.21dtv.com/songs/60046838.mkv +颜振豪-我在丽江等你喝咖啡,http://em.21dtv.com/songs/60134452.mkv +张艺婷-为自己的爱找个借口,http://em.21dtv.com/songs/60132464.mkv +王识贤-我在回家的路上等你,http://em.21dtv.com/songs/60065133.mkv +杜镇杰-文昭官-伍员在头上换儒巾,http://em.21dtv.com/songs/60044394.mkv +杜镇杰-文昭官-过了一天又一天,http://em.21dtv.com/songs/60044393.mkv +越剧-我只道自古荒田脾草生,http://em.21dtv.com/songs/60046880.mkv +储毅-我知道我心中还有梦,http://em.21dtv.com/songs/60081619.mkv +刘润洁-完整的我,http://em.21dtv.com/songs/60109187.mkv +金莎-我知道我们不会有结果,http://em.21dtv.com/songs/60046953.mkv +CIRCUS-我知道你们都在笑我,http://em.21dtv.com/songs/60046941.mkv +张冬玲+冷漠-我知道你还在想着她,http://em.21dtv.com/songs/60046938.mkv +隆隆-我知道你从来就没有爱过我,http://em.21dtv.com/songs/60046935.mkv +翟靖伟-我知道你不再心疼我哭,http://em.21dtv.com/songs/60046934.mkv +毛宁-我知道你不会再回头,http://em.21dtv.com/songs/60046933.mkv +龙奔-我真的好想牵你的手,http://em.21dtv.com/songs/60084104.mkv +龙奔+琼琼-我真的好想牵你的手,http://em.21dtv.com/songs/60078415.mkv +胡杰夕-我真的好想好好爱你,http://em.21dtv.com/songs/60078414.mkv +姚天成-我真的爱你,http://em.21dtv.com/songs/60109255.mkv +巴特-我在草原 你在哪里,http://em.21dtv.com/songs/60130285.mkv +群星-我在潮白河边吃烧烤,http://em.21dtv.com/songs/60117124.mkv +佚名-我在别人的口中听到你,http://em.21dtv.com/songs/60046767.mkv +刘其贤-我最爱的人她不爱我,http://em.21dtv.com/songs/60065138.mkv +张启辉-我最爱的人伤我最深,http://em.21dtv.com/songs/60121646.mkv +张启辉-我最爱的人伤我最深,http://em.21dtv.com/songs/60086956.mkv +李果-我最爱的人却伤我最深,http://em.21dtv.com/songs/60066435.mkv +沈世爱-我最爱的人你快回来,http://em.21dtv.com/songs/60046993.mkv +辛欣-我一直站在被你伤害的地方,http://em.21dtv.com/songs/60046641.mkv +贾孟昕-我要做你最美的新娘,http://em.21dtv.com/songs/60115417.mkv +焦魅欣-我愿做你身边的灰太狼,http://em.21dtv.com/songs/60046762.mkv +唐文龙-我要怎么知道你爱我如果我们永远不说,http://em.21dtv.com/songs/60046595.mkv +易帆-我用自己的方式爱你,http://em.21dtv.com/songs/60046685.mkv +陈明真-我用自己的方式爱你,http://em.21dtv.com/songs/60046684.mkv +TIZZY BAC-我又再度依恋上昨天,http://em.21dtv.com/songs/60046724.mkv +宋子楚-我愿意做你的卓别林,http://em.21dtv.com/songs/60121588.mkv +王馨+李青-我愿意做你的布娃娃,http://em.21dtv.com/songs/60084098.mkv +林森-我要用一生为你等待,http://em.21dtv.com/songs/60046594.mkv +北方苍狼-我要用心的告诉你我爱你,http://em.21dtv.com/songs/60046593.mkv +佚名-我要用什么方式留你,http://em.21dtv.com/songs/60046591.mkv +凡人-我要用什么方式留你,http://em.21dtv.com/songs/60046590.mkv +洪荣宏-我用一生甲你搏幸福,http://em.21dtv.com/songs/60046682.mkv +蔡旻佑-我用一首demo跟你告白xd,http://em.21dtv.com/songs/60046683.mkv +王杰-我要一个真实的明天,http://em.21dtv.com/songs/60088297.mkv +邓小龙-我愿意爱你一生一世,http://em.21dtv.com/songs/60081451.mkv +陈依然-我愿意爱你多久你愿意,http://em.21dtv.com/songs/60046756.mkv +顾建华-我以为我可以无所谓,http://em.21dtv.com/songs/60124701.mkv +潘世科-我要为你赚钱买房子,http://em.21dtv.com/songs/60080915.mkv +史俊鹏-我以为你是流过泪的人,http://em.21dtv.com/songs/60046665.mkv +林心如-我以为没有看到就好,http://em.21dtv.com/songs/60046663.mkv +胡苏-我用我的声音祭奠你,http://em.21dtv.com/songs/60061710.mkv +凡人-我愿是你最温柔的风,http://em.21dtv.com/songs/60046737.mkv +李碧华-我用思念包装我的心,http://em.21dtv.com/songs/60046680.mkv +陈小春-我有什么资格不要你,http://em.21dtv.com/songs/60046696.mkv +李丹阳-问一声妈妈你累不累,http://em.21dtv.com/songs/60044506.mkv +刘虹桦-我依然相信你还爱我,http://em.21dtv.com/songs/60046651.mkv +褚永祥-我依然是那么的爱你,http://em.21dtv.com/songs/60093826.mkv +许慧欣-我要轻轻为你唱首歌,http://em.21dtv.com/songs/60046565.mkv +冷漠+大哲-文艺青年的城市生活,http://em.21dtv.com/songs/60044391.mkv +刘乙骏-我用全部的爱感谢你,http://em.21dtv.com/songs/60123668.mkv +张启辉-我要你只做我的女人,http://em.21dtv.com/songs/60069990.mkv +原乡-挽一抹微笑迎接明天,http://em.21dtv.com/songs/60101282.mkv +好妹妹乐队-我也可以是流浪诗人,http://em.21dtv.com/songs/60113382.mkv +银纱-我愿今生与你共缠绵,http://em.21dtv.com/songs/60134369.mkv +叶岩-我一定要你做我老婆,http://em.21dtv.com/songs/60115743.mkv +张卫健-我有的她有你的影子,http://em.21dtv.com/songs/60087796.mkv +易秀明珠-我要的是你完整的爱,http://em.21dtv.com/songs/60065116.mkv +俊锋-我要的不是这种结果,http://em.21dtv.com/songs/60128792.mkv +小贱-万一奥特曼打不赢小怪兽,http://em.21dtv.com/songs/60069895.mkv +五月天-我心中尚未崩坏的地方,http://em.21dtv.com/songs/60046469.mkv +佚名-我心中的歌献给解放军,http://em.21dtv.com/songs/60046465.mkv +邰正宵-我相信他是真的爱你(演唱会),http://em.21dtv.com/songs/60046370.mkv +杨嘉松-我希望我的希望不再只是希望,http://em.21dtv.com/songs/60065108.mkv +邝美云-我想我是真的爱上你,http://em.21dtv.com/songs/60046411.mkv +曾雨轩-我想我能能勇敢一点,http://em.21dtv.com/songs/60115209.mkv +郭富城-我想偷偷对你说我爱你,http://em.21dtv.com/songs/60046402.mkv +王博文-我想你永远不会知道,http://em.21dtv.com/songs/60131638.mkv +洛客班-我想你的快乐是因为我,http://em.21dtv.com/songs/60046393.mkv +于台烟-我想你不是真心爱我,http://em.21dtv.com/songs/60046392.mkv +陈升-我喜欢私奔和我自己(无原唱),http://em.21dtv.com/songs/60046355.mkv +牛飞-我喜欢看着你的眼睛唱歌,http://em.21dtv.com/songs/60046352.mkv +张雨生-我想把整片天空打开,http://em.21dtv.com/songs/60046375.mkv +袁培华-我写不出一首情歌给我最爱的你(无原唱),http://em.21dtv.com/songs/60046438.mkv +四分卫-我写不出来像样的情歌,http://em.21dtv.com/songs/60046437.mkv +龙奔-我心爱的人儿叫小爽,http://em.21dtv.com/songs/60078369.mkv +李明翰-为心爱的人唱一首歌,http://em.21dtv.com/songs/60044139.mkv +利绮-我微笑是因为你微笑,http://em.21dtv.com/songs/60089688.mkv +王力宏-我完全没有任何理由理你,http://em.21dtv.com/songs/60046295.mkv +王力宏-我完全没有任何理由理你(演唱会),http://em.21dtv.com/songs/60046294.mkv +李欣-我魏绛闻此言如梦方醒,http://em.21dtv.com/songs/60046329.mkv +郑莉-我为共产主义把青春贡献,http://em.21dtv.com/songs/60046299.mkv +段婷婷-我为共产主义把青春贡献,http://em.21dtv.com/songs/60069981.mkv +彭佳慧-微微的幸福,http://em.21dtv.com/songs/60113509.mkv +龙宽九段-我听这种音乐的时候最爱你,http://em.21dtv.com/songs/60046287.mkv +林健辉-我听见有人叫你宝贝,http://em.21dtv.com/songs/60046286.mkv +陈杰洲-我听见有人叫你宝贝,http://em.21dtv.com/songs/60046285.mkv +孙楠-我听别人唱天长地久(演唱会),http://em.21dtv.com/songs/60046278.mkv +沙楠杰-我听不见,http://em.21dtv.com/songs/60120699.mkv +陈思祺-我是最后知道的一个,http://em.21dtv.com/songs/60093435.mkv +CK-我是最后知道的一个,http://em.21dtv.com/songs/60046249.mkv +李进-我是真的在乎你的爱,http://em.21dtv.com/songs/60046237.mkv +宇桐非-我是真的真的喜欢你,http://em.21dtv.com/songs/60097951.mkv +言承旭-我是真的真的很爱你,http://em.21dtv.com/songs/60046240.mkv +梦成-我是真的真的很爱你,http://em.21dtv.com/songs/60069980.mkv +子枫-我是真的想好好爱你,http://em.21dtv.com/songs/60046236.mkv +潮峰-我是真的想好好爱你,http://em.21dtv.com/songs/60046235.mkv +蔡献华+李晶-我是真的失去你了吗,http://em.21dtv.com/songs/60084083.mkv +周华健-我是真的付出我的爱,http://em.21dtv.com/songs/60046232.mkv +梁静茹+周华健-我是真的付出我的爱(演唱会),http://em.21dtv.com/songs/60046231.mkv +陈咏-我是真的不愿放开你的手,http://em.21dtv.com/songs/60046230.mkv +欧阳大龙-我是真的不想说再见,http://em.21dtv.com/songs/60089377.mkv +李林平-我是真的不想让你走,http://em.21dtv.com/songs/60078348.mkv +李琛-我是一只孤独的小船,http://em.21dtv.com/songs/60046198.mkv +张启辉-我是一只孤独的老鼠,http://em.21dtv.com/songs/60078346.mkv +郭琬-我是一只孤傲的蝴蝶,http://em.21dtv.com/songs/60069977.mkv +竹叶儿-我是一束明媚的阳光,http://em.21dtv.com/songs/60108792.mkv +敖威-我是一个伤感的苗朗,http://em.21dtv.com/songs/60084081.mkv +师红飞-我是杨过你是小龙女,http://em.21dtv.com/songs/60111039.mkv +李春贤-我是一个被抛弃的人,http://em.21dtv.com/songs/60097950.mkv +郑嘉颖-我是一个不懂倾诉的对象,http://em.21dtv.com/songs/60046191.mkv +程科-我是一个被爱伤害的男人,http://em.21dtv.com/songs/60046188.mkv +林峰-我是一个被爱伤过的人,http://em.21dtv.com/songs/60046187.mkv +涓子-我是一朵受伤的玫瑰,http://em.21dtv.com/songs/60133944.mkv +江明学-我剩下的寂寞刚刚好(无原唱),http://em.21dtv.com/songs/60046062.mkv +MP魔幻力量-我是谁我是谁我是谁,http://em.21dtv.com/songs/60107422.mkv +MP魔幻力量-我是谁我是谁我是谁,http://em.21dtv.com/songs/60046172.mkv +君子-我是世界上最幸福的人,http://em.21dtv.com/songs/60072560.mkv +网络歌手-我是神经病,http://em.21dtv.com/songs/60112882.mkv +刘文杰-往事随风,http://em.21dtv.com/songs/60125195.mkv +王喆-我深深地爱你 我的祖国(演唱会),http://em.21dtv.com/songs/60069971.mkv +陶喆+张也-万事如意^小镇姑娘,http://em.21dtv.com/songs/60108995.mkv +云鸽李霞-我是你今生不该伤害的人,http://em.21dtv.com/songs/60078338.mkv +金巧巧-我是你的新娘你是我的郎,http://em.21dtv.com/songs/60071265.mkv +张智勇-我是你的PANDA,http://em.21dtv.com/songs/60110200.mkv +吴莫愁-我是你的LOVER,http://em.21dtv.com/songs/60115755.mkv +张林-我送你的花你会接受吗,http://em.21dtv.com/songs/60046262.mkv +关泽南-我是你的第几个男人,http://em.21dtv.com/songs/60103895.mkv +张瑞-我是你的草还是你的宝,http://em.21dtv.com/songs/60072555.mkv +姚天成-为什么毅然离开了我,http://em.21dtv.com/songs/60086909.mkv +林胜天-为什么相爱却不能在一起,http://em.21dtv.com/songs/60068735.mkv +郑源-为什么相爱的人不能在一起,http://em.21dtv.com/songs/60044099.mkv +童唱-为什么相爱的人不能在一起,http://em.21dtv.com/songs/60044098.mkv +伍天宇-为什么相爱的人不能到永远,http://em.21dtv.com/songs/60044097.mkv +孙楠-为什么我总是想起你,http://em.21dtv.com/songs/60104043.mkv +高斌-为什么我总是会喝醉,http://em.21dtv.com/songs/60113098.mkv +葛兆恩-为什么为什么为什么,http://em.21dtv.com/songs/60061660.mkv +萧煌奇-为什么我哪会爱着你,http://em.21dtv.com/songs/60044096.mkv +宋铭-为什么我们这辈子不能在一起,http://em.21dtv.com/songs/60066378.mkv +刘科-为什么我们需要回忆,http://em.21dtv.com/songs/60134941.mkv +孟庭苇-为什么我的真换来我的痛,http://em.21dtv.com/songs/60044094.mkv +高胜美-为什么我的真换来我的疼,http://em.21dtv.com/songs/60044093.mkv +孙艳-为什么我的真心换来你的绝情,http://em.21dtv.com/songs/60067526.mkv +熊胡杰-为什么我不是林宥嘉,http://em.21dtv.com/songs/60097945.mkv +阿生-为什么我不是贝克汉姆,http://em.21dtv.com/songs/60044092.mkv +蒙克-为什么我爱的人却不爱我,http://em.21dtv.com/songs/60044091.mkv +蔡晓-为什么天下没有不苦的爱情,http://em.21dtv.com/songs/60078105.mkv +林志颖-为什么受伤的总是我,http://em.21dtv.com/songs/60044088.mkv +苏林-为什么受伤的会是我,http://em.21dtv.com/songs/60116222.mkv +陈美凤+林欣翰-为什么思念总在分手后(无原唱),http://em.21dtv.com/songs/60044090.mkv +张宇轩-为什么请你告诉我,http://em.21dtv.com/songs/60071218.mkv +欢子-为什么你要伤害一个爱你的人,http://em.21dtv.com/songs/60044085.mkv +褚永祥-为什么你要伤害爱你的人,http://em.21dtv.com/songs/60078104.mkv +孙艳-为什么你要和她牵手,http://em.21dtv.com/songs/60117661.mkv +张启辉-为什么你忍心把我放弃(演唱会),http://em.21dtv.com/songs/60044083.mkv +孙中亮-为什么你偏偏不喜欢我,http://em.21dtv.com/songs/60066377.mkv +隆隆-为什么你还是不爱我,http://em.21dtv.com/songs/60044082.mkv +杨晨晖-为什么你的爱对我都是伤害,http://em.21dtv.com/songs/60078101.mkv +张洪量-为什么你背着我爱别人,http://em.21dtv.com/songs/60044081.mkv +许志安-为什么你背着我爱别人,http://em.21dtv.com/songs/60044080.mkv +许志安-为什么你背着我爱别人(演唱会),http://em.21dtv.com/songs/60044079.mkv +于文博-为什么你不能像我爱你那样爱我,http://em.21dtv.com/songs/60065022.mkv +王艺-为什么每个深夜总把你想起,http://em.21dtv.com/songs/60044076.mkv +远方-为什么离开他以后你才会想起我,http://em.21dtv.com/songs/60044072.mkv +程科-为什么会爱上你这样一个女人,http://em.21dtv.com/songs/60062300.mkv +佚名-为什么此刻还在想还在疯狂,http://em.21dtv.com/songs/60044069.mkv +季小璐-为什么不早点说爱我,http://em.21dtv.com/songs/60044065.mkv +晓雨-为什么不把思念带走,http://em.21dtv.com/songs/60044064.mkv +宋飞-为什么爱一次伤一次,http://em.21dtv.com/songs/60107667.mkv +李志洲-为什么爱我却又离开我,http://em.21dtv.com/songs/60065021.mkv +帅霖-为什么爱上让我伤心的人,http://em.21dtv.com/songs/60069914.mkv +乐饱饱-为什么爱让我如此伤心,http://em.21dtv.com/songs/60062572.mkv +许茹芸-雾散了芸开了祝福了,http://em.21dtv.com/songs/60047849.mkv +千童(张海松)-我是离了水的一条鱼,http://em.21dtv.com/songs/60101997.mkv +千童-我是离了水的一条鱼,http://em.21dtv.com/songs/60062823.mkv +张海松-我是离了水的一条鱼,http://em.21dtv.com/songs/60063370.mkv +许飞-我设计一万种方式遇见你,http://em.21dtv.com/songs/60069970.mkv +张嚣-我是江小白2016,http://em.21dtv.com/songs/60117723.mkv +姜育恒-我是个需要很多爱的人,http://em.21dtv.com/songs/60046115.mkv +佚名-我是个很容易掏心的人,http://em.21dtv.com/songs/60046113.mkv +胡瓜-我是个很容易上瘾的人,http://em.21dtv.com/songs/60046112.mkv +彭三-我是个比较糙的男人,http://em.21dtv.com/songs/60112697.mkv +王媛渊-我所放任的那些悲伤,http://em.21dtv.com/songs/60078353.mkv +成于申-我是佛前的那朵莲花,http://em.21dtv.com/songs/60105912.mkv +左欣怡-我是草原上的小姑娘,http://em.21dtv.com/songs/60126825.mkv +ICONIZE-我是充满魅力的孩子(演唱会),http://em.21dtv.com/songs/60078327.mkv +佚名-我是不是真的恋爱了,http://em.21dtv.com/songs/60046087.mkv +黎瑞恩-我是不是真的恋爱了,http://em.21dtv.com/songs/60046086.mkv +葛林-我是不是你最疼爱的人,http://em.21dtv.com/songs/60069974.mkv +潘越云-我是不是你最疼爱的人,http://em.21dtv.com/songs/60046085.mkv +高胜美-我是不是你最疼爱的人,http://em.21dtv.com/songs/60046084.mkv +叶倩文-我是不是你最疼爱的人(演唱会),http://em.21dtv.com/songs/60046083.mkv +李代沫-我是不是你最疼爱的人,http://em.21dtv.com/songs/60078326.mkv +胡渭康-我是不是你最疼爱的人,http://em.21dtv.com/songs/60078325.mkv +浩瀚-我是不是你最爱的人,http://em.21dtv.com/songs/60046082.mkv +丁汀-我是不是你最爱的人,http://em.21dtv.com/songs/60046081.mkv +汪妤凌-我是不是你最疼爱的人,http://em.21dtv.com/songs/60069973.mkv +王美茹-我是不是你想要的人,http://em.21dtv.com/songs/60067580.mkv +芬华-我是不是你尚爱的人,http://em.21dtv.com/songs/60135666.mkv +郭富城-我是不是该安静地走开,http://em.21dtv.com/songs/60046079.mkv +高胜美-我是不是该安静地走开,http://em.21dtv.com/songs/60046078.mkv +黎明-我是不是该安静的走开,http://em.21dtv.com/songs/60046077.mkv +郭富城-我是不是该安静的走开(演唱会),http://em.21dtv.com/songs/60046076.mkv +林道华-我是不是犯了什么错,http://em.21dtv.com/songs/60071264.mkv +徐嘉良-我深爱的人不懂如何爱我(无原唱),http://em.21dtv.com/songs/60046052.mkv +星宇+礼琦-无情人伤害多情的灵魂,http://em.21dtv.com/songs/60061723.mkv +张江+馨梓-我悄悄蒙上你的眼睛,http://em.21dtv.com/songs/60091122.mkv +应豪+馨梓-我悄悄蒙上你的眼睛,http://em.21dtv.com/songs/60046028.mkv +佚名-我悄悄蒙上你的眼睛,http://em.21dtv.com/songs/60046027.mkv +邝美云-我悄悄蒙上你的眼睛,http://em.21dtv.com/songs/60046026.mkv +陈艾媚+高明骏-我悄悄蒙上你的眼睛,http://em.21dtv.com/songs/60046025.mkv +陈红+蔡国庆-我悄悄蒙上你的眼睛(演唱会),http://em.21dtv.com/songs/60046024.mkv +陈铭洲-我悄悄地蒙上你的眼睛,http://em.21dtv.com/songs/60046023.mkv +许桂荧-尩亲某亲是老婆爬车辚,http://em.21dtv.com/songs/60043341.mkv +小凤凤-尫亲某亲老婆爬车辚,http://em.21dtv.com/songs/60043338.mkv +陈明章-无情个所在有情个歌,http://em.21dtv.com/songs/60047354.mkv +佚名-万千恩爱尽还你的手,http://em.21dtv.com/songs/60043293.mkv +冷漠-无情的世界无情的你,http://em.21dtv.com/songs/60095264.mkv +修竹-无情的世界无情的你,http://em.21dtv.com/songs/60093975.mkv +彭莉-无情的梦留乎无情的人(无原唱),http://em.21dtv.com/songs/60047329.mkv +盖鸣晖+吴美英-无情宝剑有情天-柳营重会(下),http://em.21dtv.com/songs/60047311.mkv +盖鸣晖+吴美英-无情宝剑有情天-柳营重会(上),http://em.21dtv.com/songs/60047310.mkv +杜鹏-乌盆记-未曾开言泪满腮,http://em.21dtv.com/songs/60047037.mkv +陈志清-乌盆记-老丈不必胆怕惊,http://em.21dtv.com/songs/60047036.mkv +西单女孩-外婆,http://em.21dtv.com/songs/60063126.mkv +Owl City-Wolf Bite,http://em.21dtv.com/songs/60101809.mkv +陈乃荣-为你做的最后一件事,http://em.21dtv.com/songs/60083981.mkv +陈国华-为你写一首幸福的歌,http://em.21dtv.com/songs/60044005.mkv +詹雅雯-为你心碎心痛心闷啦(无原唱),http://em.21dtv.com/songs/60044008.mkv +吴克群+拖鞋-为你写诗,http://em.21dtv.com/songs/60123743.mkv +黄品冠-为你我想做更好的人,http://em.21dtv.com/songs/60062812.mkv +李自强-我拿什么勇气去爱你,http://em.21dtv.com/songs/60078317.mkv +麦霸阿杜-我那么爱你你都不珍惜,http://em.21dtv.com/songs/60065097.mkv +王琼-我能给你的只剩两滴眼泪,http://em.21dtv.com/songs/60063028.mkv +谭建军-我那扶犁的爹呀灯影里的娘,http://em.21dtv.com/songs/60069968.mkv +金志文+苏运莹+王晰-为你而唱,http://em.21dtv.com/songs/60121030.mkv +李明川+何嘉文-为你唱一首幸福的歌,http://em.21dtv.com/songs/60043951.mkv +李丹阳-为你插上飞翔的翅膀,http://em.21dtv.com/songs/60043946.mkv +许飞-我们终究会牵手旅行,http://em.21dtv.com/songs/60066419.mkv +童唱-我们要做雷锋式的好少年,http://em.21dtv.com/songs/60045954.mkv +许飞-我们要走遍所有最浪漫的地方,http://em.21dtv.com/songs/60078307.mkv +张明敏-我们拥有一个名字叫中国(演唱会),http://em.21dtv.com/songs/60045961.mkv +张明敏-我们拥有个名字叫中国,http://em.21dtv.com/songs/60045960.mkv +郭斯炫-我没有你要的那种美,http://em.21dtv.com/songs/60084058.mkv +羊进达-我们相爱不是一个错,http://em.21dtv.com/songs/60085916.mkv +MAKIYO-我每天许下同一个心愿,http://em.21dtv.com/songs/60045762.mkv +何刚-我们是自豪的地税人,http://em.21dtv.com/songs/60093606.mkv +陈恩跃-我们是自豪的地税人,http://em.21dtv.com/songs/60093586.mkv +佚名-我们是英雄的找油人,http://em.21dtv.com/songs/60045941.mkv +方得弟-我们是英雄的消防兵,http://em.21dtv.com/songs/60078303.mkv +佚名-我们是社会主义祖国的扞卫者,http://em.21dtv.com/songs/60045938.mkv +佚名-我们是毛主席的红卫兵,http://em.21dtv.com/songs/60045934.mkv +杨梓-我迷上了一种叫做音乐的东西,http://em.21dtv.com/songs/60045992.mkv +金波-我们是快乐的摄影人,http://em.21dtv.com/songs/60045932.mkv +李娜-我们是黄河我们是泰山,http://em.21dtv.com/songs/60045931.mkv +童唱-我们是共产主义接班人,http://em.21dtv.com/songs/60045926.mkv +大合唱-我们是共产主义接班人,http://em.21dtv.com/songs/60045925.mkv +卜星慧-完美情谊,http://em.21dtv.com/songs/60118413.mkv +黄妃-我没你想的那么坚强,http://em.21dtv.com/songs/60123395.mkv +杨坤-我没你想的那么坚强,http://em.21dtv.com/songs/60085909.mkv +黄若熙-我们没有一起单身过,http://em.21dtv.com/songs/60129850.mkv +王迪-我们可不可以不分手,http://em.21dtv.com/songs/60045905.mkv +马旭东-我们结束了,http://em.21dtv.com/songs/60114895.mkv +安崇艺-我们还能不能再见面,http://em.21dtv.com/songs/60114493.mkv +韩冰-我们还能不能再相见,http://em.21dtv.com/songs/60065094.mkv +陈依雅-我们感情不过就这样,http://em.21dtv.com/songs/60107309.mkv +佚名-我们共产党人好比种子,http://em.21dtv.com/songs/60045894.mkv +孙艳-我们飞驰而过的青春,http://em.21dtv.com/songs/60066414.mkv +王睿-我们到最后终于变成朋友,http://em.21dtv.com/songs/60078285.mkv +卢秀敏+戴玉强-我们的祖国歌甜花香(演唱会),http://em.21dtv.com/songs/60045854.mkv +何韵诗-我们都是这样失恋的,http://em.21dtv.com/songs/60092273.mkv +草蜢-我们都是这样失恋的,http://em.21dtv.com/songs/60045879.mkv +容祖儿+蔡一智+苏諨-我们都是这样失恋的(演唱会),http://em.21dtv.com/songs/60045878.mkv +草蜢-我们都是这样失恋的(演唱会),http://em.21dtv.com/songs/60045877.mkv +陈慧琳-我们都是这么初恋的(演唱会),http://em.21dtv.com/songs/60045876.mkv +黄阅-我们都是害怕寂寞的人,http://em.21dtv.com/songs/60045866.mkv +至上励合-我们的生活充满阳光,http://em.21dtv.com/songs/60045829.mkv +于淑珍-我们的生活充满阳光,http://em.21dtv.com/songs/60045828.mkv +佚名-我们的生活充满阳光,http://em.21dtv.com/songs/60045827.mkv +黄英-我们的生活充满阳光,http://em.21dtv.com/songs/60045826.mkv +于淑珍-我们的生活充满阳光(演唱会),http://em.21dtv.com/songs/60045825.mkv +宋祖英-我们的生活充满阳光(演唱会),http://em.21dtv.com/songs/60045824.mkv +张琳-我们的生活搬到天上(演唱会),http://em.21dtv.com/songs/60045822.mkv +李菓-我们的诺言,http://em.21dtv.com/songs/60122871.mkv +吴瑕-我们都老了,http://em.21dtv.com/songs/60106685.mkv +刘晓春-我们到底有没有爱过,http://em.21dtv.com/songs/60089675.mkv +花树-我们的爱说好不分手,http://em.21dtv.com/songs/60106224.mkv +张祥洪-我们的爱请你附带明天,http://em.21dtv.com/songs/60045789.mkv +浩纹-我们的爱能不能回来,http://em.21dtv.com/songs/60121875.mkv +陶信-我们的爱就像这首歌,http://em.21dtv.com/songs/60106428.mkv +群星-为梦痴狂(演唱会),http://em.21dtv.com/songs/60126047.mkv +夏天Alex-我们不应该再见才对,http://em.21dtv.com/songs/60125340.mkv +曾轶可-我们不是只有现在吗,http://em.21dtv.com/songs/60072541.mkv +万芳-我们不是永远都那么勇敢,http://em.21dtv.com/songs/60045779.mkv +孙楠+张艳奕-我们爱一辈子好不好,http://em.21dtv.com/songs/60098235.mkv +孙楠+潘蔚-我们爱一辈子好不好,http://em.21dtv.com/songs/60080706.mkv +张化勇+柯以敏-我们爱一辈子好不好,http://em.21dtv.com/songs/60067570.mkv +罗力威+余枫-未来在等着现在的我,http://em.21dtv.com/songs/60126030.mkv +余枫+罗力威-未来在等着现在的我,http://em.21dtv.com/songs/60122486.mkv +罗力威+余枫-未来在等着现在的我,http://em.21dtv.com/songs/60122004.mkv +龙啸-忘了我也别忘了幸福,http://em.21dtv.com/songs/60066369.mkv +钟汉良-为了你我哭了多少夜,http://em.21dtv.com/songs/60043917.mkv +潘东亮-忘了你还不如忘了我自己,http://em.21dtv.com/songs/60078050.mkv +秦博-我流浪在城市的旷野,http://em.21dtv.com/songs/60130632.mkv +林胜天-我流浪在城市的旷野,http://em.21dtv.com/songs/60116051.mkv +南宁仔-玩六合彩为了包二奶,http://em.21dtv.com/songs/60092383.mkv +越剧-我老公今年活了30多,http://em.21dtv.com/songs/60045710.mkv +刘勉宗-卧龙吊孝-见灵堂不由人珠泪满面,http://em.21dtv.com/songs/60047014.mkv +乌兰齐齐格-蔚蓝的故乡,http://em.21dtv.com/songs/60114376.mkv +洛桑尖措-我来的地方叫金银滩,http://em.21dtv.com/songs/60068772.mkv +邰正宵-为了爱时间可以倒流,http://em.21dtv.com/songs/60043908.mkv +梁雁翎-我可以一个人好好过,http://em.21dtv.com/songs/60045691.mkv +潘赢-我可以不是你的唯一,http://em.21dtv.com/songs/60065081.mkv +赵易龙-我哭了累了心都碎了,http://em.21dtv.com/songs/60097952.mkv +程飞鸣-忘记自己也忘不了你,http://em.21dtv.com/songs/60043568.mkv +王闯-忘记拥抱,http://em.21dtv.com/songs/60127216.mkv +妍妍-我就是你手中的那支烟,http://em.21dtv.com/songs/60078268.mkv +糯米-我就是那个最爱你的人,http://em.21dtv.com/songs/60045651.mkv +崔广杰+余红萍-忘记什么也忘不了你,http://em.21dtv.com/songs/60105795.mkv +杜鹏-武家坡-一马离了西凉界,http://em.21dtv.com/songs/60047749.mkv +青桂贤-忘记你需要多长时间,http://em.21dtv.com/songs/60078048.mkv +邰正宵-忘记那天需要多少年(无原唱),http://em.21dtv.com/songs/60043535.mkv +王杰-忘记你不如忘记自己,http://em.21dtv.com/songs/60043541.mkv +孙伟-为健康导航为生命喝彩,http://em.21dtv.com/songs/60078076.mkv +沐雪琪-我叫盖伦 不叫德玛,http://em.21dtv.com/songs/60119758.mkv +万芳-我记得你眼里的依恋,http://em.21dtv.com/songs/60045624.mkv +陈艾玲-我记得你眼里的依恋,http://em.21dtv.com/songs/60045623.mkv +浩轩-我决定把你彻底忘记,http://em.21dtv.com/songs/60045672.mkv +天坛男孩-我敬爱的爹亲爱的娘,http://em.21dtv.com/songs/60085905.mkv +Drake-With You.,http://em.21dtv.com/songs/60121238.mkv +ROMEO-WITHOUT U,http://em.21dtv.com/songs/60134791.mkv +泽演-Winter 一人,http://em.21dtv.com/songs/60131607.mkv +深海-WIFI WIFI,http://em.21dtv.com/songs/60112081.mkv +栗锦-我会在人潮散去等你,http://em.21dtv.com/songs/60129305.mkv +吴莫愁-五环之歌,http://em.21dtv.com/songs/60123748.mkv +赵红富-我会一直用心爱着你,http://em.21dtv.com/songs/60106306.mkv +金久哲-我会永远陪在你身边,http://em.21dtv.com/songs/60134346.mkv +方蓉-我和一对恋人擦肩而过(无原唱),http://em.21dtv.com/songs/60045550.mkv +丽江小倩-我会想起你,http://em.21dtv.com/songs/60103851.mkv +秋裤大叔-我和小伙伴都惊呆了,http://em.21dtv.com/songs/60108760.mkv +冷漠-我恨我自己动了真情,http://em.21dtv.com/songs/60101935.mkv +白雪-我哼我的歌你开你的车,http://em.21dtv.com/songs/60045584.mkv +高胜美-我还是永远的爱着你,http://em.21dtv.com/songs/60078261.mkv +王杰-我还是永远的爱着你,http://em.21dtv.com/songs/60045488.mkv +晨熙-为何深情总是被辜负,http://em.21dtv.com/songs/60133760.mkv +龙帝-为何让我伤心让我痛,http://em.21dtv.com/songs/60069907.mkv +张正理-我好热的心你好冷的眼,http://em.21dtv.com/songs/60045504.mkv +赵纲-我恨你这个无心的人,http://em.21dtv.com/songs/60123204.mkv +语录-我恨你这个无心的人,http://em.21dtv.com/songs/60106280.mkv +麦子杰-为何你最爱的不是我,http://em.21dtv.com/songs/60043880.mkv +林俊杰-我怀念的,http://em.21dtv.com/songs/60129296.mkv +欢子-为何你对我许下承诺,http://em.21dtv.com/songs/60043877.mkv +黎明-为何你不是我的未来,http://em.21dtv.com/songs/60043875.mkv +杨臣刚-我很可爱可怜我没人爱,http://em.21dtv.com/songs/60045562.mkv +白举纲-White Max,http://em.21dtv.com/songs/60127229.mkv +乔乐乐-我会好好爱你一辈子,http://em.21dtv.com/songs/60045602.mkv +海生-为何分手了才说爱我,http://em.21dtv.com/songs/60061656.mkv +李团长-我很丑温柔还有用吗,http://em.21dtv.com/songs/60045556.mkv +赵传-我很丑可是我很温柔,http://em.21dtv.com/songs/60132916.mkv +赵传+大女孩-我很丑可是我很温柔,http://em.21dtv.com/songs/60110558.mkv +孙楠+丛浩楠-我很丑可是我很温柔(HD),http://em.21dtv.com/songs/10012770.mkv +辛龙+潘越云-我很丑可是我很温柔,http://em.21dtv.com/songs/60098795.mkv +曹格-我很丑可是我很温柔,http://em.21dtv.com/songs/60080422.mkv +赵传-我很丑可是我很温柔,http://em.21dtv.com/songs/60045555.mkv +赵传-我很丑可是我很温柔(演唱会),http://em.21dtv.com/songs/60045554.mkv +韦绮姗-为何不敢潇洒的离开,http://em.21dtv.com/songs/60043862.mkv +李玟-What's Up,http://em.21dtv.com/songs/60119665.mkv +王凯琪+石宇凡-What's Up,http://em.21dtv.com/songs/60104303.mkv +赵小南-为何爱情它总是让我心痛,http://em.21dtv.com/songs/60043858.mkv +佚名-为何爱情的滋味是这么奇美,http://em.21dtv.com/songs/60043856.mkv +马云龙-我该怎么能让爱回头,http://em.21dtv.com/songs/60101199.mkv +黄品源+黄凯芹-我该用怎么样的心来对你,http://em.21dtv.com/songs/60045432.mkv +黄品源-我该用什么样的心来对你(演唱会),http://em.21dtv.com/songs/60045431.mkv +郭燕-我该用什么留住你的温柔,http://em.21dtv.com/songs/60045430.mkv +黄承恩-我跟你的三分钟长吻,http://em.21dtv.com/songs/60078245.mkv +祖海-我发现你越来越美丽,http://em.21dtv.com/songs/60045420.mkv +冷漠-无法挽回爱你的错误,http://em.21dtv.com/songs/60085954.mkv +罗逻圣-我发誓没有什么不同,http://em.21dtv.com/songs/60129484.mkv +德德玛-我富饶的家乡鄂尔多斯,http://em.21dtv.com/songs/60045428.mkv +ZICO-Well Done,http://em.21dtv.com/songs/60109911.mkv +田震-玩儿个痛快,http://em.21dtv.com/songs/60114709.mkv +陈瑞-我的掌心有你的泪水,http://em.21dtv.com/songs/60081297.mkv +赵静怡-我的左手旁边是你的右手,http://em.21dtv.com/songs/60045372.mkv +赵静怡-我的左手边是你的右手(演唱会),http://em.21dtv.com/songs/60072534.mkv +秦勇+南京交警组合-无地自容,http://em.21dtv.com/songs/60125998.mkv +谢名-我的祝福你听见了吗,http://em.21dtv.com/songs/60114780.mkv +谭晶-我的祝福你听见了吗,http://em.21dtv.com/songs/60045361.mkv +欣哲-我答应上帝要好好爱你,http://em.21dtv.com/songs/60067552.mkv +陈逸达-我的忧伤不让你看出来,http://em.21dtv.com/songs/60045340.mkv +田跃君-我的眼泪是你看不见的伤心,http://em.21dtv.com/songs/60062998.mkv +胡尧峰-我的眼泪不再为你流,http://em.21dtv.com/songs/60086921.mkv +卓依婷-我的眼泪不为你说谎,http://em.21dtv.com/songs/60045321.mkv +徐云霄-我的雅典娜 初学者,http://em.21dtv.com/songs/60135276.mkv +张萌萌-我的心中不能没有你,http://em.21dtv.com/songs/60089288.mkv +忆华-我的心已经被你伤透,http://em.21dtv.com/songs/60086920.mkv +Lel+linzy-我的心意不是那样的,http://em.21dtv.com/songs/60116462.mkv +刘小样-我的心血换来你的冷血,http://em.21dtv.com/songs/60062678.mkv +佚名-我的心透明得看得见,http://em.21dtv.com/songs/60045296.mkv +巴比-我的心是透明的音符,http://em.21dtv.com/songs/60045290.mkv +史俊鹏-我的心是透明的音符(无原唱),http://em.21dtv.com/songs/60045289.mkv +小虎队-我的心你一定看得见,http://em.21dtv.com/songs/60078226.mkv +苏有朋-我的心你一定看得见(演唱会),http://em.21dtv.com/songs/60045282.mkv +酒吧伤心人-我的心你是否能懂得,http://em.21dtv.com/songs/60072531.mkv +沈建祥-我的心你能够明白吗,http://em.21dtv.com/songs/60045281.mkv +崔广杰-我的心你究竟懂不懂,http://em.21dtv.com/songs/60105792.mkv +戴月-我的心里只有你没有他,http://em.21dtv.com/songs/60078225.mkv +钟安妮-我的心里只有你没有他(演唱会),http://em.21dtv.com/songs/60078224.mkv +李宇春-我的心里只有你没有他(演唱会),http://em.21dtv.com/songs/60045277.mkv +黄小琥-我的心里只有你没有他(演唱会),http://em.21dtv.com/songs/60045276.mkv +邹宏宇-我的心里只有你没有他,http://em.21dtv.com/songs/60071244.mkv +郭富城-我的心开始有落寞时候,http://em.21dtv.com/songs/60045267.mkv +赵岭-我的心刻上了你的名字,http://em.21dtv.com/songs/60045268.mkv +东浩-我的心被你伤了几千遍,http://em.21dtv.com/songs/60069946.mkv +阿任-我的心不会再给别的谁,http://em.21dtv.com/songs/60067560.mkv +金素梅-我的温柔只有你看得见,http://em.21dtv.com/songs/60045250.mkv +石梅-我的温柔挡不住你的风流,http://em.21dtv.com/songs/60071243.mkv +梦之旅-我的太阳[欣赏版],http://em.21dtv.com/songs/60102416.mkv +南镇-我的岁数50 60,http://em.21dtv.com/songs/60102009.mkv +钟镇涛+章蓉舫-我的世界只有你最懂,http://em.21dtv.com/songs/60045218.mkv +伊诺-我的世界只有一个你,http://em.21dtv.com/songs/60067558.mkv +烟圈蔓延-我的世界你曾经来过,http://em.21dtv.com/songs/60115278.mkv +秦齐-我的世界你曾经来过,http://em.21dtv.com/songs/60062831.mkv +书画-我的手机不再为你开,http://em.21dtv.com/songs/60084035.mkv +梁紫丹-我的世界不能没有你,http://em.21dtv.com/songs/60045214.mkv +赵云飞-我的手臂是你的枕头,http://em.21dtv.com/songs/60117251.mkv +海润天晴-我的柔情你是否读懂,http://em.21dtv.com/songs/60045198.mkv +柳石明-我的青春小鸟一样不回来,http://em.21dtv.com/songs/60045182.mkv +杨洋+金彪-我对你好你知不知道,http://em.21dtv.com/songs/60045402.mkv +郑镒-我对你的爱你珍惜了吗,http://em.21dtv.com/songs/60045399.mkv +艾晴晴-忘掉你曾给我的伤害,http://em.21dtv.com/songs/60078047.mkv +刘春梅-我的梦在飘雪的北方,http://em.21dtv.com/songs/60045161.mkv +储毅-我的梦想和你不一样,http://em.21dtv.com/songs/60108314.mkv +张祥洪-我的梦想到不了明天,http://em.21dtv.com/songs/60084033.mkv +薛凯琪-维多利亚女皇的非常秘密任务,http://em.21dtv.com/songs/60069917.mkv +车辙-我的泪是你不了解的伤悲,http://em.21dtv.com/songs/60045144.mkv +寒武纪-我的泪不会轻易流出,http://em.21dtv.com/songs/60107672.mkv +寒武纪-我的泪不会轻易流出,http://em.21dtv.com/songs/60099961.mkv +赖安华-我的刻骨铭心的恋人,http://em.21dtv.com/songs/60108902.mkv +童欣-我的后悔可以说给你听吗,http://em.21dtv.com/songs/60045097.mkv +约瑟翰庞麦郎-我的滑板鞋,http://em.21dtv.com/songs/60104365.mkv +庞龙-我的哥们我的好兄弟,http://em.21dtv.com/songs/60130293.mkv +庞龙-我的哥们我的好兄弟,http://em.21dtv.com/songs/60129052.mkv +刘冲-我的孤独你不能体会,http://em.21dtv.com/songs/60099795.mkv +卡拉OK-我的父母好比江河水,http://em.21dtv.com/songs/60090773.mkv +民歌-伟大的祖国伟大的党,http://em.21dtv.com/songs/60088182.mkv +周子扬-我的都市没有你的诗,http://em.21dtv.com/songs/60092475.mkv +佚名-伟大的国家伟大的党,http://em.21dtv.com/songs/60044202.mkv +梅朵-我的草原上有一个你,http://em.21dtv.com/songs/60117874.mkv +尚裘峰-我的脆弱只有你知道,http://em.21dtv.com/songs/60078198.mkv +徐嘉良-我的白天是你的夜晚(无原唱),http://em.21dtv.com/songs/60045038.mkv +吴昊-我的爱越深伤的越深,http://em.21dtv.com/songs/60087560.mkv +赵咏华-我的爱我的梦我的家,http://em.21dtv.com/songs/60045023.mkv +王爱华-我的爱随风飘进了云彩,http://em.21dtv.com/songs/60063013.mkv +胡东清-我的爱情下了一场雪,http://em.21dtv.com/songs/60085147.mkv +胡东清-我的爱情下了一场雪(舞曲版),http://em.21dtv.com/songs/60045015.mkv +晓月-我的爱情我亲手埋葬,http://em.21dtv.com/songs/60045014.mkv +飞鹰阿伟-我的爱情我亲手埋葬,http://em.21dtv.com/songs/60045013.mkv +阿伟-我的爱情我亲手埋藏,http://em.21dtv.com/songs/60045012.mkv +马丽-我的爱情你怎么哭了,http://em.21dtv.com/songs/60101574.mkv +陈咏-我的爱情换来你的无情,http://em.21dtv.com/songs/60045010.mkv +许峰-我的爱情不再有以后,http://em.21dtv.com/songs/60134218.mkv +游鸿明-我的爱情被你烧成灰,http://em.21dtv.com/songs/60045008.mkv +麦霸阿杜-我的爱情被你亲手埋葬,http://em.21dtv.com/songs/60066397.mkv +方季惟-我的爱那么容易受伤害,http://em.21dtv.com/songs/60045005.mkv +谭圳-我的爱跟着她走了吗,http://em.21dtv.com/songs/60062982.mkv +山野-我的爱从四面八方攻击你,http://em.21dtv.com/songs/60044999.mkv +佚名-无产者一生奋斗求解放,http://em.21dtv.com/songs/60047069.mkv +越剧-望窗外雪纷飞寒气袭人,http://em.21dtv.com/songs/60043658.mkv +陈鹏-我才是最爱你的人2008,http://em.21dtv.com/songs/60044939.mkv +曹雷-我成了一个被你拒绝爱的人,http://em.21dtv.com/songs/60078184.mkv +绿昕-我成了一个被你拒绝爱的人,http://em.21dtv.com/songs/60072524.mkv +杨乃文-我从来不懂你的幽默,http://em.21dtv.com/songs/60097949.mkv +刘苓-我曾经深爱过的女人,http://em.21dtv.com/songs/60044945.mkv +季中平-我曾经那样仓惶失措的想着你,http://em.21dtv.com/songs/60044944.mkv +东来东往-我曾经那么接近幸福,http://em.21dtv.com/songs/60079890.mkv +何鹏-我抽的不是烟是寂寞,http://em.21dtv.com/songs/60044954.mkv +李星竹-我不再是让你操心的孩子,http://em.21dtv.com/songs/60044924.mkv +徐连国-我不再是你疼爱的人,http://em.21dtv.com/songs/60044923.mkv +宋娜-我不再是你疼爱的人,http://em.21dtv.com/songs/60044922.mkv +陈瑞-我不再是你疼爱的人,http://em.21dtv.com/songs/60044921.mkv +朱晓红-我不在你身边的时候,http://em.21dtv.com/songs/60044929.mkv +小村+廖村里-我把自己的爱弄丢了,http://em.21dtv.com/songs/60044715.mkv +韩晶-我把自己的爱弄丢了,http://em.21dtv.com/songs/60044714.mkv +天意-我不知道会走到哪里,http://em.21dtv.com/songs/60085877.mkv +[Group] +groupName=十六万歌曲MV等 - 108 +黄磊-我不知道风是在哪一个方向吹,http://em.21dtv.com/songs/60044934.mkv +温蕊尔-我不知道发生了什么,http://em.21dtv.com/songs/60085876.mkv +雷龙-我不愿意看见你再流泪,http://em.21dtv.com/songs/60044916.mkv +李千娜-我不允许我再爱上你,http://em.21dtv.com/songs/60044918.mkv +韩春雨-我把一切托付你一个,http://em.21dtv.com/songs/60122265.mkv +雷龙-我不愿看见你在流泪(演唱会),http://em.21dtv.com/songs/60044914.mkv +雷龙-我不愿看到你再流泪,http://em.21dtv.com/songs/60123343.mkv +巴郎百川-我不愿擦去鞋上的泥,http://em.21dtv.com/songs/60044913.mkv +泔林-我不想走_我不想跑,http://em.21dtv.com/songs/60088216.mkv +周治平-我把心遗落在1989,http://em.21dtv.com/songs/60044712.mkv +史俊鹏-我不小心翻开我的心(无原唱),http://em.21dtv.com/songs/60044897.mkv +东来东往-我不想把话说太清楚,http://em.21dtv.com/songs/60084017.mkv +王若琪-我不是最当初那女孩,http://em.21dtv.com/songs/60044866.mkv +张龙珍-我不是一个好的女人,http://em.21dtv.com/songs/60133701.mkv +邓小龙-我不是一个好的男人,http://em.21dtv.com/songs/60112993.mkv +孙行者-我不是一个爱哭的人,http://em.21dtv.com/songs/60044858.mkv +孙露-我不是一个爱过就算的人,http://em.21dtv.com/songs/60078179.mkv +佚名-我本是卧龙岗散淡的人,http://em.21dtv.com/songs/60044725.mkv +海鹏-我不是上帝你不是神,http://em.21dtv.com/songs/60044847.mkv +陈明真-我不是轻易放下感情的人,http://em.21dtv.com/songs/60044846.mkv +长春虫子-我不是你左边的新郎,http://em.21dtv.com/songs/60061673.mkv +红月-我不是你最爱的女人,http://em.21dtv.com/songs/60066394.mkv +贾立怡-我不是你想找的女孩,http://em.21dtv.com/songs/60044844.mkv +轲然-我不是你想要爱的人,http://em.21dtv.com/songs/60065043.mkv +梁文音-我不是你想像那么勇敢,http://em.21dtv.com/songs/60044843.mkv +黄海永-我不是你手中的玩偶,http://em.21dtv.com/songs/60069928.mkv +蒋蒋-我不是你沙漏里的沙,http://em.21dtv.com/songs/60106252.mkv +孙安心-我不是那么丑的男孩,http://em.21dtv.com/songs/60132354.mkv +洪煜祺+小鬼-我不是你留恋的风景,http://em.21dtv.com/songs/60072522.mkv +郭静-我不是你的那首情歌,http://em.21dtv.com/songs/60104503.mkv +张风华-我不是你的第一个男人,http://em.21dtv.com/songs/60071233.mkv +陈辉玲-我本是金枝玉叶驸马妻,http://em.21dtv.com/songs/60044724.mkv +刘德华-我不是故意要那么像他,http://em.21dtv.com/songs/60044825.mkv +陈黎明-我不是故意要那么像他(演唱会),http://em.21dtv.com/songs/60044824.mkv +苏永康-我不是爱过就算的人,http://em.21dtv.com/songs/60044814.mkv +张真-我被青春撞了一下腰(演唱会),http://em.21dtv.com/songs/60044722.mkv +左小祖咒-我不能悲伤地坐在你身旁,http://em.21dtv.com/songs/60078170.mkv +曲婉婷-我不能悲伤的睡在你身旁,http://em.21dtv.com/songs/60062849.mkv +康绍云-忘不了你第一次吻我,http://em.21dtv.com/songs/60135188.mkv +佚名-忘不了的事忘不了的人,http://em.21dtv.com/songs/60043500.mkv +赵传-忘不了的事忘不了的人(演唱会),http://em.21dtv.com/songs/60043499.mkv +佳悦-忘不了草原忘不了你,http://em.21dtv.com/songs/60066365.mkv +佚名-望北京更使我增添力量,http://em.21dtv.com/songs/60043654.mkv +庄心妍-我不会在老地方等你,http://em.21dtv.com/songs/60108471.mkv +伊能静-我不过是你的游戏吗,http://em.21dtv.com/songs/60044763.mkv +秋裤大叔-我不怪你也不会恨你,http://em.21dtv.com/songs/60108759.mkv +陈瑞-我不怪你也不会恨你,http://em.21dtv.com/songs/60099584.mkv +司徒兰芳-我不怪你也不会恨你,http://em.21dtv.com/songs/60078165.mkv +王雅洁-我不怪你也不会恨你,http://em.21dtv.com/songs/60044761.mkv +冷漠-我不怪你也不会恨你,http://em.21dtv.com/songs/60044760.mkv +赵小兵-我不怪你也不会恨你,http://em.21dtv.com/songs/60071230.mkv +李策-我不怪你也不会恨你,http://em.21dtv.com/songs/60066392.mkv +邓子霆-我不懂该怎么去爱你,http://em.21dtv.com/songs/60110569.mkv +佚名-王宝钏-老爹爹且息恕容儿细讲(无原唱),http://em.21dtv.com/songs/60043347.mkv +萧闳仁-王宝钏苦守寒窑十八年,http://em.21dtv.com/songs/60043346.mkv +雷婷-我把爱情想得太完美,http://em.21dtv.com/songs/60078160.mkv +刘冲-我把爱情想得太完美,http://em.21dtv.com/songs/60044710.mkv +李志洲-我把爱情看的过于简单,http://em.21dtv.com/songs/60044707.mkv +张冬玲-我把爱情的爱弄丢了,http://em.21dtv.com/songs/60099225.mkv +A.BERGMAN+M.BERGMAN+-what are you doing the rest of your life(无原唱),http://em.21dtv.com/songs/60006186.mkv +佚名-我爱五指山我爱万泉河,http://em.21dtv.com/songs/60044686.mkv +李双江-我爱五指山我爱万泉河,http://em.21dtv.com/songs/60044685.mkv +富春山居女子乐坊-我爱五指山我爱万泉河,http://em.21dtv.com/songs/60069926.mkv +Da iCE-WATCH OUT,http://em.21dtv.com/songs/60132064.mkv +HOTSHOT-Watch Out,http://em.21dtv.com/songs/60110766.mkv +林隆璇-我爱上一个不会爱我的人,http://em.21dtv.com/songs/60044674.mkv +阿牛-我爱上隔壁阿水家的二姑娘,http://em.21dtv.com/songs/60044671.mkv +赵咏华-我爱你最好只到这里,http://em.21dtv.com/songs/60044662.mkv +雨柔+望海高歌-我爱你深深地爱着你,http://em.21dtv.com/songs/60106432.mkv +欧阳大龙-我爱你神奇的井冈山,http://em.21dtv.com/songs/60088167.mkv +伍利-我爱你却不想你知道,http://em.21dtv.com/songs/60121359.mkv +海生-我爱你却不能在一起,http://em.21dtv.com/songs/60132684.mkv +海生-我爱你却不能在一起,http://em.21dtv.com/songs/60119774.mkv +张吉-我爱你却不能一辈子,http://em.21dtv.com/songs/60066389.mkv +胡杰夕-我爱你很多只是你不懂,http://em.21dtv.com/songs/60067543.mkv +江俐奇-我爱你不是因为你漂亮,http://em.21dtv.com/songs/60044630.mkv +冷漠+郭欢-我爱你不是因为你爱我,http://em.21dtv.com/songs/60072515.mkv +赖伟锋+伊诺-我爱你比你爱我更多,http://em.21dtv.com/songs/60078149.mkv +张寒-我爱你爱到无路可退,http://em.21dtv.com/songs/60078148.mkv +陈志朋-晚安My Love,http://em.21dtv.com/songs/60126382.mkv +肖燕-我爱刘三姐家乡的歌,http://em.21dtv.com/songs/60068748.mkv +方文琳-我爱过的人我现在还爱,http://em.21dtv.com/songs/60044574.mkv +肖鹭丹+张嘉旭-我爱东营美好的家园,http://em.21dtv.com/songs/60098704.mkv +张卫健-我爱的她有你的影子,http://em.21dtv.com/songs/60089267.mkv +张卫健-我爱的他有你的影子,http://em.21dtv.com/songs/60044568.mkv +中华音-我爱的人总是不爱我,http://em.21dtv.com/songs/60078142.mkv +阿洋-我爱的人在陪别人睡,http://em.21dtv.com/songs/60101548.mkv +蓝雨-我爱的人她却不爱我,http://em.21dtv.com/songs/60078140.mkv +李建强-我爱的人却不在我身边,http://em.21dtv.com/songs/60044564.mkv +陈辉-我爱的人你也爱我吗,http://em.21dtv.com/songs/60065033.mkv +袁浩博-我爱的人你离开了我,http://em.21dtv.com/songs/60103563.mkv +李琛-我爱的人没有嫁给我,http://em.21dtv.com/songs/60067541.mkv +安志杰-我爱的人都让我伤心,http://em.21dtv.com/songs/60044562.mkv +向蕙玲-我爱的人不是爱我的人,http://em.21dtv.com/songs/60044561.mkv +艾歌-我爱的你却给她披上了嫁衣,http://em.21dtv.com/songs/60044550.mkv +吴彤-我爱唱歌因为我寂寞,http://em.21dtv.com/songs/60118445.mkv +Ludacris+Ty Dolla $ign-Vitamin D,http://em.21dtv.com/songs/60134749.mkv +Nick Jonas-Under You,http://em.21dtv.com/songs/60123516.mkv +Oh Wonder-Ultralife,http://em.21dtv.com/songs/60134780.mkv +张艾嘉-她沿着沙滩的边缘走,http://em.21dtv.com/songs/60087835.mkv +朱振铭-太阳最红毛主席最亲,http://em.21dtv.com/songs/60118651.mkv +杨紫萍-太阳最红毛主席最亲,http://em.21dtv.com/songs/60100183.mkv +韦唯-太阳最红毛主席最亲,http://em.21dtv.com/songs/60096542.mkv +那仁格日勒-太阳最红毛主席最亲,http://em.21dtv.com/songs/60090245.mkv +李玲玉-太阳最红毛主席最亲,http://em.21dtv.com/songs/60088034.mkv +佚名-太阳最红毛主席最亲,http://em.21dtv.com/songs/60041404.mkv +董兰萍-太阳最红毛主席最亲,http://em.21dtv.com/songs/60041403.mkv +叶茅+寥莎-太阳最红毛主席最亲(演唱会),http://em.21dtv.com/songs/60041402.mkv +林奕匡-天渊之别,http://em.21dtv.com/songs/60125771.mkv +Aqours-太阳を追いかけろ!,http://em.21dtv.com/songs/60134643.mkv +东方快车-太阳依然出现在东方(无原唱),http://em.21dtv.com/songs/60041394.mkv +孙国庆-太阳月亮拧了一个扣,http://em.21dtv.com/songs/60099194.mkv +李锦航-探窑-老娘不必泪纷纷,http://em.21dtv.com/songs/60041478.mkv +朱贝贝-太阳的后裔,http://em.21dtv.com/songs/60125687.mkv +赵学而-谈一场不后悔的恋爱,http://em.21dtv.com/songs/60041454.mkv +王菲+梁朝伟-天下无双之天啦地啦,http://em.21dtv.com/songs/60090091.mkv +徐清波-天下谁人不知湖北美,http://em.21dtv.com/songs/60117760.mkv +佚名-天下事难不倒共产党员,http://em.21dtv.com/songs/60042193.mkv +豫剧-天下事难不到共产党,http://em.21dtv.com/songs/60134558.mkv +郑钧-天下没有不散的宴席,http://em.21dtv.com/songs/60088776.mkv +周晓鸥-天下没有不散的宴席,http://em.21dtv.com/songs/60080056.mkv +郑钧-天下没有不散的筵席,http://em.21dtv.com/songs/60042192.mkv +吴倩莲-天下浪子不独你一人,http://em.21dtv.com/songs/60042190.mkv +王二妮-天下黄河九十九道弯,http://em.21dtv.com/songs/60121899.mkv +王向荣+杜朋朋-天下黄河九十九道湾,http://em.21dtv.com/songs/60096392.mkv +蔡安荞-天下的男孩都是一样的,http://em.21dtv.com/songs/60042184.mkv +杨耀东-天下的妈妈都是一样的,http://em.21dtv.com/songs/60042183.mkv +彭莉-台湾有一个所在会下雪,http://em.21dtv.com/songs/60041282.mkv +潘丽丽-台湾有一个所在会下雪,http://em.21dtv.com/songs/60041281.mkv +梦凯-听我为你写的这首歌,http://em.21dtv.com/songs/60083924.mkv +梦凯-听我为你写的这首歌(演唱会),http://em.21dtv.com/songs/60077950.mkv +张横-天堂有没有车来车往,http://em.21dtv.com/songs/60042117.mkv +火红-天堂一个美丽的地方,http://em.21dtv.com/songs/60077899.mkv +唐文龙-偷偷为我哭红的双眼,http://em.21dtv.com/songs/60042851.mkv +许添-偷偷说一万遍我爱你(HD),http://em.21dtv.com/songs/10012809.mkv +许添-偷偷说一万遍我爱你,http://em.21dtv.com/songs/60097963.mkv +张恒-天堂里有没有车来车往,http://em.21dtv.com/songs/60042112.mkv +陈明真-偷偷等待你送的玫瑰,http://em.21dtv.com/songs/60088878.mkv +陈洁仪-天堂边缘,http://em.21dtv.com/songs/60126393.mkv +天孪兄弟-天生一对[DJ版],http://em.21dtv.com/songs/60098226.mkv +王祥如-同手同脚,http://em.21dtv.com/songs/60125941.mkv +Robynn+Kendy-她说^你不知道的事,http://em.21dtv.com/songs/60108244.mkv +金城-他伤了你的心才想起我是谁,http://em.21dtv.com/songs/60041100.mkv +郝云-突然想到理想这个词,http://em.21dtv.com/songs/60099543.mkv +Coldplay-True Love,http://em.21dtv.com/songs/60103759.mkv +群星-弹起我心爱的土琵琶,http://em.21dtv.com/songs/60130659.mkv +方琦-弹起我心爱的土琵琶,http://em.21dtv.com/songs/60128042.mkv +汤子星-弹起我心爱的土琵琶,http://em.21dtv.com/songs/60111222.mkv +佚名-听樵楼打罢了初更时候,http://em.21dtv.com/songs/60042561.mkv +佚名-天劈张继保-周桂英十三年眼泪成河(无原唱),http://em.21dtv.com/songs/60041948.mkv +Wilkinson-Too Close,http://em.21dtv.com/songs/60125048.mkv +格杨-替女友小a给你的情书,http://em.21dtv.com/songs/60077861.mkv +陈飞-他那里字字句句诉真情,http://em.21dtv.com/songs/60041099.mkv +杨林-疼你的心就像疼我自己,http://em.21dtv.com/songs/60041658.mkv +陈升-汤米先生的诚实告白,http://em.21dtv.com/songs/60093737.mkv +刘一祯-听妈妈讲那过去的事情(演唱会),http://em.21dtv.com/songs/60077943.mkv +佚名-听妈妈讲那过去的事情,http://em.21dtv.com/songs/60042553.mkv +佚名-听妈妈讲那过去的事,http://em.21dtv.com/songs/60042552.mkv +吴介贤-听妈妈讲那过去的事情(演唱会),http://em.21dtv.com/songs/60072465.mkv +侃侃-天亮了我一个人上路,http://em.21dtv.com/songs/60077878.mkv +张书姚-天亮了你还会想我吗,http://em.21dtv.com/songs/60112658.mkv +张信哲-天空之城,http://em.21dtv.com/songs/60120497.mkv +严淑明-天空飘下的是谁的伤心,http://em.21dtv.com/songs/60041886.mkv +陶晶莹-天空不要为我掉眼泪,http://em.21dtv.com/songs/60041880.mkv +周笔畅+Epik High-Time Zone,http://em.21dtv.com/songs/60113346.mkv +Epik High+周笔畅-Time Zone,http://em.21dtv.com/songs/60113152.mkv +520女子演唱组+雷龙-她会像我这样爱你吗,http://em.21dtv.com/songs/60041156.mkv +伍天宇-他会像我这样爱你吗,http://em.21dtv.com/songs/60041086.mkv +洪真英-Thumb Upe,http://em.21dtv.com/songs/60120713.mkv +S.H.E-他还是不懂,http://em.21dtv.com/songs/60114956.mkv +尹美莱-This Love,http://em.21dtv.com/songs/60135150.mkv +萧敬腾+宋宇-This Love,http://em.21dtv.com/songs/60114015.mkv +巴图-头号粉丝,http://em.21dtv.com/songs/60122695.mkv +Jhene Aiko-The Worst,http://em.21dtv.com/songs/60124909.mkv +LeAnn Rimes-The Story,http://em.21dtv.com/songs/60129960.mkv +The Weeknd-The Hills,http://em.21dtv.com/songs/60112465.mkv +Duke Dumont-The Giver,http://em.21dtv.com/songs/60113147.mkv +许云龙-他会比我对你更好吗,http://em.21dtv.com/songs/60114051.mkv +李敏镐-Thank You,http://em.21dtv.com/songs/60116007.mkv +孟庭苇-透过开满鲜花的月亮,http://em.21dtv.com/songs/60042904.mkv +林依轮-透过开满鲜花的月亮,http://em.21dtv.com/songs/60042903.mkv +林依轮-透过开满鲜花的月亮(演唱会),http://em.21dtv.com/songs/60042902.mkv +冷漠-听歌的人不许流眼泪,http://em.21dtv.com/songs/60122507.mkv +冷漠-听歌的人不许掉眼泪,http://em.21dtv.com/songs/60119277.mkv +佚名-屠夫状元-夜来人静更楼响(无原唱),http://em.21dtv.com/songs/60042950.mkv +佚名-屠夫状元-叫哥哥你不必如此介意(无原唱),http://em.21dtv.com/songs/60042949.mkv +iKON-头发乱了,http://em.21dtv.com/songs/60124900.mkv +越剧-他二人弟顾兄来兄顾弟,http://em.21dtv.com/songs/60041080.mkv +樊露花-天的那边你过得好吗,http://em.21dtv.com/songs/60130509.mkv +杭娇-逃到了西藏逃不过爱情,http://em.21dtv.com/songs/60041546.mkv +高歌-铁打的营盘流水的兵,http://em.21dtv.com/songs/60042474.mkv +张敬轩-天大地大+倾斜+疯了+震撼(演唱会),http://em.21dtv.com/songs/60041774.mkv +刘惜君-退出,http://em.21dtv.com/songs/60121441.mkv +天天-天池湖旁边的小山庄,http://em.21dtv.com/songs/60099179.mkv +胡又天-天池湖旁边的小山庄,http://em.21dtv.com/songs/60080989.mkv +光良-台北下着雨的星期天,http://em.21dtv.com/songs/60061614.mkv +于文华+尹相杰-天不下雨天不刮风天上有太阳,http://em.21dtv.com/songs/60041749.mkv +彭浩-他不是真正爱你的人,http://em.21dtv.com/songs/60111094.mkv +彭浩-他不是真正爱你的人,http://em.21dtv.com/songs/60105893.mkv +段千寻-他不是真正爱你的人,http://em.21dtv.com/songs/60041059.mkv +刘又铭-听别人的歌流自己的泪,http://em.21dtv.com/songs/60042510.mkv +尹相杰-天不刮风天不下雨天上有太,http://em.21dtv.com/songs/60041745.mkv +凤凰传奇-天边的故乡,http://em.21dtv.com/songs/60105627.mkv +许一鸣+肖懿航-特别的爱给特别的你,http://em.21dtv.com/songs/60114050.mkv +满文军-特别的爱给特别的你,http://em.21dtv.com/songs/60099383.mkv +陈羽凡+ESG女团-特别的爱给特别的你,http://em.21dtv.com/songs/60095135.mkv +黄绮珊-特别的爱给特别的你,http://em.21dtv.com/songs/60083875.mkv +黄贯中-特别的爱给特别的你,http://em.21dtv.com/songs/60077852.mkv +张玮琪-特别的爱给特别的你,http://em.21dtv.com/songs/60069868.mkv +伍思凯-特别的爱给特别的你,http://em.21dtv.com/songs/60041637.mkv +伍思凯-特别的爱给特别的你(演唱会),http://em.21dtv.com/songs/60041636.mkv +谭锡禧-tie a yellow ribbon round the old oak tree (演唱会),http://em.21dtv.com/songs/60082371.mkv +K.Will-Talk Love,http://em.21dtv.com/songs/60120219.mkv +佚名-三子争父-清晨起他父子去到瓜园,http://em.21dtv.com/songs/60037375.mkv +佚名-三子争父-老天你为啥不睁眼,http://em.21dtv.com/songs/60037374.mkv +孟庭苇-谁在我落泪以前离开,http://em.21dtv.com/songs/60089806.mkv +佚名-谁在秋天捡到我的心,http://em.21dtv.com/songs/60040161.mkv +糖兄妹-闪着泪光慢慢的决定(演唱会),http://em.21dtv.com/songs/60069790.mkv +洪禄云+陈水林-说再见不应该在秋天,http://em.21dtv.com/songs/60083841.mkv +栗雅馨+王子月-说再见不应该在秋天,http://em.21dtv.com/songs/60040436.mkv +邵杰-屌丝之歌,http://em.21dtv.com/songs/60126260.mkv +秦影-伤在2014的情缘,http://em.21dtv.com/songs/60099434.mkv +侯志坚-试着爱我爱得少一点(无原唱),http://em.21dtv.com/songs/60039374.mkv +佚名-双拥情-闯一条致富路幸福久长,http://em.21dtv.com/songs/60039907.mkv +彭运铝-撒哟娜拉爱人思密达,http://em.21dtv.com/songs/60105062.mkv +吴建豪-属于你和我之间的事,http://em.21dtv.com/songs/60122584.mkv +牛朝阳-深夜里你的手机为谁开,http://em.21dtv.com/songs/60077551.mkv +MP4+张茵-上一个不爱回家的人下一个,http://em.21dtv.com/songs/60038063.mkv +曹磊-所有的伤痛让我一个人来背,http://em.21dtv.com/songs/60041028.mkv +张华敏-上一道坡坡下一道梁,http://em.21dtv.com/songs/60089852.mkv +菲翔-岁月的芳香悄然无声,http://em.21dtv.com/songs/60124420.mkv +于童-伤心是一种说不出的痛,http://em.21dtv.com/songs/60037951.mkv +黄格选-伤心是一种说不出的痛,http://em.21dtv.com/songs/60037950.mkv +罗琦-随心所欲,http://em.21dtv.com/songs/60118845.mkv +张磊-伤心是留给回忆的糖,http://em.21dtv.com/songs/60123942.mkv +张磊-伤心是留给回忆的糖,http://em.21dtv.com/songs/60122739.mkv +刘涛-手心手背,http://em.21dtv.com/songs/60125202.mkv +施文彬-伤心人永远做伤心的梦,http://em.21dtv.com/songs/60037942.mkv +张学友-谁想轻轻偷走我的吻,http://em.21dtv.com/songs/60040140.mkv +陈天红-伤心情歌2013版,http://em.21dtv.com/songs/60083766.mkv +大哲-伤心男人唱着伤心的歌,http://em.21dtv.com/songs/60037932.mkv +傅颖-谁羡慕像我这样强的人,http://em.21dtv.com/songs/60040138.mkv +范晓萱-稍息立正站好+小叮当+豆豆龙(演唱会),http://em.21dtv.com/songs/60038103.mkv +盖鸣晖+吴美英-三夕恩情廿载仇-盘夫(下),http://em.21dtv.com/songs/60037342.mkv +盖鸣晖+吴美英-三夕恩情廿载仇-盘夫(上),http://em.21dtv.com/songs/60037341.mkv +盖鸣晖+吴美英-三夕恩情廿载仇-放夫(下),http://em.21dtv.com/songs/60037340.mkv +盖鸣晖+吴美英-三夕恩情廿载仇-放夫(上),http://em.21dtv.com/songs/60037339.mkv +欢子-伤心的时候可以听情歌,http://em.21dtv.com/songs/60037881.mkv +孙淑媚-伤心的人一定是软心肝,http://em.21dtv.com/songs/60037879.mkv +谢跃东-伤心的人听伤心的歌,http://em.21dtv.com/songs/60114793.mkv +林子娟-伤心的人唱着伤心的歌,http://em.21dtv.com/songs/60037877.mkv +郭富城-伤心的话留到明天再说,http://em.21dtv.com/songs/60037863.mkv +郭富城-伤心的话留到明天再说(演唱会),http://em.21dtv.com/songs/60037862.mkv +冷漠-伤心城市(DJ版),http://em.21dtv.com/songs/50000203.mkv +陈凤仙+陈好述-双仙拜月亭之妆楼拜月,http://em.21dtv.com/songs/60039899.mkv +何非凡-双仙拜月亭之抱石投江,http://em.21dtv.com/songs/60039898.mkv +何非凡+陈凤仙-双仙拜月亭之双仙拜月,http://em.21dtv.com/songs/60062441.mkv +何非凡+陈凤仙-双仙拜月亭-双仙拜月,http://em.21dtv.com/songs/60039897.mkv +何非凡+陈凤仙-双仙拜月亭-双仙拜月(二),http://em.21dtv.com/songs/60039896.mkv +云菲菲-伤我最深的男人是你,http://em.21dtv.com/songs/60081252.mkv +红弈-山湾湾里有咱好良田,http://em.21dtv.com/songs/60131721.mkv +张阳阳-是我太软弱,http://em.21dtv.com/songs/60108508.mkv +天骏-守望那座洁白的毡房,http://em.21dtv.com/songs/60081160.mkv +林美-伤我的人是我爱的人,http://em.21dtv.com/songs/60037835.mkv +张牧阅-是我多情还是你无情,http://em.21dtv.com/songs/60039512.mkv +徐睿-是我把爱想得太简单,http://em.21dtv.com/songs/60087884.mkv +金池-Super Gir,http://em.21dtv.com/songs/60121033.mkv +王曼棋-Super boy,http://em.21dtv.com/songs/60115297.mkv +快乐男生-SUPER BOY,http://em.21dtv.com/songs/60098388.mkv +骆超勇-是天意让我们相爱了,http://em.21dtv.com/songs/60039499.mkv +马吟吟-三天三夜,http://em.21dtv.com/songs/60115533.mkv +刘敬群-水调歌头 女友难求,http://em.21dtv.com/songs/60130120.mkv +薛之谦-Stay Here,http://em.21dtv.com/songs/60117203.mkv +SEZAIRI+董姿彦-STARLIGHT,http://em.21dtv.com/songs/60123534.mkv +董德光-三生有幸-肖何月下追韩信,http://em.21dtv.com/songs/60037308.mkv +六哲-受伤以后谁来安慰我,http://em.21dtv.com/songs/60126618.mkv +朱桦-生死相依我苦恋着你,http://em.21dtv.com/songs/60038639.mkv +甜美真-谁是我一见钟情的人,http://em.21dtv.com/songs/60061600.mkv +AR+温岚+范晓萱-刷刷刷刷,http://em.21dtv.com/songs/60120192.mkv +AR刘夫洋-刷刷刷刷,http://em.21dtv.com/songs/60118244.mkv +林奕匡-三十岁前要完成的事,http://em.21dtv.com/songs/60067389.mkv +谷子-谁是谁老公全是临时工,http://em.21dtv.com/songs/60040102.mkv +誓言-是谁让我哭了一整夜,http://em.21dtv.com/songs/60039491.mkv +庄学忠-是谁抢走了我的爱人,http://em.21dtv.com/songs/60039488.mkv +张静-生死牌-适才间审问了一桩公案,http://em.21dtv.com/songs/60038635.mkv +庞龙-谁说你长的不是很美,http://em.21dtv.com/songs/60089258.mkv +庞龙-谁说你长得不是很美,http://em.21dtv.com/songs/60040123.mkv +林木-谁是你这辈子最爱的女人,http://em.21dtv.com/songs/60040096.mkv +常健鸿-谁说男人有钱就学坏,http://em.21dtv.com/songs/60064905.mkv +张振宇-谁说你的眼泪我无所谓,http://em.21dtv.com/songs/60040122.mkv +翟羽佳-谁是你的第一个男人,http://em.21dtv.com/songs/60040095.mkv +曾春年-谁说你的爱我无所谓,http://em.21dtv.com/songs/60069838.mkv +陈瑞-世上没有我这样的人,http://em.21dtv.com/songs/60039313.mkv +韦唯-世上没有闯不过的关,http://em.21dtv.com/songs/60039312.mkv +白安-是什么让我遇见这样的你,http://em.21dtv.com/songs/60072406.mkv +蒋舟-谁说喝醉了就无所谓,http://em.21dtv.com/songs/60088582.mkv +钟明秋-似是故人来,http://em.21dtv.com/songs/60112324.mkv +花世纪-士商的女生都好正啊,http://em.21dtv.com/songs/60039209.mkv +小舟-世上的女人都是毒蛇,http://em.21dtv.com/songs/60039311.mkv +果子-闪闪的军功章心中的圆月亮,http://em.21dtv.com/songs/60067399.mkv +佚名-世世代代铭记毛主席的恩情,http://em.21dtv.com/songs/60039323.mkv +崔伟亮-傻傻的爱傻傻的等待,http://em.21dtv.com/songs/60069785.mkv +贺一航-傻傻的爱傻傻的等待,http://em.21dtv.com/songs/60068640.mkv +黄靖淞+任英杰-莎士比亚与哈姆雷特,http://em.21dtv.com/songs/60129853.mkv +黄靖淞-莎士比亚与哈姆雷特,http://em.21dtv.com/songs/60127630.mkv +大辉-世上不是没有好男人,http://em.21dtv.com/songs/60119390.mkv +林芸-谁说爱情不会有奇迹,http://em.21dtv.com/songs/60040114.mkv +任德勇-虽然我不是你的主角,http://em.21dtv.com/songs/60077786.mkv +门丽-谁让我爱上你这样的男人,http://em.21dtv.com/songs/60040053.mkv +刘小慧+裘海正-谁人能这么刻意假到底,http://em.21dtv.com/songs/60040073.mkv +佚名-谁人叫你爱着行船人,http://em.21dtv.com/songs/60040068.mkv +李玟+黄晓明-深情相拥+头发乱了,http://em.21dtv.com/songs/60133823.mkv +凌志辉-失去他你是否放得下,http://em.21dtv.com/songs/60067424.mkv +MATZKA+李宗盛-十七岁我是女生的温柔(演唱会),http://em.21dtv.com/songs/60064872.mkv +佚名-失去你也不会怎么样(无原唱),http://em.21dtv.com/songs/60038835.mkv +谢安琪-神奇女侠的退休生活,http://em.21dtv.com/songs/60038491.mkv +谢安琪-神奇女侠的退休生活(HD演唱会),http://em.21dtv.com/songs/60038490.mkv +古品-失去你我还能去爱谁,http://em.21dtv.com/songs/60066311.mkv +洪荣宏-失去你就失去全世界,http://em.21dtv.com/songs/60135511.mkv +艺涛-谁欠了谁的地老天荒,http://em.21dtv.com/songs/60134150.mkv +潘美辰-失去了你我什么都没有,http://em.21dtv.com/songs/60038826.mkv +张可儿-逝去的青春远去的人,http://em.21dtv.com/songs/60123916.mkv +徐佳莹+陈银玲+潘氏姐妹+刘嘉-身骑白马,http://em.21dtv.com/songs/60123975.mkv +纪佳松-水泼落地难收回2009,http://em.21dtv.com/songs/60040217.mkv +Big K.R.I.T+Raphael Saadiq-Soul Food,http://em.21dtv.com/songs/60113130.mkv +严爵-Something,http://em.21dtv.com/songs/60113220.mkv +刘阡羽-SODA,http://em.21dtv.com/songs/60128843.mkv +刘若英-说你永远都不离开我,http://em.21dtv.com/songs/60040408.mkv +刘惠鸣+白雪红-三年一哭二郎桥之二郎送嫂,http://em.21dtv.com/songs/60068639.mkv +乔军-送你一句吉祥的问候,http://em.21dtv.com/songs/60077778.mkv +陈楚生-思念一个荒废的名字,http://em.21dtv.com/songs/60067457.mkv +AK组合-说你也爱我,http://em.21dtv.com/songs/60122333.mkv +佚名-思念我的时候轻轻叫我的名字,http://em.21dtv.com/songs/60040562.mkv +黄莺莺-三年三月到九天九夜(无原唱),http://em.21dtv.com/songs/60037276.mkv +新月合唱团-少年少年祖国的春天,http://em.21dtv.com/songs/60038138.mkv +童唱-少年少年祖国的春天,http://em.21dtv.com/songs/60038137.mkv +陈盈洁-思念是你离开才开始,http://em.21dtv.com/songs/60040556.mkv +李不美-思念是爱酿下的苦酒,http://em.21dtv.com/songs/60087973.mkv +瑶瑶-是你让我爱的那么伤,http://em.21dtv.com/songs/60113893.mkv +佚名-撒尼人民心向红太阳,http://em.21dtv.com/songs/60037148.mkv +谢有才+刘亦敏-思念你却牵不到你的手,http://em.21dtv.com/songs/60077746.mkv +陈瑞+黑龙-思念你却牵不到你的手,http://em.21dtv.com/songs/60071152.mkv +黄伊汶+黄阅-思念你就会忘记自己,http://em.21dtv.com/songs/60040552.mkv +曾心梅-思念你的心肝你敢知,http://em.21dtv.com/songs/60040549.mkv +SUPPER MOMENT-是你令我再次找到心跳,http://em.21dtv.com/songs/60071128.mkv +韩丽霞-三娘教子-王春娥坐机房自思自叹,http://em.21dtv.com/songs/60037278.mkv +武宠霞-三娘教子-不孝的奴才听娘言,http://em.21dtv.com/songs/60037277.mkv +杨博-少年故事,http://em.21dtv.com/songs/60127080.mkv +叶蕴仪-是你答应说要对我好,http://em.21dtv.com/songs/60039456.mkv +赵真-思念的雨 思念的你,http://em.21dtv.com/songs/60127442.mkv +李锦-是你的诺言让我相信明天,http://em.21dtv.com/songs/60039457.mkv +吴易航-是你的爱让我犯的错,http://em.21dtv.com/songs/60114448.mkv +涓子-思念不是一个人的错,http://em.21dtv.com/songs/60121879.mkv +涓子-思念不是一个人的错,http://em.21dtv.com/songs/60100287.mkv +痛仰乐队-生命中最美丽的一天,http://em.21dtv.com/songs/60038595.mkv +郑秀文-生命中不能承受之悲,http://em.21dtv.com/songs/60108057.mkv +梁静茹-生命中不可承受的轻,http://em.21dtv.com/songs/60038590.mkv +李勇-四妹子爱上个拦羊汉,http://em.21dtv.com/songs/60121765.mkv +马翠如-什么样的爱你才会懂,http://em.21dtv.com/songs/60090330.mkv +叶钊颖-什么样的爱你才会懂(演唱会),http://em.21dtv.com/songs/60038429.mkv +殷正洋-生命是一首澎湃的歌(无原唱),http://em.21dtv.com/songs/60038574.mkv +李斯丹妮+艾菲-十面埋伏,http://em.21dtv.com/songs/60122860.mkv +小鸣-生命的希望不再失落,http://em.21dtv.com/songs/60038557.mkv +王矜霖+黄龄-散了之后,http://em.21dtv.com/songs/60125936.mkv +杨千嬅-适量运动与均衡饮食,http://em.21dtv.com/songs/60039541.mkv +刘涛-伤了心的女人怎么了,http://em.21dtv.com/songs/60077513.mkv +A Lin+陈嘉欣+我想和你唱-失恋无罪,http://em.21dtv.com/songs/60121202.mkv +张宏宇-伤了我也伤了你自己,http://em.21dtv.com/songs/60037818.mkv +骆超勇-伤了我也伤了你自己,http://em.21dtv.com/songs/60037817.mkv +张春阳-伤了我也伤了你自己(无原唱),http://em.21dtv.com/songs/60037816.mkv +张洁-谁来为我的感情下注,http://em.21dtv.com/songs/60125518.mkv +AKB48-365日の纸飞行机,http://em.21dtv.com/songs/60117429.mkv +江其虎-四郎探母-杨宗宝在马上忙传将令,http://em.21dtv.com/songs/60040696.mkv +徐佳莹+潘氏姐妹-失落沙洲,http://em.21dtv.com/songs/60123974.mkv +郑秀文-萨拉热窝的罗密欧与朱丽叶,http://em.21dtv.com/songs/60037155.mkv +郑秀文-萨拉热窝的罗密欧与朱丽叶(演唱会),http://em.21dtv.com/songs/60037154.mkv +曹格-谁来陪我唱完这首歌,http://em.21dtv.com/songs/60071138.mkv +张火丁-锁麟囊-一霎时把前情俱已昧尽,http://em.21dtv.com/songs/60041039.mkv +优客李林-输了你赢了世界又如何,http://em.21dtv.com/songs/60039755.mkv +孟庭苇-伤了你的心伤了我的心,http://em.21dtv.com/songs/60037807.mkv +刘和刚-沙梁梁上站了个俏妹妹,http://em.21dtv.com/songs/60077476.mkv +佚名-萨丽哈最听毛主席的话,http://em.21dtv.com/songs/60037156.mkv +朱业晋-谁来抚慰我失落的心,http://em.21dtv.com/songs/60040019.mkv +徐一鸣-死了的心还会爱上谁,http://em.21dtv.com/songs/60104150.mkv +办桌二人组-失恋的人唱失恋的歌,http://em.21dtv.com/songs/60038743.mkv +刘娅婷-梭伦的爱情绿衣佳人,http://em.21dtv.com/songs/60077793.mkv +田维英-算了吧你不会明白的,http://em.21dtv.com/songs/60123039.mkv +佚名-三哭殿-常言说不看僧面看佛面,http://em.21dtv.com/songs/60037250.mkv +丁小玲-三击掌-老爹爹莫要那样讲,http://em.21dtv.com/songs/60037233.mkv +钟洁希-世界最后最美的地方,http://em.21dtv.com/songs/60072405.mkv +杨杨-世界有个地方叫潮汕,http://em.21dtv.com/songs/60118715.mkv +佚名-收姜维-四千岁你莫要羞愧难当,http://em.21dtv.com/songs/60039598.mkv +孔繁涛-世界那么大人也那么多,http://em.21dtv.com/songs/60064884.mkv +佚名-数九那个寒天下大雪,http://em.21dtv.com/songs/60039806.mkv +阿朵-世间没有一无所有的人,http://em.21dtv.com/songs/60067432.mkv +艾莉莎-世界末日也要在一起,http://em.21dtv.com/songs/60072402.mkv +魏如萱-世界末日的莫个角落,http://em.21dtv.com/songs/60089012.mkv +魏如萱-世界末日的某个角落,http://em.21dtv.com/songs/60039275.mkv +初音未来-世界第一的公主殿下,http://em.21dtv.com/songs/60112549.mkv +佚名-沙家浜总有一天会解放,http://em.21dtv.com/songs/60037450.mkv +梁晖-沙家浜之飞兵奇袭沙家浜,http://em.21dtv.com/songs/60037448.mkv +王玉兰-沙家浜-定能战胜顽敌渡难关,http://em.21dtv.com/songs/60037446.mkv +上木彩矢-世界はそれでも変わりはしない,http://em.21dtv.com/songs/60039257.mkv +刀郎-守候在凌晨两点的伤心秀吧,http://em.21dtv.com/songs/60039674.mkv +雷雨心-深海游戏,http://em.21dtv.com/songs/60109725.mkv +AAA-Show Time,http://em.21dtv.com/songs/60102993.mkv +石小群-说好了一辈子在一起,http://em.21dtv.com/songs/60040376.mkv +晓依-说好了不再为你流泪,http://em.21dtv.com/songs/60132500.mkv +姜鹏-社会方方面面这一块,http://em.21dtv.com/songs/60107647.mkv +许巍-生活不止眼前的苟且,http://em.21dtv.com/songs/60120940.mkv +王子文-时光诛仙,http://em.21dtv.com/songs/60125906.mkv +周杰伦+宋祖英-山歌好比春江水+多谢了(演唱会),http://em.21dtv.com/songs/60037627.mkv +沙莎-三哥哥是我的心上人,http://em.21dtv.com/songs/60127162.mkv +黄家强-送给不懂环保的人包括我(演唱会),http://em.21dtv.com/songs/60040743.mkv +王啸坤-是否我真的一无所有,http://em.21dtv.com/songs/60133980.mkv +王杰-是否我真的一无所有,http://em.21dtv.com/songs/60039429.mkv +林子祥-十分十二寸(无损),http://em.21dtv.com/songs/50000268.mkv +黄仲齐-是否你会等像我这样的男人(无原唱),http://em.21dtv.com/songs/60039427.mkv +佚名-是否还需要一份安慰,http://em.21dtv.com/songs/60039421.mkv +祁隆-是否还记得,http://em.21dtv.com/songs/60113909.mkv +苏醒-SEXY GIRL,http://em.21dtv.com/songs/60124409.mkv +Kylie Minogue-Sexercize,http://em.21dtv.com/songs/60104696.mkv +杨宗纬-十二楼[中国音超],http://em.21dtv.com/songs/60102369.mkv +杨立钛-十二点你就离开 show time,http://em.21dtv.com/songs/60038931.mkv +海生-首尔的空气里也有你,http://em.21dtv.com/songs/60077666.mkv +亚东-圣地孕育着希望的太阳,http://em.21dtv.com/songs/60038677.mkv +张保卫-三滴血-祖籍陕西韩城县,http://em.21dtv.com/songs/60037189.mkv +任小蕾-三滴血-兄弟窗前把书念,http://em.21dtv.com/songs/60037188.mkv +冯永安-三滴血-五台县官太懵懂,http://em.21dtv.com/songs/60037187.mkv +丁小玲-三滴血-未开言来珠泪落,http://em.21dtv.com/songs/60037186.mkv +王荣华-三滴血-你二人原是一胎养,http://em.21dtv.com/songs/60037185.mkv +丁小玲-三滴血-家住在五台县城南五里,http://em.21dtv.com/songs/60037184.mkv +高雅如-收歹铜旧锡的老阿伯(无原唱),http://em.21dtv.com/songs/60039587.mkv +张祥洪-输的是我赢的不是你,http://em.21dtv.com/songs/60087833.mkv +龙啸+赵轩谊-输的是我赢的不是你,http://em.21dtv.com/songs/60081361.mkv +康亚婵-三对面-包相爷对我讲一遍,http://em.21dtv.com/songs/60037190.mkv +罗中旭-谁都看得出我比他更爱你,http://em.21dtv.com/songs/60039979.mkv +程志-水调歌头-重上井冈山,http://em.21dtv.com/songs/60040229.mkv +网络歌手-上帝啊掉个帅哥泡泡吧,http://em.21dtv.com/songs/60038006.mkv +潘子华-谁才是我的另外一半,http://em.21dtv.com/songs/60064900.mkv +何龙雨-谁才是你今生最爱的人,http://em.21dtv.com/songs/60039952.mkv +张楚-上苍保佑吃完了饭的人民,http://em.21dtv.com/songs/60038004.mkv +彭家丽-是不是这样的夜晚你才会这样的想起我,http://em.21dtv.com/songs/60039402.mkv +林凡-是不是这样的夜晚你才会这样的想起我,http://em.21dtv.com/songs/60039401.mkv +贺梦华-是不是真的男人不坏女人不爱,http://em.21dtv.com/songs/60039403.mkv +罗正委-是不是因为我太温柔,http://em.21dtv.com/songs/60124350.mkv +金学峰-是不是因为我不够温柔,http://em.21dtv.com/songs/60039399.mkv +晓依-是不是应该把你放下,http://em.21dtv.com/songs/60125638.mkv +李明依-是不是一定要我像你,http://em.21dtv.com/songs/60039398.mkv +散了,http://em.21dtv.com/songs/60129167.mkv +毛宁-是不是从来就没有爱过,http://em.21dtv.com/songs/60039392.mkv +方季惟-是不是爱情已走到尽头,http://em.21dtv.com/songs/60039390.mkv +彭清-伤不起的爱情伤不起的你,http://em.21dtv.com/songs/60077508.mkv +佚名-谁把玫瑰种在我心里(无原唱),http://em.21dtv.com/songs/60039937.mkv +镐天-陕北的婆姨陕北的汉,http://em.21dtv.com/songs/60130819.mkv +祖海-舍不得你还得送你走,http://em.21dtv.com/songs/60077539.mkv +ZONE-secret base ~君がくれたもの~,http://em.21dtv.com/songs/60062187.mkv +音乐走廊+歌一生-深爱一回什么都值得,http://em.21dtv.com/songs/60121137.mkv +本多RURU-神啊请多给我一点力量,http://em.21dtv.com/songs/60038434.mkv +小松未可子-Sail Away,http://em.21dtv.com/songs/60103233.mkv +Rain-Sad Tango,http://em.21dtv.com/songs/60103034.mkv +佚名-时の流れに身をかせ,http://em.21dtv.com/songs/60039184.mkv +佚名-谁かが谁かを爱してる(无原唱),http://em.21dtv.com/songs/60040168.mkv +三枝夕夏IN DB-谁もがきっと谁かのサンタクロース,http://em.21dtv.com/songs/60039930.mkv +五月天+家家-如烟+如果还有明天(演唱会),http://em.21dtv.com/songs/60085662.mkv +康思婷-如燕盘旋而来的思念,http://em.21dtv.com/songs/60037030.mkv +温彦豪-让阳光照进我的心里,http://em.21dtv.com/songs/60130554.mkv +岚-ワイルド アット ハート,http://em.21dtv.com/songs/60074272.mkv +山田凉介-ミステリー ヴァージン,http://em.21dtv.com/songs/60074264.mkv +NEWS-ポコポンペコーリャ,http://em.21dtv.com/songs/60074260.mkv +AKB48-とっておきクリスマス,http://em.21dtv.com/songs/60074248.mkv +渡辺麻友-シンクロのときめき,http://em.21dtv.com/songs/60074242.mkv +渡辺麻友-いつでも そばにいてあげる,http://em.21dtv.com/songs/60074219.mkv +AKB48-あなたがいてくれたから,http://em.21dtv.com/songs/60074214.mkv +刘勉宗-让徐州-汉高祖开基业江山独创,http://em.21dtv.com/songs/60036210.mkv +王小刚-让心伤个透让酒醉个够,http://em.21dtv.com/songs/60072339.mkv +笑天-让雪花带走我的思念,http://em.21dtv.com/songs/60089434.mkv +林辰星-让我最后一次牵你的手,http://em.21dtv.com/songs/60036204.mkv +蒙克-让我用这一辈子去爱你,http://em.21dtv.com/songs/60036189.mkv +史智-让我又爱又恨的女人,http://em.21dtv.com/songs/60064789.mkv +陈义正-让我忘了自己的存在,http://em.21dtv.com/songs/60104540.mkv +杨辉-让我如何把你放得下,http://em.21dtv.com/songs/60069749.mkv +潘越云-若我轻轻叫着你的名,http://em.21dtv.com/songs/60037118.mkv +龙小菌-让我们一起在末日前搬家,http://em.21dtv.com/songs/60077329.mkv +楼沁-让我们今天就相爱吧,http://em.21dtv.com/songs/60107849.mkv +佚名-让我看看爱情的样子(无原唱),http://em.21dtv.com/songs/60036143.mkv +佚名-让我孤独的时候还能够想着你,http://em.21dtv.com/songs/60036134.mkv +齐秦-让我孤独的时候还能够想着你,http://em.21dtv.com/songs/60036133.mkv +林志颖-让我带着你的心飞翔(演唱会)(无原唱),http://em.21dtv.com/songs/60036125.mkv +MY LITTLE AIRPORT-让我搭一班会爆炸的飞机,http://em.21dtv.com/songs/60077322.mkv +东方快车-让我的爱情没有黑夜(无原唱),http://em.21dtv.com/songs/60036128.mkv +麦子杰-让我把我的心给了你,http://em.21dtv.com/songs/60036120.mkv +迟重瑞-人生只做一事又何妨,http://em.21dtv.com/songs/60077362.mkv +钟兴叡+沈香莲-若是有你伫我的生命,http://em.21dtv.com/songs/60037116.mkv +洪卓立-人生有很多事情本来都是徒劳无功(演唱会),http://em.21dtv.com/songs/60072345.mkv +游鸿明-若是我回头来牵你的手,http://em.21dtv.com/songs/60037115.mkv +洪荣宏-若是我回头来牵你的手,http://em.21dtv.com/songs/60037114.mkv +林志颖-燃烧你的热情你的梦(演唱会)(无原唱),http://em.21dtv.com/songs/60036007.mkv +群星-让世界与我们共成长,http://em.21dtv.com/songs/60036105.mkv +马天宇-让时光在微风中倒流,http://em.21dtv.com/songs/60112389.mkv +星月组合-柔柔的眼波柔柔的你,http://em.21dtv.com/songs/60118635.mkv +林林-柔柔的眼波柔柔的你,http://em.21dtv.com/songs/60036715.mkv +六哲+贺敬轩-让全世界知道我爱你,http://em.21dtv.com/songs/60133386.mkv +六哲+贺敬轩-让全世界知道我爱你,http://em.21dtv.com/songs/60132224.mkv +刘德华-热情的沙漠2000,http://em.21dtv.com/songs/60036268.mkv +生物股长-热情のスペクトラム,http://em.21dtv.com/songs/60108741.mkv +H2K-ROCO Time,http://em.21dtv.com/songs/60109819.mkv +海藻乐队-Rock hero,http://em.21dtv.com/songs/60114659.mkv +Darin-Road Trip,http://em.21dtv.com/songs/60124852.mkv +常石磊+羽田-让你幸福,http://em.21dtv.com/songs/60109288.mkv +F4-让你快乐是我努力的重点,http://em.21dtv.com/songs/60036079.mkv +朱明-让你爱的人给你些安慰,http://em.21dtv.com/songs/60077317.mkv +陈明章-阮呒是一个无感情个人,http://em.21dtv.com/songs/60037075.mkv +光头阿兴-让陌生的我不再陌生,http://em.21dtv.com/songs/60071077.mkv +大家唱合唱团-人民解放军占领南京,http://em.21dtv.com/songs/60036363.mkv +陈熙然-人民解放军占领南京,http://em.21dtv.com/songs/60036362.mkv +孙楠+余超颖-让梦冬眠,http://em.21dtv.com/songs/60102119.mkv +古品-人类已经不能阻止我的爱,http://em.21dtv.com/songs/60077351.mkv +The Boss-Rilla Go!,http://em.21dtv.com/songs/60113194.mkv +林志颖-让火热的心紧紧相拥,http://em.21dtv.com/songs/60036060.mkv +黄格选-如何才能留住你的爱,http://em.21dtv.com/songs/60037000.mkv +许飞-如果这样能使你快乐,http://em.21dtv.com/songs/60036988.mkv +陈奕迅-如果这一秒钟你跟我讲你不爱我(演唱会),http://em.21dtv.com/songs/60036989.mkv +苏永康-如果这是我爱你最好的距离,http://em.21dtv.com/songs/60036987.mkv +田华+杜磊-如果这世界上只剩下了海,http://em.21dtv.com/songs/60036984.mkv +阿平+小新-如果这世界没有了爱情,http://em.21dtv.com/songs/60061548.mkv +徐怀钰-如果在你怀里满足的死掉,http://em.21dtv.com/songs/60036979.mkv +李青+王馨-如果真的有来生之倒掉孟婆汤,http://em.21dtv.com/songs/60077430.mkv +李宜隆-如果有一天我们分开,http://em.21dtv.com/songs/60072353.mkv +萧全-如果有一天我们分开(舞曲版),http://em.21dtv.com/songs/60067387.mkv +BUDOKAN-如果有一天你有勇气,http://em.21dtv.com/songs/60077427.mkv +陈珊妮-如果有一件事是重要的,http://em.21dtv.com/songs/60036967.mkv +Robynn&Kendy-如果一天有25小时,http://em.21dtv.com/songs/60115624.mkv +笑笑-如果有人比我更爱你,http://em.21dtv.com/songs/60111342.mkv +任贤齐-如果有人比我更爱你,http://em.21dtv.com/songs/60036962.mkv +张碧晨-如果一切没有发生过,http://em.21dtv.com/songs/60116800.mkv +谢霆锋-如果一开始你爱上的人是我,http://em.21dtv.com/songs/60036955.mkv +六折真人-如果有个晚上想起了你,http://em.21dtv.com/songs/60036957.mkv +陈健翔-如果有个男人为你哭,http://em.21dtv.com/songs/60064811.mkv +许茹芸-如果下个路口遇见你(演唱会),http://em.21dtv.com/songs/60036949.mkv +李佳璐-如果下辈子还能遇见你,http://em.21dtv.com/songs/60067386.mkv +远方-如果我在天堂遇见你,http://em.21dtv.com/songs/60036944.mkv +旭日阳刚-如果我只是一棵小草,http://em.21dtv.com/songs/60069774.mkv +与苏-如果我在潮州遇见你,http://em.21dtv.com/songs/60130036.mkv +范玮琪-如果我有一支天使棒,http://em.21dtv.com/songs/60036943.mkv +范晓萱-如果我先死了怎么办(演唱会),http://em.21dtv.com/songs/60036939.mkv +胡杰夕+陈霆山-如果我是你是男朋友,http://em.21dtv.com/songs/60064810.mkv +胡杰夕+陈霆山-如果我是你的男朋友,http://em.21dtv.com/songs/60036937.mkv +赵小兵-如果我能替你流眼泪,http://em.21dtv.com/songs/60064809.mkv +卓冰冰-如果我们的爱情到了尽头,http://em.21dtv.com/songs/60068633.mkv +林雨-如果我离开你能够幸福,http://em.21dtv.com/songs/60064808.mkv +熊照华-如果我放手你会幸福,http://em.21dtv.com/songs/60128196.mkv +张雷-如果我的离开可以成全你们的爱,http://em.21dtv.com/songs/60036918.mkv +敖令-如果我的回忆没有了你,http://em.21dtv.com/songs/60062217.mkv +山野-如果他不要你我爱你,http://em.21dtv.com/songs/60036913.mkv +承伟-如果伤心可以无所谓,http://em.21dtv.com/songs/60072352.mkv +哈桑-如果上天再给我一次机会,http://em.21dtv.com/songs/60036905.mkv +EASY SHEN-如果身体全部开放了,http://em.21dtv.com/songs/60112428.mkv +李坤雨-如果世上只有我和你,http://em.21dtv.com/songs/60036911.mkv +庞博-如果受你是我犯的罪,http://em.21dtv.com/songs/60091019.mkv +花世纪-如果世界能单纯一点,http://em.21dtv.com/songs/60112167.mkv +谢华-如果伤害了我你会好过,http://em.21dtv.com/songs/60036904.mkv +玺晨-如果全世界背叛了你,http://em.21dtv.com/songs/60134016.mkv +冷漠-如果你只是爱上我的冷漠,http://em.21dtv.com/songs/60036896.mkv +欢子-如果能再感动你多一次,http://em.21dtv.com/songs/60036843.mkv +任贤齐-如果你知道我的需要,http://em.21dtv.com/songs/60090549.mkv +张华-如果你真的爱他没关系(演唱会),http://em.21dtv.com/songs/60036892.mkv +张啸-如果你真的爱上了他,http://em.21dtv.com/songs/60036890.mkv +张海-如果你真的爱上了谁,http://em.21dtv.com/songs/60072351.mkv +张祥洪-如果你已不真的爱他,http://em.21dtv.com/songs/60036884.mkv +安以轩-如果那天没有遇见你,http://em.21dtv.com/songs/60036838.mkv +胡杰夕-如果你是真的不爱我,http://em.21dtv.com/songs/60036875.mkv +胡杰夕-如果你是真的不爱我(舞曲版),http://em.21dtv.com/songs/60036874.mkv +韩烁-如果你是我眼中的一滴泪,http://em.21dtv.com/songs/60036873.mkv +李绪杰-如果你是我眼里的一滴泪,http://em.21dtv.com/songs/60077417.mkv +迪克牛仔-如果你是爱上我的沧桑,http://em.21dtv.com/songs/60036866.mkv +ME2-如果你和我一样爱上他,http://em.21dtv.com/songs/60036857.mkv +马健涛-如果你会不经意的想起我,http://em.21dtv.com/songs/60036858.mkv +林志炫-如果你不小心想起我,http://em.21dtv.com/songs/60091466.mkv +秦浩-如果你把我的心带走,http://em.21dtv.com/songs/60112864.mkv +朱大福-如果你不是我爱的人,http://em.21dtv.com/songs/60108553.mkv +长春虫子-如果你不爱我就放了我,http://em.21dtv.com/songs/60036853.mkv +张启辉-如果你不爱我就请你放了我,http://em.21dtv.com/songs/60067379.mkv +阿飞-如果你不爱我请让我单飞,http://em.21dtv.com/songs/60062193.mkv +甜美真-如果你爱我爱得很累,http://em.21dtv.com/songs/60061542.mkv +六哲-如果没有他你还爱我吗,http://em.21dtv.com/songs/60036834.mkv +蔡琴-如果没有你+醉在你的怀中+魂萦旧梦(HD演唱会),http://em.21dtv.com/songs/60036827.mkv +木子烁-如果没有你再我身边,http://em.21dtv.com/songs/60081367.mkv +郑中基-如果没有你在身边的时候(演唱会),http://em.21dtv.com/songs/60036833.mkv +郑中基-如果没有你在身边的时侯,http://em.21dtv.com/songs/60036832.mkv +郝云-如果来生还能遇见你,http://em.21dtv.com/songs/60100509.mkv +马云龙-如果来生还能在一起(演唱会),http://em.21dtv.com/songs/60064804.mkv +冷漠-如果离开我你才会幸福,http://em.21dtv.com/songs/60077408.mkv +群星-如果离开是一种解脱,http://em.21dtv.com/songs/60086787.mkv +柔情-如果离开是一种解脱,http://em.21dtv.com/songs/60069769.mkv +邓海-如果离开能让你幸福,http://em.21dtv.com/songs/60110570.mkv +TIZZY BAC-如果看见地狱我就不怕魔鬼,http://em.21dtv.com/songs/60036808.mkv +刘德华-如果看到她请告诉我,http://em.21dtv.com/songs/60036807.mkv +晨熙-如果今生无法再爱你,http://em.21dtv.com/songs/60115198.mkv +依涛-如果今生不能在一起,http://em.21dtv.com/songs/60036806.mkv +刘芳-如果今生不能在一起,http://em.21dtv.com/songs/60036805.mkv +郭富城-如果今生不能和你一起,http://em.21dtv.com/songs/60036804.mkv +莫熙儿-如果回到20岁那年,http://em.21dtv.com/songs/60100428.mkv +龙奔-如果分手是一种借口,http://em.21dtv.com/songs/60036793.mkv +刘志丹-如果分开也是一种爱,http://em.21dtv.com/songs/60067374.mkv +BABARA+小5-如果等待只能成为等待,http://em.21dtv.com/songs/60077404.mkv +KINGSTAR-如果等待只能成为等待,http://em.21dtv.com/songs/60066277.mkv +辛欣-如果当初少爱你一点,http://em.21dtv.com/songs/60036786.mkv +赵真-如果当初没有爱上你,http://em.21dtv.com/songs/60036784.mkv +赵鑫-如果当初多给一些爱,http://em.21dtv.com/songs/60135778.mkv +丁童-如果当初不是你说要分手,http://em.21dtv.com/songs/60064803.mkv +六哲-如果彼此都狠不下心,http://em.21dtv.com/songs/60085652.mkv +张跃-如果不爱我请别伤害我,http://em.21dtv.com/songs/60061538.mkv +张启辉-如果不爱我就请你放了我,http://em.21dtv.com/songs/60077402.mkv +金巧巧-如果爱只是一场婚礼,http://em.21dtv.com/songs/60036774.mkv +梁咏琪-如果 爱,http://em.21dtv.com/songs/60113741.mkv +郎郎(马志锋)-如果爱我就别离开我,http://em.21dtv.com/songs/60104475.mkv +冷漠-如果爱我成了你的负累,http://em.21dtv.com/songs/60036771.mkv +吕方-如果爱他比爱我快乐,http://em.21dtv.com/songs/60036770.mkv +潘东亮-如果爱上你是一种错,http://em.21dtv.com/songs/60036768.mkv +潘东亮-如果爱上你是一个错(演唱会),http://em.21dtv.com/songs/60036767.mkv +晓月-如果爱情只是一种传说,http://em.21dtv.com/songs/60036766.mkv +郝红岩-如果爱情可以有沧海桑田,http://em.21dtv.com/songs/60036764.mkv +马云龙-如果爱情可以轻易忘记,http://em.21dtv.com/songs/60077399.mkv +阿洋-如果爱请不要再走开,http://em.21dtv.com/songs/60102859.mkv +阿桑-如果爱你只有这一次,http://em.21dtv.com/songs/60036762.mkv +山野-如果爱能早些说出来,http://em.21dtv.com/songs/60036758.mkv +王森-如果爱你是一种伤害,http://em.21dtv.com/songs/60036761.mkv +庞博-如果爱你是我饭得罪,http://em.21dtv.com/songs/60087771.mkv +庞博-如果爱你是我犯的罪,http://em.21dtv.com/songs/60036760.mkv +长春虫子-如果爱你是我犯的罪(演唱会),http://em.21dtv.com/songs/60036759.mkv +洪峰-如果爱你都是我的错,http://em.21dtv.com/songs/60121871.mkv +石开-如果爱可以继续蔓延,http://em.21dtv.com/songs/60036755.mkv +SHINEE-replay君は仆のeverything,http://em.21dtv.com/songs/60060898.mkv +f(x)-Red Light,http://em.21dtv.com/songs/60101761.mkv +AS ONE-RED HOT H,http://em.21dtv.com/songs/60109799.mkv +Tom Odell-Real Love,http://em.21dtv.com/songs/60108252.mkv +Clean Bandit+Jess Glynne-Real Love,http://em.21dtv.com/songs/60108215.mkv +金小曦-Real life,http://em.21dtv.com/songs/60127498.mkv +杨哲-若得到你干若得到全世界,http://em.21dtv.com/songs/60037102.mkv +黎姿-如此这般的爱情故事,http://em.21dtv.com/songs/60036732.mkv +越剧-若不是张解元识人多,http://em.21dtv.com/songs/60037101.mkv +吴淑敏-若不是你无情我袂伤心(无原唱),http://em.21dtv.com/songs/60037098.mkv +羽泉-让暴风雨来得更猛烈吧,http://em.21dtv.com/songs/60036052.mkv +姚敏男-让爱你的心从此荒废(无原唱),http://em.21dtv.com/songs/60036033.mkv +孟庭苇-请在我落泪以前离开,http://em.21dtv.com/songs/60035615.mkv +成林江措-牵着你的手,http://em.21dtv.com/songs/60104159.mkv +陈星-牵着你的手跟着我走,http://em.21dtv.com/songs/60114212.mkv +刘金泉-群英会-自起义兵把贼讨,http://em.21dtv.com/songs/60035988.mkv +孙青-请相信我会给你幸福,http://em.21dtv.com/songs/60035610.mkv +佚名-奇袭白虎团-打败美帝野心狼,http://em.21dtv.com/songs/60033959.mkv +西内まりや-7 WONDERS,http://em.21dtv.com/songs/60112955.mkv +林灵-千万不通有寂寞的伤悲(无原唱),http://em.21dtv.com/songs/60034160.mkv +刘瑞琦-晴天,http://em.21dtv.com/songs/60121451.mkv +吴映香-秋天别来,http://em.21dtv.com/songs/60126697.mkv +3BJunior-七色のスターダスト,http://em.21dtv.com/songs/60102987.mkv +马郁-其实一个人过也很好,http://em.21dtv.com/songs/60061498.mkv +央吉玛-情深谊长,http://em.21dtv.com/songs/60125359.mkv +佚名-前世我早就已经爱过你(无原唱),http://em.21dtv.com/songs/60034296.mkv +王岩-其实我知道你还在爱我,http://em.21dtv.com/songs/60071042.mkv +刘德华-其实我早猜透你的心,http://em.21dtv.com/songs/60033923.mkv +莫文蔚-其实我一直都想对你说,http://em.21dtv.com/songs/60033921.mkv +网络歌手-其实我是真的好爱你,http://em.21dtv.com/songs/60083600.mkv +钟镇涛+章蓉舫-其实我没有那么坚强,http://em.21dtv.com/songs/60090273.mkv +钟镇涛-其实我没有那么坚强,http://em.21dtv.com/songs/60033907.mkv +孟庭苇-其实我还是有些在乎,http://em.21dtv.com/songs/60033898.mkv +甘萍-其实我对你似水柔情,http://em.21dtv.com/songs/60088355.mkv +赵真-其实他没有那么爱你,http://em.21dtv.com/songs/60064701.mkv +豫剧-轻纱桥坐着我七品官,http://em.21dtv.com/songs/60134611.mkv +许志安+郑秀文-其实你心里有没有我(演唱会),http://em.21dtv.com/songs/60033888.mkv +汪明荃+罗家英-其实你心里有没有我(演唱会),http://em.21dtv.com/songs/60033887.mkv +梁咏琪+朱孝天-其实你心里有没有我(演唱会),http://em.21dtv.com/songs/60033886.mkv +海生-其实男人也会流眼泪,http://em.21dtv.com/songs/60069705.mkv +黄海永-其实你的美丽不是孤单,http://em.21dtv.com/songs/60069707.mkv +木子俊-全世界只有你在乎我,http://em.21dtv.com/songs/60035911.mkv +张洪量-全世界只有你不知道,http://em.21dtv.com/songs/60035910.mkv +张国荣-全世界只想你来爱我,http://em.21dtv.com/songs/60035909.mkv +林蔷-全世界最不懂爱的人,http://em.21dtv.com/songs/60035913.mkv +金莎-全世界我只贪一个他,http://em.21dtv.com/songs/60118980.mkv +贾乃亮+宋小宝+于洋-全世界都在说东北话,http://em.21dtv.com/songs/60130770.mkv +李猛-全世界都知道我爱你,http://em.21dtv.com/songs/60132558.mkv +艾歌-全世界都知道你变了心,http://em.21dtv.com/songs/60077305.mkv +黄玠-全世界的人都很悲伤,http://em.21dtv.com/songs/60108183.mkv +OK绷-全世界都闭上了眼睛,http://em.21dtv.com/songs/60096156.mkv +金岩-请让我用歌声谢谢您,http://em.21dtv.com/songs/60097962.mkv +孟杨-情人节没有情人的礼物,http://em.21dtv.com/songs/60035224.mkv +雨柔-情人节的夜里没有你,http://em.21dtv.com/songs/60104580.mkv +陈明-情人的眼泪+思念是一种病,http://em.21dtv.com/songs/60072314.mkv +金梅-千千阙歌依然为你唱,http://em.21dtv.com/songs/60034147.mkv +梁文君-千千阙歌,http://em.21dtv.com/songs/60129312.mkv +许志安-千千阙歌,http://em.21dtv.com/songs/60119966.mkv +沈凌云-青青菩提树,http://em.21dtv.com/songs/60098566.mkv +戚翔-求求你永远不离开我,http://em.21dtv.com/songs/60035805.mkv +王驹良-秦琼卖马-店主东带过了黄骠马(无原唱),http://em.21dtv.com/songs/60034623.mkv +龙啸-祈求来世再续今生缘,http://em.21dtv.com/songs/60033973.mkv +陈洁仪-祈求可以共你活一天,http://em.21dtv.com/songs/60109701.mkv +段红-亲亲河东水亲亲河东土,http://em.21dtv.com/songs/60066235.mkv +毛宁+杨钰莹-悄悄的蒙上你的眼睛,http://em.21dtv.com/songs/60090028.mkv +苏诗丁-千年之恋,http://em.21dtv.com/songs/60129541.mkv +张国荣-倩女幽魂,http://em.21dtv.com/songs/60111064.mkv +特曼-前男友的一百种死法,http://em.21dtv.com/songs/60128200.mkv +颜羽-娶你现在也娶你未来,http://em.21dtv.com/songs/60080799.mkv +张可儿-请你让我走进你眼里,http://em.21dtv.com/songs/60067353.mkv +浩东-求你换个分手的理由,http://em.21dtv.com/songs/60107032.mkv +齐剑-请你给我离开的理由,http://em.21dtv.com/songs/60061523.mkv +齐剑-请你给我个离开的理由,http://em.21dtv.com/songs/60035560.mkv +郭婷筠-请你get out,http://em.21dtv.com/songs/60135822.mkv +路默依-去你的爱,http://em.21dtv.com/songs/60129651.mkv +林道华-请你不要再说重新开始,http://em.21dtv.com/songs/60067352.mkv +朱桦-请你不要再对我说爱我,http://em.21dtv.com/songs/60035549.mkv +张挥-请你不要伤我这么深,http://em.21dtv.com/songs/60069738.mkv +梁剑东-请你不要轻易说爱我,http://em.21dtv.com/songs/60119729.mkv +张胜淼-请你不要和我说分手,http://em.21dtv.com/songs/60035546.mkv +朱桦-请你不要对我说爱我,http://em.21dtv.com/songs/60035545.mkv +毛毛-请你别说你还爱着我,http://em.21dtv.com/songs/60035541.mkv +洛天依-请你啊我忘记的人呐,http://em.21dtv.com/songs/60100274.mkv +佚名-劝母亲你不必泪嚎啕,http://em.21dtv.com/songs/60035951.mkv +谭咏麟-千面女郎+千年埋藏,http://em.21dtv.com/songs/60093206.mkv +陈粒-奇妙能力歌,http://em.21dtv.com/songs/60119024.mkv +陈粒-奇妙能力歌,http://em.21dtv.com/songs/60110648.mkv +张韶涵-全面沦陷,http://em.21dtv.com/songs/60125543.mkv +萧敬腾+苏丁琦+凌菱-亲密爱人,http://em.21dtv.com/songs/60102692.mkv +费玉清+吉鹏飞-千里之外,http://em.21dtv.com/songs/60123189.mkv +费玉清-千里之外,http://em.21dtv.com/songs/60114086.mkv +沙莎-秦岭里最美的地方是商洛,http://em.21dtv.com/songs/60077191.mkv +罗宁娜-清粼粼水蓝莹莹的天,http://em.21dtv.com/songs/60034886.mkv +罗宁娜-清粼粼水蓝晶晶的天,http://em.21dtv.com/songs/60091830.mkv +郭兰英-清粼粼的水来蓝莹莹的天,http://em.21dtv.com/songs/60034885.mkv +李光洁-情瘤感菌,http://em.21dtv.com/songs/60122838.mkv +张新海-情困银川之坚定的爱,http://em.21dtv.com/songs/60063406.mkv +胡晓晴-青稞美酒献给毛主席,http://em.21dtv.com/songs/60034745.mkv +蔡琴-请假装你会舍不得我(无原唱),http://em.21dtv.com/songs/60035525.mkv +阎维文-强军战歌,http://em.21dtv.com/songs/60109673.mkv +庄学忠-请记得传达我的思念,http://em.21dtv.com/songs/60087765.mkv +冯建聪+陈辉权-求婚蜜语+美丽誓言,http://em.21dtv.com/songs/60087362.mkv +田馥甄-请给我好一点的情敌,http://em.21dtv.com/songs/60062992.mkv +范琳琳-情哥哥的心思猜不透,http://em.21dtv.com/songs/60094660.mkv +渔圈-清宫穿越你该回去了,http://em.21dtv.com/songs/60083649.mkv +杜鹏-清官册-一轮明月早东升,http://em.21dtv.com/songs/60034878.mkv +龙奔-祈福昆明[黑白版],http://em.21dtv.com/songs/60098972.mkv +评剧-巧儿我自幼许配赵家,http://em.21dtv.com/songs/60034437.mkv +佚名-巧儿我至死不嫁旁人(无原唱),http://em.21dtv.com/songs/60034436.mkv +4U乐队-穷二代的PARTY,http://em.21dtv.com/songs/60079840.mkv +黄绮珊+黎健伟+玉散克里木-青春舞曲,http://em.21dtv.com/songs/60102984.mkv +张智霖+许秋怡-青春无敌爱情大爆发,http://em.21dtv.com/songs/60034714.mkv +旧城中学161班班歌-青春是场短暂的烈火,http://em.21dtv.com/songs/60106892.mkv +古享林-青春憨客梦想在燃烧,http://em.21dtv.com/songs/60127799.mkv +张云龙-青春不留白,http://em.21dtv.com/songs/60104107.mkv +景岗山-请不要在别人的肩上哭泣,http://em.21dtv.com/songs/60077267.mkv +赵传-请不要在别人的肩上哭泣,http://em.21dtv.com/songs/60035510.mkv +腾格尔-请不要在别人的肩上哭泣(演唱会),http://em.21dtv.com/songs/60035509.mkv +刘志丹-请不要说你还爱着我,http://em.21dtv.com/songs/60107529.mkv +曹海波-钱不是问题问题是没钱,http://em.21dtv.com/songs/60077153.mkv +韩磊+姚贝娜-千百年后谁又记得谁,http://em.21dtv.com/songs/60088953.mkv +韩磊-千百年后谁又还记得谁,http://em.21dtv.com/songs/60034060.mkv +韩磊+姚贝娜-千百年后谁又还记得谁,http://em.21dtv.com/songs/60034059.mkv +陈一凡-娶不了媳妇回不了家,http://em.21dtv.com/songs/60086776.mkv +侯博文-亲爱的战友我的弟兄,http://em.21dtv.com/songs/60115692.mkv +热们泽-亲爱的一起去日喀则,http://em.21dtv.com/songs/60132697.mkv +彭丽丽-亲爱的我一直在想你,http://em.21dtv.com/songs/60034551.mkv +孙铭泽-亲爱的我已爱上了你,http://em.21dtv.com/songs/60116711.mkv +孙铭泽-亲爱的我已爱上了你,http://em.21dtv.com/songs/60077182.mkv +凌毅-亲爱的我想说声爱你,http://em.21dtv.com/songs/60083632.mkv +孙晓哲-亲爱的为什么你要离开我,http://em.21dtv.com/songs/60077180.mkv +路琦欧-亲爱的我们究竟怎么了,http://em.21dtv.com/songs/60034549.mkv +XUN+可歆-亲爱的我们就此别过,http://em.21dtv.com/songs/60120254.mkv +东浩+舞真-亲爱的我不能没有你,http://em.21dtv.com/songs/60117525.mkv +许茹芸-亲爱的是你把我宠坏,http://em.21dtv.com/songs/60034540.mkv +田安博+陈依然-亲爱的谁比我更爱你,http://em.21dtv.com/songs/60094614.mkv +江美琪-亲爱的你怎么不在身边,http://em.21dtv.com/songs/60034534.mkv +黄中原+傅薇-亲爱的你怎么不在身边(演唱会),http://em.21dtv.com/songs/60034533.mkv +赵真-亲爱的你在和谁约会,http://em.21dtv.com/songs/60034528.mkv +雷罡-亲爱的你现在还好吗,http://em.21dtv.com/songs/60124673.mkv +孙晓哲-亲爱的你为什么离开我,http://em.21dtv.com/songs/60069720.mkv +严咚-亲爱的你是我最爱的人,http://em.21dtv.com/songs/60077176.mkv +钱小寒-亲爱的你是否还整夜哭泣,http://em.21dtv.com/songs/60034525.mkv +光头阿兴-亲爱的女人不要流泪,http://em.21dtv.com/songs/60110851.mkv +陈振云-亲爱的你还会爱我吗,http://em.21dtv.com/songs/60034519.mkv +徐国人-亲爱的你过的怎么样,http://em.21dtv.com/songs/60110220.mkv +咪依鲁江-亲爱的你到底在哪里,http://em.21dtv.com/songs/60117626.mkv +于洋-亲爱的你不在我身旁,http://em.21dtv.com/songs/60099733.mkv +徐一鸣-亲爱的能不能再次拥抱,http://em.21dtv.com/songs/60066233.mkv +昏鸦-亲爱的密室杀人事件,http://em.21dtv.com/songs/60083629.mkv +谢世超-亲爱的就这样走了吗,http://em.21dtv.com/songs/60085596.mkv +韩小薰-亲爱的就这样结束了吗,http://em.21dtv.com/songs/60034506.mkv +黄勇-亲爱的姑娘,http://em.21dtv.com/songs/60108181.mkv +高柏-亲爱的姑娘你真漂亮,http://em.21dtv.com/songs/60072302.mkv +李龙-亲爱的别再让我流泪,http://em.21dtv.com/songs/60069717.mkv +佚名-亲爱的不要问我为什么(无原唱),http://em.21dtv.com/songs/60034498.mkv +王晓敏-亲爱的宝贝你在哪里,http://em.21dtv.com/songs/60124260.mkv +爱内里菜+三枝夕夏-七つの海を渡る风のように,http://em.21dtv.com/songs/60033730.mkv +乃木坂46-ハルジオンが咲く顷,http://em.21dtv.com/songs/60123595.mkv +周传雄-陪着我一直到世界的尽头(演唱会),http://em.21dtv.com/songs/60033281.mkv +郭静-陪着我的时候想着她,http://em.21dtv.com/songs/60061484.mkv +佚名-朋友+傻妹妹+十三不亲(恰恰),http://em.21dtv.com/songs/60033303.mkv +邱永传-朋友圈里再也没有你,http://em.21dtv.com/songs/60124547.mkv +李晓杰-朋友的酒(DJ版),http://em.21dtv.com/songs/50000172.mkv +黄品冠-朋友变情人再变朋友,http://em.21dtv.com/songs/60033318.mkv +刘昱妤-咆哮[梦想的声音],http://em.21dtv.com/songs/60132247.mkv +京剧-盼望着胜利归来的侦察员,http://em.21dtv.com/songs/60033169.mkv +李玟-Price Tag,http://em.21dtv.com/songs/60118683.mkv +李嘉琪-Price Tag,http://em.21dtv.com/songs/60114596.mkv +德永英明-仆が仆だけの救世主,http://em.21dtv.com/songs/60105904.mkv +石乔-漂泊的你是阮的所爱,http://em.21dtv.com/songs/60135605.mkv +Robin Skouteris-PopLove 5,http://em.21dtv.com/songs/60131103.mkv +天爱-陪你看看城里的月光,http://em.21dtv.com/songs/60120443.mkv +殷秀梅-帕米尔我的家乡多么美,http://em.21dtv.com/songs/60033084.mkv +达明一派-排名不分先后左右忠奸(演唱会),http://em.21dtv.com/songs/60033121.mkv +达明一派-排名不分先后左右忠奸,http://em.21dtv.com/songs/60067303.mkv +龙梅子+老猫-漂亮姑娘就要嫁人了,http://em.21dtv.com/songs/60033479.mkv +曾永付-漂亮的姑娘你不要挑,http://em.21dtv.com/songs/60100877.mkv +毕福剑+苏丹-漂亮的姑娘就要嫁人了(演唱会),http://em.21dtv.com/songs/60077080.mkv +龙梅子+老猫-漂亮的姑娘就要嫁人了(舞曲版),http://em.21dtv.com/songs/60062714.mkv +龙梅子+老猫-漂亮的姑娘就要嫁人啦,http://em.21dtv.com/songs/60033474.mkv +金城-漂亮的姑娘嫁给我吧,http://em.21dtv.com/songs/60103635.mkv +乐童音乐家-Play Ugly,http://em.21dtv.com/songs/60132169.mkv +刘志丹-啤酒烤串就着花生米,http://em.21dtv.com/songs/60121438.mkv +佚名-破洪洲-劝将军暂平你的心中忿(无原唱),http://em.21dtv.com/songs/60033659.mkv +张赫宣-怕黑的女人,http://em.21dtv.com/songs/60121677.mkv +佚名-盘夫索夫-官人好比天上月,http://em.21dtv.com/songs/60033141.mkv +KELSEA BALLERINI-PETER PAN,http://em.21dtv.com/songs/60129952.mkv +张建国-碰碑-叹杨家秉忠心大宋扶保,http://em.21dtv.com/songs/60033375.mkv +佚名-飘泊的心停泊在基隆港,http://em.21dtv.com/songs/60033513.mkv +Beyonce-Partition,http://em.21dtv.com/songs/60101732.mkv +军嫂组合-平安护航G20有我,http://em.21dtv.com/songs/60132226.mkv +张可儿-欧洲杯之今晚怎么买,http://em.21dtv.com/songs/60122715.mkv +邝美云-哦想我是真的爱上你,http://em.21dtv.com/songs/60033045.mkv +Justin Bieber+jessica Jarel-Overboard,http://em.21dtv.com/songs/60121269.mkv +万翔-on My Way,http://em.21dtv.com/songs/60125066.mkv +Axwell Ingrosso-On My Way,http://em.21dtv.com/songs/60114323.mkv +Boa+Henry+Key-One Dream,http://em.21dtv.com/songs/60113132.mkv +Drake+WizKid+Kyla-One Dance,http://em.21dtv.com/songs/60121239.mkv +旺福-On and On,http://em.21dtv.com/songs/60114568.mkv +The Pretty Reckless-Oh My God,http://em.21dtv.com/songs/60132139.mkv +陶喆+王奕丁-你最珍贵,http://em.21dtv.com/songs/60126413.mkv +胡杰夕-你再也不能伤害到我,http://em.21dtv.com/songs/60066200.mkv +蔡幸娟-你在我心中最深的地方,http://em.21dtv.com/songs/60032481.mkv +孙青-你在我心中永远是最美,http://em.21dtv.com/songs/60032480.mkv +韩春雨-你在我心里永远最美,http://em.21dtv.com/songs/60121116.mkv +黄猛-你在我痛苦的夜里陪着谁,http://em.21dtv.com/songs/60032473.mkv +何维健-你走天桥我走地下道,http://em.21dtv.com/songs/60032579.mkv +许文科-你只是我夜空的月亮,http://em.21dtv.com/songs/60076988.mkv +青桂贤-那只前世的蝴蝶曾来过,http://em.21dtv.com/songs/60076812.mkv +由美-那种女孩,http://em.21dtv.com/songs/60103489.mkv +杨锌-你在你的梦里遇见谁,http://em.21dtv.com/songs/60100194.mkv +田一龙-你怎么舍得我为你哭,http://em.21dtv.com/songs/60032504.mkv +龙奔-你怎么舍得让我一个人哭,http://em.21dtv.com/songs/60032497.mkv +陈威-你怎么舍得让我一个人哭,http://em.21dtv.com/songs/60032496.mkv +李自强-你怎么能忍心伤害我,http://em.21dtv.com/songs/60032493.mkv +张信哲-你最美丽会微笑的脸,http://em.21dtv.com/songs/60032585.mkv +佚名-你最美丽会微笑的脸,http://em.21dtv.com/songs/60032584.mkv +周杰伦-你怎么连话都说不清梦(演唱会),http://em.21dtv.com/songs/60032491.mkv +蔡依林-你怎么连话都说不清楚(演唱会),http://em.21dtv.com/songs/60032490.mkv +彭凯-你怎么可以这样对我,http://em.21dtv.com/songs/60102258.mkv +黄品源-你怎么会这样离开我,http://em.21dtv.com/songs/60032488.mkv +石磊-你走了只留下心痛让我承受,http://em.21dtv.com/songs/60076991.mkv +卫兰-你知道我在等你们分手吗,http://em.21dtv.com/songs/60032555.mkv +尹光-你知道我在等你大姨妈,http://em.21dtv.com/songs/60032548.mkv +阿弟+张振宇-你知道我等你好久了吗,http://em.21dtv.com/songs/60032547.mkv +PANAI-你知道你自己是谁吗(无原唱),http://em.21dtv.com/songs/60032544.mkv +唐文龙-你知道你对我多重要,http://em.21dtv.com/songs/60032543.mkv +陈亮-你知道吗我是真的爱你,http://em.21dtv.com/songs/60032542.mkv +佚名-你真的可以忘记我吗,http://em.21dtv.com/songs/60032527.mkv +赵星宇-你一直在我伤口上撒盐,http://em.21dtv.com/songs/60032410.mkv +斯琴高丽-你一直在我伤口上撒盐,http://em.21dtv.com/songs/60032409.mkv +张家辉-宁愿最伤心的给我自己,http://em.21dtv.com/songs/60032708.mkv +司文-你一直还留在我心里,http://em.21dtv.com/songs/60083537.mkv +司文-你一直还留在我心底,http://em.21dtv.com/songs/60087524.mkv +何易峰-你永远依然在我心中,http://em.21dtv.com/songs/60032428.mkv +张振宇-你愿意嫁给没有钱的男人吗,http://em.21dtv.com/songs/60032450.mkv +崔来宾-你有一个英雄的名字,http://em.21dtv.com/songs/60126821.mkv +覃元隆-你永远都是我的唯一,http://em.21dtv.com/songs/60085544.mkv +巫启贤-诺言小雨打在我身上,http://em.21dtv.com/songs/60032823.mkv +张吉-宁愿相信世界上有鬼,http://em.21dtv.com/songs/60063373.mkv +郑秀文-你要我就勇敢去爱吧,http://em.21dtv.com/songs/60093301.mkv +王志萍-那一天我不顾苍苔滑天色昏,http://em.21dtv.com/songs/60030830.mkv +冬冬-你有什么资格说爱我,http://em.21dtv.com/songs/60032439.mkv +林立洋-你用什么感动我的心(无原唱),http://em.21dtv.com/songs/60032429.mkv +欧姐-你也是会被偷走的人,http://em.21dtv.com/songs/60132654.mkv +欧姐-你也是会被偷走的人,http://em.21dtv.com/songs/60129319.mkv +张卫健-那一年冬天香港在下雪,http://em.21dtv.com/songs/60030817.mkv +潘协庆-你有没有一个叫做寂寞的朋友,http://em.21dtv.com/songs/60032436.mkv +庄校莹-你有没有为他流过眼泪,http://em.21dtv.com/songs/60032435.mkv +阿桑-你要离开的一些时候,http://em.21dtv.com/songs/60066199.mkv +佚名-女友嫁人新郎不是我,http://em.21dtv.com/songs/60033020.mkv +格桑梅朵-女友嫁人新郎不是我,http://em.21dtv.com/songs/60033019.mkv +佚名-南阳关-我的伯父你慢着些(无原唱),http://em.21dtv.com/songs/60031154.mkv +蓝雨-你要的只是幸福蓝雨,http://em.21dtv.com/songs/60088590.mkv +张学友-纽约的司机驾着北京的梦,http://em.21dtv.com/songs/60032740.mkv +阿龙正刚-那一次我真的爱过你,http://em.21dtv.com/songs/60030808.mkv +周治平-那一场风花雪夜的事,http://em.21dtv.com/songs/60099885.mkv +周治平-那一场风花雪月的事,http://em.21dtv.com/songs/60030804.mkv +何如惠-那一场风花雪月的事,http://em.21dtv.com/songs/60030803.mkv +高胜美-那一场风花雪月的事,http://em.21dtv.com/songs/60030802.mkv +郭峰-你已把我的心全带走,http://em.21dtv.com/songs/60032412.mkv +黄飞鹏-你想要什么样的老公,http://em.21dtv.com/songs/60083536.mkv +天孪兄弟-你想要什么我都会给,http://em.21dtv.com/songs/60032366.mkv +孙子涵-那些学校没有教过的事儿,http://em.21dtv.com/songs/60067254.mkv +吴克群-那些我再也不做的事,http://em.21dtv.com/songs/60111754.mkv +吴克群-那些我再也不做的事,http://em.21dtv.com/songs/60110920.mkv +陈奕迅-那些让你死去活来的女孩,http://em.21dtv.com/songs/60067253.mkv +洪卓立-那些年我们一起追的女孩,http://em.21dtv.com/songs/60030793.mkv +胡渭康-那些年我们一起唱过的儿歌,http://em.21dtv.com/songs/60067252.mkv +陈浩德-难寻旧时梦+我是痴情无限(演唱会),http://em.21dtv.com/songs/60031291.mkv +王子文+朴树-那些花儿,http://em.21dtv.com/songs/60125910.mkv +陈奕迅+张敬轩-那些感动过人的情歌medley(演唱会),http://em.21dtv.com/songs/60076804.mkv +杨呜-男性本是漂泊的心情,http://em.21dtv.com/songs/60031051.mkv +毛鹏懿(Mao)-那些爱情教我们的事,http://em.21dtv.com/songs/60131587.mkv +周祥+刘海辰-难忘兄弟[舞曲版],http://em.21dtv.com/songs/60098197.mkv +雨霖枫-你为什么这样的对我,http://em.21dtv.com/songs/60123334.mkv +邓伟-你为什么就这样离开,http://em.21dtv.com/songs/60061464.mkv +佚名-你我的曾经不是故事,http://em.21dtv.com/songs/60032313.mkv +佚名-你我的爱只能擦肩而过,http://em.21dtv.com/songs/60032312.mkv +彭莉-你无爱的我的真心啊,http://em.21dtv.com/songs/60086737.mkv +张艾嘉-那天我们谈了一夜生活,http://em.21dtv.com/songs/60030782.mkv +吴美英+盖鸣晖-南唐李后主之七夕离魂,http://em.21dtv.com/songs/60031145.mkv +盖鸣晖-南唐李后主之逼幸待寝(演唱会),http://em.21dtv.com/songs/60031144.mkv +盖鸣晖-南唐李后主-七夕离魂(演唱会),http://em.21dtv.com/songs/60031141.mkv +盖鸣晖+吴美英-南唐李后主-去国归降,http://em.21dtv.com/songs/60031143.mkv +盖鸣晖-南唐李后主-去国归降(演唱会),http://em.21dtv.com/songs/60031142.mkv +盖鸣晖+吴美英-南唐李后主-逼幸侍寝,http://em.21dtv.com/songs/60031139.mkv +黄小虎-你是坠落人间的天使,http://em.21dtv.com/songs/60124737.mkv +林海峰-你是最好的你知道吗,http://em.21dtv.com/songs/60032236.mkv +豫剧-你是咱村的农业顾问,http://em.21dtv.com/songs/60134539.mkv +韦唯-你是一个无法等待的人,http://em.21dtv.com/songs/60032225.mkv +阿福-那是一个美丽的地方,http://em.21dtv.com/songs/60030771.mkv +孙悦-你是一个不懂爱的人,http://em.21dtv.com/songs/60032221.mkv +黄可门-你是一段特别的留白,http://em.21dtv.com/songs/60133122.mkv +闫学晶-宁舍一顿饭不舍二人转,http://em.21dtv.com/songs/60032691.mkv +付笛声+任静-你是幸福的我是快乐的,http://em.21dtv.com/songs/60032217.mkv +佚名-你熟悉的世界多了一个我(无原唱),http://em.21dtv.com/songs/60032239.mkv +王俊宇-你说下辈子要做我的女人,http://em.21dtv.com/songs/60032275.mkv +丘也-你是我这一生的宝贝,http://em.21dtv.com/songs/60110817.mkv +陈威-你是我最想亲吻的女人,http://em.21dtv.com/songs/60032214.mkv +双剑兄弟-你是我最疼最爱的人,http://em.21dtv.com/songs/60032213.mkv +于冠华-你是我最放心不下的人(无原唱),http://em.21dtv.com/songs/60032209.mkv +云开-你是我这辈子最爱的人,http://em.21dtv.com/songs/60032201.mkv +叶小美-你是我这辈子最爱的人,http://em.21dtv.com/songs/60032200.mkv +柏君-你是我这辈子最爱的女人,http://em.21dtv.com/songs/60032199.mkv +郭富城-你是我最宝贝的宝贝,http://em.21dtv.com/songs/60102804.mkv +赵天野+欧姐-你是我夜晚哼唱的歌,http://em.21dtv.com/songs/60132921.mkv +刘德华-你是我一生中最大的骄傲,http://em.21dtv.com/songs/60032192.mkv +刘德华-你是我一生中最大的骄傲(演唱会),http://em.21dtv.com/songs/60032191.mkv +樊桐舟-你是我一生最爱的人,http://em.21dtv.com/songs/60032195.mkv +阿维-你是我一生最爱的人,http://em.21dtv.com/songs/60032194.mkv +阿龙正刚+阿唯-你是我一生最爱的人,http://em.21dtv.com/songs/60032193.mkv +南江秋措-你是我一生最爱的人,http://em.21dtv.com/songs/60062780.mkv +孟杨-你是我一生永远的幸福,http://em.21dtv.com/songs/60064653.mkv +掠琼+宪明-你是我一辈子的爱人,http://em.21dtv.com/songs/60123989.mkv +容兵-你是我一辈子的女人,http://em.21dtv.com/songs/60066197.mkv +林佳仪-你是我心中最想离开的依恋,http://em.21dtv.com/songs/60032179.mkv +姬长乐-你是我心中最美的花,http://em.21dtv.com/songs/60103188.mkv +郭富城-你是我心中最爱的人,http://em.21dtv.com/songs/60032178.mkv +萧亚轩-你是我心中一句惊叹,http://em.21dtv.com/songs/60032176.mkv +王力宏+SELINA-你是我心内的一首歌,http://em.21dtv.com/songs/60032173.mkv +洪荣宏-你是我心目中的嫦娥,http://em.21dtv.com/songs/60032172.mkv +王杰+叶欢-你是我胸口永远的痛,http://em.21dtv.com/songs/60032181.mkv +胡东清-你是我生命中的贵人,http://em.21dtv.com/songs/60132813.mkv +刘缘-你是我生命的四分之三,http://em.21dtv.com/songs/60032156.mkv +阿东-你是我上辈子苦苦修来的福,http://em.21dtv.com/songs/60032153.mkv +孙晓雨-你是我梦中的隔世红颜,http://em.21dtv.com/songs/60076954.mkv +王鹏-那是我们守卫的地方,http://em.21dtv.com/songs/60030770.mkv +刘尊+邢梅-你是我今生最疼的人,http://em.21dtv.com/songs/60032148.mkv +伊风-你是我今生最美的相遇,http://em.21dtv.com/songs/60032147.mkv +云开-你是我今生最恨的人,http://em.21dtv.com/songs/60032146.mkv +李昀泽-你是我今生最爱的人,http://em.21dtv.com/songs/60118673.mkv +孙露-你是我今生最爱的女孩,http://em.21dtv.com/songs/60076953.mkv +刘有名-你是我今生最美丽的邂逅,http://em.21dtv.com/songs/60071003.mkv +小军-你是我今生最美的温柔,http://em.21dtv.com/songs/60066195.mkv +张学友-你是我今生唯一传奇,http://em.21dtv.com/songs/60032145.mkv +张学友-你是我今生唯一传奇(演唱会),http://em.21dtv.com/songs/60032144.mkv +孟文豪+金婧-你是我今生淘来的宝,http://em.21dtv.com/songs/60083526.mkv +星月组合-你是我今生难忘的梦,http://em.21dtv.com/songs/60129179.mkv +枫舞-你是我今生难舍的情缘,http://em.21dtv.com/songs/60072244.mkv +杨林-你是我今生该等的人,http://em.21dtv.com/songs/60032143.mkv +白雪-你是我今生该等的人,http://em.21dtv.com/songs/60032142.mkv +容祖儿-你是我坚强的唯一理由,http://em.21dtv.com/songs/60032136.mkv +佚名-你是我故事里的唯一,http://em.21dtv.com/songs/60032135.mkv +易丹-你是我的最深的爱恋,http://em.21dtv.com/songs/60089920.mkv +甘延文-你是我的最爱我是你的谁,http://em.21dtv.com/songs/60032134.mkv +郭富城-你是我的一切之春眠篇,http://em.21dtv.com/songs/60032132.mkv +郭富城-你是我的一切之春眠篇(演唱会),http://em.21dtv.com/songs/60032131.mkv +阿正-你是我的心你是我的肝,http://em.21dtv.com/songs/60032119.mkv +刘喆-你是我的情你是我的爱,http://em.21dtv.com/songs/60070999.mkv +谭晶-你是我的父母我是你的兵,http://em.21dtv.com/songs/60032087.mkv +晓依-你是我的爱恋我的唯一,http://em.21dtv.com/songs/60032080.mkv +晨熙-你是我曾经最爱的人,http://em.21dtv.com/songs/60121732.mkv +左安安-你是我不知不觉的伤,http://em.21dtv.com/songs/60032072.mkv +刘德华-你说他是你想嫁的人,http://em.21dtv.com/songs/60032269.mkv +维也娜-你是天上掉下的林妹妹,http://em.21dtv.com/songs/60032063.mkv +林雨-你是伤我最深的女人,http://em.21dtv.com/songs/60032049.mkv +星月组合-你是上天给我的礼物,http://em.21dtv.com/songs/60122793.mkv +詹雅雯-你是阮无后悔爱的人,http://em.21dtv.com/songs/60032047.mkv +杨千桦-你是如此的难以忘记,http://em.21dtv.com/songs/60091392.mkv +赵红军-你是陪我到老的女人,http://em.21dtv.com/songs/60128432.mkv +星君-你是陪我到老的女人,http://em.21dtv.com/songs/60098413.mkv +东北阿星-你是潘金莲我是西门庆,http://em.21dtv.com/songs/60032037.mkv +轩子-你说你宁愿在宝马里哭,http://em.21dtv.com/songs/60076963.mkv +佚名-你说你的梦 我说我的歌,http://em.21dtv.com/songs/60032266.mkv +裘海正-你说你比较习惯一个人,http://em.21dtv.com/songs/60032264.mkv +谢知言-你说你爱我为什么还要伤害我,http://em.21dtv.com/songs/60068541.mkv +李翊君-你什么时候能爱我像爱自己一样,http://em.21dtv.com/songs/60031987.mkv +叮咚-你什么时候不再爱我,http://em.21dtv.com/songs/60031986.mkv +李萧杰-你什么不说就离开我,http://em.21dtv.com/songs/60069666.mkv +黑龙-你是块难以融化的冰,http://em.21dtv.com/songs/60123414.mkv +南风-你伤害了我,http://em.21dtv.com/songs/60103134.mkv +张振宇-你说过的话让我心痛,http://em.21dtv.com/songs/60032258.mkv +立涛-你说分手才能忘记你,http://em.21dtv.com/songs/60032255.mkv +郭品超-你是否看见我的眼泪,http://em.21dtv.com/songs/60032017.mkv +王雪娥-你是否曾经偷偷的哭,http://em.21dtv.com/songs/60090093.mkv +容祖儿-你说得对+今年新款+扮了解(演唱会),http://em.21dtv.com/songs/60032251.mkv +JS-你是此生最美的风景,http://em.21dtv.com/songs/60032009.mkv +雨柔-你似春水流进我梦里,http://em.21dtv.com/songs/60069674.mkv +艺涛-你是不是做了他的情人,http://em.21dtv.com/songs/60076936.mkv +佚名-你是不是要这样的结果(无原唱),http://em.21dtv.com/songs/60032003.mkv +魏琪-你是不是个真爱的女人,http://em.21dtv.com/songs/60032001.mkv +王键-你是不是对我无所谓,http://em.21dtv.com/songs/60100326.mkv +张冬玲-你身边的人曾经是我,http://em.21dtv.com/songs/60031982.mkv +杨坤-男人要战斗,http://em.21dtv.com/songs/60113667.mkv +苏永康-男人也会为爱流眼泪,http://em.21dtv.com/songs/60031026.mkv +张冬玲-你若无情休怪我无义,http://em.21dtv.com/songs/60031977.mkv +冷漠-你若无情休怪我无义,http://em.21dtv.com/songs/60031976.mkv +吴兰诗-女人是要花时间陪的,http://em.21dtv.com/songs/60103143.mkv +陈冠蒨-你若是爱我请你说出口(无原唱),http://em.21dtv.com/songs/60031972.mkv +望海高歌-男人女人不要太贪心,http://em.21dtv.com/songs/60100101.mkv +晓依-男人女人不要太贪心,http://em.21dtv.com/songs/60100083.mkv +沈志仲-男人没有钱女人不会爱,http://em.21dtv.com/songs/60061447.mkv +张吉-男人靠得住猪都能上树,http://em.21dtv.com/songs/60030987.mkv +大哲-女人就该好好爱自己,http://em.21dtv.com/songs/60032942.mkv +赵传-你如何还能这样的温柔,http://em.21dtv.com/songs/60031967.mkv +大厨-男人的心也需要安慰,http://em.21dtv.com/songs/60112601.mkv +樊少华-女人的心是无情的铁榔头,http://em.21dtv.com/songs/60032926.mkv +佚名-女人的心你永远不懂(无原唱),http://em.21dtv.com/songs/60032923.mkv +高少华-女人的心大海里的针,http://em.21dtv.com/songs/60121157.mkv +大哲-男人的痛你永远不会懂,http://em.21dtv.com/songs/60030965.mkv +青岛华子-男人的柔情女人的泪,http://em.21dtv.com/songs/60135972.mkv +唐古-女人的苦你知道多少,http://em.21dtv.com/songs/60131277.mkv +唐古-女人的苦你知道多少,http://em.21dtv.com/songs/60122624.mkv +金久哲-男人的苦女人不清楚,http://em.21dtv.com/songs/60102828.mkv +彭佳慧-女人多可爱,http://em.21dtv.com/songs/60113508.mkv +梅岭-女人不是那么容易哭,http://em.21dtv.com/songs/60032905.mkv +李建衡-女人不该让男人太累,http://em.21dtv.com/songs/60032903.mkv +陈小春-女人不该让男人太累,http://em.21dtv.com/songs/60032902.mkv +陈小春-女人不该让男人太累(演唱会),http://em.21dtv.com/songs/60032901.mkv +水晶侠-男人不该让女人流泪,http://em.21dtv.com/songs/60128155.mkv +王雪娥-男人不该让女人流泪,http://em.21dtv.com/songs/60030940.mkv +苏永康-男人不该让女人流泪,http://em.21dtv.com/songs/60030939.mkv +周蕙-男人不该让女人流泪(演唱会),http://em.21dtv.com/songs/60030938.mkv +苏永康-男人不该让女人流泪(演唱会),http://em.21dtv.com/songs/60030937.mkv +比莉-男人不该让女人流泪(演唱会),http://em.21dtv.com/songs/60030936.mkv +朱紫娆-男人不该让女人流泪(演唱会),http://em.21dtv.com/songs/60069634.mkv +胡彦斌-女人不该让男人流泪,http://em.21dtv.com/songs/60066208.mkv +孟杨-女人别把青春当做无所谓,http://em.21dtv.com/songs/60077023.mkv +孟杨-女人别把青春当无所谓(舞曲版),http://em.21dtv.com/songs/60062765.mkv +孟杨-女人别把青春当无所谓,http://em.21dtv.com/songs/60062766.mkv +王键-你其实现在和我一样,http://em.21dtv.com/songs/60031946.mkv +刘牧-你欺骗我并不喜欢我,http://em.21dtv.com/songs/60069663.mkv +马旭成-年轻的梦永远打不碎,http://em.21dtv.com/songs/60032637.mkv +KENT-女朋友因为你排第二,http://em.21dtv.com/songs/60077022.mkv +费玉清-南屏晚钟,http://em.21dtv.com/songs/60118063.mkv +JUN. K-NO SHADOW,http://em.21dtv.com/songs/60131072.mkv +Nicki Minaj+Drake+Lil Wayne-No Frauds,http://em.21dtv.com/songs/60134774.mkv +陈瑞-你能为我唱一首歌吗,http://em.21dtv.com/songs/60120094.mkv +雨中百合-你埋葬了我对你的心,http://em.21dtv.com/songs/60129768.mkv +文志-你没有什么值得我留恋,http://em.21dtv.com/songs/60076928.mkv +后来者+文志-你没有什么值得我留恋,http://em.21dtv.com/songs/60070992.mkv +卢巧音-女魔术师的催眠疗法,http://em.21dtv.com/songs/60032878.mkv +安德烈-你妈妈不让你谈恋爱,http://em.21dtv.com/songs/60031904.mkv +感觉自己萌萌哒-那么骄傲,http://em.21dtv.com/songs/60129153.mkv +洪卓立-奴隶与皇后的爱情故事(演唱会),http://em.21dtv.com/songs/60072261.mkv +游鸿明-你连笑起来都不快乐,http://em.21dtv.com/songs/60031895.mkv +李亚明-你连笑起来都不快乐,http://em.21dtv.com/songs/60031894.mkv +姜鹏-你连分手都那么温柔,http://em.21dtv.com/songs/60031893.mkv +左安安-你恋爱的样子很中国,http://em.21dtv.com/songs/60031896.mkv +王启-你快走开,http://em.21dtv.com/songs/60118776.mkv +张桐玮-你可知道我有多爱你,http://em.21dtv.com/songs/60031861.mkv +雷龙-你可知道我多么爱你,http://em.21dtv.com/songs/60123340.mkv +雷龙-你可知道我多么爱你,http://em.21dtv.com/songs/60108142.mkv +张羿凡-你可以简单地飞舞吗,http://em.21dtv.com/songs/60129114.mkv +金莎-你可以不用给我答案,http://em.21dtv.com/songs/60064635.mkv +周艳泓-你可能谈了个假恋爱,http://em.21dtv.com/songs/60133492.mkv +李萱-你看那天边飘过的云,http://em.21dtv.com/songs/60111171.mkv +缪以欣-你看到的我是蓝色的,http://em.21dtv.com/songs/60124340.mkv +李霄云-你看到的我是蓝色的,http://em.21dtv.com/songs/60031846.mkv +赵鑫-你可曾静下心来想过,http://em.21dtv.com/songs/60122150.mkv +蔡秋凤-你讲我的世界是你流浪的所在,http://em.21dtv.com/songs/60031820.mkv +林冲-你就是我这一辈子最想爱的人,http://em.21dtv.com/songs/60068537.mkv +老猫-你就是我最想要的人,http://em.21dtv.com/songs/60031838.mkv +伍天宇-你就是我最爱的女人,http://em.21dtv.com/songs/60031837.mkv +邹志杰-你就是我一生的最爱,http://em.21dtv.com/songs/60115449.mkv +赵照-你就是我想要的丫头,http://em.21dtv.com/songs/60110560.mkv +许顺哲-那就枯萎,http://em.21dtv.com/songs/60126193.mkv +邱永传-你究竟有没有爱过我,http://em.21dtv.com/songs/60118956.mkv +卓依婷-你究竟有几个好妹妹,http://em.21dtv.com/songs/60031828.mkv +孟庭苇-你究竟有几个好妹妹,http://em.21dtv.com/songs/60031827.mkv +卓依婷-你究竟有几个好姐妹,http://em.21dtv.com/songs/60087450.mkv +成铭-你究竟爱我还是爱他,http://em.21dtv.com/songs/60085520.mkv +林雨-你究竟爱的是他还是我,http://em.21dtv.com/songs/60067277.mkv +赌鬼乐队-你见过这样的星星吗,http://em.21dtv.com/songs/60072238.mkv +孝敏-Nice Body,http://em.21dtv.com/songs/60102141.mkv +潘美辰-你会在这伤心的地方等我,http://em.21dtv.com/songs/60031810.mkv +潘建义-农合行你永远的朋友,http://em.21dtv.com/songs/60085552.mkv +朱咪咪-女黑侠木兰花+戏班小子(演唱会),http://em.21dtv.com/songs/60032871.mkv +张琛-你好我的共和国母亲,http://em.21dtv.com/songs/60031776.mkv +永邦-你还是我最深爱的人,http://em.21dtv.com/songs/60031749.mkv +海龟先生-男孩别哭,http://em.21dtv.com/songs/60119775.mkv +江希文-你会不会后悔离开我,http://em.21dtv.com/songs/60031803.mkv +陶钰玉-你会爱我到什么时候,http://em.21dtv.com/songs/60112371.mkv +郑东-你会爱我到什么时候,http://em.21dtv.com/songs/60066187.mkv +达明一派-那个下午我在旧居烧信(演唱会),http://em.21dtv.com/songs/60030706.mkv +游国维-你给我的伤心比快乐多(无原唱),http://em.21dtv.com/songs/60031721.mkv +万一-那个伤我最深的女人,http://em.21dtv.com/songs/60114366.mkv +陈松伶-那个男人,http://em.21dtv.com/songs/60123306.mkv +六哲-你给的幸福不是我想要的,http://em.21dtv.com/songs/60076910.mkv +康康-难过的我问快乐的我,http://em.21dtv.com/songs/60068518.mkv +钟芹-你给的温柔已不再有,http://em.21dtv.com/songs/60031716.mkv +潘赢-你给的寂寞不只是眼泪,http://em.21dtv.com/songs/60064629.mkv +娜样红-你给不了我天荒地老,http://em.21dtv.com/songs/60072235.mkv +佚名-女驸马-谁料皇榜中状元,http://em.21dtv.com/songs/60032857.mkv +侃侃-你飞到城市的另一边,http://em.21dtv.com/songs/60116547.mkv +杨子-南方城市又飘起雪花,http://em.21dtv.com/songs/60101103.mkv +SWIN S-New World,http://em.21dtv.com/songs/60128708.mkv +MADTOWN-NEW WORLD,http://em.21dtv.com/songs/60113173.mkv +Chris Brown+Usher+Rick Ross-New Flame,http://em.21dtv.com/songs/60104658.mkv +越剧-女儿是娘亲生来亲养,http://em.21dtv.com/songs/60032850.mkv +Rihanna-Needed Me,http://em.21dtv.com/songs/60121303.mkv +佚名-男儿本是漂泊的心情,http://em.21dtv.com/songs/60030884.mkv +李静-你的转身留下我的泪,http://em.21dtv.com/songs/60119676.mkv +张龙珍-你的转身留下我的泪,http://em.21dtv.com/songs/60119555.mkv +盛颖儿-你的转身留下我的泪,http://em.21dtv.com/songs/60117105.mkv +温兆伦-难道真的我能忘记你,http://em.21dtv.com/songs/60031192.mkv +刘婕-你的眼中流着我的眼泪,http://em.21dtv.com/songs/60031673.mkv +大星-你的一生我只能路过,http://em.21dtv.com/songs/60099175.mkv +晨熙-你的眼神出卖你的心,http://em.21dtv.com/songs/60031669.mkv +刁寒-难得有你这样的朋友,http://em.21dtv.com/songs/60031204.mkv +赵鑫-你的眼角流着我的泪,http://em.21dtv.com/songs/60134268.mkv +赵鑫-你的眼角流着我的泪,http://em.21dtv.com/songs/60133172.mkv +曹越-你的眼角流着我的泪,http://em.21dtv.com/songs/60113579.mkv +门丽-你的眼角流着我的泪,http://em.21dtv.com/songs/60108941.mkv +崔伟亮-你的眼角流着我的泪,http://em.21dtv.com/songs/60085514.mkv +曹越-你的眼角流着我的泪,http://em.21dtv.com/songs/60083502.mkv +郑中基-你的眼睛背叛你的心,http://em.21dtv.com/songs/60031657.mkv +郑中基-你的眼睛背叛你的心(演唱会),http://em.21dtv.com/songs/60031656.mkv +叶瑷菱-你的心是我靠岸的地方,http://em.21dtv.com/songs/60031641.mkv +六哲-你的心是否也有我的名,http://em.21dtv.com/songs/60076901.mkv +王识贤-你的心内写着别人的名,http://em.21dtv.com/songs/60031636.mkv +晓亮-你的心里是否还有我,http://em.21dtv.com/songs/60111938.mkv +李纲锋-你的心里是否还爱我,http://em.21dtv.com/songs/60131509.mkv +邹志杰-你的心里是否还爱我,http://em.21dtv.com/songs/60126263.mkv +甲子慧-你的心甘有我的存在,http://em.21dtv.com/songs/60111308.mkv +王铮亮-你的幸福是我们最好的礼物,http://em.21dtv.com/songs/60067275.mkv +温兆伦-难道我真的能忘记你,http://em.21dtv.com/songs/60088230.mkv +曾淑勤-你惦我心内尚深的所在,http://em.21dtv.com/songs/60031685.mkv +蔡幸娟-你惦我心内尚深的所在,http://em.21dtv.com/songs/60031684.mkv +朱凯旗-你对我说这次真的要走,http://em.21dtv.com/songs/60031698.mkv +中四舞曲-你的温柔我永远不懂,http://em.21dtv.com/songs/60090476.mkv +张冬玲-你的无情伤了我的心,http://em.21dtv.com/songs/60031624.mkv +徐浩峻-难道我们只能做朋友,http://em.21dtv.com/songs/60109372.mkv +徐健淇-难道我们只能做朋友,http://em.21dtv.com/songs/60086724.mkv +成云刚+王星星-难道我对你的爱还不够多,http://em.21dtv.com/songs/60076843.mkv +徐杰亮-难道我的爱要孤单吗,http://em.21dtv.com/songs/60031186.mkv +何建清-难道我爱的人在火星,http://em.21dtv.com/songs/60031185.mkv +张姝-你的甜蜜,http://em.21dtv.com/songs/60115149.mkv +邱永传-难道伤心是你给我的温柔,http://em.21dtv.com/songs/60031181.mkv +郑源-难道是我上辈子欠了你,http://em.21dtv.com/songs/60031182.mkv +阿龙正刚-你的世界我曾经来过,http://em.21dtv.com/songs/60031608.mkv +田跃君-你的手机里有多少秘密,http://em.21dtv.com/songs/60062996.mkv +杨蔓+雨天-你的柔情我永远不懂,http://em.21dtv.com/songs/60098514.mkv +陈琳-你的柔情我永远不懂,http://em.21dtv.com/songs/60031604.mkv +陈琳-你的柔情我永远不懂(演唱会),http://em.21dtv.com/songs/60031603.mkv +朴有天-你的钱包里有多少爱,http://em.21dtv.com/songs/60118655.mkv +邓天晴-难道你真的忍心让我哭,http://em.21dtv.com/songs/60062315.mkv +羽泉-难道你真的没有感觉到(演唱会),http://em.21dtv.com/songs/60031180.mkv +陈雅森-难道你真的不曾爱过我,http://em.21dtv.com/songs/60076840.mkv +紫琴-难道你已经爱上了别人,http://em.21dtv.com/songs/60070976.mkv +培圣-难道你要的是逢场作戏,http://em.21dtv.com/songs/60031179.mkv +丁童-难道你要的是逢场作戏,http://em.21dtv.com/songs/60070975.mkv +红孩儿-难道你现在还不知道(无原唱),http://em.21dtv.com/songs/60095836.mkv +佚名-难道你现在还不知道,http://em.21dtv.com/songs/60031178.mkv +郭富城-难道你现在还不知道,http://em.21dtv.com/songs/60031177.mkv +许嘉文-难道你就这么忍心的放手,http://em.21dtv.com/songs/60076839.mkv +远方-难道你就不能懂我的心,http://em.21dtv.com/songs/60031176.mkv +刘程伊-难道你不要我的思念,http://em.21dtv.com/songs/60062666.mkv +曾春年-难道你不懂我的温柔,http://em.21dtv.com/songs/60076838.mkv +刘朋-难道你把爱情当作游戏,http://em.21dtv.com/songs/60076836.mkv +有钱的狗-你的妈是我的丈母娘,http://em.21dtv.com/songs/60031583.mkv +云开-难道没钱也是一种罪,http://em.21dtv.com/songs/60031173.mkv +安东阳-你的美丽是我的伤悲,http://em.21dtv.com/songs/60031584.mkv +阿权-你的良心大大的坏了,http://em.21dtv.com/songs/60072230.mkv +韩承羽-你的泪水浸冷了夏天,http://em.21dtv.com/songs/60100629.mkv +大哲-你的泪水滴穿了我的心,http://em.21dtv.com/songs/60031574.mkv +彭丽丽-你的离开带走我的爱,http://em.21dtv.com/songs/60066181.mkv +张月-你的灵魂背叛了你的心,http://em.21dtv.com/songs/60076893.mkv +高胜美-你的肩是我今生的天,http://em.21dtv.com/songs/60128617.mkv +高胜美-你的肩是我今生的天,http://em.21dtv.com/songs/60031569.mkv +雷龙-你的金钱不是我的爱情,http://em.21dtv.com/songs/60031570.mkv +洛鸣-你的寂寞不是我的错,http://em.21dtv.com/songs/60072229.mkv +凡间精灵-你的眷恋落进我的酒杯,http://em.21dtv.com/songs/60068531.mkv +黄鹤翔-你的谎言瞒过我的眼睛,http://em.21dtv.com/songs/60062489.mkv +张振宇-难道还嫌我伤的不够深,http://em.21dtv.com/songs/60031172.mkv +[Group] +groupName=十六万歌曲MV等 - 107 +蔡恒-你到底要我该怎么做,http://em.21dtv.com/songs/60085513.mkv +空空-你得到一切却放弃了我,http://em.21dtv.com/songs/60064620.mkv +蓝波-你到底有没有爱过我,http://em.21dtv.com/songs/60094286.mkv +沈丹-你到底是个什么样的女人,http://em.21dtv.com/songs/60031534.mkv +逍遥-你到底是个什么样的女人(舞曲版),http://em.21dtv.com/songs/60064619.mkv +丁永毅-你到底是不是真的爱我,http://em.21dtv.com/songs/60076883.mkv +谈欣-你到底是爱我不爱我,http://em.21dtv.com/songs/60031533.mkv +孙艳-你到底让我等到什么时候,http://em.21dtv.com/songs/60068529.mkv +镜熹-难道对你的爱还不够多,http://em.21dtv.com/songs/60031171.mkv +张子冉-你到底爱我还是爱她,http://em.21dtv.com/songs/60031532.mkv +郑源-难道爱一个人有错吗,http://em.21dtv.com/songs/60031170.mkv +筱凡-你的爱是一朵罂粟花,http://em.21dtv.com/songs/60096424.mkv +孙邦楠-难道爱上你是一个错,http://em.21dtv.com/songs/60031169.mkv +蓝宇-难道爱上你是我的错,http://em.21dtv.com/songs/60031168.mkv +李萧寒-难道爱情真的惹了祸,http://em.21dtv.com/songs/60062605.mkv +徐志强-难道爱情就这样犯了错,http://em.21dtv.com/songs/60031167.mkv +张义杰-难道爱你要等下辈子吗,http://em.21dtv.com/songs/60031166.mkv +刘维刚-难道爱你是我犯下的罪,http://em.21dtv.com/songs/60031165.mkv +赵红军-你的爱对我是个奢望,http://em.21dtv.com/songs/60115425.mkv +沈芳如-你的爱不够温暖我的夜,http://em.21dtv.com/songs/60031538.mkv +曲婉婷-你存在我深深的脑海里,http://em.21dtv.com/songs/60067274.mkv +丁咚-你从什么时候不再爱我,http://em.21dtv.com/songs/60031518.mkv +袁成杰+戚薇-男才女貌做你的一半,http://em.21dtv.com/songs/60030878.mkv +姜佑泽-你从来就没有爱过我(演唱会),http://em.21dtv.com/songs/60068527.mkv +昊龙-你从来不曾伤害过我,http://em.21dtv.com/songs/60080542.mkv +祥龙-你曾对我说永远爱我,http://em.21dtv.com/songs/60135613.mkv +赵真-你不在幸福离我好远,http://em.21dtv.com/songs/60131851.mkv +王馨-你不再是我最爱的人,http://em.21dtv.com/songs/60127219.mkv +曹轩宾-你不在北京,http://em.21dtv.com/songs/60094913.mkv +糖糖乐团-你抱着别的女人入睡,http://em.21dtv.com/songs/60031433.mkv +蔡琴-你不要那样看着我的眼睛,http://em.21dtv.com/songs/60031500.mkv +正午-你把我的幸福给了谁,http://em.21dtv.com/songs/60116984.mkv +左乐-你把我的幸福给了谁,http://em.21dtv.com/songs/60069647.mkv +关键-你把我当成你的什么,http://em.21dtv.com/songs/60031422.mkv +蔡恒-你把我的爱一次带走,http://em.21dtv.com/songs/60031423.mkv +金智娟-你不是一个好的情人,http://em.21dtv.com/songs/60031492.mkv +谢军-你不是我的月亮我不是你的云,http://em.21dtv.com/songs/60031490.mkv +齐萧-能不能给我一个理由,http://em.21dtv.com/songs/60067264.mkv +李凡埥-能不能不再那么爱你,http://em.21dtv.com/songs/60031340.mkv +左安安-你不该想着别人又想着我,http://em.21dtv.com/songs/60031463.mkv +周越洪-你不曾体会我的心碎,http://em.21dtv.com/songs/60106717.mkv +胡杰夕-你不爱我就别再找借口,http://em.21dtv.com/songs/60076873.mkv +张义杰-你不爱我的人却伤了我的心,http://em.21dtv.com/songs/60067270.mkv +陈羽扬-你爱我只是一个借口,http://em.21dtv.com/songs/60134420.mkv +GFRIEND-NAVILLERA,http://em.21dtv.com/songs/60124878.mkv +魏宗武-你爱他胜过从前爱我,http://em.21dtv.com/songs/60110713.mkv +佚名-你爱的是我还是你自己,http://em.21dtv.com/songs/60031383.mkv +东方骏-你爱的是我还是你自己,http://em.21dtv.com/songs/60031382.mkv +佚名-你爱的是我还是别人,http://em.21dtv.com/songs/60031381.mkv +杨小弈-你爱的是我的人还是我的钱,http://em.21dtv.com/songs/60031380.mkv +庄心妍-你爱的人到底有几个,http://em.21dtv.com/songs/60094887.mkv +武阳-你爱不爱我这样的男人,http://em.21dtv.com/songs/60031375.mkv +江蕙-梦中之歌+等爱的女,http://em.21dtv.com/songs/60095741.mkv +庾澄庆+杨美娜-命中注定,http://em.21dtv.com/songs/60129054.mkv +VIXX-命中注定,http://em.21dtv.com/songs/60125041.mkv +佚名-毛主席走遍祖国大地,http://em.21dtv.com/songs/60028689.mkv +佚名-毛主席永远和我在一起,http://em.21dtv.com/songs/60028686.mkv +阎维文-毛主席永远和我们在一起,http://em.21dtv.com/songs/60028685.mkv +大家唱合唱团-毛主席和鄂伦春人心连心,http://em.21dtv.com/songs/60028679.mkv +佚名-毛主席关怀咱山里人,http://em.21dtv.com/songs/60028678.mkv +张伟进-毛主席的战士最听党的话,http://em.21dtv.com/songs/60028677.mkv +克里木-毛主席的战士最听党的话,http://em.21dtv.com/songs/60028676.mkv +谭晶-毛主席的战士最听党的话(演唱会),http://em.21dtv.com/songs/60028675.mkv +佚名-毛主席的思想放光芒,http://em.21dtv.com/songs/60028674.mkv +佚名-毛主席的书我最爱读,http://em.21dtv.com/songs/60028673.mkv +火风-毛主席的书我最爱读(演唱会),http://em.21dtv.com/songs/60028672.mkv +佚名-毛主席的话儿记在我们心坎里,http://em.21dtv.com/songs/60028671.mkv +李福山-毛主席的话儿记在我们心坎里,http://em.21dtv.com/songs/60028670.mkv +拉毛王旭-毛主席的话儿记心上,http://em.21dtv.com/songs/60130363.mkv +苗苗-毛主席的话儿记心上,http://em.21dtv.com/songs/60096470.mkv +佚名-毛主席的话儿记心上,http://em.21dtv.com/songs/60028669.mkv +彭丽媛-毛主席的话儿记心上,http://em.21dtv.com/songs/60028668.mkv +佚名-毛主席的光辉把炉台照亮,http://em.21dtv.com/songs/60028667.mkv +佚名-毛主席的恩情唱不完,http://em.21dtv.com/songs/60028664.mkv +李双江-毛主席的恩情比山高比水长,http://em.21dtv.com/songs/60028663.mkv +方海珍-毛泽东思想东风传送,http://em.21dtv.com/songs/60028662.mkv +云飞-梦中的妈妈,http://em.21dtv.com/songs/60101887.mkv +踏歌-梦中的呼伦贝尔草原,http://em.21dtv.com/songs/60064556.mkv +泰迪罗宾-没有一首伤心的歌适合我(无原唱),http://em.21dtv.com/songs/60028906.mkv +李泽坚-没有一首情歌适合我,http://em.21dtv.com/songs/60101383.mkv +魏如萱-没有星期五的无人岛,http://em.21dtv.com/songs/60070913.mkv +林道华-没有想过牵别人的手,http://em.21dtv.com/songs/60076591.mkv +花漾年华-没有舍不得,http://em.21dtv.com/songs/60094655.mkv +元气乐团-没有人可以叫你宝贝,http://em.21dtv.com/songs/60028871.mkv +佚名-没有人比我对你更好,http://em.21dtv.com/songs/60028863.mkv +谈欣-没有钱我有权爱你吗,http://em.21dtv.com/songs/60028852.mkv +佚名-没有强大的祖国哪有幸福的家,http://em.21dtv.com/songs/60028853.mkv +刘一祯-没有强大的祖国哪有强大的家(演唱会),http://em.21dtv.com/songs/60076588.mkv +李潮-没有强大的祖国哪有幸福的家,http://em.21dtv.com/songs/60070911.mkv +李克勤-没有你赢了世界又如何,http://em.21dtv.com/songs/60028843.mkv +西南-没有你我怎能独自流浪,http://em.21dtv.com/songs/60028841.mkv +刚辉-没有你我也会很幸福,http://em.21dtv.com/songs/60087432.mkv +我什么都不是,http://em.21dtv.com/songs/60128542.mkv +宇桐非-没有你我哪都不想去,http://em.21dtv.com/songs/60028840.mkv +宇桐非+许飞-没有你我哪都不想去,http://em.21dtv.com/songs/60028839.mkv +刘继业-没有你我还能去爱谁,http://em.21dtv.com/songs/60085425.mkv +巴图-没有你了,http://em.21dtv.com/songs/60122696.mkv +张敬轩-没有你还是爱你+依然(演唱会),http://em.21dtv.com/songs/60028834.mkv +韩晶-没有你的日子我真的好孤单,http://em.21dtv.com/songs/60028822.mkv +王橹窗-没有你的日子我愿意寂寞,http://em.21dtv.com/songs/60028821.mkv +曾婷芳-没有你的日子我该怎么过,http://em.21dtv.com/songs/60028820.mkv +雨天-没有你的爱我该怎么办,http://em.21dtv.com/songs/60028812.mkv +林喜明-没有明天也会好好过,http://em.21dtv.com/songs/60083360.mkv +禇桐羽-My Mother,http://em.21dtv.com/songs/60135614.mkv +楚奕-没有了时间没有了你,http://em.21dtv.com/songs/60028795.mkv +郭田耒-没有开始却已经结束,http://em.21dtv.com/songs/60130802.mkv +佚名-没有共产党就没有新中国,http://em.21dtv.com/songs/60028786.mkv +张智霖-每一分钟都愿能见你(演唱会),http://em.21dtv.com/songs/60029080.mkv +佚名-每一分钟都愿能见到你,http://em.21dtv.com/songs/60029079.mkv +田启高-My Friend,http://em.21dtv.com/songs/60135583.mkv +中盟+李广洲-My friend,http://em.21dtv.com/songs/60113228.mkv +熊天平-每一分每一秒都给你,http://em.21dtv.com/songs/60029077.mkv +吴启华+蔡少芬-每一分每一秒都给你,http://em.21dtv.com/songs/60029076.mkv +吴宗宪-梦一场空一场痛一场,http://em.21dtv.com/songs/60029736.mkv +杨罡-没有爱过的人不算完美,http://em.21dtv.com/songs/60028769.mkv +迪克牛仔-没有爱的人都一个样,http://em.21dtv.com/songs/60068464.mkv +董潞-没有爱的女人,http://em.21dtv.com/songs/60102698.mkv +朱桦-梦醒时分,http://em.21dtv.com/songs/60125674.mkv +林玛黛-魔鞋女孩,http://em.21dtv.com/songs/60125791.mkv +尹相杰-毛委员和我们在一起,http://em.21dtv.com/songs/60028658.mkv +佚名-毛委员和我们在一起,http://em.21dtv.com/songs/60028657.mkv +雪村-梅我们是否应该要个孩子了(演唱会),http://em.21dtv.com/songs/60029004.mkv +森林乐团-明天一定会比今天更好一些,http://em.21dtv.com/songs/60076733.mkv +王韫-漫天雪花飘的都是我的爱,http://em.21dtv.com/songs/60028569.mkv +佚名-满天雪花飘的都是我的爱,http://em.21dtv.com/songs/60028540.mkv +谭维维+声音玩具-明天你依旧在我身旁(现场版),http://em.21dtv.com/songs/60098782.mkv +黄迎迎+李书伟-明天你是否依然爱我,http://em.21dtv.com/songs/60136031.mkv +屠洪纲-明天你是否依然爱我,http://em.21dtv.com/songs/60087730.mkv +佚名-明天你是否依然爱我,http://em.21dtv.com/songs/60030203.mkv +童安格-明天你是否依然爱我,http://em.21dtv.com/songs/60030202.mkv +李翊君-明天你是否依然爱我,http://em.21dtv.com/songs/60030201.mkv +蔡琴-明天你是否依然爱我,http://em.21dtv.com/songs/60030200.mkv +谭咏麟+杨立德-明天你是否依然爱我(演唱会),http://em.21dtv.com/songs/60030199.mkv +谭咏麟+关淑怡-明天你是否依然爱我(演唱会),http://em.21dtv.com/songs/60030198.mkv +梅艳芳+伦永亮-明天你是否依然爱我(演唱会),http://em.21dtv.com/songs/60030197.mkv +谭咏麟+梁文音-明天你是否依然爱我(HD演唱会),http://em.21dtv.com/songs/60030196.mkv +甄妮-明天会更好_We_Are_The_World,http://em.21dtv.com/songs/60088351.mkv +陈少华-满天的雨水都是我的泪,http://em.21dtv.com/songs/60028533.mkv +Mr.Miss-明天的烦恼交给明天,http://em.21dtv.com/songs/60119165.mkv +陈零九-没什么 只是有些话,http://em.21dtv.com/songs/60080093.mkv +FALL OUT BOY-my songs know what you did in the dark,http://em.21dtv.com/songs/60082275.mkv +吴雨霏-明日再打算,http://em.21dtv.com/songs/60109222.mkv +周艳泓-明日我想做你的新娘,http://em.21dtv.com/songs/60070948.mkv +林采缇+娄峻硕-Mr. Smile,http://em.21dtv.com/songs/60109463.mkv +潘玮柏-Mr Right,http://em.21dtv.com/songs/60103425.mkv +A TEAM-MR.A TEAM,http://em.21dtv.com/songs/60133165.mkv +HITA+玉璇玑-梦遣看花人,http://em.21dtv.com/songs/60126528.mkv +麦穗-母亲河我喊你一声妈妈,http://em.21dtv.com/songs/60030530.mkv +哈辉-母亲河我喊你一声妈妈,http://em.21dtv.com/songs/60030529.mkv +于文华-母亲的心事儿女最明白,http://em.21dtv.com/songs/60030526.mkv +AKB48-Mosh&Dive,http://em.21dtv.com/songs/60102996.mkv +青春老少年-money我需要你,http://em.21dtv.com/songs/60105512.mkv +宋旻浩+Zico+Paloalto-Moneyflow,http://em.21dtv.com/songs/60122671.mkv +Iggy Azalea-Mo Bounce,http://em.21dtv.com/songs/60134701.mkv +安仕伟-某年某月在某个地方,http://em.21dtv.com/songs/60108442.mkv +王铮亮-莫奈的信,http://em.21dtv.com/songs/60127215.mkv +黎明-没名字的歌无名字的你(演唱会),http://em.21dtv.com/songs/60028725.mkv +彭丽丽-明明相爱却不能长相守,http://em.21dtv.com/songs/60066157.mkv +苏小明-妈妈我们远航回来了,http://em.21dtv.com/songs/60028303.mkv +邵洪-妈妈 我等了二十年,http://em.21dtv.com/songs/60112295.mkv +陈永峰-妈妈是我一生的乡愁,http://em.21dtv.com/songs/60135929.mkv +路遥-妹妹是哥哥的心头肉,http://em.21dtv.com/songs/60029376.mkv +佚名-妈妈你还是把我带回家,http://em.21dtv.com/songs/60028272.mkv +景岗山-妹妹你大胆的往前走,http://em.21dtv.com/songs/60091274.mkv +戴荃+蘑菇兄弟-妹妹你大胆的往前走,http://em.21dtv.com/songs/60081536.mkv +张艺谋-妹妹你大胆地往前走,http://em.21dtv.com/songs/60029374.mkv +佚名-妹妹你大胆地往前走,http://em.21dtv.com/songs/60029373.mkv +杨洋-么么么么哒,http://em.21dtv.com/songs/60114619.mkv +水水-妈妈教我唱草原的歌,http://em.21dtv.com/songs/60070902.mkv +孙伟-妈妈的美丽倾国倾城,http://em.21dtv.com/songs/60061391.mkv +孙艳-美丽让人心碎的距离,http://em.21dtv.com/songs/60067225.mkv +陈翔-没了你我把哭当成了笑,http://em.21dtv.com/songs/60076577.mkv +林志炫+张亮-没离开过,http://em.21dtv.com/songs/60122899.mkv +张玮-没离开过,http://em.21dtv.com/songs/60114547.mkv +白致瑶+泽旺多吉-马铃儿响来玉鸟儿唱,http://em.21dtv.com/songs/60117092.mkv +佚名-马铃儿响来玉鸟儿唱,http://em.21dtv.com/songs/60028371.mkv +胡松华+杜丽华-马铃儿响来玉鸟儿唱,http://em.21dtv.com/songs/60028370.mkv +金磊鑫-美丽的中国我对你说,http://em.21dtv.com/songs/60081013.mkv +才旦卓玛-美丽的西藏可爱的家乡,http://em.21dtv.com/songs/60029234.mkv +木马-美丽的南方,http://em.21dtv.com/songs/60115985.mkv +亚东-美丽的康定溜溜的城,http://em.21dtv.com/songs/60029203.mkv +朗尼阿彬-美丽的康定溜溜的城,http://em.21dtv.com/songs/60029202.mkv +江涛-美丽的姑娘总在遥远的地方,http://em.21dtv.com/songs/60029186.mkv +赵红军-美丽的姑娘像一朵花,http://em.21dtv.com/songs/60105399.mkv +阿飞-美丽的姑娘你不要哭,http://em.21dtv.com/songs/60029184.mkv +于渺-美丽的姑娘纯纯的爱,http://em.21dtv.com/songs/60029183.mkv +刘玉东-梦里的草原我的家乡,http://em.21dtv.com/songs/60128836.mkv +王秀芬-满江红-和郭沫若同志,http://em.21dtv.com/songs/60028515.mkv +江念庭-满街都是寂寞的朋友吗(无原唱),http://em.21dtv.com/songs/60028519.mkv +佚名-满街都是寂寞的朋友,http://em.21dtv.com/songs/60028518.mkv +Justin Bieber-Mistletoe,http://em.21dtv.com/songs/60129949.mkv +Justin Bieber-Mistletoe,http://em.21dtv.com/songs/60121260.mkv +沈宝拉+Vasco-Mis Match,http://em.21dtv.com/songs/60111228.mkv +天堂鸟-MILKY WAY,http://em.21dtv.com/songs/60119393.mkv +Belly+The Weeknd-Might Not,http://em.21dtv.com/songs/60117433.mkv +王杰-梅花三弄之红尘故事,http://em.21dtv.com/songs/60028986.mkv +黄绮珊+崔兰花-卖花姑娘,http://em.21dtv.com/songs/60102980.mkv +佚名-穆桂英我家住在山东,http://em.21dtv.com/songs/60030649.mkv +马智宇-每个夜里都会思念你,http://em.21dtv.com/songs/60110696.mkv +佚名-穆桂英挂帅-我未开言心如焚(无原唱),http://em.21dtv.com/songs/60030648.mkv +罗逻圣-每个人都有一个世界,http://em.21dtv.com/songs/60122013.mkv +谢雷-玫瑰玫瑰我爱你 少年的我,http://em.21dtv.com/songs/60028944.mkv +草蜢-每个梦都有温暖的窝(无原唱),http://em.21dtv.com/songs/60029036.mkv +摇滚女王+色母巨人-每个寂寞的夜都想你,http://em.21dtv.com/songs/60135311.mkv +天孪兄弟-玫瑰花好看刺儿扎人,http://em.21dtv.com/songs/60085427.mkv +柳影虹-莫负青春+保龄女郎,http://em.21dtv.com/songs/60092889.mkv +罗家玉-梦断香销四十年之再进沈园,http://em.21dtv.com/songs/60029520.mkv +佚名-梦断香消四十年之重逢,http://em.21dtv.com/songs/60029519.mkv +任剑辉-梦断香消四十年之鸾凤分飞,http://em.21dtv.com/songs/60029518.mkv +童唱-每当我走过老师的窗前,http://em.21dtv.com/songs/60029028.mkv +童唱-每当我走过老师窗前,http://em.21dtv.com/songs/60029027.mkv +任柏儒-牡丹亭外,http://em.21dtv.com/songs/60128768.mkv +钟彦玲+陈咏仪+任冰儿-牡丹亭惊亭之游园惊梦,http://em.21dtv.com/songs/60030556.mkv +任剑辉+白雪仙-牡丹亭惊梦之倩女魂(无原唱),http://em.21dtv.com/songs/60030555.mkv +龙剑笙-牡丹亭惊梦游园惊梦,http://em.21dtv.com/songs/60076764.mkv +董柯娣-免得将来辱没祖宗留祸,http://em.21dtv.com/songs/60030001.mkv +梦成-梦成寻爱歌2期待爱,http://em.21dtv.com/songs/60076655.mkv +张镐哲-每次都想呼喊你的名字,http://em.21dtv.com/songs/60029012.mkv +永邦-每次都想呼喊你的名字,http://em.21dtv.com/songs/60029011.mkv +胡兵-每次都想呼喊你的名字,http://em.21dtv.com/songs/60029010.mkv +蒋山-面朝大海 春暖花开,http://em.21dtv.com/songs/60135690.mkv +李炜-漫长的告别,http://em.21dtv.com/songs/60116012.mkv +周慧敏-明白我这世界没有别人,http://em.21dtv.com/songs/60030099.mkv +黎瑞恩-明白我这世界没有别人,http://em.21dtv.com/songs/60030098.mkv +KARA-Mamma Mia,http://em.21dtv.com/songs/60103791.mkv +Gucci Mane+Nicki Minaj-Make Love,http://em.21dtv.com/songs/60134689.mkv +指原莉乃-majiでkoiする5秒前,http://em.21dtv.com/songs/60071637.mkv +滨崎步-Mad World,http://em.21dtv.com/songs/60124218.mkv +бурито Kolya Funk & Oleg Perets & Ivan Flash-Mама(DJ版),http://em.21dtv.com/songs/50000193.mkv +丁童-流着眼泪为你写情歌,http://em.21dtv.com/songs/60070885.mkv +佚名-留住一份回忆足够了,http://em.21dtv.com/songs/60027596.mkv +童波-来做我的女人愿意吗,http://em.21dtv.com/songs/60124328.mkv +衡越-立在天地间,http://em.21dtv.com/songs/60127375.mkv +何大为+孙自佑+罗熙杰+林采欣-来自你来自我来自他,http://em.21dtv.com/songs/60103076.mkv +胡海泉+范玮琪+萧敬腾+陈羽凡-来自你来自我来自他,http://em.21dtv.com/songs/60095062.mkv +罗大佑+周华健-来自你来自我来自他,http://em.21dtv.com/songs/60026019.mkv +张牧阅-留住你的人留不住你的心,http://em.21dtv.com/songs/60027591.mkv +Lunar-恋战Kagonma,http://em.21dtv.com/songs/60129964.mkv +罗家宝+倪惠英-荔枝换绛桃投荔之一,http://em.21dtv.com/songs/60026926.mkv +罗家宝+倪惠英-荔枝换绛桃投荔之二,http://em.21dtv.com/songs/60026925.mkv +萧亚轩-来自第五大道的明信片,http://em.21dtv.com/songs/60026018.mkv +李志洲-林子大了都有什么鸟,http://em.21dtv.com/songs/60094147.mkv +佚名-雷雨夜-光溜溜的月儿(无原唱),http://em.21dtv.com/songs/60026503.mkv +李珊-阆苑女仙图,http://em.21dtv.com/songs/60094545.mkv +谢克霖-柳毅传书之花好月圆,http://em.21dtv.com/songs/60027770.mkv +倪惠英+刘钜榕-柳毅传书之花好月圆,http://em.21dtv.com/songs/60027769.mkv +佚名-留下来听我把真心话说完,http://em.21dtv.com/songs/60027567.mkv +郑伊健-留下来听我把真心话说完(演唱会),http://em.21dtv.com/songs/60027566.mkv +孙青-离乡的人儿回家过年,http://em.21dtv.com/songs/60026792.mkv +张萱-离我远去的时间和你,http://em.21dtv.com/songs/60097961.mkv +UNIQ-Luv Again,http://em.21dtv.com/songs/60111662.mkv +Zara Larsson-Lush Life,http://em.21dtv.com/songs/60123573.mkv +EXO-Lucky One,http://em.21dtv.com/songs/60122375.mkv +宋大娘-老头子给队里来种瓜(戏曲),http://em.21dtv.com/songs/60089812.mkv +冼锋-老天爷让我爱上了你,http://em.21dtv.com/songs/60026431.mkv +汤灿-蓝天天起地云云起花,http://em.21dtv.com/songs/60026126.mkv +佚名-李天保吊孝-有钱把亲成无钱把脸翻(无原唱),http://em.21dtv.com/songs/60026867.mkv +张智霖-恋上外星人你是奇迹,http://em.21dtv.com/songs/60087820.mkv +邓福如-蓝色是最温暖的颜色,http://em.21dtv.com/songs/60115436.mkv +蓝宇-来生是否还能把你手牵,http://em.21dtv.com/songs/60025993.mkv +徐若瑄-蓝色圣诞节,http://em.21dtv.com/songs/60111106.mkv +石梅-恋上你的人丢了我的魂,http://em.21dtv.com/songs/60076420.mkv +望海高歌-恋上你的歌恋上了你,http://em.21dtv.com/songs/60107770.mkv +VC组合-流声魅影,http://em.21dtv.com/songs/60123558.mkv +卜学亮+大小姐-老师老师之虎虎生风,http://em.21dtv.com/songs/60026404.mkv +东京スカパラダイスオーケストラ+Mongol800-流れゆく世界の中で,http://em.21dtv.com/songs/60105543.mkv +佚名-刘三姐-世上哪有树缠藤,http://em.21dtv.com/songs/60027513.mkv +林峰-let s get wet+头发乱了+本草纲目(演唱会),http://em.21dtv.com/songs/60003347.mkv +龙飘飘-梨山痴情花,http://em.21dtv.com/songs/60103740.mkv +钟康琪+梁淑卿-梁山伯与祝英台之十八相送,http://em.21dtv.com/songs/60027195.mkv +何华栈+李月玲-梁山伯与祝英台之楼台会,http://em.21dtv.com/songs/60027194.mkv +白凌贤+关群英-梁山伯与祝英台之楼台会,http://em.21dtv.com/songs/60027193.mkv +关群英-梁山伯与祝英台之化蝶蹬仙,http://em.21dtv.com/songs/60027192.mkv +何华栈+李月玲-梁山伯与祝英台之化蝶,http://em.21dtv.com/songs/60027191.mkv +凌波+静婷-梁山伯与祝英台-十八相送之一,http://em.21dtv.com/songs/60027190.mkv +凌波+静婷-梁山伯与祝英台-十八相送之三,http://em.21dtv.com/songs/60027189.mkv +凌波+静婷-梁山伯与祝英台-十八相送之二,http://em.21dtv.com/songs/60027188.mkv +钟康琪-梁山伯与祝英台-十八相送,http://em.21dtv.com/songs/60027187.mkv +文千岁+李宝莹-梁山伯与祝英台-十八相送,http://em.21dtv.com/songs/60027186.mkv +佚名-梁山伯与祝英台-楼台会,http://em.21dtv.com/songs/60027185.mkv +文千岁+李宝莹-梁山伯与祝英台-楼台会,http://em.21dtv.com/songs/60027184.mkv +佚名-梁山伯与祝英台-化蝶登仙,http://em.21dtv.com/songs/60027183.mkv +文千岁+李宝莹-梁山伯与祝英台-化蝶登仙,http://em.21dtv.com/songs/60027182.mkv +盖鸣晖-梁山伯与祝英台-化蝶(演唱会),http://em.21dtv.com/songs/60027181.mkv +文千岁+李宝莹-梁山伯与祝英台-草亭结拜,http://em.21dtv.com/songs/60027180.mkv +高明瀚-恋人爱人离开我的人,http://em.21dtv.com/songs/60027126.mkv +陈家凯-恋人爱人离开我的人,http://em.21dtv.com/songs/60067202.mkv +梁向明-老区啊 我们热爱您,http://em.21dtv.com/songs/60093638.mkv +尚桐-老婆我要为了你赚钱,http://em.21dtv.com/songs/60026382.mkv +江映蓉-Love Wins,http://em.21dtv.com/songs/60129326.mkv +KISUM+HWA SA-LOVE TALK,http://em.21dtv.com/songs/60115607.mkv +晓田-LOVE SONG,http://em.21dtv.com/songs/60125641.mkv +方大同-Love Song,http://em.21dtv.com/songs/60116852.mkv +陆星材+朴慧秀-Love Song,http://em.21dtv.com/songs/60114193.mkv +毕书尽-Love More,http://em.21dtv.com/songs/60113764.mkv +金润吉-Love Love,http://em.21dtv.com/songs/60114146.mkv +HIGH4-Love Line,http://em.21dtv.com/songs/60133206.mkv +COSMOS-Love Line,http://em.21dtv.com/songs/60133187.mkv +BRIGHT-love~ある爱のカタチ~,http://em.21dtv.com/songs/60060868.mkv +Ben-Looby Loo,http://em.21dtv.com/songs/60121217.mkv +胡杰夕-离你心脏最近的距离,http://em.21dtv.com/songs/60062470.mkv +SNH48-浪漫圣诞夜2014,http://em.21dtv.com/songs/60106557.mkv +徐方-冷漠的女人寂寞的心,http://em.21dtv.com/songs/60105897.mkv +徐苑-碌碌有为,http://em.21dtv.com/songs/60119576.mkv +李雪莱-李老师催我卖破烂儿,http://em.21dtv.com/songs/60127063.mkv +杨千嬅-狼来了+爱人+少女的祈题+再见二丁目(演唱会),http://em.21dtv.com/songs/60026200.mkv +张柏芝-乱了感觉,http://em.21dtv.com/songs/60107718.mkv +阿香-溜溜地乐山溜溜地美,http://em.21dtv.com/songs/60104533.mkv +久久-离开网络我们还能爱多久,http://em.21dtv.com/songs/60068435.mkv +海鸣威-离开为了更好的回来,http://em.21dtv.com/songs/60132685.mkv +刘金泉-李逵探母-一路行来暗思量,http://em.21dtv.com/songs/60026862.mkv +陈浩-离开你只因太过爱你,http://em.21dtv.com/songs/60026752.mkv +梁雁翎-离开那个不爱你的人,http://em.21dtv.com/songs/60026737.mkv +冷漠-离开你不是因为我的冷漠,http://em.21dtv.com/songs/60062579.mkv +徐崎峰-离开你不是我想要的结果,http://em.21dtv.com/songs/60026743.mkv +陈瑞-离开你并非是我愿意,http://em.21dtv.com/songs/60026740.mkv +刘涛-离开了我过的好不好,http://em.21dtv.com/songs/60097960.mkv +凌志辉-离开后才想起她的温柔,http://em.21dtv.com/songs/60026732.mkv +梅度-离开不需要任何理由,http://em.21dtv.com/songs/60113746.mkv +佚名-泪酒相思地-你看我凄凉不凄凉(无原唱),http://em.21dtv.com/songs/60026540.mkv +佚名-泪酒相思地-连连恳求亲生父(无原唱),http://em.21dtv.com/songs/60026539.mkv +阎桂祥-龙江颂-一轮红日照胸间,http://em.21dtv.com/songs/60027828.mkv +佚名-拉荆芭-编荆芭如同把娘杀(无原唱),http://em.21dtv.com/songs/60025901.mkv +Little Mix-Little Me(演唱会),http://em.21dtv.com/songs/60103028.mkv +Kelly Rowland-Like This,http://em.21dtv.com/songs/60124923.mkv +TERRASPEX-Lightning,http://em.21dtv.com/songs/60115641.mkv +NOAH AND THE WHALE-l i f e g o e s o n,http://em.21dtv.com/songs/60073471.mkv +OH MY GIRL-LIAR LIAR,http://em.21dtv.com/songs/60134779.mkv +Christina Grimmie-Liar liar,http://em.21dtv.com/songs/60103757.mkv +Lorde-Liability,http://em.21dtv.com/songs/60133229.mkv +佚名-李豁子离婚-李豁子清晨起来去拾粪(无原唱),http://em.21dtv.com/songs/60026858.mkv +陈明-梨花又开放,http://em.21dtv.com/songs/60076377.mkv +关贵敏-浪花里飞出欢乐的歌,http://em.21dtv.com/songs/60026217.mkv +刘雨潼-留给昨天,http://em.21dtv.com/songs/60109196.mkv +曾国珲-留给这世上我最爱的人,http://em.21dtv.com/songs/60076481.mkv +容祖儿-留给这世上我最爱的人(演唱会),http://em.21dtv.com/songs/60027536.mkv +罗文-留给这世上我最爱的人(演唱会),http://em.21dtv.com/songs/60027535.mkv +笑天-留给我的只剩下回忆,http://em.21dtv.com/songs/60076480.mkv +佚名-拉钩上吊一百年不要,http://em.21dtv.com/songs/60025900.mkv +解晓东-拉勾上吊一百年不要,http://em.21dtv.com/songs/60025899.mkv +梁雁翎-两个人一个梦一颗心,http://em.21dtv.com/songs/60027261.mkv +崔子格-老公让我帮你捶捶背,http://em.21dtv.com/songs/60066107.mkv +谢沛恩-两个人都有孤独的勇气,http://em.21dtv.com/songs/60072151.mkv +晨熙-两个人的痛一个人背,http://em.21dtv.com/songs/60121731.mkv +沈世爱-两个人的世界一个人睡,http://em.21dtv.com/songs/60027250.mkv +乔乐乐-两个人的生活一个人过,http://em.21dtv.com/songs/60027246.mkv +张海-两个人动情一个人伤,http://em.21dtv.com/songs/60076429.mkv +郑添龙-梨嘎乐 Licar,http://em.21dtv.com/songs/60126279.mkv +达坡玛吉-泸沽湖我向往的地方,http://em.21dtv.com/songs/60027898.mkv +邓麟-两个故事 两个结局,http://em.21dtv.com/songs/60130788.mkv +孙露-路过的幸福,http://em.21dtv.com/songs/60121572.mkv +潘长江-两个对我恩重如山的女人,http://em.21dtv.com/songs/60027220.mkv +周兴哲-Let It Go,http://em.21dtv.com/songs/60126709.mkv +James Bay-Let It Go,http://em.21dtv.com/songs/60114338.mkv +葛仲珊-Let It Go,http://em.21dtv.com/songs/60114017.mkv +demi lovato-let it go,http://em.21dtv.com/songs/60098016.mkv +大张伟-Le‘s Love(HD),http://em.21dtv.com/songs/10012753.mkv +张伟文+吕珊-绿岛小夜曲+友谊之光,http://em.21dtv.com/songs/60028157.mkv +谢采妘-绿岛小夜曲+月光小夜曲,http://em.21dtv.com/songs/60028158.mkv +刘玮-绿都河源 我可爱的家园,http://em.21dtv.com/songs/60028168.mkv +孟静-泪蛋蛋抛在沙蒿蒿林,http://em.21dtv.com/songs/60123836.mkv +李政飞-泪蛋蛋抛在沙蒿蒿林,http://em.21dtv.com/songs/60111979.mkv +小沈阳-老爸老妈,http://em.21dtv.com/songs/60125426.mkv +洪立-老爸老妈你们辛苦了,http://em.21dtv.com/songs/60118745.mkv +最后一只恐龙-离不开你,http://em.21dtv.com/songs/60129201.mkv +黄绮珊+金仁馨-离不开你,http://em.21dtv.com/songs/60123405.mkv +佚名-刘备哭灵-当初咱三人三姓同结拜(无原唱),http://em.21dtv.com/songs/60027505.mkv +朱咪咪-鲁冰花+东方之珠+明日话今天+梦想号黄包车(演唱会),http://em.21dtv.com/songs/60027901.mkv +韩磊-两百个春秋五千年的戏,http://em.21dtv.com/songs/60027210.mkv +尚雯婕-鹿 be free,http://em.21dtv.com/songs/60131369.mkv +何海涛-离别的痛真的好伤悲,http://em.21dtv.com/songs/60090600.mkv +徐国人-老毕的饭局,http://em.21dtv.com/songs/60111911.mkv +关闳仁-连贝多芬都想告诉你,http://em.21dtv.com/songs/60026932.mkv +Ne Yo-Lazy Love,http://em.21dtv.com/songs/60124958.mkv +Moderat-Last Time,http://em.21dtv.com/songs/60124953.mkv +Lol-Ladi Dadi,http://em.21dtv.com/songs/60134744.mkv +三森すずこ-恋はイリュージョン,http://em.21dtv.com/songs/60134844.mkv +李猛-靠在我的肩膀你却想着他,http://em.21dtv.com/songs/60067162.mkv +匡龙舟-看着你的眼泪我伤心,http://em.21dtv.com/songs/60128848.mkv +望海高歌-看着你的背影我哭了,http://em.21dtv.com/songs/60125661.mkv +佚名-寇准背靴-杨元帅死不死还不一定(无原唱),http://em.21dtv.com/songs/60025537.mkv +佚名-寇准背靴-劝郡马展愁颜莫把眉皱(无原唱),http://em.21dtv.com/songs/60025536.mkv +林峰+容祖儿-可惜我是水瓶座+残酷游戏+谁愿放手+痛爱,http://em.21dtv.com/songs/60025344.mkv +蔡献华-开心农场我种的是寂寞,http://em.21dtv.com/songs/60025034.mkv +童安格-看未来有什么不一样,http://em.21dtv.com/songs/60025130.mkv +佚名-看天下劳苦人民都解放,http://em.21dtv.com/songs/60025123.mkv +徐良+雨洁-考试什么的都去死吧,http://em.21dtv.com/songs/60064431.mkv +崔健-快让我在雪地上撒点儿野,http://em.21dtv.com/songs/60025817.mkv +Oliver Heldens-Koala,http://em.21dtv.com/songs/60124965.mkv +徐承邦+彭莉-看袂清的爱情上介美,http://em.21dtv.com/songs/60135287.mkv +吴莫愁-快乐组曲,http://em.21dtv.com/songs/60122591.mkv +越剧-可怜我苦苦想儿十八春,http://em.21dtv.com/songs/60025327.mkv +刘莉莉-哭灵-听谯楼打罢了初更时分,http://em.21dtv.com/songs/60025565.mkv +元朝-快乐乒乓-我们的歌,http://em.21dtv.com/songs/60097954.mkv +孟杨+金波-快乐的人唱快乐的歌,http://em.21dtv.com/songs/60117668.mkv +小虎队-快乐的感觉永远一样,http://em.21dtv.com/songs/60025715.mkv +靓舞精灵-快乐的感觉永远一样,http://em.21dtv.com/songs/60025714.mkv +金志文-卡拉不OK,http://em.21dtv.com/songs/60106339.mkv +佚名-看见你牵着别人的手,http://em.21dtv.com/songs/60025086.mkv +戴娆-靠近你轻轻地说爱你,http://em.21dtv.com/songs/60025199.mkv +于文华-看见你们还是格外亲,http://em.21dtv.com/songs/60025084.mkv +佚名-拷红-尊姑娘稳坐在绣楼以上,http://em.21dtv.com/songs/60025185.mkv +佚名-拷红-耳旁边忽听得金鸡三唱,http://em.21dtv.com/songs/60025184.mkv +胡杏儿-K歌之王,http://em.21dtv.com/songs/60126082.mkv +蔡献华+吕巍-刻骨铭心忘不掉的人,http://em.21dtv.com/songs/60025385.mkv +王洛宾-可尔克孜大娘坐火车,http://em.21dtv.com/songs/60091716.mkv +小星星合唱团-柯尔克孜大娘坐火车,http://em.21dtv.com/songs/60090991.mkv +卡拉OK-柯尔克孜大娘坐火车,http://em.21dtv.com/songs/60090774.mkv +佚名-看大王在帐中和衣睡稳,http://em.21dtv.com/songs/60025063.mkv +石梅-看到你流泪我会心碎,http://em.21dtv.com/songs/60127239.mkv +石梅-看到你流泪我会心碎,http://em.21dtv.com/songs/60097957.mkv +陈慧娴-柯德莉夏萍穿过的鞋,http://em.21dtv.com/songs/60093443.mkv +张信哲-空出来的时间刚好拿来寂寞,http://em.21dtv.com/songs/60070850.mkv +佚名-空城计-习天书学兵法犹如反掌,http://em.21dtv.com/songs/60025440.mkv +郑知文-可不可以做我女朋友,http://em.21dtv.com/songs/60124566.mkv +承伟-可不可以再爱我一次,http://em.21dtv.com/songs/60117769.mkv +承伟-可不可以再爱我一次,http://em.21dtv.com/songs/60081858.mkv +孙中亮-可不可以天天看到你,http://em.21dtv.com/songs/60110974.mkv +马建军-可不可以说我不再爱你,http://em.21dtv.com/songs/60076254.mkv +刘超华-可不可以说我不再爱你,http://em.21dtv.com/songs/60076253.mkv +水果哥-可不可以回到你身边,http://em.21dtv.com/songs/60107013.mkv +诶姆-可不可以带我去吃雪,http://em.21dtv.com/songs/60097946.mkv +孙楠+珂瑶-哭不出来,http://em.21dtv.com/songs/60125385.mkv +雷佳-可爱的中国,http://em.21dtv.com/songs/60064435.mkv +胡松华-可爱的家乡美丽的草原,http://em.21dtv.com/songs/60025236.mkv +蔡琴-就这样咏叹一段美丽的爱情,http://em.21dtv.com/songs/60024684.mkv +赵保秀-叫张义我的儿听娘教训,http://em.21dtv.com/songs/60023527.mkv +冷漠-就这样成为你的回忆,http://em.21dtv.com/songs/60087365.mkv +佚名-敬祝毛主席万寿无疆,http://em.21dtv.com/songs/60024254.mkv +大家唱合唱团-减字木兰花-广昌路上,http://em.21dtv.com/songs/60023230.mkv +动力火车-酒醉的探戈2001,http://em.21dtv.com/songs/60024484.mkv +夹子电动大乐队-今早的河畔特别美丽,http://em.21dtv.com/songs/60024034.mkv +潘高峰-节奏 爱,http://em.21dtv.com/songs/60125885.mkv +李东桥-激友-无银钱当时把英雄困倒,http://em.21dtv.com/songs/60022545.mkv +云菲菲-今夜我对你想入非非,http://em.21dtv.com/songs/60067134.mkv +叶瑷菱-今夜谁能够让爱不走,http://em.21dtv.com/songs/60023993.mkv +蛇舞优优-叫一声哥哥你快回来,http://em.21dtv.com/songs/60130736.mkv +佚名-叫一声哥哥你快回来,http://em.21dtv.com/songs/60023525.mkv +田震-今夜你是不是陪我回家,http://em.21dtv.com/songs/60023987.mkv +秦雪玲-金玉奴-非是我性倔强不肯从命,http://em.21dtv.com/songs/60024100.mkv +童唱-九月九日忆山东兄弟,http://em.21dtv.com/songs/60024361.mkv +DJ安之-九月激情全中文超爆,http://em.21dtv.com/songs/50000136.mkv +群星-今夜窗外飘起了雪花,http://em.21dtv.com/songs/60103521.mkv +佚名-卷席筒-前日里咱的娘把药煎,http://em.21dtv.com/songs/60024756.mkv +卓依婷-家乡美_草原小姐妹,http://em.21dtv.com/songs/60087458.mkv +马名骏-将相和-廉颇闻言暗思忖,http://em.21dtv.com/songs/60023395.mkv +刘若英-继续 给十五岁的自己,http://em.21dtv.com/songs/60022762.mkv +林胜天-叫我怎么能够无所谓,http://em.21dtv.com/songs/60086628.mkv +仓木麻衣-今晚我觉得离你很近,http://em.21dtv.com/songs/60076126.mkv +A-LIN-今晚你想念的人是不是我,http://em.21dtv.com/songs/60023903.mkv +林一峰-今天应该更高兴+不要回放(演唱会),http://em.21dtv.com/songs/60023889.mkv +什乐-今天我们真的要结婚了,http://em.21dtv.com/songs/60023881.mkv +马新民-今天我们勘探去远方,http://em.21dtv.com/songs/60023879.mkv +杨柳-今天我成为你的新娘,http://em.21dtv.com/songs/60023875.mkv +景仪-今天是你的生日中国,http://em.21dtv.com/songs/60091272.mkv +韦唯-今天是你的生日中国,http://em.21dtv.com/songs/60088943.mkv +李娜-今天是你的生日中国,http://em.21dtv.com/songs/60087997.mkv +董文华-今天是你的生日中国,http://em.21dtv.com/songs/60023873.mkv +钟立风-今天是你的生日妈妈,http://em.21dtv.com/songs/60023872.mkv +潘小芬-今天是你的生日我的中国(演唱会),http://em.21dtv.com/songs/60069522.mkv +钟立风-今天你是的生日妈妈,http://em.21dtv.com/songs/60023855.mkv +郭峰-今天你就要做我新娘,http://em.21dtv.com/songs/60122180.mkv +本多RURU-今天的祝福明天的孤独,http://em.21dtv.com/songs/60023845.mkv +王力宏-就是现在我看你有戏,http://em.21dtv.com/songs/60110383.mkv +黎明-今生相爱来生再相聚,http://em.21dtv.com/songs/60023809.mkv +佚名-今生我注定和你相遇,http://em.21dtv.com/songs/60023802.mkv +郑伊健-今生我注定和你相遇(无原唱),http://em.21dtv.com/songs/60023801.mkv +简弘亦-就算我唱遍所有情歌,http://em.21dtv.com/songs/60134058.mkv +海春飞扬-今生疼爱把你来守候,http://em.21dtv.com/songs/60098591.mkv +凯歌-就算是辜负也要祝福,http://em.21dtv.com/songs/60097964.mkv +陈绮贞-就算全世界与我为敌(演唱会),http://em.21dtv.com/songs/60024648.mkv +木吉他-即使全世界都下着雨,http://em.21dtv.com/songs/60022610.mkv +焦庆军-就算你不能成为我的女人,http://em.21dtv.com/songs/60024647.mkv +丁祎文-今生今世只爱你一人,http://em.21dtv.com/songs/60064402.mkv +音乐走廊-今生今世相爱这一回,http://em.21dtv.com/songs/60093705.mkv +唐志星+刘兰-今生今世我离不开你,http://em.21dtv.com/songs/60098217.mkv +袁玉峰-今生今世不再错过你,http://em.21dtv.com/songs/60114042.mkv +方季惟-将世界的心拥在一起(无原唱),http://em.21dtv.com/songs/60023392.mkv +冷漠+司徒兰芳-即使孤独也要走下去,http://em.21dtv.com/songs/60120347.mkv +金木-就算分开你也是我最爱的人,http://em.21dtv.com/songs/60024644.mkv +越剧-见书房寂寂无声好清净,http://em.21dtv.com/songs/60023292.mkv +韩平-今生放不下对你的爱,http://em.21dtv.com/songs/60062427.mkv +成铭-今生的约定来世的缘,http://em.21dtv.com/songs/60085289.mkv +张学友-结束不是我要的结果,http://em.21dtv.com/songs/60023629.mkv +七郎-讲100声ㄟ我爱你,http://em.21dtv.com/songs/60023406.mkv +张牧阅-既然有人比我更爱你,http://em.21dtv.com/songs/60022759.mkv +马佳伟-既然有人比我更爱你,http://em.21dtv.com/songs/60022758.mkv +张冬玲+冷漠-既然有了她在你身边,http://em.21dtv.com/songs/60061283.mkv +余俊善-就让我牵一次你的手,http://em.21dtv.com/songs/60064419.mkv +易欣-假如我们还能再相见,http://em.21dtv.com/songs/60083125.mkv +王国良-就让我爱你一生一世守护你,http://em.21dtv.com/songs/60063016.mkv +葛本军-就让思念在夜风中沉睡,http://em.21dtv.com/songs/60069534.mkv +佚名-今日是汾阳王寿诞期,http://em.21dtv.com/songs/60023765.mkv +黎明-假如今夜你在我的家,http://em.21dtv.com/songs/60023103.mkv +佚名-嫁人就嫁普京这样的人,http://em.21dtv.com/songs/60023173.mkv +鲁为-假如爱上你是我的错,http://em.21dtv.com/songs/60076014.mkv +单紫宁-假如爱上别人早点告诉我,http://em.21dtv.com/songs/60023101.mkv +郭富城-敬启者之爱是全奉献,http://em.21dtv.com/songs/60024253.mkv +童唱-举起你的右手摆一摆,http://em.21dtv.com/songs/60024719.mkv +洋旭-九千九百九十九年前,http://em.21dtv.com/songs/60024338.mkv +石尚-金钱的社会现实的爱,http://em.21dtv.com/songs/60121974.mkv +ANU-Joke 闹着玩儿,http://em.21dtv.com/songs/60131030.mkv +雷雨心-记念,http://em.21dtv.com/songs/60108141.mkv +莫小娘-纪念我们死去的爱情,http://em.21dtv.com/songs/60085257.mkv +罗心洁-今年过年你要把我娶回家,http://em.21dtv.com/songs/60072079.mkv +佚名-将你的灵魂接在我的线路上,http://em.21dtv.com/songs/60023386.mkv +翁立友-今年的冬天过得很慢,http://em.21dtv.com/songs/60101472.mkv +张寒-寂寞只在梦里避开我,http://em.21dtv.com/songs/60022952.mkv +张龙珍-寂寞夜里一个人哭泣,http://em.21dtv.com/songs/60117745.mkv +默契-寂寞是我唯一的归宿,http://em.21dtv.com/songs/60099635.mkv +张镐哲-寂寞时你最先想起谁,http://em.21dtv.com/songs/60022923.mkv +崔大龙-寂寞时候我就唱情歌,http://em.21dtv.com/songs/60115887.mkv +李健-寂寞如歌,http://em.21dtv.com/songs/60110262.mkv +波拉-寂寞的夜里你在等着谁,http://em.21dtv.com/songs/60022871.mkv +高隆-寂寞的时候真想有个伴,http://em.21dtv.com/songs/60022867.mkv +夹谷一-寂寞的人唱着寂寞的歌,http://em.21dtv.com/songs/60066053.mkv +龙梅子-寂寞的人唱伤心的歌(HD),http://em.21dtv.com/songs/10012843.mkv +赵真-寂寞的人不该被打扰,http://em.21dtv.com/songs/60131852.mkv +赵真-寂寞的人不该被打扰,http://em.21dtv.com/songs/60114100.mkv +赵雷-吉姆餐厅,http://em.21dtv.com/songs/60111420.mkv +王春娥-见灵堂好一似深宵梦境,http://em.21dtv.com/songs/60023287.mkv +潘安邦-距离让我们的心更靠近,http://em.21dtv.com/songs/60024748.mkv +李欣-将酒宴摆至聚义厅上,http://em.21dtv.com/songs/60023379.mkv +周艳泓-姐姐 为什么你不说话,http://em.21dtv.com/songs/60099161.mkv +刘琼-姐姐明天就要嫁人了,http://em.21dtv.com/songs/60023642.mkv +江其虎-监酒令-微风起露沾衣铜壶漏响,http://em.21dtv.com/songs/60023218.mkv +袁世海-九江口-怎不令人心似火燃,http://em.21dtv.com/songs/60024313.mkv +来国庆-姐姐今夜我在德令哈,http://em.21dtv.com/songs/60129261.mkv +吕瑞英-九斤姑娘之我格祖父会起早,http://em.21dtv.com/songs/60067136.mkv +孟庭苇-静静的生命慢慢的河,http://em.21dtv.com/songs/60024265.mkv +纪晓斌-计划中有没有爹和娘,http://em.21dtv.com/songs/60100374.mkv +周子寒-交还给你被我宠坏的心,http://em.21dtv.com/songs/60023449.mkv +巴图-军港之夜,http://em.21dtv.com/songs/60123885.mkv +农夫+方皓玟+廿四味-激光中24herbs remix +举高双手+respect就ok(演唱会),http://em.21dtv.com/songs/60022537.mkv +陈天红-嫁个像我这样的男人,http://em.21dtv.com/songs/60083128.mkv +刘其贤-嫁给他你过的快乐吗,http://em.21dtv.com/songs/60064383.mkv +于魁智-击鼓骂曹-平生志气运未通,http://em.21dtv.com/songs/60022500.mkv +于魁智-击鼓骂曹-丞相委用恩非小,http://em.21dtv.com/songs/60022499.mkv +春田花花幼稚园足球队-脚瓜大战-中国人好脚法,http://em.21dtv.com/songs/60023492.mkv +佚名-解放军同志请你停一停,http://em.21dtv.com/songs/60023663.mkv +郑秀文-加尔各答的天使德兰修女(演唱会),http://em.21dtv.com/songs/60022958.mkv +白安-就当作明天还很遥远,http://em.21dtv.com/songs/60104337.mkv +佚名-见大王在帐中和衣睡稳,http://em.21dtv.com/songs/60023281.mkv +易欣-记得我们曾经有过爱情,http://em.21dtv.com/songs/60075968.mkv +容祖儿+陈伟霆-加大力度,http://em.21dtv.com/songs/60120470.mkv +许强-简单的问候也是一种爱,http://em.21dtv.com/songs/60023257.mkv +卓依婷-久别的人,http://em.21dtv.com/songs/60117592.mkv +南征北战-骄傲的少年,http://em.21dtv.com/songs/60125242.mkv +谢安琪-its so hard to say goodbye to yesterday(演唱会),http://em.21dtv.com/songs/60073448.mkv +JOSS+STONE-its a mans mans mans world,http://em.21dtv.com/songs/60069097.mkv +Lamp In Terren-Innocence,http://em.21dtv.com/songs/60134734.mkv +乔海洋-I'm Sorry,http://em.21dtv.com/songs/60123601.mkv +林世俊-I'm Sorry,http://em.21dtv.com/songs/60117839.mkv +Fall Out Boy-Immortals,http://em.21dtv.com/songs/60109089.mkv +Missy Elliott+Lamb-Im Better,http://em.21dtv.com/songs/60132110.mkv +Meghan Trainor-Im a Lady,http://em.21dtv.com/songs/60133248.mkv +Iris-I Love Me,http://em.21dtv.com/songs/60134702.mkv +Melody Day-I'll Wait,http://em.21dtv.com/songs/60104706.mkv +Ice Man-I Got You,http://em.21dtv.com/songs/60118260.mkv +冯翰铭+陈奕迅-If I Knew,http://em.21dtv.com/songs/60103095.mkv +STIG ANDERSSON-i do i do i do i do i do,http://em.21dtv.com/songs/60002474.mkv +SAN E+卫诗-I CAN SEE,http://em.21dtv.com/songs/60123531.mkv +王浩-I Can Say,http://em.21dtv.com/songs/60105248.mkv +张信哲-I Believe,http://em.21dtv.com/songs/60126858.mkv +张信哲-I Believe,http://em.21dtv.com/songs/60120496.mkv +宋茜-I Believe,http://em.21dtv.com/songs/60120461.mkv +阿兰+周觅-I Believe,http://em.21dtv.com/songs/60117310.mkv +泳儿-I Believe,http://em.21dtv.com/songs/60113802.mkv +郑淳元+李世珍-I Believe,http://em.21dtv.com/songs/60110583.mkv +佳仁-I Believe,http://em.21dtv.com/songs/60105588.mkv +古巨基+李泉-IBELIEVE,http://em.21dtv.com/songs/60098173.mkv +MINK-innocent blue~地果て海尽きるまで~,http://em.21dtv.com/songs/60002944.mkv +BRITNEY SPEARS-i am not a girl not yet a woma,http://em.21dtv.com/songs/60002407.mkv +周渔-孩子快抓紧妈妈的手,http://em.21dtv.com/songs/60090846.mkv +蒋舟-孩子快抓紧妈妈的手,http://em.21dtv.com/songs/60019677.mkv +越剧-好紫鹃句句话儿含义长,http://em.21dtv.com/songs/60020274.mkv +张惠妹+李琦-后知后觉(中国好声音第二季),http://em.21dtv.com/songs/60105034.mkv +苏伟-胡杨,http://em.21dtv.com/songs/60115347.mkv +CT GIRLS-欢迎新年到+新年来到真热闹,http://em.21dtv.com/songs/60021799.mkv +钟镇涛-红叶斜落我心寂寞时,http://em.21dtv.com/songs/60021029.mkv +钟镇涛-红叶斜落我心寂寞时(演唱会),http://em.21dtv.com/songs/60021028.mkv +安琥-会有天使替我去爱你,http://em.21dtv.com/songs/60087683.mkv +陈奕迅-还有什么可以送给你,http://em.21dtv.com/songs/60093410.mkv +谢霆锋-回忆是后镜里的公路,http://em.21dtv.com/songs/60022253.mkv +白百何-花样年华,http://em.21dtv.com/songs/60124311.mkv +侯红琴+王萍-火焰驹-小鸟哀鸣声不断,http://em.21dtv.com/songs/60022476.mkv +侯红琴+王萍-火焰驹-清风徐来增凉爽,http://em.21dtv.com/songs/60022475.mkv +孙岳-洪羊洞-自那日朝罢归身染重病,http://em.21dtv.com/songs/60021062.mkv +小向向-还有多少人像我一样,http://em.21dtv.com/songs/60101328.mkv +金泽-还要多久才能见到你,http://em.21dtv.com/songs/60019649.mkv +星宇-好想再牵一次你的手,http://em.21dtv.com/songs/60063189.mkv +郑美娜-好想走进梦想的草原,http://em.21dtv.com/songs/60112310.mkv +萧亚轩-好象有什么东西渐渐地消失了,http://em.21dtv.com/songs/60020219.mkv +浩瀚-很想问你是否爱过我,http://em.21dtv.com/songs/60091618.mkv +陈玉建-或许是我不懂得爱你,http://em.21dtv.com/songs/60075950.mkv +谭鹏飞+网络歌手-好想你再爱我多一天,http://em.21dtv.com/songs/60092122.mkv +许楚驰-好想你回到相遇地方,http://em.21dtv.com/songs/60119969.mkv +庹宗华-好像你才是我的情人,http://em.21dtv.com/songs/60087779.mkv +毛宁-好想开开心心过一天,http://em.21dtv.com/songs/60020200.mkv +古巨基+苏思蓉+陈嘉杰+王小虎-好想好想,http://em.21dtv.com/songs/60122556.mkv +张华-或许丢了你我才没有伤悲,http://em.21dtv.com/songs/60022489.mkv +品冠-哄我入睡,http://em.21dtv.com/songs/60116670.mkv +尹光+李淑勤-火网梵宫十四载-庵堂诉情(演唱会),http://em.21dtv.com/songs/60022466.mkv +芳艳芬-火网梵宫十四年--邂逅,http://em.21dtv.com/songs/60022465.mkv +邓志驹+曾慧-火网梵宫十四年--话别,http://em.21dtv.com/songs/60022464.mkv +芳艳芬-火网梵宫十四年--酬恩,http://em.21dtv.com/songs/60022463.mkv +Pistol Annies-Hush Hush,http://em.21dtv.com/songs/60124970.mkv +李子卿-Hurt,http://em.21dtv.com/songs/60124060.mkv +吴克群-黄土高坡+青藏高原,http://em.21dtv.com/songs/60086611.mkv +DJ舞曲-好听的慢摇让你兴奋,http://em.21dtv.com/songs/50000157.mkv +佚名-忽听得老娘亲来到帐外,http://em.21dtv.com/songs/60021193.mkv +张淑敏-忽听得大船起了更点(戏曲),http://em.21dtv.com/songs/60091135.mkv +陈飞-海神爷降下勾魂的令,http://em.21dtv.com/songs/60088916.mkv +问候的温度+Grace-好似一辈子都是冬天,http://em.21dtv.com/songs/60133021.mkv +六哲-会受伤的人只有一种可能,http://em.21dtv.com/songs/60022285.mkv +佚名-红色娘子军-同心踏碎旧世界,http://em.21dtv.com/songs/60020957.mkv +李政飞-横山里下来些游击队,http://em.21dtv.com/songs/60111978.mkv +群星-回声嘹亮,http://em.21dtv.com/songs/60119884.mkv +田馥甄-黑色柳丁,http://em.21dtv.com/songs/60129435.mkv +许鹤缤+马海生-黑色柳丁,http://em.21dtv.com/songs/60126194.mkv +佚名-哈萨克人民永远跟着毛主席,http://em.21dtv.com/songs/60019563.mkv +邱永传-何时才能让你说爱我,http://em.21dtv.com/songs/60061238.mkv +姜玉阳-还是不能够忘记你的美,http://em.21dtv.com/songs/60019602.mkv +尹光+胡美仪-花染状元红之楚馆试情,http://em.21dtv.com/songs/60021463.mkv +花粉过敏的花房姑娘-忽然之间,http://em.21dtv.com/songs/60129535.mkv +高原-何日再唱何日君在来,http://em.21dtv.com/songs/60088989.mkv +陈辉玲-何日里拨开鸟云雪沉冤,http://em.21dtv.com/songs/60020386.mkv +高原-何日君再唱何日君再来,http://em.21dtv.com/songs/60020370.mkv +吉克隽逸-海然海然,http://em.21dtv.com/songs/60119339.mkv +张国荣-何去何从之阿飞正传,http://em.21dtv.com/songs/60020363.mkv +旺福乐团-好朋友应该做的芭乐事,http://em.21dtv.com/songs/60020126.mkv +高原红组合-湖畔的情人美丽的城,http://em.21dtv.com/songs/60083058.mkv +谭维维-害怕爱上你,http://em.21dtv.com/songs/60114075.mkv +泫雅-Hows This,http://em.21dtv.com/songs/60135491.mkv +Tamar Braxton-Hot Sugar,http://em.21dtv.com/songs/60107444.mkv +储毅-好男人寂寞了也犯错,http://em.21dtv.com/songs/60099095.mkv +崔子格-好男人都死哪儿去了,http://em.21dtv.com/songs/60069448.mkv +孙毓敏-红娘-看小姐做出来许多破绽,http://em.21dtv.com/songs/60020920.mkv +郭富城-很难过还是要告诉你,http://em.21dtv.com/songs/60020651.mkv +陈明章-黑面琵鹭的故乡盐埕所在,http://em.21dtv.com/songs/60020533.mkv +佚名-花木兰羞答答施礼拜上,http://em.21dtv.com/songs/60021458.mkv +佚名-花木兰-平了贼儿回家再孝双亲,http://em.21dtv.com/songs/60021457.mkv +崔强+张道旺+张祖明-还没开始就结束的爱,http://em.21dtv.com/songs/60075886.mkv +大冢爱-黑毛和牛上塩タン焼680円,http://em.21dtv.com/songs/60020481.mkv +孙伯纶-河流,http://em.21dtv.com/songs/60117651.mkv +刘随社-葫芦峪祭灯-后帐里转来诸葛孔明,http://em.21dtv.com/songs/60021221.mkv +梦然-后来我去北京找过你,http://em.21dtv.com/songs/60135460.mkv +佚名-红楼梦-想当初妹妹从江南初来到,http://em.21dtv.com/songs/60020892.mkv +曹磊+彭清-华丽丽的情歌为你唱,http://em.21dtv.com/songs/60068337.mkv +徐连国-火辣辣的妹妹火辣辣的歌,http://em.21dtv.com/songs/60067099.mkv +神龙妹子团-葫芦姐妹,http://em.21dtv.com/songs/60125991.mkv +阳光-黑龙江岸边洁白的玫瑰花,http://em.21dtv.com/songs/60064293.mkv +李晓兰-呼伦贝尔美丽的天堂,http://em.21dtv.com/songs/60086600.mkv +林忆莲-海阔天空,http://em.21dtv.com/songs/60116049.mkv +萧敬腾-海阔天空[演唱会],http://em.21dtv.com/songs/60102687.mkv +尖耳朵的阿凡达妹妹-海阔天空,http://em.21dtv.com/songs/60126812.mkv +伍思凯-海阔天空,http://em.21dtv.com/songs/60125117.mkv +孙艺琪-会哭的人不一定流泪,http://em.21dtv.com/songs/60131329.mkv +易帆-会哭的人不一定流泪,http://em.21dtv.com/songs/60075932.mkv +潘艺-会哭的人不一定流泪,http://em.21dtv.com/songs/60022282.mkv +林良乐-会哭的人不一定流泪,http://em.21dtv.com/songs/60022281.mkv +东学-花开的季节我们恋爱吧,http://em.21dtv.com/songs/60006908.mkv +佚名-红军战士想念毛泽东,http://em.21dtv.com/songs/60020881.mkv +麦子杰-回家有两千五百里路,http://em.21dtv.com/songs/60022130.mkv +刘一览-好久不见,http://em.21dtv.com/songs/60123665.mkv +板野友美-HIDE&SEEK,http://em.21dtv.com/songs/60121813.mkv +梁博-花火,http://em.21dtv.com/songs/60113738.mkv +冯志孝-淮河营-辞别千岁长安转,http://em.21dtv.com/songs/60021681.mkv +望海高歌-槐花为谁开,http://em.21dtv.com/songs/60105954.mkv +李春波-后会无期,http://em.21dtv.com/songs/60113629.mkv +孙邦楠-后悔没有好好珍惜你,http://em.21dtv.com/songs/60021095.mkv +萱萱-还好没有爱得那么深,http://em.21dtv.com/songs/60112200.mkv +童唱-黄鹤楼送孟浩然之广陵,http://em.21dtv.com/songs/60021925.mkv +敖都-黄河的哥哟黄河的妹,http://em.21dtv.com/songs/60110234.mkv +周华健-皇后大道上红彩妹妹爱的故事,http://em.21dtv.com/songs/60021882.mkv +王紫-韩惠传奇之江山可魁,http://em.21dtv.com/songs/60116162.mkv +佚名-黄河边上两个老乡对唱,http://em.21dtv.com/songs/60021896.mkv +南条爱乃-黄昏のスタアライト,http://em.21dtv.com/songs/60111735.mkv +佚名-海港-这扛棒跟随咱经历过艰难世道,http://em.21dtv.com/songs/60019726.mkv +杭盖乐队-杭盖,http://em.21dtv.com/songs/60108611.mkv +佚名-海港-一石激起千层浪,http://em.21dtv.com/songs/60019725.mkv +丁丁+夏末-荒废了16年17岁后重头来过,http://em.21dtv.com/songs/60021861.mkv +小沈阳-花房姑娘,http://em.21dtv.com/songs/60125428.mkv +花粉过敏的花房姑娘(杨乃文)-花房姑娘,http://em.21dtv.com/songs/60129534.mkv +周汤豪-HEY 需要你的美,http://em.21dtv.com/songs/60103160.mkv +WEATHER GIRLS(天气女孩)-HEY MR DJ,http://em.21dtv.com/songs/60123568.mkv +黄琦雯-花儿为什么还这样红,http://em.21dtv.com/songs/60106498.mkv +黄琦雯-花儿为什么还这样红,http://em.21dtv.com/songs/60089050.mkv +黄琦雯-花儿为什么还这洋红,http://em.21dtv.com/songs/60021342.mkv +杨亭-Hello Boy,http://em.21dtv.com/songs/60130453.mkv +薛之谦-花儿和少年,http://em.21dtv.com/songs/60126151.mkv +The 1975-Heart Out,http://em.21dtv.com/songs/60119197.mkv +Dia Frampton-Heartless,http://em.21dtv.com/songs/60103766.mkv +Carrie Underwoods-Heartbeat,http://em.21dtv.com/songs/60122358.mkv +Carrie Underwood-Heartbeat,http://em.21dtv.com/songs/60117437.mkv +尤国通-回到桃花盛开的地方,http://em.21dtv.com/songs/60069480.mkv +佚名-海岛女民兵之这里头有啥文章,http://em.21dtv.com/songs/60019711.mkv +佚名-红灯记-做人要做这样的人,http://em.21dtv.com/songs/60020803.mkv +万一英-红灯记-学你爹心红胆壮志如钢,http://em.21dtv.com/songs/60020802.mkv +李梅-红灯记-听奶奶讲革命英勇悲壮,http://em.21dtv.com/songs/60020801.mkv +佚名-红灯记-穷人的孩子早当家,http://em.21dtv.com/songs/60020800.mkv +武宏霞-红灯记-闹工潮你亲爹娘惨死在魔掌,http://em.21dtv.com/songs/60020799.mkv +佚名-红灯记-浑身是胆雄赳赳,http://em.21dtv.com/songs/60020798.mkv +佚名-红灯记-光辉照儿永向前,http://em.21dtv.com/songs/60020797.mkv +佚名-红灯记-都有一颗红亮的心,http://em.21dtv.com/songs/60020796.mkv +佚名-红灯记-党教儿做一个钢强铁汉,http://em.21dtv.com/songs/60020794.mkv +李梅-红灯记-爹爹给我无价宝,http://em.21dtv.com/songs/60020795.mkv +佚名-红灯记-打不尽豺狼决不下战场,http://em.21dtv.com/songs/60020793.mkv +耿巧云-红灯记-仇恨入心要发芽,http://em.21dtv.com/songs/60020792.mkv +大欣+刘畅-很淡很淡很淡很淡的伤,http://em.21dtv.com/songs/60075748.mkv +佚名-花打朝-小郎门外连声请,http://em.21dtv.com/songs/60021316.mkv +李勇-花丛中跳舞的小妹妹,http://em.21dtv.com/songs/60069473.mkv +文龙+蒋珊蓓-红尘之恋[繁体版],http://em.21dtv.com/songs/60098403.mkv +衡越-活出个样来给自己看,http://em.21dtv.com/songs/60022349.mkv +秦杨+方馨-海波浪之霹雳火之东邪西毒,http://em.21dtv.com/songs/60019707.mkv +越剧-合不拢笑口将喜讯接,http://em.21dtv.com/songs/60020299.mkv +佚名-何必对人生彼多不满(无原唱),http://em.21dtv.com/songs/60020319.mkv +佚名-恨不得插翅飞到她妆台,http://em.21dtv.com/songs/60020689.mkv +湘海+陈羽凡-和不爱我的人说再见,http://em.21dtv.com/songs/60020405.mkv +黎齐-和不爱你的人说再见,http://em.21dtv.com/songs/60020404.mkv +HappyGirl-HappyGirl,http://em.21dtv.com/songs/60123477.mkv +左左右右-Happy Abc,http://em.21dtv.com/songs/60118530.mkv +SOLIDEMO-Happiness,http://em.21dtv.com/songs/60134800.mkv +曲婉婷-Hand Hold,http://em.21dtv.com/songs/60095201.mkv +张继心-给最真实的你[演],http://em.21dtv.com/songs/60096079.mkv +张莉霞-柜中缘-许翠莲来好羞惭,http://em.21dtv.com/songs/60019404.mkv +周柏豪-够钟,http://em.21dtv.com/songs/60113341.mkv +许诺-隔着万水千山拥抱你,http://em.21dtv.com/songs/60088653.mkv +许诺-隔着千山万水拥抱你,http://em.21dtv.com/songs/60018441.mkv +李晓东-关于理想的课堂作业,http://em.21dtv.com/songs/60088018.mkv +叶倩文-干一杯+美梦记心中,http://em.21dtv.com/songs/60092405.mkv +伍思凯-关于爱情真爱在明天,http://em.21dtv.com/songs/60089122.mkv +兰卡措-故乡在他乡,http://em.21dtv.com/songs/60101920.mkv +张雷-感谢有你陪我在身边,http://em.21dtv.com/songs/60111898.mkv +郁钧剑-故乡小唱,http://em.21dtv.com/songs/60114124.mkv +雨柔+大约冬季-感谢上天让我遇到你,http://em.21dtv.com/songs/60118178.mkv +群星-过新年欢喜就好+恭喜中万字+五路财神照顾你,http://em.21dtv.com/songs/60019534.mkv +豫剧-高兴得我心里没法说,http://em.21dtv.com/songs/60134617.mkv +侯南宇-故乡啊我永远恋着你,http://em.21dtv.com/songs/60019062.mkv +萧亚轩-给我重新爱你的机会(演唱会),http://em.21dtv.com/songs/60018593.mkv +萧亚轩-给我一个重新爱你的机会,http://em.21dtv.com/songs/60018588.mkv +万传武-给我一个相思的理由,http://em.21dtv.com/songs/60101859.mkv +金久哲-给我一个离开的理由,http://em.21dtv.com/songs/60111460.mkv +六仔-给我一个干脆的回答,http://em.21dtv.com/songs/60109991.mkv +欧姐-给我一个放弃的理由,http://em.21dtv.com/songs/60132657.mkv +胡力-给我一个不伤心的理由,http://em.21dtv.com/songs/60018575.mkv +田一龙-给我一个不爱我的理由,http://em.21dtv.com/songs/60018574.mkv +晨熙-给我一个不爱的理由,http://em.21dtv.com/songs/60087945.mkv +雷婷-给我一次疼你的机会,http://em.21dtv.com/songs/60094762.mkv +林剑衡-给我一次疼你的机会,http://em.21dtv.com/songs/60018567.mkv +谢文雅-给我十个分手的理由,http://em.21dtv.com/songs/60093179.mkv +蒋雅文-给我十个分手的理由,http://em.21dtv.com/songs/60018556.mkv +范三妹+李凯年-哥我明天就要嫁人啦,http://em.21dtv.com/songs/60104387.mkv +杨得鑫-过完了今天你不再属于我,http://em.21dtv.com/songs/60068299.mkv +邵洋-怪我把爱想得太完美,http://em.21dtv.com/songs/60097955.mkv +邵洋-怪我把爱想的太完美,http://em.21dtv.com/songs/60081678.mkv +赵传-给所有知道我名字的人(演唱会),http://em.21dtv.com/songs/60018524.mkv +王力宏-盖世英雄,http://em.21dtv.com/songs/60122989.mkv +胡云鹏-告诉我你要的是什么,http://em.21dtv.com/songs/60122035.mkv +黎明-告诉我你会在梦境中等我(演唱会),http://em.21dtv.com/songs/60018309.mkv +邓海-告诉我爱上你没有错,http://em.21dtv.com/songs/60085117.mkv +迪克牛仔-狗+水手+三万英尺+吻别+一言难尽,http://em.21dtv.com/songs/60018796.mkv +彭丽媛-跟随你的队伍越走越长,http://em.21dtv.com/songs/60018623.mkv +Alex Skrindo-Green Sky,http://em.21dtv.com/songs/60129880.mkv +阎维文-光荣啊党的忠诚卫士,http://em.21dtv.com/songs/60019307.mkv +詹雅雯-感情我讲会到做会到,http://em.21dtv.com/songs/60069407.mkv +李建复-归去来兮+龙的传人,http://em.21dtv.com/songs/60097947.mkv +韩丽霞-赶坡-适才间大嫂对我言,http://em.21dtv.com/songs/60017914.mkv +韩丽霞-赶坡-军爷讲话真见浅,http://em.21dtv.com/songs/60017913.mkv +Rubber Band-Gotta Go!,http://em.21dtv.com/songs/60124981.mkv +Against The Current+Alex Goot-Good Time,http://em.21dtv.com/songs/60131026.mkv +AOA-Good Luck,http://em.21dtv.com/songs/60123437.mkv +AOA-Good Luck,http://em.21dtv.com/songs/60122335.mkv +G Eazy+Kehlani-Good Life,http://em.21dtv.com/songs/60134676.mkv +G Eazy+Kehlani-Good Life,http://em.21dtv.com/songs/60133201.mkv +孙齐德+江晓锚-Go My Way,http://em.21dtv.com/songs/60117664.mkv +罗文-给你一生一世我的爱,http://em.21dtv.com/songs/60018512.mkv +佚名-姑娘心里不平静-十里湖堤好风光,http://em.21dtv.com/songs/60018964.mkv +龙梅子+老猫-姑娘我铁了心跟着你啦,http://em.21dtv.com/songs/60075551.mkv +沙楠杰-给你所需,http://em.21dtv.com/songs/60119761.mkv +杨洪基-巩乃斯河我的母亲河,http://em.21dtv.com/songs/60091405.mkv +佚名-庚娘杀仇-尤庚娘坐愁城思前想后,http://em.21dtv.com/songs/60018670.mkv +成学迅-姑娘跟我走,http://em.21dtv.com/songs/60118601.mkv +陈建斌-给那个谁的第一首诗,http://em.21dtv.com/songs/60117335.mkv +刘一平-姑娘姑娘你嫁给我吧,http://em.21dtv.com/songs/60110873.mkv +佚名-革命一家-爱国男儿志气高,http://em.21dtv.com/songs/60018413.mkv +黄品源-给了你最真的我的心,http://em.21dtv.com/songs/60018483.mkv +罗百吉-给了你的爱是种伤害,http://em.21dtv.com/songs/60070710.mkv +赵真-过了今夜你是否还记得我,http://em.21dtv.com/songs/60075625.mkv +陈再强-哥流的是伤心不是眼泪,http://em.21dtv.com/songs/60075484.mkv +林琼珑-共款的调呒共款的歌(无原唱),http://em.21dtv.com/songs/60095704.mkv +江奇遥-怪就怪我们有缘无分,http://em.21dtv.com/songs/60019170.mkv +王源+潘长江+郭麒麟-过河+青春修炼手册,http://em.21dtv.com/songs/60133993.mkv +王鹏-共和国哨位战士的家,http://em.21dtv.com/songs/60018776.mkv +傻白甜的红桃皇后+进击的女帝-滚滚红尘,http://em.21dtv.com/songs/60126613.mkv +马健涛-感恩我的微信里有你,http://em.21dtv.com/songs/60122274.mkv +林乐伟-Gentlemen,http://em.21dtv.com/songs/60102380.mkv +最后一只恐龙+哈哈一笑很倾城-广岛之恋,http://em.21dtv.com/songs/60129202.mkv +不如懂我,http://em.21dtv.com/songs/60114438.mkv +凤凰传奇-GDXFNJPPS,http://em.21dtv.com/songs/60109173.mkv +凤凰传奇-感到幸福你就拍拍手,http://em.21dtv.com/songs/60101943.mkv +陈晓东-孤单的夜里我不孤单,http://em.21dtv.com/songs/60018851.mkv +孟庭苇-孤独的时候你想谁呢,http://em.21dtv.com/songs/60087670.mkv +蔡依林-孤单的人总说无所谓,http://em.21dtv.com/songs/60118886.mkv +吕嘉琪-孤单的人总说无所谓,http://em.21dtv.com/songs/60018843.mkv +蔡依林-孤单的人总说无所谓,http://em.21dtv.com/songs/60018842.mkv +吕纬青-光的版图(中国好歌曲)(现场版),http://em.21dtv.com/songs/60098186.mkv +吴介贤-共产主义儿童团团歌(演唱会),http://em.21dtv.com/songs/60071959.mkv +佚名-共产党员时刻听从党召唤,http://em.21dtv.com/songs/60018765.mkv +成天龙-告白心中的那个天使,http://em.21dtv.com/songs/60110228.mkv +林凡-告别像低回温婉的小调,http://em.21dtv.com/songs/60067028.mkv +周杰伦-告白气球,http://em.21dtv.com/songs/60128900.mkv +龚天齐-给不了你想要的幸福,http://em.21dtv.com/songs/60018472.mkv +庞梅-告别苦恋,http://em.21dtv.com/songs/60093865.mkv +蒙面哥-隔壁很伤心,http://em.21dtv.com/songs/60118883.mkv +汪洋-该不该退出我该不该认输,http://em.21dtv.com/songs/60017809.mkv +佚名-港边敢是男性伤心的所在,http://em.21dtv.com/songs/60018165.mkv +罗时丰-港边甘是男性伤心的所在,http://em.21dtv.com/songs/60018164.mkv +TWINS-风筝与风 下一站天后 女校男生(演唱会),http://em.21dtv.com/songs/60017471.mkv +田震-风雨中的鸟依然在飞,http://em.21dtv.com/songs/60091780.mkv +黄龄-风月,http://em.21dtv.com/songs/60116417.mkv +佚名-放下三棒鼓扛起红樱枪,http://em.21dtv.com/songs/60016734.mkv +佚名-风雪配-今日是我出闺的前(无原唱)一晚上,http://em.21dtv.com/songs/60017390.mkv +佚名-风雪配-独坐灯下绣鸳鸯,http://em.21dtv.com/songs/60017389.mkv +罗家宝+谢雪心-风雪卑田院情醉曲江池一,http://em.21dtv.com/songs/60017388.mkv +罗家宝+谢雪心-风雪卑田院情醉曲江池二,http://em.21dtv.com/songs/60017387.mkv +剑鸿-犯我中华者虽远必诛,http://em.21dtv.com/songs/60125232.mkv +叶欢-放我的真心在你的手心,http://em.21dtv.com/songs/60016727.mkv +大嘴巴+蓝心湄-Funky那个女孩,http://em.21dtv.com/songs/60110956.mkv +毕书尽-Funky Boy,http://em.21dtv.com/songs/60124179.mkv +毕书尽-FUNKY BOY,http://em.21dtv.com/songs/60122935.mkv +Nell-Full moon,http://em.21dtv.com/songs/60133256.mkv +胡力-分手以后才知最珍贵,http://em.21dtv.com/songs/60017122.mkv +傅斯彦-分手以后才知道最珍贵,http://em.21dtv.com/songs/60017121.mkv +胡力-分手以后才知道最珍贵,http://em.21dtv.com/songs/60065963.mkv +默契-分手也该说声对不起,http://em.21dtv.com/songs/60099632.mkv +榭霖-分手那滴眼泪流给谁,http://em.21dtv.com/songs/60102422.mkv +成骏-分手那滴眼泪流给谁,http://em.21dtv.com/songs/60099256.mkv +淋雨王子-分手了是否还记得我,http://em.21dtv.com/songs/60017095.mkv +庞晓宇-分手了就别再说爱我,http://em.21dtv.com/songs/60075360.mkv +小冀-分手了就不要再想起我,http://em.21dtv.com/songs/60017094.mkv +姜玉阳-分手了就不要再想起我,http://em.21dtv.com/songs/60017093.mkv +广智-分手了就不要再想起我,http://em.21dtv.com/songs/60017092.mkv +晨熙-分手了就不要再说爱我,http://em.21dtv.com/songs/60075362.mkv +梅岭-分手了就不要再联络,http://em.21dtv.com/songs/60116976.mkv +星宇-分手了就不要记得我,http://em.21dtv.com/songs/60075361.mkv +刘轩瑞-分手了就不要再联络,http://em.21dtv.com/songs/60061188.mkv +沈凌-分手了还可以做朋友,http://em.21dtv.com/songs/60017090.mkv +朱世权-分手后你要过的幸福,http://em.21dtv.com/songs/60017078.mkv +蓝宇-分手后你要过的幸福,http://em.21dtv.com/songs/60017077.mkv +朱凯旗-分手后就别再想起我,http://em.21dtv.com/songs/60017075.mkv +朱咸甜-分手后还可以做朋友,http://em.21dtv.com/songs/60017073.mkv +音萌萌-分手后的思念是犯贱,http://em.21dtv.com/songs/60133087.mkv +唐古-分手的时候不要说抱歉,http://em.21dtv.com/songs/60064184.mkv +王阁蓝-分手的话应该我来说,http://em.21dtv.com/songs/60095332.mkv +王旭鹏-分手的爱人不是爱人,http://em.21dtv.com/songs/60117918.mkv +宝翔-分手不是小三的错(舞曲版),http://em.21dtv.com/songs/60064182.mkv +王思宇-分手不是我要的结果,http://em.21dtv.com/songs/60107075.mkv +吴爽-分手吧是我让你累了,http://em.21dtv.com/songs/60075351.mkv +Christopher-Free Fall,http://em.21dtv.com/songs/60131045.mkv +齐萧-放弃也是另一种美丽,http://em.21dtv.com/songs/60100687.mkv +涛子-放弃我是你一生的错,http://em.21dtv.com/songs/60114663.mkv +许志刚-父亲是山 父亲是岸,http://em.21dtv.com/songs/60126183.mkv +蒋元高-放弃世界也不能放弃你,http://em.21dtv.com/songs/60016664.mkv +正伟-放弃世界也不放弃你,http://em.21dtv.com/songs/60127146.mkv +玖月奇迹-福气东来[演唱会],http://em.21dtv.com/songs/60125966.mkv +德德玛-父亲的草原母亲的河,http://em.21dtv.com/songs/60133723.mkv +腾格尔-父亲的草原母亲的河,http://em.21dtv.com/songs/60126090.mkv +廖昌永-父亲的草原母亲的河,http://em.21dtv.com/songs/60123907.mkv +哈泊力夫-父亲的草原母亲的河,http://em.21dtv.com/songs/60122616.mkv +郭保成-父亲的草原母亲的河,http://em.21dtv.com/songs/60117285.mkv +金婷婷-父亲的草原母亲的河,http://em.21dtv.com/songs/60114143.mkv +云飞-父亲的草原母亲的河,http://em.21dtv.com/songs/60106587.mkv +蒙克-父亲的草原母亲的河[演],http://em.21dtv.com/songs/60101679.mkv +那仁格日勒-父亲的草原母亲的河,http://em.21dtv.com/songs/60090248.mkv +阿日布杰+哈斯+阿箃娜-父亲的草原母亲的河(演唱会),http://em.21dtv.com/songs/60085103.mkv +廖昌永-父亲的草原母亲的河,http://em.21dtv.com/songs/60075425.mkv +云飞-父亲的草原母亲的河(演唱会),http://em.21dtv.com/songs/60075424.mkv +乌兰托娅-父亲的草原母亲的河,http://em.21dtv.com/songs/60017732.mkv +马丹-父亲的草原母亲的河,http://em.21dtv.com/songs/60017731.mkv +降央卓玛-父亲的草原母亲的河,http://em.21dtv.com/songs/60017730.mkv +格格-父亲的草原母亲的河,http://em.21dtv.com/songs/60017729.mkv +布仁巴雅尔-父亲的草原母亲的河,http://em.21dtv.com/songs/60017728.mkv +沈超-父亲的草原母亲的河(演唱会),http://em.21dtv.com/songs/60017727.mkv +齐峰-父亲的草原母亲的河(演唱会),http://em.21dtv.com/songs/60017726.mkv +德德玛-父亲的草原母亲的河(演唱会),http://em.21dtv.com/songs/60017725.mkv +谭建军-父亲的草原母亲的河,http://em.21dtv.com/songs/60070694.mkv +Beyonce-Formation,http://em.21dtv.com/songs/60120194.mkv +郭晓晓-Follow Me,http://em.21dtv.com/songs/60114826.mkv +非鱼乐队-愤怒的葡萄,http://em.21dtv.com/songs/60123355.mkv +乔军-父母在的地方就是家,http://em.21dtv.com/songs/60075421.mkv +小沈阳+周晓鸥-粉墨人生,http://em.21dtv.com/songs/60125430.mkv +刘和刚-父母的生日你还记得吗,http://em.21dtv.com/songs/60075419.mkv +尹光+胡美仪-风流天子之天香馆留宿,http://em.21dtv.com/songs/60017342.mkv +刘程伊-分开遗忘在相遇那天,http://em.21dtv.com/songs/60064181.mkv +刘程伊+刘程荣-分开遗忘在相遇那天,http://em.21dtv.com/songs/60064180.mkv +张建国-范进中举-琼林宴饮罢了恩赐御酒,http://em.21dtv.com/songs/60016522.mkv +尹正-风继续吹,http://em.21dtv.com/songs/60129019.mkv +林志美-风继续吹^深爱着你,http://em.21dtv.com/songs/60113709.mkv +郑容和+鲜于贞雅-Fireworks,http://em.21dtv.com/songs/60135811.mkv +Kygo+Conrad Sewell-Firestone,http://em.21dtv.com/songs/60109837.mkv +GFriend-FINGERTIP,http://em.21dtv.com/songs/60134679.mkv +GFriend-FINGERTIP,http://em.21dtv.com/songs/60133203.mkv +费玉清-凤凰于飞,http://em.21dtv.com/songs/60117248.mkv +莫海婧-凤凰于飞,http://em.21dtv.com/songs/60103541.mkv +陈琪-凤还巢-日前领了严亲令,http://em.21dtv.com/songs/60017587.mkv +李自强+邓洁玲-凤阁恩仇未了情之胡地蛮歌,http://em.21dtv.com/songs/60017585.mkv +倪思英+姚志强-凤阁恩仇未了情-胡地蛮歌,http://em.21dtv.com/songs/60017584.mkv +徐方+国巍-风风雨雨我们牵手走过,http://em.21dtv.com/songs/60065966.mkv +丁良生-放饭-听我妻赵景棠细讲一遍,http://em.21dtv.com/songs/60016584.mkv +Robin Thicke-Feel Good,http://em.21dtv.com/songs/60116472.mkv +郑东+郑源-奋斗的青春,http://em.21dtv.com/songs/60115450.mkv +伍思凯-分别以后才懂得拥有,http://em.21dtv.com/songs/60016979.mkv +Henry-Fantastic,http://em.21dtv.com/songs/60103782.mkv +VICTON-EYEZ EYEZ,http://em.21dtv.com/songs/60133309.mkv +Years&Years-Eyes Shut,http://em.21dtv.com/songs/60125055.mkv +Years&Years-Eyes shut,http://em.21dtv.com/songs/60115646.mkv +AOA-Excuse Me,http://em.21dtv.com/songs/60131032.mkv +BESTie-Excuse Me,http://em.21dtv.com/songs/60111582.mkv +N SONIC-Excalibur,http://em.21dtv.com/songs/60121295.mkv +Chen+Punch-Everytime,http://em.21dtv.com/songs/60120199.mkv +刘随社-二堂舍子-刘彦昌哭的两泪汪,http://em.21dtv.com/songs/60016402.mkv +TWINS-二人世界杯+爱情当入樽(演唱会),http://em.21dtv.com/songs/60064161.mkv +彭丽媛-二泉映月,http://em.21dtv.com/songs/60107732.mkv +苏勒亚其其格-二妹妹如今变了模样(演唱会),http://em.21dtv.com/songs/60016363.mkv +アンリ-EMERGENCY,http://em.21dtv.com/songs/60123575.mkv +乐来乐好-2015相遇在红尘,http://em.21dtv.com/songs/60109942.mkv +杨东煜-二零一二如果下一秒就是末日,http://em.21dtv.com/songs/60016360.mkv +黎毅+若蔓-二零一二如果有那么一天,http://em.21dtv.com/songs/60061171.mkv +郭彤-二零零四年的第一场雨,http://em.21dtv.com/songs/60016348.mkv +刀郎-二零零二年的第一场雪,http://em.21dtv.com/songs/60016343.mkv +胡斌-二零零二年的第一场雪,http://em.21dtv.com/songs/60070294.mkv +百慕三石-二零零八我们结婚吧,http://em.21dtv.com/songs/60016342.mkv +天亮-26.8℃ 草原情,http://em.21dtv.com/songs/60126741.mkv +光良-二九九九年的圣诞节,http://em.21dtv.com/songs/60016337.mkv +闫桂祥-二进宫-自那日与徐杨决裂以后,http://em.21dtv.com/songs/60016336.mkv +群星-二进宫-太平年间把荣享,http://em.21dtv.com/songs/60016335.mkv +郑伊健-二二零九八全城效应,http://em.21dtv.com/songs/60016329.mkv +郑伊健-二二零九八全城效应(演唱会),http://em.21dtv.com/songs/60016328.mkv +The weeknd-Earned It,http://em.21dtv.com/songs/60109900.mkv +网络歌手-对着月亮说声我爱你,http://em.21dtv.com/songs/60119877.mkv +谭筠-等在有风的那个地方(无原唱),http://em.21dtv.com/songs/60015055.mkv +朱青-等在下一个十字路口,http://em.21dtv.com/songs/60063474.mkv +张淑敏-担重任乘东风急回村上,http://em.21dtv.com/songs/60014318.mkv +祁紫檀-得知平淡珍贵的一天,http://em.21dtv.com/songs/60109554.mkv +郭菡-带着你的名字去流浪,http://em.21dtv.com/songs/60121015.mkv +林依轮-带着你的故事跟我走,http://em.21dtv.com/songs/60014288.mkv +谢知言-对着镜子抽烟的男人,http://em.21dtv.com/songs/60016085.mkv +刘照亮-打镇合-皮鞭打气得人满腔怒火,http://em.21dtv.com/songs/60013833.mkv +雯雯组合-到最后爱你的人还是我,http://em.21dtv.com/songs/60014768.mkv +吴琼-打猪草小女子本姓陶(黄梅戏),http://em.21dtv.com/songs/60089735.mkv +DJViper+王绎龙-电音之王(Mix),http://em.21dtv.com/songs/50000130.mkv +周深-大鱼,http://em.21dtv.com/songs/60123767.mkv +萧玉芬-毒药,http://em.21dtv.com/songs/60110495.mkv +李国祥-答应我你会爱上好男人,http://em.21dtv.com/songs/60013739.mkv +方亚芬-定一条偷梁换柱调包计,http://em.21dtv.com/songs/60015463.mkv +郭富城-大易输入法之对不起我爱你,http://em.21dtv.com/songs/60014205.mkv +郑新-但愿人生常聚少离分,http://em.21dtv.com/songs/60014423.mkv +郑进一-对于你们我永远心疼,http://em.21dtv.com/songs/60126284.mkv +郑进一-对于你们我永远心疼(无原唱),http://em.21dtv.com/songs/60016079.mkv +蔡卓妍-但愿明天一醒世界末日,http://em.21dtv.com/songs/60069333.mkv +佚名-当一个男人爱上一个女人,http://em.21dtv.com/songs/60014647.mkv +佚名-第一个没有你的生日,http://em.21dtv.com/songs/60015259.mkv +豫剧-但愿二爹娘长命百岁,http://em.21dtv.com/songs/60134538.mkv +娅琳-等一场雪之武琊榜版,http://em.21dtv.com/songs/60118493.mkv +郭玲-多想做个幸福的女人,http://em.21dtv.com/songs/60071903.mkv +小沈阳+范书铭-大笑江湖,http://em.21dtv.com/songs/60122680.mkv +听说泰山-多想和你再看一次烟火,http://em.21dtv.com/songs/60063004.mkv +古品-当我终于买得起那枚戒指,http://em.21dtv.com/songs/60075122.mkv +董柯娣-但未知何日骨肉能聚首,http://em.21dtv.com/songs/60014410.mkv +胡松华-当我走过洁白的毡房,http://em.21dtv.com/songs/60014638.mkv +黄品源-当我再次接到电话的时候,http://em.21dtv.com/songs/60014634.mkv +黄志强-当我离开部队的时候,http://em.21dtv.com/songs/60112405.mkv +刘媛-当我离开部队的时候,http://em.21dtv.com/songs/60111717.mkv +张惠妹-当我开始偷偷地想你,http://em.21dtv.com/songs/60014610.mkv +李宇春-当我开始偷偷的想你(演唱会),http://em.21dtv.com/songs/60014609.mkv +沈志仲-当我看到你的第一眼,http://em.21dtv.com/songs/60108678.mkv +楚奇+楚童-当我回头看你的一瞬,http://em.21dtv.com/songs/60014607.mkv +郑源-当我孤独的时候还可以抱着你,http://em.21dtv.com/songs/60014605.mkv +李炫辉-当我不在你身边的时候,http://em.21dtv.com/songs/60075117.mkv +刘志丹-当我不再爱你的时候,http://em.21dtv.com/songs/60107524.mkv +侯旭-电台有人点播伤心情歌(演唱会),http://em.21dtv.com/songs/60015352.mkv +吴娜-多听听老百姓的声音,http://em.21dtv.com/songs/60075267.mkv +IO乐团-到头来疯的难道是我,http://em.21dtv.com/songs/60070628.mkv +TIZZY BAC-达特寇斯特米吐马齐,http://em.21dtv.com/songs/60085006.mkv +阎维文-戴上咱们的银白色警盔,http://em.21dtv.com/songs/60014301.mkv +高保利-东山上点灯西山上明,http://em.21dtv.com/songs/60015559.mkv +小沈阳-单身情歌,http://em.21dtv.com/songs/60123850.mkv +林志炫+张亮+高凌寒+杨海峰-单身情歌,http://em.21dtv.com/songs/60122900.mkv +林依轮-带上你的故事跟我走,http://em.21dtv.com/songs/60089362.mkv +蒋卓嘉-大说谎家编织的世界,http://em.21dtv.com/songs/60114756.mkv +蒋卓嘉-大说谎家编织的世界,http://em.21dtv.com/songs/60105328.mkv +陈宏庆-单身的人唱单身的歌,http://em.21dtv.com/songs/60069329.mkv +泰民-Drip Drop,http://em.21dtv.com/songs/60120700.mkv +任小蕾-断桥-西湖山水还依旧,http://em.21dtv.com/songs/60015939.mkv +郁钧剑-弹起我心爱的土琵琶,http://em.21dtv.com/songs/60014472.mkv +佚名-弹起我心爱的土琵琶,http://em.21dtv.com/songs/60014471.mkv +牟青-弹起我心爱的土琵琶,http://em.21dtv.com/songs/60014470.mkv +黄鸿升-地球上最浪漫的一首歌,http://em.21dtv.com/songs/60015112.mkv +一休-地球人已经阻止不了我爱你,http://em.21dtv.com/songs/60075173.mkv +周桐同-地球人都知道我爱你,http://em.21dtv.com/songs/60015111.mkv +李翊君-多情人都把灵魂给了谁,http://em.21dtv.com/songs/60016168.mkv +谢和弦-地球其实没有那么危险,http://em.21dtv.com/songs/60015109.mkv +佚名-爹亲娘亲不如毛主席亲,http://em.21dtv.com/songs/60015388.mkv +佚名-断桥-恨上来骂法海不如禽兽,http://em.21dtv.com/songs/60015938.mkv +小虎-多情的我遇上绝情的你,http://em.21dtv.com/songs/60016154.mkv +王友清-多情的我遇上绝情的你,http://em.21dtv.com/songs/60016153.mkv +六哲-多情的人总被无情的伤,http://em.21dtv.com/songs/60016150.mkv +吴宗宪-多情的港口无情的天,http://em.21dtv.com/songs/60016145.mkv +佚名-冬去春来-别把奶奶来轻看,http://em.21dtv.com/songs/60015591.mkv +G.NA-Don't Cry,http://em.21dtv.com/songs/60122379.mkv +天气女孩-Don't Cry,http://em.21dtv.com/songs/60106747.mkv +李孝利-DON'T CRY,http://em.21dtv.com/songs/60104198.mkv +吴思贤-Don't Cry,http://em.21dtv.com/songs/60103153.mkv +姚贝娜-带你走溪口,http://em.21dtv.com/songs/60107643.mkv +徐连国-等你在下辈子的路口,http://em.21dtv.com/songs/60015021.mkv +佚名-定能战胜顽敌渡难关,http://em.21dtv.com/songs/60015460.mkv +泽尔丹-当你走的时候我哭了,http://em.21dtv.com/songs/60071867.mkv +Go Go Rise 美好前程+Trash 乐团-当你在濒临崩溃之时,http://em.21dtv.com/songs/60116453.mkv +孙逊-当你同时爱上两个人,http://em.21dtv.com/songs/60014567.mkv +马念先-当你说爱我的那一天,http://em.21dtv.com/songs/60014563.mkv +贾争艳-带你去游龙里大草原,http://em.21dtv.com/songs/60116258.mkv +田馥甄-当你[梦想的声音],http://em.21dtv.com/songs/60132758.mkv +卓依婷-到哪里找那么好的人,http://em.21dtv.com/songs/60014759.mkv +陈明真-到哪里找那么好的人,http://em.21dtv.com/songs/60014758.mkv +巴图-当你老了,http://em.21dtv.com/songs/60125464.mkv +谭维维+妙音汉子-当你老了,http://em.21dtv.com/songs/60112967.mkv +王昊-当你离开我的那一天,http://em.21dtv.com/songs/60014559.mkv +王杰-等你开口把我留下来,http://em.21dtv.com/songs/60015002.mkv +陈瑀涵+黄蕙君+陈妍如-当女孩遇到爱的男孩时,http://em.21dtv.com/songs/60014585.mkv +龙啸-等你回头我在你身后,http://em.21dtv.com/songs/60124770.mkv +新少年-当你孤单你会想起谁,http://em.21dtv.com/songs/60089897.mkv +阿生-当你孤单你会想起谁,http://em.21dtv.com/songs/60088843.mkv +张栋梁-当你孤单你会想起谁,http://em.21dtv.com/songs/60014554.mkv +童一首歌-当你孤单你会想起谁,http://em.21dtv.com/songs/60014553.mkv +孙羡真-当你孤单你会想起谁,http://em.21dtv.com/songs/60014552.mkv +红孩儿-当你孤单你会想起谁,http://em.21dtv.com/songs/60014551.mkv +陈志坚+李宝龄-当你飞向遥远的边际,http://em.21dtv.com/songs/60014550.mkv +杨千嬅-当女飞侠爱上万能侠(演唱会),http://em.21dtv.com/songs/60014584.mkv +佚名-当暖风吹过大海之滨(伦巴),http://em.21dtv.com/songs/60014583.mkv +佚名-当你的秀发拂过我的钢枪,http://em.21dtv.com/songs/60014549.mkv +高歌-当你的秀发拂过我的钢枪,http://em.21dtv.com/songs/60014548.mkv +林东松-当你的吻还热着我的唇(无原唱),http://em.21dtv.com/songs/60014547.mkv +梁雁翎-对你的思念总是特别深,http://em.21dtv.com/songs/60016042.mkv +东方骏-等你等得胡子都长了,http://em.21dtv.com/songs/60014982.mkv +黎明-对你的爱永远多一点,http://em.21dtv.com/songs/60016037.mkv +张学友-对你的爱越深就越来越心痛,http://em.21dtv.com/songs/60016039.mkv +黄格选-对你的爱越深就越来越心痛,http://em.21dtv.com/songs/60016038.mkv +佚名-德涅泊尔河掀起了怒涛,http://em.21dtv.com/songs/60014813.mkv +傻白甜的红桃皇后-等你爱我,http://em.21dtv.com/songs/60126612.mkv +阿悄+小贼-当卖火柴的小女孩遇上放烟火的小男孩,http://em.21dtv.com/songs/60014538.mkv +佚名-倒霉大叔的婚事-春风吹得人心醉,http://em.21dtv.com/songs/60014708.mkv +阿左-等了一天又一天等了一年又一年,http://em.21dtv.com/songs/60069344.mkv +王乐达+顾预-当柳密欧遇见杜丽叶,http://em.21dtv.com/songs/60130563.mkv +动力火车-地老地老地老天荒天荒(演唱会),http://em.21dtv.com/songs/60015096.mkv +范英楠-第六次的寂寞圣诞夜,http://em.21dtv.com/songs/60070637.mkv +陶慧敏-多亏了杨二少爷仗义人,http://em.21dtv.com/songs/60016124.mkv +干露露-大街小巷都听我的歌,http://em.21dtv.com/songs/60116764.mkv +干毛毛-大街小巷都听我的歌,http://em.21dtv.com/songs/60116763.mkv +马建涛-大街小巷都听我的歌,http://em.21dtv.com/songs/60110690.mkv +马建涛-大街小巷都听我的歌,http://em.21dtv.com/songs/60109755.mkv +DJ舞曲-DJ舞曲-汽车专用慢摇,http://em.21dtv.com/songs/30000571.mkv +董德光-定军山-这一封书信来的巧,http://em.21dtv.com/songs/60015459.mkv +谭孝曾-定军山-师爷说话理太差,http://em.21dtv.com/songs/60015458.mkv +佚名-杜鹃山-三起三落几经风浪,http://em.21dtv.com/songs/60015870.mkv +佚名-杜鹃山举义旗三起三落,http://em.21dtv.com/songs/60015869.mkv +杨春霞-杜鹃山-黄连苦胆味难分,http://em.21dtv.com/songs/60015868.mkv +哈哈一笑很倾城-独家记忆,http://em.21dtv.com/songs/60128913.mkv +王玉敏-钓金龟-有几个贤孝的子,http://em.21dtv.com/songs/60015376.mkv +京剧-党教儿做一个刚强铁汉,http://em.21dtv.com/songs/60014679.mkv +温岚-D.I.S.C.O,http://em.21dtv.com/songs/60116115.mkv +黄子扬-Different,http://em.21dtv.com/songs/60127616.mkv +节奏部落-打虎上山,http://em.21dtv.com/songs/60129521.mkv +聂艳-党和人民永远在一起,http://em.21dtv.com/songs/60112152.mkv +徐莉娜-当红军的哥哥回来了,http://em.21dtv.com/songs/60111916.mkv +陈浩德-德哥40年歌路历程心声(演唱会),http://em.21dtv.com/songs/60075138.mkv +老兵-当过兵的战友干一杯,http://em.21dtv.com/songs/60014531.mkv +群星-当奉献成为一种习惯,http://em.21dtv.com/songs/60120852.mkv +阎维文-东方的太阳东方的月亮,http://em.21dtv.com/songs/60015503.mkv +旭日阳刚-当风吹过无尽的旷野,http://em.21dtv.com/songs/60125629.mkv +Scandal-Departure,http://em.21dtv.com/songs/60104719.mkv +佚名-道尔基你为什么不高兴,http://em.21dtv.com/songs/60014774.mkv +Delta Goodrem-Dear Life,http://em.21dtv.com/songs/60123455.mkv +比莉-DEAR JOHN,http://em.21dtv.com/songs/60129324.mkv +王雪娥-Dear John,http://em.21dtv.com/songs/60105263.mkv +李宗盛-到底有谁能够告诉我,http://em.21dtv.com/songs/60014755.mkv +郭富城-到底有谁能够告诉我,http://em.21dtv.com/songs/60014754.mkv +郭富城-到底有谁能够告诉我(演唱会),http://em.21dtv.com/songs/60014753.mkv +迪克牛仔-到底我要等到什么时候,http://em.21dtv.com/songs/60014751.mkv +佚名-到底我要等到什么时候(无原唱),http://em.21dtv.com/songs/60014750.mkv +成学迅-到底我是做错了什么,http://em.21dtv.com/songs/60014749.mkv +郭欢-等到我们老的那一天,http://em.21dtv.com/songs/60069343.mkv +优客李林-等待是一生最初苍老,http://em.21dtv.com/songs/60014919.mkv +佚名-等待是我心中全部的爱(无原唱),http://em.21dtv.com/songs/60014918.mkv +彤杰-到底是谁伤了谁的心,http://em.21dtv.com/songs/60014746.mkv +毛泓艳+水水-到底什么时候你才会了解我,http://em.21dtv.com/songs/60014745.mkv +张卫健-到底什么时候才会想起我,http://em.21dtv.com/songs/60014744.mkv +FIRE-到底什么时候才会想起我,http://em.21dtv.com/songs/60014743.mkv +NO NAME-等待是爱情的一种方式,http://em.21dtv.com/songs/60014917.mkv +覃浩-到底哪句才是真心的,http://em.21dtv.com/songs/60094295.mkv +欢子-得到你的人却得不到你的心,http://em.21dtv.com/songs/60014797.mkv +佚名-得到了幸福得到了它,http://em.21dtv.com/songs/60014795.mkv +羽哲-丢掉了工作丢掉了你,http://em.21dtv.com/songs/60117982.mkv +陈升+萧言中-打电话给我们的好朋友,http://em.21dtv.com/songs/60013760.mkv +郭盈莹-淡淡地想你淡淡地流泪,http://em.21dtv.com/songs/60064110.mkv +吴生全-得到爱情却失去了你,http://em.21dtv.com/songs/60014793.mkv +芦伟-当初是你看到我伤心,http://em.21dtv.com/songs/60129525.mkv +齐峰-多彩的阿拉善演唱会),http://em.21dtv.com/songs/60016105.mkv +陈旭-东北特产不是黑社会,http://em.21dtv.com/songs/60015496.mkv +雪村-东北人之美国9 11恐怖事件,http://em.21dtv.com/songs/60015495.mkv +李宇春-对不起只是忽然很想你,http://em.21dtv.com/songs/60016003.mkv +自由派对-对不起现在我才爱上你,http://em.21dtv.com/songs/60063500.mkv +蔡诗芸-对不起现在收不到讯号,http://em.21dtv.com/songs/60016000.mkv +Transition 前进乐团-对不起我的中文不好,http://em.21dtv.com/songs/60129997.mkv +胡杰夕-对不起我不能再爱你,http://em.21dtv.com/songs/60015998.mkv +胡杰夕-对不起我不能再爱你(舞曲版),http://em.21dtv.com/songs/60015997.mkv +卓依婷-大拜年+恭喜大家过新年,http://em.21dtv.com/songs/60013841.mkv +颜伟-碉堡了之搞定至尊宝,http://em.21dtv.com/songs/60135990.mkv +佚名-打不开的门等不到的人,http://em.21dtv.com/songs/60013749.mkv +佚名-打不尽豺狼决不下战场,http://em.21dtv.com/songs/60013748.mkv +李铁梅-打不尽豺狼决不下战场,http://em.21dtv.com/songs/60013747.mkv +杜鹏-大保国-臣不奏前三皇后代五帝,http://em.21dtv.com/songs/60013846.mkv +曹震豪-得不到又怎么失去过,http://em.21dtv.com/songs/60075135.mkv +萧全-当爱情不再美丽的时候,http://em.21dtv.com/songs/60014490.mkv +萧全-当爱情不再美丽的时候(舞曲版),http://em.21dtv.com/songs/60066947.mkv +CATCHERS-DANGEROUS,http://em.21dtv.com/songs/60134654.mkv +全烋星-Dangerous,http://em.21dtv.com/songs/60133383.mkv +SpeXial-Dangerous,http://em.21dtv.com/songs/60114957.mkv +David Guetta-Dangerous,http://em.21dtv.com/songs/60108217.mkv +许明明-对爱渴望,http://em.21dtv.com/songs/60126187.mkv +童予硕-对爱渴望,http://em.21dtv.com/songs/60113924.mkv +凡间精灵-等爱的情人在夜里哭,http://em.21dtv.com/songs/60014856.mkv +阿澄佳奈-初めて恋をした记忆(动画),http://em.21dtv.com/songs/60098829.mkv +孙扬杰-穿着我送你的鞋跟着他跑了,http://em.21dtv.com/songs/60013118.mkv +阿牛+任贤齐-踩着三轮车卖菜的老阿伯(演唱会),http://em.21dtv.com/songs/60011979.mkv +姚亮-唱这首歌给遥远的你听,http://em.21dtv.com/songs/60074906.mkv +琪琪格-草原我是你的琪琪格,http://em.21dtv.com/songs/60069289.mkv +德德玛-草原上有一个美妙的传说,http://em.21dtv.com/songs/60012104.mkv +赵琳-草原上有我美丽的梦想,http://em.21dtv.com/songs/60065890.mkv +李晓东-草原是我回归的故乡,http://em.21dtv.com/songs/60084960.mkv +魏永生-草原是我回归的故乡,http://em.21dtv.com/songs/60081412.mkv +刀郎-草原上升起了不落的太阳,http://em.21dtv.com/songs/60012103.mkv +额尔古纳乐队-草原上升起不落的太阳,http://em.21dtv.com/songs/60074863.mkv +吴雁泽-草原上升起不落的太阳,http://em.21dtv.com/songs/60012102.mkv +乌兰托娅-草原上升起不落的太阳,http://em.21dtv.com/songs/60012101.mkv +潘晓峰-草原上升起不落的太阳,http://em.21dtv.com/songs/60012100.mkv +吕继宏-草原上升起不落的太阳,http://em.21dtv.com/songs/60012099.mkv +刘斌-草原上升起不落的太阳,http://em.21dtv.com/songs/60012098.mkv +降央卓玛-草原上升起不落的太阳,http://em.21dtv.com/songs/60012097.mkv +蒋大为-草原上升起不落的太阳,http://em.21dtv.com/songs/60012096.mkv +胡红艳-草原上升起不落的太阳,http://em.21dtv.com/songs/60012095.mkv +巴图-草原上升起不落的太阳,http://em.21dtv.com/songs/60012094.mkv +乌兰图雅-草原上升起不落的太阳(演唱会),http://em.21dtv.com/songs/60065889.mkv +吴雁泽-草原升起不落的太阳,http://em.21dtv.com/songs/60089209.mkv +郁钧剑-草原上没有孤单的白杨,http://em.21dtv.com/songs/60012093.mkv +佚名-朝阳沟-咱们说说知心话,http://em.21dtv.com/songs/60012436.mkv +佚名-朝阳沟-新一代要继壮志汗酒高山,http://em.21dtv.com/songs/60012435.mkv +佚名-朝阳沟-我盼你当一个劳动英雄,http://em.21dtv.com/songs/60012434.mkv +佚名-朝阳沟-我坚廖在农村干他一百年,http://em.21dtv.com/songs/60012433.mkv +佚名-朝阳沟-为改变穷山沟咱各显奔领,http://em.21dtv.com/songs/60012432.mkv +佚名-朝阳沟-人也留来地也留,http://em.21dtv.com/songs/60012431.mkv +格桑美朵-草原姑娘爱上草原郞,http://em.21dtv.com/songs/60135451.mkv +佚名-朝阳沟-高兴得我心里没法儿说,http://em.21dtv.com/songs/60012429.mkv +佚名-朝阳沟-别光说那外行话,http://em.21dtv.com/songs/60012428.mkv +燕尾蝶-采一朵玫瑰等待着你,http://em.21dtv.com/songs/60111257.mkv +四个女生-除夕合家欢十大财神齐上门,http://em.21dtv.com/songs/60013059.mkv +刘欢+蔡健雅+羽泉+周华健+全国32强-唱我的歌,http://em.21dtv.com/songs/60109185.mkv +童唱-春天在我们的歌声里,http://em.21dtv.com/songs/60013352.mkv +阎维文-春天来到我们的战场,http://em.21dtv.com/songs/60089510.mkv +阎维文-春天来到了我们的战场,http://em.21dtv.com/songs/60013338.mkv +佚名-春天里的花园花儿美丽,http://em.21dtv.com/songs/60013346.mkv +童声合唱-春田花花幼稚园校歌,http://em.21dtv.com/songs/60013353.mkv +任贤齐-长藤挂铜铃1997,http://em.21dtv.com/songs/60057601.mkv +袁慧琴-赤桑镇-小包拯他把那陪情的话讲,http://em.21dtv.com/songs/60012821.mkv +蓝雨-传说中的爱情有没有,http://em.21dtv.com/songs/60062569.mkv +郁柳+孙绳骥-春三月和风轻鸟语花香,http://em.21dtv.com/songs/60069315.mkv +六哲-曾受伤的人只有一种可能,http://em.21dtv.com/songs/60012190.mkv +杨钰莹+翠翠+王添翼+涂晓玲-茶山情歌,http://em.21dtv.com/songs/60122893.mkv +阿佳组合-城市里没有眼泪飘来飘去,http://em.21dtv.com/songs/60074938.mkv +四千金-财神来到我家门+接财神,http://em.21dtv.com/songs/60011895.mkv +佚名-陈三两-陈三两迈步上公庭(无原唱),http://em.21dtv.com/songs/60012524.mkv +薛凯琪-此时此刻,http://em.21dtv.com/songs/60114035.mkv +梁汉文-超人的主题曲屎捞人,http://em.21dtv.com/songs/60012401.mkv +魏云清-Crazy Run,http://em.21dtv.com/songs/60136014.mkv +X Cross-Crazy[DJ],http://em.21dtv.com/songs/60122447.mkv +衡越-从前有棵树,http://em.21dtv.com/songs/60127373.mkv +佚名-春秋配-羞答答出门来将头低下,http://em.21dtv.com/songs/60013299.mkv +张萍-春秋配-蒙君子赤诚心再三问话,http://em.21dtv.com/songs/60013298.mkv +彝人制造-纯情妞牛的爱情归宿,http://em.21dtv.com/songs/60091171.mkv +白冰冰-痴情梦留给伤心的人,http://em.21dtv.com/songs/60132764.mkv +白杨-痴情的月亮,http://em.21dtv.com/songs/60111320.mkv +殷浩-从你的房子里面走出来,http://em.21dtv.com/songs/60013553.mkv +豫剧-承蒙小姐你的恩德广,http://em.21dtv.com/songs/60134581.mkv +国巍-沉默你不经意的温柔,http://em.21dtv.com/songs/60082718.mkv +张小亮-侧美案扣押-陈千岁不必太急剧,http://em.21dtv.com/songs/60012136.mkv +Easton Corbin-Clockwork,http://em.21dtv.com/songs/60124866.mkv +Untouchable+Babylon-Clockwork,http://em.21dtv.com/songs/60107452.mkv +康然-除了你我什么都不要,http://em.21dtv.com/songs/60013057.mkv +蓝雨-除了你还有谁值得让我为她而流泪,http://em.21dtv.com/songs/60013055.mkv +马萃如-从来没有想过爱上你,http://em.21dtv.com/songs/60013540.mkv +[Group] +groupName=十六万歌曲MV等 - 106 +蔡幸娟-从来没想过这样道别离,http://em.21dtv.com/songs/60013538.mkv +SNH48-潮流冠军,http://em.21dtv.com/songs/60128703.mkv +梁东泽-除了爱我还能给你什么,http://em.21dtv.com/songs/60074969.mkv +李娜+藏古西-除了爱你我还能爱谁,http://em.21dtv.com/songs/60082736.mkv +郑福强-除了爱你我还能爱谁,http://em.21dtv.com/songs/60081759.mkv +白天不懂爷的黑+大王叫我来巡山-残酷月光,http://em.21dtv.com/songs/60129444.mkv +彭佳慧-残酷的温柔,http://em.21dtv.com/songs/60074834.mkv +佚名-从今后再莫说你治家有方,http://em.21dtv.com/songs/60013514.mkv +郑源-曾经的少年,http://em.21dtv.com/songs/60115453.mkv +萧敬腾-曾经的你,http://em.21dtv.com/songs/60129560.mkv +潘粤明-曾经的你,http://em.21dtv.com/songs/60124224.mkv +陈浩德-春花秋月+月夜鸣啼+断肠花,http://em.21dtv.com/songs/60013277.mkv +儿童歌曲-Chenparty,http://em.21dtv.com/songs/60133379.mkv +郑容和+林俊杰-Checkmate,http://em.21dtv.com/songs/60109658.mkv +林俊杰+郑容和-Checkmate,http://em.21dtv.com/songs/60109456.mkv +傅振辉-忏悔的时觉悟的开始,http://em.21dtv.com/songs/60012271.mkv +金美琪-错过相见错不过想念,http://em.21dtv.com/songs/60130815.mkv +于闯-错过我是你一生的错,http://em.21dtv.com/songs/60075021.mkv +侃侃-穿过生命散发的芬芳,http://em.21dtv.com/songs/60074976.mkv +何笃霖-错过你我什么都不要(无原唱),http://em.21dtv.com/songs/60013676.mkv +秀兰玛雅-这个男人曾经是我的(演唱会),http://em.21dtv.com/songs/60057790.mkv +张学友-穿过你的黑发的我的手,http://em.21dtv.com/songs/60013099.mkv +含笑-穿过你的黑发的我的手,http://em.21dtv.com/songs/60013098.mkv +张学友-穿过你的黑发的我的手(演唱会),http://em.21dtv.com/songs/60013097.mkv +罗大佑-穿过你的黑发的我的手(演唱会),http://em.21dtv.com/songs/60013096.mkv +何龙雨-错过了缘分错过了你,http://em.21dtv.com/songs/60117549.mkv +司徒兰芳-错过了缘分错过了你,http://em.21dtv.com/songs/60075020.mkv +何云龙-错过了缘份错过了你,http://em.21dtv.com/songs/60068199.mkv +李素华-春光长留珠江三角洲(演唱会),http://em.21dtv.com/songs/60013268.mkv +UNIQ-Celebrate,http://em.21dtv.com/songs/60111660.mkv +Pitbull-Celebrate,http://em.21dtv.com/songs/60110787.mkv +欧姐-蠢到死心塌地的爱你,http://em.21dtv.com/songs/60132658.mkv +郭瑞-错的时间遇上对的你,http://em.21dtv.com/songs/60100981.mkv +冯圣雅-错的时间遇上对的人,http://em.21dtv.com/songs/60071848.mkv +黄勇-错的时间遇到对的人,http://em.21dtv.com/songs/60013656.mkv +赵小南-错的时间错的地点遇到对的人,http://em.21dtv.com/songs/60013655.mkv +马健涛-错对时间爱上对的人,http://em.21dtv.com/songs/60121148.mkv +苏慧伦-春的花秋的风冬的飘雪爱的人,http://em.21dtv.com/songs/60013222.mkv +关心妍-惨得过我,http://em.21dtv.com/songs/60110858.mkv +马常宝-迟到的缘分错误的相遇,http://em.21dtv.com/songs/60074953.mkv +刘嘉亮-冲动的惩罚+回心转意=我说我爱你,http://em.21dtv.com/songs/60012853.mkv +MOJO乐团-吃到撑死只要三百元,http://em.21dtv.com/songs/60087206.mkv +郑培钦-采茶舞曲,http://em.21dtv.com/songs/60112304.mkv +孙耀威-从此我的世界多了一秒,http://em.21dtv.com/songs/60075011.mkv +王凯-匆匆那年,http://em.21dtv.com/songs/60122985.mkv +陈瑞-长长的路 慢慢地走,http://em.21dtv.com/songs/60122245.mkv +陈咏-彻彻底底忘记你是谁,http://em.21dtv.com/songs/60084980.mkv +张启靓-唱不完的情歌伤不完的心,http://em.21dtv.com/songs/60012307.mkv +路绮欧-唱不完的情歌伤不完的心,http://em.21dtv.com/songs/60012306.mkv +涛子-唱不完的情歌留不完的泪,http://em.21dtv.com/songs/60064047.mkv +赵传-唱不完的情唱不完的爱,http://em.21dtv.com/songs/60012303.mkv +秀才-猜不透的心看不透的人,http://em.21dtv.com/songs/60069283.mkv +软硬天师-川保久龄大战山本耀司(演唱会),http://em.21dtv.com/songs/60013093.mkv +荣联合-唱不够的情歌爱不够的人,http://em.21dtv.com/songs/60062869.mkv +TFBOYS-宠爱,http://em.21dtv.com/songs/60125016.mkv +魏晨-尘埃,http://em.21dtv.com/songs/60107371.mkv +橙子焦糖-Catallena,http://em.21dtv.com/songs/60099357.mkv +邹银川-别装作看不见我的眼泪,http://em.21dtv.com/songs/60010799.mkv +钟汉良-别在下雨天偷偷的哭泣,http://em.21dtv.com/songs/60010794.mkv +张克帆-别在下雨天偷偷的哭泣,http://em.21dtv.com/songs/60010793.mkv +文章-别在我心灰时说爱我(演唱会)(无原唱),http://em.21dtv.com/songs/60010792.mkv +韩烁-抱着娃娃睡觉的男人,http://em.21dtv.com/songs/60010080.mkv +巫启贤-别再问我爱你有多深,http://em.21dtv.com/songs/60010774.mkv +卢广仲-别在我睡着的时候打电话给我,http://em.21dtv.com/songs/60062723.mkv +雷诺儿-别在我离开之前离开,http://em.21dtv.com/songs/60010791.mkv +江美琪-别在我离开你之前离开我(演唱会),http://em.21dtv.com/songs/60010790.mkv +蔡健雅-不知所以然,http://em.21dtv.com/songs/60107986.mkv +乔嘉-别再让我为你受折磨,http://em.21dtv.com/songs/60101869.mkv +刘腊-别在梦醒之前离开我,http://em.21dtv.com/songs/60010786.mkv +夹子道-别在寂寞的时候说爱我,http://em.21dtv.com/songs/60010781.mkv +郑晓飞-不在乎你给我的过错,http://em.21dtv.com/songs/60074802.mkv +拜尔-别在分手以后说爱我,http://em.21dtv.com/songs/60010780.mkv +韩信-别在分手的时候说爱我,http://em.21dtv.com/songs/60010779.mkv +丁爽-不知道你喜不喜这样的我,http://em.21dtv.com/songs/60070558.mkv +舒米恩-别在都兰的土地上轻易的说着你爱我,http://em.21dtv.com/songs/60074700.mkv +侯志斌-不醉不会,http://em.21dtv.com/songs/60126607.mkv +朱天毅-别再爱着不爱你的人,http://em.21dtv.com/songs/60084912.mkv +孟利-不要在相爱的时候说分手,http://em.21dtv.com/songs/60068148.mkv +司徒兰芳+赵真-不要在我转身之后掉泪,http://em.21dtv.com/songs/60064022.mkv +蔡健东-不要在我离开的时候抱着我,http://em.21dtv.com/songs/60062238.mkv +郑源-不要在我寂寞的时候说爱我,http://em.21dtv.com/songs/60011657.mkv +T.R.Y-不要在我寂寞的时候说爱我,http://em.21dtv.com/songs/60011655.mkv +郑源-不要在我寂寞的时候说爱我(演唱会),http://em.21dtv.com/songs/60011654.mkv +陶钰玉-不要在我寂寞的时候说爱我(演唱会),http://em.21dtv.com/songs/60071804.mkv +庄心妍-不要在我的伤口撒盐,http://em.21dtv.com/songs/60103256.mkv +李姝漫-不要再说我无理取闹,http://em.21dtv.com/songs/60106937.mkv +苹果园组合-毕业照片,http://em.21dtv.com/songs/60120896.mkv +吴宗宪-不要在你的怀中想着别人,http://em.21dtv.com/songs/60011653.mkv +方季惟-不要这么轻易说爱我,http://em.21dtv.com/songs/60011659.mkv +罗百吉+宝贝-不要在脸上流下眼泪,http://em.21dtv.com/songs/60011652.mkv +T.R.Y-不要在寂寞的时候说爱我,http://em.21dtv.com/songs/60011651.mkv +江得胜-不要在喝醉时才对我说你的心事,http://em.21dtv.com/songs/60011650.mkv +天孪兄弟-不要因为寂寞才想我,http://em.21dtv.com/songs/60125352.mkv +易帆-不要用我的爱来伤害我,http://em.21dtv.com/songs/60063273.mkv +远方-不要用我的爱来伤害我,http://em.21dtv.com/songs/60011636.mkv +韩晶-不要用我的爱来伤害我,http://em.21dtv.com/songs/60011635.mkv +向天问-不要用谎言来欺骗我,http://em.21dtv.com/songs/60084941.mkv +曹龙-不要相信女人的眼泪,http://em.21dtv.com/songs/60103333.mkv +南方二重唱-不要问我过得好不好,http://em.21dtv.com/songs/60090766.mkv +佚名-不要问我过的好不好,http://em.21dtv.com/songs/60011632.mkv +周传雄-不要问我分手后怎么过,http://em.21dtv.com/songs/60011631.mkv +巫启贤-别以为男人就不会哭,http://em.21dtv.com/songs/60010750.mkv +谢延久-不要为了爱而伤自己,http://em.21dtv.com/songs/60064019.mkv +陈洁丽-被遗忘的时光+我愿意,http://em.21dtv.com/songs/60010309.mkv +赵纲-不要肆意挥霍我的爱,http://em.21dtv.com/songs/60123200.mkv +刘和刚-白杨树你看到了什么,http://em.21dtv.com/songs/60009746.mkv +陈娟儿-不要说给不起的承诺,http://em.21dtv.com/songs/60074791.mkv +阿力-不要让想你的人悲伤,http://em.21dtv.com/songs/60128494.mkv +于浩宸-不要让我再为你流泪,http://em.21dtv.com/songs/60066889.mkv +陈震-不要让我再爱你再想你(无原唱),http://em.21dtv.com/songs/60011605.mkv +珍美儿-不要让我一个人入睡,http://em.21dtv.com/songs/60084937.mkv +罗愉-不要让我苦苦等太久,http://em.21dtv.com/songs/60135627.mkv +望海高歌-不要让我苦苦等太久,http://em.21dtv.com/songs/60135337.mkv +李贵府-不要让爱你的人再受伤,http://em.21dtv.com/songs/60011599.mkv +伦永亮-不要拿我和他做比较,http://em.21dtv.com/songs/60011582.mkv +冷漠-别用你的残忍折磨我,http://em.21dtv.com/songs/60010753.mkv +浩音乐-不要迷恋哥寂寞的传说,http://em.21dtv.com/songs/60074784.mkv +小虫-不要连你也让我心碎,http://em.21dtv.com/songs/60011578.mkv +冯汉树-宝玉哭晴雯之哭晴雯,http://em.21dtv.com/songs/60010015.mkv +张素媚-本应该随母亲离京避难,http://em.21dtv.com/songs/60010332.mkv +羽泉-不应给你的却给了你,http://em.21dtv.com/songs/60011688.mkv +杨坤+丁诗瑀-不要告别,http://em.21dtv.com/songs/60112005.mkv +张计划-不要等我变了说爱我,http://em.21dtv.com/songs/60120523.mkv +佚名-不要从我的眼中离开,http://em.21dtv.com/songs/60011533.mkv +Rae Sremmurd-By Chance,http://em.21dtv.com/songs/60124973.mkv +陈艺搏-不愿错过你,http://em.21dtv.com/songs/60111494.mkv +吴峙轩-不要背着别人说爱我,http://em.21dtv.com/songs/60011522.mkv +周冰倩-别用冰冷的爱靠近我,http://em.21dtv.com/songs/60010752.mkv +戴爱玲-不想再爱不明白的爱,http://em.21dtv.com/songs/60080471.mkv +顺子-不想一个人 night s alone cryin,http://em.21dtv.com/songs/60011483.mkv +佚名-播下美丽鲜花的种子,http://em.21dtv.com/songs/60010920.mkv +金城-不想回家的女人2011,http://em.21dtv.com/songs/60011460.mkv +TFBOYS-不完美小孩 红蜻蜓,http://em.21dtv.com/songs/60118281.mkv +TRASH-别忘了那天我们醒着,http://em.21dtv.com/songs/60109117.mkv +笑天+金丹-别忘记我们说过的话,http://em.21dtv.com/songs/60120843.mkv +梅葆玖-霸王别姬-劝君王饮酒听虞歌,http://em.21dtv.com/songs/60009645.mkv +BEAST-Butterfly,http://em.21dtv.com/songs/60129889.mkv +BEAST-Butterfly,http://em.21dtv.com/songs/60123449.mkv +防弹少年团-Butterfly,http://em.21dtv.com/songs/60118992.mkv +Crazy Town-Butterfly,http://em.21dtv.com/songs/60104660.mkv +SING女团-Bulu Bulu,http://em.21dtv.com/songs/60120239.mkv +羽泉-不停地不停地不停地,http://em.21dtv.com/songs/60117128.mkv +姜育恒-把所有依恋留给明天,http://em.21dtv.com/songs/60074574.mkv +陶钰玉-不是因为寂寞才想你[演],http://em.21dtv.com/songs/60101565.mkv +陶钰玉-不是因为寂寞才想你,http://em.21dtv.com/songs/60088921.mkv +T.R.Y-不是因为寂寞才想你,http://em.21dtv.com/songs/60011391.mkv +海阔-不是因为寂寞才相爱,http://em.21dtv.com/songs/60100286.mkv +郭富城-把所有的爱都留给你,http://em.21dtv.com/songs/60009584.mkv +郑源-别说我的眼泪你无所谓,http://em.21dtv.com/songs/60010709.mkv +张振宇-别说我的眼泪你无所谓,http://em.21dtv.com/songs/60010708.mkv +东来东往-别说我的眼泪你无所谓,http://em.21dtv.com/songs/60010707.mkv +陈少华-别说我的眼泪你无所谓,http://em.21dtv.com/songs/60010706.mkv +卜星慧-别说晚安,http://em.21dtv.com/songs/60119327.mkv +林爽-不是男朋友不算朋友,http://em.21dtv.com/songs/60074755.mkv +高霞-别说你还忘不了过去,http://em.21dtv.com/songs/60114282.mkv +张清芳-八十年代美丽的哀愁,http://em.21dtv.com/songs/60066496.mkv +林志颖-不是每个恋曲都有美好回忆,http://em.21dtv.com/songs/60011371.mkv +张卫健+林志颖-不是每个恋曲都有美好回忆(演唱会),http://em.21dtv.com/songs/60011370.mkv +萧全-蹦沙卡拉卡,http://em.21dtv.com/songs/60123118.mkv +六哲-被伤过的心还可以爱谁,http://em.21dtv.com/songs/60010304.mkv +孙露-悲伤的眼泪逆流成河,http://em.21dtv.com/songs/60069245.mkv +李贵府-不是对不起都换来没关系,http://em.21dtv.com/songs/60061069.mkv +闫桂祥-白蛇传-亲儿的脸吻儿的腮,http://em.21dtv.com/songs/60009731.mkv +林晓培-别随便说要送我回家,http://em.21dtv.com/songs/60010717.mkv +张冬玲-别说爱你是我一厢情愿,http://em.21dtv.com/songs/60010689.mkv +喜多村英梨-be starters,http://em.21dtv.com/songs/60063138.mkv +唐古-别让眼泪轻易的落下,http://em.21dtv.com/songs/60127865.mkv +汤雷-别让我寂寞的爱着你,http://em.21dtv.com/songs/60066870.mkv +黄绮珊-不让我的眼泪陪我过夜,http://em.21dtv.com/songs/60074751.mkv +齐秦-不让我的眼泪陪我过夜,http://em.21dtv.com/songs/60011315.mkv +李翊君-不让我的眼泪陪我过夜(演唱会),http://em.21dtv.com/songs/60011314.mkv +徐健淇-不让我的眼泪陪我过夜(演唱会),http://em.21dtv.com/songs/60069273.mkv +木禾-别让我的爱无家可归,http://em.21dtv.com/songs/60082626.mkv +金泽-别让我承受一生的罪,http://em.21dtv.com/songs/60100524.mkv +西单女孩-别让你的泪打湿我的眼,http://em.21dtv.com/songs/60066869.mkv +王杰-别让明天的太阳离开我,http://em.21dtv.com/songs/60010648.mkv +无印良品-别人都说我们会分开,http://em.21dtv.com/songs/60010682.mkv +林隆璇-别人的情歌比我好听,http://em.21dtv.com/songs/60010678.mkv +波拉-般若波罗蜜多心经成,http://em.21dtv.com/songs/60121860.mkv +轲然-别让爱着你的女人哭,http://em.21dtv.com/songs/60094708.mkv +于金胜-别让爱你的人伤了心,http://em.21dtv.com/songs/60111682.mkv +张磊-别让爱成为一种伤害,http://em.21dtv.com/songs/60089283.mkv +阿悄-不怕,http://em.21dtv.com/songs/60124602.mkv +lol-Boyfriend,http://em.21dtv.com/songs/60134742.mkv +Charli XCX-Boom Clap,http://em.21dtv.com/songs/60101741.mkv +MISS KO+葛仲珊-Boom Boom,http://em.21dtv.com/songs/60109850.mkv +Foxes-Body Talk,http://em.21dtv.com/songs/60117453.mkv +张瀚元-白娘子你不该爱许仙,http://em.21dtv.com/songs/60118565.mkv +张莹-不能想你又不能不想你,http://em.21dtv.com/songs/60011280.mkv +陈晓东-把你写进我的情歌里,http://em.21dtv.com/songs/60093739.mkv +龙梅子+群星-别拿我的红包当游戏,http://em.21dtv.com/songs/60134522.mkv +群星-别拿我的红包当游戏,http://em.21dtv.com/songs/60131730.mkv +龙梅子+群星-别拿我的红包当游戏,http://em.21dtv.com/songs/60115438.mkv +群星-别拿我的红包当游戏,http://em.21dtv.com/songs/60115334.mkv +龙梅子-别拿我的感情当游戏,http://em.21dtv.com/songs/60134521.mkv +龙梅子-别拿我的感情当游戏,http://em.21dtv.com/songs/60115556.mkv +黑豹乐队-不能让我的烦恼没机会表白(演唱会),http://em.21dtv.com/songs/60011272.mkv +媚焱森森-把你默默地放在我的心里,http://em.21dtv.com/songs/60009573.mkv +郭顶-把你的外套留在深巷,http://em.21dtv.com/songs/60130804.mkv +俞晴-把你的手让我牵牵好吗,http://em.21dtv.com/songs/60009568.mkv +大哲-宝马与爱情,http://em.21dtv.com/songs/60113369.mkv +谢安琪-卑面派对+不可一世,http://em.21dtv.com/songs/60093173.mkv +张祥洪-宝马车里哭泣的女人,http://em.21dtv.com/songs/60010012.mkv +邓颖芝-玻璃鞋之粉碎三角琴,http://em.21dtv.com/songs/60010914.mkv +丁泽强+林惠敏-Blue Sued,http://em.21dtv.com/songs/60094795.mkv +孝琳+Changmo-BLUE MOON,http://em.21dtv.com/songs/60135108.mkv +王飞雪-柏拉图之恋2060,http://em.21dtv.com/songs/60113889.mkv +京剧-包龙头打座在开封府,http://em.21dtv.com/songs/60089599.mkv +佚名-包龙图打座在开封府,http://em.21dtv.com/songs/60009947.mkv +苏玮-巴黎圣母院的敲钟人,http://em.21dtv.com/songs/60108837.mkv +张清芳-八零年代美丽的哀愁(无原唱),http://em.21dtv.com/songs/60009482.mkv +李自强-不流泪不是我不难过,http://em.21dtv.com/songs/60088043.mkv +莫艳琳-别了耳听爱情的年纪,http://em.21dtv.com/songs/60109602.mkv +谢雷-碧兰村的姑娘+梨山痴情花,http://em.21dtv.com/songs/60010438.mkv +周华健+苏慧伦-不可能是不可能的事,http://em.21dtv.com/songs/60082650.mkv +秦海璐-北京一夜,http://em.21dtv.com/songs/60123058.mkv +石磊-不结婚的恋爱都是耍流氓,http://em.21dtv.com/songs/60074733.mkv +拜金小姐-拜金国际俱乐部啦啦队之歌,http://em.21dtv.com/songs/60009818.mkv +阿弟-把酒倒在你的酒窝里,http://em.21dtv.com/songs/60009558.mkv +陈梓童-不见不散,http://em.21dtv.com/songs/60126389.mkv +iKON-北京北京,http://em.21dtv.com/songs/60122384.mkv +大张伟-BiuBiuBiu,http://em.21dtv.com/songs/60122633.mkv +AOA-Bing Bing,http://em.21dtv.com/songs/60131031.mkv +张祥洪-别怪我的无情伤害了你,http://em.21dtv.com/songs/60010584.mkv +伍义-不该让爱你的人流泪,http://em.21dtv.com/songs/60011074.mkv +熊七梅-不敢看你端坐的姿势,http://em.21dtv.com/songs/60111250.mkv +周艳泓-白骨精写给孙悟空的信,http://em.21dtv.com/songs/60065833.mkv +廖芳-不管还有多少个明天,http://em.21dtv.com/songs/60011124.mkv +初百军-不管还有多少个明天,http://em.21dtv.com/songs/60011123.mkv +羽泉-不该给你的却给了你,http://em.21dtv.com/songs/60091870.mkv +陈天红-不该放手2013版,http://em.21dtv.com/songs/60082643.mkv +庄心妍-不够诚实,http://em.21dtv.com/songs/60126834.mkv +苏有朋-百分之一百零二爱情(演唱会),http://em.21dtv.com/songs/60009776.mkv +那我懂你意思了-不负责任男人的挽留,http://em.21dtv.com/songs/60110573.mkv +陈绮贞-百分之八十完美的生活,http://em.21dtv.com/songs/60009771.mkv +基地小虎-并非故意不想去爱你,http://em.21dtv.com/songs/60010877.mkv +春天+毕福剑-北风吹扎红头绳,http://em.21dtv.com/songs/60070525.mkv +柯有伦-Be Ur Man,http://em.21dtv.com/songs/60106031.mkv +派伟俊-BE STRONG,http://em.21dtv.com/songs/60122960.mkv +BewhY+Code Kunst+杨东根+Suran-Beside Me,http://em.21dtv.com/songs/60129891.mkv +Monsta X-Beautiful,http://em.21dtv.com/songs/60134767.mkv +HEART B-Beautiful,http://em.21dtv.com/songs/60114943.mkv +KIXS+San E-Beautiful,http://em.21dtv.com/songs/60109836.mkv +王思佳-BEAUTIFUI(HD),http://em.21dtv.com/songs/10012802.mkv +孙嘉敏-别等我离开才说爱我,http://em.21dtv.com/songs/60010570.mkv +鲍勃-布达拉宫,http://em.21dtv.com/songs/60129824.mkv +王洋-不到喀什不算到新疆,http://em.21dtv.com/songs/60094601.mkv +张建国-白帝城-白甲白盔白旗号,http://em.21dtv.com/songs/60009653.mkv +MC HOTDOG+蛋堡-不吃早餐才是一件很嘻哈的事,http://em.21dtv.com/songs/60069264.mkv +于文华+尹相杰-把城里的哥哥娶回家,http://em.21dtv.com/songs/60009550.mkv +罗嘉良-彼此的世界早已拉近,http://em.21dtv.com/songs/60010398.mkv +赵传-不曾在你面前掉过泪,http://em.21dtv.com/songs/60011023.mkv +一袋天椒+缘分心儿-别把自己放得太遥远,http://em.21dtv.com/songs/60074683.mkv +刘雁+欧阳勇征-别把自己放得太遥远,http://em.21dtv.com/songs/60010568.mkv +雨宗林-别把疼你的人弄丢了,http://em.21dtv.com/songs/60129770.mkv +雨宗林-别把疼你的人弄丢了,http://em.21dtv.com/songs/60124670.mkv +继风-爸爸是我学习的榜样,http://em.21dtv.com/songs/60130644.mkv +高原-比悲伤更悲伤的情歌,http://em.21dtv.com/songs/60109045.mkv +金范秀-比悲伤更悲伤的故事,http://em.21dtv.com/songs/60010369.mkv +高文君-宝贝你怎么能让我流泪,http://em.21dtv.com/songs/60009998.mkv +苏可菲-爸爸妈妈我想对你说,http://em.21dtv.com/songs/60074579.mkv +姬诗雅-爸爸妈妈听我心里话,http://em.21dtv.com/songs/60114474.mkv +陆虎-爸爸妈妈去上班我去幼儿园,http://em.21dtv.com/songs/60009630.mkv +莫小风-八百里动洞庭美如画,http://em.21dtv.com/songs/60091959.mkv +比比-比比间间的走在外头(无原唱),http://em.21dtv.com/songs/60010371.mkv +王绎龙-不变的音乐(无损),http://em.21dtv.com/songs/50000269.mkv +龙军-别把爱情想的太完美,http://em.21dtv.com/songs/60089084.mkv +龙军-别把爱情想得太完美,http://em.21dtv.com/songs/60010564.mkv +威仔+颜寒-不爱我就不要说爱我,http://em.21dtv.com/songs/60126774.mkv +江凯文-不爱我就不要给我祝福,http://em.21dtv.com/songs/60010975.mkv +乐桐-不爱我就不要给我机会,http://em.21dtv.com/songs/60074713.mkv +鸿飞-不爱我就别管我爱谁,http://em.21dtv.com/songs/60110720.mkv +周冰倩-把爱停在你不能杀伤的距离,http://em.21dtv.com/songs/60009543.mkv +Lady Antebellum-Bartender,http://em.21dtv.com/songs/60101784.mkv +佚名-把爱情寄在远远的地方,http://em.21dtv.com/songs/60009540.mkv +陈梓童-Bang Bang,http://em.21dtv.com/songs/60114869.mkv +张靓颖-BANG BANG,http://em.21dtv.com/songs/60108509.mkv +Jessie J+Ariana Grande+Nicki Minaj-Bang Bang,http://em.21dtv.com/songs/60103786.mkv +Hotties-Bambambam,http://em.21dtv.com/songs/60115592.mkv +周蕙-不爱了也是一种爱,http://em.21dtv.com/songs/60063458.mkv +Taylor Swift+Kendrick Lamar-Bad Blood,http://em.21dtv.com/songs/60111655.mkv +Bastille-Bad Blood,http://em.21dtv.com/songs/60110747.mkv +French Montana+jeremih-Bad Bitch,http://em.21dtv.com/songs/60117456.mkv +ANDY GRAMMER-BACK HOME,http://em.21dtv.com/songs/60129881.mkv +Petite Meller-Baby Love,http://em.21dtv.com/songs/60113180.mkv +韩小薰-Baby Hero,http://em.21dtv.com/songs/60095159.mkv +沈建宏-Baby Girl,http://em.21dtv.com/songs/60130533.mkv +沈建宏-Baby Girl,http://em.21dtv.com/songs/60129338.mkv +龙千玉-爱着一个不该爱的人,http://em.21dtv.com/songs/60009240.mkv +孙渔-爱着她又不能伤害你,http://em.21dtv.com/songs/60009238.mkv +杨千桦-爱在旁若无人的太空,http://em.21dtv.com/songs/60124105.mkv +梁雁翎-爱在你意想不到的地方,http://em.21dtv.com/songs/60009181.mkv +群星-爱在每个人心中传递,http://em.21dtv.com/songs/60009175.mkv +林峰-爱在记忆中找你+夏日倾情,http://em.21dtv.com/songs/60009167.mkv +六哲-爱曾经是我犯下的错,http://em.21dtv.com/songs/60068087.mkv +秀才-爱一万次都不够,http://em.21dtv.com/songs/60074525.mkv +王力宏-爱依然执着,http://em.21dtv.com/songs/60112095.mkv +满文军-爱一个人需要理由吗(演唱会),http://em.21dtv.com/songs/60009050.mkv +陈明真-爱一个人是很苦的事,http://em.21dtv.com/songs/60009049.mkv +吴炜-爱一个人可以爱多久,http://em.21dtv.com/songs/60009045.mkv +陈明真-爱一个人等于爱上孤独,http://em.21dtv.com/songs/60009040.mkv +吴淑敏-爱一分伤一分痛一分,http://em.21dtv.com/songs/60009035.mkv +巫启贤-爱有多深就会有多远(演唱会),http://em.21dtv.com/songs/60074529.mkv +张仰华+杜绍颖-艾伊达尼,http://em.21dtv.com/songs/60129066.mkv +王馨平-爱我一生一世好不好,http://em.21dtv.com/songs/60008943.mkv +王馨-爱我你就把我来追求,http://em.21dtv.com/songs/60094236.mkv +佚名-爱我就像世界没有明天(无原唱),http://em.21dtv.com/songs/60008930.mkv +本善本幻-爱我就和我一起生活,http://em.21dtv.com/songs/60114585.mkv +周俊伟-爱为何不多给我们一些时间,http://em.21dtv.com/songs/60008873.mkv +伟轩-爱我的人为何伤害我,http://em.21dtv.com/songs/60121363.mkv +游鸿明-爱我的人和我爱的人,http://em.21dtv.com/songs/60008907.mkv +吴泓君-爱我的人和我爱的人,http://em.21dtv.com/songs/60008906.mkv +裘海正-爱我的人和我爱的人,http://em.21dtv.com/songs/60008905.mkv +迪克牛仔-爱我的人和我爱的人,http://em.21dtv.com/songs/60008904.mkv +迪克牛仔-爱我的人和我爱的人(演唱会),http://em.21dtv.com/songs/60008903.mkv +洪荣宏-爱我的人不是我所爱的人(无原唱),http://em.21dtv.com/songs/60008902.mkv +程鸣-爱我的人别怕我受伤,http://em.21dtv.com/songs/60107940.mkv +金钰儿-爱我的人不敢说爱我,http://em.21dtv.com/songs/60103643.mkv +Red Velvet-Automatic,http://em.21dtv.com/songs/60110791.mkv +Miranda Lambert-Automatic,http://em.21dtv.com/songs/60099013.mkv +王荣华-庵堂认母-昼长夜长愁更长,http://em.21dtv.com/songs/60009343.mkv +王荣华-庵堂认母-认儿反倒害儿身,http://em.21dtv.com/songs/60009342.mkv +张洋-爱上这个负心的女人,http://em.21dtv.com/songs/60074488.mkv +严热-爱上一头不懂爱的猪,http://em.21dtv.com/songs/60131137.mkv +张丹丹-爱是一颗幸福的子弹,http://em.21dtv.com/songs/60103264.mkv +汪峰-爱是一颗幸福的子弹,http://em.21dtv.com/songs/60008811.mkv +陈松伶-爱是永恒,http://em.21dtv.com/songs/60123304.mkv +李克勤-爱是永恒,http://em.21dtv.com/songs/60120607.mkv +东浩-爱上一个虚伪的女人,http://em.21dtv.com/songs/60074487.mkv +湘东雨-爱上一个人只要一天,http://em.21dtv.com/songs/60097958.mkv +苏永康-爱上一个人永远不会太迟,http://em.21dtv.com/songs/60008728.mkv +张旭-爱上一个人恋一座城,http://em.21dtv.com/songs/60111872.mkv +陈明真-爱上一个人等于爱上孤独,http://em.21dtv.com/songs/60008726.mkv +彭佳慧-爱上一个不回家的人,http://em.21dtv.com/songs/60133706.mkv +常石磊+萨顶顶-爱上一个不回家的人,http://em.21dtv.com/songs/60098315.mkv +卓依婷-爱上一个不回家的人,http://em.21dtv.com/songs/60089181.mkv +郁可唯-爱上一个不回家的人,http://em.21dtv.com/songs/60082532.mkv +林忆莲-爱上一个不回家的人,http://em.21dtv.com/songs/60008722.mkv +高胜美-爱上一个不回家的人,http://em.21dtv.com/songs/60008721.mkv +张敬轩-爱上一个不回家的人(演唱会),http://em.21dtv.com/songs/60008720.mkv +叶倩文-爱上一个不回家的人(演唱会),http://em.21dtv.com/songs/60008719.mkv +草蜢-爱上一个不回家的人(演唱会),http://em.21dtv.com/songs/60008718.mkv +林忆莲-爱上一个不回家的人(演唱会),http://em.21dtv.com/songs/60061014.mkv +胡小宝-爱上一个不该爱的人,http://em.21dtv.com/songs/60127298.mkv +李真-爱上一个不该爱的人,http://em.21dtv.com/songs/60113644.mkv +祁隆+李俊男-爱上一个不该爱的人,http://em.21dtv.com/songs/60098680.mkv +魏宗武-爱上一个不该爱的人,http://em.21dtv.com/songs/60094357.mkv +龙千玉-爱上一个不该爱的人,http://em.21dtv.com/songs/60008717.mkv +秦瑶-爱上一个不爱我的人,http://em.21dtv.com/songs/60074486.mkv +任贤齐-爱上夏天,http://em.21dtv.com/songs/60115678.mkv +彭佳慧-爱上我所有,http://em.21dtv.com/songs/60113510.mkv +网络歌手-爱是我曾经犯下的错,http://em.21dtv.com/songs/60100377.mkv +孙艳-爱上投入别人的怀抱,http://em.21dtv.com/songs/60062961.mkv +辛晓琪-爱上他不只是我的错,http://em.21dtv.com/songs/60008710.mkv +卢佳芝-爱是让人放心的地方,http://em.21dtv.com/songs/60102011.mkv +郑中基-爱是如何伤了你我的心,http://em.21dtv.com/songs/60008787.mkv +何晋-爱上你这样多情的人,http://em.21dtv.com/songs/60089611.mkv +林雨-爱上你这个无情的人,http://em.21dtv.com/songs/60065809.mkv +郭美美-爱是你眼里的一首情歌,http://em.21dtv.com/songs/60008784.mkv +马常宝+王雅娴-爱上你我真的错了吗,http://em.21dtv.com/songs/60082531.mkv +蔡献华-爱上你我真的错了吗(舞曲版),http://em.21dtv.com/songs/60015974.mkv +蔡枫华-爱上你我真的错了吗,http://em.21dtv.com/songs/60008695.mkv +红娇-爱上你我迷失了自己,http://em.21dtv.com/songs/60119876.mkv +董静-爱上你是最美的谎言,http://em.21dtv.com/songs/60008689.mkv +杨梓-爱上你是一种流泪的幸福,http://em.21dtv.com/songs/60008687.mkv +湘东雨-爱上你是我一生的错,http://em.21dtv.com/songs/60096102.mkv +何婉盈+邓健明-爱上你是我一生的错,http://em.21dtv.com/songs/60089123.mkv +何婉盈+邓建明-爱上您是我一生的错,http://em.21dtv.com/songs/60008704.mkv +高胜美-爱上你是我一生的错,http://em.21dtv.com/songs/60008684.mkv +陈奕迅-爱上你是我眼睛的错,http://em.21dtv.com/songs/60110625.mkv +李紫涵-爱上你是我一生的错,http://em.21dtv.com/songs/60071741.mkv +朱海龙-爱上你是我忘不了的痛,http://em.21dtv.com/songs/60068069.mkv +DISCOVERY乐队-爱上你是我今生唯一的决定,http://em.21dtv.com/songs/60008683.mkv +刘维刚-爱上你是我犯下的罪,http://em.21dtv.com/songs/60008682.mkv +龙啸-爱上你是我不小心犯的错,http://em.21dtv.com/songs/60008679.mkv +紫海-爱上你是不是我错了,http://em.21dtv.com/songs/60100371.mkv +张振宇-爱上你等于爱上了错,http://em.21dtv.com/songs/60008668.mkv +符号-爱上你等于爱上了错,http://em.21dtv.com/songs/60008667.mkv +那英-爱上你等于爱上寂寞,http://em.21dtv.com/songs/60008666.mkv +郭向华-爱上你的美2013,http://em.21dtv.com/songs/60082528.mkv +刘志丹-爱上你到底是谁的错,http://em.21dtv.com/songs/60107526.mkv +谢军-爱上梦中人,http://em.21dtv.com/songs/60104435.mkv +晓依-爱上了网络爱上了你,http://em.21dtv.com/songs/60082525.mkv +贾婷婷-爱是辣舞[DJ版],http://em.21dtv.com/songs/60103582.mkv +李琛-爱上了不该爱的女人,http://em.21dtv.com/songs/60008644.mkv +谭咏麟-爱上风雨中走来的你,http://em.21dtv.com/songs/60008639.mkv +索丽娜+南风-爱是对你最好的表达,http://em.21dtv.com/songs/60134063.mkv +Gorillaz+Vince Staples-Ascension,http://em.21dtv.com/songs/60134684.mkv +慕容晓晓-爱是唱不完的一首歌,http://em.21dtv.com/songs/60097959.mkv +伍佰-爱上别人是快乐的事,http://em.21dtv.com/songs/60008634.mkv +饶天亮-爱上爱是为了忘了你,http://em.21dtv.com/songs/60088972.mkv +章永琪-爱人你何时到我身边,http://em.21dtv.com/songs/60117109.mkv +大张伟-爱如潮水,http://em.21dtv.com/songs/60125349.mkv +张信哲+樊博+敖登高娃+周雪峰-爱如潮水,http://em.21dtv.com/songs/60123914.mkv +关淑怡-爱如潮水+无尽的爱,http://em.21dtv.com/songs/60092323.mkv +卓依婷-爱情总在幻灭时最美,http://em.21dtv.com/songs/60008505.mkv +汪晨蕊-爱情转移,http://em.21dtv.com/songs/60127155.mkv +胡彦斌-爱情总是猜得到开头猜不到结局,http://em.21dtv.com/songs/60065804.mkv +冷弦-爱情怎么能这个样子,http://em.21dtv.com/songs/60093990.mkv +童安格-爱情终究是一场难圆的梦,http://em.21dtv.com/songs/60008495.mkv +胡杰夕-爱情这杯酒怎么喝都醉(舞曲版),http://em.21dtv.com/songs/60066822.mkv +闫旭+丁酉酉-爱情这杯酒谁喝都得醉,http://em.21dtv.com/songs/60066821.mkv +闫旭-爱情这杯酒谁喝都得醉,http://em.21dtv.com/songs/60061002.mkv +晓依-爱情是美酒还是毒药,http://em.21dtv.com/songs/60116864.mkv +大庆小芳-爱情伤了你爱情害了我,http://em.21dtv.com/songs/60062839.mkv +金久哲-爱情伤了多少人的心,http://em.21dtv.com/songs/60133001.mkv +孟杨-爱情是不靠谱的东西,http://em.21dtv.com/songs/60126787.mkv +郑源-爱情里没有谁对谁错,http://em.21dtv.com/songs/60008299.mkv +郑源-爱情里没有谁对谁错(演唱会),http://em.21dtv.com/songs/60008298.mkv +张智霖-爱情开了我们一个玩笑,http://em.21dtv.com/songs/60008281.mkv +晓雨-爱情和眼泪究竟谁欠谁,http://em.21dtv.com/songs/60008242.mkv +马响-爱情的眼泪伤了我的心,http://em.21dtv.com/songs/60074439.mkv +笑笑-爱情的小船说翻就翻,http://em.21dtv.com/songs/60128287.mkv +成云刚-爱情的玫瑰已经枯萎,http://em.21dtv.com/songs/60086416.mkv +钱思汝-爱情到了分开的时候,http://em.21dtv.com/songs/60065792.mkv +张翼-爱情的春天,http://em.21dtv.com/songs/60109333.mkv +孟杨-爱情不一定门当户对,http://em.21dtv.com/songs/60126786.mkv +萧全-爱情不是想象的那样,http://em.21dtv.com/songs/60008115.mkv +贾争艳-爱情不是想的那么美,http://em.21dtv.com/songs/60134251.mkv +贾争艳-爱情不是想的那么美,http://em.21dtv.com/songs/60112275.mkv +门丽-爱情不是菜,http://em.21dtv.com/songs/60110598.mkv +聂枫-爱情不能有空才珍惜,http://em.21dtv.com/songs/60122026.mkv +谢小雨+小琢-爱情本来没有对与错,http://em.21dtv.com/songs/60117231.mkv +吴灿涛-爱拼正会赢,http://em.21dtv.com/songs/60108382.mkv +FIESTAR-APPLE PIE,http://em.21dtv.com/songs/60122377.mkv +黄若鸣-爱你只留下一道伤疤,http://em.21dtv.com/songs/60008056.mkv +海镔-爱你最后伤了我自己,http://em.21dtv.com/songs/60074418.mkv +李果-爱你越深伤痛就越深,http://em.21dtv.com/songs/60063881.mkv +吴国敬-爱您是我一生中理想,http://em.21dtv.com/songs/60008061.mkv +郑秀文-爱你是我一生中理想,http://em.21dtv.com/songs/60007970.mkv +周超-爱你是我一生的执着,http://em.21dtv.com/songs/60117624.mkv +徐方-爱你是我一生的赌注,http://em.21dtv.com/songs/60082501.mkv +林晏如-爱你是我所有的言语,http://em.21dtv.com/songs/60007969.mkv +常皓-爱你是我上辈子犯的罪,http://em.21dtv.com/songs/60063879.mkv +杨子-爱你是我今生犯了错,http://em.21dtv.com/songs/60101112.mkv +冷酷-爱你是我不变的承诺,http://em.21dtv.com/songs/60121417.mkv +张越-爱你是离开你的理由,http://em.21dtv.com/songs/60128002.mkv +俞灏明-爱你让我像孩子一样,http://em.21dtv.com/songs/60104793.mkv +谢知言-爱你却只能给你玫瑰,http://em.21dtv.com/songs/60074407.mkv +涛子-爱你却牵不到你的手,http://em.21dtv.com/songs/60114664.mkv +团风依依-爱你却不知道你是谁,http://em.21dtv.com/songs/60101309.mkv +叶启田-爱你袂着我祝你幸福(无原唱),http://em.21dtv.com/songs/60007935.mkv +孟庭苇-爱你后才知道如何爱你,http://em.21dtv.com/songs/60007912.mkv +庾澄庆-爱你的只有我一个我,http://em.21dtv.com/songs/60063878.mkv +言承旭-爱你的一切永远不变,http://em.21dtv.com/songs/60007884.mkv +阿美-爱你的心停留在原地,http://em.21dtv.com/songs/60121054.mkv +王玲-爱你的心就难收回来(无原唱),http://em.21dtv.com/songs/60007879.mkv +徐方-爱你的心不要任何理由,http://em.21dtv.com/songs/60065786.mkv +吴奇隆-爱你的我今天张这样(HD),http://em.21dtv.com/songs/10012733.mkv +吴奇隆-爱你的我今天长这样,http://em.21dtv.com/songs/60103147.mkv +祁隆-爱你的话还没说出口,http://em.21dtv.com/songs/60098676.mkv +白智英-And.. And,http://em.21dtv.com/songs/60118812.mkv +于台烟-爱你不一定要得到你,http://em.21dtv.com/songs/60068047.mkv +新街口组合-爱你不是为了和你去如家(演唱会),http://em.21dtv.com/songs/60065784.mkv +盛大为-爱你比你爱我更幸福,http://em.21dtv.com/songs/60074396.mkv +林依轮-爱你爱得最深情的时候,http://em.21dtv.com/songs/60007798.mkv +连智杨-澳门也是妈妈的孩子,http://em.21dtv.com/songs/60088735.mkv +GARNiDELiA-Ambiguous,http://em.21dtv.com/songs/60098996.mkv +于瑞洋-爱了你我不会再去爱谁,http://em.21dtv.com/songs/60007706.mkv +张靓颖+John Legend-All Of Me,http://em.21dtv.com/songs/60135259.mkv +方大同+王诗安-All Night,http://em.21dtv.com/songs/60130367.mkv +方大同+王诗安-All Night,http://em.21dtv.com/songs/60129173.mkv +玲玲Linda-爱来爱去伤了两个人,http://em.21dtv.com/songs/60117053.mkv +天威-爱来爱去爱得很受伤,http://em.21dtv.com/songs/60126747.mkv +四分卫-爱可以让我们在一起,http://em.21dtv.com/songs/60081681.mkv +光良-爱可以点亮整个世界,http://em.21dtv.com/songs/60007672.mkv +R J LANGE-all i wanna do is make love to you,http://em.21dtv.com/songs/60000156.mkv +苏富权-爱恨情仇谁能躲得过,http://em.21dtv.com/songs/60074370.mkv +西楚霸王+最后一只恐龙-爱很简单,http://em.21dtv.com/songs/60129600.mkv +群星-爱很简单,http://em.21dtv.com/songs/60126060.mkv +罗中旭-爱很简单,http://em.21dtv.com/songs/60126024.mkv +iKON-爱很简单,http://em.21dtv.com/songs/60124902.mkv +奥杰阿格-阿呷嫫你想往哪里走,http://em.21dtv.com/songs/60090875.mkv +阿毛-爱过了今生就没有遗憾,http://em.21dtv.com/songs/60074360.mkv +阿木+孙浩-爱过的人还在我心里,http://em.21dtv.com/songs/60099572.mkv +阿木-爱过的人还在我心里,http://em.21dtv.com/songs/60099571.mkv +风语-爱过的你现在还好吗,http://em.21dtv.com/songs/60131983.mkv +惠永平-爱过的你现在还好吗,http://em.21dtv.com/songs/60131439.mkv +江智民-爱过的你还在我心里,http://em.21dtv.com/songs/60113770.mkv +尹熙水-爱过的你还在我心里,http://em.21dtv.com/songs/60080039.mkv +郭浩男-爱过的你还在我心里,http://em.21dtv.com/songs/60007536.mkv +任贤齐-爱过才心痛,http://em.21dtv.com/songs/60114988.mkv +郑智化-阿飞和他的那个女人,http://em.21dtv.com/songs/60006730.mkv +萧敬腾+凌菱-爱的箴言,http://em.21dtv.com/songs/60126129.mkv +优优-爱到最后只剩下回忆,http://em.21dtv.com/songs/60096187.mkv +郎郎-爱到最后只剩下回忆,http://em.21dtv.com/songs/60074317.mkv +YOYO-爱到最后只剩下回忆,http://em.21dtv.com/songs/60062182.mkv +曹格-爱到最后一秒也不委屈,http://em.21dtv.com/songs/60007131.mkv +刚辉-爱到心碎还依然爱你,http://em.21dtv.com/songs/60007117.mkv +苏有朋-爱的心是不是在乎我,http://em.21dtv.com/songs/60007425.mkv +谭咏麟+李玟-爱的替身+几分伤心几分痴,http://em.21dtv.com/songs/60007391.mkv +朔殇-爱的世界有我也有你,http://em.21dtv.com/songs/60116874.mkv +蒋婴-爱的世界你是我唯一,http://em.21dtv.com/songs/60098746.mkv +晓晓+雨巷-爱的世界不能没有你,http://em.21dtv.com/songs/60074347.mkv +任贤齐-爱的路上只有我和你(演唱会),http://em.21dtv.com/songs/60007312.mkv +陈浩德-爱的根源+雨夜的浪漫,http://em.21dtv.com/songs/60007224.mkv +李宗盛-爱的代价,http://em.21dtv.com/songs/60117811.mkv +暴脾气的小明-爱的代价,http://em.21dtv.com/songs/60129187.mkv +毕书尽-Action Go,http://em.21dtv.com/songs/60107011.mkv +刘超华-爱错了还是分手错了,http://em.21dtv.com/songs/60074309.mkv +代慧颖-爱错了还是分手错了,http://em.21dtv.com/songs/60060972.mkv +四分卫-爱曾经让我们在一起,http://em.21dtv.com/songs/60128930.mkv +梁凡-阿楚姑娘,http://em.21dtv.com/songs/60125810.mkv +张雷-爱唱歌的男人不会太坏,http://em.21dtv.com/songs/60070448.mkv +陈淑芳-暗哺夜介月光特别亮,http://em.21dtv.com/songs/60009361.mkv +毛泓艳-爱不要成为自私的囚,http://em.21dtv.com/songs/60007033.mkv +张惠妹-爱不太早不太晚刚好,http://em.21dtv.com/songs/60007025.mkv +SONAR POCKET-365日のラブストーリー,http://em.21dtv.com/songs/60063515.mkv +刘德华-もう一度抱きしめたい,http://em.21dtv.com/songs/60006702.mkv +三枝夕夏 IN DB-いつも素顔の私でいたい,http://em.21dtv.com/songs/60006649.mkv +东方神起-どうして君を好きになってしまったんだるう,http://em.21dtv.com/songs/60006678.mkv +佚名-あてがれの邮便马车,http://em.21dtv.com/songs/60006643.mkv +RSP-さくら あなたに出会えてよかった,http://em.21dtv.com/songs/60006660.mkv +邓丽君-ジェルソミーナの歩いた道(演唱会),http://em.21dtv.com/songs/60006665.mkv +SCANDAL-スキャンダルなんかブッ飞ばせ,http://em.21dtv.com/songs/60006669.mkv +三枝夕夏 IN DB-ジューンブライド~あなたしか见えない~,http://em.21dtv.com/songs/60006667.mkv +邓丽君-ミッドナイト レクイエム(演唱会),http://em.21dtv.com/songs/60006698.mkv +邓丽君-ふるさとはどこですか(演唱会),http://em.21dtv.com/songs/60006694.mkv +渡り廊下走り队7-バレンタインキッス,http://em.21dtv.com/songs/60006684.mkv +スキマスイッチ-アイスクリーム シンドローム,http://em.21dtv.com/songs/60006639.mkv +山口百恵-ありがとうあなた,http://em.21dtv.com/songs/60135157.mkv +でんぱ组INC-おつかれサマー!,http://em.21dtv.com/songs/60120258.mkv +加藤ミリヤ-リップスティック,http://em.21dtv.com/songs/60117590.mkv +ポルノグラフィティ-东京デスティニー,http://em.21dtv.com/songs/60098059.mkv +2AM-电话に出ない君に,http://em.21dtv.com/songs/60066963.mkv +冰川清志-夜雾のエアポート,http://em.21dtv.com/songs/60072695.mkv +AKB48-夕阳を见ているか,http://em.21dtv.com/songs/60068813.mkv +渡り廊下走り队-へたっぴウィンク,http://em.21dtv.com/songs/60066767.mkv +钉宫理惠-ハネウタアイヒト,http://em.21dtv.com/songs/60070433.mkv +ANGELA AKI-始まりのバラード,http://em.21dtv.com/songs/60061953.mkv +SERIAL TV DRAMA-桃源乡エイリアン,http://em.21dtv.com/songs/60061622.mkv +EXILE-ただ…逢いたくて,http://em.21dtv.com/songs/60062024.mkv +指原莉乃-それでも好きだよ,http://em.21dtv.com/songs/60068022.mkv +德永英明-さよならの向う侧,http://em.21dtv.com/songs/60105081.mkv +ナオト インティライミ-君に逢いたかった,http://em.21dtv.com/songs/60066092.mkv +乃木坂46-おいでシャンプー,http://em.21dtv.com/songs/60070428.mkv +いきものがかり-いつだって仆らは,http://em.21dtv.com/songs/60065741.mkv +小松未步-あなたがいるから,http://em.21dtv.com/songs/60068017.mkv +やなぎなぎ-アクアテラリウム,http://em.21dtv.com/songs/60101844.mkv +辛晓琪-执着在你背影守侯,http://em.21dtv.com/songs/60058717.mkv +佚名-站在需要你的地方(无原唱),http://em.21dtv.com/songs/60057521.mkv +李亮辰-再 在,http://em.21dtv.com/songs/60119644.mkv +佚名-珍重我深爱的温柔(无原唱),http://em.21dtv.com/songs/60058014.mkv +艾绮恩-坐在屋顶听你弹琴,http://em.21dtv.com/songs/60084665.mkv +群星-紫竹调 家的味道,http://em.21dtv.com/songs/60132800.mkv +叶启田-做总统大家有机会,http://em.21dtv.com/songs/60070791.mkv +佚名-做总统大家有机会,http://em.21dtv.com/songs/60060749.mkv +罗建章-战争上半场征服你,http://em.21dtv.com/songs/60057498.mkv +王丽达+汤子星-株洲人唱株洲的歌,http://em.21dtv.com/songs/60098624.mkv +陈明-枕着你的名字入眠,http://em.21dtv.com/songs/60058291.mkv +易欣-坐在马桶抽烟喝茶,http://em.21dtv.com/songs/60060688.mkv +麦子杰-在最美的夜晚停留,http://em.21dtv.com/songs/60097910.mkv +陶喆+关士鹏+刘乙如+朱浩仁-找自己,http://em.21dtv.com/songs/60126409.mkv +周蔚蒨-在指尖上跳舞的人(无原唱),http://em.21dtv.com/songs/60057218.mkv +周蔚蓓-在指尖上跳舞的人(无原唱),http://em.21dtv.com/songs/60057217.mkv +毛慧-住在海边的猫头鹰,http://em.21dtv.com/songs/60135474.mkv +梦然-最真的心,http://em.21dtv.com/songs/60122922.mkv +孙露-最真的梦,http://em.21dtv.com/songs/60112632.mkv +曾咏熙-整座城市都在下雨,http://em.21dtv.com/songs/60124030.mkv +曾咏熙-整座城市都在下雨,http://em.21dtv.com/songs/60122805.mkv +金灿-众志成城心在一起,http://em.21dtv.com/songs/60126299.mkv +李嘉格-睁一只眼闭一只眼,http://em.21dtv.com/songs/60105137.mkv +蔡依林-睁一只眼闭一只眼,http://em.21dtv.com/songs/60058327.mkv +许茹芸-在雨中,http://em.21dtv.com/songs/60114059.mkv +麦兜-仲有最靓既猪腩肉,http://em.21dtv.com/songs/60059081.mkv +TWINS-仲有最靓既猪腩肉(演唱会),http://em.21dtv.com/songs/60059080.mkv +佚名-只要自己觉得无悔,http://em.21dtv.com/songs/60058554.mkv +佚名-这一仗打得真漂亮,http://em.21dtv.com/songs/60057950.mkv +杨卫星-这一仗打得真漂亮,http://em.21dtv.com/songs/60057949.mkv +赵鑫-总有一天你会明白,http://em.21dtv.com/songs/60123208.mkv +徐子崴-转眼一生转身一世,http://em.21dtv.com/songs/60111913.mkv +张靓颖-转眼一生转身一世,http://em.21dtv.com/songs/60110214.mkv +周柏豪-只有一事不成全你,http://em.21dtv.com/songs/60065488.mkv +尹歌-只要有你在我身边,http://em.21dtv.com/songs/60104086.mkv +秦博-只要我过得比你好,http://em.21dtv.com/songs/60131709.mkv +贡尕达哇+阿斯满-这一生只牵你的手,http://em.21dtv.com/songs/60123188.mkv +群星-这一生最美的祝福,http://em.21dtv.com/songs/60072794.mkv +关泽楠-这一生有你就足够,http://em.21dtv.com/songs/60087357.mkv +琼雪卓玛-这一生说过我爱你,http://em.21dtv.com/songs/60061886.mkv +刘德华-这一生是给你一个,http://em.21dtv.com/songs/60057942.mkv +刘德华-这一生是给你一个(演唱会),http://em.21dtv.com/songs/60057941.mkv +师鹏-这一生还是你最好,http://em.21dtv.com/songs/60057938.mkv +高旭-这一生和你在一起,http://em.21dtv.com/songs/60068998.mkv +孟爱英-只要你在希望就在,http://em.21dtv.com/songs/60058525.mkv +李胜利-只要你是真心爱我,http://em.21dtv.com/songs/60102353.mkv +吴国敬-只有你肯给我认真,http://em.21dtv.com/songs/60058601.mkv +吴国敬-只要你肯给我认真,http://em.21dtv.com/songs/60058510.mkv +张惠妹-这样你还要爱我吗,http://em.21dtv.com/songs/60102217.mkv +邓海-只要能和你在一起,http://em.21dtv.com/songs/60115432.mkv +蘑菇兄弟-只要你过得比我好,http://em.21dtv.com/songs/60081598.mkv +小虫-只要你过得比我好,http://em.21dtv.com/songs/60079621.mkv +钟镇涛-只要你过得比我好,http://em.21dtv.com/songs/60058503.mkv +佚名-只要你过得比我好,http://em.21dtv.com/songs/60058502.mkv +高胜美-只要你过得比我好,http://em.21dtv.com/songs/60058501.mkv +李承哲-再也没有这样的人,http://em.21dtv.com/songs/60084508.mkv +陈琳-这一刻我是真心的,http://em.21dtv.com/songs/60057921.mkv +佚名-做一个中华好儿女,http://em.21dtv.com/songs/60060743.mkv +晨熙+艾歌-找一个相爱的理由,http://em.21dtv.com/songs/60070234.mkv +城市少女-抓一个梦想在手上(无原唱),http://em.21dtv.com/songs/60059413.mkv +东浩-做一个不哭的男人,http://em.21dtv.com/songs/60060741.mkv +刘冲-找一个爱你的理由,http://em.21dtv.com/songs/60057700.mkv +佚名-这一封书信来得巧,http://em.21dtv.com/songs/60057915.mkv +林宝-只有分离2003,http://em.21dtv.com/songs/60058583.mkv +阎维文-战友等着你的消息,http://em.21dtv.com/songs/60057487.mkv +歌一生-昨夜的雨今夜的你,http://em.21dtv.com/songs/60128149.mkv +龙梅子-重要的事情说三遍,http://em.21dtv.com/songs/60133155.mkv +门小强-重要的事情说三遍,http://em.21dtv.com/songs/60121046.mkv +陈小春-只要地球还有女人,http://em.21dtv.com/songs/60058491.mkv +赵齐-这样的美女我不爱,http://em.21dtv.com/songs/60104461.mkv +豫剧-自幼长在朝阳正院,http://em.21dtv.com/songs/60134604.mkv +郑勇-这一次我真的哭了,http://em.21dtv.com/songs/60057912.mkv +孙楠-这一次我绝不放手,http://em.21dtv.com/songs/60108426.mkv +申钰林-这一次我绝不放手,http://em.21dtv.com/songs/60103490.mkv +齐秦-这一次我绝不放手,http://em.21dtv.com/songs/60057908.mkv +佚名-再一次我还是愿意(无原唱),http://em.21dtv.com/songs/60057014.mkv +刘春云-这一次伤我最彻底(演唱会),http://em.21dtv.com/songs/60057907.mkv +张纹铭-这一次爱的好狼狈,http://em.21dtv.com/songs/60065474.mkv +孟杨-这也不行那也不行,http://em.21dtv.com/songs/60126788.mkv +唯莎-这也不对那也不对,http://em.21dtv.com/songs/60121521.mkv +袁玉峰-这样爱你能有多久,http://em.21dtv.com/songs/60114044.mkv +雨柔-只想与你走向永远,http://em.21dtv.com/songs/60094757.mkv +张秋霞-只想与你走向永远,http://em.21dtv.com/songs/60087127.mkv +李玲玉-只想要你一份牵挂,http://em.21dtv.com/songs/60089343.mkv +望海高歌-珍惜缘分,http://em.21dtv.com/songs/60115213.mkv +李金点-总想为你做点什么,http://em.21dtv.com/songs/60088051.mkv +伍天宇-只想为你喝醉一次,http://em.21dtv.com/songs/60058478.mkv +童杰-只想为你唱这首歌,http://em.21dtv.com/songs/60058477.mkv +张振宇-最心痛的人只有你,http://em.21dtv.com/songs/60060435.mkv +张振宇-最心疼的人就是你,http://em.21dtv.com/songs/60091100.mkv +野仔-中学生应该谈恋爱,http://em.21dtv.com/songs/60058989.mkv +李爱-钟祥style(蜡笔小新版),http://em.21dtv.com/songs/60079664.mkv +语录-真想让你也伤一回,http://em.21dtv.com/songs/60106281.mkv +陈康浥-走下去 别回头看我,http://em.21dtv.com/songs/60086284.mkv +办桌二人组-在心里从此有个你,http://em.21dtv.com/songs/60087435.mkv +于洋-只想和你流浪远方,http://em.21dtv.com/songs/60106582.mkv +佚名-在星光闪烁的夜晚,http://em.21dtv.com/songs/60057188.mkv +谭咏麟-只想孤单一个自己(演唱会),http://em.21dtv.com/songs/60058470.mkv +绿昕-在幸福中一起走过,http://em.21dtv.com/songs/60084514.mkv +风来-自信的女人最漂亮,http://em.21dtv.com/songs/60084602.mkv +革命歌-知心的话儿对党说,http://em.21dtv.com/songs/60090308.mkv +杭天琪-知心的话儿对党说,http://em.21dtv.com/songs/60089990.mkv +苏有朋-真心痴心换你的心,http://em.21dtv.com/songs/60091933.mkv +戏曲-钟无艳齐宣皇哭妻,http://em.21dtv.com/songs/60092739.mkv +郭富城-在我眼里你最特别(演唱会)(无原唱),http://em.21dtv.com/songs/60057176.mkv +凤凰传奇-只为遇见,http://em.21dtv.com/songs/60122512.mkv +赵薇-在我心中依然最美,http://em.21dtv.com/songs/60057173.mkv +郭富城+吴倩莲-在我生命中有了你,http://em.21dtv.com/songs/60057169.mkv +马建涛-坐我的车听我的歌(HD),http://em.21dtv.com/songs/10012838.mkv +马健涛-坐我的车听我的歌,http://em.21dtv.com/songs/60100997.mkv +滨崎步-Zutto...,http://em.21dtv.com/songs/60108690.mkv +雷光夏-昨天晚上我梦见你,http://em.21dtv.com/songs/60060592.mkv +小城星电台-昨天我不懂的问题,http://em.21dtv.com/songs/60107682.mkv +祖海-昭通是我美丽的家,http://em.21dtv.com/songs/60063506.mkv +邝美云-昨天你在哪儿过夜,http://em.21dtv.com/songs/60090243.mkv +邝美云-昨天你在那儿过夜,http://em.21dtv.com/songs/60060588.mkv +邓丽君-昨天今天,http://em.21dtv.com/songs/60103602.mkv +张胜淼-最痛的人最痛的心,http://em.21dtv.com/songs/60060423.mkv +佚名-昨天的你今天的我,http://em.21dtv.com/songs/60060576.mkv +西域胡杨-在天边还是在眼前,http://em.21dtv.com/songs/60123152.mkv +山野-只手遮天,http://em.21dtv.com/songs/60105787.mkv +张行-再说一句多余的话(演唱会),http://em.21dtv.com/songs/60056983.mkv +ASOS-至少我深爱过一次,http://em.21dtv.com/songs/60058821.mkv +孙子涵+葛雨晴-只是忘了回家的路,http://em.21dtv.com/songs/60106769.mkv +帕妃-这是我的生存之道,http://em.21dtv.com/songs/60057848.mkv +佚名-这是我的摩尔多瓦,http://em.21dtv.com/songs/60057847.mkv +张秋霞-转身是最好的选择,http://em.21dtv.com/songs/60094103.mkv +闫庭美+金兰英-真实去做胜过承诺,http://em.21dtv.com/songs/60105450.mkv +尚雯婕-在世界中心呼唤爱,http://em.21dtv.com/songs/60057134.mkv +崔子格-在世界之巅呼唤爱,http://em.21dtv.com/songs/60079486.mkv +邰正宵-这世界已正在倒数,http://em.21dtv.com/songs/60057840.mkv +吕文科-走上高高的兴安岭,http://em.21dtv.com/songs/60059941.mkv +廖晓林-走上高高的兴安岭(演唱会),http://em.21dtv.com/songs/60059940.mkv +冷漠-终身大事,http://em.21dtv.com/songs/60114408.mkv +汪东城-专属堡垒,http://em.21dtv.com/songs/60108670.mkv +动力火车-镇守爱情,http://em.21dtv.com/songs/60111729.mkv +豫剧-做人要做这样的人,http://em.21dtv.com/songs/60134542.mkv +佚名-做人要做这样的人,http://em.21dtv.com/songs/60060729.mkv +刘美君-再让我望你多一回,http://em.21dtv.com/songs/60056942.mkv +李雨寿-做人难做男人更难,http://em.21dtv.com/songs/60079835.mkv +宋祖英-真情在你的目光里,http://em.21dtv.com/songs/60090965.mkv +宋伟峰-真情总会留下伤感,http://em.21dtv.com/songs/60062922.mkv +金悦-舟曲我们心心相印,http://em.21dtv.com/songs/60059177.mkv +李玟-真情人,http://em.21dtv.com/songs/60116922.mkv +何韵诗-在青木原的第三天,http://em.21dtv.com/songs/60084510.mkv +周丹-重庆 美丽的山城,http://em.21dtv.com/songs/60108386.mkv +金泽-最牵挂你的人是我,http://em.21dtv.com/songs/60135853.mkv +王俊杰-重庆北路的少年家,http://em.21dtv.com/songs/60059140.mkv +庞龙-最亲爱亲爱的老婆,http://em.21dtv.com/songs/60089843.mkv +廖芳-最亲爱亲爱的老公,http://em.21dtv.com/songs/60060402.mkv +江湖-最亲爱亲爱的老婆,http://em.21dtv.com/songs/60065530.mkv +佚名-只盼着深山出太阳,http://em.21dtv.com/songs/60058432.mkv +sp'ACE-找片天空接收我们,http://em.21dtv.com/songs/60128704.mkv +苏贤文-只能在梦里见到你,http://em.21dtv.com/songs/60132833.mkv +彩云追月+临江听雨-只能在梦里见到你,http://em.21dtv.com/songs/60116822.mkv +彩云追月-只能在梦里见到你,http://em.21dtv.com/songs/60116821.mkv +临江听雨-只能在梦里见到你,http://em.21dtv.com/songs/60116510.mkv +韩春雨-做你一生最爱的人,http://em.21dtv.com/songs/60130877.mkv +李潮-在那银色的月光下,http://em.21dtv.com/songs/60087101.mkv +董文华-在那银色的月光下(演唱会),http://em.21dtv.com/songs/60057100.mkv +存在-在你眼里我算什么,http://em.21dtv.com/songs/60071496.mkv +叶玉卿-只能笑笑说没什么,http://em.21dtv.com/songs/60058423.mkv +马可谦+杨超+何方-祝你幸福2013,http://em.21dtv.com/songs/60116393.mkv +周越洪-在你说爱我的时候,http://em.21dtv.com/songs/60119362.mkv +王铮亮-知你冷暖懂你悲欢,http://em.21dtv.com/songs/60124290.mkv +敖都-祝你健康,http://em.21dtv.com/songs/60107756.mkv +贺世哲-做你怀里的那只猫,http://em.21dtv.com/songs/60067843.mkv +紫海-最难过寂寞是自己,http://em.21dtv.com/songs/60118836.mkv +B.A.P-在哪儿?做什么?,http://em.21dtv.com/songs/60101016.mkv +白燕升-在你的世界外爱你,http://em.21dtv.com/songs/60068975.mkv +许嵩-在那不遥远的地方,http://em.21dtv.com/songs/60057083.mkv +Snh48-在你变成星星之前,http://em.21dtv.com/songs/60107436.mkv +带泪的鱼-怎么做都是我的错,http://em.21dtv.com/songs/60099988.mkv +袁成杰-怎么拥有才算是爱,http://em.21dtv.com/songs/60102722.mkv +草蜢-怎么天生不是女人,http://em.21dtv.com/songs/60057387.mkv +容祖儿-怎么天生不是女人(演唱会),http://em.21dtv.com/songs/60057386.mkv +雷佳-最美是你,http://em.21dtv.com/songs/60103698.mkv +张洪波-怎么说出心中的痛,http://em.21dtv.com/songs/60057382.mkv +欧啦-怎么就放开我的手,http://em.21dtv.com/songs/60066583.mkv +千荷-最美还是我们新疆,http://em.21dtv.com/songs/60060381.mkv +巴哈尔古丽-最美还是我们新疆,http://em.21dtv.com/songs/60060380.mkv +郑源-怎么会忍心伤害我,http://em.21dtv.com/songs/60088770.mkv +黄品源-怎么会让我失去你,http://em.21dtv.com/songs/60057360.mkv +高斌-怎么会狠心伤害我,http://em.21dtv.com/songs/60113099.mkv +郑源-怎么会狠心伤害我,http://em.21dtv.com/songs/60057357.mkv +关心妍-怎么会爱上这个人(演唱会),http://em.21dtv.com/songs/60057356.mkv +陈思思-最美的人,http://em.21dtv.com/songs/60113054.mkv +天喜果-最美的情歌唱起来,http://em.21dtv.com/songs/60135091.mkv +宋祖英-最美的女人是妈妈,http://em.21dtv.com/songs/60060373.mkv +大风-咱们的领袖毛主席,http://em.21dtv.com/songs/60057246.mkv +李政飞-咱们的领袖毛泽东,http://em.21dtv.com/songs/60111975.mkv +张伟进-咱们的领袖毛泽东,http://em.21dtv.com/songs/60057245.mkv +佚名-咱们的领袖毛泽东,http://em.21dtv.com/songs/60057244.mkv +张冬玲-最美的姑娘在拉萨,http://em.21dtv.com/songs/60120503.mkv +蒋大为-最美的歌唱给妈妈(演唱会),http://em.21dtv.com/songs/60060367.mkv +阿旺+央金-最美的歌唱给妈妈(演唱会),http://em.21dtv.com/songs/60072835.mkv +蔺鲜鲜-最美的草原内蒙古,http://em.21dtv.com/songs/60117202.mkv +孙中亮-怎么都不会忘记你,http://em.21dtv.com/songs/60079501.mkv +李丰-最美不过是咱的家,http://em.21dtv.com/songs/60108555.mkv +郭桓宇-知冷知热的好男人,http://em.21dtv.com/songs/60117287.mkv +蔡荣祖-这里有爱等我回来,http://em.21dtv.com/songs/60057823.mkv +蔡荣祖-这里有爱等你回来,http://em.21dtv.com/songs/60089467.mkv +何大河-猪老三,http://em.21dtv.com/songs/60118335.mkv +佚名-张郎你听我从实讲,http://em.21dtv.com/songs/60057538.mkv +梁博-镇隆的荔枝红天下,http://em.21dtv.com/songs/60129311.mkv +常石磊-这里的黎明静悄悄,http://em.21dtv.com/songs/60114517.mkv +东来东往-这里的冬天不下雪[消伴],http://em.21dtv.com/songs/60100760.mkv +东来东往-这里的冬天不下雪,http://em.21dtv.com/songs/60095184.mkv +刘欣茹-这里的冬天不下雪,http://em.21dtv.com/songs/60057816.mkv +刘欣茹-这里的冬天不下雪(演唱会),http://em.21dtv.com/songs/60057815.mkv +蔡佳麟-这款的爱情温温痛,http://em.21dtv.com/songs/60057814.mkv +陶喆-再见之前先说再见,http://em.21dtv.com/songs/60090300.mkv +张宇-再见以前先说再见,http://em.21dtv.com/songs/60091075.mkv +罗长华-再见以后不会再见,http://em.21dtv.com/songs/60124353.mkv +薛凯琪-最近我爱上了lily allen,http://em.21dtv.com/songs/60060346.mkv +韩雪-这就是我们的青春,http://em.21dtv.com/songs/60072791.mkv +慕容晓晓-再叫你一声亲爱的,http://em.21dtv.com/songs/60131448.mkv +阿香-走进你神秘的西藏,http://em.21dtv.com/songs/60103665.mkv +夹子乐团-再加5块钱狂想曲,http://em.21dtv.com/songs/60056808.mkv +张杰-最接近天堂的地方,http://em.21dtv.com/songs/60063378.mkv +Exo-至今还是黑暗的夜,http://em.21dtv.com/songs/60113156.mkv +李炎-只见花开未见你来,http://em.21dtv.com/songs/60098470.mkv +王建芳-只见花开未见你来,http://em.21dtv.com/songs/60087126.mkv +天芯-自己的女人自己宠,http://em.21dtv.com/songs/60126757.mkv +孙一夫-最近的你和谁最近,http://em.21dtv.com/songs/60066621.mkv +王子月+栗雅馨-再见不应该在秋天,http://em.21dtv.com/songs/60079460.mkv +聂枫-再见不应该我先说,http://em.21dtv.com/songs/60134133.mkv +彭羚-这回忆都不给我吗,http://em.21dtv.com/songs/60091180.mkv +书画-最后一次为你流泪,http://em.21dtv.com/songs/60079795.mkv +汪峰-最后一次我见到你,http://em.21dtv.com/songs/60101418.mkv +杨林-最后一次说声爱你,http://em.21dtv.com/songs/60079793.mkv +耿维华-中华我们共同的家,http://em.21dtv.com/songs/60091890.mkv +高浚-最后说一声我爱你,http://em.21dtv.com/songs/60060235.mkv +叶胜钦-再会啦无缘彼个人,http://em.21dtv.com/songs/60056780.mkv +阿正-最后的温柔(演唱会),http://em.21dtv.com/songs/60071555.mkv +JS-最后倒数,http://em.21dtv.com/songs/60114948.mkv +范晓萱-最好的爱煞人武器(演唱会),http://em.21dtv.com/songs/60060146.mkv +达明一派-最好的爱煞人武器(演唱会),http://em.21dtv.com/songs/60060145.mkv +动力火车-再会吧我的心上人(演唱会),http://em.21dtv.com/songs/60056772.mkv +佚名-祖公仔行过的所在,http://em.21dtv.com/songs/60059991.mkv +张冬玲-中国中国向前向前,http://em.21dtv.com/songs/60058942.mkv +姬长乐-中国最棒中国最强,http://em.21dtv.com/songs/60103187.mkv +张信哲-致光阴,http://em.21dtv.com/songs/60125491.mkv +张振宇-中国一家人演唱会),http://em.21dtv.com/songs/60058930.mkv +群星-中国我永远爱着你,http://em.21dtv.com/songs/60058923.mkv +袁惟仁-再给我一点时间啊,http://em.21dtv.com/songs/60122101.mkv +魏松-祖国我深深地爱你,http://em.21dtv.com/songs/60079760.mkv +尤国通-祖国万岁人民万岁,http://em.21dtv.com/songs/60104976.mkv +江涛+张迈-中国我可爱的家乡,http://em.21dtv.com/songs/60058922.mkv +聂艳-中国我的父母之邦,http://em.21dtv.com/songs/60112151.mkv +于文华-祖国是我永远的家,http://em.21dtv.com/songs/60060008.mkv +邱小玲-做个男人要有志气(无原唱),http://em.21dtv.com/songs/60060702.mkv +晟瑶-找个男人就嫁了吧,http://em.21dtv.com/songs/60079535.mkv +吴碧霞-中国梦,http://em.21dtv.com/songs/60125299.mkv +群星-中国加油四川雄起,http://em.21dtv.com/songs/60058895.mkv +张学友-中国节拍震动世界(演唱会),http://em.21dtv.com/songs/60079651.mkv +刘思伟-找个好人就嫁了吧,http://em.21dtv.com/songs/60057676.mkv +甄秀珍-这个故事没有结局(无原唱),http://em.21dtv.com/songs/60057789.mkv +宋祖英-祖国的笑容多么美,http://em.21dtv.com/songs/60090966.mkv +佚名-祖国啊我父母之邦,http://em.21dtv.com/songs/60059994.mkv +巴忠-祝福香达我的故乡,http://em.21dtv.com/songs/60059337.mkv +林妙可-祝福你亲爱的祖国(演唱会),http://em.21dtv.com/songs/60065503.mkv +周亮+黄伟麟-祝福九九祝福澳门,http://em.21dtv.com/songs/60059314.mkv +王杰灏-纸飞机和他的秘密,http://em.21dtv.com/songs/60106109.mkv +许惟一+唐文君-在凤凰落脚的地方,http://em.21dtv.com/songs/60118910.mkv +舒方-真的有一位神爱你,http://em.21dtv.com/songs/60128330.mkv +高春义-再多伤只有藏心底,http://em.21dtv.com/songs/60087095.mkv +MAMAMOO-值得期待的好日子,http://em.21dtv.com/songs/60121283.mkv +周彦宏-只等你的哥哥到来,http://em.21dtv.com/songs/60090837.mkv +陶晶莹-真的假的,http://em.21dtv.com/songs/60094753.mkv +林子祥-真的汉子_大丈夫,http://em.21dtv.com/songs/60088094.mkv +龚月-长大后我就成了你,http://em.21dtv.com/songs/60074880.mkv +宋祖英-长大后我就成了你,http://em.21dtv.com/songs/60057571.mkv +郑东-早点回来,http://em.21dtv.com/songs/60104482.mkv +郭斯炫-再多给我一点时间,http://em.21dtv.com/songs/60084503.mkv +凤飞飞-走的多远想你多久(无原唱),http://em.21dtv.com/songs/60059879.mkv +李果-这到底算是谁的错,http://em.21dtv.com/songs/60057764.mkv +小刘欢-真的不再爱我了吗,http://em.21dtv.com/songs/60058090.mkv +陈宏斌-真的爱上这片草原,http://em.21dtv.com/songs/60122230.mkv +陈宏斌-真的爱上这片草原,http://em.21dtv.com/songs/60086243.mkv +M.I.C.男团-这次真的是你不对(演唱会),http://em.21dtv.com/songs/60057763.mkv +越剧-自从与张君见一面,http://em.21dtv.com/songs/60059675.mkv +革命歌-争创先进连队之歌,http://em.21dtv.com/songs/60088942.mkv +颜卓灵+King@C Allsta-战场上的最后探戈,http://em.21dtv.com/songs/60110676.mkv +孙耀威-战场上的最后圣诞,http://em.21dtv.com/songs/60057466.mkv +郭富城-战场上的快乐圣诞,http://em.21dtv.com/songs/60057465.mkv +郭富城-战场上的快乐圣诞(演唱会),http://em.21dtv.com/songs/60057464.mkv +韩磊+潘倩倩-在此刻,http://em.21dtv.com/songs/60124694.mkv +任剑辉+白雪仙-紫钗记之阳关折柳(无原唱),http://em.21dtv.com/songs/60059639.mkv +刘惠鸣+白雪红-紫钗记之阳关折柳,http://em.21dtv.com/songs/60069030.mkv +群星-紫钗记之吞钗拒婚,http://em.21dtv.com/songs/60059638.mkv +任剑辉-紫钗记之拾钗结缘,http://em.21dtv.com/songs/60059637.mkv +群星-紫钗记之节镇宣恩,http://em.21dtv.com/songs/60059636.mkv +吕珊+胡美仪-紫钗记之剑合钗圆(戏曲),http://em.21dtv.com/songs/60092444.mkv +任剑辉+白雪仙-紫钗记之剑合钗圆(无原唱),http://em.21dtv.com/songs/60062859.mkv +任剑辉+白雪仙-紫钗记之花院盟香(无原唱),http://em.21dtv.com/songs/60059635.mkv +邓志驹+李池湘-紫钗记+阳关折柳(戏曲),http://em.21dtv.com/songs/60093245.mkv +佚名-自从爱着你-吉鲁巴,http://em.21dtv.com/songs/60059669.mkv +潘润康-这辈子永远欠你的,http://em.21dtv.com/songs/60115277.mkv +无悔+红蔷薇-这辈子爱的就是你,http://em.21dtv.com/songs/60116858.mkv +孙建华-做白求恩精神传人,http://em.21dtv.com/songs/60111803.mkv +李琪-做白求恩精神传人,http://em.21dtv.com/songs/60099319.mkv +魏如萱-在不确定的世界里,http://em.21dtv.com/songs/60101579.mkv +谭天昂-转不回的时光荏苒,http://em.21dtv.com/songs/60086269.mkv +佚名-在贝尔加湖的草原,http://em.21dtv.com/songs/60057037.mkv +李翊君-找不到人天荒地老,http://em.21dtv.com/songs/60057664.mkv +何君妮-再爱我一天就足够,http://em.21dtv.com/songs/60087301.mkv +野人-早安你好欢迎光临,http://em.21dtv.com/songs/60086214.mkv +韩晶-最爱的人最是伤害,http://em.21dtv.com/songs/60060085.mkv +杨小弈-最爱的人最深的伤,http://em.21dtv.com/songs/60060084.mkv +阿赖-最爱的人伤我最深,http://em.21dtv.com/songs/60114188.mkv +李炜+江映蓉-最爱的人伤我最深,http://em.21dtv.com/songs/60098478.mkv +萨顶顶+巫启贤-最爱的人伤我最深,http://em.21dtv.com/songs/60084633.mkv +张惠妹+张雨生-最爱的人伤我最深,http://em.21dtv.com/songs/60060082.mkv +佚名-最爱的人伤我最深,http://em.21dtv.com/songs/60060081.mkv +全辉-最爱的人离我远去,http://em.21dtv.com/songs/60101262.mkv +刘嘉亮+雨宗林-一直在梦想的路上,http://em.21dtv.com/songs/60099797.mkv +黄雅莉-远在咫尺近在天边,http://em.21dtv.com/songs/60132018.mkv +赵薇-一直下雨的星期天,http://em.21dtv.com/songs/60053917.mkv +关燕萍-一直下雨的星期天,http://em.21dtv.com/songs/60053916.mkv +谢佳-云在水上你在心上,http://em.21dtv.com/songs/60123174.mkv +成于申-一转身就是一辈子,http://em.21dtv.com/songs/60118591.mkv +忧忧-用最傻的方式爱你,http://em.21dtv.com/songs/60054935.mkv +陈亚兰-一只牛要卖五千块(无原唱),http://em.21dtv.com/songs/60095982.mkv +佚名-一只牛要卖五千块(无原唱),http://em.21dtv.com/songs/60053887.mkv +郑进一-胭脂马拄到关老爷,http://em.21dtv.com/songs/60051931.mkv +庄心妍-有种离开叫舍不得,http://em.21dtv.com/songs/60130292.mkv +梦龙乐团-亚洲巨龙世界神话,http://em.21dtv.com/songs/60051910.mkv +刚辉-要走就别在说爱我,http://em.21dtv.com/songs/60087434.mkv +刚辉-要走就别再说爱我,http://em.21dtv.com/songs/60052407.mkv +李晓杰-远走高飞,http://em.21dtv.com/songs/60108573.mkv +佚名-要走的始终都要走,http://em.21dtv.com/songs/60052406.mkv +田震-雨中的鸟依然在飞,http://em.21dtv.com/songs/60055748.mkv +杨洋-一种承诺两种结果,http://em.21dtv.com/songs/60084380.mkv +花粥-远在北方孤独的鬼,http://em.21dtv.com/songs/60120876.mkv +丁当-有一种勇气叫放弃,http://em.21dtv.com/songs/60105538.mkv +丁当-有一种勇气叫放弃,http://em.21dtv.com/songs/60104755.mkv +音萌萌-有一种心痛叫回忆,http://em.21dtv.com/songs/60133093.mkv +花世纪-有一种心跳跟微笑,http://em.21dtv.com/songs/60055380.mkv +赵强-有一种幸福叫约定,http://em.21dtv.com/songs/60061850.mkv +祖海-有一种味道叫家乡,http://em.21dtv.com/songs/60108749.mkv +子力-有一种伤心叫沉默,http://em.21dtv.com/songs/60065403.mkv +于湉-有一种力量叫傻瓜,http://em.21dtv.com/songs/60106583.mkv +烁嘉-有一种东西叫做爱,http://em.21dtv.com/songs/60079302.mkv +西单女孩-有一种爱总在身旁,http://em.21dtv.com/songs/60063134.mkv +熊大-有一种爱叫做守望,http://em.21dtv.com/songs/60098617.mkv +寒香-有一种爱叫做思念,http://em.21dtv.com/songs/60135133.mkv +冷漠-有一种爱叫做满足,http://em.21dtv.com/songs/60055378.mkv +王雅洁-有一种爱叫做放手,http://em.21dtv.com/songs/60103477.mkv +刘栋升-有一种爱叫做放手,http://em.21dtv.com/songs/60055377.mkv +阿木-有一种爱叫做放手,http://em.21dtv.com/songs/60055376.mkv +倪尓萍-有一种爱叫不联系,http://em.21dtv.com/songs/60126610.mkv +路童+珍美儿-有一种爱不能牵手,http://em.21dtv.com/songs/60055374.mkv +陈兴瑜-瑜言又止2014,http://em.21dtv.com/songs/60102874.mkv +林志炫-夜夜夜夜,http://em.21dtv.com/songs/60079068.mkv +韩庚-亚运有我精彩之吉,http://em.21dtv.com/songs/60088949.mkv +李羿慧-鸳鸯弦,http://em.21dtv.com/songs/60104222.mkv +钟汉良-有一天我们都会老,http://em.21dtv.com/songs/60065402.mkv +詹曼铃-有缘熟悉无份相爱,http://em.21dtv.com/songs/60071460.mkv +吴亚玲-一月思念眉尖若蹙,http://em.21dtv.com/songs/60053855.mkv +邝美云-用一生爱你够不够,http://em.21dtv.com/songs/60054932.mkv +TFBOYS-样(YOUNG),http://em.21dtv.com/songs/60109898.mkv +许强-忧郁女人的心酸泪,http://em.21dtv.com/songs/60134220.mkv +李茂山-烟雨蒙蒙,http://em.21dtv.com/songs/60115230.mkv +李亮辰-有一块青苔很明显,http://em.21dtv.com/songs/60124054.mkv +潘美辰-一样还是等不到你,http://em.21dtv.com/songs/60091662.mkv +孙佳-永远和人民在一起,http://em.21dtv.com/songs/60086155.mkv +董芹-永远跟随在你身旁,http://em.21dtv.com/songs/60112205.mkv +罗丽雯-有一个女子叫江南,http://em.21dtv.com/songs/60122003.mkv +张燕-有一个美丽的地方,http://em.21dtv.com/songs/60091141.mkv +燕妮-有一个美丽的地方,http://em.21dtv.com/songs/60088261.mkv +吴春燕-有一个美丽的地方(演唱会),http://em.21dtv.com/songs/60063095.mkv +曲比阿乌-有一个美丽的地方,http://em.21dtv.com/songs/60055358.mkv +佚名-有一个美丽的传说,http://em.21dtv.com/songs/60055357.mkv +阎维文-有一个美丽的传说,http://em.21dtv.com/songs/60055356.mkv +刘斌-有一个美丽的传说,http://em.21dtv.com/songs/60055355.mkv +孟江-有一个姑娘叫卓玛,http://em.21dtv.com/songs/60080241.mkv +甘萍-遥远的只是一颗心,http://em.21dtv.com/songs/60091759.mkv +施丽君-永远唱我的好花红,http://em.21dtv.com/songs/60121723.mkv +方季惟-夜夜抱着歉意入眠,http://em.21dtv.com/songs/60052671.mkv +李盈萱-雨呀!不通笑阮憨(无原唱),http://em.21dtv.com/songs/60095625.mkv +韩磊-有些罪恶不容消洗,http://em.21dtv.com/songs/60107351.mkv +家家-也许 也许你爱我,http://em.21dtv.com/songs/60097902.mkv +刘心-游响云停,http://em.21dtv.com/songs/60106642.mkv +佚名-也许我不是最美丽,http://em.21dtv.com/songs/60052447.mkv +何方-也许我不是最美丽(无原唱),http://em.21dtv.com/songs/60052446.mkv +王喆-银杏树生长的地方,http://em.21dtv.com/songs/60067716.mkv +朱业晋-有些回忆没有声音,http://em.21dtv.com/songs/60115992.mkv +李雪莱-有些故事叫周杰伦,http://em.21dtv.com/songs/60127062.mkv +驿动儿+海浪飞歌-依心而行无憾今生,http://em.21dtv.com/songs/60129811.mkv +皓天-有许多话想对你说,http://em.21dtv.com/songs/60129446.mkv +方梦诚-要我怎么把你忘记,http://em.21dtv.com/songs/60087917.mkv +雨凡-因为有你所以快乐,http://em.21dtv.com/songs/60128567.mkv +郑智化-用我一辈子去忘记,http://em.21dtv.com/songs/60054900.mkv +单飞-用我一辈子去爱你,http://em.21dtv.com/songs/60112554.mkv +瑞雪-因为我们相信自己,http://em.21dtv.com/songs/60129426.mkv +孙潮义-因为我们彼此爱过,http://em.21dtv.com/songs/60098236.mkv +儿歌-洋娃娃和小熊跳舞,http://em.21dtv.com/songs/60090643.mkv +SS501-因为我的脑袋不好,http://em.21dtv.com/songs/60054276.mkv +曾轶可-夜晚屋顶会飞的贼,http://em.21dtv.com/songs/60080355.mkv +何方-因为你永远不是我,http://em.21dtv.com/songs/60054255.mkv +袁宇-因为你是我的老婆,http://em.21dtv.com/songs/60086144.mkv +夏韶声-一万年更high节奏曲(演唱会),http://em.21dtv.com/songs/60053757.mkv +才仁卓玛+格绒格西-愿我们永远来相会,http://em.21dtv.com/songs/60087903.mkv +梁雁翎-因为明天要说再见,http://em.21dtv.com/songs/60054238.mkv +DAVICHI-因为今天格外想你,http://em.21dtv.com/songs/60086142.mkv +韩信-一万个分手的理由,http://em.21dtv.com/songs/60098919.mkv +周汤豪-亿万分之一的机率,http://em.21dtv.com/songs/60079183.mkv +邑奇-用我的一生说爱你,http://em.21dtv.com/songs/60054897.mkv +巩宏国-用我的一生说爱你,http://em.21dtv.com/songs/60054896.mkv +李纲锋-用我的一生去爱你,http://em.21dtv.com/songs/60124090.mkv +王宏伟-用我的心握你的手,http://em.21dtv.com/songs/60091692.mkv +浩轩-因为爱 所以放弃,http://em.21dtv.com/songs/60101426.mkv +宇桐非-因为爱你所以放弃,http://em.21dtv.com/songs/60070164.mkv +越调-越调诸葛亮吊孝原,http://em.21dtv.com/songs/60134623.mkv +梦凯-怨天怨地,http://em.21dtv.com/songs/60111210.mkv +彭羚-一天三百六十五年,http://em.21dtv.com/songs/60089295.mkv +甜美真-又踏进这伤心城市,http://em.21dtv.com/songs/60079313.mkv +2PM-一天到晚只想着你,http://em.21dtv.com/songs/60084374.mkv +张雨生-一天到晚游泳的鱼,http://em.21dtv.com/songs/60053711.mkv +王建芳-一生最美好的回忆,http://em.21dtv.com/songs/60098638.mkv +李炎-一生最美好的回忆,http://em.21dtv.com/songs/60098469.mkv +孙楠-一生只等一个爱人,http://em.21dtv.com/songs/60053619.mkv +陈瑞-有谁知道我在等你,http://em.21dtv.com/songs/60106414.mkv +菜籽-耶稣耶稣我的性命,http://em.21dtv.com/songs/60123116.mkv +刘牧-一生一世能爱几回,http://em.21dtv.com/songs/60065348.mkv +刘牧-一生一世爱能几回(演唱会),http://em.21dtv.com/songs/60066526.mkv +六哲-一生逍遥,http://em.21dtv.com/songs/60109992.mkv +欢子-有谁像我一样疼你,http://em.21dtv.com/songs/60055315.mkv +龙啸-一声兄弟一生兄弟,http://em.21dtv.com/songs/60100692.mkv +贾富营+望海高歌-一声兄弟一生情意,http://em.21dtv.com/songs/60127435.mkv +潘美辰-于是我学会了原谅,http://em.21dtv.com/songs/60055495.mkv +阿来-又是三更念一个人,http://em.21dtv.com/songs/60114179.mkv +洪荣宏-雨虽然无情你有情,http://em.21dtv.com/songs/60095793.mkv +佚名-雨虽然无情你有情,http://em.21dtv.com/songs/60055702.mkv +魏君华-一首情歌唱醉了我,http://em.21dtv.com/songs/60107368.mkv +陈淑桦-亚瑟潘的四个朋友,http://em.21dtv.com/songs/60051903.mkv +何笃霖-一生能有几次选择,http://em.21dtv.com/songs/60053563.mkv +乌兰托娅+李嘉石-遇上你是咱俩的缘,http://em.21dtv.com/songs/60110826.mkv +李嘉石+郑东-遇上你是咱俩的缘,http://em.21dtv.com/songs/60079360.mkv +佚名-用什么感觉来写你,http://em.21dtv.com/songs/60054890.mkv +汤薇恩-一首没唱完的情歌,http://em.21dtv.com/songs/60131592.mkv +张海-遇上了就不要放手,http://em.21dtv.com/songs/60113482.mkv +黄鹤翔+冰玉-一生离不开的是你,http://em.21dtv.com/songs/60053560.mkv +江蕙-夜色+苦酒的探戈,http://em.21dtv.com/songs/60095730.mkv +黎瑞恩-遇上今生最爱的人,http://em.21dtv.com/songs/60055861.mkv +钟明秋-一生何求,http://em.21dtv.com/songs/60108090.mkv +雪儿达娃-银色噶乌,http://em.21dtv.com/songs/60105503.mkv +陈绮贞-一首歌让你带回去,http://em.21dtv.com/songs/60111492.mkv +孙青-一生的罪2010,http://em.21dtv.com/songs/60053543.mkv +方顺吉+魏嘉榆-一生的爱拢是为你,http://em.21dtv.com/songs/60065344.mkv +曾航生-越是痴心越是伤心,http://em.21dtv.com/songs/60056606.mkv +阿桑格莱鹏措+央金兰泽-玉树不要悲伤哭泣(演唱会),http://em.21dtv.com/songs/60084466.mkv +阿桑格来鹏措+央金兰泽-玉树不要悲伤哭泣,http://em.21dtv.com/songs/60080414.mkv +张冬玲-一生爱你,http://em.21dtv.com/songs/60126860.mkv +贾争艳-伊人永远守望着你,http://em.21dtv.com/songs/60112273.mkv +苏永康-有人为妳偷偷在哭,http://em.21dtv.com/songs/60088538.mkv +苏永康-有人为你偷偷在哭,http://em.21dtv.com/songs/60055290.mkv +慕容晓晓-有人听我的歌流泪,http://em.21dtv.com/songs/60097911.mkv +高安-依然把你放在心里,http://em.21dtv.com/songs/60053997.mkv +戴安娜-一起走到永远好吗,http://em.21dtv.com/songs/60100061.mkv +林德信-友情以上爱情以下,http://em.21dtv.com/songs/60079271.mkv +SWEETY-17岁女生的温柔,http://em.21dtv.com/songs/60101036.mkv +桑紫菲-一切随风,http://em.21dtv.com/songs/60106998.mkv +佚名-愿亲人早日养好伤,http://em.21dtv.com/songs/60056214.mkv +欧阳菲菲-有情人总被无情伤,http://em.21dtv.com/songs/60055274.mkv +陈淑桦-亚琴潘的四个朋友,http://em.21dtv.com/songs/60051897.mkv +王宝强+龙梅子-有钱没钱回家过年,http://em.21dtv.com/songs/60055262.mkv +龙梅子-有钱没钱回家过年,http://em.21dtv.com/songs/60055261.mkv +李贵府-有钱就是这么任性,http://em.21dtv.com/songs/60107804.mkv +陈慧琳-一切很美只因有你,http://em.21dtv.com/songs/60053432.mkv +陈慧琳-一切很美只因有你(HD),http://em.21dtv.com/songs/10012554.mkv +李玟-一千个挚爱的理由,http://em.21dtv.com/songs/60091330.mkv +小峰峰-一千个伤心的理由,http://em.21dtv.com/songs/60131359.mkv +张学友-一千个伤心的理由,http://em.21dtv.com/songs/60053394.mkv +张江-一千个伤心的理由,http://em.21dtv.com/songs/60053393.mkv +张学友-一千个伤心的理由(演唱会),http://em.21dtv.com/songs/60053392.mkv +TANK-一千个伤心的理由(演唱会),http://em.21dtv.com/songs/60070147.mkv +孙子涵-一千个分手的理由,http://em.21dtv.com/songs/60067704.mkv +萧磊-有钱的男人你别爱,http://em.21dtv.com/songs/60107167.mkv +棉花糖-一起等地球爆炸吧,http://em.21dtv.com/songs/60079131.mkv +大哲-有钱的大哥听我说,http://em.21dtv.com/songs/60086163.mkv +陈奕+沈建宏-友情传说,http://em.21dtv.com/songs/60119010.mkv +么多多-扬起奥林匹克风帆,http://em.21dtv.com/songs/60052155.mkv +安雯-崖畔上酸枣红艳艳,http://em.21dtv.com/songs/60051878.mkv +白志雄-Your Day,http://em.21dtv.com/songs/60135595.mkv +朴宰范+Okasian-You Know,http://em.21dtv.com/songs/60122829.mkv +天堂飘雪-有你真好,http://em.21dtv.com/songs/60110117.mkv +张信哲-有你真的会快乐吗,http://em.21dtv.com/songs/60055252.mkv +林德信-异能者的爱情生活,http://em.21dtv.com/songs/60079185.mkv +沈志仲-与你相恋的每一天,http://em.21dtv.com/songs/60108674.mkv +ED SHEERAN-you need me i dont need you,http://em.21dtv.com/songs/60063813.mkv +林晏如-月娘岛有我在等你,http://em.21dtv.com/songs/60056476.mkv +沈梓萌-羊年大吉羊年大利,http://em.21dtv.com/songs/60108682.mkv +徐子崴-有你的地方是天堂,http://em.21dtv.com/songs/60119572.mkv +朱潮勇-有您的地方就有家,http://em.21dtv.com/songs/60121757.mkv +蒋鑫怡-有你的从前无字幕,http://em.21dtv.com/songs/60088585.mkv +蒋小涵-有你才有温暖的家(儿歌),http://em.21dtv.com/songs/60090195.mkv +黄名伟-有没有听见我在哭(无原唱),http://em.21dtv.com/songs/60055182.mkv +伍天宇-有没有人真爱过你,http://em.21dtv.com/songs/60133359.mkv +华语群星-有没有那么一首歌(HD),http://em.21dtv.com/songs/10012715.mkv +陈楚生+何洁+林俊逸+刘明辉-有没有那么一首歌,http://em.21dtv.com/songs/60098879.mkv +华语群星-有没有那么一首歌,http://em.21dtv.com/songs/60097912.mkv +黄鹤翔-有没有爱情无所谓,http://em.21dtv.com/songs/60055177.mkv +沈凌云-月满西楼,http://em.21dtv.com/songs/60098562.mkv +李文亮-有明天不要说再见,http://em.21dtv.com/songs/60055199.mkv +王丽达-沂蒙山我的娘亲亲,http://em.21dtv.com/songs/60054025.mkv +F.I.R-you make me want to fall in love,http://em.21dtv.com/songs/60006562.mkv +兰鸽-一面落泪一面歌唱,http://em.21dtv.com/songs/60062561.mkv +仓木麻衣-一秒ごとにlove for you,http://em.21dtv.com/songs/60053305.mkv +格西亚-原来这旋律在等你,http://em.21dtv.com/songs/60124154.mkv +王心凌-原来这才是真的你,http://em.21dtv.com/songs/60055975.mkv +周燕君-一路阳光灿烂你我,http://em.21dtv.com/songs/60070145.mkv +东来东往+朱玲菲-原来心疼是种惩罚,http://em.21dtv.com/songs/60079374.mkv +储毅-原来幸福并不遥远,http://em.21dtv.com/songs/60105600.mkv +储毅-原来幸福并不遥远,http://em.21dtv.com/songs/60087083.mkv +吴建豪-原来我早就爱上你,http://em.21dtv.com/songs/60103152.mkv +蔡妍-原来我一直很快乐,http://em.21dtv.com/songs/60081608.mkv +艾尼瓦尔江-原来我一直很孤单,http://em.21dtv.com/songs/60117998.mkv +黄美珍-原来我也可以幸福,http://em.21dtv.com/songs/60130936.mkv +黄美珍-原来我也可以幸福,http://em.21dtv.com/songs/60129846.mkv +冷漠-原来我们都不快乐,http://em.21dtv.com/songs/60099783.mkv +佚名-原谅我把你当作她,http://em.21dtv.com/songs/60055995.mkv +徐誉滕-月亮是穷人的浪漫,http://em.21dtv.com/songs/60080323.mkv +苏永康-原来思念也有生命,http://em.21dtv.com/songs/60055966.mkv +陈黎明-原来你喜欢的是他,http://em.21dtv.com/songs/60071474.mkv +侧田-原来你什么都想要,http://em.21dtv.com/songs/60055955.mkv +张杰+王中幸子-原来你什么都不要,http://em.21dtv.com/songs/60111076.mkv +胡彦斌-原来你什么都不要,http://em.21dtv.com/songs/60110475.mkv +张杰-原来你什么都不要,http://em.21dtv.com/songs/60079371.mkv +张惠妹-原来你什么都不要,http://em.21dtv.com/songs/60055954.mkv +孙燕姿-原来你什么都不要,http://em.21dtv.com/songs/60055953.mkv +许志安-原来你什么都不要(演唱会),http://em.21dtv.com/songs/60055952.mkv +黄品源-原来你什么都不要(演唱会),http://em.21dtv.com/songs/60055951.mkv +迪克牛仔-原来你什么都不要(演唱会),http://em.21dtv.com/songs/60055950.mkv +关闳仁-原来你就在我身边,http://em.21dtv.com/songs/60055948.mkv +刘德华-月老你的野蛮男友,http://em.21dtv.com/songs/60089672.mkv +甲子蕙-原来那不是你要的,http://em.21dtv.com/songs/60055942.mkv +詹雅雯-原来你不识爱过我,http://em.21dtv.com/songs/60055945.mkv +棉花糖-一零零个太阳月亮,http://em.21dtv.com/songs/60070292.mkv +曾春年-眼泪留不住女人心,http://em.21dtv.com/songs/60124032.mkv +孟杨-眼泪留不住男人心,http://em.21dtv.com/songs/60079010.mkv +裘海正-音乐咖啡失眠的人,http://em.21dtv.com/songs/60054322.mkv +崇秀平-伊犁河我心中的歌,http://em.21dtv.com/songs/60094488.mkv +TWINS-月亮光光天涯孤客,http://em.21dtv.com/songs/60092216.mkv +辛晓琪-原来的我,http://em.21dtv.com/songs/60079369.mkv +至上励合-鸭梨大,http://em.21dtv.com/songs/60116215.mkv +王昊-游乐场里没有快乐,http://em.21dtv.com/songs/60055004.mkv +陈明真-眼泪不再为你而流,http://em.21dtv.com/songs/60052067.mkv +李秋泽-音乐不停,http://em.21dtv.com/songs/60105158.mkv +戴军+盖丽丽-有了爱就不再孤独,http://em.21dtv.com/songs/60091237.mkv +裘海正-一颗心住着两个人,http://em.21dtv.com/songs/60053236.mkv +红蔷薇-一颗心只为你牵绊,http://em.21dtv.com/songs/60110447.mkv +刘雷-一颗心只为你牵绊,http://em.21dtv.com/songs/60097901.mkv +周慧敏-一颗心只能爱一回,http://em.21dtv.com/songs/60053235.mkv +姚斯婷-一颗为你命名的星,http://em.21dtv.com/songs/60125367.mkv +张挥-有空请Call我,http://em.21dtv.com/songs/60105039.mkv +黎明-有空请爱我+befor the party(演唱会),http://em.21dtv.com/songs/60055161.mkv +孙楠-一块红布^南泥湾,http://em.21dtv.com/songs/60108421.mkv +贺世哲-一加一等于我爱你,http://em.21dtv.com/songs/60067701.mkv +贺世哲+波拉-一加一等于我爱你,http://em.21dtv.com/songs/60067700.mkv +卢广仲-有吉他的流行歌曲,http://em.21dtv.com/songs/60072745.mkv +齐晨-遇见什么样的爱情,http://em.21dtv.com/songs/60134514.mkv +铭鑫-遇见你是我的缘分,http://em.21dtv.com/songs/60113032.mkv +费玉清+吉鹏飞+黄枭+韩基男-一剪梅,http://em.21dtv.com/songs/60123190.mkv +杨坤+旦增尼玛-一剪梅,http://em.21dtv.com/songs/60112780.mkv +胡彦斌+黄小琥-一剪梅,http://em.21dtv.com/songs/60094258.mkv +群星-一九九七永恒的爱,http://em.21dtv.com/songs/60053198.mkv +陈辉雄-一九九六穷得漂亮,http://em.21dtv.com/songs/60053196.mkv +陈大天-一句话惹毛女朋友,http://em.21dtv.com/songs/60124626.mkv +贺一航-有家的男人不能碰,http://em.21dtv.com/songs/60100477.mkv +崔天琪-眼睛到地面的距离,http://em.21dtv.com/songs/60105788.mkv +古巨基-眼睛不能没有眼泪,http://em.21dtv.com/songs/60065302.mkv +叶红-叶红只有我的心懂(无原唱),http://em.21dtv.com/songs/60052507.mkv +CHER-you havent seen the last of me,http://em.21dtv.com/songs/60074185.mkv +孙燕姿-雨还是不停地落下,http://em.21dtv.com/songs/60097931.mkv +何佳乐-云花开,http://em.21dtv.com/songs/60121364.mkv +刘圳-耶和华是我的牧者,http://em.21dtv.com/songs/60098142.mkv +苏运莹-萤火虫,http://em.21dtv.com/songs/60109593.mkv +张本煜-萤火虫你要去哪儿,http://em.21dtv.com/songs/60131403.mkv +迪玛希-一个忧伤着的求救,http://em.21dtv.com/songs/60132954.mkv +韦唯-一个无法等到的人,http://em.21dtv.com/songs/60053112.mkv +小曾-一个退伍兵的爱情,http://em.21dtv.com/songs/60053106.mkv +林玉英-又搁是风雨的晚暝(无原唱),http://em.21dtv.com/songs/60095687.mkv +吸引力-一个师傅三个徒弟,http://em.21dtv.com/songs/60053104.mkv +童可可-一个人也能好好过,http://em.21dtv.com/songs/60080279.mkv +威仔+格子兮-一个人也会好好的,http://em.21dtv.com/songs/60133549.mkv +曾沛慈-一个人想着一个人,http://em.21dtv.com/songs/60072706.mkv +杨林-一个人心醉心碎后,http://em.21dtv.com/songs/60107818.mkv +王小婉-一个人习惯一个人,http://em.21dtv.com/songs/60124254.mkv +白天不懂爷的黑-一个人,http://em.21dtv.com/songs/60129442.mkv +韩红+邓晓坤-一个人,http://em.21dtv.com/songs/60123366.mkv +林剑衡-有个人我依然在等,http://em.21dtv.com/songs/60062649.mkv +张爽+赵姝-一个人两个人唱歌,http://em.21dtv.com/songs/60053063.mkv +冷漠-一个人喝酒容易醉,http://em.21dtv.com/songs/60105623.mkv +糖糖乐团-一个人的夜太孤单,http://em.21dtv.com/songs/60065329.mkv +黄致列-一个人的天荒地老,http://em.21dtv.com/songs/60120166.mkv +张宇-一个人的天荒地老,http://em.21dtv.com/songs/60053037.mkv +张宇-一个人的天荒地老(演唱会),http://em.21dtv.com/songs/60053036.mkv +江志丰-一个人的生日快乐,http://em.21dtv.com/songs/60121852.mkv +张晓明-一个人的情不自禁,http://em.21dtv.com/songs/60135203.mkv +芝麻-一个人唱歌的时候,http://em.21dtv.com/songs/60089455.mkv +佚名-一个人唱歌的时候,http://em.21dtv.com/songs/60052999.mkv +陈艾玲-一个人唱歌的时候(无原唱),http://em.21dtv.com/songs/60052998.mkv +贺一航-一个人不要去草原,http://em.21dtv.com/songs/60120953.mkv +苏永康-一个人不如两个人,http://em.21dtv.com/songs/60052996.mkv +赵奕欢-一个人爱上一个人,http://em.21dtv.com/songs/60084349.mkv +孙淑媚-一个人爱过一个人,http://em.21dtv.com/songs/60052994.mkv +蒋婴-月光爬上姑娘的窗,http://em.21dtv.com/songs/60098745.mkv +杨紫-阳光男孩阳光女孩,http://em.21dtv.com/songs/60052182.mkv +佚名-一个女孩名叫婉君,http://em.21dtv.com/songs/60052971.mkv +唐明-一个没有家的女人,http://em.21dtv.com/songs/60116675.mkv +李欣-一个叫未名的湖泊,http://em.21dtv.com/songs/60127041.mkv +本兮+谭炜星-一个故事,http://em.21dtv.com/songs/60094533.mkv +金娃-一个地方之燕子河,http://em.21dtv.com/songs/60113024.mkv +老狼-一个北京人在北京,http://em.21dtv.com/songs/60052949.mkv +燕妮-月光啊下的凤尾竹,http://em.21dtv.com/songs/60088260.mkv +孟庭苇-一个爱上浪漫的人,http://em.21dtv.com/songs/60052948.mkv +高原-缘分让我曾爱过你,http://em.21dtv.com/songs/60113096.mkv +天堂飘雪+海风-远方的我在等着你,http://em.21dtv.com/songs/60099178.mkv +海风-远方的我在等着你,http://em.21dtv.com/songs/60079394.mkv +刘玉婉-远方的书信乘风来,http://em.21dtv.com/songs/60056145.mkv +储毅-远方的人儿何时来,http://em.21dtv.com/songs/60105605.mkv +龙凤之约-远方的客人请你来,http://em.21dtv.com/songs/60128649.mkv +龚月-月儿弯弯照九州岛,http://em.21dtv.com/songs/60089090.mkv +冯玮君-一二三四五六七八,http://em.21dtv.com/songs/60052919.mkv +SKE48-1!2!3!4!ヨロシク,http://em.21dtv.com/songs/60000003.mkv +陈乔恩-Yes I Do,http://em.21dtv.com/songs/60130827.mkv +王思佳-yes i do,http://em.21dtv.com/songs/60118780.mkv +Joy-Yeowooya,http://em.21dtv.com/songs/60133218.mkv +苏志燮+启明星-18 Years,http://em.21dtv.com/songs/60102656.mkv +龙梅子+袁耀发-鱼的眼泪在海心里,http://em.21dtv.com/songs/60121196.mkv +刘嘉亮-有多少人值得去爱,http://em.21dtv.com/songs/60106634.mkv +袁玉峰-雨打湿了爱的温度,http://em.21dtv.com/songs/60112954.mkv +范玮琪+MC HOTDOG-一到十等于我和你,http://em.21dtv.com/songs/60052845.mkv +暴走萝莉+童话里不是骗人的-有多少爱可以重来,http://em.21dtv.com/songs/60128060.mkv +张靓颖+韩庚-有多少爱可以重来,http://em.21dtv.com/songs/60110215.mkv +帕尔哈提-有多少爱可以重来,http://em.21dtv.com/songs/60104993.mkv +余枫-有多少爱可以重来,http://em.21dtv.com/songs/60103885.mkv +黄绮珊+苟乃鹏+张起通-有多少爱可以重来,http://em.21dtv.com/songs/60101203.mkv +杨培安+迪克牛仔+萧煌奇-有多少爱可以重来,http://em.21dtv.com/songs/60098506.mkv +秦妮-有多少爱可以重来,http://em.21dtv.com/songs/60084436.mkv +卓依婷-有多少爱可以重来,http://em.21dtv.com/songs/60055115.mkv +黄仲昆-有多少爱可以重来,http://em.21dtv.com/songs/60055114.mkv +迪克牛仔-有多少爱可以重来,http://em.21dtv.com/songs/60055113.mkv +温拿乐队-有多少爱可以重来(演唱会),http://em.21dtv.com/songs/60055112.mkv +迪克牛仔-有多少爱可以重来(演唱会),http://em.21dtv.com/songs/60055111.mkv +邓紫琪-有多少爱可以重来,http://em.21dtv.com/songs/60079277.mkv +彭羚-要多美丽有多美丽,http://em.21dtv.com/songs/60052362.mkv +ELVIS PRESLEY-you dont have to say you love me,http://em.21dtv.com/songs/60006534.mkv +音萌萌-一段回不去的曾经,http://em.21dtv.com/songs/60133084.mkv +陈玉建-缘多份少,http://em.21dtv.com/songs/60104567.mkv +王二妮-一对对鸳鸯水上漂,http://em.21dtv.com/songs/60129380.mkv +崔苗-一对对鸳鸯水上漂,http://em.21dtv.com/songs/60123868.mkv +孟静-一对对鸳鸯水上漂,http://em.21dtv.com/songs/60123834.mkv +贺国丰-一对对鸳鸯水上漂,http://em.21dtv.com/songs/60118921.mkv +贺国丰-一对对鸳鸯水上漂,http://em.21dtv.com/songs/60110550.mkv +朱雅-有点不习惯,http://em.21dtv.com/songs/60080871.mkv +佚名-一次相逢就成永远,http://em.21dtv.com/songs/60052818.mkv +萧亚轩-一辈子做你的女孩(演唱会),http://em.21dtv.com/songs/60052773.mkv +桂莹莹+祁隆-一辈子永远在一起,http://em.21dtv.com/songs/60132640.mkv +[Group] +groupName=十六万歌曲MV等 - 105 +祁隆+胡扬琳-一辈子永远在一起,http://em.21dtv.com/songs/60097900.mkv +龙帝-一辈子为你唱情歌,http://em.21dtv.com/songs/60068909.mkv +陈大天-一百种失恋的方法,http://em.21dtv.com/songs/60124627.mkv +暴林-一辈子守护你身旁,http://em.21dtv.com/songs/60114573.mkv +郭美美-一百种孤独的理由,http://em.21dtv.com/songs/60134332.mkv +郭美美-一百种孤独的理由,http://em.21dtv.com/songs/60132999.mkv +罗刚-一步一步走出精彩(演唱会),http://em.21dtv.com/songs/60052793.mkv +涵军-一不小心败给寂寞,http://em.21dtv.com/songs/60127176.mkv +洪荣宏-一杯烧酒二滴目屎,http://em.21dtv.com/songs/60072697.mkv +林晓培-又不是非要你的爱,http://em.21dtv.com/songs/60055419.mkv +莫露露-一百块钱都不给我,http://em.21dtv.com/songs/60107159.mkv +潘裕文-永不结束的马拉松,http://em.21dtv.com/songs/60109502.mkv +群星合唱-拥抱97拥抱香港,http://em.21dtv.com/songs/60090117.mkv +佚名-拥抱九七拥抱香港,http://em.21dtv.com/songs/60054580.mkv +群可+MOE欣欣-一边回忆一边忘记,http://em.21dtv.com/songs/60087040.mkv +DJViper+王绎龙-摇摆哥(Mix),http://em.21dtv.com/songs/50000129.mkv +群星-永不分开世界的爱,http://em.21dtv.com/songs/60054617.mkv +丁爽-预备爱,http://em.21dtv.com/songs/60118294.mkv +佚名-摇啊摇摇到外婆桥,http://em.21dtv.com/songs/60052248.mkv +王韫-摇啊摇摇到外婆桥,http://em.21dtv.com/songs/60052247.mkv +刘伟-要爱就爱要分就分,http://em.21dtv.com/songs/60079043.mkv +李智英-因爱而美丽的季节,http://em.21dtv.com/songs/60061834.mkv +邓丽君-夜のフェリーボート(演唱会),http://em.21dtv.com/songs/60052522.mkv +熊彪-项增有董莉莉的伤,http://em.21dtv.com/songs/60094214.mkv +陈奕迅-下周同样时间再见,http://em.21dtv.com/songs/60048356.mkv +你在哪里?,http://em.21dtv.com/songs/60123776.mkv +张栋梁-现在你是怎样的人,http://em.21dtv.com/songs/60123928.mkv +居山植-现在你是谁的屋顶,http://em.21dtv.com/songs/60048524.mkv +甜美真+冰冰火-想着你的感觉真美,http://em.21dtv.com/songs/60078646.mkv +林志颖-寻找梦中的金银岛,http://em.21dtv.com/songs/60051850.mkv +祁隆-心中刻上你的名字,http://em.21dtv.com/songs/60102589.mkv +陈瑞-心中刻上你的名字,http://em.21dtv.com/songs/60086047.mkv +绿柳-心中刻上你的名字,http://em.21dtv.com/songs/60050754.mkv +田丰-想走就走要飞就飞,http://em.21dtv.com/songs/60081164.mkv +呼斯楞-心在高原梦在草原,http://em.21dtv.com/songs/60123774.mkv +天骏-心在高原梦在草原,http://em.21dtv.com/songs/60078799.mkv +孟杨-心中放不下的是你,http://em.21dtv.com/songs/60062770.mkv +佚名-现在的娃娃真奇怪,http://em.21dtv.com/songs/60048515.mkv +海生-现在的他对你好吗,http://em.21dtv.com/songs/60048514.mkv +湘东雨-想走的人何必强留,http://em.21dtv.com/songs/60078648.mkv +张学刚+高雅妮-现在的你幸福着吗,http://em.21dtv.com/songs/60078559.mkv +郑允武-心中的歌儿唱出来,http://em.21dtv.com/songs/60112298.mkv +岩光渤-寻找爱妻孔雀公主,http://em.21dtv.com/songs/60124789.mkv +龙啸-香烟最懂得男人心,http://em.21dtv.com/songs/60062720.mkv +朱天毅-像鹰一样,http://em.21dtv.com/songs/60111953.mkv +金城-喜羊羊爱上灰太狼,http://em.21dtv.com/songs/60048184.mkv +龙梅子-心要痛到什么时候,http://em.21dtv.com/songs/60098973.mkv +天孪兄弟-想要什么我都会给,http://em.21dtv.com/songs/60049278.mkv +陈明-相遇是另一种别离,http://em.21dtv.com/songs/60100590.mkv +沈凌云-星月神话,http://em.21dtv.com/songs/60098561.mkv +侯硕-相约青奥祝福南京,http://em.21dtv.com/songs/60072608.mkv +太极乐队-小雨落在我的胸口,http://em.21dtv.com/songs/60049890.mkv +太极乐队-小雨落在我的胸口(演唱会),http://em.21dtv.com/songs/60049889.mkv +王源-心有林夕,http://em.21dtv.com/songs/60118786.mkv +张蔷-小雨来得正是时候,http://em.21dtv.com/songs/60087840.mkv +郑怡-小雨来的正是时候(无原唱),http://em.21dtv.com/songs/60049888.mkv +阿杜-下雨的时候会想你,http://em.21dtv.com/songs/60048340.mkv +李建强-想要对你说点什么,http://em.21dtv.com/songs/60120622.mkv +蔡依林-许愿池的希腊少女,http://em.21dtv.com/songs/60051566.mkv +胡杏儿-小幸运,http://em.21dtv.com/songs/60126084.mkv +吴忠宪-谢谢一路有你陪我,http://em.21dtv.com/songs/60089207.mkv +咖啡因乐队-相信我你并不孤单,http://em.21dtv.com/songs/60084179.mkv +群星合唱-星星是穷人的钻石,http://em.21dtv.com/songs/60088477.mkv +群星-星星是穷人的钻石(演唱会),http://em.21dtv.com/songs/60051116.mkv +尹飞儿-星星你知道不知道,http://em.21dtv.com/songs/60119456.mkv +卓依婷-谢谢你一直爱着我,http://em.21dtv.com/songs/60065225.mkv +沙宝亮+崔恕+吴梦奇-谢谢你听过我的歌,http://em.21dtv.com/songs/60117005.mkv +陈佳喆-谢谢你伤过我的心,http://em.21dtv.com/songs/60065224.mkv +黄鸿升-谢谢你让我等于你,http://em.21dtv.com/songs/60067648.mkv +S.H.E-谢谢你让我爱过你,http://em.21dtv.com/songs/60050071.mkv +红蔷薇-谢谢你牵过我的手,http://em.21dtv.com/songs/60104364.mkv +关泽楠-谢谢你牵过我的手,http://em.21dtv.com/songs/60103897.mkv +苏醒-谢谢你陪我一起过,http://em.21dtv.com/songs/60050069.mkv +赵默-谢谢你给我的幸福,http://em.21dtv.com/songs/60050067.mkv +童星-谢谢你给我的幸福,http://em.21dtv.com/songs/60050066.mkv +位婷婷-谢谢你给我的快乐,http://em.21dtv.com/songs/60112500.mkv +蔡建-谢谢你给我的快乐,http://em.21dtv.com/songs/60062237.mkv +安银松-谢谢你的生日礼物,http://em.21dtv.com/songs/60120458.mkv +逍俊-谢谢你曾经爱过我,http://em.21dtv.com/songs/60117266.mkv +潘越云-谢谢你曾经爱过我,http://em.21dtv.com/songs/60050048.mkv +黄浩鸣-谢谢你曾经爱过我,http://em.21dtv.com/songs/60050047.mkv +李瑞轩-谢谢侬,http://em.21dtv.com/songs/60127047.mkv +薛凯琪-小峡谷之1234,http://em.21dtv.com/songs/60049792.mkv +陈美凤-像我这样一个女子(无原唱),http://em.21dtv.com/songs/60049406.mkv +张小觉-小王子喜欢我的歌,http://em.21dtv.com/songs/60063401.mkv +康净淳-逊我怎么那么爱你,http://em.21dtv.com/songs/60051864.mkv +长春虫子-像我这么痴情的人,http://em.21dtv.com/songs/60122208.mkv +谢慧娴-像我一样爱你的人,http://em.21dtv.com/songs/60126201.mkv +苏盈之-像我一样爱你的人,http://em.21dtv.com/songs/60104377.mkv +王凯-笑忘书,http://em.21dtv.com/songs/60122988.mkv +阿悄-想我的时候听这歌,http://em.21dtv.com/songs/60062199.mkv +刘尊-想忘的人还是爱你,http://em.21dtv.com/songs/60049253.mkv +上海彩虹室内合唱团-向天再要500话,http://em.21dtv.com/songs/60133321.mkv +佚名-夏天最后一朵玫瑰,http://em.21dtv.com/songs/60048416.mkv +胡美仪-新啼笑姻缘-凤喜怨(演唱会),http://em.21dtv.com/songs/60050955.mkv +李清坡-心痛是谁犯下的罪,http://em.21dtv.com/songs/60113640.mkv +施文彬-心痛是寂寞的开始,http://em.21dtv.com/songs/60095566.mkv +任贤齐+炫声乐团+吕口口+刘路辉-心太软,http://em.21dtv.com/songs/60123620.mkv +张震岳-消失在你的世界里,http://em.21dtv.com/songs/60084208.mkv +高进+小沈阳-我的好兄弟,http://em.21dtv.com/songs/60049730.mkv +广播之友合唱团-牺牲已到最后关头,http://em.21dtv.com/songs/60048013.mkv +盖鸣晖+吴美英-新三笑姻缘-绘观音,http://em.21dtv.com/songs/60050924.mkv +盖鸣晖+吴美英-新三笑姻缘-点秋香,http://em.21dtv.com/songs/60050922.mkv +王琳玲-西沙我可爱的家乡,http://em.21dtv.com/songs/60108722.mkv +佚名-西沙我可爱的家乡,http://em.21dtv.com/songs/60047941.mkv +景仪+祝友-西沙我可爱的家乡,http://em.21dtv.com/songs/60047940.mkv +VIXX-嘻唰唰,http://em.21dtv.com/songs/60123561.mkv +陈娟儿-写首情歌送给自己,http://em.21dtv.com/songs/60062265.mkv +孟杨-心上情歌美美的唱,http://em.21dtv.com/songs/60126784.mkv +廖昌永-相思河畔,http://em.21dtv.com/songs/60123908.mkv +章中锦-小伞儿带着我飞翔,http://em.21dtv.com/songs/60049724.mkv +沈凌云-相思的债,http://em.21dtv.com/songs/60098564.mkv +王月华-相思的味道没法说,http://em.21dtv.com/songs/60097932.mkv +吕洪义-相思的味道没法说,http://em.21dtv.com/songs/60085997.mkv +周艾杰-心上的人儿快过来,http://em.21dtv.com/songs/60104886.mkv +乌兰托娅-心上的情哥爱着我,http://em.21dtv.com/songs/60132168.mkv +洪荣宏-昔时的你如今的你(无原唱),http://em.21dtv.com/songs/60048008.mkv +唐古-相思的苦,http://em.21dtv.com/songs/60118461.mkv +江海泉-心上的姑娘听我说,http://em.21dtv.com/songs/60096381.mkv +杨坤+人声兄弟-香水城,http://em.21dtv.com/songs/60113671.mkv +周艳泓-夏日最后一朵玫瑰,http://em.21dtv.com/songs/60048396.mkv +佚名-夏日最后一朵玫瑰,http://em.21dtv.com/songs/60048395.mkv +F.I.R-向日葵盛开的夏天,http://em.21dtv.com/songs/60049339.mkv +杨千嬅-寻人机器,http://em.21dtv.com/songs/60105998.mkv +李双江-想起周总理纺线线,http://em.21dtv.com/songs/60049222.mkv +新七小福-喜气洋洋福到万家,http://em.21dtv.com/songs/60131465.mkv +好好先生-星期一吃素不吃醋,http://em.21dtv.com/songs/60065269.mkv +好声音家族-相亲相爱2013,http://em.21dtv.com/songs/60072602.mkv +杨采妮-星期天我不谈感情(无原唱),http://em.21dtv.com/songs/60051090.mkv +林志斌-向全世界宣布爱你,http://em.21dtv.com/songs/60078654.mkv +佚名-星期三的第二堂课,http://em.21dtv.com/songs/60051085.mkv +骆超勇-想轻轻拉住你的手,http://em.21dtv.com/songs/60049227.mkv +解晓东-掀起了你的盖头来,http://em.21dtv.com/songs/60092042.mkv +网络歌手-向前进打倒小日本,http://em.21dtv.com/songs/60091820.mkv +佚名-新娶的媳妇回娘家,http://em.21dtv.com/songs/60050920.mkv +博蒂组合-想去的地方是草原,http://em.21dtv.com/songs/60127791.mkv +宋祖英-想你在美好月夜里,http://em.21dtv.com/songs/60104057.mkv +张靓颖-想你在零点零一分,http://em.21dtv.com/songs/60091164.mkv +董楠-想你在寂寞的夜里,http://em.21dtv.com/songs/60118881.mkv +王博文-想你永远不会知道,http://em.21dtv.com/songs/60128215.mkv +姜姿伢-许你一朵爱情的云,http://em.21dtv.com/songs/60130235.mkv +思念-想你想到难以入眠,http://em.21dtv.com/songs/60078630.mkv +冯文女-想你想到难以入眠,http://em.21dtv.com/songs/60049148.mkv +刘一祯+潘烈志-想你想到海角天涯(演唱会),http://em.21dtv.com/songs/60049144.mkv +蔡献华+陈惠英-想你想的不能入睡,http://em.21dtv.com/songs/60049154.mkv +古巨基-想你 无需要太多,http://em.21dtv.com/songs/60134979.mkv +动力火车-想你是临睡的习惯,http://em.21dtv.com/songs/60104843.mkv +孙浩雨-像男人一样去战斗,http://em.21dtv.com/songs/60111811.mkv +李易峰-想你 请跟我联络,http://em.21dtv.com/songs/60118680.mkv +张玲-想你却不敢告诉你,http://em.21dtv.com/songs/60109328.mkv +龙梅子+冷漠-想你啦[DJ版],http://em.21dtv.com/songs/60103738.mkv +军嫂组合-新年快乐士兵兄弟,http://em.21dtv.com/songs/60065254.mkv +吴莫愁-小女孩的花花世界(演唱会),http://em.21dtv.com/songs/60099877.mkv +李玖龙-新年给力2013,http://em.21dtv.com/songs/60078840.mkv +周张驰-新年的掌声响起来,http://em.21dtv.com/songs/60078835.mkv +陈少华-想你的夜晚没有你,http://em.21dtv.com/songs/60049129.mkv +尚裘峰-想你的时候想流泪,http://em.21dtv.com/songs/60080692.mkv +许霖-想你的时候我会哭,http://em.21dtv.com/songs/60115399.mkv +冷漠+张冬玲-想你的时候我不哭,http://em.21dtv.com/songs/60101939.mkv +新仔阿波-想你的时候容易醉,http://em.21dtv.com/songs/60132491.mkv +乔嘉-想你的时候会寂寞,http://em.21dtv.com/songs/60101871.mkv +李维-想你的零点零一分,http://em.21dtv.com/songs/60049105.mkv +温兆伦-想念不能多留一天,http://em.21dtv.com/songs/60049182.mkv +佚名-寻觅在兜转的一生,http://em.21dtv.com/songs/60051826.mkv +嬉游记-心目中的男孩团体,http://em.21dtv.com/songs/60108417.mkv +吴俊熠-写满你名字的香烟,http://em.21dtv.com/songs/60106677.mkv +燕尾蝶-心里装着亲爱的人,http://em.21dtv.com/songs/60086041.mkv +小老头-心里永远都祝福你,http://em.21dtv.com/songs/60106792.mkv +羽泉-小礼物,http://em.21dtv.com/songs/60109575.mkv +吕珊-小喇嘛+给我一个吻,http://em.21dtv.com/songs/60049613.mkv +罗嘉良-想离开却又不放心(无原唱),http://em.21dtv.com/songs/60049072.mkv +郭涛+袁成杰+张萌+王迅-喜乐就好2015,http://em.21dtv.com/songs/60113018.mkv +张楚+赵牧阳-侠客行,http://em.21dtv.com/songs/60109312.mkv +刘子琪-辛苦了我的好战友,http://em.21dtv.com/songs/60132240.mkv +那信念,http://em.21dtv.com/songs/60133732.mkv +庾澄庆-想哭就到我怀里哭,http://em.21dtv.com/songs/60049067.mkv +庾澄庆-想哭就到我怀里哭(演唱会),http://em.21dtv.com/songs/60049066.mkv +衡越-笑口常开,http://em.21dtv.com/songs/60123147.mkv +吴宗宪-小姐这是我的名片,http://em.21dtv.com/songs/60049607.mkv +佚名-相距遥远也能相爱,http://em.21dtv.com/songs/60048677.mkv +宇宙人-乡间小路香肩小露,http://em.21dtv.com/songs/60106776.mkv +-西街4少年的传说,http://em.21dtv.com/songs/60090386.mkv +汤灿-湘江从我心上流过,http://em.21dtv.com/songs/60088202.mkv +佚名-喜欢有什么不可以,http://em.21dtv.com/songs/60048148.mkv +孙唯缤-小和尚也爱大美女,http://em.21dtv.com/songs/60086021.mkv +满文军-鲜花铺满回家的路,http://em.21dtv.com/songs/60048476.mkv +林志炫-喜欢你现在的样子,http://em.21dtv.com/songs/60091465.mkv +黄韵玲-喜欢你现在的样子,http://em.21dtv.com/songs/60048141.mkv +朱克-雪候鸟,http://em.21dtv.com/songs/60125667.mkv +胡东清-喜欢你轻声说爱我,http://em.21dtv.com/songs/60062465.mkv +马巾媛-喜欢不一定要拥有,http://em.21dtv.com/songs/60108157.mkv +后来者-心甘情愿被你征服,http://em.21dtv.com/songs/60078762.mkv +范英楠-献给老妈的中国风,http://em.21dtv.com/songs/60048546.mkv +泽旺多吉-香格里拉,http://em.21dtv.com/songs/60113807.mkv +司空雷-下个路口再说分手,http://em.21dtv.com/songs/60119336.mkv +莫小弃-写给90后的自己,http://em.21dtv.com/songs/60050001.mkv +金志文-写给初恋的一封信,http://em.21dtv.com/songs/60106338.mkv +董文华-想给边防军写封信,http://em.21dtv.com/songs/60049034.mkv +阿牛-心肝宝贝,http://em.21dtv.com/songs/60108963.mkv +刘德华-幸福这么远那么甜,http://em.21dtv.com/songs/60051403.mkv +刘德华-幸福这么近那么远,http://em.21dtv.com/songs/60087397.mkv +佚名-相逢是离别的开始,http://em.21dtv.com/songs/60048651.mkv +刘燕燕-相逢是离别的开始,http://em.21dtv.com/songs/60048650.mkv +周子轩-新分手何必做朋友,http://em.21dtv.com/songs/60126715.mkv +胡彦斌-小芳,http://em.21dtv.com/songs/60095041.mkv +于小磊-幸福就是想你爱你,http://em.21dtv.com/songs/60121349.mkv +囚鸟+枫舞-幸福就是想你爱你,http://em.21dtv.com/songs/60109246.mkv +仙杜拉-新凤阁恩仇未了情(演唱会),http://em.21dtv.com/songs/60050826.mkv +胡杨林-幸福的女人不抽烟,http://em.21dtv.com/songs/60078908.mkv +贺顺才-幸福的爱你一辈子,http://em.21dtv.com/songs/60132908.mkv +陈红-幸福从这一秒开始,http://em.21dtv.com/songs/60051238.mkv +孔先斌-心儿想着远方的你,http://em.21dtv.com/songs/60113397.mkv +尤步乾-兄弟 我的好兄弟,http://em.21dtv.com/songs/60105782.mkv +王渝-新多少柔情多少泪,http://em.21dtv.com/songs/60050823.mkv +苏晴-想带你周游全世界,http://em.21dtv.com/songs/60084189.mkv +超人-习大大VS贪怕怕,http://em.21dtv.com/songs/60108905.mkv +姜佑泽+杨帆-习大大爱着彭麻麻,http://em.21dtv.com/songs/60106756.mkv +余润泽+徐铵-习大大爱着彭麻麻,http://em.21dtv.com/songs/60105587.mkv +李文琦-新长征路上的摇滚,http://em.21dtv.com/songs/60103360.mkv +崔健-新长征路上的摇滚(演唱会),http://em.21dtv.com/songs/60050989.mkv +门丽-喜从天降龙凤呈祥,http://em.21dtv.com/songs/60118988.mkv +曾舜曦-熊出没之奇幻空间,http://em.21dtv.com/songs/60133770.mkv +越剧-兴冲冲奉命把花送,http://em.21dtv.com/songs/60051191.mkv +陈佳-下辈子做我的女人,http://em.21dtv.com/songs/60106381.mkv +阿冲-下辈子做我的女人,http://em.21dtv.com/songs/60048263.mkv +镜喜-下辈子再牵你的手,http://em.21dtv.com/songs/60066454.mkv +龙奔-下辈子做你的手机,http://em.21dtv.com/songs/60112410.mkv +刘晓-下辈子做你的手机,http://em.21dtv.com/songs/60111718.mkv +龙梅子-下辈子做你的女人,http://em.21dtv.com/songs/60048262.mkv +张艾文-下辈子也要找到你,http://em.21dtv.com/songs/60048258.mkv +马郁-下辈子我还记得你,http://em.21dtv.com/songs/60088985.mkv +常健鸿-下辈子你还爱我吗,http://em.21dtv.com/songs/60062250.mkv +江南-下辈子嫁给你好吗(演唱会),http://em.21dtv.com/songs/60048253.mkv +龙川-下辈子还要做男人,http://em.21dtv.com/songs/60048251.mkv +孤山大烧-下辈子还要做男人,http://em.21dtv.com/songs/60048250.mkv +张梓-下辈子不再做情种,http://em.21dtv.com/songs/60048245.mkv +黛安娜-下辈子别再做女人,http://em.21dtv.com/songs/60112409.mkv +梅艳芳-下辈子别再做女人,http://em.21dtv.com/songs/60048242.mkv +易欣-下辈子不做男人_mpg,http://em.21dtv.com/songs/60089324.mkv +阿福-下辈子别再爱上我,http://em.21dtv.com/songs/60078540.mkv +毛泓艳-下辈子不要做情人,http://em.21dtv.com/songs/60048244.mkv +斯琴高丽+顾峰-相伴永远,http://em.21dtv.com/songs/60094133.mkv +斯琴高丽+顾峰-相伴永远(HD),http://em.21dtv.com/songs/10012791.mkv +雨柔+望海高歌-心不移相守到永久,http://em.21dtv.com/songs/60119041.mkv +罗时丰-西北雨请你慢且落,http://em.21dtv.com/songs/60134114.mkv +佚名-西北雨请你慢且落,http://em.21dtv.com/songs/60047888.mkv +罗时丰-西北雨请你慢且落,http://em.21dtv.com/songs/60047887.mkv +徐海涛-新不想再说我爱你,http://em.21dtv.com/songs/60071344.mkv +顾峰-小白领的快乐生活,http://em.21dtv.com/songs/60070052.mkv +李涛-想不到连你都会走,http://em.21dtv.com/songs/60048997.mkv +余润泽-想不到连你都会走,http://em.21dtv.com/songs/60072611.mkv +张嘉洵-像爱我一样爱自己,http://em.21dtv.com/songs/60049376.mkv +张嘉讯-象爱我一样爱自己,http://em.21dtv.com/songs/60049372.mkv +宋嘉其-想爱无依^我不配,http://em.21dtv.com/songs/60111008.mkv +潘玉琳-想爱谁你就去爱谁(故事情节),http://em.21dtv.com/songs/60101432.mkv +洪荣宏-心爱请你著嫁别人,http://em.21dtv.com/songs/60095788.mkv +佚名-心爱请你着嫁别人,http://em.21dtv.com/songs/60050157.mkv +龙少也-相爱却不能在一起,http://em.21dtv.com/songs/60118236.mkv +张詹瑶-相爱究竟为了什么,http://em.21dtv.com/songs/60089869.mkv +张琼瑶-相爱究竟为了什么,http://em.21dtv.com/songs/60048608.mkv +S.H.E-想爱就大声说出来,http://em.21dtv.com/songs/60090423.mkv +刘哲-相爱和分开都是罪,http://em.21dtv.com/songs/60107519.mkv +郭金发-心爱的已经嫁别人(无原唱),http://em.21dtv.com/songs/60050145.mkv +黄乙玲-心爱的人实在可恨(演唱会),http://em.21dtv.com/songs/60050139.mkv +杨鸣-心爱的可比天顶星,http://em.21dtv.com/songs/60056425.mkv +佚名-心爱的可比天顶星,http://em.21dtv.com/songs/60050124.mkv +江蕙-心爱的今晚置叼位,http://em.21dtv.com/songs/60050122.mkv +丁姵均-心爱的HONEY,http://em.21dtv.com/songs/60109122.mkv +刘曌-心爱的姑娘我的爱,http://em.21dtv.com/songs/60131212.mkv +赵传-心爱的不要说再见,http://em.21dtv.com/songs/60050119.mkv +陈雷-心爱的不通找别人,http://em.21dtv.com/songs/60050118.mkv +韩东-我站着坐着都想你,http://em.21dtv.com/songs/60046829.mkv +王建荣+刘馨月-我在这里你在哪里,http://em.21dtv.com/songs/60116138.mkv +林立洋-我在这里你在那里(无原唱),http://em.21dtv.com/songs/60046807.mkv +苏芮-我站在孤独的风口,http://em.21dtv.com/songs/60078412.mkv +方小菲-我在这等你很久了,http://em.21dtv.com/songs/60068798.mkv +沈凌云-我站在草原唱情歌,http://em.21dtv.com/songs/60109492.mkv +佚名-我正在城楼观山景,http://em.21dtv.com/songs/60046878.mkv +林威良-我只有这首歌给你,http://em.21dtv.com/songs/60121817.mkv +黄小琥-我只要我们在一起,http://em.21dtv.com/songs/60089040.mkv +佚名-我主爷起义在芒砀,http://em.21dtv.com/songs/60046970.mkv +林志颖-我这样的人那里找,http://em.21dtv.com/songs/60091473.mkv +林志颖-我这样的人哪里找,http://em.21dtv.com/songs/60046847.mkv +黎姿-我这样爱你错了吗,http://em.21dtv.com/songs/60046844.mkv +李越昕蕾-我只想做你的公主,http://em.21dtv.com/songs/60122872.mkv +宝儿-我只想做你的公主,http://em.21dtv.com/songs/60085947.mkv +阿来-我只想看看你就走,http://em.21dtv.com/songs/60088835.mkv +海镔-我只想和你在一起,http://em.21dtv.com/songs/60107036.mkv +艺林歌哥-我总想和你在一起,http://em.21dtv.com/songs/60096112.mkv +费阳-伪装幸福的是回忆,http://em.21dtv.com/songs/60085853.mkv +巫启贤-我只想爱你一个人,http://em.21dtv.com/songs/60046890.mkv +朱泓宇-我在温哥华想念你,http://em.21dtv.com/songs/60129217.mkv +胡毅-我只是一个当兵的,http://em.21dtv.com/songs/60102644.mkv +雨湘-我只是你的好朋友,http://em.21dtv.com/songs/60084107.mkv +杰子-我在你心里算什么,http://em.21dtv.com/songs/60129287.mkv +朱永飞-我在纳林湖等着你,http://em.21dtv.com/songs/60116887.mkv +呼斯楞-我在纳林湖等着你,http://em.21dtv.com/songs/60099889.mkv +朱永飞-我在纳林湖等着你,http://em.21dtv.com/songs/60078407.mkv +天骏-我在纳林湖等着你,http://em.21dtv.com/songs/60078406.mkv +阿杜-我在你的爱情之外,http://em.21dtv.com/songs/60046786.mkv +李日詹-我在你不在的城市,http://em.21dtv.com/songs/60124076.mkv +梦然-我在没有你的地方,http://em.21dtv.com/songs/60122921.mkv +王梓宏-我怎么舍得让你走,http://em.21dtv.com/songs/60046818.mkv +高原-我怎么舍得你流泪,http://em.21dtv.com/songs/60046817.mkv +云开-我这么爱你你骗我,http://em.21dtv.com/songs/60046839.mkv +冷漠+张冬玲-我在红尘中遇见你,http://em.21dtv.com/songs/60100771.mkv +波拉+张渼壹-我在红尘中等着你,http://em.21dtv.com/songs/60081843.mkv +遥远-我在红尘深处等你,http://em.21dtv.com/songs/60112288.mkv +霓裳-我在海岸线上等你,http://em.21dtv.com/songs/60116358.mkv +迪克牛仔-我这个你不爱的人,http://em.21dtv.com/songs/60046836.mkv +群星-我在飞,http://em.21dtv.com/songs/60126056.mkv +陈琳-我在飞却飞得好累,http://em.21dtv.com/songs/60046774.mkv +明圣凯-我真的想过放弃爱,http://em.21dtv.com/songs/60046872.mkv +陶晶莹-我知道我不够漂亮,http://em.21dtv.com/songs/60046952.mkv +梁咏琪-我知道我不够完美,http://em.21dtv.com/songs/60069998.mkv +黄心懋-我知道伤心是什么,http://em.21dtv.com/songs/60046947.mkv +杨林-我真的失去了你吗,http://em.21dtv.com/songs/60046864.mkv +大大朋-我真的舍不得你走,http://em.21dtv.com/songs/60061714.mkv +许志安-我知道如何对你好,http://em.21dtv.com/songs/60046946.mkv +黎瑞恩-我知道你在说再见,http://em.21dtv.com/songs/60046945.mkv +景岗山-我知道你在等着我,http://em.21dtv.com/songs/60046944.mkv +后弦-我知道你也很想念,http://em.21dtv.com/songs/60079909.mkv +陈楚生-我知道你离我不远,http://em.21dtv.com/songs/60079878.mkv +天浩+丁娜-我知道你离不开我,http://em.21dtv.com/songs/60071281.mkv +任贤齐-我知道抗拒爱很难,http://em.21dtv.com/songs/60046930.mkv +谭咏麟-我真的和他们不同,http://em.21dtv.com/songs/60046855.mkv +王莉-我真的到了合肥了,http://em.21dtv.com/songs/60088316.mkv +萧磊-我真的不想再难过,http://em.21dtv.com/songs/60072569.mkv +冬炜-我真的不是故意的,http://em.21dtv.com/songs/60046853.mkv +张镐哲-我真的不是故意的(无原唱),http://em.21dtv.com/songs/60046852.mkv +张芯-我知道悲伤的晚上,http://em.21dtv.com/songs/60046929.mkv +李彩桦-我值不值得你喜欢,http://em.21dtv.com/songs/60046954.mkv +王识贤-我最爱的人就是你,http://em.21dtv.com/songs/60046992.mkv +陈雷-我最爱的人就是你,http://em.21dtv.com/songs/60046991.mkv +柴强-我最爱的你在哪里,http://em.21dtv.com/songs/60111204.mkv +飞翔-我最爱的美丽女人,http://em.21dtv.com/songs/60112387.mkv +赵传-我一直以为你知道,http://em.21dtv.com/songs/60046635.mkv +孟杨-我用这个夜俘虏他,http://em.21dtv.com/songs/60065125.mkv +李书伟-我愿用一切换回您,http://em.21dtv.com/songs/60120596.mkv +于金胜-我要用心的告诉你,http://em.21dtv.com/songs/60109947.mkv +于金胜-我要用心的告诉你,http://em.21dtv.com/songs/60046592.mkv +童唱-我有一双万能的手,http://em.21dtv.com/songs/60046719.mkv +孙楠-我永远是你的孩子,http://em.21dtv.com/songs/60090914.mkv +陈慧娴-我也有儒弱的时候,http://em.21dtv.com/songs/60046619.mkv +陈慧娴-我也有懦弱的时候,http://em.21dtv.com/songs/60088874.mkv +林志颖-我有一颗炽热的心,http://em.21dtv.com/songs/60046716.mkv +庄秋玉-我有一个幸福的家,http://em.21dtv.com/songs/60126845.mkv +盘欣蕾-我也想找个男朋友,http://em.21dtv.com/songs/60118815.mkv +赵雪飞-我愿为你默默守候,http://em.21dtv.com/songs/60067594.mkv +陈浩民-我愿为你赴汤蹈火,http://em.21dtv.com/songs/60046741.mkv +徐方-我以为爱你并不难,http://em.21dtv.com/songs/60086948.mkv +金素梅-我以为爱你并不难(无原唱),http://em.21dtv.com/songs/60046662.mkv +王中平-我要头也不回的走,http://em.21dtv.com/songs/60046574.mkv +佚名-when you tell me that you love me,http://em.21dtv.com/songs/60006265.mkv +黎明-我用深情与你相约,http://em.21dtv.com/songs/60046678.mkv +男人唐潮-我有什么对不起你(演唱会),http://em.21dtv.com/songs/60072566.mkv +梅林组合-我也是草原的孩子(演唱会),http://em.21dtv.com/songs/60072565.mkv +李玟-我依然是你的情人,http://em.21dtv.com/songs/60046650.mkv +李玟-我依然是你的情人(演唱会),http://em.21dtv.com/songs/60046649.mkv +胡灵-我依然是你的情人,http://em.21dtv.com/songs/60069992.mkv +杨峻荣-我依然坚强的存在,http://em.21dtv.com/songs/60046647.mkv +王旭东+金志文-我依然奔跑在路上,http://em.21dtv.com/songs/60113864.mkv +小琢-我愿陪你虚度一生,http://em.21dtv.com/songs/60113426.mkv +带泪的鱼-我要陪你蜜月旅行,http://em.21dtv.com/songs/60126830.mkv +潘龙-我要你做我的情人,http://em.21dtv.com/songs/60046562.mkv +李莉莉-我要你每夜陪住我,http://em.21dtv.com/songs/60046557.mkv +麒麟baby-我要你Happy,http://em.21dtv.com/songs/60121175.mkv +喻佳丽-我也难过,http://em.21dtv.com/songs/60128927.mkv +喻佳丽-我也难过,http://em.21dtv.com/songs/60126732.mkv +罗中旭-我要你比谁都快乐,http://em.21dtv.com/songs/60081946.mkv +潘美辰-我有泪水也有柔情,http://em.21dtv.com/songs/60088245.mkv +歌一生-我愿来生化作青莲,http://em.21dtv.com/songs/60114634.mkv +董文华-我用胡琴和你说话,http://em.21dtv.com/songs/60046677.mkv +辛晓琪-我也会爱上别人的,http://em.21dtv.com/songs/60046616.mkv +王静-我有歌声拥抱祖国,http://em.21dtv.com/songs/60088346.mkv +王静-我用歌声拥抱祖国,http://em.21dtv.com/songs/60046676.mkv +ASOS-我要告诉你一件事,http://em.21dtv.com/songs/60046527.mkv +品冠-我一个人记得就好,http://em.21dtv.com/songs/60115064.mkv +品冠-我一个人记得就好,http://em.21dtv.com/songs/60113349.mkv +郭富城-我要给你全部的爱(演唱会),http://em.21dtv.com/songs/60046528.mkv +张啸-我要的幸福很简单,http://em.21dtv.com/songs/60097924.mkv +邱永传-我要大声的说爱你,http://em.21dtv.com/songs/60062847.mkv +徐一鸣-我要带你远走高飞,http://em.21dtv.com/songs/60107738.mkv +峻一杰-我要带你远走高飞,http://em.21dtv.com/songs/60084089.mkv +何广才-我要对你说我爱你,http://em.21dtv.com/songs/60085934.mkv +董柯娣-我彦昌自别圣母后,http://em.21dtv.com/songs/60088578.mkv +李福山+孙青-我愿变成一杯香茶,http://em.21dtv.com/songs/60091358.mkv +郭富城-望乡之再见萤火虫,http://em.21dtv.com/songs/60043714.mkv +阿悄-妄想之夜,http://em.21dtv.com/songs/60094731.mkv +苏青山+媚儿菲菲-我想着你我爱着你,http://em.21dtv.com/songs/60120891.mkv +苏青山+冰城爱歌-我想着你我爱着你,http://em.21dtv.com/songs/60118870.mkv +冰城爱歌-我想着你我爱着你,http://em.21dtv.com/songs/60118375.mkv +HUSH-我想知道你的一切,http://em.21dtv.com/songs/60116457.mkv +雷雷-我想要说的那句话,http://em.21dtv.com/songs/60122258.mkv +风语-我心依旧为你停留,http://em.21dtv.com/songs/60131982.mkv +曲调悠扬-我心依旧为你停留,http://em.21dtv.com/songs/60131477.mkv +晟涵-我想要和你在一起,http://em.21dtv.com/songs/60122795.mkv +杜玫-我想有个安稳的家,http://em.21dtv.com/songs/60122878.mkv +欣哲-我想有个安稳的家,http://em.21dtv.com/songs/60063183.mkv +吴奇隆-我相信永远的爱情,http://em.21dtv.com/songs/60090808.mkv +小沈阳-我相信,http://em.21dtv.com/songs/60125425.mkv +刘冲-我相信我一定可以,http://em.21dtv.com/songs/60108331.mkv +赵咏华-我想我已经爱上你,http://em.21dtv.com/songs/60046413.mkv +陶晶莹-我想我是真的疯了,http://em.21dtv.com/songs/60046412.mkv +尚雯婕-我想我是你的女人,http://em.21dtv.com/songs/60046410.mkv +曾雨轩-我想我能勇敢一点,http://em.21dtv.com/songs/60103335.mkv +叶顺有-我想我还是会习惯,http://em.21dtv.com/songs/60109210.mkv +叶顺有-我想我还是会习惯,http://em.21dtv.com/songs/60085929.mkv +V6-君が思い出す仆は 君を爱しているだろうか,http://em.21dtv.com/songs/60099047.mkv +胡彦斌-望乡,http://em.21dtv.com/songs/60107956.mkv +张爽-我想你想我在想你,http://em.21dtv.com/songs/60046395.mkv +韩春雨-我想你你在想我吗,http://em.21dtv.com/songs/60130879.mkv +徐品才-我想你你却不知道,http://em.21dtv.com/songs/60084086.mkv +金虹汝-我想你了你想我吗,http://em.21dtv.com/songs/60088805.mkv +董文华+阎维文-望星空十五的月亮,http://em.21dtv.com/songs/60127357.mkv +范晓萱-我喜欢这样的安静(演唱会),http://em.21dtv.com/songs/60046356.mkv +夏冰-我想和你一起变老,http://em.21dtv.com/songs/60104895.mkv +莫西子诗+程壁-我想和你虚度时光,http://em.21dtv.com/songs/60126121.mkv +程璧+莫西子诗-我想和你虚度时光,http://em.21dtv.com/songs/60109558.mkv +CRUCIAL STAR+朴素珍-我想给你的三件事,http://em.21dtv.com/songs/60099652.mkv +佚名-文夏的文雅湾梭罗,http://em.21dtv.com/songs/60044389.mkv +申明-我想把时间画成歌,http://em.21dtv.com/songs/60123043.mkv +佚名-我为伟大祖国站岗,http://em.21dtv.com/songs/60046319.mkv +张惠妹-我为什么那么爱你(演唱会),http://em.21dtv.com/songs/60046318.mkv +林萍-为我们的今天喝彩,http://em.21dtv.com/songs/60044131.mkv +云飞-为我的女人唱首歌,http://em.21dtv.com/songs/60044121.mkv +何以奇-我同情你谁同情我,http://em.21dtv.com/songs/60046292.mkv +蔡琴-我听见我的心在哭,http://em.21dtv.com/songs/60092030.mkv +黄得峰-我听见了什么声音,http://em.21dtv.com/songs/60127619.mkv +佚名-我听见花开的声音(无原唱),http://em.21dtv.com/songs/60046283.mkv +任军太-我是真心爱你的人,http://em.21dtv.com/songs/60062868.mkv +任军太-我是真心爱你的人(演唱会),http://em.21dtv.com/songs/60062867.mkv +张津涤-我是真的真的爱你,http://em.21dtv.com/songs/60111889.mkv +张祥洪-我是真的真的爱你,http://em.21dtv.com/songs/60085925.mkv +许强-我是真的真的爱你,http://em.21dtv.com/songs/60046239.mkv +孙渔-我是真的真的爱你,http://em.21dtv.com/songs/60046238.mkv +天良-我是真的为你哭了,http://em.21dtv.com/songs/60046234.mkv +刘洺瑒-我是真的离不开你,http://em.21dtv.com/songs/60126649.mkv +阿清-我是真的爱上你了,http://em.21dtv.com/songs/60046229.mkv +徐齐强-我是真的爱你老婆,http://em.21dtv.com/songs/60046227.mkv +祝平-我是最爱你的男人,http://em.21dtv.com/songs/60063477.mkv +秦杨-我是一只离水的鱼,http://em.21dtv.com/songs/60095831.mkv +沈南-我是一棵秋天的树,http://em.21dtv.com/songs/60114647.mkv +张雨生-我是一棵秋天的树,http://em.21dtv.com/songs/60046193.mkv +岳薇-我苏醒在绿光森林,http://em.21dtv.com/songs/60068786.mkv +非鱼乐队-我是谁,http://em.21dtv.com/songs/60115519.mkv +童唱-我是山里的小歌手,http://em.21dtv.com/songs/60046167.mkv +沙宝亮-往事随风,http://em.21dtv.com/songs/60078037.mkv +西子-我是若曦你在哪里,http://em.21dtv.com/songs/60078339.mkv +陈淑桦-我是如此深爱着你(演唱会),http://em.21dtv.com/songs/60046165.mkv +郭宴-我是秋天的一棵树,http://em.21dtv.com/songs/60135829.mkv +梦鸽-我是你梦中的鸽子,http://em.21dtv.com/songs/60046154.mkv +张薇-我是你美丽的姑娘,http://em.21dtv.com/songs/60119545.mkv +郑钧-我是你免费的快乐,http://em.21dtv.com/songs/60108059.mkv +于文华-我是你肩上那颗星,http://em.21dtv.com/songs/60081245.mkv +陈志嘉-五十年后深爱不移,http://em.21dtv.com/songs/60100581.mkv +曾轶可-我是你的你是我的,http://em.21dtv.com/songs/60078335.mkv +彝人制造-我是你的你是他的,http://em.21dtv.com/songs/60091168.mkv +黄爱玲-我是你的第几个她,http://em.21dtv.com/songs/60098960.mkv +啊BEN-我是你痴傻的情人,http://em.21dtv.com/songs/60062206.mkv +晓雨-我是你痴傻的情人,http://em.21dtv.com/songs/60061699.mkv +张姚-我是你曾经的女人,http://em.21dtv.com/songs/60072557.mkv +葛维碧-为什么要做第三者,http://em.21dtv.com/songs/60044105.mkv +曹璐+Kisum+郑艺琳-为什么又是春天呀,http://em.21dtv.com/songs/60133766.mkv +苏秀青-为什么相爱没结果,http://em.21dtv.com/songs/60116223.mkv +刀郎-为什么我泪水成行,http://em.21dtv.com/songs/60044095.mkv +柯林-为什么说你不爱我,http://em.21dtv.com/songs/60044089.mkv +太子-为什么请你告诉我,http://em.21dtv.com/songs/60062975.mkv +刘林-为什么你一去不回,http://em.21dtv.com/songs/60085848.mkv +舒天明-为什么你要离开我,http://em.21dtv.com/songs/60110481.mkv +囚鸟-为什么你要离开我,http://em.21dtv.com/songs/60078103.mkv +贺一航-为什么你要离开我,http://em.21dtv.com/songs/60078102.mkv +欢子-为什么你要离开我,http://em.21dtv.com/songs/60044084.mkv +李静-为什么你不再爱我,http://em.21dtv.com/songs/60121792.mkv +黄品源-为什么你不再爱我,http://em.21dtv.com/songs/60117409.mkv +黄品源-为什么你不再爱我,http://em.21dtv.com/songs/60116407.mkv +余润泽+徐铵+孙培立-为什么连你都会走,http://em.21dtv.com/songs/60106604.mkv +路逍遥-为什么就这样分手,http://em.21dtv.com/songs/60111424.mkv +邓伟-为什么就这样离开,http://em.21dtv.com/songs/60061659.mkv +孙露-为什么就是不爱我,http://em.21dtv.com/songs/60115798.mkv +季小璐-为什么就是不爱我,http://em.21dtv.com/songs/60097906.mkv +孙露-为什么就是不爱我,http://em.21dtv.com/songs/60078100.mkv +齐晨-我什么都可以不要,http://em.21dtv.com/songs/60069972.mkv +卓依婷-为什么春天要迟到,http://em.21dtv.com/songs/60044068.mkv +尤雅-为什么春天要迟到,http://em.21dtv.com/songs/60044067.mkv +谢雷-为什么春天要迟到,http://em.21dtv.com/songs/60044066.mkv +欣哲-为什么不让我爱你,http://em.21dtv.com/songs/60061658.mkv +孟飞-为什么不能在一起,http://em.21dtv.com/songs/60118509.mkv +安俊旭-为什么爱我离开我,http://em.21dtv.com/songs/60071217.mkv +彝人传奇-我所居住的半山腰,http://em.21dtv.com/songs/60120544.mkv +庄学忠-往事就是我的安慰,http://em.21dtv.com/songs/60043444.mkv +陈雷+江美丽-往事就是我的安慰,http://em.21dtv.com/songs/60043443.mkv +周安-我是骄傲的淮安人,http://em.21dtv.com/songs/60130190.mkv +韩磊-我是海洋,http://em.21dtv.com/songs/60120127.mkv +张莲-我是黑夜你是白天,http://em.21dtv.com/songs/60046119.mkv +武阳-无数个分手的理由,http://em.21dtv.com/songs/60047434.mkv +佚名-我是孤独还是寂寞(无原唱),http://em.21dtv.com/songs/60046116.mkv +罗百吉-五十分之五十的爱,http://em.21dtv.com/songs/60047660.mkv +高安+郑莉莉-我是否也在你心中,http://em.21dtv.com/songs/60128615.mkv +江智民+周虹-我是否也在你心中,http://em.21dtv.com/songs/60113772.mkv +网络歌手-我是否也在你心中,http://em.21dtv.com/songs/60078329.mkv +高安-我是否也在你心中,http://em.21dtv.com/songs/60046108.mkv +高安+囚鸟-我是否也在你心中,http://em.21dtv.com/songs/60065099.mkv +涓子-我是佛前一朵青莲,http://em.21dtv.com/songs/60069975.mkv +林隆璇-我是多么认真对你,http://em.21dtv.com/songs/60046098.mkv +孟庭苇-我说的谎都是真的,http://em.21dtv.com/songs/60046253.mkv +王耀儿-我是不是真的爱你,http://em.21dtv.com/songs/60123010.mkv +黎亚-我是不是你的情人,http://em.21dtv.com/songs/60089554.mkv +景岗山-我是不是还能爱你,http://em.21dtv.com/songs/60046080.mkv +佚名-我所不能了解的事,http://em.21dtv.com/songs/60046266.mkv +长春虫子-我受不了你的背叛,http://em.21dtv.com/songs/60046250.mkv +常宽-玩世不恭2000,http://em.21dtv.com/songs/60043174.mkv +帅霖-我深爱的人在哪里,http://em.21dtv.com/songs/60046053.mkv +赵传-我所爱的让我流泪,http://em.21dtv.com/songs/60046264.mkv +潘美辰-我仍用心地爱着你,http://em.21dtv.com/songs/60088243.mkv +蓝瘦的海盗很香菇-往日情,http://em.21dtv.com/songs/60129575.mkv +田震-温柔美眉铿锵玫瑰,http://em.21dtv.com/songs/60091773.mkv +詹曼铃+沈建豪-无人会冻甲咱拆散,http://em.21dtv.com/songs/60086963.mkv +苏芮-温柔的夜,http://em.21dtv.com/songs/60102659.mkv +梁静茹-为情之所以为爱情,http://em.21dtv.com/songs/60044045.mkv +佚名-我骑着马儿过草原,http://em.21dtv.com/songs/60046020.mkv +陈天红-我情愿做你的手机,http://em.21dtv.com/songs/60120073.mkv +许冠英-无情夜冷风+夜雨声(演唱会),http://em.21dtv.com/songs/60047377.mkv +杨坤+陈章健-无情的雨无情的你,http://em.21dtv.com/songs/60111184.mkv +孙露-无情的雨无情的你,http://em.21dtv.com/songs/60099936.mkv +满文军-无情的雨无情的你,http://em.21dtv.com/songs/60097903.mkv +周晓鸥-无情的雨无情的你,http://em.21dtv.com/songs/60078458.mkv +齐秦-无情的雨无情的你,http://em.21dtv.com/songs/60047343.mkv +刘德华-无情的雨无情的你,http://em.21dtv.com/songs/60047342.mkv +李泓滢-无情的哥哥穿草鞋,http://em.21dtv.com/songs/60047322.mkv +沈文程-无情的风无情的你,http://em.21dtv.com/songs/60047321.mkv +张蓉蓉-无情不豪是阮的名,http://em.21dtv.com/songs/60089289.mkv +郑晓填-我陪你到天荒地老,http://em.21dtv.com/songs/60129666.mkv +孙俊辉-我怕老去的那一天,http://em.21dtv.com/songs/60072553.mkv +Fifth Harmony+Kid Ink-Worth It,http://em.21dtv.com/songs/60111603.mkv +苏丁琦-WOMAN UP,http://em.21dtv.com/songs/60129536.mkv +高松-为你终生守口如瓶,http://em.21dtv.com/songs/60044016.mkv +王馨-为你一醉解千愁唱,http://em.21dtv.com/songs/60096412.mkv +许云上-我宁愿活在山里面,http://em.21dtv.com/songs/60122105.mkv +黄飞鹏-为你写最后一首歌,http://em.21dtv.com/songs/60072501.mkv +李志强-为你写的那一首歌,http://em.21dtv.com/songs/60044000.mkv +李琛-我能为你做些什么,http://em.21dtv.com/songs/60046009.mkv +范野-我那伤心的恋爱史,http://em.21dtv.com/songs/60046000.mkv +张卫健-为你倾心倾意倾神,http://em.21dtv.com/songs/60092568.mkv +面具-为你流泪我不后悔,http://em.21dtv.com/songs/60098908.mkv +哈泊力夫-我那可爱的内蒙古,http://em.21dtv.com/songs/60122615.mkv +王杰-我能感觉你在说谎,http://em.21dtv.com/songs/60046006.mkv +机动现场-为你而战2012,http://em.21dtv.com/songs/60069912.mkv +张洪量-我能带走你的什么,http://em.21dtv.com/songs/60046005.mkv +钟明秋-为你等待,http://em.21dtv.com/songs/60108091.mkv +罗逻圣-我们再也回不去了,http://em.21dtv.com/songs/60122011.mkv +崔琰-我们再也不可能了,http://em.21dtv.com/songs/60080928.mkv +朱俐静+陈彦允-我们在同一个频率,http://em.21dtv.com/songs/60105960.mkv +徐宏-我们总是遮住双眼,http://em.21dtv.com/songs/60110222.mkv +经超-我们最美好的十年,http://em.21dtv.com/songs/60117962.mkv +庞龙-我们在蓝色海上飘,http://em.21dtv.com/songs/60107703.mkv +温兆伦-我们之间两个世界,http://em.21dtv.com/songs/60045982.mkv +佚名-我梦中划来一条船,http://em.21dtv.com/songs/60045991.mkv +山野-我们住过的那条街,http://em.21dtv.com/songs/60078315.mkv +童唱-我们在春天的早晨,http://em.21dtv.com/songs/60045965.mkv +巫启贤+小康-我没有钱我不要脸,http://em.21dtv.com/songs/60045753.mkv +陆伊漫-我们一起听过的歌,http://em.21dtv.com/songs/60062728.mkv +COLOR-我没有你要的快乐,http://em.21dtv.com/songs/60065083.mkv +关牧村-我没有带回我的心,http://em.21dtv.com/songs/60084057.mkv +言承旭-我没有办法离开你,http://em.21dtv.com/songs/60045740.mkv +G.Soul-我们现在要去哪儿,http://em.21dtv.com/songs/60134677.mkv +TFBOYS-为梦想时刻准备着,http://em.21dtv.com/songs/60103825.mkv +博才-我们相爱了那么久,http://em.21dtv.com/songs/60121469.mkv +莫莫-我们太多承诺忘记,http://em.21dtv.com/songs/60117168.mkv +大北农兄弟-我们是永远的兄弟,http://em.21dtv.com/songs/60115769.mkv +腾格尔-我们是永远的苍狼,http://em.21dtv.com/songs/60045942.mkv +杜娟-我们是未来的希望,http://em.21dtv.com/songs/60078301.mkv +佚名-我们是未来的希望,http://em.21dtv.com/songs/60061694.mkv +卢庚戌-我们生来就是孤独,http://em.21dtv.com/songs/60133439.mkv +探戈-我们是红色的战士,http://em.21dtv.com/songs/60089317.mkv +佚名-我们是红色的战士,http://em.21dtv.com/songs/60045928.mkv +紫琴-我们说好了不分离,http://em.21dtv.com/songs/60085915.mkv +佚名-我们是红军的后代,http://em.21dtv.com/songs/60045927.mkv +京剧-我们是功能子弟兵,http://em.21dtv.com/songs/60090529.mkv +京剧-我们是工农子弟兵,http://em.21dtv.com/songs/60045924.mkv +汤灿-我们是党的好儿女,http://em.21dtv.com/songs/60045922.mkv +佚名-我们是春天的鲜花,http://em.21dtv.com/songs/60045921.mkv +花儿乐队-我们能不能不分手,http://em.21dtv.com/songs/60045914.mkv +王秀如-我们面对面的坐着,http://em.21dtv.com/songs/60045912.mkv +苏慧伦-我们快乐地向前走,http://em.21dtv.com/songs/60128340.mkv +赵荣-我们就这样分手吗,http://em.21dtv.com/songs/60114105.mkv +曹菲儿-我们就这样错过了,http://em.21dtv.com/songs/60086936.mkv +彭丽媛-我们就是黄河泰山,http://em.21dtv.com/songs/60045903.mkv +戊道子-我们结婚吧好不好,http://em.21dtv.com/songs/60067575.mkv +金波-我们互助的中国人,http://em.21dtv.com/songs/60121040.mkv +梁咏琪-我们还有多少时间,http://em.21dtv.com/songs/60091516.mkv +汤非+王莉-我们好像在哪见过,http://em.21dtv.com/songs/60112054.mkv +小柯+叶蓓-我们好像在哪见过,http://em.21dtv.com/songs/60086935.mkv +杨宗纬+叶蓓-我们好像在哪见过,http://em.21dtv.com/songs/60082033.mkv +甜美真-我们的相逢是首歌,http://em.21dtv.com/songs/60065090.mkv +梁艳-我们的心并不遥远,http://em.21dtv.com/songs/60045844.mkv +董文华-我们的心并不遥远,http://em.21dtv.com/songs/60045843.mkv +苏永康-我们都是贪爱的人,http://em.21dtv.com/songs/60045873.mkv +庞龙-我们的宿舍307,http://em.21dtv.com/songs/60045846.mkv +容祖儿-我们都是如此平凡,http://em.21dtv.com/songs/60045870.mkv +乌兰桃-我们的世界哈哈哈,http://em.21dtv.com/songs/60090490.mkv +佚名-我们的生活比蜜甜,http://em.21dtv.com/songs/60045823.mkv +王英明-我们的明天比蜜甜,http://em.21dtv.com/songs/60045819.mkv +安静-我们的故事已渐远,http://em.21dtv.com/songs/60133577.mkv +龙奔-我们的风筝断了线,http://em.21dtv.com/songs/60045796.mkv +黄龄-我们都不应该孤单,http://em.21dtv.com/songs/60129856.mkv +常石磊-我们都不应该孤单,http://em.21dtv.com/songs/60117699.mkv +常石磊-我们都不应该孤单,http://em.21dtv.com/songs/60078294.mkv +李友胜-我们都被金钱主宰,http://em.21dtv.com/songs/60118664.mkv +泽仁伍波+张梅-我们的爱直到永远,http://em.21dtv.com/songs/60120708.mkv +胡派-我们的爱永远存在,http://em.21dtv.com/songs/60101482.mkv +毛力子-我们的爱一生不变,http://em.21dtv.com/songs/60067571.mkv +茫茫任海-我们的爱情怎么了,http://em.21dtv.com/songs/60071254.mkv +梅州音乐组合-我们的爱情万万岁,http://em.21dtv.com/songs/60102413.mkv +张天成-我们的爱没有未来,http://em.21dtv.com/songs/60061690.mkv +顾建华-我们的爱还在不在,http://em.21dtv.com/songs/60045787.mkv +塔宏伟-我们的爱不再回来,http://em.21dtv.com/songs/60071253.mkv +彭于晏+白百何-我们不是说好了吗,http://em.21dtv.com/songs/60078284.mkv +小俊-我们不可袖手旁观,http://em.21dtv.com/songs/60085911.mkv +金小曦-我们变得越来越棒,http://em.21dtv.com/songs/60127505.mkv +王力-我连眼泪都忍不住,http://em.21dtv.com/songs/60045718.mkv +许茹芸-我留下的一个生活,http://em.21dtv.com/songs/60107215.mkv +李谷一-无论天边无论眼前,http://em.21dtv.com/songs/60047230.mkv +晓依-网络上的爱情故事,http://em.21dtv.com/songs/60094521.mkv +陈玉建-忘了伤悲,http://em.21dtv.com/songs/60111489.mkv +郑暠天-忘了你忘了我自己,http://em.21dtv.com/songs/60065007.mkv +欧阳大龙-为了你好好活下去,http://em.21dtv.com/songs/60088161.mkv +申勇在-无论何时都没关系,http://em.21dtv.com/songs/60131690.mkv +常宽-未来的一切会很美,http://em.21dtv.com/songs/60044254.mkv +崔伟亮-网络的爱没有结果,http://em.21dtv.com/songs/60087736.mkv +罗文-我冷傲但我是暖流,http://em.21dtv.com/songs/60045714.mkv +刘沛洋-我可以做你的男人,http://em.21dtv.com/songs/60103933.mkv +佚名-文科生的一个下午,http://em.21dtv.com/songs/60044386.mkv +莫莫-我开始不那么执着,http://em.21dtv.com/songs/60117170.mkv +安雯-我家住在黄土高坡,http://em.21dtv.com/songs/60045637.mkv +谢铭佑-我今仔日无想欲飞,http://em.21dtv.com/songs/60086929.mkv +夏筠妍-我就要和你在一起,http://em.21dtv.com/songs/60080298.mkv +赵英俊+夏筠妍-我就要和你在一起,http://em.21dtv.com/songs/60078272.mkv +夏筠妍+赵英俊-我就要和你在一起,http://em.21dtv.com/songs/60072539.mkv +文千岁-文君戏相如之赠钗(戏曲),http://em.21dtv.com/songs/60092744.mkv +罗志祥-舞极限 爱投罗网,http://em.21dtv.com/songs/60119879.mkv +迪克牛仔-忘记我还是忘记他,http://em.21dtv.com/songs/60043564.mkv +黑龙-我就是最爱你的人,http://em.21dtv.com/songs/60078271.mkv +四大天王-我就是要叫你宝贝(无原唱),http://em.21dtv.com/songs/60045658.mkv +容祖儿-维加斯有点好莱坞,http://em.21dtv.com/songs/60078112.mkv +刘和刚-乌江山峡百里画廊,http://em.21dtv.com/songs/60086957.mkv +艳阳天+黄帆-我就是你最爱的人,http://em.21dtv.com/songs/60069959.mkv +黑龙-我就是你最爱的人,http://em.21dtv.com/songs/60061686.mkv +范晓萱+张希-我就是那个窜天猴,http://em.21dtv.com/songs/60130693.mkv +范晓萱+张希-我就是那个窜天猴,http://em.21dtv.com/songs/60129544.mkv +郑秀文-我就是爱你不害怕,http://em.21dtv.com/songs/60134317.mkv +郑秀文-我就是爱你不害怕,http://em.21dtv.com/songs/60128477.mkv +BABY-忘记你是我的权利,http://em.21dtv.com/songs/60043545.mkv +晓月-忘记你却谈何容易,http://em.21dtv.com/songs/60087942.mkv +周越洪-我今年二十一二岁,http://em.21dtv.com/songs/60099164.mkv +杨培安-忘记你不如失去你,http://em.21dtv.com/songs/60067515.mkv +我错了,http://em.21dtv.com/songs/60117324.mkv +梁业就-我究竟到底算什么,http://em.21dtv.com/songs/60106999.mkv +沐雪琪-我叫盖伦不叫德玛,http://em.21dtv.com/songs/60120698.mkv +翁航融-我决定喜欢我自己,http://em.21dtv.com/songs/60113962.mkv +许茹芸-我绝对不说我爱你,http://em.21dtv.com/songs/60045674.mkv +GALA-我绝对不能失去你,http://em.21dtv.com/songs/60106538.mkv +徐靖博-忘记比相爱更困难,http://em.21dtv.com/songs/60087888.mkv +曾春年-我戒不掉你的温柔,http://em.21dtv.com/songs/60045645.mkv +LYn-With You,http://em.21dtv.com/songs/60120223.mkv +Sam Tsui-Wildfire,http://em.21dtv.com/songs/60103816.mkv +KSHMR+Sidnie Tipton-Wildcard,http://em.21dtv.com/songs/60123495.mkv +金磊鑫-我和祖国一起飞翔,http://em.21dtv.com/songs/60081016.mkv +王杰-我会知道几时要退,http://em.21dtv.com/songs/60045621.mkv +王杰-我会知道几时要退(演唱会),http://em.21dtv.com/songs/60045620.mkv +袁洁琼-我和瑜伽有个约会,http://em.21dtv.com/songs/60103562.mkv +宋艾珊-Why Girl,http://em.21dtv.com/songs/60117676.mkv +薛之谦-我好像在哪见过你,http://em.21dtv.com/songs/60124442.mkv +SHE-我和幸福有个约定,http://em.21dtv.com/songs/60089574.mkv +蔡琴-我和我自己的影子,http://em.21dtv.com/songs/60045548.mkv +杜德伟-我和我的天使相恋,http://em.21dtv.com/songs/60078250.mkv +阿牛-我和我的四个妹妹,http://em.21dtv.com/songs/60045539.mkv +蔡旻佑-我和我的布拉姆斯,http://em.21dtv.com/songs/60118890.mkv +草蜢-为何天生不是女人,http://em.21dtv.com/songs/60043886.mkv +李盼-我和泰国有个约定,http://em.21dtv.com/songs/60097923.mkv +佚名-我还是永远爱着你,http://em.21dtv.com/songs/60045487.mkv +谢雷-我还是永远爱着你(演唱会),http://em.21dtv.com/songs/60045486.mkv +沈志仲-我还是那么的爱你,http://em.21dtv.com/songs/60061685.mkv +汤宝如-我和秋天有个约会,http://em.21dtv.com/songs/60045537.mkv +张敬轩-我和秋天有个约会,http://em.21dtv.com/songs/60069954.mkv +王杰-我会前进几时要退,http://em.21dtv.com/songs/60045611.mkv +Will Young-Who Am I,http://em.21dtv.com/songs/60125049.mkv +酒吧伤心人-为何你一去不回头,http://em.21dtv.com/songs/60068728.mkv +萧洋-为何你要离我而去,http://em.21dtv.com/songs/60119929.mkv +庄铭泽-为何你却要离开我,http://em.21dtv.com/songs/60129048.mkv +余零-我还年轻的那些年,http://em.21dtv.com/songs/60109973.mkv +孙燕姿-我怀念的,http://em.21dtv.com/songs/60115095.mkv +冀世飞-无悔今生和你相会,http://em.21dtv.com/songs/60101925.mkv +A'N'D-我好寂寞,http://em.21dtv.com/songs/60122329.mkv +金莎-我还记得你的微笑,http://em.21dtv.com/songs/60045465.mkv +盖鸣晖+吴美英-五湖泛舟-异乡脱难,http://em.21dtv.com/songs/60047646.mkv +蔡国庆+林萍-无悔的选择,http://em.21dtv.com/songs/60104413.mkv +于湉-为何丢了你的梦呢,http://em.21dtv.com/songs/60130057.mkv +乌兰图雅-我和草原有个约定,http://em.21dtv.com/songs/60132163.mkv +乌兰图雅-我和草原有个约定,http://em.21dtv.com/songs/60078248.mkv +龚月-我和草原有个约定,http://em.21dtv.com/songs/60078247.mkv +齐峰-我和草原有个约定,http://em.21dtv.com/songs/60045519.mkv +玛希-我和草原有个约定,http://em.21dtv.com/songs/60045518.mkv +降央卓玛-我和草原有个约定,http://em.21dtv.com/songs/60045517.mkv +格格-我和草原有个约定,http://em.21dtv.com/songs/60045516.mkv +凤凰传奇-我和草原有个约定,http://em.21dtv.com/songs/60045515.mkv +布仁巴雅尔-我和草原有个约定,http://em.21dtv.com/songs/60045514.mkv +乌兰托娅-我和草原有个约定,http://em.21dtv.com/songs/60063082.mkv +王莉-我和春天有个约会,http://em.21dtv.com/songs/60118791.mkv +袁珊珊-我和春天有个约会,http://em.21dtv.com/songs/60080349.mkv +俞灏明-我和春天有个约会,http://em.21dtv.com/songs/60080339.mkv +罗敏庄-我和春天有个约会(演唱会),http://em.21dtv.com/songs/60078249.mkv +刘雅丽-我和春天有个约会,http://em.21dtv.com/songs/60045522.mkv +邝美云-我和春天有个约会,http://em.21dtv.com/songs/60045521.mkv +叶振棠+刘雅丽-我和春天有个约会(演唱会),http://em.21dtv.com/songs/60045520.mkv +陈洁丽-我和春天有个约会(演唱会),http://em.21dtv.com/songs/60062260.mkv +I LOVE YOU BOYZ-唔好吹鸡只慨尾部,http://em.21dtv.com/songs/60047620.mkv +东方骏-我很不愿意离开你,http://em.21dtv.com/songs/60045553.mkv +邓紫棋-What Have You Done+想讲你知,http://em.21dtv.com/songs/60097899.mkv +鸡蛋蒸肉饼-Whatever,http://em.21dtv.com/songs/60134486.mkv +无限甜心-WHATEVER,http://em.21dtv.com/songs/60113555.mkv +No Limit-Whatever,http://em.21dtv.com/songs/60113178.mkv +赵小南-为何爱情让我心痛,http://em.21dtv.com/songs/60072498.mkv +姚天成-为何爱情那么残忍,http://em.21dtv.com/songs/60063261.mkv +万怀斌-为何爱那么容易醉,http://em.21dtv.com/songs/60134841.mkv +刘若英-我敢在你怀里孤独,http://em.21dtv.com/songs/60112547.mkv +于洋-我给习大大点个赞,http://em.21dtv.com/songs/60107478.mkv +胡东清-我给老婆你当保镖,http://em.21dtv.com/songs/60065071.mkv +赵雷-未给姐姐递出的信,http://em.21dtv.com/songs/60100482.mkv +张旭-为共和国默默行军,http://em.21dtv.com/songs/60111871.mkv +黎明-微风之前离别之后,http://em.21dtv.com/songs/60043759.mkv +刘心灵+恒苏-我发誓我永远爱你,http://em.21dtv.com/songs/60078240.mkv +刘小钰-晚风吹暖了我的心,http://em.21dtv.com/songs/60043229.mkv +吴兰诗-我的真心被你撕碎,http://em.21dtv.com/songs/60103144.mkv +张瀚元-我带着你你带着钱,http://em.21dtv.com/songs/60113487.mkv +戴佩妮-我对自己开了一枪,http://em.21dtv.com/songs/60084046.mkv +佛跳墙-我对自己开了一枪,http://em.21dtv.com/songs/60078239.mkv +达杰丁增-我的一生为你守候,http://em.21dtv.com/songs/60062305.mkv +任贤齐-我的要求你怎样说,http://em.21dtv.com/songs/60090557.mkv +任贤齐-我的要求你怎么说,http://em.21dtv.com/songs/60045329.mkv +蒙克-我的眼泪只为你流,http://em.21dtv.com/songs/60045323.mkv +林志炫-我的眼流下你的泪(演唱会),http://em.21dtv.com/songs/60045326.mkv +HEIDI NEWFIELD-whyd you have to be so good,http://em.21dtv.com/songs/60074143.mkv +苏慧伦-我的勇敢我的快乐,http://em.21dtv.com/songs/60045339.mkv +贺世哲-我的右边你的左肩,http://em.21dtv.com/songs/60045341.mkv +邱芸子+陈中-我的选择犹原是你,http://em.21dtv.com/songs/60045316.mkv +蔡小虎+林姗-我的选择犹原是你,http://em.21dtv.com/songs/60045315.mkv +陈瑞-我的心中有一艘船,http://em.21dtv.com/songs/60098886.mkv +刘德华-我的心只可容纳你(演唱会),http://em.21dtv.com/songs/60045305.mkv +何建清-我的心真的只有你,http://em.21dtv.com/songs/60045304.mkv +王菀之-我的心真的受伤了,http://em.21dtv.com/songs/60078227.mkv +张龙珍-我多想永远抱着你,http://em.21dtv.com/songs/60133702.mkv +李雨儿-我的心(演唱会),http://em.21dtv.com/songs/60129257.mkv +嘉骏-我的心已被你撕碎,http://em.21dtv.com/songs/60045299.mkv +陈雷-我的稀微有啥关稀(无原唱),http://em.21dtv.com/songs/60045255.mkv +李创-我的心痛你知道吗,http://em.21dtv.com/songs/60085895.mkv +严热-我的心你看的见吗,http://em.21dtv.com/songs/60134847.mkv +KENT王健-我的喜欢被你看穿,http://em.21dtv.com/songs/60084038.mkv +贾斯文-我的舞台我的战场,http://em.21dtv.com/songs/60080186.mkv +庞晓宇-我的温柔你看得见,http://em.21dtv.com/songs/60099998.mkv +陈红-我的未来你放心吗,http://em.21dtv.com/songs/60045248.mkv +邓丽媚-我的所有化为乌有,http://em.21dtv.com/songs/60115429.mkv +王佳佳-我的深情为你守候,http://em.21dtv.com/songs/60135529.mkv +金婷婷-我的深情为你守候(演唱会),http://em.21dtv.com/songs/60078218.mkv +张妮-我的深情为你守侯,http://em.21dtv.com/songs/60045203.mkv +王姿懿-我的深情为你守候,http://em.21dtv.com/songs/60065063.mkv +曲尔甲+多哇·才吉-我的思念只给你唱,http://em.21dtv.com/songs/60045222.mkv +刘若英-我的世界因为有你,http://em.21dtv.com/songs/60090727.mkv +司文-我的世界不能没你,http://em.21dtv.com/songs/60087527.mkv +赵鹏-我的神话叶塞妮亚,http://em.21dtv.com/songs/60045204.mkv +洪荣宏-我的Sakura,http://em.21dtv.com/songs/60135513.mkv +黎姿-我的日子有你分享,http://em.21dtv.com/songs/60045197.mkv +阿威-忘掉那伤心的地方(无原唱),http://em.21dtv.com/songs/60043515.mkv +许志安-唯独你是不可取替,http://em.21dtv.com/songs/60044170.mkv +郑秀文-唯独你是不可取替(演唱会),http://em.21dtv.com/songs/60044169.mkv +陈洁丽-唯独你是不可取替(演唱会),http://em.21dtv.com/songs/60044168.mkv +许志安-唯独你是不可取代(HD演唱会),http://em.21dtv.com/songs/60044167.mkv +晓月-忘掉你却谈何容易,http://em.21dtv.com/songs/60043516.mkv +纪晓斌-我等你美丽的女孩,http://em.21dtv.com/songs/60098684.mkv +慕容伊一-忘掉你就这么简单,http://em.21dtv.com/songs/60071209.mkv +刘昌现-我对你还不够好吗,http://em.21dtv.com/songs/60045400.mkv +渝城-我对你还不够好嘛,http://em.21dtv.com/songs/60069950.mkv +吉星-我对你的爱是真的,http://em.21dtv.com/songs/60062499.mkv +刁寒-我的梦在雪里燃烧,http://em.21dtv.com/songs/60045162.mkv +吴映香-我的梦 Undo,http://em.21dtv.com/songs/60125289.mkv +黄鹤翔-我的梦和你在一起,http://em.21dtv.com/songs/60045159.mkv +陈瑞-我等了你很久很久,http://em.21dtv.com/songs/60081298.mkv +晓月-我等了你很久很久,http://em.21dtv.com/songs/60045379.mkv +锦绣二重唱-我的快乐,http://em.21dtv.com/songs/60108106.mkv +紫菱-我的快乐就是想你,http://em.21dtv.com/songs/60127265.mkv +陈雅森-我的快乐就是想你,http://em.21dtv.com/songs/60121098.mkv +红蔷薇-我的快乐就是想你,http://em.21dtv.com/songs/60117961.mkv +吴杨雨-我的快乐就是想你,http://em.21dtv.com/songs/60115048.mkv +红蔷薇+长江-我的快乐就是想你,http://em.21dtv.com/songs/60114720.mkv +陈雅森-我的快乐就是想你,http://em.21dtv.com/songs/60102904.mkv +红蔷薇-我的快乐就是想你,http://em.21dtv.com/songs/60084026.mkv +巴桑拉姆-我的家乡香格里拉,http://em.21dtv.com/songs/60099215.mkv +陈绮贞-我的骄傲无可救药,http://em.21dtv.com/songs/60090298.mkv +海鸣威-我的回忆不是我的,http://em.21dtv.com/songs/60045105.mkv +海鸣威+泳儿-我的回忆不是我的,http://em.21dtv.com/songs/60045104.mkv +海鸣威+泳儿-我的回忆不是我的(演唱会),http://em.21dtv.com/songs/60045103.mkv +琪琪格-我的呼和浩特恋人(舞曲版),http://em.21dtv.com/songs/60065058.mkv +花儿乐队-我的果汁分你一半,http://em.21dtv.com/songs/60045083.mkv +陈宏斌-我的故乡巴彦淖尔,http://em.21dtv.com/songs/60085882.mkv +方季惟-我的故事你在听吗,http://em.21dtv.com/songs/60091261.mkv +铁文太-我的父亲我的草原,http://em.21dtv.com/songs/60108101.mkv +格格-我的父亲是牧马人,http://em.21dtv.com/songs/60045065.mkv +张一腾-无底洞,http://em.21dtv.com/songs/60129057.mkv +蔡健雅-无底洞,http://em.21dtv.com/songs/60117198.mkv +佚名-伟大的领袖毛泽东,http://em.21dtv.com/songs/60044203.mkv +A LIN-我等到花儿也谢了,http://em.21dtv.com/songs/60108203.mkv +赵钶-我等到花儿也谢了,http://em.21dtv.com/songs/60103598.mkv +张学友-我等到花儿也谢了,http://em.21dtv.com/songs/60045377.mkv +张学友-我等到花儿也谢了(演唱会),http://em.21dtv.com/songs/60045375.mkv +忆华-我到底犯了什么错,http://em.21dtv.com/songs/60094512.mkv +徐连国-我到底犯了什么错,http://em.21dtv.com/songs/60044967.mkv +张天甫-我的草原我的阿妈,http://em.21dtv.com/songs/60125500.mkv +范永生-我当初也曾爱过你,http://em.21dtv.com/songs/60044966.mkv +楼宏章-我的痴情你不会懂,http://em.21dtv.com/songs/60071236.mkv +李宇春-我的八十八个朋友,http://em.21dtv.com/songs/60088009.mkv +豫剧-我的伯伯你慢些着,http://em.21dtv.com/songs/60134575.mkv +干露露-我的爱只为你存在,http://em.21dtv.com/songs/60098322.mkv +马健涛-我的爱只为你存在,http://em.21dtv.com/songs/60085881.mkv +谢霆锋-我的爱只为你存在,http://em.21dtv.com/songs/60045032.mkv +陈兴瑜+陈玉建-我的爱永远陪着你,http://em.21dtv.com/songs/60045028.mkv +任贤齐+周丽淇-我的爱有你才完美,http://em.21dtv.com/songs/60107482.mkv +谢世超-我的爱已被你带走,http://em.21dtv.com/songs/60085880.mkv +小龙女-我的爱人你在哪里,http://em.21dtv.com/songs/60116752.mkv +小龙女-我的爱人你在哪里,http://em.21dtv.com/songs/60098291.mkv +庞晓宇-我的爱人你爱我吗,http://em.21dtv.com/songs/60045020.mkv +钟嘉欣-我的爱情无疾而终,http://em.21dtv.com/songs/60126308.mkv +周秉钧-我的爱情没有合约(无原唱),http://em.21dtv.com/songs/60045011.mkv +佚名-我对爱情没有把握(无原唱),http://em.21dtv.com/songs/60045396.mkv +刘坤-我的爱你并不在乎,http://em.21dtv.com/songs/60110019.mkv +叶倩文-我的爱和别人一样(无原唱),http://em.21dtv.com/songs/60045002.mkv +龙奔-我的爱到底在哪里,http://em.21dtv.com/songs/60078187.mkv +杨宗华-我的爱到底在哪里,http://em.21dtv.com/songs/60065054.mkv +翁汕汕-我的爱不能随便给,http://em.21dtv.com/songs/60080757.mkv +韩红-我曾有过我也都懂,http://em.21dtv.com/songs/60127588.mkv +摇滚女王-未曾相识就已相爱,http://em.21dtv.com/songs/60135309.mkv +董一帆-我曾为你放弃所有,http://em.21dtv.com/songs/60044948.mkv +方亚芬-问苍天女儿何不幸,http://em.21dtv.com/songs/60087915.mkv +陈鹏-我才是最爱你的人,http://em.21dtv.com/songs/60044938.mkv +宗灵水-我曾是个当兵的人,http://em.21dtv.com/songs/60061713.mkv +童唱-we can play on the big bass dr,http://em.21dtv.com/songs/60006139.mkv +筷子兄弟-我从来没去过纽约,http://em.21dtv.com/songs/60102602.mkv +侯磊-我从路的北方走来,http://em.21dtv.com/songs/60125141.mkv +刘尊+郭彤-我曾经最爱的女人,http://em.21dtv.com/songs/60044946.mkv +腾格尔-我曾多少次梦见你,http://em.21dtv.com/songs/60044942.mkv +刘若英-我曾爱过一个男孩,http://em.21dtv.com/songs/60044941.mkv +王可儿-我不在你的面前哭,http://em.21dtv.com/songs/60072523.mkv +高天艺-我背着你爱上别人,http://em.21dtv.com/songs/60044719.mkv +汤浩平-我不知道我想知道,http://em.21dtv.com/songs/60044935.mkv +温蕊尔-我不知道发生什么,http://em.21dtv.com/songs/60097921.mkv +艾怡良-我不知道爱是什么,http://em.21dtv.com/songs/60117150.mkv +嘉骏-我不要再为你流泪,http://em.21dtv.com/songs/60044908.mkv +家家-我不愿让你一个人,http://em.21dtv.com/songs/60113417.mkv +五月天-我不愿让你一个人,http://em.21dtv.com/songs/60113240.mkv +品冠-我不愿让你一个人,http://em.21dtv.com/songs/60098205.mkv +黄品冠-我不愿让你一个人,http://em.21dtv.com/songs/60097922.mkv +五月天-我不愿让你一个人,http://em.21dtv.com/songs/60065050.mkv +岳太阳-我把眼泪装在心上,http://em.21dtv.com/songs/60119467.mkv +雷龙-我不愿看见你流泪,http://em.21dtv.com/songs/60088933.mkv +黄芳-我不愿看见你流泪,http://em.21dtv.com/songs/60069930.mkv +曾辛博-我不要活在回忆里,http://em.21dtv.com/songs/60128065.mkv +张启靓-我不想再为你哭泣,http://em.21dtv.com/songs/60044893.mkv +泔林-我不想走 我不想逃,http://em.21dtv.com/songs/60044895.mkv +蔡诗芸-我不想知道他是谁,http://em.21dtv.com/songs/60088607.mkv +蔡诗芸-我不想知道她是谁,http://em.21dtv.com/songs/60044894.mkv +毛阿敏-我不想再次被情伤,http://em.21dtv.com/songs/60044892.mkv +韩帅兵-我不想永远忘记你,http://em.21dtv.com/songs/60065048.mkv +杨钰莹-我不需要你的安慰,http://em.21dtv.com/songs/60104234.mkv +吴是闳-我不屑,http://em.21dtv.com/songs/60125291.mkv +韩晶-我不想哭,http://em.21dtv.com/songs/60111521.mkv +许晓杰-为百姓撑起一片天,http://em.21dtv.com/songs/60097907.mkv +阎维文-我把太阳迎进祖国,http://em.21dtv.com/songs/60044711.mkv +钟镇涛-我不是最伤心的人(无原唱),http://em.21dtv.com/songs/60044867.mkv +多亮-我不是值得爱的人,http://em.21dtv.com/songs/60078180.mkv +杨林-我不是一个坏小孩,http://em.21dtv.com/songs/60044860.mkv +邓小龙-我不是一个好男人,http://em.21dtv.com/songs/60115431.mkv +冉青霞-我不是一个好女人,http://em.21dtv.com/songs/60100768.mkv +覃元隆-我不是一个好男人,http://em.21dtv.com/songs/60084015.mkv +杨廷廷-我不是一个好男人,http://em.21dtv.com/songs/60068754.mkv +邓小龙-我不是一个好男人,http://em.21dtv.com/songs/60066395.mkv +童力威-我不是一个歹囝仔,http://em.21dtv.com/songs/60044859.mkv +姜昕-我不是随便的花朵,http://em.21dtv.com/songs/60078175.mkv +吴佩文-我不是你要的女生,http://em.21dtv.com/songs/60044845.mkv +李蕴-我不是你要的女生,http://em.21dtv.com/songs/60065044.mkv +星君-我不是你的人民币,http://em.21dtv.com/songs/60124018.mkv +艾莉莎-我不是你的那个她,http://em.21dtv.com/songs/60072521.mkv +悦希儿-我不是你的某某某,http://em.21dtv.com/songs/60123982.mkv +李幸倪-我不是你的观赏鱼,http://em.21dtv.com/songs/60078174.mkv +晓依-我把思念打包给你,http://em.21dtv.com/songs/60098417.mkv +花世纪-我不是故意要想你,http://em.21dtv.com/songs/60078172.mkv +林晓培-我不是非要你的爱,http://em.21dtv.com/songs/60044820.mkv +陈星-我不是爱情的逃兵,http://em.21dtv.com/songs/60044815.mkv +张提-我不配做你男朋友,http://em.21dtv.com/songs/60080847.mkv +李成-我不能停止爱你,http://em.21dtv.com/songs/60102339.mkv +苏小花-我比你更像个男人,http://em.21dtv.com/songs/60099457.mkv +王岩-我不吝惜我的眼泪,http://em.21dtv.com/songs/60072519.mkv +李克勤+谭咏麟-忘不了你+深深深,http://em.21dtv.com/songs/60115219.mkv +王宏恩-我不了解你的明白,http://em.21dtv.com/songs/60044790.mkv +曾宪元-忘不了红色海陆丰,http://em.21dtv.com/songs/60121742.mkv +张姄-忘不了曾经的甜蜜,http://em.21dtv.com/songs/60122716.mkv +陈光忠-乌巴火箭风ubah rocket style,http://em.21dtv.com/songs/60078434.mkv +苏芮+钟镇涛-我不该看你的眼神,http://em.21dtv.com/songs/60044754.mkv +李琦-我并不是那么坚强,http://em.21dtv.com/songs/60106951.mkv +赵永-为不爱我的人流泪,http://em.21dtv.com/songs/60115422.mkv +岳太阳-我被爱情伤透了心,http://em.21dtv.com/songs/60119468.mkv +舞曲-我爱着蓝色的海洋(快三步),http://em.21dtv.com/songs/60091914.mkv +佚名-我爱这蓝色的海洋,http://em.21dtv.com/songs/60044699.mkv +屠洪纲-我爱这蓝色的海洋,http://em.21dtv.com/songs/60044698.mkv +陈歌华-我爱祖国祖国爱我,http://em.21dtv.com/songs/60044706.mkv +佚名-我爱这公社新一代,http://em.21dtv.com/songs/60044697.mkv +佚名-我爱祖国的大草原,http://em.21dtv.com/songs/60044703.mkv +陈小霞-我爱无锡的山和水,http://em.21dtv.com/songs/60085868.mkv +张韶涵-What A Wonderful World+New York New York,http://em.21dtv.com/songs/60093812.mkv +儿歌-我爱太阳我爱月亮,http://em.21dtv.com/songs/60090634.mkv +王岗岗-我爱她她却爱着他,http://em.21dtv.com/songs/60061668.mkv +黄明志+朱主爱-WATER打功夫,http://em.21dtv.com/songs/60129843.mkv +Silento-Watch Me,http://em.21dtv.com/songs/60113186.mkv +蔡献华+甜美真-我爱上了天边的人,http://em.21dtv.com/songs/60044672.mkv +陈瑞-晚安说给最爱的人,http://em.21dtv.com/songs/60122244.mkv +刘力扬+Bryan Rice-Warriors,http://em.21dtv.com/songs/60133398.mkv +蒙面哥-为爱起舞,http://em.21dtv.com/songs/60122087.mkv +孙楠+孙殿福+孙艺哲-我爱你中国+鸿雁,http://em.21dtv.com/songs/60094056.mkv +中川木-我爱你时什么都是,http://em.21dtv.com/songs/60044648.mkv +邰正宵-我爱你胜过这世界,http://em.21dtv.com/songs/60044647.mkv +陈立强-我爱你胜过这世界,http://em.21dtv.com/songs/60044646.mkv +笑天-我爱你胜过你爱我,http://em.21dtv.com/songs/60102597.mkv +冷漠+杨小曼-我爱你胜过你爱我,http://em.21dtv.com/songs/60044645.mkv +梦成-我爱你胜过你爱我,http://em.21dtv.com/songs/60071225.mkv +孙露-我爱你却要离开你,http://em.21dtv.com/songs/60113409.mkv +布衣乐队-我爱你亲爱的姑娘,http://em.21dtv.com/songs/60102175.mkv +陈芳语-我爱你 你知道吗,http://em.21dtv.com/songs/60112367.mkv +长春虫子-我爱你你却爱着他,http://em.21dtv.com/songs/60044639.mkv +叶权泉-我爱你你却爱着他,http://em.21dtv.com/songs/60044638.mkv +黑龙-我爱你你却爱着他,http://em.21dtv.com/songs/60044637.mkv +魏语诺-Wanna Do,http://em.21dtv.com/songs/60116399.mkv +米线+包伍-我爱你勐巴拉娜西,http://em.21dtv.com/songs/60084011.mkv +冷漠-我爱你就像你爱他,http://em.21dtv.com/songs/60085864.mkv +朱海-我爱你绝不是谎言,http://em.21dtv.com/songs/60072517.mkv +何鹏-我爱你和你没关系,http://em.21dtv.com/songs/60116544.mkv +李昶俊-我爱你更爱我自己,http://em.21dtv.com/songs/60124080.mkv +崔伟亮-我爱你多久痛多久,http://em.21dtv.com/songs/60078150.mkv +郑晓填+蔡晓-我爱你不愿意放手,http://em.21dtv.com/songs/60134304.mkv +动力火车-我爱你爱了这么久,http://em.21dtv.com/songs/60044628.mkv +动力火车-我爱你爱了那么久,http://em.21dtv.com/songs/60087437.mkv +任宇翔-为AMY女神辅助,http://em.21dtv.com/songs/60103877.mkv +阚杰-我爱老婆老婆爱我(演唱会),http://em.21dtv.com/songs/60098822.mkv +阚杰-我爱老婆老婆爱我,http://em.21dtv.com/songs/60085863.mkv +游鸿明-我爱了另外一个人,http://em.21dtv.com/songs/60044589.mkv +AAA-Wake Up!,http://em.21dtv.com/songs/60102994.mkv +大巴山民歌团-我爱家乡我爱城口,http://em.21dtv.com/songs/60132325.mkv +阿振-我爱家乡的微山湖,http://em.21dtv.com/songs/60088833.mkv +才旦卓玛-我爱家乡的山和水,http://em.21dtv.com/songs/60044581.mkv +秦影-我爱的心里只有你,http://em.21dtv.com/songs/60100346.mkv +邓海-我爱的人已结了婚,http://em.21dtv.com/songs/60069924.mkv +洪玮-我爱的人他不爱我(无原唱),http://em.21dtv.com/songs/60044566.mkv +蓝雨-我爱的人他不爱我,http://em.21dtv.com/songs/60066387.mkv +李易峰-我爱的人伤我最深,http://em.21dtv.com/songs/60044565.mkv +乌兰托娅-我爱的人儿在新疆,http://em.21dtv.com/songs/60054800.mkv +张璞-我爱的人你在何方,http://em.21dtv.com/songs/60084006.mkv +徐方-我爱的人嫁给了谁,http://em.21dtv.com/songs/60078138.mkv +于夫-我爱的人嫁给了谁,http://em.21dtv.com/songs/60044563.mkv +戴爱玲-我爱的人不必爱我(演唱会),http://em.21dtv.com/songs/60066386.mkv +黎明-我爱的你在做什么,http://em.21dtv.com/songs/60044551.mkv +郑东-我爱的女人变了心,http://em.21dtv.com/songs/60084004.mkv +陈娇-我爱的男人变了心,http://em.21dtv.com/songs/60044549.mkv +温碧霞-我爱的你不在身边,http://em.21dtv.com/songs/60067539.mkv +胡建烽-我爱的姑娘在草原,http://em.21dtv.com/songs/60112898.mkv +汤潮-我爱的姑娘你最美,http://em.21dtv.com/songs/60044547.mkv +大原樱子-キミを忘れないよ,http://em.21dtv.com/songs/60115771.mkv +群星-VIDA生命之歌,http://em.21dtv.com/songs/60102632.mkv +X Ambassadors-Unsteady,http://em.21dtv.com/songs/60125053.mkv +100%-U Beauty,http://em.21dtv.com/songs/60102985.mkv +陈柔希-U And Me,http://em.21dtv.com/songs/60110642.mkv +杜德伟+刘沁-她总在某一个地方,http://em.21dtv.com/songs/60041177.mkv +任妙音-天在下雨我在想你,http://em.21dtv.com/songs/60133355.mkv +祁隆-天在下雨我在想你,http://em.21dtv.com/songs/60131704.mkv +任妙音-天在下雨我在想你,http://em.21dtv.com/songs/60131153.mkv +任妙音-天在下雨我在想你,http://em.21dtv.com/songs/60119250.mkv +苏芮-停在我心里的温柔,http://em.21dtv.com/songs/60042634.mkv +麦子杰-天之大,http://em.21dtv.com/songs/60126462.mkv +韩红-天之大,http://em.21dtv.com/songs/60122269.mkv +徐千雅-天佑中华,http://em.21dtv.com/songs/60102263.mkv +乌兰图雅-天越蓝我就越想你,http://em.21dtv.com/songs/60081200.mkv +于文华+尹相杰-偷一颗月亮照亮天,http://em.21dtv.com/songs/60042867.mkv +于文华+尹相杰-偷一颗月亮照亮天(演唱会),http://em.21dtv.com/songs/60042866.mkv +音乐走廊+歌一生-天涯海角我都愿意,http://em.21dtv.com/songs/60121134.mkv +吕薇-太阳很好月亮很好,http://em.21dtv.com/songs/60086864.mkv +吴宇凯-疼一个人痛一世人,http://em.21dtv.com/songs/60041673.mkv +胡越山+邹静-痛一次换来一个梦,http://em.21dtv.com/songs/60042820.mkv +杨培安-痛也不说出口的我,http://em.21dtv.com/songs/60042819.mkv +钟汉良-天下之风,http://em.21dtv.com/songs/60102840.mkv +王菲+梁朝伟-天下无双之醉一场,http://em.21dtv.com/songs/60091732.mkv +王菲+梁朝伟-天下无双天啦地啦,http://em.21dtv.com/songs/60042202.mkv +孙艺琪-通讯录里的路人甲,http://em.21dtv.com/songs/60128969.mkv +蔡葵-太想爱你2007,http://em.21dtv.com/songs/60041365.mkv +佚名-the way you do the things you do,http://em.21dtv.com/songs/60005718.mkv +舜文齐-特务小强之西游记,http://em.21dtv.com/songs/60088510.mkv +施文彬-台湾第一家盐酥鸡,http://em.21dtv.com/songs/60095563.mkv +文迹奇武-台湾第一家盐酥鸡(演唱会),http://em.21dtv.com/songs/60041269.mkv +佚名-拖网的古船没快舟,http://em.21dtv.com/songs/60043009.mkv +邓紫祺-the voice within 遗失的声音,http://em.21dtv.com/songs/60074028.mkv +江蕙-偷偷将你当作知己,http://em.21dtv.com/songs/60042846.mkv +陈妤-天天改变天天不变,http://em.21dtv.com/songs/60042138.mkv +巴哈尔古丽-甜甜的歌儿迎贵客,http://em.21dtv.com/songs/60091012.mkv +韩磊-天上有没有北大荒,http://em.21dtv.com/songs/60041995.mkv +蔡健雅-天使与魔鬼的对话,http://em.21dtv.com/songs/60085787.mkv +刘咚咚-套声依旧,http://em.21dtv.com/songs/60112534.mkv +SHINE-涛声依旧+茶餐厅,http://em.21dtv.com/songs/60097940.mkv +倪宝-天上圣母妈祖娘娘(无原唱),http://em.21dtv.com/songs/60041990.mkv +DJ-天上人间,http://em.21dtv.com/songs/60118252.mkv +林育群-听说你找到了快乐,http://em.21dtv.com/songs/60100216.mkv +赵仕瑾-听说那时的爱很美,http://em.21dtv.com/songs/60131840.mkv +赵仕瑾-听说那时的爱很美,http://em.21dtv.com/songs/60118069.mkv +零点乐队-天上掉下个林妹妹,http://em.21dtv.com/songs/60095157.mkv +佚名-天上掉下个林妹妹,http://em.21dtv.com/songs/60041981.mkv +江凯文-天上掉下个林妹妹,http://em.21dtv.com/songs/60041980.mkv +贺一航-听说当初你找过我,http://em.21dtv.com/songs/60134242.mkv +陈晓东-突然心动,http://em.21dtv.com/songs/60094744.mkv +野马-铜仁我美丽的故乡,http://em.21dtv.com/songs/60085804.mkv +余枫-Treasure,http://em.21dtv.com/songs/60104787.mkv +Eddie Rabbitt-The Room At The Top Of The Stairs,http://em.21dtv.com/songs/60098989.mkv +郑伊健-天气的错心如刀割,http://em.21dtv.com/songs/60090254.mkv +王铮亮-Together,http://em.21dtv.com/songs/60120781.mkv +Ella Eyre-Together,http://em.21dtv.com/songs/60113148.mkv +秦天-同年兵的陕北兄弟,http://em.21dtv.com/songs/60042678.mkv +宁桓宇-替你爱我,http://em.21dtv.com/songs/60126789.mkv +包尔淦-她来听我的演唱会,http://em.21dtv.com/songs/60099820.mkv +张学友-她来听我的演唱会,http://em.21dtv.com/songs/60041159.mkv +黄中原+傅薇-她来听我的演唱会,http://em.21dtv.com/songs/60041158.mkv +张学友-她来听我的演唱会(演唱会),http://em.21dtv.com/songs/60041157.mkv +苏打绿-the lonely goatherd+山顶黑狗兄(演唱会),http://em.21dtv.com/songs/60074016.mkv +新疆民歌-吐鲁番的葡萄熟了,http://em.21dtv.com/songs/60089320.mkv +韩婷-吐鲁番的葡萄熟了,http://em.21dtv.com/songs/60086892.mkv +朱韬-吐鲁番的葡萄熟了,http://em.21dtv.com/songs/60083939.mkv +孙琳-吐鲁番的葡萄熟了,http://em.21dtv.com/songs/60042961.mkv +关牧村-吐鲁番的葡萄熟了,http://em.21dtv.com/songs/60042960.mkv +刀郎-吐鲁番的葡萄熟了(演唱会),http://em.21dtv.com/songs/60042959.mkv +甜美真-谈恋爱就像嗑瓜子,http://em.21dtv.com/songs/60064943.mkv +阿枫-谈恋爱不如养条狗,http://em.21dtv.com/songs/60105457.mkv +宿雨涵-天空是朵盛开的蓝,http://em.21dtv.com/songs/60062950.mkv +孙露-痛苦的时候最寂寞,http://em.21dtv.com/songs/60104935.mkv +尚雯婕-Titanium,http://em.21dtv.com/songs/60105781.mkv +郑培钦-唐河我可爱的家乡,http://em.21dtv.com/songs/60111437.mkv +朱主爱-天黑黑,http://em.21dtv.com/songs/60125665.mkv +Black Eyed Peas-The Time,http://em.21dtv.com/songs/60129894.mkv +黄子韬-The Road,http://em.21dtv.com/songs/60122301.mkv +LADIES' CODE-The Rain,http://em.21dtv.com/songs/60129958.mkv +DJ Snake+Jeremih+Young Thug+Swizz Beatz-The Half,http://em.21dtv.com/songs/60131053.mkv +Lady Gaga-The Cure,http://em.21dtv.com/songs/60134733.mkv +The 1975-The City,http://em.21dtv.com/songs/60119199.mkv +DJ-唐会32[DJ],http://em.21dtv.com/songs/60103768.mkv +星弟-同归于尽,http://em.21dtv.com/songs/60120581.mkv +黄品源-它给我不同的快乐(演唱会),http://em.21dtv.com/songs/60041131.mkv +徐沛东-趟过男人河的女人,http://em.21dtv.com/songs/60041525.mkv +韦唯-趟过男人河的女人,http://em.21dtv.com/songs/60041524.mkv +冷漠-弹过的琴碎过的心,http://em.21dtv.com/songs/60121407.mkv +LEONA LEWIS-the first time ever i saw your face,http://em.21dtv.com/songs/60084768.mkv +张阳阳+苏菲娅琦琦-TELL YOU,http://em.21dtv.com/songs/60123958.mkv +Rizzle Kicks-Tell Her,http://em.21dtv.com/songs/60103035.mkv +郑俊英-Teenager,http://em.21dtv.com/songs/60102795.mkv +云飞+郭娅丽-天地之恋,http://em.21dtv.com/songs/60114982.mkv +洛秋-她的妆被泪水拍湿,http://em.21dtv.com/songs/60041153.mkv +高韩-他代替你心中的我,http://em.21dtv.com/songs/60067460.mkv +常健鸿-痛的是我伤的是你,http://em.21dtv.com/songs/60105800.mkv +常健鸿-痛的是我伤的是你,http://em.21dtv.com/songs/60103253.mkv +常石磊-天地鉴,http://em.21dtv.com/songs/60119482.mkv +司徒兰芳-铁打的心流水的情,http://em.21dtv.com/songs/60072462.mkv +于台烟-她的安静全是假装(无原唱),http://em.21dtv.com/songs/60041144.mkv +张嘉洵-痛彻心扉,http://em.21dtv.com/songs/60121648.mkv +Dream5-ようかい体操第一,http://em.21dtv.com/songs/60120204.mkv +Dream5-ようかい体操第二,http://em.21dtv.com/songs/60114331.mkv +张曼-天边有颗闪亮的星,http://em.21dtv.com/songs/60096279.mkv +程桂兰-天边有颗闪亮的星,http://em.21dtv.com/songs/60041740.mkv +韩磊-天边[我是歌手],http://em.21dtv.com/songs/60133074.mkv +段千寻-他不是真正爱的人,http://em.21dtv.com/songs/60089378.mkv +于尚-唐伯虎再来点秋香,http://em.21dtv.com/songs/60093962.mkv +梁耀安-唐伯虎情牵沈丽娘,http://em.21dtv.com/songs/60088144.mkv +方琦+纪超-逃不过分手这个命,http://em.21dtv.com/songs/60124009.mkv +梁静茹-听不到,http://em.21dtv.com/songs/60117865.mkv +贺国丰-谈不成恋爱交朋友,http://em.21dtv.com/songs/60118924.mkv +关心妍-他不爱我亦不爱你,http://em.21dtv.com/songs/60041056.mkv +欧阳尚尚-太爱你所以离开你,http://em.21dtv.com/songs/60116982.mkv +欧阳尚尚-太爱你所以放开你,http://em.21dtv.com/songs/60077807.mkv +华强-太爱你所以放开你,http://em.21dtv.com/songs/60041299.mkv +德永英明-瞳はダイアモンド,http://em.21dtv.com/songs/60105905.mkv +菅原纱由理-素直になれなくて,http://em.21dtv.com/songs/60062501.mkv +蒋雪儿-谁在意我留下的泪,http://em.21dtv.com/songs/60108876.mkv +蒋雪儿-谁在意我留下的泪,http://em.21dtv.com/songs/60040162.mkv +蒋雪儿-谁在意我流下的泪,http://em.21dtv.com/songs/60061602.mkv +刘冲-深圳 我再生的故乡,http://em.21dtv.com/songs/60038381.mkv +逃跑计划-睡在我上铺的兄弟,http://em.21dtv.com/songs/60122156.mkv +张新-睡在我上铺的兄弟,http://em.21dtv.com/songs/60091111.mkv +老狼-睡在我上铺的兄弟,http://em.21dtv.com/songs/60040299.mkv +黄磊-睡在我上铺的兄弟,http://em.21dtv.com/songs/60040298.mkv +刘嘉亮+帅霖-睡在我上铺的兄弟(演唱会),http://em.21dtv.com/songs/60066328.mkv +孙蓝-伤着我却还疼着他,http://em.21dtv.com/songs/60117662.mkv +李翊君-守住你前世的诺言,http://em.21dtv.com/songs/60062610.mkv +曲剧-杀猪汉今日做高堂,http://em.21dtv.com/songs/60134524.mkv +李卓骏-谁在风中独自听香,http://em.21dtv.com/songs/60097942.mkv +冷漠-深圳到北京的爱情,http://em.21dtv.com/songs/60061573.mkv +倪燕-生在草原恋这草原,http://em.21dtv.com/songs/60090631.mkv +后弦-苏州城外的微笑语,http://em.21dtv.com/songs/60040830.mkv +杨宗华-十一支队点燃梦想,http://em.21dtv.com/songs/60077612.mkv +江若琳-属于我最好的时光,http://em.21dtv.com/songs/60129328.mkv +李艺明-三亚我热爱的家乡,http://em.21dtv.com/songs/60116019.mkv +刘文-属于我的那一片天,http://em.21dtv.com/songs/60086267.mkv +屋顶月光-属于我的爱情歌曲,http://em.21dtv.com/songs/60113433.mkv +Clean Bandit+Zara Larsson-Symphony,http://em.21dtv.com/songs/60133183.mkv +佚名-所有东西都在伤心,http://em.21dtv.com/songs/60041030.mkv +李娜-说一段故事给你听,http://em.21dtv.com/songs/60040429.mkv +蔡济文-所有的爱都交给你,http://em.21dtv.com/songs/60041027.mkv +米乐士群星-数以百万计的祝福,http://em.21dtv.com/songs/60077682.mkv +孙楠-说与不说你都不懂,http://em.21dtv.com/songs/60090922.mkv +王孟西-谁也不必为谁等候,http://em.21dtv.com/songs/60110396.mkv +赵默-伞下又是一个雨天,http://em.21dtv.com/songs/60037380.mkv +贺国丰-神仙也挡不住想人,http://em.21dtv.com/songs/60122134.mkv +刘中省-伤心时候还会想你,http://em.21dtv.com/songs/60110876.mkv +郭一橙-伤心情歌2014(HD),http://em.21dtv.com/songs/10012814.mkv +郭一橙-伤心情歌2014,http://em.21dtv.com/songs/60094315.mkv +湘唯一-伤心 2013,http://em.21dtv.com/songs/60093688.mkv +湘唯一+金娴雅-伤心 2013,http://em.21dtv.com/songs/60093681.mkv +金娴雅--伤心 2013,http://em.21dtv.com/songs/60093623.mkv +陈兴瑜-伤心的雨寂寞的天,http://em.21dtv.com/songs/60072374.mkv +陈建玮-伤心的我伤心的歌,http://em.21dtv.com/songs/60121075.mkv +陈建玮-伤心的我伤心的歌,http://em.21dtv.com/songs/60120076.mkv +蔡小虎+黄思婷-伤心的我伤心的歌,http://em.21dtv.com/songs/60037889.mkv +张祥洪-谁想独守天荒地老,http://em.21dtv.com/songs/60040139.mkv +五月天-伤心的人别听慢歌,http://em.21dtv.com/songs/60080771.mkv +刘涛-伤心的女人怎么了,http://em.21dtv.com/songs/60083764.mkv +紫琴-伤心的话说给谁听,http://em.21dtv.com/songs/60071100.mkv +贺国丰-神仙挡不住人想人,http://em.21dtv.com/songs/60126219.mkv +万金龙-伤心不想让你看见,http://em.21dtv.com/songs/60093948.mkv +蔡诗雨-山娃子唱着歌长大,http://em.21dtv.com/songs/60123137.mkv +黄涛-生我养我的小村庄,http://em.21dtv.com/songs/60077566.mkv +雨柔+望海高歌-守望心与心的约定,http://em.21dtv.com/songs/60134433.mkv +张秋霞+苏富权-守望心与心的约定,http://em.21dtv.com/songs/60097915.mkv +王岩-送我玫瑰花的女孩,http://em.21dtv.com/songs/60071161.mkv +梁业就+方妍-是我们爱的太懦弱,http://em.21dtv.com/songs/60125809.mkv +海镔-伤我感情骗我昨天,http://em.21dtv.com/songs/60066294.mkv +佚名-十五的月亮为谁圆,http://em.21dtv.com/songs/60039030.mkv +孟杨-十五的月儿圆又圆,http://em.21dtv.com/songs/60132371.mkv +吴琼-十五的月儿十六圆,http://em.21dtv.com/songs/60039023.mkv +于洋-是我不够好好爱你,http://em.21dtv.com/songs/60063290.mkv +佳君-是我不够好好爱你,http://em.21dtv.com/songs/60062500.mkv +至上励合-Superman,http://em.21dtv.com/songs/60127320.mkv +金志文-SuperBoy,http://em.21dtv.com/songs/60099557.mkv +蒋雪儿-Sunshine,http://em.21dtv.com/songs/60120921.mkv +The Magician+Years&Years-Sunlight,http://em.21dtv.com/songs/60108250.mkv +李杰圣-谁偷走了我的快乐,http://em.21dtv.com/songs/60040132.mkv +百慕三石-沙滩往事,http://em.21dtv.com/songs/60110433.mkv +Clean Bandit-Stronger,http://em.21dtv.com/songs/60111594.mkv +Chris Malinchak+Mikky Ekko-Stranger,http://em.21dtv.com/songs/60101744.mkv +Shawn Mendes-Stitches,http://em.21dtv.com/songs/60111649.mkv +李政飞-三天的路程两天到,http://em.21dtv.com/songs/60111973.mkv +莫文蔚+Mika-Stardust,http://em.21dtv.com/songs/60123114.mkv +莫文蔚+MIKA-Stardust,http://em.21dtv.com/songs/60122067.mkv +徐天佑-史上最远离家出走,http://em.21dtv.com/songs/60122764.mkv +郭颂-山水醉了咱赫哲人,http://em.21dtv.com/songs/60037680.mkv +齐旦布-神山之恋卡瓦格博,http://em.21dtv.com/songs/60128641.mkv +何华栈+苏春梅-搜书院之初遇诉情,http://em.21dtv.com/songs/60040810.mkv +红线女-搜书院之柴房自叹,http://em.21dtv.com/songs/60040809.mkv +何笃中-搜书院之步月抒怀,http://em.21dtv.com/songs/60087318.mkv +刘小平-谁说一切都是浮云,http://em.21dtv.com/songs/60101962.mkv +罗宁娜-山水相依真情常在,http://em.21dtv.com/songs/60037677.mkv +郁钧剑-生死相依我恋着你,http://em.21dtv.com/songs/60038640.mkv +吉克隽逸+山人乐队-上山下,http://em.21dtv.com/songs/60120397.mkv +山人乐队-上山下,http://em.21dtv.com/songs/60119462.mkv +严热-深深相爱的两个人,http://em.21dtv.com/songs/60131136.mkv +民歌-送上我心头的思念,http://em.21dtv.com/songs/60091560.mkv +A SHOW-谁说我不在乎你人,http://em.21dtv.com/songs/60101718.mkv +欧阳朵-三生三世十里桃花,http://em.21dtv.com/songs/60133902.mkv +可泽-三生三世十里桃花,http://em.21dtv.com/songs/60132274.mkv +玄铭-三生三世十里桃花,http://em.21dtv.com/songs/60118759.mkv +吸引力-深深深深地感激你,http://em.21dtv.com/songs/60038366.mkv +刘威-三十岁男人真苦逼,http://em.21dtv.com/songs/60083740.mkv +李茂山-是谁抢走我的爱人,http://em.21dtv.com/songs/60039490.mkv +佚名-是谁抢走我的爱人(勃鲁斯),http://em.21dtv.com/songs/60039489.mkv +慕容伊一-谁是你最后的女人,http://em.21dtv.com/songs/60104156.mkv +豫剧-谁说女子不不如男,http://em.21dtv.com/songs/60134609.mkv +姚瑶-谁是你最爱的宝贝,http://em.21dtv.com/songs/60081243.mkv +山人乐队-三十年,http://em.21dtv.com/songs/60118527.mkv +郭旭岗-三十男人想有个家,http://em.21dtv.com/songs/60064823.mkv +蔡荣祖-说说你如何爱着我,http://em.21dtv.com/songs/60040422.mkv +小舟-世上女人都是毒蛇,http://em.21dtv.com/songs/60039317.mkv +容祖儿-搜神记+逃+桃色冒险(演唱会),http://em.21dtv.com/songs/60040806.mkv +JC-说散就散(人物),http://em.21dtv.com/songs/60124906.mkv +草蜢-随时见你随时爱你,http://em.21dtv.com/songs/60040941.mkv +蒋舟-谁说喝醉就无所谓,http://em.21dtv.com/songs/60040117.mkv +许嘉文-是谁带走了你的心,http://em.21dtv.com/songs/60039485.mkv +小舟-世上的女人都毒蛇,http://em.21dtv.com/songs/60087718.mkv +佚名-树上的鸟儿成双对,http://em.21dtv.com/songs/60039790.mkv +大谷-是谁动了我的情人,http://em.21dtv.com/songs/60064890.mkv +办桌二人组-双双对对万年富贵,http://em.21dtv.com/songs/60039885.mkv +田娟-傻傻的爱傻傻等待,http://em.21dtv.com/songs/60069786.mkv +贺一航-傻傻的爱傻傻等待,http://em.21dtv.com/songs/60064827.mkv +谢天笑-是谁把我带到这里,http://em.21dtv.com/songs/60039484.mkv +[Group] +groupName=十六万歌曲MV等 - 104 +蓝雨-谁是爱情里的主角,http://em.21dtv.com/songs/60040090.mkv +甘洛凡-虽然我不是刘德华,http://em.21dtv.com/songs/60064932.mkv +天骏-萨日娜姑娘你在哪,http://em.21dtv.com/songs/60121552.mkv +陈盈洁-谁人来讲吗讲无情,http://em.21dtv.com/songs/60040069.mkv +龙千玉-啥人对爱情无贪心,http://em.21dtv.com/songs/60037496.mkv +李宗盛-十七岁女生的温柔,http://em.21dtv.com/songs/60039006.mkv +丁文琪-十七岁的异想世界,http://em.21dtv.com/songs/60039003.mkv +谢金燕-失去你阮要按怎活,http://em.21dtv.com/songs/60038834.mkv +龙智祥-失去你让我好心痛,http://em.21dtv.com/songs/60071115.mkv +夏天-失去你才是最累的,http://em.21dtv.com/songs/60077585.mkv +朱立峰-失去你爱依然完美,http://em.21dtv.com/songs/60083794.mkv +无悔-杀阡陌爱上花千骨,http://em.21dtv.com/songs/60116857.mkv +黄丽娅-失群的孤雁重归窠,http://em.21dtv.com/songs/60038837.mkv +李紫涵-三千多个日夜想你,http://em.21dtv.com/songs/60077460.mkv +单冲峰-失去的爱你还想要,http://em.21dtv.com/songs/60097908.mkv +淋雨王子-谁碰了我的女朋友,http://em.21dtv.com/songs/60040047.mkv +苏醒-Splitman,http://em.21dtv.com/songs/60126113.mkv +Suede-So Young,http://em.21dtv.com/songs/60115640.mkv +微胖女神-So Sorry,http://em.21dtv.com/songs/60116841.mkv +安琪-So Sorry,http://em.21dtv.com/songs/60094067.mkv +NAV+The Weeknd-Some Way,http://em.21dtv.com/songs/60133255.mkv +B1A4-Solo Day,http://em.21dtv.com/songs/60103001.mkv +焕熙-so it is,http://em.21dtv.com/songs/60133962.mkv +苏志燮+Soul Dive+New Day-So Ganzi,http://em.21dtv.com/songs/60114741.mkv +马天宇-思念在右手的左边,http://em.21dtv.com/songs/60097944.mkv +凌志辉-思念在城市另一边,http://em.21dtv.com/songs/60077747.mkv +张栋梁-说你也一样爱着我,http://em.21dtv.com/songs/60040407.mkv +王熹蛮-少年要踏上的旅程,http://em.21dtv.com/songs/60080289.mkv +乌兰图雅-送你一首吉祥的歌,http://em.21dtv.com/songs/60109937.mkv +谢名-送你一朵东方茉莉,http://em.21dtv.com/songs/60114787.mkv +宋祖英-送你一朵东方茉莉,http://em.21dtv.com/songs/60040780.mkv +孔令奇-是你小孩也是你的MAN,http://em.21dtv.com/songs/60090886.mkv +五月天-少年他的奇幻漂流,http://em.21dtv.com/songs/60134865.mkv +黄雅珉-谁能让我再掉眼泪,http://em.21dtv.com/songs/60040042.mkv +魏依曼-送你两只幸福的猪,http://em.21dtv.com/songs/60040774.mkv +张玉华+李圣杰-是你决定我的伤心,http://em.21dtv.com/songs/60039465.mkv +林隆璇+陈筱娟-是你决定我的伤心,http://em.21dtv.com/songs/60039464.mkv +佚名-谁能简单的说爱情,http://em.21dtv.com/songs/60040034.mkv +姚志强+蒋文端-神女会襄王之再访(戏曲),http://em.21dtv.com/songs/60092505.mkv +姚志强+蒋文端-神女会襄王之梦会(戏曲),http://em.21dtv.com/songs/60092506.mkv +真真-思念和伤口一样深,http://em.21dtv.com/songs/60072427.mkv +李志洲-十年河东十年河西,http://em.21dtv.com/songs/60135359.mkv +孙康-谁能给谁真的永远,http://em.21dtv.com/songs/60083827.mkv +赵真-思念的雨思念的你,http://em.21dtv.com/songs/60128431.mkv +零度童话-思念的雨思念的你,http://em.21dtv.com/songs/60127575.mkv +王冠逸-是你把我变成这样,http://em.21dtv.com/songs/60132710.mkv +网络歌手-杀马特遇见洗剪吹,http://em.21dtv.com/songs/60106189.mkv +马丽-四面山是个好地方,http://em.21dtv.com/songs/60110687.mkv +徐誉滕-水墨彭城,http://em.21dtv.com/songs/60114557.mkv +本兮-山盟海誓亦会分开,http://em.21dtv.com/songs/60083749.mkv +涓子-说了再见再也不见,http://em.21dtv.com/songs/60128180.mkv +罗秋红-死了也要为爱痛哭,http://em.21dtv.com/songs/60085751.mkv +汤浩平-胜利永远属于我们,http://em.21dtv.com/songs/60069807.mkv +伍咏薇-失落于巴黎铁塔下,http://em.21dtv.com/songs/60038798.mkv +白晶-伤了心女人的心灵,http://em.21dtv.com/songs/60110432.mkv +王禹-伤了心就要哭出来,http://em.21dtv.com/songs/60114688.mkv +杨洪基-森林铁路的月台上,http://em.21dtv.com/songs/60091407.mkv +SKE48-石榴の実は忧郁が何粒诘まっている,http://em.21dtv.com/songs/60101032.mkv +江宏恩-少了你永远都不够,http://em.21dtv.com/songs/60086813.mkv +杜歌-伤了你也伤了自己,http://em.21dtv.com/songs/60037810.mkv +杜歌-伤了你也伤了自己(舞曲版),http://em.21dtv.com/songs/60037809.mkv +杨洪基-赛里木湖的白天鹅,http://em.21dtv.com/songs/60091410.mkv +红孩儿-闪亮的心永远爱你,http://em.21dtv.com/songs/60037728.mkv +杨鸣-思恋的夏威夷航路,http://em.21dtv.com/songs/60060210.mkv +何佳乐+戴荃-舍离断,http://em.21dtv.com/songs/60120307.mkv +动力火车-输了爱情赢得寂寞,http://em.21dtv.com/songs/60039754.mkv +李冬风-伤口太深却忘了疼,http://em.21dtv.com/songs/60112747.mkv +李冬风-伤口太深却忘了疼,http://em.21dtv.com/songs/60111158.mkv +乌兰雪蓉-世界只有一个中国,http://em.21dtv.com/songs/60087249.mkv +大庆小芳-世界再大也要回家,http://em.21dtv.com/songs/60077639.mkv +Thinking Dogs-世界は终わらない,http://em.21dtv.com/songs/60112466.mkv +陈盈洁-世间一日情海一年,http://em.21dtv.com/songs/60039248.mkv +林志炫-瞬间永恒^I Can Wait Forever,http://em.21dtv.com/songs/60100208.mkv +佚名-烧酒香味风吹雨滴(无原唱),http://em.21dtv.com/songs/60038095.mkv +潘美辰-谁教我是真的爱你,http://em.21dtv.com/songs/60039997.mkv +常艾非-世界上最伤心的人,http://em.21dtv.com/songs/60039283.mkv +艾克里里-世界上最难唱的歌,http://em.21dtv.com/songs/60124391.mkv +包贝尔+朱亚文-世界上最难唱的歌,http://em.21dtv.com/songs/60122539.mkv +朱英杰-世界上最美的女人,http://em.21dtv.com/songs/60121758.mkv +王闯-世界上有没有真爱,http://em.21dtv.com/songs/60039282.mkv +阿悄-世界上另外的自己,http://em.21dtv.com/songs/60100541.mkv +伊能静-十九岁的最后一天,http://em.21dtv.com/songs/60038970.mkv +赵英俊-世界上不存在的歌,http://em.21dtv.com/songs/60120981.mkv +万芳-时间仍然继续在走,http://em.21dtv.com/songs/60090463.mkv +曾淑勤-时间仍然继续在走,http://em.21dtv.com/songs/60089326.mkv +佚名-时间仍然继续在走(无原唱),http://em.21dtv.com/songs/60039142.mkv +李昱和+邰正宵-时间让爱更有味道,http://em.21dtv.com/songs/60135366.mkv +邰正宵+李昱和-时间让爱更有味道,http://em.21dtv.com/songs/60134290.mkv +张靓颖-瞬间倾心恒久钟情,http://em.21dtv.com/songs/60040325.mkv +马頔-时间里的,http://em.21dtv.com/songs/60104608.mkv +佚名-世界很小是个家庭,http://em.21dtv.com/songs/60039265.mkv +Mc天佑-送给混社会的朋友,http://em.21dtv.com/songs/50000119.mkv +寂悸-手机好还是电脑好,http://em.21dtv.com/songs/60135131.mkv +周杰伦+向洋-双截棍,http://em.21dtv.com/songs/60128901.mkv +陈梓童-双截棍,http://em.21dtv.com/songs/60127556.mkv +初音未来-世界第一公主殿下,http://em.21dtv.com/songs/60071125.mkv +女子十二乐坊-世界にーつだけの花(演唱会),http://em.21dtv.com/songs/60039256.mkv +Wands-世界が終るまでは,http://em.21dtv.com/songs/60122444.mkv +蒋雪儿-谁会在意我流的泪,http://em.21dtv.com/songs/60069835.mkv +张鹤-生活因我们而美丽,http://em.21dtv.com/songs/60105885.mkv +黄宝欣-谁话野花不会真心,http://em.21dtv.com/songs/60039987.mkv +君子-谁会像我这样爱你,http://em.21dtv.com/songs/60061597.mkv +君子-谁会像我这样爱你(舞曲版),http://em.21dtv.com/songs/60061596.mkv +君子-谁会像你这样爱我,http://em.21dtv.com/songs/60087551.mkv +慕容晓晓-伤害女人是有罪的,http://em.21dtv.com/songs/60097914.mkv +辛若天-生活就像超级玛丽,http://em.21dtv.com/songs/60067421.mkv +黄莺莺-生活就是那么容易,http://em.21dtv.com/songs/60038535.mkv +左其铂-说谎机器,http://em.21dtv.com/songs/60111834.mkv +六哲-谁会记得,http://em.21dtv.com/songs/60101919.mkv +王子鸣-说好的秋天就回来,http://em.21dtv.com/songs/60088287.mkv +徐羽泽-说好的离别不哭泣,http://em.21dtv.com/songs/60072424.mkv +丁春秀-谁会懂得我的伤悲,http://em.21dtv.com/songs/60114365.mkv +薛之谦-说谎[超强音浪],http://em.21dtv.com/songs/60134203.mkv +晓依-说好不在为你流泪,http://em.21dtv.com/songs/60083839.mkv +SISTAR-SHAKE IT,http://em.21dtv.com/songs/60112460.mkv +蔡健雅-时光谣,http://em.21dtv.com/songs/60109612.mkv +张伟文-伤感雨天+只有分离(演唱会),http://em.21dtv.com/songs/60037776.mkv +小蓓蕾组合-十个印第安小朋友,http://em.21dtv.com/songs/60099976.mkv +刘亭婷-说给我爱的男人听(演唱会),http://em.21dtv.com/songs/60069844.mkv +秦宇子-时光偷不走的回忆,http://em.21dtv.com/songs/60112863.mkv +卫兰-十个他不如你一个,http://em.21dtv.com/songs/60038962.mkv +慕容晓晓+办桌二人组-谁告诉你我爱过你(演唱会),http://em.21dtv.com/songs/60064901.mkv +军★嫂组合-送给您一张返乡票,http://em.21dtv.com/songs/60093983.mkv +叶丽仪-送给你明天的太阳,http://em.21dtv.com/songs/60040751.mkv +佚名-送给你明天的太阳(迪斯科),http://em.21dtv.com/songs/60040750.mkv +宋祖英-送给妈妈的茉莉花,http://em.21dtv.com/songs/60077773.mkv +杨华-送给妈妈的茉莉花,http://em.21dtv.com/songs/60040746.mkv +梁雁翎+蔡济文-伤过的心可以重来,http://em.21dtv.com/songs/60037779.mkv +张振宇-说过的话让我心疼,http://em.21dtv.com/songs/60089274.mkv +张振宇-说过的话让我心痛,http://em.21dtv.com/songs/60040369.mkv +王勇-时光不老我们不散,http://em.21dtv.com/songs/60133977.mkv +丽江小倩-随风起舞,http://em.21dtv.com/songs/60111674.mkv +黄小琥-是否,http://em.21dtv.com/songs/60095167.mkv +巫启贤-是否你曾偷偷的哭,http://em.21dtv.com/songs/60039426.mkv +戏曲-书房门前的一枝梅,http://em.21dtv.com/songs/60092722.mkv +林依轮-十二座光阴的小城,http://em.21dtv.com/songs/60038950.mkv +刘若英-十二月三日 北京,http://em.21dtv.com/songs/60038947.mkv +宇田-十二月二十一日晴,http://em.21dtv.com/songs/60077598.mkv +王泓漓-sexy fox,http://em.21dtv.com/songs/60094991.mkv +沙宝亮-Senorita,http://em.21dtv.com/songs/60113798.mkv +金灿-少点自我多点弥陀,http://em.21dtv.com/songs/60129677.mkv +叶倩文-谁的心能让我停泊,http://em.21dtv.com/songs/60039959.mkv +JOE BUDDEN-she dont put it down like you,http://em.21dtv.com/songs/60073862.mkv +张冬玲-输的是我赢的是你,http://em.21dtv.com/songs/60086839.mkv +潘辰-是的旅行还有风筝,http://em.21dtv.com/songs/60102503.mkv +廖芊芊-圣地拉萨,http://em.21dtv.com/songs/60110180.mkv +王劲峰-树的姐妹树的家乡,http://em.21dtv.com/songs/60100303.mkv +佚名-三大纪律八项注意,http://em.21dtv.com/songs/60037183.mkv +佚名-四大纪律八项要求,http://em.21dtv.com/songs/60040652.mkv +杨紫萍-山丹丹开花红艳艳,http://em.21dtv.com/songs/60100184.mkv +王二妮+斯琴格日乐-山丹丹开花红艳艳,http://em.21dtv.com/songs/60098630.mkv +刘孟哲-山丹丹开花红艳艳,http://em.21dtv.com/songs/60086801.mkv +佚名-山丹丹开花红艳艳,http://em.21dtv.com/songs/60037598.mkv +王邵玫-山丹丹开花红艳艳,http://em.21dtv.com/songs/60037597.mkv +万山红-山丹丹开花红艳艳,http://em.21dtv.com/songs/60037596.mkv +高保利-山丹丹开花红艳艳,http://em.21dtv.com/songs/60037595.mkv +艾梦萌-山丹丹开花红艳艳,http://em.21dtv.com/songs/60037594.mkv +李政飞-山丹丹花开红艳艳,http://em.21dtv.com/songs/60111977.mkv +王邵玫-山丹丹花开红艳艳,http://em.21dtv.com/songs/60088326.mkv +李谷一-山丹丹花开红艳艳,http://em.21dtv.com/songs/60037593.mkv +安雯-山丹丹花开红艳艳,http://em.21dtv.com/songs/60037592.mkv +阿宝-山丹丹花开红艳艳,http://em.21dtv.com/songs/60037591.mkv +沙莎-山丹丹花开红艳艳,http://em.21dtv.com/songs/60071093.mkv +罗志祥-岁堤春晓,http://em.21dtv.com/songs/60115332.mkv +张克帆-谁都不该让你心碎,http://em.21dtv.com/songs/60039976.mkv +五月天-生存以上生活以下,http://em.21dtv.com/songs/60038526.mkv +沈世爱-谁才是你最爱的人,http://em.21dtv.com/songs/60079979.mkv +越调-三传令《收姜维》,http://em.21dtv.com/songs/60134621.mkv +郭富城-三岔口,http://em.21dtv.com/songs/60116295.mkv +黄绮珊+崔兰花-山茶花,http://em.21dtv.com/songs/60102981.mkv +李风持-上辈子欠你一滴泪,http://em.21dtv.com/songs/60038002.mkv +远方-上辈子你是我的仇,http://em.21dtv.com/songs/60038001.mkv +宋祖英-十八弯水路到我家,http://em.21dtv.com/songs/60038915.mkv +陈瑞-是不是心里有别人,http://em.21dtv.com/songs/60085723.mkv +徐仲薇-是不是我对你太好,http://em.21dtv.com/songs/60039397.mkv +佚名-是不是我不够温柔,http://em.21dtv.com/songs/60039396.mkv +王梓宏-是不是我爱的不够,http://em.21dtv.com/songs/60039395.mkv +庹宗华+李明依-算不算是一对恋人,http://em.21dtv.com/songs/60089846.mkv +陈绮贞-算不算是一对恋人,http://em.21dtv.com/songs/60040884.mkv +韩东旭-是不是怕我爱上你,http://em.21dtv.com/songs/60077643.mkv +舒克-三百弄,http://em.21dtv.com/songs/60119903.mkv +杨树林+蔡国庆-三百六十五个祝福,http://em.21dtv.com/songs/60133849.mkv +卓依婷-三百六十五个祝福,http://em.21dtv.com/songs/60037167.mkv +蔡国庆-三百六十五个祝福,http://em.21dtv.com/songs/60037166.mkv +佚名-三百六十五分之一(无原唱),http://em.21dtv.com/songs/60037165.mkv +杨睿-三百六十五分之一(无原唱),http://em.21dtv.com/songs/60037164.mkv +覃桢-三百六十六次告白,http://em.21dtv.com/songs/60126171.mkv +网络歌手-三八列车[DJ],http://em.21dtv.com/songs/60102621.mkv +李崇善-誓把反动派一扫光,http://em.21dtv.com/songs/60039566.mkv +六哲-舍不得也要说再见,http://em.21dtv.com/songs/60038229.mkv +彭亮-舍不得也要让你走,http://em.21dtv.com/songs/60077540.mkv +杜广增-十八的妹妹一朵花,http://em.21dtv.com/songs/60083797.mkv +华帝-舍不得就别放开手,http://em.21dtv.com/songs/60081323.mkv +佚名-舍不得将爱说出口,http://em.21dtv.com/songs/60038207.mkv +郭媛媛-舍不得放开你的手,http://em.21dtv.com/songs/60061570.mkv +李度-舍不得把眼睛睁开,http://em.21dtv.com/songs/60038201.mkv +何家劲-说不出我愿留下你,http://em.21dtv.com/songs/60040353.mkv +滨崎步+SpeXial-Sayonara,http://em.21dtv.com/songs/60116119.mkv +MBLAQ-Say Love,http://em.21dtv.com/songs/60121285.mkv +弦子+李茂-Say I Do,http://em.21dtv.com/songs/60119556.mkv +书画-深爱一个人的滋味,http://em.21dtv.com/songs/60093661.mkv +王识贤-尚爱的人伤我尚重,http://em.21dtv.com/songs/60038069.mkv +萧亚轩-认真的女人最美丽,http://em.21dtv.com/songs/60036552.mkv +高慧君-认真的女人最美丽,http://em.21dtv.com/songs/60036551.mkv +洪荣宏-阮犹原是你的理想(无原唱),http://em.21dtv.com/songs/60037084.mkv +AGA-认,http://em.21dtv.com/songs/60113124.mkv +HKT48-スキ!スキ!スキップ!,http://em.21dtv.com/songs/60074243.mkv +柏木由纪-ショートケーキ,http://em.21dtv.com/songs/60074241.mkv +FUNKY MONKEY BABYS-サヨナラじやない,http://em.21dtv.com/songs/60074237.mkv +AKB48-ギンガムチェック,http://em.21dtv.com/songs/60074231.mkv +AKB48-アイスのくちづけ,http://em.21dtv.com/songs/60074212.mkv +王洁实+谢莉斯-让星星把我们照亮,http://em.21dtv.com/songs/60088305.mkv +阿鲁阿卓-让心情随风儿摇摆,http://em.21dtv.com/songs/60123278.mkv +朱天毅-让我再多爱你一天,http://em.21dtv.com/songs/60128071.mkv +叶瑗菱-让我醉别让我心碎,http://em.21dtv.com/songs/60036206.mkv +卞义-让我醉别让我流泪,http://em.21dtv.com/songs/60119329.mkv +卞义-让我醉别让我流泪,http://em.21dtv.com/songs/60104862.mkv +男女共学-让我心脏跳动的话,http://em.21dtv.com/songs/60077332.mkv +丁汀+买买江-让五星把世界照亮,http://em.21dtv.com/songs/60036207.mkv +本兮-让我为你唱一首歌,http://em.21dtv.com/songs/60067364.mkv +灵丽-让我偷偷望你一眼,http://em.21dtv.com/songs/60036173.mkv +小满哥-让我痛快的醉一回,http://em.21dtv.com/songs/60095290.mkv +米线+包伍-让我听懂你的语言,http://em.21dtv.com/songs/60103511.mkv +燕妮-让我听懂你的语言,http://em.21dtv.com/songs/60072338.mkv +宫长坤-让我如何把你放下,http://em.21dtv.com/songs/60120465.mkv +王鹤铮-让我们一起到老吧,http://em.21dtv.com/songs/60094238.mkv +王鹤铮-让我们一起到老吧(演唱会),http://em.21dtv.com/songs/60061532.mkv +张琛-让我们相约去旅游,http://em.21dtv.com/songs/60119537.mkv +郭书义-让我们天天都快乐,http://em.21dtv.com/songs/60111453.mkv +爱乐歌+毽子飞-让我看看你的模样,http://em.21dtv.com/songs/60133965.mkv +李娜-让我就这么想着你,http://em.21dtv.com/songs/60087999.mkv +彭羚-让我跟你走(双语种),http://em.21dtv.com/songs/60036132.mkv +王爱华-让我的泪伴你远行,http://em.21dtv.com/songs/60098647.mkv +谭臻臻-人生至少该有一次,http://em.21dtv.com/songs/60131823.mkv +温兆伦-仍是痛在我心的你,http://em.21dtv.com/songs/60089405.mkv +温兆伦-仍是痛在我心的您,http://em.21dtv.com/songs/60036600.mkv +老虎欧巴-人生其实就是这样,http://em.21dtv.com/songs/60119888.mkv +郑永波-人是你的心是他的,http://em.21dtv.com/songs/60113014.mkv +女声版-让世界因我而美丽,http://em.21dtv.com/songs/60112609.mkv +金昌昱-让世界为我们喝彩,http://em.21dtv.com/songs/60131907.mkv +卡密儿-人生本是一场游戏,http://em.21dtv.com/songs/60072344.mkv +朱孝天-日日夜夜分分秒秒,http://em.21dtv.com/songs/60091289.mkv +F4+朱孝天-日日夜夜分分秒秒,http://em.21dtv.com/songs/60090399.mkv +梁汉文-仍然是你仍然是我,http://em.21dtv.com/songs/60036585.mkv +DRAMATIC BLUE-让人流眼泪的美丽,http://em.21dtv.com/songs/60077318.mkv +江蕙-阮若打开心内门窗,http://em.21dtv.com/songs/60037077.mkv +林淑蓉-阮若打开心内的窗,http://em.21dtv.com/songs/60037076.mkv +高明骏-让全世界都忘了我,http://em.21dtv.com/songs/60089001.mkv +满文军-让你幸福在每一天,http://em.21dtv.com/songs/60036085.mkv +满文军-让你幸福在每一天(演唱会),http://em.21dtv.com/songs/60036084.mkv +俞晴-让你身边的人走开,http://em.21dtv.com/songs/60036082.mkv +张敬轩-让你感觉到我的好,http://em.21dtv.com/songs/60091107.mkv +薛松-让梦想停止的地方,http://em.21dtv.com/songs/60123143.mkv +群星-让每天都是圣诞节,http://em.21dtv.com/songs/60036067.mkv +苏紫旭-融 解,http://em.21dtv.com/songs/60109592.mkv +李双江-人家的船儿桨成双,http://em.21dtv.com/songs/60036326.mkv +Kid Ink+Tyga+Wale+YG-Ride Out,http://em.21dtv.com/songs/60109835.mkv +Galantis-Rich Boy,http://em.21dtv.com/songs/60132079.mkv +李文杰-如果再有一次机会,http://em.21dtv.com/songs/60064813.mkv +祝兰兰-如果真的不再爱我,http://em.21dtv.com/songs/60096105.mkv +于洋-如果有一天她老了,http://em.21dtv.com/songs/60123609.mkv +陈瑞-如果一切能够重来,http://em.21dtv.com/songs/60083732.mkv +Win-如果有那么一个人,http://em.21dtv.com/songs/60101841.mkv +胥兰英-如果我真的离开你,http://em.21dtv.com/songs/60036946.mkv +邝紫亮-如果我真的离开你,http://em.21dtv.com/songs/60036945.mkv +王旭-如果我是一棵小草,http://em.21dtv.com/songs/60061545.mkv +包启宁-如果我是你的幸福,http://em.21dtv.com/songs/60099818.mkv +阿妹妹-如果我是你的电脑,http://em.21dtv.com/songs/60036936.mkv +姚贝娜-如果我们没有遇见,http://em.21dtv.com/songs/60096237.mkv +杨新旭-如果我们还没分手,http://em.21dtv.com/songs/60116943.mkv +周治平-如果我们不再相爱,http://em.21dtv.com/songs/60077420.mkv +黎明-如果我们不再相爱,http://em.21dtv.com/songs/60036927.mkv +黎明-如果我们不再相爱(演唱会),http://em.21dtv.com/songs/60036926.mkv +五月天-如果我们不曾相遇,http://em.21dtv.com/songs/60123614.mkv +姜玉阳-如果我不能够爱你,http://em.21dtv.com/songs/60094455.mkv +林宥嘉-如果我变成一首歌,http://em.21dtv.com/songs/60117844.mkv +林宥嘉-如果我变成一首歌,http://em.21dtv.com/songs/60116047.mkv +徐鸿武-如果生命还有一次,http://em.21dtv.com/songs/60091208.mkv +李玟+萧敬腾+郎朗-如果时间只剩一秒,http://em.21dtv.com/songs/60119667.mkv +上官晓懿-如果时间那么现实,http://em.21dtv.com/songs/60086790.mkv +彭浩-如果时光可以倒流,http://em.21dtv.com/songs/60116825.mkv +王馨平+林东松-如果让我再爱一次,http://em.21dtv.com/songs/60036902.mkv +袁树雄-如果让爱重新来过,http://em.21dtv.com/songs/60071087.mkv +张卫健-如果你只是怕寂寞,http://em.21dtv.com/songs/60061544.mkv +王杰-如果你真的在乎我,http://em.21dtv.com/songs/60036895.mkv +王峰-如果你也会想起我,http://em.21dtv.com/songs/60131657.mkv +李逸-如果你喜欢这首歌,http://em.21dtv.com/songs/60036879.mkv +邓丽君-如果你喜欢这首歌,http://em.21dtv.com/songs/60036878.mkv +蔡依林-如果那天你说爱我(演唱会),http://em.21dtv.com/songs/60036839.mkv +王力宏-如果你听见我的歌,http://em.21dtv.com/songs/60036876.mkv +成云刚+王星星-如果你是真的幸福,http://em.21dtv.com/songs/60086789.mkv +刘德华-如果你是我的传说,http://em.21dtv.com/songs/60119291.mkv +高胜美-如果你是我的传说,http://em.21dtv.com/songs/60036872.mkv +刘德华-如果你是我的传说(演唱会),http://em.21dtv.com/songs/60036871.mkv +侯鑫宝-如果你能对我在乎,http://em.21dtv.com/songs/60062453.mkv +邰正宵-如果你没有爱上他,http://em.21dtv.com/songs/60036864.mkv +信-如果你还在就好了,http://em.21dtv.com/songs/60109984.mkv +信-如果你还在就好了,http://em.21dtv.com/songs/60109156.mkv +晓雨-如果你的心回不来,http://em.21dtv.com/songs/60135321.mkv +杨清明-如果你的心回不来,http://em.21dtv.com/songs/60132588.mkv +汪美琪-如果你不打算爱我,http://em.21dtv.com/songs/60094571.mkv +江美琪-如果你不打算爱我,http://em.21dtv.com/songs/60090038.mkv +周传雄-如果你爱的不是我,http://em.21dtv.com/songs/60087575.mkv +余润泽-如果你爱的不是我,http://em.21dtv.com/songs/60036846.mkv +MP魔幻力量-如果明天世界末日,http://em.21dtv.com/songs/60061540.mkv +吴奇隆-如果明天能再相聚(无原唱),http://em.21dtv.com/songs/60036837.mkv +周子扬-如果没人发现的话,http://em.21dtv.com/songs/60036816.mkv +成云刚+徐海芳-如果来生真的存在,http://em.21dtv.com/songs/60097917.mkv +叶玉卿-仍感激相爱了一年,http://em.21dtv.com/songs/60092437.mkv +林凡-仍感激相爱了一年,http://em.21dtv.com/songs/60036574.mkv +林凡-仍感激相爱了一年(演唱会),http://em.21dtv.com/songs/60036573.mkv +葛维永-如果分手你会快乐,http://em.21dtv.com/songs/60107171.mkv +关喆-如果分开我也爱你,http://em.21dtv.com/songs/60117562.mkv +关喆-如果分开我也爱你,http://em.21dtv.com/songs/60077405.mkv +何永俊-如果当初没有开始,http://em.21dtv.com/songs/60036785.mkv +张津涤-如果不是真的相爱,http://em.21dtv.com/songs/60132450.mkv +Spica.S-让给别人可惜吗,http://em.21dtv.com/songs/60103820.mkv +赵蕊-如果不能和你终老,http://em.21dtv.com/songs/60128434.mkv +周冰倩-如果爱找错了地方,http://em.21dtv.com/songs/60036773.mkv +樊少华-如果爱情是一场罪,http://em.21dtv.com/songs/60036765.mkv +彭凯-如果爱情可以轮回,http://em.21dtv.com/songs/60036763.mkv +尔萨-如果爱你是我的错,http://em.21dtv.com/songs/60089250.mkv +陈文浩-如果爱能感动上天,http://em.21dtv.com/songs/60036756.mkv +郭欢-如果爱了就别伤害,http://em.21dtv.com/songs/60085651.mkv +吕宏伟-让父母生活得更好,http://em.21dtv.com/songs/60116631.mkv +The Weeknd-Reminder,http://em.21dtv.com/songs/60132141.mkv +Dear Cloud-Remember,http://em.21dtv.com/songs/60113144.mkv +Pia Mia-Red Love,http://em.21dtv.com/songs/60121299.mkv +向蕙玲-阮的性命阮家已疼,http://em.21dtv.com/songs/60037071.mkv +蔡小虎-阮的心肝为你孤单(无原唱),http://em.21dtv.com/songs/60037068.mkv +陈雅珍-阮的生命阮自己疼,http://em.21dtv.com/songs/60037064.mkv +佚名-让地球绽放出笑容(演唱会),http://em.21dtv.com/songs/60036054.mkv +张学友-日出时让恋爱终结,http://em.21dtv.com/songs/60036624.mkv +陈柏宇-日出前让爱恋延续,http://em.21dtv.com/songs/60077381.mkv +佚名-如此看着你的眼睛,http://em.21dtv.com/songs/60036727.mkv +刘厚鹏-让爱死在这个秋天,http://em.21dtv.com/songs/60120357.mkv +张莲花-热爱家乡热爱祖国,http://em.21dtv.com/songs/60130336.mkv +邢高瑗-让爱回到梦的故乡,http://em.21dtv.com/songs/60111431.mkv +孙晓磊-牵着你的手不放开,http://em.21dtv.com/songs/60119415.mkv +谭赟-牵着泪水走过悲伤,http://em.21dtv.com/songs/60100469.mkv +尼玛拉毛-青藏高原的菩萨兵,http://em.21dtv.com/songs/60083641.mkv +Jam-七月上,http://em.21dtv.com/songs/60123483.mkv +何雨雯-情愿是你让我心伤(无原唱),http://em.21dtv.com/songs/60035452.mkv +杨馥郡-亲一亲我的大海南,http://em.21dtv.com/songs/60094558.mkv +刘美麟-秋意浓,http://em.21dtv.com/songs/60125220.mkv +醉歌-秋雨绵绵话相思它,http://em.21dtv.com/songs/60102827.mkv +流苏-秋夜的爱人数秋雨,http://em.21dtv.com/songs/60083685.mkv +过江龙-钱与爱究竟谁厉害,http://em.21dtv.com/songs/60126248.mkv +马萃如-全新演好每个自己,http://em.21dtv.com/songs/60035934.mkv +马萃如-全心演好每个自己,http://em.21dtv.com/songs/60035930.mkv +斯琴高丽-七夕情缘(HD),http://em.21dtv.com/songs/10012792.mkv +何龙雨-情系大草原DJ版,http://em.21dtv.com/songs/50000200.mkv +谢天笑-亲我一口咬我一口,http://em.21dtv.com/songs/60110529.mkv +周传雄-青天的花恁拢无开,http://em.21dtv.com/songs/60014268.mkv +雨中百合-前世相欠今生相见,http://em.21dtv.com/songs/60135961.mkv +姜育恒-其实我真的很在乎(无原唱),http://em.21dtv.com/songs/60033925.mkv +覃飞宇-其实我真的很爱你,http://em.21dtv.com/songs/60112229.mkv +佚名-其实我真的好爱你,http://em.21dtv.com/songs/60111694.mkv +钟子炫-其实我要的很简单,http://em.21dtv.com/songs/60115462.mkv +方力申-其实我想,http://em.21dtv.com/songs/60122782.mkv +吴奇隆-其实我深深爱着你,http://em.21dtv.com/songs/60033915.mkv +吴国敬-其实我深深爱着你,http://em.21dtv.com/songs/60033914.mkv +吴国敬+邓建明+许志安-其实我深深爱着你(演唱会),http://em.21dtv.com/songs/60033913.mkv +刘浩龙-其实我深深爱着你(演唱会),http://em.21dtv.com/songs/60033912.mkv +杨丞琳-其实我们值得幸福,http://em.21dtv.com/songs/60106963.mkv +古巨基-其实我们一样自私,http://em.21dtv.com/songs/60033910.mkv +倪新宇-其实我没那么坚强,http://em.21dtv.com/songs/60068568.mkv +罗嘉良-其实我明白你暗示,http://em.21dtv.com/songs/60033911.mkv +潘美辰-其实我好想有人陪,http://em.21dtv.com/songs/60033899.mkv +阿温-其实我很懂你的心,http://em.21dtv.com/songs/60061496.mkv +岚戈-其实我从未离开过,http://em.21dtv.com/songs/60108463.mkv +门丽-情是世上最毒的药,http://em.21dtv.com/songs/60114167.mkv +小5-青是受伤春是成长,http://em.21dtv.com/songs/60097930.mkv +赵红军-求神求佛求地求天,http://em.21dtv.com/songs/60128433.mkv +郎军-其实你知道我爱你,http://em.21dtv.com/songs/60067317.mkv +腾格尔-其实你也明白我好,http://em.21dtv.com/songs/60033889.mkv +黄凯芹-其实你想不想我走,http://em.21dtv.com/songs/60033885.mkv +庄学忠-其实你全部都知道,http://em.21dtv.com/songs/60087749.mkv +赵俊涛-其实你从没爱过我,http://em.21dtv.com/songs/60077119.mkv +朱少宇-其实你不用去远方,http://em.21dtv.com/songs/60071039.mkv +佚名-其实你不情我的心(慢三),http://em.21dtv.com/songs/60033880.mkv +郭浩-其实你不懂我伤悲,http://em.21dtv.com/songs/60081311.mkv +含笑-其实你不懂我的心,http://em.21dtv.com/songs/60087552.mkv +戴月-其实你不懂我的心,http://em.21dtv.com/songs/60069706.mkv +童安格-其实你不懂我的心,http://em.21dtv.com/songs/60033879.mkv +高胜美-其实你不懂我的心,http://em.21dtv.com/songs/60033878.mkv +BEN-其实你不懂我的心,http://em.21dtv.com/songs/60033877.mkv +童安格-其实你不懂我的心(演唱会),http://em.21dtv.com/songs/60033876.mkv +晨熙-全世界只有一个你,http://em.21dtv.com/songs/60130382.mkv +刘嘉亮-全世界只有我爱你,http://em.21dtv.com/songs/60035912.mkv +老猫-全世界最伤心的人,http://em.21dtv.com/songs/60035915.mkv +陈少华-全世界最伤心的人,http://em.21dtv.com/songs/60035914.mkv +张洪波-全世界最爱你的人,http://em.21dtv.com/songs/60067358.mkv +妲己-全世界我只喜欢你,http://em.21dtv.com/songs/60132341.mkv +妲己-全世界我只喜欢你,http://em.21dtv.com/songs/60131315.mkv +来吧焙焙-全世界我最喜欢你,http://em.21dtv.com/songs/60035908.mkv +王俞匀-全世界的人都知道,http://em.21dtv.com/songs/60035902.mkv +丁当-全世界不懂无所谓,http://em.21dtv.com/songs/60062319.mkv +李雨寿-前世的情今生的缘,http://em.21dtv.com/songs/60077152.mkv +恭硕良-全日游街dum da d dum(演唱会),http://em.21dtv.com/songs/60035896.mkv +张津涤-情人相见分外眼红,http://em.21dtv.com/songs/60122734.mkv +柯震东-请让我继续喜欢你,http://em.21dtv.com/songs/60077275.mkv +格里芬乐队-情人节最后的舞蹈,http://em.21dtv.com/songs/60132628.mkv +小老头-情人节夜里没有你,http://em.21dtv.com/songs/60106793.mkv +雷诺-情人节没有情人陪,http://em.21dtv.com/songs/60133066.mkv +张利-情人的眼里出西施,http://em.21dtv.com/songs/60035205.mkv +冷漠-情人都是别人的好,http://em.21dtv.com/songs/60077248.mkv +豫剧-穷人的孩子早当家,http://em.21dtv.com/songs/60134600.mkv +京剧-穷人的孩子早当家,http://em.21dtv.com/songs/60090531.mkv +李玉和-穷人的孩子早当家(戏曲),http://em.21dtv.com/songs/60088030.mkv +佚名-穷人的孩子早当家,http://em.21dtv.com/songs/60035635.mkv +佚名-劝千岁杀字休出口,http://em.21dtv.com/songs/60035953.mkv +萧宝钟-求求你为我留下吧,http://em.21dtv.com/songs/60035804.mkv +帅霖-求求你不要离开我,http://em.21dtv.com/songs/60119480.mkv +小锐-求求你不要离开我,http://em.21dtv.com/songs/60090996.mkv +毛宁-悄悄蒙上你的眼睛,http://em.21dtv.com/songs/60090029.mkv +毛宁+杨钰莹-悄悄蒙上你的眼睛(演唱会),http://em.21dtv.com/songs/60034420.mkv +蔡国庆+陈红-悄悄蒙上你的眼睛(演唱会),http://em.21dtv.com/songs/60034419.mkv +詹曼玲-轻轻叫一声心爱的(无原唱),http://em.21dtv.com/songs/60034810.mkv +尹啸-亲亲豪田我的故乡,http://em.21dtv.com/songs/60127929.mkv +谢霆锋-前前后后左左右右,http://em.21dtv.com/songs/60034284.mkv +佚名-轻轻的握住你的手,http://em.21dtv.com/songs/60034805.mkv +陈明-轻轻的海风我的心,http://em.21dtv.com/songs/60034804.mkv +凝听-期盼真心盼望真爱,http://em.21dtv.com/songs/60101942.mkv +F.I.R-千年之恋,http://em.21dtv.com/songs/60115581.mkv +李成山-情那要断就断乎离(无原唱),http://em.21dtv.com/songs/60095616.mkv +徐元雄-情难选择爱难追忆,http://em.21dtv.com/songs/60105072.mkv +邓洁玲+钟康棋-倩女奇缘之聂小倩(戏曲),http://em.21dtv.com/songs/60093249.mkv +赵照-请你轻一点折磨我,http://em.21dtv.com/songs/60130776.mkv +潘赢-请你来做我的女人,http://em.21dtv.com/songs/60064759.mkv +王孟西-千年轮回再续前缘,http://em.21dtv.com/songs/60110391.mkv +东方红艳-请你来八月的草原,http://em.21dtv.com/songs/60114968.mkv +王馨平-请你看着我的眼睛,http://em.21dtv.com/songs/60035571.mkv +降央卓玛-请你喝一杯下马酒,http://em.21dtv.com/songs/60077272.mkv +佟宇-请你放手让我走吧,http://em.21dtv.com/songs/60035558.mkv +刘德华-去年的烟花特别多,http://em.21dtv.com/songs/60087396.mkv +孙悦+林依轮-牵你的手牵我的心(演唱会),http://em.21dtv.com/songs/60034213.mkv +王子鸣+王妃平-牵你的手牵你的心,http://em.21dtv.com/songs/60034212.mkv +梁雁翎-欠你的情欠你的意,http://em.21dtv.com/songs/60034344.mkv +温伟杰-骑你的机车去兜风,http://em.21dtv.com/songs/60125877.mkv +王奕瑾-请你不要再说爱我,http://em.21dtv.com/songs/60110387.mkv +Along+7妹-7妹最新混音慢摇,http://em.21dtv.com/songs/60126511.mkv +卓玛加-骑马走进花的草原,http://em.21dtv.com/songs/60033978.mkv +王丽达-祈蒙山我的娘亲亲,http://em.21dtv.com/songs/60033970.mkv +程勃森-请留在我身边,http://em.21dtv.com/songs/60066254.mkv +豫剧-千里迢迢出任河阳,http://em.21dtv.com/songs/60134550.mkv +阿斯根-去拉萨的路有多远,http://em.21dtv.com/songs/60035843.mkv +东方依依-牵了手别再说放手,http://em.21dtv.com/songs/60097933.mkv +大家唱合唱团-七律-和郭沫若同志,http://em.21dtv.com/songs/60033753.mkv +杨东煜-情路不再遮遮掩掩,http://em.21dtv.com/songs/60067341.mkv +吴君如-求可再度跟你一起,http://em.21dtv.com/songs/60035789.mkv +大庆小芳+徐一可-全家祝你节日快乐,http://em.21dtv.com/songs/60131303.mkv +于文华-七绝-为女民兵题照,http://em.21dtv.com/songs/60033747.mkv +大家唱合唱团-七绝-为女民兵题照,http://em.21dtv.com/songs/60033746.mkv +和文军-请喝一杯祝福的酒,http://em.21dtv.com/songs/60083675.mkv +周杰伦-青花瓷 阳光宅男,http://em.21dtv.com/songs/60125314.mkv +古巨基+王小虎-情歌王,http://em.21dtv.com/songs/60122555.mkv +白致瑶-亲圪蛋下河洗衣裳,http://em.21dtv.com/songs/60117068.mkv +阎维文-亲圪蛋下河洗衣裳,http://em.21dtv.com/songs/60034567.mkv +云飞儿-情歌唱给最爱的你,http://em.21dtv.com/songs/60120292.mkv +王冰洋-确定一定以及肯定,http://em.21dtv.com/songs/60035979.mkv +曹雪-确定一定以及肯定,http://em.21dtv.com/songs/60035978.mkv +罗逻圣-钱到底是什么东西,http://em.21dtv.com/songs/60129490.mkv +DJ舞曲-汽车专用DJ慢摇,http://em.21dtv.com/songs/50000184.mkv +B.A.D-青春舞曲2001,http://em.21dtv.com/songs/60034728.mkv +罗大佑-青春舞曲2000(演唱会),http://em.21dtv.com/songs/60034727.mkv +卡拉OK-清晨我们踏上小路(军旅),http://em.21dtv.com/songs/60089709.mkv +王琳玲-清晨我们踏上小道,http://em.21dtv.com/songs/60108719.mkv +女声-清晨我们踏上小道,http://em.21dtv.com/songs/60034871.mkv +男声-清晨我们踏上小道,http://em.21dtv.com/songs/60034870.mkv +黑龙-千错万错爱你没错,http://em.21dtv.com/songs/60079906.mkv +侃侃-青春是岁月的河它,http://em.21dtv.com/songs/60099754.mkv +Hiding Emotion-青春日记2014,http://em.21dtv.com/songs/60104687.mkv +晓依+淼淼-青春期遇上更年期,http://em.21dtv.com/songs/60115194.mkv +刘瑞琦-青春留言,http://em.21dtv.com/songs/60114426.mkv +谭晶-青春集合在军旗下(演唱会),http://em.21dtv.com/songs/60034684.mkv +罗婉琳-青藏高原就是我家,http://em.21dtv.com/songs/60088429.mkv +孙萌-青春的梦想飞的心,http://em.21dtv.com/songs/60034670.mkv +群星-青春不老我们不散,http://em.21dtv.com/songs/60134131.mkv +夏邦-青春不老我们不散,http://em.21dtv.com/songs/60133526.mkv +帅霖-请不要这样伤害我,http://em.21dtv.com/songs/60035511.mkv +赵乃吉-请不要在秋天失恋,http://em.21dtv.com/songs/60109635.mkv +杨雯茜-请不要随便说分手,http://em.21dtv.com/songs/60035507.mkv +糖糖乐团-亲爱的中国我的家,http://em.21dtv.com/songs/60034559.mkv +叶凡-亲爱的中国我爱你,http://em.21dtv.com/songs/60034558.mkv +李嘉石-亲爱的中国我爱你,http://em.21dtv.com/songs/60066234.mkv +孙宇-亲爱的我们结婚吧,http://em.21dtv.com/songs/60034548.mkv +阎琰-亲爱的我们分手吧,http://em.21dtv.com/songs/60086766.mkv +戈浪-亲爱的请你不要走,http://em.21dtv.com/songs/60131449.mkv +刘恺名-亲爱的你在想我吗,http://em.21dtv.com/songs/60126641.mkv +祁隆-亲爱的你知不知道,http://em.21dtv.com/songs/60132772.mkv +陈永强-亲爱的你呀在哪里,http://em.21dtv.com/songs/60102894.mkv +杨梓+陈雅森-亲爱的你听见了吗,http://em.21dtv.com/songs/60115238.mkv +杨梓+陈雅森-亲爱的你听见了吗,http://em.21dtv.com/songs/60113682.mkv +陈雅森+杨梓-亲爱的你听见了吗,http://em.21dtv.com/songs/60102905.mkv +伊扬-亲爱的你会想我吗,http://em.21dtv.com/songs/60034523.mkv +金莎-亲爱的你还幸福吗,http://em.21dtv.com/songs/60104513.mkv +少军-亲爱的你回来好吗,http://em.21dtv.com/songs/60132396.mkv +少军-亲爱的你回来好吗,http://em.21dtv.com/songs/60034522.mkv +张晓明-亲爱的你还爱我吗,http://em.21dtv.com/songs/60098347.mkv +陈振云-亲爱的你还爱我吗,http://em.21dtv.com/songs/60034518.mkv +郝刚-亲爱的你过得好吗,http://em.21dtv.com/songs/60064717.mkv +金久哲-亲爱的你多情的他,http://em.21dtv.com/songs/60111458.mkv +张韶涵-亲爱的那不是爱情,http://em.21dtv.com/songs/60034510.mkv +慕容晓晓-亲爱的妈妈我爱你,http://em.21dtv.com/songs/60103307.mkv +岳太阳-亲爱的老婆我爱你,http://em.21dtv.com/songs/60119464.mkv +江宇-亲爱的老婆我爱你,http://em.21dtv.com/songs/60061507.mkv +王俊宇-亲爱的老婆听我说,http://em.21dtv.com/songs/60117026.mkv +王俊宇-亲爱的老婆听我说,http://em.21dtv.com/songs/60117025.mkv +欧阳大龙-亲爱的孩子别太累,http://em.21dtv.com/songs/60088162.mkv +刘嘉亮-亲爱的不要离开我,http://em.21dtv.com/songs/60034497.mkv +刘嘉亮+香香-亲爱的不要离开我,http://em.21dtv.com/songs/60034496.mkv +刘嘉亮-亲爱的不要离开我(演唱会),http://em.21dtv.com/songs/60034495.mkv +谢有才-亲爱的不要放开我,http://em.21dtv.com/songs/60063174.mkv +于金胜-亲爱的爸妈辛苦了,http://em.21dtv.com/songs/60119239.mkv +周子轩-亲爱的宝贝我爱你,http://em.21dtv.com/songs/60098194.mkv +户松遥-q&aリサイタル!,http://em.21dtv.com/songs/60071651.mkv +胡耀华-瓶子保存相爱时光,http://em.21dtv.com/songs/60103528.mkv +AKB48-仆たちは战わない,http://em.21dtv.com/songs/60111575.mkv +七郎-朋友天无绝人之路,http://em.21dtv.com/songs/60033353.mkv +樊少华+路童-朋友是天朋友是地,http://em.21dtv.com/songs/60064688.mkv +赵学而-赔一生贪恋的时间,http://em.21dtv.com/songs/60093227.mkv +枫舞-谱一首奋斗歌来唱,http://em.21dtv.com/songs/60113729.mkv +七郎-拼一生不是赌一时,http://em.21dtv.com/songs/60095377.mkv +宇珩-朋友们都结婚去了,http://em.21dtv.com/songs/60033337.mkv +张智尧+樊少皇-朋友对手,http://em.21dtv.com/songs/60114541.mkv +卢广仲-陪我去青康藏高原,http://em.21dtv.com/songs/60077059.mkv +何润东-陪我去看蓝蓝的海,http://em.21dtv.com/songs/60033265.mkv +王唯侨-菩提树下的涅盘曲,http://em.21dtv.com/songs/60099400.mkv +海心-凭什么有钱才爱我,http://em.21dtv.com/songs/60086753.mkv +邹静-PR PR PR,http://em.21dtv.com/songs/60112297.mkv +Miwa-Princess,http://em.21dtv.com/songs/60123508.mkv +孙晓磊-琵琶行(演唱会),http://em.21dtv.com/songs/60126780.mkv +张敬轩-偏偏喜欢你+摘星,http://em.21dtv.com/songs/60092612.mkv +Snh48-Pop Star,http://em.21dtv.com/songs/60107434.mkv +Apink-ぱぴぷぺPON!,http://em.21dtv.com/songs/60134641.mkv +凌志辉-陪你走过每个春天,http://em.21dtv.com/songs/60033251.mkv +棉花糖-陪你到世界的终结,http://em.21dtv.com/songs/60033232.mkv +陈奕迅-陪你度过漫长岁月,http://em.21dtv.com/songs/60115488.mkv +林鸿阳-漂亮女人伤我最深,http://em.21dtv.com/songs/60033484.mkv +吴松发-漂亮的女孩我爱你,http://em.21dtv.com/songs/60081710.mkv +李贵府-漂亮的姑娘你别怕,http://em.21dtv.com/songs/60077081.mkv +Playback-Playback,http://em.21dtv.com/songs/60112454.mkv +高林生-平江路a座的生活,http://em.21dtv.com/songs/60062375.mkv +本兮-Pink Gun,http://em.21dtv.com/songs/60129210.mkv +打扰一下乐团-平凡之路,http://em.21dtv.com/songs/60105923.mkv +刘斯远-平凡人的伟大爱情,http://em.21dtv.com/songs/60133409.mkv +韩宝仪-平凡的日子卡值钱,http://em.21dtv.com/songs/60033599.mkv +Kehlani-Personal,http://em.21dtv.com/songs/60134723.mkv +Ty Dolla Sign+B.O.B-Paranoid,http://em.21dtv.com/songs/60125032.mkv +GOT7-Paradise,http://em.21dtv.com/songs/60134686.mkv +Wiz Khalifa+Berner-Paradise,http://em.21dtv.com/songs/60125051.mkv +安图声乐队-Paradise,http://em.21dtv.com/songs/60106779.mkv +Rella-Pa Pa Pa,http://em.21dtv.com/songs/60122412.mkv +张韶涵+雨馨雨薇+杨肸子+孔爽-欧若拉,http://em.21dtv.com/songs/60123964.mkv +张韶涵+雨馨雨薇+杨肸子+孔爽-欧若拉,http://em.21dtv.com/songs/60122756.mkv +张韶涵-欧若拉,http://em.21dtv.com/songs/60116815.mkv +Selena Gomez-Only You,http://em.21dtv.com/songs/60134794.mkv +孙浩英-ONLY YOU,http://em.21dtv.com/songs/60125387.mkv +吴京-Only You,http://em.21dtv.com/songs/60122575.mkv +王莘迪-Only You,http://em.21dtv.com/songs/60112854.mkv +MIC男团-ONLY ONE,http://em.21dtv.com/songs/60123505.mkv +Tiffany-Only One,http://em.21dtv.com/songs/60109901.mkv +JYJ-Only One,http://em.21dtv.com/songs/60103023.mkv +Justin Bieber-One Time,http://em.21dtv.com/songs/60121262.mkv +符致逸-One Take,http://em.21dtv.com/songs/60103501.mkv +陈梓童-ONE MORE,http://em.21dtv.com/songs/60129750.mkv +FIESTAR-One More,http://em.21dtv.com/songs/60101763.mkv +Trevor Jackson-One Girl,http://em.21dtv.com/songs/60110802.mkv +彭佳慧-one moment in time,http://em.21dtv.com/songs/60073703.mkv +王思佳-OH OH OH,http://em.21dtv.com/songs/60118779.mkv +牛奶咖啡-偶尔还是会想起你,http://em.21dtv.com/songs/60102511.mkv +大哲-藕断丝连2010,http://em.21dtv.com/songs/60033078.mkv +Bastille-Oblivion,http://em.21dtv.com/songs/60103004.mkv +奥迪-噢 爱人,http://em.21dtv.com/songs/60102088.mkv +王子月-你走以后,http://em.21dtv.com/songs/60103438.mkv +音乐走廊-你在我心里最重要,http://em.21dtv.com/songs/60109733.mkv +冷酷-你在我心里安了家,http://em.21dtv.com/songs/60121413.mkv +毕书尽-你在ㄍㄧㄥ什么?,http://em.21dtv.com/songs/60107858.mkv +民歌-那支山歌我永远唱,http://em.21dtv.com/songs/60090033.mkv +雷佳-那支山歌我还在唱,http://em.21dtv.com/songs/60109002.mkv +佚名-你在日落深处等我(无原唱),http://em.21dtv.com/songs/60032467.mkv +戚剑强-你在哪个路口等我,http://em.21dtv.com/songs/60072249.mkv +胡彦斌-你这么晚了还没睡,http://em.21dtv.com/songs/60032515.mkv +帕尔哈提-你怎么舍得我难过,http://em.21dtv.com/songs/60104095.mkv +常石磊+萨顶顶-你怎么舍得我难过,http://em.21dtv.com/songs/60098311.mkv +陈俊豪+陈羽凡-你怎么舍得我难过,http://em.21dtv.com/songs/60095128.mkv +胡彦斌-你怎么舍得我难过,http://em.21dtv.com/songs/60094651.mkv +孙琳-你怎么舍得我难过,http://em.21dtv.com/songs/60089798.mkv +张靓颖-你怎么舍得我难过,http://em.21dtv.com/songs/60087848.mkv +王冰洋-你怎么舍得我难过,http://em.21dtv.com/songs/60083539.mkv +陈展鹏-你怎么舍得我难过,http://em.21dtv.com/songs/60076986.mkv +尚雯婕-你怎么舍得我难过,http://em.21dtv.com/songs/60076985.mkv +佚名-你怎么舍得我难过,http://em.21dtv.com/songs/60032503.mkv +刘锡明-你怎么舍得我难过,http://em.21dtv.com/songs/60032502.mkv +刘德华-你怎么舍得我难过,http://em.21dtv.com/songs/60032501.mkv +黄品源-你怎么舍得我难过,http://em.21dtv.com/songs/60032500.mkv +任贤齐-你怎么舍得我难过(演唱会),http://em.21dtv.com/songs/60032499.mkv +黄品源-你怎么舍得我难过(演唱会),http://em.21dtv.com/songs/60032498.mkv +艾歌-你怎么舍得我流泪,http://em.21dtv.com/songs/60088517.mkv +孙伟-你怎么舍得我心碎,http://em.21dtv.com/songs/60061469.mkv +许茹芸+梁咏琪+孙俪-你怎么舍得伤害我,http://em.21dtv.com/songs/60095223.mkv +帅霖-你怎么舍得让我哭,http://em.21dtv.com/songs/60032495.mkv +军军-你怎么忍心伤害我,http://em.21dtv.com/songs/60062539.mkv +陈云-你做妈妈我做爸爸,http://em.21dtv.com/songs/60118135.mkv +堂娜-你怎么可以不爱我,http://em.21dtv.com/songs/60032489.mkv +孙露-你怎么狠心说分手,http://em.21dtv.com/songs/60076982.mkv +龙韩宇-你怎么狠心伤害我,http://em.21dtv.com/songs/60064661.mkv +太子-你怎么狠心伤害我,http://em.21dtv.com/songs/60062974.mkv +大哲-你怎么狠心离开我,http://em.21dtv.com/songs/60032487.mkv +暴林-你怎么狠心离开我,http://em.21dtv.com/songs/60032486.mkv +许强-你怎么不能带我走,http://em.21dtv.com/songs/60072251.mkv +何建清-你走了就不要回眸,http://em.21dtv.com/songs/60083543.mkv +单待-你最近有点不一样,http://em.21dtv.com/songs/60123711.mkv +陈文浩-你在家乡我在他乡,http://em.21dtv.com/songs/60107326.mkv +陈明真-你最近是怎么回事,http://em.21dtv.com/songs/60089527.mkv +倪尔萍-你走进了我的心房,http://em.21dtv.com/songs/60132212.mkv +OK绷-你最近过得还好吗,http://em.21dtv.com/songs/60097928.mkv +张洪量-你知道我在等你吗,http://em.21dtv.com/songs/60032554.mkv +伦永亮-你知道我在等你吗,http://em.21dtv.com/songs/60032553.mkv +白智文-你知道我在等你吗,http://em.21dtv.com/songs/60032552.mkv +任贤齐-你知道我在等你吗(演唱会),http://em.21dtv.com/songs/60032551.mkv +迪克牛仔-你知道我在等你吗(演唱会),http://em.21dtv.com/songs/60032550.mkv +佚名-你知道我在等你吗(慢四),http://em.21dtv.com/songs/60032549.mkv +陈洁丽-你知道我在等你吗(演唱会),http://em.21dtv.com/songs/60062257.mkv +谢容儿-你知道我对你的好,http://em.21dtv.com/songs/60063164.mkv +望海高歌-你走的那天下着雨,http://em.21dtv.com/songs/60135338.mkv +谭咏麟-你走的那天下着雨,http://em.21dtv.com/songs/60032568.mkv +李茂山-你真的还要说谎吗,http://em.21dtv.com/songs/60088045.mkv +张长绫-你真的很像一个人,http://em.21dtv.com/songs/60032526.mkv +祁隆-你知不知道我难过,http://em.21dtv.com/songs/60129449.mkv +铁俊+张毅-你眼中,http://em.21dtv.com/songs/60126332.mkv +花儿乐队-你愿意做我女友吗,http://em.21dtv.com/songs/60032453.mkv +猪哥亮-你永远是我的最爱(演唱会),http://em.21dtv.com/songs/60072248.mkv +张军+杨丽琨-那一夜 玛吉阿米,http://em.21dtv.com/songs/60130299.mkv +徐怀钰-你约我在夏天见面,http://em.21dtv.com/songs/60032454.mkv +郑丹瑞-那夜我替女儿R背脊,http://em.21dtv.com/songs/60093260.mkv +梁祖尧-那夜我们在听依然(演唱会),http://em.21dtv.com/songs/60030800.mkv +胡瓜-你依然在我心深处,http://em.21dtv.com/songs/60032411.mkv +越剧-那一日梳妆来照镜,http://em.21dtv.com/songs/60030823.mkv +刘标-那一片蓝色的天空,http://em.21dtv.com/songs/60128833.mkv +窦智孔-你有美丽我有爱你,http://em.21dtv.com/songs/60032437.mkv +BEE GEES-new york mining disaster 1941,http://em.21dtv.com/songs/60004087.mkv +张信哲-难以抗拒你的容颜,http://em.21dtv.com/songs/60089266.mkv +毛宁+杨钰莹-能有几次这样的爱,http://em.21dtv.com/songs/60031349.mkv +佚名-南阳光-我的韩伯父(无原唱),http://em.21dtv.com/songs/60031155.mkv +冷漠-你要放手也无所谓,http://em.21dtv.com/songs/60076974.mkv +黎明-你要懂得欺骗自己,http://em.21dtv.com/songs/60032389.mkv +孙蓝-你想幸福就嫁给我,http://em.21dtv.com/songs/60094061.mkv +VIXX-那些年,http://em.21dtv.com/songs/60125042.mkv +林俊杰-那些你很冒险的梦,http://em.21dtv.com/songs/60064594.mkv +黄品冠-那些女孩教我的事,http://em.21dtv.com/songs/60030794.mkv +许佳慧-你想好怎么对她说,http://em.21dtv.com/songs/60108003.mkv +许佳慧-你想好怎么对她说,http://em.21dtv.com/songs/60061466.mkv +张清芳-你喜欢现在的我吗(演唱会),http://em.21dtv.com/songs/60032351.mkv +周华健-你喜欢的会有几个,http://em.21dtv.com/songs/60032347.mkv +王菲-你喜欢不如我喜欢,http://em.21dtv.com/songs/60032346.mkv +李亮超-那些歌声 那些年,http://em.21dtv.com/songs/60097916.mkv +谭咏麟-那些感动过人的歌,http://em.21dtv.com/songs/60030788.mkv +李代沫-那些歌词里的悲伤,http://em.21dtv.com/songs/60119645.mkv +文夏-男性本是漂泊心情,http://em.21dtv.com/songs/60031052.mkv +黄文武-你为什么这样对我,http://em.21dtv.com/songs/60128633.mkv +黄文武-你为什么这样对我,http://em.21dtv.com/songs/60122304.mkv +陈芳-你为什么这样对我,http://em.21dtv.com/songs/60122249.mkv +带泪的鱼-你为什么要抛弃我,http://em.21dtv.com/songs/60126828.mkv +关泽楠-你为什么要离开我,http://em.21dtv.com/songs/60076970.mkv +梁文音-你为什么那么快乐,http://em.21dtv.com/songs/60076969.mkv +赵齐-你为什么出卖爱情,http://em.21dtv.com/songs/60102766.mkv +赵华-你为什么出卖爱情,http://em.21dtv.com/songs/60102761.mkv +钟明峻-你为了他我为了你,http://em.21dtv.com/songs/60032301.mkv +王利瑶-难忘家乡的吊脚楼,http://em.21dtv.com/songs/60118774.mkv +天津阿明-你为家撑起一片天(演唱会),http://em.21dtv.com/songs/60083534.mkv +隆熙俊-你为何这样伤害我,http://em.21dtv.com/songs/60032296.mkv +藏娃-你为何走得那么远,http://em.21dtv.com/songs/60032297.mkv +完玛三智-你为何走的那么远,http://em.21dtv.com/songs/60064655.mkv +张小雯-你我和世界都变了(无原唱),http://em.21dtv.com/songs/60032322.mkv +胡杨林-你为何对我这么好,http://em.21dtv.com/songs/60079911.mkv +王识贤+李嘉-难忘的人难忘的情,http://em.21dtv.com/songs/60031264.mkv +费玉清-你我曾经走过纪元,http://em.21dtv.com/songs/60032311.mkv +乌日塔-难忘啊童年的摇篮,http://em.21dtv.com/songs/60031234.mkv +TARA-Number 9,http://em.21dtv.com/songs/60094374.mkv +路勇-南天门上空的星座,http://em.21dtv.com/songs/60111423.mkv +盖鸣晖-南唐李后主之私会(演唱会),http://em.21dtv.com/songs/60031146.mkv +孟庭苇-你听海是不是在笑,http://em.21dtv.com/songs/60032287.mkv +木子烁-那天的雨那天的风,http://em.21dtv.com/songs/60086717.mkv +晴儿-你是真的爱着我吗,http://em.21dtv.com/songs/60087948.mkv +佚名-你是一场多情的梦,http://em.21dtv.com/songs/60032220.mkv +门丽-你是雄鹰我是翅膀,http://em.21dtv.com/songs/60085535.mkv +索南扎西-你是星光你是月亮,http://em.21dtv.com/songs/60067288.mkv +刘超华-你说幸福不要太多,http://em.21dtv.com/songs/60032276.mkv +王杰-你是我最真的故事,http://em.21dtv.com/songs/60092980.mkv +黑龙+庞柳婷-你是我珍惜莪的人(HD),http://em.21dtv.com/songs/10012841.mkv +张雨生-你是我真心的执著,http://em.21dtv.com/songs/60091158.mkv +张雨生+陶晶莹-你是我真心的执着,http://em.21dtv.com/songs/60032203.mkv +佚名-你是我真心的执着,http://em.21dtv.com/songs/60032202.mkv +吴歌-你是我最疼爱的人,http://em.21dtv.com/songs/60110927.mkv +易丹-你是我最深的爱恋,http://em.21dtv.com/songs/60087934.mkv +狮子合唱团-你是我最深爱的人,http://em.21dtv.com/songs/60132702.mkv +永邦-你是我最深爱的人,http://em.21dtv.com/songs/60032212.mkv +张强-你是我最牵挂的人,http://em.21dtv.com/songs/60126879.mkv +冷酷-你是我最美的相遇,http://em.21dtv.com/songs/60121414.mkv +亮剑-你是我最美的思念,http://em.21dtv.com/songs/60076958.mkv +自然主义-你是我最美的回忆,http://em.21dtv.com/songs/60129516.mkv +成泉-你是我最美的红颜,http://em.21dtv.com/songs/60119580.mkv +成泉+寂悸-你是我最美的红颜,http://em.21dtv.com/songs/60118603.mkv +路童+李泓滢-你是我最美的传奇,http://em.21dtv.com/songs/60072245.mkv +曾轶可-你是我最好的朋友,http://em.21dtv.com/songs/60032211.mkv +佚名-你是我最古老的梦,http://em.21dtv.com/songs/60032210.mkv +吴梓涵-你是我最大的安慰,http://em.21dtv.com/songs/60107581.mkv +吴虹飞-你是我最爱的少年,http://em.21dtv.com/songs/60127838.mkv +龙影云-你是我最爱的情人,http://em.21dtv.com/songs/60114923.mkv +若惜-你是我最爱的情人,http://em.21dtv.com/songs/60114743.mkv +海风-你是我最爱的情人,http://em.21dtv.com/songs/60106078.mkv +掠琼-你是我最爱的男子,http://em.21dtv.com/songs/60111127.mkv +糖宝-你是我最爱的女人,http://em.21dtv.com/songs/60134062.mkv +笑天-你是我最爱的女人,http://em.21dtv.com/songs/60123062.mkv +冷漠-你是我最爱的女人,http://em.21dtv.com/songs/60085534.mkv +林志炫-你是我最爱的名字,http://em.21dtv.com/songs/60091462.mkv +佚名-你送我一支玫瑰花,http://em.21dtv.com/songs/60032277.mkv +宋旭-你是我永远的兄弟,http://em.21dtv.com/songs/60128990.mkv +费玉清-你是我永远的乡愁,http://em.21dtv.com/songs/60032198.mkv +红蔷薇-你是我永远的唯一,http://em.21dtv.com/songs/60121992.mkv +雨中百合-你是我永远的守候,http://em.21dtv.com/songs/60111508.mkv +流苏-你是我永远的守候,http://em.21dtv.com/songs/60094205.mkv +思念-你是我永远的爱人,http://em.21dtv.com/songs/60076955.mkv +冯文女-你是我永远的爱人,http://em.21dtv.com/songs/60032197.mkv +张琴+江涛-你是我一生的追逐,http://em.21dtv.com/songs/60032187.mkv +昊麟-你是我一生的知己,http://em.21dtv.com/songs/60113560.mkv +唐萱+熊伟-你是我一生的知己,http://em.21dtv.com/songs/60032186.mkv +韩信-你是我一生的知己,http://em.21dtv.com/songs/60032185.mkv +李铭扬-你是我一生的所有,http://em.21dtv.com/songs/60129247.mkv +钟sir-你是我一生的伴侣,http://em.21dtv.com/songs/60116314.mkv +翟羽佳-你是我一生的爱人,http://em.21dtv.com/songs/60032184.mkv +高韩-你是我一生的牵挂,http://em.21dtv.com/songs/60067287.mkv +潘越云-你是我一辈子的爱,http://em.21dtv.com/songs/60032183.mkv +蔡琴-你是我心中云一朵,http://em.21dtv.com/songs/60032177.mkv +林蔷-你是我心中的宝贝,http://em.21dtv.com/songs/60032174.mkv +含瑞-你是我血液里的毒,http://em.21dtv.com/songs/60064651.mkv +龙梅子-你是我想要的幸福,http://em.21dtv.com/songs/60122321.mkv +许茹芸-你是我心口里的风,http://em.21dtv.com/songs/60112234.mkv +钟镇涛+章蓉舫-你是我心底的烙印,http://em.21dtv.com/songs/60032171.mkv +郑妍妮+黄子俊-你是我心底的烙印,http://em.21dtv.com/songs/60032170.mkv +狮子合唱团-你是我心爱的姑娘,http://em.21dtv.com/songs/60132701.mkv +张家辉-你是我心爱的姑娘,http://em.21dtv.com/songs/60116788.mkv +萧敬腾+许一鸣-你是我心爱的姑娘,http://em.21dtv.com/songs/60105327.mkv +李琪-你是我心爱的姑娘,http://em.21dtv.com/songs/60105154.mkv +侯磊-你是我心爱的姑娘,http://em.21dtv.com/songs/60080981.mkv +汪峰-你是我心爱的姑娘,http://em.21dtv.com/songs/60032169.mkv +张赫宣-你是我心爱的姑娘,http://em.21dtv.com/songs/60069673.mkv +言承旭-你是我唯一的执着,http://em.21dtv.com/songs/60032167.mkv +陈一郎-你是我唯一的生命(无原唱),http://em.21dtv.com/songs/60095963.mkv +佚名-你是我唯一的生命(无原唱),http://em.21dtv.com/songs/60032166.mkv +修竹-你是我唯一的守候,http://em.21dtv.com/songs/60093974.mkv +同名同姓-你是我网络的知己,http://em.21dtv.com/songs/60032165.mkv +网络歌手-你是我网络的知己,http://em.21dtv.com/songs/60067286.mkv +杨宗宪-你是我所有的生命,http://em.21dtv.com/songs/60032163.mkv +齐豫-你是我所有的回忆,http://em.21dtv.com/songs/60032162.mkv +斯琴高美-你是我手心里的宝,http://em.21dtv.com/songs/60032157.mkv +木禾-你是我伤心的回忆,http://em.21dtv.com/songs/60083528.mkv +平安-你是我生命中的糖,http://em.21dtv.com/songs/60097927.mkv +陈瑞-你是我生命的传奇,http://em.21dtv.com/songs/60032155.mkv +刘佳轩-你是我尚好的选择,http://em.21dtv.com/songs/60032154.mkv +林志炫-你是我前世的知己,http://em.21dtv.com/songs/60032152.mkv +范怡文-你是我前世的知己,http://em.21dtv.com/songs/60032151.mkv +晓依-你是我难忘的记忆,http://em.21dtv.com/songs/60115966.mkv +关彤-你是我们的贴心人,http://em.21dtv.com/songs/60083527.mkv +路童+寂悸-你是我今生的唯一,http://em.21dtv.com/songs/60130780.mkv +酷姐+于洋-你是我今生的唯一,http://em.21dtv.com/songs/60114140.mkv +晓雨-你是我今生的唯一,http://em.21dtv.com/songs/60032141.mkv +路童-你是我今生的唯一,http://em.21dtv.com/songs/60032140.mkv +艾歌-你是我今生的唯一,http://em.21dtv.com/songs/60032139.mkv +柯华兵-你是我今生的守候,http://em.21dtv.com/songs/60115243.mkv +认真+阿斯满-你是我今生的爱恋,http://em.21dtv.com/songs/60115387.mkv +小北-你是我戒不掉的烟,http://em.21dtv.com/songs/60032138.mkv +糖糖乐团-你是我戒不掉的烟,http://em.21dtv.com/songs/60032137.mkv +郑进一+曾心梅-你是我的心肝宝贝,http://em.21dtv.com/songs/60032118.mkv +郭欢+小春-你是我的我是你的,http://em.21dtv.com/songs/60076948.mkv +曾轶可-你是我的我是你的,http://em.21dtv.com/songs/60063353.mkv +贝贝-你是我的网络知己,http://em.21dtv.com/songs/60094301.mkv +囚鸟-你是我的网络情人,http://em.21dtv.com/songs/60067284.mkv +郭富城-你是我的二分之一,http://em.21dtv.com/songs/60093347.mkv +张学友-你是我的春夏秋冬,http://em.21dtv.com/songs/60032085.mkv +朱妍-你是我爱的风景线,http://em.21dtv.com/songs/60032071.mkv +代晶+代雯奇-你是太阳我是星星,http://em.21dtv.com/songs/60076939.mkv +慕容晓晓-你是天涯我是海角,http://em.21dtv.com/songs/60115951.mkv +马菀营-你是唐僧还是法海,http://em.21dtv.com/songs/60121151.mkv +徐志强-你是土豆我是地瓜,http://em.21dtv.com/songs/60032064.mkv +白户茉莉-你说她比我需要你(无原唱),http://em.21dtv.com/songs/60032270.mkv +詹曼铃-你是阮一生的安慰,http://em.21dtv.com/songs/60032048.mkv +王中平+甲子慧-你是阮今生的唯一,http://em.21dtv.com/songs/60099392.mkv +张智霖-你是如此难以忘记,http://em.21dtv.com/songs/60097926.mkv +罗力威-你是如此难以忘记(演唱会),http://em.21dtv.com/songs/60076938.mkv +梁朝伟-你是如此难以忘记(演唱会),http://em.21dtv.com/songs/60032043.mkv +孙耀威+黄靖宏-你是情人还是敌人,http://em.21dtv.com/songs/60032041.mkv +洋旭-你失去了最爱的人,http://em.21dtv.com/songs/60115267.mkv +洋旭-你失去了最爱的人,http://em.21dtv.com/songs/60031988.mkv +佚名-你是飘啊飘着的云,http://em.21dtv.com/songs/60032039.mkv +林依伦-你是飘啊飘着的云(演唱会),http://em.21dtv.com/songs/60032038.mkv +张也-你说那一天你要来,http://em.21dtv.com/songs/60032262.mkv +小木+赵露-难舍难婚,http://em.21dtv.com/songs/60111827.mkv +方皓玟-你是你本身的传奇,http://em.21dtv.com/songs/60125622.mkv +方皓玟-你是你本身的传奇,http://em.21dtv.com/songs/60117772.mkv +石梅-你说会爱我一辈子,http://em.21dtv.com/songs/60091794.mkv +龚天齐-你是个男人就别哭,http://em.21dtv.com/songs/60064643.mkv +尚芸菲-你说过不会离开我,http://em.21dtv.com/songs/60098298.mkv +陈兴瑜-你说过爱我一万年(演唱会),http://em.21dtv.com/songs/60062286.mkv +陈兴瑜-你说过爱我一万年,http://em.21dtv.com/songs/60032257.mkv +吴峙轩-你是否真的爱过我,http://em.21dtv.com/songs/60032020.mkv +凌飞-你是否为我流过泪,http://em.21dtv.com/songs/60032018.mkv +佚名-你是否曾偷偷的哭,http://em.21dtv.com/songs/60032013.mkv +叶顺有-那时的月亮那么圆,http://em.21dtv.com/songs/60030758.mkv +纪敏佳-那时的风那时的雨,http://em.21dtv.com/songs/60076792.mkv +黄玠-你是不是像我一样,http://em.21dtv.com/songs/60126484.mkv +冰火组合-你是不是我的情人(演唱会),http://em.21dtv.com/songs/60032002.mkv +高慧君-你是不爱我的对吗,http://em.21dtv.com/songs/60031999.mkv +金生水-你说爱我又不爱我,http://em.21dtv.com/songs/60061461.mkv +崔云飞-男人再累也要奋斗,http://em.21dtv.com/songs/60126817.mkv +思念-女人也有权利心碎,http://em.21dtv.com/songs/60032983.mkv +林蔷-男人也会为爱流泪,http://em.21dtv.com/songs/60031025.mkv +张信哲-男人也好女人也好,http://em.21dtv.com/songs/60083478.mkv +陈瑞-女人心,http://em.21dtv.com/songs/60127563.mkv +黄勇-男人无悔,http://em.21dtv.com/songs/60123392.mkv +叶欢-你让我悲伤又欢喜(无原唱),http://em.21dtv.com/songs/60031954.mkv +刘心宇-女人是用来疼爱的,http://em.21dtv.com/songs/60103112.mkv +阿勇-男人是天男人是地,http://em.21dtv.com/songs/60098824.mkv +衡越-女人是水男人是山,http://em.21dtv.com/songs/60099484.mkv +尹子-男人三十[HD],http://em.21dtv.com/songs/60129018.mkv +雯靖-你让世界从此不同,http://em.21dtv.com/songs/60031953.mkv +马文吉-男人没有钱怎么办,http://em.21dtv.com/songs/60030997.mkv +张天龙-男人没有钱,http://em.21dtv.com/songs/60105030.mkv +丁童-男人没有钱不是罪,http://em.21dtv.com/songs/60105540.mkv +王昊-男人流眼泪为了谁,http://em.21dtv.com/songs/60063018.mkv +喜瓜瓜-女人 铿锵的玫瑰,http://em.21dtv.com/songs/60115072.mkv +冷酷-女人 铿锵的玫瑰,http://em.21dtv.com/songs/60115020.mkv +林玉英-你若快乐我就快乐(无原唱),http://em.21dtv.com/songs/60031971.mkv +思予-女人就要活得漂亮,http://em.21dtv.com/songs/60131437.mkv +刘涛-女人花,http://em.21dtv.com/songs/60125201.mkv +卓依婷-女人何苦为难女人,http://em.21dtv.com/songs/60032934.mkv +辛晓琪-女人何苦为难女人,http://em.21dtv.com/songs/60032933.mkv +冷漠-男人的一半是女人,http://em.21dtv.com/songs/60099105.mkv +李翊君-男人的一半是女人,http://em.21dtv.com/songs/60062608.mkv +马云龙-女人的心怎么会变,http://em.21dtv.com/songs/60088976.mkv +庾澄庆-男人的心也会流泪,http://em.21dtv.com/songs/60030969.mkv +韩磊-男人底线,http://em.21dtv.com/songs/60114250.mkv +孙艳-男人的心女人的酒,http://em.21dtv.com/songs/60111813.mkv +逍遥-男人的心更容易碎,http://em.21dtv.com/songs/60030968.mkv +郭桓宇-你若懂我该有多好,http://em.21dtv.com/songs/60134330.mkv +郭桓宇-你若懂我该有多好,http://em.21dtv.com/songs/60114137.mkv +大哲-男人的痛2011,http://em.21dtv.com/songs/60030964.mkv +二兵-男人的泪女人的罪,http://em.21dtv.com/songs/60105558.mkv +高明骏+庞龙+阿浩-男人的累男人的泪,http://em.21dtv.com/songs/60030961.mkv +豪记大对唱-男人的泪女人的爱,http://em.21dtv.com/songs/60095928.mkv +沈石磊-男人的泪2011,http://em.21dtv.com/songs/60030960.mkv +张跃-男人的酒女人的泪,http://em.21dtv.com/songs/60132468.mkv +张杰+张宇-女人到底想要什么,http://em.21dtv.com/songs/60032908.mkv +李明翰-男人的错女人的泪,http://em.21dtv.com/songs/60030949.mkv +佚名-男人的背男人的悲,http://em.21dtv.com/songs/60030947.mkv +小崔建-男人别再伤女人心,http://em.21dtv.com/songs/60076819.mkv +马旭东-你若不离我就不弃,http://em.21dtv.com/songs/60130899.mkv +丁娜-女人不坏男人不爱,http://em.21dtv.com/songs/60101231.mkv +段成峰-男人不坏女人不爱,http://em.21dtv.com/songs/60030943.mkv +阿清-男人不坏女人不爱,http://em.21dtv.com/songs/60066170.mkv +袁哲-男人不坏女人不爱,http://em.21dtv.com/songs/60061446.mkv +欣哲-你若安好我不打扰,http://em.21dtv.com/songs/60132650.mkv +杜玫-你若安好我不打扰,http://em.21dtv.com/songs/60131515.mkv +杨钰莹-你若安好便是晴天,http://em.21dtv.com/songs/60103388.mkv +胡灵-你若安好便是晴天,http://em.21dtv.com/songs/60098709.mkv +孙坚-你若安好便是晴天,http://em.21dtv.com/songs/60083518.mkv +杨钰莹-你若安好便是晴天(演唱会),http://em.21dtv.com/songs/60076934.mkv +胡杰夕-你若安好便是晴天,http://em.21dtv.com/songs/60067279.mkv +韩少-你却躺在别人怀里,http://em.21dtv.com/songs/60072240.mkv +黄睿铭-年轻人不要老熬夜,http://em.21dtv.com/songs/60126486.mkv +杨洪基-年轻的小伙来呀来,http://em.21dtv.com/songs/60032642.mkv +李宇春-年轻的朋友来相会,http://em.21dtv.com/songs/60088007.mkv +郑绪岚+牟玄甫-年轻的朋友来相会,http://em.21dtv.com/songs/60032639.mkv +丁晓红-年轻的朋友来相会(演唱会),http://em.21dtv.com/songs/60032638.mkv +黑龙-你朋友就是我朋友,http://em.21dtv.com/songs/60132021.mkv +黑龙-你朋友就是我朋友,http://em.21dtv.com/songs/60130946.mkv +杨朗朗-那片蔚蓝,http://em.21dtv.com/songs/60105176.mkv +韩红+安泽+邓晓坤+张琪-那片海,http://em.21dtv.com/songs/60123365.mkv +CLC-No Oh Oh,http://em.21dtv.com/songs/60122360.mkv +Apink-No No No,http://em.21dtv.com/songs/60109797.mkv +Galantis-No Money,http://em.21dtv.com/songs/60123474.mkv +VAV-No Doubt,http://em.21dtv.com/songs/60123557.mkv +Beyoncé-No Angel,http://em.21dtv.com/songs/60103008.mkv +王心凌-那年夏天宁静的海,http://em.21dtv.com/songs/60030748.mkv +戴娆-你能停下这场雨吗,http://em.21dtv.com/songs/60091238.mkv +谢雨欣-你能让我上天入地,http://em.21dtv.com/songs/60031937.mkv +司文-你那么美,http://em.21dtv.com/songs/60103965.mkv +谢和弦-你妈没有告诉你吗,http://em.21dtv.com/songs/60112960.mkv +庄心妍-你明明就很在乎我,http://em.21dtv.com/songs/60130291.mkv +刘建东-农民工我的好兄弟,http://em.21dtv.com/songs/60122517.mkv +陈星-农民工就是这个样,http://em.21dtv.com/songs/60085553.mkv +群星-你们的梦我的未来,http://em.21dtv.com/songs/60031914.mkv +小应-你们的婚礼我主持,http://em.21dtv.com/songs/60063153.mkv +左成-你没长大我不敢老,http://em.21dtv.com/songs/60135172.mkv +VP团-你妈逼你结婚了没,http://em.21dtv.com/songs/60123566.mkv +蓝乐-你妈逼你结婚了吗,http://em.21dtv.com/songs/60094272.mkv +卡拉OK-那里有不平那有我,http://em.21dtv.com/songs/60090777.mkv +游本昌-哪里有不平哪有我,http://em.21dtv.com/songs/60090049.mkv +刘须然-南岭我可爱的家乡,http://em.21dtv.com/songs/60031121.mkv +梁雁翎+黄凯芹-那里的天空不下雨,http://em.21dtv.com/songs/60030721.mkv +梁雁翎-哪里的天空不下雨,http://em.21dtv.com/songs/60030664.mkv +乌兰图雅-那里的山那里的水,http://em.21dtv.com/songs/60114375.mkv +覃飞宇-你可知道我的伤悲,http://em.21dtv.com/songs/60031859.mkv +游艾迪-你可以爱我很久吗,http://em.21dtv.com/songs/60031854.mkv +安东阳+司徒兰芳-你开心所以我快乐,http://em.21dtv.com/songs/60121584.mkv +孟庭苇-你看你看月亮的脸,http://em.21dtv.com/songs/60031849.mkv +李鉴轩-你快乐所以我快乐,http://em.21dtv.com/songs/60098496.mkv +李鑑轩-你快乐所以我快乐,http://em.21dtv.com/songs/60097925.mkv +莫文蔚-你快乐所以我快乐(演唱会),http://em.21dtv.com/songs/60076926.mkv +王菲-你快乐所以我快乐,http://em.21dtv.com/songs/60031874.mkv +许茹芸-你快乐所以我快乐(演唱会),http://em.21dtv.com/songs/60031873.mkv +古巨基-你快乐所以我快乐(演唱会),http://em.21dtv.com/songs/60031872.mkv +动力火车-你快乐所以我快乐(演唱会),http://em.21dtv.com/songs/60031871.mkv +王韵壹-你快乐所以我快乐,http://em.21dtv.com/songs/60070990.mkv +张真-你可不可以爱爱我,http://em.21dtv.com/songs/60031852.mkv +雷启飞-你就这样地离开我,http://em.21dtv.com/songs/60067278.mkv +毛毛-你就这样地离开我,http://em.21dtv.com/songs/60062758.mkv +贺一航-你就这样把我丢下,http://em.21dtv.com/songs/60116253.mkv +贺一航-你就这样把我丢下,http://em.21dtv.com/songs/60083515.mkv +丁姵均-你讲欲离开的时拵,http://em.21dtv.com/songs/60108259.mkv +黄志玮+汤奕蓉-你就是我要的幸福,http://em.21dtv.com/songs/60031836.mkv +杨丽-你就是我唯一的爱,http://em.21dtv.com/songs/60085521.mkv +易帆-你就是我唯一的爱,http://em.21dtv.com/songs/60031834.mkv +潘美辰-你就是我唯一的爱,http://em.21dtv.com/songs/60031833.mkv +陈仁杰-你今年回家过年吗,http://em.21dtv.com/songs/60111480.mkv +高雅如-你讲你不是无情人(无原唱),http://em.21dtv.com/songs/60031819.mkv +禾川-你还在听我的歌吗,http://em.21dtv.com/songs/60069661.mkv +刘和刚-你还有多少老朋友,http://em.21dtv.com/songs/60110877.mkv +石焱-你还有多少老朋友,http://em.21dtv.com/songs/60061454.mkv +影视歌曲-你和我之间的承诺,http://em.21dtv.com/songs/60091182.mkv +郭子-你和我和爱情之间,http://em.21dtv.com/songs/60031784.mkv +腾格尔-你和太阳一同升起,http://em.21dtv.com/songs/60089452.mkv +永邦-你还是我最爱的人,http://em.21dtv.com/songs/60088190.mkv +杨五琴-南海 世代我家园,http://em.21dtv.com/songs/60119684.mkv +邱暐议-你还是不懂我爱你,http://em.21dtv.com/songs/60031745.mkv +后弦+SARA-你还欠我一个拥抱,http://em.21dtv.com/songs/60031744.mkv +黄莺莺-怒海萍踪,http://em.21dtv.com/songs/60108187.mkv +彭高平-你还能陪妈妈多久,http://em.21dtv.com/songs/60069660.mkv +卓依婷-女孩的心思你别猜,http://em.21dtv.com/songs/60032865.mkv +周亮-女孩的心思你别猜,http://em.21dtv.com/songs/60032864.mkv +龙飞-女孩的心思你别猜,http://em.21dtv.com/songs/60032863.mkv +唐杰-你会不会像我一样,http://em.21dtv.com/songs/60031804.mkv +吴斐-那个雨天那个路口,http://em.21dtv.com/songs/60086714.mkv +刘雅丽-你给我的喜怒哀乐(演唱会),http://em.21dtv.com/songs/60083509.mkv +刘雅丽-你给我的喜怒哀乐,http://em.21dtv.com/songs/60031722.mkv +刘雷-你给我的地老天荒,http://em.21dtv.com/songs/60110894.mkv +林忆莲-你给我的爱不是爱,http://em.21dtv.com/songs/60031718.mkv +张远喆-你跟他过会更幸福,http://em.21dtv.com/songs/60106867.mkv +晓月-那个伤我最深的人,http://em.21dtv.com/songs/60063158.mkv +方蓉-那个人对你好不好(无原唱),http://em.21dtv.com/songs/60030703.mkv +4MEN+MI-那个男人那个女人,http://em.21dtv.com/songs/60064590.mkv +四大天鹅组合-你管老子上不上班,http://em.21dtv.com/songs/60102064.mkv +南建雄-那个季节真心爱过,http://em.21dtv.com/songs/60110060.mkv +岳太阳-你给的爱我要不起,http://em.21dtv.com/songs/60076908.mkv +卢凯彤-你根本不是我的谁,http://em.21dtv.com/songs/60068535.mkv +区密-难过不必告诉别人,http://em.21dtv.com/songs/60122540.mkv +农夫+方大同-农夫系你老死+love song(演唱会),http://em.21dtv.com/songs/60032747.mkv +中川木-能分开的爱不是爱,http://em.21dtv.com/songs/60031345.mkv +酒吧伤心人-南方的城市飘着雨,http://em.21dtv.com/songs/60072223.mkv +井柏然-你飞到城市另一边,http://em.21dtv.com/songs/60096178.mkv +好妹妹乐队-你飞到城市另一边,http://em.21dtv.com/songs/60094452.mkv +赵大格-New Soul,http://em.21dtv.com/songs/60114806.mkv +曾昭玮-妞儿说,http://em.21dtv.com/songs/60120590.mkv +阿依土尔逊-女儿河畔的姑娘们,http://em.21dtv.com/songs/60032840.mkv +佚名-你的眼中的我的眼(无原唱),http://em.21dtv.com/songs/60031672.mkv +朱妍-你的眼神骗不了我,http://em.21dtv.com/songs/60031671.mkv +梁振宇-你的眼泪是我的血(无原唱),http://em.21dtv.com/songs/60031662.mkv +朴文哲-你的眼泪让我心碎,http://em.21dtv.com/songs/60031661.mkv +苏慧伦-你的勇敢我的快乐,http://em.21dtv.com/songs/60088527.mkv +于台烟-你的忧愁忘了带走,http://em.21dtv.com/songs/60031680.mkv +杨钰莹-你的心总是不一样,http://em.21dtv.com/songs/60031645.mkv +李纲锋-你的心里是否爱我,http://em.21dtv.com/songs/60132563.mkv +王杰-那段血泪汗的日子,http://em.21dtv.com/songs/60030689.mkv +关泽楠-你的心究竟给了谁,http://em.21dtv.com/songs/60114399.mkv +刘腊-你的心究竟给了谁,http://em.21dtv.com/songs/60031631.mkv +路绮欧-你的幸福刺伤了我,http://em.21dtv.com/songs/60105405.mkv +那英-你的微笑,http://em.21dtv.com/songs/60115440.mkv +周慧敏-你对我是认真的吗,http://em.21dtv.com/songs/60031697.mkv +唐古-你的温柔伤我最深,http://em.21dtv.com/songs/60133500.mkv +陈娟儿-难道我爱你还不够,http://em.21dtv.com/songs/60076842.mkv +佚名-你待同志亲如一家,http://em.21dtv.com/songs/60031524.mkv +贡尕达哇-难道他比我更爱你,http://em.21dtv.com/songs/60031183.mkv +木禾-你的声音你的样子,http://em.21dtv.com/songs/60083498.mkv +于文华-你的生命如此美丽,http://em.21dtv.com/songs/60105559.mkv +余文华-你的生命如此美丽,http://em.21dtv.com/songs/60083499.mkv +陈永强-你的世界不再有我,http://em.21dtv.com/songs/60102895.mkv +张祥洪-你的手被别人牵走,http://em.21dtv.com/songs/60083500.mkv +万海东-你的欺骗我的失眠,http://em.21dtv.com/songs/60106570.mkv +胡慧中-男的朋友女的朋友,http://em.21dtv.com/songs/60091899.mkv +逍遥香香-难道你真的忘了我,http://em.21dtv.com/songs/60132965.mkv +高晓通-难道你真的爱他吗,http://em.21dtv.com/songs/60113104.mkv +花哥-难道你非要这么花,http://em.21dtv.com/songs/60080565.mkv +陈雅森-难道你不曾爱过我,http://em.21dtv.com/songs/60068517.mkv +王菀之-你的名字我的姓氏,http://em.21dtv.com/songs/60083497.mkv +张学友-你的名字我的姓氏(演唱会),http://em.21dtv.com/songs/60031592.mkv +许志安-你的名字我的姓氏(演唱会),http://em.21dtv.com/songs/60031591.mkv +古巨基-你的名字我的姓氏(演唱会),http://em.21dtv.com/songs/60031590.mkv +侧田-你的名字我的姓氏(演唱会),http://em.21dtv.com/songs/60031589.mkv +田震-你的目光温暖了我(演唱会),http://em.21dtv.com/songs/60076896.mkv +潘劲东-你的泪我怎么能懂,http://em.21dtv.com/songs/60031575.mkv +邵欣哲-你的泪湿了我的心,http://em.21dtv.com/songs/60088751.mkv +蓝乔锋-你的离去带走回忆,http://em.21dtv.com/songs/60107187.mkv +一只舟-你的冷漠伤害了我,http://em.21dtv.com/songs/60130022.mkv +海生-你的冷漠逼我犯错,http://em.21dtv.com/songs/60031577.mkv +李晓玉-你的绝情伤害了谁,http://em.21dtv.com/songs/60110278.mkv +成铭-你的决定让我改变,http://em.21dtv.com/songs/60096303.mkv +罗熙杰-你的坏,http://em.21dtv.com/songs/60126036.mkv +杨小弈-你的话伤了我的心,http://em.21dtv.com/songs/60031566.mkv +唐古-你的过去我不介意,http://em.21dtv.com/songs/60126728.mkv +黄文武-你到底真心爱过谁,http://em.21dtv.com/songs/60133132.mkv +黄文武-你到底真心爱过谁,http://em.21dtv.com/songs/60132015.mkv +郭瑞-你到底要我怎么做,http://em.21dtv.com/songs/60100979.mkv +陈兴瑜-男大当婚女大当嫁(演唱会),http://em.21dtv.com/songs/60083466.mkv +陈兴瑜-男大当婚女大当嫁,http://em.21dtv.com/songs/60072220.mkv +谈欣-你到底爱我不爱我,http://em.21dtv.com/songs/60088654.mkv +王馨-你的唇沾了谁的毒,http://em.21dtv.com/songs/60072228.mkv +陈志朋-你的城市你的故事,http://em.21dtv.com/songs/60068530.mkv +罗心洁-你的北京我的西江,http://em.21dtv.com/songs/60064625.mkv +张启辉-你的爱只会伤害我(演唱会),http://em.21dtv.com/songs/60076888.mkv +徐浩峻-难道爱已经到尽头,http://em.21dtv.com/songs/60109373.mkv +徐健淇-难道爱已经到尽头,http://em.21dtv.com/songs/60083480.mkv +王成勇-难道爱一个人有罪,http://em.21dtv.com/songs/60094990.mkv +红蔷薇-你的爱我还要不要,http://em.21dtv.com/songs/60109562.mkv +蒋卓嘉-你的爱是什么形状,http://em.21dtv.com/songs/60129566.mkv +蒋卓嘉(GJ)-你的爱是什么形状,http://em.21dtv.com/songs/60129565.mkv +J.Arie(雷琛瑜)-你的爱是什么形状,http://em.21dtv.com/songs/60106543.mkv +万一-你的爱到底给了谁,http://em.21dtv.com/songs/60120268.mkv +金波-你的爱到底给了谁,http://em.21dtv.com/songs/60031539.mkv +孙艳-你的爱到底给了谁,http://em.21dtv.com/songs/60064622.mkv +怕黑-你的爱到底给了谁,http://em.21dtv.com/songs/60064621.mkv +邱峰-你的爱不该受伤害,http://em.21dtv.com/songs/60076884.mkv +季彦霖-你从来没有爱过我,http://em.21dtv.com/songs/60135112.mkv +胡小宝-你曾经爱过多少人,http://em.21dtv.com/songs/60031512.mkv +本兮-你从不知道我的心,http://em.21dtv.com/songs/60080084.mkv +动力火车-你不在我身边好冷,http://em.21dtv.com/songs/60095268.mkv +彭丽丽-你背着我好上别人,http://em.21dtv.com/songs/60031434.mkv +王涛-你不在的我的祝愿,http://em.21dtv.com/songs/60094993.mkv +一只舟-你抱着别人说爱我,http://em.21dtv.com/songs/60108257.mkv +吉特巴-你抱着别人说爱我,http://em.21dtv.com/songs/60083490.mkv +林依轮-你不要为他掉眼泪,http://em.21dtv.com/songs/60091424.mkv +苏打绿+EELLA-你被写在我的歌里,http://em.21dtv.com/songs/60064616.mkv +钱丽文-你不问情由破口骂,http://em.21dtv.com/songs/60088816.mkv +温兆伦-你把我的女人带走,http://em.21dtv.com/songs/60031424.mkv +邢继光-你不是真正的英雄,http://em.21dtv.com/songs/60076876.mkv +邓紫棋-你不是真正的快乐,http://em.21dtv.com/songs/60099520.mkv +HOPE组合-你不是真正的快乐,http://em.21dtv.com/songs/60080401.mkv +五月天-你不是真正的快乐,http://em.21dtv.com/songs/60031495.mkv +佚名-你不是一个好情人,http://em.21dtv.com/songs/60031493.mkv +高山林-你不是我要的女人,http://em.21dtv.com/songs/60031491.mkv +柯受良-你不是我你未知影(无原唱),http://em.21dtv.com/songs/60095711.mkv +杨克强-你不是不在乎了吗(无原唱),http://em.21dtv.com/songs/60031485.mkv +南风-你不欠我我不欠你,http://em.21dtv.com/songs/60076875.mkv +TXG-你不能这样坑队友,http://em.21dtv.com/songs/60128711.mkv +崔露-能不能再爱我一次,http://em.21dtv.com/songs/60068522.mkv +林帆-能不能够停止爱你,http://em.21dtv.com/songs/60089364.mkv +誓言-你不了解,http://em.21dtv.com/songs/60107209.mkv +二兵-你把机会留给了谁,http://em.21dtv.com/songs/60105556.mkv +秀才-你把第一次给了谁,http://em.21dtv.com/songs/60076863.mkv +杨梓-你不懂我我不见怪,http://em.21dtv.com/songs/60064618.mkv +谢宏-你不爱我就分手吧,http://em.21dtv.com/songs/60031450.mkv +孙小宝-你把爱到底给了谁,http://em.21dtv.com/songs/60031417.mkv +安崇艺-你爱着我也爱着他,http://em.21dtv.com/songs/60114489.mkv +萧闳仁-你爱怎么样就怎样,http://em.21dtv.com/songs/60031413.mkv +栾明忠-你爱我却嫁给了他,http://em.21dtv.com/songs/60083486.mkv +王小婉-你爱我还是爱着她,http://em.21dtv.com/songs/60113856.mkv +邵欣哲-你爱的只是你自己,http://em.21dtv.com/songs/60076859.mkv +马文吉-你爱的是我还是钱,http://em.21dtv.com/songs/60076858.mkv +陈诺-梦在远方心在家乡,http://em.21dtv.com/songs/60109707.mkv +佚名-毛主席着作像太阳,http://em.21dtv.com/songs/60028688.mkv +杨臣刚-毛主席我们想念您,http://em.21dtv.com/songs/60091414.mkv +佚名-毛主席是咱社里人,http://em.21dtv.com/songs/60028684.mkv +佚名-毛主席来到咱农庄,http://em.21dtv.com/songs/60028682.mkv +郭兰英-毛主席来到咱农庄,http://em.21dtv.com/songs/60028681.mkv +王美-毛主席来到咱村庄,http://em.21dtv.com/songs/60028680.mkv +李晖-毛主席话儿记心上(演唱会),http://em.21dtv.com/songs/60083348.mkv +冷漠-梦中情人,http://em.21dtv.com/songs/60107514.mkv +后来者-梦中的小妹你最美,http://em.21dtv.com/songs/60100785.mkv +杨坤+旦增尼玛-梦中的额吉^离歌,http://em.21dtv.com/songs/60111181.mkv +别日克-梦在别日克服悲伤,http://em.21dtv.com/songs/60125230.mkv +万山红-没有眼泪没有悲伤,http://em.21dtv.com/songs/60028905.mkv +林一峰-没有夏娃的伊甸园(演唱会),http://em.21dtv.com/songs/60028895.mkv +晓帆+郑镒-没有相互不能永远,http://em.21dtv.com/songs/60068466.mkv +牙牙乐-没有我你要好好的,http://em.21dtv.com/songs/60116128.mkv +唐禹哲-没有我你过得好吗,http://em.21dtv.com/songs/60083369.mkv +王祝海-每一天都会想起你,http://em.21dtv.com/songs/60113872.mkv +孟杨-没有谁比我更疼你,http://em.21dtv.com/songs/60083366.mkv +张明哲-没有人知道我是谁,http://em.21dtv.com/songs/60064515.mkv +关心妍-没有人可以没有爱,http://em.21dtv.com/songs/60087356.mkv +潘龙-没有人看过我流泪,http://em.21dtv.com/songs/60088255.mkv +龙宽九段-没有人会象我一样,http://em.21dtv.com/songs/60028870.mkv +伊龙-没有人比我更爱你,http://em.21dtv.com/songs/60114995.mkv +王筝+水木年华-没有人比我更爱你,http://em.21dtv.com/songs/60028865.mkv +陆锋-没有人比我更爱你,http://em.21dtv.com/songs/60028864.mkv +陈瑞-没有人比你更爱我,http://em.21dtv.com/songs/60028862.mkv +易帆-没有人比你更爱我,http://em.21dtv.com/songs/60061410.mkv +刘涛-牧羊曲,http://em.21dtv.com/songs/60125203.mkv +张志林-没有情人的情人节,http://em.21dtv.com/songs/60028855.mkv +孟庭苇-没有情人的情人节,http://em.21dtv.com/songs/60028854.mkv +易帆-没有情人的情人节,http://em.21dtv.com/songs/60064514.mkv +雷龙-没有钱你会爱我吗,http://em.21dtv.com/songs/60028851.mkv +雷龙-没有钱你会爱我吗(演唱会),http://em.21dtv.com/songs/60028850.mkv +陈珧-没有钱还能爱多久,http://em.21dtv.com/songs/60028849.mkv +动力火车-没有你在爱不像爱,http://em.21dtv.com/songs/60028844.mkv +木子烁-没有你我一样的过,http://em.21dtv.com/songs/60099287.mkv +王杰-没有你我依然可以,http://em.21dtv.com/songs/60113866.mkv +陈娟儿-没有你我一个人睡,http://em.21dtv.com/songs/60102886.mkv +岳太阳-没有你我该怎么过,http://em.21dtv.com/songs/60119469.mkv +罗丹-没有你我该怎么办,http://em.21dtv.com/songs/60028838.mkv +Serebro+Molly-My Money,http://em.21dtv.com/songs/60131106.mkv +邱永传-没有理由,http://em.21dtv.com/songs/60115444.mkv +Mike Posner-My Light,http://em.21dtv.com/songs/60103799.mkv +西单女孩-没有肩膀拥有翅膀,http://em.21dtv.com/songs/60063118.mkv +Flo Rida-My House,http://em.21dtv.com/songs/60119140.mkv +谢和弦+玖壹壹+陈零九-每一个玩音乐的人,http://em.21dtv.com/songs/60127402.mkv +贾逸可-每一个人是一首歌,http://em.21dtv.com/songs/60029086.mkv +黄丽群-每一个人都有梦想,http://em.21dtv.com/songs/60113110.mkv +群星-My Dream,http://em.21dtv.com/songs/60126044.mkv +UNIQ-My Dream,http://em.21dtv.com/songs/60120252.mkv +Dears-My Dears,http://em.21dtv.com/songs/60103761.mkv +严艺丹-每一次让人心碎的,http://em.21dtv.com/songs/60113225.mkv +林雨-没有爱也没有了恨,http://em.21dtv.com/songs/60067221.mkv +Prince Royce-My Angel,http://em.21dtv.com/songs/60109862.mkv +雨中百合-梦醒了你去了哪里,http://em.21dtv.com/songs/60111509.mkv +刘秋仪-明天阳光依然灿烂,http://em.21dtv.com/songs/60087415.mkv +黄义达-明天要把昨天忘记,http://em.21dtv.com/songs/60089023.mkv +黄大炜-明天要把昨天忘记,http://em.21dtv.com/songs/60030220.mkv +李玉玺-满天星,http://em.21dtv.com/songs/60125707.mkv +萧全-满天星光,http://em.21dtv.com/songs/60115354.mkv +许茹荟-明天我要嫁给你了,http://em.21dtv.com/songs/60114061.mkv +尹子-明天我要回家看看,http://em.21dtv.com/songs/60094485.mkv +城市少女-明天我们不见不散,http://em.21dtv.com/songs/60090864.mkv +洪爱莉-明天我不一定爱你,http://em.21dtv.com/songs/60030211.mkv +曹菲儿-漫天是我想你的星,http://em.21dtv.com/songs/60087954.mkv +V.O.S-某天某地在哪里呢,http://em.21dtv.com/songs/60118286.mkv +王筝-明天就要嫁给他了,http://em.21dtv.com/songs/60030195.mkv +陈绮贞-每天都是一种练习(演唱会),http://em.21dtv.com/songs/60029060.mkv +动力火车-明天的明天的明天,http://em.21dtv.com/songs/60030176.mkv +龚琳娜-满天的花满天的云,http://em.21dtv.com/songs/60089093.mkv +王力宏-每天爱你廿四小时,http://em.21dtv.com/songs/60029054.mkv +陈零九-没什么只是有些话,http://em.21dtv.com/songs/60080094.mkv +NMB48-梦に色がない理由,http://em.21dtv.com/songs/60120232.mkv +孙睦涵+徐小清-莫斯科郊外的晚上,http://em.21dtv.com/songs/60118501.mkv +廖昌永-莫斯科郊外的晚上,http://em.21dtv.com/songs/60113448.mkv +孙楠+王逸洁-莫斯科郊外的晚上(HD),http://em.21dtv.com/songs/10012775.mkv +佚名-莫斯科郊外的晚上,http://em.21dtv.com/songs/60030434.mkv +佟铁鑫-莫斯科郊外的晚上,http://em.21dtv.com/songs/60030433.mkv +八只眼-莫斯科郊外的晚上(演唱会),http://em.21dtv.com/songs/60030432.mkv +苏联民歌-莫斯科郊外的晚上,http://em.21dtv.com/songs/60067245.mkv +刘浩龙-Mr Wrong,http://em.21dtv.com/songs/60116595.mkv +凤娘-没人亲像你这爱我,http://em.21dtv.com/songs/60028747.mkv +王菀之+黄伟文-末日前4分40秒,http://em.21dtv.com/songs/60076740.mkv +蔡依林-MR.Q,http://em.21dtv.com/songs/60114758.mkv +蔡依林-MR.Q,http://em.21dtv.com/songs/60114029.mkv +Waves-Mr Probz,http://em.21dtv.com/songs/60125045.mkv +闫肃-MR.Might(HD),http://em.21dtv.com/songs/10012818.mkv +原子邦妮-美人泪,http://em.21dtv.com/songs/60119333.mkv +黄宥杰-Mr Joker,http://em.21dtv.com/songs/60104628.mkv +李克勤-梦如欢旧旧欢如梦(演唱会),http://em.21dtv.com/songs/60076676.mkv +奇力格尔-母亲我生命的力量,http://em.21dtv.com/songs/60030541.mkv +钱树林-母亲就是温馨的家,http://em.21dtv.com/songs/60083443.mkv +野岛-母亲的吻故乡的恩,http://em.21dtv.com/songs/60099546.mkv +许佳慧-Mom Said,http://em.21dtv.com/songs/60124468.mkv +剑鸿-卖牛仔裤的孙悟空,http://em.21dtv.com/songs/60123698.mkv +刘一祯+梅郎-美女拦江,http://em.21dtv.com/songs/60111712.mkv +罗时丰+龙千玉-没你的歌没你的我,http://em.21dtv.com/songs/60070910.mkv +胡杰夕-美女啊嫁给我(舞曲版),http://em.21dtv.com/songs/60076629.mkv +王俊宇-明明知道放不下你,http://em.21dtv.com/songs/60030115.mkv +邵洪-妈妈我等了二十年,http://em.21dtv.com/songs/60118092.mkv +路遥-妈妈是我雨中的伞,http://em.21dtv.com/songs/60028291.mkv +晓依-妈妈是我永远的家,http://em.21dtv.com/songs/60121730.mkv +POPU LADY-妈妈送我一个吉他,http://em.21dtv.com/songs/60097918.mkv +谢雷-妈妈送我一个吉他(演唱会),http://em.21dtv.com/songs/60028293.mkv +青春老少年-妈妈说你都三十了,http://em.21dtv.com/songs/60129776.mkv +SVS-妈妈什么叫做恋爱(无原唱),http://em.21dtv.com/songs/60028290.mkv +赵露-慢慢慢慢,http://em.21dtv.com/songs/60112283.mkv +郑绪岚-妈妈留给我一首歌,http://em.21dtv.com/songs/60028268.mkv +董文华-妈妈留给我一首歌,http://em.21dtv.com/songs/60028267.mkv +蒲紫微-妈妈留给我一首歌,http://em.21dtv.com/songs/60068453.mkv +郭津彤-妹妹就爱当兵的哥,http://em.21dtv.com/songs/60114829.mkv +东阳-妈妈还能陪你多久,http://em.21dtv.com/songs/60121336.mkv +佚名-妈妈的心战士的情,http://em.21dtv.com/songs/60028243.mkv +董文华-妈妈的心战士的情,http://em.21dtv.com/songs/60028242.mkv +彭丽媛-妈妈的心温暖的家,http://em.21dtv.com/songs/60028241.mkv +张津涤-明明都是月亮的错,http://em.21dtv.com/songs/60111080.mkv +刘栋升-明明都是月亮的错,http://em.21dtv.com/songs/60030112.mkv +冷漠-明明都是月亮的错,http://em.21dtv.com/songs/60030111.mkv +阿牛-妈妈的爱有多少斤,http://em.21dtv.com/songs/60028222.mkv +韩紫灵-妈妈的爱全给了我,http://em.21dtv.com/songs/60114885.mkv +黑鸭子-妈妈从我梦中走来,http://em.21dtv.com/songs/60111559.mkv +玖月奇迹-美丽中国我的家园,http://em.21dtv.com/songs/60094613.mkv +潘辰-迷路也快乐的地方,http://em.21dtv.com/songs/60128187.mkv +伊扬+李菲-马铃响来玉鸟儿唱(演唱会),http://em.21dtv.com/songs/60028373.mkv +张露-美丽神奇的太姥山,http://em.21dtv.com/songs/60029270.mkv +容中尔甲-美丽神奇的九寨沟,http://em.21dtv.com/songs/60029269.mkv +金果-美丽家乡美好生活,http://em.21dtv.com/songs/60083381.mkv +魏伽妮-穆棱河我的母亲河,http://em.21dtv.com/songs/60072214.mkv +邓超予-美丽的中国我爱你,http://em.21dtv.com/songs/60108917.mkv +于文华-美丽的雪乡我的家,http://em.21dtv.com/songs/60029244.mkv +[Group] +groupName=十六万歌曲MV等 - 103 +马健涛-美丽的西藏我的家,http://em.21dtv.com/songs/60114262.mkv +李潮-美丽的西班牙女郎,http://em.21dtv.com/songs/60133811.mkv +佚名-美丽的西班牙女郎,http://em.21dtv.com/songs/60029231.mkv +莫老-美丽的台州我的家,http://em.21dtv.com/songs/60094267.mkv +冷漠-美丽的女人最伤人,http://em.21dtv.com/songs/60070919.mkv +陈辰+周揽月-美丽的马湖我来了,http://em.21dtv.com/songs/60120100.mkv +金岩-美丽的姑娘笑一笑,http://em.21dtv.com/songs/60097935.mkv +张澜澜-美丽的姑娘心向谁(演唱会),http://em.21dtv.com/songs/60029185.mkv +张洋-美丽的姑娘叫卓玛,http://em.21dtv.com/songs/60063416.mkv +苏勒德-美丽的姑娘草原花,http://em.21dtv.com/songs/60118865.mkv +杭盖乐队-美丽的草原我的家,http://em.21dtv.com/songs/60124117.mkv +白致瑶-美丽的草原我的家,http://em.21dtv.com/songs/60117085.mkv +乌兰图雅-美丽的草原我的家,http://em.21dtv.com/songs/60116516.mkv +那仁格日勒-美丽的草原我的家,http://em.21dtv.com/songs/60090249.mkv +乌兰托娅-美丽的草原我的家,http://em.21dtv.com/songs/60089108.mkv +谭晶-美丽的草原我的家,http://em.21dtv.com/songs/60088676.mkv +韩婷-美丽的草原我的家,http://em.21dtv.com/songs/60086698.mkv +孟文豪-美丽的草原我的家,http://em.21dtv.com/songs/60083376.mkv +潘晓峰-美丽的草原我的家,http://em.21dtv.com/songs/60029163.mkv +刘琼-美丽的草原我的家,http://em.21dtv.com/songs/60029162.mkv +降央卓玛-美丽的草原我的家,http://em.21dtv.com/songs/60029161.mkv +龚月-美丽的草原我的家,http://em.21dtv.com/songs/60029160.mkv +刀郎-美丽的草原我的家,http://em.21dtv.com/songs/60029159.mkv +阿宝+董芳-美丽的草原我的家,http://em.21dtv.com/songs/60029158.mkv +吴兢+齐峰-美丽的草原我的家(演唱会),http://em.21dtv.com/songs/60029157.mkv +德德玛-美丽的草原我的家(演唱会),http://em.21dtv.com/songs/60029156.mkv +阿茹娜-美丽的草原是我家,http://em.21dtv.com/songs/60029155.mkv +阿茹娜-美丽的草原是我家(演唱会),http://em.21dtv.com/songs/60029154.mkv +阿茹娜-美丽的草原是我家(舞曲版),http://em.21dtv.com/songs/60029153.mkv +哈泊力夫-马克思是个九零后,http://em.21dtv.com/songs/60122619.mkv +黄凯芹-没结果的一些感情,http://em.21dtv.com/songs/60028720.mkv +黄凯芹-没结果的一些感情(演唱会),http://em.21dtv.com/songs/60028719.mkv +张迈-满街的鲜花送给谁,http://em.21dtv.com/songs/60100038.mkv +D.Holic-Miss You,http://em.21dtv.com/songs/60119120.mkv +赵英杰-梦回新疆梦回学校,http://em.21dtv.com/songs/60102765.mkv +e代天骄-梦回新疆梦回学校,http://em.21dtv.com/songs/60101760.mkv +田震-梦幻色彩2001,http://em.21dtv.com/songs/60090099.mkv +豫剧-马洪亮探亲又重来,http://em.21dtv.com/songs/60134616.mkv +陈秀雯-穆桂英大破天门阵,http://em.21dtv.com/songs/60093491.mkv +快要崩溃的一哥-玫瑰香,http://em.21dtv.com/songs/60129148.mkv +VC组合-玫瑰香,http://em.21dtv.com/songs/60125039.mkv +苏亚-蒙古Setgel,http://em.21dtv.com/songs/60117152.mkv +李晓峰-每个人都有个故事,http://em.21dtv.com/songs/60128091.mkv +陈晓东-每个人都想谈恋爱,http://em.21dtv.com/songs/60029040.mkv +王麟-咪咕咪咕,http://em.21dtv.com/songs/60116170.mkv +讴洋-每个孩子都是天才,http://em.21dtv.com/songs/60115392.mkv +孙安心-民工大哥你也OK,http://em.21dtv.com/songs/60132355.mkv +李雨儿-梦归草原,http://em.21dtv.com/songs/60114612.mkv +柒拾趴乐团-MEMORIES,http://em.21dtv.com/songs/60124144.mkv +弦子-ME AND U,http://em.21dtv.com/songs/60105890.mkv +佚名-每当我唱起东方红,http://em.21dtv.com/songs/60029025.mkv +何华栈+黄宇星-牡丹亭之游园惊梦,http://em.21dtv.com/songs/60030563.mkv +彭炽权+吴美英-牡丹亭惊梦之幽媾(2)(戏曲),http://em.21dtv.com/songs/60092663.mkv +彭炽权+吴美英-牡丹亭惊梦之幽媾(1)(戏曲),http://em.21dtv.com/songs/60092662.mkv +尹光+张美峰-牡丹亭惊梦之幽媾,http://em.21dtv.com/songs/60064581.mkv +陈咏仪-牡丹亭惊梦之倩女魂,http://em.21dtv.com/songs/60030553.mkv +卓依婷-弥渡山歌_上山岗,http://em.21dtv.com/songs/60087463.mkv +杰文-没多少爱可以重来,http://em.21dtv.com/songs/60129291.mkv +江南-满大街都是我的歌,http://em.21dtv.com/songs/60028505.mkv +佚名-mike待会你怎么回去(无原唱),http://em.21dtv.com/songs/60003820.mkv +谢天笑-埋藏着宝藏的地方,http://em.21dtv.com/songs/60110531.mkv +阿鲁阿卓-面朝大海春暖花开,http://em.21dtv.com/songs/60030020.mkv +孙剑-马背上美丽的姑娘,http://em.21dtv.com/songs/60122654.mkv +刘思涵-末班车,http://em.21dtv.com/songs/60125190.mkv +窦靖童-May Rain,http://em.21dtv.com/songs/60120841.mkv +佚名-me and you and a dog named boo,http://em.21dtv.com/songs/60003780.mkv +ZE A J-Marry Me,http://em.21dtv.com/songs/60114363.mkv +Kim Phil-Marry Me,http://em.21dtv.com/songs/60111625.mkv +蟹子-MARRY ME,http://em.21dtv.com/songs/60107200.mkv +倪力-Marjoice,http://em.21dtv.com/songs/60115695.mkv +Lady Gaga-Manicure(演唱会),http://em.21dtv.com/songs/60103026.mkv +Matilda-Macarena,http://em.21dtv.com/songs/60134756.mkv +杨华-拉着中华妈妈的手,http://em.21dtv.com/songs/60025919.mkv +许冠杰-浪子心声2002,http://em.21dtv.com/songs/60026304.mkv +高山-老祖先留下的爱人,http://em.21dtv.com/songs/60083271.mkv +陈岩+红蔷薇-留住岁月最真的你,http://em.21dtv.com/songs/60108976.mkv +尹贤尚+沈圭善-来 这是我的心脏,http://em.21dtv.com/songs/60129020.mkv +葛林-林中鸟,http://em.21dtv.com/songs/60126138.mkv +陈邵康-来自高雄的明信片,http://em.21dtv.com/songs/60097920.mkv +尹光+麦玉清-六月雪之十绣香囊,http://em.21dtv.com/songs/60064490.mkv +盖鸣晖+吴美英-柳毅奇缘之路遇-下,http://em.21dtv.com/songs/60027773.mkv +盖鸣晖+吴美英-柳毅奇缘之路遇-上,http://em.21dtv.com/songs/60027772.mkv +佚名-六月风台七月水灾,http://em.21dtv.com/songs/60027795.mkv +杨林-留一点爱来爱自己,http://em.21dtv.com/songs/60027580.mkv +望海高歌-来与不来我都等你,http://em.21dtv.com/songs/60130392.mkv +张瀛仁-连一杯咖啡的时间,http://em.21dtv.com/songs/60123935.mkv +石小飞-理想早已失去重量,http://em.21dtv.com/songs/60124316.mkv +邵永华-林西赞歌梦回家乡,http://em.21dtv.com/songs/60126261.mkv +李天平-李修缘[DJ版],http://em.21dtv.com/songs/60112748.mkv +蒲巴甲-离星星最近的地方,http://em.21dtv.com/songs/60026800.mkv +周晓鸥-流星无悔,http://em.21dtv.com/songs/60076476.mkv +家家+洛天依-离夏天最远的地方,http://em.21dtv.com/songs/60128998.mkv +陈鸿宇-理想三旬,http://em.21dtv.com/songs/60124664.mkv +郭凤女-李香君之香君守楼,http://em.21dtv.com/songs/60026869.mkv +佚名-履行党章赋予职责,http://em.21dtv.com/songs/60028150.mkv +陈明真-离我最远的人是你,http://em.21dtv.com/songs/60026789.mkv +周杰伦-乱舞春秋,http://em.21dtv.com/songs/60110938.mkv +韦礼安-Luvin' u,http://em.21dtv.com/songs/60123358.mkv +宗庸卓玛-离太阳最近的地方,http://em.21dtv.com/songs/60026787.mkv +先锋-老天也让我爱上你,http://em.21dtv.com/songs/60087347.mkv +聂建华-蓝天上飞过跑马云,http://em.21dtv.com/songs/60068413.mkv +郑伊健-老天请给我多一秒,http://em.21dtv.com/songs/60088757.mkv +戴荃+周华健-老神仙,http://em.21dtv.com/songs/60109385.mkv +戴荃-老神仙,http://em.21dtv.com/songs/60109384.mkv +廖昌永-老师我总是想起你,http://em.21dtv.com/songs/60091032.mkv +王艳玲-老鼠为什么最怕猫(儿歌),http://em.21dtv.com/songs/60090090.mkv +麦浚龙+谢安琪-罗生门,http://em.21dtv.com/songs/60121176.mkv +燕尾蝶-绿色军营绿色梦想,http://em.21dtv.com/songs/60105235.mkv +八只眼-蓝色的亚德里亚海,http://em.21dtv.com/songs/60090657.mkv +讦谯龙-老师不要打我的脸,http://em.21dtv.com/songs/60026401.mkv +宿雨涵-来如蜜糖去如黄莲,http://em.21dtv.com/songs/60062948.mkv +裘海正-两人的痛一个人受,http://em.21dtv.com/songs/60027289.mkv +中村雅俊-恋人も濡れる街角(无原唱),http://em.21dtv.com/songs/60027123.mkv +耿博-老情歌,http://em.21dtv.com/songs/60129503.mkv +梁向明-老区啊我们热爱您,http://em.21dtv.com/songs/60097909.mkv +望海高歌-老婆我很想对你说,http://em.21dtv.com/songs/60113597.mkv +望望海高歌-老婆我很想对你说,http://em.21dtv.com/songs/60113586.mkv +王娟-六盘水是个好地方,http://em.21dtv.com/songs/60132721.mkv +孙青-老婆是别人的情人,http://em.21dtv.com/songs/60102140.mkv +大北农兄弟-老婆今生有你真好,http://em.21dtv.com/songs/60135076.mkv +东浩-老婆都是别人的好,http://em.21dtv.com/songs/60121334.mkv +东浩-老婆都是别人的好,http://em.21dtv.com/songs/60111673.mkv +任军太-老婆的话就是圣旨,http://em.21dtv.com/songs/60101250.mkv +李聪-Low Love,http://em.21dtv.com/songs/60133828.mkv +苏唯-Love 1加1,http://em.21dtv.com/songs/60126099.mkv +Ruth B.-Lost Boy,http://em.21dtv.com/songs/60132125.mkv +BoA-Lookbook,http://em.21dtv.com/songs/60116441.mkv +Khalid-Location,http://em.21dtv.com/songs/60134726.mkv +方鹂鹂-离你最近和你最亲,http://em.21dtv.com/songs/60083289.mkv +莫文蔚-老男孩,http://em.21dtv.com/songs/60129556.mkv +白天不懂爷的黑-老男孩,http://em.21dtv.com/songs/60129443.mkv +小沈阳-老男孩,http://em.21dtv.com/songs/60125427.mkv +佚名-留你的人留你的心,http://em.21dtv.com/songs/60027551.mkv +潘越云-留你的人留你的心,http://em.21dtv.com/songs/60027550.mkv +汪峰-流年啊 你奈我何,http://em.21dtv.com/songs/60115256.mkv +周艳泓-林妹妹爱上贾宝玉,http://em.21dtv.com/songs/60112582.mkv +周艳泓-邻妹妹爱上假宝玉,http://em.21dtv.com/songs/60063470.mkv +周艳泓-黎明不要把我唤醒,http://em.21dtv.com/songs/60026830.mkv +王兀-啦啦曲,http://em.21dtv.com/songs/60119796.mkv +贝贝-蓝莲花,http://em.21dtv.com/songs/60115411.mkv +金城-泪流干了心也碎了,http://em.21dtv.com/songs/60086669.mkv +君子-蓝蓝的夜蓝蓝的梦,http://em.21dtv.com/songs/60105690.mkv +张咪-蓝蓝的夜蓝蓝的梦,http://em.21dtv.com/songs/60026061.mkv +毛宁-蓝蓝的夜蓝蓝的梦,http://em.21dtv.com/songs/60026060.mkv +陈明-蓝蓝的夜蓝蓝的梦(演唱会),http://em.21dtv.com/songs/60026059.mkv +张萌萌-流浪的心流浪的梦,http://em.21dtv.com/songs/60027651.mkv +蔡其平-蓝蓝的天蓝蓝的梦,http://em.21dtv.com/songs/60026058.mkv +庄学忠-蓝蓝的天蓝蓝的海,http://em.21dtv.com/songs/60026057.mkv +余天-蓝蓝的天蓝蓝的海,http://em.21dtv.com/songs/60026056.mkv +蔡其平-蓝蓝的天蓝蓝的海,http://em.21dtv.com/songs/60026055.mkv +罗时丰-流浪的吉普赛姑娘,http://em.21dtv.com/songs/60134101.mkv +蔡小虎-流浪的吉普赛姑娘,http://em.21dtv.com/songs/60095905.mkv +萧淑慎-流浪的吉普赛姑娘,http://em.21dtv.com/songs/60027637.mkv +吴晋淮-流浪的吉普赛姑娘,http://em.21dtv.com/songs/60027636.mkv +陈雷-流浪的吉普赛姑娘,http://em.21dtv.com/songs/60027635.mkv +三木科-溜溜的姑娘像朵花,http://em.21dtv.com/songs/60062897.mkv +四叶草-冷冷der圣诞节,http://em.21dtv.com/songs/60132313.mkv +南建雄-离开我你会幸福吗,http://em.21dtv.com/songs/60128856.mkv +陈柏辰-离开我你会快乐吗,http://em.21dtv.com/songs/60026766.mkv +梦龙-离开我你会快乐吗,http://em.21dtv.com/songs/60064470.mkv +白山情歌-离开网络真的孤单,http://em.21dtv.com/songs/60089428.mkv +孙艺程-离开你以后我会哭,http://em.21dtv.com/songs/60061362.mkv +杨雪晴-离开你我会好好过,http://em.21dtv.com/songs/60094557.mkv +雷诺儿-离开你的分分秒秒,http://em.21dtv.com/songs/60102917.mkv +黑龙-离开你不是我的错,http://em.21dtv.com/songs/60070874.mkv +孙子涵-离开你不是我选择,http://em.21dtv.com/songs/60066112.mkv +白雪-离开你并非我愿意,http://em.21dtv.com/songs/60026741.mkv +陈瑞-离开你并非是愿意,http://em.21dtv.com/songs/60088908.mkv +张启辉-离开的爱没有结尾,http://em.21dtv.com/songs/60076391.mkv +小曾-离开部队的那一天,http://em.21dtv.com/songs/60026724.mkv +阿龙正刚-泪就这样一直流着,http://em.21dtv.com/songs/60026541.mkv +王绎龙-邻家美眉(无损),http://em.21dtv.com/songs/50000272.mkv +蒋海谆-离家的孩子快回来,http://em.21dtv.com/songs/60026704.mkv +马旭东-廉价的爱,http://em.21dtv.com/songs/60114894.mkv +陈小汉+曹秀琴-李后主幽会小周后(戏曲),http://em.21dtv.com/songs/60093417.mkv +彭羚-连回忆都不给我吗,http://em.21dtv.com/songs/60026935.mkv +张清芳-兰花小馆12点见,http://em.21dtv.com/songs/60026038.mkv +国的我!,http://em.21dtv.com/songs/60132811.mkv +邓丽君-浪花节だよ人生は(演唱会),http://em.21dtv.com/songs/60026216.mkv +花世纪-炉广众我爱吃早餐,http://em.21dtv.com/songs/60076506.mkv +张学友-留给自己一个晚上(演唱会),http://em.21dtv.com/songs/60027537.mkv +张善为-六个月后那年夏天,http://em.21dtv.com/songs/60027779.mkv +高原-留给我一点点温柔,http://em.21dtv.com/songs/60027532.mkv +陈洁仪+陈嘉露-两个她的秘密理想,http://em.21dtv.com/songs/60027269.mkv +黄晓宁-老歌手,http://em.21dtv.com/songs/60119071.mkv +杨雯茜-老公是别人的情人,http://em.21dtv.com/songs/60095310.mkv +杜飞-两个人谁对不起谁,http://em.21dtv.com/songs/60099328.mkv +王力宏-两个人不等于我们,http://em.21dtv.com/songs/60027236.mkv +孟杨+张瀚元-癞蛤蟆也会有春天,http://em.21dtv.com/songs/60084685.mkv +秋裤大叔+冷漠-老革命遇到新问题,http://em.21dtv.com/songs/60108782.mkv +冷漠+赵小兵-老革命遇到新问题,http://em.21dtv.com/songs/60081029.mkv +曹尔真-癞蛤蟆想吃天鹅肉,http://em.21dtv.com/songs/60070861.mkv +囚鸟-老公老公你辛苦了,http://em.21dtv.com/songs/60099169.mkv +李友胜-狼哥鸡妹错点鸳鸯,http://em.21dtv.com/songs/60083257.mkv +モーニング娘。-冷たい风と片思い,http://em.21dtv.com/songs/60118288.mkv +吴梓涵-Let's go,http://em.21dtv.com/songs/60115049.mkv +锃亮组合-来得早不如来得巧,http://em.21dtv.com/songs/60131915.mkv +孙雪梅-刘大哥讲话理太偏(无原唱),http://em.21dtv.com/songs/60027506.mkv +依依+夏天-老长沙的feel,http://em.21dtv.com/songs/60125138.mkv +梅岭-留不住你的温柔.,http://em.21dtv.com/songs/60108643.mkv +游子组合-老板有wifi吗,http://em.21dtv.com/songs/60116117.mkv +王宏伟-老百姓愿意跟着你(演唱会),http://em.21dtv.com/songs/60072129.mkv +闫学晶-老百姓的事大于天,http://em.21dtv.com/songs/60070867.mkv +糯米-离别时总会有人哭,http://em.21dtv.com/songs/60026663.mkv +黄飞鹏-离别曲之西门冠希,http://em.21dtv.com/songs/60086671.mkv +董义-老爸 老公 老板,http://em.21dtv.com/songs/60127356.mkv +董义-老爸 老公 老板,http://em.21dtv.com/songs/60124430.mkv +林里嫔-离不开爱情的女人,http://em.21dtv.com/songs/60026676.mkv +杜丽莎-鲁冰花^真的爱你,http://em.21dtv.com/songs/60132574.mkv +卓依婷-路边的野花不要采,http://em.21dtv.com/songs/60027926.mkv +中国娃娃-路边的野花不要采,http://em.21dtv.com/songs/60027925.mkv +陈静允-路边的野花不要采,http://em.21dtv.com/songs/60027924.mkv +汪明荃-路边的野花不要采(演唱会),http://em.21dtv.com/songs/60027923.mkv +邓丽君-路边的野花不要采(演唱会),http://em.21dtv.com/songs/60027922.mkv +龙少也-离别的时候爱上你,http://em.21dtv.com/songs/60118237.mkv +周冰倩-流不出不是泪的泪,http://em.21dtv.com/songs/60090833.mkv +郭富城-恋爱态度1998,http://em.21dtv.com/songs/60027049.mkv +郭富城-恋爱态度1998(演唱会),http://em.21dtv.com/songs/60027048.mkv +王杰-恋爱三部曲之前奏,http://em.21dtv.com/songs/60027037.mkv +Fergie-L.A.LOVE,http://em.21dtv.com/songs/60109090.mkv +Jason Chen+Megan Nicole Cover-La La La,http://em.21dtv.com/songs/60111620.mkv +包伟铭-La La La,http://em.21dtv.com/songs/60105656.mkv +倪睿思-留爱给最想爱的人,http://em.21dtv.com/songs/60027519.mkv +崔子格-恋爱格言,http://em.21dtv.com/songs/60109286.mkv +国巍-看着你远去的背影,http://em.21dtv.com/songs/60076243.mkv +东方依依-看着你和他在约会,http://em.21dtv.com/songs/60097934.mkv +王雪晶-快走到我的面前来,http://em.21dtv.com/songs/60088343.mkv +童唱-快走到我的脸前来,http://em.21dtv.com/songs/60025823.mkv +阳光天使-快走到我的家里来,http://em.21dtv.com/songs/60072121.mkv +林慧萍-可以勇敢可以温柔,http://em.21dtv.com/songs/60025357.mkv +李志洲-开业大吉,http://em.21dtv.com/songs/60121773.mkv +佚名-开心农场之偷菜歌,http://em.21dtv.com/songs/60025036.mkv +郎军-可惜你爱的不是我,http://em.21dtv.com/songs/60102793.mkv +佚名-看小姐红晕上粉面,http://em.21dtv.com/songs/60025140.mkv +王洋-开心的美酒喝一杯,http://em.21dtv.com/songs/60098645.mkv +徐誉滕-可是我永远记得你,http://em.21dtv.com/songs/60083222.mkv +万芳-可是我还是学不会,http://em.21dtv.com/songs/60070845.mkv +付立明-客人来到了蒙古包,http://em.21dtv.com/songs/60090537.mkv +佚名-抗日军政大学校歌,http://em.21dtv.com/songs/60025174.mkv +佚名-狂热的心熄灭的情,http://em.21dtv.com/songs/60025839.mkv +刘美麟-喀秋莎,http://em.21dtv.com/songs/60125216.mkv +飘张-孔雀公主,http://em.21dtv.com/songs/60119052.mkv +茅威涛+黄依群-孔雀东南飞-惜别离,http://em.21dtv.com/songs/60025501.mkv +孙耀威-开篷车上等你的人,http://em.21dtv.com/songs/60092509.mkv +孙耀威-开蓬车上等你的人,http://em.21dtv.com/songs/60025000.mkv +胡佳琛-快乐之后留下寂寞,http://em.21dtv.com/songs/60025808.mkv +李国辉-哭了笑了伤了痛了,http://em.21dtv.com/songs/60085332.mkv +含烟-哭了笑了伤了痛了,http://em.21dtv.com/songs/60085331.mkv +刘婕-快乐是你快乐是我,http://em.21dtv.com/songs/60090684.mkv +范晓萱+庾澄庆-快乐颂,http://em.21dtv.com/songs/60127336.mkv +元朝-快乐乒乓我们的歌,http://em.21dtv.com/songs/60093979.mkv +苏志燮+Soul Dive-可乐瓶 BABY,http://em.21dtv.com/songs/60114740.mkv +柯智棠-快乐的虚无主义者,http://em.21dtv.com/songs/60124145.mkv +梦凯-快乐的时候说分手,http://em.21dtv.com/songs/60025730.mkv +黄西田-可怜的恋花再会吧,http://em.21dtv.com/songs/60081122.mkv +叶启田-可怜的恋花再会吧,http://em.21dtv.com/songs/60072801.mkv +佚名-可怜的恋花再会吧,http://em.21dtv.com/songs/60025312.mkv +利菁-快乐的快乐的快乐,http://em.21dtv.com/songs/60111724.mkv +佚名-快乐的孩子爱唱歌,http://em.21dtv.com/songs/60025718.mkv +林育品-快乐到不可能的事,http://em.21dtv.com/songs/60097929.mkv +丁晓红-开开心心快快乐乐(演唱会),http://em.21dtv.com/songs/60062327.mkv +丁晓红-开开心心快快乐乐,http://em.21dtv.com/songs/60024992.mkv +王征+陈露薇-快快乐乐跳起舞来,http://em.21dtv.com/songs/60117032.mkv +陈明洲-看见你牵到人的手,http://em.21dtv.com/songs/60089526.mkv +方蓉-看见你牵别人的手(无原唱),http://em.21dtv.com/songs/60025085.mkv +雪莲三姐妹-看见了你梅里雪山,http://em.21dtv.com/songs/60128574.mkv +2NE1-Kiss,http://em.21dtv.com/songs/60109074.mkv +李克勤-哭过笑过爱过痛过,http://em.21dtv.com/songs/60110268.mkv +佚名-跨过高山越过平原,http://em.21dtv.com/songs/60025661.mkv +苗苗-康定有朵溜溜的云,http://em.21dtv.com/songs/60096460.mkv +谭维维-康定情歌与溜溜调,http://em.21dtv.com/songs/60109633.mkv +卓依婷-康定情歌+情人桥,http://em.21dtv.com/songs/60087461.mkv +蔡琴-康定情歌+青春舞曲(演唱会),http://em.21dtv.com/songs/60025163.mkv +庄学忠-看到别人牵你的手,http://em.21dtv.com/songs/60025064.mkv +白静晨-克卜勒,http://em.21dtv.com/songs/60127237.mkv +杨宗纬+丁芙妮+王希乔+洪健轶-空白格,http://em.21dtv.com/songs/60122884.mkv +蔡健雅-空白格,http://em.21dtv.com/songs/60118024.mkv +姚婷-哭不出来,http://em.21dtv.com/songs/60109256.mkv +平安-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60118537.mkv +韩磊-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60096547.mkv +夏米力-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60089754.mkv +孙榕-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60083219.mkv +塔斯肯-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60081152.mkv +谭晶-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60076251.mkv +袁晨野-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60025260.mkv +王洛宾-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60025259.mkv +巴郎百川-可爱的一朵玫瑰花,http://em.21dtv.com/songs/60025258.mkv +蔡琴-可爱的一朵玫瑰花(演唱会),http://em.21dtv.com/songs/60025257.mkv +潘粤明-镜子中,http://em.21dtv.com/songs/60125883.mkv +佚名-就这样甜蜜活到底,http://em.21dtv.com/songs/60024683.mkv +李恕权-记住我现在的样子(无原唱),http://em.21dtv.com/songs/60022731.mkv +莫文蔚-卷珠帘,http://em.21dtv.com/songs/60129554.mkv +佚名-敬自己一杯白开水,http://em.21dtv.com/songs/60024255.mkv +佚名-酒中的一朵红玫瑰,http://em.21dtv.com/songs/60024469.mkv +林忆莲-尽在不言中+花之色(演唱会),http://em.21dtv.com/songs/60024144.mkv +许茹芸-禁止悲伤,http://em.21dtv.com/songs/60108006.mkv +林小龙-今夜最后一次想你,http://em.21dtv.com/songs/60116964.mkv +群星合唱-加油中国有你有我,http://em.21dtv.com/songs/60088474.mkv +群星-加油中国有你有我,http://em.21dtv.com/songs/60088449.mkv +高胜美-聚也依依散也依依,http://em.21dtv.com/songs/60024755.mkv +伍浩哲-今夜犹原搁为你醉(无原唱),http://em.21dtv.com/songs/60024017.mkv +李芊慧-今夜又搁是落雨暝(无原唱),http://em.21dtv.com/songs/60095630.mkv +尚芸菲-借一双天使的翅膀,http://em.21dtv.com/songs/60098299.mkv +盗帅罗浩-九月十四号的日记,http://em.21dtv.com/songs/60123044.mkv +高明骏-今夜让我梦中有你,http://em.21dtv.com/songs/60023990.mkv +雨宫天-金曜日のおはよう,http://em.21dtv.com/songs/60135963.mkv +郭麒麟+伊一+德云社烧饼-加油 你是最胖的,http://em.21dtv.com/songs/60134344.mkv +晓月-今夜你是谁的情人,http://em.21dtv.com/songs/60076132.mkv +佚名-今夜留一点爱给我,http://em.21dtv.com/songs/60023976.mkv +甄秀珍-今夜留一点爱给我(演唱会),http://em.21dtv.com/songs/60023975.mkv +王莹-军营飞来一只百灵,http://em.21dtv.com/songs/60024908.mkv +张涛-军营飞来一只百灵(演唱会),http://em.21dtv.com/songs/60067147.mkv +李明依-加一点想象给自己,http://em.21dtv.com/songs/60022970.mkv +晓月-今夜的风把谁吹痛,http://em.21dtv.com/songs/60070819.mkv +印能法师-见与不见不如不见,http://em.21dtv.com/songs/60099845.mkv +陈永峰-今夜北方飘着雪花,http://em.21dtv.com/songs/60076131.mkv +高山-接下这美酒好拉话,http://em.21dtv.com/songs/60083155.mkv +吕金蔓-锦绣中华我们的家,http://em.21dtv.com/songs/60024134.mkv +蔡琴-继续是另一个开始,http://em.21dtv.com/songs/60022779.mkv +缘分兄弟-吉祥如意想啥啥来,http://em.21dtv.com/songs/60134068.mkv +苏勒亚其其格-吉祥草原草原吉祥,http://em.21dtv.com/songs/60108830.mkv +金润吉-就像从未受伤一样,http://em.21dtv.com/songs/60123262.mkv +陈零九+孙盛希-今晚,只是有些话,http://em.21dtv.com/songs/60120103.mkv +苏永康-今晚祝你做个好梦,http://em.21dtv.com/songs/60023915.mkv +六哲-叫我怎么忘了过去,http://em.21dtv.com/songs/60085279.mkv +川先生乐队-借我一把爱情的枪,http://em.21dtv.com/songs/60127936.mkv +李玖龙-今我是凡人不是仙,http://em.21dtv.com/songs/60108575.mkv +格桑志玛+格绒格西-叫我们怎么不歌唱,http://em.21dtv.com/songs/60023519.mkv +林采欣-精舞门,http://em.21dtv.com/songs/60125795.mkv +胡杰夕-今晚搂着你又是谁,http://em.21dtv.com/songs/60069523.mkv +蔡秋凤-叫我搁原谅你一摆(无原唱),http://em.21dtv.com/songs/60023518.mkv +杨宗宪-讲袜出来的一句话,http://em.21dtv.com/songs/60023430.mkv +Ume Band-just You,http://em.21dtv.com/songs/60125034.mkv +许飞-Just Run,http://em.21dtv.com/songs/60114775.mkv +GIN LEE-今天终于一人回家,http://em.21dtv.com/songs/60111606.mkv +龙剑笙-九天玄女天女于归,http://em.21dtv.com/songs/60076170.mkv +飞鸟-今天我们吵了一架,http://em.21dtv.com/songs/60023878.mkv +伍俊华-今天谁是我的爱人,http://em.21dtv.com/songs/60023874.mkv +于洋-今天你就要嫁人了,http://em.21dtv.com/songs/60122471.mkv +金玟岐-惊天动地,http://em.21dtv.com/songs/60124585.mkv +袁洁琼-今生只做你的新娘,http://em.21dtv.com/songs/60085294.mkv +于全莉-今生只为与你檫肩,http://em.21dtv.com/songs/60107473.mkv +关泽楠-今生只为你唱情歌,http://em.21dtv.com/songs/60069519.mkv +唐志星-今生最爱的人是你,http://em.21dtv.com/songs/60112587.mkv +唐志星-今生最爱的人是你,http://em.21dtv.com/songs/60076121.mkv +曹越+门丽-今生无缘来生再聚,http://em.21dtv.com/songs/60067131.mkv +雨浩枫-就算我留住你的人,http://em.21dtv.com/songs/60088929.mkv +曾心梅-酒是舞伴你是性命,http://em.21dtv.com/songs/60024456.mkv +罗时丰-酒是舞伴你是生命,http://em.21dtv.com/songs/60076177.mkv +刘浩龙-九四三四零六三四(演唱会),http://em.21dtv.com/songs/60024344.mkv +黄刚-今生你是我的唯一,http://em.21dtv.com/songs/60061305.mkv +张峥-就算你不爱我替换,http://em.21dtv.com/songs/60093717.mkv +李健-今生今世遥不可及[新版],http://em.21dtv.com/songs/60100126.mkv +李健-今生今世遥不可及(演唱会),http://em.21dtv.com/songs/60023788.mkv +晓雨-今生今世就爱着你,http://em.21dtv.com/songs/60061304.mkv +刘欢-井水花,http://em.21dtv.com/songs/60109183.mkv +音乐走廊+歌一生-今生和你生死相依,http://em.21dtv.com/songs/60130883.mkv +姚思思-今生的爱前世的债,http://em.21dtv.com/songs/60023775.mkv +甲子蕙-酒色财气2000,http://em.21dtv.com/songs/60024452.mkv +欣新-今生爱你永久永久,http://em.21dtv.com/songs/60109471.mkv +张杉弟-今生爱你永久永久,http://em.21dtv.com/songs/60076114.mkv +凝听-今生爱你永久永久,http://em.21dtv.com/songs/60076113.mkv +罗力威-假如真的再有约会(演唱会),http://em.21dtv.com/songs/60076020.mkv +陈启泰-假如真的再有约会(演唱会),http://em.21dtv.com/songs/60076019.mkv +蒋嘉莹-假如真的再有约会,http://em.21dtv.com/songs/60023120.mkv +萧全-就让我这样爱着你,http://em.21dtv.com/songs/60102682.mkv +周超-就让我一次痛个够,http://em.21dtv.com/songs/60116666.mkv +吴晓欣-就让我爱你这一回,http://em.21dtv.com/songs/60101053.mkv +荆涛-假如生命还有一天,http://em.21dtv.com/songs/60129547.mkv +佚名-就让世界多一颗心,http://em.21dtv.com/songs/60024606.mkv +东方快车-就让世界多一颗心,http://em.21dtv.com/songs/60024605.mkv +赵凯磊-假如让我重来一次,http://em.21dtv.com/songs/60124514.mkv +张瀚生-既然你是我的兄弟,http://em.21dtv.com/songs/60061282.mkv +衡越-军人大哥,http://em.21dtv.com/songs/60127374.mkv +熊立红-激情拥抱美好明天,http://em.21dtv.com/songs/60106087.mkv +张怡-激情拥抱美好明天,http://em.21dtv.com/songs/60105842.mkv +喇叭河组合-激情拥抱美好明天,http://em.21dtv.com/songs/60105715.mkv +唐竹雅-激情拥抱美好明天,http://em.21dtv.com/songs/60105713.mkv +DJ-举起手来[DJ],http://em.21dtv.com/songs/60111598.mkv +山西男孩-绝情的歌无情的你,http://em.21dtv.com/songs/60105786.mkv +张睿伦(阿MO)-Joe与她的天使,http://em.21dtv.com/songs/60115918.mkv +熊乃瑾-就那一句-我爱你,http://em.21dtv.com/songs/60097943.mkv +姜鹏+胖胖+小黄飞-江南style满身囔囔揣,http://em.21dtv.com/songs/60076050.mkv +张天龙-今年过年一定回家,http://em.21dtv.com/songs/60097904.mkv +丁嘉林+丁楠霓-今年的新年特别好,http://em.21dtv.com/songs/60076108.mkv +高隆-借你的肩膀靠一靠,http://em.21dtv.com/songs/60023727.mkv +龙千玉+翁立友-今年的冬天特别冷,http://em.21dtv.com/songs/60023744.mkv +何鹏-寂寞转身悲伤继续,http://em.21dtv.com/songs/60120311.mkv +何鹏-寂寞转身悲伤继续,http://em.21dtv.com/songs/60115687.mkv +张磊-寂寞是因为思念谁,http://em.21dtv.com/songs/60115159.mkv +巫启贤-寂寞是因为思念谁,http://em.21dtv.com/songs/60112649.mkv +景岗山-寂寞是因为思念谁,http://em.21dtv.com/songs/60022930.mkv +陈明-寂寞让我如此美丽,http://em.21dtv.com/songs/60022918.mkv +张冬玲-寂寞陪着孤单在哭,http://em.21dtv.com/songs/60100006.mkv +张启辉-寂寞跟随的情人节,http://em.21dtv.com/songs/60087797.mkv +望海高歌-寂寞的夜忧伤的歌,http://em.21dtv.com/songs/60135340.mkv +冷酷-寂寞的夜里想起你,http://em.21dtv.com/songs/60110004.mkv +蔡献华+朱险峰-寂寞的夜里我想你,http://em.21dtv.com/songs/60083109.mkv +雷婷-寂寞的夜和谁说话,http://em.21dtv.com/songs/60086620.mkv +杨海彪-寂寞的人伤心的歌,http://em.21dtv.com/songs/60122888.mkv +龙梅子+杨海彪-寂寞的人伤心的歌,http://em.21dtv.com/songs/60098974.mkv +红尘独舞-寂寞的人如此特别,http://em.21dtv.com/songs/60061285.mkv +杨千嬅-寂寞的人不只是我,http://em.21dtv.com/songs/60022861.mkv +丁童-戒了香烟戒不掉你,http://em.21dtv.com/songs/60107456.mkv +萨顶顶-加林赛,http://em.21dtv.com/songs/60126137.mkv +施文彬-抉离开伤心的所在,http://em.21dtv.com/songs/60095569.mkv +阿悄+宋孟君-健康来了,http://em.21dtv.com/songs/60094735.mkv +中国娃娃-家家有本难念的经,http://em.21dtv.com/songs/60023012.mkv +佚名-家家有本难念的经,http://em.21dtv.com/songs/60023011.mkv +谢采妘-家家有本难念的经,http://em.21dtv.com/songs/60023010.mkv +潘秀琼-家家有本难念的经,http://em.21dtv.com/songs/60023009.mkv +叶枫-家家有本难念的经(演唱会),http://em.21dtv.com/songs/60023008.mkv +吴莫愁-接近无限温暖的你,http://em.21dtv.com/songs/60120408.mkv +夜郎金鑫-究竟是谁爱错了谁,http://em.21dtv.com/songs/60107629.mkv +吴克群+拖鞋+叶晓粤+SING女团-将军令,http://em.21dtv.com/songs/60123744.mkv +刘伟宏-结局给我应受得罪,http://em.21dtv.com/songs/60069512.mkv +蔡荣祖-久久才见到你的好,http://em.21dtv.com/songs/60024377.mkv +朱强-菊花台,http://em.21dtv.com/songs/60103342.mkv +王汇筑-救护车,http://em.21dtv.com/songs/60119820.mkv +黎耀祥-激光中+心里有个谜(演唱会),http://em.21dtv.com/songs/60022535.mkv +安东-嫁给我最浪漫的你,http://em.21dtv.com/songs/60076028.mkv +洋葱-嫁给我你不会失望,http://em.21dtv.com/songs/60066058.mkv +周晓鸥-九个太阳,http://em.21dtv.com/songs/60076169.mkv +吕继宏-军港的晚霞,http://em.21dtv.com/songs/60102023.mkv +杨斌-井底之蚁,http://em.21dtv.com/songs/60109448.mkv +杨梓-姐的心你并不了解,http://em.21dtv.com/songs/60076091.mkv +黄绮珊-简单幸福,http://em.21dtv.com/songs/60111554.mkv +张智成-记得是最好的遗忘,http://em.21dtv.com/songs/60082043.mkv +刘须然-金达莱盛开的地方,http://em.21dtv.com/songs/60103945.mkv +沈震轩-讲多变真,http://em.21dtv.com/songs/60118740.mkv +曾雨轩-旧的不去新的不来,http://em.21dtv.com/songs/60131484.mkv +王馨平-就当不曾认识你吧,http://em.21dtv.com/songs/60024598.mkv +岛谷ひとみ-简単に言えたなら,http://em.21dtv.com/songs/60023268.mkv +佚名-精诚伙伴 找油先锋,http://em.21dtv.com/songs/60024218.mkv +陈幸子+吉祥-脚踩地球咚咚的响,http://em.21dtv.com/songs/60105481.mkv +马旭东-就此别过,http://em.21dtv.com/songs/60114893.mkv +郑亨敦-江北帅哥,http://em.21dtv.com/songs/60123233.mkv +东学-江布拉克七月的雨,http://em.21dtv.com/songs/60070801.mkv +培圣-九百九十九封情书,http://em.21dtv.com/songs/60076168.mkv +邰正宵-九百九十九朵玫瑰,http://em.21dtv.com/songs/60128455.mkv +卓依婷-九百九十九朵玫瑰,http://em.21dtv.com/songs/60024300.mkv +邰正宵-九百九十九朵玫瑰,http://em.21dtv.com/songs/60024299.mkv +邰正宵-九百九十九朵玫瑰(演唱会),http://em.21dtv.com/songs/60024298.mkv +悠悠-记不记得那个夏季,http://em.21dtv.com/songs/60022675.mkv +李谷一-洁白的羽毛寄深情,http://em.21dtv.com/songs/60023603.mkv +李谷一-洁白的羽毛寄深情(演唱会),http://em.21dtv.com/songs/60023602.mkv +佚名-讲不出来的一句话,http://em.21dtv.com/songs/60095443.mkv +李静芳+余国光-将爱留在淡水河边,http://em.21dtv.com/songs/60023367.mkv +Ariana Grande-Into You,http://em.21dtv.com/songs/60122338.mkv +EDEN+权珍雅-Im still,http://em.21dtv.com/songs/60132073.mkv +林峯-I'm Fine,http://em.21dtv.com/songs/60120667.mkv +B BECKER-id like to teach the world to sing,http://em.21dtv.com/songs/60002752.mkv +邓丽君-i just called to say i love you,http://em.21dtv.com/songs/60002550.mkv +STEVIE WONDER-i just called to say i love you,http://em.21dtv.com/songs/60002549.mkv +STING-if i ever lose my faith in you,http://em.21dtv.com/songs/60002767.mkv +佚名-ill have to say i love you in,http://em.21dtv.com/songs/60002830.mkv +LUKE BRYAN-i dont want this night to end,http://em.21dtv.com/songs/60066656.mkv +UNCLE SAM-i dont ever want to see you a,http://em.21dtv.com/songs/60002487.mkv +莫文蔚-i cant give you anything but love,http://em.21dtv.com/songs/60073370.mkv +佚名-i cant tell a waltz from a tango,http://em.21dtv.com/songs/60002463.mkv +Tiny G-Ice Baby,http://em.21dtv.com/songs/60101836.mkv +Kim Taylor-I Am You,http://em.21dtv.com/songs/60124928.mkv +荣联合+刘元元-胡主席和咱心连心,http://em.21dtv.com/songs/60075821.mkv +蔡健雅-活着是最好的死亡,http://em.21dtv.com/songs/60118023.mkv +王亚东-回忆最深处的地方,http://em.21dtv.com/songs/60110373.mkv +周永恒-回忆中的很久以前,http://em.21dtv.com/songs/60090844.mkv +王祝海-还要我伤心多少天,http://em.21dtv.com/songs/60113874.mkv +林浩威-会有天使替我爱你,http://em.21dtv.com/songs/60022298.mkv +李承铉+王恩琦-会有天使替我爱你,http://em.21dtv.com/songs/60022297.mkv +杜晓阳-喊一声会宁我的家(演唱会),http://em.21dtv.com/songs/60068307.mkv +何鹏-婚姻是爱情的坟墓,http://em.21dtv.com/songs/60116543.mkv +锁曼丽-还有没有爱留下来,http://em.21dtv.com/songs/60081688.mkv +元嘉-花已落叶还眷意浓,http://em.21dtv.com/songs/60021531.mkv +代慧颖-黑夜里醒着的女人,http://em.21dtv.com/songs/60061244.mkv +殷秀梅-好一个中国大舞台,http://em.21dtv.com/songs/60020254.mkv +杨钰莹-好想找一个人谈谈,http://em.21dtv.com/songs/60089359.mkv +蓝羽-回心转意2012,http://em.21dtv.com/songs/60062567.mkv +黑龙-回心转意2009,http://em.21dtv.com/songs/60022227.mkv +枫桥-好想做你的情哥哥,http://em.21dtv.com/songs/60086585.mkv +蒋大为-和谐祖国美好家园(演唱会),http://em.21dtv.com/songs/60069456.mkv +浩瀚-很想问你是否爱过,http://em.21dtv.com/songs/60020666.mkv +李谷一-花溪水[欣赏版],http://em.21dtv.com/songs/60102361.mkv +邝美云-很想牢牢地抱住你,http://em.21dtv.com/songs/60020660.mkv +TIMEZ-好想好想让你知道,http://em.21dtv.com/songs/60071995.mkv +洪健华-或许会是一世的爱,http://em.21dtv.com/songs/60022490.mkv +李智-好想和你跳支探戈,http://em.21dtv.com/songs/60068314.mkv +梵博仁-好想对你说我爱你,http://em.21dtv.com/songs/60020188.mkv +楚博仁-好想对你说我爱你,http://em.21dtv.com/songs/60066018.mkv +左宇-花心的男人没人爱,http://em.21dtv.com/songs/60111835.mkv +胡小宝-胡小宝不是韦小宝,http://em.21dtv.com/songs/60080558.mkv +胡小宝-胡小宝不是韦小宝(舞曲版),http://em.21dtv.com/songs/60072016.mkv +邝美云-还我一个像你的人,http://em.21dtv.com/songs/60019644.mkv +佚名-和我说一说吧妈妈,http://em.21dtv.com/songs/60020438.mkv +薛觉光+芳艳芬-汉武帝初会卫夫人,http://em.21dtv.com/songs/60019926.mkv +罗家宝+倪惠英-汉武帝初会卫夫人(一),http://em.21dtv.com/songs/60019925.mkv +罗家宝+倪惠英-汉武帝初会卫夫人(二),http://em.21dtv.com/songs/60019924.mkv +周子寒-回头一次心痛一次,http://em.21dtv.com/songs/60022196.mkv +李宇春-会跳舞的文艺青年,http://em.21dtv.com/songs/60022287.mkv +德德玛-好甜的歌儿唱草原,http://em.21dtv.com/songs/60095302.mkv +赵小熙-花田错,http://em.21dtv.com/songs/60127440.mkv +乌兰托娅-火石寨燃烧我的爱,http://em.21dtv.com/songs/60105549.mkv +骆驼强子-喝上一口团圆的酒,http://em.21dtv.com/songs/60110707.mkv +剑鸿-洪水无情人间有爱,http://em.21dtv.com/songs/60123700.mkv +阎维文-和是我们共唱的歌,http://em.21dtv.com/songs/60020434.mkv +杨宗纬-横扫天下之笑天下,http://em.21dtv.com/songs/60081241.mkv +本兮-海誓山盟亦会分开,http://em.21dtv.com/songs/60082999.mkv +山东阿清-哈萨克姑娘再比拉,http://em.21dtv.com/songs/60082989.mkv +梁静茹-海上花+滚滚红尘,http://em.21dtv.com/songs/60097941.mkv +陈慧琳-还是趁早把你忘记,http://em.21dtv.com/songs/60019606.mkv +八斤-和身边的人说说话,http://em.21dtv.com/songs/60128805.mkv +艺林歌哥-好日子要唱好字歌,http://em.21dtv.com/songs/60096109.mkv +邓丽君-何日君再来(双语种)(演唱会),http://em.21dtv.com/songs/60020385.mkv +黎瑞恩-火热的情伤痛的心,http://em.21dtv.com/songs/60022449.mkv +任昌丁+李博士-和任博士一起跳舞,http://em.21dtv.com/songs/60106596.mkv +张咪-嘿请听我唱这首歌(演唱会),http://em.21dtv.com/songs/60020625.mkv +刘德华-虹桥机场的咖啡厅,http://em.21dtv.com/songs/60021053.mkv +赵芳-欢庆的锣鼓敲起来,http://em.21dtv.com/songs/60021768.mkv +熊峰-和亲爱的你说再见,http://em.21dtv.com/songs/60068317.mkv +韩晶+王强-和平号角,http://em.21dtv.com/songs/60107350.mkv +PET SHOP BOYS-HOW CAN YOU EXPECT TO BE TAKEN SERIOUSLY,http://em.21dtv.com/songs/60097898.mkv +EXID-Hot Pink,http://em.21dtv.com/songs/60117448.mkv +赤雨-Hot Face,http://em.21dtv.com/songs/60120964.mkv +BESTie-Hot Baby,http://em.21dtv.com/songs/60103753.mkv +游恩杰-Homies兄弟,http://em.21dtv.com/songs/60105222.mkv +何瑶-河南人中,http://em.21dtv.com/songs/60107496.mkv +良辰+张阿+刘笑尘+方磊-好女人都死哪去了,http://em.21dtv.com/songs/60113990.mkv +佚名-好女人都死哪去了,http://em.21dtv.com/songs/60083010.mkv +轲然-好女人到底在哪里,http://em.21dtv.com/songs/60085176.mkv +陈金祥-海鸟请你来陪伴我(无原唱),http://em.21dtv.com/songs/60019772.mkv +肖洋+琳琳-和奶奶一起晒太阳,http://em.21dtv.com/songs/60085180.mkv +艾山-怀念勐遮的酸沙鳅,http://em.21dtv.com/songs/60124841.mkv +雨露-恨年华似水不可留,http://em.21dtv.com/songs/60131971.mkv +张海滨-好男儿有志在四方,http://em.21dtv.com/songs/60135216.mkv +聂艳-好女儿要嫁兵哥哥,http://em.21dtv.com/songs/60113967.mkv +苏志辉-好男儿就要走四方,http://em.21dtv.com/songs/60020096.mkv +刘和刚-好男儿就是要当兵(演唱会),http://em.21dtv.com/songs/60020095.mkv +佚名-how much is that doggie in the windop,http://em.21dtv.com/songs/60002376.mkv +张碧晨-红玫瑰,http://em.21dtv.com/songs/60117742.mkv +陈明真-还没告诉你我爱你,http://em.21dtv.com/songs/60088884.mkv +王童语-回了又去去了再回,http://em.21dtv.com/songs/60022161.mkv +田震-回了又去去了再回,http://em.21dtv.com/songs/60022160.mkv +大张伟-葫芦娃,http://em.21dtv.com/songs/60125350.mkv +雷佳-欢乐山寨,http://em.21dtv.com/songs/60110660.mkv +林锦屏-红楼梦之黛玉葬花(戏曲),http://em.21dtv.com/songs/60092884.mkv +龙剑笙-红楼梦幻觉离恨天,http://em.21dtv.com/songs/60075774.mkv +盖鸣晖+吴美英-红楼梦-幻觉离恨天,http://em.21dtv.com/songs/60020890.mkv +乌兰齐齐格-呼伦牧歌,http://em.21dtv.com/songs/60104768.mkv +金品妍-好了就暂时这样吧,http://em.21dtv.com/songs/60135842.mkv +陆知非-红领巾相约中国梦,http://em.21dtv.com/songs/60097919.mkv +费翔-含泪的眼,http://em.21dtv.com/songs/60116252.mkv +戴毅-后来的你爱上了谁,http://em.21dtv.com/songs/60021109.mkv +乌兰图雅-欢乐的歌儿唱起来,http://em.21dtv.com/songs/60130038.mkv +司文-寒冷的冬天怎么过,http://em.21dtv.com/songs/60075662.mkv +覃元隆-回来别再让我等待,http://em.21dtv.com/songs/60085241.mkv +班马尖措-回来吧我的心上人,http://em.21dtv.com/songs/60022150.mkv +班玛尖措-回来吧!我的心上人,http://em.21dtv.com/songs/60022141.mkv +张雷-花落不是花开的错,http://em.21dtv.com/songs/60075847.mkv +霓裳-呼伦贝尔我的家园,http://em.21dtv.com/songs/60116357.mkv +梁家辉-何苦有这一段日子(无原唱),http://em.21dtv.com/songs/60020356.mkv +肖玄+李草青青-何苦要等到下辈子,http://em.21dtv.com/songs/60064287.mkv +可琪-海阔天空一路是蓝,http://em.21dtv.com/songs/60113323.mkv +刘德华-海阔天空一路是蓝,http://em.21dtv.com/songs/60019759.mkv +韩再芬-花开花放花花世界(无原唱),http://em.21dtv.com/songs/60021426.mkv +阿宝+张冬玲-花开的时候来看我,http://em.21dtv.com/songs/60113039.mkv +寂悸-很久以前我们很好,http://em.21dtv.com/songs/60086596.mkv +何乾梁-黄金时段1314,http://em.21dtv.com/songs/60109144.mkv +冷漠-很久没有这样爱过,http://em.21dtv.com/songs/60070739.mkv +赵静-红军哥哥我对你说,http://em.21dtv.com/songs/60020879.mkv +高山-喝酒的人儿笑开颜,http://em.21dtv.com/songs/60083018.mkv +谭艳-还记得那天的模样,http://em.21dtv.com/songs/60132902.mkv +孟琪森-还记得那个路口吗,http://em.21dtv.com/songs/60068342.mkv +张学友-回家的路仿佛太远,http://em.21dtv.com/songs/60022119.mkv +于洋-喝几杯家乡的米酒,http://em.21dtv.com/songs/60104770.mkv +陈惠英+郭新龙-红军阿哥你慢慢走,http://em.21dtv.com/songs/60062253.mkv +LiSA-Hi FiVE!,http://em.21dtv.com/songs/60134738.mkv +Kiesza-Hideaway,http://em.21dtv.com/songs/60111624.mkv +刘若英-黄昏以后天亮之前,http://em.21dtv.com/songs/60087426.mkv +无名-红花向着毛主席开(儿歌),http://em.21dtv.com/songs/60091265.mkv +金贝司阿忠+美美小宝贝-好好学习天天向上,http://em.21dtv.com/songs/60020039.mkv +萧煌奇-好好先生[瑞影],http://em.21dtv.com/songs/60117178.mkv +张贤赫-花花世界(韩国),http://em.21dtv.com/songs/60093715.mkv +罗中旭-黄河,http://em.21dtv.com/songs/60122002.mkv +孙月魁-黄河口我亲爱的家,http://em.21dtv.com/songs/60116699.mkv +王宏伟-红红的太阳升起来,http://em.21dtv.com/songs/60067072.mkv +岩罕建-呼唤嫚迪公主的魂,http://em.21dtv.com/songs/60124816.mkv +庞龙-红红的歌火火的唱,http://em.21dtv.com/songs/60105007.mkv +毛俊丽-红火不过个人看人,http://em.21dtv.com/songs/60132663.mkv +王爱华-黄河岸边的水桐树,http://em.21dtv.com/songs/60044600.mkv +DJViper+胡杨林-火火爱(Mix),http://em.21dtv.com/songs/50000131.mkv +苏路-何冠穎爱甲抹倘爱,http://em.21dtv.com/songs/60088546.mkv +G.LOVE-hes got the whole world in his handp(无原唱),http://em.21dtv.com/songs/60002232.mkv +孟杨-灰姑娘的爱情快递,http://em.21dtv.com/songs/60132372.mkv +佟铁鑫-和共和国一同起飞(演唱会),http://em.21dtv.com/songs/60083020.mkv +帅霖+大哲-憨哥哥爱上大美妞,http://em.21dtv.com/songs/60111037.mkv +佚名-海港-大吊车真厉害,http://em.21dtv.com/songs/60019724.mkv +宋祖英+阎维文-和风吹来蓝蓝的天,http://em.21dtv.com/songs/60075716.mkv +David Guetta+Nicki Minaj+Bebe Rexha+Afrojack-Hey Mama,http://em.21dtv.com/songs/60124854.mkv +弦心乐-Hey Girl,http://em.21dtv.com/songs/60121691.mkv +百度贴吧神龙妹子团-Hey Girl,http://em.21dtv.com/songs/60114711.mkv +袁娅维-花儿为什么这样红,http://em.21dtv.com/songs/60118031.mkv +好弟-花儿为什么这样红,http://em.21dtv.com/songs/60110969.mkv +小武-花儿为什么这样红,http://em.21dtv.com/songs/60089822.mkv +常石磊-花儿为什么这样红,http://em.21dtv.com/songs/60083060.mkv +李潮+韦蕊-花儿为什么这样红,http://em.21dtv.com/songs/60075835.mkv +佚名-花儿为什么这样红,http://em.21dtv.com/songs/60021350.mkv +谭晶-花儿为什么这样红,http://em.21dtv.com/songs/60021349.mkv +李谷一-花儿为什么这样红,http://em.21dtv.com/songs/60021348.mkv +黄琦雯-花儿为什么这样红,http://em.21dtv.com/songs/60021347.mkv +花儿乐队-花儿为什么这样红,http://em.21dtv.com/songs/60021346.mkv +戴玉强+孙丽英-花儿为什么这样红,http://em.21dtv.com/songs/60021345.mkv +刀郎-花儿为什么这样红(演唱会),http://em.21dtv.com/songs/60021344.mkv +戴玉强+孙丽英-花儿为什么这么红,http://em.21dtv.com/songs/60087901.mkv +高林生-花儿为什么这样酷,http://em.21dtv.com/songs/60062372.mkv +尤雅-花儿为什么有烦恼,http://em.21dtv.com/songs/60021343.mkv +许志安-Hello 你好,http://em.21dtv.com/songs/60117224.mkv +范玮琪+MC-hotdog-1到10=我和你,http://em.21dtv.com/songs/60002345.mkv +曲丹-蝴蝶泉之恋,http://em.21dtv.com/songs/60124024.mkv +李健-红豆曲+一生所爱,http://em.21dtv.com/songs/60133791.mkv +彭佳慧-红的黄的橙的灰的,http://em.21dtv.com/songs/60020791.mkv +龙啸-红尘中绝望的女人,http://em.21dtv.com/songs/60062719.mkv +郑源+郑东-红尘笑我我笑红尘,http://em.21dtv.com/songs/60095353.mkv +赵仰瑞-好出门不如赖在家,http://em.21dtv.com/songs/60117252.mkv +易欣+孟杨-红尘里与你手牵手,http://em.21dtv.com/songs/60112719.mkv +韩春雨-红尘路上卿卿我我,http://em.21dtv.com/songs/60121120.mkv +石雪峰+李倩-红尘恋歌,http://em.21dtv.com/songs/60116180.mkv +杨雪晴-红尘背影,http://em.21dtv.com/songs/60121811.mkv +庄心妍-还不至于,http://em.21dtv.com/songs/60108472.mkv +张卫健-何必有你何必有我,http://em.21dtv.com/songs/60020335.mkv +高林生-烘焙鸡大战伊妹儿(演唱会),http://em.21dtv.com/songs/60062370.mkv +连诗雅-灰伯爵的忌廉遐想,http://em.21dtv.com/songs/60022017.mkv +赵姝-Happy过大年,http://em.21dtv.com/songs/60096131.mkv +FITZ AND THE TANTRUMS-HANDCLAP,http://em.21dtv.com/songs/60129933.mkv +正歌-HALLO心上人,http://em.21dtv.com/songs/60093720.mkv +MICHAEL BOLTON-how am i supposed to live without you,http://em.21dtv.com/songs/60002351.mkv +KALAFINA-辉く空の静寂には,http://em.21dtv.com/songs/60022070.mkv +吕俊哲-光之翼,http://em.21dtv.com/songs/60128882.mkv +郝云-该装就装,http://em.21dtv.com/songs/60104492.mkv +盖鸣晖+吴美英-桂枝告状-赵宠写状,http://em.21dtv.com/songs/60019425.mkv +盖鸣晖+吴美英-桂枝告状-投亲初遇,http://em.21dtv.com/songs/60019424.mkv +盖鸣晖+吴美英+邓美玲-桂枝告状-高中荣归,http://em.21dtv.com/songs/60019423.mkv +盖鸣晖+吴美英+邓美玲-桂枝告状-查旱回府,http://em.21dtv.com/songs/60019422.mkv +容祖儿-跟珍芳达做健身操,http://em.21dtv.com/songs/60018666.mkv +戴佩妮-挂在半梦半醒之间,http://em.21dtv.com/songs/60019153.mkv +阮泰瑞-公主病的饶舌歌手,http://em.21dtv.com/songs/60075528.mkv +郑丹瑞-给最爱女儿的说话,http://em.21dtv.com/songs/60018610.mkv +老狼-关于现在关于未来,http://em.21dtv.com/songs/60089447.mkv +张震岳-关于我们之间的事,http://em.21dtv.com/songs/60019234.mkv +关晓彤-关于你和我的故事,http://em.21dtv.com/songs/60116563.mkv +庾澄庆-关于爱的两三件事,http://em.21dtv.com/songs/60019218.mkv +王宏健-感谢我的父亲母亲,http://em.21dtv.com/songs/60100314.mkv +王冠乔-感谢所有爱我的人,http://em.21dtv.com/songs/60130566.mkv +光头阿兴-归心似箭回家过年,http://em.21dtv.com/songs/60019385.mkv +天星董阳-感谢上帝更感谢你,http://em.21dtv.com/songs/60126748.mkv +欣哲-感谢你我的好老婆,http://em.21dtv.com/songs/60122927.mkv +郑进一-感谢你陪我彼多年,http://em.21dtv.com/songs/60018093.mkv +熊胡杰-感谢你今生爱过我,http://em.21dtv.com/songs/60075461.mkv +黑豹乐队-高兴就来难过就走,http://em.21dtv.com/songs/60018238.mkv +雨禾-给我一首情歌就好,http://em.21dtv.com/songs/60080345.mkv +刘瑞琦-给我一首歌的时间,http://em.21dtv.com/songs/60114425.mkv +周杰伦-给我一首歌的时间,http://em.21dtv.com/songs/60018589.mkv +门丽-给我一双爱的翅膀,http://em.21dtv.com/songs/60018590.mkv +容祖儿-给我一个吻夜来香,http://em.21dtv.com/songs/60087701.mkv +周传雄-给我一个温暖空间,http://em.21dtv.com/songs/60018580.mkv +A Lin-给我一个理由忘记,http://em.21dtv.com/songs/60107388.mkv +A-LIN-给我一个理由忘记,http://em.21dtv.com/songs/60018577.mkv +许茹芸-给我一分钟不想你(演唱会),http://em.21dtv.com/songs/60018572.mkv +佚名-给我一份关心的爱(无原唱),http://em.21dtv.com/songs/60018573.mkv +潘迪华-给我一杯爱的咖啡,http://em.21dtv.com/songs/60089413.mkv +佚名-给我一杯爱的咖啡(演唱会),http://em.21dtv.com/songs/60018565.mkv +钟汉良-给我机会让我爱你,http://em.21dtv.com/songs/60018549.mkv +赵一玮-给我个机会不要走,http://em.21dtv.com/songs/60018547.mkv +三立-怪我对你太过痴迷,http://em.21dtv.com/songs/60131128.mkv +萧羽心-给我多点时间爱你,http://em.21dtv.com/songs/60085132.mkv +刘栋升-给我翅膀给你希望,http://em.21dtv.com/songs/60116591.mkv +基地小虎-怪我不能给你幸福,http://em.21dtv.com/songs/60099900.mkv +达明一派+谢霆锋-给我爱过的女孩们(演唱会),http://em.21dtv.com/songs/60018537.mkv +彭羚-给我爱过的男孩们,http://em.21dtv.com/songs/60018536.mkv +杨千嬅-给我爱过的男孩们(演唱会),http://em.21dtv.com/songs/60018535.mkv +黄耀明-给我爱过的男孩们(演唱会),http://em.21dtv.com/songs/60018534.mkv +陈小云-给天下无情的男性,http://em.21dtv.com/songs/60095990.mkv +何韵诗-钢铁是怎样炼成的,http://em.21dtv.com/songs/60018160.mkv +何韵诗-钢铁是怎样炼成的(演唱会),http://em.21dtv.com/songs/60018159.mkv +任维-钢铁是眼泪练成的,http://em.21dtv.com/songs/60087274.mkv +任维-钢铁是眼泪炼成的,http://em.21dtv.com/songs/60018158.mkv +姜鹏-钢铁是眼泪炼成的,http://em.21dtv.com/songs/60018157.mkv +印能法师-观世音菩萨甘露咒,http://em.21dtv.com/songs/60099846.mkv +曾春年-告诉我怎么忘记你,http://em.21dtv.com/songs/60064227.mkv +谢雷+吕姗-高山青+娜奴娃情歌(演唱会),http://em.21dtv.com/songs/60018218.mkv +蔡健东-告诉你我有多爱你,http://em.21dtv.com/songs/60117192.mkv +蔡健东-告诉你我有多爱你,http://em.21dtv.com/songs/60062239.mkv +林依轮-告诉明天再次辉煌,http://em.21dtv.com/songs/60089994.mkv +林依伦-告诉明天再次辉煌,http://em.21dtv.com/songs/60089992.mkv +吕金蔓-赶牲灵 三十里铺,http://em.21dtv.com/songs/60087549.mkv +Lady GaGa-Greatest,http://em.21dtv.com/songs/60114952.mkv +佚名-光荣啊中国共青团,http://em.21dtv.com/songs/60019308.mkv +Hollywood Undead-Gravitty,http://em.21dtv.com/songs/60116455.mkv +曾心梅-感情是女人的一切,http://em.21dtv.com/songs/60018040.mkv +靳海涛-过去就让它过去吧,http://em.21dtv.com/songs/60070721.mkv +戴佩妮-钢琴键,http://em.21dtv.com/songs/60125599.mkv +佚名-过去的事情不再想,http://em.21dtv.com/songs/60019518.mkv +何威-过期的爱不再挽留,http://em.21dtv.com/songs/60113254.mkv +RubberBand+恭硕良-Gotta Go,http://em.21dtv.com/songs/60116473.mkv +范一贤-Good Bye,http://em.21dtv.com/songs/60122064.mkv +白智英-Good bye,http://em.21dtv.com/songs/60120814.mkv +权志龙+太阳-GOOD BOY,http://em.21dtv.com/songs/60106925.mkv +李琦-GO GO GO,http://em.21dtv.com/songs/60125712.mkv +Pritz-Go Girls(动画),http://em.21dtv.com/songs/60104714.mkv +林志炫-给你一些不给一些,http://em.21dtv.com/songs/60018513.mkv +丁汀-给你幸福我有自信,http://em.21dtv.com/songs/60018508.mkv +项玉-闺女是娘的小棉袄,http://em.21dtv.com/songs/60114254.mkv +胡东清-姑娘你在我的心上,http://em.21dtv.com/songs/60070716.mkv +索南扎西-姑娘你有没有想我,http://em.21dtv.com/songs/60062970.mkv +高登-姑娘你好大的胆子,http://em.21dtv.com/songs/60123380.mkv +金正浩-姑奶奶[DJ版],http://em.21dtv.com/songs/60116308.mkv +佚名-给你的爱永远不变,http://em.21dtv.com/songs/60018494.mkv +佚名-革命人永远是年轻,http://em.21dtv.com/songs/60018412.mkv +屠洪纲-革命人永远是年轻,http://em.21dtv.com/songs/60018411.mkv +佚名-革命青年志在四方,http://em.21dtv.com/songs/60018410.mkv +Hey! Say! JUMP-Glorious,http://em.21dtv.com/songs/60131067.mkv +豫剧-光溜溜月儿照进窗,http://em.21dtv.com/songs/60134544.mkv +李政飞-圪梁梁上的二妹妹,http://em.21dtv.com/songs/60111976.mkv +刘转亮-过了今夜你会爱谁(HD),http://em.21dtv.com/songs/10012712.mkv +刘转亮-过了今夜你会爱谁,http://em.21dtv.com/songs/60099815.mkv +刘彦-过了今夜不说再见,http://em.21dtv.com/songs/60019497.mkv +AV芭比-过了今夜不说再见,http://em.21dtv.com/songs/60069441.mkv +赵斗堂-归来吧亲爱的姑娘,http://em.21dtv.com/songs/60075610.mkv +佚名-广阔天地大有作为,http://em.21dtv.com/songs/60019338.mkv +佚名-赶快上山吧勇士们,http://em.21dtv.com/songs/60017907.mkv +埖小迪-高考的同学伤不起,http://em.21dtv.com/songs/60111791.mkv +京剧-管叫那山河换新装,http://em.21dtv.com/songs/60090532.mkv +刘欢+孙楠+袁娅维+吉克隽逸-国际歌,http://em.21dtv.com/songs/60119304.mkv +楼沁-逛街的女孩最幸福,http://em.21dtv.com/songs/60107850.mkv +叶炫清-关键词,http://em.21dtv.com/songs/60128868.mkv +胡美仪-高君保私会刘金定(戏曲),http://em.21dtv.com/songs/60093067.mkv +梁静茹-给还没有遇见的你,http://em.21dtv.com/songs/60119738.mkv +陈思思-共和国永远是春天,http://em.21dtv.com/songs/60018777.mkv +庞锟-光辉BEYOND,http://em.21dtv.com/songs/60106814.mkv +DJ舞曲-哥哥妹妹要安慰DJ版,http://em.21dtv.com/songs/30000580.mkv +游美灵-高富帅遇见白富美,http://em.21dtv.com/songs/60071946.mkv +Jason Derulo-Get Ugly,http://em.21dtv.com/songs/60119152.mkv +128 ClubHouse Mj Hunter Remix-Get Back,http://em.21dtv.com/songs/60119082.mkv +Sheppard-Geronimo,http://em.21dtv.com/songs/60128699.mkv +张津涤-给的再多不如懂我,http://em.21dtv.com/songs/60127987.mkv +张津涤-给得再多不如懂我,http://em.21dtv.com/songs/60125521.mkv +杨丞琳-孤独是一种安全感,http://em.21dtv.com/songs/60085146.mkv +周俊伟-孤独是容易传染的,http://em.21dtv.com/songs/60018896.mkv +孟庭苇-孤独时候你想谁呢,http://em.21dtv.com/songs/60018895.mkv +毕夏-孤独的人是可耻的,http://em.21dtv.com/songs/60110324.mkv +张楚-孤独的人是可耻的(演唱会),http://em.21dtv.com/songs/60018890.mkv +李志洲-孤独的人就可耻吗,http://em.21dtv.com/songs/60122854.mkv +黎明-孤单的人孤单的我,http://em.21dtv.com/songs/60018841.mkv +易欣-孤独的人并不寂寞,http://em.21dtv.com/songs/60061219.mkv +吴兢-歌唱我亲爱的祖国,http://em.21dtv.com/songs/60018370.mkv +佚名-歌唱我们的新西藏,http://em.21dtv.com/songs/60018369.mkv +侧田-歌成就今天这个我,http://em.21dtv.com/songs/60111696.mkv +操玥-共产党来了苦变甜(演唱会),http://em.21dtv.com/songs/60082958.mkv +佚名-共产党来了苦变甜,http://em.21dtv.com/songs/60018762.mkv +哈拉玛组合-共产党来了苦变甜,http://em.21dtv.com/songs/60018761.mkv +才旦卓玛-共产党来了苦变甜,http://em.21dtv.com/songs/60018760.mkv +刀郎+云朵-共产党来了苦变甜,http://em.21dtv.com/songs/60069423.mkv +童唱-歌唱吧中国的少年,http://em.21dtv.com/songs/60018360.mkv +林道华-赶不上社会的男孩,http://em.21dtv.com/songs/60071940.mkv +蔡凤凰-港边是离别的所在,http://em.21dtv.com/songs/60018169.mkv +王大培-告别青春,http://em.21dtv.com/songs/60094592.mkv +候玉斌-告别了我最爱的人,http://em.21dtv.com/songs/60118360.mkv +张津涤-给不了你想要的爱,http://em.21dtv.com/songs/60119534.mkv +王梓诺-该不该就这样放手,http://em.21dtv.com/songs/60017807.mkv +软硬天师-广播道fans杀人事件,http://em.21dtv.com/songs/60019330.mkv +软硬天师-广播道fans杀人事件(演唱会),http://em.21dtv.com/songs/60019329.mkv +AAA-风に薫る夏の记忆,http://em.21dtv.com/songs/60102995.mkv +潘越云-飞在自己的天空里,http://em.21dtv.com/songs/60016904.mkv +馨梓-风中有朵雨做的云,http://em.21dtv.com/songs/60090323.mkv +孟庭苇-风中有朵雨做的云,http://em.21dtv.com/songs/60017519.mkv +曹越-反正你已经不爱我,http://em.21dtv.com/songs/60115206.mkv +刘梦-风雨中奔跑的孩子,http://em.21dtv.com/songs/60113298.mkv +佚名-风雨给我温暖给你,http://em.21dtv.com/songs/60017407.mkv +姜育恒-分一点梦给你的家(无原唱),http://em.21dtv.com/songs/60017144.mkv +田震-风雨彩虹铿锵玫瑰(演唱会),http://em.21dtv.com/songs/60017403.mkv +佚名-飞向异乡的747,http://em.21dtv.com/songs/60016876.mkv +朱伦-飞向我们的新世界,http://em.21dtv.com/songs/60016873.mkv +佚名-飞向我们的新世界,http://em.21dtv.com/songs/60016872.mkv +黄纪福-放下所有放不下你,http://em.21dtv.com/songs/60134505.mkv +祁隆-放下所有放不下你,http://em.21dtv.com/songs/60075326.mkv +童唱-逢雪宿芙蓉山主人,http://em.21dtv.com/songs/60017579.mkv +蒋大为-飞向明天的新生活,http://em.21dtv.com/songs/60016867.mkv +泽旺多吉-飞翔的云朵和哈达,http://em.21dtv.com/songs/60117889.mkv +李志洲-负心的女人不要留,http://em.21dtv.com/songs/60017756.mkv +张可儿-放下爱情放不下你,http://em.21dtv.com/songs/60120506.mkv +梁昕-非我不嫁非你不娶,http://em.21dtv.com/songs/60070676.mkv +语录-分手在落叶的秋天,http://em.21dtv.com/songs/60017124.mkv +小琴儿-放手也是一种解脱,http://em.21dtv.com/songs/60063152.mkv +黑龙-分手以后做个朋友,http://em.21dtv.com/songs/60017123.mkv +韩锋-分手以后还是朋友,http://em.21dtv.com/songs/60070680.mkv +吴宏彬-分手以后不做朋友,http://em.21dtv.com/songs/60107571.mkv +张鑫鑫-封锁线,http://em.21dtv.com/songs/60115164.mkv +孟庭苇-风是我回忆的方向,http://em.21dtv.com/songs/60017373.mkv +高韩-分手是最后的结局,http://em.21dtv.com/songs/60067000.mkv +袁彬-分手谁也不欠谁的,http://em.21dtv.com/songs/60097905.mkv +萧正楠-分手前最后一句话,http://em.21dtv.com/songs/60017107.mkv +姚天成-分手了我也不会哭,http://em.21dtv.com/songs/60086545.mkv +黑龙-分手了我会更想你,http://em.21dtv.com/songs/60098962.mkv +晓雨-分手了谁也别怨谁,http://em.21dtv.com/songs/60017096.mkv +六折真人-分手了就不要回头,http://em.21dtv.com/songs/60089645.mkv +陈瑞-分手了别来打扰我,http://em.21dtv.com/songs/60106409.mkv +云菲菲-分手了别来打扰我,http://em.21dtv.com/songs/60017089.mkv +冷漠-分手了别来打扰我,http://em.21dtv.com/songs/60064186.mkv +月亮-分手后依然是朋友,http://em.21dtv.com/songs/60017080.mkv +伊琳-分手后我是你的谁,http://em.21dtv.com/songs/60017079.mkv +唐古-分手后我该怎么过,http://em.21dtv.com/songs/60123781.mkv +高进-分手后就不要回头,http://em.21dtv.com/songs/60017076.mkv +远方-分手后就别来找我,http://em.21dtv.com/songs/60017074.mkv +罗志强-分手后不再是朋友,http://em.21dtv.com/songs/60111348.mkv +罗志强-分手后不再是朋友,http://em.21dtv.com/songs/60017069.mkv +梁文音-分手后不要做朋友,http://em.21dtv.com/songs/60093774.mkv +后来者-分手的眼泪谁来擦,http://em.21dtv.com/songs/60100786.mkv +杜留香-分手的爱情不美丽,http://em.21dtv.com/songs/60119678.mkv +群星-分手不应该在秋天,http://em.21dtv.com/songs/60101156.mkv +乔维怡-分手不应该在秋天(演唱会),http://em.21dtv.com/songs/60075352.mkv +五月天+萧敬腾-凡人歌[演唱会],http://em.21dtv.com/songs/60133350.mkv +枫桥-父亲我最敬爱的人,http://em.21dtv.com/songs/60086553.mkv +暴林-放弃世界放不下你,http://em.21dtv.com/songs/60135325.mkv +张恋歌-For Love,http://em.21dtv.com/songs/60118558.mkv +军嫂组合-非你不嫁非你不娶,http://em.21dtv.com/songs/60066998.mkv +雨柔-泛滥于眼眸中的念,http://em.21dtv.com/songs/60086538.mkv +卢巧音-弗罗伊德爱上林夕(演唱会),http://em.21dtv.com/songs/60017647.mkv +卢巧音-佛洛依德爱上林夕(演唱会),http://em.21dtv.com/songs/60017627.mkv +卢巧音-佛洛伊德爱上林夕,http://em.21dtv.com/songs/60017626.mkv +罗隽永-Fly away,http://em.21dtv.com/songs/60122016.mkv +MIC男团-FLY AWAY,http://em.21dtv.com/songs/60109103.mkv +檀健次-Fly Away,http://em.21dtv.com/songs/60107853.mkv +佚名-分离是更多的相聚,http://em.21dtv.com/songs/60017022.mkv +Norah Jones-Flipside,http://em.21dtv.com/songs/60134776.mkv +牛马丁+许桂荧-风流阿伯挽茶姑娘,http://em.21dtv.com/songs/60017330.mkv +陈雅森-放开你不是我的错,http://em.21dtv.com/songs/60120101.mkv +刘雅丽-风继续吹,http://em.21dtv.com/songs/60125224.mkv +范晓萱-飞机上的几个小时(演唱会),http://em.21dtv.com/songs/60016818.mkv +陶喆-飞机场的10:30,http://em.21dtv.com/songs/60016817.mkv +谭维维-Firework,http://em.21dtv.com/songs/60109631.mkv +毛泽少+李嘉格-Firework,http://em.21dtv.com/songs/60104269.mkv +Pitbull-Fireball,http://em.21dtv.com/songs/60110788.mkv +Pitbull+John Ryan-Fireball,http://em.21dtv.com/songs/60104712.mkv +孙辉+蓝若兮-粉红情歌,http://em.21dtv.com/songs/60117663.mkv +尉金莹-驸桦蜂蜜香飘四方,http://em.21dtv.com/songs/60107676.mkv +何鹏-驸桦蜂蜜香飘四方,http://em.21dtv.com/songs/60107498.mkv +刘文涛-飞花的中国遍地歌,http://em.21dtv.com/songs/60121445.mkv +MR.-飞行的一百个理由,http://em.21dtv.com/songs/60099017.mkv +李志-梵高先生,http://em.21dtv.com/songs/60119659.mkv +明道-副歌别再那么动人,http://em.21dtv.com/songs/60086213.mkv +谢有才-风风雨雨陪你走过,http://em.21dtv.com/songs/60063171.mkv +望海高歌-芬芳五月,http://em.21dtv.com/songs/60125662.mkv +许美静-风的叹息,http://em.21dtv.com/songs/60104432.mkv +郑源-付出不一定能收回,http://em.21dtv.com/songs/60017746.mkv +姚红梅-分别一天我就想你,http://em.21dtv.com/songs/60109257.mkv +王禹+叮当猫-放不下我们的爱情,http://em.21dtv.com/songs/60112853.mkv +冷漠+杨小曼-分不分手都要幸福,http://em.21dtv.com/songs/60099790.mkv +高进-放爱走吧,http://em.21dtv.com/songs/60126456.mkv +胖虎乐团-facelife,http://em.21dtv.com/songs/60122034.mkv +陕北民歌-二月里见罢到如今,http://em.21dtv.com/songs/60109717.mkv +任俊陶-Everyday,http://em.21dtv.com/songs/60109951.mkv +白冰冰-二十一世纪查某人,http://em.21dtv.com/songs/60016400.mkv +李小马飞-二十四小时的想念,http://em.21dtv.com/songs/60114601.mkv +尚雯婕-二十三秒三十二年,http://em.21dtv.com/songs/60016388.mkv +郑伊健-二十世纪的恋人们,http://em.21dtv.com/songs/60093263.mkv +金雯昕-二十二,http://em.21dtv.com/songs/60124589.mkv +苍井翔太-二人のモノグラム,http://em.21dtv.com/songs/60120877.mkv +苏勒亚其其格-二妹妹如今变了样,http://em.21dtv.com/songs/60088525.mkv +冷静+M.C.A-2013圣诞快乐,http://em.21dtv.com/songs/60097897.mkv +陈奕迅-二零零一太空漫游,http://em.21dtv.com/songs/60016352.mkv +陈奕迅-二零零一太空漫游(演唱会),http://em.21dtv.com/songs/60016351.mkv +MC HOTDOG-二零零六冠军情歌,http://em.21dtv.com/songs/60016346.mkv +BRYAN ADAMS-everything i do i do it for yo,http://em.21dtv.com/songs/60001569.mkv +As One-独自一人的圣诞节,http://em.21dtv.com/songs/60116436.mkv +梁佳玉+宋晓静-带着幸福回家过年,http://em.21dtv.com/songs/60096362.mkv +徐健淇-地藏王菩萨大愿赞,http://em.21dtv.com/songs/60066958.mkv +刘是非-带着我的爱嫁给他,http://em.21dtv.com/songs/60106644.mkv +杨千嬅-弹珠人的爱心炸弹,http://em.21dtv.com/songs/60014473.mkv +佚名-当祖国召唤的时候,http://em.21dtv.com/songs/60014660.mkv +董文华-当祖国需要我们时,http://em.21dtv.com/songs/60014659.mkv +佚名-惦在故乡等你的人(无原唱),http://em.21dtv.com/songs/60015364.mkv +王淑茜-大于友情小于爱情,http://em.21dtv.com/songs/60100319.mkv +京剧-都有一颗洪亮的心,http://em.21dtv.com/songs/60090536.mkv +储兰兰-都有一颗红亮的心,http://em.21dtv.com/songs/60075227.mkv +佚名-都有一颗红亮的心,http://em.21dtv.com/songs/60015727.mkv +杨钰莹-都有一颗红亮的心(演唱会),http://em.21dtv.com/songs/60015726.mkv +胡夏-等一生,http://em.21dtv.com/songs/60129509.mkv +孟杨-当一切都离我远去,http://em.21dtv.com/songs/60110147.mkv +VIXX-Dynamite,http://em.21dtv.com/songs/60121315.mkv +佚名-do you know the way to san jos,http://em.21dtv.com/songs/60001276.mkv +朱剑丹+谢雪心-蝶影红梨记之酬原(演唱会),http://em.21dtv.com/songs/60015420.mkv +Erika+小宇-当一个天使的忧愁,http://em.21dtv.com/songs/60122373.mkv +江蕙-等一个人守一个梦,http://em.21dtv.com/songs/60015050.mkv +周华健-多一分钟少一分钟,http://em.21dtv.com/songs/60016233.mkv +玛希-大雁的故乡在哪里,http://em.21dtv.com/songs/60102566.mkv +光良+易浩-第一次,http://em.21dtv.com/songs/60123638.mkv +江美琪-第一百零一个答案,http://em.21dtv.com/songs/60015229.mkv +快乐男声+姚政-等有饼吃咱在说吧,http://em.21dtv.com/songs/60087896.mkv +姚政-等有饼吃咱再说吧,http://em.21dtv.com/songs/60015053.mkv +陈奕迅-当心中有恋爱感觉,http://em.21dtv.com/songs/60110617.mkv +毕克-多想再为你擦眼泪(故事情节),http://em.21dtv.com/songs/60098545.mkv +望海高歌-多想做你最爱的人,http://em.21dtv.com/songs/60106911.mkv +斯日古楞-多想在草原遇见你,http://em.21dtv.com/songs/60119600.mkv +1306组合-东邪西毒南帝北丐,http://em.21dtv.com/songs/60069359.mkv +金娱-德行天下,http://em.21dtv.com/songs/60106335.mkv +刘亦菲-等雪来[欣赏版],http://em.21dtv.com/songs/60101948.mkv +陈思思-当万紫千红的时候,http://em.21dtv.com/songs/60014598.mkv +李克勤-当我知道你们相爱,http://em.21dtv.com/songs/60118661.mkv +张智霖-当我知道你们相爱,http://em.21dtv.com/songs/60097913.mkv +何维健-当我知道你们相爱,http://em.21dtv.com/songs/60014637.mkv +郭富城-当我知道你们相爱,http://em.21dtv.com/songs/60014636.mkv +郭富城-当我知道你们相爱(演唱会),http://em.21dtv.com/songs/60014635.mkv +BOA-当我再爱你的时候,http://em.21dtv.com/songs/60082808.mkv +曾一鸣-当我再爱你的时候,http://em.21dtv.com/songs/60014633.mkv +阿生-当我再爱你的时候,http://em.21dtv.com/songs/60014632.mkv +群星-当微笑轻轻你的心,http://em.21dtv.com/songs/60086524.mkv +群星-当我想起你的时候,http://em.21dtv.com/songs/60091855.mkv +清清儿-当我想念你的时候,http://em.21dtv.com/songs/60112839.mkv +陈永龙-大武山美丽的妈妈,http://em.21dtv.com/songs/60014149.mkv +苏永康-当我们拥抱的时候,http://em.21dtv.com/songs/60014620.mkv +董贞+雷诺儿-当我开始偷偷爱你,http://em.21dtv.com/songs/60014608.mkv +雷诺儿+董贞-当我开始偷偷爱你,http://em.21dtv.com/songs/60061141.mkv +兄弟Brother-当我回头看你一瞬,http://em.21dtv.com/songs/60089142.mkv +王烨-当我第一次说爱你,http://em.21dtv.com/songs/60103454.mkv +阿如娜-等我的情人在草原,http://em.21dtv.com/songs/60098826.mkv +蔡佳麟-叨位跌倒叨位爬起,http://em.21dtv.com/songs/60075125.mkv +苏永康+KHLOE CHU-当我爱上了你之后,http://em.21dtv.com/songs/60014599.mkv +佚名-当太阳升起的时候,http://em.21dtv.com/songs/60014595.mkv +林逸思-蛋塔我最想吔蛋塔,http://em.21dtv.com/songs/60014479.mkv +林歆-冬天是回家的季节,http://em.21dtv.com/songs/60128129.mkv +望海高歌-对天空说着勿忘我,http://em.21dtv.com/songs/60122816.mkv +童唱-大头儿子小头爸爸,http://em.21dtv.com/songs/60014138.mkv +东南+MAGGIE MCCLURE-dont be afraid 2012,http://em.21dtv.com/songs/60071589.mkv +吴宗宪-大声说出心内的话,http://em.21dtv.com/songs/60014124.mkv +Nell-第三人称的必要性,http://em.21dtv.com/songs/60134771.mkv +华歌-都说女人是水做的,http://em.21dtv.com/songs/60118406.mkv +儿歌-迪斯尼米老鼠之歌,http://em.21dtv.com/songs/60089638.mkv +西域胡杨-带上你的爱去新疆,http://em.21dtv.com/songs/60123154.mkv +何乾梁-电视风云1314,http://em.21dtv.com/songs/60114389.mkv +叶乃文-倒数第二个男朋友,http://em.21dtv.com/songs/60014712.mkv +枫舞+王馨-多少等待依旧为你,http://em.21dtv.com/songs/60066978.mkv +秦瑶-都是被爱伤害的人,http://em.21dtv.com/songs/60081953.mkv +臧文-都是爱情伤害了我,http://em.21dtv.com/songs/60130677.mkv +臧文-都是爱情伤害了我,http://em.21dtv.com/songs/60082854.mkv +以东-点燃梦想富迪中国,http://em.21dtv.com/songs/60075195.mkv +群星-点燃激情传递梦想,http://em.21dtv.com/songs/60015317.mkv +钟舒祺-Dreamers,http://em.21dtv.com/songs/60120049.mkv +张跃-单曲循环般的日子,http://em.21dtv.com/songs/60064108.mkv +郭凯伦-弹起我心爱的吉他,http://em.21dtv.com/songs/60014469.mkv +杨洪基-当秋天来到的时候,http://em.21dtv.com/songs/60091406.mkv +贝贝-大桥上,http://em.21dtv.com/songs/60115409.mkv +周传雄-第七十七次离开你,http://em.21dtv.com/songs/60015200.mkv +俞灏明-打起手鼓来唱起歌,http://em.21dtv.com/songs/60087340.mkv +刘小山-多情男人负心女人,http://em.21dtv.com/songs/60108338.mkv +凤凰传奇-动起来,http://em.21dtv.com/songs/60117571.mkv +陈慧娴-地球和月亮的故事,http://em.21dtv.com/songs/60015105.mkv +张洪量-多情的无情的多情,http://em.21dtv.com/songs/60016155.mkv +冷漠-多情的人不该相遇,http://em.21dtv.com/songs/60075264.mkv +痛仰乐队-Downtown,http://em.21dtv.com/songs/60129438.mkv +郑秀文-Do Re Mi,http://em.21dtv.com/songs/60111447.mkv +胡钰佳-Do Re Mi,http://em.21dtv.com/songs/60111365.mkv +陈梓童-Dont Say,http://em.21dtv.com/songs/60135928.mkv +Christine-Don't Go,http://em.21dtv.com/songs/60107397.mkv +克丽丝叮-Don't Go,http://em.21dtv.com/songs/60105606.mkv +白安-Don't Go,http://em.21dtv.com/songs/60104332.mkv +Charli Xcx+Rita Ora-Doing It,http://em.21dtv.com/songs/60110752.mkv +KENT王健-等你转身我亦不再,http://em.21dtv.com/songs/60082832.mkv +贡尕达哇-等你在花开的草原,http://em.21dtv.com/songs/60075160.mkv +胡彦斌-当你要离开的时候,http://em.21dtv.com/songs/60105309.mkv +闫勇-多年以后你还好吗,http://em.21dtv.com/songs/60123271.mkv +古巨基-对你始终痴心一往,http://em.21dtv.com/songs/60103136.mkv +严波-当你说爱我的时候,http://em.21dtv.com/songs/60014564.mkv +赵真-当男人流泪的时候,http://em.21dtv.com/songs/60114101.mkv +汪晨蕊-当年情,http://em.21dtv.com/songs/60129336.mkv +杨钰莹-等你来带走我的心,http://em.21dtv.com/songs/60015006.mkv +倪惠英-帝女花之庵遇相认(戏曲),http://em.21dtv.com/songs/60092292.mkv +陈明真-当女孩有时真无奈,http://em.21dtv.com/songs/60088880.mkv +柳影虹+尹光-帝女花庵遇之相识(演唱会),http://em.21dtv.com/songs/60075178.mkv +王馨+石雪峰-等你到下一个轮回,http://em.21dtv.com/songs/60128252.mkv +杨子军-对你的女人好一点,http://em.21dtv.com/songs/60112785.mkv +许志安-对你的爱还依然在,http://em.21dtv.com/songs/60016036.mkv +黄征-当你从我眼中离开,http://em.21dtv.com/songs/60014546.mkv +佚名-到农村去到边疆去,http://em.21dtv.com/songs/60014761.mkv +李玟-刀马旦,http://em.21dtv.com/songs/60117818.mkv +任贤齐-对面的女孩看过来,http://em.21dtv.com/songs/60016024.mkv +阿牛-对面的女孩看过来,http://em.21dtv.com/songs/60016023.mkv +阿牛+任贤齐-对面的女孩看过来(演唱会),http://em.21dtv.com/songs/60016022.mkv +群星-对面的男孩看过来,http://em.21dtv.com/songs/60016021.mkv +李心洁+锦绣二重唱-对面的男孩看过来,http://em.21dtv.com/songs/60016020.mkv +刘若英-打了一把钥匙给你,http://em.21dtv.com/songs/60013800.mkv +刘若英-打了一把锁匙给你,http://em.21dtv.com/songs/60087424.mkv +GEORGE MICHAEL+ELTON JOHN-dont let the sun go down on me,http://em.21dtv.com/songs/60001346.mkv +ELTON JOHN-dont let the sun go down on me,http://em.21dtv.com/songs/60001345.mkv +张志林-当老鼠不再爱大米,http://em.21dtv.com/songs/60014536.mkv +BRITNEY SPESRS-dont let me be the last to kn,http://em.21dtv.com/songs/60001339.mkv +军嫂组合-到了杭州要来九堡,http://em.21dtv.com/songs/60109166.mkv +元朝-大家一起来打乒乓,http://em.21dtv.com/songs/60094813.mkv +DJ舞曲-DJ舞曲-重低音极品,http://em.21dtv.com/songs/30000574.mkv +卓依婷-杜鹃花+扬州小调,http://em.21dtv.com/songs/60087473.mkv +小泾县-第九分钟不再联系,http://em.21dtv.com/songs/60094073.mkv +周蕙+杨永聪-冬季到台北来看雨,http://em.21dtv.com/songs/60086531.mkv +李昱和-冬季到台北来看雨(演唱会),http://em.21dtv.com/songs/60085056.mkv +馨梓-冬季到台北来看雨,http://em.21dtv.com/songs/60015572.mkv +孟庭苇-冬季到台北来看雨,http://em.21dtv.com/songs/60015571.mkv +易帆-冬季到台北来看雨,http://em.21dtv.com/songs/60064145.mkv +张玮-侗家的姑娘爱唱歌,http://em.21dtv.com/songs/60105048.mkv +妖精帝国-DISORDER,http://em.21dtv.com/songs/60135093.mkv +杨美娜-Diamonds,http://em.21dtv.com/songs/60125760.mkv +讴洋-大海我们为你站岗,http://em.21dtv.com/songs/60115389.mkv +韦明华-大海的女友是天空,http://em.21dtv.com/songs/60088945.mkv +大庆小芳-打工赚钱回家过年,http://em.21dtv.com/songs/60082771.mkv +佚名-大姑娘美大姑娘浪,http://em.21dtv.com/songs/60013941.mkv +邹昌龙-当个好兵就是报答,http://em.21dtv.com/songs/60129661.mkv +老兵-当过兵战友干一杯,http://em.21dtv.com/songs/60091884.mkv +郑进一-惦福州这个好所在,http://em.21dtv.com/songs/60121003.mkv +霍尊+刘雨潼-等风来,http://em.21dtv.com/songs/60109726.mkv +一飞-蝶儿蝶儿双双飞儿(演唱会),http://em.21dtv.com/songs/60075203.mkv +庞龙+郭欢-到底是谁伤害了谁,http://em.21dtv.com/songs/60069339.mkv +谢有才-得到是你失去是爱,http://em.21dtv.com/songs/60069342.mkv +金池-对的人 错的时候,http://em.21dtv.com/songs/60081009.mkv +黎明-等待能有一天被爱,http://em.21dtv.com/songs/60014912.mkv +李玟-滴答滴,http://em.21dtv.com/songs/60125711.mkv +陈思安-滴滴答答的落雨声,http://em.21dtv.com/songs/60015074.mkv +THE POLICE-de do do do de da da da,http://em.21dtv.com/songs/60001182.mkv +吴生全-得到爱情却失去你,http://em.21dtv.com/songs/60127834.mkv +佚名-大草原上的小老鼠,http://em.21dtv.com/songs/60013860.mkv +林慧萍-当初我怎么会不懂,http://em.21dtv.com/songs/60014520.mkv +满文军-当春天走来的时候,http://em.21dtv.com/songs/60014522.mkv +越剧-断肠人越想越断肠,http://em.21dtv.com/songs/60015910.mkv +阎维文-大鞭子赶着风雨走,http://em.21dtv.com/songs/60013851.mkv +麦兜-大包整多两笼大包,http://em.21dtv.com/songs/60013845.mkv +雪村-东北人都是活雷锋,http://em.21dtv.com/songs/60015494.mkv +雪村-东北人都是活雷锋(演唱会),http://em.21dtv.com/songs/60015493.mkv +蛟龙-东北人不是黑社会,http://em.21dtv.com/songs/60015492.mkv +蔡雯君-对不起我已爱上你,http://em.21dtv.com/songs/60118891.mkv +Davichi-对不起,我很幸福,http://em.21dtv.com/songs/60109812.mkv +刘涛+薛之谦-到不了,http://em.21dtv.com/songs/60125205.mkv +韩红-当兵就是这样的人,http://em.21dtv.com/songs/60014513.mkv +阎维文-当兵的男儿走四方(演唱会),http://em.21dtv.com/songs/60014506.mkv +Super Junior-Daydream,http://em.21dtv.com/songs/60104736.mkv +Hardwell+Matthew Koma-Dare You,http://em.21dtv.com/songs/60124889.mkv +赵小南-当爱情熄灭了火焰,http://em.21dtv.com/songs/60014494.mkv +龙啸-当爱情输给了眼泪,http://em.21dtv.com/songs/60014493.mkv +王麟-当爱情离开的时候,http://em.21dtv.com/songs/60085026.mkv +童丽-当爱情经过的时候,http://em.21dtv.com/songs/60075106.mkv +周艳泓-当爱情经过的时候,http://em.21dtv.com/songs/60014491.mkv +关牧村-党啊 亲爱的妈妈,http://em.21dtv.com/songs/60087359.mkv +迪玛希-Daididau,http://em.21dtv.com/songs/60134280.mkv +凤凰传奇-等爱的玫瑰之慢摇,http://em.21dtv.com/songs/60089667.mkv +佟宇+雷振-沉醉在丽江的早上,http://em.21dtv.com/songs/60084982.mkv +DJ舞曲-车载慢摇(无损),http://em.21dtv.com/songs/50000263.mkv +赵纲-存在和离开都心痛,http://em.21dtv.com/songs/60123203.mkv +刘晓-草原之吻(HD),http://em.21dtv.com/songs/10012708.mkv +郭玲+何鹏-彩云之南[DJ],http://em.21dtv.com/songs/60110588.mkv +东方红艳-草原我最美丽的家,http://em.21dtv.com/songs/60120281.mkv +奇力格尔-草原我神奇的故乡,http://em.21dtv.com/songs/60012108.mkv +蒙古歌-草原我生命的依托,http://em.21dtv.com/songs/60092009.mkv +冷酷-草原我快乐的天堂,http://em.21dtv.com/songs/60113282.mkv +哈泊力夫-草原是最美的颜色,http://em.21dtv.com/songs/60122617.mkv +佚名-草原上马儿千万匹,http://em.21dtv.com/songs/60012092.mkv +天骏-草原上的娜仁托雅(演唱会),http://em.21dtv.com/songs/60074861.mkv +泽仁伍波-草原上的嘎绒麦朵,http://em.21dtv.com/songs/60120705.mkv +罗嘉良-差一刹的地老天荒,http://em.21dtv.com/songs/60012245.mkv +涂杰荣-唱一首悲伤的情歌,http://em.21dtv.com/songs/60074905.mkv +王力宏-春雨里洗过的太阳,http://em.21dtv.com/songs/60013369.mkv +琪琪格-草原就是我的家乡(舞曲版),http://em.21dtv.com/songs/60064038.mkv +关心妍-差一分钟,http://em.21dtv.com/songs/60110857.mkv +荣联合-草原的姑娘嫁我吧,http://em.21dtv.com/songs/60074850.mkv +刘明湘-从醒着到愿意睡着,http://em.21dtv.com/songs/60128827.mkv +黄永华-朝霞映在阳庭湖上,http://em.21dtv.com/songs/60089552.mkv +佚名-朝霞映在阳澄湖上,http://em.21dtv.com/songs/60012427.mkv +张斌-辰溪 可爱的家乡,http://em.21dtv.com/songs/60106836.mkv +培源-刺痛的心还会爱谁,http://em.21dtv.com/songs/60061115.mkv +黄鹤翔-春天的花夏天的雨,http://em.21dtv.com/songs/60013324.mkv +小刚-春天的花恁拢无开,http://em.21dtv.com/songs/60081418.mkv +陈红+林依轮-春水弯弯春花飘飘,http://em.21dtv.com/songs/60090296.mkv +甘洛凡-至少我们曾经爱过,http://em.21dtv.com/songs/60058820.mkv +小5-城市上空寂寞的歌,http://em.21dtv.com/songs/60074941.mkv +MP4-城市猎人2001,http://em.21dtv.com/songs/60012632.mkv +媛媛-春三二月桃花儿鲜,http://em.21dtv.com/songs/60066928.mkv +胡杏儿-叉烧包,http://em.21dtv.com/songs/60124378.mkv +零点乐队-承受别让我离开你,http://em.21dtv.com/songs/60012608.mkv +庄振凯-吃人一口还人一斗,http://em.21dtv.com/songs/60084985.mkv +奥迪-唱起情歌想起了你,http://em.21dtv.com/songs/60082709.mkv +刘胡轶+刘欢-从前慢,http://em.21dtv.com/songs/60109194.mkv +庄振凯-痴情的心放底叼位,http://em.21dtv.com/songs/60012701.mkv +林晏如-痴情的人伤心的影,http://em.21dtv.com/songs/60012700.mkv +潘越云-痴情不是一种罪过,http://em.21dtv.com/songs/60012686.mkv +迟志强-吃葡萄不吐葡萄皮,http://em.21dtv.com/songs/60105409.mkv +游喧-吃葡萄不吐葡萄皮,http://em.21dtv.com/songs/60063288.mkv +Eric Church-Cold One,http://em.21dtv.com/songs/60103770.mkv +莫文蔚-come on come on光速飞翔,http://em.21dtv.com/songs/60000994.mkv +Vinna-从你的全世界路过,http://em.21dtv.com/songs/60128713.mkv +牛奶咖啡-从你的全世界路过,http://em.21dtv.com/songs/60119790.mkv +罗逻圣-出门在外的朋友啊,http://em.21dtv.com/songs/60123075.mkv +伊尔盼+地里亚尔-草帽歌,http://em.21dtv.com/songs/60125110.mkv +凤凰传奇-策马奔腾,http://em.21dtv.com/songs/60111710.mkv +弘岩-除了我你还爱着谁,http://em.21dtv.com/songs/60069311.mkv +王小辉-除了你我谁也不爱,http://em.21dtv.com/songs/60131656.mkv +唐妍-除了你我谁都不要,http://em.21dtv.com/songs/60065906.mkv +狮子合唱团-除了你我别无选择,http://em.21dtv.com/songs/60130562.mkv +关德辉-除了你不曾梦见谁,http://em.21dtv.com/songs/60013054.mkv +何树亮-从来没有这样爱过,http://em.21dtv.com/songs/60105580.mkv +妥云福-赤裸裸,http://em.21dtv.com/songs/60125364.mkv +路童-迟来的爱2011,http://em.21dtv.com/songs/60012789.mkv +万心-除了爱你还能爱谁,http://em.21dtv.com/songs/60098066.mkv +动力火车-除了爱你还能爱谁,http://em.21dtv.com/songs/60013051.mkv +双HI C组合-从开始就注定爱你,http://em.21dtv.com/songs/60013530.mkv +双HI C组合-从开始就注定爱你(演唱会),http://em.21dtv.com/songs/60013529.mkv +王力宏-此刻你心里想起谁,http://em.21dtv.com/songs/60013443.mkv +光线合唱团-春娇与志明的对话,http://em.21dtv.com/songs/60133381.mkv +刘清沨-曾经拥有的那些年,http://em.21dtv.com/songs/60113300.mkv +刘清沨-曾经拥有的那些年,http://em.21dtv.com/songs/60110036.mkv +刘之烁-曾经约定,http://em.21dtv.com/songs/60125172.mkv +陈瑞-曾经是我最爱的人,http://em.21dtv.com/songs/60012171.mkv +豪图-成吉思汗的马蹄声,http://em.21dtv.com/songs/60012561.mkv +夏兰-曾经让我幸福的你,http://em.21dtv.com/songs/60112590.mkv +白百何-擦肩而过,http://em.21dtv.com/songs/60118814.mkv +伍思凯-曾经爱你永远爱你,http://em.21dtv.com/songs/60012160.mkv +佟宇-曾经爱过依然爱着,http://em.21dtv.com/songs/60012159.mkv +佚名-从海上归来的莉露,http://em.21dtv.com/songs/60013510.mkv +王菀之-Chotto等等,http://em.21dtv.com/songs/60106135.mkv +黄征-茶花女爱上毕加索,http://em.21dtv.com/songs/60012205.mkv +张铠麟-China Go,http://em.21dtv.com/songs/60125541.mkv +Dreamcatcher-Chase Me,http://em.21dtv.com/songs/60133193.mkv +Shakira+Maluma-Chantaje,http://em.21dtv.com/songs/60129987.mkv +The Band Perry-Chainsaw,http://em.21dtv.com/songs/60104742.mkv +杨志广-常给妈妈打个电话,http://em.21dtv.com/songs/60125745.mkv +冷漠-错过了缘分错过你,http://em.21dtv.com/songs/60113280.mkv +何龙雨-错过了缘分错过你,http://em.21dtv.com/songs/60113262.mkv +陈瑞-错过了缘分错过你,http://em.21dtv.com/songs/60107335.mkv +冷漠+何龙雨-错过了缘分错过你,http://em.21dtv.com/songs/60068198.mkv +高明骏-唱歌给孤单的人听,http://em.21dtv.com/songs/60012322.mkv +张行-成功的路不止一条,http://em.21dtv.com/songs/60133696.mkv +许志安-除非你亲口对我说,http://em.21dtv.com/songs/60013045.mkv +豫剧《铡美案》-陈驸马休要性情急,http://em.21dtv.com/songs/60134619.mkv +元气乐团-超大牌粉丝俱乐部,http://em.21dtv.com/songs/60012371.mkv +姚燕-长大后我就成了你,http://em.21dtv.com/songs/60127892.mkv +金婷婷-长大后我就成了你,http://em.21dtv.com/songs/60123255.mkv +赖安华-唱出自己第一首歌,http://em.21dtv.com/songs/60108901.mkv +伍凌枫-此处省略一千个字,http://em.21dtv.com/songs/60107487.mkv +麦浚龙-从此世界多一分钟,http://em.21dtv.com/songs/60013506.mkv +陈瑞-长长的路慢慢地走,http://em.21dtv.com/songs/60119021.mkv +郁柳+徐玲+段婷婷-长长的辫子黑又亮,http://em.21dtv.com/songs/60069292.mkv +苏永康+彭家丽-从不喜欢孤单一个,http://em.21dtv.com/songs/60013500.mkv +苏永康+吴雨霏-从不喜欢孤单一个(演唱会),http://em.21dtv.com/songs/60013499.mkv +苏永康+李乐诗-从不喜欢孤单一个(演唱会),http://em.21dtv.com/songs/60013498.mkv +林宗兴-冲吧梦想超人英雄,http://em.21dtv.com/songs/60064063.mkv +薛之谦+童英然+黄云龙+张婉清-丑八怪,http://em.21dtv.com/songs/60124446.mkv +巴图-丑八怪,http://em.21dtv.com/songs/60123884.mkv +不会弹吉他的吉他侠+爱搭积木的粉刷匠(李祥祥+黄雅莉)-丑八怪,http://em.21dtv.com/songs/60128721.mkv +宇宙少女-Catch Me,http://em.21dtv.com/songs/60135114.mkv +宇宙少女-Catch Me,http://em.21dtv.com/songs/60121582.mkv +Zedd+Aloe Blacc-Candyman,http://em.21dtv.com/songs/60121317.mkv +美空ひばり-川の流れのように(无原唱),http://em.21dtv.com/songs/60013092.mkv +海阔-别再用眼泪欺骗我,http://em.21dtv.com/songs/60098593.mkv +门丽-别再用眼泪欺骗我,http://em.21dtv.com/songs/60082633.mkv +黄乙玲-不知影热不知影寒,http://em.21dtv.com/songs/60041647.mkv +水火相容-不知我的你在哪里,http://em.21dtv.com/songs/60084948.mkv +许文科-别再让我孤单寂寞,http://em.21dtv.com/songs/60093696.mkv +红月-不做你幸福的玫瑰,http://em.21dtv.com/songs/60065876.mkv +邵伟轩-抱着你的相框入睡,http://em.21dtv.com/songs/60074630.mkv +申菲-别在离开时说爱我,http://em.21dtv.com/songs/60010785.mkv +佚名-别在来不及的时候,http://em.21dtv.com/songs/60010784.mkv +夹子道-别在寂寞时说爱我,http://em.21dtv.com/songs/60010782.mkv +ENERGY-不在乎有没有以后,http://em.21dtv.com/songs/60011775.mkv +512 隆隆-不在乎你有多爱我,http://em.21dtv.com/songs/60011772.mkv +李思宇-不知该怎么称呼你,http://em.21dtv.com/songs/60119660.mkv +深南大道-别再对我谈起感情DJ,http://em.21dtv.com/songs/60090047.mkv +冲击力乐队-别再对我谈起感情,http://em.21dtv.com/songs/60123658.mkv +深南大道-别再对我谈起感情,http://em.21dtv.com/songs/60010758.mkv +杭娇-别再对我说你爱我,http://em.21dtv.com/songs/60010757.mkv +冯之评-别再对爱说无所谓,http://em.21dtv.com/songs/60010756.mkv +彭高平-班长把哨位交给我(演唱会),http://em.21dtv.com/songs/60070520.mkv +黄刚-被这爱伤透了的心,http://em.21dtv.com/songs/60074657.mkv +佚名-不要这样对我好吗,http://em.21dtv.com/songs/60011661.mkv +庄心妍-不要在我伤口撒盐,http://em.21dtv.com/songs/60102180.mkv +伍思凯-不要再提我的名字,http://em.21dtv.com/songs/60089609.mkv +冷漠&陈瑞-不要再说你还爱我,http://em.21dtv.com/songs/60106624.mkv +谈欣-不要再说你还爱我,http://em.21dtv.com/songs/60011647.mkv +冷漠-不要再说你还爱我,http://em.21dtv.com/songs/60065870.mkv +暴林-不要再说你爱过我,http://em.21dtv.com/songs/60062229.mkv +蔡健东-不要再叫我亲爱的,http://em.21dtv.com/songs/60074792.mkv +腾格尔-不要走进我的生活,http://em.21dtv.com/songs/60089451.mkv +佚名-不要责备我吧妈妈,http://em.21dtv.com/songs/60011658.mkv +王杰-不要在背后呼唤我,http://em.21dtv.com/songs/60088295.mkv +丁春秀-不要以为离不开你,http://em.21dtv.com/songs/60112481.mkv +董芹-不要以为离不开你,http://em.21dtv.com/songs/60112204.mkv +陈瑞-别用下辈子安慰我,http://em.21dtv.com/songs/60010754.mkv +痛仰乐队-不要停止我的音乐,http://em.21dtv.com/songs/60011625.mkv +阿木-不要说我们是朋友,http://em.21dtv.com/songs/60084939.mkv +成林江措-不要说我很在乎你,http://em.21dtv.com/songs/60095303.mkv +张甜甜-不要说谁曾爱过谁,http://em.21dtv.com/songs/60117740.mkv +沐尔-不要失去你的梦想,http://em.21dtv.com/songs/60011606.mkv +涓子-不要说都是我的错,http://em.21dtv.com/songs/60098594.mkv +珍美儿-不要让我一个人睡,http://em.21dtv.com/songs/60066888.mkv +蔡建-不要轻易说你爱我,http://em.21dtv.com/songs/60088598.mkv +张津涤+司徒兰芳-不怨情深奈何缘浅,http://em.21dtv.com/songs/60119535.mkv +杜奕衡-不要连分手都骗我,http://em.21dtv.com/songs/60091379.mkv +樊凡-不要就这样离开我,http://em.21dtv.com/songs/60113753.mkv +南征北战-不愿回头,http://em.21dtv.com/songs/60121466.mkv +孙子涵-毕业后你不是我的(演唱会),http://em.21dtv.com/songs/60068114.mkv +[Group] +groupName=十六万歌曲MV等 - 102 +陶喆+岳定辉-白月光,http://em.21dtv.com/songs/60126411.mkv +任贤齐-把一个人放在心上,http://em.21dtv.com/songs/60090558.mkv +陈咏-不愿放手2012,http://em.21dtv.com/songs/60065871.mkv +谭咏麟-不要放弃爱你的人,http://em.21dtv.com/songs/60011546.mkv +瑶瑶-不要放开牵我的手,http://em.21dtv.com/songs/60121963.mkv +赵传-不要挡在我的面前,http://em.21dtv.com/songs/60011535.mkv +祁隆-不要对我说无所谓,http://em.21dtv.com/songs/60081797.mkv +郑萧-白洋淀可爱的家乡,http://em.21dtv.com/songs/60093324.mkv +腾格尔-不愿等待就走你的(演唱会),http://em.21dtv.com/songs/60011706.mkv +王馨平-不要躲避我的眼睛,http://em.21dtv.com/songs/60082669.mkv +满江-不要从记忆中离开,http://em.21dtv.com/songs/60091645.mkv +动力火车-不要背着我流眼泪,http://em.21dtv.com/songs/60090735.mkv +寒兰霞-包相爷与民伸屈冤,http://em.21dtv.com/songs/60089814.mkv +孟庭苇-不下雨就出太阳吧,http://em.21dtv.com/songs/60011441.mkv +林木-别想我再为你流泪,http://em.21dtv.com/songs/60010743.mkv +刘邦-不想留在你的胸口,http://em.21dtv.com/songs/60106652.mkv +韩小薰-不想两个人都难受,http://em.21dtv.com/songs/60064012.mkv +陈羽洁-把心儿种在春天里,http://em.21dtv.com/songs/60124650.mkv +游国维-变心的是你不是我(无原唱),http://em.21dtv.com/songs/60010524.mkv +卓依婷-背心_东南西北风,http://em.21dtv.com/songs/60087485.mkv +雷佳-百姓爱那清廉的官,http://em.21dtv.com/songs/60009796.mkv +陈洁仪-别问我为什么爱你,http://em.21dtv.com/songs/60121085.mkv +赵咏华-别问我会不会后悔,http://em.21dtv.com/songs/60010731.mkv +唐磊-别忘了为什么出发,http://em.21dtv.com/songs/60113356.mkv +余萍-北纬28度上的雪,http://em.21dtv.com/songs/60121380.mkv +佚名-把我的真心留给你,http://em.21dtv.com/songs/60009590.mkv +孟茜-把我的心收藏起来,http://em.21dtv.com/songs/60082570.mkv +汪佩蓉-比我对你更好的人,http://em.21dtv.com/songs/60088207.mkv +Luke Bryan-Buzzkill,http://em.21dtv.com/songs/60124937.mkv +宋嘉其+宋芷凝-But I Do,http://em.21dtv.com/songs/60111013.mkv +群星-But I Do,http://em.21dtv.com/songs/60102631.mkv +George Ezra-Budapest,http://em.21dtv.com/songs/60124877.mkv +阿龙正罡-遍体鳞伤,http://em.21dtv.com/songs/60108970.mkv +詹雅雯-不通乎我等乎我望,http://em.21dtv.com/songs/60011656.mkv +天堂飘雪-白天的月亮最美丽,http://em.21dtv.com/songs/60102083.mkv +小琢-白天的月亮最美丽,http://em.21dtv.com/songs/60066843.mkv +秀才-闭上眼就会想起你,http://em.21dtv.com/songs/60111330.mkv +秀才-闭上眼就会想起你,http://em.21dtv.com/songs/60074671.mkv +刘恺名-别说下辈子再爱我,http://em.21dtv.com/songs/60068121.mkv +郁超-别说我对你不温柔,http://em.21dtv.com/songs/60010710.mkv +李德永-白塞人你并不孤单,http://em.21dtv.com/songs/60116911.mkv +M.Pire-不是那样的的孩子,http://em.21dtv.com/songs/60101794.mkv +赛娅-不是你右边的新娘,http://em.21dtv.com/songs/60062895.mkv +何流-不是你想象的那样,http://em.21dtv.com/songs/60084932.mkv +刘昌现-别说你曾经爱过我,http://em.21dtv.com/songs/60010701.mkv +张雨生-把世界分一半给你,http://em.21dtv.com/songs/60009582.mkv +祁隆-别伤害我,http://em.21dtv.com/songs/60113908.mkv +余宪忠-白色床单上的阳光,http://em.21dtv.com/songs/60087331.mkv +张缦雨-不是不想过情人节,http://em.21dtv.com/songs/60071796.mkv +火狐-不是爱人不配情深,http://em.21dtv.com/songs/60011355.mkv +望海高歌-别让自己活得太累,http://em.21dtv.com/songs/60133774.mkv +望海高歌-别让自己活得太累,http://em.21dtv.com/songs/60109409.mkv +佚名-别让自己活得不好,http://em.21dtv.com/songs/60010670.mkv +卢胜林-别让真爱掉眼泪轨,http://em.21dtv.com/songs/60121472.mkv +晓月-不让眼泪流进记忆,http://em.21dtv.com/songs/60094522.mkv +刘嘉玲-别让我最后才知道,http://em.21dtv.com/songs/60010669.mkv +胜屿-别让我们变成回忆,http://em.21dtv.com/songs/60088490.mkv +文章-不让你看见我哭泣,http://em.21dtv.com/songs/60087910.mkv +佚名-不让你看到我的心(无原唱),http://em.21dtv.com/songs/60011309.mkv +吴宪-不让你看到我的心,http://em.21dtv.com/songs/60061067.mkv +陈奕迅-不如承诺来的简单,http://em.21dtv.com/songs/60100569.mkv +王菲+张智霖-般若波罗蜜多心经,http://em.21dtv.com/songs/60097936.mkv +黄思婷-般若波罗蜜多心经,http://em.21dtv.com/songs/60009835.mkv +董事长乐团-般若波罗密多心经,http://em.21dtv.com/songs/60009833.mkv +刘斌-八荣不耻人人需知,http://em.21dtv.com/songs/60087405.mkv +刘斌-八荣八耻人人须知,http://em.21dtv.com/songs/60009487.mkv +彭丽丽-别让爱情等得太久,http://em.21dtv.com/songs/60065851.mkv +牛魔王-别让爱你的人心碎,http://em.21dtv.com/songs/60010647.mkv +李志洲-别让爱你的人心碎,http://em.21dtv.com/songs/60010646.mkv +林楠-别让爱你的人流泪,http://em.21dtv.com/songs/60120670.mkv +孟彦-别让爱你的人流泪,http://em.21dtv.com/songs/60087672.mkv +轮回乐队-别让爱你的人流泪,http://em.21dtv.com/songs/60010645.mkv +温博-八千里边防大北疆,http://em.21dtv.com/songs/60063068.mkv +旅行团乐队-奔跑在孤傲的路上,http://em.21dtv.com/songs/60120578.mkv +lady,http://em.21dtv.com/songs/60113768.mkv +Seventeen-BOOMBOOM,http://em.21dtv.com/songs/60129986.mkv +大雨点儿-白娘子爱上了许仙,http://em.21dtv.com/songs/60074590.mkv +吴奇隆-不能说出口的诺言,http://em.21dtv.com/songs/60100790.mkv +吴奇隆-不能说出口的谎言(HD),http://em.21dtv.com/songs/10012731.mkv +刘缘-被男人伤过的女人,http://em.21dtv.com/songs/60114429.mkv +刘缘-被女人伤过的男人,http://em.21dtv.com/songs/60114428.mkv +东海-被女人伤过的男人,http://em.21dtv.com/songs/60099715.mkv +晓月-把你拉黑把你删除,http://em.21dtv.com/songs/60100089.mkv +范玮琪+刘若英-不能跟情人说的话,http://em.21dtv.com/songs/60011258.mkv +冼佩瑾-把你丢进淡水河里,http://em.21dtv.com/songs/60117569.mkv +湘情粤意-把你带回我的草原,http://em.21dtv.com/songs/60105224.mkv +乌兰红梅-把你带回我的草原,http://em.21dtv.com/songs/60063950.mkv +潘长江-别拿豆包不当干粮,http://em.21dtv.com/songs/60094213.mkv +吕方-不能不让你来入梦,http://em.21dtv.com/songs/60011249.mkv +卓文萱-被你爱过我很快乐,http://em.21dtv.com/songs/60010298.mkv +袁双洋-八面山美玲珑茶香,http://em.21dtv.com/songs/60106268.mkv +简弘亦-半梦半醒忽然之间,http://em.21dtv.com/songs/60130639.mkv +潘玮柏-柏拉图的异想世界,http://em.21dtv.com/songs/60101439.mkv +吕继宏-百里漓江百里画廊,http://em.21dtv.com/songs/60009788.mkv +李秋泽-别离开我,http://em.21dtv.com/songs/60105157.mkv +马雨贤-八零后的我们在路,http://em.21dtv.com/songs/60009478.mkv +黄妃-巴两个啊乎我清醒,http://em.21dtv.com/songs/60132014.mkv +TWINS+AT17-博览道fans杀人事件(演唱会),http://em.21dtv.com/songs/60010931.mkv +夏天Alex-表里不一,http://em.21dtv.com/songs/60118468.mkv +承利-巴拉巴拉萨克斯版,http://em.21dtv.com/songs/60126937.mkv +Stephanie-Blackout,http://em.21dtv.com/songs/60115639.mkv +Bonnie Anderson-Blackout,http://em.21dtv.com/songs/60104654.mkv +泳儿-不可预见只可遇见,http://em.21dtv.com/songs/60011209.mkv +萧全-不可以错过我的爱,http://em.21dtv.com/songs/60011204.mkv +杨沛宜-别看我只是一只羊,http://em.21dtv.com/songs/60010593.mkv +古倩敏-别看我只是一只羊,http://em.21dtv.com/songs/60010592.mkv +文希-八九雁来,http://em.21dtv.com/songs/60106890.mkv +郁钧剑-边疆是我温暖的家,http://em.21dtv.com/songs/60010462.mkv +叶凡-北京是你的好朋友,http://em.21dtv.com/songs/60010215.mkv +李荣浩-不将就,http://em.21dtv.com/songs/60113645.mkv +千荷-边疆的泉水清又纯,http://em.21dtv.com/songs/60089696.mkv +李谷一-边疆的泉水清又纯,http://em.21dtv.com/songs/60010461.mkv +李谷一-边疆的泉水清又纯(演唱会),http://em.21dtv.com/songs/60010460.mkv +群星合唱-半斤八两鬼马双星,http://em.21dtv.com/songs/60093054.mkv +群星-北京北京我爱北京,http://em.21dtv.com/songs/60010194.mkv +吴克群-不会痛的不叫爱情,http://em.21dtv.com/songs/60110918.mkv +吴克群-不会痛的不叫爱情,http://em.21dtv.com/songs/60110075.mkv +DJ舞曲-冰河时代(DJ),http://em.21dtv.com/songs/50000147.mkv +钟明秋-北国之春,http://em.21dtv.com/songs/60108093.mkv +云儿菲-不管有多少个明天,http://em.21dtv.com/songs/60082646.mkv +阿淡-不该相信你的承诺,http://em.21dtv.com/songs/60070542.mkv +林依轮-别告诉我你曾哭过,http://em.21dtv.com/songs/60010578.mkv +曾沛慈-不过失去了一点点,http://em.21dtv.com/songs/60106908.mkv +彭纪诱-半个您我也会接受,http://em.21dtv.com/songs/60009863.mkv +孙露-不甘寂寞,http://em.21dtv.com/songs/60118503.mkv +佚名-八个坚持八个反对,http://em.21dtv.com/songs/60009463.mkv +廖芳-不管还有多少明天,http://em.21dtv.com/songs/60087787.mkv +LUNAFLY-报告或希望看到的,http://em.21dtv.com/songs/60074627.mkv +陈子琳-兵哥哥我的心上人,http://em.21dtv.com/songs/60116337.mkv +庄心妍-不够诚实,http://em.21dtv.com/songs/60120495.mkv +佚名-包公辞朝-十二个月(无原唱),http://em.21dtv.com/songs/60009945.mkv +姚斯婷-Betrayal,http://em.21dtv.com/songs/60121556.mkv +大张伟+朱业达+张永强+房鉴泽+Young G+胡海燕-倍儿爽,http://em.21dtv.com/songs/60123800.mkv +坂本真绫-Be mine!,http://em.21dtv.com/songs/60109247.mkv +Imagine Dragons-Believer,http://em.21dtv.com/songs/60133212.mkv +American Authors-Believer,http://em.21dtv.com/songs/60104652.mkv +寿美菜子-Believe×,http://em.21dtv.com/songs/60109276.mkv +陈浩炫-Be Happy,http://em.21dtv.com/songs/60126395.mkv +雷一鸣-不到最后绝不放手,http://em.21dtv.com/songs/60123336.mkv +孙子涵-别对我说没有未来,http://em.21dtv.com/songs/60115785.mkv +苟乃鹏-不等你,http://em.21dtv.com/songs/60108852.mkv +侯强+尹力-不懂爱的人是悲哀,http://em.21dtv.com/songs/60090624.mkv +棉花糖-变成你们喜欢的我,http://em.21dtv.com/songs/60010488.mkv +刘忻-抱不住太阳的深海,http://em.21dtv.com/songs/60074628.mkv +佚名-把剥削根子全拔掉,http://em.21dtv.com/songs/60009549.mkv +东方依依-宝贝我们在一起吧,http://em.21dtv.com/songs/60126569.mkv +许慧欣-别把我当普通朋友,http://em.21dtv.com/songs/60010566.mkv +胡力-爸爸是山我是海洋,http://em.21dtv.com/songs/60009633.mkv +天驰-爸爸去哪儿英文版,http://em.21dtv.com/songs/60093667.mkv +曹龙-别把男人想的太坏,http://em.21dtv.com/songs/60080438.mkv +丁勇-爸爸妈妈咱常惦记,http://em.21dtv.com/songs/60062329.mkv +郑冰冰-爸爸妈妈听我说呀,http://em.21dtv.com/songs/60121000.mkv +乔军-八百里秦川我的家,http://em.21dtv.com/songs/60074558.mkv +李琼-八百里洞庭我的家,http://em.21dtv.com/songs/60009459.mkv +吕宏伟-八百里洞庭美如画,http://em.21dtv.com/songs/60082566.mkv +群星-八百里洞庭美如画(演唱会),http://em.21dtv.com/songs/60009458.mkv +佚名-不变的是你的美丽(无原唱),http://em.21dtv.com/songs/60011015.mkv +周笔畅-别爱我像爱个朋友,http://em.21dtv.com/songs/60010563.mkv +郑俊海-不爱我就请告诉我,http://em.21dtv.com/songs/60063994.mkv +姚可儿-不爱我就请放了我,http://em.21dtv.com/songs/60099919.mkv +团风依依-不爱我就请对我说,http://em.21dtv.com/songs/60101308.mkv +李梓菡-不爱我就别伤害我,http://em.21dtv.com/songs/60063993.mkv +李正-被爱情遗忘的男人,http://em.21dtv.com/songs/60084899.mkv +子枫-比爱情更重要的事,http://em.21dtv.com/songs/60068112.mkv +程思佳-BangBang,http://em.21dtv.com/songs/60126001.mkv +MC梦+许阁-Band Aid,http://em.21dtv.com/songs/60132105.mkv +网络歌手-不安理智,http://em.21dtv.com/songs/60120848.mkv +羽泉-把爱留给爱你的人,http://em.21dtv.com/songs/60009537.mkv +董朋-把爱放在心底掩埋,http://em.21dtv.com/songs/60096486.mkv +吴亦凡-Bad Girl,http://em.21dtv.com/songs/60116636.mkv +刘雅婷-BAD GIRL,http://em.21dtv.com/songs/60105650.mkv +林冲-被爱出卖被情打败,http://em.21dtv.com/songs/60068109.mkv +刘庆辉-Baby,http://em.21dtv.com/songs/60105636.mkv +简兮-BABY你在哪里,http://em.21dtv.com/songs/60134056.mkv +王心凌-Baby Boy,http://em.21dtv.com/songs/60102525.mkv +山下智久-抱いてセニョリータ,http://em.21dtv.com/songs/60010051.mkv +德永英明-抱きしめてあげる,http://em.21dtv.com/songs/60010052.mkv +刘有名-爱再也回不了轨道,http://em.21dtv.com/songs/60070505.mkv +许志安-爱在一程车的时间,http://em.21dtv.com/songs/60093162.mkv +储毅-爱在心中永不落幕,http://em.21dtv.com/songs/60106610.mkv +林木-爱在心中说不出口,http://em.21dtv.com/songs/60009212.mkv +乩童秩序-爱在十字路口乱走,http://em.21dtv.com/songs/60009191.mkv +曾春年-爱着你是一种快乐,http://em.21dtv.com/songs/60133769.mkv +高少华-爱着你伤了我自己,http://em.21dtv.com/songs/60121158.mkv +南台湾小姑娘-爱做梦的查某囡仔,http://em.21dtv.com/songs/60095485.mkv +萧玉芬-爱做梦的查某囡仔,http://em.21dtv.com/songs/60080023.mkv +符号-爱在另一座城市里,http://em.21dtv.com/songs/60009173.mkv +国巍-爱在华山美在华山,http://em.21dtv.com/songs/60087617.mkv +国巍-爱在华山 美在华山,http://em.21dtv.com/songs/60009165.mkv +马旭成-爱在风平浪静以后(演唱会),http://em.21dtv.com/songs/60009162.mkv +李玟-爱在八十五摄氏度,http://em.21dtv.com/songs/60009156.mkv +吴梓涵-爱一直存在,http://em.21dtv.com/songs/60115053.mkv +琪琪格-哎呀呀我们又见面(演唱会),http://em.21dtv.com/songs/60060967.mkv +岳太阳-爱要让人怎么相信,http://em.21dtv.com/songs/60123864.mkv +王露-爱已欠费情已停机,http://em.21dtv.com/songs/60063937.mkv +汤薇恩-爱延蔓,http://em.21dtv.com/songs/60129333.mkv +马常宝-爱与恨究竟有多远,http://em.21dtv.com/songs/60129796.mkv +阿清-爱一个人真的好累,http://em.21dtv.com/songs/60065817.mkv +阿影-爱一个人有什么罪,http://em.21dtv.com/songs/60115475.mkv +李度-爱一个人恨一个人,http://em.21dtv.com/songs/60009044.mkv +王露-爱也关机情已欠费,http://em.21dtv.com/songs/60009027.mkv +林子娟-爱一个不该爱的人,http://em.21dtv.com/songs/60113694.mkv +管学园-爱有多真伤有多深,http://em.21dtv.com/songs/60097938.mkv +巫启贤-爱有多深就会多远,http://em.21dtv.com/songs/60009100.mkv +欧阳大龙-奥运北京2008,http://em.21dtv.com/songs/60088164.mkv +孙露-爱与不爱都是伤害,http://em.21dtv.com/songs/60099938.mkv +张海鹏-爱与不爱都是负累,http://em.21dtv.com/songs/60009118.mkv +家园-爱像牧歌一样甜蜜,http://em.21dtv.com/songs/60114502.mkv +BABE FIRST-爱我也请爱我朋友,http://em.21dtv.com/songs/60063931.mkv +钱习坤-爱为什么那么辛苦,http://em.21dtv.com/songs/60121042.mkv +魏晨-爱我就陪我看电影,http://em.21dtv.com/songs/60109760.mkv +李晓东-爱我就嫁到草原来,http://em.21dtv.com/songs/60124084.mkv +天骏+敖都-爱我就嫁到草原来,http://em.21dtv.com/songs/60074510.mkv +王子霆-爱我就嫁到草原来(演唱会),http://em.21dtv.com/songs/60074509.mkv +余润泽-爱我就不要离开我,http://em.21dtv.com/songs/60008923.mkv +王馨-爱我就把我来追求,http://em.21dtv.com/songs/60086435.mkv +裘海正-爱我的人我爱的人,http://em.21dtv.com/songs/60088623.mkv +谭赟-爱我的人你还好吗,http://em.21dtv.com/songs/60092121.mkv +Emma Stone-Audition,http://em.21dtv.com/songs/60134668.mkv +佚名-爱他就不要伤害他,http://em.21dtv.com/songs/60008846.mkv +方圆-爱上一个有家的人,http://em.21dtv.com/songs/60066827.mkv +陈慧琳+李泉-爱是有故事的旅行,http://em.21dtv.com/songs/60008820.mkv +伍佰-爱上一个浪漫的人,http://em.21dtv.com/songs/60090588.mkv +夹子道-爱上下一个人之前,http://em.21dtv.com/songs/60008715.mkv +邰正宵-爱上我或是离开我,http://em.21dtv.com/songs/60090252.mkv +佚名-爱上我或是离开我(无原唱),http://em.21dtv.com/songs/60008714.mkv +崔广杰-爱是痛苦爱是迷途,http://em.21dtv.com/songs/60105794.mkv +雷龙-爱上你这样的情人,http://em.21dtv.com/songs/60123348.mkv +雷龙-爱上你这样的情人,http://em.21dtv.com/songs/60008700.mkv +张震岳-爱上你这样的女人,http://em.21dtv.com/songs/60089871.mkv +吕飞-爱上你这样的女人,http://em.21dtv.com/songs/60008699.mkv +阿龙正刚-爱上你这样的女人,http://em.21dtv.com/songs/60008698.mkv +张振宇-爱上你这样的女人(演唱会),http://em.21dtv.com/songs/60008697.mkv +鲁为-爱上你在我的梦里,http://em.21dtv.com/songs/60116401.mkv +杨乃文-爱上你只是我的错,http://em.21dtv.com/songs/60008703.mkv +DMDM-爱上你只是我的错,http://em.21dtv.com/songs/60008702.mkv +浩轩-爱上你我永不后悔,http://em.21dtv.com/songs/60082530.mkv +欧阳尚尚-爱上你我是真心的,http://em.21dtv.com/songs/60074483.mkv +华强-爱上你我是真心的,http://em.21dtv.com/songs/60061013.mkv +阿美-爱上你我情非得已,http://em.21dtv.com/songs/60121053.mkv +王磊-爱上你我的小宝贝,http://em.21dtv.com/songs/60104313.mkv +佚名-爱上你我从不后悔,http://em.21dtv.com/songs/60008690.mkv +曾辛博-爱上你我不能回头,http://em.21dtv.com/songs/60128066.mkv +张志林-爱上你是一种罪过,http://em.21dtv.com/songs/60008688.mkv +关燕萍-爱上你是一场意外,http://em.21dtv.com/songs/60101044.mkv +王宏天-爱上你是我犯的错,http://em.21dtv.com/songs/60130579.mkv +邹顺风-爱上你是我的福气,http://em.21dtv.com/songs/60131877.mkv +谢有才-爱上你是我的罪过,http://em.21dtv.com/songs/60063169.mkv +阿洋-爱上你 失去自己,http://em.21dtv.com/songs/60102861.mkv +刘鑫悦-爱上你是错还是对,http://em.21dtv.com/songs/60061012.mkv +明阳-爱上你是不是个错,http://em.21dtv.com/songs/60008678.mkv +韩超-爱上你如果是天意,http://em.21dtv.com/songs/60008676.mkv +李自强-爱上你苦了我自己,http://em.21dtv.com/songs/60008672.mkv +苏有朋-爱上你的一切事情,http://em.21dtv.com/songs/60008665.mkv +张振宇-爱上你等于爱上错,http://em.21dtv.com/songs/60101630.mkv +徐虎-爱上你成了我的错,http://em.21dtv.com/songs/60098384.mkv +黄美琪-爱上你不是我的罪,http://em.21dtv.com/songs/60133135.mkv +多亮-爱上你不是我的错,http://em.21dtv.com/songs/60074479.mkv +蒙克-爱上你不如忘了你,http://em.21dtv.com/songs/60066825.mkv +动力火车+林志炫-爱上你不如爱上海,http://em.21dtv.com/songs/60008657.mkv +彤杰+王麟-爱上你爱上了情歌(演唱会),http://em.21dtv.com/songs/60008656.mkv +李尚尚-爱是没终点的旅行,http://em.21dtv.com/songs/60100140.mkv +林玉英-爱受了伤为你来醉,http://em.21dtv.com/songs/60122904.mkv +张宇-爱上了你爱上了瘾,http://em.21dtv.com/songs/60091079.mkv +朱梓骁-爱上两个不同的你,http://em.21dtv.com/songs/60069208.mkv +梁佑嘉-爱是寂寞的一场戏,http://em.21dtv.com/songs/60061016.mkv +雨宗林-爱似风筝,http://em.21dtv.com/songs/60121107.mkv +小琴儿-爱上草原格桑花开,http://em.21dtv.com/songs/60061009.mkv +张启辉-爱让你我受尽了苦,http://em.21dtv.com/songs/60081263.mkv +多亮-爱让每个人的心碎,http://em.21dtv.com/songs/60069200.mkv +苏有朋-爱情战争下的俘虏,http://em.21dtv.com/songs/60008483.mkv +梁静茹-爱情之所以为爱情,http://em.21dtv.com/songs/60008494.mkv +张怡诺-爱情总是一前一后,http://em.21dtv.com/songs/60110196.mkv +崔伟亮-爱情总是让我心痛,http://em.21dtv.com/songs/60071737.mkv +黄可门-爱情中绝望的男人,http://em.21dtv.com/songs/60130928.mkv +瑶瑶-爱情曾经那么完美,http://em.21dtv.com/songs/60084844.mkv +孟杨-爱情向南幸福向北,http://em.21dtv.com/songs/60116716.mkv +韩春雨-爱情像毒酒害了谁,http://em.21dtv.com/songs/60121118.mkv +S.H.E-爱情像不合适的鞋,http://em.21dtv.com/songs/60090435.mkv +彭莉-爱情是幸福的所在,http://em.21dtv.com/songs/60122760.mkv +彭莉-爱情是幸福的所在,http://em.21dtv.com/songs/60008385.mkv +郁可唯-爱情是青春的旅行,http://em.21dtv.com/songs/60122167.mkv +流苏-爱其实没那么容易,http://em.21dtv.com/songs/60101424.mkv +情深-爱情伤了我伤了你,http://em.21dtv.com/songs/60100058.mkv +古品-爱情是个什么东西,http://em.21dtv.com/songs/60061000.mkv +弓秀丽+范星光-爱情你一半我一半,http://em.21dtv.com/songs/60084837.mkv +刘耔彤-爱情没有谁对谁错,http://em.21dtv.com/songs/60008312.mkv +伍思凯-爱情面前变得渺小,http://em.21dtv.com/songs/60008317.mkv +汪佩蓉-爱情魔力,http://em.21dtv.com/songs/60104274.mkv +于台烟-爱情抹冻只是暂时(无原唱),http://em.21dtv.com/songs/60007027.mkv +彭伟家-爱情里下了一场雪,http://em.21dtv.com/songs/60082511.mkv +孙宝奇-爱情烈酒2012,http://em.21dtv.com/songs/60063900.mkv +周兴哲-爱情教会我们的事,http://em.21dtv.com/songs/60126711.mkv +小贱-爱情风暴,http://em.21dtv.com/songs/60108458.mkv +那英-爱情的伤2001,http://em.21dtv.com/songs/60008181.mkv +佚名-爱情的骗子我问你,http://em.21dtv.com/songs/60008179.mkv +陈小云-爱情的骗子我问你,http://em.21dtv.com/songs/60008178.mkv +张津涤-爱情的路不止一条,http://em.21dtv.com/songs/60125520.mkv +郭富城-爱情到底有多危险,http://em.21dtv.com/songs/60008143.mkv +易帆-爱情曾经那么完美,http://em.21dtv.com/songs/60097939.mkv +纪晓斌-爱情不值得我流泪,http://em.21dtv.com/songs/60100941.mkv +风雷-爱情不要顺其自然,http://em.21dtv.com/songs/60110685.mkv +孟茜-爱情不要来的太快,http://em.21dtv.com/songs/60008117.mkv +格桑-爱情不像我们说的,http://em.21dtv.com/songs/60066805.mkv +孟杨-爱情保鲜期有多久,http://em.21dtv.com/songs/60074425.mkv +孙楠-爱情不能三心二意,http://em.21dtv.com/songs/60090919.mkv +吴彤+区文诗-爱情不过是场游戏(演唱会),http://em.21dtv.com/songs/60060989.mkv +寒冰-爱情不该让你心碎,http://em.21dtv.com/songs/60074426.mkv +杨幂-爱情爱情,http://em.21dtv.com/songs/60110294.mkv +乌兰托娅-爱你只是一厢情愿(演唱会),http://em.21dtv.com/songs/60063882.mkv +淮梓伦-爱你在你离开以后,http://em.21dtv.com/songs/60008038.mkv +谢知言-爱你只能给你玫瑰,http://em.21dtv.com/songs/60060988.mkv +马艺航-爱你直到天长地久,http://em.21dtv.com/songs/60117384.mkv +张惠妹-爱你直到世界末日,http://em.21dtv.com/songs/60091094.mkv +罗汉-爱你一生心甘情愿,http://em.21dtv.com/songs/60008013.mkv +蒙面哥+妲己-爱你一辈子我愿意,http://em.21dtv.com/songs/60112212.mkv +陈雷-爱你袜着祝你幸福,http://em.21dtv.com/songs/60007981.mkv +云飞儿-爱你我什么都不要,http://em.21dtv.com/songs/60106589.mkv +晨熙-爱你是我一生的错,http://em.21dtv.com/songs/60065788.mkv +姚天成-爱你是我犯下的罪,http://em.21dtv.com/songs/60086410.mkv +晟瑶+阳阳-爱你胜过爱我自己,http://em.21dtv.com/songs/60084819.mkv +三多-爱你让我支离破碎,http://em.21dtv.com/songs/60086409.mkv +孙艳-爱你让我如痴无助,http://em.21dtv.com/songs/60007948.mkv +林依伦-爱你却为何离开你,http://em.21dtv.com/songs/60089993.mkv +罗嘉良-爱你却不能在一起(无原唱),http://em.21dtv.com/songs/60007945.mkv +陈小云-爱你抹着祝你幸福(无原唱),http://em.21dtv.com/songs/60007936.mkv +陈雷-爱你抹着祝你幸福,http://em.21dtv.com/songs/60006314.mkv +张华-爱你就是我的理由,http://em.21dtv.com/songs/60007921.mkv +景岗山-爱你几回你不流泪,http://em.21dtv.com/songs/60007915.mkv +王力宏-爱你就等于爱自己(演唱会),http://em.21dtv.com/songs/60007917.mkv +朱含芳-爱你还是不该爱你,http://em.21dtv.com/songs/60007902.mkv +庾澄庆-爱你的只有一个我,http://em.21dtv.com/songs/60007887.mkv +孙艳-爱你的心坠入咖啡,http://em.21dtv.com/songs/60074401.mkv +孙楠-爱你的心无法自拔,http://em.21dtv.com/songs/60090918.mkv +天堂飘雪-爱你的心没有解药,http://em.21dtv.com/songs/60104012.mkv +吴勇滨-爱你的心留治冬天,http://em.21dtv.com/songs/60096046.mkv +李翊君-爱你的心留在冬季,http://em.21dtv.com/songs/60007880.mkv +郑素伶-爱你的心拢无变化(无原唱),http://em.21dtv.com/songs/60007881.mkv +林垂立+张秀卿-爱你的心肝啥人知,http://em.21dtv.com/songs/60007878.mkv +唐志玮-爱你的我能怎么做(无原唱),http://em.21dtv.com/songs/60007867.mkv +DEAN+DJ Friz+Heize-And July,http://em.21dtv.com/songs/60129910.mkv +田梓呈-爱你不在乎是黑天,http://em.21dtv.com/songs/60007836.mkv +许诺-爱你比永远多一天,http://em.21dtv.com/songs/60007816.mkv +欧阳尚尚-爱你不是我的罪过,http://em.21dtv.com/songs/60074398.mkv +华强-爱你不是我的罪过,http://em.21dtv.com/songs/60060986.mkv +周祥-爱你不是欺骗你的,http://em.21dtv.com/songs/60074397.mkv +任丁-爱你爱的撕心裂肺,http://em.21dtv.com/songs/60087271.mkv +任丁-爱你爱得撕心裂肺,http://em.21dtv.com/songs/60007796.mkv +周葆元-爱你爱得没有理由(无原唱),http://em.21dtv.com/songs/60007795.mkv +宫长坤-爱你爱到昏天暗地,http://em.21dtv.com/songs/60120463.mkv +Nicki Minaj-Anaconda,http://em.21dtv.com/songs/60103802.mkv +云泉法师-阿弥陀佛圣恩无限,http://em.21dtv.com/songs/60063341.mkv +陈浩炫-阿曼尼A.M.N,http://em.21dtv.com/songs/60126396.mkv +庞晓宇-爱了为什么要离开,http://em.21dtv.com/songs/60101341.mkv +洪启-阿里木江你在哪里,http://em.21dtv.com/songs/60006767.mkv +周敏萱-爱了恨了笑了疼了,http://em.21dtv.com/songs/60007697.mkv +老何-爱了很久痛了很久,http://em.21dtv.com/songs/60117130.mkv +杜鑫-爱了很久痛了很久,http://em.21dtv.com/songs/60062339.mkv +欢子-爱了给了伤了痛了,http://em.21dtv.com/songs/60097937.mkv +小齐-爱了给了伤了痛了,http://em.21dtv.com/songs/60007694.mkv +黄绍成+林琳-阿老表你要来尼嘎,http://em.21dtv.com/songs/60074279.mkv +张洪涛-爱就要大声说出来,http://em.21dtv.com/songs/60120516.mkv +林秀兰-爱就爱了错就错了(无原唱),http://em.21dtv.com/songs/60007650.mkv +iKON-Airplane,http://em.21dtv.com/songs/60115593.mkv +黎明-爱还是不要说的好,http://em.21dtv.com/songs/60007570.mkv +Mamamoo+Esna-AHH OOP!,http://em.21dtv.com/songs/60109845.mkv +KELLIE-爱和不爱都是伤悲,http://em.21dtv.com/songs/60063860.mkv +刚辉-爱过之后才知是错,http://em.21dtv.com/songs/60087433.mkv +张海-爱过我吗伤过我吗,http://em.21dtv.com/songs/60074366.mkv +江风-爱过伤过泪也流过,http://em.21dtv.com/songs/60007552.mkv +王馨-爱过你真的不后悔,http://em.21dtv.com/songs/60132746.mkv +欣哲-爱过了我就不会哭,http://em.21dtv.com/songs/60063182.mkv +涓子-爱给了你痛给了我,http://em.21dtv.com/songs/60101661.mkv +杨帆-爱过就别再说对错,http://em.21dtv.com/songs/60116942.mkv +杨子-爱过的人过得怎样,http://em.21dtv.com/songs/60102368.mkv +孟杨+凡人-爱过的你爱过的我,http://em.21dtv.com/songs/60074356.mkv +南台湾小姑娘-爱放袂离情放袂开(无原唱),http://em.21dtv.com/songs/60095487.mkv +慢摇舞曲-爱疯了ElectroBounce-2014,http://em.21dtv.com/songs/30000600.mkv +鬼否乐队-AFFLATUS,http://em.21dtv.com/songs/60131999.mkv +小宝-爱到最后才知道痛,http://em.21dtv.com/songs/60063842.mkv +雷龙-爱的越真伤得越深,http://em.21dtv.com/songs/60123349.mkv +冷漠-爱的越真伤的越深,http://em.21dtv.com/songs/60099104.mkv +雷龙-爱的越真伤的越深,http://em.21dtv.com/songs/60088934.mkv +雷龙-爱的越真伤得越深,http://em.21dtv.com/songs/60007450.mkv +阿华-爱多一些恨多一些,http://em.21dtv.com/songs/60074353.mkv +吴昊-爱的越深伤的越深,http://em.21dtv.com/songs/60007449.mkv +吴昊-爱得越深伤得越深,http://em.21dtv.com/songs/60007160.mkv +苏爱伦-爱的越多伤心更多(无原唱),http://em.21dtv.com/songs/60007448.mkv +谭咏麟-爱多一次痛多一次,http://em.21dtv.com/songs/60007487.mkv +谭咏麟-爱多一次痛多一次(演唱会),http://em.21dtv.com/songs/60007486.mkv +时嘉-爱的雪花飘满冬季,http://em.21dtv.com/songs/60096317.mkv +凤凰传奇-爱的天下,http://em.21dtv.com/songs/60117573.mkv +汤灿-爱的天空有你有我,http://em.21dtv.com/songs/60088203.mkv +罗心杰-爱的是你伤的是我,http://em.21dtv.com/songs/60007374.mkv +李俊英-爱的是你嫁的是他,http://em.21dtv.com/songs/60084805.mkv +杨廷廷-爱的那么深那么傻,http://em.21dtv.com/songs/60070455.mkv +超人-爱的零点零零一音,http://em.21dtv.com/songs/60107250.mkv +肖亮+杜雯媞-爱的记忆你曾来过,http://em.21dtv.com/songs/60117986.mkv +后来者(文志)-爱的电波,http://em.21dtv.com/songs/60103140.mkv +马健涛-俺爹俺娘,http://em.21dtv.com/songs/60110688.mkv +镜喜-爱错了人伤透了心,http://em.21dtv.com/songs/60065767.mkv +马建军+赵真-爱错了你伤透了心,http://em.21dtv.com/songs/60082464.mkv +问乐团-爱不需要联合公园,http://em.21dtv.com/songs/60126339.mkv +白冰冰-爱比啥物搁卡值钱,http://em.21dtv.com/songs/60006951.mkv +古巨基-爱变了这世界衬衣,http://em.21dtv.com/songs/60092398.mkv +何韵诗-爱变了这世界衬衣,http://em.21dtv.com/songs/60092279.mkv +杜德伟-爱变了这世界衬衣,http://em.21dtv.com/songs/60006959.mkv +王新什-爱不爱都铭心刻骨,http://em.21dtv.com/songs/60074301.mkv +NYC-よく游びよく学べ,http://em.21dtv.com/songs/60006703.mkv +大冢爱-ゾッ婚ディション,http://em.21dtv.com/songs/60006672.mkv +COLOR-ただ…逢いたくて,http://em.21dtv.com/songs/60006674.mkv +美山加恋-ねずみは米がすき,http://em.21dtv.com/songs/60006679.mkv +星泉-セーラー服と机関铳,http://em.21dtv.com/songs/60006670.mkv +谢金燕-あいしてる我爱你,http://em.21dtv.com/songs/60006638.mkv +放课后ティータイム-ぴゅあぴゅあはーと,http://em.21dtv.com/songs/60006690.mkv +佚名-かあさんおはよう,http://em.21dtv.com/songs/60006651.mkv +佚名-ありがとうあなた,http://em.21dtv.com/songs/60006645.mkv +KANA BOON-なんでもねだり,http://em.21dtv.com/songs/60134717.mkv +back number-ハッピーエンド,http://em.21dtv.com/songs/60132042.mkv +Sky Hi-アイリスライト,http://em.21dtv.com/songs/60119187.mkv +鹿乃-ディアブレイブ,http://em.21dtv.com/songs/60118204.mkv +蓝井艾露-シューゲイザー,http://em.21dtv.com/songs/60118022.mkv +堀江由衣-アシンメトリー,http://em.21dtv.com/songs/60117633.mkv +HKT48+气志团-しぇからしか!,http://em.21dtv.com/songs/60117461.mkv +佐香智久-ゲッタバンバン,http://em.21dtv.com/songs/60113253.mkv +平井坚-ソレデモシタイ,http://em.21dtv.com/songs/60111042.mkv +きゃりーぱみゅぱみゅ-もんだいガール,http://em.21dtv.com/songs/60109912.mkv +星野源-地狱でなぜ悪い(动画),http://em.21dtv.com/songs/60098414.mkv +前田敦子-セブンスコード,http://em.21dtv.com/songs/60098158.mkv +ヒルクライム(HILCRHYME)-ジグソーパズル,http://em.21dtv.com/songs/60074240.mkv +AKB48-桜の木になろう,http://em.21dtv.com/songs/60061946.mkv +幸田来未-爱を止めないで,http://em.21dtv.com/songs/60063192.mkv +DEEN-もう泣かないで,http://em.21dtv.com/songs/60093916.mkv +岚-迷宫ラブソング,http://em.21dtv.com/songs/60066154.mkv +清水翔太-マダオワラナイ,http://em.21dtv.com/songs/60063828.mkv +MIHIMARU GT-マスターピース,http://em.21dtv.com/songs/60062112.mkv +NMB48-仆らのレガッタ,http://em.21dtv.com/songs/60069699.mkv +岚-仆が仆のすべて,http://em.21dtv.com/songs/60071036.mkv +平野绫-冒险でしょでしょ,http://em.21dtv.com/songs/60068463.mkv +崛江由衣-ハレノヒ幻想曲,http://em.21dtv.com/songs/60070434.mkv +芦田爱菜-夏がやって来た!,http://em.21dtv.com/songs/60071303.mkv +AKBアイドリング!!!-チューしようぜ,http://em.21dtv.com/songs/60068024.mkv +西野カナ-たとえどんなに,http://em.21dtv.com/songs/60065752.mkv +岚-タイムカプセル(演唱会),http://em.21dtv.com/songs/60065751.mkv +乃木坂46-そんなバカな…,http://em.21dtv.com/songs/60093952.mkv +AKB48-スイート ビター,http://em.21dtv.com/songs/60069164.mkv +渡り廊下走り队7-少年よ 嘘をつけ!,http://em.21dtv.com/songs/60072377.mkv +9NINE-少女トラベラ一,http://em.21dtv.com/songs/60066303.mkv +乃木坂46-ここにいる理由,http://em.21dtv.com/songs/60103059.mkv +FRENCH KISS-キャンドルの芯,http://em.21dtv.com/songs/60065745.mkv +青山テルマ-君に会えるから,http://em.21dtv.com/songs/60072103.mkv +福山雅治-家族になろうよ,http://em.21dtv.com/songs/60062357.mkv +SOUND HORIZON-石畳の绯き悪魔,http://em.21dtv.com/songs/60071119.mkv +DO AS INFINITY-アリアドネの糸,http://em.21dtv.com/songs/60062010.mkv +山崎まさよし-アフロディーテ,http://em.21dtv.com/songs/60070427.mkv +平野绫-明日のプリズム,http://em.21dtv.com/songs/60062813.mkv +JUJU+渡边麻友+柏木由纪-明日かくるなら(演唱会),http://em.21dtv.com/songs/60066158.mkv +赤西仁-アイナルホウエ(人物),http://em.21dtv.com/songs/60098787.mkv +SKE48-アイシテラブル,http://em.21dtv.com/songs/60070426.mkv +邓小龙-走着走着就散了,http://em.21dtv.com/songs/60132971.mkv +庄心妍-走着走着就散了,http://em.21dtv.com/songs/60115893.mkv +韩东-站着坐着都想你,http://em.21dtv.com/songs/60057525.mkv +罗建章-战争之谁杀了爱(无原唱),http://em.21dtv.com/songs/60057501.mkv +亦勋-在这样一座城市,http://em.21dtv.com/songs/60109948.mkv +周慧敏-在这遥远的地方,http://em.21dtv.com/songs/60057215.mkv +佚名-在这遥远的地方(无原唱),http://em.21dtv.com/songs/60057214.mkv +金在中-只属于我的安慰,http://em.21dtv.com/songs/60079627.mkv +徐健淇-总在雨天想起你(演唱会),http://em.21dtv.com/songs/60063205.mkv +张静波-这只烟灭了以后,http://em.21dtv.com/songs/60057952.mkv +林志颖-追逐阳光的少年,http://em.21dtv.com/songs/60059558.mkv +王志萍-阵阵细雨阵阵风,http://em.21dtv.com/songs/60079582.mkv +蔡立儿-直至消失天与地,http://em.21dtv.com/songs/60132862.mkv +郑伊健-直至消失天与地(演唱会),http://em.21dtv.com/songs/60058744.mkv +梁朝伟-最珍惜仍然是你,http://em.21dtv.com/songs/60060451.mkv +梁文音-住在心里的过客,http://em.21dtv.com/songs/60105197.mkv +吴娜-走在幸福的路上,http://em.21dtv.com/songs/60059977.mkv +刘媛媛-走在幸福的路上,http://em.21dtv.com/songs/60059976.mkv +曾治伦-战争下半场聊天,http://em.21dtv.com/songs/60057500.mkv +刘建东-站在西安古城墙,http://em.21dtv.com/songs/60125185.mkv +徐再明+林爱珍-纵子无度遗后患,http://em.21dtv.com/songs/60109354.mkv +张学友-至尊三人组:幻影(演唱会),http://em.21dtv.com/songs/60058824.mkv +游鸿明-站在世界的屋顶,http://em.21dtv.com/songs/60072785.mkv +宋靖宇-载着世界的恩惠,http://em.21dtv.com/songs/60115103.mkv +李谷一-重整山河待后生,http://em.21dtv.com/songs/60059176.mkv +阎维文-再铸时代铁脊梁,http://em.21dtv.com/songs/60079475.mkv +中国娃娃-蜘蛛人陷入情网,http://em.21dtv.com/songs/60058700.mkv +Anda-早知去S大学了,http://em.21dtv.com/songs/60113125.mkv +杨晨-抓住青春的尾巴,http://em.21dtv.com/songs/60119693.mkv +海玲-站在你的旗帜下,http://em.21dtv.com/songs/60057519.mkv +赵永-站在冷冷的雨里,http://em.21dtv.com/songs/60100973.mkv +古巨基-在这离别的时候,http://em.21dtv.com/songs/60090781.mkv +王爱华-走在寂寞的情路,http://em.21dtv.com/songs/60081175.mkv +北原山猫-邹族结婚祝福歌,http://em.21dtv.com/songs/60090759.mkv +雨露-站在回忆中想你,http://em.21dtv.com/songs/60134435.mkv +彭佳慧-走在红毯那一天,http://em.21dtv.com/songs/60059975.mkv +彭佳慧-走在红毯那一天(演唱会),http://em.21dtv.com/songs/60059974.mkv +郑秀文-最终还是剩低我,http://em.21dtv.com/songs/60060457.mkv +石头-重整河山待后生,http://em.21dtv.com/songs/60120830.mkv +韦唯-重整河山待后生,http://em.21dtv.com/songs/60099608.mkv +韩红-重整河山待后生(演唱会),http://em.21dtv.com/songs/60059175.mkv +流苏-走在黄昏的街上,http://em.21dtv.com/songs/60102486.mkv +徐千雅-坐着火车去拉萨,http://em.21dtv.com/songs/60089302.mkv +彩贝与海-坐在海边秋千上,http://em.21dtv.com/songs/60135263.mkv +秋裤大叔+冷漠-坐着高铁回家乡,http://em.21dtv.com/songs/60128272.mkv +秋裤大叔+冷漠-坐着高铁回家乡,http://em.21dtv.com/songs/60108779.mkv +冷漠+赵小兵-坐着高铁回家乡,http://em.21dtv.com/songs/60094825.mkv +林佑威-在这个冷的世界,http://em.21dtv.com/songs/60057207.mkv +DEAR JANE-只知感觉失了踪,http://em.21dtv.com/songs/60122363.mkv +曾之乔-这种感觉就是爱,http://em.21dtv.com/songs/60057954.mkv +彭丽媛-在中国的大地上(演唱会),http://em.21dtv.com/songs/60057220.mkv +孙楠-早知道早该忘记,http://em.21dtv.com/songs/60057322.mkv +林子祥-佐治地球40年,http://em.21dtv.com/songs/60116045.mkv +刘心程-站在对面的从前,http://em.21dtv.com/songs/60100775.mkv +林忆莲-走在大街的女子,http://em.21dtv.com/songs/60059973.mkv +林忆莲-走在大街的女子(演唱会),http://em.21dtv.com/songs/60059972.mkv +刘德华-只知道此刻爱你(演唱会),http://em.21dtv.com/songs/60058629.mkv +乌兰图雅-站在草原望北京,http://em.21dtv.com/songs/60109933.mkv +乌兰图雅-站在草原望北京,http://em.21dtv.com/songs/60071509.mkv +韩冰+吉雅-醉在草原唱情歌,http://em.21dtv.com/songs/60129783.mkv +梅朵-站在草原唱情歌,http://em.21dtv.com/songs/60117876.mkv +沈凌云-站在草原唱情歌,http://em.21dtv.com/songs/60108673.mkv +芳蓉-坐在草原把歌唱,http://em.21dtv.com/songs/60109585.mkv +山英-在这城市写下爱,http://em.21dtv.com/songs/60057206.mkv +陈势安-整座城市的安慰,http://em.21dtv.com/songs/60124611.mkv +李猛-站在村口的妈妈,http://em.21dtv.com/songs/60057511.mkv +TWINS-踬踬步哈姆太郎,http://em.21dtv.com/songs/60058853.mkv +陈红浪-志在宝岛创新业,http://em.21dtv.com/songs/60058829.mkv +张敏浩-最真爱情的回忆,http://em.21dtv.com/songs/60121653.mkv +张翰-做最爱你的朋友,http://em.21dtv.com/songs/60070290.mkv +凤凰传奇-自由自在[演],http://em.21dtv.com/songs/60093999.mkv +陈麟+樊琪-只愿做你的新娘,http://em.21dtv.com/songs/60127570.mkv +江美琪-只有这么一辈子,http://em.21dtv.com/songs/60058622.mkv +杨培安+戴爱玲-只要再看你一眼,http://em.21dtv.com/songs/60058550.mkv +陈慧琳-只有自己和药知,http://em.21dtv.com/songs/60058624.mkv +陈慧琳-只要自己和药知,http://em.21dtv.com/songs/60058553.mkv +胡力-终于走到这一步,http://em.21dtv.com/songs/60085627.mkv +谢安琪-在雨中不能说雨,http://em.21dtv.com/songs/60082018.mkv +BOY'Z-总有一站爱上你,http://em.21dtv.com/songs/60059850.mkv +金莎-总有一天忘了你,http://em.21dtv.com/songs/60070273.mkv +李乐诗-终有一天感动你,http://em.21dtv.com/songs/60059034.mkv +谢采云-总有一天等到你,http://em.21dtv.com/songs/60059849.mkv +张学友-总有一天等到你(演唱会),http://em.21dtv.com/songs/60059848.mkv +崔萍-总有一天等到你(演唱会),http://em.21dtv.com/songs/60059847.mkv +江珠芬-只愿一生陪着你,http://em.21dtv.com/songs/60122943.mkv +张学友-只愿一生爱一人(演唱会),http://em.21dtv.com/songs/60058627.mkv +孙楠-只要有你一起唱,http://em.21dtv.com/songs/60058549.mkv +办桌阿杰+王羚柔-只要有你惦身边,http://em.21dtv.com/songs/60062226.mkv +林俊杰-只要有你的地方,http://em.21dtv.com/songs/60118717.mkv +林俊杰-只要有你的地方,http://em.21dtv.com/songs/60116038.mkv +阿原-只因有你才幸福,http://em.21dtv.com/songs/60128496.mkv +古天乐-这夜有没有天亮,http://em.21dtv.com/songs/60057902.mkv +李国毅-只有月亮全看见,http://em.21dtv.com/songs/60079626.mkv +苏慧伦-这样已经是最好(演唱会),http://em.21dtv.com/songs/60057898.mkv +越剧-烛影摇红烛光明,http://em.21dtv.com/songs/60059256.mkv +廖丽娜-只有小雨同情阮(无原唱),http://em.21dtv.com/songs/60058615.mkv +江涛-昨夜下了一夜雨,http://em.21dtv.com/songs/60090035.mkv +江源东-昨夜小楼又东风,http://em.21dtv.com/songs/60113775.mkv +费玉清-昨夜小楼又东风,http://em.21dtv.com/songs/60088685.mkv +王杰-只要心里还有爱,http://em.21dtv.com/songs/60091707.mkv +群星-总有幸福在等你,http://em.21dtv.com/songs/60122019.mkv +岑晓路-昨夜星辰昨夜风,http://em.21dtv.com/songs/60103246.mkv +韦礼安-自由,http://em.21dtv.com/songs/60126434.mkv +毅光年-怎样,http://em.21dtv.com/songs/60125840.mkv +李琦-自由(中国好声音第二季),http://em.21dtv.com/songs/60105151.mkv +云兰-这也许不是真的,http://em.21dtv.com/songs/60096174.mkv +赵真-昨夜我又梦见你,http://em.21dtv.com/songs/60060624.mkv +翟惠民-昨夜我又梦见你,http://em.21dtv.com/songs/60060623.mkv +卜学亮-只要我心里有你,http://em.21dtv.com/songs/60058542.mkv +龙影云-昨夜我为你失眠,http://em.21dtv.com/songs/60127637.mkv +黎明-只要为我爱一天,http://em.21dtv.com/songs/60058539.mkv +张迈-庄严我神州大地,http://em.21dtv.com/songs/60059470.mkv +冷漠-只因我是双鱼座,http://em.21dtv.com/songs/60121405.mkv +周显-自以为是的爱情,http://em.21dtv.com/songs/60113339.mkv +宇田-只愿为你守着约,http://em.21dtv.com/songs/60125401.mkv +王菲-只愿为你守着约(演唱会),http://em.21dtv.com/songs/60058626.mkv +刘德华-只要为你瘦一天,http://em.21dtv.com/songs/60058538.mkv +方顺吉+魏嘉榆-只要为你活一天,http://em.21dtv.com/songs/60125627.mkv +方伊琪-只要为你活一天(演唱会),http://em.21dtv.com/songs/60079622.mkv +余天-只要为你活一天,http://em.21dtv.com/songs/60058537.mkv +尤雅-只要为你活一天,http://em.21dtv.com/songs/60058536.mkv +谢霆锋-只要为你活一天,http://em.21dtv.com/songs/60058535.mkv +韩宝仪-只要为你活一天,http://em.21dtv.com/songs/60058534.mkv +蔡幸娟-只要为你活一天,http://em.21dtv.com/songs/60058533.mkv +尤雅-只要为你活一天(演唱会),http://em.21dtv.com/songs/60058532.mkv +泳儿-只要为你活一天(演唱会),http://em.21dtv.com/songs/60058531.mkv +谢霆锋-只要为你活一天(演唱会),http://em.21dtv.com/songs/60058530.mkv +姜育恒-只要为你活一天(演唱会),http://em.21dtv.com/songs/60058529.mkv +卫兰-只要我们还有心,http://em.21dtv.com/songs/60079623.mkv +张清芳-总以为错的是你,http://em.21dtv.com/songs/60059838.mkv +郑秀文-这夜我不愿离开,http://em.21dtv.com/songs/60057900.mkv +黄名伟-再也听不见再见(无原唱),http://em.21dtv.com/songs/60057003.mkv +蔡国权-这一生只愿有你,http://em.21dtv.com/songs/60093122.mkv +紫琴-只要守住你的美,http://em.21dtv.com/songs/60084565.mkv +林忆莲-这一生因有了你,http://em.21dtv.com/songs/60091457.mkv +徐怀钰-这一生一世爱你,http://em.21dtv.com/songs/60091196.mkv +王力宏-这一生一世爱你,http://em.21dtv.com/songs/60057945.mkv +佚名-正月十五是元宵,http://em.21dtv.com/songs/60058362.mkv +正月十五-正月十五送欢乐,http://em.21dtv.com/songs/60097827.mkv +正月十五+皆大欢喜-正月十五闹花灯,http://em.21dtv.com/songs/60097826.mkv +C AllStar-专业失恋30年,http://em.21dtv.com/songs/60122353.mkv +佚名-只有山歌敬亲人,http://em.21dtv.com/songs/60058609.mkv +詹少君-竹韵松风伴鸣琴,http://em.21dtv.com/songs/60059241.mkv +舞曲-在银色的月光下(慢三),http://em.21dtv.com/songs/60090129.mkv +佚名-在银色的月光下,http://em.21dtv.com/songs/60057198.mkv +阎维文-在银色的月光下,http://em.21dtv.com/songs/60057197.mkv +刘秉义-在银色的月光下,http://em.21dtv.com/songs/60057196.mkv +刘斌-在银色的月光下,http://em.21dtv.com/songs/60057195.mkv +佚名-忠于人民忠于党,http://em.21dtv.com/songs/60059006.mkv +黄龄-在一起就不孤独,http://em.21dtv.com/songs/60129855.mkv +谢雷+乔幼-只有期待再相会,http://em.21dtv.com/songs/60135754.mkv +甘萍-战友你在想什么,http://em.21dtv.com/songs/60091757.mkv +吴奇隆-只要你知道就好,http://em.21dtv.com/songs/60058526.mkv +李玲玉-只要你一份牵挂,http://em.21dtv.com/songs/60089344.mkv +邓丽君-只要你心里有我,http://em.21dtv.com/songs/60104468.mkv +黄磊-只有你让我想要,http://em.21dtv.com/songs/60058603.mkv +许志安-只要你亲口道别,http://em.21dtv.com/songs/60058518.mkv +满文军+朱桦-只要你肯对我说,http://em.21dtv.com/songs/60058509.mkv +黄乙玲-怎样你会目眶红,http://em.21dtv.com/songs/60057407.mkv +网络歌手-战友你还记得吗,http://em.21dtv.com/songs/60086227.mkv +谢采云-昨夜你对我一笑,http://em.21dtv.com/songs/60060619.mkv +蔡琴-昨夜你对我一笑,http://em.21dtv.com/songs/60060618.mkv +孙国庆-只要你不离开我,http://em.21dtv.com/songs/60081980.mkv +王建杰-只有梦中来看破(无原唱),http://em.21dtv.com/songs/60058590.mkv +张韶涵-终于,http://em.21dtv.com/songs/60125545.mkv +许志安-这一秒你好不好,http://em.21dtv.com/songs/60057927.mkv +童唱-只要妈妈露笑脸,http://em.21dtv.com/songs/60058494.mkv +衣湿乐队-走远了,http://em.21dtv.com/songs/60127376.mkv +花鼓戏-左右两难费思忖,http://em.21dtv.com/songs/60090157.mkv +朴慧秀-只要记得我一人,http://em.21dtv.com/songs/60115996.mkv +柯有伦-只要记得我的好,http://em.21dtv.com/songs/60084563.mkv +佚名-遵义会议放光辉,http://em.21dtv.com/songs/60060558.mkv +乌兰托娅-只要和你在一起,http://em.21dtv.com/songs/60084562.mkv +孙耀威-只要和你在一起,http://em.21dtv.com/songs/60058493.mkv +泽尔丹-只要和你在一起,http://em.21dtv.com/songs/60063344.mkv +孙楠+谭维维-只要和你走下去,http://em.21dtv.com/songs/60116703.mkv +金智娟-找一个像你的人,http://em.21dtv.com/songs/60057711.mkv +袁洁琼-只有钢琴陪着我,http://em.21dtv.com/songs/60114040.mkv +李茂山-只有孤单陪伴我,http://em.21dtv.com/songs/60058587.mkv +黄乙玲-只有孤单陪伴我,http://em.21dtv.com/songs/60058586.mkv +陈百潭-只有孤单陪伴我,http://em.21dtv.com/songs/60058585.mkv +杨宗宪-只有孤单陪伴我(无原唱),http://em.21dtv.com/songs/60058584.mkv +艾晴晴-找一个爱你的人,http://em.21dtv.com/songs/60088516.mkv +苏打绿-这样的一个麻烦(演唱会),http://em.21dtv.com/songs/60079553.mkv +陈奕迅-这样的一个麻烦,http://em.21dtv.com/songs/60057889.mkv +佚名-走一段想你的路,http://em.21dtv.com/songs/60059968.mkv +MY LITTLE AIRPORT-只因当时太紧张,http://em.21dtv.com/songs/60119166.mkv +胡东清-这样的感觉真好,http://em.21dtv.com/songs/60107135.mkv +娅琳-这样的爱算什么,http://em.21dtv.com/songs/60125377.mkv +娅琳-这样的爱算什么,http://em.21dtv.com/songs/60117649.mkv +邓小龙-这一次终于懂了,http://em.21dtv.com/songs/60120991.mkv +毛宁-再一次拥有明天,http://em.21dtv.com/songs/60057019.mkv +卓依婷-正月初一过新年,http://em.21dtv.com/songs/60058359.mkv +六折真人-再一次选择坚强,http://em.21dtv.com/songs/60089644.mkv +钰涵-怎样才能忘记你,http://em.21dtv.com/songs/60118114.mkv +星宇-怎样才能留住你,http://em.21dtv.com/songs/60057402.mkv +赵丽-怎样才能不想你,http://em.21dtv.com/songs/60102757.mkv +邰正宵-怎样才会喜欢我,http://em.21dtv.com/songs/60057400.mkv +许世健-做一辈子好兄弟,http://em.21dtv.com/songs/60127386.mkv +许云龙-做一辈子好兄弟,http://em.21dtv.com/songs/60114052.mkv +孙中亮-再也不想失去你,http://em.21dtv.com/songs/60101622.mkv +林华勇+龙俊祺-再也不让你伤心,http://em.21dtv.com/songs/60079472.mkv +何宗龙-再也不让你伤心,http://em.21dtv.com/songs/60070215.mkv +刘欢-再也不能这样活,http://em.21dtv.com/songs/60057001.mkv +林凡-这样爱你好可怕,http://em.21dtv.com/songs/60057881.mkv +高隆-这样爱你够不够,http://em.21dtv.com/songs/60057880.mkv +李宗盛-这样爱你对不对,http://em.21dtv.com/songs/60125698.mkv +陈淑桦-这样爱你对不对,http://em.21dtv.com/songs/60057878.mkv +李嘉-这样爱你错了吗(无原唱),http://em.21dtv.com/songs/60095611.mkv +佚名-这样爱你错了吗,http://em.21dtv.com/songs/60057877.mkv +卓依婷-真心真意谢谢你,http://em.21dtv.com/songs/60058276.mkv +刘小钰-真心真意谢谢你,http://em.21dtv.com/songs/60058275.mkv +卓依婷-真心真意过一生,http://em.21dtv.com/songs/60058274.mkv +叶倩文-真心真意过一生,http://em.21dtv.com/songs/60058273.mkv +柴俊-真心总是要付出,http://em.21dtv.com/songs/60116060.mkv +欢子-只想做你的男人,http://em.21dtv.com/songs/60058487.mkv +杨紫萍-总想走进你心里,http://em.21dtv.com/songs/60100186.mkv +黄春艳-壮乡有座清风楼,http://em.21dtv.com/songs/60059479.mkv +佚名-再相遇也许来生,http://em.21dtv.com/songs/60056995.mkv +于树临峰-只羡鸳鸯不羡仙,http://em.21dtv.com/songs/60134859.mkv +梅艳芳-只羡鸳鸯不羡仙,http://em.21dtv.com/songs/60058460.mkv +TIMEZ-摘下一万颗星星,http://em.21dtv.com/songs/60072783.mkv +张学友-只想一生跟你走,http://em.21dtv.com/songs/60058483.mkv +张学友-只想一生跟你走(演唱会),http://em.21dtv.com/songs/60058482.mkv +泳儿-只想一生跟你走(演唱会),http://em.21dtv.com/songs/60058481.mkv +曹雷-只想一生把你陪,http://em.21dtv.com/songs/60062247.mkv +董华+戴玉强-种下一棵爱情树,http://em.21dtv.com/songs/60088577.mkv +张宇-只想遇到一个人,http://em.21dtv.com/songs/60058485.mkv +吕方-只想遇到一个人,http://em.21dtv.com/songs/60058484.mkv +王洋+艾尼瓦尔江-真像一对亲兄弟,http://em.21dtv.com/songs/60129403.mkv +民歌-真象一对亲兄弟,http://em.21dtv.com/songs/60089392.mkv +佚名-真像一对亲兄弟,http://em.21dtv.com/songs/60058220.mkv +程玉莉-摘下星星做电灯,http://em.21dtv.com/songs/60062302.mkv +陈一郎-这溪无鱼别溪钓(无原唱),http://em.21dtv.com/songs/60057868.mkv +红蔷薇-真想忘记你是谁,http://em.21dtv.com/songs/60112879.mkv +侯丽娟-在希望的田野上,http://em.21dtv.com/songs/60120323.mkv +远征-在希望的田野上,http://em.21dtv.com/songs/60089495.mkv +吴春燕-在希望的田野上(演唱会),http://em.21dtv.com/songs/60063097.mkv +张也-在希望的田野上,http://em.21dtv.com/songs/60057182.mkv +杨紫萍-在希望的田野上,http://em.21dtv.com/songs/60057181.mkv +朴树-在希望的田野上,http://em.21dtv.com/songs/60057180.mkv +彭丽媛-在希望的田野上,http://em.21dtv.com/songs/60057179.mkv +张涛+张妍-在希望的田野上(演唱会),http://em.21dtv.com/songs/60067773.mkv +小城星电台-在夏天蒸发之前,http://em.21dtv.com/songs/60107681.mkv +张震岳-只想天天见到你,http://em.21dtv.com/songs/60092652.mkv +枫桥-再向上天借姻缘,http://em.21dtv.com/songs/60094956.mkv +陈茂丰-真心人拿心来换,http://em.21dtv.com/songs/60117355.mkv +呼吸乐队-只想请你看着我,http://em.21dtv.com/songs/60127860.mkv +万心+陈美慧-这些年你陪着我,http://em.21dtv.com/songs/60098067.mkv +郑福强+陈美慧-这些年你陪着我,http://em.21dtv.com/songs/60087115.mkv +徐清波-这些年你还好吗,http://em.21dtv.com/songs/60117763.mkv +曾春年-真心离伤心最近,http://em.21dtv.com/songs/60105953.mkv +景钰然-在心里等一个人,http://em.21dtv.com/songs/60105112.mkv +何雁诗-只想可以跟你走,http://em.21dtv.com/songs/60127738.mkv +何雁诗-只想可以跟你走,http://em.21dtv.com/songs/60125125.mkv +王大文-这些花要送给你,http://em.21dtv.com/songs/60113852.mkv +梁静茹-最想环游的世界,http://em.21dtv.com/songs/60060427.mkv +梁静茹-最想环游的世界(演唱会),http://em.21dtv.com/songs/60060426.mkv +郝云湖-只想和你在一起,http://em.21dtv.com/songs/60058471.mkv +佚名-知心话儿对党说,http://em.21dtv.com/songs/60058680.mkv +丁文琪-只想跟你在一起(演唱会),http://em.21dtv.com/songs/60058469.mkv +彭丽媛-走向国防现代化,http://em.21dtv.com/songs/60059962.mkv +痴心王子-最幸福的两口子,http://em.21dtv.com/songs/60060440.mkv +张明敏-真想对你吐真情,http://em.21dtv.com/songs/60058216.mkv +动力火车-忠孝东路走九遍,http://em.21dtv.com/songs/60059004.mkv +王不火-宰相肚里能撑船,http://em.21dtv.com/songs/60129377.mkv +飞翔-只想得到你的爱,http://em.21dtv.com/songs/60104595.mkv +酒醉乐歌-醉醒尘缘崆忆梦,http://em.21dtv.com/songs/60114139.mkv +蔡秋凤-真心才有好结果,http://em.21dtv.com/songs/60088606.mkv +林雨-做我最美的新娘,http://em.21dtv.com/songs/60069053.mkv +刘秉义-再为祖国献石油,http://em.21dtv.com/songs/60107541.mkv +月上林梢-做我永远的宝贝,http://em.21dtv.com/songs/60079838.mkv +彤杰+雷龙-在我心里有个你,http://em.21dtv.com/songs/60079490.mkv +陈美惠-在我心里有个你,http://em.21dtv.com/songs/60057171.mkv +李石(小旭音乐)-只为兄弟战今生,http://em.21dtv.com/songs/60079616.mkv +桑吉卓玛-只为途中遇见你,http://em.21dtv.com/songs/60127123.mkv +孙艳-只为途中遇见你,http://em.21dtv.com/songs/60118502.mkv +夹子乐团-昨晚他们在干吗,http://em.21dtv.com/songs/60087628.mkv +夹子太硬啦-昨晚他们在干嘛,http://em.21dtv.com/songs/60060600.mkv +叶俊华-赞我山区江夏黄,http://em.21dtv.com/songs/60093702.mkv +刘向圆-只为人民谋幸福(演唱会),http://em.21dtv.com/songs/60065485.mkv +周华健-昨晚你已嫁给谁,http://em.21dtv.com/songs/60060599.mkv +费玉清-只为你清清的梦,http://em.21dtv.com/songs/60058455.mkv +汪蕊-只为你的平安夜,http://em.21dtv.com/songs/60058452.mkv +巫启贤-走我没走过的路,http://em.21dtv.com/songs/60125460.mkv +樊少华-再为妈妈唱首歌,http://em.21dtv.com/songs/60066574.mkv +张袁媛-致我们的后青春,http://em.21dtv.com/songs/60070247.mkv +徐誉滕-坐我老婆好不好,http://em.21dtv.com/songs/60091207.mkv +徐誉滕-做我老婆好不好,http://em.21dtv.com/songs/60060737.mkv +戏曲-张文贵践约临安,http://em.21dtv.com/songs/60092727.mkv +刘德华-在我的胸前安歇,http://em.21dtv.com/songs/60057157.mkv +路默依-做我的爱情对手,http://em.21dtv.com/songs/60087168.mkv +丝绒公路-只为灿烂的瞬间,http://em.21dtv.com/songs/60125077.mkv +刘欢-昨天下了一夜雨,http://em.21dtv.com/songs/60060595.mkv +江涛-昨天下了一夜雨(演唱会),http://em.21dtv.com/songs/60060594.mkv +佚名-昨天晚上刮着风,http://em.21dtv.com/songs/60060590.mkv +张博文-自讨没趣的哭泣,http://em.21dtv.com/songs/60126864.mkv +伍思凯-这条路你陪我走,http://em.21dtv.com/songs/60057862.mkv +邝美云-昨天今天下雨天,http://em.21dtv.com/songs/60111429.mkv +彭家丽-昨天今天下雨天,http://em.21dtv.com/songs/60060584.mkv +红尘独舞-赞声祖国你最好,http://em.21dtv.com/songs/60061876.mkv +陈后华-赞声祖国你最好,http://em.21dtv.com/songs/60061875.mkv +卢巧音-至少走得比你早,http://em.21dtv.com/songs/60058822.mkv +东方神起-至少要知道这个,http://em.21dtv.com/songs/60110819.mkv +郭富城-再生亦只等待你,http://em.21dtv.com/songs/60056954.mkv +吴依琳-再说一声恭喜你,http://em.21dtv.com/songs/60079470.mkv +四个女生-再说一声恭喜你,http://em.21dtv.com/songs/60056985.mkv +牛欣欣-再说一声恭喜你,http://em.21dtv.com/songs/60056984.mkv +佚名-这是一个好所在,http://em.21dtv.com/songs/60057850.mkv +傅振辉-这是一个好所在,http://em.21dtv.com/songs/60057849.mkv +陈明-再说一次我愿意,http://em.21dtv.com/songs/60121080.mkv +刘德华-再说一次我爱你,http://em.21dtv.com/songs/60056982.mkv +刘承俊+谢娜-再说一次我爱你,http://em.21dtv.com/songs/60056981.mkv +刘德华-再说一次我爱你(演唱会),http://em.21dtv.com/songs/60056980.mkv +孙兴-再说一次你爱我,http://em.21dtv.com/songs/60056979.mkv +杨小曼-再说一遍我爱你,http://em.21dtv.com/songs/60119689.mkv +梁一贞+施文彬-只是想要告诉你,http://em.21dtv.com/songs/60058445.mkv +成于申-最是销魂这段情,http://em.21dtv.com/songs/60105913.mkv +李明洋-最熟悉的生份人,http://em.21dtv.com/songs/60081066.mkv +秦御峰-最熟悉的陌生人,http://em.21dtv.com/songs/60120839.mkv +后弦-最熟悉的陌生人,http://em.21dtv.com/songs/60101285.mkv +彭永琛-最熟悉的陌生人,http://em.21dtv.com/songs/60100047.mkv +萧亚轩-最熟悉的陌生人,http://em.21dtv.com/songs/60060418.mkv +王介安-最熟悉的陌生人,http://em.21dtv.com/songs/60060417.mkv +萧亚轩-最熟悉的陌生人(演唱会),http://em.21dtv.com/songs/60060416.mkv +李琦-真实(中国好声音第二季),http://em.21dtv.com/songs/60105150.mkv +郑秀文-总算为情认真过,http://em.21dtv.com/songs/60059836.mkv +郭静-总算我们也爱过,http://em.21dtv.com/songs/60059837.mkv +王鹏-这山望见那山高,http://em.21dtv.com/songs/60120801.mkv +吕继宏-战士为国守安详,http://em.21dtv.com/songs/60079519.mkv +李伟宾-总是为爱伤了心,http://em.21dtv.com/songs/60087979.mkv +王栎鑫-再说声sa lang hae yo,http://em.21dtv.com/songs/60056976.mkv +B1A4-这是什么事情啊,http://em.21dtv.com/songs/60103002.mkv +魏大勋+谭松韵-致姗姗来迟的你,http://em.21dtv.com/songs/60136016.mkv +林宥嘉+阿肆-致姗姗来迟的你,http://em.21dtv.com/songs/60128127.mkv +于久翔-这是谁家的男孩,http://em.21dtv.com/songs/60114975.mkv +呼可儿-专属Party,http://em.21dtv.com/songs/60128910.mkv +贺世哲-只是偶尔会想你,http://em.21dtv.com/songs/60135765.mkv +贺世哲-只是偶尔会想你,http://em.21dtv.com/songs/60122132.mkv +许茹芸-再说你也不会懂,http://em.21dtv.com/songs/60056975.mkv +赵咏华-在沙漠的第七天,http://em.21dtv.com/songs/60057130.mkv +廖浩明-转身离开的时候,http://em.21dtv.com/songs/60070265.mkv +侃侃-隔世离空的红颜,http://em.21dtv.com/songs/60110225.mkv +周迅-这世界唯一的你,http://em.21dtv.com/songs/60071514.mkv +唐美华-转身就是一辈子,http://em.21dtv.com/songs/60133517.mkv +佚名-众手浇开幸福花,http://em.21dtv.com/songs/60059088.mkv +佚名-战士就该上战场,http://em.21dtv.com/songs/60057481.mkv +吕继宏-在世界的眼睛里,http://em.21dtv.com/songs/60057131.mkv +佚名-这世界不会寂寞,http://em.21dtv.com/songs/60057837.mkv +孙子涵-只剩回忆这首歌,http://em.21dtv.com/songs/60081392.mkv +林子祥-至少还有我在乎,http://em.21dtv.com/songs/60058819.mkv +刘德华-最受欢迎男歌手(演唱会),http://em.21dtv.com/songs/60060415.mkv +徐千雅-坐上火车去拉萨,http://em.21dtv.com/songs/60060686.mkv +雪山朗玛组合-坐上火车去北京,http://em.21dtv.com/songs/60060685.mkv +徐子崴+金美儿-坐上高铁去北京,http://em.21dtv.com/songs/60106877.mkv +徐子崴+金美儿-坐上高铁去北京,http://em.21dtv.com/songs/60097858.mkv +李菓-这首歌会不会红,http://em.21dtv.com/songs/60130439.mkv +梧桐雨组合+蔡献华+王丽+王薪博-这首歌儿唱给你,http://em.21dtv.com/songs/60122924.mkv +李双江-战士歌唱毛主席,http://em.21dtv.com/songs/60057480.mkv +阎维文-战士歌唱东方红,http://em.21dtv.com/songs/60057479.mkv +林志炫-至少对你有份爱,http://em.21dtv.com/songs/60091470.mkv +李双江-战士第二个故乡,http://em.21dtv.com/songs/60057478.mkv +郑玉华-郑氏大厝我的家,http://em.21dtv.com/songs/60134316.mkv +卢巧音-至少比你走得早,http://em.21dtv.com/songs/60058800.mkv +佚名-中山北路行七摆,http://em.21dtv.com/songs/60058982.mkv +方瑞娥-中山北路行七摆,http://em.21dtv.com/songs/60058981.mkv +丁当-只是不够爱自己,http://em.21dtv.com/songs/60120265.mkv +丁当-只是不够爱自己,http://em.21dtv.com/songs/60119218.mkv +郭富城-最深爱的人是你,http://em.21dtv.com/songs/60060408.mkv +蔡丽津-かあさんㄟ掌声,http://em.21dtv.com/songs/60135697.mkv +薛松-做人要像沙和尚,http://em.21dtv.com/songs/60124447.mkv +陈宝珠-做人新抱甚艰难,http://em.21dtv.com/songs/60060727.mkv +陈宝珠-做人新抱甚艰难(演唱会),http://em.21dtv.com/songs/60060726.mkv +佚名-做人就要讲道理(无原唱),http://em.21dtv.com/songs/60060724.mkv +付笛生-众人划桨开大船,http://em.21dtv.com/songs/60133352.mkv +付笛声-众人划桨开大船,http://em.21dtv.com/songs/60059084.mkv +付笛声-众人划桨开大船(演唱会),http://em.21dtv.com/songs/60059083.mkv +杨谨+唐广义-做人不能太伦敦,http://em.21dtv.com/songs/60070289.mkv +傅秋英-做人爱知人家情,http://em.21dtv.com/songs/60060722.mkv +张驰-真情总被无情伤,http://em.21dtv.com/songs/60086246.mkv +佚名-真情真爱拢骗人,http://em.21dtv.com/songs/60058185.mkv +陈笑玮-最亲最爱的祖国,http://em.21dtv.com/songs/60066622.mkv +董文华-真情永远伴着您,http://em.21dtv.com/songs/60092005.mkv +董文华-真情永远伴着你,http://em.21dtv.com/songs/60058182.mkv +唐禹哲-只欠一句我爱你,http://em.21dtv.com/songs/60062987.mkv +郭猛-真情有爱暖人间,http://em.21dtv.com/songs/60127489.mkv +佚名-只求相爱过一生,http://em.21dtv.com/songs/60058437.mkv +陈秋霞-只求相爱过一生,http://em.21dtv.com/songs/60058436.mkv +赵本山-只求无愧过百年,http://em.21dtv.com/songs/60058435.mkv +赵本水-只求无愧过百年(演唱会),http://em.21dtv.com/songs/60066594.mkv +张秀卿-真情锁置心窗内(无原唱),http://em.21dtv.com/songs/60058174.mkv +李芊慧-真情胜过皇帝命(无原唱),http://em.21dtv.com/songs/60095634.mkv +陆海涛+米粒-真情胜过高富帅,http://em.21dtv.com/songs/60070240.mkv +陈浩民+韩元元-在牵手的一瞬间,http://em.21dtv.com/songs/60079485.mkv +张德兰-在情朗的天空下(演唱会),http://em.21dtv.com/songs/60068977.mkv +刘一祯-真情还在老地方,http://em.21dtv.com/songs/60058158.mkv +越剧-仲卿不要性命捐,http://em.21dtv.com/songs/60059077.mkv +傅佩嘉-做朋友也有界限,http://em.21dtv.com/songs/60060721.mkv +韦小天-做朋友就做朋友,http://em.21dtv.com/songs/60103703.mkv +孙协志+叶胜钦-作朋友诚恳逗阵,http://em.21dtv.com/songs/60095501.mkv +郭巨-做朋友诚恳逗阵(无原唱),http://em.21dtv.com/songs/60060720.mkv +群星-作朋友诚恳逗阵,http://em.21dtv.com/songs/60060675.mkv +京剧-只盼深山出太阳(京剧),http://em.21dtv.com/songs/60090525.mkv +天爱-只盼千里共婵娟,http://em.21dtv.com/songs/60130218.mkv +刘德华-最怕你跟别人睡,http://em.21dtv.com/songs/60060396.mkv +王翔-只怕没你在身边,http://em.21dtv.com/songs/60065484.mkv +成云刚+卡密儿-最怕结果爱不起,http://em.21dtv.com/songs/60117766.mkv +大哲-在你之前一个她,http://em.21dtv.com/songs/60100817.mkv +大哲-在你之前有个她,http://em.21dtv.com/songs/60065457.mkv +方力申-在你遥远的附近,http://em.21dtv.com/songs/60057121.mkv +德格叶-在那遥远的地方,http://em.21dtv.com/songs/60126920.mkv +腾格尔-在那遥远的地方,http://em.21dtv.com/songs/60126089.mkv +马蹄帮乐团-在那遥远的地方,http://em.21dtv.com/songs/60124717.mkv +刘晓庆+二手玫瑰-在那遥远的地方,http://em.21dtv.com/songs/60123680.mkv +谭维维+妙音汉子-在那遥远的地方,http://em.21dtv.com/songs/60111406.mkv +孙睦涵-在那遥远的地方,http://em.21dtv.com/songs/60110993.mkv +张英席-在那遥远的地方,http://em.21dtv.com/songs/60109335.mkv +游子组合-在那遥远的地方,http://em.21dtv.com/songs/60107881.mkv +韩磊-在那遥远的地方,http://em.21dtv.com/songs/60099613.mkv +华晨宇-在那遥远的地方,http://em.21dtv.com/songs/60096205.mkv +景仪-在那遥远的地方,http://em.21dtv.com/songs/60089926.mkv +阿来-在那遥远的地方,http://em.21dtv.com/songs/60087100.mkv +李维真-在那遥远的地方,http://em.21dtv.com/songs/60070218.mkv +周强-在那遥远的地方,http://em.21dtv.com/songs/60057099.mkv +佚名-在那遥远的地方,http://em.21dtv.com/songs/60057098.mkv +阎维文-在那遥远的地方,http://em.21dtv.com/songs/60057097.mkv +吴雁泽-在那遥远的地方,http://em.21dtv.com/songs/60057096.mkv +王力宏-在那遥远的地方,http://em.21dtv.com/songs/60057095.mkv +潘晓峰-在那遥远的地方,http://em.21dtv.com/songs/60057094.mkv +娄乾贵+刘维维-在那遥远的地方,http://em.21dtv.com/songs/60057093.mkv +巴郎百川-在那遥远的地方,http://em.21dtv.com/songs/60057092.mkv +佟铁鑫+柯以敏-在那遥远的地方(演唱会),http://em.21dtv.com/songs/60057091.mkv +刀郎-在那遥远的地方,http://em.21dtv.com/songs/60070219.mkv +王宏伟-在那遥远的地方,http://em.21dtv.com/songs/60067769.mkv +马丽-怎能遗忘邓丽君,http://em.21dtv.com/songs/60120133.mkv +蔡琴-在那银色月光下(演唱会),http://em.21dtv.com/songs/60057101.mkv +BEYOND-祝您愉快(双语种)(演唱会),http://em.21dtv.com/songs/60059394.mkv +洛伟-做宁一定要洛伟,http://em.21dtv.com/songs/60106069.mkv +沙子浪-在那下雪的夜晚,http://em.21dtv.com/songs/60065455.mkv +唐僧王永-怎能伤透我的心,http://em.21dtv.com/songs/60128919.mkv +新街口组合+Mona Lavi-只能陪你到这里,http://em.21dtv.com/songs/60130366.mkv +东城卫-在你离开那一天,http://em.21dtv.com/songs/60057109.mkv +卓依婷-祝你今年赚大钱,http://em.21dtv.com/songs/60059366.mkv +群星-祝你今年好运气,http://em.21dtv.com/songs/60079691.mkv +巧千金-祝你今年好运气,http://em.21dtv.com/songs/60079690.mkv +龙飘飘-祝你今年好运气,http://em.21dtv.com/songs/60065504.mkv +彭羚-只能回忆的情人,http://em.21dtv.com/songs/60058419.mkv +赵之璧-在你和天空之间,http://em.21dtv.com/songs/60057107.mkv +杨丞琳-在你怀里的微笑(演唱会),http://em.21dtv.com/songs/60057108.mkv +张二丰-宅男给剩女的歌,http://em.21dtv.com/songs/60100860.mkv +雨宗林-怎能放开你的手,http://em.21dtv.com/songs/60066584.mkv +小北-做你的专属大白,http://em.21dtv.com/songs/60126798.mkv +魏新雨-做你的幸福宝贝,http://em.21dtv.com/songs/60104620.mkv +张羽莀-做你的男人好累,http://em.21dtv.com/songs/60105864.mkv +魏潇霞-做你的女人好累,http://em.21dtv.com/songs/60027290.mkv +冯晓菲-做你的儿女真好,http://em.21dtv.com/songs/60108323.mkv +姚天成-走南闯北只为你,http://em.21dtv.com/songs/60119400.mkv +孙悦-在那不远的地方,http://em.21dtv.com/songs/60079480.mkv +晓晓+猎人-最美最美的歌曲,http://em.21dtv.com/songs/60100084.mkv +李印贺-折磨自己戒掉你,http://em.21dtv.com/songs/60105135.mkv +王歌伦-再没资格说爱你,http://em.21dtv.com/songs/60110403.mkv +卓文萱-怎么知道你爱我,http://em.21dtv.com/songs/60057389.mkv +佚名-载满友谊去远行,http://em.21dtv.com/songs/60056710.mkv +胡杰夕-再没有天长地久,http://em.21dtv.com/songs/60081321.mkv +易欣-再没有你的温柔,http://em.21dtv.com/songs/60056934.mkv +王思焱-醉美英德欢迎你,http://em.21dtv.com/songs/60119810.mkv +蔡晓-怎么信了你的邪,http://em.21dtv.com/songs/60068985.mkv +好妹妹-周末我们去海边,http://em.21dtv.com/songs/60099914.mkv +沙宝亮-怎么说我不爱你,http://em.21dtv.com/songs/60115263.mkv +张惠春-怎么说我不爱你,http://em.21dtv.com/songs/60113467.mkv +张惠春-怎么说我不爱你,http://em.21dtv.com/songs/60112670.mkv +萧敬腾+唐一嘉-怎么说我不爱你,http://em.21dtv.com/songs/60094665.mkv +李琦-怎么说我不爱你,http://em.21dtv.com/songs/60081595.mkv +萧敬腾-怎么说我不爱你,http://em.21dtv.com/songs/60061879.mkv +豫剧-咱们说说知心话,http://em.21dtv.com/songs/60134554.mkv +陈岩+红蔷薇-最美时光都给你,http://em.21dtv.com/songs/60100991.mkv +蔡献华-最美时光都给你,http://em.21dtv.com/songs/60100955.mkv +龙影云-怎么舍得离开你,http://em.21dtv.com/songs/60109070.mkv +冷酷-怎么舍得离开你,http://em.21dtv.com/songs/60108326.mkv +群星-咱们三班有力量,http://em.21dtv.com/songs/60110459.mkv +马宏程-怎么忍心去伤害,http://em.21dtv.com/songs/60097896.mkv +山野-怎么忍心放开手,http://em.21dtv.com/songs/60057375.mkv +驿动儿+海浪飞歌-最美人间四月天,http://em.21dtv.com/songs/60122285.mkv +暴林-怎么能够无所谓,http://em.21dtv.com/songs/60113572.mkv +郭玲-祝妈妈长命百岁,http://em.21dtv.com/songs/60059358.mkv +郑嘉颖-最美丽的第七天,http://em.21dtv.com/songs/60060383.mkv +泳儿-最美丽的第七天,http://em.21dtv.com/songs/60060382.mkv +寒武纪-怎么了不爱了吗,http://em.21dtv.com/songs/60099960.mkv +吴听彻-怎么可能会寂寞,http://em.21dtv.com/songs/60057364.mkv +于文华-芝麻开花节节高,http://em.21dtv.com/songs/60058634.mkv +小逸岑-怎么哭才能证明,http://em.21dtv.com/songs/60120478.mkv +沈波-再美好也是曾经,http://em.21dtv.com/songs/60135485.mkv +郑源-怎么狠心伤害我,http://em.21dtv.com/songs/60088771.mkv +刘新财(财郎)-怎么狠心说分手,http://em.21dtv.com/songs/60105638.mkv +财郎-怎么狠心说分手,http://em.21dtv.com/songs/60094302.mkv +永邦-怎么还是没人爱,http://em.21dtv.com/songs/60057353.mkv +刘向圆-咱们工人有力量,http://em.21dtv.com/songs/60079493.mkv +佚名-咱们工人有力量,http://em.21dtv.com/songs/60057248.mkv +单色凌-走马观花的礼物,http://em.21dtv.com/songs/60115734.mkv +干露露-怎么感动不了你,http://em.21dtv.com/songs/60098321.mkv +张清芳-周末的夜我不哭,http://em.21dtv.com/songs/60059182.mkv +彭运铝-这么多年没回家,http://em.21dtv.com/songs/60131428.mkv +章小军-中脉道和一家亲,http://em.21dtv.com/songs/60058975.mkv +陈又铭-怎么才能忘记你,http://em.21dtv.com/songs/60101554.mkv +郑允武-最美不过中国梦,http://em.21dtv.com/songs/60113011.mkv +孙子涵-最美不过初相见,http://em.21dtv.com/songs/60128961.mkv +蔡旻佑-怎么爱你都不够,http://em.21dtv.com/songs/60070223.mkv +魏佳艺-怎么爱都爱不够,http://em.21dtv.com/songs/60120151.mkv +余天-咱拢坐着同只船,http://em.21dtv.com/songs/60057243.mkv +咏峰-这里最早叫中国,http://em.21dtv.com/songs/60079548.mkv +2个女生-茱丽叶与祝英台,http://em.21dtv.com/songs/60059208.mkv +2 YOUNG SISTERS-茱丽叶与祝英台,http://em.21dtv.com/songs/60059207.mkv +黄耀明-左邻右里+穷风流(演唱会),http://em.21dtv.com/songs/60060642.mkv +苏小明-这里已经是春天,http://em.21dtv.com/songs/60057822.mkv +孙羽幽-^朱丽叶的秋天,http://em.21dtv.com/songs/60104929.mkv +黄小琥-重来,http://em.21dtv.com/songs/60118215.mkv +星君-醉了为谁流眼泪,http://em.21dtv.com/songs/60086304.mkv +佚名-这里头有啥文章,http://em.21dtv.com/songs/60057820.mkv +小刚-支离破碎的思念,http://em.21dtv.com/songs/60090983.mkv +爱朵女孩-这里没有陌生人,http://em.21dtv.com/songs/60079547.mkv +李健-紫罗兰,http://em.21dtv.com/songs/60102326.mkv +秀兰玛雅-这里离家有多远,http://em.21dtv.com/songs/60057817.mkv +蔡依林-栅栏间隙偷窥你,http://em.21dtv.com/songs/60071506.mkv +黎毅-走了就别再回头,http://em.21dtv.com/songs/60086282.mkv +代理仁-走了就别后悔原,http://em.21dtv.com/songs/60098091.mkv +徐凯+颜慧萍-自力更生的星球,http://em.21dtv.com/songs/60125561.mkv +佚名-咱来干杯不可醉(无原唱),http://em.21dtv.com/songs/60057238.mkv +佚名-咱来干杯不可醉,http://em.21dtv.com/songs/60034468.mkv +天籁天-竹篱笆外野菊花,http://em.21dtv.com/songs/60132337.mkv +周慧敏-怎可以没有感情,http://em.21dtv.com/songs/60057342.mkv +梅艳芳-怎可以没有感情,http://em.21dtv.com/songs/60057341.mkv +天孪兄弟-张开梦想的翅膀,http://em.21dtv.com/songs/60086229.mkv +代领-再见最美的时光,http://em.21dtv.com/songs/60103876.mkv +都智文-转角之后是你吗,http://em.21dtv.com/songs/60116300.mkv +蔡国权-再见也许不再会,http://em.21dtv.com/songs/60056912.mkv +暴林+张怡诺-再叫一声亲爱的,http://em.21dtv.com/songs/60116868.mkv +宋伟峰-曾经有谁会了解,http://em.21dtv.com/songs/60062921.mkv +林萍-走近些再走近些,http://em.21dtv.com/songs/60059917.mkv +陈红-最近心情好不好,http://em.21dtv.com/songs/60060349.mkv +佚名-湛江新貌传万里,http://em.21dtv.com/songs/60079526.mkv +佚名-壮锦献给毛主席,http://em.21dtv.com/songs/60059478.mkv +符致逸-再见,http://em.21dtv.com/songs/60119863.mkv +孙楠-拯救,http://em.21dtv.com/songs/60119418.mkv +许钧-自己,http://em.21dtv.com/songs/60108888.mkv +郑中基-最近我让自己忙,http://em.21dtv.com/songs/60060347.mkv +我的爱人,http://em.21dtv.com/songs/60120768.mkv +群星-这就是我们的爱,http://em.21dtv.com/songs/60062855.mkv +张柏芝-长江七号爱地球,http://em.21dtv.com/songs/60087824.mkv +杜天皓-最佳偶像新人奖,http://em.21dtv.com/songs/60122876.mkv +成龙-再见宁愿在梦中,http://em.21dtv.com/songs/60056888.mkv +小泾县-张杰你听见了吗,http://em.21dtv.com/songs/60116742.mkv +白晶-曾经那爱喝的你,http://em.21dtv.com/songs/60066585.mkv +枫舞+晓依-走进明天的幸福,http://em.21dtv.com/songs/60106029.mkv +庄秋玉-湛江美丽的海湾,http://em.21dtv.com/songs/60126850.mkv +水木年华-再见了最爱的人,http://em.21dtv.com/songs/60056873.mkv +刘海波-再见了最爱的人,http://em.21dtv.com/songs/60056872.mkv +萨谷格桑-再见了喜马拉雅,http://em.21dtv.com/songs/60056871.mkv +庞晓宇+耀洋-再见了我的宝贝,http://em.21dtv.com/songs/60056870.mkv +佚名-再见啦别说什么(无原唱),http://em.21dtv.com/songs/60056863.mkv +七郎-庄脚卡有人情味,http://em.21dtv.com/songs/60059469.mkv +张艺-张家界我的家乡,http://em.21dtv.com/songs/60121671.mkv +何龙雨-醉酒驾车真可怕,http://em.21dtv.com/songs/60113261.mkv +宋祖英-紫荆花开别样红,http://em.21dtv.com/songs/60059648.mkv +孤独的心,http://em.21dtv.com/songs/60129300.mkv +杜德伟-拯救地球+脱掉,http://em.21dtv.com/songs/60097870.mkv +童唱-自己跌倒自己爬,http://em.21dtv.com/songs/60059698.mkv +吉娜-走进草原看美景,http://em.21dtv.com/songs/60111746.mkv +罗俊霖-再见成都我的爱,http://em.21dtv.com/songs/60056850.mkv +皓天+吕玟-再见不必说抱歉,http://em.21dtv.com/songs/60079459.mkv +吕玟+皓天-再见不必说抱歉,http://em.21dtv.com/songs/60068968.mkv +金月女-再见吧北京小姐,http://em.21dtv.com/songs/60100518.mkv +芬芳飘香-再见吧北京小姐,http://em.21dtv.com/songs/60087096.mkv +周游格-最后总要说再见,http://em.21dtv.com/songs/60099886.mkv +王昊-只恨自己爱错你,http://em.21dtv.com/songs/60079608.mkv +黄立行-最后只好躺下来,http://em.21dtv.com/songs/60060306.mkv +阎维文-中华有我四季春,http://em.21dtv.com/songs/60058967.mkv +蔡兴麟-最后一阙小怨曲,http://em.21dtv.com/songs/60060285.mkv +京婧-最后一刻才明白,http://em.21dtv.com/songs/60060280.mkv +宋沛江-最后一句我爱你,http://em.21dtv.com/songs/60112639.mkv +夹子-最后一个我吃了,http://em.21dtv.com/songs/60089765.mkv +军嫂组合-再行一个军礼吧,http://em.21dtv.com/songs/60099767.mkv +姜玉阳-最后一次相依偎,http://em.21dtv.com/songs/60060261.mkv +李金龙+竣善-最后一次为你哭,http://em.21dtv.com/songs/60079794.mkv +将军-最后一次说爱你,http://em.21dtv.com/songs/60104957.mkv +邵欣哲-最后一次说爱你,http://em.21dtv.com/songs/60079792.mkv +欣哲-最后一次说爱你,http://em.21dtv.com/songs/60067829.mkv +蓝雨-最后一次的温柔,http://em.21dtv.com/songs/60060253.mkv +叶启田-最后一班夜快车,http://em.21dtv.com/songs/60060243.mkv +佚名-最后一班夜快车,http://em.21dtv.com/songs/60038033.mkv +庄孝纬+张菱-再会无缘的情人,http://em.21dtv.com/songs/60056798.mkv +李羿慧+陈波-再会无缘的爱人,http://em.21dtv.com/songs/60056797.mkv +本多RURU-真好我需要爱情,http://em.21dtv.com/songs/60058128.mkv +刘洋洋-最后为你唱的歌,http://em.21dtv.com/songs/60120365.mkv +安崇艺-最后我们说再见,http://em.21dtv.com/songs/60114494.mkv +赖伟锋-最后我们都变了,http://em.21dtv.com/songs/60115418.mkv +小贱-最后是我开了口,http://em.21dtv.com/songs/60090994.mkv +胡瓜-在乎你这个朋友,http://em.21dtv.com/songs/60057058.mkv +燕妮-在海南歌甜花香,http://em.21dtv.com/songs/60057049.mkv +杨五琴-中华民族一家亲,http://em.21dtv.com/songs/60119683.mkv +任明-中华美德代代传,http://em.21dtv.com/songs/60086261.mkv +庄学忠-再会啦心爱的人,http://em.21dtv.com/songs/60056784.mkv +王识贤-再会啦心爱的人,http://em.21dtv.com/songs/60056783.mkv +陈思安-再会啦心爱的人,http://em.21dtv.com/songs/60056782.mkv +邱芸子-再会啦无缘的人,http://em.21dtv.com/songs/60056781.mkv +李嘉-再会啦!台北市(无原唱),http://em.21dtv.com/songs/60095602.mkv +侯美仪-再会啦初恋的人,http://em.21dtv.com/songs/60090628.mkv +布川-最后哭着说再见,http://em.21dtv.com/songs/60087157.mkv +刘沛洋-醉后决定爱上你,http://em.21dtv.com/songs/60104837.mkv +陈胜屿-最后还是说再见,http://em.21dtv.com/songs/60079790.mkv +群星合唱-中华儿女当自强,http://em.21dtv.com/songs/60091868.mkv +蔡国权-最后的一班渡轮,http://em.21dtv.com/songs/60060218.mkv +周柏豪-最后的三分十六,http://em.21dtv.com/songs/60060198.mkv +4 IN LOVE-最好的就在眼前,http://em.21dtv.com/songs/60060148.mkv +沈庆-最后的电台情歌,http://em.21dtv.com/songs/60104276.mkv +毛宁+那英-总会等到那一天(演唱会),http://em.21dtv.com/songs/60059826.mkv +佚名-最好的称呼战友,http://em.21dtv.com/songs/60060147.mkv +知英-最后のサヨナラ,http://em.21dtv.com/songs/60135601.mkv +李丹阳-中国正是好时候,http://em.21dtv.com/songs/60058937.mkv +花鼓戏-只怪自己少主张,http://em.21dtv.com/songs/60090150.mkv +童唱-祖国祖国我爱你,http://em.21dtv.com/songs/60060028.mkv +郑咏-祖国永在我心中,http://em.21dtv.com/songs/60113012.mkv +梦鸽-祖国永远祝福您,http://em.21dtv.com/songs/60060020.mkv +刘一祯-祖国永远是我家,http://em.21dtv.com/songs/60087381.mkv +李双江-祖国永远是春天,http://em.21dtv.com/songs/60087990.mkv +代理仁-这个炎热的夏天,http://em.21dtv.com/songs/60068995.mkv +张振富-祖国一片新面貌,http://em.21dtv.com/songs/60060019.mkv +佚名-祖国一片新面貌,http://em.21dtv.com/songs/60060018.mkv +罗逻圣+翁家豪-中国有个罗逻圣,http://em.21dtv.com/songs/60129492.mkv +众贯线-众贯线兄弟姐妹,http://em.21dtv.com/songs/60087295.mkv +纵贯线-纵贯线兄弟姐妹(演唱会),http://em.21dtv.com/songs/60059852.mkv +TWINS-这个夏天有异性,http://em.21dtv.com/songs/60057797.mkv +郑中基-这个位置留给你,http://em.21dtv.com/songs/60057796.mkv +庄心妍+海哲明-再给我一些勇气,http://em.21dtv.com/songs/60126838.mkv +肖飞-再给我一点勇气[替换],http://em.21dtv.com/songs/60100945.mkv +肖飞-再给我一点勇气,http://em.21dtv.com/songs/60080782.mkv +胡明敏-再给我一点时间,http://em.21dtv.com/songs/60056755.mkv +王莹-中国文艺的春天,http://em.21dtv.com/songs/60120777.mkv +李高扬-祖国我想对你说,http://em.21dtv.com/songs/60105168.mkv +周艾杰-祖国我想对你说,http://em.21dtv.com/songs/60098202.mkv +王美茹-中国我为你骄傲,http://em.21dtv.com/songs/60067802.mkv +丁毅-祖国我为你歌唱,http://em.21dtv.com/songs/60133318.mkv +佚名-祖国我为你干杯,http://em.21dtv.com/songs/60060016.mkv +姚贝娜+沙宝亮-中国我为你歌唱,http://em.21dtv.com/songs/60072811.mkv +童唱-中国娃娃多自豪,http://em.21dtv.com/songs/60058919.mkv +黄平-只怪我太爱你了,http://em.21dtv.com/songs/60079607.mkv +廖名扬-中国神童丁俊晖,http://em.21dtv.com/songs/60066599.mkv +李泉-这个杀手不太冷,http://em.21dtv.com/songs/60057793.mkv +李志-这个世界会好吗,http://em.21dtv.com/songs/60127023.mkv +南方二重唱-整个世界都下雨(无原唱),http://em.21dtv.com/songs/60058343.mkv +佚名-整个世界的寂寞,http://em.21dtv.com/songs/60058342.mkv +阎维文-祖国让我告诉你,http://em.21dtv.com/songs/60100987.mkv +群星-中国人唱中文歌,http://em.21dtv.com/songs/60134122.mkv +陈思思-祖国你在我心上,http://em.21dtv.com/songs/60118158.mkv +陈思思-祖国你在我心上,http://em.21dtv.com/songs/60060006.mkv +带泪的鱼-这个女生有点拽,http://em.21dtv.com/songs/60094885.mkv +李猛-做个男人容易吗,http://em.21dtv.com/songs/60060701.mkv +赵天野-做个女人不容易,http://em.21dtv.com/songs/60134261.mkv +赵天野-做个女人不容易,http://em.21dtv.com/songs/60132920.mkv +王丽萍-中国梦中国少年,http://em.21dtv.com/songs/60099394.mkv +庄秋玉-中国梦 摇篮曲,http://em.21dtv.com/songs/60126839.mkv +崔海洋-中国梦我们的梦,http://em.21dtv.com/songs/60132411.mkv +景志刚-中国梦^我的梦,http://em.21dtv.com/songs/60105944.mkv +李帅-砸锅卖铁娶老婆,http://em.21dtv.com/songs/60101094.mkv +朱英杰-找个美女做新娘,http://em.21dtv.com/songs/60121759.mkv +刘一喆-自古美女爱英雄,http://em.21dtv.com/songs/60059683.mkv +泽旺多吉-祖国妈妈在身边,http://em.21dtv.com/songs/60106068.mkv +泽旺多吉-祖国妈妈在身边,http://em.21dtv.com/songs/60084620.mkv +姚燕-中国梦 劳动美,http://em.21dtv.com/songs/60125369.mkv +李艺彤+莫寒+杨韫玉-追光目标弹弹岛,http://em.21dtv.com/songs/60132565.mkv +韦唯-走过来依然是你,http://em.21dtv.com/songs/60059893.mkv +寒香-做个绿色地球人,http://em.21dtv.com/songs/60132384.mkv +陈鹏-走过路过别错过,http://em.21dtv.com/songs/60059894.mkv +徐梦晗-找个军官就嫁了,http://em.21dtv.com/songs/60115945.mkv +刘思伟-找个好人嫁了吧,http://em.21dtv.com/songs/60090710.mkv +贺金-做个好人并不难,http://em.21dtv.com/songs/60112265.mkv +李建军+李学勤-中国婚礼祝福曲,http://em.21dtv.com/songs/60079650.mkv +李建军-中国婚礼祝福曲,http://em.21dtv.com/songs/60072809.mkv +儿歌-折个飞机当妈妈,http://em.21dtv.com/songs/60090637.mkv +洪卓立-找个懂我的女孩,http://em.21dtv.com/songs/60068993.mkv +小峰峰-这个冬天我还在,http://em.21dtv.com/songs/60057788.mkv +徐连国-这个冬天特别冷,http://em.21dtv.com/songs/60057787.mkv +小宋佳-这个冬天来看你,http://em.21dtv.com/songs/60057786.mkv +谭歆桑-这个冬天来看你,http://em.21dtv.com/songs/60057785.mkv +张卫健-这个冬天会很热,http://em.21dtv.com/songs/60057784.mkv +张卫健-这个冬天会很冷,http://em.21dtv.com/songs/60057783.mkv +默契-这个冬天不太冷,http://em.21dtv.com/songs/60099640.mkv +张学友-这个冬天不太冷,http://em.21dtv.com/songs/60057782.mkv +郑少秋-这个冬天不太冷(演唱会),http://em.21dtv.com/songs/60057781.mkv +张学友-这个冬天不太冷(演唱会),http://em.21dtv.com/songs/60057780.mkv +伊昱翰-找个大叔嫁了吧,http://em.21dtv.com/songs/60105577.mkv +伊昱翰-找个大叔嫁了吧,http://em.21dtv.com/songs/60101895.mkv +陈朋-走过的路别错过,http://em.21dtv.com/songs/60059888.mkv +徐连国-这个冬季没有你,http://em.21dtv.com/songs/60106882.mkv +李泉-这个地方叫城市,http://em.21dtv.com/songs/60091327.mkv +赵真-只怪当初心太软,http://em.21dtv.com/songs/60061893.mkv +李潮-祖国慈祥的母亲,http://em.21dtv.com/songs/60079753.mkv +佚名-祖国慈祥的母亲,http://em.21dtv.com/songs/60060000.mkv +佚名-祖国慈祥的母亲(演唱会),http://em.21dtv.com/songs/60059999.mkv +冯雪洲-做个爱笑的孩子,http://em.21dtv.com/songs/60106623.mkv +张迈-祝福重庆(演唱会),http://em.21dtv.com/songs/60071534.mkv +陈亮+叶青青-祝福我的好兄弟,http://em.21dtv.com/songs/60106380.mkv +张长城-执法如山不回头,http://em.21dtv.com/songs/60058703.mkv +莫娟娟-祝福你五星红旗,http://em.21dtv.com/songs/60087141.mkv +张地-祝福你我的朋友,http://em.21dtv.com/songs/60059327.mkv +祖海-祝福你北京奥运,http://em.21dtv.com/songs/60059324.mkv +河图-再逢明月照九州,http://em.21dtv.com/songs/60084505.mkv +HITA-再逢明月照九州(演唱会),http://em.21dtv.com/songs/60084504.mkv +沙宝亮-长发裸足的女人,http://em.21dtv.com/songs/60097819.mkv +纪炎炎-这份礼物is for you,http://em.21dtv.com/songs/60057771.mkv +尚雯婕-在梵高的星空下,http://em.21dtv.com/songs/60057045.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-祝福大家新年好,http://em.21dtv.com/songs/60079681.mkv +白百何-中二少女养花记,http://em.21dtv.com/songs/60113901.mkv +陶喆-自导自演的悲剧,http://em.21dtv.com/songs/60079994.mkv +杨宗华+任小飞-支队最美的阳光,http://em.21dtv.com/songs/60071518.mkv +不辣-折断自己的翅膀,http://em.21dtv.com/songs/60128726.mkv +萧潇-直到最后那一天,http://em.21dtv.com/songs/60090190.mkv +赵真-真的真的好爱你,http://em.21dtv.com/songs/60099511.mkv +李济纶-走的越远越想家,http://em.21dtv.com/songs/60107790.mkv +黄乙玲-咱的一生咱的爱,http://em.21dtv.com/songs/60057233.mkv +马健涛-走到一起不容易,http://em.21dtv.com/songs/60133105.mkv +高林生-真的有话对你说,http://em.21dtv.com/songs/60058121.mkv +儿歌-找到一个好朋友,http://em.21dtv.com/songs/60089138.mkv +兰雨-再多一次的温柔,http://em.21dtv.com/songs/60056754.mkv +纪如璟-值得一辈子去爱,http://em.21dtv.com/songs/60058755.mkv +佚名-咱的心肝结相偎(无原唱),http://em.21dtv.com/songs/60057231.mkv +刘佳轩-咱的幸福就治这(无原唱),http://em.21dtv.com/songs/60057232.mkv +关牧村-紫丁香啊白丁香,http://em.21dtv.com/songs/60090667.mkv +司文-真的我在你身旁,http://em.21dtv.com/songs/60058112.mkv +宋亦阳-真的为你掉眼泪,http://em.21dtv.com/songs/60069000.mkv +拒绝燃烧+蓝梦儿-真的无法原谅你,http://em.21dtv.com/songs/60133737.mkv +贾富营-真的无法原谅你,http://em.21dtv.com/songs/60131833.mkv +望海高歌-真的无法原谅你,http://em.21dtv.com/songs/60121747.mkv +居山植-真的无法忘记你,http://em.21dtv.com/songs/60119460.mkv +张杰-直到世界的尽头,http://em.21dtv.com/songs/60111075.mkv +孙凌生-直到世界的尽头,http://em.21dtv.com/songs/60097863.mkv +蔡幸娟-真的让我爱你吗,http://em.21dtv.com/songs/60058105.mkv +周艳泓-只等你的哥哥到,http://em.21dtv.com/songs/60058397.mkv +陈小云-招弟甲罔市伦巴,http://em.21dtv.com/songs/60088862.mkv +刘劲升-真的很想见到你,http://em.21dtv.com/songs/60084543.mkv +张秋秋-长大后我成了你,http://em.21dtv.com/songs/60089865.mkv +朱妍-真的很难忘记你,http://em.21dtv.com/songs/60058101.mkv +[Group] +groupName=十六万歌曲MV等 - 101 +WAX-真的好久不见了,http://em.21dtv.com/songs/60079571.mkv +于台烟-咱的感情这呢软,http://em.21dtv.com/songs/60057227.mkv +陈佳喆-周董的十二新作,http://em.21dtv.com/songs/60084581.mkv +王晓娟-中都草原等你来,http://em.21dtv.com/songs/60086256.mkv +张腾-真的不愿失去你,http://em.21dtv.com/songs/60127998.mkv +柳絮-真的不想失去你,http://em.21dtv.com/songs/60104254.mkv +冷漠-真的不是闹着玩,http://em.21dtv.com/songs/60127757.mkv +海生-真的不是不爱你,http://em.21dtv.com/songs/60058089.mkv +音乐走廊+歌一生-真的爱的那么深,http://em.21dtv.com/songs/60121141.mkv +朱含芳-真的爱不必认错,http://em.21dtv.com/songs/60058081.mkv +少女时代-zccfdsj,http://em.21dtv.com/songs/60074209.mkv +东郭先生-再唱一首老情歌,http://em.21dtv.com/songs/60122461.mkv +王莹-再唱沂蒙山小调,http://em.21dtv.com/songs/60112855.mkv +侯丽娟-再唱沂蒙家乡美,http://em.21dtv.com/songs/60131177.mkv +佚名-自从退休回上海,http://em.21dtv.com/songs/60059673.mkv +柳培德-再唱十五的月亮,http://em.21dtv.com/songs/60131559.mkv +六水-再唱少林牧羊曲,http://em.21dtv.com/songs/60121395.mkv +马常宝+于兰-再唱山歌给党听,http://em.21dtv.com/songs/60128599.mkv +蓝雨+朱跃明-再唱山歌给党听,http://em.21dtv.com/songs/60079450.mkv +降央卓玛-再唱山歌给党听,http://em.21dtv.com/songs/60079449.mkv +索朗旺姆-再唱山歌给党听,http://em.21dtv.com/songs/60056734.mkv +孙丹-再唱山歌给党听,http://em.21dtv.com/songs/60062955.mkv +白一彤-最痴情的是女人,http://em.21dtv.com/songs/60061929.mkv +梁玉嵘-织出南国彩虹路(戏曲),http://em.21dtv.com/songs/60092920.mkv +倪惠英+姚志强-紫钗记-剑合钗缘,http://em.21dtv.com/songs/60059633.mkv +周颂平+张华-紫钗记-花园盟心,http://em.21dtv.com/songs/60059632.mkv +李池湘+白玉童-紫钗记-花前遇侠,http://em.21dtv.com/songs/60059631.mkv +邓志驹+李池湘-紫钗记-灯街拾翠,http://em.21dtv.com/songs/60059630.mkv +刘珺儿-招财进宝少共老,http://em.21dtv.com/songs/60092366.mkv +曲尔甲-走出草原的孩子,http://em.21dtv.com/songs/60059865.mkv +少女时代-再次重逢的世界,http://em.21dtv.com/songs/60062904.mkv +赖伟锋-最差不过是孤独,http://em.21dtv.com/songs/60126223.mkv +初晨-这辈子我的情人,http://em.21dtv.com/songs/60125229.mkv +曹芙嘉-走吧咱们回家吧,http://em.21dtv.com/songs/60067824.mkv +桂雨蒙-钟摆停止的瞬间,http://em.21dtv.com/songs/60100240.mkv +爽子-这不是我想要的,http://em.21dtv.com/songs/60079544.mkv +冯允谦+洪卓立-纸笔墨 弥敦道,http://em.21dtv.com/songs/60119275.mkv +黄韵玲-紫贝壳2001(无原唱),http://em.21dtv.com/songs/60059626.mkv +佚名-在北京的金山上,http://em.21dtv.com/songs/60057036.mkv +韩红-在北京的金山上,http://em.21dtv.com/songs/60057035.mkv +彭佳慧-走不回去的旅程,http://em.21dtv.com/songs/60111906.mkv +冯海龙-找不到回去的路,http://em.21dtv.com/songs/60131194.mkv +晓田-走不出你的轨迹,http://em.21dtv.com/songs/60125646.mkv +杨罡-真爱只有我能给,http://em.21dtv.com/songs/60058070.mkv +李翊君-最爱最恨都是你(演唱会),http://em.21dtv.com/songs/60060119.mkv +杨皓天-再爱一次不容易,http://em.21dtv.com/songs/60106005.mkv +佚名-在爱与不爱之间,http://em.21dtv.com/songs/60057033.mkv +刘栋升-左岸右岸之慢摇,http://em.21dtv.com/songs/60089676.mkv +佚名-这爱情谁对谁错,http://em.21dtv.com/songs/60057748.mkv +满江-在爱情的旅途上(演唱会),http://em.21dtv.com/songs/60057031.mkv +刘恺名-最爱你的人是我,http://em.21dtv.com/songs/60106643.mkv +孙浩博-最爱的人在身边,http://em.21dtv.com/songs/60087154.mkv +孙艺琪-最爱的人最陌生,http://em.21dtv.com/songs/60131335.mkv +大海-最爱的人就是你,http://em.21dtv.com/songs/60131307.mkv +郑中基-最爱的人不是你,http://em.21dtv.com/songs/60060078.mkv +郑中基-最爱的人不是你(演唱会),http://em.21dtv.com/songs/60060077.mkv +冯玮君-一直在找一个人,http://em.21dtv.com/songs/60053925.mkv +杨洋-宇宙只有我和你,http://em.21dtv.com/songs/60070191.mkv +李佳+苏诗丁-一枝一叶总关情,http://em.21dtv.com/songs/60135351.mkv +王铮亮-越走越远的旅客,http://em.21dtv.com/songs/60121958.mkv +龙梅子+赵鑫-愿作鸳鸯不羡仙,http://em.21dtv.com/songs/60134523.mkv +李楼-银妆玉楼雪满天,http://em.21dtv.com/songs/60070168.mkv +佚名-眼中有灯也有人,http://em.21dtv.com/songs/60052101.mkv +不辣-一直想要告诉你,http://em.21dtv.com/songs/60053918.mkv +陈妃-雨中想起那段情,http://em.21dtv.com/songs/60055768.mkv +洪一峰-银座西路车站前,http://em.21dtv.com/songs/60054354.mkv +秦岚-有种幸福叫怀念,http://em.21dtv.com/songs/60079305.mkv +苏运莹+田馥甄-野子,http://em.21dtv.com/songs/60109594.mkv +蔡小虎-用真心爱一个人,http://em.21dtv.com/songs/60054934.mkv +郑培钦-摇着乌篷来看你,http://em.21dtv.com/songs/60111439.mkv +何静-远在天涯心相映,http://em.21dtv.com/songs/60056168.mkv +迪高-远在他乡的姑娘,http://em.21dtv.com/songs/60124851.mkv +陈辉玲-夜坐时停了针绣,http://em.21dtv.com/songs/60088914.mkv +越剧-夜坐时停了针线,http://em.21dtv.com/songs/60052709.mkv +许诺-一转身就是永远,http://em.21dtv.com/songs/60081725.mkv +蔡其平-一支人马强又壮,http://em.21dtv.com/songs/60053873.mkv +越剧-一柱清香炉内焚,http://em.21dtv.com/songs/60053937.mkv +天津阿明-有种情爱到忧伤,http://em.21dtv.com/songs/60084451.mkv +云飞儿-愿做菩萨那朵莲,http://em.21dtv.com/songs/60132180.mkv +赵本水-愿做菩萨那朵莲,http://em.21dtv.com/songs/60130774.mkv +路勇-愿做菩萨那朵莲,http://em.21dtv.com/songs/60109639.mkv +路勇-愿做菩萨那朵莲,http://em.21dtv.com/songs/60105404.mkv +降央卓玛-雨中飘荡的回忆,http://em.21dtv.com/songs/60079348.mkv +刀郎-雨中飘荡的回忆,http://em.21dtv.com/songs/60055764.mkv +阿吉仔-一只鸟仔哮啾啾(无原唱),http://em.21dtv.com/songs/60053886.mkv +周笔畅-一周年,http://em.21dtv.com/songs/60107606.mkv +白冰冰-燕仔你是飞去叨,http://em.21dtv.com/songs/60052144.mkv +小琢-玉琢女人最美丽,http://em.21dtv.com/songs/60115872.mkv +林舜卿-永镇南江保太平,http://em.21dtv.com/songs/60054809.mkv +小青岛-愿做你的小狗狗,http://em.21dtv.com/songs/60106796.mkv +鸿飞-一直没有爱过我,http://em.21dtv.com/songs/60114290.mkv +祁隆+任妙音-又在梦里见到你,http://em.21dtv.com/songs/60118818.mkv +狄易达+贾晓晨-一种快乐一种苦,http://em.21dtv.com/songs/60053932.mkv +罗时丰+小辣椒-园仔花与少年家,http://em.21dtv.com/songs/60095847.mkv +罗时丰+小辣椒-圆仔花与少年家,http://em.21dtv.com/songs/60056049.mkv +王琳玲-愿做蝴蝶比翼飞,http://em.21dtv.com/songs/60108714.mkv +关牧村-愿做蝴蝶比翼飞,http://em.21dtv.com/songs/60079401.mkv +司文-有种东西叫爱情,http://em.21dtv.com/songs/60087528.mkv +陈晓东-要知道你的感觉,http://em.21dtv.com/songs/60052404.mkv +蒋志光-要走的还是要走(演唱会),http://em.21dtv.com/songs/60052405.mkv +佚名-一支短笛轻轻吹,http://em.21dtv.com/songs/60053869.mkv +佚名-雨中的点点滴滴,http://em.21dtv.com/songs/60055742.mkv +郑秀文-一直到春天过去,http://em.21dtv.com/songs/60053903.mkv +林峰-影子的爱情故事(演唱会),http://em.21dtv.com/songs/60054541.mkv +藤田奈那-右足エビデンス,http://em.21dtv.com/songs/60118892.mkv +蔡小虎-永远醉置你身边,http://em.21dtv.com/songs/60054808.mkv +谢金燕-用胭脂写你的名,http://em.21dtv.com/songs/60054928.mkv +杨宗宪-用胭脂写你的名,http://em.21dtv.com/songs/60044321.mkv +姚红梅-永远做你的宝贝,http://em.21dtv.com/songs/60109258.mkv +蔡济文-永远最爱你是谁,http://em.21dtv.com/songs/60054807.mkv +南风(姜海龙)-有一种爱叫犯贱,http://em.21dtv.com/songs/60103133.mkv +红蔷薇-永远永远陪伴你,http://em.21dtv.com/songs/60110448.mkv +薛之谦+张婉清-演员,http://em.21dtv.com/songs/60124445.mkv +望海高歌-月牙弯.月亮船,http://em.21dtv.com/songs/60121746.mkv +侃侃-爷爷为我打月饼,http://em.21dtv.com/songs/60087035.mkv +佚名-夜夜为你来失眠,http://em.21dtv.com/songs/60052680.mkv +江蕙-夜夜为你来失眠,http://em.21dtv.com/songs/60052679.mkv +李天平-有缘无份之情伤,http://em.21dtv.com/songs/60055400.mkv +吕继宏-有缘同在蓝天下,http://em.21dtv.com/songs/60055395.mkv +丁香+晓晓-有一天我会回来,http://em.21dtv.com/songs/60055371.mkv +刘英+杨桂英-冤有头来债有主,http://em.21dtv.com/songs/60055903.mkv +张文绮-犹原恰想也是你,http://em.21dtv.com/songs/60079263.mkv +张文绮+许富凯-犹原恰想也是你,http://em.21dtv.com/songs/60072740.mkv +韩晓辉-夜夜牵魂盼君归,http://em.21dtv.com/songs/60116366.mkv +陈岩-永远陪你唱情歌,http://em.21dtv.com/songs/60123296.mkv +红蔷薇-永远陪你唱情歌,http://em.21dtv.com/songs/60107106.mkv +枫桥-有一片海在等候,http://em.21dtv.com/songs/60106990.mkv +潘昱瑾+蔡欣伶-幼幼Party,http://em.21dtv.com/songs/60116123.mkv +易丹-忧郁女人的诱惑,http://em.21dtv.com/songs/60087936.mkv +潘长江+刘春梅-爷爷奶奶和我们,http://em.21dtv.com/songs/60052418.mkv +牛马丁-一样米饲百样人,http://em.21dtv.com/songs/60053823.mkv +赖国永-永远抹冻亲像你(无原唱),http://em.21dtv.com/songs/60054772.mkv +笑天-有缘来生再相逢,http://em.21dtv.com/songs/60065404.mkv +佚名-友谊历久一样浓,http://em.21dtv.com/songs/60055079.mkv +刘德华-友谊历久一样浓,http://em.21dtv.com/songs/60055078.mkv +黄品源-永远激情那一天,http://em.21dtv.com/songs/60054761.mkv +泰迪罗宾-永远活在青春期,http://em.21dtv.com/songs/60054760.mkv +佚名-永远和你在一道,http://em.21dtv.com/songs/60054757.mkv +童唱-友谊花开万里香,http://em.21dtv.com/songs/60055077.mkv +童唱-摇摇晃晃就长大,http://em.21dtv.com/songs/60052296.mkv +黎明-永远放在我心中,http://em.21dtv.com/songs/60054752.mkv +晨熙+司徒兰芳-永远放你在心底,http://em.21dtv.com/songs/60135324.mkv +晨熙+司徒兰芳-永远放你在心底,http://em.21dtv.com/songs/60115199.mkv +晨熙+司徒兰芳-永远放你在心底,http://em.21dtv.com/songs/60111136.mkv +晨熙+司徒兰芳-永远放你在心底,http://em.21dtv.com/songs/60102652.mkv +枫舞+辉煌-永远放你在心底,http://em.21dtv.com/songs/60072735.mkv +佚名-100 years five for fighting,http://em.21dtv.com/songs/60000005.mkv +冷酷-御云风畅好人家,http://em.21dtv.com/songs/60125167.mkv +乃木坂46-忧郁と风船ガム,http://em.21dtv.com/songs/60123596.mkv +龙飘飘-洋洋得意在今朝,http://em.21dtv.com/songs/60065310.mkv +曾彭飙-永远的1996,http://em.21dtv.com/songs/60117783.mkv +谭晶-永远的香格里拉,http://em.21dtv.com/songs/60054730.mkv +吕继宏-遥远的乌苏里江,http://em.21dtv.com/songs/60079039.mkv +齐秦-遥远的天空底下(演唱会),http://em.21dtv.com/songs/60052337.mkv +雷启飞+何俊-永远都是好兄弟,http://em.21dtv.com/songs/60127578.mkv +雷启飞+何俊-永远都是好兄弟,http://em.21dtv.com/songs/60114240.mkv +佚名-引诱敌人来打枪,http://em.21dtv.com/songs/60054355.mkv +孙丽英-永远的花样年华,http://em.21dtv.com/songs/60084420.mkv +樱子-永远到底有多远,http://em.21dtv.com/songs/60084418.mkv +因果兄弟-永远到底有多远,http://em.21dtv.com/songs/60054691.mkv +陈妃平-永远到底有多远,http://em.21dtv.com/songs/60054690.mkv +胡彦斌-永远都不会忘记,http://em.21dtv.com/songs/60091898.mkv +阿男-永远的爱有多爱,http://em.21dtv.com/songs/60087066.mkv +文千岁+梁少芯-艳阳长照牡丹红,http://em.21dtv.com/songs/60052121.mkv +闫学晶-永远伴随你一生,http://em.21dtv.com/songs/60071448.mkv +李绰-永远把你当兄弟,http://em.21dtv.com/songs/60135373.mkv +贺金-英雄自有一片天,http://em.21dtv.com/songs/60112270.mkv +陈野-一心一意又如何,http://em.21dtv.com/songs/60061827.mkv +家家-也许也许你爱我,http://em.21dtv.com/songs/60098272.mkv +李泽坚-越陷越深越心痛,http://em.21dtv.com/songs/60099314.mkv +佚名-一心希望他回头,http://em.21dtv.com/songs/60053794.mkv +卓依婷-愈想心肝愈无甘,http://em.21dtv.com/songs/60055881.mkv +张子丰-也许我们倦了吧,http://em.21dtv.com/songs/60135197.mkv +白冰冰-英雄无论出身低,http://em.21dtv.com/songs/60054440.mkv +赵传霖-允许我爱你好吗,http://em.21dtv.com/songs/60061868.mkv +豪图-英雄上马的地方,http://em.21dtv.com/songs/60054437.mkv +龙梅子-一厢情愿纯洁爱,http://em.21dtv.com/songs/60128653.mkv +庄心妍+海哲明-有些情爱不能碰,http://em.21dtv.com/songs/60123893.mkv +张牧阅-也许你真的没错,http://em.21dtv.com/songs/60052441.mkv +沈凌云-燕衔泥,http://em.21dtv.com/songs/60098563.mkv +林志炫+谢宇书-有些女人不能碰,http://em.21dtv.com/songs/60055337.mkv +罗时丰+林孟婕-英雄难过美人关,http://em.21dtv.com/songs/60054435.mkv +南风-英雄难过美人关,http://em.21dtv.com/songs/60061837.mkv +侯跃文+赵丽蓉-英雄母亲的一天,http://em.21dtv.com/songs/60089623.mkv +张宇-用心良苦-high party2,http://em.21dtv.com/songs/60054923.mkv +张强-英雄眷恋的地方,http://em.21dtv.com/songs/60127973.mkv +余天-用心肝唱咱的歌,http://em.21dtv.com/songs/60054911.mkv +洪百慧-用心肝爱过的人,http://em.21dtv.com/songs/60054910.mkv +冯光-浴血奋战的爱情,http://em.21dtv.com/songs/60120343.mkv +林姗姗-也许当年年纪少,http://em.21dtv.com/songs/60052437.mkv +费玉清-月下待杜鹃下来,http://em.21dtv.com/songs/60056502.mkv +黎瑞恩-预先采排的分手,http://em.21dtv.com/songs/60055810.mkv +陈思安-英雄不惊出身低(无原唱),http://em.21dtv.com/songs/60054423.mkv +阿龙正刚-也许不该认识你,http://em.21dtv.com/songs/60052436.mkv +田一龙-用心爱你你不懂,http://em.21dtv.com/songs/60054905.mkv +郑嘉颖-愿望在星空那里,http://em.21dtv.com/songs/60056226.mkv +谢霆锋-要我怎么忘了他,http://em.21dtv.com/songs/60052397.mkv +邓海-要我怎么忘了你,http://em.21dtv.com/songs/60070126.mkv +上官元晖-因为这就是生活,http://em.21dtv.com/songs/60121329.mkv +何杰-用我一生的温柔,http://em.21dtv.com/songs/60116542.mkv +余柯诺-因为有你在身边,http://em.21dtv.com/songs/60114392.mkv +袁印-因为有你在身边,http://em.21dtv.com/songs/60086146.mkv +非如-遥望月亮想妈妈,http://em.21dtv.com/songs/60111518.mkv +雍鉴君-因为有了共产党,http://em.21dtv.com/songs/60084399.mkv +舒鸣-因为想你才寂寞,http://em.21dtv.com/songs/60054289.mkv +浪子龙飞-因为心里藏着你,http://em.21dtv.com/songs/60129349.mkv +SS501-因为我头脑不好,http://em.21dtv.com/songs/60054286.mkv +蒋大为-要问我们想什么,http://em.21dtv.com/songs/60052395.mkv +庞龙-因为我和你一样,http://em.21dtv.com/songs/60054278.mkv +邓养天-因为所以我爱你,http://em.21dtv.com/songs/60081428.mkv +林佳音-遗忘是我们的事,http://em.21dtv.com/songs/60117840.mkv +佚名-司马光砸缸,http://em.21dtv.com/songs/60077738.mkv +岳太阳-要我如何去爱你,http://em.21dtv.com/songs/60079049.mkv +佚名-眼望青山难出笼,http://em.21dtv.com/songs/60052098.mkv +李健-一往情深的恋人,http://em.21dtv.com/songs/60135353.mkv +李健-一往情深的恋人,http://em.21dtv.com/songs/60053765.mkv +李铮-愿为你再醉一回,http://em.21dtv.com/songs/60084482.mkv +红牛-愿为你再醉一回,http://em.21dtv.com/songs/60079400.mkv +高岩-因为你只因为你,http://em.21dtv.com/songs/60118194.mkv +玺晨-因为你是我兄弟,http://em.21dtv.com/songs/60127221.mkv +萧亚轩-因为你卡布奇诺,http://em.21dtv.com/songs/60091982.mkv +V.O.S-因为那个人是你,http://em.21dtv.com/songs/60118285.mkv +邹文正-因为难得所以难,http://em.21dtv.com/songs/60071440.mkv +越剧-一弯冷月照寒窗,http://em.21dtv.com/songs/60053744.mkv +吕瑞英-一弯冷月照宫墙,http://em.21dtv.com/songs/60089728.mkv +黄文星-亿万克拉的幸福,http://em.21dtv.com/songs/60054099.mkv +戏曲-愿为蝴蝶绕孤坟,http://em.21dtv.com/songs/60092728.mkv +赵青岳-一万光年的距离,http://em.21dtv.com/songs/60132929.mkv +杨宗纬-因为单身的缘故,http://em.21dtv.com/songs/60127087.mkv +杨宗纬-因为单身的缘故(演唱会),http://em.21dtv.com/songs/60063255.mkv +刘若英-遗忘的都回来了,http://em.21dtv.com/songs/60080226.mkv +邓海-一万次说我爱你,http://em.21dtv.com/songs/60112995.mkv +涓子-一万次错了以后,http://em.21dtv.com/songs/60062538.mkv +常健鸿-因为爱所以离开,http://em.21dtv.com/songs/60054231.mkv +浩轩-因为爱所以放弃,http://em.21dtv.com/songs/60100285.mkv +荣帝丞-因为爱所以放手,http://em.21dtv.com/songs/60071439.mkv +吴倩莲-因为爱所以等待,http://em.21dtv.com/songs/60054229.mkv +叶蓓-以为爱情没有了,http://em.21dtv.com/songs/60094022.mkv +艺林歌哥-因为爱你我想你,http://em.21dtv.com/songs/60096108.mkv +紫齐-因为爱你伤了心,http://em.21dtv.com/songs/60113934.mkv +祁隆-因为爱你戒了烟,http://em.21dtv.com/songs/60079192.mkv +陈小云-因为爱你才恨你,http://em.21dtv.com/songs/60054223.mkv +冷漠-一天只爱你一点,http://em.21dtv.com/songs/60121404.mkv +吴奇隆-一天一天等下去,http://em.21dtv.com/songs/60053724.mkv +石禄辉-怨天怨地怨自己,http://em.21dtv.com/songs/60079399.mkv +徐誉滕+谢佩璇-一天一点爱上你,http://em.21dtv.com/songs/60111918.mkv +伍国强-一条心的好兄弟,http://em.21dtv.com/songs/60128774.mkv +方雪雯-英台说出心头话,http://em.21dtv.com/songs/60087919.mkv +方雪雯-英台说出心里话,http://em.21dtv.com/songs/60054410.mkv +佚名-怨叹那有什路用,http://em.21dtv.com/songs/60056184.mkv +许杨玉琢-亚特兰蒂斯少女,http://em.21dtv.com/songs/60135739.mkv +宗庸卓玛-要跳锅庄这方来,http://em.21dtv.com/songs/60052394.mkv +李进-一天更比一天好,http://em.21dtv.com/songs/60053712.mkv +李荣-雨天的那条小路,http://em.21dtv.com/songs/60120643.mkv +彭丽媛-一条大路迎新春,http://em.21dtv.com/songs/60087862.mkv +彭丽媛-一条大路迎春风,http://em.21dtv.com/songs/60053729.mkv +梁汉文-用痛悲磨练自己,http://em.21dtv.com/songs/60054893.mkv +益初措-一生最最爱的人,http://em.21dtv.com/songs/60098671.mkv +艾歌-一生中最爱的人,http://em.21dtv.com/songs/60053638.mkv +文章-一生只有这一回(无原唱),http://em.21dtv.com/songs/60053630.mkv +刘锡明-一生只为一人醉,http://em.21dtv.com/songs/60053623.mkv +佚名-有谁知我此时情,http://em.21dtv.com/songs/60055317.mkv +司徒兰芳-一生只牵你的手,http://em.21dtv.com/songs/60110066.mkv +胡杨林-一生只能爱一个,http://em.21dtv.com/songs/60095339.mkv +ALIN-一瞬之光(演唱会),http://em.21dtv.com/songs/60065351.mkv +王丽达-一生只对你微笑,http://em.21dtv.com/songs/60053620.mkv +谢和弦-于是长大了以后,http://em.21dtv.com/songs/60055496.mkv +海阔+棋子-一生只爱这一回,http://em.21dtv.com/songs/60133941.mkv +海阔+艾可儿-一生只爱这一回,http://em.21dtv.com/songs/60117899.mkv +马德龙-一生只爱一个人,http://em.21dtv.com/songs/60128600.mkv +吴峙轩-一生只爱一个人,http://em.21dtv.com/songs/60053617.mkv +常健鸿-一生只爱一个你,http://em.21dtv.com/songs/60053616.mkv +王建杰-一生只爱你一个,http://em.21dtv.com/songs/60107066.mkv +罗时丰+曾心梅-一生只爱你一个,http://em.21dtv.com/songs/60095849.mkv +江蕙+洪荣宏-一生只爱你一个,http://em.21dtv.com/songs/60095721.mkv +佚名-一生只爱你一个,http://em.21dtv.com/songs/60053614.mkv +俞隆华-一生中爱你尚深,http://em.21dtv.com/songs/60053633.mkv +黎明-一生最爱就是你(演唱会),http://em.21dtv.com/songs/60053641.mkv +祁隆-一生最爱的是你,http://em.21dtv.com/songs/60102584.mkv +高佳-遇上一位兵哥哥,http://em.21dtv.com/songs/60129812.mkv +杨鹏程+龚雪儿-一生一世在一起,http://em.21dtv.com/songs/60122894.mkv +顾莉雅-一生一世只爱你,http://em.21dtv.com/songs/60053605.mkv +阿清-一生一世只爱你,http://em.21dtv.com/songs/60066527.mkv +薛凯琪-一三一四小峡谷,http://em.21dtv.com/songs/60053503.mkv +蒙面哥-一生一世好兄弟,http://em.21dtv.com/songs/60107186.mkv +陈岩+红蔷薇-一生一世跟着你,http://em.21dtv.com/songs/60104554.mkv +李青+月上林梢-1314勾手指,http://em.21dtv.com/songs/60097805.mkv +莫文蔚-要是一生都不老,http://em.21dtv.com/songs/60052390.mkv +吴庆国-一生一世爱着你,http://em.21dtv.com/songs/60114447.mkv +蔡枫华-一生一世爱着你(演唱会),http://em.21dtv.com/songs/60061823.mkv +闫旭-一生一世爱一回,http://em.21dtv.com/songs/60095354.mkv +董冬-一生有你做朋友,http://em.21dtv.com/songs/60123119.mkv +蒋大为-又是一年桃花开,http://em.21dtv.com/songs/60126140.mkv +王识贤+谢金燕-一生有你来作伴,http://em.21dtv.com/songs/60053608.mkv +孙滢迎-又是一年春来早,http://em.21dtv.com/songs/60079312.mkv +刘程伊-夜深夜静的时候,http://em.21dtv.com/songs/60065322.mkv +佚名-又是一个下雨天,http://em.21dtv.com/songs/60055468.mkv +邓丽君-又是一个下雨天,http://em.21dtv.com/songs/60055467.mkv +徐伯涛-月似银钩星似棋,http://em.21dtv.com/songs/60056496.mkv +四分卫-一首摇滚上月球,http://em.21dtv.com/songs/60081682.mkv +杨洋+金彪-又是一个吉祥年(演唱会),http://em.21dtv.com/songs/60055466.mkv +龙啸-一声兄弟一生情,http://em.21dtv.com/songs/60100693.mkv +巧千金-又是新的一年到,http://em.21dtv.com/songs/60079310.mkv +谭轩辕-欲水,http://em.21dtv.com/songs/60115407.mkv +张杰+徐嘉苇-眼色,http://em.21dtv.com/songs/60111883.mkv +樱花姐妹-雨水渥湿阮的爱(无原唱),http://em.21dtv.com/songs/60072834.mkv +樱花姊妹-雨水渥湿阮的爱(无原唱),http://em.21dtv.com/songs/60071086.mkv +佚名-雨水渥湿阮的爱,http://em.21dtv.com/songs/60055700.mkv +郭一男-游山玩水迄逃人(无原唱),http://em.21dtv.com/songs/60055015.mkv +阿楠-一生我们是兄弟,http://em.21dtv.com/songs/60130825.mkv +旅行团-于是我不再唱歌,http://em.21dtv.com/songs/60104168.mkv +旅行团乐队-于是我不再唱歌,http://em.21dtv.com/songs/60097811.mkv +张桂凤-一石投水激波涛,http://em.21dtv.com/songs/60053647.mkv +高耀太-雨是天空的眼泪,http://em.21dtv.com/songs/60084463.mkv +潘美辰-一生托给一个人,http://em.21dtv.com/songs/60053578.mkv +小俊-耶稣是我好牧人,http://em.21dtv.com/songs/60086098.mkv +阿吉仔-一双手牵一世人,http://em.21dtv.com/songs/60071429.mkv +花世纪-忧伤少女青春花,http://em.21dtv.com/songs/60062480.mkv +王馨-一生守候这份情,http://em.21dtv.com/songs/60119834.mkv +含月+海天-夜深深飞起来红,http://em.21dtv.com/songs/60099863.mkv +佚名-有时日子过到惊,http://em.21dtv.com/songs/60055300.mkv +望海高歌-夜深人静更想你,http://em.21dtv.com/songs/60126980.mkv +甲子蕙-一世人乎天知影,http://em.21dtv.com/songs/60053669.mkv +陈瑞-一世情缘一世愁,http://em.21dtv.com/songs/60053665.mkv +曾心梅-夜深情深人孤单,http://em.21dtv.com/songs/60052646.mkv +阿文-一首情歌一行泪,http://em.21dtv.com/songs/60133030.mkv +伤感一哥-一首情歌一行泪,http://em.21dtv.com/songs/60132196.mkv +音乐走廊-一生陪你唱情歌(DJ版),http://em.21dtv.com/songs/60097809.mkv +丹巴旺姆-遇上你是我的缘,http://em.21dtv.com/songs/60127702.mkv +龚月-遇上你是我的缘,http://em.21dtv.com/songs/60079359.mkv +叶凡-遇上你是我的缘,http://em.21dtv.com/songs/60055866.mkv +央金兰泽-遇上你是我的缘,http://em.21dtv.com/songs/60055865.mkv +刘雄-遇上你是我的缘,http://em.21dtv.com/songs/60055864.mkv +阿桑古卡-遇上你是我的缘,http://em.21dtv.com/songs/60055863.mkv +阿鲁阿卓-遇上你是我的缘,http://em.21dtv.com/songs/60055862.mkv +刘莉-遇上你是对是错,http://em.21dtv.com/songs/60132255.mkv +张明敏-有谁能够说我错,http://em.21dtv.com/songs/60055310.mkv +叶启田-用生命所爱的人,http://em.21dtv.com/songs/60054892.mkv +陈一郎-用生命所爱的人,http://em.21dtv.com/songs/60054891.mkv +刘洋-有什么不快乐的,http://em.21dtv.com/songs/60079298.mkv +汪峰-一瞬间,http://em.21dtv.com/songs/60114642.mkv +纳兰-一世江山万年情,http://em.21dtv.com/songs/60070151.mkv +佚名-一石激起千重浪,http://em.21dtv.com/songs/60053646.mkv +陈盈洁-一声叫君一声苦,http://em.21dtv.com/songs/60053643.mkv +曾羿+孟繁菁-一生记给一个人,http://em.21dtv.com/songs/60089328.mkv +B.Gs-越是觉得深爱你,http://em.21dtv.com/songs/60129886.mkv +静婷+李国祥-一山还有一山高(演唱会),http://em.21dtv.com/songs/60053505.mkv +韩红-映山红,http://em.21dtv.com/songs/60107352.mkv +So Yul+Yang JungMo-Y Shirt,http://em.21dtv.com/songs/60108246.mkv +凝听-一生好好去爱你,http://em.21dtv.com/songs/60101941.mkv +林姗-一生甘愿为你错,http://em.21dtv.com/songs/60053547.mkv +芦伟-有首歌与你分享,http://em.21dtv.com/songs/60129530.mkv +詹曼铃-一生甘愿跟你走,http://em.21dtv.com/songs/60053546.mkv +谭咏麟-一首歌一个故事(演唱会),http://em.21dtv.com/songs/60053680.mkv +谭咏麟+李克勤-一首歌一个故事(演唱会),http://em.21dtv.com/songs/60053679.mkv +小梦+王佐文-一生跟你在一起,http://em.21dtv.com/songs/60101627.mkv +王伟+郭少杰-一生都是好兄弟,http://em.21dtv.com/songs/60113848.mkv +孙翠凤-移山倒海为了你,http://em.21dtv.com/songs/60090935.mkv +马景涛-移山倒海为了你(无原唱),http://em.21dtv.com/songs/60054042.mkv +李翊君-雨伞代表阮心肝,http://em.21dtv.com/songs/60098492.mkv +易铭-一生的爱只为你,http://em.21dtv.com/songs/60122791.mkv +谢名-一生的爱只为你,http://em.21dtv.com/songs/60114776.mkv +纳兰+张天赋-一生痴情只为你,http://em.21dtv.com/songs/60122000.mkv +陈美凤-一生痴情有几回,http://em.21dtv.com/songs/60081273.mkv +陈美凤-一生痴情有几摆,http://em.21dtv.com/songs/60026194.mkv +何念庭-一生痴情跟你行,http://em.21dtv.com/songs/60053524.mkv +叶三成-疑是嫦娥下九天,http://em.21dtv.com/songs/60109208.mkv +太极乐队-一生不再说别离,http://em.21dtv.com/songs/60053519.mkv +太极乐队-一生不再说别离(演唱会),http://em.21dtv.com/songs/60053518.mkv +炎亚纶-逾时不候的永恒,http://em.21dtv.com/songs/60080029.mkv +李嘉-雨水啊渥乎我醒,http://em.21dtv.com/songs/60055697.mkv +孙露-一生爱你千百回,http://em.21dtv.com/songs/60115794.mkv +梅艳芳-一生爱你千百回,http://em.21dtv.com/songs/60053507.mkv +樊桐舟-一生爱你千百回,http://em.21dtv.com/songs/60065343.mkv +智涛-一人走向内蒙古,http://em.21dtv.com/songs/60097806.mkv +黎瑞恩-一人有一个梦想,http://em.21dtv.com/songs/60053491.mkv +黎瑞恩+罗敏庄+杜雯惠+VANI-一人有一个理想(演唱会),http://em.21dtv.com/songs/60053490.mkv +高明瀚-用热情种出希望,http://em.21dtv.com/songs/60054889.mkv +李玟-要如何让你明白,http://em.21dtv.com/songs/60091341.mkv +冯伟杰-一人孤单两人痛,http://em.21dtv.com/songs/60117564.mkv +佚名-youve really got a hold on me,http://em.21dtv.com/songs/60006630.mkv +佚名-有人比你卡少年,http://em.21dtv.com/songs/60055285.mkv +高安-依然把你放心里,http://em.21dtv.com/songs/60084382.mkv +望海高歌-一日不见如三秋,http://em.21dtv.com/songs/60126977.mkv +刘德华-一起走过的日子,http://em.21dtv.com/songs/60053383.mkv +刘德华-一起走过的日子(演唱会),http://em.21dtv.com/songs/60053382.mkv +郭富城-一起走过的日子(演唱会),http://em.21dtv.com/songs/60053381.mkv +刘德华-一起走过的日子(HD),http://em.21dtv.com/songs/10012653.mkv +群星-一起走过的日子(演唱会),http://em.21dtv.com/songs/60065337.mkv +邓丽君-要去遥远的地方,http://em.21dtv.com/songs/60052388.mkv +枫舞+相容-一曲相思情未了,http://em.21dtv.com/songs/60112033.mkv +黄丽卿-一曲相思唱不完,http://em.21dtv.com/songs/60102958.mkv +刘和刚-一切为了老百姓(演唱会),http://em.21dtv.com/songs/60084369.mkv +朱俐静-一千万次的泪水,http://em.21dtv.com/songs/60079138.mkv +王旭鹏-一起弹琴的日子,http://em.21dtv.com/songs/60121909.mkv +叶启田-叶启田的纯情曲,http://em.21dtv.com/songs/60052509.mkv +郑源+赵默-有情人终成眷属,http://em.21dtv.com/songs/60055273.mkv +佚名-一切全是我的错,http://em.21dtv.com/songs/60053441.mkv +潘美辰-一切全是我的错,http://em.21dtv.com/songs/60053440.mkv +蓝奕邦-一起去阿拉斯加,http://em.21dtv.com/songs/60079132.mkv +尹光+胡美仪-一曲琵琶动汉皇,http://em.21dtv.com/songs/60053462.mkv +林俊杰-一千年后记得我(演唱会),http://em.21dtv.com/songs/60084367.mkv +林俊杰-一千年后记得我,http://em.21dtv.com/songs/60079137.mkv +孟杨-有钱你还爱我吗,http://em.21dtv.com/songs/60079294.mkv +彩贝与海-一千零一篇日记,http://em.21dtv.com/songs/60119557.mkv +4 IN LOVE-一千零一个愿望,http://em.21dtv.com/songs/60053407.mkv +江若琳-一千零一个愿望(演唱会),http://em.21dtv.com/songs/60053406.mkv +曾心梅-一切拢是为着你(无原唱),http://em.21dtv.com/songs/60053436.mkv +张海鹏-一千零九十五天,http://em.21dtv.com/songs/60063367.mkv +门丽-摇起来 嗨起来,http://em.21dtv.com/songs/60135865.mkv +格桑梅朵-亚曲喀我的故乡,http://em.21dtv.com/songs/60090011.mkv +S.H.E-一起开始的旅程,http://em.21dtv.com/songs/60053364.mkv +张倾城-要娶就娶美羊羊,http://em.21dtv.com/songs/60052386.mkv +郭少杰-一曲红尘一曲泪(HD),http://em.21dtv.com/songs/60134324.mkv +郭少杰-一曲红尘一曲泪,http://em.21dtv.com/songs/60113016.mkv +孟杨-一曲红尘一滴泪,http://em.21dtv.com/songs/60121575.mkv +南一-一千个理由以后,http://em.21dtv.com/songs/60112555.mkv +吴雨霏-一千个假想结局,http://em.21dtv.com/songs/60107586.mkv +是娟-一切彷佛就像梦(无原唱),http://em.21dtv.com/songs/60053439.mkv +倪安东-一切都是因为爱,http://em.21dtv.com/songs/60081668.mkv +贾富营-一切都是我的错,http://em.21dtv.com/songs/60122136.mkv +魏来-一切都是我的错,http://em.21dtv.com/songs/60084368.mkv +梁汉文-一切从任性开始,http://em.21dtv.com/songs/60053423.mkv +Exo M-一起吃苦的幸福,http://em.21dtv.com/songs/60107405.mkv +周华健-一起吃苦的幸福,http://em.21dtv.com/songs/60053357.mkv +群星-一起唱过这首歌(演唱会),http://em.21dtv.com/songs/60053356.mkv +黑楠-一片蔚蓝的天空,http://em.21dtv.com/songs/60053346.mkv +张寒-一片桃花一片缘,http://em.21dtv.com/songs/60117725.mkv +刘怡-一派水乡好天地,http://em.21dtv.com/songs/60084364.mkv +田震-一片洁白的思念,http://em.21dtv.com/songs/60091761.mkv +Eric Nam+全昭弥-You Who,http://em.21dtv.com/songs/60134669.mkv +yepgirls-you saw,http://em.21dtv.com/songs/60131122.mkv +鲍乐乐-一年最美这一天,http://em.21dtv.com/songs/60066522.mkv +沁心小筑-一年最美这一天,http://em.21dtv.com/songs/60065335.mkv +吴斌-要你知道我爱你,http://em.21dtv.com/songs/60084328.mkv +李昕翰-愿你因爱而欢喜,http://em.21dtv.com/songs/60105980.mkv +苏有朋-有你我就会快乐,http://em.21dtv.com/songs/60091931.mkv +吴宪-有你我才会快乐,http://em.21dtv.com/songs/60061848.mkv +龙奔-有你我别无所求,http://em.21dtv.com/songs/60102201.mkv +甄子维-月娘替阮送心意(无原唱),http://em.21dtv.com/songs/60056480.mkv +陈雷-有你人生才美丽,http://em.21dtv.com/songs/60071459.mkv +黎明-愿你清楚我的心,http://em.21dtv.com/songs/60056212.mkv +李猛-有你陪着很幸福,http://em.21dtv.com/songs/60055232.mkv +梁咏琪-有你陪我的路上,http://em.21dtv.com/songs/60055231.mkv +阎维文-有那么一个地方,http://em.21dtv.com/songs/60055200.mkv +王大军-有你们我就有家,http://em.21dtv.com/songs/60063015.mkv +涂紫凝-要你看到我的美,http://em.21dtv.com/songs/60052381.mkv +卓依婷-月娘可比阮心肝,http://em.21dtv.com/songs/60056479.mkv +金波-有你就有红玫瑰(演唱会),http://em.21dtv.com/songs/60055224.mkv +黎明-愿你今夜别离去,http://em.21dtv.com/songs/60056211.mkv +枫舞+相容-有你就会有幸福,http://em.21dtv.com/songs/60112034.mkv +丽兰-愿你回到我身旁,http://em.21dtv.com/songs/60061861.mkv +新街口组合+MONA-与你好不好无关,http://em.21dtv.com/songs/60118612.mkv +新街口组合-与你好不好无关,http://em.21dtv.com/songs/60100076.mkv +刘孟哲-约你过个情人节,http://em.21dtv.com/songs/60087088.mkv +张翠萍+张力庭-一年更比一年好,http://em.21dtv.com/songs/60135230.mkv +张莹+黄俊-一年更比一年好,http://em.21dtv.com/songs/60100036.mkv +开克尔曼尼-一年更比一年好,http://em.21dtv.com/songs/60053323.mkv +卓依婷-一年更比一年好(演唱会),http://em.21dtv.com/songs/60053322.mkv +张真菲+曹磊-一年更比一年好,http://em.21dtv.com/songs/60063420.mkv +叶振棠+叶丽仪-愿你待我真的好,http://em.21dtv.com/songs/60056210.mkv +汤潮-用你的名字取暖,http://em.21dtv.com/songs/60054877.mkv +征服-要你宠我一辈子,http://em.21dtv.com/songs/60119562.mkv +黎明-一秒钟两个世界,http://em.21dtv.com/songs/60053316.mkv +齐豫-有没有这种说法,http://em.21dtv.com/songs/60055191.mkv +佚名-有没有一个夜晚(无原唱),http://em.21dtv.com/songs/60055184.mkv +侃侃-有没有人告诉你,http://em.21dtv.com/songs/60099753.mkv +陈楚生-有没有人告诉你,http://em.21dtv.com/songs/60055180.mkv +陈楚生-有没有人告诉你(演唱会),http://em.21dtv.com/songs/60055179.mkv +郭斯炫-有没有那么一天,http://em.21dtv.com/songs/60084441.mkv +苏玮-亦梦亦幻莫高窟,http://em.21dtv.com/songs/60108833.mkv +水母乐队-以命运般的约定,http://em.21dtv.com/songs/60110326.mkv +黄依群-辕门外三声炮响,http://em.21dtv.com/songs/60056118.mkv +姜佑泽+杨帆-羊眉吐气发大财,http://em.21dtv.com/songs/60107645.mkv +萧蔓萱-眼朦身冷心伤悲(无原唱),http://em.21dtv.com/songs/60052089.mkv +王瑞霞-用目屎甲你干杯,http://em.21dtv.com/songs/60054876.mkv +CELINE DION-you make me feel like a natura,http://em.21dtv.com/songs/60006556.mkv +少司命-饮马江湖风萧萧,http://em.21dtv.com/songs/60104085.mkv +燕尾蝶-伊敏河家乡的河,http://em.21dtv.com/songs/60086128.mkv +李建科-一命二运三风水,http://em.21dtv.com/songs/60131500.mkv +八大巨星-一马当先到功成(演唱会),http://em.21dtv.com/songs/60079121.mkv +毛阿敏-有梦不觉夜漫长,http://em.21dtv.com/songs/60109486.mkv +毛阿敏-有梦不觉夜漫长,http://em.21dtv.com/songs/60084442.mkv +Flumpool-夜は眠れるかい,http://em.21dtv.com/songs/60119142.mkv +江蕙-月亮照着的所在,http://em.21dtv.com/songs/60056445.mkv +陈奕迅-原来这里没有你,http://em.21dtv.com/songs/60055976.mkv +谢霆锋-夜了醉了就想哭(演唱会),http://em.21dtv.com/songs/60052618.mkv +钱万千-月亮醉倒后山坡,http://em.21dtv.com/songs/60127524.mkv +子祺-雅鲁藏布大峡谷,http://em.21dtv.com/songs/60063497.mkv +陈德容-越来越钟爱寂寞,http://em.21dtv.com/songs/60056600.mkv +高向鹏+傅振辉+邱淑贤-一粒月娘两粒星(无原唱),http://em.21dtv.com/songs/60053256.mkv +高向鹏+傅振辉+邱淑君-一粒月娘两粒星,http://em.21dtv.com/songs/60021400.mkv +胡梅-一路有你好幸福,http://em.21dtv.com/songs/60079118.mkv +黄丽萍-月亮月亮等等我,http://em.21dtv.com/songs/60132010.mkv +云龙-一路阳光到草原,http://em.21dtv.com/songs/60068916.mkv +岳太阳-眼泪笑着说再见,http://em.21dtv.com/songs/60063333.mkv +黎明-月亮下求你一吻(演唱会),http://em.21dtv.com/songs/60056441.mkv +孙楠-原谅,http://em.21dtv.com/songs/60119417.mkv +雷诺儿-原来我是巨蟹座,http://em.21dtv.com/songs/60079373.mkv +威仔+格子兮-原来我是第三者,http://em.21dtv.com/songs/60107648.mkv +书闻-眼泪为你流干了,http://em.21dtv.com/songs/60072684.mkv +韩浚易-原来我们还相爱,http://em.21dtv.com/songs/60117375.mkv +杜德伟-原来我love you so much,http://em.21dtv.com/songs/60055967.mkv +小蝶-原来我还在乎他,http://em.21dtv.com/songs/60119449.mkv +江若琳-原来我还爱着你,http://em.21dtv.com/songs/60130525.mkv +江若琳-原来我还爱着你,http://em.21dtv.com/songs/60128158.mkv +李殊-原谅我过去不懂,http://em.21dtv.com/songs/60056002.mkv +余天-原谅我吧心上人,http://em.21dtv.com/songs/60055996.mkv +小宇宙-原谅我不能爱你,http://em.21dtv.com/songs/60079379.mkv +欣哲-原谅我不够温柔,http://em.21dtv.com/songs/60127143.mkv +张书瑶-原谅我不够温柔,http://em.21dtv.com/songs/60122704.mkv +吴业坤-原来她不够爱我,http://em.21dtv.com/songs/60111749.mkv +华语群星-音乐是一个动词(HD),http://em.21dtv.com/songs/10012717.mkv +苏振华-音乐是我的生命,http://em.21dtv.com/songs/60054331.mkv +刘德华-原来是你最可爱,http://em.21dtv.com/songs/60055965.mkv +SHINE-伊丽莎伯太迟来,http://em.21dtv.com/songs/60097832.mkv +SHINE-伊莉莎伯太迟来,http://em.21dtv.com/songs/60053956.mkv +洪作颜-月亮若圆想起你,http://em.21dtv.com/songs/60056426.mkv +胡彦斌-音乐让我说爱你,http://em.21dtv.com/songs/60054327.mkv +梁珈瑜-原来人的心会死,http://em.21dtv.com/songs/60055960.mkv +李玲玉-一缕情丝一场梦,http://em.21dtv.com/songs/60116013.mkv +农夫-娱乐圈杀人事件,http://em.21dtv.com/songs/60092330.mkv +张冬玲-一路情歌向草原,http://em.21dtv.com/songs/60106822.mkv +孙露-原来你也在这里,http://em.21dtv.com/songs/60115807.mkv +刘若英-原来你也在这里,http://em.21dtv.com/songs/60055957.mkv +SAYA-原来你一直都在,http://em.21dtv.com/songs/60055958.mkv +好妹妹乐队-原来那天的阳光,http://em.21dtv.com/songs/60072764.mkv +鸿飞-原来你从未离开,http://em.21dtv.com/songs/60109763.mkv +刘德华-原来你才是天堂,http://em.21dtv.com/songs/60055946.mkv +刘嘉亮-原来你并不快乐,http://em.21dtv.com/songs/60055944.mkv +赵鑫-原来你并不爱我,http://em.21dtv.com/songs/60067748.mkv +越剧-一轮明月照高楼,http://em.21dtv.com/songs/60053297.mkv +马建涛-眼泪留在你走后,http://em.21dtv.com/songs/60052073.mkv +马建涛-眼泪流在你走后,http://em.21dtv.com/songs/60068897.mkv +何超+海胆仔+卢凯彤-1001罗夏克,http://em.21dtv.com/songs/60111692.mkv +花鼓戏-月里老仙下红尘,http://em.21dtv.com/songs/60090167.mkv +达坡玛吉-月亮落进山谷里,http://em.21dtv.com/songs/60056415.mkv +林育群-一百分的幸福,http://em.21dtv.com/songs/60063509.mkv +林育群-100分的朋友,http://em.21dtv.com/songs/60099342.mkv +李宏伟-一路凯歌清风扬,http://em.21dtv.com/songs/60084362.mkv +黄品源-远离激情那一天,http://em.21dtv.com/songs/60056154.mkv +葛维永-眼泪化作相思雨,http://em.21dtv.com/songs/60107173.mkv +冷漠-一路和谐一路歌,http://em.21dtv.com/songs/60072710.mkv +佚名-一轮红日照胸间,http://em.21dtv.com/songs/60053296.mkv +蔡莉-也留浩气天地间,http://em.21dtv.com/songs/60052424.mkv +童唱-月亮河边的孩子,http://em.21dtv.com/songs/60056410.mkv +雷蕾-月亮高高云中藏,http://em.21dtv.com/songs/60066566.mkv +杨千嬅-原来过得很快乐,http://em.21dtv.com/songs/60055939.mkv +于台烟-月历顶头的记号,http://em.21dtv.com/songs/60061864.mkv +佚名-夜来灯花结双蕊,http://em.21dtv.com/songs/60052596.mkv +洪真英-月亮代表我的心,http://em.21dtv.com/songs/60124207.mkv +雷龙-月亮代表我的心,http://em.21dtv.com/songs/60123346.mkv +齐秦-月亮代表我的心,http://em.21dtv.com/songs/60119078.mkv +赵鹏-月亮代表我的心,http://em.21dtv.com/songs/60107245.mkv +萧敬腾+许一鸣+封语-月亮代表我的心(最美和声)(现场版),http://em.21dtv.com/songs/60101491.mkv +馨梓-月亮代表我的心,http://em.21dtv.com/songs/60090318.mkv +李碧华-月亮代表我的心(李碧华),http://em.21dtv.com/songs/60089347.mkv +尤雅-月亮代表我的心,http://em.21dtv.com/songs/60087722.mkv +钟嘉欣-月亮代表我的心,http://em.21dtv.com/songs/60079414.mkv +王美兰-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60079413.mkv +赵鹏-月亮代表我的心,http://em.21dtv.com/songs/60056400.mkv +王馨平-月亮代表我的心,http://em.21dtv.com/songs/60056399.mkv +齐秦-月亮代表我的心,http://em.21dtv.com/songs/60056398.mkv +费玉清-月亮代表我的心,http://em.21dtv.com/songs/60056397.mkv +邓丽君-月亮代表我的心,http://em.21dtv.com/songs/60056396.mkv +陈伟-月亮代表我的心,http://em.21dtv.com/songs/60056395.mkv +甄妮-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056394.mkv +张国荣-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056393.mkv +言承旭-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056392.mkv +谢安琪+莫华伦-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056391.mkv +任贤齐-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056390.mkv +梅艳芳-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056389.mkv +刘德华-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056388.mkv +金波+齐秦-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056387.mkv +陈慧琳-月亮代表我的心(演唱会),http://em.21dtv.com/songs/60056386.mkv +蔡琴-月亮代表我的心(HD演唱会),http://em.21dtv.com/songs/60056385.mkv +陶喆-月亮代表谁的心,http://em.21dtv.com/songs/60056384.mkv +陶喆-月亮代表谁的心(演唱会),http://em.21dtv.com/songs/60056383.mkv +林峰-月亮代表谁的心(演唱会),http://em.21dtv.com/songs/60056382.mkv +斯琴巴图-眼泪藏在眼眶里,http://em.21dtv.com/songs/60113549.mkv +苏夏-一脸沧桑去望北,http://em.21dtv.com/songs/60062931.mkv +京剧-迎来春色换人间,http://em.21dtv.com/songs/60054504.mkv +陈雷-有量才是福气啦,http://em.21dtv.com/songs/60055172.mkv +刘子琪-雅鲁藏布大峡谷,http://em.21dtv.com/songs/60132241.mkv +追风-眼泪不要随便流,http://em.21dtv.com/songs/60126251.mkv +BEYOND-亚拉伯跳舞女郎,http://em.21dtv.com/songs/60051893.mkv +黄家强-亚拉伯跳舞女郎(演唱会),http://em.21dtv.com/songs/60051892.mkv +谢嘉全-眼泪不过十二点,http://em.21dtv.com/songs/60135744.mkv +何芝芸-眼泪不过十二点,http://em.21dtv.com/songs/60130083.mkv +佚名-原来不懂得恋爱,http://em.21dtv.com/songs/60055932.mkv +梁朝伟-原来不懂得恋爱,http://em.21dtv.com/songs/60055931.mkv +梁咏琪-原来爱情这么伤,http://em.21dtv.com/songs/60055930.mkv +梁咏琪-原来爱情那么伤,http://em.21dtv.com/songs/60090013.mkv +泳儿-原来爱情那么难,http://em.21dtv.com/songs/60088217.mkv +黄文威-原来爱就在身边,http://em.21dtv.com/songs/60079368.mkv +低调组合-夜空中最亮的星,http://em.21dtv.com/songs/60127730.mkv +宋亚轩-夜空中最亮的星,http://em.21dtv.com/songs/60123840.mkv +秦岚-夜空中最亮的星,http://em.21dtv.com/songs/60120838.mkv +张杰-夜空中最亮的星,http://em.21dtv.com/songs/60098352.mkv +逃跑计划乐队-夜空中最亮的星,http://em.21dtv.com/songs/60081693.mkv +张恒远-夜空中最亮的星,http://em.21dtv.com/songs/60081591.mkv +花儿乐队-有颗炸弹送给你(演唱会),http://em.21dtv.com/songs/60055156.mkv +柴华-一颗温暖男人心,http://em.21dtv.com/songs/60109465.mkv +金泽-一开始就是个错,http://em.21dtv.com/songs/60101189.mkv +张震岳-一开始就没退路,http://em.21dtv.com/songs/60053217.mkv +祝含颖-有快乐也有烦恼,http://em.21dtv.com/songs/60130629.mkv +谢雷-夜空+梨山痴情花(演唱会),http://em.21dtv.com/songs/60052586.mkv +陈妃平+孙国庆-用尽这一生到老,http://em.21dtv.com/songs/60084426.mkv +曹燕平-涯就中意客家人,http://em.21dtv.com/songs/60081294.mkv +婉如璞玉+天健-一见钟情驻心房,http://em.21dtv.com/songs/60097808.mkv +冷惜言-一见钟情的感受,http://em.21dtv.com/songs/60103915.mkv +陈美龄-愿君真爱不相欺,http://em.21dtv.com/songs/60056209.mkv +李丽蕊-愿君真爱不相欺(演唱会),http://em.21dtv.com/songs/60056208.mkv +刘辉兵-用尽一生守护你,http://em.21dtv.com/songs/60132256.mkv +草蜢-一加一加一的爱,http://em.21dtv.com/songs/60053150.mkv +许美静-冤家宜结不宜解,http://em.21dtv.com/songs/60055901.mkv +陈升-一加一不等于二,http://em.21dtv.com/songs/60053148.mkv +草蜢-愿今宵一起醉死(无原唱),http://em.21dtv.com/songs/60093095.mkv +梅艳芳-愿今宵一起醉死,http://em.21dtv.com/songs/60056204.mkv +王传一-遇见幸福三百天,http://em.21dtv.com/songs/60084467.mkv +拉毛王旭-延吉我最美的家,http://em.21dtv.com/songs/60071399.mkv +李承铉+赵泳鑫-遇见未知的自己,http://em.21dtv.com/songs/60122859.mkv +佚名-一见万岁来赔情,http://em.21dtv.com/songs/60053170.mkv +酔美-又见人间四月天,http://em.21dtv.com/songs/60120033.mkv +孙邦楠-一见你我心就跳,http://em.21dtv.com/songs/60105761.mkv +李慧宇-遇见你的小情歌,http://em.21dtv.com/songs/60117813.mkv +李宗盛+莫文蔚-遇见另一个自己,http://em.21dtv.com/songs/60055851.mkv +许茹芸-遇见另外一个人,http://em.21dtv.com/songs/60055850.mkv +枫舞+相容-缘尽了该放手了,http://em.21dtv.com/songs/60110312.mkv +高子洋-又见可怜落魄人,http://em.21dtv.com/songs/60055438.mkv +沈文程-一九九零台湾人,http://em.21dtv.com/songs/60053195.mkv +河静静-要嫁就嫁灰太狼,http://em.21dtv.com/songs/60107026.mkv +周艳泓-要嫁就嫁灰太狼,http://em.21dtv.com/songs/60052370.mkv +周艳泓-要嫁就嫁灰太狼(演唱会),http://em.21dtv.com/songs/60052369.mkv +田元-要嫁就嫁高富帅,http://em.21dtv.com/songs/60079046.mkv +4_IN_LOVE-已经过去的爱情,http://em.21dtv.com/songs/60090376.mkv +马亚丽-渔家姑娘在海边,http://em.21dtv.com/songs/60090325.mkv +赵秀兰-渔家姑娘在海边,http://em.21dtv.com/songs/60055552.mkv +佚名-渔家姑娘在海边,http://em.21dtv.com/songs/60055551.mkv +董文华-渔家姑娘在海边,http://em.21dtv.com/songs/60055550.mkv +郭公芳-有几番风雨晴天,http://em.21dtv.com/songs/60055150.mkv +杜江-要紧的是你自己,http://em.21dtv.com/songs/60114614.mkv +冼剑晨-一江春水向东流,http://em.21dtv.com/songs/60053183.mkv +卓依婷-迎接财神吉星照,http://em.21dtv.com/songs/60054503.mkv +四个女生-迎接财神吉星照,http://em.21dtv.com/songs/60054502.mkv +古巨基-眼睛不能没眼泪,http://em.21dtv.com/songs/60052046.mkv +古巨基-眼睛不能没眼泪(演唱会),http://em.21dtv.com/songs/60052045.mkv +群星-一句不变的诺言,http://em.21dtv.com/songs/60089441.mkv +李宁-一句不变的诺言,http://em.21dtv.com/songs/60053204.mkv +宋祖英-拥军爱民大秧歌,http://em.21dtv.com/songs/60054598.mkv +郭凤女-摇红烛化佛前灯(戏曲),http://em.21dtv.com/songs/60093343.mkv +佚名-要还着爱做一摆,http://em.21dtv.com/songs/60052367.mkv +贺一航+陈瑞-遗憾也是种温暖,http://em.21dtv.com/songs/60135764.mkv +花鼓戏-又好笑来又好气,http://em.21dtv.com/songs/60088523.mkv +李池湘+吴琨妤-烟花吐彩贺新年,http://em.21dtv.com/songs/60091316.mkv +洪荣宏-有话坦白讲出来,http://em.21dtv.com/songs/60055146.mkv +毕程漉-烟花三月下扬州,http://em.21dtv.com/songs/60128153.mkv +童丽-烟花三月下扬州,http://em.21dtv.com/songs/60085285.mkv +望海高歌-樱花盛开不见爱,http://em.21dtv.com/songs/60096334.mkv +孙燕姿-雨还是不停的下,http://em.21dtv.com/songs/60105751.mkv +感觉自己萌萌哒(张磊)-野花,http://em.21dtv.com/songs/60129152.mkv +林锦屏-玉河浸女殉情爱,http://em.21dtv.com/songs/60088128.mkv +佚名-玉河浸女-祭玉河,http://em.21dtv.com/songs/60055777.mkv +罗家宝-玉河浸女-祭玉河,http://em.21dtv.com/songs/60055776.mkv +梁耀安-玉河浸女-定鸳盟,http://em.21dtv.com/songs/60055775.mkv +黎田康子-一壶好茶一壶月,http://em.21dtv.com/songs/60053138.mkv +S.H.E-沿海公路的出口,http://em.21dtv.com/songs/60052019.mkv +JR纪言恺-烟火灿烂我爱你,http://em.21dtv.com/songs/60133219.mkv +纪言恺-烟火灿烂我爱你,http://em.21dtv.com/songs/60132790.mkv +杨子锋-有话不能甲你讲,http://em.21dtv.com/songs/60101391.mkv +白雪-阳光正在过马路,http://em.21dtv.com/songs/60052195.mkv +许美静-阳光总在风雨后,http://em.21dtv.com/songs/60052197.mkv +阿香-一个转身的距离,http://em.21dtv.com/songs/60117316.mkv +邓小坤-一个真实的故事,http://em.21dtv.com/songs/60080943.mkv +甘萍-一个真实的故事,http://em.21dtv.com/songs/60053126.mkv +朱哲琴-一个真实的故事(演唱会),http://em.21dtv.com/songs/60053125.mkv +逃跑计划-阳光照进回忆里,http://em.21dtv.com/songs/60086091.mkv +马条-阳光中的向日葵,http://em.21dtv.com/songs/60136003.mkv +三多-瑶哥瑶妹请你来,http://em.21dtv.com/songs/60097891.mkv +三多-瑶哥瑶妹等你来,http://em.21dtv.com/songs/60087034.mkv +张胜淼-一个有故事的人,http://em.21dtv.com/songs/60114549.mkv +张胜淼-一个有故事的人,http://em.21dtv.com/songs/60086114.mkv +张冬玲-勇敢一点,http://em.21dtv.com/songs/60104108.mkv +刘若英-一个有爱的地方,http://em.21dtv.com/songs/60053122.mkv +机动现场-摇滚校园s o r,http://em.21dtv.com/songs/60070121.mkv +来国庆-月光下的走婚路,http://em.21dtv.com/songs/60084496.mkv +才娜旺姆+嘉央-月光下的小情歌,http://em.21dtv.com/songs/60119590.mkv +阿赖-夜光下的小妹妹,http://em.21dtv.com/songs/60114186.mkv +贡尕达哇+央金次卓-月光下的你和我,http://em.21dtv.com/songs/60056356.mkv +完玛三智-月光下的缅茨姆,http://em.21dtv.com/songs/60127914.mkv +姚峰-月光下的红树林,http://em.21dtv.com/songs/60084495.mkv +葫芦丝-月光下的凤尾竹,http://em.21dtv.com/songs/60124848.mkv +佚名-月光下的凤尾竹,http://em.21dtv.com/songs/60056355.mkv +彭丽媛-月光下的凤尾竹,http://em.21dtv.com/songs/60056354.mkv +关牧村-月光下的凤尾竹,http://em.21dtv.com/songs/60056353.mkv +龚月-月光下的凤尾竹,http://em.21dtv.com/songs/60056352.mkv +杨钰莹-阳光下的白t恤(演唱会),http://em.21dtv.com/songs/60052185.mkv +乌兰托娅-月光下的布达拉,http://em.21dtv.com/songs/60084494.mkv +岗毅-月光下的布达拉,http://em.21dtv.com/songs/60056351.mkv +周晓晓-勇敢,http://em.21dtv.com/songs/60128898.mkv +刘雅丽-一个无依的晚上,http://em.21dtv.com/songs/60053113.mkv +罗震环-一个微笑一个你,http://em.21dtv.com/songs/60053107.mkv +黄盛典-喻古托物寄深意,http://em.21dtv.com/songs/60090361.mkv +李琛-月光甜甜照下来,http://em.21dtv.com/songs/60091348.mkv +胡彦斌-摇滚天生大一号,http://em.21dtv.com/songs/60079033.mkv +张迈-雨过天晴(演唱会),http://em.21dtv.com/songs/60071466.mkv +张崇基+张崇德-一个失意的晚上(演唱会),http://em.21dtv.com/songs/60079105.mkv +唐古-有个傻瓜爱过你,http://em.21dtv.com/songs/60103169.mkv +苏富权-一个善变的女人,http://em.21dtv.com/songs/60079104.mkv +宋祖英-一个士兵的梦想,http://em.21dtv.com/songs/60079106.mkv +黄文武-一个士兵的爱情,http://em.21dtv.com/songs/60124738.mkv +周越洪-一个深爱的女孩,http://em.21dtv.com/songs/60106716.mkv +周越洪-一个深爱的女孩,http://em.21dtv.com/songs/60102053.mkv +乔砥-一个深爱的女孩,http://em.21dtv.com/songs/60099731.mkv +阿米-一个深爱的女孩,http://em.21dtv.com/songs/60053102.mkv +张信哲-有个人想我就好,http://em.21dtv.com/songs/60055129.mkv +谢世超-一个人偷偷流泪,http://em.21dtv.com/songs/60106286.mkv +易帆-一个人偷偷流泪,http://em.21dtv.com/songs/60097807.mkv +谢世超-一个人偷偷流泪,http://em.21dtv.com/songs/60086113.mkv +张放+无极生-一个人去迪斯尼,http://em.21dtv.com/songs/60053074.mkv +无级生-一个人去迪士尼,http://em.21dtv.com/songs/60053073.mkv +龚琳娜-一个人没有同类,http://em.21dtv.com/songs/60114931.mkv +张爽-一个人_两个人,http://em.21dtv.com/songs/60089281.mkv +佳妮-一个人看小丸子,http://em.21dtv.com/songs/60111695.mkv +袁泉-一个人喝着拿铁(演唱会),http://em.21dtv.com/songs/60053053.mkv +吴俊余-一个人过圣诞节,http://em.21dtv.com/songs/60131248.mkv +陈洁仪-一个人的圆舞曲,http://em.21dtv.com/songs/60053043.mkv +苏素-一个人的生日歌,http://em.21dtv.com/songs/60053028.mkv +韩雪-一个人的抒情歌,http://em.21dtv.com/songs/60053035.mkv +田芯儿-一个人的圣诞夜,http://em.21dtv.com/songs/60053030.mkv +张赫宣-一个人的圣诞节,http://em.21dtv.com/songs/60096292.mkv +奕丹-一个人的圣诞节,http://em.21dtv.com/songs/60053029.mkv +胡杰夕+田芯儿-一个人的圣诞夜,http://em.21dtv.com/songs/60071418.mkv +KENNY-一个人的圣诞节,http://em.21dtv.com/songs/60071417.mkv +罗钢-一个人的情人节,http://em.21dtv.com/songs/60112888.mkv +朱长松-一个人的情人节,http://em.21dtv.com/songs/60079100.mkv +张启靓-一个人的情人节,http://em.21dtv.com/songs/60053024.mkv +顺子-一个人的情人节,http://em.21dtv.com/songs/60053023.mkv +张超-一个人的平安夜,http://em.21dtv.com/songs/60053021.mkv +杨千嬅-一个人的美术馆,http://em.21dtv.com/songs/60053020.mkv +彭永琛-一个人的练习曲,http://em.21dtv.com/songs/60071416.mkv +孟文豪-一个人的ktv,http://em.21dtv.com/songs/60098261.mkv +任和-一个人的华尔兹,http://em.21dtv.com/songs/60125094.mkv +谢知言-一个人唱的情歌,http://em.21dtv.com/songs/60052997.mkv +赵本山-一个情字活一生,http://em.21dtv.com/songs/60052973.mkv +江美琪-有个男生为我哭,http://em.21dtv.com/songs/60055126.mkv +陈伟-一个男人有多难,http://em.21dtv.com/songs/60117319.mkv +马丁-有个男人很爱你,http://em.21dtv.com/songs/60100645.mkv +任贤齐-一个男人的眼泪,http://em.21dtv.com/songs/60052966.mkv +任贤齐-一个男人的眼泪(演唱会),http://em.21dtv.com/songs/60052965.mkv +王艺霖-一个女人的笑话,http://em.21dtv.com/songs/60119824.mkv +刘雪微-一个女人的寂寞,http://em.21dtv.com/songs/60067698.mkv +叶玉卿-预感你将会爱我,http://em.21dtv.com/songs/60055808.mkv +卡拉OK-有个女孩等着你,http://em.21dtv.com/songs/60089189.mkv +亦帆+黄宥杰-鱼干女 草食男,http://em.21dtv.com/songs/60096179.mkv +杨柳-一个女兵的故事,http://em.21dtv.com/songs/60052968.mkv +儿歌-一个姆指动一动,http://em.21dtv.com/songs/60089132.mkv +童唱-一个拇指动一动,http://em.21dtv.com/songs/60052964.mkv +余天-一个陌生的女孩,http://em.21dtv.com/songs/60052962.mkv +乌兰托娅-一个妈妈的女儿,http://em.21dtv.com/songs/60103853.mkv +泽旺多吉-一个妈妈的女儿,http://em.21dtv.com/songs/60098577.mkv +兰卡布尺-一个妈妈的女儿,http://em.21dtv.com/songs/60052957.mkv +德乾旺姆-一个妈妈的女儿,http://em.21dtv.com/songs/60052956.mkv +莫镇贤+ALISSA K-有个美满的开始,http://em.21dtv.com/songs/60055125.mkv +佚名-一个美丽的地方,http://em.21dtv.com/songs/60052960.mkv +叶矛-一个美丽的传说,http://em.21dtv.com/songs/60090795.mkv +魏金栋-一个美丽的传说,http://em.21dtv.com/songs/60052959.mkv +柳石明-一个美丽的传说,http://em.21dtv.com/songs/60052958.mkv +亚东-月光落地的声音,http://em.21dtv.com/songs/60056342.mkv +铁文太-月光里的察哈尔,http://em.21dtv.com/songs/60108102.mkv +TWINS-饮歌 恋爱大过天(演唱会),http://em.21dtv.com/songs/60054360.mkv +郑志立-一个毽子七八七,http://em.21dtv.com/songs/60094711.mkv +兰旗儿-一个甲子的回望,http://em.21dtv.com/songs/60067697.mkv +黄韵玲-摇滚精云三合一,http://em.21dtv.com/songs/60089553.mkv +黄韵玲-摇滚精灵三合一,http://em.21dtv.com/songs/60052267.mkv +黄宗泽-越过高山越过谷,http://em.21dtv.com/songs/60056589.mkv +周三-一个歌手的情书,http://em.21dtv.com/songs/60096055.mkv +小宇-一个光年的距离,http://em.21dtv.com/songs/60071414.mkv +王杰-一个孤独的理由,http://em.21dtv.com/songs/60091704.mkv +张可-一个党员一面旗(演唱会),http://em.21dtv.com/songs/60084348.mkv +林昕阳-英国冬天不下雨,http://em.21dtv.com/songs/60054406.mkv +UBEAT-应该对你好一点,http://em.21dtv.com/songs/60084411.mkv +杨议-阳光的快乐生活,http://em.21dtv.com/songs/60065308.mkv +瑞雪-一个错误的相遇,http://em.21dtv.com/songs/60109550.mkv +陈妃平-阳光灿烂的日子,http://em.21dtv.com/songs/60052170.mkv +孟杨-一个被遗忘的人,http://em.21dtv.com/songs/60079091.mkv +王筝-阳光变成淡蓝色,http://em.21dtv.com/songs/60052168.mkv +花世纪-一个爱情的流浪,http://em.21dtv.com/songs/60086107.mkv +黎明-一分一秒爱跳舞,http://em.21dtv.com/songs/60114307.mkv +吕小琴+张惠冬-远方有个女儿国,http://em.21dtv.com/songs/60089727.mkv +姚雨鑫-扬帆幸福的方向,http://em.21dtv.com/songs/60068900.mkv +百灵鸟+大约冬季-缘分让我遇见你,http://em.21dtv.com/songs/60104343.mkv +郭玲-缘份让我们牵手,http://em.21dtv.com/songs/60108929.mkv +王羽泽-缘分让我爱上你,http://em.21dtv.com/songs/60056062.mkv +仝林梅+李永成-一方青天日月朗,http://em.21dtv.com/songs/60079089.mkv +中岛美嘉-一番绮丽な私を,http://em.21dtv.com/songs/60134849.mkv +中岛美嘉-一番绮丽な私を(无原唱),http://em.21dtv.com/songs/60052924.mkv +谢雷-一分情半分是假(无原唱),http://em.21dtv.com/songs/60052928.mkv +白里格-远方没有大凉山,http://em.21dtv.com/songs/60124314.mkv +来国庆-岩缝里盛开的花,http://em.21dtv.com/songs/60062556.mkv +海弦月+曹越-缘分来了就是你,http://em.21dtv.com/songs/60127171.mkv +曹越+门丽-缘分来了就是你,http://em.21dtv.com/songs/60110244.mkv +张义杰-缘分冷冷到尽头,http://em.21dtv.com/songs/60067751.mkv +佚名-一峰更比一峰高,http://em.21dtv.com/songs/60052944.mkv +沈建宏-有佛法就有办法,http://em.21dtv.com/songs/60055120.mkv +陈笑玮-远方的香格里拉,http://em.21dtv.com/songs/60066560.mkv +天堂飘雪-远方的我在等你,http://em.21dtv.com/songs/60079393.mkv +苏有朋+黎姿-缘份多数也短暂,http://em.21dtv.com/songs/60056085.mkv +黎姿+苏有朋-缘分多数也短暂,http://em.21dtv.com/songs/60056061.mkv +小琢-远方的茶园古镇,http://em.21dtv.com/songs/60132390.mkv +腾格尔-月儿弯弯照九州,http://em.21dtv.com/songs/60084489.mkv +佚名-月儿弯弯照九洲,http://em.21dtv.com/songs/60056296.mkv +紫薇-月儿弯弯照九州,http://em.21dtv.com/songs/60056295.mkv +卓依婷-月儿弯弯照九州,http://em.21dtv.com/songs/60056294.mkv +林淑容-月儿弯弯照九州,http://em.21dtv.com/songs/60056293.mkv +龚月-月儿弯弯照九州,http://em.21dtv.com/songs/60056292.mkv +陈松伶-月儿弯弯照九州,http://em.21dtv.com/songs/60056291.mkv +佚名-一二三四五六七,http://em.21dtv.com/songs/60052918.mkv +陈绮贞-一二三四五六七,http://em.21dtv.com/songs/60052917.mkv +爱戴-一二三四五六七,http://em.21dtv.com/songs/60052916.mkv +F.I.R-一二三四五六七(演唱会),http://em.21dtv.com/songs/60052915.mkv +佚名-一二三四五六七(无原唱),http://em.21dtv.com/songs/60052914.mkv +张北北-一二三四五六七,http://em.21dtv.com/songs/60063510.mkv +吉杰-一二三四五六七(演唱会),http://em.21dtv.com/songs/60061813.mkv +LOTTE GIRLS-一二三快乐满天(演唱会),http://em.21dtv.com/songs/60052905.mkv +JAE HO-YEOUIDO,http://em.21dtv.com/songs/60104689.mkv +唐美华-燕儿飞飞是为谁,http://em.21dtv.com/songs/60133515.mkv +Deorro-Yee[DJ],http://em.21dtv.com/songs/60122364.mkv +庄学忠-月到中秋分外明,http://em.21dtv.com/songs/60087757.mkv +卢广仲-一定要相信自己,http://em.21dtv.com/songs/60122551.mkv +彭恋斯-一朵忧伤的玫瑰,http://em.21dtv.com/songs/60052897.mkv +信-远得要命的爱情,http://em.21dtv.com/songs/60061859.mkv +张津涤-鱼的眼泪海知道,http://em.21dtv.com/songs/60109317.mkv +李丹阳+孔庆学-一朵鲜花鲜又鲜,http://em.21dtv.com/songs/60106929.mkv +佚名-一朵鲜花鲜又鲜,http://em.21dtv.com/songs/60052895.mkv +周蕙-约定,http://em.21dtv.com/songs/60116664.mkv +佚名-雨点往我头上掉,http://em.21dtv.com/songs/60055641.mkv +陈淑萍-伊的温柔赢过我,http://em.21dtv.com/songs/60053950.mkv +齐霖-有多少人失恋过,http://em.21dtv.com/songs/60118231.mkv +杨鸣-夜都市半瞑三更,http://em.21dtv.com/songs/60054272.mkv +佚名-夜都市半暝三更,http://em.21dtv.com/songs/60052558.mkv +东方依依-有多少爱在心头,http://em.21dtv.com/songs/60105544.mkv +音乐走廊+歌一生-有多少爱值得爱,http://em.21dtv.com/songs/60121136.mkv +龙梅子-一段情歌一段伤,http://em.21dtv.com/songs/60114925.mkv +王识贤-一滴目屎一滴爱,http://em.21dtv.com/songs/60052852.mkv +江蕙-一顶眠床同棉被,http://em.21dtv.com/songs/60052868.mkv +傅振辉+邱淑君-一顶眠床两粒心(无原唱),http://em.21dtv.com/songs/60052867.mkv +高山-一朵莲花就地开,http://em.21dtv.com/songs/60084347.mkv +HKT48-樱、みんなで食べた,http://em.21dtv.com/songs/60099000.mkv +佚名-you dont have to say you love,http://em.21dtv.com/songs/60006536.mkv +叶丽仪-you dont have to say you love,http://em.21dtv.com/songs/60006535.mkv +佚名-you dont have to be a star,http://em.21dtv.com/songs/60006533.mkv +王可-一朵花开的时间,http://em.21dtv.com/songs/60133979.mkv +周传雄-雨打花瓣的声音,http://em.21dtv.com/songs/60106697.mkv +于浩宸-一代风流曾国藩,http://em.21dtv.com/songs/60067695.mkv +灿烂阿龙+云儿思秋-约定爱你到永远,http://em.21dtv.com/songs/60066563.mkv +U2-邮差总是按错铃(无原唱),http://em.21dtv.com/songs/60054976.mkv +董柯娣-延昌自别圣母后,http://em.21dtv.com/songs/60052008.mkv +陈羽凡+张石-一场游戏一场梦,http://em.21dtv.com/songs/60095136.mkv +吴克群-一场游戏一场梦,http://em.21dtv.com/songs/60094432.mkv +张江-一场游戏一场梦,http://em.21dtv.com/songs/60091125.mkv +王杰-一场游戏一场梦(演唱会),http://em.21dtv.com/songs/60079080.mkv +王杰-一场游戏一场梦,http://em.21dtv.com/songs/60052809.mkv +齐秦-一场游戏一场梦,http://em.21dtv.com/songs/60052808.mkv +青山-一寸相思一寸泪,http://em.21dtv.com/songs/60052825.mkv +杨燕-一寸相思一寸泪(演唱会),http://em.21dtv.com/songs/60052824.mkv +杨小艳-一寸相思一寸灰,http://em.21dtv.com/songs/60119691.mkv +青山-一寸相思未了情,http://em.21dtv.com/songs/60052823.mkv +萧敬腾-一次幸福的机会,http://em.21dtv.com/songs/60118019.mkv +刘若英-一次幸福的机会,http://em.21dtv.com/songs/60052819.mkv +任天鸣-一程山水一程歌,http://em.21dtv.com/songs/60052812.mkv +王喆-又唱山歌给党听(演唱会),http://em.21dtv.com/songs/60079307.mkv +王喆-又唱山歌给党听,http://em.21dtv.com/songs/60072748.mkv +张津涤-一场秋雨一场情,http://em.21dtv.com/songs/60135211.mkv +林敏丹-一茶茉莉一城香,http://em.21dtv.com/songs/60100209.mkv +Mamamoo-1cm的自尊心,http://em.21dtv.com/songs/60134751.mkv +MAMAMOO-1cm的自尊心,http://em.21dtv.com/songs/60121282.mkv +林欣彤-一次零一次人生,http://em.21dtv.com/songs/60125783.mkv +群星-一场好戏唔易捞,http://em.21dtv.com/songs/60093034.mkv +群星-迎春花+万事如意,http://em.21dtv.com/songs/60054491.mkv +卓依婷-迎春花开幸福年,http://em.21dtv.com/songs/60054497.mkv +于全莉-油菜花开情满怀,http://em.21dtv.com/songs/60131145.mkv +韩晓辉-油菜花开情满怀,http://em.21dtv.com/songs/60128579.mkv +阿BEN-油菜花开就结婚,http://em.21dtv.com/songs/60114171.mkv +曹轩宾-一朝芳草碧连天,http://em.21dtv.com/songs/60098423.mkv +巨一清-一朝芳草碧连天,http://em.21dtv.com/songs/60052810.mkv +张卫健+黎姿-一串痴情一串泪,http://em.21dtv.com/songs/60052813.mkv +浩轩-一场悲剧的故事,http://em.21dtv.com/songs/60113811.mkv +许志安-一成不变的谎言(演唱会),http://em.21dtv.com/songs/60052811.mkv +王建荣+司徒兰芳-一场爱情一场梦,http://em.21dtv.com/songs/60121907.mkv +黄文武-一辈子这样爱你,http://em.21dtv.com/songs/60128632.mkv +列子-一辈子要像一天,http://em.21dtv.com/songs/60120350.mkv +钟芹-一辈子忘一个人,http://em.21dtv.com/songs/60052769.mkv +曾羽飞-一辈子为你心痛,http://em.21dtv.com/songs/60122809.mkv +张国荣-一辈子失去了你,http://em.21dtv.com/songs/60052768.mkv +FREEPARTY-拥抱着你的滋味,http://em.21dtv.com/songs/60084415.mkv +自由派对-拥抱着你的滋味(演唱会),http://em.21dtv.com/songs/60070174.mkv +自由派对-拥抱着你的滋味,http://em.21dtv.com/songs/60067722.mkv +李玟-一辈子都要相信,http://em.21dtv.com/songs/60091332.mkv +李健-一辈子的十分钟,http://em.21dtv.com/songs/60129223.mkv +祁隆-一辈子的好兄弟,http://em.21dtv.com/songs/60070133.mkv +李志洲-一辈子的好兄弟,http://em.21dtv.com/songs/60068907.mkv +林忆莲-一辈子背一个你,http://em.21dtv.com/songs/60090000.mkv +辰杰-言不由衷的祝福,http://em.21dtv.com/songs/60079002.mkv +汪子琳-一百元的电话卡(无原唱),http://em.21dtv.com/songs/60052734.mkv +易秀明珠-一不小心丢失你,http://em.21dtv.com/songs/60070134.mkv +谢容儿-一不小心爱上你,http://em.21dtv.com/songs/60103574.mkv +张翰+江映蓉-一不小心爱上你,http://em.21dtv.com/songs/60052784.mkv +卓文萱-永不消失的彩虹,http://em.21dtv.com/songs/60054629.mkv +群星-永不熄灭的圣火,http://em.21dtv.com/songs/60054627.mkv +黄宝欣-一杯香槟半杯糖,http://em.21dtv.com/songs/60052757.mkv +汪峰-一百万吨的信念(演唱会),http://em.21dtv.com/songs/60084339.mkv +天籁天-拥抱太阳的月亮,http://em.21dtv.com/songs/60113379.mkv +胡波涛-与悲伤无关的歌,http://em.21dtv.com/songs/60097814.mkv +庄心妍-摇摆Style,http://em.21dtv.com/songs/60105005.mkv +奚秀兰-雨不洒花花不红,http://em.21dtv.com/songs/60101063.mkv +佚名-雨不洒花花不红,http://em.21dtv.com/songs/60055633.mkv +许志安-用背叛成全背叛,http://em.21dtv.com/songs/60054868.mkv +李思琳+黄灿灿+宋雪莱-一百零一个祝福,http://em.21dtv.com/songs/60052729.mkv +一单上达-一百零一个借口,http://em.21dtv.com/songs/60099049.mkv +欧得洋-一百零一封情书,http://em.21dtv.com/songs/60052728.mkv +李度-永不流泪的眼睛,http://em.21dtv.com/songs/60054621.mkv +江念庭-永不流泪的眼睛,http://em.21dtv.com/songs/60054620.mkv +童唱-一百零八颗珍珠,http://em.21dtv.com/songs/60052726.mkv +T2o-一百块钱骗我玩,http://em.21dtv.com/songs/60106558.mkv +王筝-一杯咖啡到天亮,http://em.21dtv.com/songs/60052752.mkv +林志颖-一杯咖啡的时间,http://em.21dtv.com/songs/60052753.mkv +晓依-一杯酒,http://em.21dtv.com/songs/60109394.mkv +伍佰-一百九十九玫瑰(演唱会),http://em.21dtv.com/songs/60052724.mkv +阮丹青+许茹芸-永不结束的故事,http://em.21dtv.com/songs/60054619.mkv +周觅-野百合也有春天(HD),http://em.21dtv.com/songs/10012749.mkv +潘越云+阿兰-野百合也有春天,http://em.21dtv.com/songs/60098610.mkv +范玮琪+胡维纳-野百合也有春天,http://em.21dtv.com/songs/60095081.mkv +零点乐队-野百合也有春天,http://em.21dtv.com/songs/60079053.mkv +永邦-野百合也有春天,http://em.21dtv.com/songs/60052455.mkv +潘越云-野百合也有春天,http://em.21dtv.com/songs/60052454.mkv +孟庭苇-野百合也有春天,http://em.21dtv.com/songs/60052453.mkv +刘惜君-野百合也有春天,http://em.21dtv.com/songs/60052452.mkv +罗大佑-野百合也有春天(演唱会),http://em.21dtv.com/songs/60065314.mkv +阿鲁阿卓-野百合也有春天(演唱会),http://em.21dtv.com/songs/60065313.mkv +陈盈洁-夜半歌声若响起,http://em.21dtv.com/songs/60052530.mkv +王绎龙-摇摆哥(无损),http://em.21dtv.com/songs/50000270.mkv +小北-永不分手的恋爱,http://em.21dtv.com/songs/60126807.mkv +李敏-永不分手的爱情,http://em.21dtv.com/songs/60099304.mkv +金岩-永不凋谢的花朵,http://em.21dtv.com/songs/60087065.mkv +泽旺多吉-扬鞭策马追梦忙,http://em.21dtv.com/songs/60129341.mkv +傅松-一边唱歌一边哭,http://em.21dtv.com/songs/60099759.mkv +李翊君-拥抱不见得拥有,http://em.21dtv.com/songs/60054577.mkv +于永祺-越爱越深越寂寞,http://em.21dtv.com/songs/60134860.mkv +陈思安-有爱无爱拢是痛,http://em.21dtv.com/songs/60055094.mkv +佚名-you are the sunshine of my life,http://em.21dtv.com/songs/60006516.mkv +S WONDER-you are the sunshine of my life,http://em.21dtv.com/songs/60006515.mkv +钟嘉欣-友爱是这么简单,http://em.21dtv.com/songs/60079268.mkv +美声四季-雅安牵着你的手,http://em.21dtv.com/songs/60078989.mkv +庄之影-越爱你越想解脱,http://em.21dtv.com/songs/60079430.mkv +后舍男生-以爱命名的童话,http://em.21dtv.com/songs/60054077.mkv +雷佳-用爱开创新天地,http://em.21dtv.com/songs/60054866.mkv +BBi-越爱就越想拥有,http://em.21dtv.com/songs/60121216.mkv +杜存刚+陈莹-要爱就爱猪八戒,http://em.21dtv.com/songs/60052351.mkv +秦博-要爱就爱一辈子,http://em.21dtv.com/songs/60130634.mkv +秦博-要爱就爱一辈子,http://em.21dtv.com/songs/60124319.mkv +林胜天+孟杨-要爱就爱一辈子,http://em.21dtv.com/songs/60119713.mkv +高艺菲-要爱就爱一辈子,http://em.21dtv.com/songs/60112393.mkv +林胜天-要爱就爱一辈子,http://em.21dtv.com/songs/60107828.mkv +林胜天+孟杨-要爱就爱一辈子,http://em.21dtv.com/songs/60106985.mkv +王杰-又爱孤独又爱你(演唱会),http://em.21dtv.com/songs/60055414.mkv +迪克牛仔-没有爱的人都一样,http://em.21dtv.com/songs/60069589.mkv +办桌阿杰+苏路-有爱不惊苦来磨,http://em.21dtv.com/songs/60055085.mkv +荣杨-心中只想喜欢你,http://em.21dtv.com/songs/60062875.mkv +苏富权-心中最美的月亮,http://em.21dtv.com/songs/60126100.mkv +王馨-心中最美的月亮,http://em.21dtv.com/songs/60078805.mkv +SHELLY佳-写在最初的流年,http://em.21dtv.com/songs/60078751.mkv +晓月-心中永远只有你,http://em.21dtv.com/songs/60119619.mkv +晓月-心中永远只有你,http://em.21dtv.com/songs/60096086.mkv +万一英-血债要用血来偿,http://em.21dtv.com/songs/60051799.mkv +张平-想再一次遇见你,http://em.21dtv.com/songs/60115905.mkv +黄静芸-心中有爱不寂寞,http://em.21dtv.com/songs/60103732.mkv +蔡幸娟-想着想着就哭了,http://em.21dtv.com/songs/60078647.mkv +佚名-下着小雨的湖畔,http://em.21dtv.com/songs/60048355.mkv +李碧华-下着小雨的湖畔,http://em.21dtv.com/songs/60048354.mkv +佚名-相知相许在心头,http://em.21dtv.com/songs/60048891.mkv +林慧萍-相知相许在心头,http://em.21dtv.com/songs/60068832.mkv +好妹妹乐队-心中喜欢就说爱,http://em.21dtv.com/songs/60104904.mkv +邓丽君-心中喜欢就说爱,http://em.21dtv.com/songs/60050760.mkv +陶喆+王奕丁-选择,http://em.21dtv.com/songs/60126415.mkv +朱咪咪-心债+忘尽心中情(演唱会),http://em.21dtv.com/songs/60050708.mkv +容祖儿-像昨天她喜欢我,http://em.21dtv.com/songs/60092517.mkv +周杰伦+陈梓童-鞋子特大号组曲,http://em.21dtv.com/songs/60115056.mkv +王觉+张翠萍-心中思念有个你,http://em.21dtv.com/songs/60120780.mkv +王觉-心中思念有个你,http://em.21dtv.com/songs/60120779.mkv +韩磊-香醉人间五千年,http://em.21dtv.com/songs/60078612.mkv +罗炜-香醉人间五千年(演唱会),http://em.21dtv.com/songs/60048959.mkv +周燕-香醉人间三千年,http://em.21dtv.com/songs/60132305.mkv +周燕-香醉人间三千年,http://em.21dtv.com/songs/60125315.mkv +品冠-现在你在哪里?,http://em.21dtv.com/songs/60115765.mkv +阿古-寻找那一片草原,http://em.21dtv.com/songs/60106366.mkv +王星策-想着你的每一天,http://em.21dtv.com/songs/60110399.mkv +洛天依-旋转木马转啊转,http://em.21dtv.com/songs/60100273.mkv +梁咏琪-旋转木马的终端,http://em.21dtv.com/songs/60092892.mkv +李胜基-现在开始我爱你,http://em.21dtv.com/songs/60086974.mkv +崔秀丽-寻找快乐的意义,http://em.21dtv.com/songs/60132413.mkv +黄品冠-现在就想见的人(演唱会),http://em.21dtv.com/songs/60048521.mkv +回音哥-寻找和你的未来,http://em.21dtv.com/songs/60132315.mkv +周雅芳-心中甘有阮的名(无原唱),http://em.21dtv.com/songs/60020559.mkv +曾敏-心中的太阳月亮,http://em.21dtv.com/songs/60104182.mkv +庞龙-心中的太阳月亮,http://em.21dtv.com/songs/60050747.mkv +姬长乐-学着大哥做大哥,http://em.21dtv.com/songs/60103191.mkv +泽仁伍波-心中的次仁拉姆,http://em.21dtv.com/songs/60121867.mkv +周华健-现在才说我爱你,http://em.21dtv.com/songs/60048511.mkv +大军-想在城里安个家,http://em.21dtv.com/songs/60071320.mkv +胡雪盟-心中不能没有你,http://em.21dtv.com/songs/60088501.mkv +刘德华+关之琳-心中爱你口难言,http://em.21dtv.com/songs/60050723.mkv +宋祖英-相约在月圆时节,http://em.21dtv.com/songs/60048888.mkv +汪峰-信仰在空中飘扬(演唱会),http://em.21dtv.com/songs/60051024.mkv +胡松华-小鸭子和罂粟花,http://em.21dtv.com/songs/60049856.mkv +古敏倩-喜羊羊与灰太狼,http://em.21dtv.com/songs/60090782.mkv +李琦-悬崖,http://em.21dtv.com/songs/60125713.mkv +张信哲+敖登高娃-信仰,http://em.21dtv.com/songs/60123913.mkv +王宏伟-相依相伴的高原,http://em.21dtv.com/songs/60048865.mkv +佚名-夕阳问你在那里,http://em.21dtv.com/songs/60047869.mkv +东方依依+长春虫子-想要问你为什么,http://em.21dtv.com/songs/60126571.mkv +流氓阿德-写一首幸福的歌,http://em.21dtv.com/songs/60112076.mkv +马念先-写一首情歌给我(演唱会),http://em.21dtv.com/songs/60050021.mkv +刘昊-下雨时你在哪里,http://em.21dtv.com/songs/60081084.mkv +龙影云-写一首歌祝福你,http://em.21dtv.com/songs/60122318.mkv +刘超华-写一首歌送给你,http://em.21dtv.com/songs/60087428.mkv +极泷-香烟烧到手指头,http://em.21dtv.com/songs/60078610.mkv +大巴山民歌团-香韵前河三千年,http://em.21dtv.com/songs/60132330.mkv +杨茜茜+张迪-香韵前河三千年,http://em.21dtv.com/songs/60108610.mkv +蔡琴-香烟迷濛了眼睛,http://em.21dtv.com/songs/60088605.mkv +蔡琴-香烟迷蒙了眼睛,http://em.21dtv.com/songs/60048957.mkv +杨幂-需要恋爱的夏天,http://em.21dtv.com/songs/60061792.mkv +潘七魁-相遇就像梦一场,http://em.21dtv.com/songs/60133957.mkv +马浚伟-幸运就是遇到您,http://em.21dtv.com/songs/60051417.mkv +梁玉嵘-浔阳江上浔阳月(戏曲),http://em.21dtv.com/songs/60092918.mkv +庄孝纬+张菱-想要甲你同枕头,http://em.21dtv.com/songs/60049276.mkv +王菲菲+沙宝亮-逍遥江湖鸳鸯剑,http://em.21dtv.com/songs/60106142.mkv +沙宝亮+王菲菲-逍遥江湖鸳鸯剑(演唱会),http://em.21dtv.com/songs/60078673.mkv +温博-雪域高原一抹绿,http://em.21dtv.com/songs/60078979.mkv +张地-新杨过与小龙女,http://em.21dtv.com/songs/60050978.mkv +陈妃平-想一个人多么苦,http://em.21dtv.com/songs/60049286.mkv +根呷-雪域儿子的希望,http://em.21dtv.com/songs/60088136.mkv +佚名-小雨打在我身上,http://em.21dtv.com/songs/60049884.mkv +刘文正-小雨打在我身上(无原唱),http://em.21dtv.com/songs/60049883.mkv +池宇菲-想要唱歌乎你听,http://em.21dtv.com/songs/60113778.mkv +王宝强-乡下住着咱爹妈,http://em.21dtv.com/songs/60048581.mkv +佚名-雄心壮志冲云天,http://em.21dtv.com/songs/60051481.mkv +童安格-谢谢最深爱的你,http://em.21dtv.com/songs/60050096.mkv +毛宁-谢谢最深爱的你(演唱会),http://em.21dtv.com/songs/60050095.mkv +陈奕迅-相信自己无限极,http://em.21dtv.com/songs/60078593.mkv +佚名-星星摇着银铃铛,http://em.21dtv.com/songs/60125137.mkv +甄妮-小小一个小女人,http://em.21dtv.com/songs/60049831.mkv +侃侃-小小羊儿要回家,http://em.21dtv.com/songs/60086996.mkv +方伊琪-小小羊儿要回家(演唱会),http://em.21dtv.com/songs/60078734.mkv +张俐敏-小小羊儿要回家,http://em.21dtv.com/songs/60049830.mkv +佚名-小小羊儿要回家,http://em.21dtv.com/songs/60049829.mkv +谭维维-星星,http://em.21dtv.com/songs/60119983.mkv +苟乃鹏+任贤齐-小小,http://em.21dtv.com/songs/60109596.mkv +苟乃鹏-小小,http://em.21dtv.com/songs/60109595.mkv +潭明丽-潇湘山水都是歌,http://em.21dtv.com/songs/60128188.mkv +戚薇-仙侠世界之错过,http://em.21dtv.com/songs/60078552.mkv +李淑勒+梁耀安-心想事成贺新年,http://em.21dtv.com/songs/60089960.mkv +杨培安-谢谢让我爱上你,http://em.21dtv.com/songs/60050088.mkv +梁咏琪-谢谢你这些日子,http://em.21dtv.com/songs/60050078.mkv +冯敏-相信你也在感觉,http://em.21dtv.com/songs/60048841.mkv +金山-谢谢你我的爱人,http://em.21dtv.com/songs/60096519.mkv +董璇+高云翔-谢谢你我的爱人,http://em.21dtv.com/songs/60068855.mkv +雷启飞-谢谢你我的爱人,http://em.21dtv.com/songs/60067649.mkv +牛朝阳-谢谢你让我爱你,http://em.21dtv.com/songs/60050072.mkv +宋祖英-谢谢你人民警察,http://em.21dtv.com/songs/60050074.mkv +黄钰龙-谢谢你如此爱我,http://em.21dtv.com/songs/60061768.mkv +黄心懋-谢谢你陪我吃苦,http://em.21dtv.com/songs/60050068.mkv +云菲菲+喜波-谢谢你能嫁给我,http://em.21dtv.com/songs/60101886.mkv +李雪莱-谢谢你看我比赛,http://em.21dtv.com/songs/60127067.mkv +王碎林-谢谢你还爱着我,http://em.21dtv.com/songs/60124270.mkv +杨昭-谢谢你给的一切,http://em.21dtv.com/songs/60086038.mkv +宇桐非-谢谢你给的温柔,http://em.21dtv.com/songs/60070071.mkv +严热-谢谢你给的伤害,http://em.21dtv.com/songs/60131138.mkv +佚名-谢谢你常记得我,http://em.21dtv.com/songs/60050050.mkv +邓丽君-谢谢你常记得我,http://em.21dtv.com/songs/60050049.mkv +江湖哥-谢谢妹妹你爱我,http://em.21dtv.com/songs/60132671.mkv +江湖哥-谢谢妹妹你爱我,http://em.21dtv.com/songs/60128157.mkv +佚名-学习雷锋好榜样,http://em.21dtv.com/songs/60051662.mkv +童唱-学习雷锋好榜样,http://em.21dtv.com/songs/60051661.mkv +侯旭-学习雷锋好榜样,http://em.21dtv.com/songs/60051660.mkv +刘向圆-学习雷锋好榜样,http://em.21dtv.com/songs/60072677.mkv +徐誉滕-星星和我睡不着,http://em.21dtv.com/songs/60051114.mkv +卓依婷-嘻嘻哈哈接财神,http://em.21dtv.com/songs/60048056.mkv +卓依婷-嘻嘻哈哈过新年,http://em.21dtv.com/songs/60078511.mkv +吴依琳-嘻嘻哈哈过新年,http://em.21dtv.com/songs/60078510.mkv +佚名-嘻嘻哈哈过新年,http://em.21dtv.com/songs/60048055.mkv +讦谯龙-嘻嘻哈哈过生日,http://em.21dtv.com/songs/60048054.mkv +苏芮-休息工作再工作,http://em.21dtv.com/songs/60051497.mkv +徐菲琳-小幸福[DJ],http://em.21dtv.com/songs/60115183.mkv +李建科-新新的中国士兵(演唱会),http://em.21dtv.com/songs/60067666.mkv +富博洋-徐徐道来话北京,http://em.21dtv.com/songs/60112643.mkv +汪洋-XX的高中时代,http://em.21dtv.com/songs/60110334.mkv +周星星-星星代表我的心,http://em.21dtv.com/songs/60108392.mkv +佚名-心想唱歌就唱歌,http://em.21dtv.com/songs/60050638.mkv +佚名-星星不知我的心,http://em.21dtv.com/songs/60051108.mkv +张力尹-相信爱,http://em.21dtv.com/songs/60115901.mkv +张力尹-相信爱,http://em.21dtv.com/songs/60115144.mkv +大庆小芳-许仙爱上白娘子,http://em.21dtv.com/songs/60104007.mkv +旭日阳刚-希望总在下一站,http://em.21dtv.com/songs/60072592.mkv +古天乐-像我这一种男人,http://em.21dtv.com/songs/60049408.mkv +孙子涵+李佳薇-像我这样的少年,http://em.21dtv.com/songs/60115787.mkv +孙子涵+李佳薇-像我这样的少年,http://em.21dtv.com/songs/60115092.mkv +那英-像我这样的情人,http://em.21dtv.com/songs/60049403.mkv +谭咏麟-像我这样的朋友,http://em.21dtv.com/songs/60049402.mkv +罗时丰-像我这样的男人,http://em.21dtv.com/songs/60097890.mkv +赵咏华-像我这样的女人,http://em.21dtv.com/songs/60049401.mkv +周华健-像我这样的男人,http://em.21dtv.com/songs/60049400.mkv +周华健-象我这样的男人,http://em.21dtv.com/songs/60049374.mkv +张子瑄-像我这样的女孩,http://em.21dtv.com/songs/60094892.mkv +1-像我这样的家伙,http://em.21dtv.com/songs/60073296.mkv +佚名-希望转去你身边,http://em.21dtv.com/songs/60048002.mkv +萧福德-希望转去你身边,http://em.21dtv.com/songs/60048001.mkv +金莎-小王子的漂流瓶,http://em.21dtv.com/songs/60065219.mkv +徐秋菊+王映楼-洗碗也有相磕时,http://em.21dtv.com/songs/60048090.mkv +gugudan-像我一样的女孩,http://em.21dtv.com/songs/60133205.mkv +林申-许我一个红楼梦,http://em.21dtv.com/songs/60051561.mkv +梅艳芳-心窝已疯+坏女孩(演唱会),http://em.21dtv.com/songs/60050629.mkv +杨坤+人声兄弟-像雾像雨又像风,http://em.21dtv.com/songs/60112777.mkv +梁雁翎-像雾像雨又像风,http://em.21dtv.com/songs/60049412.mkv +郑家雄-像雾像雨又像风(演唱会),http://em.21dtv.com/songs/60049411.mkv +梁雁翎-像雾像雨又像风(演唱会),http://em.21dtv.com/songs/60049410.mkv +郑少秋+张天爱-像雾像电像春雷(演唱会),http://em.21dtv.com/songs/60049409.mkv +老狼-想问你,http://em.21dtv.com/songs/60117984.mkv +吴新宏-想忘难忘情悠悠,http://em.21dtv.com/songs/60084201.mkv +郭海超-希望你是个骗子,http://em.21dtv.com/songs/60061733.mkv +张海-希望你的心不变,http://em.21dtv.com/songs/60072591.mkv +夏青-希望留在我身边,http://em.21dtv.com/songs/60078505.mkv +门丽-许我来生再爱你,http://em.21dtv.com/songs/60124599.mkv +马健涛-香吻留给心上人,http://em.21dtv.com/songs/60067628.mkv +黄义达-显微镜下的爱情,http://em.21dtv.com/songs/60048487.mkv +波拉-希望今天遇见你,http://em.21dtv.com/songs/60104279.mkv +棉花糖-向晚的迷途指南,http://em.21dtv.com/songs/60100245.mkv +电流妹+葛雨晴-小尾巴,http://em.21dtv.com/songs/60111317.mkv +韩磊-向天再借五百年,http://em.21dtv.com/songs/60128581.mkv +朱振铭-向天再借五百年,http://em.21dtv.com/songs/60111957.mkv +韩磊-向天再借五百年,http://em.21dtv.com/songs/60049345.mkv +韩磊-向天再借五百年(演唱会),http://em.21dtv.com/songs/60049344.mkv +李娜-夏天最后的玫瑰,http://em.21dtv.com/songs/60048415.mkv +张非艳+冯雪刚-谢天谢地遇到你,http://em.21dtv.com/songs/60121688.mkv +潘七魁-谢天谢地你爱我,http://em.21dtv.com/songs/60122969.mkv +于文文-心跳,http://em.21dtv.com/songs/60118307.mkv +大飞-夏天,http://em.21dtv.com/songs/60108408.mkv +赵小兵-心太软续集(舞曲版),http://em.21dtv.com/songs/60063441.mkv +盖鸣晖+吴美英-幸唐李后主-私会,http://em.21dtv.com/songs/60051409.mkv +佚名-夏天的一朵玫瑰,http://em.21dtv.com/songs/60048412.mkv +梅婷-消失在遗忘之前,http://em.21dtv.com/songs/60049442.mkv +凤彩姐妹-相思只为你一人,http://em.21dtv.com/songs/60090677.mkv +陈玉建-小三在偷偷的哭,http://em.21dtv.com/songs/60049723.mkv +尹光+胡美仪-西施之梦会太湖(戏曲),http://em.21dtv.com/songs/60092544.mkv +陈小汉-西施苎罗访艳色(2),http://em.21dtv.com/songs/60093431.mkv +晓依+曹雷-心随着爱去流浪,http://em.21dtv.com/songs/60078779.mkv +花鼓戏-心事一阵涌一阵,http://em.21dtv.com/songs/60090159.mkv +叶勇良-小僧也要谈恋爱,http://em.21dtv.com/songs/60072627.mkv +潘越云-相思已是不曾闲,http://em.21dtv.com/songs/60048797.mkv +潘越云-相思已是不曾闻,http://em.21dtv.com/songs/60091666.mkv +刘和刚-孝顺,http://em.21dtv.com/songs/60113292.mkv +Mr.Miss-先生小姐那些事,http://em.21dtv.com/songs/60096154.mkv +陈萝莉-小伞,http://em.21dtv.com/songs/60126406.mkv +王冠乔-像石头一样坚强,http://em.21dtv.com/songs/60129382.mkv +毛阿敏-相思树下长相思,http://em.21dtv.com/songs/60048786.mkv +陈鹰-现实生活真无奈(无原唱),http://em.21dtv.com/songs/60048503.mkv +达珍-雪山上的那朵花,http://em.21dtv.com/songs/60102769.mkv +佚名-相思树不长相思,http://em.21dtv.com/songs/60048785.mkv +王雯-心上人像达玛花,http://em.21dtv.com/songs/60097825.mkv +宋祖英-心上人像达玛花(演唱会),http://em.21dtv.com/songs/60078774.mkv +佚名-心上人像达玛花,http://em.21dtv.com/songs/60068859.mkv +何遇程-心上人你在何方,http://em.21dtv.com/songs/60112507.mkv +魏近-心随梦想去远航,http://em.21dtv.com/songs/60130922.mkv +佚名-西沙可爱的家乡,http://em.21dtv.com/songs/60047939.mkv +冷漠-向世界宣布爱你,http://em.21dtv.com/songs/60086015.mkv +鲸鱼岛乐队-新世纪四大酷刑,http://em.21dtv.com/songs/60108176.mkv +王麟,老猫-许SIR思密达,http://em.21dtv.com/songs/60106150.mkv +徐秋菊-喜事好运滚滚来,http://em.21dtv.com/songs/60048174.mkv +胡玉-小三还是别找了,http://em.21dtv.com/songs/60110479.mkv +爱朵女孩-像傻瓜一样去爱,http://em.21dtv.com/songs/60078665.mkv +晓月-许时光不老翩翩,http://em.21dtv.com/songs/60102289.mkv +何方-小时儿的动画片,http://em.21dtv.com/songs/60128778.mkv +小曾-许三多,http://em.21dtv.com/songs/60103232.mkv +林峰-现实丢弃的爱情,http://em.21dtv.com/songs/60091441.mkv +洛桑尖措-雪山草原的恋爱,http://em.21dtv.com/songs/60066507.mkv +覃丽-雪山白,http://em.21dtv.com/songs/60105367.mkv +王志文-想说爱你不容易,http://em.21dtv.com/songs/60049236.mkv +容祖儿-小日子,http://em.21dtv.com/songs/60108452.mkv +佚名-霞染胭脂照湖心,http://em.21dtv.com/songs/60048238.mkv +影视歌曲-霞染胭脂映湖心,http://em.21dtv.com/songs/60089301.mkv +王馨+枫舞-想让雨滴问问你,http://em.21dtv.com/songs/60132747.mkv +王馨-想让雨滴问问你,http://em.21dtv.com/songs/60107917.mkv +彭三-戏如人生,http://em.21dtv.com/songs/60115932.mkv +ちょうちょ-夏の日と君の声,http://em.21dtv.com/songs/60115651.mkv +李双江-想起总理纺线线(无原唱),http://em.21dtv.com/songs/60089950.mkv +夏嘉伟-小强也有大梦想,http://em.21dtv.com/songs/60115074.mkv +河静静-喜气洋洋财神到,http://em.21dtv.com/songs/60125866.mkv +河静静-喜气洋洋财神到,http://em.21dtv.com/songs/60107870.mkv +巫启贤-相亲相爱最坚强,http://em.21dtv.com/songs/60048700.mkv +群星-相亲相爱一家人,http://em.21dtv.com/songs/60112149.mkv +[Group] +groupName=十六万歌曲MV等 - 100 +江智民+周虹-相亲相爱一辈子,http://em.21dtv.com/songs/60078576.mkv +韩丰-相亲相爱度一生,http://em.21dtv.com/songs/60135978.mkv +锦绣二重唱-星期天不要见面,http://em.21dtv.com/songs/60051088.mkv +许志安-向全世界说爱你,http://em.21dtv.com/songs/60049334.mkv +许强-新情伤2010,http://em.21dtv.com/songs/60135737.mkv +许强-新情伤2010,http://em.21dtv.com/songs/60114057.mkv +刘瑞琦-小拳拳捶你胸口,http://em.21dtv.com/songs/60132249.mkv +水晶乐坊-掀起你的盖头来,http://em.21dtv.com/songs/60078554.mkv +阎荷婷-掀起你的盖头来,http://em.21dtv.com/songs/60048472.mkv +解晓东-掀起你的盖头来,http://em.21dtv.com/songs/60048471.mkv +巴郎百川-掀起你的盖头来,http://em.21dtv.com/songs/60048470.mkv +富春山居女子乐坊-掀起你的盖头来,http://em.21dtv.com/songs/60070033.mkv +阿鲁阿卓-掀起你的盖头来(演唱会),http://em.21dtv.com/songs/60065177.mkv +上明+一绫-心情落了一阵雨,http://em.21dtv.com/songs/60050437.mkv +东方快车-星期六的摇滚party,http://em.21dtv.com/songs/60051082.mkv +新版本-小曲好唱口难开,http://em.21dtv.com/songs/60049712.mkv +老版本-小曲好唱口难开,http://em.21dtv.com/songs/60049711.mkv +韩敏-像清风一样爱你,http://em.21dtv.com/songs/60098922.mkv +陈瑜-想起当年儿女情,http://em.21dtv.com/songs/60049214.mkv +谢有才-心情不好别喝酒,http://em.21dtv.com/songs/60129617.mkv +正月十五-小葡萄,http://em.21dtv.com/songs/60118734.mkv +赵鑫-想你在这个夜里(演唱会),http://em.21dtv.com/songs/60072616.mkv +赵鑫-想你在这个夜里,http://em.21dtv.com/songs/60067632.mkv +吴欣达-心内只有你一人(无原唱),http://em.21dtv.com/songs/60050409.mkv +好妹妹乐队-像你这样的朋友,http://em.21dtv.com/songs/60122640.mkv +戴军+杨漫-像你这样的朋友,http://em.21dtv.com/songs/60091235.mkv +包琦-像你这样的朋友,http://em.21dtv.com/songs/60078664.mkv +肖遥-像你这样的男人,http://em.21dtv.com/songs/60049392.mkv +魏大勋-像你这样的女孩,http://em.21dtv.com/songs/60120152.mkv +安雯-想你总是在雨季,http://em.21dtv.com/songs/60049174.mkv +望海高歌-想你只能在心里,http://em.21dtv.com/songs/60135341.mkv +姚东耀-想你只能放心里,http://em.21dtv.com/songs/60108410.mkv +童星-喜年一开财富来,http://em.21dtv.com/songs/60088383.mkv +吴依琳-喜年一开财富来,http://em.21dtv.com/songs/60078521.mkv +群星-喜年一开财富来,http://em.21dtv.com/songs/60048164.mkv +方季惟-想你想在梦里头,http://em.21dtv.com/songs/60049165.mkv +庾澄庆-想你醒在0:03,http://em.21dtv.com/songs/60049167.mkv +童唱-小牛小羊逃跑了,http://em.21dtv.com/songs/60049683.mkv +八大巨星-新年新禧新气象,http://em.21dtv.com/songs/60089148.mkv +王雪晶+庄群诗-新年新禧新气象,http://em.21dtv.com/songs/60088335.mkv +卓依婷-新年新喜新气象,http://em.21dtv.com/songs/60050902.mkv +谢雷-想你想你我想你(无原唱),http://em.21dtv.com/songs/60049163.mkv +龙奔-想你想了三年整,http://em.21dtv.com/songs/60124771.mkv +双星-新年相聚多美好,http://em.21dtv.com/songs/60078862.mkv +贡维特-想你想到眼泪流,http://em.21dtv.com/songs/60049150.mkv +杨浩龙-想你想到心里头,http://em.21dtv.com/songs/60098512.mkv +黄俊源-想你想到睡着了,http://em.21dtv.com/songs/60078631.mkv +佚名-想你想到梦里头,http://em.21dtv.com/songs/60049147.mkv +方季惟-想你想到梦里头,http://em.21dtv.com/songs/60049146.mkv +佚名-想你想到困袜去,http://em.21dtv.com/songs/60049145.mkv +孙露-想你想的很辛苦,http://em.21dtv.com/songs/60115822.mkv +欣哲-想你想的很辛苦,http://em.21dtv.com/songs/60049155.mkv +张信哲-想你想得好孤寂,http://em.21dtv.com/songs/60049153.mkv +邰正宵-想你想得好孤寂,http://em.21dtv.com/songs/60049152.mkv +邰正宵-想你想得好孤寂(演唱会),http://em.21dtv.com/songs/60049151.mkv +格格-想你想到草绿了,http://em.21dtv.com/songs/60049143.mkv +枫舞+雨铃儿-虚拟网络真情意,http://em.21dtv.com/songs/60117856.mkv +枫舞+雨铃儿-虚拟网络真情意,http://em.21dtv.com/songs/60100229.mkv +扬扬+军杰-想你是我的最美,http://em.21dtv.com/songs/60098400.mkv +彦亭-西宁是个好地方,http://em.21dtv.com/songs/60099248.mkv +王馨平-想你亲口说爱我,http://em.21dtv.com/songs/60049142.mkv +瑞雪-想你念你你可知,http://em.21dtv.com/songs/60114705.mkv +邓志驹+蒋文端-新年蜜运最成功,http://em.21dtv.com/songs/60050898.mkv +张靓颖-想你零点零一分,http://em.21dtv.com/songs/60049138.mkv +巧千金-新年来到多热闹,http://em.21dtv.com/songs/60050896.mkv +大北农兄弟-新年快乐又吉祥,http://em.21dtv.com/songs/60116681.mkv +郭美美-新年快乐我的爱,http://em.21dtv.com/songs/60050895.mkv +张冬玲-想你就唱你的歌,http://em.21dtv.com/songs/60061751.mkv +龙梅子+杨德郎-新年更加要努力,http://em.21dtv.com/songs/60071349.mkv +吴依琳-新年歌儿大家唱,http://em.21dtv.com/songs/60078839.mkv +丁嘉林+丁楠霓+魏欣悦-新年歌儿大家唱,http://em.21dtv.com/songs/60078838.mkv +佚名-想念恩人毛主席,http://em.21dtv.com/songs/60049186.mkv +孙青-想你的夜会流泪,http://em.21dtv.com/songs/60131341.mkv +秦宇子-想你的365天,http://em.21dtv.com/songs/60104347.mkv +李玟+黄晓明-想你的365天,http://em.21dtv.com/songs/60133822.mkv +张力尹-想你的365天,http://em.21dtv.com/songs/60105817.mkv +张靓颖+李玟+沙宝亮+林志炫-想你的365天,http://em.21dtv.com/songs/60096294.mkv +肖洒+王琪玮-想你的365天,http://em.21dtv.com/songs/60081716.mkv +萧敬腾-想你的人没有睡,http://em.21dtv.com/songs/60126125.mkv +萧敬腾-想你的人没有睡,http://em.21dtv.com/songs/60118878.mkv +黄思婷-想你的暝特别长,http://em.21dtv.com/songs/60049106.mkv +枫舞+相容-新年到来喜洋洋,http://em.21dtv.com/songs/60108632.mkv +陈丽媛-新年到恭喜发财,http://em.21dtv.com/songs/60086051.mkv +郑冰冰-新年到恭喜发财,http://em.21dtv.com/songs/60072656.mkv +张鹏+曾丽-想你不需要理由,http://em.21dtv.com/songs/60132473.mkv +王晓敏-想你不敢联系你,http://em.21dtv.com/songs/60131662.mkv +王梓旭-想你爱你必须的,http://em.21dtv.com/songs/60049093.mkv +佚名-像梦一样的女子(无原唱),http://em.21dtv.com/songs/60049388.mkv +于金胜-小妹小妹你最美,http://em.21dtv.com/songs/60114381.mkv +动力火车-寻觅幸福的感受,http://em.21dtv.com/songs/60090743.mkv +动力火车-寻觅幸福的感觉,http://em.21dtv.com/songs/60051825.mkv +梁剑东-小梦想,http://em.21dtv.com/songs/60119720.mkv +赵自强-消灭跳蚤大作战(无原唱),http://em.21dtv.com/songs/60049435.mkv +王雪晶-小魔女的魔法书,http://em.21dtv.com/songs/60049668.mkv +范晓萱-小魔女的魔法书,http://em.21dtv.com/songs/60049667.mkv +钱建隆-小妹妹的红腰带,http://em.21dtv.com/songs/60049651.mkv +韩磊+罗勋-小妹妹的红腰带,http://em.21dtv.com/songs/60049650.mkv +吉克皓-旋木,http://em.21dtv.com/songs/60126680.mkv +张迈-巡逻走在霓虹街,http://em.21dtv.com/songs/60051856.mkv +林志颖-心里装的都是你,http://em.21dtv.com/songs/60050353.mkv +卓依婷-喜乐扬起新年到,http://em.21dtv.com/songs/60048156.mkv +毛宁-心里有话对我说,http://em.21dtv.com/songs/60089380.mkv +张也-心里有话对你说,http://em.21dtv.com/songs/60050344.mkv +李殊-心里有爱就要说,http://em.21dtv.com/songs/60050337.mkv +海浪飞歌+驿动儿-心连心永远歌唱,http://em.21dtv.com/songs/60132683.mkv +晓月-心里想谁就是谁,http://em.21dtv.com/songs/60067655.mkv +陈慧娴-相恋300小时,http://em.21dtv.com/songs/60048685.mkv +冀行-雪莲,http://em.21dtv.com/songs/60119273.mkv +霍尊-乡恋,http://em.21dtv.com/songs/60114241.mkv +降央卓玛-心灵睡过的地方,http://em.21dtv.com/songs/60109716.mkv +吴彦-心灵睡过的地方,http://em.21dtv.com/songs/60107577.mkv +韩磊-心灵睡过的地方,http://em.21dtv.com/songs/60050367.mkv +豫剧-小郎门外连声请,http://em.21dtv.com/songs/60134563.mkv +暴林-心里梦里都是你,http://em.21dtv.com/songs/60115971.mkv +彭丽媛-血里火里又还魂,http://em.21dtv.com/songs/60091176.mkv +格格-锡林郭勒夜色美,http://em.21dtv.com/songs/60133891.mkv +格格-锡林郭勒大草原,http://em.21dtv.com/songs/60133892.mkv +阿茹娜+阿日布杰+哈斯-锡林郭勒大草原(演唱会),http://em.21dtv.com/songs/60070025.mkv +赵英俊-学雷锋2006,http://em.21dtv.com/songs/60051648.mkv +梁丽荣-星空下的华尔滋,http://em.21dtv.com/songs/60051067.mkv +乌兰图雅-小康生活恰恰恰,http://em.21dtv.com/songs/60119234.mkv +武艺-幸亏,http://em.21dtv.com/songs/60129323.mkv +罗嘉良-星空倒转七十年,http://em.21dtv.com/songs/60051063.mkv +贾富营-笑看尘世有尘埃,http://em.21dtv.com/songs/60118928.mkv +贾富营-相见只是为别离,http://em.21dtv.com/songs/60132910.mkv +老毛+龙者-小姐小姐你真美,http://em.21dtv.com/songs/60102634.mkv +孙毓敏-小姐小姐多风采,http://em.21dtv.com/songs/60049606.mkv +王力宏-谢绝推销你的爱,http://em.21dtv.com/songs/60088280.mkv +佚名-喜酒甜茶好日子,http://em.21dtv.com/songs/60095407.mkv +刘航-相见容易相爱难,http://em.21dtv.com/songs/60122534.mkv +罗文-戏假情真(双语种),http://em.21dtv.com/songs/60048199.mkv +林冠中+陈淑萍-小姐请你乎我爱,http://em.21dtv.com/songs/60095654.mkv +罗时丰-小姐请你乎我爱(无原唱),http://em.21dtv.com/songs/60049605.mkv +佚名-小姐请你给我爱,http://em.21dtv.com/songs/60049604.mkv +林冠中+陈淑萍-小姐请你给我爱,http://em.21dtv.com/songs/60049603.mkv +陈美安+陈建华-小姐请你给我爱,http://em.21dtv.com/songs/60068845.mkv +许冠杰-先敬罗衣后敬人,http://em.21dtv.com/songs/60093136.mkv +小脚艺术团-小脚带你闯天下,http://em.21dtv.com/songs/60135143.mkv +周显-孝敬爸妈不能晚,http://em.21dtv.com/songs/60128896.mkv +郑锦昌-相见别离在雨时(演唱会),http://em.21dtv.com/songs/60084173.mkv +郑锦昌-相见别离在雨时,http://em.21dtv.com/songs/60048664.mkv +邓丽君-想聚别离俩依依,http://em.21dtv.com/songs/60089498.mkv +佚名-相聚别离两依依,http://em.21dtv.com/songs/60048679.mkv +杨青倩-喜欢走在太阳下,http://em.21dtv.com/songs/60048152.mkv +左小祖咒-像孩子似的倾听,http://em.21dtv.com/songs/60067635.mkv +戴玉强+孙楠-相会在北京时间,http://em.21dtv.com/songs/60091239.mkv +孙楠+戴玉强-相会在北京时间,http://em.21dtv.com/songs/60090907.mkv +泳儿-喜欢一个人好累,http://em.21dtv.com/songs/60048147.mkv +方瑶+易秀成-西湖秀色倾天下,http://em.21dtv.com/songs/60081876.mkv +黄夕倍-喜欢喜欢我喜欢,http://em.21dtv.com/songs/60104627.mkv +邓嘉颖-喜欢我就对我说,http://em.21dtv.com/songs/60134283.mkv +易白-小河淌水的故乡,http://em.21dtv.com/songs/60067636.mkv +李萍-西湖山水还依旧,http://em.21dtv.com/songs/60047930.mkv +黄依群-西湖山水还依旧,http://em.21dtv.com/songs/60047929.mkv +孙艺琪-雪花盛开的时候,http://em.21dtv.com/songs/60131339.mkv +黑鸭子-鲜花盛开的地方,http://em.21dtv.com/songs/60123413.mkv +小琢-西湖十景梦如烟,http://em.21dtv.com/songs/60119447.mkv +陈盈洁-细汗时的人情味,http://em.21dtv.com/songs/60048219.mkv +张艳君-心怀仁慈天地宽,http://em.21dtv.com/songs/60122744.mkv +和妤婕-雪花请你停一下,http://em.21dtv.com/songs/60071390.mkv +火红-雪花飘下妈的爱,http://em.21dtv.com/songs/60078972.mkv +郭欢-雪花飘落的时候(演唱会),http://em.21dtv.com/songs/60071388.mkv +郭欢-雪花飘落的时候,http://em.21dtv.com/songs/60067684.mkv +陶喆-想和你去吹吹风(HD),http://em.21dtv.com/songs/10012831.mkv +张学友-想和你去吹吹风,http://em.21dtv.com/songs/60049042.mkv +张学友-想和你去吹吹风(演唱会),http://em.21dtv.com/songs/60049041.mkv +张韶涵-喜欢你没有道理,http://em.21dtv.com/songs/60087858.mkv +王熹蛮-喜欢你的小秘密,http://em.21dtv.com/songs/60095328.mkv +隆熙俊+天籁天-喜欢你才欺负你,http://em.21dtv.com/songs/60048137.mkv +金城武-鲜花礼物情人节(无原唱),http://em.21dtv.com/songs/60048473.mkv +贡尕达哇+阿斯满-鲜花恋上狗尾草,http://em.21dtv.com/songs/60127421.mkv +尹光-新荷李活大酒店(演唱会),http://em.21dtv.com/songs/60050837.mkv +吉娜-心花开在草原上,http://em.21dtv.com/songs/60111743.mkv +吉娜-心花开在草原上,http://em.21dtv.com/songs/60065232.mkv +孙琳+张江-心会跟爱一起走,http://em.21dtv.com/songs/60089796.mkv +郭峰+陈洁仪-心会跟爱一起走,http://em.21dtv.com/songs/60050299.mkv +小阿鹏-想和阿妹唱情歌,http://em.21dtv.com/songs/60131366.mkv +王庆爽-写给中国的情歌,http://em.21dtv.com/songs/60050006.mkv +黄思婷-心肝永远是你的,http://em.21dtv.com/songs/60050266.mkv +苏永康-下个应该很爱你,http://em.21dtv.com/songs/60048283.mkv +陈绮贞-下个星期去英国,http://em.21dtv.com/songs/60048281.mkv +Juwei Teoh-献给幸福一束花,http://em.21dtv.com/songs/60121271.mkv +覃桢-习惯偷偷爱着你,http://em.21dtv.com/songs/60102724.mkv +梁汉文-像个听话的孩子,http://em.21dtv.com/songs/60090017.mkv +龙奔-心甘情愿的欺骗,http://em.21dtv.com/songs/60089087.mkv +光前-写给你的情书轨,http://em.21dtv.com/songs/60121390.mkv +SUPER GEAR-写给梦想的字条,http://em.21dtv.com/songs/60078748.mkv +叶幼琪-香港明日胜仙境(全曲)(戏曲),http://em.21dtv.com/songs/60092423.mkv +兰卡措-香格里拉的约定,http://em.21dtv.com/songs/60068833.mkv +张曼-香格里拉的思念,http://em.21dtv.com/songs/60096281.mkv +高志红-像关机一样结束,http://em.21dtv.com/songs/60106467.mkv +黄依群-新房之中冷清清,http://em.21dtv.com/songs/60050825.mkv +余零-幸福在左爱在右,http://em.21dtv.com/songs/60104790.mkv +宋健-幸福钟意有缘人,http://em.21dtv.com/songs/60123841.mkv +叶幼琪+蒋文端-香妃之蝶舞仙韵(戏曲),http://em.21dtv.com/songs/60092414.mkv +崎君-相逢一笑便是缘,http://em.21dtv.com/songs/60048656.mkv +周岚-幸福像花儿一样,http://em.21dtv.com/songs/60078935.mkv +李美怡-幸福像花儿一样(演唱会),http://em.21dtv.com/songs/60051383.mkv +赤龙-幸福香河大家唱,http://em.21dtv.com/songs/60120969.mkv +弦子-幸福未满的恋人,http://em.21dtv.com/songs/60081417.mkv +维恩-幸福是你的温柔,http://em.21dtv.com/songs/60068877.mkv +汪苏泷-幸福是被你需要,http://em.21dtv.com/songs/60051368.mkv +马常宝-幸福是爱的奉献,http://em.21dtv.com/songs/60078929.mkv +赵小兵-像凡人一样爱你,http://em.21dtv.com/songs/60049378.mkv +望海高歌-幸福让我受了伤,http://em.21dtv.com/songs/60128068.mkv +佚名-幸福人生靠甲治,http://em.21dtv.com/songs/60051359.mkv +刘天-幸福其实很容易,http://em.21dtv.com/songs/60126635.mkv +杨一郎-幸福其实很简单,http://em.21dtv.com/songs/60118695.mkv +张碧晨-幸福梦,http://em.21dtv.com/songs/60111082.mkv +苏永康-幸福离我们很近,http://em.21dtv.com/songs/60051337.mkv +江宇-幸福来了跑不掉,http://em.21dtv.com/songs/60067674.mkv +赵童-幸福来到我身边,http://em.21dtv.com/songs/60096134.mkv +郑钧-幸福可望不可及,http://em.21dtv.com/songs/60051333.mkv +易琴-幸福快乐去哪了,http://em.21dtv.com/songs/60128052.mkv +吴灿涛-幸福快乐每一天,http://em.21dtv.com/songs/60106681.mkv +夏国星+林玉英-幸福就在你眼前(无原唱),http://em.21dtv.com/songs/60051331.mkv +彦倾+梅南林-幸福就是在一起,http://em.21dtv.com/songs/60121692.mkv +庞晓宇+金钰儿-幸福就是你和我,http://em.21dtv.com/songs/60111047.mkv +庞晓宇-幸福就是你和我,http://em.21dtv.com/songs/60062808.mkv +庞晓宇-幸福就是你和我(舞曲版),http://em.21dtv.com/songs/60062807.mkv +韦绮姗+李国祥-相逢何必曾相识(演唱会),http://em.21dtv.com/songs/60084172.mkv +佚名-相逢何必曾相识,http://em.21dtv.com/songs/60048646.mkv +蒋志光+章绮姗-相逢何必曾相识,http://em.21dtv.com/songs/60048645.mkv +张伟文+韦绮姗-相逢何必曾相识(演唱会),http://em.21dtv.com/songs/60048644.mkv +杨千嬅+黄耀明-相逢何必曾相识(演唱会),http://em.21dtv.com/songs/60048643.mkv +蒋志光+章绮姗-相逢何必曾相识(演唱会),http://em.21dtv.com/songs/60048642.mkv +WK+花泽静-幸福歌儿心底唱,http://em.21dtv.com/songs/60101228.mkv +聂琳峰-媳妇儿,http://em.21dtv.com/songs/60107951.mkv +卓文萱-想飞的自由落体,http://em.21dtv.com/songs/60065197.mkv +侯玉斌-幸福多了就是水,http://em.21dtv.com/songs/60118350.mkv +冷漠+司徒兰芳-幸福不要来找我,http://em.21dtv.com/songs/60115711.mkv +佚名-幸福不是毛毛雨,http://em.21dtv.com/songs/60051231.mkv +张也-幸福不会从天降,http://em.21dtv.com/songs/60051229.mkv +佚名-幸福不会从天降,http://em.21dtv.com/songs/60051228.mkv +吴泽昊-心儿为爱受了伤,http://em.21dtv.com/songs/60100793.mkv +李丹阳-心儿和你一起飞,http://em.21dtv.com/songs/60050227.mkv +于全莉-心儿跟着妹妹走,http://em.21dtv.com/songs/60108276.mkv +韩晓辉-心儿跟着妹妹走,http://em.21dtv.com/songs/60107347.mkv +关牧村-心儿飞向金珠玛,http://em.21dtv.com/songs/60050226.mkv +姜苏-心儿伴着军旗飞,http://em.21dtv.com/songs/60050225.mkv +火山-笑得最伤心的人,http://em.21dtv.com/songs/60131622.mkv +强歌-兄弟最近好不好,http://em.21dtv.com/songs/60129131.mkv +杨天+马明-兄弟有事你就说,http://em.21dtv.com/songs/60116938.mkv +艺涛+孜龙-兄弟一起向前冲,http://em.21dtv.com/songs/60135650.mkv +八大巨星-新的一年又来到,http://em.21dtv.com/songs/60089150.mkv +小沈阳-兄弟,http://em.21dtv.com/songs/60125424.mkv +王梓轩-心电图2016,http://em.21dtv.com/songs/60135556.mkv +高一格-辛德瑞拉的魔力,http://em.21dtv.com/songs/60121152.mkv +杨海彪+雨宗林-兄弟情义比天高,http://em.21dtv.com/songs/60131528.mkv +好哥们-兄弟情义比天高,http://em.21dtv.com/songs/60131313.mkv +志鹏-兄弟情义比天大,http://em.21dtv.com/songs/60106883.mkv +林楠-兄弟情似一朵花,http://em.21dtv.com/songs/60131550.mkv +黄舒骏-想到你就心酸酸,http://em.21dtv.com/songs/60049013.mkv +张萌萌-兄弟你喝高了吧,http://em.21dtv.com/songs/60065282.mkv +杨春霞-细读了全会公报,http://em.21dtv.com/songs/60048217.mkv +大哲+乞丐-下定决心忘记你,http://em.21dtv.com/songs/60135079.mkv +杜飞-下定决心忘记你,http://em.21dtv.com/songs/60130448.mkv +张健-下定决心忘记你,http://em.21dtv.com/songs/60127962.mkv +孙露-下定决心忘记你,http://em.21dtv.com/songs/60115796.mkv +大哲-下定决心忘记你,http://em.21dtv.com/songs/60110112.mkv +正云+郑东-下定决心忘记你,http://em.21dtv.com/songs/60105202.mkv +大哲-下定决心忘记你,http://em.21dtv.com/songs/60078541.mkv +正云-下定决心忘记你,http://em.21dtv.com/songs/60048277.mkv +暴林-下定决心忘记你,http://em.21dtv.com/songs/60067614.mkv +宋祖英-兄弟姐妹要团聚,http://em.21dtv.com/songs/60051461.mkv +越剧-许大家境虽不好,http://em.21dtv.com/songs/60051557.mkv +任海旺-兄弟干了这杯酒,http://em.21dtv.com/songs/60132185.mkv +苏勒亚其其格+魏君华-习大大爱着彭麻,http://em.21dtv.com/songs/60107153.mkv +君浩-像大白一样爱你,http://em.21dtv.com/songs/60113329.mkv +唐唐-兄弟别忘老地方,http://em.21dtv.com/songs/60117629.mkv +罗嘉俊-兄弟报团打天下,http://em.21dtv.com/songs/60123067.mkv +群星-兄弟抱团打天下,http://em.21dtv.com/songs/60127278.mkv +罗嘉俊-兄弟抱团打天下,http://em.21dtv.com/songs/60126032.mkv +杨国庆-兄弟不是哥依靠,http://em.21dtv.com/songs/60131524.mkv +蔡兴麟+彭家丽-现代爱情启示录,http://em.21dtv.com/songs/60048493.mkv +靳立志-想的爱的全是你,http://em.21dtv.com/songs/60110665.mkv +杨千桦-现场演义小飞侠,http://em.21dtv.com/songs/60089975.mkv +张华敏-新城新乡新时代,http://em.21dtv.com/songs/60071345.mkv +吴依琳-新春喜事一桩桩,http://em.21dtv.com/songs/60078822.mkv +卓依婷-新春喜事一椿椿,http://em.21dtv.com/songs/60087011.mkv +王利-心驰神往峨眉山,http://em.21dtv.com/songs/60084238.mkv +阿杜-下次如果离开你,http://em.21dtv.com/songs/60048267.mkv +罗时丰-行船人的纯情曲,http://em.21dtv.com/songs/60134112.mkv +佚名-行船人的纯情曲,http://em.21dtv.com/songs/60019939.mkv +黄乙玲-行船人的纯情曲,http://em.21dtv.com/songs/60019938.mkv +陈小义-像从前一样快乐,http://em.21dtv.com/songs/60135914.mkv +童唱-秀才骑马弄弄来,http://em.21dtv.com/songs/60051519.mkv +童唱-秀才骑马弄弄来(无原唱),http://em.21dtv.com/songs/60051518.mkv +周艳泓+刘海霞-熊出没,http://em.21dtv.com/songs/60115061.mkv +葛文辉+张达明-宣传二拍人套餐,http://em.21dtv.com/songs/60093115.mkv +欣哲+张小宝-下辈子依然爱你,http://em.21dtv.com/songs/60065171.mkv +李泽雅-下辈子要嫁给你,http://em.21dtv.com/songs/60048257.mkv +姜育恒-心不再起不再落,http://em.21dtv.com/songs/60050172.mkv +陈瑞-下辈子不做女人,http://em.21dtv.com/songs/60048247.mkv +易欣-下辈子不做男人,http://em.21dtv.com/songs/60048246.mkv +洪煜祺-新被遗忘的角落,http://em.21dtv.com/songs/60086048.mkv +老狼+王婧-想把我唱给你听(演唱会),http://em.21dtv.com/songs/60067629.mkv +李天平-新版我爱金香玉,http://em.21dtv.com/songs/60105976.mkv +李天平-新版我爱金香玉,http://em.21dtv.com/songs/60105138.mkv +钟丽燕-西部让我走近你,http://em.21dtv.com/songs/60078495.mkv +钟丽燕-西部让我走进你(演唱会),http://em.21dtv.com/songs/60065158.mkv +黄宏+宋丹丹-小保姆和小木匠,http://em.21dtv.com/songs/60090343.mkv +林欣彤-向玻璃鞋说再见,http://em.21dtv.com/songs/60071321.mkv +黑鸭子-香巴拉并不遥远,http://em.21dtv.com/songs/60134512.mkv +乌兰图雅-香巴拉并不遥远,http://em.21dtv.com/songs/60098073.mkv +德乾旺姆-香巴拉并不遥远,http://em.21dtv.com/songs/60048894.mkv +金岩-西部开发卡莎莎,http://em.21dtv.com/songs/60085973.mkv +佚名-新编九一八小调,http://em.21dtv.com/songs/60050783.mkv +夏天播放-小宝贝,http://em.21dtv.com/songs/60122630.mkv +夏天播放-小宝贝,http://em.21dtv.com/songs/60128937.mkv +夏天播放-小宝贝,http://em.21dtv.com/songs/60115767.mkv +王语心-相爱永远在一起,http://em.21dtv.com/songs/60125953.mkv +林伊凡-想爱一个好天气(无原唱),http://em.21dtv.com/songs/60048995.mkv +叶贝文-相爱相守一辈子,http://em.21dtv.com/songs/60133452.mkv +网络歌手+张叶帆-象爱我一样爱他,http://em.21dtv.com/songs/60091815.mkv +李俊男-相爱容易相守难,http://em.21dtv.com/songs/60128082.mkv +刘缘-相爱容易相处难,http://em.21dtv.com/songs/60048612.mkv +蔡幸娟-相爱容易相处难,http://em.21dtv.com/songs/60048611.mkv +宋熙铭-相爱容易相处难,http://em.21dtv.com/songs/60065183.mkv +孙健康-相爱容易难相守,http://em.21dtv.com/songs/60133559.mkv +洪荣宏-心爱请你嫁别人,http://em.21dtv.com/songs/60050156.mkv +小柯-像爱你一样爱她,http://em.21dtv.com/songs/60049375.mkv +张洪量-心爱妹妹的眼睛,http://em.21dtv.com/songs/60050152.mkv +群星-向奥林匹克出发,http://em.21dtv.com/songs/60049312.mkv +佚名-心爱可比天顶星,http://em.21dtv.com/songs/60095411.mkv +赵童-相爱就要在一起,http://em.21dtv.com/songs/60096135.mkv +春天-想爱就要勇敢爱,http://em.21dtv.com/songs/60078614.mkv +春天+老猫-想爱就要勇敢爱,http://em.21dtv.com/songs/60071319.mkv +徐佳莹-相爱后动物感伤,http://em.21dtv.com/songs/60119566.mkv +李嘉格-相爱后动物感伤,http://em.21dtv.com/songs/60104196.mkv +张惠妹-相爱后动物感伤,http://em.21dtv.com/songs/60048607.mkv +六哲-相爱分开都是罪,http://em.21dtv.com/songs/60065182.mkv +林志炫-相爱的最后一天,http://em.21dtv.com/songs/60048600.mkv +许志豪-心爱的你是我的,http://em.21dtv.com/songs/60096124.mkv +文夏-心爱的卖花姑娘,http://em.21dtv.com/songs/60050127.mkv +郑进一-相爱的不是时候,http://em.21dtv.com/songs/60089506.mkv +佚名-相爱的不是时候(无原唱),http://em.21dtv.com/songs/60048590.mkv +曾丽-相爱不需要理由,http://em.21dtv.com/songs/60110246.mkv +陈玉建-相爱彼此在心里,http://em.21dtv.com/songs/60120092.mkv +佚名-雪のふるまちを,http://em.21dtv.com/songs/60051671.mkv +牧野由依-きみの选ぶみち,http://em.21dtv.com/songs/60113835.mkv +泽旺多吉-我祝祖国三杯酒,http://em.21dtv.com/songs/60078425.mkv +糖糖乐团-我在找爱我的人,http://em.21dtv.com/songs/60046802.mkv +恭僖禧-万众一心奔小康,http://em.21dtv.com/songs/60043331.mkv +赵传-我终于失去了你,http://em.21dtv.com/songs/60132918.mkv +杨光-我终于失去了你,http://em.21dtv.com/songs/60113656.mkv +戎琦-我终于失去了你,http://em.21dtv.com/songs/60104158.mkv +李宗盛-我终于失去了你,http://em.21dtv.com/songs/60095306.mkv +洪辰-我终于失去了你(歌声传奇),http://em.21dtv.com/songs/60085950.mkv +范玮琪+六弦-我终于失去了你,http://em.21dtv.com/songs/60080960.mkv +黄贯中-我终于失去了你(演唱会),http://em.21dtv.com/songs/60078424.mkv +赵传-我终于失去了你,http://em.21dtv.com/songs/60046963.mkv +刘德华-我终于失去了你,http://em.21dtv.com/songs/60046962.mkv +赵传-我终于失去了你(演唱会),http://em.21dtv.com/songs/60046961.mkv +黄贯中-我终于失去了你,http://em.21dtv.com/songs/60072574.mkv +红弈-望着月亮想着你,http://em.21dtv.com/songs/60132788.mkv +姜华-我终于看到了你(无原唱),http://em.21dtv.com/songs/60046960.mkv +风芝韵-我终于放弃了你,http://em.21dtv.com/songs/60097850.mkv +任洁玲-我终于放弃了你,http://em.21dtv.com/songs/60046959.mkv +陈奕迅-我终于放开了她,http://em.21dtv.com/songs/60122227.mkv +胡力-我只有独自悲哀,http://em.21dtv.com/songs/60046905.mkv +张映龙+张慧云-我最想去的地方,http://em.21dtv.com/songs/60109309.mkv +岩罕建-我只想你一个人,http://em.21dtv.com/songs/60124820.mkv +干露露-我只想好好爱你,http://em.21dtv.com/songs/60117703.mkv +林圣杰-我只想好好爱你,http://em.21dtv.com/songs/60108621.mkv +林依轮-我只想好好爱你,http://em.21dtv.com/songs/60046892.mkv +花鼓戏-我在绣房绣花绫,http://em.21dtv.com/songs/60090161.mkv +佚名-我衷心的感谢你,http://em.21dtv.com/songs/60046969.mkv +罗逻圣-我最心爱的吉他,http://em.21dtv.com/songs/60108804.mkv +全辉-我最心爱的姑娘,http://em.21dtv.com/songs/60101261.mkv +谢采妘-望着天空的女孩,http://em.21dtv.com/songs/60043734.mkv +谭晶-我在腾冲等着你,http://em.21dtv.com/songs/60071279.mkv +周珈羽-我在深圳等你它,http://em.21dtv.com/songs/60102049.mkv +胡红艳-我只是一束海藻,http://em.21dtv.com/songs/60046887.mkv +王不火-温州十一盟兄弟,http://em.21dtv.com/songs/60118764.mkv +冯海龙-我只是一棵小草,http://em.21dtv.com/songs/60131193.mkv +任轩萱-我只是一个傻瓜,http://em.21dtv.com/songs/60068800.mkv +高佳-我在三亚等你来,http://em.21dtv.com/songs/60128611.mkv +胡艳红-我只是一窜海藻,http://em.21dtv.com/songs/60088500.mkv +苏永康-我只是想要幸福,http://em.21dtv.com/songs/60046885.mkv +旭佳非-我在苏仙岭等你,http://em.21dtv.com/songs/60107761.mkv +王羽泽-我最伤心的时候,http://em.21dtv.com/songs/60047000.mkv +法兰黛乐团-我只是你的爱人,http://em.21dtv.com/songs/60135489.mkv +徐菲-我只是过得自由,http://em.21dtv.com/songs/60132478.mkv +唐古-我在前世约了你,http://em.21dtv.com/songs/60113353.mkv +杨千嬅-我在桥上看风景,http://em.21dtv.com/songs/60046794.mkv +赵小南-我最亲爱的爸妈,http://em.21dtv.com/songs/60070003.mkv +无印良品-我找你找了好久,http://em.21dtv.com/songs/60046835.mkv +张力超-我在南昌一个人,http://em.21dtv.com/songs/60130300.mkv +佚名-我怎能把你遗忘,http://em.21dtv.com/songs/60046820.mkv +孙楠-我怎么能忘记你,http://em.21dtv.com/songs/60090912.mkv +王中平+余皓然-我怎么能忘记你(无原唱),http://em.21dtv.com/songs/60046816.mkv +吕薇-我在梦里见过你,http://em.21dtv.com/songs/60090806.mkv +潘迪华-我在梦里见过你(演唱会),http://em.21dtv.com/songs/60046782.mkv +羽泉-我怎么可以挽留,http://em.21dtv.com/songs/60046811.mkv +宇桐非-我怎么丢掉了你,http://em.21dtv.com/songs/60046808.mkv +廖芊芊-我在鲁山等你来,http://em.21dtv.com/songs/60117713.mkv +王梓宏-我中了你下的毒,http://em.21dtv.com/songs/60046957.mkv +谢丹-我贼拉拉的爱你,http://em.21dtv.com/songs/60104434.mkv +曾妮-我在老地方等你,http://em.21dtv.com/songs/60117780.mkv +刘玮-我最可爱的家园,http://em.21dtv.com/songs/60046996.mkv +认真-我在九寨等你来,http://em.21dtv.com/songs/60115382.mkv +赵蒙-我在济南丢了你,http://em.21dtv.com/songs/60104457.mkv +小宇-我在角落观察abc,http://em.21dtv.com/songs/60046778.mkv +北原山猫-邬族结婚祝福歌,http://em.21dtv.com/songs/60089690.mkv +徐千雅-我在景德镇等你,http://em.21dtv.com/songs/60121699.mkv +程响-我在回忆里等你,http://em.21dtv.com/songs/60107936.mkv +程响-我在回忆里等你,http://em.21dtv.com/songs/60097847.mkv +冷漠-我在回忆里等你,http://em.21dtv.com/songs/60046777.mkv +李清影-我在花山等你来,http://em.21dtv.com/songs/60125706.mkv +望海高歌-我在红尘中等你,http://em.21dtv.com/songs/60113591.mkv +波拉+张渼壹-我在红尘中等你,http://em.21dtv.com/songs/60102473.mkv +徐千雅-我在古窑遇见你,http://em.21dtv.com/songs/60133715.mkv +王莉-为祖国母亲干杯,http://em.21dtv.com/songs/60103468.mkv +黎金玲-我在风雨中奔跑,http://em.21dtv.com/songs/60101705.mkv +酒窝乐团-我知道这个世界,http://em.21dtv.com/songs/60116302.mkv +Alin-我值得,http://em.21dtv.com/songs/60108208.mkv +韩信-我真的为你哭了,http://em.21dtv.com/songs/60046870.mkv +樊凡-我真的无法放弃,http://em.21dtv.com/songs/60132648.mkv +王梦麟-我知道我变了样(无原唱),http://em.21dtv.com/songs/60046950.mkv +六哲-我知道我不懂爱,http://em.21dtv.com/songs/60046951.mkv +韩光-我知道是我不好,http://em.21dtv.com/songs/60084105.mkv +潘美辰-我知道你在说谎,http://em.21dtv.com/songs/60088248.mkv +孙耀威-我知道你在等我,http://em.21dtv.com/songs/60046943.mkv +廖文强-我知道你喜欢我,http://em.21dtv.com/songs/60125486.mkv +李琼-我知道你为了谁,http://em.21dtv.com/songs/60091354.mkv +金智娟-我知道你收藏我,http://em.21dtv.com/songs/60046942.mkv +李佩玲-我知道你很难过,http://em.21dtv.com/songs/60128078.mkv +刘珂-我知道你很难过,http://em.21dtv.com/songs/60104841.mkv +孙伯纶-我知道你很难过(现场版),http://em.21dtv.com/songs/60098231.mkv +孙伯纶-我知道你很难过,http://em.21dtv.com/songs/60097848.mkv +蔡依林-我知道你很难过,http://em.21dtv.com/songs/60046939.mkv +薛之谦-我知道你都知道,http://em.21dtv.com/songs/60069997.mkv +乌兰托娅+雅锋-我知道你对我好,http://em.21dtv.com/songs/60072571.mkv +陈晓东-我知道你的感觉,http://em.21dtv.com/songs/60046936.mkv +威仔+格子兮-我知道你不爱我,http://em.21dtv.com/songs/60131317.mkv +黄凯芹-我知道你不爱我,http://em.21dtv.com/songs/60046932.mkv +高柏-我真的看错了人,http://em.21dtv.com/songs/60078416.mkv +周宪寿-我真的很想回家,http://em.21dtv.com/songs/60127846.mkv +王莉-我真的到合肥了,http://em.21dtv.com/songs/60063020.mkv +王琼瑶-我在草原遇见你,http://em.21dtv.com/songs/60105250.mkv +乌兰托娅-我在草原寻找爱,http://em.21dtv.com/songs/60071278.mkv +乌兰托娅-我在草原等你来,http://em.21dtv.com/songs/60065130.mkv +徐品才-我在草原唱情歌,http://em.21dtv.com/songs/60071277.mkv +徐誉滕-我在春天等着你,http://em.21dtv.com/songs/60066432.mkv +佚名-我在城楼观山景,http://em.21dtv.com/songs/60046770.mkv +阿牛-我在不远处等你,http://em.21dtv.com/songs/60046768.mkv +龙梅子-我在北京你在哪,http://em.21dtv.com/songs/60115557.mkv +中国娃娃-蚊子爱情进行曲,http://em.21dtv.com/songs/60044400.mkv +汤灿-我只爱你兵哥哥,http://em.21dtv.com/songs/60046879.mkv +斯琴高丽-我最爱的一首歌,http://em.21dtv.com/songs/60067599.mkv +孟文豪-我要醉在草原上,http://em.21dtv.com/songs/60105764.mkv +萧全-我一直深爱着你,http://em.21dtv.com/songs/60046633.mkv +Sunshine-我要做你女朋友,http://em.21dtv.com/songs/60125009.mkv +Sunshine-我要做你女朋友,http://em.21dtv.com/songs/60122423.mkv +郭建芳-我愿做你的新娘,http://em.21dtv.com/songs/60104494.mkv +代慧颖-我要做你的新娘,http://em.21dtv.com/songs/60066430.mkv +王小娟-我要做你的王妃,http://em.21dtv.com/songs/60124253.mkv +童唱-我愿做个好小孩,http://em.21dtv.com/songs/60046761.mkv +王雪晶-我要做个好小孩,http://em.21dtv.com/songs/60046607.mkv +佚名-汪洋中的一条船,http://em.21dtv.com/songs/60043340.mkv +姚乙-汪洋中的一条船,http://em.21dtv.com/songs/60043339.mkv +林凡+孙富锦-我愿意说我爱你,http://em.21dtv.com/songs/60046759.mkv +郭玲-我永远是你的之DJ,http://em.21dtv.com/songs/60090270.mkv +杨康-我用一生来爱你,http://em.21dtv.com/songs/60078398.mkv +刀郎-五一夜市的兄弟,http://em.21dtv.com/songs/60047672.mkv +李伟-望月[央视版],http://em.21dtv.com/songs/60098453.mkv +田放-我用眼泪数伤悲,http://em.21dtv.com/songs/60113898.mkv +胡东清-我用音乐说爱你,http://em.21dtv.com/songs/60085116.mkv +锦萱-我有一个小小梦,http://em.21dtv.com/songs/60131916.mkv +沁心小筑-我有一个小秘密,http://em.21dtv.com/songs/60099361.mkv +来者-我有一个小秘密,http://em.21dtv.com/songs/60099329.mkv +童唱-我有一个小背篓,http://em.21dtv.com/songs/60046711.mkv +阿美-我有一朵山茶花,http://em.21dtv.com/songs/60134384.mkv +佚名-我永远爱你中国,http://em.21dtv.com/songs/60046672.mkv +龙智祥+王雷-我又相信了爱情,http://em.21dtv.com/songs/60097843.mkv +龙智祥-我又相信了爱情,http://em.21dtv.com/songs/60086949.mkv +周传雄-我也许是个笑话,http://em.21dtv.com/songs/60046618.mkv +孙中亮-唯一想念的地方,http://em.21dtv.com/songs/60085852.mkv +韦礼安-唯一,http://em.21dtv.com/songs/60126432.mkv +徐薇-我以为,http://em.21dtv.com/songs/60120570.mkv +郑伊健-我愿为你做更多,http://em.21dtv.com/songs/60098806.mkv +宇桐非-我以为你会知道,http://em.21dtv.com/songs/60046664.mkv +阿牛-我要为你唱首歌,http://em.21dtv.com/songs/60046576.mkv +赵小熙-我要我们在一起,http://em.21dtv.com/songs/60128428.mkv +李泉-我要我们在一起,http://em.21dtv.com/songs/60133805.mkv +刘庭羽-我要我们在一起,http://em.21dtv.com/songs/60097851.mkv +邓紫棋-我要我们在一起(我是歌手第二期),http://em.21dtv.com/songs/60096508.mkv +肖懿航+陈羽凡-我要我们在一起,http://em.21dtv.com/songs/60094644.mkv +曾一鸣-我要我们在一起,http://em.21dtv.com/songs/60080836.mkv +杨宗纬-我要我们在一起,http://em.21dtv.com/songs/60080036.mkv +范晓萱-我要我们在一起,http://em.21dtv.com/songs/60046583.mkv +黄小琥-我要我们在一起(无原唱),http://em.21dtv.com/songs/60046582.mkv +丁少华-我要我们在一起,http://em.21dtv.com/songs/60069991.mkv +张学友-无怨无悔的永远,http://em.21dtv.com/songs/60047588.mkv +星月组合-无怨无悔爱着你,http://em.21dtv.com/songs/60133753.mkv +冷漠-无怨无悔爱一场,http://em.21dtv.com/songs/60085965.mkv +廖鸿飞-握一握百姓的手(军旅),http://em.21dtv.com/songs/60091033.mkv +佚名-when you tell me that you love,http://em.21dtv.com/songs/60006266.mkv +施文彬-无怨天地无怨人,http://em.21dtv.com/songs/60095570.mkv +罗文聪-无怨天地无怨人,http://em.21dtv.com/songs/60047585.mkv +张靓颖-我用所有的报答,http://em.21dtv.com/songs/60089293.mkv +沈文程-五月十一彼下埔,http://em.21dtv.com/songs/60047691.mkv +张靓颖-我用所有报答爱,http://em.21dtv.com/songs/60107725.mkv +张靓颖-我用所有报答爱(演唱会),http://em.21dtv.com/songs/60046681.mkv +白鹤-问一声你还好吗,http://em.21dtv.com/songs/60044507.mkv +JOSS STONE-while youre out looking for sugar,http://em.21dtv.com/songs/60074129.mkv +佚名-我依然恋你如昔,http://em.21dtv.com/songs/60046648.mkv +蔡琴-我要如何不想他,http://em.21dtv.com/songs/60046571.mkv +莫文蔚-午夜前的十分钟,http://em.21dtv.com/songs/60047732.mkv +莫文蔚-午夜前的十分钟(演唱会),http://em.21dtv.com/songs/60047731.mkv +许哲佩-我要陪着你老去,http://em.21dtv.com/songs/60118037.mkv +红蔷薇-我要陪你到永远,http://em.21dtv.com/songs/60094627.mkv +张超-无缘那就分手吧,http://em.21dtv.com/songs/60047579.mkv +海弦月-我要你Body,http://em.21dtv.com/songs/60127170.mkv +徐浩-唯一你爱的世界,http://em.21dtv.com/songs/60122766.mkv +黄雅莉-喂!有没有人在,http://em.21dtv.com/songs/60134509.mkv +龙奔-午夜流泪听情歌,http://em.21dtv.com/songs/60134520.mkv +许景淳-午夜零点零三分,http://em.21dtv.com/songs/60047719.mkv +杨培安-午夜两点半的我,http://em.21dtv.com/songs/60088063.mkv +麦子杰-无与伦比的美丽,http://em.21dtv.com/songs/60085963.mkv +苏打绿-无与伦比的美丽,http://em.21dtv.com/songs/60047549.mkv +菜籽-我已拣选主耶稣,http://em.21dtv.com/songs/60123115.mkv +郑永静-我已经爱上了你,http://em.21dtv.com/songs/60122174.mkv +王英俊-我已经爱上了你,http://em.21dtv.com/songs/60121943.mkv +孙艳-我已经爱上了你,http://em.21dtv.com/songs/60085936.mkv +佚名-when youre in love with a bea,http://em.21dtv.com/songs/60006272.mkv +笑天-我愿化作一朵莲,http://em.21dtv.com/songs/60128286.mkv +许诺+汪思妤-我要和你在一起,http://em.21dtv.com/songs/60124480.mkv +乐洋-我要和你在一起,http://em.21dtv.com/songs/60099068.mkv +李琛-我要和你一起笑,http://em.21dtv.com/songs/60091347.mkv +谭维维-我要和你去飞翔,http://em.21dtv.com/songs/60046531.mkv +苏青山-我要回家过大年,http://em.21dtv.com/songs/60078384.mkv +于文华-我用歌声祝福你,http://em.21dtv.com/songs/60065124.mkv +马一鸣-我用歌声谢谢你(演唱会),http://em.21dtv.com/songs/60046675.mkv +叶欢-我要给你一个家(无原唱),http://em.21dtv.com/songs/60046529.mkv +MC魏小然-我有孤独和烈酒,http://em.21dtv.com/songs/60132106.mkv +Mc泽轩-我有孤独和烈酒,http://em.21dtv.com/songs/60124944.mkv +吴碧霞-问云儿,http://em.21dtv.com/songs/60106687.mkv +杨培安-午夜二点半的我,http://em.21dtv.com/songs/60047707.mkv +筷子兄弟-我一定要得到你,http://em.21dtv.com/songs/60101153.mkv +王太利-我一定要得到你,http://em.21dtv.com/songs/60046621.mkv +李易峰-我要的现在就要,http://em.21dtv.com/songs/60106941.mkv +袁攀-唯一的信仰许嵩,http://em.21dtv.com/songs/60078110.mkv +张迈-无影灯下的故事,http://em.21dtv.com/songs/60047546.mkv +赵英俊-我一定会回来的,http://em.21dtv.com/songs/60107240.mkv +赵英俊-我一定会回来的,http://em.21dtv.com/songs/60097842.mkv +梁文音-我一定会爱上你,http://em.21dtv.com/songs/60078391.mkv +任然-我一点都不难过,http://em.21dtv.com/songs/60067591.mkv +后弦-我要的不是再见,http://em.21dtv.com/songs/60130172.mkv +朱榀少-我要的不是我的,http://em.21dtv.com/songs/60125675.mkv +晓月-我又不是你的谁,http://em.21dtv.com/songs/60065127.mkv +徐怀钰-我又不是没爱过,http://em.21dtv.com/songs/60046721.mkv +刘旗-我有病你有药吗,http://em.21dtv.com/songs/60078399.mkv +陈奕迅-我也不会那么做,http://em.21dtv.com/songs/60046609.mkv +孙晓磊-我已爱上你的美,http://em.21dtv.com/songs/60115792.mkv +宿雨涵-我想住在鸟巢边,http://em.21dtv.com/songs/60062951.mkv +Mc张大正-我想做你的新娘,http://em.21dtv.com/songs/60131081.mkv +刘德华-我心只可容纳你,http://em.21dtv.com/songs/60087399.mkv +mc天佑-我想找个小对象,http://em.21dtv.com/songs/60131079.mkv +姜玉阳-我想找个女朋友,http://em.21dtv.com/songs/60046425.mkv +卜学亮-我想做个好男人,http://em.21dtv.com/songs/60046429.mkv +杨东鑫-微笑着对世界say hello,http://em.21dtv.com/songs/60085833.mkv +郭颂-我心中的金凤凰,http://em.21dtv.com/songs/60046467.mkv +杨钰莹-晚霞中的红蜻蜓,http://em.21dtv.com/songs/60043251.mkv +许越-晚霞中的红蜻蜓,http://em.21dtv.com/songs/60043250.mkv +杨钰莹-晚霞中的红蜻蜓(演唱会),http://em.21dtv.com/songs/60043249.mkv +王宏伟-我心中的梵净山,http://em.21dtv.com/songs/60078373.mkv +S.H.E-我想走出我自己,http://em.21dtv.com/songs/60046428.mkv +茉莉与年少-我想要这样生活,http://em.21dtv.com/songs/60126115.mkv +粉红教父小甜甜-我需要一个拥抱,http://em.21dtv.com/songs/60046488.mkv +杨丞琳-我需要一的拥抱,http://em.21dtv.com/songs/60089351.mkv +原子霏-我想一生跟你走,http://em.21dtv.com/songs/60130157.mkv +张卫健+袁洁莹-我想一生跟你走,http://em.21dtv.com/songs/60046421.mkv +熊峰-为香烟买份保险,http://em.21dtv.com/songs/60068737.mkv +木子-我想有家还有她,http://em.21dtv.com/songs/60071271.mkv +莫小娘-我需要个蓝朋友,http://em.21dtv.com/songs/60131765.mkv +梁汉文-我需要的只是爱,http://em.21dtv.com/songs/60046480.mkv +梁汉文-我需要的只是爱(演唱会),http://em.21dtv.com/songs/60046479.mkv +陈茂源-微笑像云朵一样,http://em.21dtv.com/songs/60112368.mkv +李潮-我像雪花天上来,http://em.21dtv.com/songs/60106946.mkv +王喆-我像雪花天上来,http://em.21dtv.com/songs/60106101.mkv +万山红-我像雪花天上来,http://em.21dtv.com/songs/60078367.mkv +阎维文-我像雪花天上来,http://em.21dtv.com/songs/60046435.mkv +戴玉强-我像雪花天上来,http://em.21dtv.com/songs/60046434.mkv +SPEXIAL-我想我需要时间,http://em.21dtv.com/songs/60078365.mkv +王钧+张姚-微信微信我爱你,http://em.21dtv.com/songs/60085836.mkv +游鸿明-我希望你好好的,http://em.21dtv.com/songs/60046344.mkv +陈军委-我想为你唱支歌,http://em.21dtv.com/songs/60061705.mkv +田馥甄-我想我不会爱你(演唱会),http://em.21dtv.com/songs/60046406.mkv +宜宝+脱脱-我想听你说牵手,http://em.21dtv.com/songs/60130262.mkv +王旭鹏-我想听你的故事,http://em.21dtv.com/songs/60121912.mkv +汪哲-我想是我不够好,http://em.21dtv.com/songs/60110332.mkv +MC HOTDOG-我小时候都去tu(演唱会),http://em.21dtv.com/songs/60078368.mkv +熊七梅-我心上的云台山,http://em.21dtv.com/songs/60117904.mkv +张翠萍-网线牵着我和你,http://em.21dtv.com/songs/60112692.mkv +许嵩-我想牵着你的手,http://em.21dtv.com/songs/60046396.mkv +久久-我想去一个地方,http://em.21dtv.com/songs/60125079.mkv +李全伟-我想陪你去看海,http://em.21dtv.com/songs/60100127.mkv +阿超-我想你我好想你,http://em.21dtv.com/songs/60098834.mkv +阿超-我想你 我好想你,http://em.21dtv.com/songs/60097852.mkv +陈邵康-我想你会记得我,http://em.21dtv.com/songs/60097853.mkv +朱立峰-我想你的每一天,http://em.21dtv.com/songs/60084085.mkv +毛宁-晚霞落叶心上人,http://em.21dtv.com/songs/60043247.mkv +王蓉-我学雷锋好榜样,http://em.21dtv.com/songs/60088323.mkv +孙维良-我向军嫂敬个礼,http://em.21dtv.com/songs/60046431.mkv +郭富城-我喜欢这样想你,http://em.21dtv.com/songs/60102806.mkv +拥江帆-五星红旗我爱你,http://em.21dtv.com/songs/60084133.mkv +苏勒亚其其格-五星红旗飘起来,http://em.21dtv.com/songs/60078476.mkv +周密-我想和你在一起,http://em.21dtv.com/songs/60096057.mkv +王铮亮-我想和你走下去,http://em.21dtv.com/songs/60104322.mkv +杨果-我想和你去流浪,http://em.21dtv.com/songs/60094168.mkv +黑龙-我想和你去丽江,http://em.21dtv.com/songs/60068787.mkv +李杨飞-我想和你去看海,http://em.21dtv.com/songs/60100145.mkv +李杨飞-我想和你去看雪,http://em.21dtv.com/songs/60069982.mkv +尊华-我想和你结婚了,http://em.21dtv.com/songs/60046386.mkv +许茹芸-我心甘情愿这样,http://em.21dtv.com/songs/60092077.mkv +郭宴-我想大声告诉你,http://em.21dtv.com/songs/60135828.mkv +孙楠-我想大声告诉你,http://em.21dtv.com/songs/60113403.mkv +李祥祥-我想大声告诉你,http://em.21dtv.com/songs/60081345.mkv +金志文-我想大声告诉你,http://em.21dtv.com/songs/60063935.mkv +樊凡-我想大声告诉你,http://em.21dtv.com/songs/60046378.mkv +雅立-我想对你做坏事,http://em.21dtv.com/songs/60046379.mkv +吴尘-我想带你去铜陵,http://em.21dtv.com/songs/60127827.mkv +谢霆锋-我心多么挂念你,http://em.21dtv.com/songs/60092113.mkv +童唱-我向党来唱支歌,http://em.21dtv.com/songs/60046430.mkv +歌浴森-微笑的含着眼泪,http://em.21dtv.com/songs/60078065.mkv +周艳泓-我想出租半边床,http://em.21dtv.com/songs/60109230.mkv +周艳泓-我想出租半边床,http://em.21dtv.com/songs/60078359.mkv +徐辉-我想唱首歌给你,http://em.21dtv.com/songs/60099252.mkv +佚名-我心爱的小马车(恰恰),http://em.21dtv.com/songs/60046441.mkv +才仁卓玛-我心爱的结古多,http://em.21dtv.com/songs/60046439.mkv +佚名-我为祖国献石油,http://em.21dtv.com/songs/60046322.mkv +张柳唱-娃娃最爱过新年,http://em.21dtv.com/songs/60098355.mkv +杨洋-微微一笑很倾城,http://em.21dtv.com/songs/60129277.mkv +于子将-微微一笑很倾城,http://em.21dtv.com/songs/60128750.mkv +Rise-微微一笑很倾城,http://em.21dtv.com/songs/60128694.mkv +龙奔-微微一笑很倾城,http://em.21dtv.com/songs/60127635.mkv +于林真-我无需要你安慰,http://em.21dtv.com/songs/60046338.mkv +佚名-我为小姐珍珠凤,http://em.21dtv.com/songs/60046321.mkv +关心妍-毋忘我2008,http://em.21dtv.com/songs/60090661.mkv +梁静茹-娃娃,http://em.21dtv.com/songs/60106044.mkv +伊扬-我问天能否爱你,http://em.21dtv.com/songs/60046333.mkv +吴克群-We Will Rock You+将军令,http://em.21dtv.com/songs/60093802.mkv +佚名-我为人民扛起枪,http://em.21dtv.com/songs/60046317.mkv +南风-我为情人唱情歌,http://em.21dtv.com/songs/60099827.mkv +佚名-我为亲人熬鸡汤,http://em.21dtv.com/songs/60046316.mkv +赵丽-我为情哥唱情歌,http://em.21dtv.com/songs/60063439.mkv +孙彭飞-我为朋友唱首歌,http://em.21dtv.com/songs/60062959.mkv +佚名-我为你唱一首歌,http://em.21dtv.com/songs/60046305.mkv +梅林组合-为我们今天歌唱(演唱会),http://em.21dtv.com/songs/60069915.mkv +马常宝-我为老婆唱首歌,http://em.21dtv.com/songs/60120139.mkv +郭静-往未来飞的客机,http://em.21dtv.com/songs/60062409.mkv +满文军-忘我了吧我的爱,http://em.21dtv.com/songs/60088234.mkv +豫剧-我未开言心如焚,http://em.21dtv.com/songs/60134574.mkv +闪亮三姐妹-为我欢喜为我忧,http://em.21dtv.com/songs/60044128.mkv +佚名-我为红旗唱支歌,http://em.21dtv.com/songs/60046302.mkv +庄秋玉-我为海口唱赞歌,http://em.21dtv.com/songs/60126843.mkv +豫剧-洼洼地里好庄稼,http://em.21dtv.com/songs/60134591.mkv +温博-我为草原唱情歌,http://em.21dtv.com/songs/60065106.mkv +赵小兵-我问苍天问大地,http://em.21dtv.com/songs/60071268.mkv +王娜-我为爱情着了魔,http://em.21dtv.com/songs/60078354.mkv +陈雅森-问天问地问自己,http://em.21dtv.com/songs/60083998.mkv +荣杨-问天问地我问你,http://em.21dtv.com/songs/60044488.mkv +韩玉霞-我偷偷地爱着你,http://em.21dtv.com/songs/60118182.mkv +詹曼铃-毋通惹我寂寞心,http://em.21dtv.com/songs/60047609.mkv +ENERGY-我听见天使歌唱,http://em.21dtv.com/songs/60087189.mkv +ENERGY-我听见天使唱歌,http://em.21dtv.com/songs/60046284.mkv +邓妙华-我试着再爱一次(无原唱),http://em.21dtv.com/songs/60046068.mkv +杨雅琳-我是这样的女生,http://em.21dtv.com/songs/60046216.mkv +思祺-我是最后知道的,http://em.21dtv.com/songs/60092718.mkv +李烨琳-我是中国的孩子,http://em.21dtv.com/songs/60127042.mkv +汪峰-我是真的需要你,http://em.21dtv.com/songs/60091593.mkv +动心-我是真的舍不得,http://em.21dtv.com/songs/60065104.mkv +容祖儿-我所知的两三事,http://em.21dtv.com/songs/60046268.mkv +郭力-我是真的好想你,http://em.21dtv.com/songs/60109664.mkv +蓝芷儿-我是真的很难过,http://em.21dtv.com/songs/60046233.mkv +范晓萱-我是真的很开心,http://em.21dtv.com/songs/60091954.mkv +周啊想-我是真的好爱你,http://em.21dtv.com/songs/60099884.mkv +佚名-我所知道的爱情,http://em.21dtv.com/songs/60046267.mkv +和汇慧-我是真的不完美,http://em.21dtv.com/songs/60107609.mkv +王杰-我是真的爱上你,http://em.21dtv.com/songs/60046228.mkv +代理仁-我是真的爱上你,http://em.21dtv.com/songs/60068785.mkv +雷启飞-我是最爱你的人,http://em.21dtv.com/songs/60078351.mkv +张彦子-我是最爱你的人,http://em.21dtv.com/songs/60046248.mkv +赵传-我是一只小小鸟,http://em.21dtv.com/songs/60132917.mkv +孙楠-我是一只小小鸟,http://em.21dtv.com/songs/60116700.mkv +杨坤+丁诗瑀-我是一只小小鸟,http://em.21dtv.com/songs/60112775.mkv +萧煌奇+杨培安-我是一只小小鸟,http://em.21dtv.com/songs/60098732.mkv +罗琦-我是一只小小鸟(我是歌手第二期),http://em.21dtv.com/songs/60096431.mkv +赵露-我是一只小小鸟,http://em.21dtv.com/songs/60069978.mkv +丁当-我是一只小小鸟(演唱会),http://em.21dtv.com/songs/60062320.mkv +赵传-我是一只小小鸟,http://em.21dtv.com/songs/60046209.mkv +任贤齐+李宗盛-我是一只小小鸟,http://em.21dtv.com/songs/60046208.mkv +凤凰传奇-我是一只小小鸟,http://em.21dtv.com/songs/60046207.mkv +赵传-我是一只小小鸟(演唱会),http://em.21dtv.com/songs/60046206.mkv +任贤齐-我是一只小小鸟(演唱会),http://em.21dtv.com/songs/60046205.mkv +余越-我是一只小蜻蜓,http://em.21dtv.com/songs/60121381.mkv +潘秀琼-我是一只画眉鸟(演唱会),http://em.21dtv.com/songs/60084082.mkv +佚名-我是一只画眉鸟,http://em.21dtv.com/songs/60046202.mkv +潘秀琼-我是一只画眉鸟,http://em.21dtv.com/songs/60046201.mkv +林淑容-我是一只画眉鸟,http://em.21dtv.com/songs/60046200.mkv +许志安-我是一只黑胶碟,http://em.21dtv.com/songs/60046199.mkv +陈瑞-我是一首流行歌,http://em.21dtv.com/songs/60100599.mkv +金铭-我是一棵小小草,http://em.21dtv.com/songs/60046194.mkv +梁向明-我是一个消防兵,http://em.21dtv.com/songs/60078344.mkv +孙铭泽-我是一个退伍兵,http://em.21dtv.com/songs/60116712.mkv +罗钢-我是一个好男人,http://em.21dtv.com/songs/60046192.mkv +黄纪福-我是一个打工郎,http://em.21dtv.com/songs/60134504.mkv +中国娃娃-万岁万岁万万岁,http://em.21dtv.com/songs/60043322.mkv +泳儿-晚上我是天蝎座,http://em.21dtv.com/songs/60080824.mkv +吴兢-握手天上的月亮,http://em.21dtv.com/songs/60047027.mkv +23号半-无所事事的甜美,http://em.21dtv.com/songs/60078468.mkv +王立荐-我是受伤的男人,http://em.21dtv.com/songs/60121939.mkv +毛川-我是社区小警察,http://em.21dtv.com/songs/60135473.mkv +徐子洺-我是谁的林妹妹,http://em.21dtv.com/songs/60113519.mkv +阳光天使-万事如意跟随你,http://em.21dtv.com/songs/60072481.mkv +廖昌永-我是人民的儿子,http://em.21dtv.com/songs/60123905.mkv +廖昌永-我是人民的儿子,http://em.21dtv.com/songs/60091029.mkv +景仪-万水千山总是情,http://em.21dtv.com/songs/60092759.mkv +佚名-万水千山总是情,http://em.21dtv.com/songs/60043313.mkv +汪明荃-万水千山总是情,http://em.21dtv.com/songs/60043312.mkv +刘惜君-万水千山总是情,http://em.21dtv.com/songs/60043311.mkv +张帝+朱明瑛-万水千山总是情(演唱会),http://em.21dtv.com/songs/60043310.mkv +汪明荃-万水千山总是情(演唱会),http://em.21dtv.com/songs/60043309.mkv +安东阳+樊桐舟-万水千山总是爱,http://em.21dtv.com/songs/60099201.mkv +吴涤清-万水千山总是情,http://em.21dtv.com/songs/60067505.mkv +邓志驹+李淑勤-五世其昌乐元宵,http://em.21dtv.com/songs/60047664.mkv +ZICO-我是你 你是我,http://em.21dtv.com/songs/60119215.mkv +豪图-我思念你啊草原,http://em.21dtv.com/songs/60046260.mkv +李建科-我是牛粪你是花,http://em.21dtv.com/songs/60067583.mkv +陈随意-我是你的总铺师,http://em.21dtv.com/songs/60046152.mkv +陈随意-我是你的总厨师,http://em.21dtv.com/songs/60083690.mkv +阿牛-我是你的小小狗,http://em.21dtv.com/songs/60046151.mkv +河静静-我是你的小苹果,http://em.21dtv.com/songs/60104278.mkv +萧煌奇-我是你的消防局,http://em.21dtv.com/songs/60046150.mkv +东方依依-我是你的什么人,http://em.21dtv.com/songs/60080949.mkv +孙雪-我是你的女人吗,http://em.21dtv.com/songs/60046141.mkv +刘忻-我是你的女朋友,http://em.21dtv.com/songs/60120359.mkv +刘忻-我是你的女朋友,http://em.21dtv.com/songs/60078336.mkv +伊然-我是你的曼陀铃,http://em.21dtv.com/songs/60128770.mkv +泳儿-我是你的乐与怒(演唱会),http://em.21dtv.com/songs/60046139.mkv +花儿乐队-我是你的罗密欧,http://em.21dtv.com/songs/60091920.mkv +张家成-我是你的光头强,http://em.21dtv.com/songs/60130306.mkv +张家成-我是你的光头强,http://em.21dtv.com/songs/60126872.mkv +高佳-我思念的恩格贝,http://em.21dtv.com/songs/60111532.mkv +南无乐队-我是你的大猩猩,http://em.21dtv.com/songs/60110900.mkv +谢容儿-我是你的白娘子,http://em.21dtv.com/songs/60078334.mkv +腾格尔-为什么这样忧伤,http://em.21dtv.com/songs/60044106.mkv +罗志祥-为什么要在一起,http://em.21dtv.com/songs/60044104.mkv +蔡婧-我是美女我怕谁,http://em.21dtv.com/songs/60046128.mkv +DIVA彩乐团-我是美女我怕谁,http://em.21dtv.com/songs/60046127.mkv +网络歌曲-我是迈克杰克逊,http://em.21dtv.com/songs/60090110.mkv +王爵-为什么还不离开,http://em.21dtv.com/songs/60099409.mkv +陈子嘟-我是蜜蜂你是蜜,http://em.21dtv.com/songs/60046129.mkv +张雨生-我什么都愿意给,http://em.21dtv.com/songs/60046059.mkv +佚名-为生命创造奇迹(无原唱),http://em.21dtv.com/songs/60044108.mkv +张学友-为什么爱是这样,http://em.21dtv.com/songs/60044063.mkv +皓天-我是老鼠你是米,http://em.21dtv.com/songs/60090100.mkv +徐威-我是老鼠你是米,http://em.21dtv.com/songs/60089882.mkv +子雍-我是流氓我怕谁,http://em.21dtv.com/songs/60046125.mkv +许钧-万松岭的嬉皮士,http://em.21dtv.com/songs/60127396.mkv +龙飘飘-舞狮来到万事好,http://em.21dtv.com/songs/60065154.mkv +刘明辉-我所幻想的未来,http://em.21dtv.com/songs/60097849.mkv +赵小南-我是蝴蝶你是花,http://em.21dtv.com/songs/60061698.mkv +五条人乐队-晚上好春天小姐,http://em.21dtv.com/songs/60123615.mkv +林清国-往事何必再提起(无原唱),http://em.21dtv.com/songs/60043441.mkv +徐丹丹-我是羔羊你是狼,http://em.21dtv.com/songs/60078330.mkv +赵学而-我说过要你快乐,http://em.21dtv.com/songs/60046256.mkv +吴国敬-我说过要你快乐,http://em.21dtv.com/songs/60046255.mkv +张馨元-我是个幸福的人,http://em.21dtv.com/songs/60129128.mkv +方志耀-我是个无心的人(无原唱),http://em.21dtv.com/songs/60046114.mkv +张克帆-我是个soso的男生,http://em.21dtv.com/songs/60046110.mkv +木禾-我是风筝你是线,http://em.21dtv.com/songs/60084074.mkv +蒙面哥-猥琐发育 别浪,http://em.21dtv.com/songs/60135695.mkv +梁珍-我是飞鸟你是鱼,http://em.21dtv.com/songs/60084073.mkv +音乐走廊+歌一生-我是多么的想你,http://em.21dtv.com/songs/60134449.mkv +晓月-我是多么的想你,http://em.21dtv.com/songs/60115969.mkv +彩贝与海-我是多么的爱你,http://em.21dtv.com/songs/60109346.mkv +红日蓝月-我是多么的爱你,http://em.21dtv.com/songs/60104360.mkv +姚苏蓉-我说东来你说西,http://em.21dtv.com/songs/60046254.mkv +安东-我是东郭你是狼,http://em.21dtv.com/songs/60046097.mkv +郑敬基-为谁痴心为谁狂,http://em.21dtv.com/songs/60044112.mkv +司文-我是草根我怕谁,http://em.21dtv.com/songs/60046088.mkv +茶乐团-无数次告诉自己,http://em.21dtv.com/songs/60047433.mkv +朱妍-我随彩蝶翩翩飞,http://em.21dtv.com/songs/60046263.mkv +佚名-为人作嫁几时休,http://em.21dtv.com/songs/60044048.mkv +杨静+袁小迪-无人祝福的爱情,http://em.21dtv.com/songs/60078462.mkv +容祖儿-无人知道双子座,http://em.21dtv.com/songs/60121594.mkv +潘美辰-我仍用心爱着你,http://em.21dtv.com/songs/60046043.mkv +韦礼安-温柔,http://em.21dtv.com/songs/60126433.mkv +张清芳-温柔是一种胆量,http://em.21dtv.com/songs/60044371.mkv +辛晓琪-万人迷的女明星,http://em.21dtv.com/songs/60134275.mkv +高佳群+詹雅雯+林乔安+温瀚龙-无人了解我的爱,http://em.21dtv.com/songs/60130904.mkv +李明旭+张秀卿-我若酒醉拢是你,http://em.21dtv.com/songs/60095617.mkv +张秀卿-我若酒醉拢是你(无原唱),http://em.21dtv.com/songs/60046046.mkv +王珞丹-无人驾驶的爱情,http://em.21dtv.com/songs/60047395.mkv +梁静茹-我如何让你改变,http://em.21dtv.com/songs/60091527.mkv +方瑞娥-无人会冻代替你,http://em.21dtv.com/songs/60047393.mkv +常来+韩旭-我让风儿告诉你,http://em.21dtv.com/songs/60129042.mkv +常来-我让风儿告诉你,http://em.21dtv.com/songs/60127944.mkv +陈瑞-误入城市的蝴蝶,http://em.21dtv.com/songs/60124647.mkv +傅振辉-无人比我卡爱你,http://em.21dtv.com/songs/60047385.mkv +动力火车-我若不曾爱过你,http://em.21dtv.com/songs/60046045.mkv +王中平-无情做你爱别人,http://em.21dtv.com/songs/60127189.mkv +尹相杰+于文华-忘情正好在今天,http://em.21dtv.com/songs/60089824.mkv +戏曲-为妻也有比喻在,http://em.21dtv.com/songs/60092720.mkv +阿力-为情心碎夜凄美,http://em.21dtv.com/songs/60133026.mkv +佚名-为情为孝走天涯,http://em.21dtv.com/songs/60044043.mkv +海生-忘情忘爱忘记你,http://em.21dtv.com/songs/60083961.mkv +庄振凯-为情为爱拚一生,http://em.21dtv.com/songs/60085847.mkv +吴淑敏-为情为爱梦一生,http://em.21dtv.com/songs/60044042.mkv +樱花姐妹-无情无爱卡快活(无原唱),http://em.21dtv.com/songs/60047371.mkv +办桌二人组-为情为爱赌性命,http://em.21dtv.com/songs/60044041.mkv +Mr.Miss-晚期拖延症患者,http://em.21dtv.com/songs/60131087.mkv +王键-我其实一直想你,http://em.21dtv.com/songs/60128243.mkv +邓海-为情伤心的女人,http://em.21dtv.com/songs/60085845.mkv +逍遥香香-万千思念锁柔肠,http://em.21dtv.com/songs/60132957.mkv +陈思安-无情是你不是我,http://em.21dtv.com/songs/60047369.mkv +张祥洪-为情所困的女人,http://em.21dtv.com/songs/60085846.mkv +张光廷+候湘婷-无情世界无缘人(无原唱),http://em.21dtv.com/songs/60047368.mkv +高胜美-无情世界多情人,http://em.21dtv.com/songs/60047367.mkv +MC韩雅乐-无情人,http://em.21dtv.com/songs/60122400.mkv +江蕙-无情人请你离开,http://em.21dtv.com/songs/60047363.mkv +邓妙华-无情人放乎抹记,http://em.21dtv.com/songs/60066439.mkv +王麟-我去年买了个表,http://em.21dtv.com/songs/60097846.mkv +玖月奇迹-万泉河水清又清(演唱会),http://em.21dtv.com/songs/60078024.mkv +佚名-万泉河水清又清,http://em.21dtv.com/songs/60043295.mkv +施艳玲-万泉河水清又清(演唱会),http://em.21dtv.com/songs/60072480.mkv +邓丽君-无情荒地有情天,http://em.21dtv.com/songs/60047356.mkv +孙淑媚-无情风雨寂寞暝,http://em.21dtv.com/songs/60047352.mkv +洪百慧+庄振凯-为情飞为爱走找,http://em.21dtv.com/songs/60083982.mkv +詹雅雯-无情的十字路灯,http://em.21dtv.com/songs/60047335.mkv +胡雯-无情的人最洒脱,http://em.21dtv.com/songs/60078457.mkv +陈随意-无情的人不是我,http://em.21dtv.com/songs/60084127.mkv +冉燃+米伟强-我欠草原一首歌,http://em.21dtv.com/songs/60046021.mkv +李克勤+周慧敏-万千宠爱在一身,http://em.21dtv.com/songs/60043292.mkv +李克勤+容祖儿-万千宠爱在一身(演唱会),http://em.21dtv.com/songs/60043291.mkv +张蓉蓉-无情不是阮的名,http://em.21dtv.com/songs/60047312.mkv +尹光+胡美仪-无情宝剑有情天,http://em.21dtv.com/songs/60047309.mkv +陈绮贞-我亲爱的偏执狂,http://em.21dtv.com/songs/60046031.mkv +金岩-我亲爱的兵哥哥,http://em.21dtv.com/songs/60085919.mkv +蒋志光+章绮姗-万片希望在明天,http://em.21dtv.com/songs/60043289.mkv +许志安-我怕我会爱上你,http://em.21dtv.com/songs/60084071.mkv +金永根-Word Up,http://em.21dtv.com/songs/60133007.mkv +MAMAMOO-Woo Hoo,http://em.21dtv.com/songs/60134752.mkv +MAMAMOO-Woo Hoo,http://em.21dtv.com/songs/60120225.mkv +龙奔-我拿真心喂了狗,http://em.21dtv.com/songs/60136065.mkv +183CLUB-为你征服全世界,http://em.21dtv.com/songs/60044014.mkv +范振锋-为你忧郁的眼睛,http://em.21dtv.com/songs/60044011.mkv +大芭+罗时丰-无你一切什路用,http://em.21dtv.com/songs/60047298.mkv +佚名-问你心中想什么,http://em.21dtv.com/songs/60044466.mkv +唐韦琪-问你心中想什么(演唱会),http://em.21dtv.com/songs/60044465.mkv +苏又镕-为你心碎为你痛,http://em.21dtv.com/songs/60095875.mkv +罗时丰-为你牺牲为你茫,http://em.21dtv.com/songs/60134079.mkv +王建杰-为你牺牲为你茫,http://em.21dtv.com/songs/60094174.mkv +佚名-为你牺牲为你茫,http://em.21dtv.com/songs/60043994.mkv +圣诞老人不在家的驯鹿+帮我消消黑眼圈-舞娘,http://em.21dtv.com/songs/60126733.mkv +张捷-蜗牛,http://em.21dtv.com/songs/60125505.mkv +雷安娜-无奈我心乱如麻(演唱会),http://em.21dtv.com/songs/60047278.mkv +路见不平一声吼的美少女战士-为你我受冷风吹,http://em.21dtv.com/songs/60128439.mkv +刘涛-为你我受冷风吹,http://em.21dtv.com/songs/60123682.mkv +林忆莲-为你我受冷风吹,http://em.21dtv.com/songs/60116969.mkv +许茹芸-为你我受冷风吹,http://em.21dtv.com/songs/60114058.mkv +尚雯婕+曹轩宾-为你我受冷风吹,http://em.21dtv.com/songs/60099209.mkv +胡彦斌-为你我受冷风吹,http://em.21dtv.com/songs/60094255.mkv +朱婧佳-为你我受冷风吹,http://em.21dtv.com/songs/60083980.mkv +林忆莲-为你我受冷风吹,http://em.21dtv.com/songs/60043992.mkv +孙淑媚-无你无爱嘛快活,http://em.21dtv.com/songs/60125392.mkv +梦然-为你伤自己的心,http://em.21dtv.com/songs/60068733.mkv +瑞雪-为你守住半边床,http://em.21dtv.com/songs/60065020.mkv +李茂山-无你是欲搁按怎(无原唱),http://em.21dtv.com/songs/60047293.mkv +郭力-为你伤心为你哭,http://em.21dtv.com/songs/60115454.mkv +婉言-温暖生命每一天,http://em.21dtv.com/songs/60081171.mkv +陈瑞-我拿什么报答你,http://em.21dtv.com/songs/60045997.mkv +朴树-为你盛开的夕阳,http://em.21dtv.com/songs/60091294.mkv +阿BEN-为你清醒为你醉,http://em.21dtv.com/songs/60078087.mkv +李剑青-为你平定的天下,http://em.21dtv.com/songs/60105971.mkv +阿宝-为你跑成罗圈腿(演唱会),http://em.21dtv.com/songs/60078086.mkv +杨林-我那么那么想你,http://em.21dtv.com/songs/60045999.mkv +熊大-为你累也为你醉,http://em.21dtv.com/songs/60099385.mkv +刘超华-为你流泪也心碎,http://em.21dtv.com/songs/60090731.mkv +詹曼玲-望你了解我的心,http://em.21dtv.com/songs/60068120.mkv +詹曼铃-望你了解我的心(无原唱),http://em.21dtv.com/songs/60043689.mkv +黄清源-为你流尽千点泪,http://em.21dtv.com/songs/60043982.mkv +李逸-为你寂寞不难过,http://em.21dtv.com/songs/60043979.mkv +黄伟霖+吴宣莹-望你好好疼惜我,http://em.21dtv.com/songs/60123391.mkv +吕珊+郑敬基-问你会否跟我走,http://em.21dtv.com/songs/60044463.mkv +小龙-为你放下了过去,http://em.21dtv.com/songs/60104963.mkv +王飞-为你付出为我伤,http://em.21dtv.com/songs/60043974.mkv +Hitomi-文乃的幸福理论,http://em.21dtv.com/songs/60103638.mkv +李素专-无你惦阮的身边,http://em.21dtv.com/songs/60098486.mkv +佚名-为你打开一扇窗,http://em.21dtv.com/songs/60043958.mkv +谭晶-为你打开的雨伞,http://em.21dtv.com/songs/60068731.mkv +吴永飞-为你打开的雨伞,http://em.21dtv.com/songs/60063105.mkv +顾莉雅-为你打开的雨伞,http://em.21dtv.com/songs/60062399.mkv +家家-为你的寂寞唱歌,http://em.21dtv.com/songs/60096248.mkv +田田-为你唱一支情歌,http://em.21dtv.com/songs/60123026.mkv +陈盈洁-为你痴情为你迷(无原唱),http://em.21dtv.com/songs/60043956.mkv +刘育绫-为你吃苦我无怨,http://em.21dtv.com/songs/60043954.mkv +朴有天-为你保留的空位,http://em.21dtv.com/songs/60072500.mkv +佚名-我们走在大路上,http://em.21dtv.com/songs/60045988.mkv +侯牧人-我们走在大路上,http://em.21dtv.com/songs/60045987.mkv +腾格尔-我们走在大路上(演唱会),http://em.21dtv.com/songs/60045986.mkv +韩小薰-我们这样算什么,http://em.21dtv.com/songs/60114883.mkv +陈彦允-我们再一起好吗,http://em.21dtv.com/songs/60107321.mkv +名扬-我们终于结婚了,http://em.21dtv.com/songs/60123736.mkv +李悟+阳光黑子-我们只想在一起,http://em.21dtv.com/songs/60061695.mkv +欢子-我们这是怎么了,http://em.21dtv.com/songs/60045973.mkv +史俊威-我们走了一光年,http://em.21dtv.com/songs/60103138.mkv +谢霆锋+游鸿明+黄中原+黄大炜-我们这里还有鱼,http://em.21dtv.com/songs/60045972.mkv +卡卡龙-我们自己是太阳,http://em.21dtv.com/songs/60045984.mkv +伍佰-我们注定在一起,http://em.21dtv.com/songs/60096041.mkv +欧莉莲-我梦中的茉莉花,http://em.21dtv.com/songs/60045990.mkv +汪起正-我们真的不着急,http://em.21dtv.com/songs/60135484.mkv +大海-我们真诚交朋友,http://em.21dtv.com/songs/60135084.mkv +王明明-我们在长春相遇,http://em.21dtv.com/songs/60078311.mkv +毕书尽-我们在爱中漫步,http://em.21dtv.com/songs/60108656.mkv +毕书尽-我们在爱中漫步,http://em.21dtv.com/songs/60107859.mkv +佚名-我没有醉是你茫,http://em.21dtv.com/songs/60045759.mkv +玉面天使-我们永远在一起,http://em.21dtv.com/songs/60108696.mkv +罗琳+李索-我们永远在一起,http://em.21dtv.com/songs/60100381.mkv +群星-我们永远在一起,http://em.21dtv.com/songs/60086938.mkv +网络歌手-我们永远是朋友,http://em.21dtv.com/songs/60100376.mkv +水木年华-我们一起做游戏,http://em.21dtv.com/songs/60091571.mkv +白鹤-我们一起来忏悔,http://em.21dtv.com/songs/60078309.mkv +雨柔+望海高歌-我们一起看花海,http://em.21dtv.com/songs/60098902.mkv +任洁玲-我们有没有爱过,http://em.21dtv.com/songs/60045963.mkv +阿牛-我们一家都是人,http://em.21dtv.com/songs/60045955.mkv +张俊-我没有多余的钱,http://em.21dtv.com/songs/60045742.mkv +胡杰夕-我们像小孩一样,http://em.21dtv.com/songs/60068780.mkv +斯琴格日乐+臧天朔-我们新疆好地方,http://em.21dtv.com/songs/60045950.mkv +阿杰-我没想过不爱你,http://em.21dtv.com/songs/60045736.mkv +佚名-我们幸福的时刻,http://em.21dtv.com/songs/60045951.mkv +圭贤-我们相爱的时间,http://em.21dtv.com/songs/60113365.mkv +WHAM-wake me up before you go go,http://em.21dtv.com/songs/60006090.mkv +GEORGE MICHAEL-wake me up before you go go,http://em.21dtv.com/songs/60006089.mkv +孙伟-我每天都在想你,http://em.21dtv.com/songs/60078282.mkv +杨曼莉-我们是炎黄子孙,http://em.21dtv.com/songs/60115236.mkv +田欣-我们是恋爱的人,http://em.21dtv.com/songs/60045933.mkv +殷秀梅-我们是黄河泰山,http://em.21dtv.com/songs/60045930.mkv +彭丽媛-我们是黄河泰山,http://em.21dtv.com/songs/60045929.mkv +GOD-我们生活的故事,http://em.21dtv.com/songs/60103019.mkv +余骁睿-我们全家么么哒,http://em.21dtv.com/songs/60134892.mkv +梁晓-我们青春放光彩,http://em.21dtv.com/songs/60078299.mkv +洪荣宏-我没你嘛无所谓(无原唱),http://em.21dtv.com/songs/60045735.mkv +佚名-we may never love like this again,http://em.21dtv.com/songs/60006145.mkv +可歆-我们没有在一起,http://em.21dtv.com/songs/60099851.mkv +刘若英-我们没有在一起,http://em.21dtv.com/songs/60045910.mkv +佚名-我们明天再相会,http://em.21dtv.com/songs/60045913.mkv +新裤子-我们明天就分手,http://em.21dtv.com/songs/60110237.mkv +童唱-我们美丽的祖国,http://em.21dtv.com/songs/60045911.mkv +于玄子-我们俩是一对儿,http://em.21dtv.com/songs/60109129.mkv +新裤子-我们可以在一起,http://em.21dtv.com/songs/60045906.mkv +王昆-我们家乡沂蒙山,http://em.21dtv.com/songs/60116146.mkv +王昆-我们家乡沂蒙山,http://em.21dtv.com/songs/60088293.mkv +耀乐团+金小鱼-我们就喜欢这样,http://em.21dtv.com/songs/60126077.mkv +耀乐团+金小鱼-我们就喜欢这样,http://em.21dtv.com/songs/60081427.mkv +本兮-我梦见我梦见我,http://em.21dtv.com/songs/60131488.mkv +艺林歌哥-我们今生手牵手,http://em.21dtv.com/songs/60096111.mkv +胡云鹏-我们今生好兄弟,http://em.21dtv.com/songs/60112154.mkv +叶丽仪-我们见面又分手,http://em.21dtv.com/songs/60090788.mkv +吴小豪-我们结婚好不好,http://em.21dtv.com/songs/60045900.mkv +崔伟亮-我们结婚好不好,http://em.21dtv.com/songs/60069964.mkv +1036组合-我们还有当年情,http://em.21dtv.com/songs/60045896.mkv +谭晶-我们和你在一起,http://em.21dtv.com/songs/60045898.mkv +徐靖博-我们还能爱多久,http://em.21dtv.com/songs/60045895.mkv +方顺吉-我抹辜负你的爱,http://em.21dtv.com/songs/60045995.mkv +吴依琳-我们等着新年来,http://em.21dtv.com/songs/60078293.mkv +柳博-我们等着新年来,http://em.21dtv.com/songs/60065091.mkv +吴倩莲-我们都要好好过,http://em.21dtv.com/songs/60045884.mkv +杜德伟-我们的虚拟世界,http://em.21dtv.com/songs/60113649.mkv +王橹窗-我们都是中国人,http://em.21dtv.com/songs/60045881.mkv +刘钇彤-我们都是真诚的,http://em.21dtv.com/songs/60045880.mkv +鄢青-我们都是一家人,http://em.21dtv.com/songs/60131897.mkv +张洪量-我们都是一个样(演唱会),http://em.21dtv.com/songs/60045875.mkv +江美琪-我们都是一朵花,http://em.21dtv.com/songs/60045874.mkv +DISH乐队-我们都是舞蹈者(演唱会),http://em.21dtv.com/songs/60065092.mkv +孙楠-我们都是伤心人,http://em.21dtv.com/songs/60045872.mkv +杜浩-我们都是三道人,http://em.21dtv.com/songs/60107807.mkv +MONMON-我们都是傻ㄚ头,http://em.21dtv.com/songs/60045871.mkv +苏佩卿-我们都是寂寞的,http://em.21dtv.com/songs/60135672.mkv +伍义-我们都是好兄弟,http://em.21dtv.com/songs/60069963.mkv +S.H.E-我们都是好姐妹,http://em.21dtv.com/songs/60045868.mkv +王筝-我们都是好孩子,http://em.21dtv.com/songs/60045867.mkv +阿赖-我们都是贵州人,http://em.21dtv.com/songs/60126355.mkv +谭圳+付云霞-我们都是规划人,http://em.21dtv.com/songs/60078295.mkv +华晨宇-我们都是孤独的,http://em.21dtv.com/songs/60104854.mkv +郭静-我们都能幸福着,http://em.21dtv.com/songs/60071260.mkv +太极乐队-我们的80年代(演唱会),http://em.21dtv.com/songs/60095285.mkv +王丽达+蔡国庆-我们的美好时代,http://em.21dtv.com/songs/60117024.mkv +汤子星-我们的美好时代,http://em.21dtv.com/songs/60116992.mkv +王丽达-我们的美好时代,http://em.21dtv.com/songs/60109517.mkv +双鱼座-我们的没好生活,http://em.21dtv.com/songs/60066412.mkv +萧亚轩-我们多久没牵手,http://em.21dtv.com/songs/60045892.mkv +任韵淇-我们都会幸福的,http://em.21dtv.com/songs/60118321.mkv +辛莉恩-我们都会幸福的,http://em.21dtv.com/songs/60115428.mkv +陈雅森-我们都还很年轻,http://em.21dtv.com/songs/60135947.mkv +张靓颖-我们都辜负了爱,http://em.21dtv.com/songs/60045859.mkv +张杰-我们的发光时代,http://em.21dtv.com/songs/60125511.mkv +藏天朔-我们等待这一天,http://em.21dtv.com/songs/60088615.mkv +臧天朔-我们等待那一天(演唱会),http://em.21dtv.com/songs/60045855.mkv +望海高歌-我们的地老天荒,http://em.21dtv.com/songs/60106912.mkv +张华-我们的爱是永远,http://em.21dtv.com/songs/60100012.mkv +龙奔-我们的爱好无奈,http://em.21dtv.com/songs/60078286.mkv +满江-我们唱着那首歌(演唱会),http://em.21dtv.com/songs/60045781.mkv +徐恩乾-我们曾经过那里,http://em.21dtv.com/songs/60115177.mkv +万芳-我们不要伤心了,http://em.21dtv.com/songs/60045780.mkv +吴依琳-万马奔腾迎新春,http://em.21dtv.com/songs/60078022.mkv +群星-万马奔腾迎新春,http://em.21dtv.com/songs/60043282.mkv +袁晓婕-我们不是相爱吗,http://em.21dtv.com/songs/60107993.mkv +DAVICHI+T ARA-我们不是相爱吗,http://em.21dtv.com/songs/60066409.mkv +张赫宣-我们不该这样的,http://em.21dtv.com/songs/60115926.mkv +长春虫子-我们不分开好吗,http://em.21dtv.com/songs/60045776.mkv +轻晨电乐队-我们背对着青春,http://em.21dtv.com/songs/60124533.mkv +林思彤-我们不都是这样,http://em.21dtv.com/songs/60124131.mkv +陈雅森-未来在哪遇见你,http://em.21dtv.com/songs/60119030.mkv +马旭东-忘了怎么说再见,http://em.21dtv.com/songs/60120142.mkv +德德玛-我来自蒙古高原,http://em.21dtv.com/songs/60109375.mkv +基地小虎-忘了自己忘了你,http://em.21dtv.com/songs/60043627.mkv +陈思安-无路用是我不敢,http://em.21dtv.com/songs/60047227.mkv +李福山-我俩永隔一条水,http://em.21dtv.com/songs/60091359.mkv +王洛宾-我俩永隔一条河,http://em.21dtv.com/songs/60091718.mkv +小娟-我俩永隔一江水,http://em.21dtv.com/songs/60103231.mkv +童唱-王老先生有块地,http://em.21dtv.com/songs/60043358.mkv +梁子-我俩,http://em.21dtv.com/songs/60119732.mkv +饶天亮-忘了我忘不了你,http://em.21dtv.com/songs/60043619.mkv +巧千金-舞龙舞狮庆新年,http://em.21dtv.com/songs/60047785.mkv +李美妮-wa la wa la闯世界(演唱会),http://em.21dtv.com/songs/60006079.mkv +满文军-忘了我吧我的爱,http://em.21dtv.com/songs/60043612.mkv +吴德华-网恋网爱网的海,http://em.21dtv.com/songs/60043380.mkv +林子祥-万里天风伴我飞,http://em.21dtv.com/songs/60092854.mkv +佚名-乌来山下一朵花,http://em.21dtv.com/songs/60047031.mkv +云飞儿-我连伤心都不会,http://em.21dtv.com/songs/60133346.mkv +张信哲-未来是你的爱情,http://em.21dtv.com/songs/60044260.mkv +糖兄妹-为了什么要完蛋(演唱会),http://em.21dtv.com/songs/60069909.mkv +刘德华-为了什么流眼泪,http://em.21dtv.com/songs/60043919.mkv +陈岩-网络世界遇见你,http://em.21dtv.com/songs/60107320.mkv +红蔷薇-网络世界遇见你,http://em.21dtv.com/songs/60107107.mkv +李少朋-忘了时间忘了你,http://em.21dtv.com/songs/60122851.mkv +江明娟-无论如何都爱你,http://em.21dtv.com/songs/60088194.mkv +韩雅乐-为了你,http://em.21dtv.com/songs/60114886.mkv +周杰伦-我落泪情绪零碎,http://em.21dtv.com/songs/60045729.mkv +望海高歌+雨柔-为了今生遇见你,http://em.21dtv.com/songs/60133779.mkv +佚名-万里江山万里情,http://em.21dtv.com/songs/60043275.mkv +杨文蔚-王老虎抢亲-寄闺,http://em.21dtv.com/songs/60043356.mkv +华晨宇-我离孤单几公里,http://em.21dtv.com/songs/60130135.mkv +Postmen-无论放开多少次,http://em.21dtv.com/songs/60121300.mkv +苏晴-无论到哪都成长,http://em.21dtv.com/songs/60084122.mkv +崔伟亮-网络的爱没结果,http://em.21dtv.com/songs/60069899.mkv +刘玉东-为了草原更美好,http://em.21dtv.com/songs/60120371.mkv +彭丽媛-万里春色满家园,http://em.21dtv.com/songs/60102254.mkv +庄学忠-五路财神跟着你,http://em.21dtv.com/songs/60047651.mkv +叶振棠-万里长城永不倒,http://em.21dtv.com/songs/60043279.mkv +徐小明-万里长城永不倒,http://em.21dtv.com/songs/60043278.mkv +中国力量-万里长城永不倒(演唱会),http://em.21dtv.com/songs/60043277.mkv +范逸臣-无乐不作好时光,http://em.21dtv.com/songs/60128353.mkv +蒙古歌-乌兰巴托的爸爸,http://em.21dtv.com/songs/60092008.mkv +臧天朔-为了爱也为了你,http://em.21dtv.com/songs/60043909.mkv +乃木坂46-无口なライオン,http://em.21dtv.com/songs/60103062.mkv +梅艳芳-我看着寂寞长大,http://em.21dtv.com/songs/60045679.mkv +崔允太-我可以为你祝福,http://em.21dtv.com/songs/60101335.mkv +潘美辰-我可以为你挡死,http://em.21dtv.com/songs/60045690.mkv +格杨-我可以重新去爱,http://em.21dtv.com/songs/60069960.mkv +潘粤明-悟空,http://em.21dtv.com/songs/60122974.mkv +陈慧娴-我肯我等我害怕,http://em.21dtv.com/songs/60045692.mkv +黄飞鹏-我开始为你写歌,http://em.21dtv.com/songs/60111558.mkv +兰馨-无可取代的美丽,http://em.21dtv.com/songs/60071285.mkv +佚名-what kind of fool do you think(无原唱),http://em.21dtv.com/songs/60006205.mkv +冰火组合-我哭你在不在乎(演唱会),http://em.21dtv.com/songs/60045699.mkv +安宇-我哭了你知道吗,http://em.21dtv.com/songs/60065082.mkv +信乐团-无可救药爱上你,http://em.21dtv.com/songs/60047179.mkv +晓明-我哭不是因为你,http://em.21dtv.com/songs/60045693.mkv +西部怪杰-我家住在山那边,http://em.21dtv.com/songs/60128387.mkv +陈丽媛-我家住在大海边,http://em.21dtv.com/songs/60122220.mkv +金婷婷-我家住在长江边,http://em.21dtv.com/songs/60123252.mkv +谢津-我就要失去感觉,http://em.21dtv.com/songs/60045668.mkv +颜忍-我家有个小九妹,http://em.21dtv.com/songs/60045630.mkv +李芊慧-无禁无忌吃百二(无原唱),http://em.21dtv.com/songs/60047171.mkv +吴介贤-万家团圆欢乐年(演唱会),http://em.21dtv.com/songs/60078021.mkv +舒方-我今天为你祝福,http://em.21dtv.com/songs/60128328.mkv +庾澄庆-无尽透明的思念,http://em.21dtv.com/songs/60087784.mkv +庾澄庆-无尽透的明思念,http://em.21dtv.com/songs/60047170.mkv +许茹芸-我就是这么快乐,http://em.21dtv.com/songs/60045660.mkv +臧天朔-我就是这个模样,http://em.21dtv.com/songs/60045659.mkv +李铮-我今生最爱的人,http://em.21dtv.com/songs/60097845.mkv +丁当-我就是喜欢这样,http://em.21dtv.com/songs/60103841.mkv +大哲-忘记伤痛忘记你,http://em.21dtv.com/songs/60067516.mkv +伍佰-无尽闪亮的哀愁,http://em.21dtv.com/songs/60094396.mkv +李翊君-忘记伤害我的人,http://em.21dtv.com/songs/60043551.mkv +成诗京-我将生活的地方,http://em.21dtv.com/songs/60072537.mkv +何龙雨-我今生爱人是你,http://em.21dtv.com/songs/60133367.mkv +任洁玲-我就是爱你怎样(无原唱),http://em.21dtv.com/songs/60045649.mkv +康志雄-我敬朋友一杯酒,http://em.21dtv.com/songs/60086930.mkv +巴桑-忘记你要一辈子,http://em.21dtv.com/songs/60043549.mkv +阿译(A译)-忘记你需要多久,http://em.21dtv.com/songs/60107306.mkv +阿译-忘记你需要多久,http://em.21dtv.com/songs/60078049.mkv +黄凯芹-忘记你我做不到,http://em.21dtv.com/songs/60106493.mkv +陈羽凡+贾建龙-忘记你我做不到,http://em.21dtv.com/songs/60095145.mkv +张学友-忘记你我做不到,http://em.21dtv.com/songs/60043548.mkv +张学友-忘记你我做不到(演唱会),http://em.21dtv.com/songs/60043547.mkv +红蔷薇-忘记你是那么难,http://em.21dtv.com/songs/60130642.mkv +柔枫-忘记你给的温柔,http://em.21dtv.com/songs/60081677.mkv +张宇轩-忘记你的温柔,http://em.21dtv.com/songs/60071210.mkv +张震岳-我家门前有大海,http://em.21dtv.com/songs/60084052.mkv +吕薇-我家门前清溪流,http://em.21dtv.com/songs/60045629.mkv +林雪-我家门前的小河,http://em.21dtv.com/songs/60113723.mkv +陈升-婉君妹妹我错了,http://em.21dtv.com/songs/60124612.mkv +张卓行-未见面就说再见,http://em.21dtv.com/songs/60069918.mkv +陈学希-王金龙命中不幸,http://em.21dtv.com/songs/60043355.mkv +佚名-为救李郎离家园,http://em.21dtv.com/songs/60043894.mkv +李琼-我家就在山里住,http://em.21dtv.com/songs/60045627.mkv +波拉-我家就在莎车住,http://em.21dtv.com/songs/60116109.mkv +陈俐俐-我家就在长江边,http://em.21dtv.com/songs/60118140.mkv +陈思思-我家就在长江边(演唱会),http://em.21dtv.com/songs/60045628.mkv +佚名-我将今夜送给你,http://em.21dtv.com/songs/60045640.mkv +刘秋仪-问君何日能再来,http://em.21dtv.com/songs/60087418.mkv +陈绍楠-忘记放弃我的你,http://em.21dtv.com/songs/60043531.mkv +赵薇-无尽的莎士比亚,http://em.21dtv.com/songs/60047165.mkv +雷诺儿-忘记尘缘忘记你,http://em.21dtv.com/songs/60043529.mkv +王识贤-我甲别人不同款,http://em.21dtv.com/songs/60045638.mkv +CITY魅-无坚不摧的战衣,http://em.21dtv.com/songs/60086960.mkv +大张伟-我就不爱唱情歌,http://em.21dtv.com/songs/60102077.mkv +大张伟-我就不爱唱情歌(故事情节),http://em.21dtv.com/songs/60100818.mkv +郭力-忘记爱情忘记你,http://em.21dtv.com/songs/60115455.mkv +WESTLIFE-what i want is what ive got,http://em.21dtv.com/songs/60006195.mkv +S-Without,http://em.21dtv.com/songs/60107428.mkv +MADONNA-what it feels like for a girl,http://em.21dtv.com/songs/60006201.mkv +佚名-when im back on my feet again,http://em.21dtv.com/songs/60006248.mkv +流苏-我还在这里等你,http://em.21dtv.com/songs/60132681.mkv +原乡+高音-我还在这里等你,http://em.21dtv.com/songs/60106668.mkv +汪峰-我会在这儿等你,http://em.21dtv.com/songs/60091592.mkv +乐洋-我还在一直等你,http://em.21dtv.com/songs/60078262.mkv +成于申-无悔这一生挣扎,http://em.21dtv.com/songs/60118595.mkv +阳杰-我还在原地等你,http://em.21dtv.com/songs/60103645.mkv +梁静茹-我和自己的约会,http://em.21dtv.com/songs/60045551.mkv +冷漠-我恨自己动了情,http://em.21dtv.com/songs/60111707.mkv +冷漠-我恨自己动了情[消伴],http://em.21dtv.com/songs/60100770.mkv +萧人凤-我和自己的婚礼,http://em.21dtv.com/songs/60130704.mkv +杨小曼+冷漠-为何自己不听话,http://em.21dtv.com/songs/60078075.mkv +刘嘉玲-我会真的嫁给你,http://em.21dtv.com/songs/60045619.mkv +闫莉-我还在草原等你,http://em.21dtv.com/songs/60118121.mkv +闫莉-我还在草原等你,http://em.21dtv.com/songs/60085901.mkv +红蔷薇-我会永远守护你,http://em.21dtv.com/songs/60084051.mkv +陈岩-我会永远守护你,http://em.21dtv.com/songs/60078264.mkv +李浩民-我会永远爱着你,http://em.21dtv.com/songs/60086928.mkv +雷罡-我会用心去爱你,http://em.21dtv.com/songs/60045618.mkv +连诗雅-为何要我爱上你,http://em.21dtv.com/songs/60111426.mkv +郑秀文-为何又是这样错,http://em.21dtv.com/songs/60043890.mkv +刘晨-我还有点小糊涂,http://em.21dtv.com/songs/60103117.mkv +JANET JACKSON-what have you done for mr late,http://em.21dtv.com/songs/60006191.mkv +包启宁-我好想说我爱你,http://em.21dtv.com/songs/60099819.mkv +黎明-我会像你一样傻,http://em.21dtv.com/songs/60045615.mkv +龙千玉-为何新娘不是我,http://em.21dtv.com/songs/60043889.mkv +S.H.E-我和幸福有约定,http://em.21dtv.com/songs/60045549.mkv +于洋-五华兄弟五华情,http://em.21dtv.com/songs/60123608.mkv +刘德华-我和我追逐的梦,http://em.21dtv.com/songs/60045547.mkv +刘德华-我和我追逐的梦(演唱会),http://em.21dtv.com/songs/60045546.mkv +姜育恒-我和我的朋友们,http://em.21dtv.com/songs/60071246.mkv +张敬轩-为何他会离开你(演唱会),http://em.21dtv.com/songs/60043885.mkv +林忆莲-为何他会离开你(演唱会),http://em.21dtv.com/songs/60043884.mkv +刘春雨-我还是真的爱你,http://em.21dtv.com/songs/60125199.mkv +刘春雨-我还是真的爱你,http://em.21dtv.com/songs/60122521.mkv +郭美美-我还是依然爱你,http://em.21dtv.com/songs/60078260.mkv +王馨-为何伤了我的心,http://em.21dtv.com/songs/60111296.mkv +梁朝伟-我会伤了你的心,http://em.21dtv.com/songs/60045612.mkv +林隆璇-我还是爱你到老,http://em.21dtv.com/songs/60045475.mkv +郭富城-为何仍剩我一人,http://em.21dtv.com/songs/60043882.mkv +念晴+何军-为何情人总心伤,http://em.21dtv.com/songs/60107749.mkv +张冬玲-为何情人那么多,http://em.21dtv.com/songs/60069906.mkv +谢震东-我会陪在你身旁,http://em.21dtv.com/songs/60115401.mkv +高林生-我会陪你到永远,http://em.21dtv.com/songs/60045610.mkv +于小磊-我和你一起飞翔,http://em.21dtv.com/songs/60125083.mkv +杨浩楠-为何你要背叛我,http://em.21dtv.com/songs/60043879.mkv +彭筝-我和你无怨无仇,http://em.21dtv.com/songs/60115171.mkv +小城-为何你说走就走,http://em.21dtv.com/songs/60043878.mkv +HIROCK乐团-我还能说些什么(无原唱),http://em.21dtv.com/songs/60045469.mkv +曾轶可-我还能孩子多久,http://em.21dtv.com/songs/60066404.mkv +黄阅-我还能给你什么,http://em.21dtv.com/songs/60045468.mkv +麦子杰-为何你的心不懂,http://em.21dtv.com/songs/60043876.mkv +佚名-为何你爱着别人,http://em.21dtv.com/songs/60043874.mkv +罗时丰-为何你爱着别人,http://em.21dtv.com/songs/60043873.mkv +费玉清-为何你爱着别人,http://em.21dtv.com/songs/60043872.mkv +爱朵女孩-我还没有男朋友,http://em.21dtv.com/songs/60078258.mkv +李婉华-我和梦想去流浪,http://em.21dtv.com/songs/60118666.mkv +河静静-我好蓝瘦我香菇,http://em.21dtv.com/songs/60128169.mkv +洪荣宏-为何今夜这呢冷,http://em.21dtv.com/songs/60043867.mkv +陈慧姗-我还记得我是谁,http://em.21dtv.com/songs/60093436.mkv +贲小伟-我会记得你的好,http://em.21dtv.com/songs/60085903.mkv +LunchMoney Lewis+Chloe Angelides-Whip It,http://em.21dtv.com/songs/60123498.mkv +望海高歌-为何狠心伤害我,http://em.21dtv.com/songs/60113587.mkv +王心凌-我很好那么你呢,http://em.21dtv.com/songs/60045560.mkv +王文琦-文化大妈广场乐,http://em.21dtv.com/songs/60129399.mkv +徐千雅-我和春天有个约(演唱会),http://em.21dtv.com/songs/60069952.mkv +舟白-我会彻底忘了你,http://em.21dtv.com/songs/60072535.mkv +许靖韵-我和别人不一样,http://em.21dtv.com/songs/60126191.mkv +孟杨-为何不复我短信,http://em.21dtv.com/songs/60043861.mkv +王艺霖-为何爱她不爱我,http://em.21dtv.com/songs/60115306.mkv +潘美辰-为何爱情让我痛,http://em.21dtv.com/songs/60043857.mkv +刘转亮-我会爱你一辈子,http://em.21dtv.com/songs/60086927.mkv +[Group] +groupName=十六万歌曲MV等 - 99 +张津涤-我该怎样感谢你,http://em.21dtv.com/songs/60119529.mkv +夏文罗-我该怎么办才好,http://em.21dtv.com/songs/60081712.mkv +黄思婷-我甘愿为你吃苦,http://em.21dtv.com/songs/60045442.mkv +高向鹏+方怡萍-我甘愿为你吃苦,http://em.21dtv.com/songs/60045441.mkv +曾心梅-我甘愿为你吃苦,http://em.21dtv.com/songs/60045440.mkv +DREAM GIRLS-我跟她们不一样,http://em.21dtv.com/songs/60096145.mkv +伯阳-五根手指一把手,http://em.21dtv.com/songs/60047639.mkv +佚名-王贵是个好后生,http://em.21dtv.com/songs/60043353.mkv +吴依琳-万鼓齐鸣迎新年,http://em.21dtv.com/songs/60078019.mkv +温兆伦-我感觉你心不在,http://em.21dtv.com/songs/60045448.mkv +万芳-温歌华悲伤一号,http://em.21dtv.com/songs/60089581.mkv +万芳-温哥华悲伤一号,http://em.21dtv.com/songs/60044325.mkv +小东+陈姝娜-我甘搁会熟识你,http://em.21dtv.com/songs/60107679.mkv +顾凯-我管不住我眼泪,http://em.21dtv.com/songs/60045458.mkv +河流-万分之一的承诺,http://em.21dtv.com/songs/60072479.mkv +罗时丰-枉费真心对待你,http://em.21dtv.com/songs/60095858.mkv +曾一鸣-无法再见的时光,http://em.21dtv.com/songs/60085955.mkv +黄致列-王妃,http://em.21dtv.com/songs/60126489.mkv +萧敬腾+高鸿涛+宋恩治+陈慧娟-王妃,http://em.21dtv.com/songs/60126133.mkv +王祖蓝-王妃,http://em.21dtv.com/songs/60125939.mkv +萧敬腾+高鸿涛+宋恩治+陈慧娟+我想和你唱-王妃,http://em.21dtv.com/songs/60122070.mkv +新秀团队-无法忘记的心碎,http://em.21dtv.com/songs/60084117.mkv +越剧-我夫文场夺魁去,http://em.21dtv.com/songs/60045427.mkv +全芳-晚风牵来一个梦,http://em.21dtv.com/songs/60089144.mkv +王建荣-我非菩提亦非莲,http://em.21dtv.com/songs/60125919.mkv +张翠萍-无法靠近你的爱,http://em.21dtv.com/songs/60084115.mkv +陈予新-无法解释的事件,http://em.21dtv.com/songs/60047095.mkv +任贤齐-无法达到的境界,http://em.21dtv.com/songs/60047091.mkv +胡利基-无法承受的重量,http://em.21dtv.com/songs/60132814.mkv +徐子策-微风吹过的痕迹,http://em.21dtv.com/songs/60106878.mkv +袁哲-微风吹拂的夏天(演唱会),http://em.21dtv.com/songs/60043756.mkv +李自强-我放不下的是你,http://em.21dtv.com/songs/60078241.mkv +晓月-我放不下的是你,http://em.21dtv.com/songs/60045421.mkv +佚名-万恶淫为首-乞食,http://em.21dtv.com/songs/60043264.mkv +侧田-WETOUCH,http://em.21dtv.com/songs/60109981.mkv +Fort Minor-Welcome,http://em.21dtv.com/songs/60113162.mkv +PRISTIN-WEE WOO,http://em.21dtv.com/songs/60133266.mkv +张磊-我的战友好兄弟,http://em.21dtv.com/songs/60078236.mkv +黎明-我的真心献给你,http://em.21dtv.com/songs/60045351.mkv +花鼓戏-我定重谢你媒人,http://em.21dtv.com/songs/60090162.mkv +陈俊廷-我的真心没有罪,http://em.21dtv.com/songs/60045350.mkv +SHELLY佳-我的掌纹是你语,http://em.21dtv.com/songs/60085897.mkv +于文华-我的祖国我的家,http://em.21dtv.com/songs/60125085.mkv +周瑜-我的中国我爱你,http://em.21dtv.com/songs/60104885.mkv +雍朝玉-我的中国我爱你,http://em.21dtv.com/songs/60104579.mkv +群星-我的中国我爱你,http://em.21dtv.com/songs/60088459.mkv +孙悦-我的祝福记得吗,http://em.21dtv.com/songs/60045360.mkv +韩晓辉-我的愿望不算多,http://em.21dtv.com/songs/60133071.mkv +邱淑君-我的一生交乎你(无原唱),http://em.21dtv.com/songs/60045333.mkv +刘若英-我的眼前的幸福(演唱会),http://em.21dtv.com/songs/60045327.mkv +黄渤-我的要求不算高,http://em.21dtv.com/songs/60096570.mkv +秦杨-我的一票投乎你,http://em.21dtv.com/songs/60095832.mkv +李丹阳-我的依恋在这里,http://em.21dtv.com/songs/60045336.mkv +景岗山-我的眼里只有你,http://em.21dtv.com/songs/60045325.mkv +景岗山-我的眼里只有你(演唱会),http://em.21dtv.com/songs/60045324.mkv +伍华-我的眼泪在说谎,http://em.21dtv.com/songs/60084043.mkv +苏慧伦-我的眼泪在颤抖,http://em.21dtv.com/songs/60045322.mkv +文晓芮-我的音乐我做主,http://em.21dtv.com/songs/60045337.mkv +小沈阳-我的眼泪为谁飞,http://em.21dtv.com/songs/60078231.mkv +张靓颖-我的音乐让我说,http://em.21dtv.com/songs/60087853.mkv +晓晓-我的眼泪没有罪,http://em.21dtv.com/songs/60078230.mkv +李茂山-我的眼睛在下雨,http://em.21dtv.com/songs/60045320.mkv +苏蓉-我的眼睛你的泪,http://em.21dtv.com/songs/60091948.mkv +秋裤大叔-我的眼袋我的爱,http://em.21dtv.com/songs/60108761.mkv +赵小兵-我的眼袋我的爱,http://em.21dtv.com/songs/60078229.mkv +周杰伦+温岚-屋顶[演唱会],http://em.21dtv.com/songs/60103159.mkv +张清芳-我的选择不会错,http://em.21dtv.com/songs/60045314.mkv +吕方-我的心越来越冷,http://em.21dtv.com/songs/60087545.mkv +吕方-我的心愈来愈冷,http://em.21dtv.com/songs/60045301.mkv +张祥洪-我的心一路向北,http://em.21dtv.com/songs/60129111.mkv +DJ-我的心一路向北,http://em.21dtv.com/songs/60128674.mkv +姚亦晴-我的小小玻璃心,http://em.21dtv.com/songs/60135096.mkv +张震岳-我的心是为你跳,http://em.21dtv.com/songs/60045291.mkv +何建清-我的心谁能明白,http://em.21dtv.com/songs/60045292.mkv +昊天-我的心谁能明白,http://em.21dtv.com/songs/60072532.mkv +夏洪君-我多想时光不老,http://em.21dtv.com/songs/60119376.mkv +许冠杰-我的心仍属于你,http://em.21dtv.com/songs/60045285.mkv +王识贤-我的心内只有你,http://em.21dtv.com/songs/60045280.mkv +荣联合-我的新娘在草原,http://em.21dtv.com/songs/60045308.mkv +姜育恒-我的心没有回程,http://em.21dtv.com/songs/60045278.mkv +群星-我的小妹过新年,http://em.21dtv.com/songs/60088460.mkv +喜波-我的心里只有你,http://em.21dtv.com/songs/60131291.mkv +高艺菲-我的新郎在草原,http://em.21dtv.com/songs/60106472.mkv +瑞雪-我的心里你来过,http://em.21dtv.com/songs/60045274.mkv +吕珊-我的心里没有他,http://em.21dtv.com/songs/60089203.mkv +刘文正-我的心里没有他,http://em.21dtv.com/songs/60045273.mkv +AT17-我的心里没有他,http://em.21dtv.com/songs/60045272.mkv +张国荣-我的心里没有他(演唱会),http://em.21dtv.com/songs/60045271.mkv +叶丽仪-我的心里没有他(演唱会),http://em.21dtv.com/songs/60045270.mkv +魏秋桦-我的心里没有他(演唱会),http://em.21dtv.com/songs/60065066.mkv +朱青-我的心寂寞如火,http://em.21dtv.com/songs/60063475.mkv +马健南-我多想回到从前,http://em.21dtv.com/songs/60104598.mkv +办桌阿杰+陈思安-我的心肝为你痛,http://em.21dtv.com/songs/60095481.mkv +陈四安-我的心肝为你痛,http://em.21dtv.com/songs/60089516.mkv +孔太-我的心跟你回家(演唱会),http://em.21dtv.com/songs/60045263.mkv +袁惜君-我的幸福在哪里,http://em.21dtv.com/songs/60081250.mkv +郭小熙+小奇-我的幸福小甜蜜,http://em.21dtv.com/songs/60069947.mkv +沈凌-我的幸福我做主,http://em.21dtv.com/songs/60045310.mkv +那英-我的幸福刚刚好,http://em.21dtv.com/songs/60065067.mkv +马忠伟-我的心儿啪啪跳,http://em.21dtv.com/songs/60129805.mkv +带泪的鱼-我的心丢了一样,http://em.21dtv.com/songs/60107698.mkv +熊猫-我的兄弟叫大鹏,http://em.21dtv.com/songs/60130559.mkv +Younha-我的心成了什么,http://em.21dtv.com/songs/60104749.mkv +辛晓琪+陈佳+孟慧园+付鹰-味道,http://em.21dtv.com/songs/60124537.mkv +丁咚-我多想抱着你哭,http://em.21dtv.com/songs/60045414.mkv +晓月-我的心被你偷走,http://em.21dtv.com/songs/60098420.mkv +嘉骏-我的心被你撕碎,http://em.21dtv.com/songs/60045261.mkv +高进-我多想把你抱住,http://em.21dtv.com/songs/60045413.mkv +高林生-我的心不会改变,http://em.21dtv.com/songs/60045262.mkv +孙楠-我的心不够肯定,http://em.21dtv.com/songs/60090915.mkv +陈鹰-无代无志饮酒醉(无原唱),http://em.21dtv.com/songs/60047082.mkv +顾凯-五毒丸与解毒散,http://em.21dtv.com/songs/60080528.mkv +金子乔-我的未来我主宰,http://em.21dtv.com/songs/60123257.mkv +杨罡-我的未来很精彩,http://em.21dtv.com/songs/60078221.mkv +杭天琪-我的未来不是梦,http://em.21dtv.com/songs/60133863.mkv +石头-我的未来不是梦,http://em.21dtv.com/songs/60120827.mkv +旭日阳刚-我的未来不是梦,http://em.21dtv.com/songs/60119607.mkv +群星-我的未来不是梦,http://em.21dtv.com/songs/60098695.mkv +张杰-我的未来不是梦(我是歌手第二期),http://em.21dtv.com/songs/60096286.mkv +张江-我的未来不是梦,http://em.21dtv.com/songs/60091129.mkv +胡彦斌-我的未来不是梦,http://em.21dtv.com/songs/60045247.mkv +张雨生-我的未来不是梦(演唱会),http://em.21dtv.com/songs/60045246.mkv +斯琴格日乐-我的未来不是梦(演唱会),http://em.21dtv.com/songs/60045245.mkv +好妹妹乐队-我到外地去看你,http://em.21dtv.com/songs/60115084.mkv +好妹妹乐队-我到外地去看你,http://em.21dtv.com/songs/60079903.mkv +邱喜善-我的童年我做主,http://em.21dtv.com/songs/60113002.mkv +刘莫霏-我的童年不一样,http://em.21dtv.com/songs/60111723.mkv +林强-我的头壳有问题(无原唱),http://em.21dtv.com/songs/60045237.mkv +郎军-我的天空也哭了,http://em.21dtv.com/songs/60066403.mkv +林志颖-我对天空说爱你,http://em.21dtv.com/songs/60045406.mkv +林志颖-我对天空说爱你(演唱会),http://em.21dtv.com/songs/60045405.mkv +江蕙-我的所在我的人,http://em.21dtv.com/songs/60045223.mkv +淳歌-我的伤痛你不懂,http://em.21dtv.com/songs/60122966.mkv +刘依纯-我的深情谁人赔(无原唱),http://em.21dtv.com/songs/60045202.mkv +易秀明珠-我的伤你痛不痛,http://em.21dtv.com/songs/60045200.mkv +红蔷薇-我的思念都是你,http://em.21dtv.com/songs/60107105.mkv +郭家铭-我的生命中有你,http://em.21dtv.com/songs/60065064.mkv +谭咏麟-我的生命我的爱,http://em.21dtv.com/songs/60045207.mkv +马剑芬-我的世界只有我,http://em.21dtv.com/songs/60086917.mkv +欣新-我的世界只有你,http://em.21dtv.com/songs/60107007.mkv +廖芳笛-我的世界只有你,http://em.21dtv.com/songs/60045217.mkv +花树-我的世界已落雪,http://em.21dtv.com/songs/60134155.mkv +张夕磊-我的世界有个你,http://em.21dtv.com/songs/60094098.mkv +韩春雨-我的世界你最乖,http://em.21dtv.com/songs/60122266.mkv +宋沛江-我的世界你来过,http://em.21dtv.com/songs/60112638.mkv +涓子-我的世界你来过,http://em.21dtv.com/songs/60085890.mkv +刘德华-我的世界变美丽,http://em.21dtv.com/songs/60087400.mkv +画画-我的生活你的歌,http://em.21dtv.com/songs/60117064.mkv +博比肯-我的师傅赵本山,http://em.21dtv.com/songs/60045211.mkv +施文彬+张雪琳-我的沙发让你躺,http://em.21dtv.com/songs/60045199.mkv +刘若英-我的失败与伟大,http://em.21dtv.com/songs/60045209.mkv +刘建东-我的陕北我的梦,http://em.21dtv.com/songs/60125181.mkv +贾如-我的人生我主宰,http://em.21dtv.com/songs/60124507.mkv +沙宝亮-我的秋天谁来过,http://em.21dtv.com/songs/60045192.mkv +伊琳-我的秋天你来过,http://em.21dtv.com/songs/60045191.mkv +王建荣-我的情深你若懂,http://em.21dtv.com/songs/60116137.mkv +胡红艳-我的情人在草原,http://em.21dtv.com/songs/60066401.mkv +张彬-我的情人你别走,http://em.21dtv.com/songs/60084034.mkv +张倾城-我的情人犯了错,http://em.21dtv.com/songs/60045188.mkv +羽泉-我的青春我的城,http://em.21dtv.com/songs/60078216.mkv +朱雨辰-我的青春谁作主,http://em.21dtv.com/songs/60045181.mkv +童唱-我的朋友在哪里,http://em.21dtv.com/songs/60045178.mkv +KENT-我的女主角是你,http://em.21dtv.com/songs/60045175.mkv +东阳-我的女友结婚了,http://em.21dtv.com/songs/60108266.mkv +孙燕姿-我对你有多重要,http://em.21dtv.com/songs/60045403.mkv +王菲-忘掉你像忘掉我,http://em.21dtv.com/songs/60043517.mkv +吴尹惠+NAVI-我的男人在哭泣,http://em.21dtv.com/songs/60103150.mkv +张津涤-我的女人我的酒,http://em.21dtv.com/songs/60132451.mkv +晓枫-我的农民工兄弟,http://em.21dtv.com/songs/60108544.mkv +心中-我的梦中你的梦,http://em.21dtv.com/songs/60099253.mkv +覃飞宇-我的名字叫中国,http://em.21dtv.com/songs/60069945.mkv +仁钦卓玛-我的名字叫卓玛,http://em.21dtv.com/songs/60065061.mkv +王爱华-我的名字叫爱华,http://em.21dtv.com/songs/60085888.mkv +王熙然-我的梦也是你的,http://em.21dtv.com/songs/60071242.mkv +儿歌-我的妈妈叫中华,http://em.21dtv.com/songs/60090636.mkv +乐正绫-我的妈妈会瞬移,http://em.21dtv.com/songs/60127710.mkv +春雷-我的玫瑰卓玛拉(演唱会),http://em.21dtv.com/songs/60066399.mkv +云菲菲-我的蒙古我的家,http://em.21dtv.com/songs/60084032.mkv +孟文豪-我的蒙古我的家,http://em.21dtv.com/songs/60069944.mkv +甜美真+冰冰火-万朵玫瑰送给你,http://em.21dtv.com/songs/60067502.mkv +艾怡良-维多利亚的秘密(现场版),http://em.21dtv.com/songs/60103530.mkv +艾怡良-维多利亚的秘密,http://em.21dtv.com/songs/60083986.mkv +张惠妹-薇多莉亚的秘密,http://em.21dtv.com/songs/60043790.mkv +刘栋升-我的泪是为了谁,http://em.21dtv.com/songs/60045145.mkv +梁山山+帅亦雯-我的恋人叫时光,http://em.21dtv.com/songs/60128139.mkv +梁山山+帅亦雯-我的恋人叫时光,http://em.21dtv.com/songs/60121833.mkv +陈仁杰-我的老婆最漂亮,http://em.21dtv.com/songs/60134389.mkv +陈仁杰-我的老婆最漂亮,http://em.21dtv.com/songs/60100565.mkv +赵红富-我的老婆我的天,http://em.21dtv.com/songs/60106307.mkv +阿文-我的蓝梅我的缘,http://em.21dtv.com/songs/60106374.mkv +许廷铿-我的离开也是爱,http://em.21dtv.com/songs/60045147.mkv +张雷-我的廊坊我的家,http://em.21dtv.com/songs/60111900.mkv +王凤霞-五大连池畅想曲,http://em.21dtv.com/songs/60130568.mkv +郭富城-我的开始在这里,http://em.21dtv.com/songs/60045131.mkv +陈奕迅-我的开始在这里,http://em.21dtv.com/songs/60045130.mkv +李玟-我的快乐不为谁,http://em.21dtv.com/songs/60045135.mkv +山野-我的可怜比爱多,http://em.21dtv.com/songs/60045132.mkv +彝人传奇-我的家在乌蒙山,http://em.21dtv.com/songs/60120545.mkv +周澎-我的家在商洛山,http://em.21dtv.com/songs/60111770.mkv +佚名-我的家在na lu wan,http://em.21dtv.com/songs/60045117.mkv +十三狼-我的家乡在陕西,http://em.21dtv.com/songs/60104849.mkv +拉毛王旭-我的家乡重庆美,http://em.21dtv.com/songs/60109390.mkv +拉毛王旭-我的家乡重庆美,http://em.21dtv.com/songs/60067557.mkv +赵清-我的家乡在江安,http://em.21dtv.com/songs/60103595.mkv +张也-我的家乡沂蒙山,http://em.21dtv.com/songs/60045116.mkv +彭丽媛-我的家乡沂蒙山,http://em.21dtv.com/songs/60045115.mkv +雪山朗玛组合-我的家乡下雪了,http://em.21dtv.com/songs/60130871.mkv +苏贤文-我的家乡巫山美,http://em.21dtv.com/songs/60085885.mkv +孙维良-我的家乡我的根,http://em.21dtv.com/songs/60113405.mkv +罗宁娜-我的家乡水灵秀,http://em.21dtv.com/songs/60045114.mkv +乌兰托娅-我的家乡内蒙古,http://em.21dtv.com/songs/60065059.mkv +郁钧剑-我的家乡江城美,http://em.21dtv.com/songs/60088754.mkv +樱子-我的家乡好地方,http://em.21dtv.com/songs/60067554.mkv +郝志花-我的家乡好地方,http://em.21dtv.com/songs/60071238.mkv +野马-我的家乡梵净山,http://em.21dtv.com/songs/60085884.mkv +王丽达-我的家乡大平原(演唱会),http://em.21dtv.com/songs/60045113.mkv +佚名-我的吉它会说话,http://em.21dtv.com/songs/60045106.mkv +王彤盼-我的寂寞你的错,http://em.21dtv.com/songs/60063030.mkv +安叶-我的惠州我的家,http://em.21dtv.com/songs/60115861.mkv +泳儿+海鸣威-我的回忆不是我,http://em.21dtv.com/songs/60045102.mkv +王洋-我的霍城我的家,http://em.21dtv.com/songs/60115301.mkv +张雷-我的河北我的家,http://em.21dtv.com/songs/60118570.mkv +张莹-我的红安我的梦,http://em.21dtv.com/songs/60100034.mkv +王慧强-我的故乡久违了,http://em.21dtv.com/songs/60132728.mkv +后来者-我的故事我的歌,http://em.21dtv.com/songs/60127810.mkv +杨洪基-我的歌声伴随你,http://em.21dtv.com/songs/60045073.mkv +李翊君-我的感情搏这厚,http://em.21dtv.com/songs/60045069.mkv +李宇春-我的88个朋友,http://em.21dtv.com/songs/60044981.mkv +艾尔肯-我的姑娘在哪里(演唱会),http://em.21dtv.com/songs/60045078.mkv +佚名-我的根啊在中国,http://em.21dtv.com/songs/60045074.mkv +冷漠-我的发小做了贼,http://em.21dtv.com/songs/60078200.mkv +谭晶-我的父亲和母亲,http://em.21dtv.com/songs/60045064.mkv +马丽-我的芳名叫马丽,http://em.21dtv.com/songs/60109752.mkv +李彩桦-我到底是你的谁,http://em.21dtv.com/songs/60044968.mkv +陈嘉唯-我等的人会是谁,http://em.21dtv.com/songs/60045378.mkv +周子龙-我到底哪里有错,http://em.21dtv.com/songs/60121505.mkv +佚名-雾都的卖花姑娘,http://em.21dtv.com/songs/60047843.mkv +王洪兵+孙雪-我的东北我的家,http://em.21dtv.com/songs/60120770.mkv +乌兰图雅-我的草原我的情,http://em.21dtv.com/songs/60134851.mkv +霓裳-我的草原我的梦,http://em.21dtv.com/songs/60122260.mkv +田田-我的草原我的家,http://em.21dtv.com/songs/60123029.mkv +孟文豪-我的草原我的家,http://em.21dtv.com/songs/60104936.mkv +司徒兰芳-我的草原我的缘,http://em.21dtv.com/songs/60066398.mkv +蓝宇-我的初吻给了谁,http://em.21dtv.com/songs/60068757.mkv +唐古-我的城市没有家,http://em.21dtv.com/songs/60128921.mkv +王莉+汤非-我的北京我的家,http://em.21dtv.com/songs/60072527.mkv +赵子皓-我的宝贝我的爱,http://em.21dtv.com/songs/60045040.mkv +佚名-我的爱在我身边,http://em.21dtv.com/songs/60045030.mkv +阎维文-我的爱永远年轻,http://em.21dtv.com/songs/60045027.mkv +赵霏儿-我的爱与你无关,http://em.21dtv.com/songs/60135782.mkv +李雨伦-我的爱与你无关,http://em.21dtv.com/songs/60099325.mkv +周艾杰-我的爱与你同在,http://em.21dtv.com/songs/60069933.mkv +吴勇滨-我的爱无人可比,http://em.21dtv.com/songs/60122578.mkv +吴勇滨-我的爱无人可比,http://em.21dtv.com/songs/60110922.mkv +望海高歌-我的爱为你疗伤,http://em.21dtv.com/songs/60045022.mkv +黄小珊-我的爱为你存在,http://em.21dtv.com/songs/60045021.mkv +佚名-where did all the good times g(无原唱),http://em.21dtv.com/songs/60006281.mkv +刘冰-我的爱伤害了谁,http://em.21dtv.com/songs/60062664.mkv +余润泽-我的爱人我的妻,http://em.21dtv.com/songs/60078192.mkv +叶时伟-我的爱情已走了,http://em.21dtv.com/songs/60045016.mkv +汤潮-我的爱情我买单,http://em.21dtv.com/songs/60078191.mkv +张冬玲-我对爱情死了心,http://em.21dtv.com/songs/60063360.mkv +王长立-我的爱情全是伤,http://em.21dtv.com/songs/60078190.mkv +王爱华-我的爱情破碎了,http://em.21dtv.com/songs/60109533.mkv +后来者-我的爱情破碎了,http://em.21dtv.com/songs/60109213.mkv +金久哲-我的爱情哪去了,http://em.21dtv.com/songs/60085879.mkv +林雨-我的爱情迷了路,http://em.21dtv.com/songs/60078189.mkv +涓子-我的爱情带着伤,http://em.21dtv.com/songs/60135518.mkv +龙梅子+蓝雨-我的爱情不见了,http://em.21dtv.com/songs/60045009.mkv +李玟-我的爱陪你到老,http://em.21dtv.com/songs/60045007.mkv +修竹-我的爱你在何方,http://em.21dtv.com/songs/60086914.mkv +王绍博-我的爱你要不要,http://em.21dtv.com/songs/60045006.mkv +阿悄-我唱着歌会想你,http://em.21dtv.com/songs/60100543.mkv +洪辰+宁桓宇-我乘着风飞过来,http://em.21dtv.com/songs/60117891.mkv +降央卓玛-望草原,http://em.21dtv.com/songs/60111505.mkv +胡小宝-我曾用心爱着你,http://em.21dtv.com/songs/60113974.mkv +葛泓语-我曾用心爱着你,http://em.21dtv.com/songs/60081553.mkv +汤子星-我曾用心爱着你,http://em.21dtv.com/songs/60078411.mkv +易帆-我曾用心爱着你,http://em.21dtv.com/songs/60044950.mkv +潘美辰-我曾用心爱着你(演唱会),http://em.21dtv.com/songs/60044949.mkv +林志颖-舞出我们的时代,http://em.21dtv.com/songs/60047770.mkv +Y SISTER-网虫网虫起床了,http://em.21dtv.com/songs/60066361.mkv +索朗扎西-我才是索朗扎西,http://em.21dtv.com/songs/60071234.mkv +梁朝伟-我曾伤了你的心,http://em.21dtv.com/songs/60089372.mkv +邝美云-未曾深爱已无情,http://em.21dtv.com/songs/60044230.mkv +蔡黄汝-我承认我很想念,http://em.21dtv.com/songs/60067549.mkv +姜洪波-我曾那样信任你,http://em.21dtv.com/songs/60105741.mkv +曾沛慈-我才没有那样呢,http://em.21dtv.com/songs/60119633.mkv +君子-未曾谋面的朋友,http://em.21dtv.com/songs/60062540.mkv +韩晓辉+娜仁格日勒-舞出狂热的未来,http://em.21dtv.com/songs/60135985.mkv +孟杨-我曾经伤害过她,http://em.21dtv.com/songs/60062769.mkv +张冬玲-我曾经那么爱你,http://em.21dtv.com/songs/60127966.mkv +刘珂矣-忘尘谷,http://em.21dtv.com/songs/60120374.mkv +齐秦-望春风^雨夜花,http://em.21dtv.com/songs/60118229.mkv +朴树-五彩缤纷的日子,http://em.21dtv.com/songs/60047631.mkv +童唱-五彩缤纷的大地,http://em.21dtv.com/songs/60047630.mkv +肥狼-我曾爱过的女人,http://em.21dtv.com/songs/60106207.mkv +李易峰-我曾爱过的女孩,http://em.21dtv.com/songs/60116008.mkv +李易峰-我曾爱过的女孩,http://em.21dtv.com/songs/60044940.mkv +许佳慧-我别这样好不好,http://em.21dtv.com/songs/60117220.mkv +秀才-我把真心给了你(演唱会),http://em.21dtv.com/songs/60069927.mkv +流苏-握不住你的温柔,http://em.21dtv.com/songs/60117008.mkv +枫舞+流苏-握不住你的温柔,http://em.21dtv.com/songs/60116971.mkv +甜美真+冰冰火-我把自己送给你,http://em.21dtv.com/songs/60085870.mkv +黎明-我把自己交给你,http://em.21dtv.com/songs/60044716.mkv +杨坤-我比自己更寂寞,http://em.21dtv.com/songs/60089980.mkv +张学友-我不在乎等多久,http://em.21dtv.com/songs/60044928.mkv +蔡诗芸-我不知道她是谁,http://em.21dtv.com/songs/60088608.mkv +王宝+正午阳光-王宝与正午阳光,http://em.21dtv.com/songs/60088289.mkv +岳夏-我不愿做第三者,http://em.21dtv.com/songs/60044917.mkv +佚名-我把一切告诉你,http://em.21dtv.com/songs/60044713.mkv +张清芳-我不要藕断丝连,http://em.21dtv.com/songs/60044906.mkv +宋旭-我比烟花还寂寞,http://em.21dtv.com/songs/60128992.mkv +冷漠-吻别以后更寂寞,http://em.21dtv.com/songs/60112527.mkv +黄鸿升-我不要长生不老,http://em.21dtv.com/songs/60044909.mkv +蔡幸娟-我不要别人的爱,http://em.21dtv.com/songs/60044903.mkv +蔡瑾全-我不要别人的爱,http://em.21dtv.com/songs/60044902.mkv +周柏豪-我不要被你记住,http://em.21dtv.com/songs/60092481.mkv +JS-我比想像中爱你,http://em.21dtv.com/songs/60044734.mkv +任明-我把孝心寄回家,http://em.21dtv.com/songs/60068751.mkv +K娃-我不想说我是鸡,http://em.21dtv.com/songs/60044882.mkv +芦伟-我不想看见你老,http://em.21dtv.com/songs/60129527.mkv +何龙雨-我把幸福弄丢了,http://em.21dtv.com/songs/60078161.mkv +何如惠-我不想飞的太高(无原唱),http://em.21dtv.com/songs/60044875.mkv +韦礼安-吻别,http://em.21dtv.com/songs/60127584.mkv +马沂茹-我不痛,http://em.21dtv.com/songs/60104604.mkv +苏慧伦-我不是一个人住,http://em.21dtv.com/songs/60044862.mkv +苏慧伦-我不是一个人住(演唱会),http://em.21dtv.com/songs/60044861.mkv +林慧省-我不是虚华的人,http://em.21dtv.com/songs/60135429.mkv +张秀卿-我不是无情的人,http://em.21dtv.com/songs/60070100.mkv +佚名-我不是无情的人,http://em.21dtv.com/songs/60044856.mkv +阿吉仔-我不是随便的人,http://em.21dtv.com/songs/60044851.mkv +阿吉仔-我比谁人恰坚强(无原唱),http://em.21dtv.com/songs/60095952.mkv +佚名-我比谁人恰坚强(无原唱),http://em.21dtv.com/songs/60044732.mkv +李杬城-我不是那个李刚,http://em.21dtv.com/songs/60130424.mkv +邱泽-我不是你的王子,http://em.21dtv.com/songs/60044842.mkv +时嘉+杨子-我不是你的唯一,http://em.21dtv.com/songs/60098409.mkv +海生-我不是你的玩偶,http://em.21dtv.com/songs/60044841.mkv +董事长乐团-我不是你的司机,http://em.21dtv.com/songs/60044840.mkv +谢世超-我不是你的男人,http://em.21dtv.com/songs/60097844.mkv +王峰-我不是你的回忆,http://em.21dtv.com/songs/60129391.mkv +巴扎溜乐团-我不是来自泰国,http://em.21dtv.com/songs/60071232.mkv +东方月+高音-我把四季请出来,http://em.21dtv.com/songs/60114369.mkv +杨光-我不是个坏小孩,http://em.21dtv.com/songs/60113655.mkv +小虫-我不是个坏小孩,http://em.21dtv.com/songs/60044821.mkv +丁克森-我比傻瓜还任性,http://em.21dtv.com/songs/60128718.mkv +千百顺-我不是个好东西,http://em.21dtv.com/songs/60105666.mkv +千百顺-我不是个好东西,http://em.21dtv.com/songs/60099125.mkv +晏敏敏-我把山歌唱起来,http://em.21dtv.com/songs/60130381.mkv +李明依-我不是对你演戏,http://em.21dtv.com/songs/60044819.mkv +朱鹏-我不是不想结婚,http://em.21dtv.com/songs/60116893.mkv +陈豪-我不是爱的奴才,http://em.21dtv.com/songs/60044813.mkv +任明-我把青春献给你,http://em.21dtv.com/songs/60071229.mkv +龚月-五百年桑田沧海,http://em.21dtv.com/songs/60078474.mkv +卓依婷-舞伴嘛是有知己,http://em.21dtv.com/songs/60068829.mkv +李飞-忘不了最爱的人,http://em.21dtv.com/songs/60085825.mkv +乌兰托娅-忘不了我的草原,http://em.21dtv.com/songs/60078045.mkv +程琳-忘不了你呀妈妈,http://em.21dtv.com/songs/60043509.mkv +李克勤+谭咏麟-忘不了你+深深深(演唱会),http://em.21dtv.com/songs/60043504.mkv +潘东亮-忘不了你的温柔,http://em.21dtv.com/songs/60078044.mkv +刘冲-忘不了你的温柔,http://em.21dtv.com/songs/60043508.mkv +杨皓天-忘不了的兄弟情,http://em.21dtv.com/songs/60106010.mkv +杨皓天+高应峰-忘不了的兄弟情,http://em.21dtv.com/songs/60082031.mkv +杨皓天-忘不了的兄弟情,http://em.21dtv.com/songs/60081732.mkv +尤雅-忘不了初恋情人(演唱会),http://em.21dtv.com/songs/60043491.mkv +吴杨雨+郭玲-忘不了曾经的你,http://em.21dtv.com/songs/60113330.mkv +高安+郭玲-忘不了曾经的你,http://em.21dtv.com/songs/60067513.mkv +李翊君-忘不了爱过的我,http://em.21dtv.com/songs/60111992.mkv +林霞-我把吉祥送给你,http://em.21dtv.com/songs/60068981.mkv +唐志星-我不会再相信你,http://em.21dtv.com/songs/60078168.mkv +张兵-我不会祝你幸福,http://em.21dtv.com/songs/60078169.mkv +谢和弦-我不会让你失望,http://em.21dtv.com/songs/60119976.mkv +谢和弦-我不会让你失望,http://em.21dtv.com/songs/60078167.mkv +林剑衡-五百二十八天前,http://em.21dtv.com/songs/60047626.mkv +凤琴-无伴的下班了后,http://em.21dtv.com/songs/60130109.mkv +咪依鲁江-忘不掉你的样子,http://em.21dtv.com/songs/60120414.mkv +合唱-我编斗笠送红军,http://em.21dtv.com/songs/60087531.mkv +吕娜-我把党来比母亲,http://em.21dtv.com/songs/60068750.mkv +杨坤-我比从前更寂寞,http://em.21dtv.com/songs/60044726.mkv +崔子格-我被爱情下了药,http://em.21dtv.com/songs/60078162.mkv +佚名-我把爱情收回来,http://em.21dtv.com/songs/60044709.mkv +林淑蓉-我把爱情收回来,http://em.21dtv.com/songs/60044708.mkv +张宇-万般爱恋皆罢休,http://em.21dtv.com/songs/60091073.mkv +刘敬芝-我把爱给予祖国,http://em.21dtv.com/songs/60131206.mkv +刘锡明-为爱挣扎多少年,http://em.21dtv.com/songs/60043846.mkv +张明敏-我爱祖国的蓝天,http://em.21dtv.com/songs/60129085.mkv +佚名-我爱祖国的蓝天,http://em.21dtv.com/songs/60044705.mkv +蔡其平-我爱祖国的蓝天,http://em.21dtv.com/songs/60044704.mkv +DEAR JANE-我爱烟花不爱花,http://em.21dtv.com/songs/60044693.mkv +风雷-为爱心酸为你哭,http://em.21dtv.com/songs/60116378.mkv +马文吉-为爱我中下了毒,http://em.21dtv.com/songs/60043841.mkv +谭建军-我爱天山雪莲花,http://em.21dtv.com/songs/60071228.mkv +陈骅-我爱他是个好人,http://em.21dtv.com/songs/60044678.mkv +潘越云-为爱拖磨一世人,http://em.21dtv.com/songs/60043839.mkv +蒋大为-我爱桃花我爱家,http://em.21dtv.com/songs/60094680.mkv +张克帆-为爱伤心为你痛,http://em.21dtv.com/songs/60043828.mkv +Childsplay Chuckie+shaylen-Warrior,http://em.21dtv.com/songs/60129904.mkv +韩超-我爱漂亮的女孩,http://em.21dtv.com/songs/60078158.mkv +江涛-我爱你真的爱你,http://em.21dtv.com/songs/60044653.mkv +闪亮三姐妹-我爱你一生一世,http://em.21dtv.com/songs/60108945.mkv +孙晓雨-我爱你与你无关,http://em.21dtv.com/songs/60071227.mkv +吴明喜-我爱你像你爱我,http://em.21dtv.com/songs/60126696.mkv +雨霖枫+付动云-我爱你是一个错,http://em.21dtv.com/songs/60128571.mkv +吕雅芬-我爱你塞北的雪,http://em.21dtv.com/songs/60110070.mkv +王喆-我爱你塞北的雪,http://em.21dtv.com/songs/60106102.mkv +降央卓玛-我爱你塞北的雪,http://em.21dtv.com/songs/60100609.mkv +杭天琪-我爱你塞北的雪,http://em.21dtv.com/songs/60100198.mkv +景仪-我爱你塞北的雪,http://em.21dtv.com/songs/60089931.mkv +玖月奇迹-我爱你塞北的雪(演唱会),http://em.21dtv.com/songs/60085865.mkv +常石磊-我爱你塞北的雪,http://em.21dtv.com/songs/60084010.mkv +殷秀梅-我爱你塞北的雪,http://em.21dtv.com/songs/60044643.mkv +谭晶-我爱你塞北的雪,http://em.21dtv.com/songs/60044642.mkv +彭丽媛-我爱你塞北的雪,http://em.21dtv.com/songs/60044641.mkv +侯旭-我爱你塞北的雪(演唱会),http://em.21dtv.com/songs/60044640.mkv +安俊宁-我爱你你知道吗,http://em.21dtv.com/songs/60099948.mkv +祝建林-我爱你你知道吗,http://em.21dtv.com/songs/60080873.mkv +小峰峰-我爱你你不知道,http://em.21dtv.com/songs/60078153.mkv +安静-我爱你你爱着谁,http://em.21dtv.com/songs/60062211.mkv +佚名-我啊那会这不幸,http://em.21dtv.com/songs/60095416.mkv +TAYLOR SWIFT-we are never ever getting back together,http://em.21dtv.com/songs/60074097.mkv +陈楚达-我爱你的每一天,http://em.21dtv.com/songs/60128546.mkv +宋祖英-我爱你巴颜喀拉,http://em.21dtv.com/songs/60044629.mkv +儿歌-我爱妈妈的眼睛,http://em.21dtv.com/songs/60090635.mkv +暴林-为爱流下伤心泪,http://em.21dtv.com/songs/60129186.mkv +童唱-我爱老师的目光,http://em.21dtv.com/songs/60044588.mkv +林冲-为爱流泪的男人,http://em.21dtv.com/songs/60068726.mkv +佚名-with a little help from my fri,http://em.21dtv.com/songs/60006372.mkv +王小荣-我暗恋过一个她,http://em.21dtv.com/songs/60132723.mkv +王小荣-我暗恋过一个她,http://em.21dtv.com/songs/60131655.mkv +凌志辉-为爱抗战八年多,http://em.21dtv.com/songs/60062662.mkv +艾菲-Wake Up,http://em.21dtv.com/songs/60126095.mkv +曹震豪-WAKE UP,http://em.21dtv.com/songs/60125655.mkv +曹震豪-WAKE UP,http://em.21dtv.com/songs/60124029.mkv +MissMass-Wake up,http://em.21dtv.com/songs/60122401.mkv +The Vamps-Wake Up,http://em.21dtv.com/songs/60117499.mkv +李欣-我爱井陉四季天,http://em.21dtv.com/songs/60100146.mkv +易文-我爱家乡的小河,http://em.21dtv.com/songs/60133749.mkv +黎明-我爱花香不爱花,http://em.21dtv.com/songs/60044579.mkv +江蕙-我爱过你不识我(演唱会),http://em.21dtv.com/songs/60065034.mkv +曹寅-我爱过的那个人,http://em.21dtv.com/songs/60084007.mkv +胡红珊-我爱戈壁沙枣花,http://em.21dtv.com/songs/60085862.mkv +孙楠-我爱的她不爱我,http://em.21dtv.com/songs/60044569.mkv +小陆-我爱的人已走了,http://em.21dtv.com/songs/60110166.mkv +刘超华-我爱的人有了他(演唱会),http://em.21dtv.com/songs/60078141.mkv +成鹏飞-我爱的人有了他,http://em.21dtv.com/songs/60067542.mkv +蓝蝶-我爱的人你爱谁,http://em.21dtv.com/songs/60102708.mkv +崔伟亮-我爱的人嫁人了,http://em.21dtv.com/songs/60084005.mkv +刘超华-我爱的人嫁人了(演唱会),http://em.21dtv.com/songs/60078139.mkv +张牧阅-我爱的人回来吧,http://em.21dtv.com/songs/60065032.mkv +张智成-我爱的人不爱我,http://em.21dtv.com/songs/60132438.mkv +张智成-我爱的人不爱我,http://em.21dtv.com/songs/60131401.mkv +沙靖杰-我爱的人不爱我,http://em.21dtv.com/songs/60044560.mkv +饶天亮-我爱的人不爱我,http://em.21dtv.com/songs/60067540.mkv +袁小迪+陈玟琪-为爱等待我愿意,http://em.21dtv.com/songs/60043801.mkv +燕军-我爱北京天安门,http://em.21dtv.com/songs/60089415.mkv +童唱-我爱北京天安门,http://em.21dtv.com/songs/60044540.mkv +杜丽莎-Vincent,http://em.21dtv.com/songs/60132571.mkv +Stellar-Vibrato,http://em.21dtv.com/songs/60113191.mkv +Justin Bieber-U Smile,http://em.21dtv.com/songs/60121266.mkv +岚-Unknown,http://em.21dtv.com/songs/60135162.mkv +佚名-unchained melody-人鬼情未了,http://em.21dtv.com/songs/60006004.mkv +丰崎爱生-Uh LaLa,http://em.21dtv.com/songs/60113229.mkv +代领-停在昨天的回忆,http://em.21dtv.com/songs/60103875.mkv +默契-天在下雨我在哭,http://em.21dtv.com/songs/60099633.mkv +李玟-她在睡觉前哭泣,http://em.21dtv.com/songs/60091334.mkv +邹江华-躺在青青草地上,http://em.21dtv.com/songs/60041520.mkv +思思-躺在青青草地上,http://em.21dtv.com/songs/60041519.mkv +威龙-听着情歌想起你,http://em.21dtv.com/songs/60133551.mkv +高进-听着情歌流眼泪,http://em.21dtv.com/songs/60042610.mkv +崔伟亮-听着情歌流眼泪,http://em.21dtv.com/songs/60069883.mkv +成龙-挑战每一个理想,http://em.21dtv.com/songs/60091226.mkv +军嫂组合-躺在满天星光下,http://em.21dtv.com/songs/60067467.mkv +谢霆锋+容祖儿-同在蓝色星球上,http://em.21dtv.com/songs/60042716.mkv +孙淑媚-铁枝路的两条线,http://em.21dtv.com/songs/60042502.mkv +张秀卿-天真活泼又美丽,http://em.21dtv.com/songs/60042318.mkv +蔡幸娟-天真活泼又美丽,http://em.21dtv.com/songs/60042317.mkv +姜育恒-天真活泼又美丽(演唱会),http://em.21dtv.com/songs/60042316.mkv +赵红军-听着歌声想着您,http://em.21dtv.com/songs/60105397.mkv +徐千雅-踏着歌声来见你,http://em.21dtv.com/songs/60101352.mkv +张郎-听着歌儿去赚钱,http://em.21dtv.com/songs/60106869.mkv +包蔓-听着歌儿去赚钱,http://em.21dtv.com/songs/60105660.mkv +高林生-天知地知你知道,http://em.21dtv.com/songs/60077921.mkv +沈志仲-兔子不吃窝边草,http://em.21dtv.com/songs/60061639.mkv +訾娟-太阳在这里歌唱,http://em.21dtv.com/songs/60041399.mkv +葛本军-太阳住在大海里,http://em.21dtv.com/songs/60069861.mkv +杨宗宪-天涯总有相会时,http://em.21dtv.com/songs/60042271.mkv +佚名-太阳一出满天红,http://em.21dtv.com/songs/60041391.mkv +李美妙-太阳星星一起玩,http://em.21dtv.com/songs/60125718.mkv +李施文迪-太阳星星一起玩,http://em.21dtv.com/songs/60097817.mkv +任贤齐+刘路辉-天涯,http://em.21dtv.com/songs/60123619.mkv +黄舒骏-她以为她很美丽,http://em.21dtv.com/songs/60041172.mkv +任贤齐-她要我她不爱我,http://em.21dtv.com/songs/60041169.mkv +S.H.E-听袁惟仁弹吉他,http://em.21dtv.com/songs/60042609.mkv +陈慧琳+KELLYJACKIE-他约我去迪士尼,http://em.21dtv.com/songs/60041124.mkv +卫兰-他约我去迪士尼,http://em.21dtv.com/songs/60063062.mkv +万海东-痛一万次都不够,http://em.21dtv.com/songs/60106571.mkv +黄少梅-天涯踏遍觅芙奴(戏曲),http://em.21dtv.com/songs/60093537.mkv +段婷婷-太阳尚未出东山,http://em.21dtv.com/songs/60069860.mkv +黄韵玲-听一首伤心的歌,http://em.21dtv.com/songs/60042605.mkv +方婉真-甜言蜜语无值钱,http://em.21dtv.com/songs/60095540.mkv +叶万钧-天涯尽头有个家(演唱会),http://em.21dtv.com/songs/60042259.mkv +袁哲-他已经不爱你了(演唱会),http://em.21dtv.com/songs/60069857.mkv +风语-天涯海角最相思,http://em.21dtv.com/songs/60131981.mkv +林木-天涯海角的爱情,http://em.21dtv.com/songs/60042256.mkv +秀才-天涯何处无芳草,http://em.21dtv.com/songs/60086880.mkv +关淑怡-天涯何处觅真心,http://em.21dtv.com/songs/60042258.mkv +李文亮-太阳代表我的爱,http://em.21dtv.com/songs/60041378.mkv +民族娃娃-太阳出来喜洋洋,http://em.21dtv.com/songs/60097816.mkv +佚名-太阳出来喜洋洋,http://em.21dtv.com/songs/60041377.mkv +黄英-太阳出来喜洋洋,http://em.21dtv.com/songs/60041376.mkv +张迈-太阳出来喜洋洋,http://em.21dtv.com/songs/60071170.mkv +子枫-天涯处处是芳草,http://em.21dtv.com/songs/60067487.mkv +吴俊宏-头一摆认识的人,http://em.21dtv.com/songs/60114444.mkv +梁玉嵘+潘千芊-天涯璧合庆月圆(戏曲),http://em.21dtv.com/songs/60092908.mkv +蒋大为-天下最美的女人,http://em.21dtv.com/songs/60122082.mkv +索朗扎西-天下最美的草原,http://em.21dtv.com/songs/60099443.mkv +郭易-天下最好的女孩,http://em.21dtv.com/songs/60042210.mkv +邓志驹+李池湘-啼笑姻缘之送别,http://em.21dtv.com/songs/60041696.mkv +吕珊-啼笑姻缘三小曲(演唱会),http://em.21dtv.com/songs/60041695.mkv +叶启田-天下一定是咱的,http://em.21dtv.com/songs/60042205.mkv +余翠芝+孙楠+容祖儿+王力宏-天下相亲与相爱,http://em.21dtv.com/songs/60106606.mkv +豫剧-同心踏碎旧世界,http://em.21dtv.com/songs/60134552.mkv +王宏伟-天下太极出武当,http://em.21dtv.com/songs/60067485.mkv +苗苗-天下谁不认识你,http://em.21dtv.com/songs/60114004.mkv +佚名-天仙配-满工对唱,http://em.21dtv.com/songs/60042212.mkv +闫寒-天下农民是一家,http://em.21dtv.com/songs/60128490.mkv +童唱-天下妈妈都一样,http://em.21dtv.com/songs/60042191.mkv +李志强-脱下军装还是兵,http://em.21dtv.com/songs/60133797.mkv +M GIRLS-天下共欢喜迎春,http://em.21dtv.com/songs/60133235.mkv +吴依琳-天下共欢喜迎春,http://em.21dtv.com/songs/60077908.mkv +邓丽君-天外天上天无涯,http://em.21dtv.com/songs/60042169.mkv +单紫宁-天外天上天无涯,http://em.21dtv.com/songs/60042168.mkv +佚名-the way i want to touch you,http://em.21dtv.com/songs/60005713.mkv +芭比-讨我欢心不费力,http://em.21dtv.com/songs/60041623.mkv +孙艺程-听我唱完这首歌,http://em.21dtv.com/songs/60116704.mkv +葛笑-听我唱完这首歌,http://em.21dtv.com/songs/60100442.mkv +沉默-听我唱完这首歌,http://em.21dtv.com/songs/60085801.mkv +周汤豪-Turn Up,http://em.21dtv.com/songs/60128902.mkv +南卫东-堂堂正正河南人,http://em.21dtv.com/songs/60110899.mkv +胡梅-天堂最美是杭州,http://em.21dtv.com/songs/60077900.mkv +谭竹青+刘和刚-团团圆圆才是家,http://em.21dtv.com/songs/60131822.mkv +何赛飞-听他一番心酸话,http://em.21dtv.com/songs/60042586.mkv +陈飞-听他一番心酸话,http://em.21dtv.com/songs/60042585.mkv +张翘-天天新年天天乐,http://em.21dtv.com/songs/60077904.mkv +群星-天天新年天天乐,http://em.21dtv.com/songs/60042163.mkv +皮怡然-她他,http://em.21dtv.com/songs/60119845.mkv +胡彦斌+额日和木巴图-天堂,http://em.21dtv.com/songs/60094257.mkv +佚名-抬头望见北斗星,http://em.21dtv.com/songs/60041291.mkv +阿牛-天天天天说爱你,http://em.21dtv.com/songs/60042151.mkv +郭心-堂堂七尺好男儿,http://em.21dtv.com/songs/60097884.mkv +海峰-天堂里没有冷漠,http://em.21dtv.com/songs/60077897.mkv +关利菱-偷偷恋爱的日子(无原唱),http://em.21dtv.com/songs/60042847.mkv +T.R.Y+龙军-天天都想见到你,http://em.21dtv.com/songs/60042133.mkv +群星-天天都是艳阳天,http://em.21dtv.com/songs/60042131.mkv +李克勤-天天都是情人节(演唱会),http://em.21dtv.com/songs/60042130.mkv +彭羚-天天都是礼拜天,http://em.21dtv.com/songs/60092701.mkv +佚名-通天大道宽又阔,http://em.21dtv.com/songs/60042644.mkv +TWINS-踏踏步 哈姆太郎,http://em.21dtv.com/songs/60041205.mkv +阿尔法-天山之花望北京,http://em.21dtv.com/songs/60115474.mkv +宋孟君-天生注定我爱你,http://em.21dtv.com/songs/60133578.mkv +卓玛央宗-天上有个纳木措,http://em.21dtv.com/songs/60121464.mkv +幼稚园杀手-天上星星不说话,http://em.21dtv.com/songs/60041993.mkv +哎呀你是从哪儿冒出来的9号-太傻,http://em.21dtv.com/songs/60128917.mkv +佚名-天上无云不下雨,http://em.21dtv.com/songs/60041992.mkv +王觉-天生我材必有用,http://em.21dtv.com/songs/60123018.mkv +Dvbbs+Borgeous+Tinie Tempah-Tsunami,http://em.21dtv.com/songs/60124862.mkv +陈小汉+郭凤女-同是天涯沦落人(戏曲),http://em.21dtv.com/songs/60093428.mkv +佚名-天上太阳红彤彤,http://em.21dtv.com/songs/60041991.mkv +七街小屋-天使逃离的那天,http://em.21dtv.com/songs/60097815.mkv +郑健英-天上人间乐升平(戏曲),http://em.21dtv.com/songs/60093272.mkv +童丽-天上人间会相见,http://em.21dtv.com/songs/60077888.mkv +洪禄云+枫舞-天上人间都是歌,http://em.21dtv.com/songs/60086873.mkv +来国庆-天上人间柴达木,http://em.21dtv.com/songs/60062554.mkv +摇滚女王-同是青春追梦人,http://em.21dtv.com/songs/60135307.mkv +贺一航-听说你也回来过,http://em.21dtv.com/songs/60126218.mkv +许志安-他送你回来以后,http://em.21dtv.com/songs/60041107.mkv +许志安-他送你回家以后,http://em.21dtv.com/songs/60092054.mkv +张祥洪-听说你过的很好,http://em.21dtv.com/songs/60042581.mkv +羽泉-天上没有乌云盖,http://em.21dtv.com/songs/60088484.mkv +佚名-天上没有北大荒,http://em.21dtv.com/songs/60041984.mkv +韩磊-天上没有北大荒,http://em.21dtv.com/songs/60041983.mkv +曹格-天使忌妒的生活,http://em.21dtv.com/songs/60042057.mkv +越剧-听说夫君一命亡,http://em.21dtv.com/songs/60042578.mkv +陈明-天使飞进你梦里,http://em.21dtv.com/songs/60042054.mkv +谢雨欣-天上的云我的心,http://em.21dtv.com/songs/60041979.mkv +邱芸子-褪色的爱无人知,http://em.21dtv.com/songs/60042995.mkv +李冰冰-天使不要开玩笑,http://em.21dtv.com/songs/60042035.mkv +佚名-听说必大受折磨,http://em.21dtv.com/songs/60042577.mkv +宇翔-听说爱情回来过,http://em.21dtv.com/songs/60125402.mkv +崔忠华-听说爱情回来过,http://em.21dtv.com/songs/60102168.mkv +DREAM GIRLS-听说爱情回来过,http://em.21dtv.com/songs/60097840.mkv +陈明-听说爱情回来过,http://em.21dtv.com/songs/60077947.mkv +彭佳慧-听说爱情回来过,http://em.21dtv.com/songs/60042575.mkv +林忆莲-听说爱情回来过,http://em.21dtv.com/songs/60042574.mkv +李媛希-听说爱情回来过,http://em.21dtv.com/songs/60042573.mkv +蔡依林-听说爱情回来过,http://em.21dtv.com/songs/60042572.mkv +张敬轩-听说爱情回来过(演唱会),http://em.21dtv.com/songs/60042571.mkv +杨宗纬-听说爱情回来过(演唱会),http://em.21dtv.com/songs/60042570.mkv +林忆莲-听说爱情回来过(演唱会),http://em.21dtv.com/songs/60042569.mkv +李代沫-听说爱情回来过,http://em.21dtv.com/songs/60072466.mkv +蔡国权-听说爱会是精采,http://em.21dtv.com/songs/60042568.mkv +钱小寒-突然之间爱上你,http://em.21dtv.com/songs/60042940.mkv +王兀-同日同月同星曲,http://em.21dtv.com/songs/60131633.mkv +苏亚-他人气我我不气,http://em.21dtv.com/songs/60072436.mkv +Iggy Azalea+Jennifer Hudson-Trouble,http://em.21dtv.com/songs/60110769.mkv +Kat Tun-TRAGEDY,http://em.21dtv.com/songs/60134720.mkv +霍尊+杨树林-天气预报报一报,http://em.21dtv.com/songs/60135970.mkv +霍尊+杨树林-天气预报报一报,http://em.21dtv.com/songs/60134441.mkv +CHANO-te quiero te quiero我爱你,http://em.21dtv.com/songs/60005468.mkv +SAYA-天气让爱变奇怪,http://em.21dtv.com/songs/60041952.mkv +花鼓戏-提起锣槌好荒唐,http://em.21dtv.com/songs/60090166.mkv +尼玛拉毛-托起吉祥的云彩,http://em.21dtv.com/songs/60043005.mkv +沙莎-托起吉祥的云彩,http://em.21dtv.com/songs/60071196.mkv +琼雪卓玛-托起吉祥的哈达,http://em.21dtv.com/songs/60043004.mkv +张智霖-谈判专家主题曲,http://em.21dtv.com/songs/60092623.mkv +林俊杰-too bad,http://em.21dtv.com/songs/60118716.mkv +国丞-Tonight,http://em.21dtv.com/songs/60110103.mkv +佚名-the one i gave my heart to,http://em.21dtv.com/songs/60005653.mkv +滕格尔-洮南我美丽的家,http://em.21dtv.com/songs/60106080.mkv +刘一祯-天女散花的地方,http://em.21dtv.com/songs/60041947.mkv +佚名-听你讲完我了解(无原唱),http://em.21dtv.com/songs/60042557.mkv +芬华-天哪会无来疼痛,http://em.21dtv.com/songs/60135663.mkv +王建杰-疼你好比疼自己,http://em.21dtv.com/songs/60041661.mkv +蒋舟-天南海北四川人,http://em.21dtv.com/songs/60099471.mkv +蒋舟-天南海北四川人(演唱会),http://em.21dtv.com/songs/60041941.mkv +樊少华-天南地北山东人,http://em.21dtv.com/songs/60127130.mkv +马亮-天南地北忙采访,http://em.21dtv.com/songs/60088979.mkv +群星-天南地北忙采访,http://em.21dtv.com/songs/60088453.mkv +李书伟+何丽婷-天南地北到一起,http://em.21dtv.com/songs/60120601.mkv +陈代全-听你唱歌到天亮,http://em.21dtv.com/songs/60077944.mkv +JOSS STONE-tell me what were gonna do n,http://em.21dtv.com/songs/60005484.mkv +童唱-tell me tell me what is it,http://em.21dtv.com/songs/60005483.mkv +殷秀梅-天门山你听我说,http://em.21dtv.com/songs/60098542.mkv +望海高歌-甜蜜生活甜蜜爱,http://em.21dtv.com/songs/60111146.mkv +甜品店乐团-甜蜜派对,http://em.21dtv.com/songs/60116171.mkv +张碧晨-童梦,http://em.21dtv.com/songs/60129109.mkv +王矜霖-她妈妈不喜欢我,http://em.21dtv.com/songs/60081771.mkv +SALAMA-他们聊了一整夜,http://em.21dtv.com/songs/60071166.mkv +谭咏麟-他们对我说起你,http://em.21dtv.com/songs/60112244.mkv +张祥洪-他们都说你很疯,http://em.21dtv.com/songs/60041094.mkv +佚名-the most beautiful girl in the world,http://em.21dtv.com/songs/60005637.mkv +PRINCE-the most beautiful girl in the world,http://em.21dtv.com/songs/60005636.mkv +孙悦+沙宝亮-他们爱着的我们(演唱会),http://em.21dtv.com/songs/60041090.mkv +郑家星-天亮之前我爱你,http://em.21dtv.com/songs/60083890.mkv +张可儿+小楠-天亮以前天最黑,http://em.21dtv.com/songs/60085781.mkv +信乐团-天亮以后说分手,http://em.21dtv.com/songs/60041922.mkv +林木-天亮以后说分手,http://em.21dtv.com/songs/60041921.mkv +CARPENTERS-they long to be close to you,http://em.21dtv.com/songs/60005748.mkv +新仔阿波-痛了散了伤心了,http://em.21dtv.com/songs/60132493.mkv +许嵩-天龙八部之宿敌,http://em.21dtv.com/songs/60088640.mkv +迪克牛仔-天空总是那么黑,http://em.21dtv.com/songs/60134278.mkv +迪克牛仔-天空总是那么黑,http://em.21dtv.com/songs/60083888.mkv +王振楠-天空又下起了雨,http://em.21dtv.com/songs/60129394.mkv +张柏芝-痛苦也是只属我,http://em.21dtv.com/songs/60042804.mkv +刘美麟-天空,http://em.21dtv.com/songs/60125217.mkv +孙露-痛苦时候最寂寞,http://em.21dtv.com/songs/60077970.mkv +孙紫晴-太靠近你的温柔,http://em.21dtv.com/songs/60081990.mkv +刘强-天空海阔一起闯,http://em.21dtv.com/songs/60113295.mkv +路逍遥-痛快的哭一场吧,http://em.21dtv.com/songs/60114814.mkv +刘朝林-痛快地哭一场吧,http://em.21dtv.com/songs/60112541.mkv +林海峰-太空冲天反斗兵(演唱会),http://em.21dtv.com/songs/60077812.mkv +胡彦斌+刘翔-田径之歌AND_WHAN_YOU_KNOW,http://em.21dtv.com/songs/60088494.mkv +关诗敏-听见下雨的声音,http://em.21dtv.com/songs/60114400.mkv +周杰伦-听见下雨的声音,http://em.21dtv.com/songs/60110088.mkv +A Lin-听见下雨的声音,http://em.21dtv.com/songs/60109791.mkv +周杰伦-听见下雨的声音,http://em.21dtv.com/songs/60108394.mkv +周杰伦-听见下雨的声音,http://em.21dtv.com/songs/60106703.mkv +魏如昀-听见下雨的声音,http://em.21dtv.com/songs/60081705.mkv +宋祖英-土家喜欢咚咚亏,http://em.21dtv.com/songs/60042956.mkv +许哲佩-弹吉他就能快乐,http://em.21dtv.com/songs/60117221.mkv +苏打绿-他举起右手点名,http://em.21dtv.com/songs/60117157.mkv +苏打绿-他举起右手点名,http://em.21dtv.com/songs/60116220.mkv +群星-提剑来邀红尘客,http://em.21dtv.com/songs/60135633.mkv +ALL TIME LOW-the irony of choking on a lifesaver,http://em.21dtv.com/songs/60082358.mkv +AVRIL LAVIGNE-Tik Tok,http://em.21dtv.com/songs/60095178.mkv +容祖儿+张信哲-tonight i celebrate my love for you,http://em.21dtv.com/songs/60005860.mkv +ROBERTA FLACK-tonight i celebrate my love for you,http://em.21dtv.com/songs/60005859.mkv +洛嘉-桃花绽放的地方,http://em.21dtv.com/songs/60118742.mkv +佚名-听话要听党的话,http://em.21dtv.com/songs/60042543.mkv +陈水林-桃花依旧笑春风,http://em.21dtv.com/songs/60085769.mkv +蒋大为-桃花依旧笑春风,http://em.21dtv.com/songs/60041594.mkv +陈珧-桃花园的思念国,http://em.21dtv.com/songs/60041595.mkv +蓝瘦的海盗很香菇+最后一只恐龙-听海,http://em.21dtv.com/songs/60129577.mkv +光良+张潮威+王蓝雪+易浩-童话,http://em.21dtv.com/songs/60123637.mkv +王麟-土豪我们做朋友,http://em.21dtv.com/songs/60100330.mkv +王麟+DjAlex.x-土豪我们做朋友,http://em.21dtv.com/songs/60081785.mkv +子安圣皓-他和她之间的事,http://em.21dtv.com/songs/60064935.mkv +托尼-痛 还是放不下,http://em.21dtv.com/songs/60131460.mkv +丁当-他还认不认得我,http://em.21dtv.com/songs/60067461.mkv +家家+袁晓婕-他黑名单里的我,http://em.21dtv.com/songs/60121593.mkv +佚名-桃花开在春风里,http://em.21dtv.com/songs/60041582.mkv +信-桃花开摇摇摆摆,http://em.21dtv.com/songs/60063186.mkv +乌兰托娅+云龙-桃花开满三月天,http://em.21dtv.com/songs/60072443.mkv +汤加丽+储毅-土豪交个朋友呗,http://em.21dtv.com/songs/60094198.mkv +周渝民-童话还不够美好,http://em.21dtv.com/songs/60042738.mkv +马菀营-踏花归去马蹄香,http://em.21dtv.com/songs/60124715.mkv +Kodaline-The One,http://em.21dtv.com/songs/60110774.mkv +Glee Cast-The Fox,http://em.21dtv.com/songs/60124883.mkv +ポルノグラフィティ-THE DAY,http://em.21dtv.com/songs/60123576.mkv +K.Will-Thank U,http://em.21dtv.com/songs/60112441.mkv +辛晓琪-the girl with april in her eye,http://em.21dtv.com/songs/60005596.mkv +周燕君-踏歌起舞的中国,http://em.21dtv.com/songs/60077802.mkv +冯欣-踏歌起舞的中国,http://em.21dtv.com/songs/60077801.mkv +佟铁鑫-听国旗的飘扬声,http://em.21dtv.com/songs/60083920.mkv +任妙音-泰国姑娘水晶晶,http://em.21dtv.com/songs/60097876.mkv +林宏铭-天公伯的查某子(无原唱),http://em.21dtv.com/songs/60041823.mkv +佚名-the first time ever i saw your,http://em.21dtv.com/songs/60005589.mkv +ROBERTA FLACK-the first time ever i saw your,http://em.21dtv.com/songs/60005588.mkv +LEONA LEWIS-the first time ever i saw your,http://em.21dtv.com/songs/60067994.mkv +五月天-t1213121,http://em.21dtv.com/songs/60071672.mkv +宋枝恩-Tell Me,http://em.21dtv.com/songs/60135127.mkv +Wonder Girls-Tell Me,http://em.21dtv.com/songs/60122445.mkv +杨坤-她戴着面具的脸,http://em.21dtv.com/songs/60089979.mkv +佚名-头戴珠冠压鬓齐,http://em.21dtv.com/songs/60042871.mkv +谢有才-天都知道我爱你,http://em.21dtv.com/songs/60077869.mkv +尤雅-她的眼睛像月亮,http://em.21dtv.com/songs/60041151.mkv +佚名-他的眼睛像月亮,http://em.21dtv.com/songs/60041078.mkv +胡歌-她的眼睛会下雨,http://em.21dtv.com/songs/60067127.mkv +胡秀历+戴安欣-徒弟徒弟等等我,http://em.21dtv.com/songs/60135642.mkv +刘德华-太多太多的抱歉,http://em.21dtv.com/songs/60041313.mkv +欢子-365天的思念,http://em.21dtv.com/songs/60102424.mkv +TWINS+AT17-土多啤梨苹果橙(演唱会),http://em.21dtv.com/songs/60042954.mkv +彭佳慧-听到你一声再会,http://em.21dtv.com/songs/60042523.mkv +高林生-她的名字叫阳光,http://em.21dtv.com/songs/60062373.mkv +千百惠-他的名字叫回忆,http://em.21dtv.com/songs/60041072.mkv +陈小春-她的妈妈不爱我,http://em.21dtv.com/songs/60041149.mkv +何润东-听到留言请回话,http://em.21dtv.com/songs/60042522.mkv +E-KIDS-听到留言请回电(无原唱),http://em.21dtv.com/songs/60042521.mkv +4 IN LOVE-他到底那一点好,http://em.21dtv.com/songs/60041064.mkv +施文彬-天大地大爱上大,http://em.21dtv.com/songs/60041780.mkv +吴灿涛-他到底爱不爱你,http://em.21dtv.com/songs/60131261.mkv +佚名-挑担茶叶上北京,http://em.21dtv.com/songs/60042417.mkv +谭咏麟-天地初开情已在,http://em.21dtv.com/songs/60041785.mkv +MU'Z-他朝心中不想你,http://em.21dtv.com/songs/60083858.mkv +戴娆-铁齿铜牙纪晓岚,http://em.21dtv.com/songs/60042469.mkv +司文+酷兔兔-太刺激2007,http://em.21dtv.com/songs/60041303.mkv +莫旭秋-天长地久情不变(演唱会),http://em.21dtv.com/songs/60077864.mkv +张冬玲-天长地久不分离,http://em.21dtv.com/songs/60094492.mkv +许冠杰-天才白痴往日情,http://em.21dtv.com/songs/60041760.mkv +王杰-天才白痴往日情,http://em.21dtv.com/songs/60041759.mkv +许冠杰-天才白痴钱钱钱,http://em.21dtv.com/songs/60041758.mkv +林海峰-天才白痴钱钱钱(演唱会),http://em.21dtv.com/songs/60041757.mkv +王韵壹-台北有条圣诞巷,http://em.21dtv.com/songs/60125962.mkv +王文娟-他辩冤屈诉衷肠,http://em.21dtv.com/songs/60041052.mkv +山野-他不要你我爱你,http://em.21dtv.com/songs/60041061.mkv +花鼓戏-听罢言来怒气生,http://em.21dtv.com/songs/60090152.mkv +云飞-天边[演唱会],http://em.21dtv.com/songs/60133343.mkv +JANET JACKSON+LUTHER VANDROSS-the best things in life are fr,http://em.21dtv.com/songs/60005550.mkv +陈玉建-逃不脱对你的爱,http://em.21dtv.com/songs/60041544.mkv +李理-特别特别的想你,http://em.21dtv.com/songs/60103368.mkv +RICKY MARTIN-the best thing about me is you,http://em.21dtv.com/songs/60060923.mkv +吕斌-她不是真的爱我,http://em.21dtv.com/songs/60133464.mkv +佚名-台北伤心的所在,http://em.21dtv.com/songs/60041242.mkv +佚名-台北伤心的都市,http://em.21dtv.com/songs/60041241.mkv +洪荣宏-台北伤心的都市,http://em.21dtv.com/songs/60041240.mkv +何易峰-台北是我的故乡(无原唱),http://em.21dtv.com/songs/60041246.mkv +京剧-听罢奶奶说红灯,http://em.21dtv.com/songs/60090526.mkv +储兰兰-听罢奶奶说红灯,http://em.21dtv.com/songs/60077941.mkv +白玉玲-听罢奶奶说红灯,http://em.21dtv.com/songs/60042508.mkv +花鼓戏-听罢来由好伤心,http://em.21dtv.com/songs/60090151.mkv +罗时丰-台北今夜冷清清,http://em.21dtv.com/songs/60077803.mkv +佚名-台北今夜冷清清,http://em.21dtv.com/songs/60041237.mkv +洪荣宏-台北今夜冷清清,http://em.21dtv.com/songs/60041236.mkv +陈盈洁+罗时丰-台北今夜冷清清,http://em.21dtv.com/songs/60041235.mkv +施文彬-天边海角找无你,http://em.21dtv.com/songs/60064955.mkv +佚名-天边海角祝福你,http://em.21dtv.com/songs/60041737.mkv +佚名-台北发的尾班车,http://em.21dtv.com/songs/60041225.mkv +罗时丰-台北发的尾班车,http://em.21dtv.com/songs/60041224.mkv +张雷-天变地变心不变,http://em.21dtv.com/songs/60041744.mkv +李幸倪-天变地变情不变,http://em.21dtv.com/songs/60131499.mkv +张学友-天变地变情不变,http://em.21dtv.com/songs/60041743.mkv +伊能静-天变地变情不变,http://em.21dtv.com/songs/60041742.mkv +郑中基-天变地变情不变(演唱会),http://em.21dtv.com/songs/60041741.mkv +刘媛-天边传来一首歌,http://em.21dtv.com/songs/60101958.mkv +中一-天边传来一首歌,http://em.21dtv.com/songs/60083877.mkv +NBC-台北变心俱乐部,http://em.21dtv.com/songs/60041218.mkv +张学友-台北不是伤心地,http://em.21dtv.com/songs/60041219.mkv +JULIO IGLESIAS+WILLI-to all the girls ive loved beforep,http://em.21dtv.com/songs/60005825.mkv +佚名-these are the days of our live,http://em.21dtv.com/songs/60005745.mkv +吴陌川-他爱她爱他爱她,http://em.21dtv.com/songs/60135030.mkv +Team H-Take Me,http://em.21dtv.com/songs/60103043.mkv +张根硕-Take Me,http://em.21dtv.com/songs/60102227.mkv +MVP-Take It,http://em.21dtv.com/songs/60133253.mkv +佚名-守住这一片阳光(无原唱),http://em.21dtv.com/songs/60039705.mkv +严当当-守在这里的是你,http://em.21dtv.com/songs/60039698.mkv +张佑钱-狮子座的流星雨,http://em.21dtv.com/songs/60077590.mkv +林凡-睡在一起的知己,http://em.21dtv.com/songs/60067448.mkv +王键-谁在夜里想起我,http://em.21dtv.com/songs/60085740.mkv +任妙音-守着一颗心等你,http://em.21dtv.com/songs/60072409.mkv +群星-守着阳光守着你,http://em.21dtv.com/songs/60097833.mkv +潘越云-守着阳光守着你,http://em.21dtv.com/songs/60039703.mkv +黄磊-守着阳光守着你,http://em.21dtv.com/songs/60039702.mkv +童丽-山在虚无缥缈间,http://em.21dtv.com/songs/60077499.mkv +歌一生-谁种下的相思毒,http://em.21dtv.com/songs/60130514.mkv +何龙雨-色字头上一把刀,http://em.21dtv.com/songs/60099749.mkv +林胜天-色字头上一把刀,http://em.21dtv.com/songs/60094177.mkv +BEYOND-深紫色的高争鞋,http://em.21dtv.com/songs/60092146.mkv +吕建平-时值青春的少年,http://em.21dtv.com/songs/60105682.mkv +康康-顺仔你着爱读册,http://em.21dtv.com/songs/60068677.mkv +小乔-十字路口的选择,http://em.21dtv.com/songs/60104066.mkv +吴佩慈-闪着泪光的决定,http://em.21dtv.com/songs/60037744.mkv +邱喜善-说走就走的旅行,http://em.21dtv.com/songs/60113004.mkv +李行亮-说走就走的旅行,http://em.21dtv.com/songs/60107802.mkv +花鼓戏-死在九泉结同心,http://em.21dtv.com/songs/60090168.mkv +徐海琴-守着寂寞守着你,http://em.21dtv.com/songs/60039700.mkv +钟明秋-水中花,http://em.21dtv.com/songs/60108095.mkv +张伟文-身在福中我知福,http://em.21dtv.com/songs/60092562.mkv +BABY-守在风起的地方,http://em.21dtv.com/songs/60039697.mkv +赵文静-杀猪刀,http://em.21dtv.com/songs/60119994.mkv +林立-守着电话的妈妈,http://em.21dtv.com/songs/60039699.mkv +后弦-苏州城外的微笑,http://em.21dtv.com/songs/60040829.mkv +王亚平-谁在长空吹玉笛,http://em.21dtv.com/songs/60067446.mkv +爽子-爽子从地球经过,http://em.21dtv.com/songs/60124239.mkv +马常宝-随着白云去流浪,http://em.21dtv.com/songs/60103717.mkv +湘海-谁在爱里下了毒,http://em.21dtv.com/songs/60063140.mkv +JUJU FEAT.SPONTANIA-素直になれたら,http://em.21dtv.com/songs/60040855.mkv +张敬轩+泳儿+李代沫+大山-声音再远都是爱,http://em.21dtv.com/songs/60081745.mkv +陈红-深夜走过长安街(演唱会),http://em.21dtv.com/songs/60038378.mkv +石筱群-随缘[影视版],http://em.21dtv.com/songs/60117952.mkv +GEM+林海峰-食烟饮酒讲粗口,http://em.21dtv.com/songs/60092177.mkv +陈杰瑞+方炯镔-是英雄的站出来,http://em.21dtv.com/songs/60116345.mkv +李念-说一万句我爱你,http://em.21dtv.com/songs/60122858.mkv +乐桐-说一万句我爱你,http://em.21dtv.com/songs/60103858.mkv +赵咏华-谁要我宠坏了你,http://em.21dtv.com/songs/60040144.mkv +韩庚-深夜听歌流眼泪,http://em.21dtv.com/songs/60115526.mkv +刘锡明-是缘是债是场梦,http://em.21dtv.com/songs/60039534.mkv +许志安-四月十七日angel pub(演唱会),http://em.21dtv.com/songs/60040711.mkv +董文华-十月是你的生日,http://em.21dtv.com/songs/60039046.mkv +陈一凡-树叶飘飞的黄昏,http://em.21dtv.com/songs/60105466.mkv +佚名-莎哟娜拉再会啦,http://em.21dtv.com/songs/60037489.mkv +李茂山-莎哟娜拉再会啦,http://em.21dtv.com/songs/60037488.mkv +张凌枫-属于你的生日歌,http://em.21dtv.com/songs/60039771.mkv +伍义-死要面子活受罪,http://em.21dtv.com/songs/60040644.mkv +波拉-谁也没有我伤心,http://em.21dtv.com/songs/60040151.mkv +陈一凡-谁也没有我爱你,http://em.21dtv.com/songs/60086848.mkv +海生+王斐斐-三言两语来说爱,http://em.21dtv.com/songs/60077470.mkv +郭富城-失忆谅解备忘录,http://em.21dtv.com/songs/60038848.mkv +郭富城-失忆谅解备忘录(演唱会),http://em.21dtv.com/songs/60038847.mkv +金素静-是眼泪还是汗水,http://em.21dtv.com/songs/60069827.mkv +白红-四月梨花白如霜,http://em.21dtv.com/songs/60040709.mkv +苏少明-说一句我不走了,http://em.21dtv.com/songs/60040430.mkv +晓光-所有姐妹一起来,http://em.21dtv.com/songs/60041031.mkv +吴彤-十元换来的快乐,http://em.21dtv.com/songs/60080008.mkv +韩琳-岁月回荡一支歌,http://em.21dtv.com/songs/60066336.mkv +景岗山-守业更比创业难,http://em.21dtv.com/songs/60091275.mkv +山水组合-三羊点赞送吉祥,http://em.21dtv.com/songs/60115886.mkv +王宁+侯牧人-社员都是向阳花,http://em.21dtv.com/songs/60038238.mkv +泽宁-伤一次疼一辈子,http://em.21dtv.com/songs/60068644.mkv +王洪迪-谁也不是祝英台,http://em.21dtv.com/songs/60121930.mkv +熊大-谁也不是谁的谁,http://em.21dtv.com/songs/60099387.mkv +回来娶你-谁又不是谁的谁,http://em.21dtv.com/songs/60094449.mkv +苏贤文-三峡最美是巫山,http://em.21dtv.com/songs/60080591.mkv +佳灏-伤心欲绝,http://em.21dtv.com/songs/60117556.mkv +李娜-洒向雪域的挚爱,http://em.21dtv.com/songs/60037136.mkv +杜春雷-伤心我就唱情歌,http://em.21dtv.com/songs/60117825.mkv +门丽-死心塌地去爱你,http://em.21dtv.com/songs/60123270.mkv +段千寻-死心塌地爱着你,http://em.21dtv.com/songs/60083851.mkv +宪明-死心塌地爱一回,http://em.21dtv.com/songs/60110160.mkv +朱海君-伤心是一种美丽,http://em.21dtv.com/songs/60132515.mkv +佚名-神仙岁月我不爱,http://em.21dtv.com/songs/60038506.mkv +七郎-是心碎也是酒醉,http://em.21dtv.com/songs/60039521.mkv +佚名-水乡三月风光好,http://em.21dtv.com/songs/60040245.mkv +江蕙-伤心是我的爱情,http://em.21dtv.com/songs/60037949.mkv +胡建民-三湘四水美如画,http://em.21dtv.com/songs/60081320.mkv +俞会珍-手心手背都是肉,http://em.21dtv.com/songs/60039649.mkv +阎维文-洒向人间都是爱,http://em.21dtv.com/songs/60063231.mkv +相随-伤心情歌伤心泪,http://em.21dtv.com/songs/60101147.mkv +粤剧-苏小妹三难新郎,http://em.21dtv.com/songs/60093018.mkv +佚名-苏小妹三难新郎,http://em.21dtv.com/songs/60040825.mkv +群星-四喜临门喜迎春,http://em.21dtv.com/songs/60040706.mkv +BOY'Z+TWINS-四喜临门喜迎春,http://em.21dtv.com/songs/60040705.mkv +张德兰+区瑞强-双喜临门喜迎春,http://em.21dtv.com/songs/60039894.mkv +郑琇月-伤心何时才会过(无原唱),http://em.21dtv.com/songs/60037908.mkv +于青-水乡何处不飘香,http://em.21dtv.com/songs/60113236.mkv +邓志驹-三星拱照庆国年,http://em.21dtv.com/songs/60093246.mkv +安明亮-神仙都在吐鲁番,http://em.21dtv.com/songs/60086819.mkv +巫启贤-伤心的我更伤心,http://em.21dtv.com/songs/60037888.mkv +巫启贤-伤心的人更伤心,http://em.21dtv.com/songs/60037878.mkv +张克帆-伤心的人唱的歌(演唱会)(无原唱),http://em.21dtv.com/songs/60037876.mkv +张寒-伤心的人不寂寞,http://em.21dtv.com/songs/60037875.mkv +郑智勋-伤心的那一滴泪,http://em.21dtv.com/songs/60099528.mkv +司文-伤心的泪止不住,http://em.21dtv.com/songs/60087523.mkv +浩轩-伤心的泪笑着流,http://em.21dtv.com/songs/60094207.mkv +智涛-伤心的泪心里流,http://em.21dtv.com/songs/60102292.mkv +苏有朋-伤心的故事太多,http://em.21dtv.com/songs/60091925.mkv +丁炜-伤心的不只是你,http://em.21dtv.com/songs/60066295.mkv +丁楠霓-双星报喜在人间,http://em.21dtv.com/songs/60077689.mkv +花世纪-丧心病狂的日记,http://em.21dtv.com/songs/60124392.mkv +孟杨-谁先不爱谁放手,http://em.21dtv.com/songs/60112634.mkv +胡杨林-是我在做多情种,http://em.21dtv.com/songs/60039520.mkv +赵齐-伤我最深的女人,http://em.21dtv.com/songs/60099512.mkv +佚名-送我一枝玫瑰花,http://em.21dtv.com/songs/60040798.mkv +黄灿-送我一朵玫瑰花,http://em.21dtv.com/songs/60040795.mkv +任然-山外小楼夜听雨,http://em.21dtv.com/songs/60132187.mkv +何佳乐-是我,http://em.21dtv.com/songs/60118333.mkv +成林江措-谁为我拭去眼泪,http://em.21dtv.com/songs/60062297.mkv +韩晓辉-哨位上的木棉花,http://em.21dtv.com/songs/60109009.mkv +影视歌曲-身无牵挂胆气粗,http://em.21dtv.com/songs/60091185.mkv +刘增瞳-是我对你太依赖,http://em.21dtv.com/songs/60134929.mkv +F(x)-4 Walls,http://em.21dtv.com/songs/60115579.mkv +大嘴巴-Super不明,http://em.21dtv.com/songs/60120429.mkv +黄梅戏-手提羊毫喜洋洋,http://em.21dtv.com/songs/60039630.mkv +豫剧-手提一包红砂糖,http://em.21dtv.com/songs/60134578.mkv +张艳君-石头山庄赛天堂,http://em.21dtv.com/songs/60133689.mkv +罗嘉良-说天说地说空虚,http://em.21dtv.com/songs/60040426.mkv +左左右右-沙滩派对好棒棒,http://em.21dtv.com/songs/60113440.mkv +草蜢-上天关了一扇门,http://em.21dtv.com/songs/60131764.mkv +小海-伤痛[DJ版],http://em.21dtv.com/songs/60113424.mkv +廖昌永-三套车,http://em.21dtv.com/songs/60123898.mkv +U KISS-Stalker,http://em.21dtv.com/songs/60122440.mkv +小胖-世上只有妈妈好,http://em.21dtv.com/songs/60113428.mkv +唐子宜-世上只有妈妈好,http://em.21dtv.com/songs/60110949.mkv +童唱-世上只有妈妈好,http://em.21dtv.com/songs/60039322.mkv +谢小鱼+金铭-世上只有妈妈好(演唱会),http://em.21dtv.com/songs/60039321.mkv +杨宇弦-世上只有老婆好,http://em.21dtv.com/songs/60077642.mkv +郭富城-水手装与机关枪,http://em.21dtv.com/songs/60040226.mkv +郭富城-水手装与机关枪(演唱会),http://em.21dtv.com/songs/60040225.mkv +蔡国权-是谁在我耳边唱,http://em.21dtv.com/songs/60039497.mkv +王如华-世上总是好人多,http://em.21dtv.com/songs/60122990.mkv +雪无影-说声再见有多难,http://em.21dtv.com/songs/60098903.mkv +林一峰-说说自己的故事(演唱会),http://em.21dtv.com/songs/60040425.mkv +丁金源-三沙有条北京路,http://em.21dtv.com/songs/60134840.mkv +张天甫-三沙有条北京路,http://em.21dtv.com/songs/60125498.mkv +谢克霖+郁咏洁-搜书院-初遇诉情,http://em.21dtv.com/songs/60040808.mkv +陈小春-谁说我在掉眼泪,http://em.21dtv.com/songs/60040129.mkv +天外黑仙-谁说网上无美女,http://em.21dtv.com/songs/60090868.mkv +关关-谁是我来我是谁,http://em.21dtv.com/songs/60104799.mkv +王曼熹-谁是我的男主角,http://em.21dtv.com/songs/60117036.mkv +萧蔷-谁是我的101,http://em.21dtv.com/songs/60040104.mkv +张芸京-谁说我不能哭泣,http://em.21dtv.com/songs/60127999.mkv +蒙克-是谁为爱犯了错,http://em.21dtv.com/songs/60039495.mkv +岳明-是谁为爱犯了错(演唱会),http://em.21dtv.com/songs/60039494.mkv +张佑钱-是谁偷走我的心,http://em.21dtv.com/songs/60114524.mkv +张含韵-酸酸甜甜就是我,http://em.21dtv.com/songs/60040875.mkv +童星-酸酸甜甜就是我,http://em.21dtv.com/songs/60040874.mkv +群星-四世同堂合家欢,http://em.21dtv.com/songs/60109573.mkv +群星-四世同堂合家欢,http://em.21dtv.com/songs/60108810.mkv +王强-是谁偷了谁的心,http://em.21dtv.com/songs/60083812.mkv +彭博-sorry seems to be the hardest word,http://em.21dtv.com/songs/60082336.mkv +戴佳毅-伤伤伤,http://em.21dtv.com/songs/60111114.mkv +长春虫子-生生世世在一起,http://em.21dtv.com/songs/60079876.mkv +音乐走廊+歌一生-生生世世永相爱,http://em.21dtv.com/songs/60121140.mkv +雨露-三生石上的誓言,http://em.21dtv.com/songs/60129774.mkv +卡密儿-三生三世的思念,http://em.21dtv.com/songs/60133435.mkv +卡密儿-三生三世的思念,http://em.21dtv.com/songs/60131228.mkv +吴春花-山山水水都是爱,http://em.21dtv.com/songs/60114449.mkv +含紫烟-三生三世的承诺,http://em.21dtv.com/songs/60072359.mkv +望海高歌+雨柔-生生死死都爱你,http://em.21dtv.com/songs/60129208.mkv +邓志驹+李池湘-沙三少情挑银姐,http://em.21dtv.com/songs/60037467.mkv +戴尚辉-是谁伤了我的心,http://em.21dtv.com/songs/60039493.mkv +王禹-是谁伤了谁的心,http://em.21dtv.com/songs/60108731.mkv +sunshine-随时随地拍拍拍,http://em.21dtv.com/songs/60120246.mkv +认真-神山圣地观音桥,http://em.21dtv.com/songs/60115383.mkv +董贞-世上岂有神仙哉,http://em.21dtv.com/songs/60077641.mkv +佚名-谁说女子不如男,http://em.21dtv.com/songs/60040124.mkv +金婷婷-世上哪有树缠藤,http://em.21dtv.com/songs/60123250.mkv +奚秀兰-世上哪有树缠藤,http://em.21dtv.com/songs/60101316.mkv +罗宁娜-世上哪有树缠藤(演唱会),http://em.21dtv.com/songs/60039316.mkv +陈飞彤-谁说男人不流泪,http://em.21dtv.com/songs/60040121.mkv +戴毅-谁说男人不会哭,http://em.21dtv.com/songs/60040120.mkv +高安+雨花石-思思念念全是你,http://em.21dtv.com/songs/60121156.mkv +高安-思思念念全是你,http://em.21dtv.com/songs/60040581.mkv +蔡秋凤-思思念念拢是你(无原唱),http://em.21dtv.com/songs/60040580.mkv +民歌-树上那见树缠藤,http://em.21dtv.com/songs/60089390.mkv +佚名-世上哪见树缠藤,http://em.21dtv.com/songs/60039315.mkv +佚名-世上哪见树缠藤(伦巴),http://em.21dtv.com/songs/60039314.mkv +宫雨-谁说男儿不想家,http://em.21dtv.com/songs/60040119.mkv +冷漠-世上没有后悔药,http://em.21dtv.com/songs/60071126.mkv +陈瑞+张津涤-谁说梅花没有泪,http://em.21dtv.com/songs/60110647.mkv +李茂山-说什么都是多余,http://em.21dtv.com/songs/60040414.mkv +1931组合-世上另外一个我,http://em.21dtv.com/songs/60122325.mkv +侯旭-生死路上有担当,http://em.21dtv.com/songs/60132208.mkv +京剧-苏三离了洪桐县,http://em.21dtv.com/songs/60089601.mkv +蒋舟-谁说喝醉无所谓,http://em.21dtv.com/songs/60040118.mkv +河静静-世上还是妈妈好,http://em.21dtv.com/songs/60100269.mkv +张敬轩-是时候放松一下,http://em.21dtv.com/songs/60083811.mkv +卢冠廷-世事何曾是绝对,http://em.21dtv.com/songs/60039325.mkv +林景滢-是谁跟你玩真的(无原唱),http://em.21dtv.com/songs/60039487.mkv +柏敏杰-34公里的爱情,http://em.21dtv.com/songs/60084690.mkv +柏敏杰-三四公里的爱情,http://em.21dtv.com/songs/60077465.mkv +CHRISTINA AGUILERA-somethings got a hold on me,http://em.21dtv.com/songs/60061980.mkv +湛铭赫-谁说法海不懂爱,http://em.21dtv.com/songs/60131619.mkv +徐子崴-三生二世一辈子,http://em.21dtv.com/songs/60037301.mkv +王邵玫-双双草鞋送红军,http://em.21dtv.com/songs/60039883.mkv +尤雅-谁是春风得意人,http://em.21dtv.com/songs/60040092.mkv +林俊杰-莎士比亚的天份,http://em.21dtv.com/songs/60037487.mkv +田震-三十八点五度c,http://em.21dtv.com/songs/60037311.mkv +李芊慧-深深爱你在心内(无原唱),http://em.21dtv.com/songs/60095633.mkv +Hi Fi CAMP-この手伸ばして,http://em.21dtv.com/songs/60108227.mkv +傅振辉+邱淑君-谁人有心谁人赢(无原唱),http://em.21dtv.com/songs/60040084.mkv +小黑-谁人要乎我来疼,http://em.21dtv.com/songs/60043120.mkv +陈百潭-啥人要给我来疼(无原唱),http://em.21dtv.com/songs/60037498.mkv +山人乐队-山人,http://em.21dtv.com/songs/60120484.mkv +佚名-谁人袜想起故乡,http://em.21dtv.com/songs/60095445.mkv +董冬-谁让我爱上你了,http://em.21dtv.com/songs/60040052.mkv +汤潮-谁让我爱上了你,http://em.21dtv.com/songs/60040051.mkv +佚名-食人头路真凄惨,http://em.21dtv.com/songs/60095453.mkv +林俊吉+李依婷-双人牵手逗阵走(无原唱),http://em.21dtv.com/songs/60039864.mkv +王绎龙-生日快乐狂欢曲,http://em.21dtv.com/songs/60111284.mkv +甘奇灵-啥人讲阮无个性,http://em.21dtv.com/songs/60037497.mkv +佚名-谁人敢挂无事牌,http://em.21dtv.com/songs/60040059.mkv +佚名-虽然孤单也轻松(无原唱),http://em.21dtv.com/songs/60040908.mkv +阿华-双人床一个人睡,http://em.21dtv.com/songs/60039860.mkv +木子欣-虽然不能再相见,http://em.21dtv.com/songs/60096335.mkv +洪荣宏-谁人爱我亲像你,http://em.21dtv.com/songs/60072419.mkv +王识贤-谁人爱你亲像我,http://em.21dtv.com/songs/60040056.mkv +佚名-谁若爱你比我多,http://em.21dtv.com/songs/60040087.mkv +大勇-失去以后的想念,http://em.21dtv.com/songs/60135074.mkv +越剧-思前想后象做梦,http://em.21dtv.com/songs/60040576.mkv +范玉刚-神曲神曲唱起来,http://em.21dtv.com/songs/60114008.mkv +王琪-十全十美在人间,http://em.21dtv.com/songs/60120773.mkv +童丽-山前山后百花开,http://em.21dtv.com/songs/60077498.mkv +卓依婷-山前山后百花开,http://em.21dtv.com/songs/60037667.mkv +刘韵-山前山后百花开,http://em.21dtv.com/songs/60037666.mkv +甄秀珍-山前山后百花开(无原唱),http://em.21dtv.com/songs/60037665.mkv +王矜霖-十七岁的小情歌,http://em.21dtv.com/songs/60116159.mkv +BIRDY PRODUCTION+VOIDEAS-十七岁的圣诞卡,http://em.21dtv.com/songs/60077608.mkv +范玮琪-十七岁的北极星,http://em.21dtv.com/songs/60077607.mkv +许桂荧-十七十八正当时,http://em.21dtv.com/songs/60038998.mkv +黑GIRL-是情人也是朋友,http://em.21dtv.com/songs/60064889.mkv +熊照华-失去你我才发现,http://em.21dtv.com/songs/60124233.mkv +佚名-盛情满盏举香槟,http://em.21dtv.com/songs/60038697.mkv +马健涛-杀阡陌,http://em.21dtv.com/songs/60114261.mkv +宋祖英-山箐里的兵哥哥,http://em.21dtv.com/songs/60090954.mkv +无悔-失去了曾经的爱,http://em.21dtv.com/songs/60121726.mkv +吕珊-三千六百五十夜,http://em.21dtv.com/songs/60037289.mkv +吕珊-三千六百五十夜(演唱会),http://em.21dtv.com/songs/60037288.mkv +王雯萱-失去节奏的探戈,http://em.21dtv.com/songs/60038824.mkv +雷佳-三七花开等你来,http://em.21dtv.com/songs/60077458.mkv +兰天+李连锐-上去高山望平川,http://em.21dtv.com/songs/60110856.mkv +斯琴高丽-斯琴高丽的伤心,http://em.21dtv.com/songs/60040607.mkv +斯琴高丽-斯琴高丽的开心,http://em.21dtv.com/songs/60119603.mkv +成龙-神曲Duang,http://em.21dtv.com/songs/60109383.mkv +何乌兰-神奇的蒙古高原,http://em.21dtv.com/songs/60099744.mkv +更登扎西-神奇的墨尔多山,http://em.21dtv.com/songs/60038480.mkv +佚名-三千宠爱在一身,http://em.21dtv.com/songs/60037283.mkv +春妹-十七八岁少年郎,http://em.21dtv.com/songs/60038995.mkv +吴淑敏-十七八岁的年代,http://em.21dtv.com/songs/60038994.mkv +李翊君-失去爱还有什么,http://em.21dtv.com/songs/60077583.mkv +傅振辉+一绫+周慧璇-是朋友不是情侣,http://em.21dtv.com/songs/60039477.mkv +乌兰托娅-手捧奶酒敬亲人,http://em.21dtv.com/songs/60107467.mkv +佚名-水泼落地难收回,http://em.21dtv.com/songs/60040216.mkv +Alan Walker-Spectre,http://em.21dtv.com/songs/60123433.mkv +刀郎-身披彩衣的姑娘(演唱会),http://em.21dtv.com/songs/60064849.mkv +刀郎-身披彩衣的姑娘,http://em.21dtv.com/songs/60062313.mkv +欧豪-so what,http://em.21dtv.com/songs/60112046.mkv +NE YO-SO SICK,http://em.21dtv.com/songs/60132112.mkv +于湉-Someone,http://em.21dtv.com/songs/60116533.mkv +Tom Odell-Somehow,http://em.21dtv.com/songs/60123546.mkv +DIA-Somehow,http://em.21dtv.com/songs/60115573.mkv +Zara Larsson+Ty Dolla $ign-So Good,http://em.21dtv.com/songs/60133313.mkv +朴宰范-So Good,http://em.21dtv.com/songs/60105965.mkv +张明敏-思念总在分手后,http://em.21dtv.com/songs/60089276.mkv +刘文正-思念总在分手后,http://em.21dtv.com/songs/60089165.mkv +锦绣二重唱-思念总在分手后,http://em.21dtv.com/songs/60040574.mkv +潘安邦-思念总在分手后(无原唱),http://em.21dtv.com/songs/60040573.mkv +吴骏飞-少年壮志不言愁,http://em.21dtv.com/songs/60110930.mkv +多亮-少年壮志不言愁,http://em.21dtv.com/songs/60097818.mkv +佚名-少年壮志不言愁,http://em.21dtv.com/songs/60038158.mkv +刘欢-少年壮志不言愁,http://em.21dtv.com/songs/60038157.mkv +刘欢-少年壮志不言愁(演唱会),http://em.21dtv.com/songs/60038156.mkv +李蕴-十年再遇孖公仔,http://em.21dtv.com/songs/60125722.mkv +于台烟-是你在说抱歉吗(无原唱),http://em.21dtv.com/songs/60039476.mkv +王爱华-思念再苦也说甜,http://em.21dtv.com/songs/60133996.mkv +黄耀明-谁能阻挡我的爱(演唱会),http://em.21dtv.com/songs/60064904.mkv +张雷-送你一张银行卡,http://em.21dtv.com/songs/60120533.mkv +韩芝萍-送你一枝玫瑰花,http://em.21dtv.com/songs/60090310.mkv +韩芝萍-送你一支玫瑰花,http://em.21dtv.com/songs/60040787.mkv +吴淑敏-送你一枝玫瑰花,http://em.21dtv.com/songs/60007892.mkv +佚名-手拿一枝红玫瑰,http://em.21dtv.com/songs/60039621.mkv +童唱-少年英雄小哪咤,http://em.21dtv.com/songs/60038146.mkv +群星-送你一束有钱花,http://em.21dtv.com/songs/60117981.mkv +吴长英-送你一束三角梅,http://em.21dtv.com/songs/60106691.mkv +佚名-送你一束玫瑰花,http://em.21dtv.com/songs/60095447.mkv +陈思思-送你一束康乃馨,http://em.21dtv.com/songs/60115492.mkv +李宗盛+李剑青+白安-送你一首过年歌,http://em.21dtv.com/songs/60124065.mkv +王爱华-思念一年又一年,http://em.21dtv.com/songs/60133995.mkv +佚名-送你一枚小弹壳,http://em.21dtv.com/songs/60040784.mkv +猪哥亮+周三珊-送你一句i am sorry,http://em.21dtv.com/songs/60064928.mkv +卓依婷-送你一个大年糕,http://em.21dtv.com/songs/60087490.mkv +好妹妹-送你一朵山茶花,http://em.21dtv.com/songs/60099915.mkv +艾图兰-送你一朵玫瑰花,http://em.21dtv.com/songs/60040781.mkv +黄丽娅-手拿一朵红玫瑰,http://em.21dtv.com/songs/60039620.mkv +洪荣宏-送你一丛玫瑰花(无原唱),http://em.21dtv.com/songs/60095792.mkv +佚名-送你一丛玫瑰花(无原唱),http://em.21dtv.com/songs/60040779.mkv +黎明-送你一瓣的雪花(演唱会),http://em.21dtv.com/songs/60040778.mkv +李琦-十年,http://em.21dtv.com/songs/60127043.mkv +杨丞琳-少年维特的烦恼,http://em.21dtv.com/songs/60088055.mkv +蒋雪儿+高进-说你为什么爱我,http://em.21dtv.com/songs/60120924.mkv +叶倩文-是你忘了我的美,http://em.21dtv.com/songs/60039474.mkv +蛋堡-少年维持着烦恼,http://em.21dtv.com/songs/60038139.mkv +杨丞琳-少年维持的烦恼,http://em.21dtv.com/songs/60069798.mkv +柯以敏-思念是一种惩罚,http://em.21dtv.com/songs/60040559.mkv +李玟-是你是我的自由,http://em.21dtv.com/songs/60039473.mkv +青山-山南山北走一回,http://em.21dtv.com/songs/60090304.mkv +余天-山南山北走一回,http://em.21dtv.com/songs/60087328.mkv +莫旭秋-山南山北走一回(演唱会),http://em.21dtv.com/songs/60077497.mkv +邓丽君-山南山北走一回,http://em.21dtv.com/songs/60037664.mkv +王雪晶+庄群诗-山南山北乐陶陶,http://em.21dtv.com/songs/60088332.mkv +黄品源-谁能让时间倒转,http://em.21dtv.com/songs/60040041.mkv +MC水公主-十年戎马心孤单,http://em.21dtv.com/songs/60128684.mkv +天佑-十年戎马心孤单,http://em.21dtv.com/songs/60120436.mkv +Mc张凯-十年戎马心孤单,http://em.21dtv.com/songs/50000120.mkv +Mc天佑-十年戎马心孤单,http://em.21dtv.com/songs/50000115.mkv +姜欣欣-是男人就不要哭,http://em.21dtv.com/songs/60132347.mkv +伍佰-思念亲像一条河,http://em.21dtv.com/songs/60040554.mkv +李明洋-思念你的风若起,http://em.21dtv.com/songs/60107787.mkv +洛天依-睡你麻痹起来嗨,http://em.21dtv.com/songs/60119767.mkv +童星-送你两只幸福猪,http://em.21dtv.com/songs/60088390.mkv +周璇-三年离别又相逢,http://em.21dtv.com/songs/60037273.mkv +钟伟-三年离别又相逢,http://em.21dtv.com/songs/60037272.mkv +青山-谁能禁止我的爱(演唱会),http://em.21dtv.com/songs/60083828.mkv +佚名-谁能禁止我的爱,http://em.21dtv.com/songs/60040037.mkv +李茂山-谁能禁止我的爱,http://em.21dtv.com/songs/60040036.mkv +韩宝仪-谁能禁止我的爱,http://em.21dtv.com/songs/60040035.mkv +苏有朋-思念就像一首歌,http://em.21dtv.com/songs/60040538.mkv +闫寒-思念家乡黄河口,http://em.21dtv.com/songs/60040535.mkv +MC天佑-甩你几条银河系,http://em.21dtv.com/songs/60131080.mkv +卓依婷-思念故乡的情人,http://em.21dtv.com/songs/60040531.mkv +七郎-思念故乡的情人,http://em.21dtv.com/songs/60040530.mkv +陈雷-思念故乡的情人,http://em.21dtv.com/songs/60040529.mkv +卓依婷+赵盈锦-思念故乡的情人,http://em.21dtv.com/songs/60068685.mkv +吴淑敏-思念故乡的妈妈(无原唱),http://em.21dtv.com/songs/60040528.mkv +佚名-思念故乡的姑娘,http://em.21dtv.com/songs/60040527.mkv +吴宇凯-思念故乡的爱人(无原唱),http://em.21dtv.com/songs/60040526.mkv +储毅-谁能给我一个家,http://em.21dtv.com/songs/60105603.mkv +邓丽君-是你打来的电话,http://em.21dtv.com/songs/60103603.mkv +方琦-手拿碟儿敲起来,http://em.21dtv.com/songs/60128043.mkv +佚名-手拿碟儿敲起来,http://em.21dtv.com/songs/60039619.mkv +BOY'Z-少年成熟记事簿,http://em.21dtv.com/songs/60038123.mkv +于全莉-随你步入相思河,http://em.21dtv.com/songs/60077788.mkv +林玉英-三年八班的同学(无原唱),http://em.21dtv.com/songs/60037267.mkv +马智宇+汪正正-生命中最爱的人,http://em.21dtv.com/songs/60133108.mkv +马智宇+汪正正-生命中最爱的人,http://em.21dtv.com/songs/60131995.mkv +马智宇-生命中最爱的人,http://em.21dtv.com/songs/60131993.mkv +汪正正-生命中最爱的人,http://em.21dtv.com/songs/60131599.mkv +汪正正+马智宇-生命中最爱的人,http://em.21dtv.com/songs/60127156.mkv +汪正正-生命中最爱的人,http://em.21dtv.com/songs/60125858.mkv +牧斯-生命中最爱的人,http://em.21dtv.com/songs/60118758.mkv +马智宇-生命中最爱的人,http://em.21dtv.com/songs/60110699.mkv +马智宇-生命中最爱的人,http://em.21dtv.com/songs/60071112.mkv +张莉莎-生命中有你多好,http://em.21dtv.com/songs/60103284.mkv +李昱和-受命治水答友人,http://em.21dtv.com/songs/60127033.mkv +林展逸-杀忙正会出头天,http://em.21dtv.com/songs/60037430.mkv +王宏天-生命中的那些人,http://em.21dtv.com/songs/60120755.mkv +王宏天-生命中的那些人,http://em.21dtv.com/songs/60117030.mkv +杨钰莹+毛宁-生命中的每一天(演唱会),http://em.21dtv.com/songs/60038592.mkv +张秀卿+许志豪-生命中的过客龙,http://em.21dtv.com/songs/60077563.mkv +薪羽-生命之不能承受,http://em.21dtv.com/songs/60038584.mkv +卢薪羽-生命之不能承受,http://em.21dtv.com/songs/60038583.mkv +曲婉婷-生命有一种绝对,http://em.21dtv.com/songs/60112722.mkv +五月天-生命有一种绝对,http://em.21dtv.com/songs/60038581.mkv +夏梦妍-生命因你而精彩,http://em.21dtv.com/songs/60105721.mkv +潘建义-水墨永嘉越千年,http://em.21dtv.com/songs/60093859.mkv +潘李金辉+金海娃+胡泼+叶赛约-水墨永嘉越千年,http://em.21dtv.com/songs/60085741.mkv +钟佩佩-生命因爱而精彩,http://em.21dtv.com/songs/60038578.mkv +张俊-生命像花儿一样,http://em.21dtv.com/songs/60105814.mkv +梁东泽-什么我才最在乎,http://em.21dtv.com/songs/60091514.mkv +P.OLAND+RYO AZUKA-show me the way to your heart,http://em.21dtv.com/songs/60005004.mkv +BACKSTREET BOYS-show me the meaning of being l,http://em.21dtv.com/songs/60005003.mkv +谭晶-四明山我来看你,http://em.21dtv.com/songs/60071159.mkv +蔡秋凤-三暝三日写三字,http://em.21dtv.com/songs/60095915.mkv +佚名-三暝三日写三字,http://em.21dtv.com/songs/60095386.mkv +孟扬-神马神马怎么办,http://em.21dtv.com/songs/60038461.mkv +黄婉秋+何有才-什么水面打跟斗(演唱会),http://em.21dtv.com/songs/60038423.mkv +旅行团-生命是场马拉松,http://em.21dtv.com/songs/60111933.mkv +熊木杏里-饰りのない明日,http://em.21dtv.com/songs/60135525.mkv +梁静茹-shanghai memories of 1945(演唱会),http://em.21dtv.com/songs/60004946.mkv +赵薇-生命里的这一天,http://em.21dtv.com/songs/60038564.mkv +于文华+杨卫星-什么结子高又高,http://em.21dtv.com/songs/60038410.mkv +王瑞霞-山盟海誓什路用,http://em.21dtv.com/songs/60037663.mkv +林凡-什么都可以忘记,http://em.21dtv.com/songs/60038402.mkv +刘和刚-赛龙舟,http://em.21dtv.com/songs/60103924.mkv +蟑螂乐队-失恋中请勿打扰,http://em.21dtv.com/songs/60038778.mkv +J.Arie(雷琛瑜)-失恋要在放工后,http://em.21dtv.com/songs/60106545.mkv +佚名-撒落一路杜鹃花(无原唱),http://em.21dtv.com/songs/60037147.mkv +李乐诗-失恋于戈壁沙漠,http://em.21dtv.com/songs/60038773.mkv +佚名-送郎一朵牵牛花,http://em.21dtv.com/songs/60040769.mkv +王中平-少了一边的月亮,http://em.21dtv.com/songs/60091682.mkv +张雷-谁来下载我的爱,http://em.21dtv.com/songs/60072418.mkv +佚名-素兰小姐要出嫁,http://em.21dtv.com/songs/60040852.mkv +罗时丰-素兰小姐要出嫁,http://em.21dtv.com/songs/60040851.mkv +伍佰-素兰小姐要出嫁(演唱会),http://em.21dtv.com/songs/60040850.mkv +赵传-莎莉,http://em.21dtv.com/songs/60117258.mkv +江山-伤了我还说爱我,http://em.21dtv.com/songs/60088192.mkv +陈玉建-谁来偷走我的爱(演唱会),http://em.21dtv.com/songs/60040020.mkv +凌之轩-十里桃花夜清浅,http://em.21dtv.com/songs/60103916.mkv +吕雯-撒了太多的泪滴,http://em.21dtv.com/songs/60064817.mkv +宋飞-伤了你痛了自己,http://em.21dtv.com/songs/60107668.mkv +花哥-伤了你痛了自己,http://em.21dtv.com/songs/60080567.mkv +西街-伤了你痛了自己,http://em.21dtv.com/songs/60037808.mkv +杜歌-伤了你伤了自己,http://em.21dtv.com/songs/60083759.mkv +曾宝仪-少了你该怎么办,http://em.21dtv.com/songs/60038112.mkv +汤灿-山里妹子真漂亮,http://em.21dtv.com/songs/60037654.mkv +陈思思-山里妹子真漂亮,http://em.21dtv.com/songs/60037653.mkv +谭晶-赛里木湖的月光,http://em.21dtv.com/songs/60132901.mkv +阎维文-唰拉拉下起小雨,http://em.21dtv.com/songs/60088822.mkv +阎维文-涮啦啦下起小雨,http://em.21dtv.com/songs/60039829.mkv +阎维文-唰啦啦下起小雨,http://em.21dtv.com/songs/60039818.mkv +阎维文-唰啦啦下起小雨(演唱会),http://em.21dtv.com/songs/60039817.mkv +[Group] +groupName=十六万歌曲MV等 - 98 +李直-水灵灵的瑶妹子,http://em.21dtv.com/songs/60077712.mkv +童唱-森林里的音乐会,http://em.21dtv.com/songs/60037423.mkv +唐雅明-十六楼的演唱会,http://em.21dtv.com/songs/60038976.mkv +丁铭炎-十里红妆娘预备,http://em.21dtv.com/songs/60087232.mkv +聂建华-十里河流金的河,http://em.21dtv.com/songs/60068656.mkv +豫剧-十里湖堤好风光,http://em.21dtv.com/songs/60134549.mkv +童丽-谁料皇榜中状元,http://em.21dtv.com/songs/60077701.mkv +佚名-谁料皇榜中状元,http://em.21dtv.com/songs/60040022.mkv +紫海-谁来给我暖被窝,http://em.21dtv.com/songs/60102611.mkv +安又琪-失恋的人不能听,http://em.21dtv.com/songs/60090943.mkv +白冰冰-失恋的酒拢袜醉,http://em.21dtv.com/songs/60038741.mkv +梁春光-算了吧,忘了吧,http://em.21dtv.com/songs/60129313.mkv +李启文-失恋不是你的罪,http://em.21dtv.com/songs/60069809.mkv +许佳慧-失恋不能听情歌,http://em.21dtv.com/songs/60118904.mkv +龚赞生-输了爱情输了你,http://em.21dtv.com/songs/60108299.mkv +孔朝-伤了爱情的玫瑰,http://em.21dtv.com/songs/60037804.mkv +红蔷薇-输了爱情丢了你,http://em.21dtv.com/songs/60111343.mkv +邓冬梅-山里阿妹爱唱歌,http://em.21dtv.com/songs/60077495.mkv +古皓-说了爱就不能走,http://em.21dtv.com/songs/60090786.mkv +游美灵-时空之星遇见你,http://em.21dtv.com/songs/60112086.mkv +蔡秋凤-爽快永远拢是伊,http://em.21dtv.com/songs/60039923.mkv +王力宏-伤口是爱的笔记,http://em.21dtv.com/songs/60037803.mkv +越剧-山坎起屋做成窑,http://em.21dtv.com/songs/60037650.mkv +モーニング娘。-时空を超え 宇宙を超え,http://em.21dtv.com/songs/60101230.mkv +江东-是金子总会发光,http://em.21dtv.com/songs/60133913.mkv +张寒-是金子总会发光,http://em.21dtv.com/songs/60133654.mkv +汪起正-世界只有两个我,http://em.21dtv.com/songs/60131600.mkv +凌加峻-世界最完美遥控,http://em.21dtv.com/songs/60123659.mkv +艳阳天-世界只剩一分钟,http://em.21dtv.com/songs/60072404.mkv +艳阳天-世界只剩一分钟(舞曲版),http://em.21dtv.com/songs/60072403.mkv +翟羽佳-世间最伤痛的心,http://em.21dtv.com/songs/60039249.mkv +容中尔甲-世界最高的地方,http://em.21dtv.com/songs/60039310.mkv +刘一祯-谁家燕子不思归(演唱会),http://em.21dtv.com/songs/60077696.mkv +刘捷-谁家燕子不思归,http://em.21dtv.com/songs/60064902.mkv +周华健-世界由你我开始,http://em.21dtv.com/songs/60039295.mkv +糖兄妹-世界也能够感受(演唱会),http://em.21dtv.com/songs/60077636.mkv +杨烈-烧酒一杯烟一支(无原唱),http://em.21dtv.com/songs/60038096.mkv +佚名-世界像一座彩屋,http://em.21dtv.com/songs/60039291.mkv +刘欢-世界需要热心肠,http://em.21dtv.com/songs/60039294.mkv +严欣怡-水晶鞋与玫瑰花,http://em.21dtv.com/songs/60132160.mkv +那吾克热+玉素甫江-四季,http://em.21dtv.com/songs/60109650.mkv +黄凯芹-伤尽我心的说话,http://em.21dtv.com/songs/60037798.mkv +黄凯芹-伤尽我心的说话(演唱会),http://em.21dtv.com/songs/60037797.mkv +张冬玲-谁叫我们是女人,http://em.21dtv.com/songs/60133648.mkv +郎尼阿彬-世界屋脊的女孩,http://em.21dtv.com/songs/60039289.mkv +张宇-谁教我曾经说过,http://em.21dtv.com/songs/60039996.mkv +刘国强-双脚踏上幸福路,http://em.21dtv.com/songs/60108335.mkv +佚名-双脚踏上幸福路,http://em.21dtv.com/songs/60039848.mkv +叶丽仪+陈洁灵-世间始终你最好(演唱会),http://em.21dtv.com/songs/60077632.mkv +黄耀明+杨千嬅-世间始终你最好,http://em.21dtv.com/songs/60039245.mkv +水木年华-世界上最美的花,http://em.21dtv.com/songs/60116090.mkv +X玖少年团-世界上唯一的花,http://em.21dtv.com/songs/60134824.mkv +华晨宇-世界是个动物园,http://em.21dtv.com/songs/60122544.mkv +彭家丽-世界仍是我们的,http://em.21dtv.com/songs/60039281.mkv +杨一郎-世界请你去珍惜,http://em.21dtv.com/songs/60103381.mkv +郑晟-谁叫你是男人呢,http://em.21dtv.com/songs/60077697.mkv +李克勤-世界末日的早上(演唱会),http://em.21dtv.com/songs/60039276.mkv +雷佳-山间铃响马帮来,http://em.21dtv.com/songs/60104582.mkv +何韵诗+梁汉文-十九楼半的夏天,http://em.21dtv.com/songs/60092263.mkv +佚名-数九寒天下大雪,http://em.21dtv.com/songs/60039805.mkv +傅秋英-四季花开望哥来,http://em.21dtv.com/songs/60040690.mkv +草蜢-世界会变得很美,http://em.21dtv.com/songs/60039267.mkv +草蜢-世界会变得很美(演唱会),http://em.21dtv.com/songs/60039266.mkv +周杰伦-双截棍 惊叹号,http://em.21dtv.com/songs/60125313.mkv +杨丞琳-晒焦的一双耳朵,http://em.21dtv.com/songs/60063245.mkv +王铮亮-时间都去哪儿了,http://em.21dtv.com/songs/60135572.mkv +泳儿+洪杰-时间都去哪儿了,http://em.21dtv.com/songs/60113806.mkv +金霖-时间都去哪儿了,http://em.21dtv.com/songs/60110595.mkv +周笔畅-时间都去哪儿了(HD),http://em.21dtv.com/songs/10012746.mkv +姚贝娜-时间都去哪儿了,http://em.21dtv.com/songs/60108412.mkv +汪小敏-时间都去哪儿了,http://em.21dtv.com/songs/60106063.mkv +周笔畅-时间都去哪儿了,http://em.21dtv.com/songs/60098198.mkv +王铮亮-时间都去哪儿了,http://em.21dtv.com/songs/60067430.mkv +徐小清-时间都到哪去了,http://em.21dtv.com/songs/60118582.mkv +叶欢-时间带不走空间(无原唱),http://em.21dtv.com/songs/60039124.mkv +庄心妍-时间长了受不了,http://em.21dtv.com/songs/60072400.mkv +蔡济文-时间冲不淡思念,http://em.21dtv.com/songs/60039123.mkv +甲子蕙-烧酒伴我过一生,http://em.21dtv.com/songs/60038084.mkv +央金拉姆-三江并流的地方,http://em.21dtv.com/songs/60037235.mkv +MICHAEL BOLTON-said i loved you but i lied,http://em.21dtv.com/songs/60004790.mkv +U2-stuck in a moment you cant ge,http://em.21dtv.com/songs/60005301.mkv +佚名-社会主义放光芒,http://em.21dtv.com/songs/60038236.mkv +欣哲-说好再见就不见,http://em.21dtv.com/songs/60068679.mkv +郎A-伤害自己成全她,http://em.21dtv.com/songs/60067402.mkv +樊少华-说好一起到白头,http://em.21dtv.com/songs/60127131.mkv +新裤子乐队-生活因你而火热,http://em.21dtv.com/songs/60123996.mkv +DJ-社会摇[DJ],http://em.21dtv.com/songs/60107404.mkv +河铉雨-Shy Boy,http://em.21dtv.com/songs/60130540.mkv +萧全-社会摇(无损),http://em.21dtv.com/songs/50000248.mkv +DJ Mr.An-社会摇 第一季,http://em.21dtv.com/songs/50000240.mkv +DJ Mr.An-社会摇 第五季,http://em.21dtv.com/songs/50000242.mkv +DJ Mr.An-社会摇 第四季,http://em.21dtv.com/songs/50000244.mkv +DJ Mr.An-社会摇 第十季,http://em.21dtv.com/songs/50000243.mkv +DJ Mr.An-社会摇 第二季,http://em.21dtv.com/songs/50000241.mkv +高原-谁会像我这样等,http://em.21dtv.com/songs/60039990.mkv +曾敏杰-伤痕,http://em.21dtv.com/songs/60126965.mkv +赵咏华-伤害我你快乐吗,http://em.21dtv.com/songs/60037783.mkv +Stormzy-Shut Up,http://em.21dtv.com/songs/60125007.mkv +彭佳慧-Shut Up,http://em.21dtv.com/songs/60112698.mkv +萧淑慎+Super Group超级天团-Shut Up,http://em.21dtv.com/songs/60103548.mkv +NO NAME-守护天使的告白,http://em.21dtv.com/songs/60039682.mkv +王子鸣-说好秋天就回来,http://em.21dtv.com/songs/60040377.mkv +林峰-Show Me,http://em.21dtv.com/songs/60119703.mkv +羽泉-伤痕,http://em.21dtv.com/songs/60129502.mkv +十三狼-生活就像一桌菜,http://em.21dtv.com/songs/60106658.mkv +群星-生活就像一首歌,http://em.21dtv.com/songs/60091860.mkv +刘德华-生活就象一首歌,http://em.21dtv.com/songs/60038537.mkv +王进-生活就是这样子,http://em.21dtv.com/songs/60112857.mkv +赵本山-生活就是这么怪,http://em.21dtv.com/songs/60038536.mkv +龙啸-说好今生不分手,http://em.21dtv.com/songs/60077728.mkv +M-GIRLS+四千金-四海欢腾迎新年,http://em.21dtv.com/songs/60040666.mkv +王艺函-守候和你的回忆,http://em.21dtv.com/songs/60039672.mkv +朱逢博-四化花开幸福来(演唱会),http://em.21dtv.com/songs/60040668.mkv +杨培安-说好各走五十步,http://em.21dtv.com/songs/60097875.mkv +文夏-上海归来的莉露,http://em.21dtv.com/songs/60038026.mkv +许志安-谁还敢爱这个人,http://em.21dtv.com/songs/60039984.mkv +王易阳-说好分手不会哭,http://em.21dtv.com/songs/60130588.mkv +Groove Coverage-She(无损),http://em.21dtv.com/songs/50000247.mkv +佚名-四海都有中国人,http://em.21dtv.com/songs/60040665.mkv +晓依-说好不在为你哭,http://em.21dtv.com/songs/60077727.mkv +熊思嘉+权琳丽-山歌追着太阳唱,http://em.21dtv.com/songs/60086803.mkv +花鼓戏-四告丈失李贤明,http://em.21dtv.com/songs/60090153.mkv +聂诗-山谷中的草房子,http://em.21dtv.com/songs/60120866.mkv +佚名-颂歌一曲唱韶山,http://em.21dtv.com/songs/60040803.mkv +阿宝-山歌一曲唱纲要,http://em.21dtv.com/songs/60037631.mkv +童唱-十个印地安男孩,http://em.21dtv.com/songs/60038963.mkv +佚名-山歌越唱越精神,http://em.21dtv.com/songs/60037636.mkv +SHINE-上个夏天的火花,http://em.21dtv.com/songs/60038019.mkv +李福山-颂歌献给毛主席,http://em.21dtv.com/songs/60040802.mkv +吉克隽逸-傻瓜,http://em.21dtv.com/songs/60125271.mkv +张杰+吴静艳-傻瓜,http://em.21dtv.com/songs/60111880.mkv +马条-傻瓜,http://em.21dtv.com/songs/60109031.mkv +冯乐永+曹秀琴-隋宫十载菱花梦(戏曲),http://em.21dtv.com/songs/60092335.mkv +罗家宝+蒋文端-隋宫十载凌花梦,http://em.21dtv.com/songs/60040911.mkv +曲丹-山歌牵出月亮来(演唱会),http://em.21dtv.com/songs/60099272.mkv +晓依-时光飘过三十年,http://em.21dtv.com/songs/60115967.mkv +李清影-山歌美景醉天下,http://em.21dtv.com/songs/60105983.mkv +张鹏华邵-输给了自己的人,http://em.21dtv.com/songs/60113504.mkv +赵学而-输给恋爱的女人,http://em.21dtv.com/songs/60039751.mkv +周笔畅-时光机与流浪者,http://em.21dtv.com/songs/60039107.mkv +曾一鸣-时光尽头的恋人,http://em.21dtv.com/songs/60121741.mkv +张清芳-是该结束的时候,http://em.21dtv.com/songs/60039436.mkv +一铺清唱-十个救火的少年,http://em.21dtv.com/songs/60130027.mkv +达明一派-十个救火的少年(演唱会),http://em.21dtv.com/songs/60038960.mkv +TWINS+AT17-十个救火的少年(演唱会),http://em.21dtv.com/songs/60038959.mkv +糖兄妹-十个救火的少年(演唱会),http://em.21dtv.com/songs/60069815.mkv +龚月-山歌好比春江水,http://em.21dtv.com/songs/60104644.mkv +李宇春-山歌好比春江水,http://em.21dtv.com/songs/60089952.mkv +景仪-山歌好比春江水,http://em.21dtv.com/songs/60089929.mkv +宁可-山歌好比春江水,http://em.21dtv.com/songs/60077494.mkv +于文华-山歌好比春江水,http://em.21dtv.com/songs/60037628.mkv +斯琴格日乐-山歌好比春江水(演唱会),http://em.21dtv.com/songs/60037626.mkv +水晶乐坊-山歌好比春江水(演唱会),http://em.21dtv.com/songs/60037625.mkv +唐美华-笙歌独奏为期伴,http://em.21dtv.com/songs/60133516.mkv +陈妍希-叔公的小城故事,http://em.21dtv.com/songs/60077118.mkv +倪力-时光倒流70年,http://em.21dtv.com/songs/60069817.mkv +瞿颖-时光倒流二十年,http://em.21dtv.com/songs/60039101.mkv +陈奕迅-时光倒流二十年,http://em.21dtv.com/songs/60039100.mkv +彝人传奇-山歌出在淤泥河,http://em.21dtv.com/songs/60120541.mkv +拉毛王旭-山歌唱出幸福来,http://em.21dtv.com/songs/60112712.mkv +周鼎棋-山歌唱出好兆头,http://em.21dtv.com/songs/60126727.mkv +佚名-山歌唱出好兆头,http://em.21dtv.com/songs/60037624.mkv +孙维良-山歌唱出好兆头,http://em.21dtv.com/songs/60037623.mkv +越剧-深宫不识征战苦,http://em.21dtv.com/songs/60038285.mkv +王光伟-说过不会让你哭,http://em.21dtv.com/songs/60077725.mkv +艳阳天-山歌不唱不快活,http://em.21dtv.com/songs/60037622.mkv +佚名-三分之一的时间,http://em.21dtv.com/songs/60037194.mkv +杨千嬅-三分钟恋爱热度(演唱会),http://em.21dtv.com/songs/60037201.mkv +江美琪+NO NAME-是否这就是爱情,http://em.21dtv.com/songs/60039432.mkv +山鹰组合-山风一样的自由,http://em.21dtv.com/songs/60106799.mkv +沉方如-是否有爱才完整(无原唱),http://em.21dtv.com/songs/60039430.mkv +陈松伶-是否,http://em.21dtv.com/songs/60123303.mkv +杨钰莹-是否我不该等你(演唱会),http://em.21dtv.com/songs/60039428.mkv +张蔷-手扶拖拉机斯基,http://em.21dtv.com/songs/60096291.mkv +段千寻+蓝雨-说分手就放开手,http://em.21dtv.com/songs/60040365.mkv +韩梅春-手抚琴儿心悲惨,http://em.21dtv.com/songs/60088952.mkv +陈升+吴蓓雅-是否,你还记得,http://em.21dtv.com/songs/60117326.mkv +蒙面哥-是否会在我身边,http://em.21dtv.com/songs/60126143.mkv +李正-是否还能在一起,http://em.21dtv.com/songs/60085724.mkv +毛宁-是否还会想起我,http://em.21dtv.com/songs/60039420.mkv +张寒-三分感情七分骗,http://em.21dtv.com/songs/60112666.mkv +李行亮-三分感情七分骗,http://em.21dtv.com/songs/60077449.mkv +徐千惠-是非功过任评说,http://em.21dtv.com/songs/60039406.mkv +张冬玲-三分爱情七分骗,http://em.21dtv.com/songs/60102199.mkv +Akb48-チャンスの顺番,http://em.21dtv.com/songs/60121207.mkv +毛泽侨-十二月三十二号,http://em.21dtv.com/songs/60001359.mkv +群星-十二生肖贺岁歌,http://em.21dtv.com/songs/60077597.mkv +八大巨星-十二生肖大拜年,http://em.21dtv.com/songs/60077596.mkv +VIVIDIVA-Service,http://em.21dtv.com/songs/60115645.mkv +小肥-十二年没有冬天,http://em.21dtv.com/songs/60038938.mkv +TURN-十二点你就离开Show,http://em.21dtv.com/songs/60087187.mkv +苏永康-上帝制造您给我,http://em.21dtv.com/songs/60038018.mkv +王铮亮-数到三一起放手,http://em.21dtv.com/songs/60088327.mkv +王铮亮-数到三 一起放手,http://em.21dtv.com/songs/60039798.mkv +童唱-拾稻穗的小姑娘,http://em.21dtv.com/songs/60039175.mkv +庾澄庆-山顶上的黑狗哥,http://em.21dtv.com/songs/60087782.mkv +小来哥-谁的青春不迷茫,http://em.21dtv.com/songs/60132388.mkv +王铮亮-上帝派我来爱你,http://em.21dtv.com/songs/60038014.mkv +吴国华+曹秀琴-苏东坡梦会朝云(一),http://em.21dtv.com/songs/60040813.mkv +吴国华+曹秀琴-苏东坡梦会朝云(二),http://em.21dtv.com/songs/60040812.mkv +TWINS-士多啤梨苹果橙,http://em.21dtv.com/songs/60039208.mkv +TWINS-士多啤梨苹果橙(演唱会),http://em.21dtv.com/songs/60039207.mkv +TWINS+AT17-士多啤梨苹果橙(演唱会),http://em.21dtv.com/songs/60039206.mkv +栾生-苏东坡的话凄凉,http://em.21dtv.com/songs/60125808.mkv +蔡秋凤-爽到你艰苦到我,http://em.21dtv.com/songs/60039917.mkv +李欣怡-善待你的前女友,http://em.21dtv.com/songs/60125704.mkv +周笔畅-谁动了我的琴弦,http://em.21dtv.com/songs/60039972.mkv +丽娜-谁动了我的奶酪,http://em.21dtv.com/songs/60039971.mkv +魏健-谁动了你的裙子,http://em.21dtv.com/songs/60118199.mkv +于闯-说多了都是眼泪,http://em.21dtv.com/songs/60077724.mkv +明圣凯-谁都可以爱的起,http://em.21dtv.com/songs/60039980.mkv +龙思雨-圣诞节的平安夜,http://em.21dtv.com/songs/60130950.mkv +苏永康-上帝创造你给我,http://em.21dtv.com/songs/60038009.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-十大财神到我家,http://em.21dtv.com/songs/60077594.mkv +佚名-四渡赤水出奇兵,http://em.21dtv.com/songs/60040658.mkv +龙梅子+冷漠-谁都不要说分手,http://em.21dtv.com/songs/60130953.mkv +冷漠+龙梅子-谁都不要说分手,http://em.21dtv.com/songs/60072417.mkv +佚名-谁都不能欺负它,http://em.21dtv.com/songs/60039978.mkv +易欣-谁都不必说抱歉,http://em.21dtv.com/songs/60039975.mkv +段千寻-谁都不必说抱歉,http://em.21dtv.com/songs/60039974.mkv +赵青岳-谁都不爱只爱你,http://em.21dtv.com/songs/60132936.mkv +逗号-山村有位好姑娘,http://em.21dtv.com/songs/60086800.mkv +佚名-三春杨柳黄莺唱,http://em.21dtv.com/songs/60037181.mkv +尹磊磊-首长问我苦不苦,http://em.21dtv.com/songs/60121605.mkv +佚名-四川太阳喜洋洋,http://em.21dtv.com/songs/60040649.mkv +佚名-说出来谁会相信(无原唱),http://em.21dtv.com/songs/60040358.mkv +阿影-谁曾路过你的心,http://em.21dtv.com/songs/60133028.mkv +骆素芬-山楂花开见到你,http://em.21dtv.com/songs/60133110.mkv +花鼓戏-手扯哥嫂把话论,http://em.21dtv.com/songs/60090163.mkv +佚名-说不完的我爱你,http://em.21dtv.com/songs/60040355.mkv +周华健-是不是只要有爱,http://em.21dtv.com/songs/60039404.mkv +越剧-手抱孙子笑煞人,http://em.21dtv.com/songs/60039606.mkv +佚名-谁不说咱家乡好,http://em.21dtv.com/songs/60039950.mkv +诗朵雅-是不是我还爱你,http://em.21dtv.com/songs/60118913.mkv +陶晶莹-是不是听你歌唱,http://em.21dtv.com/songs/60039394.mkv +崔苗-陕北是个好地方,http://em.21dtv.com/songs/60123876.mkv +王婧-是不是爱情来过,http://em.21dtv.com/songs/60039389.mkv +方琦-谁不说俺家乡好,http://em.21dtv.com/songs/60128049.mkv +邓子非-谁不说俺家乡好,http://em.21dtv.com/songs/60111427.mkv +童丽-谁不说俺家乡好,http://em.21dtv.com/songs/60077695.mkv +彭丽媛-谁不说俺家乡好,http://em.21dtv.com/songs/60039949.mkv +杜康-谁不说俺家乡好,http://em.21dtv.com/songs/60039948.mkv +姜波+胡馨月-三百六十五条河,http://em.21dtv.com/songs/60094045.mkv +塔斯肯-三百六十五里路,http://em.21dtv.com/songs/60081496.mkv +文章-三百六十五里路,http://em.21dtv.com/songs/60037172.mkv +毛宁+吴倩莲-三百六十五里路,http://em.21dtv.com/songs/60037171.mkv +景仪-三百六十五里路,http://em.21dtv.com/songs/60037170.mkv +包娜娜-三百六十五里路,http://em.21dtv.com/songs/60037169.mkv +张行+杨波-三百六十五里路(演唱会),http://em.21dtv.com/songs/60037168.mkv +苏有朋-三百六十五个梦,http://em.21dtv.com/songs/60091923.mkv +萧全-势不可挡爱上你,http://em.21dtv.com/songs/60039356.mkv +慕容晓晓-收不回的漂流瓶,http://em.21dtv.com/songs/60062774.mkv +卓依婷-十八姑娘一蕊花,http://em.21dtv.com/songs/60038910.mkv +罗时丰-十八姑娘一朵花,http://em.21dtv.com/songs/60134083.mkv +凤飞飞-十八姑娘一朵花,http://em.21dtv.com/songs/60077591.mkv +林淑蓉-十八姑娘一朵花,http://em.21dtv.com/songs/60038909.mkv +邓丽君-十八姑娘一朵花,http://em.21dtv.com/songs/60038908.mkv +陈小云-十八姑娘一朵花,http://em.21dtv.com/songs/60038907.mkv +蔡琴-十八姑娘一朵花(演唱会),http://em.21dtv.com/songs/60038906.mkv +冯素波+陈宝珠-十八姑娘思婚嫁(演唱会),http://em.21dtv.com/songs/60038905.mkv +佚名-十八姑娘当青春,http://em.21dtv.com/songs/60038904.mkv +张信哲-舍不得你要离开(无原唱),http://em.21dtv.com/songs/60038215.mkv +张静-舍不得你离开我,http://em.21dtv.com/songs/60126905.mkv +华帝-舍不得就别放手(演唱会),http://em.21dtv.com/songs/60085691.mkv +于晋+李筝-谁把爱情当游戏,http://em.21dtv.com/songs/60112492.mkv +糯米团-三八阿花吹喇叭,http://em.21dtv.com/songs/60085666.mkv +DEARS-Say Yes,http://em.21dtv.com/songs/60118250.mkv +王铮亮-Say Yes,http://em.21dtv.com/songs/60110411.mkv +I'M-Save Me,http://em.21dtv.com/songs/60134698.mkv +西内まりや-Save me,http://em.21dtv.com/songs/60116237.mkv +张清芳+曹俊鸿-是爱人还是朋友,http://em.21dtv.com/songs/60039383.mkv +刘浩龙-神啊求求让我睡,http://em.21dtv.com/songs/60038437.mkv +刘浩龙-神啊求求让我睡(HD演唱会),http://em.21dtv.com/songs/60038436.mkv +陈明章-苏澳来乁尾班车,http://em.21dtv.com/songs/60040811.mkv +王爱华-深爱化作相思债,http://em.21dtv.com/songs/60083777.mkv +林雨-是爱都有三分毒,http://em.21dtv.com/songs/60112030.mkv +孙维良-人在他乡喊故乡,http://em.21dtv.com/songs/60077368.mkv +从酋长到球长(李琦)-人质,http://em.21dtv.com/songs/60128761.mkv +沈文程-忍着目屎的烧酒(无原唱),http://em.21dtv.com/songs/60036517.mkv +关正杰+雷安娜-人在旅途洒泪时,http://em.21dtv.com/songs/60036492.mkv +张伟文+韦绮姗-人在旅途洒泪时(演唱会),http://em.21dtv.com/songs/60036491.mkv +雷安娜-人在旅途洒泪时(演唱会),http://em.21dtv.com/songs/60036490.mkv +张惠琴-阮置故乡等待你,http://em.21dtv.com/songs/60123920.mkv +王识贤-认真的人最快乐,http://em.21dtv.com/songs/60036553.mkv +王汇筑-认真的人就输了,http://em.21dtv.com/songs/60100926.mkv +陈明章-阮最爱的玫瑰花,http://em.21dtv.com/songs/60037087.mkv +朱跃明+戴敏-人有主张有胆量,http://em.21dtv.com/songs/60085644.mkv +杨钧钧-容颜只为相思老(无原唱),http://em.21dtv.com/songs/60036693.mkv +韦绮姗-日月夜星也无悔,http://em.21dtv.com/songs/60093507.mkv +阎维文-日夜想念毛主席,http://em.21dtv.com/songs/60036670.mkv +孙鸣杰-日夜想念毛主席,http://em.21dtv.com/songs/60036669.mkv +王小荣-日夜想的都是你,http://em.21dtv.com/songs/60120758.mkv +孙琳-容易受伤的女人,http://em.21dtv.com/songs/60092508.mkv +柳影虹-容易受伤的女人(演唱会),http://em.21dtv.com/songs/60077391.mkv +王菲-容易受伤的女人,http://em.21dtv.com/songs/60036697.mkv +邝美云-容易受伤的女人,http://em.21dtv.com/songs/60036696.mkv +高胜美-容易受伤的女人,http://em.21dtv.com/songs/60036695.mkv +王菲-容易受伤的女人(演唱会),http://em.21dtv.com/songs/60036694.mkv +刘思伟-容易受伤的男人,http://em.21dtv.com/songs/60066276.mkv +豫剧-人也留来地也留,http://em.21dtv.com/songs/60134536.mkv +孟庭苇-日以继夜的想你,http://em.21dtv.com/songs/60036671.mkv +清水翔太-レイニーブルー(演唱会),http://em.21dtv.com/songs/60074270.mkv +ベッキー-ヤルキスイッチ,http://em.21dtv.com/songs/60074266.mkv +NOT YET-ペラペラペラオ,http://em.21dtv.com/songs/60074258.mkv +AKB48-ここにいたこと,http://em.21dtv.com/songs/60074232.mkv +三兄弟组合-热血忠魂天地间,http://em.21dtv.com/songs/60036299.mkv +吴克羣+任贤齐-任逍遥+心太软,http://em.21dtv.com/songs/60094024.mkv +方瑞娥+高向鹏-日想夜梦年年等,http://em.21dtv.com/songs/60036667.mkv +史丹利-热血大叔史丹利,http://em.21dtv.com/songs/60077342.mkv +花世纪+史丹利-热血大叔史丹利,http://em.21dtv.com/songs/60072342.mkv +许志安-让我终于拥有你,http://em.21dtv.com/songs/60036198.mkv +杨千嬅-让我重新爱上你,http://em.21dtv.com/songs/60036199.mkv +月光星子-让我再看你一眼,http://em.21dtv.com/songs/60036195.mkv +宇涩-让我再看你一眼,http://em.21dtv.com/songs/60036194.mkv +郭峰-让我再看你一眼,http://em.21dtv.com/songs/60036193.mkv +阿茹娜+乌日格-让我再见你一面,http://em.21dtv.com/songs/60064790.mkv +韩晓-让我再唱一首歌,http://em.21dtv.com/songs/60088951.mkv +贾争艳-让我再爱你一次,http://em.21dtv.com/songs/60116261.mkv +佟海波-让我再爱你一次,http://em.21dtv.com/songs/60036191.mkv +程罕华-让我再爱你一次,http://em.21dtv.com/songs/60062299.mkv +陈玉建+王语心-让我一生爱着你,http://em.21dtv.com/songs/60120093.mkv +周影-让我愉快爱一次,http://em.21dtv.com/songs/60036190.mkv +金志文-让我一次爱个够,http://em.21dtv.com/songs/60117296.mkv +孙露-让我一次爱个够,http://em.21dtv.com/songs/60115847.mkv +谭维维+范政-让我一次爱个够,http://em.21dtv.com/songs/60112256.mkv +常石磊+萨顶顶-让我一次爱个够,http://em.21dtv.com/songs/60098318.mkv +萧敬腾+唐一嘉-让我一次爱个够,http://em.21dtv.com/songs/60094667.mkv +妥云福-让我一次爱个够,http://em.21dtv.com/songs/60083704.mkv +孙露-让我一次爱个够,http://em.21dtv.com/songs/60077334.mkv +黄绮珊-让我一次爱个够,http://em.21dtv.com/songs/60077333.mkv +庾澄庆+吴莫愁-让我一次爱个够,http://em.21dtv.com/songs/60062152.mkv +佚名-让我一次爱个够,http://em.21dtv.com/songs/60036183.mkv +庾澄庆-让我一次爱个够(演唱会)(无原唱),http://em.21dtv.com/songs/60036182.mkv +郑智化-让我拥抱你入梦,http://em.21dtv.com/songs/60036186.mkv +李勇-让我心跳的情人,http://em.21dtv.com/songs/60069751.mkv +林翠萍-让我想起爱的歌,http://em.21dtv.com/songs/60088122.mkv +俞灏明+魏晨+朱梓骁+张翰-让我为你唱首歌,http://em.21dtv.com/songs/60036177.mkv +侯玉斌-让我忘了你是谁,http://em.21dtv.com/songs/60118354.mkv +邱永传-让我忘记你是谁,http://em.21dtv.com/songs/60083703.mkv +张信哲-让我忘记你的脸,http://em.21dtv.com/songs/60036174.mkv +陈瑞+田丰-让我伤心的玫瑰,http://em.21dtv.com/songs/60036171.mkv +万芳-让我送你花一朵,http://em.21dtv.com/songs/60069750.mkv +余天+余筱萍-让温柔与众不同,http://em.21dtv.com/songs/60036112.mkv +郎郎-让我牵着你的手,http://em.21dtv.com/songs/60104481.mkv +佚名-让我请你跳支舞(无原唱),http://em.21dtv.com/songs/60036168.mkv +小嘉-让我陪在你身旁,http://em.21dtv.com/songs/60036165.mkv +任轩萱-让我们一起走过,http://em.21dtv.com/songs/60077330.mkv +苏小艾-让我们一起摇摆,http://em.21dtv.com/songs/60111375.mkv +李响-让我们一起前行,http://em.21dtv.com/songs/60085638.mkv +群星-让我们一起前行,http://em.21dtv.com/songs/60067363.mkv +邓小龙-让我们忘掉悲伤,http://em.21dtv.com/songs/60077328.mkv +杨廷廷-让我们忘掉悲伤,http://em.21dtv.com/songs/60069748.mkv +龙飘飘-让我默默的离开,http://em.21dtv.com/songs/60068617.mkv +曾辉彬-让我默默地爱你,http://em.21dtv.com/songs/60036160.mkv +童唱-让我们荡起双桨,http://em.21dtv.com/songs/60036150.mkv +董文华-让我们荡起双桨,http://em.21dtv.com/songs/60036149.mkv +花儿乐队-让我们荡起双桨(演唱会),http://em.21dtv.com/songs/60036148.mkv +青春美少女-让我们荡起双浆,http://em.21dtv.com/songs/60036147.mkv +吴介贤-让我们荡起双桨(演唱会),http://em.21dtv.com/songs/60072336.mkv +陈奕迅-让我留在你身边,http://em.21dtv.com/songs/60133040.mkv +唐汉霄-让我留在你身边,http://em.21dtv.com/songs/60131281.mkv +陈奕迅-让我留在你身边,http://em.21dtv.com/songs/60129731.mkv +郭艺-让我拉着你的手,http://em.21dtv.com/songs/60079899.mkv +钟志刚+曹惠婷-让我记住你的好,http://em.21dtv.com/songs/60114840.mkv +谭咏麟-让我继续忘记你,http://em.21dtv.com/songs/60093216.mkv +佚名-让我继续忘记你(无原唱),http://em.21dtv.com/songs/60036141.mkv +周华健-让我欢喜让我忧,http://em.21dtv.com/songs/60119355.mkv +孙露-让我欢喜让我忧,http://em.21dtv.com/songs/60115848.mkv +黑妹-让我欢喜让我忧(演唱会),http://em.21dtv.com/songs/60077326.mkv +周华健-让我欢喜让我忧,http://em.21dtv.com/songs/60036139.mkv +佚名-让我欢喜让我忧,http://em.21dtv.com/songs/60036138.mkv +叶倩文-让我欢喜让我忧,http://em.21dtv.com/songs/60036137.mkv +高胜美-让我欢喜让我忧,http://em.21dtv.com/songs/60036136.mkv +叶倩文-让我欢喜让我愁,http://em.21dtv.com/songs/60090790.mkv +你我及他组合-让我给你唱首歌,http://em.21dtv.com/songs/60083702.mkv +许志安-让我待你好一点,http://em.21dtv.com/songs/60036127.mkv +许志安-让我待你好一点(演唱会),http://em.21dtv.com/songs/60036126.mkv +彭清-若我从未遇见你,http://em.21dtv.com/songs/60129137.mkv +冯博娟-让我此刻不平凡,http://em.21dtv.com/songs/60036124.mkv +廖忠-让我安慰你的心,http://em.21dtv.com/songs/60036118.mkv +佚名-让我爱上你好吗(无原唱),http://em.21dtv.com/songs/60036116.mkv +林峰-让我爱你一小时(演唱会),http://em.21dtv.com/songs/60062642.mkv +林峰-让我爱你一小时,http://em.21dtv.com/songs/60061531.mkv +林翠萍-让我爱你到永远,http://em.21dtv.com/songs/60091498.mkv +朱业晋-让我爱你多一点,http://em.21dtv.com/songs/60115993.mkv +许靖韵-R U OK?,http://em.21dtv.com/songs/60104433.mkv +泫雅-Run&Run,http://em.21dtv.com/songs/60116110.mkv +顽童MJ6+J.SHEON-Running,http://em.21dtv.com/songs/60116377.mkv +金韩一-Runaway,http://em.21dtv.com/songs/60112321.mkv +Arsenium-Rumadai,http://em.21dtv.com/songs/60131036.mkv +梁焕波+温瑞鸳-日头一出一点红(无原唱),http://em.21dtv.com/songs/60036664.mkv +刘欢-热天热地热太阳,http://em.21dtv.com/songs/60036283.mkv +刘一祯-人生最美第二春,http://em.21dtv.com/songs/60077363.mkv +黄妙如-人生自古谁无死,http://em.21dtv.com/songs/60090341.mkv +吴淑敏-阮是用心来爱你,http://em.21dtv.com/songs/60037081.mkv +谢雷-榕树下+北国之春(演唱会),http://em.21dtv.com/songs/60036700.mkv +程晨-人说山西好风光,http://em.21dtv.com/songs/60111333.mkv +张也-人说山西好风光,http://em.21dtv.com/songs/60036468.mkv +佚名-人说山西好风光,http://em.21dtv.com/songs/60036467.mkv +阎维文-人说山西好风光,http://em.21dtv.com/songs/60036466.mkv +彭丽媛-人说山西好风光,http://em.21dtv.com/songs/60036465.mkv +玩具船长-人生是七转八起,http://em.21dtv.com/songs/60119838.mkv +唐美华-人生若只如初见,http://em.21dtv.com/songs/60133514.mkv +望海高歌-人生若只如初见,http://em.21dtv.com/songs/60129204.mkv +宇桐非-人生若只如初见,http://em.21dtv.com/songs/60121583.mkv +王爱华-人生若只如初见,http://em.21dtv.com/songs/60112849.mkv +望海高歌-人生若只如初见,http://em.21dtv.com/songs/60112735.mkv +万传武-人生若只如初见,http://em.21dtv.com/songs/60101858.mkv +王韵壹-人生若只如初见,http://em.21dtv.com/songs/60086783.mkv +新子-人生若只如初见,http://em.21dtv.com/songs/60077359.mkv +佚名-人生亲像扮电影,http://em.21dtv.com/songs/60036433.mkv +王瑞霞-人生亲像扮电影,http://em.21dtv.com/songs/60036432.mkv +叶倩文-人生其实很简单,http://em.21dtv.com/songs/60036431.mkv +梁雁翎-若是你真想分开,http://em.21dtv.com/songs/60037112.mkv +SHINE-若是你在我身边,http://em.21dtv.com/songs/60037111.mkv +任贤齐-若是你在我身边(演唱会),http://em.21dtv.com/songs/60037110.mkv +曹寅-若是你能遇见她,http://em.21dtv.com/songs/60083737.mkv +关淑怡-仍是那么深爱你,http://em.21dtv.com/songs/60036598.mkv +晓依-让思念代替想你,http://em.21dtv.com/songs/60072334.mkv +程楚煜-让生命再走一回,http://em.21dtv.com/songs/60100359.mkv +郑莉+周强-让生命之舟远航,http://em.21dtv.com/songs/60036100.mkv +姚斯婷-让生命变得辉煌,http://em.21dtv.com/songs/60113388.mkv +雷安娜+黎小田-人生旅途洒泪时,http://em.21dtv.com/songs/60093502.mkv +施文彬-阮是快乐在爱你,http://em.21dtv.com/songs/60037079.mkv +李琛-人生就像一盘棋,http://em.21dtv.com/songs/60089346.mkv +于江-人生就像一盘棋,http://em.21dtv.com/songs/60089112.mkv +张玮-让世界为你转身,http://em.21dtv.com/songs/60077320.mkv +艾歌-人生就是一场梦,http://em.21dtv.com/songs/60086782.mkv +袁泉-人生健康最宝贵,http://em.21dtv.com/songs/60112223.mkv +陈淑芳-人生结局要打拼,http://em.21dtv.com/songs/60036417.mkv +流苏-人生何处是春天,http://em.21dtv.com/songs/60081101.mkv +钟明秋-人生何处不相逢,http://em.21dtv.com/songs/60114158.mkv +费玉清-人生何处不相逢,http://em.21dtv.com/songs/60036414.mkv +陈慧娴-人生何处不相逢,http://em.21dtv.com/songs/60036413.mkv +陈慧娴-人生何处不相逢(演唱会),http://em.21dtv.com/songs/60036412.mkv +孙浩然-人生好比一杯酒,http://em.21dtv.com/songs/60121567.mkv +萧煌奇+杨培安-燃烧孤枕难眠,http://em.21dtv.com/songs/60098737.mkv +阿毛-人生得意酒一杯,http://em.21dtv.com/songs/60129714.mkv +佚名-仍是对她一般好,http://em.21dtv.com/songs/60036595.mkv +沈建豪-若是ㄟ冻娶到你,http://em.21dtv.com/songs/60114648.mkv +沈建豪-若是ㄟ冻娶到你,http://em.21dtv.com/songs/60113791.mkv +枫舞-人生道路快乐走,http://em.21dtv.com/songs/60117853.mkv +林玉英-人生本是一场梦(无原唱),http://em.21dtv.com/songs/60036395.mkv +佚名-燃烧不成的爱情(无原唱),http://em.21dtv.com/songs/60036002.mkv +张华+潴瀦-阮尚爱听彼条歌,http://em.21dtv.com/songs/60037078.mkv +影视歌曲-人生啊是一个海,http://em.21dtv.com/songs/60087866.mkv +何家劲-认认真真过日子,http://em.21dtv.com/songs/60036538.mkv +郑中基-人若然忘记了爱,http://em.21dtv.com/songs/60036386.mkv +郑中基-人若然忘记了爱(演唱会),http://em.21dtv.com/songs/60036385.mkv +张郎-热热闹闹娶媳妇,http://em.21dtv.com/songs/60118569.mkv +李宝金-日日看妹日日安,http://em.21dtv.com/songs/60036652.mkv +谢其国-日日看妹日日安(无原唱),http://em.21dtv.com/songs/60036651.mkv +黑妹-仍然记得个一次(演唱会),http://em.21dtv.com/songs/60077377.mkv +林子祥-仍然记得个一次,http://em.21dtv.com/songs/60036584.mkv +杜丽莎-仍然记得个一次,http://em.21dtv.com/songs/60036583.mkv +容祖儿-仍然记得个一次(演唱会),http://em.21dtv.com/songs/60036582.mkv +杜丽莎-仍然记得个一次(演唱会),http://em.21dtv.com/songs/60036581.mkv +安雯-人人都说咱俩好(演唱会),http://em.21dtv.com/songs/60036380.mkv +林玉英-人人都是一个佛(无原唱),http://em.21dtv.com/songs/60036378.mkv +与非门-人人都说我爱你,http://em.21dtv.com/songs/60036379.mkv +徐千雅-人人都唱草原风,http://em.21dtv.com/songs/60103301.mkv +大女孩-人人都爱大女孩(绿光+爱的主打歌+三天三夜),http://em.21dtv.com/songs/60097810.mkv +佚名-柔情主义罗曼史,http://em.21dtv.com/songs/60036714.mkv +周彦宏-让全世界都看到,http://em.21dtv.com/songs/60036096.mkv +佚名-人去楼空空寂寂,http://em.21dtv.com/songs/60036374.mkv +文雪雯-人去楼空空寂寂,http://em.21dtv.com/songs/60036373.mkv +钟芝铭-人勤换得满园香,http://em.21dtv.com/songs/60109668.mkv +甄妮+丁马卡度-柔情常在我心间(演唱会),http://em.21dtv.com/songs/60036708.mkv +Conor Maynard-Royalty,http://em.21dtv.com/songs/60119115.mkv +张佑荣-R.O.S.E,http://em.21dtv.com/songs/60111056.mkv +The 1975-Robbers,http://em.21dtv.com/songs/60119198.mkv +侯志坚-让你走我会心疼,http://em.21dtv.com/songs/60036093.mkv +宋荷艺-若你走进我的心,http://em.21dtv.com/songs/60118521.mkv +汪定中-若你真的有想过,http://em.21dtv.com/songs/60125855.mkv +白安-若你真的有想过,http://em.21dtv.com/songs/60104341.mkv +谈芳兵-让你知道我的心,http://em.21dtv.com/songs/60036090.mkv +刘燕-让你也伤透了心,http://em.21dtv.com/songs/60114424.mkv +庾澄庆-让你妈妈new一下,http://em.21dtv.com/songs/60036080.mkv +陈光标-让你快乐让你瘦,http://em.21dtv.com/songs/60123282.mkv +草蜢-让你哭红了眼睛,http://em.21dtv.com/songs/60036078.mkv +梁川宇-让你带走我的心,http://em.21dtv.com/songs/60116072.mkv +满文军-让你的天空最美,http://em.21dtv.com/songs/60036073.mkv +佚名-人民军队忠于党,http://em.21dtv.com/songs/60036365.mkv +佚名-人民海军向前进,http://em.21dtv.com/songs/60036361.mkv +桂雨蒙+孟楠-让每个人都心碎,http://em.21dtv.com/songs/60081543.mkv +信-让每个人都心碎,http://em.21dtv.com/songs/60080312.mkv +沙宝亮-让每个人都心碎,http://em.21dtv.com/songs/60077315.mkv +张惠妹-让每个人都心碎,http://em.21dtv.com/songs/60036066.mkv +黄大炜-让每个人都心碎(无原唱),http://em.21dtv.com/songs/60036065.mkv +彭高平-人民不会忘记你,http://em.21dtv.com/songs/60117750.mkv +黄妃-若没爱你要爱谁,http://em.21dtv.com/songs/60037105.mkv +潘美辰-热浪下为何冰冻(演唱会),http://em.21dtv.com/songs/60036249.mkv +佚名-热泪烫伤我的脸,http://em.21dtv.com/songs/60036251.mkv +逍遥香香-热辣辣的蒙古人,http://em.21dtv.com/songs/60132963.mkv +群星-热力节拍wou bom ba,http://em.21dtv.com/songs/60036252.mkv +杨蔓+雨天-让泪化作相思雨,http://em.21dtv.com/songs/60098518.mkv +庞龙-让泪化作相思雨,http://em.21dtv.com/songs/60036063.mkv +南合文斗-让泪化作相思雨,http://em.21dtv.com/songs/60036062.mkv +成泉-让泪化作相思酒,http://em.21dtv.com/songs/60115960.mkv +白雪-人间自有真情在,http://em.21dtv.com/songs/60036344.mkv +湘齐萌-人间仙境美驼梁,http://em.21dtv.com/songs/60085641.mkv +许云上-让吉他把爱带走,http://em.21dtv.com/songs/60098766.mkv +丽丹-如今谁还记得谁,http://em.21dtv.com/songs/60098072.mkv +卓依婷-日进千乡万里财,http://em.21dtv.com/songs/60077384.mkv +牛欣欣+柳博-日进千乡万里财,http://em.21dtv.com/songs/60064800.mkv +Vance Joy-Riptide,http://em.21dtv.com/songs/60125038.mkv +朝延文-人红枣儿甜又香,http://em.21dtv.com/songs/60089329.mkv +降央卓玛-绒花,http://em.21dtv.com/songs/60111506.mkv +王杰-如何相信这是梦,http://em.21dtv.com/songs/60037011.mkv +孟杨-如何学会忘记你,http://em.21dtv.com/songs/60062767.mkv +阮以伟-让恨像花儿一样,http://em.21dtv.com/songs/60064783.mkv +佚名-人换思想地换装,http://em.21dtv.com/songs/60036324.mkv +李晓-如何让我遇见你,http://em.21dtv.com/songs/60077432.mkv +孙楠-绒花+那些花儿,http://em.21dtv.com/songs/60086785.mkv +情歌对唱-人海难得一知己,http://em.21dtv.com/songs/60133728.mkv +长春虫子-如何能把你忘记,http://em.21dtv.com/songs/60037009.mkv +许志安-如何可以不爱她,http://em.21dtv.com/songs/60037006.mkv +许志安-如何可以不爱她(演唱会),http://em.21dtv.com/songs/60037005.mkv +谢浛露-如何才能留住你,http://em.21dtv.com/songs/60036999.mkv +许强-如何才能不想你,http://em.21dtv.com/songs/60036998.mkv +王建荣-若红尘没有了你,http://em.21dtv.com/songs/60120763.mkv +郭易-如果真有时光机,http://em.21dtv.com/songs/60066283.mkv +黑撒乐队-如果这些都可以,http://em.21dtv.com/songs/60129861.mkv +卢宜均-如果钟楼会说话,http://em.21dtv.com/songs/60131231.mkv +王立荐-如果这就是爱音,http://em.21dtv.com/songs/60107079.mkv +张靓颖-如果这就是爱情,http://em.21dtv.com/songs/60135249.mkv +张靓颖-如果这就是爱情,http://em.21dtv.com/songs/60036983.mkv +谢霆锋-如果只得一星期,http://em.21dtv.com/songs/60036994.mkv +谢霆锋-如果只得一星期(演唱会),http://em.21dtv.com/songs/60036993.mkv +娜丫头-如果真的有如果,http://em.21dtv.com/songs/60130240.mkv +星月组合-如果真的有来生,http://em.21dtv.com/songs/60119612.mkv +刘宏杰-如果真的有来生,http://em.21dtv.com/songs/60087390.mkv +江南-如果真的有来生,http://em.21dtv.com/songs/60036991.mkv +孙露-如果这都不算爱,http://em.21dtv.com/songs/60115814.mkv +张学友-如果这都不算爱,http://em.21dtv.com/songs/60036982.mkv +伍佰-如果这都不算爱(演唱会),http://em.21dtv.com/songs/60036981.mkv +陈奕迅-如果这都不算爱(演唱会),http://em.21dtv.com/songs/60036980.mkv +王思远-如果再次奔向你,http://em.21dtv.com/songs/60130587.mkv +王思远-如果再次奔向你,http://em.21dtv.com/songs/60113861.mkv +吴奇隆-如果缘只到遇见(HD),http://em.21dtv.com/songs/10012732.mkv +吴奇隆-如果缘只到遇见,http://em.21dtv.com/songs/60099865.mkv +吴奇隆+严艺丹-如果缘只到遇见,http://em.21dtv.com/songs/60099139.mkv +培源-如果有一种泪水,http://em.21dtv.com/songs/60061547.mkv +严淑明-如果有天花开了,http://em.21dtv.com/songs/60036966.mkv +王文浩-如果一生有你陪,http://em.21dtv.com/songs/60131659.mkv +张智航-如果一生有你陪,http://em.21dtv.com/songs/60068634.mkv +郭富城-如果一世得不到,http://em.21dtv.com/songs/60093355.mkv +海哲明-如果有你陪着我,http://em.21dtv.com/songs/60085659.mkv +冷漠-如果有那么一天,http://em.21dtv.com/songs/60099784.mkv +吴听彻-如果眼泪不记得,http://em.21dtv.com/songs/60077423.mkv +赵鑫-如果我有一千万,http://em.21dtv.com/songs/60111419.mkv +崔秀丽-如果我有超能力,http://em.21dtv.com/songs/60132412.mkv +曾国珲-如果我说我爱你,http://em.21dtv.com/songs/60077422.mkv +周晓鸥-如果我是梁山伯,http://em.21dtv.com/songs/60036932.mkv +SIS乐印姐妹-如果我是个男孩,http://em.21dtv.com/songs/60109112.mkv +MR.-如果我是陈奕迅,http://em.21dtv.com/songs/60036931.mkv +王笠人-如果我们再相遇,http://em.21dtv.com/songs/60116160.mkv +王笠人-如果我们再相遇,http://em.21dtv.com/songs/60114689.mkv +陈慧琳-如果我们在恋爱,http://em.21dtv.com/songs/60036928.mkv +孟杨-如果我们一样大,http://em.21dtv.com/songs/60101624.mkv +于子将-如果我没有很帅,http://em.21dtv.com/songs/60128749.mkv +谭维维-如果我没有爱过,http://em.21dtv.com/songs/60036923.mkv +谭维维-如果我没有爱过(演唱会),http://em.21dtv.com/songs/60036922.mkv +二龙湖浩哥+杜歌+包池-如果我们是兄弟,http://em.21dtv.com/songs/60116525.mkv +张以泓-如果我们换一换,http://em.21dtv.com/songs/60077421.mkv +郑秀文-如果我们不再见,http://em.21dtv.com/songs/60036925.mkv +郑秀文-如果我们不再见(演唱会),http://em.21dtv.com/songs/60036924.mkv +乔冠霖-如果我从未开始,http://em.21dtv.com/songs/60134856.mkv +TANK-如果我变成回忆,http://em.21dtv.com/songs/60036917.mkv +郑文泽-如果我不曾爱你,http://em.21dtv.com/songs/60129665.mkv +郑伊健+罗小环-如果天空要下雨,http://em.21dtv.com/songs/60036914.mkv +郭富城-如果听到这首歌,http://em.21dtv.com/songs/60036916.mkv +龙军-如果他比我爱你,http://em.21dtv.com/songs/60036912.mkv +方力申-如果世上没傻瓜,http://em.21dtv.com/songs/60036910.mkv +孙耀威-如果生命还有歌,http://em.21dtv.com/songs/60036906.mkv +鲁珺琦-如果世界没有你,http://em.21dtv.com/songs/60036909.mkv +许晓杰-让歌声唱响未来,http://em.21dtv.com/songs/60081223.mkv +乌兰托娅-如果如果是如果,http://em.21dtv.com/songs/60127708.mkv +泳儿-如果踫到你的脸,http://em.21dtv.com/songs/60092962.mkv +泳儿-如果碰到你的脸(演唱会),http://em.21dtv.com/songs/60036901.mkv +陈慧娴-如果你知我苦衷,http://em.21dtv.com/songs/60114211.mkv +周慧敏-如果你知我苦衷,http://em.21dtv.com/songs/60036900.mkv +李克勤-如果你知我苦衷(演唱会),http://em.21dtv.com/songs/60036899.mkv +黄耀明-如果你知我苦衷(演唱会),http://em.21dtv.com/songs/60036898.mkv +黄凯芹-如果你知我苦衷(演唱会),http://em.21dtv.com/songs/60036897.mkv +张义杰-如果你真的要走,http://em.21dtv.com/songs/60067385.mkv +丁童-如果你真的要走,http://em.21dtv.com/songs/60067384.mkv +佚名-如果你真的爱我,http://em.21dtv.com/songs/60036894.mkv +王可儿-如果你真的爱我,http://em.21dtv.com/songs/60036893.mkv +余润泽-如果你真的爱他,http://em.21dtv.com/songs/60036891.mkv +刘佳-如果你真的爱我,http://em.21dtv.com/songs/60067383.mkv +耀乐团-如果你也有梦想,http://em.21dtv.com/songs/60128316.mkv +阿华-如果那夜你回头,http://em.21dtv.com/songs/60036840.mkv +张雨生-如果你要离开我,http://em.21dtv.com/songs/60036880.mkv +邓丽君-如果能许一个愿,http://em.21dtv.com/songs/60100491.mkv +Apink-如果你向我招手,http://em.21dtv.com/songs/60121210.mkv +林道华-如果那天在一起,http://em.21dtv.com/songs/60067377.mkv +胡晓颖-如果那天你没走,http://em.21dtv.com/songs/60108823.mkv +王铁军-如果你是一只鱼,http://em.21dtv.com/songs/60067382.mkv +邝美云+黄卓韵-如果你是我的爱,http://em.21dtv.com/songs/60036870.mkv +苏盈之-如果你还放不下,http://em.21dtv.com/songs/60105321.mkv +汪苏泷-如果你还不明白,http://em.21dtv.com/songs/60067380.mkv +冷漠+大庆小芳-如果你还爱着我,http://em.21dtv.com/songs/60101937.mkv +蔡建-如果你还爱着我,http://em.21dtv.com/songs/60088600.mkv +陈瑞-如果你不再回来,http://em.21dtv.com/songs/60069773.mkv +陈泓志-如果你不再爱我,http://em.21dtv.com/songs/60108980.mkv +罗中旭-如果你不再爱了,http://em.21dtv.com/songs/60080660.mkv +子枫-如果你爱上了我,http://em.21dtv.com/songs/60077414.mkv +哈琳-如果没有遇见你,http://em.21dtv.com/songs/60135059.mkv +小筑-如果没有遇见我,http://em.21dtv.com/songs/60064807.mkv +李炳辰-如果没有你的爱,http://em.21dtv.com/songs/60036831.mkv +朱国豪-如果明天还会醉,http://em.21dtv.com/songs/60036836.mkv +孙紫晴-如果没你在身边,http://em.21dtv.com/songs/60081989.mkv +晨熙-如果来生拥有你,http://em.21dtv.com/songs/60135322.mkv +秦艺博-如果来生没有你,http://em.21dtv.com/songs/60135617.mkv +方力申-如果恋爱没傻瓜,http://em.21dtv.com/songs/60064805.mkv +陈柏霖+邱胜翊+周奇奇-如果可以早一点,http://em.21dtv.com/songs/60036815.mkv +边永城-如果可以这样爱,http://em.21dtv.com/songs/60130782.mkv +何禹妃-如果可以再相遇,http://em.21dtv.com/songs/60105581.mkv +黎明-如果可以再见你,http://em.21dtv.com/songs/60036814.mkv +黎明-如果可以再见你(演唱会),http://em.21dtv.com/songs/60036813.mkv +麦浚龙-如果可以待你好,http://em.21dtv.com/songs/60036812.mkv +艾歌-如果可以不爱你,http://em.21dtv.com/songs/60036811.mkv +星君-如果距离产生美,http://em.21dtv.com/songs/60085656.mkv +彭丽丽+王健-如果还有下辈子,http://em.21dtv.com/songs/60077407.mkv +彭丽丽+王键-如果还有下辈子,http://em.21dtv.com/songs/60068629.mkv +斯琴高丽-如果还是没结果,http://em.21dtv.com/songs/60121721.mkv +张义杰-如果还能有来世,http://em.21dtv.com/songs/60067375.mkv +熊胡杰-如果和你去旅行,http://em.21dtv.com/songs/60097835.mkv +天孪兄弟-如果还能见到你,http://em.21dtv.com/songs/60105734.mkv +张惠妹-如果还可以爱你,http://em.21dtv.com/songs/60036797.mkv +孙行者-如果还会想起我,http://em.21dtv.com/songs/60036795.mkv +周国贤-如果感觉有颜色,http://em.21dtv.com/songs/60092468.mkv +杨千嬅-如果东京不快乐,http://em.21dtv.com/songs/60036792.mkv +杨千嬅-如果东京不快乐(演唱会),http://em.21dtv.com/songs/60036791.mkv +彭羚-如果得不到爱情,http://em.21dtv.com/songs/60036788.mkv +梁静茹-如果冰箱会说话,http://em.21dtv.com/songs/60036775.mkv +林志炫-如果不是因为你,http://em.21dtv.com/songs/60036780.mkv +佟海波-如果不是遇见你,http://em.21dtv.com/songs/60036781.mkv +杜留香-如果不是我的爱,http://em.21dtv.com/songs/60120647.mkv +杜留香+慕容伊一-如果不是我的爱,http://em.21dtv.com/songs/60119679.mkv +梁咏琪-如果不是爱上你,http://em.21dtv.com/songs/60036779.mkv +倪微晨-如果不让我爱你,http://em.21dtv.com/songs/60067373.mkv +吴克羣-如果不能好好爱(HD),http://em.21dtv.com/songs/10012725.mkv +吴克群-如果不能好好爱,http://em.21dtv.com/songs/60098191.mkv +吴克羣-如果不能好好爱,http://em.21dtv.com/songs/60097834.mkv +葛维碧-如果不能好好爱,http://em.21dtv.com/songs/60036778.mkv +赵鑫-如果不能化蝶飞,http://em.21dtv.com/songs/60119999.mkv +裘海正-如果不能到永远,http://em.21dtv.com/songs/60036777.mkv +黄迪-如果北京不快乐,http://em.21dtv.com/songs/60132017.mkv +吴陌川-如果爱有下一回,http://em.21dtv.com/songs/60135035.mkv +吴炜-如果爱有下一回,http://em.21dtv.com/songs/60125298.mkv +带泪的鱼-如果爱是平等的,http://em.21dtv.com/songs/60133625.mkv +冷漠-如果爱情还记得,http://em.21dtv.com/songs/60069765.mkv +黑虎-如果爱你是个错,http://em.21dtv.com/songs/60064802.mkv +黄义达-如果爱就现在吧,http://em.21dtv.com/songs/60036754.mkv +巧千金-人逢喜事精神爽,http://em.21dtv.com/songs/60077348.mkv +邱一晨-让风吹走我伤痛,http://em.21dtv.com/songs/60103615.mkv +吴雨霏-人非草木(演唱会),http://em.21dtv.com/songs/60077347.mkv +Sam Smith-Restart,http://em.21dtv.com/songs/60104717.mkv +刘宜-让儿陪您说说话,http://em.21dtv.com/songs/60080655.mkv +大原樱子-Realize,http://em.21dtv.com/songs/60133529.mkv +Lost Frequencies+Janieck Devy-Reality,http://em.21dtv.com/songs/60124935.mkv +曾心梅-阮的心没人来疼,http://em.21dtv.com/songs/60037069.mkv +彭莉-阮的心肝块落雨,http://em.21dtv.com/songs/60037067.mkv +#12&35(无原唱),http://em.21dtv.com/songs/60004603.mkv +KENNY ROGERS-ruby dont take your love to t,http://em.21dtv.com/songs/60004744.mkv +刘文涛-人到山西不想走,http://em.21dtv.com/songs/60077346.mkv +苏永康-让懂你的人爱你,http://em.21dtv.com/songs/60036055.mkv +许飞-扔掉吉他去找她,http://em.21dtv.com/songs/60130750.mkv +戴梅君-阮的春天不是你,http://em.21dtv.com/songs/60037055.mkv +张迈-日出印象(演唱会),http://em.21dtv.com/songs/60071083.mkv +罗时丰-日出日落是春秋,http://em.21dtv.com/songs/60036623.mkv +佚名-如此看着你眼睛(无原唱),http://em.21dtv.com/songs/60036728.mkv +金波-日出东方志更长,http://em.21dtv.com/songs/60085646.mkv +笑天-忍不住为你流泪,http://em.21dtv.com/songs/60088395.mkv +小柯-若不是那次夜空,http://em.21dtv.com/songs/60111026.mkv +周笔畅-若不是那次夜空,http://em.21dtv.com/songs/60110944.mkv +曹尔真-让爱在人间传递,http://em.21dtv.com/songs/60071075.mkv +林翠萍-让爱散发出光芒,http://em.21dtv.com/songs/60036037.mkv +陶晶莹-让爱情维持心跳,http://em.21dtv.com/songs/60093793.mkv +群星-让爱陪在你身边,http://em.21dtv.com/songs/60101157.mkv +严当当-让爱你的人放心,http://em.21dtv.com/songs/60085633.mkv +gugudan-Rainbow,http://em.21dtv.com/songs/60134690.mkv +姚刘嘉亮-阮爱的人爱别人,http://em.21dtv.com/songs/60037050.mkv +蔡济文+梁雁翎-让爱的感觉回来,http://em.21dtv.com/songs/60036019.mkv +刘卫-让爱藏在心里面,http://em.21dtv.com/songs/60103107.mkv +龙飘飘-让爱充满全世界,http://em.21dtv.com/songs/60036018.mkv +金志文-Racheal,http://em.21dtv.com/songs/60123258.mkv +甄子维-阮阿爸是少年家(无原唱),http://em.21dtv.com/songs/60037049.mkv +詹雅雯-请在意心爱的人,http://em.21dtv.com/songs/60035617.mkv +赵志刚+应国英-轻舟越过千里路,http://em.21dtv.com/songs/60034827.mkv +宋祖英-牵着新世纪的手,http://em.21dtv.com/songs/60034261.mkv +阿福-情在情深处受伤,http://em.21dtv.com/songs/60035456.mkv +真真-骑着毛驴上拉萨,http://em.21dtv.com/songs/60072290.mkv +乌兰齐齐格-骑着马儿到我家,http://em.21dtv.com/songs/60085993.mkv +唐冰冰-骑着马儿唱情歌,http://em.21dtv.com/songs/60085580.mkv +-慶祝節日的戀人,http://em.21dtv.com/songs/60089095.mkv +7976-庆祝节日的恋人,http://em.21dtv.com/songs/60035628.mkv +罗婉琳-青藏高原是我家,http://em.21dtv.com/songs/60034650.mkv +大辉-倾注春江东流水,http://em.21dtv.com/songs/60119391.mkv +徐良-请在哔声后留言,http://em.21dtv.com/songs/60128015.mkv +徐良-请在哔声后留言,http://em.21dtv.com/songs/60125578.mkv +小沈阳-情怨,http://em.21dtv.com/songs/60123851.mkv +萧潇-千言万语心烧夜,http://em.21dtv.com/songs/60034178.mkv +戏曲-七月七日长生殿,http://em.21dtv.com/songs/60092719.mkv +姚志强+曾慧-七月七日长生殿(全曲)(戏曲),http://em.21dtv.com/songs/60092497.mkv +音乐走廊-情愿陪你走天涯,http://em.21dtv.com/songs/60109735.mkv +许飞-请原谅我的孤独,http://em.21dtv.com/songs/60130751.mkv +张津涤+杭娇-请原谅我不懂爱,http://em.21dtv.com/songs/60111890.mkv +杭娇+张津涤-请原谅我不懂爱,http://em.21dtv.com/songs/60062430.mkv +赵真-秋叶黄了想爹娘,http://em.21dtv.com/songs/60119997.mkv +Lukas Graham-7 Years,http://em.21dtv.com/songs/60119158.mkv +刘德华-情缘等足一辈子,http://em.21dtv.com/songs/60035439.mkv +刘松-沁园春 大连赞,http://em.21dtv.com/songs/60126644.mkv +冯姗姗+戴登仲-情缘不负相思长,http://em.21dtv.com/songs/60116568.mkv +田振达-穷小子和假小子,http://em.21dtv.com/songs/60110428.mkv +洪荣宏-恰想也是你一人,http://em.21dtv.com/songs/60034052.mkv +陈盈洁-亲像一领破被单(无原唱),http://em.21dtv.com/songs/60034616.mkv +白雪-请相信我的诺言,http://em.21dtv.com/songs/60091783.mkv +王建杰-亲像我这款男人,http://em.21dtv.com/songs/60034615.mkv +林志颖-全心全意i love you,http://em.21dtv.com/songs/60035929.mkv +林志颖-全心全意i love you(演唱会),http://em.21dtv.com/songs/60035928.mkv +林志颖-全心全意_I_Love_You,http://em.21dtv.com/songs/60088102.mkv +盖鸣晖+吴美英-抢新娘-年宵救美,http://em.21dtv.com/songs/60034407.mkv +盖鸣晖+吴美英-抢新娘-花园订盟,http://em.21dtv.com/songs/60034406.mkv +盖鸣晖-抢新娘-花园订盟(演唱会),http://em.21dtv.com/songs/60034405.mkv +王祖蓝+欧阳靖-秋香怒点唐伯虎,http://em.21dtv.com/songs/60035738.mkv +盖鸣晖+吴美英-抢新娘-大闹公堂,http://em.21dtv.com/songs/60034404.mkv +王熹蛮-浅夏淡过花开时,http://em.21dtv.com/songs/60103456.mkv +苏富权-七夕不是情人节,http://em.21dtv.com/songs/60124401.mkv +望海高歌-七夕不是情人节,http://em.21dtv.com/songs/60124036.mkv +TF boys-青蛙也会变王子,http://em.21dtv.com/songs/60101831.mkv +袁成杰+戚薇-外滩18号,http://em.21dtv.com/songs/60033817.mkv +徐乃麟-七五三三九六七(无原唱),http://em.21dtv.com/songs/60033774.mkv +张地-千万里我要回家,http://em.21dtv.com/songs/60108491.mkv +潘赢-千万句的我爱你,http://em.21dtv.com/songs/60080679.mkv +裘亚明-千万不要爱上我,http://em.21dtv.com/songs/60034161.mkv +陈盈洁-千万不通讲要切(无原唱),http://em.21dtv.com/songs/60034159.mkv +秦博-秋天有没有童话,http://em.21dtv.com/songs/60130633.mkv +越剧-桥亭三月春光好,http://em.21dtv.com/songs/60034430.mkv +豫剧-前腿弓,后腿蹬,http://em.21dtv.com/songs/60134547.mkv +陆平-齐天大圣贺新年,http://em.21dtv.com/songs/60118132.mkv +冬子-墙头草,http://em.21dtv.com/songs/60112525.mkv +陈星-其实只要你等我,http://em.21dtv.com/songs/60033928.mkv +冯刚毅-情僧之偷祭潇湘(戏曲),http://em.21dtv.com/songs/60092338.mkv +何韵诗-汽水樽里的咖啡,http://em.21dtv.com/songs/60034037.mkv +何韵诗+梁祖尧-汽水樽里的咖啡(演唱会),http://em.21dtv.com/songs/60034036.mkv +廖文强-其实没有那么寂寞,http://em.21dtv.com/songs/60066223.mkv +谢采妘-情诗写在彩云上,http://em.21dtv.com/songs/60035335.mkv +于文华-青山秀水是我家,http://em.21dtv.com/songs/60101039.mkv +梦之旅-牵手[欣赏版],http://em.21dtv.com/songs/60102418.mkv +曹轩宾-其实幸福很简单,http://em.21dtv.com/songs/60077120.mkv +张栋梁-其实幸福很简单,http://em.21dtv.com/songs/60033926.mkv +佚名-其实我真的爱你,http://em.21dtv.com/songs/60033924.mkv +名洋-其实我一无所有,http://em.21dtv.com/songs/60033920.mkv +杰森-其实我也很爱你,http://em.21dtv.com/songs/60135420.mkv +麦子杰-其实我已不在意,http://em.21dtv.com/songs/60033922.mkv +萧煌奇-其实我也不知道,http://em.21dtv.com/songs/60033918.mkv +何龙雨-千山万水人海中,http://em.21dtv.com/songs/60121370.mkv +路绮欧-其实我们伤不起,http://em.21dtv.com/songs/60061497.mkv +吴欢-其实我们很可怜,http://em.21dtv.com/songs/60033908.mkv +郑源+可昕-其实我们都没错,http://em.21dtv.com/songs/60063449.mkv +陶钰玉-其实我们都寂寞,http://em.21dtv.com/songs/60068569.mkv +江智民+周虹-其实我很在乎你,http://em.21dtv.com/songs/60113771.mkv +易帆-其实我很在乎你,http://em.21dtv.com/songs/60033904.mkv +王袁-其实我很在乎你,http://em.21dtv.com/songs/60033903.mkv +车静子-其实我很在乎你,http://em.21dtv.com/songs/60033902.mkv +谢容儿-其实我很在乎你,http://em.21dtv.com/songs/60064702.mkv +范英楠-其实我还爱着你,http://em.21dtv.com/songs/60033897.mkv +周艳泓-其实我的心没走,http://em.21dtv.com/songs/60033895.mkv +周艳泓+黑龙-其实我的心没走(演唱会),http://em.21dtv.com/songs/60071041.mkv +郭欢-其实我的心没走,http://em.21dtv.com/songs/60062404.mkv +中坚份子-其实我懂你的心,http://em.21dtv.com/songs/60033896.mkv +李雪莱-骑上我的摩托车,http://em.21dtv.com/songs/60127071.mkv +乐桐-其实我不想哭泣,http://em.21dtv.com/songs/60071040.mkv +李明德-其实我不想放弃,http://em.21dtv.com/songs/60033894.mkv +曾春年-其实我不想分开,http://em.21dtv.com/songs/60111141.mkv +梁耀安-情僧偷到潇湘馆,http://em.21dtv.com/songs/60035272.mkv +黎明-情深说话未曾讲,http://em.21dtv.com/songs/60035309.mkv +许茹芸-情深说话未曾讲(演唱会),http://em.21dtv.com/songs/60035308.mkv +卫兰-情深说话未曾讲(演唱会),http://em.21dtv.com/songs/60035307.mkv +黎明-情深说话未曾讲(演唱会),http://em.21dtv.com/songs/60035306.mkv +林立洋-其实谁都没有错(无原唱),http://em.21dtv.com/songs/60033891.mkv +金岩-羌山羌水阿得得,http://em.21dtv.com/songs/60086762.mkv +陈瑞-前世欠你的情泪,http://em.21dtv.com/songs/60121089.mkv +王大文-其实你已经知道,http://em.21dtv.com/songs/60112847.mkv +黄可儿-其实你全都知道,http://em.21dtv.com/songs/60033884.mkv +李志刚-其实你没爱过我,http://em.21dtv.com/songs/60061495.mkv +凌志辉-其实你还爱着我,http://em.21dtv.com/songs/60033883.mkv +凌志辉-其实你还爱着我(舞曲版),http://em.21dtv.com/songs/60033882.mkv +林翠萍-情深浓各分西东,http://em.21dtv.com/songs/60035293.mkv +佚名-其实你不懂我的(慢三),http://em.21dtv.com/songs/60033875.mkv +龙千玉-情深2000年,http://em.21dtv.com/songs/60035281.mkv +韩磊-清史明月照谁家,http://em.21dtv.com/songs/60034896.mkv +薛之谦-其实,http://em.21dtv.com/songs/60129591.mkv +邓丽君-青山绿水我和你,http://em.21dtv.com/songs/60034785.mkv +李秋霞-青山绿水好风光,http://em.21dtv.com/songs/60034784.mkv +黎明-情深咖啡未曾饮,http://em.21dtv.com/songs/60123411.mkv +孙子涵-全世界宣布爱你,http://em.21dtv.com/songs/60062969.mkv +孙子涵+李潇潇-全世界宣布爱你,http://em.21dtv.com/songs/60064772.mkv +林宥嘉-全世界谁倾听你,http://em.21dtv.com/songs/60128125.mkv +星月组合-前世今生的轮回,http://em.21dtv.com/songs/60133750.mkv +回来娶你-前世今生的轮回(DJ),http://em.21dtv.com/songs/60097874.mkv +若惜-前世今生的轮回,http://em.21dtv.com/songs/60064713.mkv +枫舞+相容-前世今生的等待,http://em.21dtv.com/songs/60116053.mkv +李妍-全世界你最疼我,http://em.21dtv.com/songs/60077307.mkv +王绎龙-全世界你最美丽,http://em.21dtv.com/songs/60088310.mkv +付辛博-全世界你最懂我,http://em.21dtv.com/songs/60077306.mkv +胡红艳-骑上骏马回草原,http://em.21dtv.com/songs/60077126.mkv +刀郎-全世界飞翔的鸟(演唱会),http://em.21dtv.com/songs/60064771.mkv +朱盈盈-全世界把我遗弃,http://em.21dtv.com/songs/60135348.mkv +豫剧-墙上画马不能骑,http://em.21dtv.com/songs/60134557.mkv +琪琪格-骑士和芭比公主,http://em.21dtv.com/songs/60033979.mkv +烟儿-牵手分手都是爱,http://em.21dtv.com/songs/60068578.mkv +王莉-情深恩重老父亲,http://em.21dtv.com/songs/60072317.mkv +佚名-晴时多云偶阵雨,http://em.21dtv.com/songs/60035486.mkv +南宫苡彤-其实都已过去了,http://em.21dtv.com/songs/60130138.mkv +R+B-晴时多时偶阵雨,http://em.21dtv.com/songs/60035485.mkv +张又亓-其实不想说再见,http://em.21dtv.com/songs/60104113.mkv +佚名-情深不敢再提起,http://em.21dtv.com/songs/60095414.mkv +何龙雨-情人债,http://em.21dtv.com/songs/60103081.mkv +麦卉-前人种树后人凉,http://em.21dtv.com/songs/60034285.mkv +佚名-情人之间的情人,http://em.21dtv.com/songs/60035262.mkv +李逸-情人呀你快回来,http://em.21dtv.com/songs/60035250.mkv +郭富城-情人眼里看世界,http://em.21dtv.com/songs/60035252.mkv +劳利-情人眼里出西施,http://em.21dtv.com/songs/60083668.mkv +蔡义德-情人眼里出西施,http://em.21dtv.com/songs/60083667.mkv +陈随意-情人眼里出西施,http://em.21dtv.com/songs/60067344.mkv +潘宝新-情人眼里出西施,http://em.21dtv.com/songs/60062797.mkv +谭咏麟-情若冤家一线差,http://em.21dtv.com/songs/60035271.mkv +张小君-强忍怨愤压心间,http://em.21dtv.com/songs/60087808.mkv +蔡献华+默契李智-请让我好好爱你,http://em.21dtv.com/songs/60097882.mkv +张德兰-情若无花不结果,http://em.21dtv.com/songs/60092606.mkv +民歌-亲人送别金沙滩,http://em.21dtv.com/songs/60089384.mkv +钟飞-情人节请你跳舞(演唱会),http://em.21dtv.com/songs/60035226.mkv +山野-情人节快不快乐,http://em.21dtv.com/songs/60066248.mkv +胡耀威-情人节唱这首歌,http://em.21dtv.com/songs/60035217.mkv +叶时伟-情人分手不寂寞,http://em.21dtv.com/songs/60077249.mkv +蔡建-亲亲盐城我的家,http://em.21dtv.com/songs/60088599.mkv +EDIQ-千秋月别西楚将,http://em.21dtv.com/songs/60077136.mkv +安与骑兵-秋千下的小黄狗,http://em.21dtv.com/songs/60077284.mkv +林志颖-轻轻握住你的手(演唱会),http://em.21dtv.com/songs/60034815.mkv +巫启贤-千千万万个爱你,http://em.21dtv.com/songs/60034149.mkv +文章-千千万万个爱你,http://em.21dtv.com/songs/60034148.mkv +刘向圆-亲亲我的黄土地,http://em.21dtv.com/songs/60077185.mkv +柯羽-亲亲我吧求求你,http://em.21dtv.com/songs/60034594.mkv +佚名-千情万爱已成烟(无原唱),http://em.21dtv.com/songs/60034152.mkv +张羽伟+焦炭乐团-轻轻松松谈恋爱,http://em.21dtv.com/songs/60034812.mkv +谭炳文-七擒七纵七色狼(演唱会),http://em.21dtv.com/songs/60061492.mkv +南风-求求你别离开我,http://em.21dtv.com/songs/60035802.mkv +佚名-青青柳叶蓝蓝天,http://em.21dtv.com/songs/60034776.mkv +王壹姗-轻轻叫着你的名(无原唱),http://em.21dtv.com/songs/60080666.mkv +陈美凤-轻轻叫着你的名,http://em.21dtv.com/songs/60034811.mkv +李君-轻轻打开一扇窗,http://em.21dtv.com/songs/60110271.mkv +阿茹娜-青青草原是我家,http://em.21dtv.com/songs/60077213.mkv +杨钰莹-悄悄把你藏心里,http://em.21dtv.com/songs/60091416.mkv +JKAI-期盼着雨过天晴,http://em.21dtv.com/songs/60072287.mkv +谭咏麟-情凭谁来定错对,http://em.21dtv.com/songs/60035155.mkv +谭咏麟-情凭谁来定错对(演唱会),http://em.21dtv.com/songs/60035154.mkv +谭咏麟+李克勤-情凭谁来定错对(演唱会),http://em.21dtv.com/songs/60035153.mkv +酒吧伤心人-欺骗爱情伤害我,http://em.21dtv.com/songs/60094724.mkv +佚名-青年友谊圆舞曲,http://em.21dtv.com/songs/60034755.mkv +刘德华-去年烟花特别多,http://em.21dtv.com/songs/60035851.mkv +沈志仲-欠你一个一辈子,http://em.21dtv.com/songs/60034349.mkv +李志洲-请你一定要幸福,http://em.21dtv.com/songs/60105978.mkv +张挥-请你相信我的爱,http://em.21dtv.com/songs/60069739.mkv +王凯-囚鸟,http://em.21dtv.com/songs/60122986.mkv +曹雅雯-请你听阮一句话,http://em.21dtv.com/songs/60077273.mkv +潘美辰-请你试着了解我,http://em.21dtv.com/songs/60035583.mkv +黎明-请你留在我身边,http://em.21dtv.com/songs/60035574.mkv +倪梓悠-请你留下来爱我,http://em.21dtv.com/songs/60105597.mkv +庄学忠-请你记着我的爱,http://em.21dtv.com/songs/60035566.mkv +张雷+云菲菲-请你接受我的爱,http://em.21dtv.com/songs/60083677.mkv +佚名-去年今日打此过,http://em.21dtv.com/songs/60035850.mkv +高胜美-请你记得我的好,http://em.21dtv.com/songs/60035564.mkv +庄学忠-求你动手晚一点,http://em.21dtv.com/songs/60035793.mkv +王爱奉+楼兰+田野-千年虫之中国龙,http://em.21dtv.com/songs/60113869.mkv +巴哈尔古丽-请你尝块哈蜜瓜,http://em.21dtv.com/songs/60091013.mkv +天翔+欧俪雯-求你别再对我好,http://em.21dtv.com/songs/60125358.mkv +邰正宵-请你不要笑我傻,http://em.21dtv.com/songs/60035548.mkv +洪卓立-请你别要说下去,http://em.21dtv.com/songs/60097883.mkv +甄强-请你不要伤害我,http://em.21dtv.com/songs/60124298.mkv +蔡峰-请你不要离开我,http://em.21dtv.com/songs/60098754.mkv +谢和弦-请你不通嫌弃我,http://em.21dtv.com/songs/60035544.mkv +卓依婷-请你不通放舍我,http://em.21dtv.com/songs/60070267.mkv +佚名-千年白蛇峨嵋修,http://em.21dtv.com/songs/60034116.mkv +扎西-求你别让我难过,http://em.21dtv.com/songs/60115188.mkv +许志安-亲你八千七百次,http://em.21dtv.com/songs/60093149.mkv +武湄-请你别碰我伤口,http://em.21dtv.com/songs/60122930.mkv +张澜澜-千年不变的美丽,http://em.21dtv.com/songs/60034117.mkv +余天助-千年爱恋千年情,http://em.21dtv.com/songs/60125129.mkv +六水-全民一起来K歌,http://em.21dtv.com/songs/60134912.mkv +田维英-前门情思大碗茶,http://em.21dtv.com/songs/60118803.mkv +王红涛-前门情思大碗茶,http://em.21dtv.com/songs/60081402.mkv +杭天琪-前门情思大碗茶,http://em.21dtv.com/songs/60034283.mkv +青春老少年-全民偶像习大大,http://em.21dtv.com/songs/60108145.mkv +民歌-骑马挎枪走天下,http://em.21dtv.com/songs/60089394.mkv +宁林-骑马跨枪走天下,http://em.21dtv.com/songs/60033977.mkv +吴莫愁+李代沫-取名回忆的时光(演唱会),http://em.21dtv.com/songs/60094436.mkv +吴莫愁+李代沫-取名回忆的时光,http://em.21dtv.com/songs/60093803.mkv +彭清-球迷都是萌萌哒,http://em.21dtv.com/songs/60105061.mkv +民歌-青苗出土迎朝阳,http://em.21dtv.com/songs/60091564.mkv +黄可儿-请留住你的脚步,http://em.21dtv.com/songs/60035534.mkv +沙莎-秦岭最美是商洛,http://em.21dtv.com/songs/60064727.mkv +陈鹰-千里眼与顺风耳(无原唱),http://em.21dtv.com/songs/60034104.mkv +吴依琳-齐来迎接欢乐年,http://em.21dtv.com/songs/60077114.mkv +魏依曼-齐来迎接欢乐年,http://em.21dtv.com/songs/60033859.mkv +佚名-千里寻子吃尽苦,http://em.21dtv.com/songs/60034102.mkv +叶欢-且留新月共今宵,http://em.21dtv.com/songs/60034461.mkv +易秒英-千里万里兵哥哥,http://em.21dtv.com/songs/60034101.mkv +泽旺多吉-请来汶川我的家,http://em.21dtv.com/songs/60072323.mkv +薛凯琪-奇洛李维斯回信,http://em.21dtv.com/songs/60033952.mkv +王秀芬-七律二首-送瘟神,http://em.21dtv.com/songs/60033752.mkv +佚名-情泪滴湿阮的心,http://em.21dtv.com/songs/60095413.mkv +合唱-敲锣打鼓迎新岁,http://em.21dtv.com/songs/60087533.mkv +巧千金-敲锣打鼓迎新年,http://em.21dtv.com/songs/60077165.mkv +王滨梅-谯楼打罢二更鼓,http://em.21dtv.com/songs/60034432.mkv +方亚芳-谯楼打罢二更鼓,http://em.21dtv.com/songs/60034431.mkv +刘浩-牵了不该牵的手,http://em.21dtv.com/songs/60097872.mkv +任静-巧解姻缘天作合,http://em.21dtv.com/songs/60090573.mkv +郁钧剑-情姐下河洗衣裳(演唱会),http://em.21dtv.com/songs/60083662.mkv +詹雅雯-请借问心爱的人,http://em.21dtv.com/songs/60035531.mkv +李斯丹妮-请叫我女王陛下,http://em.21dtv.com/songs/60107786.mkv +大哲-千句万句我爱你,http://em.21dtv.com/songs/60034096.mkv +回来娶你-囚禁你的爱DJ,http://em.21dtv.com/songs/60094034.mkv +铁热沁夫-裙角飞扬的日子,http://em.21dtv.com/songs/60068612.mkv +李静芳-牵囝的手摸心肝,http://em.21dtv.com/songs/60034209.mkv +DJ舞曲-强劲的酒吧慢摇,http://em.21dtv.com/songs/50000112.mkv +王亚平-请喝一碗石门茶,http://em.21dtv.com/songs/60063044.mkv +佚名-请喝一杯酥油茶,http://em.21dtv.com/songs/60035524.mkv +李奕霖-请喝一杯湖之酒,http://em.21dtv.com/songs/60103357.mkv +陈瑞-青花开在红尘里,http://em.21dtv.com/songs/60134414.mkv +卢冠廷-漆黑将不再面对,http://em.21dtv.com/songs/60033855.mkv +韩磊-千古英雄浪淘沙,http://em.21dtv.com/songs/60034084.mkv +张欣磊-情歌越听越寂寞,http://em.21dtv.com/songs/60067337.mkv +段千寻-情歌一生为你唱,http://em.21dtv.com/songs/60107857.mkv +刘德华-情歌有没有唱错,http://em.21dtv.com/songs/60099111.mkv +佚名-情歌有没有唱错,http://em.21dtv.com/songs/60035008.mkv +张雷-情歌越唱越心酸,http://em.21dtv.com/songs/60035009.mkv +笑天-情歌越唱越伤心,http://em.21dtv.com/songs/60119861.mkv +KINGSTAR+莫小娘-情歌我们一起唱,http://em.21dtv.com/songs/60068597.mkv +阿悄-情歌忘了告诉我,http://em.21dtv.com/songs/60110601.mkv +本兮+朱志伟-奇怪我不懂得爱,http://em.21dtv.com/songs/60102310.mkv +唐俪-情关难过情梦抺醒,http://em.21dtv.com/songs/60072311.mkv +郑源-牵挂你的人是我,http://em.21dtv.com/songs/60103624.mkv +高林生-牵挂你的人是我,http://em.21dtv.com/songs/60034206.mkv +高林生-牵挂你的人是我(演唱会),http://em.21dtv.com/songs/60034205.mkv +梁静茹-情歌没有告诉你,http://em.21dtv.com/songs/60035004.mkv +张津涤-情歌好听却难唱,http://em.21dtv.com/songs/60115911.mkv +孙露-情歌好听却难唱,http://em.21dtv.com/songs/60115821.mkv +陈瑞-情歌好听却难唱,http://em.21dtv.com/songs/60106412.mkv +冷漠-情歌好听却难唱,http://em.21dtv.com/songs/60085612.mkv +孙露-情歌好听却难唱,http://em.21dtv.com/songs/60077238.mkv +张津涤-情歌好听却难唱,http://em.21dtv.com/songs/60035002.mkv +二宝-情歌还是伤的好,http://em.21dtv.com/songs/60071065.mkv +常艾非-情歌还是伤的好,http://em.21dtv.com/songs/60067336.mkv +黎晓阳-请关掉手提电话,http://em.21dtv.com/songs/60128639.mkv +黎晓阳-请关掉手提电话,http://em.21dtv.com/songs/60126493.mkv +陈盈洁-情歌唱乎谁人听(无原唱),http://em.21dtv.com/songs/60034999.mkv +许佳慧-情歌唱给自己听,http://em.21dtv.com/songs/60112231.mkv +方瑞娥-情歌唱给自己听,http://em.21dtv.com/songs/60066242.mkv +冷漠-情歌唱给情人听,http://em.21dtv.com/songs/60120345.mkv +乌兰吉雅-情歌唱给草原听,http://em.21dtv.com/songs/60115666.mkv +布格-情歌唱给草原听,http://em.21dtv.com/songs/60114516.mkv +孙家山-情歌唱到九十九,http://em.21dtv.com/songs/60135103.mkv +井柏然-情歌变得不好听(演唱会),http://em.21dtv.com/songs/60061516.mkv +冷漠-千分之一的机会,http://em.21dtv.com/songs/60064706.mkv +上明-秋风夜雨未了情,http://em.21dtv.com/songs/60035678.mkv +哈辉-清风细浪寄深情,http://em.21dtv.com/songs/60034876.mkv +洪荣宏-秋风秋雨秋夜情,http://em.21dtv.com/songs/60135516.mkv +洪荣宏-秋风秋雨秋夜情,http://em.21dtv.com/songs/60133940.mkv +王玲-秋风秋雨落叶时(无原唱),http://em.21dtv.com/songs/60048659.mkv +郭富城-情非得已离开你,http://em.21dtv.com/songs/60034967.mkv +佚名-秋风吹谢了春红,http://em.21dtv.com/songs/60035662.mkv +秋雨寒,http://em.21dtv.com/songs/60110868.mkv +陈慧娴-七分爱情三分骗,http://em.21dtv.com/songs/60033740.mkv +FLOWER-秋风のアンサー,http://em.21dtv.com/songs/60113161.mkv +敖都-请到乌兰察布来,http://em.21dtv.com/songs/60118609.mkv +丁晓红-请到天涯海角来,http://em.21dtv.com/songs/60106568.mkv +千荷-请到天涯海角来,http://em.21dtv.com/songs/60035520.mkv +段品章-请到天涯海角来,http://em.21dtv.com/songs/60035519.mkv +沈小岑-请到天涯海角来(演唱会),http://em.21dtv.com/songs/60035518.mkv +乌兰托娅-请带上我的祝愿,http://em.21dtv.com/songs/60068606.mkv +倪尔萍-情到深处人孤独,http://em.21dtv.com/songs/60094409.mkv +杜忻恬-穷得剩爱和善良,http://em.21dtv.com/songs/60130447.mkv +达坡玛吉-请到纳西村寨来,http://em.21dtv.com/songs/60035516.mkv +江玲-情到浓时反为薄,http://em.21dtv.com/songs/60034949.mkv +斯琴格日乐-请到蒙古草原来,http://em.21dtv.com/songs/60077269.mkv +曹震豪-请代寄圣诞老人,http://em.21dtv.com/songs/60066253.mkv +任妙音-期待和你再相遇,http://em.21dtv.com/songs/60125102.mkv +网络歌手-请到大森林里来,http://em.21dtv.com/songs/60129480.mkv +乌兰吉雅-请到草原来做客,http://em.21dtv.com/songs/60104765.mkv +原琳琳-情窦初开的姑娘,http://em.21dtv.com/songs/60094020.mkv +鹿晗+陶喆-请到长城来滑雪,http://em.21dtv.com/songs/60112397.mkv +张迈-期待爱情期待风,http://em.21dtv.com/songs/60089290.mkv +蓝奕邦-青春于舞池流逝,http://em.21dtv.com/songs/60064732.mkv +张津涤-轻触一笔的爱情,http://em.21dtv.com/songs/60126891.mkv +群星-青春像一次旅程,http://em.21dtv.com/songs/60117126.mkv +谭维维+范政-矜持,http://em.21dtv.com/songs/60114079.mkv +好妹妹+金玄念-青城山下白素贞,http://em.21dtv.com/songs/60128946.mkv +好妹妹乐队-青城山下白素贞,http://em.21dtv.com/songs/60072304.mkv +侃侃-青春是岁月的河,http://em.21dtv.com/songs/60081024.mkv +杨采妮-全城来吧cha cha cha,http://em.21dtv.com/songs/60035874.mkv +田春雁-清晨的一缕阳光,http://em.21dtv.com/songs/60034867.mkv +蔡凤凰+杨鸣-青春的十八姑娘,http://em.21dtv.com/songs/60034671.mkv +佚名-青春不通白白过(无原唱),http://em.21dtv.com/songs/60034666.mkv +韦小天+罗国威-牵扯不清的女人,http://em.21dtv.com/songs/60103705.mkv +张发强-情不自禁爱上你,http://em.21dtv.com/songs/60115902.mkv +张善为-情不自禁爱上你,http://em.21dtv.com/songs/60034943.mkv +蓝乐-请不要在说爱我,http://em.21dtv.com/songs/60094284.mkv +仇泽-铅笔与橡皮姑娘,http://em.21dtv.com/songs/60069714.mkv +何洁-请不要对我说sorry,http://em.21dtv.com/songs/60072322.mkv +DEAR JANE-七百万种乐与怒,http://em.21dtv.com/songs/60117446.mkv +SHINE-去吧旺角揸fit人,http://em.21dtv.com/songs/60035836.mkv +伊能静-邱比特的恶作剧,http://em.21dtv.com/songs/60090579.mkv +杨洺-钱不是个好东西,http://em.21dtv.com/songs/60111189.mkv +杨洺-钱不是个好东西,http://em.21dtv.com/songs/60108609.mkv +齐秦-请别对我说再见,http://em.21dtv.com/songs/60035500.mkv +刘嘉亮-请别对我说再见,http://em.21dtv.com/songs/60035499.mkv +羽飞-请把爱情还给我,http://em.21dtv.com/songs/60035498.mkv +李圣杰-亲爱妹妹的眼睛,http://em.21dtv.com/songs/60034563.mkv +SARA+孙子涵-请安静的忘记我,http://em.21dtv.com/songs/60062143.mkv +陈建-劝爱歌皇卡娱乐,http://em.21dtv.com/songs/60112348.mkv +梦露乐团-亲爱的主唱大人(无原唱),http://em.21dtv.com/songs/60034560.mkv +张启靓-亲爱的我在等你,http://em.21dtv.com/songs/60098339.mkv +天籁天-亲爱的我在等待,http://em.21dtv.com/songs/60130224.mkv +天籁天-亲爱的我在等待,http://em.21dtv.com/songs/60108409.mkv +李羽龙-亲爱的我想你了,http://em.21dtv.com/songs/60034550.mkv +谭雪-亲爱的我会勇敢,http://em.21dtv.com/songs/60077181.mkv +郑嘉嘉-亲爱的维多利亚,http://em.21dtv.com/songs/60068588.mkv +成学迅+晓舟-亲爱的我的爱人,http://em.21dtv.com/songs/60034547.mkv +葛本军-亲爱的人感谢你,http://em.21dtv.com/songs/60069724.mkv +张清芳-亲爱的请不要说,http://em.21dtv.com/songs/60034537.mkv +镜喜-亲爱的你在哪里,http://em.21dtv.com/songs/60114842.mkv +龙飞+门丽-亲爱的你在哪里,http://em.21dtv.com/songs/60112262.mkv +龙飞-亲爱的你在哪里,http://em.21dtv.com/songs/60107385.mkv +王庆庆-亲爱的你在哪里,http://em.21dtv.com/songs/60098637.mkv +袁耀发-亲爱的你在那里,http://em.21dtv.com/songs/60088621.mkv +巴小波-亲爱的你在哪里,http://em.21dtv.com/songs/60077177.mkv +袁耀发-亲爱的你在哪里,http://em.21dtv.com/songs/60034532.mkv +吴紫涵-亲爱的你在哪里,http://em.21dtv.com/songs/60034531.mkv +沈石磊-亲爱的你在哪里,http://em.21dtv.com/songs/60034530.mkv +马文吉-亲爱的你在哪里,http://em.21dtv.com/songs/60034529.mkv +马天宇-亲爱的你在哪里,http://em.21dtv.com/songs/60064718.mkv +杨雪晴-亲爱的你在何方,http://em.21dtv.com/songs/60034527.mkv +晨熙-亲爱的你在何方,http://em.21dtv.com/songs/60034526.mkv +宪明-亲爱的你知道吗,http://em.21dtv.com/songs/60069721.mkv +韦明华-亲爱的你想我吗,http://em.21dtv.com/songs/60088944.mkv +尚会东+乐晓莹-亲爱的你听我说,http://em.21dtv.com/songs/60120481.mkv +张北北-亲爱的你快乐吗,http://em.21dtv.com/songs/60121645.mkv +伍佰-亲爱的你喝醉了,http://em.21dtv.com/songs/60034521.mkv +伍佰-亲爱的你喝醉了(演唱会),http://em.21dtv.com/songs/60034520.mkv +张祥洪-亲爱的你会体谅,http://em.21dtv.com/songs/60083630.mkv +天爱-亲爱的你别走远,http://em.21dtv.com/songs/60120441.mkv +朱明-亲爱的你不容易,http://em.21dtv.com/songs/60102311.mkv +陈梦姿-亲爱的老师你好,http://em.21dtv.com/songs/60124640.mkv +风语-亲爱的快乐分手,http://em.21dtv.com/songs/60124703.mkv +姚天成-亲爱的嫁给我吧,http://em.21dtv.com/songs/60126768.mkv +朱长松-亲爱的嫁给我吧,http://em.21dtv.com/songs/60077172.mkv +金莎-亲爱的还幸福吗,http://em.21dtv.com/songs/60034505.mkv +李之勤-亲爱的好久不见,http://em.21dtv.com/songs/60091298.mkv +刘栋升+康珈鸣-亲爱的后会有期,http://em.21dtv.com/songs/60081351.mkv +李俊男-亲爱的爸爸妈妈,http://em.21dtv.com/songs/60128080.mkv +陈雅森+贺一航-亲爱的爸爸妈妈,http://em.21dtv.com/songs/60118174.mkv +马志锋-亲爱的爸爸妈妈,http://em.21dtv.com/songs/60077169.mkv +阎维文-亲爱的爸爸妈妈,http://em.21dtv.com/songs/60034488.mkv +李俊男-亲爱的爸爸妈妈,http://em.21dtv.com/songs/60034487.mkv +曹丽莎-亲爱的爸爸妈妈,http://em.21dtv.com/songs/60034486.mkv +庄铭泽-亲爱的baby,http://em.21dtv.com/songs/60129049.mkv +程飞鸣-陪着眼泪唱情歌,http://em.21dtv.com/songs/60033283.mkv +卓依婷-盼着过年好回家,http://em.21dtv.com/songs/60033172.mkv +张彦子-朋友一生最难得,http://em.21dtv.com/songs/60033360.mkv +iKON-朋友,http://em.21dtv.com/songs/60123482.mkv +巧千金-拼音童谣快乐屋,http://em.21dtv.com/songs/60033567.mkv +游美灵-朋友请到草原来,http://em.21dtv.com/songs/60068557.mkv +林峰-朋友请不要伤悲,http://em.21dtv.com/songs/60092867.mkv +林峰-朋友 请不要伤悲(演唱会),http://em.21dtv.com/songs/60033302.mkv +任贤齐-朋友你恋了没有,http://em.21dtv.com/songs/60092244.mkv +任贤齐-朋友 你恋了没有,http://em.21dtv.com/songs/60033301.mkv +任贤齐-朋友你变了没有,http://em.21dtv.com/songs/60033341.mkv +阿鲁阿卓-朋友来了不想走(演唱会),http://em.21dtv.com/songs/60064686.mkv +相国立-朋友干了这杯酒,http://em.21dtv.com/songs/60077069.mkv +红月-朋友干了这杯酒,http://em.21dtv.com/songs/60072273.mkv +郭宴-漂洋过海来看你,http://em.21dtv.com/songs/60127482.mkv +孙露-漂洋过海来看你,http://em.21dtv.com/songs/60115833.mkv +李美熙-飘洋过海来看你,http://em.21dtv.com/songs/60110285.mkv +邰正宵-漂洋过海来看你,http://em.21dtv.com/songs/60107265.mkv +娃娃-漂洋过海来看你,http://em.21dtv.com/songs/60103745.mkv +李美熹-漂洋过海来看你,http://em.21dtv.com/songs/60100156.mkv +邰正宵-漂洋过海来看你,http://em.21dtv.com/songs/60097893.mkv +邰正宵-飘洋过海来看你,http://em.21dtv.com/songs/60096510.mkv +金智娟-飘洋过海来看你,http://em.21dtv.com/songs/60033542.mkv +林于雯-飘洋过海介思念,http://em.21dtv.com/songs/60095647.mkv +熊峰-抛下我爱上他爱,http://em.21dtv.com/songs/60077048.mkv +刘昱妤-咆哮,http://em.21dtv.com/songs/60128828.mkv +花鼓戏-披星戴月把路上,http://em.21dtv.com/songs/60090165.mkv +杨钰莹-盼望天天看见你,http://em.21dtv.com/songs/60033168.mkv +刘竣潇-陪我入睡的月亮,http://em.21dtv.com/songs/60133417.mkv +群星-PUSH ME,http://em.21dtv.com/songs/60129493.mkv +Justin Bieber-Purpose,http://em.21dtv.com/songs/60119156.mkv +成于申-菩提树下的等待,http://em.21dtv.com/songs/60118599.mkv +倮倮-菩提树上的叮当,http://em.21dtv.com/songs/60033698.mkv +面具-劈腿哥唱劈腿歌,http://em.21dtv.com/songs/60098910.mkv +李宇春-普通disco,http://em.21dtv.com/songs/60119656.mkv +三无-普通disco,http://em.21dtv.com/songs/60113211.mkv +花僮-普通DISCO,http://em.21dtv.com/songs/60112170.mkv +凤飞飞-陪伤心人说往事,http://em.21dtv.com/songs/60033258.mkv +王雪晶+小妮妮-破衫破裤无人补,http://em.21dtv.com/songs/60023126.mkv +钟宝珍-平生爱花为花忙,http://em.21dtv.com/songs/60088812.mkv +东玄+Kia-Promise,http://em.21dtv.com/songs/60130037.mkv +Kid Ink+Fetty Wap-Promise,http://em.21dtv.com/songs/60121274.mkv +梁耀安-琵琶夜语汉宫秋,http://em.21dtv.com/songs/60088145.mkv +陆萍+陈彼得-偏偏相逢在雨中,http://em.21dtv.com/songs/60033423.mkv +郭富城-偏偏他对你很好,http://em.21dtv.com/songs/60093348.mkv +巫启贤-拍拍身上的灰尘(无原唱),http://em.21dtv.com/songs/60033109.mkv +潘越云-拍拍屁股去恋爱,http://em.21dtv.com/songs/60033108.mkv +洪荣宏-偏偏来这思念你,http://em.21dtv.com/songs/60095784.mkv +阿雅+曹轩宾-皮皮鲁和鲁西西,http://em.21dtv.com/songs/60071028.mkv +阿译-平平淡淡过一生,http://em.21dtv.com/songs/60131928.mkv +阎维文-平平安安过日子,http://em.21dtv.com/songs/60108953.mkv +M.I.A.-P.O.W.A,http://em.21dtv.com/songs/60132098.mkv +德格叶-陪你再去看草原,http://em.21dtv.com/songs/60126921.mkv +孙楠-陪你一生够不够,http://em.21dtv.com/songs/60128965.mkv +格格-陪你一起看草原,http://em.21dtv.com/songs/60131567.mkv +田田-陪你一起看草原,http://em.21dtv.com/songs/60123031.mkv +韩婷-陪你一起看草原,http://em.21dtv.com/songs/60109008.mkv +洪禄云-陪你一起看草原,http://em.21dtv.com/songs/60083574.mkv +龙梅子-陪你一起看草原,http://em.21dtv.com/songs/60033247.mkv +龙梅-陪你一起看草原,http://em.21dtv.com/songs/60033246.mkv +降央卓玛-陪你一起看草原,http://em.21dtv.com/songs/60033245.mkv +格格-陪你一起看草原,http://em.21dtv.com/songs/60033244.mkv +乌兰托娅-陪你一起看草原,http://em.21dtv.com/songs/60063081.mkv +黑豹乐队-怕你为自己流泪(演唱会),http://em.21dtv.com/songs/60033101.mkv +冷漠-怕你伤心怕你哭,http://em.21dtv.com/songs/60109171.mkv +格格+于水-陪你去看草原海,http://em.21dtv.com/songs/60130496.mkv +于水-陪你去看草原海,http://em.21dtv.com/songs/60112493.mkv +白里格-陪你金阳看索玛,http://em.21dtv.com/songs/60127236.mkv +阿BEN-怕你回到他身旁,http://em.21dtv.com/songs/60033100.mkv +刘克泉-陪你干了这杯酒,http://em.21dtv.com/songs/60066213.mkv +陈亮吟-捧你的心像捧冰(无原唱),http://em.21dtv.com/songs/60033374.mkv +张立基+叶玉卿-盼你此刻奔向我,http://em.21dtv.com/songs/60092645.mkv +风火海-霹雳拍勒踢踢踢,http://em.21dtv.com/songs/60033392.mkv +紫海-噼里啪啦过年了,http://em.21dtv.com/songs/60118834.mkv +小甜儿+梓雄-漂亮妹妹等哥爱,http://em.21dtv.com/songs/60077082.mkv +赵煜铭-漂亮姑娘美翻了,http://em.21dtv.com/songs/60122144.mkv +大买卖乐团-PLAY GO,http://em.21dtv.com/songs/60117636.mkv +马艳+荣联合-抛开一切跟你走,http://em.21dtv.com/songs/60130902.mkv +南合文斗-陪君醉笑三千场,http://em.21dtv.com/songs/60033227.mkv +迟志强-啤酒雪茄顶呱呱,http://em.21dtv.com/songs/60033399.mkv +何龙雨+毛姗曈-浦江是个好地方,http://em.21dtv.com/songs/60131170.mkv +关淑怡-平静里的一盏灯,http://em.21dtv.com/songs/60033619.mkv +郑少秋-徘徊在这段路上,http://em.21dtv.com/songs/60033127.mkv +刘雅丽-徘徊在缠绵时分(演唱会),http://em.21dtv.com/songs/60083571.mkv +丁晓红-平凡的人最幸福,http://em.21dtv.com/songs/60033598.mkv +BRITNEY SPEARS-Perfume,http://em.21dtv.com/songs/60093914.mkv +Simple Plan-Perfect,http://em.21dtv.com/songs/60106555.mkv +夹子乐团-爬到屋顶去哭夭(无原唱),http://em.21dtv.com/songs/60033081.mkv +GABRIELLE APLIN-please dont say you love me,http://em.21dtv.com/songs/60073752.mkv +刘珺儿-攀登世界最高峰,http://em.21dtv.com/songs/60033138.mkv +张萌-潘多拉的月光盒,http://em.21dtv.com/songs/60063388.mkv +花鼓戏-破产成了落魄人,http://em.21dtv.com/songs/60090172.mkv +何宗龙-盼不回最爱的你(舞曲版),http://em.21dtv.com/songs/60067304.mkv +何宗龙-盼不回最爱的你,http://em.21dtv.com/songs/60066211.mkv +王馨平-平爱一生也不够,http://em.21dtv.com/songs/60033572.mkv +Matilda-Patting,http://em.21dtv.com/songs/60133243.mkv +李海丽-PATTERN,http://em.21dtv.com/songs/60135368.mkv +五月天-oaoa(现在就是永远),http://em.21dtv.com/songs/60063696.mkv +段丽阳-偶像是当兵的人,http://em.21dtv.com/songs/60100899.mkv +阿超-one(小练习第一号),http://em.21dtv.com/songs/60062192.mkv +梁奕伦-偶然遇上的惊喜,http://em.21dtv.com/songs/60033064.mkv +Pitbull+Stephen Marley-Options,http://em.21dtv.com/songs/60132121.mkv +嘴哥乐团-On Fire,http://em.21dtv.com/songs/60135067.mkv +张敬轩-One Day,http://em.21dtv.com/songs/60112671.mkv +张峡浩+曲婉婷-One Day,http://em.21dtv.com/songs/60107712.mkv +曹格+汪小敏-One Day,http://em.21dtv.com/songs/60104180.mkv +张韶涵-OK蹦,http://em.21dtv.com/songs/60098369.mkv +林采缇-O.I.O.I,http://em.21dtv.com/songs/60108627.mkv +K.A.R.D+许英智-Oh NaNa,http://em.21dtv.com/songs/60131074.mkv +黄锶骐-偶尔还会想我吗,http://em.21dtv.com/songs/60062495.mkv +韩宝仪-偶尔还会想起你,http://em.21dtv.com/songs/60102929.mkv +TIZZY BAC-One By One Oh Were Gonna Die,http://em.21dtv.com/songs/60080411.mkv +王小韩-你在这里干什么,http://em.21dtv.com/songs/60072250.mkv +林志炫-你在最近的天边,http://em.21dtv.com/songs/60135426.mkv +徐良-拿着烟斗的男孩,http://em.21dtv.com/songs/60086713.mkv +朱桦-那种心跳的感觉,http://em.21dtv.com/songs/60080387.mkv +陈浩德+李丽霞-那种心跳的感觉(演唱会),http://em.21dtv.com/songs/60076813.mkv +高明骏-那种心跳的感觉,http://em.21dtv.com/songs/60030850.mkv +佚名-那种心跳的感觉(无原唱),http://em.21dtv.com/songs/60030849.mkv +光头阿兴-你做小三还好吗,http://em.21dtv.com/songs/60064663.mkv +张杰+刘振宇+黄宗辉+周一豪-逆战,http://em.21dtv.com/songs/60123926.mkv +李自强+晓晓-你在我心底深埋,http://em.21dtv.com/songs/60076981.mkv +李进-你在他乡还好吗,http://em.21dtv.com/songs/60032471.mkv +姚婷-你在偷偷爱着谁,http://em.21dtv.com/songs/60092496.mkv +印子月-你只是不够爱我,http://em.21dtv.com/songs/60125250.mkv +高音-你最亲(HD),http://em.21dtv.com/songs/10012839.mkv +黄华丽-娘在那片云彩里,http://em.21dtv.com/songs/60100670.mkv +常皓然-你在哪里我的爱,http://em.21dtv.com/songs/60032465.mkv +黄文武-你在那边还好吗,http://em.21dtv.com/songs/60129841.mkv +陈珊妮-你做你爱做仔曹,http://em.21dtv.com/songs/60032595.mkv +[Group] +groupName=十六万歌曲MV等 - 97 +周明辉-你怎么又会知道,http://em.21dtv.com/songs/60032511.mkv +许强-你怎么又会知道,http://em.21dtv.com/songs/60032510.mkv +胡彦斌-你这么晚还没睡,http://em.21dtv.com/songs/60088495.mkv +于洋-你怎么舍得我哭,http://em.21dtv.com/songs/60085545.mkv +王馨-你怎么让我忘记,http://em.21dtv.com/songs/60128246.mkv +张牧阅-你怎么如此狠心,http://em.21dtv.com/songs/60032494.mkv +云菲菲-你最美丽你最亲,http://em.21dtv.com/songs/60064645.mkv +宋祖英-你怎么还不回来,http://em.21dtv.com/songs/60089245.mkv +佚名-你怎么把我忘记(无原唱),http://em.21dtv.com/songs/60032484.mkv +范思威-你做了谁的情人,http://em.21dtv.com/songs/60076995.mkv +刘德华-你震撼我的心灵,http://em.21dtv.com/songs/60032537.mkv +卢海潮+梁淑卿-哪咤和尚戏观音(一),http://em.21dtv.com/songs/60030679.mkv +古巨基-你在何地 明星,http://em.21dtv.com/songs/60134973.mkv +唐心-你这个负心的人,http://em.21dtv.com/songs/60032512.mkv +蔡诗芸-你知道这不是爱,http://em.21dtv.com/songs/60067292.mkv +BEYOND-你知道我的迷惘,http://em.21dtv.com/songs/60089563.mkv +贾富营-你真的是我的爱,http://em.21dtv.com/songs/60129630.mkv +红陌-你真的是我的爱,http://em.21dtv.com/songs/60129475.mkv +君子-你找到工作了吗(舞曲版),http://em.21dtv.com/songs/60061471.mkv +罗时丰-你著不通袜记呢(无原唱),http://em.21dtv.com/songs/60095853.mkv +洪一峰-你着不通袜记呢,http://em.21dtv.com/songs/60032519.mkv +张冬玲-你在北京还好吗,http://em.21dtv.com/songs/60127964.mkv +佚名-你在彼岸还好吗,http://em.21dtv.com/songs/60067291.mkv +张凌枫-你最爱的人是谁,http://em.21dtv.com/songs/60032581.mkv +张洪量-难以捉摸你的心,http://em.21dtv.com/songs/60031298.mkv +杨冰滢-你又怎么会知道,http://em.21dtv.com/songs/60113659.mkv +刘雷-你又怎么会知道,http://em.21dtv.com/songs/60110893.mkv +艾梦萌-你要走就走就走,http://em.21dtv.com/songs/60032402.mkv +晓枫-你要照顾好自己,http://em.21dtv.com/songs/60032400.mkv +陈奕迅-那一夜有没有说,http://em.21dtv.com/songs/60110631.mkv +陈奕迅-那一夜有没有说(演唱会),http://em.21dtv.com/songs/60030839.mkv +李健-你一言 我一语,http://em.21dtv.com/songs/60129224.mkv +黄凯芹-哪有一天不想你,http://em.21dtv.com/songs/60106491.mkv +黎明-哪有一天不想你(无原唱),http://em.21dtv.com/songs/60093560.mkv +黎明-那有一天不想你,http://em.21dtv.com/songs/60030845.mkv +黎明-那有一天不想你(演唱会),http://em.21dtv.com/songs/60030844.mkv +郭富城-那有一天不想你(演唱会),http://em.21dtv.com/songs/60030843.mkv +彭佳慧-那一夜你喝了酒,http://em.21dtv.com/songs/60086719.mkv +黄中原+傅薇-那一夜你喝了酒,http://em.21dtv.com/songs/60030838.mkv +陈淑桦-那一夜你喝了酒,http://em.21dtv.com/songs/60030837.mkv +刘朋-你愿意嫁给我吗,http://em.21dtv.com/songs/60076979.mkv +周鹏-你愿意嫁给我吗,http://em.21dtv.com/songs/60032451.mkv +冷漠-你愿意嫁给我吗,http://em.21dtv.com/songs/60067290.mkv +张卫健-你永远都最重要,http://em.21dtv.com/songs/60032425.mkv +张学友-你远远的说爱我,http://em.21dtv.com/songs/60032449.mkv +佚名-你永远不会孤独,http://em.21dtv.com/songs/60032424.mkv +王祖蓝-你永远不会改变,http://em.21dtv.com/songs/60068545.mkv +吴峙轩-宁愿笑着流眼泪,http://em.21dtv.com/songs/60032703.mkv +佚名-哪有闲空回娘家,http://em.21dtv.com/songs/60030678.mkv +王中平-你要我等你多久,http://em.21dtv.com/songs/60032396.mkv +小宇-你要说什么就说,http://em.21dtv.com/songs/60089817.mkv +曾淑勤-你有什么样的苦,http://em.21dtv.com/songs/60032438.mkv +黄国伦-你要什么我都给(无原唱),http://em.21dtv.com/songs/60032395.mkv +小甜甜-男友若是宋仲基,http://em.21dtv.com/songs/60125435.mkv +小文-难以启齿的柔弱,http://em.21dtv.com/songs/60031294.mkv +佚名-那一年我十七岁,http://em.21dtv.com/songs/60030819.mkv +胡龄月-你有那么爱我吗,http://em.21dtv.com/songs/60112161.mkv +F4-你有没在人群里,http://em.21dtv.com/songs/60090403.mkv +F4+言承旭-你有没在人群里,http://em.21dtv.com/songs/60090400.mkv +华语群星-你有没有听到我,http://em.21dtv.com/songs/60110056.mkv +刘若英-你有没有深爱过,http://em.21dtv.com/songs/60126659.mkv +苏慧伦-你有离开的自由,http://em.21dtv.com/songs/60032434.mkv +张信哲-难以抗拒你容颜,http://em.21dtv.com/songs/60031293.mkv +许绍洋-纽约街角的琴声,http://em.21dtv.com/songs/60032741.mkv +沙溢-你要的只是幸福,http://em.21dtv.com/songs/60032388.mkv +蓝雨-你要的只是幸福,http://em.21dtv.com/songs/60032387.mkv +阿生-你要的只是幸福,http://em.21dtv.com/songs/60032386.mkv +王宜雨-那一段真实的爱,http://em.21dtv.com/songs/60117916.mkv +秦御峰-你一定要幸福了,http://em.21dtv.com/songs/60101459.mkv +李猛-你有多久没回家,http://em.21dtv.com/songs/60106949.mkv +张杰+谢娜-娜样纯杰的爱恋,http://em.21dtv.com/songs/60030865.mkv +游本昌-哪有不平哪有我,http://em.21dtv.com/songs/60030677.mkv +李天华-你现在有没有睡,http://em.21dtv.com/songs/60089336.mkv +朱丹-你现在过得怎样,http://em.21dtv.com/songs/60076973.mkv +玄乐队-那些走过的街边,http://em.21dtv.com/songs/60080021.mkv +刘皇-你现在过的好吗,http://em.21dtv.com/songs/60090723.mkv +陈一郎-男性一生哭三摆,http://em.21dtv.com/songs/60095970.mkv +音萌萌-那些心碎的旋律,http://em.21dtv.com/songs/60133097.mkv +卢巧音-女吸血鬼的情歌(演唱会),http://em.21dtv.com/songs/60033008.mkv +周昊天-那些乞讨的孩子,http://em.21dtv.com/songs/60130194.mkv +周占超-那些年 那些事,http://em.21dtv.com/songs/60118452.mkv +于朦胧-那些你教我的事,http://em.21dtv.com/songs/60127717.mkv +苏打绿-你心里最后一个,http://em.21dtv.com/songs/60085539.mkv +詹曼铃-男性拢是铁心肝,http://em.21dtv.com/songs/60115379.mkv +王翔-你心里还有我吗,http://em.21dtv.com/songs/60032371.mkv +张清芳-你喜欢我的歌吗,http://em.21dtv.com/songs/60032349.mkv +佚名-你喜欢我的歌吗,http://em.21dtv.com/songs/60032348.mkv +吴碧霞-纳西篝火啊哩哩,http://em.21dtv.com/songs/60089208.mkv +孙淑媚-你幸福阮就快乐,http://em.21dtv.com/songs/60066198.mkv +周恬熙-那些不成熟的爱,http://em.21dtv.com/songs/60135049.mkv +欧阳菲菲-你想爱谁就爱谁,http://em.21dtv.com/songs/60032361.mkv +容祖儿-你想爱谁就爱谁(演唱会),http://em.21dtv.com/songs/60032360.mkv +叶振棠+黄沾-难为正邪定分界(演唱会),http://em.21dtv.com/songs/60031285.mkv +叶振棠+陈纪匡-难为正邪定分界(演唱会),http://em.21dtv.com/songs/60031284.mkv +BOB-难为正邪定分界,http://em.21dtv.com/songs/60069644.mkv +佚名-难忘太阳落山日(无原唱),http://em.21dtv.com/songs/60031282.mkv +任军太-你为什么抛弃我(演唱会),http://em.21dtv.com/songs/60062864.mkv +俊锋-你为什么那么狠,http://em.21dtv.com/songs/60061465.mkv +温兆伦-你为什么离开我,http://em.21dtv.com/songs/60032303.mkv +囚鸟-你为什么不上线,http://em.21dtv.com/songs/60083535.mkv +陈晓东-难忘你这夜心情,http://em.21dtv.com/songs/60031277.mkv +卓依婷-那无你是要按怎,http://em.21dtv.com/songs/60030785.mkv +逃跑计划-08年我们结婚,http://em.21dtv.com/songs/60095348.mkv +梁栋江-你为了多少人哭,http://em.21dtv.com/songs/60105199.mkv +顾凯-南无观世音菩萨,http://em.21dtv.com/songs/60031151.mkv +邱芸子-难忘的故乡月娘,http://em.21dtv.com/songs/60031254.mkv +东方依依-你我到底怎么了,http://em.21dtv.com/songs/60086736.mkv +卓依婷-难忘的初恋情人,http://em.21dtv.com/songs/60031251.mkv +尤雅-难忘的初恋情人,http://em.21dtv.com/songs/60031250.mkv +邓丽君-难忘的初恋情人,http://em.21dtv.com/songs/60031249.mkv +蔡幸娟-难忘的初恋情人,http://em.21dtv.com/songs/60031248.mkv +谢雷+黄慧玲-难忘的初恋情人(演唱会),http://em.21dtv.com/songs/60031247.mkv +邓丽君-难忘的初恋情人(演唱会),http://em.21dtv.com/songs/60031246.mkv +谢雷+黄慧玲-难忘初恋的情人,http://em.21dtv.com/songs/60088667.mkv +青山-难忘初恋的情人(演唱会),http://em.21dtv.com/songs/60083483.mkv +韩宝仪-难忘初恋的情人,http://em.21dtv.com/songs/60031239.mkv +邓丽君-难忘初恋的情人,http://em.21dtv.com/songs/60031238.mkv +高胜美-难忘初恋的情人(无原唱),http://em.21dtv.com/songs/60031237.mkv +祁隆-你偷走了我的心,http://em.21dtv.com/songs/60100340.mkv +邓丽君-那天晚上遇见你,http://em.21dtv.com/songs/60030781.mkv +任贤齐-你踏上我的脚步,http://em.21dtv.com/songs/60090544.mkv +炎彬-你偷了我的爱情,http://em.21dtv.com/songs/60076968.mkv +盖鸣晖+吴美英-南唐李后主-自焚,http://em.21dtv.com/songs/60031147.mkv +盖鸣晖+吴美英-南唐李后主-大婚,http://em.21dtv.com/songs/60031140.mkv +唐古-你偷空了我的心,http://em.21dtv.com/songs/60130206.mkv +小筑-那是怎样的天气,http://em.21dtv.com/songs/60076798.mkv +海威-你是怎样的女人,http://em.21dtv.com/songs/60112835.mkv +望海高歌,王星星-你说只能做朋友,http://em.21dtv.com/songs/60105955.mkv +望海高歌+王星星-你说只能做朋友,http://em.21dtv.com/songs/60105127.mkv +才娜旺姆-你是最美的哈达,http://em.21dtv.com/songs/60119585.mkv +杨杨+张皓宸-你是最好的自己,http://em.21dtv.com/songs/60103387.mkv +张清芳-你手中的清水烧,http://em.21dtv.com/songs/60032238.mkv +周慧敏-你是真的爱我吗,http://em.21dtv.com/songs/60032232.mkv +张真菲-你是真的爱我吗,http://em.21dtv.com/songs/60063432.mkv +彭羚-你是一首流行曲,http://em.21dtv.com/songs/60032228.mkv +陈麟+樊琪-你是妖来我是怪,http://em.21dtv.com/songs/60124665.mkv +王如华-你是一个坏东西,http://em.21dtv.com/songs/60128217.mkv +红蔷薇-你是鱼儿我是水,http://em.21dtv.com/songs/60097856.mkv +书画-你伤心我会哭泣,http://em.21dtv.com/songs/60083519.mkv +佚名-内山兄哥病相思,http://em.21dtv.com/songs/60031329.mkv +Mc阿卡兕-你是兄弟还是狗,http://em.21dtv.com/songs/60127658.mkv +何李+庞柳婷-你是我珍惜的人,http://em.21dtv.com/songs/60085533.mkv +李志敏-你是我最爱的人,http://em.21dtv.com/songs/60103358.mkv +欢子-你是我最爱的人,http://em.21dtv.com/songs/60083530.mkv +秀兰玛雅+洪荣宏-你是我最愛的人,http://em.21dtv.com/songs/60079938.mkv +湘东雨-你是我最爱的人,http://em.21dtv.com/songs/60076957.mkv +孙浩雨+汪洪萍-你是我最爱的人,http://em.21dtv.com/songs/60076956.mkv +叶时伟-你是我最爱的人,http://em.21dtv.com/songs/60063269.mkv +游鸿明-你是我最爱的人,http://em.21dtv.com/songs/60032208.mkv +王菀之-你是我最爱的人,http://em.21dtv.com/songs/60032207.mkv +李明洋-你是我最爱的人,http://em.21dtv.com/songs/60032206.mkv +李明洋+杨静-你是我永远的梦(无原唱),http://em.21dtv.com/songs/60095619.mkv +陈胜-你是我永远的爱(无原唱),http://em.21dtv.com/songs/60032196.mkv +梦鸽-你是我一生甜蜜,http://em.21dtv.com/songs/60032190.mkv +孙毅-你是我一生牵挂,http://em.21dtv.com/songs/60090925.mkv +许冠杰-你是我一生渴望,http://em.21dtv.com/songs/60032189.mkv +郭静+许冠英-你是我一生渴望,http://em.21dtv.com/songs/60032188.mkv +吴勇滨-你是我一生的歌,http://em.21dtv.com/songs/60064652.mkv +陈黎明-你是我一杯橙汁(演唱会),http://em.21dtv.com/songs/60032182.mkv +罗中旭-你是我心中的星,http://em.21dtv.com/songs/60091826.mkv +罗中旭+范志毅-你是我心中的星(演唱会),http://em.21dtv.com/songs/60032175.mkv +费小祥+赵毛毛-你是我心中的歌,http://em.21dtv.com/songs/60132903.mkv +卫东-你是我心中的歌,http://em.21dtv.com/songs/60115737.mkv +祁隆-你是我心里的宝,http://em.21dtv.com/songs/60119849.mkv +龙飞-你是我心肝宝贝,http://em.21dtv.com/songs/60061460.mkv +王键-你是我心底的疼,http://em.21dtv.com/songs/60107916.mkv +张可儿-你是我心底的伤,http://em.21dtv.com/songs/60098336.mkv +庾澄庆-你是我唯一所爱,http://em.21dtv.com/songs/60032168.mkv +红宇-你是我唯一的爱,http://em.21dtv.com/songs/60066196.mkv +林羡淇-男神为我唱首歌,http://em.21dtv.com/songs/60135441.mkv +汤潮-你是武松我是虎,http://em.21dtv.com/songs/60032216.mkv +姚灵-你是我生命的光,http://em.21dtv.com/songs/60131316.mkv +佚名-你是我所爱的人,http://em.21dtv.com/songs/60032160.mkv +妞妞姐妹-你是我所爱的人,http://em.21dtv.com/songs/60032159.mkv +李嘉-你是我所爱的人,http://em.21dtv.com/songs/60032158.mkv +杨东伟-你是我梦中的你,http://em.21dtv.com/songs/60131521.mkv +忆华-你是我回忆的伤,http://em.21dtv.com/songs/60094511.mkv +高原-那时我还不懂爱,http://em.21dtv.com/songs/60030767.mkv +宋祖英-你是我归乡的路,http://em.21dtv.com/songs/60090951.mkv +姜育恒-你是我的左心房,http://em.21dtv.com/songs/60071002.mkv +楼宏章-你是我的止疼药,http://em.21dtv.com/songs/60076952.mkv +萧蔷-你是我的101,http://em.21dtv.com/songs/60092004.mkv +苏有朋-你是我的一滴泪,http://em.21dtv.com/songs/60032129.mkv +马健南-你是我的小妖精,http://em.21dtv.com/songs/60104596.mkv +齐晨-你是我的小幸福,http://em.21dtv.com/songs/60114311.mkv +张航禹-你是我的心头肉,http://em.21dtv.com/songs/60032120.mkv +李尚尚-你是我的小时候,http://em.21dtv.com/songs/60081925.mkv +姜青涛-你是我的小情歌,http://em.21dtv.com/songs/60076949.mkv +张艺源-你是我的小绵羊,http://em.21dtv.com/songs/60108503.mkv +亦勋-你是我的小乖乖,http://em.21dtv.com/songs/60081244.mkv +伊能静-你是我的幸福吗,http://em.21dtv.com/songs/60032121.mkv +马浚伟-你是我的日与夜,http://em.21dtv.com/songs/60032106.mkv +马浚伟-你是我的日与夜(演唱会),http://em.21dtv.com/songs/60032105.mkv +教练 COACH-你是我的巧克力,http://em.21dtv.com/songs/60129163.mkv +张洪量-你是我的青春梦,http://em.21dtv.com/songs/60032102.mkv +小右-你是我的女朋友,http://em.21dtv.com/songs/60076945.mkv +何宗龙-你是我的陌生人(舞曲版),http://em.21dtv.com/songs/60067283.mkv +赵星翔-你是我的美妹子,http://em.21dtv.com/songs/60085527.mkv +彭三-你是我的玫瑰花,http://em.21dtv.com/songs/60112696.mkv +庞龙-你是我的玫瑰花,http://em.21dtv.com/songs/60032091.mkv +陈兴瑜-你是我的罗密欧(演唱会),http://em.21dtv.com/songs/60083521.mkv +陈兴瑜-你是我的罗密欧,http://em.21dtv.com/songs/60067282.mkv +陈兴瑜-你是我的罗密欧(舞曲版),http://em.21dtv.com/songs/60067281.mkv +无悔-你是我的好兄弟,http://em.21dtv.com/songs/60116856.mkv +汤潮-你是我的好朋友,http://em.21dtv.com/songs/60032088.mkv +戴恩玲-你是我的第一个,http://em.21dtv.com/songs/60032086.mkv +徐恩乾-你是我的独角兽,http://em.21dtv.com/songs/60115176.mkv +李翊君-你是我毕生的爱,http://em.21dtv.com/songs/60088039.mkv +王爱华-你是我不落的泪,http://em.21dtv.com/songs/60132737.mkv +刘牧-你是我爱的唯一,http://em.21dtv.com/songs/60101972.mkv +情深-你是我爱的传奇,http://em.21dtv.com/songs/60100057.mkv +龚孝英-你是属于哪一派(无原唱),http://em.21dtv.com/songs/60032050.mkv +张津涤-你是树 我是藤,http://em.21dtv.com/songs/60132447.mkv +刘美君-你说是甜我说苦(演唱会),http://em.21dtv.com/songs/60032268.mkv +唯莎+DJ何鹏-你是上天的礼物,http://em.21dtv.com/songs/60135066.mkv +不辣-你是上天的眷顾,http://em.21dtv.com/songs/60090473.mkv +岩迈仔-你是谁家的姑娘,http://em.21dtv.com/songs/60124836.mkv +阿福-你是谁家的姑娘,http://em.21dtv.com/songs/60032058.mkv +海心-你失去了最爱的,http://em.21dtv.com/songs/60098588.mkv +原子霏-你说你要去流浪,http://em.21dtv.com/songs/60130151.mkv +谭艳-南山南,http://em.21dtv.com/songs/60114800.mkv +陈妃平-你是泥土我是水,http://em.21dtv.com/songs/60032033.mkv +秋裤大叔-你说女人容易吗,http://em.21dtv.com/songs/60132775.mkv +秋裤大叔-你说女人容易吗,http://em.21dtv.com/songs/60125995.mkv +孙艺程-你说你还爱着我,http://em.21dtv.com/songs/60064654.mkv +六哲-你说你懂我的爱,http://em.21dtv.com/songs/60061462.mkv +潘美辰-你说你不敢爱我(演唱会),http://em.21dtv.com/songs/60032265.mkv +樱子-你是绵羊他是狼,http://em.21dtv.com/songs/60088154.mkv +樱子-你是绵羊她是狼,http://em.21dtv.com/songs/60066190.mkv +李杨飞-你什么时候回来,http://em.21dtv.com/songs/60069667.mkv +陈子嘟-你是蜜蜂我是蜜,http://em.21dtv.com/songs/60032029.mkv +谢容儿-你是猫儿我是鱼,http://em.21dtv.com/songs/60032028.mkv +郑俊海-拿什么爱你玉环,http://em.21dtv.com/songs/60100504.mkv +妲己-你是老鼠我是虎,http://em.21dtv.com/songs/60135094.mkv +郑秀文-男仕今天你很好,http://em.21dtv.com/songs/60031050.mkv +郑秀文-男士今天你很好,http://em.21dtv.com/songs/60031048.mkv +郑秀文-男士今天你很好(演唱会),http://em.21dtv.com/songs/60031047.mkv +路童-你是今生的唯一,http://em.21dtv.com/songs/60032026.mkv +富龙-你是狡猾的狐狸,http://em.21dtv.com/songs/60120472.mkv +佚名-廿世纪的恋人们,http://em.21dtv.com/songs/60032653.mkv +甜美真-你是蝴蝶我是花,http://em.21dtv.com/songs/60064644.mkv +卓依婷-内山姑娘要出嫁,http://em.21dtv.com/songs/60031326.mkv +赵传-内山姑娘要出嫁,http://em.21dtv.com/songs/60031325.mkv +叶启田-内山姑娘要出嫁,http://em.21dtv.com/songs/60031324.mkv +罗时丰-内山姑娘要出嫁,http://em.21dtv.com/songs/60031323.mkv +卓依婷+赵盈锦-内山姑娘要出嫁,http://em.21dtv.com/songs/60068504.mkv +佚名-内山姑娘嫁了后,http://em.21dtv.com/songs/60031322.mkv +叶启田-内山姑娘嫁了后,http://em.21dtv.com/songs/60031321.mkv +江音-你是否依然爱我(无原唱),http://em.21dtv.com/songs/60032019.mkv +凡间精灵-你是风来我是雨,http://em.21dtv.com/songs/60072241.mkv +红岩-你是否来过拉萨(演唱会),http://em.21dtv.com/songs/60069668.mkv +田震-你是否和我一样,http://em.21dtv.com/songs/60032016.mkv +周杰+林心如-你是风儿我是沙,http://em.21dtv.com/songs/60032011.mkv +伊然-你是否从未走远,http://em.21dtv.com/songs/60126597.mkv +张学友-你说的,http://em.21dtv.com/songs/60112665.mkv +于铭-那时的美好时光,http://em.21dtv.com/songs/60128755.mkv +天堂飘雪-你是大哥他是弟,http://em.21dtv.com/songs/60101059.mkv +苏勒亚其其格-你是草原我是花,http://em.21dtv.com/songs/60085524.mkv +伍思凯-你是春风我是雨,http://em.21dtv.com/songs/60090594.mkv +满江-你是春风我是雨,http://em.21dtv.com/songs/60032004.mkv +GNZ48-你所不知道的我,http://em.21dtv.com/songs/60127650.mkv +安心亚-你所不知道的我,http://em.21dtv.com/songs/60104939.mkv +易杰齐-你是不值得爱的,http://em.21dtv.com/songs/60064641.mkv +林长春-你说不要再等了,http://em.21dtv.com/songs/60113721.mkv +王小雨-你是不是也想念,http://em.21dtv.com/songs/60120761.mkv +微胖女神-你是不是喜欢我,http://em.21dtv.com/songs/60121710.mkv +林志炫-你是爱情的原因,http://em.21dtv.com/songs/60031990.mkv +林志炫+陈明-你是爱情的原因(演唱会),http://em.21dtv.com/songs/60031989.mkv +东方健-男人站直别趴下,http://em.21dtv.com/songs/60118298.mkv +韩信-男人最痛的眼泪,http://em.21dtv.com/songs/60031041.mkv +紫海-男人赚钱女人花,http://em.21dtv.com/songs/60118837.mkv +大张杰-男人再累也值得,http://em.21dtv.com/songs/60104009.mkv +薇薇-女人再流一次泪,http://em.21dtv.com/songs/60063056.mkv +胡大亮-男人真的不容易,http://em.21dtv.com/songs/60135640.mkv +谭圳-男人也需要关怀,http://em.21dtv.com/songs/60031027.mkv +韩春雨-男人也是一枝花,http://em.21dtv.com/songs/60130880.mkv +孟杨-男人一生三朵花,http://em.21dtv.com/songs/60031028.mkv +吴松发-男人一生不后悔,http://em.21dtv.com/songs/60083479.mkv +付晓强-男人眼泪自己擦,http://em.21dtv.com/songs/60128764.mkv +张卫健-男人也会掉眼泪,http://em.21dtv.com/songs/60031023.mkv +胡耀威-男人也会掉眼泪,http://em.21dtv.com/songs/60031022.mkv +郑中基-你让我又哭又笑,http://em.21dtv.com/songs/60031966.mkv +广杰-你若无心我便休,http://em.21dtv.com/songs/60133630.mkv +广杰-你若无心我便休,http://em.21dtv.com/songs/60132420.mkv +王昊-男人为谁流眼泪,http://em.21dtv.com/songs/60031013.mkv +殷正洋-你让我孤孤单单,http://em.21dtv.com/songs/60031961.mkv +花世纪-你让我变得神秘,http://em.21dtv.com/songs/60085522.mkv +瞿颖-男人听听女人心,http://em.21dtv.com/songs/60031011.mkv +佚名-女人天生爱做梦,http://em.21dtv.com/songs/60032959.mkv +潘广益-你若听见我的歌,http://em.21dtv.com/songs/60031975.mkv +林志颖-男人是最好骗的,http://em.21dtv.com/songs/60088105.mkv +林慧萍-你若是真的爱过(无原唱),http://em.21dtv.com/songs/60031974.mkv +邱芸子-男人输赢看女人,http://em.21dtv.com/songs/60123224.mkv +佚名-女人傻一点才好,http://em.21dtv.com/songs/60032954.mkv +张铭峰-男人伤心也流泪,http://em.21dtv.com/songs/60085497.mkv +小山-男人伤心不流泪,http://em.21dtv.com/songs/60061448.mkv +七郎-男人尚痛的所在,http://em.21dtv.com/songs/60031003.mkv +石尚-男人四十一枝花,http://em.21dtv.com/songs/60135609.mkv +潘长江-男人四十一支花,http://em.21dtv.com/songs/60031010.mkv +刘爽-女人四十一朵花,http://em.21dtv.com/songs/60109189.mkv +柯羽-男人三十还不立,http://em.21dtv.com/songs/60124149.mkv +潘长江-男人40一枝花,http://em.21dtv.com/songs/60090075.mkv +黄妃-男人世界的女人,http://em.21dtv.com/songs/60076828.mkv +林志颖-男人是很好骗的,http://em.21dtv.com/songs/60031005.mkv +叶玉卿-男人是否都一样,http://em.21dtv.com/songs/60031004.mkv +石云岚-男人请你先别哭,http://em.21dtv.com/songs/60031002.mkv +于晋-男人女人不容易,http://em.21dtv.com/songs/60114976.mkv +陶大帅-男人女人不容易,http://em.21dtv.com/songs/60108996.mkv +权施文-男人没钱没人爱,http://em.21dtv.com/songs/60069639.mkv +丁童-男人没钱不是罪,http://em.21dtv.com/songs/60110810.mkv +Mc天佑-女人们你们听好,http://em.21dtv.com/songs/50000117.mkv +MC天佑-女人们你们听好(告白版),http://em.21dtv.com/songs/60083567.mkv +承伟-男人流血不流泪,http://em.21dtv.com/songs/60105924.mkv +张雷-男人苦点算什么,http://em.21dtv.com/songs/60076825.mkv +羽泉-男人哭吧不是罪,http://em.21dtv.com/songs/60076824.mkv +刘德华-男人哭吧不是罪,http://em.21dtv.com/songs/60030989.mkv +刘德华-男人哭吧不是罪(演唱会),http://em.21dtv.com/songs/60030988.mkv +刘德华-男人哭吧不是罪(HD),http://em.21dtv.com/songs/10012644.mkv +宋荷艺+LINA-女人就是这样吧,http://em.21dtv.com/songs/60099957.mkv +樊少华-女人就怕嫁错郎,http://em.21dtv.com/songs/60077029.mkv +文奎-男人和男人的歌,http://em.21dtv.com/songs/60069636.mkv +海生-男人喝吧不是醉,http://em.21dtv.com/songs/60104285.mkv +小沈阳+高进-男人歌,http://em.21dtv.com/songs/60094072.mkv +王羽泽-女人带走我的心,http://em.21dtv.com/songs/60032907.mkv +姜育恒-男人的心也会痛,http://em.21dtv.com/songs/60030970.mkv +姚天成-男人的心也会碎,http://em.21dtv.com/songs/60083476.mkv +邱永传-男人的心伤不起(舞曲版),http://em.21dtv.com/songs/60083475.mkv +许茹芸-女人的心很简单,http://em.21dtv.com/songs/60088651.mkv +金元萱-女人的心都一样,http://em.21dtv.com/songs/60032922.mkv +天云-男人的心不会碎(舞曲版),http://em.21dtv.com/songs/60064599.mkv +孙彭飞-男人的累男人醉,http://em.21dtv.com/songs/60064598.mkv +司徒兰芳-男人都会犯的错,http://em.21dtv.com/songs/60064600.mkv +干露露-男人惭愧不惭愧,http://em.21dtv.com/songs/60105000.mkv +甄妮-你若不在我身边,http://em.21dtv.com/songs/60089424.mkv +曹磊-男人不是没眼泪,http://em.21dtv.com/songs/60030945.mkv +马力-男人不怕路艰难,http://em.21dtv.com/songs/60086720.mkv +张雷-女人不能心太软,http://em.21dtv.com/songs/60083564.mkv +冷漠-男人不能说不行,http://em.21dtv.com/songs/60066171.mkv +朱少华-男人不坏她不爱,http://em.21dtv.com/songs/60089331.mkv +杨海彪-年轻中国年轻梦,http://em.21dtv.com/songs/60119694.mkv +提子-你欠我一个爱情,http://em.21dtv.com/songs/60125606.mkv +谭杰希-女朋友要带回家,http://em.21dtv.com/songs/60068552.mkv +莫文蔚-女朋友的男朋友(演唱会),http://em.21dtv.com/songs/60032880.mkv +吴奇隆-那怕天愈来愈黑,http://em.21dtv.com/songs/60030753.mkv +葛本军-那片天空的雨季,http://em.21dtv.com/songs/60061442.mkv +吴峙轩-你凭什么说分手,http://em.21dtv.com/songs/60031945.mkv +蓝乐-你漂亮的小脸蛋,http://em.21dtv.com/songs/60094274.mkv +马宁-你旁边陌生的脸,http://em.21dtv.com/songs/60068538.mkv +Rae Sremmurd-No Type,http://em.21dtv.com/songs/60124974.mkv +JUN.K-NO LOVE,http://em.21dtv.com/songs/60129948.mkv +翁航融-那年追过的女孩,http://em.21dtv.com/songs/60131733.mkv +梁静茹-暖暖,http://em.21dtv.com/songs/60117867.mkv +By2-那年下雪的时候,http://em.21dtv.com/songs/60131042.mkv +BY2-那年下雪的时候,http://em.21dtv.com/songs/60113137.mkv +吴映洁-那年夏天的味道,http://em.21dtv.com/songs/60076788.mkv +小刚-那年我们十七岁,http://em.21dtv.com/songs/60087709.mkv +何润东-那年我们十七岁,http://em.21dtv.com/songs/60030744.mkv +佚名-那年我们十九岁,http://em.21dtv.com/songs/60030743.mkv +孔雀哥哥-那年我们还年少,http://em.21dtv.com/songs/60106766.mkv +崔天琪-你拿什么来爱我,http://em.21dtv.com/songs/60103248.mkv +张津涤-尼尼潘达在路上,http://em.21dtv.com/songs/60097829.mkv +王建杰-你哪呒讲我袂问(无原唱),http://em.21dtv.com/songs/60031923.mkv +卓依婷-你那里下雪了吗,http://em.21dtv.com/songs/60031933.mkv +周亮-你那里下雪了吗,http://em.21dtv.com/songs/60031932.mkv +易帆-你那里下雪了吗,http://em.21dtv.com/songs/60064639.mkv +王雪晶+庄群诗-年年吉祥保平安,http://em.21dtv.com/songs/60088333.mkv +张蔷-你那会心的一笑,http://em.21dtv.com/songs/60100866.mkv +童丽-你那好冷的小手,http://em.21dtv.com/songs/60076929.mkv +孟庭苇-你那好冷的小手,http://em.21dtv.com/songs/60031929.mkv +锦绣二重唱-你那好冷的小手,http://em.21dtv.com/songs/60031928.mkv +费玉清-你那好冷的小手,http://em.21dtv.com/songs/60031927.mkv +STEAM-na na hey hey kiss him goodbye,http://em.21dtv.com/songs/60004040.mkv +佚名-男女各占半边天,http://em.21dtv.com/songs/60030916.mkv +宰耿-你那动人的眼睛,http://em.21dtv.com/songs/60124785.mkv +巧千金-牛牛大哥最得意,http://em.21dtv.com/songs/60077011.mkv +刘心-那年春天下着雪,http://em.21dtv.com/songs/60066167.mkv +陈明真-念念不忘的情人,http://em.21dtv.com/songs/60032659.mkv +刀郎-你们一定要幸福(演唱会),http://em.21dtv.com/songs/60064638.mkv +赖淞凤-你没有比我爱你,http://em.21dtv.com/songs/60105389.mkv +星光二班-你们是我的星光,http://em.21dtv.com/songs/60031915.mkv +谢世超-农民山歌农民唱,http://em.21dtv.com/songs/60123173.mkv +唐安麒-你没理由忘记我,http://em.21dtv.com/songs/60081807.mkv +丁晓娜-那么狠心伤害我,http://em.21dtv.com/songs/60030729.mkv +胡彦斌-你买单还我买单(新版),http://em.21dtv.com/songs/60097855.mkv +易云飞-你妹的放开爱情,http://em.21dtv.com/songs/60099263.mkv +黄品源+莫文蔚-那么爱你为什么,http://em.21dtv.com/songs/60030728.mkv +容祖儿+张家辉-那么爱你为什么(演唱会),http://em.21dtv.com/songs/60030727.mkv +黄品源-那么爱你为什么(演唱会),http://em.21dtv.com/songs/60030726.mkv +倪惠英-牛郎织女鹊桥会,http://em.21dtv.com/songs/60032729.mkv +Dear Jane-哪里只得我共你,http://em.21dtv.com/songs/60124856.mkv +Dear Jane-哪里只得我共你,http://em.21dtv.com/songs/60119124.mkv +佚名-哪里天涯有鲜花,http://em.21dtv.com/songs/60030668.mkv +逃跑计划-哪里是你的拥抱,http://em.21dtv.com/songs/60109642.mkv +陈卿+黄紫涵-哪里是你的青春,http://em.21dtv.com/songs/60116334.mkv +刀郎-哪里来的骆驼队,http://em.21dtv.com/songs/60030666.mkv +佚名-哪里空闲回娘家,http://em.21dtv.com/songs/60030665.mkv +郭勇-你离开是我的错,http://em.21dtv.com/songs/60031892.mkv +李慧琳+陶馨州-你离开的那一夜,http://em.21dtv.com/songs/60088015.mkv +陈慧琳-你离开的那一夜,http://em.21dtv.com/songs/60031889.mkv +袁子皓-你离开的那晚上,http://em.21dtv.com/songs/60092036.mkv +佚名-尼罗河畔的歌声,http://em.21dtv.com/songs/60031353.mkv +林展逸+傅秋英-哝哢公哝哢婆,http://em.21dtv.com/songs/60032765.mkv +李葵航-努力吧我的朋友,http://em.21dtv.com/songs/60121790.mkv +佚名-哪里不平哪有我,http://em.21dtv.com/songs/60030663.mkv +姚苏容-你可知道我想你,http://em.21dtv.com/songs/60031860.mkv +柳影虹-你可知道我爱谁,http://em.21dtv.com/songs/60088133.mkv +李茂山-你可知道我爱谁,http://em.21dtv.com/songs/60031858.mkv +邓丽君-你可知道我爱谁,http://em.21dtv.com/songs/60031857.mkv +邓丽君-你可知道我爱谁(演唱会),http://em.21dtv.com/songs/60031856.mkv +嘉骏-你可知道我爱你,http://em.21dtv.com/songs/60031855.mkv +贡尕达哇-你可以嫁给我吗,http://em.21dtv.com/songs/60069662.mkv +萧亚轩-你看不见的地方,http://em.21dtv.com/songs/60031845.mkv +蔡旻佑-你看不到的天空,http://em.21dtv.com/songs/60031844.mkv +萧亚轩-你看不到的地方,http://em.21dtv.com/songs/60088566.mkv +刘维刚-你就这样放了手,http://em.21dtv.com/songs/60076924.mkv +讴洋-南极我心中的歌,http://em.21dtv.com/songs/60115388.mkv +蓝乐-你教我的大母鸡,http://em.21dtv.com/songs/60094273.mkv +骆超勇-你就是我的幸福,http://em.21dtv.com/songs/60031832.mkv +郑镒-你就是我的新娘,http://em.21dtv.com/songs/60070988.mkv +罗逻圣-你就是我的唯一,http://em.21dtv.com/songs/60106193.mkv +刘心宇-你就是我的唯一,http://em.21dtv.com/songs/60103111.mkv +征服-你就是我的太阳,http://em.21dtv.com/songs/60121695.mkv +马丽-你就是我的手杖,http://em.21dtv.com/songs/60119057.mkv +易欣-你就是我的彩虹,http://em.21dtv.com/songs/60103318.mkv +凌波-凝聚力量跟党走,http://em.21dtv.com/songs/60123661.mkv +邓小龙-你就放开我的手,http://em.21dtv.com/songs/60064634.mkv +宁桓宇-你觉得我配她吗,http://em.21dtv.com/songs/60111003.mkv +张杰-你就不要想起我,http://em.21dtv.com/songs/60133671.mkv +赵骏-你就不要想起我,http://em.21dtv.com/songs/60132939.mkv +简弘亦-你就不要想起我,http://em.21dtv.com/songs/60131719.mkv +田馥甄-你就不要想起我,http://em.21dtv.com/songs/60095014.mkv +黄若熙-你就不要说爱我,http://em.21dtv.com/songs/60129849.mkv +泽野弘之-ninelie,http://em.21dtv.com/songs/60131608.mkv +Aimer-Ninelie,http://em.21dtv.com/songs/60121204.mkv +林逸欣-你会怎么记得我,http://em.21dtv.com/songs/60120673.mkv +谢霆锋-你还要我做什么,http://em.21dtv.com/songs/60088669.mkv +冰王子阿斌-你还要我说什么,http://em.21dtv.com/songs/60031752.mkv +郑伊健-你狠心来伤我吗,http://em.21dtv.com/songs/60031792.mkv +郑伊健-你狠心来伤我吗(演唱会),http://em.21dtv.com/songs/60031791.mkv +裸儿-呐喊,http://em.21dtv.com/songs/60109617.mkv +窦智孔+戴爱玲-你和我和他之间,http://em.21dtv.com/songs/60031785.mkv +刘牧-女孩我的心上人,http://em.21dtv.com/songs/60085554.mkv +云开-你还是离开了我,http://em.21dtv.com/songs/60031746.mkv +杨五琴-南海世代我家园,http://em.21dtv.com/songs/60120651.mkv +刘巾湲-你和人民在一起,http://em.21dtv.com/songs/60069658.mkv +麒龙-你还能爱我多久,http://em.21dtv.com/songs/60031743.mkv +邓福如-你好吗天气好吗,http://em.21dtv.com/songs/60076917.mkv +黄安-奈何两字拉成桥,http://em.21dtv.com/songs/60030873.mkv +珍妮弗-男孩看见野玫瑰,http://em.21dtv.com/songs/60132748.mkv +赵传-男孩看见野玫瑰,http://em.21dtv.com/songs/60030907.mkv +洪卓立-男孩看见野玫瑰,http://em.21dtv.com/songs/60030906.mkv +周慧敏-你还记得从前吗,http://em.21dtv.com/songs/60031739.mkv +葛镇狄-你好姑娘大小姐,http://em.21dtv.com/songs/60135687.mkv +丁薇-女孩儿与四重奏,http://em.21dtv.com/songs/60032866.mkv +孔雀哥哥-你回东川看过我,http://em.21dtv.com/songs/60132352.mkv +黄俊郎-女孩别为我哭泣,http://em.21dtv.com/songs/60089027.mkv +阎维文-难活不过人想人,http://em.21dtv.com/songs/60031220.mkv +潘越云-你会爱我很久吗,http://em.21dtv.com/songs/60031799.mkv +于文文-女孩爱上电吉他,http://em.21dtv.com/songs/60105563.mkv +阿轮-女公子一路光明,http://em.21dtv.com/songs/60095961.mkv +海生-那个真实的故事,http://em.21dtv.com/songs/60076778.mkv +张蓉蓉-你甘有真心爱过,http://em.21dtv.com/songs/60072714.mkv +张蓉蓉-你咁有真心爱过,http://em.21dtv.com/songs/60031758.mkv +蔡丽津-你咁有真心爱过,http://em.21dtv.com/songs/60031757.mkv +蔡丽津-你甘有真心爱过,http://em.21dtv.com/songs/60031707.mkv +许钧-暖光,http://em.21dtv.com/songs/60109625.mkv +彭佳慧+许钧-暖光,http://em.21dtv.com/songs/60109350.mkv +莫文蔚-你给我多少时间,http://em.21dtv.com/songs/60031723.mkv +袁哲-你给我的每一天(演唱会),http://em.21dtv.com/songs/60031720.mkv +张学友-你给我的爱最多,http://em.21dtv.com/songs/60031719.mkv +柯以敏-那个伤害你的人,http://em.21dtv.com/songs/60076776.mkv +赵传-那个傻瓜爱过你,http://em.21dtv.com/songs/60030705.mkv +张迈-那个士兵真好,http://em.21dtv.com/songs/60070965.mkv +燕妮-你过节日我唱歌,http://em.21dtv.com/songs/60088258.mkv +邱锋泽-拿个回忆做什么,http://em.21dtv.com/songs/60131872.mkv +蔡小虎-你甘搁会想起我,http://em.21dtv.com/songs/60120930.mkv +黄乙玲-你甘搁会想起我(无原唱),http://em.21dtv.com/songs/60080017.mkv +佚名-你甘搁会想起我(无原唱),http://em.21dtv.com/songs/60031703.mkv +贾堂霞-那个放不下的你,http://em.21dtv.com/songs/60104445.mkv +枫舞+囚鸟-那个放不下的你,http://em.21dtv.com/songs/60104252.mkv +佚名-南国的卖花姑娘,http://em.21dtv.com/songs/60095403.mkv +文夏-南国的卖花姑娘,http://em.21dtv.com/songs/60077634.mkv +周敏萱-那个春天来看你,http://em.21dtv.com/songs/60030693.mkv +方大同-nothings gonna change my love for you,http://em.21dtv.com/songs/60004184.mkv +GEORGE BENSON-nothings gonna change my love for you,http://em.21dtv.com/songs/60004183.mkv +蒙面哥-宁负天下不负你,http://em.21dtv.com/songs/60129572.mkv +齐霖-你放弃了这段情,http://em.21dtv.com/songs/60126500.mkv +邵大伦-你返来的彼一暝,http://em.21dtv.com/songs/60086731.mkv +郑少秋-男儿着眼天地间,http://em.21dtv.com/songs/60030902.mkv +张涛-鸟儿在风中歌唱(演唱会),http://em.21dtv.com/songs/60067297.mkv +李蕙敏-男儿再不负深情,http://em.21dtv.com/songs/60030901.mkv +朱永飞-男儿有泪不轻弹,http://em.21dtv.com/songs/60116889.mkv +陈一郎-男儿漂泊的心情,http://em.21dtv.com/songs/60030899.mkv +刘罡-男儿还得看今朝,http://em.21dtv.com/songs/60106650.mkv +李蕙敏-男儿不再负深情,http://em.21dtv.com/songs/60030885.mkv +覃浩-你的真心给了谁,http://em.21dtv.com/songs/60083506.mkv +李茂山-难道这是在梦里,http://em.21dtv.com/songs/60088049.mkv +马文吉-难到这是我的错,http://em.21dtv.com/songs/60076835.mkv +马文吉-难道这是我的错,http://em.21dtv.com/songs/60031191.mkv +韩超-难道这是我的错,http://em.21dtv.com/songs/60031190.mkv +吴生全-你带走了我的心,http://em.21dtv.com/songs/60076880.mkv +施文彬-难道这就是爱情,http://em.21dtv.com/songs/60131469.mkv +张冬玲-难道真的无所谓,http://em.21dtv.com/songs/60105020.mkv +高林生+刘小钰-你的眼神告诉我,http://em.21dtv.com/songs/60031670.mkv +柴强-你的眼泪为了谁,http://em.21dtv.com/songs/60117858.mkv +田一龙-你的眼泪会说谎,http://em.21dtv.com/songs/60064627.mkv +佚名-你的眼睛是星星,http://em.21dtv.com/songs/60031658.mkv +倪尔萍-你的香味还没走,http://em.21dtv.com/songs/60134904.mkv +罗嘉良-你的心让我来疼,http://em.21dtv.com/songs/60031640.mkv +谷峰-你的心情好不好,http://em.21dtv.com/songs/60031639.mkv +谷峰-你的心情好不好(演唱会),http://em.21dtv.com/songs/60031638.mkv +邱淑君-你的心内敢有我(无原唱),http://em.21dtv.com/songs/60031635.mkv +邱淑君-你的心内藏啥人(无原唱),http://em.21dtv.com/songs/60031634.mkv +范思威+郭玲-你的心里有过谁,http://em.21dtv.com/songs/60076900.mkv +尚飞飞-你的心里还有谁,http://em.21dtv.com/songs/60127928.mkv +金泽-你的心里还有谁,http://em.21dtv.com/songs/60031632.mkv +伍义-你的幸福我知道,http://em.21dtv.com/songs/60031647.mkv +苏立生-难道,http://em.21dtv.com/songs/60127333.mkv +白百何-难道,http://em.21dtv.com/songs/60125976.mkv +渔圈-你的心被狗吃了,http://em.21dtv.com/songs/60113819.mkv +刘德华-你的心爱过几个,http://em.21dtv.com/songs/60031629.mkv +韩博-你对我有多重要,http://em.21dtv.com/songs/60066182.mkv +任浩铭-你对我有多了解,http://em.21dtv.com/songs/60081972.mkv +龙影云-你的温柔给了谁,http://em.21dtv.com/songs/60132029.mkv +陈盈洁-你都无情谁有义,http://em.21dtv.com/songs/60031691.mkv +刘冲-难道我爱得不够,http://em.21dtv.com/songs/60087383.mkv +刘冲-难道我爱的不够,http://em.21dtv.com/songs/60031184.mkv +樊凡-你的痛我明白的,http://em.21dtv.com/songs/60081627.mkv +张康宁-娘的手,http://em.21dtv.com/songs/60119516.mkv +韩超-难道是我错了吗,http://em.21dtv.com/songs/60076841.mkv +王中平-你的伤是我的痛,http://em.21dtv.com/songs/60063053.mkv +央金兰泽-你的思念我的歌,http://em.21dtv.com/songs/60068533.mkv +陈钟-你的生命里有我,http://em.21dtv.com/songs/60130860.mkv +流苏-你的世界我来过,http://em.21dtv.com/songs/60130548.mkv +枫舞+相容-你的世界我来过,http://em.21dtv.com/songs/60127116.mkv +庄妮-你的世界我不懂,http://em.21dtv.com/songs/60121636.mkv +杨媛媛-你的身边还有我,http://em.21dtv.com/songs/60068532.mkv +枫桥-你的柔情你的美,http://em.21dtv.com/songs/60098523.mkv +戴妮-你的柔情你的美,http://em.21dtv.com/songs/60098394.mkv +刘德华-你的情用一生还,http://em.21dtv.com/songs/60090691.mkv +王嘉妮-难道你都忘了吗,http://em.21dtv.com/songs/60063019.mkv +陈慧琳+古巨基-难道你都记不起,http://em.21dtv.com/songs/60031175.mkv +李羽龙-难道你不爱我吗,http://em.21dtv.com/songs/60117822.mkv +刘静-你的名字真好听,http://em.21dtv.com/songs/60116601.mkv +水木年华-你的每一次呼吸,http://em.21dtv.com/songs/60100257.mkv +潘劲东-你的明天会很美,http://em.21dtv.com/songs/60031593.mkv +张燊悦-你的美少女战士,http://em.21dtv.com/songs/60092641.mkv +廖丽娜-你的良心在那里(无原唱),http://em.21dtv.com/songs/60031580.mkv +丁浩然-你的故事我的歌,http://em.21dtv.com/songs/60080128.mkv +陈一凡-你到底有什么好,http://em.21dtv.com/songs/60101553.mkv +庄学忠-你到底要不要我,http://em.21dtv.com/songs/60087748.mkv +曾春年-你到底需要什么,http://em.21dtv.com/songs/60031536.mkv +赵本水-你到底爱不爱我,http://em.21dtv.com/songs/60031528.mkv +陈兴瑜-你到底爱不爱我,http://em.21dtv.com/songs/60031527.mkv +姜姿伢-你的春天我来过,http://em.21dtv.com/songs/60133545.mkv +书画-你的沧桑我的疼,http://em.21dtv.com/songs/60080693.mkv +许志豪+林良欢-你的爱无我的份,http://em.21dtv.com/songs/60064624.mkv +糖糖乐团-你的爱是我想要,http://em.21dtv.com/songs/60061452.mkv +刘庭羽+和汇慧-你的爱是我的命,http://em.21dtv.com/songs/60081664.mkv +容海-你的爱让我勇敢,http://em.21dtv.com/songs/60087697.mkv +佚名-你的爱人不是我,http://em.21dtv.com/songs/60031547.mkv +肖遥-你的爱情太虚伪,http://em.21dtv.com/songs/60127294.mkv +肖遥-你的爱情太虚伪,http://em.21dtv.com/songs/60031544.mkv +胡艾莲-你的爱溜走了吗,http://em.21dtv.com/songs/60111363.mkv +董文华-你从战场上归来,http://em.21dtv.com/songs/60031520.mkv +高明骏-你刺痛了我的心(无原唱),http://em.21dtv.com/songs/60031515.mkv +杜德伟-你才是我最想要,http://em.21dtv.com/songs/60091380.mkv +陈娟儿-你从来就没想过,http://em.21dtv.com/songs/60126378.mkv +汤灿-你从春风中走来,http://em.21dtv.com/songs/60031516.mkv +谭晶-女兵走在大街上(演唱会),http://em.21dtv.com/songs/60032835.mkv +陈咏-你把真心给了谁,http://em.21dtv.com/songs/60085509.mkv +杨紫燃-你把真心给了谁,http://em.21dtv.com/songs/60066180.mkv +杨谨-你不准我一个人,http://em.21dtv.com/songs/60125761.mkv +石乔-你不知搁我上知,http://em.21dtv.com/songs/60135602.mkv +李秋实-你不在而我还在,http://em.21dtv.com/songs/60109434.mkv +柯智棠-你不真的想流浪,http://em.21dtv.com/songs/60115245.mkv +梅林-你不知道的思念,http://em.21dtv.com/songs/60107002.mkv +刘若英-你不要送花给我,http://em.21dtv.com/songs/60067273.mkv +刘美冰-你不要离我而去,http://em.21dtv.com/songs/60114430.mkv +正午-你把幸福给了谁,http://em.21dtv.com/songs/60116082.mkv +秦浩-你把我伤的太深,http://em.21dtv.com/songs/60105284.mkv +龙晓飞-你把温柔给了谁,http://em.21dtv.com/songs/60066179.mkv +谢小雨-你把我的心占据,http://em.21dtv.com/songs/60107222.mkv +王易俊-你把我的心弄丢,http://em.21dtv.com/songs/60085508.mkv +郭雅琪-你比桃花更美丽,http://em.21dtv.com/songs/60031437.mkv +彭坦-你不是一个人了,http://em.21dtv.com/songs/60089878.mkv +王曼熹-你不是我的王子,http://em.21dtv.com/songs/60121923.mkv +郑海龙-你不是我的爱人,http://em.21dtv.com/songs/60105429.mkv +法瑷-那不是你的罪过(无原唱),http://em.21dtv.com/songs/60030686.mkv +马健涛-你比什么都珍贵,http://em.21dtv.com/songs/60135996.mkv +倪尔萍-你比什么都重要,http://em.21dtv.com/songs/60070980.mkv +赵越-拿不起放不下起,http://em.21dtv.com/songs/60030650.mkv +齐晨-拿不起放不下你,http://em.21dtv.com/songs/60100680.mkv +赵越-拿不起放不下你,http://em.21dtv.com/songs/60076771.mkv +颜如玉-能不能再爱一次,http://em.21dtv.com/songs/60066178.mkv +张韶涵-能不能勇敢说爱,http://em.21dtv.com/songs/60031344.mkv +马旭东-能不能,http://em.21dtv.com/songs/60114896.mkv +司徒荣-你不该这样对我,http://em.21dtv.com/songs/60031464.mkv +彭伟家-你把初吻给了谁,http://em.21dtv.com/songs/60072225.mkv +付笛声-你比从前更美丽,http://em.21dtv.com/songs/60087270.mkv +姜华-你爸爸不喜欢我(无原唱),http://em.21dtv.com/songs/60031432.mkv +王强-你把爱情给了谁,http://em.21dtv.com/songs/60031420.mkv +龙梅子-你把爱情给了谁,http://em.21dtv.com/songs/60031419.mkv +萧闳仁-你爱怎样就怎样(演唱会),http://em.21dtv.com/songs/60032596.mkv +吕继宏-你爱太阳到永远,http://em.21dtv.com/songs/60031395.mkv +陈世强-你爱听的那首歌(无原唱),http://em.21dtv.com/songs/60031396.mkv +沈凌云-你爱谁,http://em.21dtv.com/songs/60098555.mkv +动力火车-你爱的这个世界,http://em.21dtv.com/songs/60090739.mkv +沈海乐-你爱的是哪个她(演唱会),http://em.21dtv.com/songs/60069646.mkv +沈丹丹-你爱的是哪个她(演唱会),http://em.21dtv.com/songs/60069645.mkv +轲然-你爱的人不是我,http://em.21dtv.com/songs/60085507.mkv +郭静-你爱的人不是我,http://em.21dtv.com/songs/60076857.mkv +火雅-你爱的人不是我,http://em.21dtv.com/songs/60067267.mkv +毛阿敏-梦中抓住你的心,http://em.21dtv.com/songs/60029835.mkv +陈雅森+苏勒亚其其格-命中注定遇见你,http://em.21dtv.com/songs/60134427.mkv +乔幼-命中注定我爱你,http://em.21dtv.com/songs/60130044.mkv +洪文斌-命中注定我爱你,http://em.21dtv.com/songs/60095769.mkv +张文绮-命中注定你和我,http://em.21dtv.com/songs/60064573.mkv +贺世哲-命中注定爱上你,http://em.21dtv.com/songs/60132907.mkv +贺世哲-命中注定爱上你,http://em.21dtv.com/songs/60127425.mkv +乌兰托娅-梦中有片绿草地,http://em.21dtv.com/songs/60076696.mkv +红陌-米脂有个秦幼幼,http://em.21dtv.com/songs/60131722.mkv +韩庚-瞄准心脏开一枪,http://em.21dtv.com/songs/60117370.mkv +王杰-梦在无梦的夜里,http://em.21dtv.com/songs/60029757.mkv +孙维良-墨子情韵鲁山梦,http://em.21dtv.com/songs/60096244.mkv +蔡雯君-梦中祈祷盼你来,http://em.21dtv.com/songs/60109615.mkv +张家乐-妈在哪家就在哪,http://em.21dtv.com/songs/60113460.mkv +蔡卓妍-明知你的他没有,http://em.21dtv.com/songs/60030262.mkv +朱跃明-满载丰收满载歌,http://em.21dtv.com/songs/60028546.mkv +蓝星-梦中的知已红颜,http://em.21dtv.com/songs/60064557.mkv +蓝星-梦中的知己红颜,http://em.21dtv.com/songs/60083407.mkv +刘建东-梦中的香格里拉,http://em.21dtv.com/songs/60125183.mkv +阿木乃-梦中的香格里拉,http://em.21dtv.com/songs/60096524.mkv +乌兰托娅-梦中的香格里拉(演唱会),http://em.21dtv.com/songs/60083405.mkv +阿玻-梦中的香格里拉,http://em.21dtv.com/songs/60029789.mkv +杨晓微-梦中的水乡姑娘,http://em.21dtv.com/songs/60125748.mkv +容中尔甲-梦中的达娃卓玛,http://em.21dtv.com/songs/60029767.mkv +洪禄云+宋健-梦中的坝上草原,http://em.21dtv.com/songs/60114654.mkv +阿里西里组合-梦中的阿里西里,http://em.21dtv.com/songs/60133032.mkv +徐秋菊+王映楼-梅州唱到新加坡,http://em.21dtv.com/songs/60029005.mkv +小斯韵-没有作业的王国,http://em.21dtv.com/songs/60028916.mkv +达明一派-没有张扬的命案(演唱会),http://em.21dtv.com/songs/60069595.mkv +金智娟-没有终点的流浪,http://em.21dtv.com/songs/60028915.mkv +吴瑕-没有永远的永远,http://em.21dtv.com/songs/60095273.mkv +高进-没有一夜不想你,http://em.21dtv.com/songs/60106475.mkv +钟明秋-明月夜,http://em.21dtv.com/songs/60108094.mkv +凯勇扎西-没有一天不想你,http://em.21dtv.com/songs/60099109.mkv +东方T&J+曹颖-没有一天不想你(无原唱),http://em.21dtv.com/songs/60028907.mkv +姚苏蓉-没有月亮的晚上,http://em.21dtv.com/songs/60089229.mkv +杨光-没有月亮的晚上,http://em.21dtv.com/songs/60028913.mkv +王馨平-没有月亮的晚上,http://em.21dtv.com/songs/60028912.mkv +林玉英-没有月亮的晚上(无原唱),http://em.21dtv.com/songs/60028911.mkv +洪爱莉-没有月亮的时候,http://em.21dtv.com/songs/60028910.mkv +BIGBANG-没有眼泪的傻瓜,http://em.21dtv.com/songs/60028904.mkv +黄品源-没有月亮的黑夜,http://em.21dtv.com/songs/60090339.mkv +周华健-没有永久的爱情,http://em.21dtv.com/songs/60028909.mkv +佚名-没有永久的爱情,http://em.21dtv.com/songs/60028908.mkv +张雨生-没有烟抽的日子,http://em.21dtv.com/songs/60028902.mkv +王杰-没有烟抽的日子,http://em.21dtv.com/songs/60028901.mkv +张惠妹-没有烟抽的日子(演唱会),http://em.21dtv.com/songs/60028900.mkv +佚名-没有心情说再见,http://em.21dtv.com/songs/60028898.mkv +涂议嘉-没有雪的圣诞夜,http://em.21dtv.com/songs/60108688.mkv +涂议嘉+刘欢-没有雪的圣诞夜,http://em.21dtv.com/songs/60107874.mkv +莫文蔚-没有围墙的世界,http://em.21dtv.com/songs/60107970.mkv +何润东-没有我你怎么办,http://em.21dtv.com/songs/60028894.mkv +任军太-没有我你好好过,http://em.21dtv.com/songs/60028893.mkv +张祥洪-没有我的每一天,http://em.21dtv.com/songs/60083368.mkv +张祥洪+于逸飞-没有我的每一天,http://em.21dtv.com/songs/60083367.mkv +iKON-MY TYPE,http://em.21dtv.com/songs/60115594.mkv +安七炫-某一天心述说着,http://em.21dtv.com/songs/60030505.mkv +罗启聪-牧羊少年狮子山,http://em.21dtv.com/songs/60126031.mkv +谭双剑-没有什么大不了,http://em.21dtv.com/songs/60070912.mkv +零点乐队-没有什么不可以,http://em.21dtv.com/songs/60028883.mkv +零点乐队-没有什么不可以(演唱会),http://em.21dtv.com/songs/60028882.mkv +陈奕迅-没有手机的日子,http://em.21dtv.com/songs/60028886.mkv +陈奕迅-没有手机的日子(演唱会),http://em.21dtv.com/songs/60028885.mkv +沈洋-没有谁管得住我,http://em.21dtv.com/songs/60028887.mkv +张信哲-没有人知的故事,http://em.21dtv.com/songs/60028880.mkv +周慧敏-没有人傻得像我,http://em.21dtv.com/songs/60028877.mkv +周慧敏-没有人傻得像我(演唱会),http://em.21dtv.com/songs/60028876.mkv +刘德华-没有人可以像你,http://em.21dtv.com/songs/60028873.mkv +刘德华-没有人可以像你(演唱会),http://em.21dtv.com/songs/60028872.mkv +刘德华-没有人可以像你(HD),http://em.21dtv.com/songs/10012642.mkv +阿国-没有钱谁会爱我,http://em.21dtv.com/songs/60102854.mkv +孙琳-明月千里寄相思,http://em.21dtv.com/songs/60089801.mkv +林淑容-明月千里寄相思,http://em.21dtv.com/songs/60088113.mkv +张凤凤-明月千里寄相思,http://em.21dtv.com/songs/60030252.mkv +徐小凤-明月千里寄相思,http://em.21dtv.com/songs/60030251.mkv +吴莺音-明月千里寄相思,http://em.21dtv.com/songs/60030250.mkv +李茂山-明月千里寄相思,http://em.21dtv.com/songs/60030249.mkv +邓丽君-明月千里寄相思,http://em.21dtv.com/songs/60030248.mkv +迪克牛仔+孙悦-明月千里寄相思(演唱会),http://em.21dtv.com/songs/60030247.mkv +蔡琴-明月千里寄相思(HD演唱会),http://em.21dtv.com/songs/60030246.mkv +MARIO+PCHY-明月千里寄相思(演唱会),http://em.21dtv.com/songs/60070949.mkv +莫旭秋-明月千里寄相思(演唱会),http://em.21dtv.com/songs/60064571.mkv +刘是非-没有权利不爱你,http://em.21dtv.com/songs/60106645.mkv +赵喜同+刘畅-没有牵过你的手,http://em.21dtv.com/songs/60131845.mkv +苏慧伦-没有去过的地方,http://em.21dtv.com/songs/60090179.mkv +吴奇隆-没有你在我身边,http://em.21dtv.com/songs/60028845.mkv +金珠娜-没有你 怎么办,http://em.21dtv.com/songs/60114154.mkv +张力超-没有你也一样活,http://em.21dtv.com/songs/60116784.mkv +佚名-没有泥土那有花,http://em.21dtv.com/songs/60028803.mkv +凤飞飞-没有泥土那有花,http://em.21dtv.com/songs/60028802.mkv +钟镇涛-没有你没有喜欢,http://em.21dtv.com/songs/60088815.mkv +钟镇涛-没有你没有欢喜,http://em.21dtv.com/songs/60028836.mkv +张敬轩+王菀之-没有你还是爱你(演唱会),http://em.21dtv.com/songs/60028833.mkv +唐素琪-没有你还是爱你(演唱会),http://em.21dtv.com/songs/60028832.mkv +林忆莲-没有你还是爱你(演唱会),http://em.21dtv.com/songs/60028831.mkv +黄凯芹-没有你还是爱你(演唱会),http://em.21dtv.com/songs/60028830.mkv +王若熙-没有你活不下去,http://em.21dtv.com/songs/60117044.mkv +希婕-没有你的下雪天,http://em.21dtv.com/songs/60028827.mkv +许茹芸-没有你的圣诞节,http://em.21dtv.com/songs/60092081.mkv +黄韵玲-没有你的圣诞节,http://em.21dtv.com/songs/60028824.mkv +爱戴-没有你的圣诞节(演唱会),http://em.21dtv.com/songs/60028823.mkv +缘之雪-没有你的日子里,http://em.21dtv.com/songs/60100375.mkv +东浩-没有你的情人节(演唱会),http://em.21dtv.com/songs/60069593.mkv +徐婕儿-没有你的每一天,http://em.21dtv.com/songs/60028817.mkv +王友良-没有你的蓝天空,http://em.21dtv.com/songs/60028816.mkv +高瑜-漫游(摇滚版),http://em.21dtv.com/songs/60098947.mkv +李翊君-没有明天没有你,http://em.21dtv.com/songs/60028800.mkv +张寒-每一秒都在想你,http://em.21dtv.com/songs/60029098.mkv +周天然-没有谜底的谜语,http://em.21dtv.com/songs/60085423.mkv +杨千嬅-没有目的地爱了,http://em.21dtv.com/songs/60061273.mkv +马云龙-没有良心的女人,http://em.21dtv.com/songs/60068465.mkv +段玫梅-梅雨帘,http://em.21dtv.com/songs/60102429.mkv +陈瑞-没有礼物的生日,http://em.21dtv.com/songs/60094749.mkv +佚名-没有泪水的分离(无原唱),http://em.21dtv.com/songs/60028797.mkv +齐秦-没有泪水的分离(无原唱),http://em.21dtv.com/songs/60028796.mkv +佚名-没有路人的都市,http://em.21dtv.com/songs/60028799.mkv +Céline Dion-MY LOVE,http://em.21dtv.com/songs/60131049.mkv +Reddy+A.C.T-My Lite,http://em.21dtv.com/songs/60134789.mkv +郑俊河+尹尚+孝琳-My Life,http://em.21dtv.com/songs/60118098.mkv +小鱼儿-My Lady,http://em.21dtv.com/songs/60130269.mkv +小鱼儿-My Lady,http://em.21dtv.com/songs/60129007.mkv +焯皓-My Lady,http://em.21dtv.com/songs/60107046.mkv +陈星-没有恋爱的孩子,http://em.21dtv.com/songs/60028798.mkv +平安-没有尽头的城市,http://em.21dtv.com/songs/60125471.mkv +平安-没有尽头的城市,http://em.21dtv.com/songs/60097860.mkv +潘美辰-没有结局的游戏,http://em.21dtv.com/songs/60091664.mkv +白子正-没有结局的结束(无原唱),http://em.21dtv.com/songs/60028794.mkv +苏永康-没有季节的火花,http://em.21dtv.com/songs/60028791.mkv +苏永康-没有季节的火花(演唱会),http://em.21dtv.com/songs/60028790.mkv +曾一鸣-没有季节的都会,http://em.21dtv.com/songs/60085422.mkv +刘缘-没有结局的爱情,http://em.21dtv.com/songs/60114427.mkv +王馨-没有结果的结果,http://em.21dtv.com/songs/60120786.mkv +阎维文-没有黑夜的新疆,http://em.21dtv.com/songs/60090278.mkv +汤宝如-没有回忆的冬季,http://em.21dtv.com/songs/60028789.mkv +祁隆+容舒-没有回头的爱情,http://em.21dtv.com/songs/60112134.mkv +吴雨霏-没有花收的日子(HD),http://em.21dtv.com/songs/10012742.mkv +吴雨霏-没有花收的日子,http://em.21dtv.com/songs/60105702.mkv +沈芳如-没有公式的恋爱,http://em.21dtv.com/songs/60028785.mkv +艾歌-没有感情的感情,http://em.21dtv.com/songs/60028783.mkv +路童-没有感情的爱情,http://em.21dtv.com/songs/60028782.mkv +林大晋-My Girl,http://em.21dtv.com/songs/60116041.mkv +费玉清+萧敬腾-My Girl,http://em.21dtv.com/songs/60114088.mkv +群可+玉兔-没有方向感的爱,http://em.21dtv.com/songs/60086692.mkv +林忆莲-没有发生的爱情,http://em.21dtv.com/songs/60028781.mkv +林忆莲-没有发生的爱情(演唱会),http://em.21dtv.com/songs/60028780.mkv +王中平-梦有多长有多远,http://em.21dtv.com/songs/60091686.mkv +言承旭-没有地址的思念,http://em.21dtv.com/songs/60028779.mkv +朴信惠-My Dear,http://em.21dtv.com/songs/60102317.mkv +佚名-满园春色艳阳天,http://em.21dtv.com/songs/60028543.mkv +佚名-满园春色艳阳天(无原唱),http://em.21dtv.com/songs/60028542.mkv +刘伟+陈妙权-没有彩排的人生,http://em.21dtv.com/songs/60076586.mkv +那英+张磊-梦一场 南山南,http://em.21dtv.com/songs/60115442.mkv +乔尼+顾杰-My City,http://em.21dtv.com/songs/60103861.mkv +兄弟联-没有彩虹的阳光,http://em.21dtv.com/songs/60095260.mkv +刘德华-没有翅膀的天使,http://em.21dtv.com/songs/60028776.mkv +刘德华-没有翅膀的天使(演唱会),http://em.21dtv.com/songs/60028775.mkv +詹雅雯-命运不是咱决定,http://em.21dtv.com/songs/60030288.mkv +张津涤+杭娇+王润昕-麦西西小主驾到,http://em.21dtv.com/songs/60111891.mkv +沪剧-埋下心头忠贞爱,http://em.21dtv.com/songs/60028419.mkv +佚名-梦醒心碎空叹息,http://em.21dtv.com/songs/60029727.mkv +林慧萍-梦醒心碎空叹息,http://em.21dtv.com/songs/60029726.mkv +陈奕迅-梦想天空分外蓝,http://em.21dtv.com/songs/60070931.mkv +陈淑桦-梦醒时分(双语种),http://em.21dtv.com/songs/60029725.mkv +孙少华-莫忘今宵山海盟,http://em.21dtv.com/songs/60030440.mkv +林晓青-莫忘今宵山海盟,http://em.21dtv.com/songs/60030439.mkv +陈慧娴-明天已是下世纪,http://em.21dtv.com/songs/60093442.mkv +黄雅莉-猫头鹰呼叫爱情,http://em.21dtv.com/songs/60076573.mkv +佚名-满天星星一颗明,http://em.21dtv.com/songs/60028539.mkv +常汉卿-每天想我一点点,http://em.21dtv.com/songs/60076605.mkv +黄清元-满天星斗的晚上,http://em.21dtv.com/songs/60090358.mkv +杨坤-模特,http://em.21dtv.com/songs/60129272.mkv +周丽淇-明天我要嫁给谁,http://em.21dtv.com/songs/60030219.mkv +谭维维+赵哲-明天我要嫁给你,http://em.21dtv.com/songs/60112258.mkv +爱戴-明天我要嫁给你,http://em.21dtv.com/songs/60097866.mkv +梅艳芳-明天我要嫁给你,http://em.21dtv.com/songs/60088150.mkv +郁可唯-明天我要嫁给你,http://em.21dtv.com/songs/60085475.mkv +莫文蔚-明天我要嫁给你(演唱会),http://em.21dtv.com/songs/60076732.mkv +周华健-明天我要嫁给你,http://em.21dtv.com/songs/60030218.mkv +李度-明天我要嫁给你,http://em.21dtv.com/songs/60030217.mkv +郑秀文-明天我要嫁给你(演唱会),http://em.21dtv.com/songs/60030216.mkv +张学友-明天我要嫁给你(演唱会),http://em.21dtv.com/songs/60030215.mkv +王菲-明天我要嫁给你(演唱会),http://em.21dtv.com/songs/60030214.mkv +任贤齐-明天我要嫁给你(演唱会),http://em.21dtv.com/songs/60030213.mkv +梁静茹-明天我要嫁给你(演唱会),http://em.21dtv.com/songs/60030212.mkv +央金兰泽-明天我还会思念,http://em.21dtv.com/songs/60068495.mkv +何润东-明天是最后一天,http://em.21dtv.com/songs/60030210.mkv +孙尘辰-明天谁是谁的谁,http://em.21dtv.com/songs/60112622.mkv +白百何+井柏然-明天你会在哪里,http://em.21dtv.com/songs/60113902.mkv +黄耀明-每天你爱多一些,http://em.21dtv.com/songs/60029066.mkv +小胖哥-明天欢喜跳恰恰(无原唱),http://em.21dtv.com/songs/60038211.mkv +苏芮-明天还是要继续,http://em.21dtv.com/songs/60030185.mkv +黄安-明天会吹什么风,http://em.21dtv.com/songs/60030187.mkv +王亚东-每天都要做的梦,http://em.21dtv.com/songs/60110378.mkv +邰正宵-明天的香格里拉,http://em.21dtv.com/songs/60076726.mkv +孙萌-每天都是情人节,http://em.21dtv.com/songs/60090939.mkv +赵默-每天抱我一分钟,http://em.21dtv.com/songs/60029056.mkv +郑秀文-每天爱你少一些,http://em.21dtv.com/songs/60029055.mkv +长宇+晨悠组合-每天爱你多一些,http://em.21dtv.com/songs/60114844.mkv +谭咏麟+杜丽莎-每天爱你多一些(演唱会),http://em.21dtv.com/songs/60076604.mkv +草蜢-每天爱你多一些(演唱会),http://em.21dtv.com/songs/60076603.mkv +张学友-每天爱你多一些(演唱会),http://em.21dtv.com/songs/60029053.mkv +泳儿-每天爱你多一些(演唱会),http://em.21dtv.com/songs/60029052.mkv +谭咏麟-每天爱你多一些(演唱会),http://em.21dtv.com/songs/60029051.mkv +郭富城-每天爱你多一些(演唱会),http://em.21dtv.com/songs/60029050.mkv +湘唯一-没说再见的离开,http://em.21dtv.com/songs/60094583.mkv +丁于-昴宿星系来的人,http://em.21dtv.com/songs/60130029.mkv +谭晶-梦水乡,http://em.21dtv.com/songs/60112245.mkv +宁可-马桑树儿搭灯台,http://em.21dtv.com/songs/60111002.mkv +民歌-马桑树儿搭灯台,http://em.21dtv.com/songs/60089393.mkv +佚名-满山葡萄红艳艳,http://em.21dtv.com/songs/60028530.mkv +王洁实+谢莉斯-满山葡萄红艳艳,http://em.21dtv.com/songs/60028529.mkv +高进-马上来,http://em.21dtv.com/songs/60114281.mkv +佚名-名声留给人探听,http://em.21dtv.com/songs/60030082.mkv +廖昌永-莫斯科有我的爱,http://em.21dtv.com/songs/60083436.mkv +佚名-莫斯科有我的爱,http://em.21dtv.com/songs/60064578.mkv +TWINS-莫斯科没有眼泪,http://em.21dtv.com/songs/60030435.mkv +佚名-满山红叶似彩霞,http://em.21dtv.com/songs/60028528.mkv +佚名-满山红叶似彩霞(中三),http://em.21dtv.com/songs/60028527.mkv +马念先-mr 18十八先生,http://em.21dtv.com/songs/60003915.mkv +陈慧琳-每日种一个愿望,http://em.21dtv.com/songs/60029047.mkv +超人特工队-末日之前爱上你,http://em.21dtv.com/songs/60064575.mkv +元冠-没人知道我是谁,http://em.21dtv.com/songs/60130092.mkv +陈瑞-没人心疼的玫瑰,http://em.21dtv.com/songs/60128548.mkv +张雷-没人疼爱的男人,http://em.21dtv.com/songs/60061404.mkv +张学友-明日世界终结时(演唱会),http://em.21dtv.com/songs/60030141.mkv +黎明-明日世界更漂亮,http://em.21dtv.com/songs/60030140.mkv +韩宝仪-明日千里寄相思,http://em.21dtv.com/songs/60030138.mkv +杨宗纬-明日晴れるかな(演唱会),http://em.21dtv.com/songs/60030139.mkv +刘珺儿-命如落花似浮萍,http://em.21dtv.com/songs/60030273.mkv +秀才-没人理会的主角(演唱会),http://em.21dtv.com/songs/60069591.mkv +高胜美-莫让红颜守空枕,http://em.21dtv.com/songs/60030429.mkv +佚名-莫让红颜守空尘,http://em.21dtv.com/songs/60030428.mkv +天亮-牧人放歌的地方,http://em.21dtv.com/songs/60100823.mkv +许哲佩-MR.DOVE,http://em.21dtv.com/songs/60116241.mkv +泽旺多吉-迷人的贡色看朵,http://em.21dtv.com/songs/60076699.mkv +Mamamoo-Mr 暧昧模糊,http://em.21dtv.com/songs/60101796.mkv +东方神起-明日は来るから,http://em.21dtv.com/songs/60030128.mkv +仓木麻衣-明日へ架ける桥,http://em.21dtv.com/songs/60030130.mkv +JUJU+ JAY'ED-明日がくるなら,http://em.21dtv.com/songs/60030127.mkv +张小英-门前杨柳迎风摆,http://em.21dtv.com/songs/60104116.mkv +伊尔盼-母亲,http://em.21dtv.com/songs/60118331.mkv +刘国亮-母亲我是钓鱼岛,http://em.21dtv.com/songs/60069624.mkv +Uniq-抹去你的小伤心,http://em.21dtv.com/songs/60125036.mkv +UNIQ-抹去你的小伤心,http://em.21dtv.com/songs/60116486.mkv +佚名-眉清目秀美容貌,http://em.21dtv.com/songs/60028973.mkv +余天-母亲的名叫台湾,http://em.21dtv.com/songs/60061434.mkv +诶姆-模彷大象的步骤,http://em.21dtv.com/songs/60097892.mkv +卢火火-Moyiza聚,http://em.21dtv.com/songs/60128862.mkv +李琦-Morning,http://em.21dtv.com/songs/60129237.mkv +Meg Myers-Monster,http://em.21dtv.com/songs/60133247.mkv +EXO-Monster,http://em.21dtv.com/songs/60122376.mkv +Tove Lo-Moments,http://em.21dtv.com/songs/60115642.mkv +周治平-mr lee你要往那里去,http://em.21dtv.com/songs/60003926.mkv +黄思婷-没你我怎会快活(无原唱),http://em.21dtv.com/songs/60028741.mkv +陈多情-美女我要追到你,http://em.21dtv.com/songs/60085439.mkv +多情哥-美女我要追到你,http://em.21dtv.com/songs/60068478.mkv +陈玉建-没你我和别人睡,http://em.21dtv.com/songs/60076580.mkv +刘海波-没你我该怎么过,http://em.21dtv.com/songs/60028740.mkv +不辣-明年谁还爱着谁,http://em.21dtv.com/songs/60130034.mkv +陈升-明年你还爱我吗,http://em.21dtv.com/songs/60030125.mkv +ENERGY-某年某月某一天,http://em.21dtv.com/songs/60030496.mkv +路童-美女美女我爱你,http://em.21dtv.com/songs/60076630.mkv +光头阿平-美女美女等着我,http://em.21dtv.com/songs/60118363.mkv +黄梅戏-民女名叫冯素珍,http://em.21dtv.com/songs/60090351.mkv +佚名-民女名叫冯素贞,http://em.21dtv.com/songs/60030065.mkv +袁娅维-蒙娜丽莎的眼泪,http://em.21dtv.com/songs/60132870.mkv +麦子杰-蒙娜丽莎的眼泪,http://em.21dtv.com/songs/60089548.mkv +林志炫-蒙娜丽莎的眼泪,http://em.21dtv.com/songs/60029435.mkv +麦子杰-蒙娜里莎的眼泪,http://em.21dtv.com/songs/60029431.mkv +俞晴-美女福财到你家,http://em.21dtv.com/songs/60029325.mkv +陈军委-明年春天再见面,http://em.21dtv.com/songs/60061429.mkv +张博-明年春节我回家,http://em.21dtv.com/songs/60072208.mkv +俞晴-美女财福到你家,http://em.21dtv.com/songs/60087339.mkv +金润吉-慢慢走 欣赏啊,http://em.21dtv.com/songs/60122197.mkv +金润吉-慢慢走 欣赏啊,http://em.21dtv.com/songs/60114152.mkv +马一鸣-妈妈在哪哪是家(演唱会),http://em.21dtv.com/songs/60083335.mkv +吴易航-妹妹在哥心里面,http://em.21dtv.com/songs/60117613.mkv +黄绮珊+蕾蕾+张恋歌-妹妹找哥泪花流(最美和声)(现场版),http://em.21dtv.com/songs/60101204.mkv +景仪-妹妹找哥泪花流,http://em.21dtv.com/songs/60089928.mkv +佚名-妹妹找哥泪花流,http://em.21dtv.com/songs/60029387.mkv +李谷一-妹妹找哥泪花流,http://em.21dtv.com/songs/60029386.mkv +李谷一-妹妹找哥泪花流(演唱会),http://em.21dtv.com/songs/60029385.mkv +佚名-妹妹找哥泪花流(伦巴),http://em.21dtv.com/songs/60029384.mkv +黄安-明明知道相思苦,http://em.21dtv.com/songs/60030116.mkv +赵小南-妹妹只爱高富帅,http://em.21dtv.com/songs/60095096.mkv +庄秋玉-妈妈心中的希望,http://em.21dtv.com/songs/60126841.mkv +龙飘飘-蒙蒙细雨忆当年,http://em.21dtv.com/songs/60103741.mkv +李碧华-朦朦细雨忆当年,http://em.21dtv.com/songs/60089965.mkv +青山-濛濛细雨忆当年,http://em.21dtv.com/songs/60089538.mkv +卓依婷-濛濛细雨忆当年,http://em.21dtv.com/songs/60089180.mkv +青山-朦朦细雨忆当年,http://em.21dtv.com/songs/60088938.mkv +甄妮-濛濛细雨忆当年,http://em.21dtv.com/songs/60088352.mkv +吕珊-蒙蒙细雨忆当年(演唱会),http://em.21dtv.com/songs/60083390.mkv +青山-蒙蒙细雨忆当年,http://em.21dtv.com/songs/60029439.mkv +甄妮-蒙蒙细雨忆当年(演唱会),http://em.21dtv.com/songs/60029438.mkv +佚名-蒙蒙细雨忆当年,http://em.21dtv.com/songs/60029428.mkv +林翠萍-绵绵细雨的夜晚,http://em.21dtv.com/songs/60091497.mkv +佚名-牧民心向毛主席,http://em.21dtv.com/songs/60030612.mkv +林姗-美梦戏弄阮时间,http://em.21dtv.com/songs/60029321.mkv +罗文-美满幸福全力创,http://em.21dtv.com/songs/60093031.mkv +铁皮人+尖耳朵的阿凡达妹妹-慢慢,http://em.21dtv.com/songs/60127525.mkv +巴图-慢慢,http://em.21dtv.com/songs/60125465.mkv +苏运莹-冥明,http://em.21dtv.com/songs/60120882.mkv +张杰+赵俊-慢慢,http://em.21dtv.com/songs/60112676.mkv +杨坤-某某,http://em.21dtv.com/songs/60098505.mkv +佚名-妈妈我也真勇健,http://em.21dtv.com/songs/60028307.mkv +杨鸣-妈妈我也真勇健,http://em.21dtv.com/songs/60028306.mkv +蒋姗倍-妈妈我要抱抱您,http://em.21dtv.com/songs/60119942.mkv +姚尚旭-妈妈 我想你了,http://em.21dtv.com/songs/60102092.mkv +夏韶声-妈妈我没有做错(演唱会),http://em.21dtv.com/songs/60028302.mkv +C BLOCK-莫名我就喜欢你,http://em.21dtv.com/songs/60122356.mkv +费玉清-妹妹松开我的手,http://em.21dtv.com/songs/60100971.mkv +刘腊-明明说好了不哭,http://em.21dtv.com/songs/60030114.mkv +白龙-茫茫人海来相遇,http://em.21dtv.com/songs/60132768.mkv +佚名-妈妈恰意的女婿,http://em.21dtv.com/songs/60028278.mkv +罗文-美满前途全力创,http://em.21dtv.com/songs/60091836.mkv +罗时丰-妈妈请您也保重,http://em.21dtv.com/songs/60134086.mkv +佚名-妈妈请你也保重,http://em.21dtv.com/songs/60028289.mkv +罗时丰-妈妈请你也保重,http://em.21dtv.com/songs/60028288.mkv +龙劭华-妈妈请你也保重,http://em.21dtv.com/songs/60028287.mkv +林姗-妈妈请你也保重,http://em.21dtv.com/songs/60028286.mkv +蔡琴-妈妈请你也保重,http://em.21dtv.com/songs/60028285.mkv +城市姐妹-妈妈请你也保重(演唱会),http://em.21dtv.com/songs/60068454.mkv +张国政-妈妈请你多保重,http://em.21dtv.com/songs/60028284.mkv +黄乙玲-妈妈请您不通痛,http://em.21dtv.com/songs/60081047.mkv +余天-妈妈请你不通痛,http://em.21dtv.com/songs/60028283.mkv +叶启田-妈妈请你不通痛,http://em.21dtv.com/songs/60028282.mkv +贺一航-妈妈请你不通痛,http://em.21dtv.com/songs/60028281.mkv +孙淑媚-妈妈你无对我讲,http://em.21dtv.com/songs/60028274.mkv +小龙-妈妈妈妈想你呀,http://em.21dtv.com/songs/60087719.mkv +鲍国-妹妹妹妹我爱你,http://em.21dtv.com/songs/60064535.mkv +崔伟亮-妹妹妹妹美美美,http://em.21dtv.com/songs/60083387.mkv +司文-妹妹妹妹美美美,http://em.21dtv.com/songs/60076641.mkv +何念兹(Michiyo)+DJ阿芳-咪咪 MiMi,http://em.21dtv.com/songs/60130076.mkv +石俊荣-妈妈脸上的皱纹,http://em.21dtv.com/songs/60114712.mkv +宋亦乐-妹妹就像三月花,http://em.21dtv.com/songs/60029371.mkv +郑莉-妈妈教我一支歌,http://em.21dtv.com/songs/60028263.mkv +佚名-妈妈教我一支歌,http://em.21dtv.com/songs/60028262.mkv +麦穗-妈妈教我一支歌,http://em.21dtv.com/songs/60028261.mkv +春天-妈妈教我一支歌,http://em.21dtv.com/songs/60028260.mkv +王爱奉+朱晓红-妈妈教我唱军歌,http://em.21dtv.com/songs/60109534.mkv +吴庆国-妹妹今天出嫁了,http://em.21dtv.com/songs/60119347.mkv +冬雨-妈妈就是我的梦,http://em.21dtv.com/songs/60131188.mkv +孔庆学-妈妈就是我的梦,http://em.21dtv.com/songs/60106757.mkv +李丹阳-妈妈就是我的家,http://em.21dtv.com/songs/60028265.mkv +金久哲-妈妈就是活菩萨,http://em.21dtv.com/songs/60126291.mkv +枫桥-木棉花开的早晨,http://em.21dtv.com/songs/60068500.mkv +蒙面哥-蒙面歌,http://em.21dtv.com/songs/60108877.mkv +王橹窗-妈妈儿远在天涯,http://em.21dtv.com/songs/60028251.mkv +梁雁翎+蔡济文-慢慢地陪着你走,http://em.21dtv.com/songs/60028585.mkv +梁雁翎+蔡济文-慢慢的陪着你走,http://em.21dtv.com/songs/60028580.mkv +SHELLY佳-明明不是爱情语,http://em.21dtv.com/songs/60085472.mkv +成龙+魏允熙-明明白白我的心,http://em.21dtv.com/songs/60123984.mkv +黄子俊+郑妍妮-明明白白我的心,http://em.21dtv.com/songs/60090342.mkv +林凡-明明白白我的心,http://em.21dtv.com/songs/60030109.mkv +成龙+陈淑桦-明明白白我的心,http://em.21dtv.com/songs/60030108.mkv +郑少秋+赵雅芝-明明白白我的心(演唱会),http://em.21dtv.com/songs/60030107.mkv +苍井翔太-秘密のクチヅケ,http://em.21dtv.com/songs/60112171.mkv +马涛+唐玉君-魅力钟山欢迎你,http://em.21dtv.com/songs/60133109.mkv +凤凰传奇+玖月奇迹-美丽中国走起来,http://em.21dtv.com/songs/60119284.mkv +周澎-美丽中国走起来,http://em.21dtv.com/songs/60115059.mkv +周澎-美丽中国走起来,http://em.21dtv.com/songs/60115058.mkv +鲍国-美丽中国,http://em.21dtv.com/songs/60102953.mkv +孙晓雨-美丽云南等你来,http://em.21dtv.com/songs/60083383.mkv +望海高歌-朦胧夜里谁等候,http://em.21dtv.com/songs/60084683.mkv +醉美-美丽湘西老司城,http://em.21dtv.com/songs/60121018.mkv +宗庸卓玛-梅里雪山的女儿,http://em.21dtv.com/songs/60028999.mkv +陈永强-梦里想你多少回,http://em.21dtv.com/songs/60134407.mkv +陈永强-梦里想你多少回,http://em.21dtv.com/songs/60129752.mkv +杨洁-美丽乡村我的家,http://em.21dtv.com/songs/60116945.mkv +王喆-美丽田园是我家,http://em.21dtv.com/songs/60100306.mkv +何欢-美丽松州我的家,http://em.21dtv.com/songs/60094400.mkv +张继聪-玛莉杀死小绵羊,http://em.21dtv.com/songs/60063374.mkv +拾叁乐团-马脸水手的夏天,http://em.21dtv.com/songs/60028369.mkv +张燕-美丽神奇的地方,http://em.21dtv.com/songs/60029268.mkv +汪峰-美丽世界的孤儿(演唱会),http://em.21dtv.com/songs/60029272.mkv +沙宝亮-美丽时光,http://em.21dtv.com/songs/60105215.mkv +刘科楠-梦里请让我爱你,http://em.21dtv.com/songs/60076670.mkv +清风-美丽亲爱的姑娘,http://em.21dtv.com/songs/60029262.mkv +林志炫-making love out of nothing at all,http://em.21dtv.com/songs/60073579.mkv +宋智恩-美丽年纪25岁,http://em.21dtv.com/songs/60105768.mkv +醉歌-梦里梦外全是你,http://em.21dtv.com/songs/60134345.mkv +天堂飘雪-梦里梦外全是你,http://em.21dtv.com/songs/60120438.mkv +苏富权-梦里梦外回故乡,http://em.21dtv.com/songs/60085457.mkv +马常宝-梅兰梅兰我爱你,http://em.21dtv.com/songs/60120140.mkv +阎飞翔-梅兰梅兰我爱你,http://em.21dtv.com/songs/60114847.mkv +郑锦昌-蔓莉蔓莉我爱你,http://em.21dtv.com/songs/60093341.mkv +李丽霞-梅兰梅兰我爱你,http://em.21dtv.com/songs/60076600.mkv +尤雅-梅兰梅兰我爱你,http://em.21dtv.com/songs/60028998.mkv +叶玉卿-梅兰梅兰我爱你,http://em.21dtv.com/songs/60028997.mkv +刘家昌-梅兰梅兰我爱你,http://em.21dtv.com/songs/60028996.mkv +姜育恒-梅兰梅兰我爱你,http://em.21dtv.com/songs/60028995.mkv +尤雅-梅兰梅兰我爱你(演唱会),http://em.21dtv.com/songs/60028994.mkv +吴涤清-梅兰梅兰我爱你(演唱会),http://em.21dtv.com/songs/60028993.mkv +胡美仪-蔓莉蔓莉我爱你(演唱会),http://em.21dtv.com/songs/60028554.mkv +青山-梅兰梅兰我爱你,http://em.21dtv.com/songs/60064517.mkv +毛阿敏-麻辣苦涩甜酸咸,http://em.21dtv.com/songs/60028334.mkv +叶俊华-美丽惠州我的家,http://em.21dtv.com/songs/60105680.mkv +奚秀兰-茉莉花,http://em.21dtv.com/songs/60113381.mkv +孙晓雨-梦里回味你的美,http://em.21dtv.com/songs/60080257.mkv +姬长乐-美丽河南我家乡,http://em.21dtv.com/songs/60103196.mkv +小筑-梦里花落知多少,http://em.21dtv.com/songs/60101070.mkv +枫舞+相容-梦里花落谁人知,http://em.21dtv.com/songs/60124143.mkv +冷酷-美丽故乡宝坻情,http://em.21dtv.com/songs/60125168.mkv +张可儿-美丽姑娘花一样,http://em.21dtv.com/songs/60081259.mkv +李文华-美丽丰都是我家,http://em.21dtv.com/songs/60132538.mkv +罗布仁青-美丽的雪域高原,http://em.21dtv.com/songs/60128304.mkv +岩罕建-美丽的西双版纳,http://em.21dtv.com/songs/60124833.mkv +拉毛王旭-美丽的西兰卡普,http://em.21dtv.com/songs/60111122.mkv +夹子道-美丽的误会-hi版(演唱会),http://em.21dtv.com/songs/60029230.mkv +迟英-魅力的书法之乡,http://em.21dtv.com/songs/60101685.mkv +才旦卓玛-美丽的仁增旺姆,http://em.21dtv.com/songs/60087905.mkv +乌兰图雅-美丽的牧羊姑娘,http://em.21dtv.com/songs/60109935.mkv +景岗山-美丽的金边衣裳,http://em.21dtv.com/songs/60081916.mkv +亚东-美丽的达丽卓玛,http://em.21dtv.com/songs/60090521.mkv +吕梓铷-美丽的草原姑娘,http://em.21dtv.com/songs/60114441.mkv +门丽+阿郎-美丽的草原姑娘,http://em.21dtv.com/songs/60070916.mkv +兰旗儿-美丽的北方川寨,http://em.21dtv.com/songs/60068471.mkv +阿根-美丽的博尔塔拉,http://em.21dtv.com/songs/60114852.mkv +德格叶+朱丹丹-美丽传奇皇藏峪,http://em.21dtv.com/songs/60105902.mkv +郝云-麦扣让我写首歌,http://em.21dtv.com/songs/60081780.mkv +网络歌手-眉间雪,http://em.21dtv.com/songs/60114723.mkv +范小倩-铭记下的小情歌,http://em.21dtv.com/songs/60120906.mkv +佚名-美就是心中有爱,http://em.21dtv.com/songs/60029135.mkv +兰卡措-梦见你的那一夜,http://em.21dtv.com/songs/60093980.mkv +杨洪基-满江红和岳飞词,http://em.21dtv.com/songs/60121803.mkv +朵久央-苗家姑娘仰阿莎,http://em.21dtv.com/songs/60083421.mkv +文欣-苗家姑娘过山来,http://em.21dtv.com/songs/60030041.mkv +良一-麻吉へ卡保重咧(无原唱),http://em.21dtv.com/songs/60028327.mkv +陈冠希-man in the mirror 镜中人,http://em.21dtv.com/songs/60003736.mkv +Betty Jong-Mistake,http://em.21dtv.com/songs/60113128.mkv +Justin Timberlake-Mirrors,http://em.21dtv.com/songs/60107415.mkv +陈以桐-Miracle,http://em.21dtv.com/songs/60126362.mkv +群星-Miracle,http://em.21dtv.com/songs/60106197.mkv +郑容和+杨东根-Mileage,http://em.21dtv.com/songs/60109657.mkv +宋祖英-梅花引,http://em.21dtv.com/songs/60102151.mkv +朱主爱-梦幻西游好想你,http://em.21dtv.com/songs/60120592.mkv +花鼓戏-满怀希望付汪洋,http://em.21dtv.com/songs/60090169.mkv +李雨-梦画,http://em.21dtv.com/songs/60124094.mkv +佚名-满怀深情望北京,http://em.21dtv.com/songs/60028510.mkv +金小曦-梦回晋朝为昭君,http://em.21dtv.com/songs/60127508.mkv +佚名-满怀豪情回海港,http://em.21dtv.com/songs/60028509.mkv +徐秋菊-梅花端的种眉州,http://em.21dtv.com/songs/60087886.mkv +徐秋菊-梅花端的种梅州,http://em.21dtv.com/songs/60028979.mkv +王艳玲-卖火柴的小女孩,http://em.21dtv.com/songs/60090089.mkv +刘美麟+阿弟仔-卖火柴的小女孩,http://em.21dtv.com/songs/60076565.mkv +陈秦梦-满怀悲愤恨难平,http://em.21dtv.com/songs/60028508.mkv +王亚平-苗歌越唱越来神,http://em.21dtv.com/songs/60067237.mkv +艾绮恩-某个下午的日记,http://em.21dtv.com/songs/60083439.mkv +代领-某个醒来的清晨,http://em.21dtv.com/songs/60122476.mkv +陈茂丰-麦搁想卡未咽气,http://em.21dtv.com/songs/60111503.mkv +陈星-玫瑰伤透我的心,http://em.21dtv.com/songs/60028956.mkv +乌兰托娅+高进-玫瑰送给有情人,http://em.21dtv.com/songs/60085429.mkv +彭靖惠-玫瑰色的七四七,http://em.21dtv.com/songs/60028955.mkv +叶灵-每个人都这么说,http://em.21dtv.com/songs/60087518.mkv +李娜-每个人都这么说,http://em.21dtv.com/songs/60029041.mkv +王子建-每个人都会寂寞,http://em.21dtv.com/songs/60029039.mkv +姜玉阳-某个男人过了三,http://em.21dtv.com/songs/60070954.mkv +王拓-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60081493.mkv +张德兰-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60076596.mkv +黄龄-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60076595.mkv +汪明荃-玫瑰玫瑰我爱你(演唱会),http://em.21dtv.com/songs/60076594.mkv +卓依婷-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60028948.mkv +张凤凤-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60028947.mkv +郁可唯-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60028946.mkv +姚莉-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60028945.mkv +潘迪华-玫瑰玫瑰我爱你(演唱会),http://em.21dtv.com/songs/60028943.mkv +梅艳芳-玫瑰玫瑰我爱你(演唱会),http://em.21dtv.com/songs/60028942.mkv +王若琳-玫瑰玫瑰我爱你,http://em.21dtv.com/songs/60061412.mkv +民歌经典-绵桂花开十里香,http://em.21dtv.com/songs/60088187.mkv +新版本-缅桂花开十里香,http://em.21dtv.com/songs/60030016.mkv +老版本-缅桂花开十里香,http://em.21dtv.com/songs/60030015.mkv +叶茅+寥莎-绵桂花开十里香,http://em.21dtv.com/songs/60029991.mkv +对唱-玫瑰花儿送你怀,http://em.21dtv.com/songs/60096251.mkv +崔浩-玫瑰花儿送给你,http://em.21dtv.com/songs/60103250.mkv +周治平-玫瑰花瓣的信笺,http://em.21dtv.com/songs/60028933.mkv +罗茜-每个姑娘都单纯,http://em.21dtv.com/songs/60029035.mkv +周华健+辛晓琪-每个爱情都危险,http://em.21dtv.com/songs/60029034.mkv +郭富城-没法再见你一面,http://em.21dtv.com/songs/60093360.mkv +花鼓戏-满腹怒怨对谁提,http://em.21dtv.com/songs/60090170.mkv +丁紫-每分每秒都想你,http://em.21dtv.com/songs/60131127.mkv +南风-没房没车没老婆,http://em.21dtv.com/songs/60123714.mkv +周杰伦-免费教学录影带,http://em.21dtv.com/songs/60030003.mkv +徐子崴-每逢佳节倍思亲,http://em.21dtv.com/songs/60119573.mkv +Daybreak-Mellow,http://em.21dtv.com/songs/60131051.mkv +降央卓玛-马儿啊你慢些走,http://em.21dtv.com/songs/60114234.mkv +景仪-马儿啊你慢些走,http://em.21dtv.com/songs/60089939.mkv +德德玛-马儿啊你慢些走,http://em.21dtv.com/songs/60076555.mkv +马玉涛-马儿啊你慢些走,http://em.21dtv.com/songs/60028355.mkv +红袖-妹到燕山找黑哥,http://em.21dtv.com/songs/60135625.mkv +刘瑞琦-迷迭香,http://em.21dtv.com/songs/60120375.mkv +红袖-妹的心思哥来猜,http://em.21dtv.com/songs/60134066.mkv +许阁+LE-每当响起那首歌,http://em.21dtv.com/songs/60064518.mkv +老狼-米店,http://em.21dtv.com/songs/60120861.mkv +周强-每当我回到故乡,http://em.21dtv.com/songs/60029026.mkv +文千岁+李宝莹-牡丹亭之游园惊梦,http://em.21dtv.com/songs/60030561.mkv +任剑辉+白雪仙-牡丹亭惊梦-幽媾(无原唱),http://em.21dtv.com/songs/60030554.mkv +佚名-梦到破灭再从头,http://em.21dtv.com/songs/60029489.mkv +崔京浩-民得平安天下安,http://em.21dtv.com/songs/60030062.mkv +佚名-牡丹名园吐清芬,http://em.21dtv.com/songs/60030550.mkv +金岩-牡丹花儿爱少年,http://em.21dtv.com/songs/60097841.mkv +八大巨星-马到功成万事顺,http://em.21dtv.com/songs/60076553.mkv +吴依琳-马到功成庆丰年,http://em.21dtv.com/songs/60076552.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-马到功成庆丰年,http://em.21dtv.com/songs/60076551.mkv +麦穗-每当唱起这首歌,http://em.21dtv.com/songs/60061414.mkv +孙露-梦的翅膀受了伤,http://em.21dtv.com/songs/60076656.mkv +蒋雪儿-梦的翅膀受了伤,http://em.21dtv.com/songs/60029494.mkv +思予-美的不要不要的,http://em.21dtv.com/songs/60131438.mkv +思予-美的不要不要的,http://em.21dtv.com/songs/60130353.mkv +藤悦乔-麦兜菠萝油王子,http://em.21dtv.com/songs/60028437.mkv +国巍-美出一种气质来,http://em.21dtv.com/songs/60029110.mkv +彝人制造-茅草屋的女主人,http://em.21dtv.com/songs/60028693.mkv +刘美君-每次我都很认真,http://em.21dtv.com/songs/60029013.mkv +詹子谦-木车木房木钻戒,http://em.21dtv.com/songs/60099485.mkv +周杰伦-满城尽是黄金猪,http://em.21dtv.com/songs/60028504.mkv +何韵诗-满城尽带黄金甲,http://em.21dtv.com/songs/60092278.mkv +南宁柒仔-没吃过一颗伟哥,http://em.21dtv.com/songs/60028707.mkv +李玲玉-每次当我想起你,http://em.21dtv.com/songs/60124088.mkv +amazarashi-スピードと摩擦,http://em.21dtv.com/songs/60114319.mkv +黄舒骏-马不停蹄的忧伤(演唱会),http://em.21dtv.com/songs/60028349.mkv +米佳-马背上失落的歌,http://em.21dtv.com/songs/60068456.mkv +拉毛王旭-妹把山歌当绣球,http://em.21dtv.com/songs/60085440.mkv +吉雅-马背上的萨日朗,http://em.21dtv.com/songs/60131240.mkv +SNH48-100米便利店,http://em.21dtv.com/songs/60104727.mkv +Untouchable-Mask On,http://em.21dtv.com/songs/60109903.mkv +李翊君-Macaron,http://em.21dtv.com/songs/60111990.mkv +TWINS-明爱暗恋补习社,http://em.21dtv.com/songs/60030090.mkv +TWINS-明爱暗恋补习社(演唱会),http://em.21dtv.com/songs/60030089.mkv +TWINS+AT17-明爱暗恋补习社(演唱会),http://em.21dtv.com/songs/60030088.mkv +amazarashi-命にふさわしい,http://em.21dtv.com/songs/60134635.mkv +SEXY ZONE-ladyダイヤモンド,http://em.21dtv.com/songs/60066667.mkv +彭炽权+倪惠英-梁祝之十八相送(戏曲),http://em.21dtv.com/songs/60092658.mkv +徐浩-两只纸杯一条线,http://em.21dtv.com/songs/60091199.mkv +吴峙轩-流着眼泪说再见,http://em.21dtv.com/songs/60027751.mkv +陈慧琳-留在原来的地方,http://em.21dtv.com/songs/60027585.mkv +韦小天-来自星星的眼泪,http://em.21dtv.com/songs/60102927.mkv +陈婷婷+苏丽柔-两只小虎来拜年(无原唱),http://em.21dtv.com/songs/60027320.mkv +黄莺莺-来自心海的消息,http://em.21dtv.com/songs/60026021.mkv +花世纪-炉爌众我爱吃早餐,http://em.21dtv.com/songs/60072166.mkv +邓紫棋-来自天堂的魔鬼,http://em.21dtv.com/songs/60116281.mkv +印能法师-礼赞释迦牟尼佛,http://em.21dtv.com/songs/60099842.mkv +傅全香+范瑞娟-兰芝妻你慢行走,http://em.21dtv.com/songs/60026043.mkv +葛林-林中鸟,http://em.21dtv.com/songs/60120916.mkv +李双江-拉着骆驼送军粮,http://em.21dtv.com/songs/60025916.mkv +任贤齐-流着泪的你的脸,http://em.21dtv.com/songs/60027749.mkv +网络歌手-落在键盘上的泪,http://em.21dtv.com/songs/60070899.mkv +罗家宝+倪惠英-荔枝换绛桃火殉,http://em.21dtv.com/songs/60026924.mkv +彭羚-泪在风中飘成雨,http://em.21dtv.com/songs/60089296.mkv +万心-两只鹅的情人节,http://em.21dtv.com/songs/60119224.mkv +何洁-来自不同的星球,http://em.21dtv.com/songs/60087308.mkv +赖雅妍-赖雅妍影子情人,http://em.21dtv.com/songs/60089487.mkv +张杰-流言有一千分贝,http://em.21dtv.com/songs/60027744.mkv +林玉英-六月天犹原即冷,http://em.21dtv.com/songs/60027803.mkv +高山-轮椅上的信天游,http://em.21dtv.com/songs/60083325.mkv +盖鸣晖+吴美英-柳毅奇缘之酬原,http://em.21dtv.com/songs/60027771.mkv +佚名-郎有情来姐有意,http://em.21dtv.com/songs/60026187.mkv +张枫-落叶飘雪的时候,http://em.21dtv.com/songs/60076534.mkv +乔军-洛阳牡丹甲天下,http://em.21dtv.com/songs/60076527.mkv +ALICIA KEYS-like youll never see me again,http://em.21dtv.com/songs/60073516.mkv +FTISLAND-离眼泪更近的人,http://em.21dtv.com/songs/60026801.mkv +陶喆-浏阳河2008,http://em.21dtv.com/songs/60095154.mkv +周笔畅-浏阳河2008,http://em.21dtv.com/songs/60027518.mkv +金钰儿-另一个世界的我,http://em.21dtv.com/songs/60103642.mkv +儿歌-六一国际儿童节,http://em.21dtv.com/songs/60089626.mkv +童唱-六一国际儿童歌,http://em.21dtv.com/songs/60027788.mkv +黄乙玲-六月割菜假有心,http://em.21dtv.com/songs/60027796.mkv +田震-劳燕分飞各西东,http://em.21dtv.com/songs/60090098.mkv +郭公芳-劳燕纷飞各西东,http://em.21dtv.com/songs/60026315.mkv +李湘-零一二三四五六,http://em.21dtv.com/songs/60027471.mkv +越剧-路遇大姐得音讯,http://em.21dtv.com/songs/60027961.mkv +梅华-绿叶对根的情意,http://em.21dtv.com/songs/60028198.mkv +刘欢-绿叶对根的情意,http://em.21dtv.com/songs/60028197.mkv +李娜-绿叶对根的情意,http://em.21dtv.com/songs/60028196.mkv +毛阿敏-绿叶对根的情意(演唱会),http://em.21dtv.com/songs/60028195.mkv +刘欢-绿叶对根的情意(演唱会),http://em.21dtv.com/songs/60028194.mkv +任宇翔+刘珍妮-龙血战神真好玩,http://em.21dtv.com/songs/60113245.mkv +林爱珍-留下亲家我做主,http://em.21dtv.com/songs/60110308.mkv +佚名-李向群对妈妈说,http://em.21dtv.com/songs/60026876.mkv +佚名-留下来陪你生活,http://em.21dtv.com/songs/60027565.mkv +郭富城-留下句号的面容,http://em.21dtv.com/songs/60110585.mkv +佚名-临行喝妈一碗酒,http://em.21dtv.com/songs/60027398.mkv +辛晓琪+付鹰-领悟,http://em.21dtv.com/songs/60124536.mkv +刘涛-领悟,http://em.21dtv.com/songs/60122528.mkv +老狼+中国摇滚天团-礼物,http://em.21dtv.com/songs/60120863.mkv +谭维维+范政-领悟,http://em.21dtv.com/songs/60112257.mkv +白致瑶-芦苇青青芦花白,http://em.21dtv.com/songs/60117086.mkv +陈言芳-陆文龙-爱怨痛别,http://em.21dtv.com/songs/60027909.mkv +[Group] +groupName=十六万歌曲MV等 - 96 +伍义-老同学你还好吗,http://em.21dtv.com/songs/60026433.mkv +郑伊健-老天请给我一秒,http://em.21dtv.com/songs/60026430.mkv +云丹久美-临洮姑娘花一样,http://em.21dtv.com/songs/60132177.mkv +云丹久美-临洮姑娘花一样,http://em.21dtv.com/songs/60130060.mkv +四千金-龙头大队贺新年,http://em.21dtv.com/songs/60076499.mkv +枫舞+金晨-蓝天白云情依依,http://em.21dtv.com/songs/60105193.mkv +程晨-蓝天白云齐喝彩,http://em.21dtv.com/songs/60076320.mkv +艾歌-来生再做你的人,http://em.21dtv.com/songs/60070860.mkv +黑龙-来生只做陌生人,http://em.21dtv.com/songs/60105172.mkv +李芊慧-路是自已拼出来(无原唱),http://em.21dtv.com/songs/60095635.mkv +刘东桦+黄静-来生再续今生缘,http://em.21dtv.com/songs/60101946.mkv +刘东桦+黄静-来世再续今生缘,http://em.21dtv.com/songs/60026008.mkv +刚辉-来生再爱你一回,http://em.21dtv.com/songs/60026002.mkv +魏新雨-来生愿做一朵莲,http://em.21dtv.com/songs/60134479.mkv +阳光天使-灵蛇游走庆丰年,http://em.21dtv.com/songs/60072157.mkv +郭富城-蓝色眼睛的爱情,http://em.21dtv.com/songs/60102808.mkv +巫启贤-老鼠已经爱上你,http://em.21dtv.com/songs/60026426.mkv +陈瑞-恋上香烟的女人,http://em.21dtv.com/songs/60122243.mkv +韩磊+莫小凤-来生相见的记号,http://em.21dtv.com/songs/60068411.mkv +蓝瘦的海盗很香菇+西楚霸王-流沙,http://em.21dtv.com/songs/60129578.mkv +黄鹤翔-绿水青山我的家,http://em.21dtv.com/songs/60089064.mkv +王亚平-老师您与我同在,http://em.21dtv.com/songs/60067188.mkv +宿雨涵-六十年是一首歌,http://em.21dtv.com/songs/60062949.mkv +崔来宾-来山南来看一看,http://em.21dtv.com/songs/60129029.mkv +何广才-来生你会记得吗,http://em.21dtv.com/songs/60085343.mkv +谭娟-芦山将会更美丽,http://em.21dtv.com/songs/60076504.mkv +东方红艳-恋上韭菜坪情郎,http://em.21dtv.com/songs/60123592.mkv +谭咏麟-令世界变得更暖,http://em.21dtv.com/songs/60027497.mkv +笑天+冷漠-来生还要做兄弟,http://em.21dtv.com/songs/60076310.mkv +伊能静-蓝色大衣的男孩,http://em.21dtv.com/songs/60090578.mkv +火狼-泪水滴满相思酒,http://em.21dtv.com/songs/60129363.mkv +布仁巴雅尔-蓝色的蒙古高原,http://em.21dtv.com/songs/60102171.mkv +降央卓玛-蓝色的蒙古高原,http://em.21dtv.com/songs/60076316.mkv +德德玛-蓝色的蒙古高原,http://em.21dtv.com/songs/60026083.mkv +阿荣哈斯-蓝色的蒙古高原,http://em.21dtv.com/songs/60026082.mkv +布仁巴雅尔-蓝色的蒙古草原,http://em.21dtv.com/songs/60095295.mkv +玛希-蓝色的蒙古草原,http://em.21dtv.com/songs/60026081.mkv +齐峰-蓝色的蒙古草原(演唱会),http://em.21dtv.com/songs/60026080.mkv +陈姿-蓝色的初夏恋曲,http://em.21dtv.com/songs/60106388.mkv +陈艺鹏-老鼠不再爱大米,http://em.21dtv.com/songs/60026424.mkv +曹格-梁山伯与朱丽叶,http://em.21dtv.com/songs/60087952.mkv +卓文萱+曹格-梁山伯与朱丽叶,http://em.21dtv.com/songs/60087495.mkv +卓文萱+曹格-梁山伯与茱丽叶,http://em.21dtv.com/songs/60027179.mkv +馨馨-老鼠不敢爱大米,http://em.21dtv.com/songs/60026423.mkv +刘思涵-离人,http://em.21dtv.com/songs/60125191.mkv +容祖儿-落入凡间的天使(演唱会),http://em.21dtv.com/songs/60028099.mkv +伊能静-落入凡间的精灵,http://em.21dtv.com/songs/60028098.mkv +梁静茹-另人的天长地久,http://em.21dtv.com/songs/60088146.mkv +张芸京-恋人的时尚生活,http://em.21dtv.com/songs/60027130.mkv +张清芳-恋人的保存期限,http://em.21dtv.com/songs/60027129.mkv +谭维维-离去之前叫醒我,http://em.21dtv.com/songs/60026780.mkv +何龙雨-撸起袖子一起干,http://em.21dtv.com/songs/60131169.mkv +马艺航-撸起袖子加油干,http://em.21dtv.com/songs/60136008.mkv +许嘉文-撸起袖子加油干,http://em.21dtv.com/songs/60135733.mkv +陈升-来去厦门电头毛,http://em.21dtv.com/songs/60025984.mkv +刘秀荣-刘巧儿小桥送线(评剧),http://em.21dtv.com/songs/60089682.mkv +全辉-老朋友我想你了,http://em.21dtv.com/songs/60101265.mkv +龙川-老婆我真的爱你,http://em.21dtv.com/songs/60026383.mkv +陈明顺-老婆千岁千千岁,http://em.21dtv.com/songs/60070869.mkv +柳影虹-良朋情长情不变(演唱会),http://em.21dtv.com/songs/60062697.mkv +司文+小树-老婆你是最好的,http://em.21dtv.com/songs/60026380.mkv +二龙-老婆你是我的天,http://em.21dtv.com/songs/60116524.mkv +火风-老婆老婆我爱你,http://em.21dtv.com/songs/60026379.mkv +财郎-老婆老婆求求你,http://em.21dtv.com/songs/60106297.mkv +胡尧峰-老婆老婆你最美,http://em.21dtv.com/songs/60122039.mkv +成云刚-老婆老婆你要乖,http://em.21dtv.com/songs/60121715.mkv +木杰-老婆老婆对不起,http://em.21dtv.com/songs/60108552.mkv +张吉-老婆就像武则天,http://em.21dtv.com/songs/60069555.mkv +王建荣-老婆教我唱情歌,http://em.21dtv.com/songs/60125922.mkv +A2A-love me,http://em.21dtv.com/songs/60128662.mkv +王胤祺-LOVE IT,http://em.21dtv.com/songs/60124284.mkv +Teen Top-Love is,http://em.21dtv.com/songs/60134807.mkv +安贤珍-Love Is,http://em.21dtv.com/songs/60131349.mkv +朴章贤+朴贤圭-Love Is,http://em.21dtv.com/songs/60094140.mkv +秋裤大叔-老男人也有春天,http://em.21dtv.com/songs/60108775.mkv +赵小兵-老男人也有春天,http://em.21dtv.com/songs/60076351.mkv +秋裤大叔-老男人的新生活,http://em.21dtv.com/songs/60108776.mkv +赵小兵-老男人的新生活,http://em.21dtv.com/songs/60076350.mkv +汪峰-流年啊你奈我何,http://em.21dtv.com/songs/60113783.mkv +李艺明-浪漫之都美大连,http://em.21dtv.com/songs/60117823.mkv +赵枣儿-浪漫忧郁的瞬间,http://em.21dtv.com/songs/60068418.mkv +蒋婴+李青-浪漫三月桃花红,http://em.21dtv.com/songs/60081007.mkv +朱洁仪-龙门盛开文明花,http://em.21dtv.com/songs/60107776.mkv +林宥嘉-罗密欧与茱丽叶,http://em.21dtv.com/songs/60028033.mkv +刘嘉亮-罗密欧与朱丽叶,http://em.21dtv.com/songs/60028032.mkv +五月天-罗密欧与朱丽叶(演唱会),http://em.21dtv.com/songs/60028031.mkv +彭炽权+蒋文端-雷鸣金鼓战笳声(2)(戏曲),http://em.21dtv.com/songs/60092683.mkv +彭炽权+蒋文端-雷鸣金鼓战笳声(1)(戏曲),http://em.21dtv.com/songs/60092682.mkv +黎明-黎明冬天唱唱歌,http://em.21dtv.com/songs/60093571.mkv +白冰冰-罗曼蒂克的探戈,http://em.21dtv.com/songs/60028028.mkv +芳蓉-罗曼蒂克的爱情,http://em.21dtv.com/songs/60109586.mkv +周华健-黎明不要来追,http://em.21dtv.com/songs/60097894.mkv +瞿江锋-累了醉了就想哭,http://em.21dtv.com/songs/60107927.mkv +六哲-累了醉了就想哭,http://em.21dtv.com/songs/60026570.mkv +秦国保-吕梁英雄好儿男,http://em.21dtv.com/songs/60115324.mkv +容祖儿-流泪眼望流泪眼,http://em.21dtv.com/songs/60027696.mkv +容祖儿-流泪眼望流泪眼(演唱会),http://em.21dtv.com/songs/60027695.mkv +徐小凤-流泪眼看流泪眼,http://em.21dtv.com/songs/60027694.mkv +黄勇-流浪,http://em.21dtv.com/songs/60115544.mkv +罗时丰-流浪天涯三兄妹,http://em.21dtv.com/songs/60134100.mkv +佚名-流浪天涯三兄妹,http://em.21dtv.com/songs/60027679.mkv +罗时丰-流浪天涯三兄妹,http://em.21dtv.com/songs/60027678.mkv +佚名-流浪天涯伴吉他,http://em.21dtv.com/songs/60027677.mkv +殷秀梅-拉骆驼的黑小伙,http://em.21dtv.com/songs/60100253.mkv +佚名-拉骆驼的黑小伙,http://em.21dtv.com/songs/60025909.mkv +刘玉婉-拉骆驼的黑小伙,http://em.21dtv.com/songs/60025908.mkv +刀郎-流浪生死的孩子,http://em.21dtv.com/songs/60064485.mkv +艾莉莎-老狼老狼几点啦,http://em.21dtv.com/songs/60026353.mkv +音讯怪物-啦啦啦德玛西亚,http://em.21dtv.com/songs/60083243.mkv +卓文萱-la la la爱情密码,http://em.21dtv.com/songs/60003240.mkv +马丽-来了就是璧山人,http://em.21dtv.com/songs/60126448.mkv +马丽-来了就是璧山人,http://em.21dtv.com/songs/60109753.mkv +林嘉欣-六楼后座之幸福,http://em.21dtv.com/songs/60091438.mkv +林嘉欣-六楼后座之爱情,http://em.21dtv.com/songs/60091439.mkv +佚名-流浪汉的摇子歌,http://em.21dtv.com/songs/60027666.mkv +高小松-流浪歌手的情人,http://em.21dtv.com/songs/60027660.mkv +王文浩-流浪孤儿的独白,http://em.21dtv.com/songs/60131660.mkv +夏国星-流浪的心想回家,http://em.21dtv.com/songs/60027653.mkv +南方二重唱-流浪春天的侧记,http://em.21dtv.com/songs/60099826.mkv +周慧敏-离开忧郁的习惯,http://em.21dtv.com/songs/60026771.mkv +杨程凯-离开有你的城市,http://em.21dtv.com/songs/60026772.mkv +TWINS-离开校园的路上,http://em.21dtv.com/songs/60090447.mkv +陈庭锋-离开我你会快乐,http://em.21dtv.com/songs/60026765.mkv +光头阿兴-离开我你后悔吗,http://em.21dtv.com/songs/60070875.mkv +白山情歌-离开网络真孤单,http://em.21dtv.com/songs/60026757.mkv +王铁-离开是一种幸福,http://em.21dtv.com/songs/60080735.mkv +欢子-离开伤心的地方,http://em.21dtv.com/songs/60062482.mkv +韩小薰-离开伤心的地方,http://em.21dtv.com/songs/60062428.mkv +林一峰-离开是为了回来(演唱会),http://em.21dtv.com/songs/60026756.mkv +黄震乐-离开伤感的爱情,http://em.21dtv.com/songs/60072144.mkv +叶倩文-离开情人的日子,http://em.21dtv.com/songs/60026754.mkv +王觉-离开你是我的错,http://em.21dtv.com/songs/60109541.mkv +宜璇-离开你是我的错,http://em.21dtv.com/songs/60087693.mkv +海哲明-离开你的那一天,http://em.21dtv.com/songs/60067196.mkv +王建杰-离开故乡离开你,http://em.21dtv.com/songs/60026730.mkv +东来东往-连哭都是我的错,http://em.21dtv.com/songs/60026939.mkv +艺涛-离开不是你的错,http://em.21dtv.com/songs/60076390.mkv +艺涛+星宇-离开不是你的错,http://em.21dtv.com/songs/60076389.mkv +七郎-两角找五先觉误,http://em.21dtv.com/songs/60027276.mkv +彭炽权-临江月夜吊秋喜(戏曲),http://em.21dtv.com/songs/60092692.mkv +郑少秋-离家无家处处家,http://em.21dtv.com/songs/60026708.mkv +茅威涛-浪迹天涯三长载,http://em.21dtv.com/songs/60026228.mkv +卫礼安-两脚书橱的逃亡,http://em.21dtv.com/songs/60027278.mkv +李虎-离家很远的地方,http://em.21dtv.com/songs/60083286.mkv +张悬-live酒馆300秒,http://em.21dtv.com/songs/60003447.mkv +Laura Pausini Kylie Minogue-Limpido,http://em.21dtv.com/songs/60107417.mkv +Fuying+Sam-LIKE我一下,http://em.21dtv.com/songs/60116450.mkv +龙剑笙-李后主去国归降,http://em.21dtv.com/songs/60076398.mkv +蒋蒋-落花雨,http://em.21dtv.com/songs/60112211.mkv +杭盖乐队+刘欢-轮回,http://em.21dtv.com/songs/60109452.mkv +杭盖乐队-轮回,http://em.21dtv.com/songs/60109451.mkv +俞隆华-灵魂强要飞出去,http://em.21dtv.com/songs/60027419.mkv +李冬风-癞蛤蟆爱上天鹅,http://em.21dtv.com/songs/60114595.mkv +霍尊-梨花落,http://em.21dtv.com/songs/60120124.mkv +刘紫玲-落花流水春已去,http://em.21dtv.com/songs/60028077.mkv +刘心+大鹏-刘哈哈与大先生,http://em.21dtv.com/songs/60069576.mkv +光头阿兴-离婚都是我的错,http://em.21dtv.com/songs/60085369.mkv +高羽-连话都说不出口,http://em.21dtv.com/songs/60127606.mkv +麦浚龙-灵魂从没有秘密,http://em.21dtv.com/songs/60027415.mkv +陈瑞-梨花白,http://em.21dtv.com/songs/60112360.mkv +望海高歌-0h Baby,http://em.21dtv.com/songs/60129203.mkv +大庆小芳-老公赚钱老婆花,http://em.21dtv.com/songs/60104898.mkv +叶文辉-两个只能爱一个,http://em.21dtv.com/songs/60027273.mkv +崔来宾-来赶壮家三月三,http://em.21dtv.com/songs/60129030.mkv +麦穗-老公真的不容易,http://em.21dtv.com/songs/60026342.mkv +张丽瑾-流给最爱的说话,http://em.21dtv.com/songs/60092556.mkv +张丽瑾-留给最爱的说话,http://em.21dtv.com/songs/60027539.mkv +张柏芝-留给最爱的说话,http://em.21dtv.com/songs/60027538.mkv +丁咚-泪干以后我不哭,http://em.21dtv.com/songs/60026526.mkv +雨天-留给我一点温柔,http://em.21dtv.com/songs/60027533.mkv +白雅言-留给我的三件事,http://em.21dtv.com/songs/60106165.mkv +晓依-老公我的好老公,http://em.21dtv.com/songs/60085356.mkv +苏唯-两个世界两个你,http://em.21dtv.com/songs/60114736.mkv +任钢-两个世界的思念,http://em.21dtv.com/songs/60027268.mkv +小琢-恋歌四季唱江南,http://em.21dtv.com/songs/60113425.mkv +苏永康-两个人一个世界,http://em.21dtv.com/songs/60027262.mkv +183CLUB-两个人的西洋棋,http://em.21dtv.com/songs/60027251.mkv +许慧欣-两个人的下雪天,http://em.21dtv.com/songs/60027252.mkv +楼宏章-两个人的独角戏,http://em.21dtv.com/songs/60070881.mkv +刘羽+华仔-老公亲亲我的嘴,http://em.21dtv.com/songs/60070868.mkv +门丽-老公你还爱我吗,http://em.21dtv.com/songs/60076345.mkv +和丰+阿芳-老公老婆这样说,http://em.21dtv.com/songs/60104891.mkv +囚鸟-老公老公辛苦了,http://em.21dtv.com/songs/60061354.mkv +谢雨欣-老公老公我爱你,http://em.21dtv.com/songs/60026341.mkv +红蔷薇-老公老公不容易,http://em.21dtv.com/songs/60113935.mkv +BOY'Z-两个滑板的少年,http://em.21dtv.com/songs/60092150.mkv +叶佩雯-兰桂坊的倾斜度,http://em.21dtv.com/songs/60026028.mkv +黄梅戏-龙归大海鸟入林,http://em.21dtv.com/songs/60085401.mkv +佚名-龙归大海鸟入林,http://em.21dtv.com/songs/60083315.mkv +黄新德-龙归大海鸟入林,http://em.21dtv.com/songs/60027826.mkv +蔡小芳-老公不在我身边,http://em.21dtv.com/songs/60081290.mkv +王小尧-老公不在我身边,http://em.21dtv.com/songs/60076342.mkv +楼宏章-路过爱情路过你,http://em.21dtv.com/songs/60068449.mkv +STEPS-loves gots a hold of my heart,http://em.21dtv.com/songs/60003640.mkv +刘和刚-老房子,http://em.21dtv.com/songs/60122513.mkv +张柏芝-老夫子2001,http://em.21dtv.com/songs/60089278.mkv +群星-老夫子2001,http://em.21dtv.com/songs/60088467.mkv +龙飞-龙飞心里有个你,http://em.21dtv.com/songs/60067210.mkv +叶幼琪-炉峰香岛赋新篇(戏曲),http://em.21dtv.com/songs/60092421.mkv +雷锋歌手胡玉-雷锋我的好哥哥,http://em.21dtv.com/songs/60070870.mkv +雷锋歌手胡玉-雷锋哥哥就是我,http://em.21dtv.com/songs/60102919.mkv +八大巨星-龙飞凤舞迎新春,http://em.21dtv.com/songs/60076492.mkv +八大巨星-龙凤呈祥齐拜年,http://em.21dtv.com/songs/60076493.mkv +邓丽君-脸儿微笑花儿香(演),http://em.21dtv.com/songs/60100492.mkv +农夫-乐而忘返+激光中(演唱会),http://em.21dtv.com/songs/60026463.mkv +申容财-Lean On,http://em.21dtv.com/songs/60132762.mkv +DJ Snake+Major Lazer+M-Lean On,http://em.21dtv.com/songs/60123460.mkv +Major Lazer+DJ Snake-Lean On,http://em.21dtv.com/songs/60111632.mkv +潘丽-留得真言在人间,http://em.21dtv.com/songs/60081372.mkv +许还幻-林黛玉没有眼泪,http://em.21dtv.com/songs/60027387.mkv +田跃君-林黛玉没有眼泪,http://em.21dtv.com/songs/60027386.mkv +蒋雪儿-林黛玉没有眼泪,http://em.21dtv.com/songs/60027385.mkv +方雪雯+黄瑛+黄依群-两地相思无尽头,http://em.21dtv.com/songs/60027215.mkv +阎飞翔-路灯下的小姑娘,http://em.21dtv.com/songs/60114849.mkv +凤凰传奇-路灯下的小姑娘,http://em.21dtv.com/songs/60097889.mkv +陈依然-路灯下的小姑娘,http://em.21dtv.com/songs/60076509.mkv +佚名-路灯下的小姑娘,http://em.21dtv.com/songs/60027935.mkv +杨坤-路灯下的小姑娘(演唱会),http://em.21dtv.com/songs/60072167.mkv +陈依然-路灯下的小姑娘(舞曲版),http://em.21dtv.com/songs/60066133.mkv +崔子格-路灯下的大女孩,http://em.21dtv.com/songs/60106801.mkv +童唱-伦敦铁桥塌下来,http://em.21dtv.com/songs/60028010.mkv +庄秋玉-娄底是个好地方,http://em.21dtv.com/songs/60126842.mkv +江蕙-路灯了解我心意,http://em.21dtv.com/songs/60095750.mkv +方瑞娥-路灯了解我心意,http://em.21dtv.com/songs/60095556.mkv +陈军委-连队就是咱的家,http://em.21dtv.com/songs/60061367.mkv +孙刚-泪蛋蛋 [演],http://em.21dtv.com/songs/60094871.mkv +S.H.E-伦敦大桥垮下来,http://em.21dtv.com/songs/60028007.mkv +天骏-来到草原爱上云,http://em.21dtv.com/songs/60076307.mkv +姚志强+曾慧-林冲之柳亭饯别(2)(戏曲),http://em.21dtv.com/songs/60092500.mkv +姚志强+曾慧-林冲之柳亭饯别(1)(戏曲),http://em.21dtv.com/songs/60092499.mkv +宋冬野-六层楼,http://em.21dtv.com/songs/60106783.mkv +寂悸-凌晨还有谁没睡,http://em.21dtv.com/songs/60116732.mkv +黑撒-流川枫与苍井空,http://em.21dtv.com/songs/60114308.mkv +佚名-龙车凤辇进皇城,http://em.21dtv.com/songs/60027808.mkv +盖鸣晖+吴美英-连城璧-上京赴试,http://em.21dtv.com/songs/60026933.mkv +李泽坚+司徒兰芳-留不住你的温柔,http://em.21dtv.com/songs/60083309.mkv +李泽坚-留不住你的温柔,http://em.21dtv.com/songs/60027523.mkv +杨燕-路边野花不要采(演唱会),http://em.21dtv.com/songs/60076508.mkv +中国娃娃-路边野花不要采,http://em.21dtv.com/songs/60027931.mkv +舜文齐-蜡笔小新的幻觉,http://em.21dtv.com/songs/60088511.mkv +耿为华-老百姓的心里话,http://em.21dtv.com/songs/60076333.mkv +吕继宏-老百姓的好心情(演唱会),http://em.21dtv.com/songs/60076332.mkv +萧敬腾+宋宇-李白,http://em.21dtv.com/songs/60112921.mkv +佚名-离别太阳西沉时,http://em.21dtv.com/songs/60026665.mkv +刘欢-篱笆墙上的影子,http://em.21dtv.com/songs/60026842.mkv +叶蕴仪-离别你再次上路,http://em.21dtv.com/songs/60026660.mkv +张鑫洋-老爸老妈我爱你,http://em.21dtv.com/songs/60103288.mkv +朱宇-老爸老妈大声唱,http://em.21dtv.com/songs/60109411.mkv +佚名-来吧来吧雨和风,http://em.21dtv.com/songs/60025948.mkv +龙梅子+老猫-老爸老爸你好吗,http://em.21dtv.com/songs/60076331.mkv +欢子-离不开天空的云,http://em.21dtv.com/songs/60026685.mkv +钟子炫-离不开你的温柔,http://em.21dtv.com/songs/60124590.mkv +郭靖-来不及说我爱你,http://em.21dtv.com/songs/60025968.mkv +王浩申-来不及说我爱你,http://em.21dtv.com/songs/60067176.mkv +春雷-老板就是打工仔,http://em.21dtv.com/songs/60110241.mkv +龙军-来不及说对不起,http://em.21dtv.com/songs/60085342.mkv +魏来-来不及说对不起,http://em.21dtv.com/songs/60083244.mkv +高浚-来不及说对不起,http://em.21dtv.com/songs/60025967.mkv +魏俫-来不及说对不起,http://em.21dtv.com/songs/60070859.mkv +马健涛-来不及好好爱你,http://em.21dtv.com/songs/60025962.mkv +CIRCUS-来不及的时光机,http://em.21dtv.com/songs/60025959.mkv +小曾-列兵的柔软时光,http://em.21dtv.com/songs/60111025.mkv +佚名-离别的公用电话,http://em.21dtv.com/songs/60026645.mkv +佚名-离别的斧山车站,http://em.21dtv.com/songs/60026643.mkv +蟑螂乐队-恋爱中请勿打扰,http://em.21dtv.com/songs/60092032.mkv +李国志-恋爱让我害怕啦,http://em.21dtv.com/songs/60066120.mkv +龚芝怡-恋爱女生都是羊,http://em.21dtv.com/songs/60067200.mkv +林俊杰-Lamando,http://em.21dtv.com/songs/60111192.mkv +林俊杰-Lamando,http://em.21dtv.com/songs/60110303.mkv +李爱绮-恋爱路100号,http://em.21dtv.com/songs/60027025.mkv +沈建豪-恋爱的人拢同款,http://em.21dtv.com/songs/60112057.mkv +江蕙-恋爱的人拢同款,http://em.21dtv.com/songs/60027005.mkv +张学友-恋爱的人都一样,http://em.21dtv.com/songs/60027004.mkv +SCANDAL-涙のリグレット,http://em.21dtv.com/songs/60026563.mkv +鸿飞-看着月亮想着你,http://em.21dtv.com/songs/60109768.mkv +冠男-哭着眼睛说拜拜,http://em.21dtv.com/songs/60025588.mkv +赵传-可以相信的朋友(演唱会),http://em.21dtv.com/songs/60025356.mkv +罗天宇-哭一万次够不够,http://em.21dtv.com/songs/60108797.mkv +刀郎-可惜我是水瓶座,http://em.21dtv.com/songs/60090678.mkv +杨千嬅-可惜我是水瓶座(演唱会),http://em.21dtv.com/songs/60025343.mkv +容祖儿-可惜我是水瓶座(演唱会),http://em.21dtv.com/songs/60025342.mkv +周丽淇-可惜他有女朋友,http://em.21dtv.com/songs/60025341.mkv +欢子-可惜你是他的人,http://em.21dtv.com/songs/60061333.mkv +滕旭文-可惜你没有珍惜,http://em.21dtv.com/songs/60107039.mkv +华晨宇-卡西莫多的礼物,http://em.21dtv.com/songs/60103948.mkv +罗韩淼-看我怎么收拾你,http://em.21dtv.com/songs/60123082.mkv +许茹芸-看完烟火再回去,http://em.21dtv.com/songs/60025129.mkv +张冬玲-开往心底的列车,http://em.21dtv.com/songs/60025028.mkv +郭富城-渴望无限ask for more,http://em.21dtv.com/songs/60025375.mkv +王芷蕾-看我听我感觉我,http://em.21dtv.com/songs/60025138.mkv +张祥洪-开往天堂的列车,http://em.21dtv.com/songs/60025027.mkv +李翊君-渴望明天好天气,http://em.21dtv.com/songs/60025371.mkv +唐禹哲-开往明天的旅行,http://em.21dtv.com/songs/60025026.mkv +庾澄庆-凯文克莱不让步,http://em.21dtv.com/songs/60083210.mkv +任妙音-渴望和你再相聚,http://em.21dtv.com/songs/60113244.mkv +容祖儿-渴望晨曦的女孩,http://em.21dtv.com/songs/60113418.mkv +袁娅维-开往春天的地铁,http://em.21dtv.com/songs/60135718.mkv +羽泉-开往春天的地铁,http://em.21dtv.com/songs/60025025.mkv +羽泉-开往春天的地铁(演唱会),http://em.21dtv.com/songs/60025024.mkv +卢冠廷-Kumbaya,http://em.21dtv.com/songs/60125243.mkv +蔡妍-看透,http://em.21dtv.com/songs/60114033.mkv +云飞儿-看透爱情看透你,http://em.21dtv.com/songs/60118311.mkv +冷漠-看透爱情看透你,http://em.21dtv.com/songs/60115708.mkv +云菲菲-看透爱情看透你,http://em.21dtv.com/songs/60097873.mkv +冷漠-看透爱情看透你,http://em.21dtv.com/songs/60025127.mkv +宋小宝-看透爱情看透你(演唱会),http://em.21dtv.com/songs/60066095.mkv +冷漠+云菲菲-看透爱情看透你,http://em.21dtv.com/songs/60064430.mkv +晓依-看透爱情看透你,http://em.21dtv.com/songs/60063155.mkv +谷鹏飞-看透爱情恨透你,http://em.21dtv.com/songs/60114803.mkv +毛阿敏-苦是泪甜也是泪,http://em.21dtv.com/songs/60025644.mkv +吕继宏+张也-看山看水看中国,http://em.21dtv.com/songs/60132280.mkv +西域胡杨-喀什噶尔我的家,http://em.21dtv.com/songs/60130738.mkv +刀郎-喀什噶尔胡杨,http://em.21dtv.com/songs/60024953.mkv +孟杨-靠谁不如靠自己,http://em.21dtv.com/songs/60098262.mkv +王昆-抗日战士出征歌,http://em.21dtv.com/songs/60116147.mkv +孙楠+丛浩楠-宽容,http://em.21dtv.com/songs/60125382.mkv +小北-凯瑞是另个赫本,http://em.21dtv.com/songs/60126800.mkv +付立明-客人来到蒙古包,http://em.21dtv.com/songs/60025406.mkv +关牧村-孔雀向往的地方,http://em.21dtv.com/songs/60025504.mkv +张琛-开启幸福的地方(演唱会),http://em.21dtv.com/songs/60067154.mkv +高林生-快去泰国当总理,http://em.21dtv.com/songs/60062374.mkv +叶树茵-哭泣是没有用的(无原唱),http://em.21dtv.com/songs/60025575.mkv +佚名-孔雀东南飞-惜别,http://em.21dtv.com/songs/60025500.mkv +吴国华-孔雀东南飞-惜别,http://em.21dtv.com/songs/60025499.mkv +欧凯明-孔雀东南飞-惜别,http://em.21dtv.com/songs/60025498.mkv +燕尾蝶-喀纳斯湖的月亮,http://em.21dtv.com/songs/60110369.mkv +陈雅森-可能你真的很好,http://em.21dtv.com/songs/60119028.mkv +蔡小虎-靠你的爱过日子,http://em.21dtv.com/songs/60067161.mkv +索丽娜-开门纳福迎春来,http://em.21dtv.com/songs/60132785.mkv +贾玲-卡门傅文佩开门(演唱会),http://em.21dtv.com/songs/60076224.mkv +枫桥-快乐在你我身边,http://em.21dtv.com/songs/60081012.mkv +魏君华-快乐在你我身边,http://em.21dtv.com/songs/60076292.mkv +苏勒亚其其格-快乐在你我身边,http://em.21dtv.com/songs/60076291.mkv +林志颖-快乐要自己追逐,http://em.21dtv.com/songs/60088103.mkv +小崔建-可怜天下父母心,http://em.21dtv.com/songs/60098279.mkv +元朝-快乐属于你我他,http://em.21dtv.com/songs/60097861.mkv +凤彩姐妹-快乐生活你和我,http://em.21dtv.com/songs/60025781.mkv +陈婷婷-快乐人过快乐年(无原唱),http://em.21dtv.com/songs/60025776.mkv +洛天依+乐正绫-柯罗诺斯的怠惰,http://em.21dtv.com/songs/60128176.mkv +罗时丰-可怜恋花再会吧,http://em.21dtv.com/songs/60076257.mkv +佚名-可怜恋花再会吧,http://em.21dtv.com/songs/60025326.mkv +秀兰玛雅-可怜恋花再会吧,http://em.21dtv.com/songs/60025325.mkv +叶启田-可怜恋花再会吧(无原唱),http://em.21dtv.com/songs/60025324.mkv +任玲-快乐就在你身旁,http://em.21dtv.com/songs/60070854.mkv +贺世哲-快乐happy,http://em.21dtv.com/songs/60108019.mkv +钟舒漫+洪杰-快乐分开凭着爱,http://em.21dtv.com/songs/60083235.mkv +黎明-快乐2000年,http://em.21dtv.com/songs/60089555.mkv +彭佳慧-快乐的人请举手,http://em.21dtv.com/songs/60025727.mkv +张燕-快乐的人请鼓掌,http://em.21dtv.com/songs/60025726.mkv +张小觉-快乐对不快乐说,http://em.21dtv.com/songs/60063396.mkv +佚名-可怜彼个小姑娘,http://em.21dtv.com/songs/60025308.mkv +陈美安+陈建华-可怜彼个小姑娘,http://em.21dtv.com/songs/60068404.mkv +群星-开开心心庆丰年,http://em.21dtv.com/songs/60091854.mkv +囚鸟-开开心心每一天,http://em.21dtv.com/songs/60133521.mkv +吴介贤-开开心心过新年(演唱会),http://em.21dtv.com/songs/60072104.mkv +戴玉强-可可西里的故事,http://em.21dtv.com/songs/60105921.mkv +紫海-快快说声我爱你,http://em.21dtv.com/songs/60100369.mkv +大哲-苦苦恋,http://em.21dtv.com/songs/60113372.mkv +郑璐-开口就唱哎呀嘞,http://em.21dtv.com/songs/60099534.mkv +任贤齐-看见一只和平鸽,http://em.21dtv.com/songs/60090565.mkv +钱万千-科技兴检谱新篇,http://em.21dtv.com/songs/60114163.mkv +罗景文-看见什么吃什么,http://em.21dtv.com/songs/60103518.mkv +苏梦玫-看见什么吃什么,http://em.21dtv.com/songs/60081580.mkv +林宥嘉-看见什么吃什么,http://em.21dtv.com/songs/60025088.mkv +徐秋菊-客家山歌传五州,http://em.21dtv.com/songs/60087885.mkv +徐秋菊-客家山歌传五洲,http://em.21dtv.com/songs/60025400.mkv +林依轮-靠近你温柔的我,http://em.21dtv.com/songs/60088088.mkv +马玉涛-看见你们格外亲,http://em.21dtv.com/songs/60114268.mkv +佚名-看见你们格外亲,http://em.21dtv.com/songs/60025083.mkv +望海高歌-看见你的第一眼,http://em.21dtv.com/songs/60101646.mkv +Matzka-客家妹,http://em.21dtv.com/songs/60103796.mkv +王识贤-卡讲吗是为著你(无原唱),http://em.21dtv.com/songs/60078342.mkv +佚名-卡讲吗是为着你(无原唱),http://em.21dtv.com/songs/60024958.mkv +钟彩媚-客家妹妹来拜年,http://em.21dtv.com/songs/60108084.mkv +媛媛-客家米酒客家情,http://em.21dtv.com/songs/60108415.mkv +万芳-看见快乐对我笑,http://em.21dtv.com/songs/60025081.mkv +果子-客家姑娘爱唱歌,http://em.21dtv.com/songs/60070846.mkv +古东权+候粤春-客家哥妹唔嫌苦(客家话),http://em.21dtv.com/songs/60069544.mkv +S.I.N.G女团-Kiss Me,http://em.21dtv.com/songs/60119179.mkv +Olly Murs-Kiss Me,http://em.21dtv.com/songs/60115619.mkv +茅小勇-Kiss Me,http://em.21dtv.com/songs/60102665.mkv +SEXY ZONE-King & Queen & Joker,http://em.21dtv.com/songs/60100751.mkv +Slipknot-Killpop,http://em.21dtv.com/songs/60113188.mkv +林姗-可恨又可爱的人,http://em.21dtv.com/songs/60067164.mkv +培圣-哭过以后才明白,http://em.21dtv.com/songs/60087618.mkv +陈昕-空港,http://em.21dtv.com/songs/60103685.mkv +黄红英-可否再见你一眼,http://em.21dtv.com/songs/60025290.mkv +纪如璟-咖啡杯里的水仙,http://em.21dtv.com/songs/60024939.mkv +张海-咖啡不解酒的醉,http://em.21dtv.com/songs/60113481.mkv +王洪迪+谢佳-看得最远的地方,http://em.21dtv.com/songs/60127197.mkv +张韶涵-看得最远的地方,http://em.21dtv.com/songs/60025068.mkv +赵真-快递小哥不容易,http://em.21dtv.com/songs/60120978.mkv +李霄云-口袋里的练习曲,http://em.21dtv.com/songs/60105165.mkv +郭顶-口袋里的对不起,http://em.21dtv.com/songs/60104505.mkv +张信哲+Akon-狂潮,http://em.21dtv.com/songs/60120501.mkv +佚名-卡唱嘛是这首歌,http://em.21dtv.com/songs/60024957.mkv +佚名-苦菜花开闪金光,http://em.21dtv.com/songs/60025592.mkv +王音璇-苦菜花开闪金光,http://em.21dtv.com/songs/60025591.mkv +王熹蛮-空城孤独的房间,http://em.21dtv.com/songs/60103457.mkv +黎顺才-开车搭妹到北京,http://em.21dtv.com/songs/60121190.mkv +廖芊芊-康巴情,http://em.21dtv.com/songs/60117712.mkv +紫龙-可不可以再爱你,http://em.21dtv.com/songs/60108796.mkv +刘牧-可不可以离开我,http://em.21dtv.com/songs/60085326.mkv +程响-可不可以放弃你,http://em.21dtv.com/songs/60061332.mkv +范玮琪-可不可以不勇敢,http://em.21dtv.com/songs/60025282.mkv +杨臣刚-可不可以不想你,http://em.21dtv.com/songs/60025281.mkv +林鸿阳-看不到路的尽头,http://em.21dtv.com/songs/60025054.mkv +何永俊-哭并不是我的错,http://em.21dtv.com/songs/60025544.mkv +Hari-可爱颂2015,http://em.21dtv.com/songs/60110765.mkv +星星兔-可爱女人的回信,http://em.21dtv.com/songs/60105106.mkv +林欣彤-可爱的人方可爱(演唱会),http://em.21dtv.com/songs/60064434.mkv +苏亚-可爱的蒙古姑娘,http://em.21dtv.com/songs/60070842.mkv +群星-就这young,http://em.21dtv.com/songs/60126053.mkv +吴炜-就这样结束了吗,http://em.21dtv.com/songs/60024681.mkv +信-假装阳光的蜡烛,http://em.21dtv.com/songs/60061289.mkv +佚名-就这样爱上了你,http://em.21dtv.com/songs/60024679.mkv +汪东城-假装我们没爱过,http://em.21dtv.com/songs/60066057.mkv +佚名-假装我们还相恋,http://em.21dtv.com/songs/60023152.mkv +佚名-酒醉入梦感伤痛,http://em.21dtv.com/songs/60024495.mkv +丸子-假装你还爱着我,http://em.21dtv.com/songs/60023150.mkv +JESSICA-叫做你的那个人,http://em.21dtv.com/songs/60085282.mkv +卡拉OK-金珠玛米亚古都,http://em.21dtv.com/songs/60089193.mkv +晏敏敏-靖州美 靖州醉,http://em.21dtv.com/songs/60125637.mkv +孙海涛-救自己,http://em.21dtv.com/songs/60121569.mkv +巧千金-橘子姑娘来拜年,http://em.21dtv.com/songs/60076198.mkv +吸引力乐团-酒醉都是大明星,http://em.21dtv.com/songs/60024487.mkv +张俊天-假装不曾爱过你,http://em.21dtv.com/songs/60107707.mkv +徐志杰-记忆中的向日葵,http://em.21dtv.com/songs/60022726.mkv +罗中旭-记忆中的水彩画,http://em.21dtv.com/songs/60081943.mkv +李克勤-九月中的陌生人(无原唱),http://em.21dtv.com/songs/60024365.mkv +蔡秋凤-今夜犹原想着你,http://em.21dtv.com/songs/60024018.mkv +东阳-今夜又一个人睡,http://em.21dtv.com/songs/60069524.mkv +降央卓玛-今夜又下着小雨,http://em.21dtv.com/songs/60076135.mkv +王少峰-今夜又搁雨绵绵,http://em.21dtv.com/songs/60076134.mkv +陈思安+办桌阿杰-今夜又搁想起你,http://em.21dtv.com/songs/60095994.mkv +办桌阿杰+陈思安-今夜又搁想起你,http://em.21dtv.com/songs/60095479.mkv +杨宗宪-今夜又搁想起你,http://em.21dtv.com/songs/60026091.mkv +林沐桦-今夜又搁为谁痛,http://em.21dtv.com/songs/60024026.mkv +杨静-今夜又搁为你醉,http://em.21dtv.com/songs/60083178.mkv +尤雅-今夜又搁为你醉,http://em.21dtv.com/songs/60024025.mkv +李茂山-今夜又搁为你醉,http://em.21dtv.com/songs/60024024.mkv +薛金显-今夜又搁是孤单,http://em.21dtv.com/songs/60126156.mkv +薛金显-今夜又搁是孤单,http://em.21dtv.com/songs/60124450.mkv +冯伟杰-今夜又搁梦见你,http://em.21dtv.com/songs/60118369.mkv +袁小迪+向惠玲-今夜又搁块落雨,http://em.21dtv.com/songs/60024023.mkv +佚名-今夜又搁块落雨,http://em.21dtv.com/songs/60024022.mkv +王建杰-今夜又搁块落雨,http://em.21dtv.com/songs/60024021.mkv +李茂山-今夜又搁块落雨,http://em.21dtv.com/songs/60024020.mkv +杨山-九月,http://em.21dtv.com/songs/60127089.mkv +程诗迦-解药,http://em.21dtv.com/songs/60108789.mkv +佚名-今夜我要饮乎醉(无原唱),http://em.21dtv.com/songs/60024003.mkv +王馨-今夜我又想起你,http://em.21dtv.com/songs/60135574.mkv +周雅芳-今夜我要为我哮(无原唱),http://em.21dtv.com/songs/60018203.mkv +晓东-今夜我想醉一回,http://em.21dtv.com/songs/60119614.mkv +邝美云-今夜我是你的dj,http://em.21dtv.com/songs/60024001.mkv +喜波-今夜我就是李白,http://em.21dtv.com/songs/60131286.mkv +洪荣宏-今夜为何这呢冷(无原唱),http://em.21dtv.com/songs/60023996.mkv +刘斌-军营天晴也下雨,http://em.21dtv.com/songs/60024914.mkv +佚名-今夜台北没有你,http://em.21dtv.com/songs/60023995.mkv +林志炫-今夜是否想起我,http://em.21dtv.com/songs/60091461.mkv +江蕙-今夜山风吹心房,http://em.21dtv.com/songs/60023991.mkv +谢雷-今夜身边没有你,http://em.21dtv.com/songs/60023992.mkv +陈一畅-今夜你又陪别人,http://em.21dtv.com/songs/60072084.mkv +张立基-今夜你是否一人,http://em.21dtv.com/songs/60023988.mkv +风无心-今夜你没有出现,http://em.21dtv.com/songs/60061308.mkv +陈瑞-今夜你会在哪里,http://em.21dtv.com/songs/60081296.mkv +谭咏麟-今夜你会不会来,http://em.21dtv.com/songs/60023986.mkv +黎明-今夜你会不会来,http://em.21dtv.com/songs/60023985.mkv +黎明-今夜你会不会来(演唱会),http://em.21dtv.com/songs/60023983.mkv +董慧敏-金玉良缘将我骗,http://em.21dtv.com/songs/60024097.mkv +刘春梅-军营里的红玫瑰(军旅),http://em.21dtv.com/songs/60090713.mkv +谢金燕-今夜今夜为你醉,http://em.21dtv.com/songs/60023970.mkv +成铭-今夜静静的想你,http://em.21dtv.com/songs/60085301.mkv +陈彦允-基因决定我爱你,http://em.21dtv.com/songs/60101560.mkv +白雅彤-今夜还是想要你,http://em.21dtv.com/songs/60100337.mkv +张宇-今夜寒风冷酸酸(无原唱),http://em.21dtv.com/songs/60023965.mkv +谢雷-今夜甘愿为你醉(无原唱),http://em.21dtv.com/songs/60079935.mkv +左汀汀-今夜风儿轻轻吹,http://em.21dtv.com/songs/60063507.mkv +龙影云-九月的最后一天,http://em.21dtv.com/songs/60133151.mkv +乔玲儿-今夜的我好寂寞,http://em.21dtv.com/songs/60128746.mkv +胡瓜-今夜不要再等我,http://em.21dtv.com/songs/60023947.mkv +胡瓜-今夜不要再等你,http://em.21dtv.com/songs/60088498.mkv +张津涤-今夜不想一个人,http://em.21dtv.com/songs/60117731.mkv +苗苗+刘罡-见与不见草原风,http://em.21dtv.com/songs/60068374.mkv +黄红英-家乡有座风雨桥,http://em.21dtv.com/songs/60090363.mkv +庄上荣-家乡有条母亲河,http://em.21dtv.com/songs/60093726.mkv +宋祖英-家乡有条猛洞河,http://em.21dtv.com/songs/60023031.mkv +楚天一椒+骆驼-家乡有条风雨桥,http://em.21dtv.com/songs/60113750.mkv +佚名-家乡有条风雨桥,http://em.21dtv.com/songs/60023030.mkv +德德玛-家乡有棵相思柳,http://em.21dtv.com/songs/60091213.mkv +刘一祯-锦绣潇湘等你来,http://em.21dtv.com/songs/60076148.mkv +佳林-家乡天堂,http://em.21dtv.com/songs/60117552.mkv +徐秋菊-家乡山水几多情,http://em.21dtv.com/songs/60023028.mkv +李丹阳-江西是个好地方,http://em.21dtv.com/songs/60076057.mkv +网络歌手-吉祥三宝小偷版,http://em.21dtv.com/songs/60088411.mkv +八大巨星-吉祥如意祥牛到,http://em.21dtv.com/songs/60075956.mkv +来国庆-吉祥如意的日子,http://em.21dtv.com/songs/60129260.mkv +八大巨星-吉祥如日财神到,http://em.21dtv.com/songs/60075955.mkv +刘彦萍-井陉美在山林水,http://em.21dtv.com/songs/60099804.mkv +陈淑芳-侥心介人无好尾,http://em.21dtv.com/songs/60052242.mkv +旺福乐团-就想和你在一起,http://em.21dtv.com/songs/60024659.mkv +王彩桦-叫我怎样活下去,http://em.21dtv.com/songs/60023524.mkv +陈零九+孙盛希-今晚只是有些话,http://em.21dtv.com/songs/60123332.mkv +董文华-叫我怎能抹得开,http://em.21dtv.com/songs/60098741.mkv +潘美辰-教我怎么不想你,http://em.21dtv.com/songs/60023554.mkv +陈小春-教我怎么不想你,http://em.21dtv.com/songs/60023553.mkv +陈小春-叫我怎么不想你,http://em.21dtv.com/songs/60023522.mkv +泽旺多吉-叫我怎么不歌唱,http://em.21dtv.com/songs/60125867.mkv +王瑞霞-今晚我欲去你遐,http://em.21dtv.com/songs/60096405.mkv +任贤齐-今晚我要去唱歌,http://em.21dtv.com/songs/60087276.mkv +邝美云-今晚我是你的dj,http://em.21dtv.com/songs/60023906.mkv +郑少秋-今晚躺进我臂弯,http://em.21dtv.com/songs/60023905.mkv +郭燕-教我如何忘记你,http://em.21dtv.com/songs/60023551.mkv +周汉学-教我如何去小便,http://em.21dtv.com/songs/60023550.mkv +丁紫-教我如何不想她,http://em.21dtv.com/songs/60109916.mkv +戴玉强-教我如何不想她,http://em.21dtv.com/songs/60089315.mkv +陈永龙-教我如何不想她,http://em.21dtv.com/songs/60085284.mkv +马洪海-教我如何不想他,http://em.21dtv.com/songs/60023549.mkv +陈亮吟-教我如何不想他,http://em.21dtv.com/songs/60023548.mkv +胡梅-叫我如何不想你,http://em.21dtv.com/songs/60083153.mkv +李潮-叫我如何不想她,http://em.21dtv.com/songs/60070808.mkv +郑希怡-教我如何不爱他,http://em.21dtv.com/songs/60093293.mkv +叶德娴+许志安-教我如何不爱她,http://em.21dtv.com/songs/60023547.mkv +叶德娴-教我如何不爱他,http://em.21dtv.com/songs/60023546.mkv +叶德娴+许志安-教我如何不爱他(演唱会),http://em.21dtv.com/songs/60023545.mkv +叶德娴+伦永亮-教我如何不爱他(演唱会),http://em.21dtv.com/songs/60023544.mkv +黄凯芹+刘小慧-教我如何不爱他(演唱会),http://em.21dtv.com/songs/60023543.mkv +陈慧琳+许志安-教我如何不爱他(演唱会),http://em.21dtv.com/songs/60023542.mkv +杨海彪+LF兄弟-今晚就喝这些酒,http://em.21dtv.com/songs/60130462.mkv +杨海彪-今晚就喝这些酒,http://em.21dtv.com/songs/60130461.mkv +孙绳骥-郊外回来小商琳,http://em.21dtv.com/songs/60069509.mkv +曹震豪+6号-今晚跟你拗餐饱(演唱会),http://em.21dtv.com/songs/60076125.mkv +陈奕迅-今天只做一件事,http://em.21dtv.com/songs/60098860.mkv +陈伟霆-今天终于知道错,http://em.21dtv.com/songs/60023892.mkv +李亮超-今天要听什么歌,http://em.21dtv.com/songs/60085298.mkv +陈慧娴-今天夜里总下雨,http://em.21dtv.com/songs/60023885.mkv +陈慧娴-今天夜里总下雨(演唱会),http://em.21dtv.com/songs/60023884.mkv +周柏豪-今天应该很快乐,http://em.21dtv.com/songs/60076124.mkv +达明一派-今天应该很高兴(演唱会),http://em.21dtv.com/songs/60023890.mkv +范振锋+梁奕伦-今天应该更高兴,http://em.21dtv.com/songs/60093090.mkv +林一峰-今天应该更高兴(演唱会),http://em.21dtv.com/songs/60023888.mkv +关心妍-今天应该更高兴(演唱会),http://em.21dtv.com/songs/60023887.mkv +郭蓉-今天我要做新娘,http://em.21dtv.com/songs/60100511.mkv +阿茹娜-今天我又想你了,http://em.21dtv.com/songs/60064403.mkv +张曼-今天我们正年轻,http://em.21dtv.com/songs/60084859.mkv +水木年华-今天我们要走了,http://em.21dtv.com/songs/60023880.mkv +艺林歌哥-今天我们结婚了,http://em.21dtv.com/songs/60096107.mkv +钟镇涛-今天我非常寂寞,http://em.21dtv.com/songs/60023877.mkv +谭晶+廖昌永-今天是你的生日,http://em.21dtv.com/songs/60115402.mkv +祖海-今天是你的生日,http://em.21dtv.com/songs/60023871.mkv +殷秀梅-今天是你的生日,http://em.21dtv.com/songs/60023870.mkv +韦唯-今天是你的生日,http://em.21dtv.com/songs/60023869.mkv +李娜-今天是你的生日,http://em.21dtv.com/songs/60023868.mkv +黑鸭子-今天是你的生日,http://em.21dtv.com/songs/60023867.mkv +董文华-今天是你的生日,http://em.21dtv.com/songs/60023866.mkv +董文华-今天是你的生日(演唱会),http://em.21dtv.com/songs/60023865.mkv +含笑-今天是个好天气(演唱会),http://em.21dtv.com/songs/60023864.mkv +陶喆+蔡依林-今天你要嫁给我,http://em.21dtv.com/songs/60023857.mkv +李小璐-金太郎爱米小米,http://em.21dtv.com/songs/60096343.mkv +李小璐-金太狼爱米小米,http://em.21dtv.com/songs/60067135.mkv +佚名-讲天讲地无路用,http://em.21dtv.com/songs/60023429.mkv +金久哲-敬天敬地敬兄弟,http://em.21dtv.com/songs/60123248.mkv +黎明-今天的天气很好,http://em.21dtv.com/songs/60023839.mkv +陈慧娴-今天的爱人是谁,http://em.21dtv.com/songs/60023835.mkv +陈慧娴-今天的爱人是谁(演唱会),http://em.21dtv.com/songs/60023834.mkv +李硕薰-今天比昨天不错,http://em.21dtv.com/songs/60131507.mkv +吴名慧-今天报纸开天窗,http://em.21dtv.com/songs/60023827.mkv +翁汕汕-今生只想让你陪,http://em.21dtv.com/songs/60080756.mkv +波拉+贺世哲-今生只为遇见你,http://em.21dtv.com/songs/60133926.mkv +波拉-今生只为遇见你,http://em.21dtv.com/songs/60122949.mkv +波拉-今生只为遇见你,http://em.21dtv.com/songs/60108684.mkv +郑铭-今生只为你疯狂,http://em.21dtv.com/songs/60097821.mkv +王可-今生只为你疯狂,http://em.21dtv.com/songs/60085292.mkv +望海高歌-今生只为你等候,http://em.21dtv.com/songs/60118648.mkv +吴歌-家是最美的地方,http://em.21dtv.com/songs/60110079.mkv +刘冲-今生注定在一起,http://em.21dtv.com/songs/60023816.mkv +SARA-即使知道要见面,http://em.21dtv.com/songs/60075961.mkv +大张杰-今生注定爱上你,http://em.21dtv.com/songs/60104008.mkv +倪梓悠-今生只爱你一人,http://em.21dtv.com/songs/60105596.mkv +李志洲-今生只爱你一个,http://em.21dtv.com/songs/60115223.mkv +韩春雨-今生最爱的唯一,http://em.21dtv.com/songs/60121115.mkv +网络歌曲-今生有缘遇上你,http://em.21dtv.com/songs/60091825.mkv +胡梅-今生有约是堂皇,http://em.21dtv.com/songs/60080986.mkv +东方依依+王浩-今生有缘来相爱,http://em.21dtv.com/songs/60125072.mkv +佚名-江水悠悠泪长流,http://em.21dtv.com/songs/60023364.mkv +邓丽君-江水悠悠泪长流,http://em.21dtv.com/songs/60023363.mkv +陈军良-家是永远的牵绊,http://em.21dtv.com/songs/60118144.mkv +晓晓-今生永远的爱恋,http://em.21dtv.com/songs/60113567.mkv +苏永康-假使有日能忘记,http://em.21dtv.com/songs/60093080.mkv +苏永康-假使有日能忘记(演唱会),http://em.21dtv.com/songs/60023125.mkv +张崇基+张崇德-假使有日能忘记(演唱会),http://em.21dtv.com/songs/60064380.mkv +江枫-今生有你已足够,http://em.21dtv.com/songs/60093622.mkv +晓月-今生与你梦相随,http://em.21dtv.com/songs/60070814.mkv +廖兆军+蓝玫-今生有你不孤单,http://em.21dtv.com/songs/60099219.mkv +张军+杨丽琨-今生遗恨来世缘,http://em.21dtv.com/songs/60135195.mkv +谢霆锋-今生一定在一起,http://em.21dtv.com/songs/60093183.mkv +邓丽君-江水要比河水长,http://em.21dtv.com/songs/60102774.mkv +华语群星-就手轩羊咩咩咩,http://em.21dtv.com/songs/60108357.mkv +承利-精神小伙社会摇,http://em.21dtv.com/songs/60126942.mkv +潘柯夫-就是喜欢搓麻将,http://em.21dtv.com/songs/60128186.mkv +三宝+爱歌-今生兄弟来世情,http://em.21dtv.com/songs/60125068.mkv +三宝+李志和-今生兄弟来世情,http://em.21dtv.com/songs/60125067.mkv +袁宇+陈海滨-叫声兄弟不后悔,http://em.21dtv.com/songs/60122100.mkv +阿伊米拉-今生我在寻找你,http://em.21dtv.com/songs/60115467.mkv +蒋婴-今生无缘来世恋,http://em.21dtv.com/songs/60122083.mkv +张祥洪-就算我是周星驰,http://em.21dtv.com/songs/60083199.mkv +天蝎-就算我是周星驰,http://em.21dtv.com/songs/60024653.mkv +五月天-家是温柔的港湾,http://em.21dtv.com/songs/60090518.mkv +吴涤清-家是温柔的港湾,http://em.21dtv.com/songs/60064374.mkv +洪荣宏-今生为你我愿意,http://em.21dtv.com/songs/60122953.mkv +洪荣宏-今生为你我愿意,http://em.21dtv.com/songs/60112071.mkv +关泽楠-今生为你唱情歌,http://em.21dtv.com/songs/60023799.mkv +罗焱坤-今生我们一起走,http://em.21dtv.com/songs/60023800.mkv +古巨基-结束我们抱着哭,http://em.21dtv.com/songs/60023630.mkv +Ladies' Code-就算痛苦也要笑,http://em.21dtv.com/songs/60114951.mkv +杨采妮-就算伤心也是爱,http://em.21dtv.com/songs/60024649.mkv +佚名-就算世事风气转,http://em.21dtv.com/songs/60024651.mkv +彩云追月-今生谁能共婵娟,http://em.21dtv.com/songs/60069518.mkv +群星-就算世界无童话,http://em.21dtv.com/songs/60097887.mkv +卫兰-就算世界无童话,http://em.21dtv.com/songs/60024650.mkv +六哲-今生欠你的一切,http://em.21dtv.com/songs/60085291.mkv +音乐走廊-今生陪你醉一回,http://em.21dtv.com/songs/60093706.mkv +孙浩雨-今生陪你一起走,http://em.21dtv.com/songs/60110978.mkv +冷漠-今生陪你一起走,http://em.21dtv.com/songs/60080196.mkv +惠子-今生陪你一起走,http://em.21dtv.com/songs/60068381.mkv +戴嘉良-今生陪你一起走,http://em.21dtv.com/songs/60068380.mkv +王艺霏-今生你是我的缘,http://em.21dtv.com/songs/60117043.mkv +郭富城-就是那么喜欢你,http://em.21dtv.com/songs/60090263.mkv +梁雁翎-今生难得有情人,http://em.21dtv.com/songs/60023793.mkv +佚名-讲什么山盟海誓,http://em.21dtv.com/songs/60023428.mkv +黄乙玲-讲什么山盟海誓,http://em.21dtv.com/songs/60023427.mkv +雨浩枫-就算留住你的人,http://em.21dtv.com/songs/60024645.mkv +周利剑-今生来世的情缘,http://em.21dtv.com/songs/60119354.mkv +诚峰-结束了就算了吧,http://em.21dtv.com/songs/60067126.mkv +杨海彪-今生就要在一起,http://em.21dtv.com/songs/60128113.mkv +王志-今生就要在一起(舞曲版),http://em.21dtv.com/songs/60083170.mkv +高磊-今生就要在一起,http://em.21dtv.com/songs/60076118.mkv +杨海彪-今生今世在一起,http://em.21dtv.com/songs/60023789.mkv +毕达-今生今世做兄弟,http://em.21dtv.com/songs/60083169.mkv +长春虫子-今生今世做兄弟,http://em.21dtv.com/songs/60076117.mkv +佚名-今生今世牵挂你,http://em.21dtv.com/songs/60023787.mkv +顾继军-今生今世难忘你,http://em.21dtv.com/songs/60085290.mkv +央吉拉-今生今世跟你走,http://em.21dtv.com/songs/60126758.mkv +石尚-今生今世的兄弟,http://em.21dtv.com/songs/60117106.mkv +刘倧洲+石尚-今生今世的兄弟,http://em.21dtv.com/songs/60116577.mkv +吴克国-今生今世爱着你,http://em.21dtv.com/songs/60108377.mkv +元若蓝+安东尼-九十九分的幸福,http://em.21dtv.com/songs/60024342.mkv +陆萍-九拾九朵红玫瑰,http://em.21dtv.com/songs/60024343.mkv +元若蓝-九十九次我爱他,http://em.21dtv.com/songs/60024340.mkv +群星-将生活留给自己,http://em.21dtv.com/songs/60023391.mkv +杨紫萍-叫声哥哥你快来,http://em.21dtv.com/songs/60100182.mkv +民歌经典-叫声哥哥快回来,http://em.21dtv.com/songs/60091565.mkv +蔡小虎-就是对你还有爱,http://em.21dtv.com/songs/60024620.mkv +孙宝奇-今生不要离开我,http://em.21dtv.com/songs/60061303.mkv +孙宝奇-今生不要离开我(舞曲版),http://em.21dtv.com/songs/60061302.mkv +孙艳-今生不愿错过你,http://em.21dtv.com/songs/60094060.mkv +赖有天-今生不能在一起,http://em.21dtv.com/songs/60097820.mkv +万阳-就算不能在一起,http://em.21dtv.com/songs/60024643.mkv +金素梅-今生不了情不了,http://em.21dtv.com/songs/60023772.mkv +望海高歌-今生不变的爱恋,http://em.21dtv.com/songs/60103338.mkv +苏青山+王馨-今生爱你到永久,http://em.21dtv.com/songs/60120893.mkv +李国辉+雨柔-今生爱你爱不够,http://em.21dtv.com/songs/60133794.mkv +龙泽雨-今生爱的就是你,http://em.21dtv.com/songs/60130958.mkv +祁隆-今生爱的就是你,http://em.21dtv.com/songs/60081798.mkv +雅锋-嫁人要嫁灰太狼,http://em.21dtv.com/songs/60023174.mkv +江宇-嫁人要嫁灰太狼,http://em.21dtv.com/songs/60061290.mkv +王昊-假如我有一个亿,http://em.21dtv.com/songs/60083126.mkv +满文军-假如我先幸福了,http://em.21dtv.com/songs/60116118.mkv +孙悦+陶大伟-假如我是大明星(无原唱),http://em.21dtv.com/songs/60023116.mkv +蔡忆雯-假如他欺骗了你,http://em.21dtv.com/songs/60105340.mkv +乌兰齐齐格-假如生活骗了你,http://em.21dtv.com/songs/60076018.mkv +谭嘉仪-假如让我说下去,http://em.21dtv.com/songs/60097885.mkv +C ALLSTAR-假如让我说下去(演唱会),http://em.21dtv.com/songs/60076017.mkv +杨千嬅-假如让我说下去,http://em.21dtv.com/songs/60023115.mkv +杨千嬅-假如让我说下去(演唱会),http://em.21dtv.com/songs/60023114.mkv +许志安-假如让我说下去(演唱会),http://em.21dtv.com/songs/60023113.mkv +蔡卓妍-假如让我说下去(演唱会),http://em.21dtv.com/songs/60023112.mkv +林忆莲-假如让你吻下去,http://em.21dtv.com/songs/60023111.mkv +张敬轩-假如让你吻下去(演唱会),http://em.21dtv.com/songs/60023110.mkv +谭晶-假如你要喜欢我,http://em.21dtv.com/songs/60076016.mkv +千荷-假如你要认识我,http://em.21dtv.com/songs/60089691.mkv +佚名-假如你要认识我,http://em.21dtv.com/songs/60023108.mkv +关牧村-假如你要认识我,http://em.21dtv.com/songs/60023107.mkv +罗志祥-假如你还在这里,http://em.21dtv.com/songs/60098690.mkv +刘冲-既然你不再爱我,http://em.21dtv.com/songs/60022757.mkv +高进-假如没有说再见,http://em.21dtv.com/songs/60023104.mkv +邓丽君-假如梦儿是真的,http://em.21dtv.com/songs/60023106.mkv +佚名-假如梦儿是真的(恰恰),http://em.21dtv.com/songs/60023105.mkv +满玲玲+熊辰龙-今日看来更爱人(天仙配)(戏曲),http://em.21dtv.com/songs/60091651.mkv +王庆爽-假如今天你还在,http://em.21dtv.com/songs/60112100.mkv +周彦宏-嫁人就嫁灰太狼,http://em.21dtv.com/songs/60023172.mkv +容祖儿-旧日回忆的山丘(演唱会),http://em.21dtv.com/songs/60024558.mkv +方琼-今日处处好风光,http://em.21dtv.com/songs/60087918.mkv +宇希-今日处处好风光,http://em.21dtv.com/songs/60087674.mkv +苏醒-假如爱是一种错,http://em.21dtv.com/songs/60076015.mkv +刘冲-既然爱情留不住,http://em.21dtv.com/songs/60101950.mkv +顾峰-假如爱能重来过,http://em.21dtv.com/songs/60023100.mkv +吕方-既然爱了就不怕,http://em.21dtv.com/songs/60022756.mkv +吕方-既然爱了就不怕(无原唱),http://em.21dtv.com/songs/60022755.mkv +金久哲-就让爱见鬼去吧,http://em.21dtv.com/songs/60111459.mkv +杨美娜-倔强,http://em.21dtv.com/songs/60129280.mkv +张瀛仁+李明洋-旧情绵绵再相逢,http://em.21dtv.com/songs/60115916.mkv +阿力-金钱美媚与爱情,http://em.21dtv.com/songs/60097867.mkv +苏路-绝情就是你的名,http://em.21dtv.com/songs/60024861.mkv +黄凯芹-解情还须系情人(演唱会),http://em.21dtv.com/songs/60023670.mkv +佚名-津轻海峡冬景色,http://em.21dtv.com/songs/60024108.mkv +刘欢-九曲黄河一壶酒,http://em.21dtv.com/songs/60024339.mkv +媛媛-激情广场大家唱,http://em.21dtv.com/songs/60085251.mkv +林峰-旧皮箱的流浪儿,http://em.21dtv.com/songs/60095665.mkv +陈雷-旧皮箱的流浪儿,http://em.21dtv.com/songs/60024525.mkv +高旗-九片棱角的回忆,http://em.21dtv.com/songs/60024335.mkv +大台风乐团-今年咱一定会中,http://em.21dtv.com/songs/60119380.mkv +王艺闻-江南最美是杭州,http://em.21dtv.com/songs/60064389.mkv +泽旺多吉-江南永远的故乡,http://em.21dtv.com/songs/60135494.mkv +容中尔甲-敬你一碗青稞酒,http://em.21dtv.com/songs/60024252.mkv +詹雅雯-今年一定会好过,http://em.21dtv.com/songs/60023757.mkv +天亮-敬你一杯马奶酒,http://em.21dtv.com/songs/60100821.mkv +韦礼安-江南,http://em.21dtv.com/songs/60124683.mkv +蔡健雅-记念,http://em.21dtv.com/songs/60117199.mkv +包启宁-今年我们毕业了,http://em.21dtv.com/songs/60106653.mkv +索南扎西-敬你三碗青稞酒,http://em.21dtv.com/songs/60061313.mkv +宛金秋-江南STYLL,http://em.21dtv.com/songs/60104061.mkv +PSY-江南Style,http://em.21dtv.com/songs/60119173.mkv +侯磊-敬男人,http://em.21dtv.com/songs/60109982.mkv +纳兰-江南梦,http://em.21dtv.com/songs/60112141.mkv +佚名-今年流行说再见(无原唱),http://em.21dtv.com/songs/60023749.mkv +雷佳-江南江北我的家,http://em.21dtv.com/songs/60076051.mkv +群星-今年更加要努力,http://em.21dtv.com/songs/60131729.mkv +华语群星-今年更加要努力,http://em.21dtv.com/songs/60118408.mkv +周艳泓+张瀚元-今年过节不收礼,http://em.21dtv.com/songs/60023745.mkv +许志安-借你耳朵说爱你,http://em.21dtv.com/songs/60023728.mkv +成泉+龙梅子-鸡年大吉咯咯哒,http://em.21dtv.com/songs/60131452.mkv +青春老少年-今年春节要回家,http://em.21dtv.com/songs/60108144.mkv +颜振豪-今年春节不回家,http://em.21dtv.com/songs/60023743.mkv +佚名-今年不似去年春,http://em.21dtv.com/songs/60023742.mkv +张镐哲-敬你爱人这一杯,http://em.21dtv.com/songs/60024251.mkv +晓月-寂寞中我在等待,http://em.21dtv.com/songs/60070793.mkv +Riyo橙+韦琪-寂寞在唱什么歌,http://em.21dtv.com/songs/60103812.mkv +吴俊熠-寂寞有你爱不休,http://em.21dtv.com/songs/60105694.mkv +曹格-寂寞先生+背叛,http://em.21dtv.com/songs/60097886.mkv +邓紫棋-寂寞星球的玫瑰(演唱会),http://em.21dtv.com/songs/60064366.mkv +胡杏儿-姐妹,http://em.21dtv.com/songs/60124379.mkv +佚名-军民团结一家亲,http://em.21dtv.com/songs/60024900.mkv +王喆-军民团结一家亲(演唱会),http://em.21dtv.com/songs/60069535.mkv +许强-寂寞是你给的苦,http://em.21dtv.com/songs/60114056.mkv +冷漠+云菲菲-寂寞是你给的苦,http://em.21dtv.com/songs/60022926.mkv +张萌萌+常安-寂寞时间只想你,http://em.21dtv.com/songs/60068358.mkv +苏富权-寂寞人生谁与共,http://em.21dtv.com/songs/60067107.mkv +陈奕迅-寂寞让你更快乐,http://em.21dtv.com/songs/60022917.mkv +冬心-寂寞男人的眼泪,http://em.21dtv.com/songs/60022908.mkv +魏守燕-寂寞男人的故事,http://em.21dtv.com/songs/60104617.mkv +吴克群-寂寞来了怎么办,http://em.21dtv.com/songs/60069492.mkv +王军+刘燕-姐妹二人梭对梭,http://em.21dtv.com/songs/60023653.mkv +杨绣惠-寂寞都市一蕊花,http://em.21dtv.com/songs/60085259.mkv +达明一派-寂寞的人有福了(演唱会),http://em.21dtv.com/songs/60022864.mkv +达明一派+谢霆锋-寂寞的人有福了(演唱会),http://em.21dtv.com/songs/60022863.mkv +孙露-寂寞的人容易醉,http://em.21dtv.com/songs/60114482.mkv +孙露-寂寞的人容易醉,http://em.21dtv.com/songs/60099933.mkv +王中平-寂寞的脚步好忙,http://em.21dtv.com/songs/60091681.mkv +魔音次世代-姐妹串烧,http://em.21dtv.com/songs/60098956.mkv +蒋大为-骏马奔驰保边疆,http://em.21dtv.com/songs/60128368.mkv +蒋大为-骏马奔驰保边疆,http://em.21dtv.com/songs/60024934.mkv +王心如-寂寞爱情部落格,http://em.21dtv.com/songs/60022820.mkv +薛凯琪-剑龙在草地散步,http://em.21dtv.com/songs/60023305.mkv +李雨伦-就连想念都无力,http://em.21dtv.com/songs/60129253.mkv +李亮超-角落里抹过的泪,http://em.21dtv.com/songs/60081053.mkv +张艺婷-家里还剩下什么,http://em.21dtv.com/songs/60132466.mkv +八大巨星-金龙飞舞迎新春,http://em.21dtv.com/songs/60076140.mkv +豫剧-久离边庭战马狂,http://em.21dtv.com/songs/60134533.mkv +云菲菲-戒了爱情戒了你,http://em.21dtv.com/songs/60076098.mkv +王瑜婧-健康快乐每一秒,http://em.21dtv.com/songs/60023316.mkv +香香-健康快乐动起来,http://em.21dtv.com/songs/60023315.mkv +詹雅雯-艰苦讲乎谁人听(无原唱),http://em.21dtv.com/songs/60023217.mkv +徐松涛-健康长寿秘诀歌,http://em.21dtv.com/songs/60094508.mkv +陈思思-九九中国艳阳天(演唱会),http://em.21dtv.com/songs/60024325.mkv +佚名-坚决战斗在海港,http://em.21dtv.com/songs/60023195.mkv +董瑶琴-坚决要求上战场,http://em.21dtv.com/songs/60023194.mkv +花鼓戏-姐姐为何跪尘埃,http://em.21dtv.com/songs/60090154.mkv +泳儿-接近天空的地方,http://em.21dtv.com/songs/60076078.mkv +王雪晶+庄群诗-句句声声说恭喜,http://em.21dtv.com/songs/60088331.mkv +关心妍-剑尖碰上我的心,http://em.21dtv.com/songs/60092307.mkv +周伟-九江迷人的地方,http://em.21dtv.com/songs/60122593.mkv +陶晶莹-姐姐妹妹站起来,http://em.21dtv.com/songs/60023641.mkv +巧千金-姐姐妹妹去拜年,http://em.21dtv.com/songs/60076093.mkv +孙翔-紧紧拉着您的手,http://em.21dtv.com/songs/60122659.mkv +吴克群-将军令+We Will Rock You,http://em.21dtv.com/songs/60081707.mkv +太妍-聚集记忆的时间,http://em.21dtv.com/songs/60133536.mkv +晓晓-寂静的夜在等谁,http://em.21dtv.com/songs/60113568.mkv +杨愿明-静静的为你守候,http://em.21dtv.com/songs/60068391.mkv +阿威-拒绝毒品的诱惑(无原唱),http://em.21dtv.com/songs/60024731.mkv +范小倩-简简单单受点伤,http://em.21dtv.com/songs/60120904.mkv +钟镇涛-简简单单的生活,http://em.21dtv.com/songs/60023274.mkv +豫剧-九尽春回杏花开,http://em.21dtv.com/songs/60134534.mkv +群星-金鸡报喜合家欢,http://em.21dtv.com/songs/60134130.mkv +群星-金鸡报喜合家欢,http://em.21dtv.com/songs/60131732.mkv +储兰兰-京剧宝宝(演唱会),http://em.21dtv.com/songs/60076152.mkv +佚名-金黄锃亮罗汉钱,http://em.21dtv.com/songs/60024050.mkv +谭晶-江海相拥的家乡,http://em.21dtv.com/songs/60023325.mkv +佚名-旧恨未消新仇添,http://em.21dtv.com/songs/60024506.mkv +周彦宏-镜花水月两样情,http://em.21dtv.com/songs/60090838.mkv +江蕙-讲话亲像风块飞(无原唱),http://em.21dtv.com/songs/60023418.mkv +潘秀琼-家花那有野花香,http://em.21dtv.com/songs/60023007.mkv +白冰冰-交乎命运去处理(无原唱),http://em.21dtv.com/songs/60023450.mkv +纪晓斌-金猴贺岁报春来,http://em.21dtv.com/songs/60118840.mkv +东山少爷+徐诗喻-剑合钗圆帝女花,http://em.21dtv.com/songs/60023303.mkv +农夫+尹光-举高只手+数毛毛,http://em.21dtv.com/songs/60024716.mkv +Dear Jane-经过一些秋与冬,http://em.21dtv.com/songs/60128673.mkv +Dear Jane-经过一些秋与冬,http://em.21dtv.com/songs/60126520.mkv +牛欣欣-鞠躬行礼拜新年,http://em.21dtv.com/songs/60024691.mkv +邓百成-鸡公相打胸对胸,http://em.21dtv.com/songs/60022515.mkv +饶天亮-嫁给我你会幸福,http://em.21dtv.com/songs/60023167.mkv +金城-嫁给他你幸福吗,http://em.21dtv.com/songs/60023161.mkv +赵晨-嫁给他你快乐吗,http://em.21dtv.com/songs/60068369.mkv +王昊-嫁给他就忘了我,http://em.21dtv.com/songs/60063017.mkv +任子墨-酒鬼TANGO,http://em.21dtv.com/songs/60134875.mkv +李丹-井岗山下种南瓜,http://em.21dtv.com/songs/60087975.mkv +李丹-井冈山下种南瓜(演唱会),http://em.21dtv.com/songs/60024230.mkv +佚名-井冈山上太阳红,http://em.21dtv.com/songs/60024232.mkv +李双江-井岗山上红太阳,http://em.21dtv.com/songs/60089949.mkv +唐妍-见鬼去吧你的爱,http://em.21dtv.com/songs/60121519.mkv +周传雄-寄给你一朵玫瑰,http://em.21dtv.com/songs/60022800.mkv +古巨基-劲歌金曲3 party king,http://em.21dtv.com/songs/60062397.mkv +储兰兰-接过红旗肩上扛,http://em.21dtv.com/songs/60076077.mkv +童星-鞠躬行礼拜新年,http://em.21dtv.com/songs/60088392.mkv +陈升+左小祖咒-加格达奇的夜车,http://em.21dtv.com/songs/60064369.mkv +纳兰珠儿-井冈杜鹃花又开(演唱会),http://em.21dtv.com/songs/60072091.mkv +孔云峰-借个阿妹游太湖,http://em.21dtv.com/songs/60122650.mkv +阿赖-酒逢知己千杯少,http://em.21dtv.com/songs/60121056.mkv +敖都+李峰-金凤引得黄河来,http://em.21dtv.com/songs/60100874.mkv +王杰-几分伤心几分痴,http://em.21dtv.com/songs/60022652.mkv +谭咏麟-几分伤心几分痴,http://em.21dtv.com/songs/60022651.mkv +小肥-几分伤心几分痴(演唱会),http://em.21dtv.com/songs/60022650.mkv +王杰-几分伤心几分痴(演唱会),http://em.21dtv.com/songs/60022649.mkv +蔡向鹏-警服是我的名分,http://em.21dtv.com/songs/60114030.mkv +关牧村-金风吹来的时候,http://em.21dtv.com/songs/60087360.mkv +卡拉OK-健儿巧渡金沙江,http://em.21dtv.com/songs/60089706.mkv +Nick Jonas-Jealous,http://em.21dtv.com/songs/60108236.mkv +海生-记得一定要快乐,http://em.21dtv.com/songs/60066048.mkv +枫舞+怡然-几多相思谁人知,http://em.21dtv.com/songs/60100228.mkv +带泪的鱼-记得我曾爱过你,http://em.21dtv.com/songs/60099989.mkv +叶欢-几多深情几多愁(无原唱),http://em.21dtv.com/songs/60022647.mkv +许诺-就当是你为了我,http://em.21dtv.com/songs/60082025.mkv +越剧-记得那年乔装扮,http://em.21dtv.com/songs/60022690.mkv +佚名-记得那年春花发,http://em.21dtv.com/songs/60022689.mkv +民歌-金都玛米亚古都,http://em.21dtv.com/songs/60091562.mkv +汪峰-加德满都的风铃,http://em.21dtv.com/songs/60094199.mkv +孙中亮-警队里的好兄弟,http://em.21dtv.com/songs/60123818.mkv +李行亮-简单的爱不简单,http://em.21dtv.com/songs/60112766.mkv +佚名-记得草桥两结拜,http://em.21dtv.com/songs/60022684.mkv +黄小桢-九点八公尺 每秒(无原唱),http://em.21dtv.com/songs/60024302.mkv +郭富城-极度哀艳的晚上,http://em.21dtv.com/songs/60022594.mkv +郭富城-极度哀艳的晚上(演唱会),http://em.21dtv.com/songs/60022593.mkv +大哲-戒掉爱情戒了你,http://em.21dtv.com/songs/60076097.mkv +姚怀生-见此重围进不能,http://em.21dtv.com/songs/60023280.mkv +李浩-精彩在我的舞台,http://em.21dtv.com/songs/60064409.mkv +陈随意-今朝有酒今朝醉,http://em.21dtv.com/songs/60113075.mkv +袁小迪+黄思婷-将春天藏在叨位,http://em.21dtv.com/songs/60023374.mkv +杨嵩-韭菜坪我的父亲,http://em.21dtv.com/songs/60094552.mkv +程响+王羽泽-经常回家看一看,http://em.21dtv.com/songs/60072089.mkv +大庆小芳-酒不醉人人自醉,http://em.21dtv.com/songs/60117639.mkv +刘德华-记不住你的容颜,http://em.21dtv.com/songs/60022677.mkv +方亚芬-久别重逢梁山伯,http://em.21dtv.com/songs/60024375.mkv +王宏伟-甲板上的马头琴,http://em.21dtv.com/songs/60081696.mkv +王宏伟-甲板上的马头琴(演唱会),http://em.21dtv.com/songs/60076010.mkv +刘玮-江北水城好风光,http://em.21dtv.com/songs/60023324.mkv +钟镇涛-记不记得我是谁,http://em.21dtv.com/songs/60022676.mkv +张娜拉-脚扁风-海市蜃楼,http://em.21dtv.com/songs/60023488.mkv +黄爱玲-久别的人盼重逢,http://em.21dtv.com/songs/60083184.mkv +曾春年-戒不掉你的温柔,http://em.21dtv.com/songs/60023698.mkv +子枫-戒不掉你的温柔,http://em.21dtv.com/songs/60063481.mkv +王珏-戒不掉的想停念(演唱会),http://em.21dtv.com/songs/60023695.mkv +傅秋英-就按样无讲一声,http://em.21dtv.com/songs/60024592.mkv +零点乐队-剪爱[演唱会],http://em.21dtv.com/songs/60133065.mkv +群星-骄傲,http://em.21dtv.com/songs/60126064.mkv +谢雨欣-将爱情进行到底,http://em.21dtv.com/songs/60023370.mkv +潘长江-将爱情进行到底,http://em.21dtv.com/songs/60023369.mkv +谢雨欣-将爱情进行到底(演唱会),http://em.21dtv.com/songs/60023368.mkv +一飞-将爱情进行到底,http://em.21dtv.com/songs/60080813.mkv +李安+江源东-剪爱 Hero,http://em.21dtv.com/songs/60114599.mkv +BACKSTREET BOYS-if you want it to be good,http://em.21dtv.com/songs/60002805.mkv +佚名-if you love me let me know,http://em.21dtv.com/songs/60002798.mkv +WILLIE NELSON-if you got the money ive got,http://em.21dtv.com/songs/60002796.mkv +佚名-if you dont know me by now,http://em.21dtv.com/songs/60002793.mkv +TINA ARENA+MARC ANTH-i want to spend my lifetime lo,http://em.21dtv.com/songs/60002704.mkv +FOREIGNER-i want to know what love is,http://em.21dtv.com/songs/60002703.mkv +DIERKS BENTLEY-i wanna make you close your ey,http://em.21dtv.com/songs/60002692.mkv +蔡依林-i wont last a day without you,http://em.21dtv.com/songs/60002738.mkv +伍思凯-i want jesus to walk with me,http://em.21dtv.com/songs/60002697.mkv +WIZZARD-i wish it could be christmas e,http://em.21dtv.com/songs/60070352.mkv +陈一玲-I Wanna,http://em.21dtv.com/songs/60104536.mkv +STEPS-its the way you make me feel,http://em.21dtv.com/songs/60003025.mkv +田亚霍-Its You,http://em.21dtv.com/songs/60131686.mkv +Maxwell-It‘s OK,http://em.21dtv.com/songs/60113175.mkv +佚名-in the house of stone and ligh(无原唱),http://em.21dtv.com/songs/60002926.mkv +萧敬腾+B51造音乐团-I Swear,http://em.21dtv.com/songs/60094662.mkv +BILLY JOEL-its still rock and roll to me,http://em.21dtv.com/songs/60003024.mkv +佚名-its so hard to say goodbye to,http://em.21dtv.com/songs/60003023.mkv +ENGLAND DAN+JOHN FOR-id really love to see you ton,http://em.21dtv.com/songs/60002757.mkv +7朵花-i only want to be with you,http://em.21dtv.com/songs/60002636.mkv +GROOVE COVERAGE-i need you vs i need you,http://em.21dtv.com/songs/60069094.mkv +佚名-im not supposed to love you anymore(无原唱),http://em.21dtv.com/songs/60002872.mkv +Ciara+Nicki Minaj-I'm Out,http://em.21dtv.com/songs/60108214.mkv +MARTINA MOBRICLE-im gonna love you through it,http://em.21dtv.com/songs/60073425.mkv +FAR EAST MOVEMENT-im gonna love you through it,http://em.21dtv.com/songs/60065620.mkv +DONNY OSMOND-ill make a man out of you,http://em.21dtv.com/songs/60002833.mkv +Pentatonix-Imagine,http://em.21dtv.com/songs/60133262.mkv +杜丽莎-Imagine,http://em.21dtv.com/songs/60132570.mkv +郭富城-i love you so太爱你,http://em.21dtv.com/songs/60002597.mkv +郭富城-i love you so太爱你(演唱会),http://em.21dtv.com/songs/60002596.mkv +音乐铁人-i love you你懂不懂,http://em.21dtv.com/songs/60073390.mkv +ROD STEWART-if loving you is wrong i dont,http://em.21dtv.com/songs/60002778.mkv +佚名-i love the way you love me,http://em.21dtv.com/songs/60002583.mkv +佚名-i left my heart in san francis,http://em.21dtv.com/songs/60002570.mkv +トニー.ベネット-i left my heart in san francis(无原唱),http://em.21dtv.com/songs/60002569.mkv +杜德伟-i just want to be your everyth,http://em.21dtv.com/songs/60002556.mkv +RIHANNA-if its lovin that you want,http://em.21dtv.com/songs/60073418.mkv +张韶涵-if im the one for you,http://em.21dtv.com/songs/60070355.mkv +ADELE-if it hadnt been for love,http://em.21dtv.com/songs/60071613.mkv +JUSTIN MOORE-if heaven wasnt so far away,http://em.21dtv.com/songs/60073412.mkv +BILL MEDLEY+JENNIFER-ive had the time of my life,http://em.21dtv.com/songs/60003043.mkv +佚名-ive gotta get a message to yo,http://em.21dtv.com/songs/60003042.mkv +B.T.JONES-W.BELL-i forgot to be your lover aka(无原唱),http://em.21dtv.com/songs/60002519.mkv +金世正-If Only,http://em.21dtv.com/songs/60131901.mkv +罗允权-If Only,http://em.21dtv.com/songs/60106190.mkv +佚名-if ever youre in my arms agai,http://em.21dtv.com/songs/60002758.mkv +张惠妹-i dont want to talk about it,http://em.21dtv.com/songs/60002511.mkv +ROD STEWART-i dont want to talk about it,http://em.21dtv.com/songs/60002510.mkv +张惠妹-i dont want to talk about it(演唱会),http://em.21dtv.com/songs/60002509.mkv +史密斯飞船-i dont want to miss a thing,http://em.21dtv.com/songs/60002507.mkv +侧田-i dont want to miss a thing,http://em.21dtv.com/songs/60002506.mkv +AEROSMITH-i dont want to miss a thing,http://em.21dtv.com/songs/60002505.mkv +佚名-i dont want to lose your love,http://em.21dtv.com/songs/60002504.mkv +詹瑞文-i dont wanner say 仆街,http://em.21dtv.com/songs/60060826.mkv +阿茹娜-i dont wanna cry no more,http://em.21dtv.com/songs/60063626.mkv +佚名-i didnt mean to turn you on,http://em.21dtv.com/songs/60002471.mkv +佚名-i dont know how to love him,http://em.21dtv.com/songs/60002489.mkv +TANK-i cant make you love me,http://em.21dtv.com/songs/60066654.mkv +ADELE-i cant make you love me,http://em.21dtv.com/songs/60065614.mkv +ANDY WILLIAMS-i cant help falling in love w,http://em.21dtv.com/songs/60002455.mkv +佚名-i cant find the words to say(无原唱),http://em.21dtv.com/songs/60002452.mkv +欧豪-Ice Age,http://em.21dtv.com/songs/60117879.mkv +THE DARKNESS-i believe in a thing called lo,http://em.21dtv.com/songs/60002419.mkv +赖雅妍-I AM OK,http://em.21dtv.com/songs/60110554.mkv +San E+Wha Sa-I Am Me,http://em.21dtv.com/songs/60132126.mkv +佚名-its all coming back to me now,http://em.21dtv.com/songs/60002989.mkv +佚名-its all coming back to me now(无原唱),http://em.21dtv.com/songs/60002988.mkv +蔡琴-花针引线线穿针(演唱会),http://em.21dtv.com/songs/60021552.mkv +康康-孩子有空就回家,http://em.21dtv.com/songs/60068302.mkv +高胜美-何止一句我爱你,http://em.21dtv.com/songs/60095363.mkv +邱永传-喝醉以后我想你,http://em.21dtv.com/songs/60122163.mkv +胡派-喝醉以后才明白,http://em.21dtv.com/songs/60105312.mkv +吴佩慈-怀着笑意的决定,http://em.21dtv.com/songs/60092446.mkv +糯米团-黑仔香江中招记,http://em.21dtv.com/songs/60020602.mkv +朱毅-活着我不想这样,http://em.21dtv.com/songs/60100107.mkv +尚杰-化作石桥五百年,http://em.21dtv.com/songs/60132401.mkv +胡晓海-画在墙上的天堂,http://em.21dtv.com/songs/60021616.mkv +花鼓戏-化作琵琶弹一轮,http://em.21dtv.com/songs/60090148.mkv +大庆小芳-喝着啤酒唱情歌,http://em.21dtv.com/songs/60113375.mkv +张冬玲-喝着烈酒唱情歌,http://em.21dtv.com/songs/60061236.mkv +陈雷-魂走九宵三千里,http://em.21dtv.com/songs/60022344.mkv +张天甫-画中就是我的家,http://em.21dtv.com/songs/60114529.mkv +吴宗宪-和自己赛跑的人,http://em.21dtv.com/songs/60020449.mkv +李宗盛-和自己赛跑的人,http://em.21dtv.com/songs/60020448.mkv +洪进英-活着回忆这件事,http://em.21dtv.com/songs/60106073.mkv +邓子非-挥着翅膀的女孩,http://em.21dtv.com/songs/60118951.mkv +容祖儿-挥着翅膀的女孩,http://em.21dtv.com/songs/60022066.mkv +容祖儿-挥着翅膀的女孩(演唱会),http://em.21dtv.com/songs/60022065.mkv +尚雯婕-海在不远处唱歌(演唱会),http://em.21dtv.com/songs/60019831.mkv +解晓东-活着本来就是累,http://em.21dtv.com/songs/60022398.mkv +罗依-回忆在这歌声里,http://em.21dtv.com/songs/60085244.mkv +胜屿-后遗症,http://em.21dtv.com/songs/60123091.mkv +花鼓戏-华阳镇上寻新欢,http://em.21dtv.com/songs/60090149.mkv +张驰-还有再见那天吗,http://em.21dtv.com/songs/60075891.mkv +刘尊-红颜知己不是梦,http://em.21dtv.com/songs/60021017.mkv +海洋-弘扬中国共产党,http://em.21dtv.com/songs/60112836.mkv +云菲菲-红颜自古多薄命,http://em.21dtv.com/songs/60021019.mkv +雷雨哥-换一种方式爱你,http://em.21dtv.com/songs/60121110.mkv +泳儿-还有一生的时间,http://em.21dtv.com/songs/60019667.mkv +南征北战-回忆,http://em.21dtv.com/songs/60118412.mkv +魏翰成-弘扬武术在少年,http://em.21dtv.com/songs/60075760.mkv +童丽-黄莺树上声声唱,http://em.21dtv.com/songs/60075906.mkv +郭静-还有什么好在意,http://em.21dtv.com/songs/60103634.mkv +中国娃娃-环游世界ding ding dong,http://em.21dtv.com/songs/60021806.mkv +王菲-回忆是红色天空,http://em.21dtv.com/songs/60022252.mkv +咏峰-喊一声黄河妈妈(演唱会),http://em.21dtv.com/songs/60075664.mkv +易秒英-衡阳是个好地方(演唱会),http://em.21dtv.com/songs/60063274.mkv +陆锋-还要让我等多久,http://em.21dtv.com/songs/60019650.mkv +刘依纯-花言巧语五四三(无原唱),http://em.21dtv.com/songs/60021522.mkv +邵夷贝-欢迎你来大工厂,http://em.21dtv.com/songs/60113006.mkv +钟镇涛-还有你给我快乐,http://em.21dtv.com/songs/60093378.mkv +金岩-欢迎你到这方来,http://em.21dtv.com/songs/60097838.mkv +登越顿珠-欢迎你到乡城来,http://em.21dtv.com/songs/60021798.mkv +康卓-欢迎你到山南来(藏语),http://em.21dtv.com/songs/60091023.mkv +梅林组合-欢迎你到草原来,http://em.21dtv.com/songs/60068340.mkv +宋祖英-欢迎你到茶乡来,http://em.21dtv.com/songs/60107664.mkv +伊能静-红颜美人多薄命,http://em.21dtv.com/songs/60021006.mkv +枫舞-黑夜梦见孤身游,http://em.21dtv.com/songs/60133885.mkv +周慧敏-红叶落索的时候,http://em.21dtv.com/songs/60021026.mkv +张喜民+谭维维+华阴老腔演员-华阴老腔一声喊,http://em.21dtv.com/songs/60119511.mkv +郑伊健-回忆里没有冬季,http://em.21dtv.com/songs/60022249.mkv +花鼓戏-花园来了化斋人,http://em.21dtv.com/songs/60090173.mkv +李行亮-回忆里的那个人,http://em.21dtv.com/songs/60125724.mkv +李行亮-回忆里的那个人,http://em.21dtv.com/songs/60106959.mkv +李行亮-回忆里的那个人,http://em.21dtv.com/songs/60105992.mkv +那英-花一开满就相爱,http://em.21dtv.com/songs/60127450.mkv +那英-花一开满就相爱(演唱会),http://em.21dtv.com/songs/60062776.mkv +林依晨-花一开就相爱吧,http://em.21dtv.com/songs/60021530.mkv +蔡振南-好运今年轮到我,http://em.21dtv.com/songs/60020267.mkv +宋祖英-红叶红了的时候,http://em.21dtv.com/songs/60090967.mkv +韩雪-还有好多话没说,http://em.21dtv.com/songs/60126440.mkv +罗时丰-红与黑的勃鲁斯,http://em.21dtv.com/songs/60021030.mkv +樊凡-还一个拥抱给我,http://em.21dtv.com/songs/60080954.mkv +杨林-换一个爱我的人,http://em.21dtv.com/songs/60021846.mkv +佚名-have you ever really loved a woman,http://em.21dtv.com/songs/60002124.mkv +文千岁+梁少芯-汉元帝夜会昭君,http://em.21dtv.com/songs/60019927.mkv +群星-还有多少个十年,http://em.21dtv.com/songs/60108814.mkv +陈宝珠-寒月冬风送马啼(演唱会),http://em.21dtv.com/songs/60019917.mkv +枫舞+何文秀-红颜薄命谁相知,http://em.21dtv.com/songs/60128133.mkv +枫舞-红颜薄命谁相知,http://em.21dtv.com/songs/60128132.mkv +何文秀-红颜薄命谁相知,http://em.21dtv.com/songs/60127735.mkv +王莹-好想在这安个家,http://em.21dtv.com/songs/60106129.mkv +舒浩炀-红星照我去战斗,http://em.21dtv.com/songs/60118860.mkv +佚名-红星照我去战斗,http://em.21dtv.com/songs/60020992.mkv +李双江-红星照我去战斗,http://em.21dtv.com/songs/60020991.mkv +刀郎-红星照我去战斗,http://em.21dtv.com/songs/60020990.mkv +浩明-还想再牵你的手,http://em.21dtv.com/songs/60101425.mkv +戴雪儿-好想找个人来爱,http://em.21dtv.com/songs/60020218.mkv +蔡丽妮-很想再爱你一次,http://em.21dtv.com/songs/60020669.mkv +王柯淇-很想拥有一把伞,http://em.21dtv.com/songs/60075751.mkv +刘洋-好想有个女朋友,http://em.21dtv.com/songs/60075696.mkv +马浚伟-好想拥抱一个人,http://em.21dtv.com/songs/60020215.mkv +韦礼安-海啸,http://em.21dtv.com/songs/60124684.mkv +郭富城-好想说声谢谢你(演唱会),http://em.21dtv.com/songs/60020210.mkv +何杰-很想说声对不起(演唱会),http://em.21dtv.com/songs/60020665.mkv +刘斌-和谐社会树新风,http://em.21dtv.com/songs/60020445.mkv +刘峰华-好想陪你到永远,http://em.21dtv.com/songs/60099801.mkv +孙紫晴-好想你还是我的,http://em.21dtv.com/songs/60081987.mkv +海生-喝下你藏好的毒,http://em.21dtv.com/songs/60061235.mkv +韩晓辉-好想默默守着你,http://em.21dtv.com/songs/60116367.mkv +梁咏琪-回旋木马的终端,http://em.21dtv.com/songs/60022231.mkv +杨宗纬-回旋木马的终端(演唱会),http://em.21dtv.com/songs/60022230.mkv +萧福德-华西街的一蕊花,http://em.21dtv.com/songs/60021578.mkv +轩艺桐-好想好想有套房,http://em.21dtv.com/songs/60020195.mkv +侧田-很想很想说再见,http://em.21dtv.com/songs/60132206.mkv +侧田-很想很想说再见,http://em.21dtv.com/songs/60070741.mkv +李青+王馨-好想和你在一起,http://em.21dtv.com/songs/60111177.mkv +面具-好想和你在一起,http://em.21dtv.com/songs/60098915.mkv +洪卓立-很想和你在一起,http://em.21dtv.com/songs/60020659.mkv +鲁珺琦-好想和你在一起,http://em.21dtv.com/songs/60061234.mkv +郝祺-好想和你聊聊天,http://em.21dtv.com/songs/60111452.mkv +月星海-好想和你聊聊天,http://em.21dtv.com/songs/60101645.mkv +佚名-花谢花飞飞满天,http://em.21dtv.com/songs/60021507.mkv +胖虎乐团-好想回到幼稚园,http://em.21dtv.com/songs/60020196.mkv +胖虎-好想回到幼儿园,http://em.21dtv.com/songs/60088489.mkv +ME2-好想跟你说说话,http://em.21dtv.com/songs/60090413.mkv +刚辉-好想放开你的手,http://em.21dtv.com/songs/60020190.mkv +BAAD-好想大声说爱你,http://em.21dtv.com/songs/60020185.mkv +李明洋-换我做你的家后,http://em.21dtv.com/songs/60118678.mkv +任娟-海窝子的甜樱桃,http://em.21dtv.com/songs/60120299.mkv +李琛-和我一起走好吗,http://em.21dtv.com/songs/60020439.mkv +张真菲-和我一起摇滚吧,http://em.21dtv.com/songs/60063428.mkv +张四三-虎尾溪水慢慢流(无原唱),http://em.21dtv.com/songs/60021290.mkv +佚名-害我心肝丢三下,http://em.21dtv.com/songs/60019851.mkv +罗时丰-害我心肝丢三下,http://em.21dtv.com/songs/60019850.mkv +俞子欣-喊我女人的男人,http://em.21dtv.com/songs/60019921.mkv +LABOUM-Hwi hwi,http://em.21dtv.com/songs/60134731.mkv +印能法师-忽闻海上有仙山,http://em.21dtv.com/songs/60099838.mkv +梅艳芳-回头已是百年身(演唱会),http://em.21dtv.com/songs/60022198.mkv +张津涤-欢天喜地麦西西,http://em.21dtv.com/songs/60117734.mkv +于文华+尹相杰-欢天喜地奔小康,http://em.21dtv.com/songs/60021772.mkv +青山-回头我也不要你(演唱会),http://em.21dtv.com/songs/60083085.mkv +佚名-回头我也不要你,http://em.21dtv.com/songs/60022193.mkv +唐龙-回头我也不要你,http://em.21dtv.com/songs/60022192.mkv +林淑蓉-回头我也不要你,http://em.21dtv.com/songs/60022191.mkv +李茂山-回头我也不要你,http://em.21dtv.com/songs/60022190.mkv +王馨-恨透你,http://em.21dtv.com/songs/60113890.mkv +何方-灰太狼爱红太狼,http://em.21dtv.com/songs/60127737.mkv +金城武-回头可否再相爱,http://em.21dtv.com/songs/60022182.mkv +郭瑞-恨天恨地恨自己,http://em.21dtv.com/songs/60100980.mkv +葛笑-恨天恨地恨自己,http://em.21dtv.com/songs/60100444.mkv +沉默-恨天恨地恨自己,http://em.21dtv.com/songs/60085187.mkv +庄心妍-回头草[粤语],http://em.21dtv.com/songs/60105805.mkv +邓百成-皇天不负苦心人,http://em.21dtv.com/songs/60021888.mkv +欣哲-恨透爱情恨透你,http://em.21dtv.com/songs/60088159.mkv +金泽-恨透爱情恨透你,http://em.21dtv.com/songs/60020720.mkv +荣歌-何时再牵你的手,http://em.21dtv.com/songs/60075714.mkv +伍佰-何时再见梦中人,http://em.21dtv.com/songs/60020398.mkv +詹雅雯-魂是英雄钱是胆,http://em.21dtv.com/songs/60126174.mkv +周啊想-何时与你再相逢,http://em.21dtv.com/songs/60098193.mkv +骆驼强子-喝上一口团圆酒,http://em.21dtv.com/songs/60111530.mkv +李淑勤-火树银花庆中秋,http://em.21dtv.com/songs/60022460.mkv +张德兰+区瑞强-好事喜事永相伴,http://em.21dtv.com/songs/60020165.mkv +腾格尔-红山下的绿草原,http://em.21dtv.com/songs/60080275.mkv +廖昌永-红山下的绿草原,http://em.21dtv.com/songs/60080216.mkv +豫剧-浑身是胆雄赳赳,http://em.21dtv.com/songs/60134592.mkv +京剧-浑身是胆雄纠纠,http://em.21dtv.com/songs/60022326.mkv +王莹-还是山城云浮美,http://em.21dtv.com/songs/60107914.mkv +杨子_咪娜-话说山伯与英台,http://em.21dtv.com/songs/60101117.mkv +孙中亮-还是忍不住想你,http://em.21dtv.com/songs/60132353.mkv +孙中亮-还是忍不住想你,http://em.21dtv.com/songs/60102109.mkv +佚名-红色娘子军连歌,http://em.21dtv.com/songs/60020956.mkv +谭咏麟-还是你懂得爱我(演唱会),http://em.21dtv.com/songs/60019623.mkv +晨熙-何时了却这牵挂,http://em.21dtv.com/songs/60132503.mkv +望海高歌-何时了却这牵挂,http://em.21dtv.com/songs/60104184.mkv +贝贝-何时了却这牵挂,http://em.21dtv.com/songs/60097854.mkv +陈奂仁-还是老歌最感动,http://em.21dtv.com/songs/60083074.mkv +燕妮-还是军装打扮人,http://em.21dtv.com/songs/60019621.mkv +张学友-还是觉得你最好,http://em.21dtv.com/songs/60019620.mkv +古巨基-还是觉得你最好,http://em.21dtv.com/songs/60019619.mkv +张学友-还是觉得你最好(演唱会),http://em.21dtv.com/songs/60019618.mkv +泳儿-还是觉得你最好(演唱会),http://em.21dtv.com/songs/60019617.mkv +金笛齐萌-好山好水好扎西,http://em.21dtv.com/songs/60129680.mkv +宋祖英-黄山黄河中国人,http://em.21dtv.com/songs/60090973.mkv +张学友-还是感觉你最好,http://em.21dtv.com/songs/60019607.mkv +洪煜祺-海是倒过来的天,http://em.21dtv.com/songs/60135496.mkv +林凡+孙富锦-何时才能重遇见,http://em.21dtv.com/songs/60020390.mkv +林忆莲-还是不要说抱歉,http://em.21dtv.com/songs/60019603.mkv +赵雪阳-护士阿姨你真美,http://em.21dtv.com/songs/60100481.mkv +翁铎文-护士阿姨你真美,http://em.21dtv.com/songs/60100393.mkv +梅沁颖-护士阿姨你真美,http://em.21dtv.com/songs/60100243.mkv +李奇媛-护士阿姨你真美,http://em.21dtv.com/songs/60100134.mkv +伍佰-何日再见梦中人,http://em.21dtv.com/songs/60087288.mkv +洪磊-何人与我心相印(故事情节),http://em.21dtv.com/songs/60098579.mkv +天籁天-何日与君长相守,http://em.21dtv.com/songs/60086593.mkv +千百顺-很任性,http://em.21dtv.com/songs/60107554.mkv +李克勤+罗金荣+钟乐+王铭言-红日,http://em.21dtv.com/songs/60122841.mkv +张智霖-忽然觉得好想你,http://em.21dtv.com/songs/60021185.mkv +董柯娣-何日骨肉能聚首,http://em.21dtv.com/songs/60020368.mkv +群星-火热动感la la la,http://em.21dtv.com/songs/60022453.mkv +许志安-火热动感la la la(演唱会),http://em.21dtv.com/songs/60022452.mkv +群星-火热动感la la la(HD演唱会),http://em.21dtv.com/songs/60022451.mkv +倪尔萍-魂牵梦萦想着你,http://em.21dtv.com/songs/60132213.mkv +刘玮-魂牵梦绕西柏坡,http://em.21dtv.com/songs/60087412.mkv +刘玮-魂牵梦饶西柏坡,http://em.21dtv.com/songs/60022335.mkv +吕宏伟-魂牵梦绕军旅情,http://em.21dtv.com/songs/60118436.mkv +莫笑萍-魂牵梦绕吊脚楼,http://em.21dtv.com/songs/60114012.mkv +石筱英+徐伯涛-回去两字且慢提,http://em.21dtv.com/songs/60022173.mkv +郁可唯-好朋友只是朋友(演唱会),http://em.21dtv.com/songs/60064282.mkv +吴松发-好朋友我的兄弟,http://em.21dtv.com/songs/60113331.mkv +太极乐队-害怕受伤的男人,http://em.21dtv.com/songs/60019846.mkv +佚名-黄浦怒潮-写遗书,http://em.21dtv.com/songs/60021983.mkv +夜小泪-害怕你不再爱我,http://em.21dtv.com/songs/60112594.mkv +王晓娟-桦皮岭上百花开,http://em.21dtv.com/songs/60085213.mkv +岳云鹏+张小斐+艾伦+潘斌龙+张泰维-哈皮哈多五千年,http://em.21dtv.com/songs/60131374.mkv +高向鹏+简美雀-嘿皮波斯爹干杯,http://em.21dtv.com/songs/60118193.mkv +国巍-害怕被爱的女人,http://em.21dtv.com/songs/60019843.mkv +马嘉轩-HOLIDAY,http://em.21dtv.com/songs/60124708.mkv +Beyonce-Hold Up,http://em.21dtv.com/songs/60122345.mkv +AXODUS-Hold On,http://em.21dtv.com/songs/60121215.mkv +关艾-海欧飞处彩云飞,http://em.21dtv.com/songs/60089647.mkv +佚名-海鸥飞处彩云飞,http://em.21dtv.com/songs/60019782.mkv +段红-和你在一起真好,http://em.21dtv.com/songs/60109476.mkv +央金次卓+贡尕达哇-和你在一起原唱,http://em.21dtv.com/songs/60099185.mkv +林子祥-怀念这深深一吻,http://em.21dtv.com/songs/60021674.mkv +海生-和你一样的梦想(演唱会),http://em.21dtv.com/songs/60020417.mkv +王莹-和你一起看夕阳,http://em.21dtv.com/songs/60117926.mkv +李青-和你一起看夕阳,http://em.21dtv.com/songs/60075718.mkv +时嘉+车神-和你相识不后悔,http://em.21dtv.com/songs/60083021.mkv +古品+孟杨-和你相爱一百年,http://em.21dtv.com/songs/60085182.mkv +胡杰夕+诗召+唐书-海南是我的故乡,http://em.21dtv.com/songs/60070725.mkv +李建衡-好男人伤得更深,http://em.21dtv.com/songs/60020102.mkv +王盛楠-好男人还有没有,http://em.21dtv.com/songs/60085175.mkv +清源-好男人还有很多,http://em.21dtv.com/songs/60020101.mkv +林沛涌-好男人会怕老婆,http://em.21dtv.com/songs/60071991.mkv +湘东雨-好男人 不要哭,http://em.21dtv.com/songs/60096100.mkv +马念先-和你巧遇在这里(演唱会),http://em.21dtv.com/songs/60020411.mkv +郑丽丝-何年何月再相逢(无原唱),http://em.21dtv.com/songs/60081697.mkv +黄雅莉-还能好好玩耍吗,http://em.21dtv.com/songs/60104847.mkv +高山林-恨你恨到骨头里,http://em.21dtv.com/songs/60020710.mkv +栾添翔-好男儿志在四方,http://em.21dtv.com/songs/60068312.mkv +吕继宏-好男儿纵横天下,http://em.21dtv.com/songs/60020097.mkv +成泉-猴年大吉棒棒哒,http://em.21dtv.com/songs/60117767.mkv +王莹+张新民-红棉树下的情歌,http://em.21dtv.com/songs/60113884.mkv +邓小龙-还没实现的承诺,http://em.21dtv.com/songs/60100495.mkv +韩婷-红木飘香的地方,http://em.21dtv.com/songs/60109007.mkv +孙子涵-哈姆雷特的眼泪(HD),http://em.21dtv.com/songs/10012769.mkv +孙子涵-哈姆雷特的眼泪,http://em.21dtv.com/songs/60101623.mkv +周平-红梅记之石牢咏,http://em.21dtv.com/songs/60020911.mkv +梁耀安-红梅记之石牢咏,http://em.21dtv.com/songs/60020910.mkv +蒋蒋-还没见面就分手,http://em.21dtv.com/songs/60081005.mkv +王莹-好美好美的西藏,http://em.21dtv.com/songs/60106130.mkv +张国荣-h2o melody h2o(演唱会),http://em.21dtv.com/songs/60002046.mkv +龚铭-红玫瑰与白玫瑰,http://em.21dtv.com/songs/60111567.mkv +云菲菲-红玫瑰与白玫瑰,http://em.21dtv.com/songs/60020904.mkv +冷漠-红玫瑰与白玫瑰,http://em.21dtv.com/songs/60020903.mkv +天籁回音-好马不吃回头草,http://em.21dtv.com/songs/60095281.mkv +天籁之音-好马不吃回头草,http://em.21dtv.com/songs/60094038.mkv +夏天ALEX-好马不吃回头草,http://em.21dtv.com/songs/60085172.mkv +孙大炮-好马不吃回头草,http://em.21dtv.com/songs/60020080.mkv +蒋敦豪-河流,http://em.21dtv.com/songs/60129568.mkv +南拳妈妈-河流午后我经过,http://em.21dtv.com/songs/60020460.mkv +欢子-好了伤疤忘了痛,http://em.21dtv.com/songs/60127133.mkv +孙子涵-好了伤疤忘了痛,http://em.21dtv.com/songs/60097837.mkv +大庆小芳-好了伤疤忘了疼,http://em.21dtv.com/songs/60066017.mkv +龙飘飘-欢乐年年到永远,http://em.21dtv.com/songs/60064334.mkv +东阳-后来你嫁给了谁,http://em.21dtv.com/songs/60121335.mkv +佚名-红楼梦-金玉良缘,http://em.21dtv.com/songs/60020891.mkv +佚名-火辣辣的娘儿们,http://em.21dtv.com/songs/60022442.mkv +王莹-火辣辣的大东北,http://em.21dtv.com/songs/60119827.mkv +豫剧-黄连苦胆味难分,http://em.21dtv.com/songs/60134618.mkv +[Group] +groupName=十六万歌曲MV等 - 95 +京剧-黄连苦胆味难分,http://em.21dtv.com/songs/60021977.mkv +尤国通-黑脸汉子守南盐,http://em.21dtv.com/songs/60104980.mkv +龙飘飘-欢乐歌声满人间,http://em.21dtv.com/songs/60064333.mkv +阳光天使-欢乐歌声处处飘,http://em.21dtv.com/songs/60072024.mkv +毛宁+杨钰莹-欢乐从这里升起,http://em.21dtv.com/songs/60091545.mkv +乌兰托娅-火了草原火了爱,http://em.21dtv.com/songs/60130040.mkv +姚鸣-回来吧我的爱人,http://em.21dtv.com/songs/60022149.mkv +姚成骏-回来吧我的爱人,http://em.21dtv.com/songs/60063257.mkv +乌兰齐齐格-呼伦贝尔的冬天,http://em.21dtv.com/songs/60066031.mkv +胡斌-呼伦贝尔大草原,http://em.21dtv.com/songs/60127302.mkv +韩婷-呼伦贝尔大草原,http://em.21dtv.com/songs/60086599.mkv +乌兰托娅-呼伦贝尔大草原,http://em.21dtv.com/songs/60021162.mkv +降央卓玛-呼伦贝尔大草原,http://em.21dtv.com/songs/60021161.mkv +德德玛-呼伦贝尔大草原,http://em.21dtv.com/songs/60021160.mkv +布仁巴雅尔-呼伦贝尔大草原,http://em.21dtv.com/songs/60021159.mkv +宇海文+娜日-呼伦贝尔大草原,http://em.21dtv.com/songs/60069468.mkv +祁隆-火了爱,http://em.21dtv.com/songs/60113911.mkv +林志颖-何苦这样伤我心(演唱会)(无原唱),http://em.21dtv.com/songs/60020358.mkv +孙晓雨-花开只为等你来,http://em.21dtv.com/songs/60099196.mkv +歌一生-花开只等你来采,http://em.21dtv.com/songs/60132660.mkv +李草青青+肖玄-何苦要等下辈子,http://em.21dtv.com/songs/60020355.mkv +雷龙-花开花谢花满天,http://em.21dtv.com/songs/60123351.mkv +黄馨可-花开花谢花满天,http://em.21dtv.com/songs/60075846.mkv +雷龙-花开花谢花满天(演唱会),http://em.21dtv.com/songs/60021433.mkv +徐方-花开花谢都想你,http://em.21dtv.com/songs/60086606.mkv +望海高歌-花开花落都爱你,http://em.21dtv.com/songs/60131486.mkv +群星-花开富贵一起来,http://em.21dtv.com/songs/60075845.mkv +巧千金-花开富贵一起来,http://em.21dtv.com/songs/60075844.mkv +八大巨星-花开富贵雄鸡唱,http://em.21dtv.com/songs/60075843.mkv +茅原实里-会いたかった空,http://em.21dtv.com/songs/60112177.mkv +卓依婷-欢聚一堂_欢聚,http://em.21dtv.com/songs/60087474.mkv +郭炳坚-黄金万两贺新年,http://em.21dtv.com/songs/60075901.mkv +吴依琳-合家团圆过新年,http://em.21dtv.com/songs/60075708.mkv +魏依曼+牛欣欣-合家团圆过新年,http://em.21dtv.com/songs/60020307.mkv +张芝明-好酒贪杯谁英雄,http://em.21dtv.com/songs/60085375.mkv +麦兜-火鸡浓烈的滋味,http://em.21dtv.com/songs/60083095.mkv +佚名-好久没有梦到你,http://em.21dtv.com/songs/60020068.mkv +欧阳菲菲-好久没有梦到你(无原唱),http://em.21dtv.com/songs/60020067.mkv +李元棠-花季里的一场雨,http://em.21dtv.com/songs/60104193.mkv +冷漠-怀旧金曲大联唱,http://em.21dtv.com/songs/60067082.mkv +张学友-欢聚欢笑每一刻,http://em.21dtv.com/songs/60021736.mkv +阿牛-好酒好肉好朋友,http://em.21dtv.com/songs/60131924.mkv +童唱-何家公鸡何家猜,http://em.21dtv.com/songs/60020349.mkv +林忆莲-回家对着你妈妈(演唱会),http://em.21dtv.com/songs/60022122.mkv +德龙-回家的感觉真好,http://em.21dtv.com/songs/60125586.mkv +孙俪心-回家的感觉真好,http://em.21dtv.com/songs/60094049.mkv +闫旭-回家的感觉真好,http://em.21dtv.com/songs/60072043.mkv +刘嘉亮-好久不见的朋友(演唱会),http://em.21dtv.com/songs/60020060.mkv +苗苗-红军阿哥慢慢走,http://em.21dtv.com/songs/60085194.mkv +One Direction-History,http://em.21dtv.com/songs/60119170.mkv +JUSTIN MOORE-how i got to be this way,http://em.21dtv.com/songs/60002374.mkv +金小曦-High到极限,http://em.21dtv.com/songs/60127497.mkv +张鹤-海河在我心中流,http://em.21dtv.com/songs/60105884.mkv +张清芳-好好照顾你甲己,http://em.21dtv.com/songs/60020041.mkv +甜美真-黄河之北是故乡,http://em.21dtv.com/songs/60064341.mkv +八大巨星-花好月圆玉兔到,http://em.21dtv.com/songs/60075836.mkv +徐秋菊+王映楼-呵嗨一声歌成河,http://em.21dtv.com/songs/60020279.mkv +马浚伟-好好拥抱一个人,http://em.21dtv.com/songs/60093514.mkv +周强-黄河原本并不黄,http://em.21dtv.com/songs/60021913.mkv +王佑茜+尹子-欢欢喜喜中国年,http://em.21dtv.com/songs/60086608.mkv +小萍萍-欢欢喜喜过新年,http://em.21dtv.com/songs/60038414.mkv +群星-欢欢喜喜过大年,http://em.21dtv.com/songs/60021732.mkv +Welldone Potato+Sol Ji-后悔先前对她好,http://em.21dtv.com/songs/60111663.mkv +八大巨星-虎虎生威财运来,http://em.21dtv.com/songs/60075829.mkv +蒋大为-黄河牵着我的手,http://em.21dtv.com/songs/60021904.mkv +东方快车-红红青春敲呀敲(无原唱),http://em.21dtv.com/songs/60020855.mkv +罗帅-后悔没有珍惜你,http://em.21dtv.com/songs/60134075.mkv +安涛-话还没有说出口,http://em.21dtv.com/songs/60021626.mkv +八大巨星-和和美美银蛇舞,http://em.21dtv.com/songs/60075717.mkv +刘明辉-黄昏里的老男孩,http://em.21dtv.com/songs/60081093.mkv +小非凡-花红开遍凯旋门,http://em.21dtv.com/songs/60089249.mkv +小非凡-红花开遍凯旋门,http://em.21dtv.com/songs/60020863.mkv +苏富权-荷花湖中相思浓,http://em.21dtv.com/songs/60072001.mkv +张津涤-好好和你在一起,http://em.21dtv.com/songs/60109314.mkv +郭涛-红红火火总是年,http://em.21dtv.com/songs/60075773.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-红红火火过新年,http://em.21dtv.com/songs/60075772.mkv +乔军-红红火火大中华,http://em.21dtv.com/songs/60020854.mkv +刘晶-红红火火的日子(演唱会),http://em.21dtv.com/songs/60085191.mkv +陈小虎-红红火火唱起来,http://em.21dtv.com/songs/60123295.mkv +望海高歌-红火火的石榴花,http://em.21dtv.com/songs/60119637.mkv +大庆小芳-后悔当初没买房,http://em.21dtv.com/songs/60135080.mkv +王丽达-红花翠竹摇篮曲,http://em.21dtv.com/songs/60020859.mkv +江美琪-挥霍爱人的耐性,http://em.21dtv.com/songs/60022061.mkv +水仙子组合-洪湖岸边是我家,http://em.21dtv.com/songs/60118737.mkv +付春霞-汉宫 昭君出塞,http://em.21dtv.com/songs/60128763.mkv +付春霞-汉宫·昭君出塞,http://em.21dtv.com/songs/60126587.mkv +杨洪基-回故乡的小路上,http://em.21dtv.com/songs/60091403.mkv +马旭东-画个圈圈诅咒你,http://em.21dtv.com/songs/60085212.mkv +汪苏泷-还给你一些孤单,http://em.21dtv.com/songs/60121858.mkv +周少伟-湖光美景叹情缘,http://em.21dtv.com/songs/60114453.mkv +郑知文-恨过的心流着泪,http://em.21dtv.com/songs/60114131.mkv +肖晓庆-好歌唱响好时代,http://em.21dtv.com/songs/60106205.mkv +杭天琪-好歌唱给好人听,http://em.21dtv.com/songs/60091417.mkv +谢佳佳-好歌唱出幸福来,http://em.21dtv.com/songs/60020001.mkv +万山红-海风阵阵愁煞人,http://em.21dtv.com/songs/60019723.mkv +至上励合-和风说话的孩子(演唱会),http://em.21dtv.com/songs/60020407.mkv +张秀卿-海风海涌海茫茫,http://em.21dtv.com/songs/60019722.mkv +Flashe-Hey You,http://em.21dtv.com/songs/60106532.mkv +As One-Hey Ya!,http://em.21dtv.com/songs/60121213.mkv +叶蓓-花儿银基一帮行,http://em.21dtv.com/songs/60087522.mkv +钟伟强+毕夏-Hey Jude,http://em.21dtv.com/songs/60116427.mkv +宋孟君-HEY GUY,http://em.21dtv.com/songs/60094461.mkv +Take That-Hey Boy,http://em.21dtv.com/songs/60117496.mkv +青山-花儿像人人像花,http://em.21dtv.com/songs/60021353.mkv +谢雷+刘明珠-花儿像人人像花(演唱会),http://em.21dtv.com/songs/60021352.mkv +王强-花儿恋上忘情草,http://em.21dtv.com/songs/60021339.mkv +刘晶-hello新年,http://em.21dtv.com/songs/60110027.mkv +左佳-HELLO B,http://em.21dtv.com/songs/60110170.mkv +卓依婷-花儿娇媚蝶儿采,http://em.21dtv.com/songs/60021337.mkv +雷佳-好儿好女好江山(HD),http://em.21dtv.com/songs/10012835.mkv +雷佳-好儿好女好江山,http://em.21dtv.com/songs/60109000.mkv +雷佳-好儿好女好江山,http://em.21dtv.com/songs/60097836.mkv +王强-花儿爱上忘情草,http://em.21dtv.com/songs/60021334.mkv +洪卓立-回到最爱的那天,http://em.21dtv.com/songs/60111236.mkv +林志炫-回到相爱的地方,http://em.21dtv.com/songs/60022095.mkv +卜学亮-轰动武林一首歌,http://em.21dtv.com/songs/60097864.mkv +周燕君-红灯闪过是绿灯,http://em.21dtv.com/songs/60113345.mkv +孙亚军-红灯闪过是绿灯,http://em.21dtv.com/songs/60066027.mkv +赵传-很多人像我一样(演唱会),http://em.21dtv.com/songs/60020637.mkv +郭凤女-魂断蓝桥之殉情,http://em.21dtv.com/songs/60022334.mkv +梁汉文-蝴蝶来过这世界,http://em.21dtv.com/songs/60021255.mkv +林正-回到开始那一天,http://em.21dtv.com/songs/60135438.mkv +谢顺福-轰动江湖黑狗兄,http://em.21dtv.com/songs/60020740.mkv +JOHN WAITE-how did i get by without you,http://em.21dtv.com/songs/60002367.mkv +小爱-红豆红豆你可知,http://em.21dtv.com/songs/60101330.mkv +陈振云-蝴蝶飞不过沧海,http://em.21dtv.com/songs/60021247.mkv +苗小青-海的对岸有个你,http://em.21dtv.com/songs/60096447.mkv +南方二重唱-红豆词2000,http://em.21dtv.com/songs/60097839.mkv +枫舞+相容-化蝶伴你双双飞,http://em.21dtv.com/songs/60111201.mkv +晓依+枫舞-化蝶伴你双双飞,http://em.21dtv.com/songs/60098418.mkv +佚名-海岛冰轮初转腾,http://em.21dtv.com/songs/60019710.mkv +戏曲-海岛冰轮初转胜,http://em.21dtv.com/songs/60089307.mkv +杨五琴-蝴蝶不懂花的泪,http://em.21dtv.com/songs/60119687.mkv +飞乖+淡然-红尘之中相爱过,http://em.21dtv.com/songs/60098936.mkv +龙梅子-红尘自有痴情人,http://em.21dtv.com/songs/60128655.mkv +郑东-红尘有你不寂寞,http://em.21dtv.com/songs/60128469.mkv +东方依依+曹越-红尘有你不寂寞,http://em.21dtv.com/songs/60114967.mkv +MICHAEL BUBLE-how can you mend a broken heart,http://em.21dtv.com/songs/60073356.mkv +BEE GEES-how can you mend a broken hear,http://em.21dtv.com/songs/60002358.mkv +ALICIA KEYS-how come you dont call me,http://em.21dtv.com/songs/60073357.mkv +童唱-火车向着韶山跑,http://em.21dtv.com/songs/60022418.mkv +红弈-和春天一路同行,http://em.21dtv.com/songs/60134064.mkv +王建杰-行船人的纯情曲,http://em.21dtv.com/songs/60079823.mkv +江蕙-怀春曲,http://em.21dtv.com/songs/60116096.mkv +雨露-红尘路上拥有你,http://em.21dtv.com/songs/60096538.mkv +杨宗纬-红尘来去一场梦,http://em.21dtv.com/songs/60113676.mkv +巫启贤-红尘来去一场梦,http://em.21dtv.com/songs/60020761.mkv +高胜美-红尘来去一场梦,http://em.21dtv.com/songs/60020760.mkv +黄睿铭-还差两个女朋友,http://em.21dtv.com/songs/60104846.mkv +望海高歌-红尘劫,http://em.21dtv.com/songs/60113596.mkv +西岛隆弘-花cherie,http://em.21dtv.com/songs/60135724.mkv +蘑菇兄弟-火车火车就要来,http://em.21dtv.com/songs/60120937.mkv +艾尼瓦尔江-会唱歌的老艾尼,http://em.21dtv.com/songs/60117997.mkv +何东-红尘本是一场戏,http://em.21dtv.com/songs/60120305.mkv +何东-红尘本是一场戏,http://em.21dtv.com/songs/60119254.mkv +TONI BRAXTON-how can an angel break my hear,http://em.21dtv.com/songs/60002352.mkv +农夫-喝采+456wing(演唱会),http://em.21dtv.com/songs/60020283.mkv +费玉清-恨不钟情在当年,http://em.21dtv.com/songs/60020695.mkv +吴莺音-恨不钟情在当年(演唱会),http://em.21dtv.com/songs/60020694.mkv +林翠萍-何必在乎你是谁,http://em.21dtv.com/songs/60088117.mkv +陆翠萍-何必用钱谈感情,http://em.21dtv.com/songs/60090283.mkv +龚月-何必西田万里遥,http://em.21dtv.com/songs/60075709.mkv +陶建阿成-哈巴雪山的太阳,http://em.21dtv.com/songs/60135953.mkv +刘锡明-恨不相逢在那时,http://em.21dtv.com/songs/60020693.mkv +李香兰-恨不相逢未嫁时,http://em.21dtv.com/songs/60020692.mkv +邓丽君-恨不相逢未嫁时,http://em.21dtv.com/songs/60020691.mkv +叶丽仪-恨不相逢未嫁时(演唱会),http://em.21dtv.com/songs/60020690.mkv +林俊彦-何必为钱失志气(无原唱),http://em.21dtv.com/songs/60020329.mkv +韩宝仪-何必为钱来呕气,http://em.21dtv.com/songs/60020328.mkv +杨千嬅-好不容易遇见爱,http://em.21dtv.com/songs/60107811.mkv +杨千桦-好不容易遇见爱,http://em.21dtv.com/songs/60105999.mkv +费玉清-何必旁人来说煤,http://em.21dtv.com/songs/60089485.mkv +潘秀琼-何必旁人来说媒,http://em.21dtv.com/songs/60020325.mkv +费玉清-何必旁人来说媒,http://em.21dtv.com/songs/60020324.mkv +李盈萱-何必留恋夜都市(无原唱),http://em.21dtv.com/songs/60095623.mkv +孟庭苇-和饼干说话的人,http://em.21dtv.com/songs/60020403.mkv +李勇-海边的情人椅语,http://em.21dtv.com/songs/60085160.mkv +TENSION-跟着月亮慢慢走,http://em.21dtv.com/songs/60018665.mkv +戴佩妮-光着我的脚ㄚ子,http://em.21dtv.com/songs/60064266.mkv +DIMENSION-隔着四万秒空间,http://em.21dtv.com/songs/60123459.mkv +徐安春-贵州难忘的故乡,http://em.21dtv.com/songs/60104154.mkv +唐彪+陈前+许岚岚+张朝夕-广州美丽的花城,http://em.21dtv.com/songs/60019344.mkv +崔伟亮-赶着马车去北京,http://em.21dtv.com/songs/60069404.mkv +宇海文+娜日-赶着马车去北京,http://em.21dtv.com/songs/60067016.mkv +吴克群-该怎么办怎么办,http://em.21dtv.com/songs/60112569.mkv +李文+刘华-公子何必多夸口,http://em.21dtv.com/songs/60018717.mkv +苏勒亚其其格-歌在飞(替换),http://em.21dtv.com/songs/60134157.mkv +张含韵-公主的魔法项链,http://em.21dtv.com/songs/60018706.mkv +尹光+胡美仪-宫主刁蛮驸马骄(戏曲),http://em.21dtv.com/songs/60092541.mkv +尹光+李淑勤-宫主刁蛮驸马骄(演唱会),http://em.21dtv.com/songs/60018731.mkv +孙俪-感知成长的神奇,http://em.21dtv.com/songs/60104034.mkv +李志-关于郑州的记忆,http://em.21dtv.com/songs/60127008.mkv +李志-关于郑州的记忆,http://em.21dtv.com/songs/60082977.mkv +刘佳轩-甘有真心爱过我,http://em.21dtv.com/songs/60017881.mkv +龙千玉-甘犹原真心对待,http://em.21dtv.com/songs/60079388.mkv +高林生-过眼烟云也留情,http://em.21dtv.com/songs/60019537.mkv +余润泽+肖夏菲-乖羊羊与灰灰狼,http://em.21dtv.com/songs/60108305.mkv +余润泽+肖夏非-乖羊羊与灰灰狼,http://em.21dtv.com/songs/60106605.mkv +陈雷+杨瀞-甘愿一生等待你,http://em.21dtv.com/songs/60017896.mkv +罗映庭-关于温柔的消息,http://em.21dtv.com/songs/60019229.mkv +一绫+钱澄-甘愿为你来牺牲,http://em.21dtv.com/songs/60064216.mkv +郑嘉颖-关于我们的爱情(无原唱),http://em.21dtv.com/songs/60019233.mkv +佚名-giving you the best that i got,http://em.21dtv.com/songs/60001910.mkv +白致瑶-高原上的萨日朗,http://em.21dtv.com/songs/60117089.mkv +火狼-观音菩萨保佑歌,http://em.21dtv.com/songs/60129365.mkv +老猫-哥已经爱上你啦,http://em.21dtv.com/songs/60075490.mkv +央金兰泽-高原红,http://em.21dtv.com/songs/60109253.mkv +高原-高原高唱天外天,http://em.21dtv.com/songs/60018240.mkv +张寒-哥一定要出去闯,http://em.21dtv.com/songs/60075489.mkv +刘依纯-关于爱情的问题,http://em.21dtv.com/songs/60082975.mkv +陈中+邱芸子-甘愿爱你是错误,http://em.21dtv.com/songs/60095979.mkv +黄韵玲-关于爱的两三事,http://em.21dtv.com/songs/60019219.mkv +刘苓-感谢这一生有你,http://em.21dtv.com/songs/60075464.mkv +马仕健-感谢政府感谢党,http://em.21dtv.com/songs/60081114.mkv +高峰-搁想也是无卡诅,http://em.21dtv.com/songs/60018345.mkv +江蕙-搁想也是无彩工,http://em.21dtv.com/songs/60095737.mkv +佚名-搁想也是无彩工,http://em.21dtv.com/songs/60018344.mkv +佚名-搁想也是无彩工(无原唱),http://em.21dtv.com/songs/60018343.mkv +杨爽-感谢有你好兄弟,http://em.21dtv.com/songs/60127094.mkv +邓志驹-光绪王夜祭珍妃,http://em.21dtv.com/songs/60019319.mkv +马德龙-感谢我的好兄弟,http://em.21dtv.com/songs/60128601.mkv +音乐走廊+歌一生-感谢让我遇见你,http://em.21dtv.com/songs/60130886.mkv +安东阳+张怡诺-甘心情愿爱着你,http://em.21dtv.com/songs/60117426.mkv +彭羚-感谢你用心爱我,http://em.21dtv.com/songs/60018095.mkv +张书姚+陈诗妮+张阳-恭喜你呀恭喜你,http://em.21dtv.com/songs/60118550.mkv +曾玮中-感谢你有爱过我,http://em.21dtv.com/songs/60135332.mkv +黄仁清-感谢你大小财神(无原唱),http://em.21dtv.com/songs/60018088.mkv +舞曲-故乡恋情+海鸥(吉鲁巴),http://em.21dtv.com/songs/60091915.mkv +彭炽权-光绪皇夜祭珍妃,http://em.21dtv.com/songs/60019318.mkv +大AL-光绪皇夜祭珍妃(演唱会),http://em.21dtv.com/songs/60019317.mkv +尹光-光绪皇夜祭珍妃,http://em.21dtv.com/songs/60064264.mkv +陈小汉+李敏华-光绪皇情暖珍妃(戏曲),http://em.21dtv.com/songs/60093419.mkv +薛家燕+吕珊+苏珊-恭喜恭喜贺新年,http://em.21dtv.com/songs/60018753.mkv +牛欣欣+刘姝辰+张翘-恭喜恭喜恭喜你,http://em.21dtv.com/songs/60075538.mkv +张郎-恭喜恭喜过大年,http://em.21dtv.com/songs/60125540.mkv +罗宁娜-赶墟归来啊哩哩,http://em.21dtv.com/songs/60088430.mkv +罗宁娜-赶嘘归来啊哩哩(演唱会),http://em.21dtv.com/songs/60017921.mkv +古巨基-给幸福一个机会,http://em.21dtv.com/songs/60018599.mkv +薛家燕-恭喜发财迎新春,http://em.21dtv.com/songs/60093129.mkv +张德兰+区瑞强-恭喜发财迎新春,http://em.21dtv.com/songs/60018745.mkv +王雪晶+庄群诗-恭喜发财发大财,http://em.21dtv.com/songs/60088334.mkv +鲍国-故乡的路,http://em.21dtv.com/songs/60102951.mkv +四千金-恭喜大家新年好,http://em.21dtv.com/songs/60075534.mkv +群星-恭喜大家新年好,http://em.21dtv.com/songs/60018736.mkv +佚名-恭喜大家过新年,http://em.21dtv.com/songs/60018735.mkv +牛欣欣+周张弛+等-恭喜大家过新年,http://em.21dtv.com/songs/60064242.mkv +李春丽-故乡的红砖古厝,http://em.21dtv.com/songs/60122863.mkv +易欣-给我最爱的女子,http://em.21dtv.com/songs/60075517.mkv +茼蒿LALA队-跟我一起哇哇叫,http://em.21dtv.com/songs/60018642.mkv +朱启笙-跟我一起去冒险,http://em.21dtv.com/songs/60135346.mkv +玉珍+罗布仁青+阿呗平措-跟我一起去拉萨,http://em.21dtv.com/songs/60128212.mkv +林志颖-给我一个心爱的,http://em.21dtv.com/songs/60018587.mkv +林志颖-给我一个心爱的(演唱会),http://em.21dtv.com/songs/60018586.mkv +佚名-给我一点真的爱,http://em.21dtv.com/songs/60018570.mkv +彭羚-给我一段仁爱路,http://em.21dtv.com/songs/60018571.mkv +姚军-给我幸福的女人,http://em.21dtv.com/songs/60068276.mkv +邵阳-怪我想的太完美,http://em.21dtv.com/songs/60102790.mkv +余天-给我温情吧爱人,http://em.21dtv.com/songs/60089618.mkv +龙飘飘-给我温情吧爱人,http://em.21dtv.com/songs/60018559.mkv +张萌萌-给我生个儿子吧,http://em.21dtv.com/songs/60067033.mkv +佚名-给我你最真的心,http://em.21dtv.com/songs/60018554.mkv +周蕙-该忘了你对不对,http://em.21dtv.com/songs/60017820.mkv +杜忻恬-该忘记的忘不记,http://em.21dtv.com/songs/60125730.mkv +玖月奇迹-赶圩归来啊哩哩,http://em.21dtv.com/songs/60082936.mkv +张信哲-跟我共对爱到老,http://em.21dtv.com/songs/60092567.mkv +庞龙-给我的挚友火天,http://em.21dtv.com/songs/60018543.mkv +林志颖-跟我到海边转转,http://em.21dtv.com/songs/60091476.mkv +自由派对-怪我爱得太狂野,http://em.21dtv.com/songs/60019183.mkv +自由派对-怪我爱得太狂野(演唱会),http://em.21dtv.com/songs/60069431.mkv +张谦卑-怪我爱的太狂野,http://em.21dtv.com/songs/60068284.mkv +林昕阳-1000个太阳,http://em.21dtv.com/songs/60102394.mkv +月星海-管他谁是谁的谁,http://em.21dtv.com/songs/60085154.mkv +NBC-管它什么的安排,http://em.21dtv.com/songs/60019259.mkv +双星-国泰民安喜洋洋,http://em.21dtv.com/songs/60075617.mkv +吴宇凯-甘通搁再搏落去(无原唱),http://em.21dtv.com/songs/60017870.mkv +佚名-got to get you into my life,http://em.21dtv.com/songs/60002004.mkv +衡越-跪天跪地跪亲娘,http://em.21dtv.com/songs/60068295.mkv +彭羚-给天边最爱的人,http://em.21dtv.com/songs/60018525.mkv +赵真-工体北路的忧伤,http://em.21dtv.com/songs/60128430.mkv +本兮-告诉自己忘了他,http://em.21dtv.com/songs/60086561.mkv +卓依婷-鼓声迎来万年红,http://em.21dtv.com/songs/60086568.mkv +吴依琳-鼓声迎来万年红,http://em.21dtv.com/songs/60075568.mkv +牛欣欣-鼓声迎来万年红,http://em.21dtv.com/songs/60019016.mkv +李宗盛-给所有单身女子,http://em.21dtv.com/songs/60018523.mkv +梁雁翎-该是休息的时候,http://em.21dtv.com/songs/60017816.mkv +谭艺萱-告诉我你的心情,http://em.21dtv.com/songs/60064226.mkv +周传雄-告诉我你不爱我,http://em.21dtv.com/songs/60018308.mkv +李成-孤身天涯任我行,http://em.21dtv.com/songs/60102338.mkv +醉美-哥是陶壶妹是茶,http://em.21dtv.com/songs/60115456.mkv +庄冬昕-怪叔叔跳古怪舞,http://em.21dtv.com/songs/60069430.mkv +京剧-干洒热血写春秋,http://em.21dtv.com/songs/60090528.mkv +于魁智-甘洒热血写春秋,http://em.21dtv.com/songs/60017865.mkv +丁紫-告诉你我没有错,http://em.21dtv.com/songs/60075478.mkv +谢有才-告诉你我很爱你,http://em.21dtv.com/songs/60063172.mkv +佚名-告诉你爱的时候,http://em.21dtv.com/songs/60018290.mkv +刘玮-桂山美景四方传,http://em.21dtv.com/songs/60019421.mkv +吕金蔓-赶牲灵三十里铺,http://em.21dtv.com/songs/60017920.mkv +陈诺-高山流水猎人魂,http://em.21dtv.com/songs/60082940.mkv +刘文正-告诉罗娜我爱她,http://em.21dtv.com/songs/60018288.mkv +五洋-隔世离空的红颜,http://em.21dtv.com/songs/60018434.mkv +陈星+松青-该是回家的时候,http://em.21dtv.com/songs/60017814.mkv +纳兰珠儿-格桑花儿几时开,http://em.21dtv.com/songs/60071952.mkv +佚名-歌声飞出心窝窝,http://em.21dtv.com/songs/60018384.mkv +陈美凤-甘说多情也有错,http://em.21dtv.com/songs/60017869.mkv +钟嘉欣-过山车,http://em.21dtv.com/songs/60102833.mkv +陈一凡-姑苏城外的姑娘,http://em.21dtv.com/songs/60086564.mkv +佚名-隔山唱歌山答应,http://em.21dtv.com/songs/60018432.mkv +琪琪格-歌声不断酒不断,http://em.21dtv.com/songs/60064232.mkv +琪琪格-歌声不断酒不断(舞曲版),http://em.21dtv.com/songs/60064231.mkv +童可可-个人也能好好过,http://em.21dtv.com/songs/60082950.mkv +黄梅戏-果然喜从天上降,http://em.21dtv.com/songs/60090350.mkv +佚名-果然喜从天上降,http://em.21dtv.com/songs/60019463.mkv +佚名-工人阶级硬骨头,http://em.21dtv.com/songs/60018679.mkv +越剧-官人好比天上月,http://em.21dtv.com/songs/60089494.mkv +王滨梅-官人好比天上月,http://em.21dtv.com/songs/60019251.mkv +Kis My Ft2-Gravity,http://em.21dtv.com/songs/60134727.mkv +王兀-归期,http://em.21dtv.com/songs/60120749.mkv +陈瑞-给情人的摇篮曲,http://em.21dtv.com/songs/60075508.mkv +吕方-给情人的摇篮曲,http://em.21dtv.com/songs/60018520.mkv +王键-感情没有对或错,http://em.21dtv.com/songs/60104323.mkv +办桌二人组-感情抹倘对头来,http://em.21dtv.com/songs/60018033.mkv +爽子-过去了就过去吧,http://em.21dtv.com/songs/60075628.mkv +佚名-过去的已成过去,http://em.21dtv.com/songs/60019520.mkv +陈晓东-感情不是一盏灯,http://em.21dtv.com/songs/60017996.mkv +蜜蜂少女队-GPS 密封令,http://em.21dtv.com/songs/60135716.mkv +Mat Kearney+filous-Goodbye,http://em.21dtv.com/songs/60134755.mkv +清水翔太-GOODBYE,http://em.21dtv.com/songs/60119779.mkv +Who Is Fancy-Goodbye,http://em.21dtv.com/songs/60112472.mkv +潘嘉丽-Goodbye,http://em.21dtv.com/songs/60102496.mkv +栾克勇+徐筱宁-Go Go哥哥,http://em.21dtv.com/songs/60125806.mkv +周艳泓-跟你在一起真好,http://em.21dtv.com/songs/60018619.mkv +泽翁-姑娘走过的地方,http://em.21dtv.com/songs/60088220.mkv +高原红阿姆-姑娘走过的地方,http://em.21dtv.com/songs/60018969.mkv +孙耀威-跟你要好一辈子,http://em.21dtv.com/songs/60018618.mkv +野狼-姑娘笑了我醉了,http://em.21dtv.com/songs/60075552.mkv +高洪章-管你喜欢不喜欢(演唱会),http://em.21dtv.com/songs/60061223.mkv +皓宇-姑娘我要嫁给你,http://em.21dtv.com/songs/60106167.mkv +佚名-过年我不能回家,http://em.21dtv.com/songs/60019506.mkv +蒋婴+香山飘红叶-给你所有的温柔,http://em.21dtv.com/songs/60134187.mkv +佚名-姑娘生来爱唱歌,http://em.21dtv.com/songs/60018954.mkv +宋祖英-姑娘生来爱唱歌,http://em.21dtv.com/songs/60018953.mkv +白凯南-过年是个体力活,http://em.21dtv.com/songs/60131695.mkv +佚名-姑娘十八一朵花,http://em.21dtv.com/songs/60018958.mkv +刘韵-姑娘十八一朵花(演唱会),http://em.21dtv.com/songs/60018957.mkv +佚名-姑娘十八似花骄,http://em.21dtv.com/songs/60018956.mkv +罗嘉良+宣萱-姑娘十八似花娇,http://em.21dtv.com/songs/60018955.mkv +储毅-姑娘请你嫁给我,http://em.21dtv.com/songs/60108313.mkv +马文吉-姑娘请你嫁给我,http://em.21dtv.com/songs/60018951.mkv +赵小南-姑娘请你把我爱,http://em.21dtv.com/songs/60114098.mkv +望海高歌-姑娘你在我心上,http://em.21dtv.com/songs/60119636.mkv +康康-管你妈妈嫁给谁,http://em.21dtv.com/songs/60019257.mkv +刘德华-给你们的一封信,http://em.21dtv.com/songs/60018505.mkv +常红刚-过年了我想回家,http://em.21dtv.com/songs/60130289.mkv +龙彪-过年回家看爸妈,http://em.21dtv.com/songs/60133149.mkv +阿牛+童欣-姑娘姑娘我爱你,http://em.21dtv.com/songs/60097869.mkv +冯海龙-姑娘姑娘你真美,http://em.21dtv.com/songs/60122506.mkv +闫凤梅-姑娘姑娘你真美,http://em.21dtv.com/songs/60100532.mkv +CITY魅-该难过的人是他,http://em.21dtv.com/songs/60086555.mkv +江蕙-孤女的愿望组曲,http://em.21dtv.com/songs/60091587.mkv +韦小波-姑娘等我回家乡,http://em.21dtv.com/songs/60115520.mkv +独脚神鹰-姑娘动了我的心,http://em.21dtv.com/songs/60018944.mkv +佚名-工农兵联合起来,http://em.21dtv.com/songs/60018678.mkv +牛欣欣+周张弛-挂满星星的夜空,http://em.21dtv.com/songs/60075584.mkv +群星-光明,http://em.21dtv.com/songs/60129494.mkv +佚名-get me to the church on time,http://em.21dtv.com/songs/60001852.mkv +韩庚-给陌生人的情书,http://em.21dtv.com/songs/60075502.mkv +安又琪-给陌生人的情歌,http://em.21dtv.com/songs/60116724.mkv +佚名-革命青年进行曲,http://em.21dtv.com/songs/60018409.mkv +天堂飘雪-哥妹情话说不完,http://em.21dtv.com/songs/60081162.mkv +KYLIE MINOGUE-give me just a little more t,http://em.21dtv.com/songs/60001906.mkv +何韵诗-光明会+艳光四射(演唱会),http://em.21dtv.com/songs/60019300.mkv +洛奇-哥们干了这一杯,http://em.21dtv.com/songs/60112826.mkv +朱跃明-鼓浪屿芙蓉出水,http://em.21dtv.com/songs/60061220.mkv +满江-归来,http://em.21dtv.com/songs/60118753.mkv +蔡华君-古廊桥乡香菇城,http://em.21dtv.com/songs/60064251.mkv +石小倩-过了今夜又黎明,http://em.21dtv.com/songs/60102579.mkv +Back Number-高岭の花子さん,http://em.21dtv.com/songs/60123446.mkv +陈雅森-高粱红,http://em.21dtv.com/songs/60109710.mkv +卡拉OK-高梁地里会姑娘,http://em.21dtv.com/songs/60087504.mkv +花鼓戏-赶考之事对你讲,http://em.21dtv.com/songs/60090175.mkv +任雪晴-给咖啡加点糖吧,http://em.21dtv.com/songs/60090572.mkv +刘维+杨树林-感觉自己萌萌哒,http://em.21dtv.com/songs/60134944.mkv +刘维+杨树林-感觉自己萌萌哒,http://em.21dtv.com/songs/60133418.mkv +贾玲+刘维-感觉自己萌萌哒,http://em.21dtv.com/songs/60110552.mkv +欢子-感觉说没就没了,http://em.21dtv.com/songs/60127136.mkv +罗文-感激说话千百句(演唱会),http://em.21dtv.com/songs/60017966.mkv +佚名-管叫山河换新装,http://em.21dtv.com/songs/60019255.mkv +沈芯羽-公鸡母鸡向前走,http://em.21dtv.com/songs/60018683.mkv +戴爱玲-感觉对了就爱呦,http://em.21dtv.com/songs/60080110.mkv +吴国华+曹秀琴-高君保私探营房(戏曲),http://em.21dtv.com/songs/60092448.mkv +程欣-感觉不会再爱了,http://em.21dtv.com/songs/60106178.mkv +司文+丢丢-感觉不会再爱了,http://em.21dtv.com/songs/60085108.mkv +京剧-光辉照儿勇向前,http://em.21dtv.com/songs/60090523.mkv +储兰兰-光辉照儿永向前,http://em.21dtv.com/songs/60075601.mkv +佚名-光辉照儿永向前,http://em.21dtv.com/songs/60019290.mkv +张信哲-过火,http://em.21dtv.com/songs/60116777.mkv +佚名-桂花开放幸福来,http://em.21dtv.com/songs/60019409.mkv +张津涤-该恨还是该感谢,http://em.21dtv.com/songs/60132455.mkv +张海庆-共和国选择了你,http://em.21dtv.com/songs/60121660.mkv +群星-高歌一曲迎新年,http://em.21dtv.com/songs/60107950.mkv +卓依婷-高歌一曲迎新年,http://em.21dtv.com/songs/60107557.mkv +八大巨星-高歌一曲迎新年,http://em.21dtv.com/songs/60075470.mkv +高信-哥哥我爱上了你,http://em.21dtv.com/songs/60082946.mkv +欧姐-哥哥你别忘了我,http://em.21dtv.com/songs/60132655.mkv +甜美真+冰冰火-哥哥妹妹永相随,http://em.21dtv.com/songs/60085119.mkv +何应龙+孙语诺-哥哥妹妹要安慰,http://em.21dtv.com/songs/60075481.mkv +中国娃娃-哥哥妹妹采茶歌,http://em.21dtv.com/songs/60018319.mkv +王丽达-哥哥就要走天涯,http://em.21dtv.com/songs/60075480.mkv +于文华-哥哥就要去远方,http://em.21dtv.com/songs/60090501.mkv +PSY+泫雅-哥哥就是我的style,http://em.21dtv.com/songs/60069412.mkv +黄睿铭-光棍技术哪家强,http://em.21dtv.com/songs/60107376.mkv +杨洪基-滚滚长江东逝水,http://em.21dtv.com/songs/60019434.mkv +水晶乐坊-滚滚长江东逝水,http://em.21dtv.com/songs/60019433.mkv +孟文豪-滚滚长江东逝水,http://em.21dtv.com/songs/60019432.mkv +龚月-滚滚长江东逝去,http://em.21dtv.com/songs/60075614.mkv +玉面天使-哥哥别老把我猜[吉特巴舞曲版],http://em.21dtv.com/songs/60081120.mkv +玉面天使-哥哥别老把我猜[伦巴舞曲版],http://em.21dtv.com/songs/60081040.mkv +沁心小筑-孤芳独影有谁怜,http://em.21dtv.com/songs/60127160.mkv +LEANN RIMES-good friend and a glass of win,http://em.21dtv.com/songs/60001949.mkv +易丹丹-感恩我们在路上,http://em.21dtv.com/songs/60096085.mkv +赵泳鑫-GET OUT,http://em.21dtv.com/songs/60124520.mkv +金小曦-Get off,http://em.21dtv.com/songs/60127496.mkv +周琦-歌儿唱给俺家乡(演唱会),http://em.21dtv.com/songs/60018377.mkv +蔡琴-给电影人的情书,http://em.21dtv.com/songs/60018480.mkv +李玟-给电影人的情书(演唱会),http://em.21dtv.com/songs/60018479.mkv +尹春吉+阿筎那-给点阳光就灿烂,http://em.21dtv.com/songs/60125448.mkv +崔健+谭维维+杨乐-光冻,http://em.21dtv.com/songs/60119472.mkv +洪文斌-感动天也感动你,http://em.21dtv.com/songs/60017945.mkv +吴克群-孤独是会上瘾的,http://em.21dtv.com/songs/60132285.mkv +吴克群-孤独是会上瘾的,http://em.21dtv.com/songs/60131249.mkv +游鸿明-孤单是会传染的,http://em.21dtv.com/songs/60018868.mkv +林一峰-刚点起烟车就来,http://em.21dtv.com/songs/60018142.mkv +林一峰-刚点起烟车就来(演唱会),http://em.21dtv.com/songs/60018141.mkv +蓝乐-孤单寂寞有点冷,http://em.21dtv.com/songs/60094277.mkv +湘东雨-孤单寂寞为了谁,http://em.21dtv.com/songs/60064247.mkv +刘晓春-孤独的夜晚有你,http://em.21dtv.com/songs/60062679.mkv +彩贝与海-孤岛电台之广州,http://em.21dtv.com/songs/60115930.mkv +朱其民-孤单的宫保鸡丁,http://em.21dtv.com/songs/60130395.mkv +廖志涛+史丹灵-歌唱盐洲红树林,http://em.21dtv.com/songs/60075496.mkv +韩延文-共唱一首同心曲,http://em.21dtv.com/songs/60018768.mkv +艾丽娅琪琪格-给草原打个电话,http://em.21dtv.com/songs/60132824.mkv +艾丽娅琪琪格-给草原打个电话,http://em.21dtv.com/songs/60129518.mkv +丁嘉林+张翘+江怡萱-歌唱新年新气象,http://em.21dtv.com/songs/60075495.mkv +蒙克-广场Style,http://em.21dtv.com/songs/60107185.mkv +高晋-国粹书雕誉中华,http://em.21dtv.com/songs/60134470.mkv +八大巨星-功成名就神猴笑,http://em.21dtv.com/songs/60075532.mkv +温博-歌唱二小放牛郎,http://em.21dtv.com/songs/60128182.mkv +碧瑶-歌唱二小放牛郎,http://em.21dtv.com/songs/60111325.mkv +杨昭+孙佳-歌唱二小放牛郎,http://em.21dtv.com/songs/60085123.mkv +佚名-歌唱二小放牛郎,http://em.21dtv.com/songs/60018363.mkv +胡毅-告别战友的时候,http://em.21dtv.com/songs/60116208.mkv +拒绝燃烧-告别只会惹我哭,http://em.21dtv.com/songs/60135303.mkv +古巨基-告别我的恋人们,http://em.21dtv.com/songs/60069411.mkv +群星-改变+你是唯一,http://em.21dtv.com/songs/60097862.mkv +陈威-隔壁卖花的阿英(无原唱),http://em.21dtv.com/songs/60018429.mkv +李冰-给不了你要的爱,http://em.21dtv.com/songs/60018473.mkv +张豪-给不了你的幸福,http://em.21dtv.com/songs/60064236.mkv +杨逸锋-给不了你的温柔,http://em.21dtv.com/songs/60085127.mkv +王心如-哥本哈根的童话,http://em.21dtv.com/songs/60018311.mkv +卡密儿+成云刚-敢不敢敢说敢当,http://em.21dtv.com/songs/60120392.mkv +农夫-广播道FANS杀人事件,http://em.21dtv.com/songs/60092331.mkv +苏永康-关不掉的收音机(演唱会),http://em.21dtv.com/songs/60082974.mkv +黄韵玲-关不掉的收音机,http://em.21dtv.com/songs/60019193.mkv +小北-敢爱敢恨的海洋,http://em.21dtv.com/songs/60126803.mkv +邓志驹-凤烛烧残泪未干,http://em.21dtv.com/songs/60017615.mkv +朱妍-风中飘落相思雨,http://em.21dtv.com/songs/60017514.mkv +刘德华-福这么远那么甜,http://em.21dtv.com/songs/60017705.mkv +印能法师-佛在灵山莫远求,http://em.21dtv.com/songs/60099832.mkv +小右-非主流说唱歌手,http://em.21dtv.com/songs/60125421.mkv +佚名-父子流浪三千里,http://em.21dtv.com/songs/60017739.mkv +伍佰-飞在风中的小雨,http://em.21dtv.com/songs/60016903.mkv +江蕙-飞在风中的小雨,http://em.21dtv.com/songs/60016902.mkv +龙千玉-飞在风中的小雨,http://em.21dtv.com/songs/60004124.mkv +佚名-风中的我对你说,http://em.21dtv.com/songs/60017499.mkv +郑智化-风在唱着一首歌,http://em.21dtv.com/songs/60063450.mkv +程璧-房总半岛最南端,http://em.21dtv.com/songs/60135619.mkv +周传雄-风雨中与你相守,http://em.21dtv.com/songs/60017438.mkv +灿烂阿龙-风也摇不醒的梦,http://em.21dtv.com/songs/60065967.mkv +杨乐-复眼,http://em.21dtv.com/songs/60119681.mkv +苹果园组合-飞鱼,http://em.21dtv.com/songs/60118871.mkv +朱咪咪-飞跃舞台+今晚夜(演唱会),http://em.21dtv.com/songs/60016896.mkv +张燕-凤阳是个好地方,http://em.21dtv.com/songs/60017614.mkv +佚名-风雨若停天就晴(无原唱),http://em.21dtv.com/songs/60017418.mkv +金婷婷-枫叶飘落的声音,http://em.21dtv.com/songs/60070689.mkv +巧千金-凤阳花鼓喜迎春,http://em.21dtv.com/songs/60017613.mkv +张德力-风雨过后是彩虹,http://em.21dtv.com/songs/60110195.mkv +谢艺-风雨过后见奇迹,http://em.21dtv.com/songs/60104439.mkv +八大巨星-肥羊带来太平年,http://em.21dtv.com/songs/60075343.mkv +刘明辉-疯一次,http://em.21dtv.com/songs/60122520.mkv +付辛博-分一半我的眼泪,http://em.21dtv.com/songs/60134872.mkv +南征北战-飞跃吧(HD),http://em.21dtv.com/songs/60130140.mkv +辛欣-放一百二十个心,http://em.21dtv.com/songs/60016745.mkv +佚名-飞向自己的天空,http://em.21dtv.com/songs/60016877.mkv +JS-飞向札幌的班机(演唱会),http://em.21dtv.com/songs/60082898.mkv +脱拉库-飞向阳光飞向你,http://em.21dtv.com/songs/60016875.mkv +肖遥+陈虹希-复兴 我的家乡,http://em.21dtv.com/songs/60129506.mkv +于金胜-放下是一种解脱,http://em.21dtv.com/songs/60114981.mkv +于金胜-放下是一种解脱,http://em.21dtv.com/songs/60114382.mkv +祁隆+于金胜-放下是一种解脱,http://em.21dtv.com/songs/60113913.mkv +马健涛-放下手机来爱我,http://em.21dtv.com/songs/60135997.mkv +柯以柔-飞向你的明信片,http://em.21dtv.com/songs/60016868.mkv +杨浩然-飞向梦想的天空,http://em.21dtv.com/songs/60121804.mkv +袁成杰-放心交给我爱情,http://em.21dtv.com/songs/60075328.mkv +刘君儿-福星拱照耀门庭,http://em.21dtv.com/songs/60092345.mkv +廖小旋-福星拱照耀门庭,http://em.21dtv.com/songs/60091024.mkv +八大巨星-福星高照财鼠到,http://em.21dtv.com/songs/60075418.mkv +群星-福星高照财神到,http://em.21dtv.com/songs/60017704.mkv +刘文正-飞翔飞翔我飞翔,http://em.21dtv.com/songs/60016863.mkv +吴李红-飞向大海的夜莺,http://em.21dtv.com/songs/60085081.mkv +王浩宇-飞向大地的流星,http://em.21dtv.com/songs/60112115.mkv +蓝冰-放我一个人生活,http://em.21dtv.com/songs/60016730.mkv +DJ舞曲-凤舞九天现场三,http://em.21dtv.com/songs/50000148.mkv +印能法师-佛陀在金殿等你,http://em.21dtv.com/songs/60099835.mkv +孟杨-佛坛处处水云间,http://em.21dtv.com/songs/60135110.mkv +BRITNEY SPEARS-from the bottom of my broken heart,http://em.21dtv.com/songs/60001808.mkv +张学友-分手总要在雨夜,http://em.21dtv.com/songs/60089270.mkv +方皓玟-分手总约在雨天,http://em.21dtv.com/songs/60104167.mkv +胡琳-分手总要在雨天,http://em.21dtv.com/songs/60097823.mkv +张学友-分手总要在雨天(演唱会),http://em.21dtv.com/songs/60017132.mkv +泳儿-分手总要在雨天(演唱会),http://em.21dtv.com/songs/60017131.mkv +张学友-分手总要再下雨,http://em.21dtv.com/songs/60087803.mkv +金莎-分手暂时不快乐,http://em.21dtv.com/songs/60017128.mkv +浩瀚-分手在那个秋天,http://em.21dtv.com/songs/60017126.mkv +浩瀚-分手在那个秋天(演唱会),http://em.21dtv.com/songs/60017125.mkv +明月微风-放手也是一种美,http://em.21dtv.com/songs/60133747.mkv +古慧慧-翻身又是一条龙,http://em.21dtv.com/songs/60016465.mkv +丁少华-分手以后做朋友(钢琴版),http://em.21dtv.com/songs/60097822.mkv +林阿林-浮世英魂穆桂英,http://em.21dtv.com/songs/60120674.mkv +姜沣-分手以后才明白,http://em.21dtv.com/songs/60085086.mkv +A-LIN-分手需要练习的,http://em.21dtv.com/songs/60017111.mkv +蔡小虎-放舍我你就不对,http://em.21dtv.com/songs/60016686.mkv +双星-风生水起好运黎,http://em.21dtv.com/songs/60075388.mkv +吴碧霞-风声水起北部湾,http://em.21dtv.com/songs/60069394.mkv +安涛-分手时你说的话,http://em.21dtv.com/songs/60071925.mkv +张秀卿-放舍你我心呒甘,http://em.21dtv.com/songs/60016685.mkv +佚名-放舍你我心呒甘,http://em.21dtv.com/songs/60016684.mkv +马亚丽-翻身农奴把歌唱,http://em.21dtv.com/songs/60090326.mkv +高原红阿姆-翻身农奴把歌唱,http://em.21dtv.com/songs/60083895.mkv +才旦卓玛-翻身农奴把歌唱,http://em.21dtv.com/songs/60016464.mkv +韩红-翻身农奴把歌唱(演唱会),http://em.21dtv.com/songs/60016463.mkv +胡斌-翻身农奴把歌唱,http://em.21dtv.com/songs/60070662.mkv +小峤+继伟-风送梅花过小巧,http://em.21dtv.com/songs/60063148.mkv +赵继伟+小峤-风送梅花过小桥,http://em.21dtv.com/songs/60063437.mkv +于金胜-分手了还想念你,http://em.21dtv.com/songs/60070679.mkv +程响-分手了还是朋友,http://em.21dtv.com/songs/60017091.mkv +龙奔-分手来的太突然,http://em.21dtv.com/songs/60115555.mkv +熊大-分手就别再回头,http://em.21dtv.com/songs/60098616.mkv +宋旭-分手就不要再见,http://em.21dtv.com/songs/60128991.mkv +姜梓浩-分手后依然爱你,http://em.21dtv.com/songs/60123813.mkv +韩锋-分手后还是朋友,http://em.21dtv.com/songs/60075358.mkv +高安-分手后还是朋友,http://em.21dtv.com/songs/60071923.mkv +陈超-分手后的情人节,http://em.21dtv.com/songs/60017070.mkv +周子轩-分手何必做朋友,http://em.21dtv.com/songs/60122596.mkv +暴林+乔玲儿-放手何必去挽留,http://em.21dtv.com/songs/60130383.mkv +景鹏-分手的夜下着雨,http://em.21dtv.com/songs/60068250.mkv +陈天红-分手的痛谁知道,http://em.21dtv.com/songs/60098854.mkv +佚名-粉碎敌人乌龟壳,http://em.21dtv.com/songs/60017183.mkv +黄俊渊-分手别再说爱我,http://em.21dtv.com/songs/60113111.mkv +苏永康+袁洁莹-分手不要问理由,http://em.21dtv.com/songs/60017046.mkv +吴浩康-分手不要太悲哀,http://em.21dtv.com/songs/60092455.mkv +关智斌-分手不要太悲哀,http://em.21dtv.com/songs/60017045.mkv +刘小慧-分手不须再流泪,http://em.21dtv.com/songs/60017044.mkv +张峥-分手别说对不起,http://em.21dtv.com/songs/60105830.mkv +彭佳慧-分手不是不可以,http://em.21dtv.com/songs/60017043.mkv +何流-分手不能做朋友,http://em.21dtv.com/songs/60113255.mkv +魏晨-疯人愿,http://em.21dtv.com/songs/60111543.mkv +Blake Shelton-Friends,http://em.21dtv.com/songs/60121221.mkv +Pitbull-Freedom,http://em.21dtv.com/songs/60122408.mkv +谢珊-放弃也是一种爱,http://em.21dtv.com/songs/60065958.mkv +张智成-放弃也会有快乐,http://em.21dtv.com/songs/60101631.mkv +裘海正-放弃也会有快乐,http://em.21dtv.com/songs/60016672.mkv +刘涛-父亲[演唱会],http://em.21dtv.com/songs/60133413.mkv +李健-父亲写的散文诗,http://em.21dtv.com/songs/60133790.mkv +许飞-父亲写的散文诗,http://em.21dtv.com/songs/60124482.mkv +杨坤+张丁文-父亲,http://em.21dtv.com/songs/60112009.mkv +陆萍-放弃我是你的错,http://em.21dtv.com/songs/60016670.mkv +曾春年-放弃我是你的错,http://em.21dtv.com/songs/60016669.mkv +霍建华-放弃天空的飞鸟,http://em.21dtv.com/songs/60016667.mkv +霍建华-放弃天空的飞鸟(演唱会),http://em.21dtv.com/songs/60016666.mkv +胡歌-风起时,http://em.21dtv.com/songs/60122042.mkv +卓依婷-夫妻双双把家还,http://em.21dtv.com/songs/60017643.mkv +彭紫欣+宋鑫-夫妻双双把家还,http://em.21dtv.com/songs/60017642.mkv +吕珊+刘韵-夫妻双双把家还,http://em.21dtv.com/songs/60017641.mkv +黄梅戏-夫妻双双把家还,http://em.21dtv.com/songs/60017640.mkv +蔡振南-福气是命免人聱,http://em.21dtv.com/songs/60017699.mkv +陆萍-放弃你是我的错,http://em.21dtv.com/songs/60089513.mkv +朱奕潼-放弃你情非得已,http://em.21dtv.com/songs/60082889.mkv +游美灵-父亲母亲我的爱,http://em.21dtv.com/songs/60133952.mkv +游美灵-父亲母亲我的爱,http://em.21dtv.com/songs/60068263.mkv +倪尔萍-佛前哭泣的玫瑰,http://em.21dtv.com/songs/60128794.mkv +梁召今-父亲河 母亲河,http://em.21dtv.com/songs/60116973.mkv +暴林-放弃不再爱的人,http://em.21dtv.com/songs/60124023.mkv +郑中基+吴君如-肥婆只鸡甩哂毛,http://em.21dtv.com/songs/60016960.mkv +谢小丽-风拍松声侬心焦,http://em.21dtv.com/songs/60094906.mkv +BTOB-For You,http://em.21dtv.com/songs/60129899.mkv +立威廉-Forever,http://em.21dtv.com/songs/60103498.mkv +吴建豪-Forever,http://em.21dtv.com/songs/60103151.mkv +陈平进-父母在家盼我回,http://em.21dtv.com/songs/60075422.mkv +赵真-福门开 好运来,http://em.21dtv.com/songs/60118939.mkv +陈星-父母恩重难报歌,http://em.21dtv.com/songs/60117344.mkv +吹波糖-风靡不了这地球,http://em.21dtv.com/songs/60110082.mkv +张秋霞-泛滥于眼中的念,http://em.21dtv.com/songs/60097859.mkv +兄弟本色-FLY OUT,http://em.21dtv.com/songs/60118362.mkv +小右+Newyounggo+小根号-Fly Awa,http://em.21dtv.com/songs/60125422.mkv +胡美仪-范蠡西施太湖会(戏曲),http://em.21dtv.com/songs/60093066.mkv +谭维维+李秋泽-飞了,http://em.21dtv.com/songs/60119984.mkv +周蕙-风铃,http://em.21dtv.com/songs/60116665.mkv +徐誉滕-放了手就忘了我,http://em.21dtv.com/songs/60016638.mkv +徐誉滕+阿原-扶老奶奶过马路,http://em.21dtv.com/songs/60111919.mkv +石乔-返来故乡才知老,http://em.21dtv.com/songs/60135608.mkv +外国民歌-风流寡妇圆14,http://em.21dtv.com/songs/60089758.mkv +佚名-风流寡妇圆舞曲,http://em.21dtv.com/songs/60017337.mkv +甄妮-风流断剑小小刀(演唱会),http://em.21dtv.com/songs/60017336.mkv +佚名-风流断剑小小刀(无原唱),http://em.21dtv.com/songs/60017335.mkv +蔡凤凰+杨鸣-风流阿伯挽茶娘,http://em.21dtv.com/songs/60017331.mkv +吴若萱-分开一天就想你,http://em.21dtv.com/songs/60099153.mkv +陈小春-分开一朝也天霖(演唱会),http://em.21dtv.com/songs/60017014.mkv +王祖蓝-浮夸,http://em.21dtv.com/songs/60125938.mkv +陈秀雯-分开是唯一选择,http://em.21dtv.com/songs/60017013.mkv +海阔-放开手 放开爱,http://em.21dtv.com/songs/60107037.mkv +郑嘉颖-分开方知这是爱,http://em.21dtv.com/songs/60017010.mkv +山野-分开不一定分手,http://em.21dtv.com/songs/60017006.mkv +郭静-分开不是谁不好,http://em.21dtv.com/songs/60135836.mkv +郭静-分开不是谁不好,http://em.21dtv.com/songs/60134342.mkv +Tinie Tempah+Jake Bugg-Find Me,http://em.21dtv.com/songs/60134811.mkv +大波浪-FILL IN,http://em.21dtv.com/songs/60123803.mkv +中岛美嘉+加藤美穂-Fighter,http://em.21dtv.com/songs/60101866.mkv +沈凌云-凤凰缘,http://em.21dtv.com/songs/60098557.mkv +红牛-风花雪月梦已远,http://em.21dtv.com/songs/60070683.mkv +张闻君-风花雪月的地方,http://em.21dtv.com/songs/60132470.mkv +廖芊芊-凤凰山上飞凤凰,http://em.21dtv.com/songs/60097824.mkv +群星-飞虎群星贺新岁,http://em.21dtv.com/songs/60016809.mkv +佚名-凤凰岭上祝红军,http://em.21dtv.com/songs/60017594.mkv +阎维文-汾河流水哗啦啦,http://em.21dtv.com/songs/60017153.mkv +魏金栋-汾河流水哗啦啦,http://em.21dtv.com/songs/60017152.mkv +宋祖英-汾河流水哗啦啦,http://em.21dtv.com/songs/60017151.mkv +樱九+Msz蓝-风华诀,http://em.21dtv.com/songs/60124169.mkv +林志炫-凤凰花开的路口,http://em.21dtv.com/songs/60017592.mkv +欧姐-防火防盗防闺蜜,http://em.21dtv.com/songs/60115253.mkv +林香-放歌三沙去巡航,http://em.21dtv.com/songs/60106988.mkv +八大巨星-富贵年年福星照,http://em.21dtv.com/songs/60075435.mkv +张翘+丁嘉林-富贵花开迎新年,http://em.21dtv.com/songs/60075434.mkv +佚名-凤阁恩仇未了情,http://em.21dtv.com/songs/60017583.mkv +姚志强+曾慧-凤阁恩仇未了情,http://em.21dtv.com/songs/60017582.mkv +卢海鹏+陈咏仪-凤阁恩仇未了情,http://em.21dtv.com/songs/60017581.mkv +卢海鹏+胡美仪-凤阁恩仇未了情,http://em.21dtv.com/songs/60062726.mkv +柳影虹+尹光-凤阁恩仇未了情(演唱会),http://em.21dtv.com/songs/60062689.mkv +小神鹰+蒋文瑞-凤阁恩仇末了情,http://em.21dtv.com/songs/60017580.mkv +莫文蔚-分分钟钟需要你,http://em.21dtv.com/songs/60093100.mkv +韦绮姗+群星-分分钟钟需要你(演唱会),http://em.21dtv.com/songs/60082899.mkv +洪荣宏-风风雨雨这多年,http://em.21dtv.com/songs/60017294.mkv +容榕-风风雨雨相伴过,http://em.21dtv.com/songs/60017293.mkv +佚名-纷纷飘坠的音符,http://em.21dtv.com/songs/60017149.mkv +于文华-风风火火走一回,http://em.21dtv.com/songs/60087258.mkv +佚名-风风火火走一回,http://em.21dtv.com/songs/60017290.mkv +群星-风风火火走一回(演唱会),http://em.21dtv.com/songs/60017289.mkv +刀郎-风儿相随流浪心,http://em.21dtv.com/songs/60090681.mkv +彭坦-风儿带着我们飘,http://em.21dtv.com/songs/60017277.mkv +许瑞铭-放荡人生无意义(无原唱),http://em.21dtv.com/songs/60094761.mkv +甄子维-奋斗嘛着等时机(无原唱),http://em.21dtv.com/songs/60017196.mkv +孟文豪-风的寂寞云知道,http://em.21dtv.com/songs/60085087.mkv +云菲菲-风的寂寞云知道,http://em.21dtv.com/songs/60017265.mkv +黄晓明-风的孩子星外星,http://em.21dtv.com/songs/60089047.mkv +周慧敏-付出许多的爱情,http://em.21dtv.com/songs/60017747.mkv +罗蔼轩-非诚勿扰只为爱,http://em.21dtv.com/songs/60061186.mkv +Myname-非常very堵,http://em.21dtv.com/songs/60109857.mkv +婧文-风吹树叶不吹藤,http://em.21dtv.com/songs/60133552.mkv +钱红-风从来榜河走过,http://em.21dtv.com/songs/60064194.mkv +曹方-风吹过的下雨天,http://em.21dtv.com/songs/60017248.mkv +潘紫萱-发财发福中国年,http://em.21dtv.com/songs/60121890.mkv +吴依琳-发财发福中国年,http://em.21dtv.com/songs/60075288.mkv +中国娃娃-发财发福中国年,http://em.21dtv.com/songs/60016418.mkv +庞龙-飞吧美丽的蝴蝶,http://em.21dtv.com/songs/60016785.mkv +黄品冠-分不开的两个人,http://em.21dtv.com/songs/60016982.mkv +陈文浩-奋不顾身的爱情,http://em.21dtv.com/songs/60105489.mkv +庄妮-飞不过沧海的蝶,http://em.21dtv.com/songs/60119485.mkv +王馨平-发边的一句说话,http://em.21dtv.com/songs/60016416.mkv +张磊-奋安只为客户狂,http://em.21dtv.com/songs/60110207.mkv +雷深如-Fantasy,http://em.21dtv.com/songs/60134437.mkv +VIXX-Fantasy,http://em.21dtv.com/songs/60130005.mkv +winds-FANTASY,http://em.21dtv.com/songs/60109906.mkv +Alesso-Falling,http://em.21dtv.com/songs/60132039.mkv +Haim-Falling,http://em.21dtv.com/songs/60124886.mkv +邓紫棋-Falling,http://em.21dtv.com/songs/60098798.mkv +张新-falling,http://em.21dtv.com/songs/60081455.mkv +Big And Rich+Gretchen Wilson-Fake ID,http://em.21dtv.com/songs/60116440.mkv +中川翔子-涙の种、笑顔の花,http://em.21dtv.com/songs/60076367.mkv +AKB48-everyday、カチューシャ,http://em.21dtv.com/songs/60061944.mkv +林嘉欣-二月十四的约会,http://em.21dtv.com/songs/60016410.mkv +万一-儿行千里妈牵挂,http://em.21dtv.com/songs/60119221.mkv +倪尔萍-儿行千里妈牵挂,http://em.21dtv.com/songs/60116557.mkv +胡云鹏-儿行千里莫担忧,http://em.21dtv.com/songs/60127297.mkv +申彗星+Snacky Chan-EX MIND,http://em.21dtv.com/songs/60106158.mkv +赤龙-儿为娘亲洗洗脚,http://em.21dtv.com/songs/60120967.mkv +卢广仲-二十四小时柒天,http://em.21dtv.com/songs/60132270.mkv +陈乃荣-二十四小时疯狂,http://em.21dtv.com/songs/60016395.mkv +花粥-二十岁的某一天,http://em.21dtv.com/songs/60124398.mkv +庄秋玉+刘伟龙-二十年后再相会,http://em.21dtv.com/songs/60126852.mkv +洪禄云+陈水林-二十年后再相会,http://em.21dtv.com/songs/60082876.mkv +群星-二十年后再相会,http://em.21dtv.com/songs/60016386.mkv +锦绣二重唱-二十年后的幸福,http://em.21dtv.com/songs/60016385.mkv +王振楠-二十八岁没老婆,http://em.21dtv.com/songs/60068239.mkv +EXILE-exile pride ~こんな世界を爱するため~,http://em.21dtv.com/songs/60082144.mkv +花鼓戏-鹅毛大雪满天飞,http://em.21dtv.com/songs/60090178.mkv +华语群星-二龙争姝贺金猴,http://em.21dtv.com/songs/60118407.mkv +梁雨恩-2015等.灯,http://em.21dtv.com/songs/60116076.mkv +C ALLSTAR-二零一三的约定,http://em.21dtv.com/songs/60063513.mkv +思小玥-2017我属凤,http://em.21dtv.com/songs/60133725.mkv +群星-二零一零等你来,http://em.21dtv.com/songs/60016361.mkv +焰烽-二零一二继续装,http://em.21dtv.com/songs/60068238.mkv +卢星灿-2012的情歌,http://em.21dtv.com/songs/60110902.mkv +晨熙-二零一二的爱情,http://em.21dtv.com/songs/60016359.mkv +李自强-二零一二不会来,http://em.21dtv.com/songs/60062619.mkv +群星-二零一二不会来,http://em.21dtv.com/songs/60016358.mkv +狄安娜-20岁的圣诞节,http://em.21dtv.com/songs/60131627.mkv +狄安娜-二零岁的圣诞节,http://em.21dtv.com/songs/60075277.mkv +伍思凯-二零零一的留言(无原唱),http://em.21dtv.com/songs/60016350.mkv +BY2-二零二零爱你爱你,http://em.21dtv.com/songs/60068237.mkv +林灵儿-嘚儿隆咚飘一飘,http://em.21dtv.com/songs/60131551.mkv +郭颂-鄂伦春人歌唱党,http://em.21dtv.com/songs/60016285.mkv +JO HYUN JAE-even if i live just one day,http://em.21dtv.com/songs/60062063.mkv +詹曼铃+江宏恩-二个人也会寂寞,http://em.21dtv.com/songs/60016332.mkv +张学友-二分之一的幸福(演唱会),http://em.21dtv.com/songs/60016331.mkv +POPHOLIC流行骇客-二分之一的机会(演唱会),http://em.21dtv.com/songs/60061169.mkv +周传雄-二分之一的爱情,http://em.21dtv.com/songs/60016330.mkv +高安-恩恩爱爱都是你,http://em.21dtv.com/songs/60016294.mkv +佚名-em den tham anh mot chieu mua,http://em.21dtv.com/songs/60001492.mkv +仁青连布-俄初山上的姑娘,http://em.21dtv.com/songs/60114983.mkv +越剧-耳边响来更鼓声,http://em.21dtv.com/songs/60016317.mkv +李猛-二逼青年欢乐多,http://em.21dtv.com/songs/60133812.mkv +谢霆锋-二百八十一公里,http://em.21dtv.com/songs/60016322.mkv +何嘉文-everybodyㄉㄨㄞㄉㄨㄞ,http://em.21dtv.com/songs/60001561.mkv +杨千嬅-e-714342,http://em.21dtv.com/songs/60001460.mkv +李韦-当自由遇上寂寞,http://em.21dtv.com/songs/60014658.mkv +肖亮-带走忧伤的寂寞,http://em.21dtv.com/songs/60112892.mkv +费玉清-对着月亮诉情意,http://em.21dtv.com/songs/60016087.mkv +团风依依-对着月亮说爱你,http://em.21dtv.com/songs/60099170.mkv +王紫菲-对着月亮唱情歌,http://em.21dtv.com/songs/60099412.mkv +刘孟哲-对着月亮唱情歌,http://em.21dtv.com/songs/60086534.mkv +廖梦心-对着星星许个愿,http://em.21dtv.com/songs/60107705.mkv +庞龙-躲在心里的时光,http://em.21dtv.com/songs/60135186.mkv +周笔畅+张喆+田俊行+张慧子-对嘴,http://em.21dtv.com/songs/60123771.mkv +周笔畅+张喆+田俊行+张慧子-对嘴,http://em.21dtv.com/songs/60122604.mkv +容祖儿+狄迪+蓝子龙+张一腾-独照,http://em.21dtv.com/songs/60121595.mkv +黄勇-带着天真去流浪,http://em.21dtv.com/songs/60112400.mkv +莫小滢-对着天空说爱你,http://em.21dtv.com/songs/60016086.mkv +2R-当这世界只有他,http://em.21dtv.com/songs/60014655.mkv +龙梅子-带着情歌去流浪,http://em.21dtv.com/songs/60123420.mkv +韩宝仪-当做没有爱过我,http://em.21dtv.com/songs/60014667.mkv +包娜娜-当做没有爱过我,http://em.21dtv.com/songs/60014666.mkv +云菲菲-当作没有爱过我,http://em.21dtv.com/songs/60063338.mkv +庄心妍-带着梦想去旅行,http://em.21dtv.com/songs/60085023.mkv +童波-带着梦想去闯荡,http://em.21dtv.com/songs/60126007.mkv +阿里郎组合-戴着面具的女郎,http://em.21dtv.com/songs/60103653.mkv +阿里郎-戴着面具的女郎,http://em.21dtv.com/songs/60070621.mkv +周天然-戴着面具的谜团,http://em.21dtv.com/songs/60085024.mkv +孙家山+胡杰夕-带着回忆去分手,http://em.21dtv.com/songs/60122657.mkv +孙家山-带着回忆去分手,http://em.21dtv.com/songs/60110133.mkv +顾凯-弟子规之入则孝,http://em.21dtv.com/songs/60080522.mkv +郭泇妏-大只广与罗密欧,http://em.21dtv.com/songs/60128483.mkv +洪卓立-带着骨灰去旅行,http://em.21dtv.com/songs/60135495.mkv +洪卓立-带着骨灰去旅行,http://em.21dtv.com/songs/60133938.mkv +豫剧-独坐灯下绣鸳鸯,http://em.21dtv.com/songs/60134596.mkv +曲剧-独坐灯下绣鸳鸯,http://em.21dtv.com/songs/60091277.mkv +陈奕迅-当这地球没有花,http://em.21dtv.com/songs/60014654.mkv +杜沁怡+孙子涵-对着背影说爱你,http://em.21dtv.com/songs/60075262.mkv +孙子涵+杜沁怡-对着背影说爱你,http://em.21dtv.com/songs/60069370.mkv +傅振辉-歹子不是阮的名,http://em.21dtv.com/songs/60014250.mkv +徐子崴-带着爸妈去旅行,http://em.21dtv.com/songs/60064106.mkv +徐子崴+王莉-带着爸妈去旅行(演唱会),http://em.21dtv.com/songs/60064105.mkv +孙伟-但愿心中有极乐,http://em.21dtv.com/songs/60075105.mkv +佚名-do you want to know a secret,http://em.21dtv.com/songs/60001289.mkv +Kristen Bell-Do You Want To Build A Snowman,http://em.21dtv.com/songs/60099006.mkv +巫启贤-答应我好好的过,http://em.21dtv.com/songs/60013737.mkv +Lami Girls-独一无二的闪烁,http://em.21dtv.com/songs/60124931.mkv +谢沛恩-独一无二的女孩,http://em.21dtv.com/songs/60071894.mkv +LEINA池端玲名-独一无二的存在,http://em.21dtv.com/songs/60116461.mkv +安旭-但愿少爱你一点,http://em.21dtv.com/songs/60113412.mkv +安旭-但愿少爱你一点,http://em.21dtv.com/songs/60061136.mkv +佚名-do you really want to hurt me,http://em.21dtv.com/songs/60001282.mkv +白雪-带一枚月亮回家,http://em.21dtv.com/songs/60014286.mkv +王易俊-但愿梅花盛开时,http://em.21dtv.com/songs/60068211.mkv +王爱华-但愿来生结成双,http://em.21dtv.com/songs/60128234.mkv +佚名-do you know where youre going to,http://em.21dtv.com/songs/60001278.mkv +JENNIFER LOPEZ-do you know where youre going to,http://em.21dtv.com/songs/60001277.mkv +龙剑笙-蝶影红梨记亭会,http://em.21dtv.com/songs/60075207.mkv +阎维文-大运河奔腾的歌,http://em.21dtv.com/songs/60118990.mkv +唐冰冰-等一个人来爱我,http://em.21dtv.com/songs/60117628.mkv +黎瑞恩-但愿给恋火灼伤,http://em.21dtv.com/songs/60014418.mkv +赵中晨-当阳光空过窗户(演唱会),http://em.21dtv.com/songs/60014645.mkv +童亚卿-大雨过后的晴天,http://em.21dtv.com/songs/60069323.mkv +艳阳天-钓鱼岛中国的岛,http://em.21dtv.com/songs/60069358.mkv +邓紫棋-多远都要在一起,http://em.21dtv.com/songs/60117270.mkv +邓紫棋-多远都要在一起,http://em.21dtv.com/songs/60109648.mkv +胡瓜-大雨大雨一直下(无原唱),http://em.21dtv.com/songs/60014213.mkv +丽诗-得意的笑迎新年,http://em.21dtv.com/songs/60014806.mkv +五洲唱响乐团-钓鱼岛是中国的,http://em.21dtv.com/songs/60070640.mkv +苏亚-大雁的家在哪里,http://em.21dtv.com/songs/60070619.mkv +大张伟-大摇大摆迎春来,http://em.21dtv.com/songs/60107635.mkv +叶欢-多一点爱给自己,http://em.21dtv.com/songs/60016229.mkv +崔京浩-当阳常志此心丹,http://em.21dtv.com/songs/60014643.mkv +段千寻-第一次为女生哭,http://em.21dtv.com/songs/60015248.mkv +张志林-第一次为你喝醉,http://em.21dtv.com/songs/60015247.mkv +杨雪晴-第一次牵你的手,http://em.21dtv.com/songs/60015244.mkv +蔡献华+李晶-第一次亲密接触,http://em.21dtv.com/songs/60082840.mkv +陈柔希-第一次的情人节,http://em.21dtv.com/songs/60120090.mkv +郭峰-但愿不只是情人,http://em.21dtv.com/songs/60014417.mkv +李家发-但愿不只是朋友,http://em.21dtv.com/songs/60014416.mkv +黎明-但愿不只是朋友,http://em.21dtv.com/songs/60014415.mkv +黎明-但愿不只是朋友(演唱会),http://em.21dtv.com/songs/60014414.mkv +雨浩枫-当鱼爱上了天空,http://em.21dtv.com/songs/60014650.mkv +宿雨涵-冬—雪中的一幅画,http://em.21dtv.com/songs/60087702.mkv +韩安旭-多幸运,http://em.21dtv.com/songs/60122263.mkv +张冬玲-多想有你在身边,http://em.21dtv.com/songs/60016212.mkv +蔡国庆+白雪-大雪无情人有情,http://em.21dtv.com/songs/60014191.mkv +许志安-多希望你在这里,http://em.21dtv.com/songs/60016206.mkv +米蓝-多想忘了你是谁,http://em.21dtv.com/songs/60016211.mkv +阿木古楞-多想听你唱首歌,http://em.21dtv.com/songs/60134380.mkv +苏永康-担心是我不配你,http://em.21dtv.com/songs/60090182.mkv +刘家宏-多想说声我爱你,http://em.21dtv.com/songs/60087392.mkv +孙逊-多些时间给自己,http://em.21dtv.com/songs/60075268.mkv +网络歌曲-大学生自习室,http://em.21dtv.com/songs/60014186.mkv +伊能静+秦昊-对先生 对小姐,http://em.21dtv.com/songs/60113251.mkv +易欣-多想陪在你身旁,http://em.21dtv.com/songs/60016210.mkv +徐子谦-多想陪你一直走,http://em.21dtv.com/songs/60120566.mkv +易欣-多想你陪在身旁,http://em.21dtv.com/songs/60089923.mkv +吉木喜儿-大小凉山金灿灿,http://em.21dtv.com/songs/60014177.mkv +庄心妍-多想和你说再见,http://em.21dtv.com/songs/60094088.mkv +牛朝阳-当雪花爱上梅花,http://em.21dtv.com/songs/60014642.mkv +面具-多想多想不爱你,http://em.21dtv.com/songs/60098913.mkv +浪哥-大兴安岭我的家,http://em.21dtv.com/songs/60113813.mkv +艾成-大侠艾吃汉堡包,http://em.21dtv.com/songs/60014158.mkv +花果-带我装逼带我飞,http://em.21dtv.com/songs/60132827.mkv +陈依然-当我想说爱你时,http://em.21dtv.com/songs/60075121.mkv +蔡健雅-当我想你的时候,http://em.21dtv.com/songs/60126146.mkv +石头-当我想你的时候,http://em.21dtv.com/songs/60120825.mkv +王珊珊-当我想你的时候,http://em.21dtv.com/songs/60082807.mkv +单冲峰+倪鹏-当我想你的时候,http://em.21dtv.com/songs/60081528.mkv +侯磊-当我想你的时候,http://em.21dtv.com/songs/60081319.mkv +陈明-当我想你的时候(演唱会),http://em.21dtv.com/songs/60075120.mkv +佚名-当我想你的时候,http://em.21dtv.com/songs/60014625.mkv +汪峰-当我想你的时候(演唱会),http://em.21dtv.com/songs/60014624.mkv +陈明-当我想你的时候,http://em.21dtv.com/songs/60071868.mkv +段红-当我想你的时候,http://em.21dtv.com/songs/60065930.mkv +辛晓琪-当我身旁有你在,http://em.21dtv.com/songs/60014622.mkv +蓝雨-当我松开你的手,http://em.21dtv.com/songs/60014623.mkv +胡海泉+艾伦-动物世界之回家,http://em.21dtv.com/songs/60134143.mkv +苏打绿-当我们一起走过,http://em.21dtv.com/songs/60066950.mkv +佚名-当我们小的时候,http://em.21dtv.com/songs/60082806.mkv +孙淑媚-当我们同在一起,http://em.21dtv.com/songs/60075119.mkv +王羚柔-当我们同在一起,http://em.21dtv.com/songs/60014619.mkv +童唱-当我们同在一起,http://em.21dtv.com/songs/60014618.mkv +巧千金-当我们同在一起,http://em.21dtv.com/songs/60014617.mkv +成龙-当我们同在一起,http://em.21dtv.com/songs/60014616.mkv +陆飞-当我没钱的时候,http://em.21dtv.com/songs/60129722.mkv +影视歌曲-当我们年轻时光,http://em.21dtv.com/songs/60089298.mkv +SO WHAT-当我们开始旅行,http://em.21dtv.com/songs/60014615.mkv +兄弟本色-当我们混在一起,http://em.21dtv.com/songs/60120336.mkv +苏儿真-当我们不在一起,http://em.21dtv.com/songs/60014613.mkv +刘阳-窦王岭上嗨起来,http://em.21dtv.com/songs/60128844.mkv +刘明辉-当我老去的时候,http://em.21dtv.com/songs/60097831.mkv +左小祖咒+陈珊妮-当我离开的时候,http://em.21dtv.com/songs/60066949.mkv +莫文蔚-大王叫我来巡山,http://em.21dtv.com/songs/60128356.mkv +贾乃亮+甜馨-大王叫我来巡山(HD),http://em.21dtv.com/songs/60134250.mkv +贾乃亮+李小璐+贾云馨-大王叫我来巡山,http://em.21dtv.com/songs/60118926.mkv +赵英俊-大王叫我来巡山,http://em.21dtv.com/songs/60117261.mkv +贾乃亮+甜馨-大王叫我来巡山,http://em.21dtv.com/songs/60116256.mkv +何方-到我怀里躲躲雨(无原唱),http://em.21dtv.com/songs/60014763.mkv +星弟-当我唱起这首歌,http://em.21dtv.com/songs/60014602.mkv +曹轩宾-当我不在你身边,http://em.21dtv.com/songs/60065929.mkv +欧阳大龙-当我爱你的时候,http://em.21dtv.com/songs/60088165.mkv +鸿飞-Duang火啦,http://em.21dtv.com/songs/60110719.mkv +叶俊华-洞庭之南美潇湘,http://em.21dtv.com/songs/60106670.mkv +潘玮柏-do that to me one more time,http://em.21dtv.com/songs/60001272.mkv +CAPTAIN+TENNILLE-do that to me one more time,http://em.21dtv.com/songs/60001271.mkv +李文+刘华-对天双双立誓盟,http://em.21dtv.com/songs/60016069.mkv +李娜-冬天让我刚明白,http://em.21dtv.com/songs/60015613.mkv +佚名-冬天里也有阳光,http://em.21dtv.com/songs/60015611.mkv +王子鸣-冬天里也有阳光,http://em.21dtv.com/songs/60015610.mkv +江映蓉-冬天里的一把火,http://em.21dtv.com/songs/60135477.mkv +舒浩炀-冬天里的一把火,http://em.21dtv.com/songs/60118859.mkv +杨坤+人声兄弟-冬天里的一把火,http://em.21dtv.com/songs/60112778.mkv +张靓颖-冬天里的一把火,http://em.21dtv.com/songs/60108510.mkv +刘明辉+黑豹+信乐团-冬天里的一把火,http://em.21dtv.com/songs/60107531.mkv +吴克群+梦想合唱团-冬天里的一把火(演唱会),http://em.21dtv.com/songs/60075217.mkv +吉克隽逸-冬天里的一把火,http://em.21dtv.com/songs/60069362.mkv +锦绣二重唱-冬天里的一把火,http://em.21dtv.com/songs/60015609.mkv +高凌风-冬天里的一把火,http://em.21dtv.com/songs/60015608.mkv +费翔-冬天里的一把火(演唱会),http://em.21dtv.com/songs/60015607.mkv +葛兆恩-冬天里第二把火,http://em.21dtv.com/songs/60061158.mkv +石晋铭-顶天立地大丈夫,http://em.21dtv.com/songs/60070645.mkv +地铁兄弟-冬天里的白玫瑰,http://em.21dtv.com/songs/60015606.mkv +熊七梅-洞庭湖上风光美,http://em.21dtv.com/songs/60111252.mkv +孙建平+音乐家庭-冬天过了是春天(无原唱),http://em.21dtv.com/songs/60015603.mkv +尔萨-对天发誓我爱你,http://em.21dtv.com/songs/60016067.mkv +陈虹-洞天福地美鸾山,http://em.21dtv.com/songs/60100993.mkv +肖萍-洞天福地美鸾山,http://em.21dtv.com/songs/60085059.mkv +张燕峰-都是这样结束的,http://em.21dtv.com/songs/60131415.mkv +弦子-第三者的第三者,http://em.21dtv.com/songs/60015216.mkv +根呷-大山走出的孩子,http://em.21dtv.com/songs/60068206.mkv +徐千雅-带上音乐去旅行,http://em.21dtv.com/songs/60069328.mkv +方怡萍-都是因为我爱你(无原唱),http://em.21dtv.com/songs/60015721.mkv +万一-都是缘分惹的祸,http://em.21dtv.com/songs/60127693.mkv +SNH48-都是夜风惹的祸,http://em.21dtv.com/songs/60120241.mkv +曾雨轩-都是温柔犯的错,http://em.21dtv.com/songs/60097877.mkv +佚名-都市无聊的暗暝,http://em.21dtv.com/songs/60015698.mkv +咻比嘟哗-都是我对不起你,http://em.21dtv.com/songs/60015717.mkv +曾治伦-都是我把你惯坏,http://em.21dtv.com/songs/60015712.mkv +庄学忠-打是疼你骂是爱,http://em.21dtv.com/songs/60091017.mkv +乌兰托娅-都是时间惹的祸,http://em.21dtv.com/songs/60075225.mkv +徐健淇-大声说出我爱你(演唱会),http://em.21dtv.com/songs/60086514.mkv +谭学胜-大山深处是我家,http://em.21dtv.com/songs/60082784.mkv +河图-第三十八年夏至,http://em.21dtv.com/songs/60015208.mkv +陈慧娴-多少柔情多少梦,http://em.21dtv.com/songs/60016201.mkv +王杰-多少柔情多少泪,http://em.21dtv.com/songs/60095325.mkv +佚名-多少柔情多少泪,http://em.21dtv.com/songs/60016200.mkv +谢雷-多少柔情多少泪,http://em.21dtv.com/songs/60016199.mkv +青山-多少柔情多少泪,http://em.21dtv.com/songs/60016198.mkv +李茂山-多少柔情多少泪,http://em.21dtv.com/songs/60016197.mkv +凤飞飞-多少柔情多少泪,http://em.21dtv.com/songs/60016196.mkv +刘转亮-打是亲来骂是爱,http://em.21dtv.com/songs/60085010.mkv +王美兰-东山飘雨西山晴(演唱会),http://em.21dtv.com/songs/60075214.mkv +佚名-东山飘雨西山晴,http://em.21dtv.com/songs/60015558.mkv +梅艳芳-东山飘雨西山晴,http://em.21dtv.com/songs/60015557.mkv +黄红英-东山飘雨西山晴,http://em.21dtv.com/songs/60015556.mkv +邓丽君-东山飘雨西山晴,http://em.21dtv.com/songs/60015555.mkv +杨曼莉-东山飘雨西山晴(演唱会),http://em.21dtv.com/songs/60015554.mkv +本多RURU-单身女子俱乐部,http://em.21dtv.com/songs/60014381.mkv +容祖儿-都是那个吻害的,http://em.21dtv.com/songs/60015703.mkv +零点乐队-当思念变成回忆,http://em.21dtv.com/songs/60105506.mkv +云菲菲-动什么别动感情,http://em.21dtv.com/songs/60075222.mkv +储兰兰-独守空帷暗长叹,http://em.21dtv.com/songs/60075235.mkv +佚名-独守空帏暗长叹,http://em.21dtv.com/songs/60015810.mkv +上官寒雨-都是寂寞惹的祸,http://em.21dtv.com/songs/60133320.mkv +高慧君-都是寂寞惹的祸,http://em.21dtv.com/songs/60015700.mkv +樊少华-都是寂寞犯的错,http://em.21dtv.com/songs/60061162.mkv +何龙雨-都是酒精惹的祸,http://em.21dtv.com/songs/60015701.mkv +石梅-多少回忆多少泪,http://em.21dtv.com/songs/60075266.mkv +徐浩峻-大声喊出我爱你,http://em.21dtv.com/songs/60109363.mkv +徐健淇-大声喊出我爱你,http://em.21dtv.com/songs/60014119.mkv +徐健淇+孙嘉敏-大声喊出我爱你,http://em.21dtv.com/songs/60014118.mkv +佚名-淡水河边的烟火,http://em.21dtv.com/songs/60014460.mkv +庾澄庆-到死都要18岁,http://em.21dtv.com/songs/60014762.mkv +云珩-单身的人才会懂,http://em.21dtv.com/songs/60097868.mkv +雷颂德-第四次世界大战,http://em.21dtv.com/songs/60015220.mkv +龙梅子+老猫-大叔不卖我香蕉,http://em.21dtv.com/songs/60127639.mkv +孙盛希-单身不等于失恋,http://em.21dtv.com/songs/60123826.mkv +小刚+蓝玫-都是爱情太诱惑,http://em.21dtv.com/songs/60064147.mkv +臧文-都是爱情伤了我,http://em.21dtv.com/songs/60085060.mkv +姜玉阳-都是爱情惹的祸,http://em.21dtv.com/songs/60087636.mkv +Trevor Jackson+B.O.B-Drop It,http://em.21dtv.com/songs/60125031.mkv +汪小敏-Dreamer,http://em.21dtv.com/songs/60125856.mkv +ECHO-Dreamer,http://em.21dtv.com/songs/60093919.mkv +费玉清-多情总为无情伤,http://em.21dtv.com/songs/60075265.mkv +于千慧-多情总为无情伤,http://em.21dtv.com/songs/60016182.mkv +降央卓玛-多情总为无情伤,http://em.21dtv.com/songs/60016181.mkv +潘美辰-地球最冷的一天,http://em.21dtv.com/songs/60015115.mkv +赖一心-但求子得良师托,http://em.21dtv.com/songs/60110553.mkv +李艺明-多情湘女上天山,http://em.21dtv.com/songs/60105989.mkv +佚名-东求西借两手空,http://em.21dtv.com/songs/60015552.mkv +谭晶-断桥问,http://em.21dtv.com/songs/60107229.mkv +梁心颐-当秋天遇上秋天,http://em.21dtv.com/songs/60014586.mkv +童唱-地球是我们的家,http://em.21dtv.com/songs/60015113.mkv +阎维文-大千世界留美谈,http://em.21dtv.com/songs/60075075.mkv +陈丽媛-打起手鼓唱起歌,http://em.21dtv.com/songs/60122221.mkv +张靓颖-打起手鼓唱起歌,http://em.21dtv.com/songs/60087854.mkv +韩婷-打起手鼓唱起歌(演唱会),http://em.21dtv.com/songs/60086509.mkv +俞灏明-打起手鼓唱起歌,http://em.21dtv.com/songs/60013816.mkv +佚名-打起手鼓唱起歌,http://em.21dtv.com/songs/60013815.mkv +关牧村-打起手鼓唱起歌,http://em.21dtv.com/songs/60013814.mkv +刀郎-打起手鼓唱起歌,http://em.21dtv.com/songs/60013813.mkv +莫文蔚-打起手鼓唱起歌,http://em.21dtv.com/songs/60061124.mkv +尹子+乔迪-多情却被无情恼,http://em.21dtv.com/songs/60119453.mkv +晓月-多情却被无情伤,http://em.21dtv.com/songs/60068235.mkv +金婧-多情女人伤自己,http://em.21dtv.com/songs/60086536.mkv +民歌-刀切莲藕丝不断,http://em.21dtv.com/songs/60089386.mkv +FLUMPOOL-大切なものは君以外に见当たらなくて(日语),http://em.21dtv.com/songs/60084887.mkv +衣湿乐队-打群架,http://em.21dtv.com/songs/60107990.mkv +梁耀安+蒋文端-多情君瑞俏红娘,http://em.21dtv.com/songs/60016164.mkv +林晓勇-打起节拍跳起舞,http://em.21dtv.com/songs/60119710.mkv +曾心梅-多情多恨多怨叹(无原唱),http://em.21dtv.com/songs/60095582.mkv +张迈-冬去春来(演唱会),http://em.21dtv.com/songs/60070650.mkv +罗媛-大鹏展翅的地方,http://em.21dtv.com/songs/60130650.mkv +郑秀文-电PARTY-NON-STOP全新舞曲,http://em.21dtv.com/songs/60088774.mkv +伍天宇-等你在下雪那天,http://em.21dtv.com/songs/60015022.mkv +木禾-等你再久也愿意,http://em.21dtv.com/songs/60082831.mkv +亮剑-当你要走的时候,http://em.21dtv.com/songs/60082804.mkv +海生-带你一起去流浪,http://em.21dtv.com/songs/60117895.mkv +陈瑞-等你一起来看海,http://em.21dtv.com/songs/60126399.mkv +萧宝钟-等你一起看桃花,http://em.21dtv.com/songs/60085039.mkv +张金钰-等你一起看桃花,http://em.21dtv.com/songs/60064127.mkv +杨克强-等你一句我愿意,http://em.21dtv.com/songs/60015016.mkv +邝美云-当你拥抱我想哭,http://em.21dtv.com/songs/60014570.mkv +左小祖咒-当你需要的时候,http://em.21dtv.com/songs/60066948.mkv +司徒兰芳-带你潇洒带你嗨,http://em.21dtv.com/songs/60113325.mkv +欧阳朵-等你习惯我的好,http://em.21dtv.com/songs/60135469.mkv +李默然-对你我已死了心,http://em.21dtv.com/songs/60016056.mkv +罗嘉良+陈慧珊-对你我永不放弃,http://em.21dtv.com/songs/60016057.mkv +刘德华-等你忘了我是谁(无原唱),http://em.21dtv.com/songs/60015012.mkv +童安格-当你听见这首歌,http://em.21dtv.com/songs/60091801.mkv +高旭-对你太好也是错,http://em.21dtv.com/songs/60075256.mkv +欣哲-当你听到这首歌,http://em.21dtv.com/songs/60014566.mkv +许佳慧-对你说着我爱你,http://em.21dtv.com/songs/60063215.mkv +赵真-爹娘是我眼中佛,http://em.21dtv.com/songs/60110561.mkv +巩汉林-大年三十包饺子(演唱会),http://em.21dtv.com/songs/60014085.mkv +大海-爹娘日夜盼儿郎,http://em.21dtv.com/songs/60135085.mkv +李蕙敏-当男人爱上女人,http://em.21dtv.com/songs/60014543.mkv +孟茜-当你牵着我的手,http://em.21dtv.com/songs/60075113.mkv +叶俊华-带你去游公园省,http://em.21dtv.com/songs/60075093.mkv +佚名-等你情愿爱上我,http://em.21dtv.com/songs/60015007.mkv +认真-带你去看雪莲花,http://em.21dtv.com/songs/60115380.mkv +WEWE-带你去飞呀FLY_WITH_YOU,http://em.21dtv.com/songs/60090451.mkv +眉佳+周洁-当你每一次出现,http://em.21dtv.com/songs/60014560.mkv +阳帆-到那里找人爱我,http://em.21dtv.com/songs/60014760.mkv +蔡健雅-当你离开的时候,http://em.21dtv.com/songs/60014558.mkv +胡美仪-帝女花之雪中燕(戏曲),http://em.21dtv.com/songs/60093064.mkv +大张雨-等你还要等多久,http://em.21dtv.com/songs/60118485.mkv +长春虫子-对你还是放不下,http://em.21dtv.com/songs/60016046.mkv +佚名-对你怀念特别多,http://em.21dtv.com/songs/60016049.mkv +杨小萍-对你怀念特别多,http://em.21dtv.com/songs/60016048.mkv +余天-对你怀念特别多(无原唱),http://em.21dtv.com/songs/60016047.mkv +思念-等你回到我身边,http://em.21dtv.com/songs/60075156.mkv +冯文女-等你回到我身边,http://em.21dtv.com/songs/60014989.mkv +崔伟亮-等你给我一点爱,http://em.21dtv.com/songs/60069346.mkv +赵春天-带你飞呀带你醉,http://em.21dtv.com/songs/60110559.mkv +咻咻-等你返来阮身边,http://em.21dtv.com/songs/60014986.mkv +曾桂英-爹娘恩情大过天,http://em.21dtv.com/songs/60015386.mkv +杨子_相随-等你等在小桥头,http://em.21dtv.com/songs/60101118.mkv +孙露-等你等了那么久,http://em.21dtv.com/songs/60115842.mkv +闫凤梅-等你等了那么久,http://em.21dtv.com/songs/60108952.mkv +祁隆-等你等了那么久,http://em.21dtv.com/songs/60107095.mkv +晓依-等你等了那么久,http://em.21dtv.com/songs/60082828.mkv +孙艳-等你等了那么久,http://em.21dtv.com/songs/60071876.mkv +瑞雪+祈隆-等你等了那么久,http://em.21dtv.com/songs/60071875.mkv +祁隆+乐凡-等你等了那么久,http://em.21dtv.com/songs/60068220.mkv +红蔷薇-等你等了那么久,http://em.21dtv.com/songs/60068219.mkv +祁隆-等你等了那么久,http://em.21dtv.com/songs/60065934.mkv +三多-等你到老不放弃,http://em.21dtv.com/songs/60110814.mkv +赵擎-对你的感觉没变(无原唱),http://em.21dtv.com/songs/60016040.mkv +贡维特-等你等到眼泪流,http://em.21dtv.com/songs/60014981.mkv +张学友-等你等到我心痛,http://em.21dtv.com/songs/60014980.mkv +巫启贤-等你等到我心痛,http://em.21dtv.com/songs/60014979.mkv +高胜美-等你等到我心痛,http://em.21dtv.com/songs/60014978.mkv +张学友-等你等到我心痛(演唱会),http://em.21dtv.com/songs/60014977.mkv +胡小宝-等你等到花谢了,http://em.21dtv.com/songs/60113976.mkv +4 IN LOVE-等你打电话给我,http://em.21dtv.com/songs/60014969.mkv +李晓-对你的爱永不变,http://em.21dtv.com/songs/60112756.mkv +廖羽翘-待你差只想你怕,http://em.21dtv.com/songs/60014297.mkv +陈雅森+杨梓文祺-对你唱不完的歌,http://em.21dtv.com/songs/60109711.mkv +林刚+牛丹-对你唱不完的歌,http://em.21dtv.com/songs/60016034.mkv +蒋林刚-对你唱不完的歌,http://em.21dtv.com/songs/60016033.mkv +解晓东-多么自豪中国人,http://em.21dtv.com/songs/60092041.mkv +刘欢-得民心者得天下,http://em.21dtv.com/songs/60014801.mkv +徐沛东-得民心者得天下(演唱会),http://em.21dtv.com/songs/60014800.mkv +刘欢-得民心者得天下(演唱会),http://em.21dtv.com/songs/60014799.mkv +汪峰-多么完美的生活,http://em.21dtv.com/songs/60095204.mkv +林展逸-等妹团圆到奈年,http://em.21dtv.com/songs/60014951.mkv +刘若英-对面男生的房间,http://em.21dtv.com/songs/60016025.mkv +卢海潮+李池湘-刁蛮公主戆驸马,http://em.21dtv.com/songs/60015366.mkv +郑希怡-当玫瑰遇上真爱,http://em.21dtv.com/songs/60014539.mkv +何超仪-多么挂念你男人,http://em.21dtv.com/songs/60016129.mkv +慕荣-打马飞歌到草原,http://em.21dtv.com/songs/60128021.mkv +白致瑶-大路越走越宽阔,http://em.21dtv.com/songs/60117073.mkv +林志炫-断了线,http://em.21dtv.com/songs/60075242.mkv +翁汕汕-丢了心就丢了你,http://em.21dtv.com/songs/60080755.mkv +佚名-dont let the stars get in you,http://em.21dtv.com/songs/60001341.mkv +佚名-dont let the sun catch you crying,http://em.21dtv.com/songs/60001344.mkv +谭咏麟-dont let the sun catch you cr,http://em.21dtv.com/songs/60001343.mkv +GERRY+THE PACEMAKERS-dont let the sun catch you cr,http://em.21dtv.com/songs/60001342.mkv +越剧-地老天荒不愿分,http://em.21dtv.com/songs/60015099.mkv +谢霆锋-大路上有微生物(演唱会),http://em.21dtv.com/songs/60014063.mkv +潘越云-当泪水含在眼里,http://em.21dtv.com/songs/60107040.mkv +汪洋-大连是个好地方,http://em.21dtv.com/songs/60064097.mkv +童唱-冬老人与春姑娘,http://em.21dtv.com/songs/60015578.mkv +奥迪-大龄青年的爱情,http://em.21dtv.com/songs/60075067.mkv +赵小兵-大龄青年的爱情,http://em.21dtv.com/songs/60071855.mkv +晓月-丢了你我怎么过,http://em.21dtv.com/songs/60104172.mkv +远方-丢了你丢了自己,http://em.21dtv.com/songs/60015479.mkv +哆啦队-哆啦a梦主题歌,http://em.21dtv.com/songs/60016243.mkv +哆啦队-哆啦a梦猫猫舞(无原唱),http://em.21dtv.com/songs/60016242.mkv +哆啦队-哆啦a梦过圣诞(无原唱),http://em.21dtv.com/songs/60016241.mkv +哆啦队-哆啦a梦大游行(无原唱),http://em.21dtv.com/songs/60016240.mkv +邹志杰-丢了灵魂的羔羊,http://em.21dtv.com/songs/60134294.mkv +邹志杰-丢了灵魂的羔羊,http://em.21dtv.com/songs/60131876.mkv +左艺-丢了灵魂的羔羊,http://em.21dtv.com/songs/60122693.mkv +张津涤-当泪流干的时候,http://em.21dtv.com/songs/60014537.mkv +格杨-当离开我的时候,http://em.21dtv.com/songs/60075111.mkv +谭咏麟-邓丽君经典组曲,http://em.21dtv.com/songs/60015065.mkv +王秀芬-蝶恋花-答李淑一,http://em.21dtv.com/songs/60015414.mkv +评弹-蝶恋花-答李淑一,http://em.21dtv.com/songs/60015413.mkv +程桂兰-蝶恋花-答李淑一,http://em.21dtv.com/songs/60015412.mkv +花哥-丢了工作丢了你,http://em.21dtv.com/songs/60080562.mkv +佚名-德利果的小夜曲,http://em.21dtv.com/songs/60014811.mkv +王祖蓝-跌落凡间的天使,http://em.21dtv.com/songs/60015390.mkv +张艳君-大理茶花等你来,http://em.21dtv.com/songs/60111087.mkv +罗逻圣-刀郎不能没有你,http://em.21dtv.com/songs/60117971.mkv +段千寻-断了爱情的念头,http://em.21dtv.com/songs/60015925.mkv +王建芳-丢了爱情丢了你,http://em.21dtv.com/songs/60098639.mkv +高信-丢了爱情丢了你,http://em.21dtv.com/songs/60066965.mkv +儿歌-打开蚊帐烂训猪,http://em.21dtv.com/songs/60092301.mkv +高山林-打开天窗说亮话,http://em.21dtv.com/songs/60013794.mkv +甜美真+蓝颜-点开爱情的穴道,http://em.21dtv.com/songs/60080723.mkv +周笔畅-大家一起喜羊羊,http://em.21dtv.com/songs/60014030.mkv +佚名-大家一起恰恰恰,http://em.21dtv.com/songs/60014029.mkv +李亮辰-赌局,http://em.21dtv.com/songs/60118659.mkv +张可儿-DJ微信惹的祸,http://em.21dtv.com/songs/60102207.mkv +江美琪-东京铁塔的幸福,http://em.21dtv.com/songs/60015540.mkv +储兰兰-杜鹃山山深林密,http://em.21dtv.com/songs/60075237.mkv +简弘亦-第九十九滴眼泪,http://em.21dtv.com/songs/60117111.mkv +八三夭-刀剑如梦2.0,http://em.21dtv.com/songs/60123639.mkv +李青+凡间精灵-杜鹃那山满坡红,http://em.21dtv.com/songs/60070655.mkv +花鼓戏-定将你家法制裁,http://em.21dtv.com/songs/60090155.mkv +郑超-当寂寞遇到寂寞,http://em.21dtv.com/songs/60014534.mkv +童唱-大家来做广播操,http://em.21dtv.com/songs/60014020.mkv +宋祖英-侗锦芦笙和兰花,http://em.21dtv.com/songs/60015674.mkv +枫桥-东江河源万绿水,http://em.21dtv.com/songs/60064142.mkv +郑锦昌+刘君儿-大家欢乐接财神,http://em.21dtv.com/songs/60093329.mkv +林俊杰-第几个100天,http://em.21dtv.com/songs/60015186.mkv +张玮-侗家姑娘爱唱歌,http://em.21dtv.com/songs/60104139.mkv +巧千金-大家过个开心年,http://em.21dtv.com/songs/60106805.mkv +巧千金-大家过个开心年,http://em.21dtv.com/songs/60075061.mkv +覃元隆-大家都是有钱人,http://em.21dtv.com/songs/60107204.mkv +四个女生-大家都说新年好,http://em.21dtv.com/songs/60090862.mkv +吴依琳-大家都说新年到,http://em.21dtv.com/songs/60075059.mkv +彭靖惠-大家都说我爱你,http://em.21dtv.com/songs/60013997.mkv +佚名-大江东去浪淘沙,http://em.21dtv.com/songs/60014036.mkv +群星-大吉大利中国年,http://em.21dtv.com/songs/60075057.mkv +王麟-大吉大利中国年,http://em.21dtv.com/songs/60013994.mkv +牛欣欣+张翘+刘姝辰-大吉大利中国年,http://em.21dtv.com/songs/60064096.mkv +华语群星-大吉大利大鸡腿,http://em.21dtv.com/songs/60132268.mkv +詹少君-待将东阁迎春开,http://em.21dtv.com/songs/60014296.mkv +本多RURU-冬季的爱情电影,http://em.21dtv.com/songs/60015573.mkv +群星-大家唱首新年歌,http://em.21dtv.com/songs/60013996.mkv +影视歌曲-但见春归人不归,http://em.21dtv.com/songs/60087867.mkv +王菀之-don’t it make my brown eyes blue(演唱会),http://em.21dtv.com/songs/60082139.mkv +佚名-dont it make my brown eyes bl,http://em.21dtv.com/songs/60001330.mkv +佚名-do i have to say the words,http://em.21dtv.com/songs/60001257.mkv +T.BELL-W.HART-didnt i blow your mind this t,http://em.21dtv.com/songs/60001233.mkv +黄西田-打虎捉贼亲兄弟,http://em.21dtv.com/songs/60013778.mkv +牟青-大河涨水沙浪沙,http://em.21dtv.com/songs/60091679.mkv +周京-电魂之光明使者,http://em.21dtv.com/songs/60087572.mkv +韩延文-大红枣儿甜又香,http://em.21dtv.com/songs/60013977.mkv +佚名-大红枣儿送亲人,http://em.21dtv.com/songs/60013976.mkv +佚名-大海一样的深情,http://em.21dtv.com/songs/60013962.mkv +关心妍-等候耶和华的人,http://em.21dtv.com/songs/60068217.mkv +民歌-戴花要戴大红花,http://em.21dtv.com/songs/60089389.mkv +苏仨-大黄老鼠皮卡丘,http://em.21dtv.com/songs/60071853.mkv +陈明-灯火阑栅处有你,http://em.21dtv.com/songs/60088877.mkv +陈明-灯火阑珊处有你,http://em.21dtv.com/songs/60014826.mkv +佚名-大海航行靠舵手,http://em.21dtv.com/songs/60013960.mkv +贾世骏-大海航行靠舵手,http://em.21dtv.com/songs/60013959.mkv +阎维文-大红公鸡毛腿腿,http://em.21dtv.com/songs/60013975.mkv +佚名-大红灯笼高高挂,http://em.21dtv.com/songs/60013972.mkv +王菲菲-大红绸子飘起来,http://em.21dtv.com/songs/60013970.mkv +苟乃鹏-动画城2016,http://em.21dtv.com/songs/60123109.mkv +褚永祥-打工谣2013,http://em.21dtv.com/songs/60093825.mkv +吴琼-大哥休要泪淋淋(黄梅戏),http://em.21dtv.com/songs/60090814.mkv +李俊熙-当感情已成习惯,http://em.21dtv.com/songs/60103350.mkv +张翘+丁嘉林-打鼓敲锣又唱歌,http://em.21dtv.com/songs/60075026.mkv +张桂凤+吕瑞英-刀光剑影视等闲,http://em.21dtv.com/songs/60014685.mkv +凌志辉-当孤独遇到寂寞,http://em.21dtv.com/songs/60064113.mkv +姚绍华-的哥的姐动起来,http://em.21dtv.com/songs/60014816.mkv +十三狼-的哥的姐不容易,http://em.21dtv.com/songs/60105663.mkv +丁晓红-打个电话给妈妈(演唱会),http://em.21dtv.com/songs/60013765.mkv +者建周-打歌场上真好玩,http://em.21dtv.com/songs/60075025.mkv +寒月-东莞不相信眼泪,http://em.21dtv.com/songs/60097828.mkv +越剧-洞房悄悄静幽幽,http://em.21dtv.com/songs/60015675.mkv +文儿-大风来了浪一浪,http://em.21dtv.com/songs/60132490.mkv +KIM CARNES+KENNY ROGERS-dont fall in love with a drea,http://em.21dtv.com/songs/60001322.mkv +佚名-东方风来满眼春,http://em.21dtv.com/songs/60015505.mkv +音乐走廊+歌一生-等风等雨我等你,http://em.21dtv.com/songs/60133082.mkv +花树-等风等雨我等你,http://em.21dtv.com/songs/60132829.mkv +音乐走廊+歌一生-等风等雨我等你,http://em.21dtv.com/songs/60130888.mkv +李泽坚-大风大浪大步走,http://em.21dtv.com/songs/60075048.mkv +张学友-定风波,http://em.21dtv.com/songs/60125502.mkv +黄愿亭-窦娥冤-衣锦荣归,http://em.21dtv.com/songs/60015765.mkv +Che'Nelle-Destiny,http://em.21dtv.com/songs/60134655.mkv +Lovelyz-Destiny,http://em.21dtv.com/songs/60122395.mkv +喜多村英梨-Destiny,http://em.21dtv.com/songs/60105716.mkv +五月天-第二人生小丫头,http://em.21dtv.com/songs/60065939.mkv +佚名-dont expect me to be your fri,http://em.21dtv.com/songs/60001321.mkv +SONAMOO-Deja Vu,http://em.21dtv.com/songs/60115635.mkv +Ronan Parke-Defined,http://em.21dtv.com/songs/60124980.mkv +卓依婷-蝶儿蝶儿满天飞,http://em.21dtv.com/songs/60015399.mkv +高胜美-蝶儿蝶儿满天飞,http://em.21dtv.com/songs/60015398.mkv +郭颂-大顶子山高又高,http://em.21dtv.com/songs/60013911.mkv +陈雷-打断嘴齿含血吞,http://em.21dtv.com/songs/60013761.mkv +韩宝仪-滴滴眼泪都是爱,http://em.21dtv.com/songs/60015076.mkv +郁钧剑-党的心战士的心,http://em.21dtv.com/songs/60014678.mkv +人声合唱团-等待幸福来敲门,http://em.21dtv.com/songs/60128760.mkv +付鹰-等待,http://em.21dtv.com/songs/60128765.mkv +群星-等待,http://em.21dtv.com/songs/60126061.mkv +韩磊+潘倩倩+张月+赵金江-等待,http://em.21dtv.com/songs/60124695.mkv +黄绮珊+金仁馨+申红梅+WEAW-等待,http://em.21dtv.com/songs/60123406.mkv +杨峰-到底我该怎么做,http://em.21dtv.com/songs/60121801.mkv +范逸臣-等到天晴离开你,http://em.21dtv.com/songs/60014931.mkv +吕雯-到底是为了什么,http://em.21dtv.com/songs/60071869.mkv +秀才-到底是谁伤了谁,http://em.21dtv.com/songs/60069340.mkv +李菓-到底算是谁的错,http://em.21dtv.com/songs/60085031.mkv +李果-到底算是谁的错,http://em.21dtv.com/songs/60064118.mkv +[Group] +groupName=十六万歌曲MV等 - 94 +卲星颖-对的时间对的人,http://em.21dtv.com/songs/60130147.mkv +刘子琪-待到山花烂漫时,http://em.21dtv.com/songs/60132234.mkv +龙晓飞-到底让我等多久,http://em.21dtv.com/songs/60014741.mkv +童丽-到底人间欢乐多,http://em.21dtv.com/songs/60075132.mkv +佚名-到底人间欢乐多,http://em.21dtv.com/songs/60014742.mkv +李逸-到底你在想什么,http://em.21dtv.com/songs/60091376.mkv +红蔷薇-淡淡女人淡淡忧,http://em.21dtv.com/songs/60121994.mkv +李奇骆-到底你爱不爱我(无原唱),http://em.21dtv.com/songs/60014740.mkv +黄依群-独对明月诉衷情,http://em.21dtv.com/songs/60015782.mkv +保赛飞-独对明月诉衷情,http://em.21dtv.com/songs/60015781.mkv +周峰-等到明年这一天(演唱会),http://em.21dtv.com/songs/60075151.mkv +黄盛典+陈燕鸣-爹爹留下无价宝,http://em.21dtv.com/songs/60090360.mkv +郑国锋-大道理我们都懂,http://em.21dtv.com/songs/60097812.mkv +程响-等到来生再相遇,http://em.21dtv.com/songs/60080923.mkv +程响-等到来生再相遇(舞曲版),http://em.21dtv.com/songs/60014928.mkv +丁童-等到来生再相遇,http://em.21dtv.com/songs/60068215.mkv +儿歌-朵朵葵花向阳开,http://em.21dtv.com/songs/60090641.mkv +郑伊健-动地惊天爱恋过(演唱会),http://em.21dtv.com/songs/60015649.mkv +李青+怡然-等到菊花黄又黄,http://em.21dtv.com/songs/60071873.mkv +李敏华-刁斗江风醉柳营(戏曲),http://em.21dtv.com/songs/60092805.mkv +楼宏章-等到花谢就离开,http://em.21dtv.com/songs/60070630.mkv +冯晓泉-等到花开那一天,http://em.21dtv.com/songs/60014926.mkv +八大巨星-大地回春庆团圆,http://em.21dtv.com/songs/60075044.mkv +卓依婷-大地回春满庭芳,http://em.21dtv.com/songs/60013906.mkv +牛欣欣-大地回春满庭芳,http://em.21dtv.com/songs/60013905.mkv +李铁梅-爹爹给我无价宝,http://em.21dtv.com/songs/60089972.mkv +张源-等待飞翔的候鸟,http://em.21dtv.com/songs/60109321.mkv +邓福如-邓大福是一只猫,http://em.21dtv.com/songs/60112291.mkv +佚名-党的恩情万年长,http://em.21dtv.com/songs/60014677.mkv +阎维文-都达尔和玛丽亚,http://em.21dtv.com/songs/60015680.mkv +李玉山-到底到底为什么,http://em.21dtv.com/songs/60132561.mkv +李玉山-到底到底为什么,http://em.21dtv.com/songs/60097865.mkv +庄心妍-到底爱错在哪里,http://em.21dtv.com/songs/60098328.mkv +无名-貂禅已随清风去,http://em.21dtv.com/songs/60087925.mkv +万山红-貂蝉已随清风去,http://em.21dtv.com/songs/60015368.mkv +游鸿明-当刺猬爱上玫瑰,http://em.21dtv.com/songs/60014523.mkv +LA四贱客-大错特错不要来,http://em.21dtv.com/songs/60013875.mkv +黑羽-当初谁说谁爱我,http://em.21dtv.com/songs/60122311.mkv +冉青霞-当初是你背叛我,http://em.21dtv.com/songs/60103899.mkv +田正-多彩固阳欢迎你,http://em.21dtv.com/songs/60134022.mkv +佚名-稻柴堆里落起身,http://em.21dtv.com/songs/60014785.mkv +詹雅雯-当作不曾爱过你(无原唱),http://em.21dtv.com/songs/60014661.mkv +谭咏麟-电波中年绝食记(演唱会),http://em.21dtv.com/songs/60015330.mkv +刘牧-挡不住你的感觉,http://em.21dtv.com/songs/60085029.mkv +江蕙-点不着的番仔火,http://em.21dtv.com/songs/60015295.mkv +李建科-当兵要有当兵样,http://em.21dtv.com/songs/60120627.mkv +佚名-东边太阳西边雨,http://em.21dtv.com/songs/60015500.mkv +RAIN-躲避太阳的方法,http://em.21dtv.com/songs/60016248.mkv +SHANIA TWAIN-dont be stupid you know i lov,http://em.21dtv.com/songs/60001302.mkv +佚名-大别山上杜鹃开,http://em.21dtv.com/songs/60013852.mkv +卢星灿-东北神曲花姑娘,http://em.21dtv.com/songs/60110903.mkv +AT17-电波少年绝食记,http://em.21dtv.com/songs/60015329.mkv +何以奇-对不起我很固执,http://em.21dtv.com/songs/60126600.mkv +回音哥-对不起我还爱你,http://em.21dtv.com/songs/60066975.mkv +杨川平-对不起我的最爱,http://em.21dtv.com/songs/60015999.mkv +凌志辉-对不起忘不了你,http://em.21dtv.com/songs/60015987.mkv +李心洁-对不起我不爱你,http://em.21dtv.com/songs/60015996.mkv +陈浩民-对不起请原谅我,http://em.21dtv.com/songs/60015986.mkv +吴依琳-东边敲锣西边响,http://em.21dtv.com/songs/60075210.mkv +卓依婷-东边敲锣西边响,http://em.21dtv.com/songs/60015499.mkv +汤非-当兵前的那晚上,http://em.21dtv.com/songs/60103411.mkv +宋大官-对不起爱上了你,http://em.21dtv.com/songs/60099952.mkv +佚名-打败美帝野心狼,http://em.21dtv.com/songs/60013745.mkv +佚名-冬不拉我的伙伴,http://em.21dtv.com/songs/60015569.mkv +戴玉强-冬不拉我的伙伴,http://em.21dtv.com/songs/60064144.mkv +张宇-等不及要对你说,http://em.21dtv.com/songs/60014876.mkv +汤子星-当兵就要当好兵,http://em.21dtv.com/songs/60114640.mkv +李建科-当兵就是这么爽,http://em.21dtv.com/songs/60121772.mkv +范冬青-当兵就是这么爽,http://em.21dtv.com/songs/60114005.mkv +李建科-当兵就是那么帅,http://em.21dtv.com/songs/60120626.mkv +孟小童-当兵就是那么帅,http://em.21dtv.com/songs/60086521.mkv +小沈阳+沈春阳-东北二人转转歌,http://em.21dtv.com/songs/60104962.mkv +小乔-得不到总是最好,http://em.21dtv.com/songs/60103223.mkv +周子寒-等不到我爱的你,http://em.21dtv.com/songs/60014872.mkv +佚名-等不到我爱的你,http://em.21dtv.com/songs/60014871.mkv +伍华-读不懂你的忧伤,http://em.21dtv.com/songs/60103074.mkv +欣哲-得不到你的温柔,http://em.21dtv.com/songs/60068213.mkv +尤雅-得不到你的爱情,http://em.21dtv.com/songs/60087721.mkv +曾心梅-动不动就说爱我,http://em.21dtv.com/songs/60015647.mkv +蔡幸娟-动不动就说爱我,http://em.21dtv.com/songs/60015646.mkv +安吉-东北吃货进行曲,http://em.21dtv.com/songs/60132376.mkv +陈零九-当爱只剩下期待,http://em.21dtv.com/songs/60080457.mkv +BewhY+朴宰范-Day Day,http://em.21dtv.com/songs/60129892.mkv +BLUE ENCOUNT-DAY×DAY,http://em.21dtv.com/songs/60111587.mkv +孔小吟-多爱我一点就好,http://em.21dtv.com/songs/60125378.mkv +吕继宏-党啊我想对你说,http://em.21dtv.com/songs/60082810.mkv +郑源-当爱失去了默契,http://em.21dtv.com/songs/60075107.mkv +DL组合-Darling,http://em.21dtv.com/songs/60103769.mkv +Girl's Day-Darling,http://em.21dtv.com/songs/60101771.mkv +沙靖杰-当爱情走了以后,http://em.21dtv.com/songs/60061137.mkv +张冬玲-当爱情变成习惯,http://em.21dtv.com/songs/60069334.mkv +殷秀梅-党啊亲爱的妈妈,http://em.21dtv.com/songs/60014676.mkv +佚名-党啊亲爱的妈妈,http://em.21dtv.com/songs/60014675.mkv +水晶乐坊-党啊亲爱的妈妈,http://em.21dtv.com/songs/60014674.mkv +宇桐非-当爱还没说出口,http://em.21dtv.com/songs/60014488.mkv +孙淑媚-等爱的人等无人,http://em.21dtv.com/songs/60014860.mkv +代理仁-当爱的方式改变,http://em.21dtv.com/songs/60068212.mkv +陈浩民+马梓涵-当爱不在我身边,http://em.21dtv.com/songs/60014484.mkv +姚亦晴-Da Bomb,http://em.21dtv.com/songs/60104911.mkv +李安豪-大澳爱上威尼斯,http://em.21dtv.com/songs/60097813.mkv +Juice Juice-初めてを経験中,http://em.21dtv.com/songs/60101777.mkv +叶佳修-赤足走在田埂上,http://em.21dtv.com/songs/60114436.mkv +佚名-赤足走在田埂上,http://em.21dtv.com/songs/60012828.mkv +张德兰+区瑞强-唱只新歌贺新年,http://em.21dtv.com/songs/60092603.mkv +区瑞强+张德兰-唱只新歌贺新年,http://em.21dtv.com/songs/60092370.mkv +张德兰+区瑞强-唱只流行贺新年,http://em.21dtv.com/songs/60012365.mkv +李池湘-唱只流行贺新年,http://em.21dtv.com/songs/60012364.mkv +孟楠-存在,http://em.21dtv.com/songs/60125396.mkv +余家辉-存在,http://em.21dtv.com/songs/60125132.mkv +iKON-存在,http://em.21dtv.com/songs/60124901.mkv +谭维维+范政-存在,http://em.21dtv.com/songs/60114077.mkv +巨敏-唱支山歌给党听,http://em.21dtv.com/songs/60125457.mkv +谭维维+孟慧圆-唱支山歌给党听,http://em.21dtv.com/songs/60112968.mkv +景仪-唱支山歌给党听,http://em.21dtv.com/songs/60089925.mkv +佚名-唱支山歌给党听,http://em.21dtv.com/songs/60012363.mkv +才旦卓玛-唱支山歌给党听,http://em.21dtv.com/songs/60012362.mkv +吴介贤-唱支山歌给党听(演唱会),http://em.21dtv.com/songs/60071827.mkv +金波-唱支山歌给党听(演唱会),http://em.21dtv.com/songs/60062521.mkv +刘玮-穿着裙子去边疆,http://em.21dtv.com/songs/60090722.mkv +瑞雪-唱着情歌伤着泪,http://em.21dtv.com/songs/60071829.mkv +祁隆+孟小笛-唱着情歌流着泪,http://em.21dtv.com/songs/60125986.mkv +孟小笛+祁隆-唱着情歌流着泪,http://em.21dtv.com/songs/60111814.mkv +瑞雪-唱着情歌流着泪,http://em.21dtv.com/songs/60074908.mkv +祁隆-唱着情歌流着泪,http://em.21dtv.com/songs/60074907.mkv +镜喜-唱着情歌流着泪,http://em.21dtv.com/songs/60065894.mkv +祁隆-唱着情歌流眼泪,http://em.21dtv.com/songs/60096420.mkv +西部牛仔-唱着情歌回草原,http://em.21dtv.com/songs/60071828.mkv +庞龙-藏在记忆里的歌(故事情节),http://em.21dtv.com/songs/60101342.mkv +佚名-乘着歌声的翅膀,http://em.21dtv.com/songs/60012649.mkv +黄英-乘着歌声的翅膀,http://em.21dtv.com/songs/60012648.mkv +佚名-乘着歌声的翅膀(中三),http://em.21dtv.com/songs/60012647.mkv +詹雅雯-车站的最后一夜,http://em.21dtv.com/songs/60012472.mkv +玄乐队-城中村的那些年,http://em.21dtv.com/songs/60080020.mkv +何家伟+吴玲儿-潮州八景好胜地,http://em.21dtv.com/songs/60092253.mkv +郎朗+霍尊+果敢-春宴,http://em.21dtv.com/songs/60120022.mkv +家园-草原我心中的歌,http://em.21dtv.com/songs/60116731.mkv +胡丹丹-唱一晚伤情的歌,http://em.21dtv.com/songs/60129507.mkv +瑶瑶-穿越网络的爱恋,http://em.21dtv.com/songs/60121967.mkv +TWINS-can you tell me what this is,http://em.21dtv.com/songs/60000801.mkv +郭欢-草原是我梦的家,http://em.21dtv.com/songs/60105433.mkv +于全莉-草原上那一抹红,http://em.21dtv.com/songs/60116528.mkv +韩晓辉-草原上那一抹红,http://em.21dtv.com/songs/60117372.mkv +初晨-草原上美丽的梦,http://em.21dtv.com/songs/60125228.mkv +萧亚轩-穿越时空遇见你,http://em.21dtv.com/songs/60013116.mkv +陈慧琳-穿越时空遇见你,http://em.21dtv.com/songs/60013115.mkv +陈瑞-穿越时空的爱情,http://em.21dtv.com/songs/60095357.mkv +易欣-穿越时空的爱情,http://em.21dtv.com/songs/60013114.mkv +潘美辰-穿越时空的爱恋,http://em.21dtv.com/songs/60013113.mkv +自由发挥-穿越时空爱上你,http://em.21dtv.com/songs/60074979.mkv +RTA少年组-穿越时空爱上你,http://em.21dtv.com/songs/60074978.mkv +樱花姐妹-唱一首故乡的月,http://em.21dtv.com/songs/60012355.mkv +佚名-唱一首故乡的月,http://em.21dtv.com/songs/60012354.mkv +诚峰-唱一首歌给自己,http://em.21dtv.com/songs/60122121.mkv +熊七梅-草原上的乌兰娜,http://em.21dtv.com/songs/60012091.mkv +朱永飞-草原上的山杏花,http://em.21dtv.com/songs/60068158.mkv +王淼-草原上的情哥哥,http://em.21dtv.com/songs/60071818.mkv +雪山人组合-草原上的格桑拉,http://em.21dtv.com/songs/60012089.mkv +涓子-草原深处有人家,http://em.21dtv.com/songs/60062535.mkv +谢世超-唱一首爱你的歌,http://em.21dtv.com/songs/60084972.mkv +韩雷-草原请你来做客,http://em.21dtv.com/songs/60095236.mkv +何乌兰-草原请你留下来,http://em.21dtv.com/songs/60099745.mkv +段红+Jason-穿越千年的眼泪,http://em.21dtv.com/songs/60109484.mkv +范文芳-趁一切还来得及,http://em.21dtv.com/songs/60012536.mkv +易桀齐-趁一切还来得及(演唱会),http://em.21dtv.com/songs/60012535.mkv +苏打绿+PRISCILLA AHN-从一片落叶开始,http://em.21dtv.com/songs/60081683.mkv +姜佑泽-抽烟女人的黑夜,http://em.21dtv.com/songs/60115778.mkv +大北农兄弟-财源茂盛家兴旺,http://em.21dtv.com/songs/60118477.mkv +德德玛-草原美丽我的家,http://em.21dtv.com/songs/60089888.mkv +钟彩媚-茶叶见水就开心,http://em.21dtv.com/songs/60129691.mkv +王熹蛮-此用户下落不明,http://em.21dtv.com/songs/60111279.mkv +李小龙-草原花我的姑娘,http://em.21dtv.com/songs/60069288.mkv +许耀奇-草原姑娘我爱你,http://em.21dtv.com/songs/60074853.mkv +李度-尘缘+鬼迷心窍,http://em.21dtv.com/songs/60097830.mkv +牛欣欣+刘姝辰-财源广进运气好,http://em.21dtv.com/songs/60074823.mkv +群星-财源滚滚天上来,http://em.21dtv.com/songs/60088469.mkv +无名-财源滚滚天上来,http://em.21dtv.com/songs/60087926.mkv +牛欣欣+刘姝辰-财源滚滚好运到,http://em.21dtv.com/songs/60074825.mkv +陈依媛+陈瑶梓-财源滚滚好运到,http://em.21dtv.com/songs/60074824.mkv +井冈山-创业更比守业难,http://em.21dtv.com/songs/60087266.mkv +黄淑蔓+英仁合唱团-差一点我们会飞,http://em.21dtv.com/songs/60126483.mkv +520女子演唱组-从现在开始爱你,http://em.21dtv.com/songs/60013587.mkv +袁雪儿-丑小鸭与白天鹅,http://em.21dtv.com/songs/60084987.mkv +吉克隽逸-晨曦,http://em.21dtv.com/songs/60125272.mkv +贾巴阿叁-晨曦,http://em.21dtv.com/songs/60118929.mkv +王麟-常相随,http://em.21dtv.com/songs/60106148.mkv +佚名-沉香扇-你我鸾凤,http://em.21dtv.com/songs/60012521.mkv +李萍-春夏秋冬四季天,http://em.21dtv.com/songs/60013361.mkv +伍佰-春夏秋冬的气候,http://em.21dtv.com/songs/60090586.mkv +云菲菲-春夏秋冬的爱恋,http://em.21dtv.com/songs/60109130.mkv +林俊吉-痴心就是我的命,http://em.21dtv.com/songs/60135421.mkv +梁朝伟-趁幸福毁灭之前,http://em.21dtv.com/songs/60012534.mkv +安神-晨曦的金色曙光,http://em.21dtv.com/songs/60087684.mkv +秦博-从小到大的兄弟,http://em.21dtv.com/songs/60123055.mkv +祁隆-从未这样心动过,http://em.21dtv.com/songs/60096419.mkv +陈展鹏+胡定欣-从未知道你最好,http://em.21dtv.com/songs/60126380.mkv +王洛宾-唱完月亮唱太阳,http://em.21dtv.com/songs/60091717.mkv +黄新德-臣闻书生李兆廷,http://em.21dtv.com/songs/60012482.mkv +吕方-从未如此深爱过,http://em.21dtv.com/songs/60013584.mkv +吕方-从未如此深爱过(演唱会),http://em.21dtv.com/songs/60013583.mkv +许佳慧-从未开口的秘密,http://em.21dtv.com/songs/60134215.mkv +王心凌-从未到过的地方,http://em.21dtv.com/songs/60081187.mkv +朴叙俊-成为彼此的眼泪,http://em.21dtv.com/songs/60132520.mkv +孝琳-成为彼此的眼泪,http://em.21dtv.com/songs/60131342.mkv +周育婵-春天行入我心内(无原唱),http://em.21dtv.com/songs/60013335.mkv +刘和刚-苍天下的太阳路(演唱会),http://em.21dtv.com/songs/60012026.mkv +蒋敦豪-窗台,http://em.21dtv.com/songs/60129569.mkv +沈菁-春天 我对你说,http://em.21dtv.com/songs/60098567.mkv +王若琳-can t take my eyes off you,http://em.21dtv.com/songs/60000788.mkv +吴昊-春天是个好季节,http://em.21dtv.com/songs/60135015.mkv +谢莉婷+叶诺帆-春天牵着咱的手,http://em.21dtv.com/songs/60123182.mkv +谢莉婷+叶诺帆-春天牵着咱的手,http://em.21dtv.com/songs/60117235.mkv +周华健+苏慧伦-coffee tea or me我爱你,http://em.21dtv.com/songs/60000968.mkv +于树骅配歌-春天年年到人间,http://em.21dtv.com/songs/60013349.mkv +佚名-春天年年到人间,http://em.21dtv.com/songs/60013348.mkv +陈盈洁+沈孟生-春天哪会这呢寒,http://em.21dtv.com/songs/60096019.mkv +洪荣宏-春天哪会这呢寒,http://em.21dtv.com/songs/60095790.mkv +佚名-春天哪会这呢寒,http://em.21dtv.com/songs/60013347.mkv +吴汉书-春天哪会这呢寒,http://em.21dtv.com/songs/60004389.mkv +麦兜-春田花花幼稚园,http://em.21dtv.com/songs/60082750.mkv +麦兜-春田花花同学会,http://em.21dtv.com/songs/60082749.mkv +罗时丰-春天过了是冬天,http://em.21dtv.com/songs/60095855.mkv +罗时丰+江念庭-春天过了是冬天(无原唱),http://em.21dtv.com/songs/60095850.mkv +江念庭+罗时丰-春天过了是冬天(无原唱),http://em.21dtv.com/songs/60095716.mkv +七仙女-春天带来新希望,http://em.21dtv.com/songs/60013320.mkv +龙飘飘-春天带来了温暖,http://em.21dtv.com/songs/60064076.mkv +成铭-春天的爱情故事,http://em.21dtv.com/songs/60084994.mkv +德德玛-苍天搬的阿拉善,http://em.21dtv.com/songs/60091214.mkv +齐峰-苍天般的阿拉善,http://em.21dtv.com/songs/60089082.mkv +阿日布杰+哈斯+阿箃娜-苍天班的阿拉善(演唱会),http://em.21dtv.com/songs/60084957.mkv +莫尔根-苍天般的阿拉善,http://em.21dtv.com/songs/60082694.mkv +王凤霞-唱上一支幸福歌,http://em.21dtv.com/songs/60130570.mkv +阳光天使-财神爷爷你最好,http://em.21dtv.com/songs/60071813.mkv +楼兰-财神要你发大财,http://em.21dtv.com/songs/60132646.mkv +覃晔-城市越大越孤单,http://em.21dtv.com/songs/60086491.mkv +龙庚-沧桑情人调色版,http://em.21dtv.com/songs/60093848.mkv +霍正奇-曾是情人的朋友(无原唱),http://em.21dtv.com/songs/60017441.mkv +周德华-唱首情歌自己听,http://em.21dtv.com/songs/60132298.mkv +暴林-唱首情歌送给你,http://em.21dtv.com/songs/60105113.mkv +庄学忠-唱首情歌给谁听,http://em.21dtv.com/songs/60012343.mkv +李逸-唱首情歌给谁听,http://em.21dtv.com/songs/60012342.mkv +贺一航+张冬玲-唱首情歌给你听,http://em.21dtv.com/songs/60105386.mkv +胡斌-唱首情歌给草原,http://em.21dtv.com/songs/60127303.mkv +朱永飞-唱首情歌给草原,http://em.21dtv.com/songs/60116885.mkv +陈宏斌-唱首情歌给草原,http://em.21dtv.com/songs/60112346.mkv +白玛多吉-唱首情歌给草原(风景),http://em.21dtv.com/songs/60102576.mkv +朱永飞-唱首情歌给草原,http://em.21dtv.com/songs/60074903.mkv +乌兰托娅-唱首情歌给草原,http://em.21dtv.com/songs/60012341.mkv +胡斌-唱首情歌给草原,http://em.21dtv.com/songs/60064051.mkv +枫舞-唱首情歌给爱人,http://em.21dtv.com/songs/60104250.mkv +贺雅-城市女孩亮眼睛,http://em.21dtv.com/songs/60089486.mkv +钟亚华-从什么时候开始,http://em.21dtv.com/songs/60108074.mkv +黄迎迎-从什么时候开始,http://em.21dtv.com/songs/60075013.mkv +大张伟-唱什么都红不了,http://em.21dtv.com/songs/60099911.mkv +群星-财神老爷下凡了,http://em.21dtv.com/songs/60088470.mkv +卓依婷-财神来到我家门,http://em.21dtv.com/songs/60086480.mkv +牛欣欣-财神来到我家门,http://em.21dtv.com/songs/60064029.mkv +齐雅-城市里的女人啊,http://em.21dtv.com/songs/60128645.mkv +许茹芸-此时快乐的代价,http://em.21dtv.com/songs/60013453.mkv +叶万钧-穿上军装那一天,http://em.21dtv.com/songs/60013105.mkv +袁咏琳-唱首歌因为思念,http://em.21dtv.com/songs/60066908.mkv +佚名-苍山歌声永不落,http://em.21dtv.com/songs/60012024.mkv +熊立红-唱首歌儿给爸妈,http://em.21dtv.com/songs/60107052.mkv +王心凌-陈淑芬与林志豪(动画),http://em.21dtv.com/songs/60102530.mkv +王心凌-陈淑芬与林志豪,http://em.21dtv.com/songs/60102529.mkv +牛欣欣+刘姝辰-财神封个大红包,http://em.21dtv.com/songs/60074821.mkv +娶+牛-擦身而过的幸福,http://em.21dtv.com/songs/60011859.mkv +群星-茶室春秋+舞池,http://em.21dtv.com/songs/60097871.mkv +G Dragon-Crooked,http://em.21dtv.com/songs/60120211.mkv +林忆莲+伦永亮-此情只待成追忆(演唱会),http://em.21dtv.com/songs/60013450.mkv +牛欣欣+周张弛-唱起迎春歌谣来,http://em.21dtv.com/songs/60074902.mkv +赵小兵-唱起小薇想起你,http://em.21dtv.com/songs/60064050.mkv +田跃君-唱起小三想起你,http://em.21dtv.com/songs/60074901.mkv +佚名-痴情下场是什么,http://em.21dtv.com/songs/60012736.mkv +MG女团-传奇,http://em.21dtv.com/songs/60124947.mkv +刘德华-从前我所紧抱的,http://em.21dtv.com/songs/60013562.mkv +布仁巴雅尔-撑起天空的双手,http://em.21dtv.com/songs/60106808.mkv +张迈-重庆声音(演唱会),http://em.21dtv.com/songs/60071530.mkv +施文彬-纯情人的行船曲,http://em.21dtv.com/songs/60013394.mkv +周慧敏-从情人变成朋友,http://em.21dtv.com/songs/60013567.mkv +奥迪-唱起情歌想起你,http://em.21dtv.com/songs/60074900.mkv +玖月奇迹-唱起来 跳起来,http://em.21dtv.com/songs/60084970.mkv +黎明-痴情何须说前尘,http://em.21dtv.com/songs/60012709.mkv +苏又熔-痴情乎你骗不知,http://em.21dtv.com/songs/60012711.mkv +佚名-痴情的人并不多,http://em.21dtv.com/songs/60012699.mkv +哈辉-唱起春天的故事,http://em.21dtv.com/songs/60012337.mkv +万塘路18号-产品经理是条狗,http://em.21dtv.com/songs/60101860.mkv +户松遥-Courage,http://em.21dtv.com/songs/60111116.mkv +Matrix+Futurebound+Max Marshall-Control,http://em.21dtv.com/songs/60124942.mkv +Tinashe-Company,http://em.21dtv.com/songs/60131114.mkv +Justin Bieber-Company,http://em.21dtv.com/songs/60123487.mkv +彭小龙-Come On,http://em.21dtv.com/songs/60115934.mkv +童唱-come on and join in the game,http://em.21dtv.com/songs/60000991.mkv +印能法师-称念赞永七如来,http://em.21dtv.com/songs/60099843.mkv +许志安-从你祝福中离开,http://em.21dtv.com/songs/60013555.mkv +欧阳尚尚-宠你疼你不惯你,http://em.21dtv.com/songs/60116983.mkv +大火-宠你疼你不惯你,http://em.21dtv.com/songs/60101620.mkv +阿美-春暖花开来看你,http://em.21dtv.com/songs/60134385.mkv +赵真-春暖花开回故乡,http://em.21dtv.com/songs/60124524.mkv +吴奇隆-从没这么的孤单,http://em.21dtv.com/songs/60013550.mkv +许志安-从没这么爱恋过,http://em.21dtv.com/songs/60013549.mkv +王力宏-柴米油盐酱醋茶,http://em.21dtv.com/songs/60088276.mkv +姚笛-催眠,http://em.21dtv.com/songs/60125370.mkv +水鸿-从没说过我爱你,http://em.21dtv.com/songs/60116986.mkv +孙淑媚-查某囡仔的美丽,http://em.21dtv.com/songs/60095510.mkv +花鼓戏-慈母怜儿儿知晓,http://em.21dtv.com/songs/60090160.mkv +王雪晶-采蘑菇的小女孩,http://em.21dtv.com/songs/60088344.mkv +文文姐姐-采蘑菇的小姑娘,http://em.21dtv.com/songs/60074827.mkv +童唱-采蘑菇的小姑娘,http://em.21dtv.com/songs/60011917.mkv +金岩-茶马古道恋高原,http://em.21dtv.com/songs/60086482.mkv +李志-春末的南方城市,http://em.21dtv.com/songs/60127016.mkv +牛欣欣+张翘+刘姝辰-彩铃声声贺新春,http://em.21dtv.com/songs/60064032.mkv +宿雨涵-春 绿茸茸的梦幻,http://em.21dtv.com/songs/60074988.mkv +佚名-春雷轻响的早晨,http://em.21dtv.com/songs/60013288.mkv +杨青-除了你我能爱谁,http://em.21dtv.com/songs/60086495.mkv +方季惟-除了你谁都不爱,http://em.21dtv.com/songs/60013056.mkv +孙艳-除了你爱不再有,http://em.21dtv.com/songs/60074971.mkv +牛冰-除了你爱不再有,http://em.21dtv.com/songs/60074970.mkv +蒙面哥-从来没有忘记过,http://em.21dtv.com/songs/60102702.mkv +单仰萍+王志萍-春来满山铺红锦,http://em.21dtv.com/songs/60013287.mkv +林子祥-长路漫漫伴你闯,http://em.21dtv.com/songs/60057595.mkv +林志炫-从来不肯对你说,http://em.21dtv.com/songs/60013532.mkv +赵咏华-从来不肯对你说(无原唱),http://em.21dtv.com/songs/60013531.mkv +吕宏伟-扯开嗓子一声喊,http://em.21dtv.com/songs/60090803.mkv +陈丽媛-唱开花儿等你来,http://em.21dtv.com/songs/60122219.mkv +豫剧《陈三两》选段-陈奎好比一只虎,http://em.21dtv.com/songs/60134620.mkv +曲剧-陈奎好比一只虎,http://em.21dtv.com/songs/60091278.mkv +李丹阳-穿军装的川妹子,http://em.21dtv.com/songs/60089334.mkv +袁彬-曾经最爱你的人,http://em.21dtv.com/songs/60097888.mkv +孙骁-春节,http://em.21dtv.com/songs/60118505.mkv +龙梅子-曾经相爱那么深,http://em.21dtv.com/songs/60065467.mkv +腾格尔-成吉思汗的传说,http://em.21dtv.com/songs/60132821.mkv +范海荣-成吉思汗的传说,http://em.21dtv.com/songs/60104389.mkv +腾格尔-成吉思汉的传说,http://em.21dtv.com/songs/60012556.mkv +格格-成吉思汗的传说,http://em.21dtv.com/songs/60062380.mkv +阿紫(群星)-曾经悄悄爱过你,http://em.21dtv.com/songs/60096526.mkv +王琪-曾经年少爱追梦,http://em.21dtv.com/songs/60121931.mkv +黎明-赤脚男人的山谷(无原唱),http://em.21dtv.com/songs/60012811.mkv +佚名-从寂寞世界走来,http://em.21dtv.com/songs/60013513.mkv +火烧岛(Burning Island)-超级机歪人大战,http://em.21dtv.com/songs/60132695.mkv +钟应龙-春节回家看爸妈,http://em.21dtv.com/songs/60102837.mkv +刘洋-刺激2008之DJ,http://em.21dtv.com/songs/60089678.mkv +佚名-曾记当年读经文,http://em.21dtv.com/songs/60012145.mkv +周华健-曾经沧海也是爱,http://em.21dtv.com/songs/60012163.mkv +秋剑均-曾经最爱的是你,http://em.21dtv.com/songs/60012184.mkv +谢春花-茶酒伴,http://em.21dtv.com/songs/60124491.mkv +汤灿-长江边上好家乡,http://em.21dtv.com/songs/60084967.mkv +赵红军-曾经被情纠缠过,http://em.21dtv.com/songs/60115426.mkv +王识贤-真久不曾想起你,http://em.21dtv.com/songs/60058130.mkv +THE SPINNERS-could it be im falling in lov,http://em.21dtv.com/songs/60001045.mkv +吴歌-唱好自己写的歌,http://em.21dtv.com/songs/60106679.mkv +花鼓戏-凑合湘子与林英,http://em.21dtv.com/songs/60090146.mkv +赵庆望-彩虹,http://em.21dtv.com/songs/60129639.mkv +羽泉+聂诗+齐浚羽-彩虹,http://em.21dtv.com/songs/60126066.mkv +羽泉+聂诗+齐浚羽+我想和你唱-彩虹,http://em.21dtv.com/songs/60122023.mkv +佚名-蚕花姑娘心向党,http://em.21dtv.com/songs/60012013.mkv +蒋姗倍-采花姑娘采花香,http://em.21dtv.com/songs/60064031.mkv +四个女生-春回大地贺新年,http://em.21dtv.com/songs/60087615.mkv +Rainbow Blaxx-Cha Cha,http://em.21dtv.com/songs/60098053.mkv +关心妍-cant get you out of my head,http://em.21dtv.com/songs/60000824.mkv +KYLIE MINOGUE-cant get you out of my head,http://em.21dtv.com/songs/60000823.mkv +何龙雨-错过缘分错过你,http://em.21dtv.com/songs/60101906.mkv +覃浩-错过缘分错过爱,http://em.21dtv.com/songs/60115375.mkv +覃浩-错过缘分错过爱,http://em.21dtv.com/songs/60070610.mkv +佚名-成功一定是咱的,http://em.21dtv.com/songs/60012555.mkv +STYLISTICS-cant give you anything but my love,http://em.21dtv.com/songs/60000825.mkv +仁钦卓玛-唱给雪域的情歌,http://em.21dtv.com/songs/60064049.mkv +邵洪-错过你是我的错,http://em.21dtv.com/songs/60131874.mkv +张宏宇-错过你错过今生,http://em.21dtv.com/songs/60013675.mkv +詹雅雯-成功离咱不外远,http://em.21dtv.com/songs/60080228.mkv +刘育绫-成功绝对有机会,http://em.21dtv.com/songs/60012550.mkv +蒋承龙-错过何必再路过,http://em.21dtv.com/songs/60100952.mkv +侯冠如-成功二字靠打拼,http://em.21dtv.com/songs/60134899.mkv +沈文程-成功不免赚大钱(无原唱),http://em.21dtv.com/songs/60095757.mkv +佚名-成功不免赚大钱(无原唱),http://em.21dtv.com/songs/60012543.mkv +洪立-错过爱情错过你,http://em.21dtv.com/songs/60064088.mkv +才旦卓玛-春风在心中荡漾,http://em.21dtv.com/songs/60091248.mkv +合唱-尘封已久的回忆,http://em.21dtv.com/songs/60089724.mkv +梁玉嵘-雏凤新声颂伟人(戏曲),http://em.21dtv.com/songs/60092923.mkv +蔡秋凤-除非溪水颠倒流,http://em.21dtv.com/songs/60013049.mkv +谢采云-春风吻上我的脸,http://em.21dtv.com/songs/60092092.mkv +孔兰薰-春风吻上我的脸(演唱会 ),http://em.21dtv.com/songs/60082745.mkv +汪明荃-春风吻上我的脸(演唱会),http://em.21dtv.com/songs/60074994.mkv +莫旭秋-春风吻上我的脸(演唱会),http://em.21dtv.com/songs/60074993.mkv +梁雁翎-春风吻上我的脸,http://em.21dtv.com/songs/60013251.mkv +丽诗-春风吻上我的脸,http://em.21dtv.com/songs/60013250.mkv +蔡幸娟-春风吻上我的脸,http://em.21dtv.com/songs/60013249.mkv +叶丽仪+刘雅丽-春风吻上我的脸(演唱会),http://em.21dtv.com/songs/60013248.mkv +蔡琴-春风吻上我的脸(演唱会),http://em.21dtv.com/songs/60013247.mkv +费玉清-春风吻上我的脸(无原唱),http://em.21dtv.com/songs/60013246.mkv +赵志刚-春风送暖万物新,http://em.21dtv.com/songs/60013245.mkv +李健-春风十里不如你,http://em.21dtv.com/songs/60135354.mkv +李行亮-春风十里不如你,http://em.21dtv.com/songs/60109440.mkv +王识贤-查甫人是黑咖啡,http://em.21dtv.com/songs/60088325.mkv +王识贤-查甫人是黑咖啡,http://em.21dtv.com/songs/60012222.mkv +彭绍琴+林小丹-春风践约到园林,http://em.21dtv.com/songs/60089294.mkv +赵姝-春风沉醉的晚上,http://em.21dtv.com/songs/60131848.mkv +张英席-春风沉醉的晚上,http://em.21dtv.com/songs/60109336.mkv +徐千雅-春风沉醉的晚上,http://em.21dtv.com/songs/60069313.mkv +孟庭苇-乘风乘月乘忧去,http://em.21dtv.com/songs/60012638.mkv +望海高歌-春风吹醒我的爱,http://em.21dtv.com/songs/60133775.mkv +豫剧-春风吹的人心醉,http://em.21dtv.com/songs/60134585.mkv +佚名-春二三月草青青,http://em.21dtv.com/songs/60013224.mkv +吴晓芳-慈恩菩提度众生,http://em.21dtv.com/songs/60122586.mkv +隆隆-嫦娥爱上猪八戒,http://em.21dtv.com/songs/60012295.mkv +王源-长大以后的世界,http://em.21dtv.com/songs/60129404.mkv +王大培-长大是一种谋杀,http://em.21dtv.com/songs/60094220.mkv +张祥洪-错的是我不是她,http://em.21dtv.com/songs/60085002.mkv +赵真-错的是我不是她,http://em.21dtv.com/songs/60013657.mkv +王震辛-错的时间对的人,http://em.21dtv.com/songs/60108736.mkv +赵小南-错的时间对的人,http://em.21dtv.com/songs/60069318.mkv +刘馨蔚-吃定你,http://em.21dtv.com/songs/60109197.mkv +群星-春到花开许心愿,http://em.21dtv.com/songs/60074989.mkv +八大巨星-财到福到富贵到,http://em.21dtv.com/songs/60074819.mkv +佚名-擦掉吧伤心的泪,http://em.21dtv.com/songs/60011846.mkv +钱丽文-此地不能长谈论,http://em.21dtv.com/songs/60088817.mkv +罗时丰-擦掉彼句我爱你,http://em.21dtv.com/songs/60097895.mkv +张崇基+张崇德-赤道北边之热恋(演唱会),http://em.21dtv.com/songs/60064061.mkv +孙楠+丛浩楠-迟到,http://em.21dtv.com/songs/60102118.mkv +邰正宵-串串相思串串心,http://em.21dtv.com/songs/60013168.mkv +李珊-川藏线的兵哥哥,http://em.21dtv.com/songs/60094544.mkv +谭维维+杨宇-长城,http://em.21dtv.com/songs/60114076.mkv +阿龙正刚-从此我该怎么过,http://em.21dtv.com/songs/60013507.mkv +孙兴-唱出我的成名曲,http://em.21dtv.com/songs/60012311.mkv +民歌-采茶千担送北京,http://em.21dtv.com/songs/60091561.mkv +张嘉洵+周子琪-吵吵闹闹一辈子,http://em.21dtv.com/songs/60125496.mkv +王麟+张嘉洵-吵吵闹闹一辈子,http://em.21dtv.com/songs/60106149.mkv +张嘉洵+周子琪-吵吵闹闹一辈子,http://em.21dtv.com/songs/60065897.mkv +倪尔萍-从此狠心忘记你,http://em.21dtv.com/songs/60084997.mkv +海生-彻彻底底忘记你,http://em.21dtv.com/songs/60097857.mkv +苏勒亚其其格-痴痴的把你等待,http://em.21dtv.com/songs/60086492.mkv +珍美儿+路童-错错错一错再错,http://em.21dtv.com/songs/60013652.mkv +路童-错错错一错再错,http://em.21dtv.com/songs/60013651.mkv +吴依琳-处处呈现祥和气,http://em.21dtv.com/songs/60074975.mkv +汪明荃-长城长江万里长(演唱会),http://em.21dtv.com/songs/60057566.mkv +山风点火-从此不再放你走(无原唱),http://em.21dtv.com/songs/60013504.mkv +钟纯妍+郑湫泓-翅膀,http://em.21dtv.com/songs/60126328.mkv +梁静茹-从不问你多爱我,http://em.21dtv.com/songs/60013497.mkv +许茹芸-从不结束的故事,http://em.21dtv.com/songs/60013493.mkv +姜育恒-从不后悔爱上你,http://em.21dtv.com/songs/60013492.mkv +王二妮+红都-唱不够的陕北情,http://em.21dtv.com/songs/60113843.mkv +ELTON JOHN-club at the end of the street,http://em.21dtv.com/songs/60000961.mkv +茹雪-不再做你的宝贝,http://em.21dtv.com/songs/60116226.mkv +苏有朋-不再有我的生命,http://em.21dtv.com/songs/60091924.mkv +巧千金-爆竹一声大地春,http://em.21dtv.com/songs/60010095.mkv +赵鑫-别再想我流着泪,http://em.21dtv.com/songs/60094699.mkv +张海-不做小三好多年,http://em.21dtv.com/songs/60113480.mkv +唐文龙-别再想起我是谁,http://em.21dtv.com/songs/60010775.mkv +佚名-背着行囊去流浪(无原唱),http://em.21dtv.com/songs/60010270.mkv +刘德华-不再想你的借口,http://em.21dtv.com/songs/60011758.mkv +曾轶可-别祝我生日快乐,http://em.21dtv.com/songs/60115975.mkv +林晓培-不再为你掉眼泪,http://em.21dtv.com/songs/60091481.mkv +徐菲-别在我酒里掺水,http://em.21dtv.com/songs/60128016.mkv +红蔷薇-不再逃脱你的爱,http://em.21dtv.com/songs/60114719.mkv +刘耔彤-不做他的洋娃娃,http://em.21dtv.com/songs/60011818.mkv +佚名-别再伤心了好吗,http://em.21dtv.com/songs/60010765.mkv +李佳霖-巴中Style,http://em.21dtv.com/songs/60094929.mkv +易欣+段千寻-别再说你爱着我,http://em.21dtv.com/songs/60010768.mkv +依稀-别再说你爱着我,http://em.21dtv.com/songs/60010767.mkv +张惠妹-别在伤口上洒盐,http://em.21dtv.com/songs/60087814.mkv +萨仁高娃-不知如何报答你,http://em.21dtv.com/songs/60135686.mkv +王燕青-不在其中不流泪,http://em.21dtv.com/songs/60091721.mkv +许志安-不知那天可抱拥,http://em.21dtv.com/songs/60011797.mkv +陈百强-背着良心的说话,http://em.21dtv.com/songs/60010271.mkv +月星海-别在枯树下停留,http://em.21dtv.com/songs/60096090.mkv +佚名-不知今夜如何过,http://em.21dtv.com/songs/60011796.mkv +李乐诗-不知今夜如何过,http://em.21dtv.com/songs/60011795.mkv +雀圣天-别在怀疑我的爱,http://em.21dtv.com/songs/60088925.mkv +雀圣天-别再怀疑我的爱,http://em.21dtv.com/songs/60010761.mkv +阿原-别做花心大萝卜,http://em.21dtv.com/songs/60082636.mkv +陈威全-不做坏人很久了,http://em.21dtv.com/songs/60100574.mkv +崔广杰-不做风控制的雨,http://em.21dtv.com/songs/60105790.mkv +History-不知道自己已死,http://em.21dtv.com/songs/60111616.mkv +杨子-别再对我说永远,http://em.21dtv.com/songs/60101102.mkv +陈康腾-不知道该说什么,http://em.21dtv.com/songs/60117334.mkv +C ALLSTAR-不知不觉已大个(演唱会),http://em.21dtv.com/songs/60074806.mkv +黎瑞恩-不知不觉想起你,http://em.21dtv.com/songs/60011791.mkv +马天宇-不知不觉爱上你,http://em.21dtv.com/songs/60011788.mkv +李克勤-不知不觉爱上你,http://em.21dtv.com/songs/60011787.mkv +李克勤-不知不觉爱上你(演唱会),http://em.21dtv.com/songs/60011786.mkv +和平组合-不知不觉暗恋你,http://em.21dtv.com/songs/60011789.mkv +叶丽仪+马俊伟-不再悲哀的日期(演唱会),http://em.21dtv.com/songs/60011727.mkv +陈明-捕捉爱情的女人,http://em.21dtv.com/songs/60010953.mkv +庄心妍-不要这样好不好,http://em.21dtv.com/songs/60094087.mkv +阿华-不愿再为你流泪,http://em.21dtv.com/songs/60061080.mkv +袁丽嫦-百厌仔唔肯吃饭(演唱会),http://em.21dtv.com/songs/60009798.mkv +寒冰-不要再说我爱你,http://em.21dtv.com/songs/60064021.mkv +李明翰-不要再说你爱我,http://em.21dtv.com/songs/60081340.mkv +于台烟-不要再说你爱我,http://em.21dtv.com/songs/60011646.mkv +荣杨-不要再说对不起,http://em.21dtv.com/songs/60011645.mkv +傅秋英-八月中秋月光光,http://em.21dtv.com/songs/60009499.mkv +孙艳-不愿做你的宝贝,http://em.21dtv.com/songs/60061081.mkv +孙露-不要再来伤害我,http://em.21dtv.com/songs/60115797.mkv +孙露-不要再来伤害我,http://em.21dtv.com/songs/60074793.mkv +张振宇-不要再来伤害我,http://em.21dtv.com/songs/60011640.mkv +应章强-不要再来伤害我,http://em.21dtv.com/songs/60011639.mkv +梦成-不要再来伤害我,http://em.21dtv.com/songs/60070554.mkv +佚名-不要再害怕寂寞,http://em.21dtv.com/songs/60011637.mkv +宋孟君-被雨煮过的夏天,http://em.21dtv.com/songs/60099955.mkv +荣帝丞-不要再对我说谎,http://em.21dtv.com/songs/60070553.mkv +曹尔真-不要只爱我一天,http://em.21dtv.com/songs/60064023.mkv +林翠萍-不要延续这段情,http://em.21dtv.com/songs/60112028.mkv +林翠萍-不要延续这段情,http://em.21dtv.com/songs/60088116.mkv +高隆-不愿一个人入睡,http://em.21dtv.com/songs/60011723.mkv +冯建宇-不一样的美男子,http://em.21dtv.com/songs/60133392.mkv +雨中百合-不愿意把你放弃,http://em.21dtv.com/songs/60131965.mkv +雨中百合-不愿意把你放弃,http://em.21dtv.com/songs/60111507.mkv +贯诗钦-不要向星星许愿,http://em.21dtv.com/songs/60100472.mkv +孟杨-不愿相信男人嘴,http://em.21dtv.com/songs/60065872.mkv +于浩威-不要笑我是傻瓜,http://em.21dtv.com/songs/60011633.mkv +潘美辰-不要问我为什么,http://em.21dtv.com/songs/60089411.mkv +小臭臭-不要问我累不累,http://em.21dtv.com/songs/60098281.mkv +王铎-不要忘记我的爱,http://em.21dtv.com/songs/60111291.mkv +张碧晨-不要忘记我爱你,http://em.21dtv.com/songs/60111893.mkv +任贤齐-别要说我不再意,http://em.21dtv.com/songs/60090545.mkv +雨露-不要说情非得已,http://em.21dtv.com/songs/60126422.mkv +雨露-不要说情非得已,http://em.21dtv.com/songs/60123335.mkv +古巨基-不要说你不知道,http://em.21dtv.com/songs/60011615.mkv +李友胜-抱怨世界鸟无声,http://em.21dtv.com/songs/60062611.mkv +真知-白云深处的卓嘎,http://em.21dtv.com/songs/60074598.mkv +陈淑桦-不要随便说bye bye,http://em.21dtv.com/songs/60011623.mkv +雷婷-不要让我再流泪,http://em.21dtv.com/songs/60105510.mkv +孙露-不要让我再流泪,http://em.21dtv.com/songs/60074789.mkv +路绮欧-不要让我一个人,http://em.21dtv.com/songs/60062729.mkv +刘伟-不要让我等太久,http://em.21dtv.com/songs/60074788.mkv +刘继业-不要让我等太久,http://em.21dtv.com/songs/60070552.mkv +蒋沁芸-不要轻易说再见,http://em.21dtv.com/songs/60131784.mkv +冷酷-不要轻易说再见,http://em.21dtv.com/songs/60121411.mkv +林剑衡-不要轻易说分手,http://em.21dtv.com/songs/60011598.mkv +王大宇-不要轻易说分手,http://em.21dtv.com/songs/60065869.mkv +冷漠-不要骗我骗自己,http://em.21dtv.com/songs/60081031.mkv +杭天琪-不要那样看着我,http://em.21dtv.com/songs/60011583.mkv +小5-毕业了一无所有,http://em.21dtv.com/songs/60069254.mkv +冯允谦-把眼泪握在手里,http://em.21dtv.com/songs/60121400.mkv +华羽-不愿看见你流泪,http://em.21dtv.com/songs/60121462.mkv +董伟-不愿看见你的脸,http://em.21dtv.com/songs/60071806.mkv +高进-不愿看到你流泪,http://em.21dtv.com/songs/60011714.mkv +杨帆-不要看到你哭泣,http://em.21dtv.com/songs/60088067.mkv +郑源-不要就这样离开,http://em.21dtv.com/songs/60011565.mkv +阿斯满-白云居住的地方,http://em.21dtv.com/songs/60135884.mkv +于金胜-别因寂寞犯了错,http://em.21dtv.com/songs/60068123.mkv +罗曜-不要拒绝我爱你,http://em.21dtv.com/songs/60126035.mkv +龙啸-不要后悔说爱我,http://em.21dtv.com/songs/60082671.mkv +吴易航-不愿红尘错过你,http://em.21dtv.com/songs/60133477.mkv +吴易航-不愿红尘错过你,http://em.21dtv.com/songs/60131256.mkv +郭婷筠-不要给我打分数,http://em.21dtv.com/songs/60124572.mkv +佚名-不愿感情甲人分,http://em.21dtv.com/songs/60011712.mkv +杨昭-八月桂花遍地开,http://em.21dtv.com/songs/60084871.mkv +佚名-八月桂花遍地开,http://em.21dtv.com/songs/60009494.mkv +佚名-八月桂花遍地开(桑巴),http://em.21dtv.com/songs/60009493.mkv +雅锋-不愿放手的拥抱,http://em.21dtv.com/songs/60011710.mkv +雨天-不愿放开你的手,http://em.21dtv.com/songs/60011709.mkv +罗时丰-不愿放开你的手,http://em.21dtv.com/songs/60011708.mkv +郭富城-不要放开你的手,http://em.21dtv.com/songs/60011545.mkv +孙德峰-不要飞蛾再扑火,http://em.21dtv.com/songs/60099927.mkv +Apink-Bye Bye,http://em.21dtv.com/songs/60134640.mkv +符至逸-不要对我再说爱,http://em.21dtv.com/songs/60011542.mkv +陈瑞-不要对爱说抱歉,http://em.21dtv.com/songs/60011537.mkv +阿权-不要吃喝嫖赌抽,http://em.21dtv.com/songs/60129710.mkv +小山-不要错过我的爱,http://em.21dtv.com/songs/60074779.mkv +蓝心湄-不要被爱情伤了,http://em.21dtv.com/songs/60011523.mkv +徐海涛-不想再说我爱你,http://em.21dtv.com/songs/60074775.mkv +李绪杰-不想再欺骗自己,http://em.21dtv.com/songs/60104217.mkv +戴妃儿-不想做你的小三,http://em.21dtv.com/songs/60064014.mkv +晟瑶-不想做你的情人,http://em.21dtv.com/songs/60068145.mkv +彭羚-不许眼儿再下雨(演唱会),http://em.21dtv.com/songs/60011512.mkv +李雅微-不下雨的星期一,http://em.21dtv.com/songs/60011440.mkv +佚名-不相信你不爱我,http://em.21dtv.com/songs/60011444.mkv +盖鸣晖-碧血写春秋三召(演唱会),http://em.21dtv.com/songs/60082620.mkv +盖鸣晖+吴美英-碧血写春秋-三召,http://em.21dtv.com/songs/60010441.mkv +盖鸣晖+吴美英-碧血写春秋-惊变,http://em.21dtv.com/songs/60010440.mkv +赵华-不想为你再流泪,http://em.21dtv.com/songs/60096499.mkv +雷光夏-不想忘记的声音,http://em.21dtv.com/songs/60116354.mkv +High4+赵乃吉-不想听爱情故事,http://em.21dtv.com/songs/60111615.mkv +杨采妮-不想伤心多一次,http://em.21dtv.com/songs/60011473.mkv +赵鑫-把相思寄去远方,http://em.21dtv.com/songs/60122152.mkv +高旭-不想说出我爱你,http://em.21dtv.com/songs/60074773.mkv +鸿飞-不想你和她一样,http://em.21dtv.com/songs/60106480.mkv +徐千惠-把心留在这里唱,http://em.21dtv.com/songs/60113514.mkv +曾婉婷-不想浪费你眼泪,http://em.21dtv.com/songs/60081255.mkv +宛金秋-别小看我,http://em.21dtv.com/songs/60104060.mkv +吴琼-不想看你的脸色,http://em.21dtv.com/songs/60011463.mkv +GOGO+MEME-不想和你在一起,http://em.21dtv.com/songs/60011457.mkv +小贱+星弟-不想和你做朋友,http://em.21dtv.com/songs/60132391.mkv +星弟+小贱-不想和你做朋友,http://em.21dtv.com/songs/60074771.mkv +刘洋-不想和你说再见,http://em.21dtv.com/songs/60074770.mkv +邹志杰-不想回家的女人,http://em.21dtv.com/songs/60129659.mkv +宋飞-不想回家的女人,http://em.21dtv.com/songs/60107666.mkv +陈瑞-不想回家的女人,http://em.21dtv.com/songs/60107333.mkv +何龙雨-不想回家的女人,http://em.21dtv.com/songs/60104782.mkv +大哲-不想回家的女人,http://em.21dtv.com/songs/60011459.mkv +林汉扬-把心给我你以后,http://em.21dtv.com/songs/60089368.mkv +郑源-比心更痛的眼眸,http://em.21dtv.com/songs/60010386.mkv +林汉扬-把心给了你以后,http://em.21dtv.com/songs/60009598.mkv +袁洁琼-把幸福留在梦里,http://em.21dtv.com/songs/60084874.mkv +孙艺琪-变心的人不要留,http://em.21dtv.com/songs/60131330.mkv +戴娆-百姓才是头上天,http://em.21dtv.com/songs/60009797.mkv +杨曦+康榕-不寻常的另一半,http://em.21dtv.com/songs/60122887.mkv +郭颂-冰雪长白有温泉,http://em.21dtv.com/songs/60010856.mkv +群星-八星报喜贺贺喜,http://em.21dtv.com/songs/60009492.mkv +肖雅-伴我走向新世纪,http://em.21dtv.com/songs/60091891.mkv +顾凯-不为自己最快乐,http://em.21dtv.com/songs/60080519.mkv +阿任-别问我有多爱你,http://em.21dtv.com/songs/60128492.mkv +月星海-别问我该与不该,http://em.21dtv.com/songs/60063329.mkv +林俊杰-不为谁而作的歌,http://em.21dtv.com/songs/60116956.mkv +青山-把握人生的方向,http://em.21dtv.com/songs/60009594.mkv +王菲-不完美也要精彩,http://em.21dtv.com/songs/60011431.mkv +罗雨薇-别忘了把我带上,http://em.21dtv.com/songs/60082629.mkv +乃木坂46-悲しみの忘れ方,http://em.21dtv.com/songs/60117530.mkv +范野-把我的心还给我,http://em.21dtv.com/songs/60009589.mkv +衡越-把我的心儿陶醉,http://em.21dtv.com/songs/60101169.mkv +袁震-把我的爱还给我,http://em.21dtv.com/songs/60088622.mkv +陈明恩-Buy Buy,http://em.21dtv.com/songs/60104561.mkv +Maria Arredondo-Burning,http://em.21dtv.com/songs/60109846.mkv +唐飞-不通一直潦落去,http://em.21dtv.com/songs/60074761.mkv +佚名-拜托月娘找头路,http://em.21dtv.com/songs/60009825.mkv +关淑怡-别提醒我的伤心,http://em.21dtv.com/songs/60090664.mkv +陈夏莲-不通为我流目屎,http://em.21dtv.com/songs/60123286.mkv +司马凤-不通为阮病相思(无原唱),http://em.21dtv.com/songs/60095490.mkv +佚名-by the time i get to phoenix,http://em.21dtv.com/songs/60000750.mkv +ASOS-变态少女想人记,http://em.21dtv.com/songs/60010512.mkv +何龙雨-不听情歌听什么,http://em.21dtv.com/songs/60068141.mkv +翁立友-不倘抹记阮的名(无原唱),http://em.21dtv.com/songs/60011410.mkv +三八夭-崩塌了我的世界,http://em.21dtv.com/songs/60087234.mkv +佚名-比托拉我的家乡,http://em.21dtv.com/songs/60010382.mkv +洪荣宏-不通借酒来解愁(无原唱),http://em.21dtv.com/songs/60011416.mkv +尹相杰-豹头环眼好兄弟,http://em.21dtv.com/songs/60010081.mkv +王建杰-不通乎我空等待,http://em.21dtv.com/songs/60011413.mkv +杨宗宪-不倘搁伤我的心,http://em.21dtv.com/songs/60011409.mkv +蔡小虎-不倘放弃阮的爱,http://em.21dtv.com/songs/60095895.mkv +黄龄-半途而废,http://em.21dtv.com/songs/60102506.mkv +Sunshine-拜托!别黑我!,http://em.21dtv.com/songs/60133288.mkv +蔡立儿-白天不懂夜的黑,http://em.21dtv.com/songs/60130730.mkv +温岚-白天不懂夜的黑,http://em.21dtv.com/songs/60084880.mkv +罗中旭-白天不懂夜的黑,http://em.21dtv.com/songs/60084879.mkv +莫艳琳+王珊珊+秦妮-白天不懂夜的黑,http://em.21dtv.com/songs/60082580.mkv +王崇-白天不懂夜的黑,http://em.21dtv.com/songs/60062349.mkv +那英-白天不懂夜的黑,http://em.21dtv.com/songs/60009738.mkv +林隆璇-白天不懂夜的黑,http://em.21dtv.com/songs/60009737.mkv +蔡健雅-白天不懂夜的黑(演唱会),http://em.21dtv.com/songs/60009736.mkv +张义杰-不属于我的温柔,http://em.21dtv.com/songs/60066896.mkv +何韵诗-不是吟诗的时候(演唱会),http://em.21dtv.com/songs/60011392.mkv +183CLUB-闭上眼默念三遍,http://em.21dtv.com/songs/60089094.mkv +183CLUB+7朵花-闭上眼默念3遍,http://em.21dtv.com/songs/60010430.mkv +杨千嬅-闭上眼睛去旅行,http://em.21dtv.com/songs/60091391.mkv +林忆莲-闭上眼睛去旅行,http://em.21dtv.com/songs/60089366.mkv +刘德华-不是我的我不要(演唱会),http://em.21dtv.com/songs/60011387.mkv +刘德华-不是我的我不要(HD),http://em.21dtv.com/songs/10012632.mkv +卓依婷-白沙滩上的脚印,http://em.21dtv.com/songs/60009724.mkv +袁攀+尹甜-不是童话的童话,http://em.21dtv.com/songs/60074756.mkv +徐小凤-半身挑达任情种,http://em.21dtv.com/songs/60092710.mkv +刘容嘉-闭上双眼的时候,http://em.21dtv.com/songs/60101961.mkv +王菲-把锁匙投进信箱,http://em.21dtv.com/songs/60093000.mkv +李宏伟-跋山涉水的中国,http://em.21dtv.com/songs/60080614.mkv +凌志辉-别说谁离不开谁,http://em.21dtv.com/songs/60110007.mkv +杨罡-不是说好不分手,http://em.21dtv.com/songs/60080803.mkv +艺君-别说情歌不好唱,http://em.21dtv.com/songs/60112907.mkv +刘海辰-别说你要离开我,http://em.21dtv.com/songs/60069258.mkv +网络歌手-不是你要的幸福,http://em.21dtv.com/songs/60091819.mkv +孟庭苇-把思念寄托远方,http://em.21dtv.com/songs/60009583.mkv +贺一航-别说你还想着他,http://em.21dtv.com/songs/60010703.mkv +易欣+段千寻-别说你还爱着我,http://em.21dtv.com/songs/60010702.mkv +大哲-别说没有好男人,http://em.21dtv.com/songs/60010698.mkv +张惠妹-不睡,http://em.21dtv.com/songs/60113464.mkv +杨幂-不是秘密的秘密,http://em.21dtv.com/songs/60064008.mkv +胡彦斌-不是猛龙不过江,http://em.21dtv.com/songs/60071797.mkv +李风持-白色玫瑰的葬礼,http://em.21dtv.com/songs/60009720.mkv +黄海永-别傻了那不是爱,http://em.21dtv.com/songs/60069257.mkv +李震-别傻了那不是爱,http://em.21dtv.com/songs/60066871.mkv +TWINS-八十块环游世界,http://em.21dtv.com/songs/60009489.mkv +音乐走廊-别说今生我无缘,http://em.21dtv.com/songs/60093703.mkv +阿宝-不是寂寞才想你,http://em.21dtv.com/songs/60011369.mkv +吕雯-不是借口的借口,http://em.21dtv.com/songs/60068140.mkv +陈致逸-不说话的好朋友,http://em.21dtv.com/songs/60133053.mkv +林董-不说分手的分手,http://em.21dtv.com/songs/60100220.mkv +祁隆-别说都是我的错,http://em.21dtv.com/songs/60102586.mkv +佚名-不是春雨没有来,http://em.21dtv.com/songs/60011362.mkv +CONNIE-別说穿了是为谁,http://em.21dtv.com/songs/60087185.mkv +CONNIE吕莘-别说穿了是为谁,http://em.21dtv.com/songs/60010557.mkv +林慧萍-白纱窗里的女孩,http://em.21dtv.com/songs/60009726.mkv +李治延-不是不爱才分开,http://em.21dtv.com/songs/60074754.mkv +王觉-别说爱情有多美,http://em.21dtv.com/songs/60121954.mkv +镜喜-别让真爱掉眼泪,http://em.21dtv.com/songs/60121044.mkv +伍咏薇-不如笑笑算了吧,http://em.21dtv.com/songs/60011338.mkv +梁佑嘉-别让鲜花变干花,http://em.21dtv.com/songs/60074691.mkv +李玟-别让我真爱上你,http://em.21dtv.com/songs/60010666.mkv +郎郎-别让我一个人走,http://em.21dtv.com/songs/60104477.mkv +田安博-别让我一个人醉,http://em.21dtv.com/songs/60086459.mkv +姜育恒-别让我一个人醉,http://em.21dtv.com/songs/60010665.mkv +贺竦-别让我一个人醉,http://em.21dtv.com/songs/60010664.mkv +毛一林-别让我一错再错,http://em.21dtv.com/songs/60010663.mkv +易欣-别让我为你心碎,http://em.21dtv.com/songs/60010660.mkv +黄英-不如温柔的唱吧,http://em.21dtv.com/songs/60130938.mkv +堂娜-不如忘记不如归,http://em.21dtv.com/songs/60011337.mkv +佚名-别让我等的太久,http://em.21dtv.com/songs/60010651.mkv +王祖蓝+刘维-Brother,http://em.21dtv.com/songs/60120775.mkv +尔萨-不让你看见眼泪,http://em.21dtv.com/songs/60011310.mkv +鸿飞-不如明天去旅行,http://em.21dtv.com/songs/60106479.mkv +梁静茹-别人的天长地久,http://em.21dtv.com/songs/60010679.mkv +孟小童-别让爹娘操碎心,http://em.21dtv.com/songs/60100848.mkv +杨千嬅-不认不认还需认(演唱会),http://em.21dtv.com/songs/60011319.mkv +刘斌+殷秀梅-八荣八耻正气歌,http://em.21dtv.com/songs/60009488.mkv +Lorde-Bravado,http://em.21dtv.com/songs/60111627.mkv +高柏-别让爱情受折磨,http://em.21dtv.com/songs/60063979.mkv +李雨伦-别让爱情不值钱,http://em.21dtv.com/songs/60129251.mkv +易欣+张嘉杰-别让爱变为伤害,http://em.21dtv.com/songs/60066868.mkv +张清芳-别轻易坠入情网,http://em.21dtv.com/songs/60010642.mkv +潘玮仪-把全世界放手中,http://em.21dtv.com/songs/60009581.mkv +冬婲-被情伤过的女人,http://em.21dtv.com/songs/60113274.mkv +黑龙-被情伤过的男人,http://em.21dtv.com/songs/60105208.mkv +孙艳-被情伤过的女人,http://em.21dtv.com/songs/60100845.mkv +祁隆-被情伤过的女人,http://em.21dtv.com/songs/60082614.mkv +黑龙-被情伤过的女人,http://em.21dtv.com/songs/60010302.mkv +八大巨星-霸气如虹迎新年,http://em.21dtv.com/songs/60074581.mkv +阿里郎-不求名来名自扬,http://em.21dtv.com/songs/60011305.mkv +腾格尔-八千里路云和月,http://em.21dtv.com/songs/60104375.mkv +陈慧琳-抱歉柯德莉夏萍,http://em.21dtv.com/songs/60010071.mkv +陈慧琳-抱歉柯德莉夏萍(演唱会),http://em.21dtv.com/songs/60010070.mkv +佚名-把情感收藏起来,http://em.21dtv.com/songs/60009580.mkv +郑智化-把情感收藏起来(无原唱),http://em.21dtv.com/songs/60009579.mkv +张惠妹-别去打扰他的心,http://em.21dtv.com/songs/60010643.mkv +张远喆-不配做你男朋友,http://em.21dtv.com/songs/60102243.mkv +张远-不配做你男朋友,http://em.21dtv.com/songs/60071792.mkv +羽泉+套路男孩+聂诗+齐浚羽+王温鑫-奔跑,http://em.21dtv.com/songs/60126065.mkv +曹格+殷嘉恩-背叛,http://em.21dtv.com/songs/60124026.mkv +羽泉+套路男孩+聂诗+齐浚羽+王温鑫+我想和你唱-奔跑,http://em.21dtv.com/songs/60122022.mkv +曹格-背叛(我是歌手第二季),http://em.21dtv.com/songs/60096088.mkv +佚名-不怕黑夜不怕醉,http://em.21dtv.com/songs/60011289.mkv +群星-奔跑不止为第一,http://em.21dtv.com/songs/60074660.mkv +安东-背叛爱情背叛我,http://em.21dtv.com/songs/60010252.mkv +Amber-Borders,http://em.21dtv.com/songs/60120189.mkv +动力火车-不能阻止我喝醉,http://em.21dtv.com/songs/60090734.mkv +李俊旭-不能这样爱着你,http://em.21dtv.com/songs/60011284.mkv +张学友-不能言语的缠绵,http://em.21dtv.com/songs/60089856.mkv +原子邦妮-被你遗忘的森林,http://em.21dtv.com/songs/60133447.mkv +李岗霖-不能拥抱的天空,http://em.21dtv.com/songs/60011282.mkv +月亮-不能停下的节奏,http://em.21dtv.com/songs/60011275.mkv +王颜野-被你伤过的男人,http://em.21dtv.com/songs/60068110.mkv +王宏健+林依-不能让你一个人,http://em.21dtv.com/songs/60103441.mkv +林家小妹-被你欺骗的女人,http://em.21dtv.com/songs/60074653.mkv +孔太-把你记在灵魂里,http://em.21dtv.com/songs/60087645.mkv +杨青-把你含在我嘴里,http://em.21dtv.com/songs/60009570.mkv +李玟-不能给你的温柔,http://em.21dtv.com/songs/60088031.mkv +高瑜-不能孤独的线条,http://em.21dtv.com/songs/60098943.mkv +林忆莲-把你放在我心中,http://em.21dtv.com/songs/60009569.mkv +金宣儿-不能分手的分手,http://em.21dtv.com/songs/60011255.mkv +谭咏麟-把你藏在歌里面(演唱会),http://em.21dtv.com/songs/60009563.mkv +郑秀文-不能承受的感动,http://em.21dtv.com/songs/60011254.mkv +刘子毅-别拿爱情开玩笑,http://em.21dtv.com/songs/60115719.mkv +蒋婴-被你爱过的女人,http://em.21dtv.com/songs/60115357.mkv +龙泽雨-爸妈再爱我一次,http://em.21dtv.com/songs/60114929.mkv +王识贤-不免伤心来奉陪,http://em.21dtv.com/songs/60074743.mkv +何笃霖-把梦亲手交给你,http://em.21dtv.com/songs/60087319.mkv +李飞-爸妈你们辛苦了,http://em.21dtv.com/songs/60133831.mkv +刘佳成-爸妈你们辛苦了,http://em.21dtv.com/songs/60112532.mkv +李飞-爸妈你们辛苦了,http://em.21dtv.com/songs/60112001.mkv +白致瑶+王传越-八面来风大拜年,http://em.21dtv.com/songs/60117093.mkv +詹雅雯-不免惊我爱别人(无原唱),http://em.21dtv.com/songs/60011242.mkv +古品-宝马车里的女人,http://em.21dtv.com/songs/60065838.mkv +脱拉库乐团-B 612行星,http://em.21dtv.com/songs/60114731.mkv +林美美-槟榔西施的眼泪,http://em.21dtv.com/songs/60010807.mkv +蔡健雅-便利贴,http://em.21dtv.com/songs/60107987.mkv +猪哥亮-搬来阮的心肝底(演唱会),http://em.21dtv.com/songs/60071770.mkv +神木与瞳-崩裂前声嘶力竭,http://em.21dtv.com/songs/60074662.mkv +王菀之-巴黎沒有摩天轮,http://em.21dtv.com/songs/60092994.mkv +王菀之-巴黎没有摩天轮(演唱会),http://em.21dtv.com/songs/60009515.mkv +佚名-勃拉姆斯摇篮曲(慢三),http://em.21dtv.com/songs/60010925.mkv +高菲-勃拉姆斯的宠儿,http://em.21dtv.com/songs/60010924.mkv +邓丽君-不论今宵或明天,http://em.21dtv.com/songs/60011237.mkv +卡拉OK-八路军和老百姓,http://em.21dtv.com/songs/60090770.mkv +安苡葳-Bling 妹,http://em.21dtv.com/songs/60118514.mkv +葛镇狄-不劳而获的幻想,http://em.21dtv.com/songs/60131776.mkv +张柏鸣-伴侣的三分之二,http://em.21dtv.com/songs/60103279.mkv +胡娜-百里杜鹃我的家,http://em.21dtv.com/songs/60091894.mkv +萧全-玻璃窗上的苍蝇,http://em.21dtv.com/songs/60010904.mkv +张旭-不离不弃到永远,http://em.21dtv.com/songs/60074740.mkv +东来东往-不开心与没烦恼,http://em.21dtv.com/songs/60087242.mkv +郑智化-别哭我最爱的人,http://em.21dtv.com/songs/60010604.mkv +水木年华-别哭我最爱的人,http://em.21dtv.com/songs/60010603.mkv +任贤齐-别哭我想我爱你,http://em.21dtv.com/songs/60010602.mkv +化学猴子-不可思议爱上你,http://em.21dtv.com/songs/60065862.mkv +陈升-布考斯基协奏曲,http://em.21dtv.com/songs/60011823.mkv +马旭成-不可能让你离开(无原唱),http://em.21dtv.com/songs/60011192.mkv +华少陈-别哭了他爱的人,http://em.21dtv.com/songs/60133425.mkv +郑业成+刘志宏+李宏毅+张子文-不可触摸的恋人,http://em.21dtv.com/songs/60114125.mkv +牙牙乐+田子晴-边哭边忘边逞强,http://em.21dtv.com/songs/60125893.mkv +才旦卓玛-北京有个金太阳,http://em.21dtv.com/songs/60010227.mkv +雪村-北京晚上九点半,http://em.21dtv.com/songs/60010219.mkv +李谷一-边疆泉水清又纯,http://em.21dtv.com/songs/60113647.mkv +鸿良-北京你那么美丽,http://em.21dtv.com/songs/60122294.mkv +刘依纯-不惊孤单惊无伴,http://em.21dtv.com/songs/60084923.mkv +毛阿敏-北京飞来的天鹅,http://em.21dtv.com/songs/60010208.mkv +南外学生-北京东路的日子,http://em.21dtv.com/songs/60010207.mkv +周杰伦+梁心颐+杨瑞代-比较大的大提琴,http://em.21dtv.com/songs/60071782.mkv +克里木-边疆处处赛江南,http://em.21dtv.com/songs/60119269.mkv +佚名-边疆处处赛江南,http://em.21dtv.com/songs/60010459.mkv +刘梦-八戒八戒我的郎,http://em.21dtv.com/songs/60110032.mkv +Girls Aloud-Biology,http://em.21dtv.com/songs/60124879.mkv +MR.MR-Big Man,http://em.21dtv.com/songs/60101804.mkv +容祖儿-不好意思我爱你,http://em.21dtv.com/songs/60106787.mkv +容祖儿-不好意思我爱你,http://em.21dtv.com/songs/60070545.mkv +何咏琳-把回忆交还给我,http://em.21dtv.com/songs/60009555.mkv +刘文杰-不会消失的夜晚,http://em.21dtv.com/songs/60082649.mkv +信乐团-不会消失的夜晚(演唱会),http://em.21dtv.com/songs/60011161.mkv +刘珂矣-半壶纱,http://em.21dtv.com/songs/60109191.mkv +张淑敏-百花盛开春满园,http://em.21dtv.com/songs/60009784.mkv +张希晨-不会让你一个人,http://em.21dtv.com/songs/60105836.mkv +陈兴瑜-别恨你爱过的人,http://em.21dtv.com/songs/60062284.mkv +蔡琴-白桦林,http://em.21dtv.com/songs/60112217.mkv +杨采妮-不会哭于你面前,http://em.21dtv.com/songs/60011159.mkv +林忆莲-不会结束的故事,http://em.21dtv.com/songs/60011157.mkv +候亚周-不好哄的小傻瓜,http://em.21dtv.com/songs/60127742.mkv +谢小雨-不后悔曾经爱过,http://em.21dtv.com/songs/60119979.mkv +高云阳-不会发生的假如,http://em.21dtv.com/songs/60136009.mkv +赖伟锋-不会发生的故事,http://em.21dtv.com/songs/60100479.mkv +王菲-变幻的世界在转,http://em.21dtv.com/songs/60103471.mkv +薛凯琪-不呼不吸几多秒,http://em.21dtv.com/songs/60093125.mkv +林俊杰-编号89757,http://em.21dtv.com/songs/60010476.mkv +安俊旭-不该这样爱上你,http://em.21dtv.com/songs/60087680.mkv +彭芳-不顾一切要成功,http://em.21dtv.com/songs/60091181.mkv +海生-不顾一切去爱你,http://em.21dtv.com/songs/60115270.mkv +办桌二人组-不顾一切来爱你,http://em.21dtv.com/songs/60011119.mkv +刘宸启-半个月亮爬上来,http://em.21dtv.com/songs/60118385.mkv +马亚丽-半个月亮爬上来,http://em.21dtv.com/songs/60090324.mkv +超级女声+总决选-半个月亮爬上来,http://em.21dtv.com/songs/60090228.mkv +阎维文-半个月亮爬上来,http://em.21dtv.com/songs/60009871.mkv +彭丽媛-半个月亮爬上来,http://em.21dtv.com/songs/60009870.mkv +马丁-半个月亮爬上来,http://em.21dtv.com/songs/60066850.mkv +程响-不该相遇在秋天,http://em.21dtv.com/songs/60084919.mkv +陈瑞-别给我太多理由,http://em.21dtv.com/songs/60061054.mkv +张海-不管未来有多远,http://em.21dtv.com/songs/60071791.mkv +陈慧娟-别怪我不是小孩,http://em.21dtv.com/songs/60081852.mkv +魏枫-别怪我把你删除,http://em.21dtv.com/songs/60101006.mkv +曹义-半个天使的翅膀,http://em.21dtv.com/songs/60009865.mkv +施文彬-甭搁提起旧伤痕(演唱会),http://em.21dtv.com/songs/60010351.mkv +群星-半个世纪的故事,http://em.21dtv.com/songs/60074611.mkv +张宇-不过少个人来爱,http://em.21dtv.com/songs/60011134.mkv +张宇+巫启贤-不过少个人来爱(演唱会),http://em.21dtv.com/songs/60011133.mkv +唐美华-不该伤的心不伤,http://em.21dtv.com/songs/60115069.mkv +巫启贤-不该让你等太久,http://em.21dtv.com/songs/60011075.mkv +大芭-不该欺骗我的爱,http://em.21dtv.com/songs/60074723.mkv +孙青-不该放手让你走,http://em.21dtv.com/songs/60011068.mkv +佚名-包公辞朝-打王强(无原唱),http://em.21dtv.com/songs/60009944.mkv +陈盛宇-不管别人怎么说,http://em.21dtv.com/songs/60108988.mkv +黄安-八卦八卦我牵卦,http://em.21dtv.com/songs/60089037.mkv +黄安-八卦八卦我牵挂,http://em.21dtv.com/songs/60009469.mkv +钟镇涛+章蓉舫-不该爱的人是你,http://em.21dtv.com/songs/60011064.mkv +佚名-不该爱的人是你,http://em.21dtv.com/songs/60011063.mkv +少杰-不该爱的那么深,http://em.21dtv.com/songs/60127926.mkv +欧阳明琪-冰封自己来爱你,http://em.21dtv.com/songs/60010823.mkv +唐韦琪+张美妮-百分之二百咒语(演唱会),http://em.21dtv.com/songs/60009775.mkv +TWINS-百分之二百咒语(演唱会),http://em.21dtv.com/songs/60009774.mkv +吴炜-百分之x的友谊,http://em.21dtv.com/songs/60009770.mkv +老狼-百分之百的女孩,http://em.21dtv.com/songs/60009773.mkv +佚名-百分之百的必须(无原唱),http://em.21dtv.com/songs/60009772.mkv +叶凡-并非银钱不爱我,http://em.21dtv.com/songs/60082637.mkv +沐婷-不负相思不负君,http://em.21dtv.com/songs/60120697.mkv +张雷-不负未来不负亲,http://em.21dtv.com/songs/60111897.mkv +林峰-不负如来不负卿,http://em.21dtv.com/songs/60102390.mkv +八大巨星-百福临门满人间,http://em.21dtv.com/songs/60009777.mkv +笑天-不负光阴不负你,http://em.21dtv.com/songs/60124329.mkv +毛阿敏-北方飞来的天鹅,http://em.21dtv.com/songs/60010163.mkv +陈洁仪-被风吹散的人们,http://em.21dtv.com/songs/60123310.mkv +马健涛-被风吹乱的爱情,http://em.21dtv.com/songs/60100647.mkv +林俊杰+金莎-被风吹过的夏天,http://em.21dtv.com/songs/60010294.mkv +晓艺-博尔塔拉的离别,http://em.21dtv.com/songs/60010928.mkv +Mumford+Sons-Believe,http://em.21dtv.com/songs/60110782.mkv +张靓颖-Be Here,http://em.21dtv.com/songs/60105876.mkv +马睿瑄-比尔盖茨的大脑,http://em.21dtv.com/songs/60120146.mkv +万心-兵儿唱歌给妈听,http://em.21dtv.com/songs/60098064.mkv +吴克羣-Beat It,http://em.21dtv.com/songs/60094846.mkv +蔡一智+林海峰-俾啲掌声你自己,http://em.21dtv.com/songs/60074668.mkv +誓言-不到最后不放手,http://em.21dtv.com/songs/60062911.mkv +张玮伽-半点心,http://em.21dtv.com/songs/60110205.mkv +蔡幸娟-不到天荒情不老,http://em.21dtv.com/songs/60090203.mkv +李韦-不懂送花的男生,http://em.21dtv.com/songs/60069265.mkv +唐文娟-布达拉宫的佛缘,http://em.21dtv.com/songs/60108401.mkv +泽仁央金-布达拉宫的佛缘,http://em.21dtv.com/songs/60106067.mkv +佚名-部队就象我的家,http://em.21dtv.com/songs/60011844.mkv +群星-八大福星齐拜年,http://em.21dtv.com/songs/60074560.mkv +林文隆-杯底不通饲金鱼,http://em.21dtv.com/songs/60095670.mkv +郝中茗-遍插茱萸少一人,http://em.21dtv.com/songs/60010535.mkv +N.S 允智-变成女巫的原因,http://em.21dtv.com/songs/60068116.mkv +黄丹萍-不曾结束的故事,http://em.21dtv.com/songs/60011021.mkv +李彬彬-宝坻 共同的梦,http://em.21dtv.com/songs/60133796.mkv +NO NAME-白床单上的阳光,http://em.21dtv.com/songs/60009652.mkv +火狐狸-不痴不傻不是爱,http://em.21dtv.com/songs/60096389.mkv +火狐狸虚拟组合-不痴不傻不是爱,http://em.21dtv.com/songs/60084918.mkv +李泽坚-别把自己当成腕,http://em.21dtv.com/songs/60074682.mkv +林忆莲-不必在乎我是谁,http://em.21dtv.com/songs/60132614.mkv +林忆莲-不必在乎我是谁,http://em.21dtv.com/songs/60011008.mkv +杨丞琳-不被祝福的幸福,http://em.21dtv.com/songs/60081730.mkv +卡密儿-半杯夕阳满杯酒,http://em.21dtv.com/songs/60133436.mkv +卡密儿-半杯夕阳满杯酒,http://em.21dtv.com/songs/60131229.mkv +邵斯文-宝贝我真的错了,http://em.21dtv.com/songs/60061044.mkv +以泪-宝贝我要离开了,http://em.21dtv.com/songs/60010002.mkv +范玮琪-宝贝我们不要哭,http://em.21dtv.com/songs/60069241.mkv +海生-宝贝我来给你爱,http://em.21dtv.com/songs/60010001.mkv +孙露-别把我的心带走,http://em.21dtv.com/songs/60110145.mkv +陈玉建-别把我的心带走,http://em.21dtv.com/songs/60074681.mkv +童安格-别把我的心带走,http://em.21dtv.com/songs/60010567.mkv +佚名-爸爸说我没法嫁,http://em.21dtv.com/songs/60009635.mkv +思念-爸爸手上的老茧,http://em.21dtv.com/songs/60074580.mkv +冯文女-爸爸手上的老茧,http://em.21dtv.com/songs/60009634.mkv +左小祖咒+钟欣潼-把悲伤留给自己,http://em.21dtv.com/songs/60130278.mkv +朴翔-把悲伤留给自己,http://em.21dtv.com/songs/60125690.mkv +杨坤+黄莉-把悲伤留给自己,http://em.21dtv.com/songs/60112014.mkv +辛龙+潘越云-把悲伤留给自己,http://em.21dtv.com/songs/60098796.mkv +林苑-把悲伤留给自己,http://em.21dtv.com/songs/60091500.mkv +叶铮-把悲伤留给自己,http://em.21dtv.com/songs/60084873.mkv +青春美少女-把悲伤留给自己,http://em.21dtv.com/songs/60074570.mkv +陈升-把悲伤留给自己,http://em.21dtv.com/songs/60009548.mkv +蔡琴-把悲伤留给自己,http://em.21dtv.com/songs/60009547.mkv +任贤齐-把悲伤留给自己(演唱会),http://em.21dtv.com/songs/60009546.mkv +莫文蔚+陈升-把悲伤留给自己(演唱会),http://em.21dtv.com/songs/60009545.mkv +蔡琴-把悲伤留给自己(演唱会),http://em.21dtv.com/songs/60009544.mkv +吴静娴-把悲伤还给悲伤,http://em.21dtv.com/songs/60090819.mkv +洪荣宏-爸爸请你也保重,http://em.21dtv.com/songs/60100281.mkv +傅秋英-宝贝你要去奈位,http://em.21dtv.com/songs/60009997.mkv +佚名-爸爸你也爱保重(无原唱),http://em.21dtv.com/songs/60009631.mkv +水木年华-宝贝你听到了吗,http://em.21dtv.com/songs/60009996.mkv +豫剧-别把奶奶来轻看,http://em.21dtv.com/songs/60134545.mkv +黄睿铭-宝贝 你快长大,http://em.21dtv.com/songs/60107377.mkv +刘子琪-爸爸妈妈辛苦了,http://em.21dtv.com/songs/60132237.mkv +刘子琪-爸爸妈妈辛苦了,http://em.21dtv.com/songs/60110880.mkv +郭丰铭-爸爸妈妈我想你,http://em.21dtv.com/songs/60135817.mkv +陈隆赫-爸爸妈妈听我说,http://em.21dtv.com/songs/60100994.mkv +少儿歌曲-爸爸妈妈听我说,http://em.21dtv.com/songs/60087720.mkv +一家三口-爸爸妈妈过年了,http://em.21dtv.com/songs/60103051.mkv +蓝漪-爸爸妈妈放心吧,http://em.21dtv.com/songs/60086444.mkv +棉花糖-不被了解的怪人,http://em.21dtv.com/songs/60074715.mkv +冷漠-别把寂寞当缘分,http://em.21dtv.com/songs/60133394.mkv +冷漠-别把寂寞当缘分,http://em.21dtv.com/songs/60107513.mkv +许佳慧-别把借口当理由,http://em.21dtv.com/songs/60103567.mkv +刘玮-瀑布花园我的家,http://em.21dtv.com/songs/60090721.mkv +马天宇-宝贝 do you want my love,http://em.21dtv.com/songs/60074619.mkv +王强-宝贝都是我的错,http://em.21dtv.com/songs/60009991.mkv +陈瑞-不被打扰的玫瑰,http://em.21dtv.com/songs/60122241.mkv +大嘴巴-BB Call,http://em.21dtv.com/songs/60120428.mkv +张伟文+陈碧清-八百八十八支箭,http://em.21dtv.com/songs/60009455.mkv +DJ-棒棒棒,http://em.21dtv.com/songs/60114330.mkv +范文泽-宝贝爸爸想你了,http://em.21dtv.com/songs/60116224.mkv +陈兴瑜-宝贝宝贝我爱你,http://em.21dtv.com/songs/60009986.mkv +刘超华-宝贝宝贝对不起,http://em.21dtv.com/songs/60009985.mkv +林胜天-别把爱情当游戏,http://em.21dtv.com/songs/60112800.mkv +许文科-别把爱情当游戏,http://em.21dtv.com/songs/60093695.mkv +暴林-别把爱情当游戏,http://em.21dtv.com/songs/60074680.mkv +石雪峰-别把爱情当游戏,http://em.21dtv.com/songs/60066866.mkv +囚鸟-把爱珍藏在心里,http://em.21dtv.com/songs/60099168.mkv +李娜-不爱胭脂爱乾坤,http://em.21dtv.com/songs/60010977.mkv +HOTCHA-不爱也是一种爱,http://em.21dtv.com/songs/60010979.mkv +威仔+阿夏-不爱又何必纠缠,http://em.21dtv.com/songs/60113394.mkv +吉佑社-不爱又何必纠缠,http://em.21dtv.com/songs/60106674.mkv +赵鑫-把爱写在歌声里,http://em.21dtv.com/songs/60094701.mkv +罗瑜-不爱我就离开我,http://em.21dtv.com/songs/60010976.mkv +詹曼铃-不爱我乎我离开,http://em.21dtv.com/songs/60114769.mkv +王菲-不爱我的我不爱,http://em.21dtv.com/songs/60088318.mkv +塔宏伟-不按套路去爱琴,http://em.21dtv.com/songs/60066874.mkv +司徒兰芳-被爱伤透的女人,http://em.21dtv.com/songs/60118423.mkv +吕品-被爱伤害的男人,http://em.21dtv.com/songs/60010283.mkv +4_IN_LOVE-把爱情放进冰箱,http://em.21dtv.com/songs/60090378.mkv +孙铭泽-不爱请把手放开,http://em.21dtv.com/songs/60098256.mkv +王岗岗-不爱你还能爱谁,http://em.21dtv.com/songs/60061061.mkv +潘美辰-把爱留在你身边,http://em.21dtv.com/songs/60088250.mkv +刘俊成-不爱了就放手吧,http://em.21dtv.com/songs/60074712.mkv +郑俊海-不爱就请告诉我,http://em.21dtv.com/songs/60010958.mkv +Bigbang-BAE BAE,http://em.21dtv.com/songs/60111585.mkv +Pitbull+Robin Thicke+Joe Perry+Travis Barker-Bad Man,http://em.21dtv.com/songs/60134786.mkv +容祖儿-BAD_BOY,http://em.21dtv.com/songs/60120466.mkv +李炜+江映蓉-BADBOY,http://em.21dtv.com/songs/60098472.mkv +Dej Loaf+Big Sean-Back Up,http://em.21dtv.com/songs/60124857.mkv +思豪-被爱摧毁的堡垒,http://em.21dtv.com/songs/60071780.mkv +岳太阳-Baby我想你,http://em.21dtv.com/songs/60123861.mkv +陈文彬-Baby我爱你,http://em.21dtv.com/songs/60133042.mkv +岳太阳-BABY我爱你,http://em.21dtv.com/songs/60119463.mkv +佩希-Baby就是你,http://em.21dtv.com/songs/60120313.mkv +丽菲-别爱不爱你的人,http://em.21dtv.com/songs/60128737.mkv +威葳+周俊伟-爱在捉摸不定时,http://em.21dtv.com/songs/60009218.mkv +SpeXial-爱这种离谱感觉,http://em.21dtv.com/songs/60103038.mkv +谭咏麟+李克勤-爱在阳光空气中(演唱会),http://em.21dtv.com/songs/60009216.mkv +大厨-爱在下一个路口,http://em.21dtv.com/songs/60110111.mkv +陈明真+黄日华-爱在星光灿烂时,http://em.21dtv.com/songs/60009213.mkv +朱佳莉+廖昌永-爱在同一个星球(演唱会),http://em.21dtv.com/songs/60068084.mkv +陈司翰-爱在他们的天空,http://em.21dtv.com/songs/60009193.mkv +梦成-爱在偷恋蔓延时,http://em.21dtv.com/songs/60070507.mkv +郑家星-爱在天地动摇时,http://em.21dtv.com/songs/60097878.mkv +卫兰-爱在天地动摇时,http://em.21dtv.com/songs/60089712.mkv +黎姿-爱在四季都有雨,http://em.21dtv.com/songs/60009192.mkv +安东阳-爱在秋天的童话,http://em.21dtv.com/songs/60087679.mkv +江希文-爱在飘雪的日子,http://em.21dtv.com/songs/60088193.mkv +冷漠-爱着你却伤了她,http://em.21dtv.com/songs/60074541.mkv +冷漠-爱怎能没有宽恕,http://em.21dtv.com/songs/60009222.mkv +佚名-爱怎能就此离开,http://em.21dtv.com/songs/60009221.mkv +伊然-爱在你的故事里,http://em.21dtv.com/songs/60128771.mkv +金姗姗-爱在暖春的北京,http://em.21dtv.com/songs/60118108.mkv +洪凯律-爱着你(原版),http://em.21dtv.com/songs/60093620.mkv +冷漠-爱怎么没有宽恕,http://em.21dtv.com/songs/60087366.mkv +任贤齐+小虫-爱怎么会是这样,http://em.21dtv.com/songs/60009219.mkv +谭娟-爱在另一座城市,http://em.21dtv.com/songs/60097879.mkv +访玉-爱在另一座城市,http://em.21dtv.com/songs/60062347.mkv +冰城爱歌-爱在落叶里等待,http://em.21dtv.com/songs/60131197.mkv +谭娟-爱在另一个城市(HD),http://em.21dtv.com/songs/10012812.mkv +何洁-爱在浪漫中舞蹈,http://em.21dtv.com/songs/60074535.mkv +林峰+泳儿-爱在记忆中找你,http://em.21dtv.com/songs/60009168.mkv +林峰-爱在记忆中找你(演唱会),http://em.21dtv.com/songs/60009166.mkv +林峰-爱在记忆中找你,http://em.21dtv.com/songs/60061028.mkv +峻一杰-爱在寂寞的雨夜,http://em.21dtv.com/songs/60066832.mkv +P.G.S.T-爱自己才会快乐,http://em.21dtv.com/songs/60089570.mkv +姚燕-爱在故乡小时候,http://em.21dtv.com/songs/60133544.mkv +李国祥-爱在地球毁灭时,http://em.21dtv.com/songs/60009158.mkv +李晓杰-爱在灯火阑珊处,http://em.21dtv.com/songs/60119661.mkv +财郎-爱着别人想着我,http://em.21dtv.com/songs/60106295.mkv +杨欣桦-爱着不该爱的人,http://em.21dtv.com/songs/60135412.mkv +谢金燕-爱着不该爱的人,http://em.21dtv.com/songs/60009227.mkv +田馥甄-爱着爱着就永远,http://em.21dtv.com/songs/60095017.mkv +冯弯弯-爱着爱着就淡了,http://em.21dtv.com/songs/60127755.mkv +贺敬轩-爱着爱着就淡了,http://em.21dtv.com/songs/60127428.mkv +冯弯弯-爱着爱着就淡了,http://em.21dtv.com/songs/60125160.mkv +赵传-爱要怎么说出口,http://em.21dtv.com/songs/60118071.mkv +赵传-爱要怎么说出口,http://em.21dtv.com/songs/60009024.mkv +伍思凯-爱要怎么说2000版,http://em.21dtv.com/songs/60009023.mkv +邵洪-爱要有你才幸福,http://em.21dtv.com/songs/60131873.mkv +梁博+那英-爱要有你才完美,http://em.21dtv.com/songs/60063107.mkv +那英-爱要有你才完美,http://em.21dtv.com/songs/60009019.mkv +张惠妹-爱永远不会消失,http://em.21dtv.com/songs/60009096.mkv +伊风-爱一万次够不够,http://em.21dtv.com/songs/60063270.mkv +谢有才-爱一万次够不够,http://em.21dtv.com/songs/60063170.mkv +蔡小虎-爱一天也是爱过,http://em.21dtv.com/songs/60009063.mkv +张清芳-爱有谁能说得清,http://em.21dtv.com/songs/60091137.mkv +佚名-爱有谁能说的清,http://em.21dtv.com/songs/60009111.mkv +涓子-爱已疲惫心已碎,http://em.21dtv.com/songs/60100918.mkv +韩玉霞-爱一个人有多难,http://em.21dtv.com/songs/60117379.mkv +晓枫-爱一个人有多难,http://em.21dtv.com/songs/60009051.mkv +何方-爱一个人要多久,http://em.21dtv.com/songs/60090597.mkv +张清芳-爱一个人请小心,http://em.21dtv.com/songs/60009048.mkv +昊麟-爱一个人没有错,http://em.21dtv.com/songs/60118627.mkv +张宇-爱一个人好可怕(演唱会),http://em.21dtv.com/songs/60009041.mkv +邢蓉-爱一个人的滋味,http://em.21dtv.com/songs/60111430.mkv +郑洁-阿依古丽当水兵,http://em.21dtv.com/songs/60128474.mkv +佚名-爱已付出别收回(无原唱),http://em.21dtv.com/songs/60009073.mkv +樊桐舟-爱要大声说出来,http://em.21dtv.com/songs/60080494.mkv +林姗+翁立友-爱要大声讲出来,http://em.21dtv.com/songs/60009011.mkv +高霞-爱要懂得才完美,http://em.21dtv.com/songs/60123384.mkv +樊少华-爱与被爱都幸福,http://em.21dtv.com/songs/60074532.mkv +冷漠-爱与不爱都是错,http://em.21dtv.com/songs/60122509.mkv +宁-爱与不爱的悲伤,http://em.21dtv.com/songs/60081370.mkv +许志安-哎呀哎呀亲亲你(演唱会),http://em.21dtv.com/songs/60082458.mkv +张卫健-哎吔哎吔亲亲你,http://em.21dtv.com/songs/60006879.mkv +香香-哎哟哎哟对不起,http://em.21dtv.com/songs/60006882.mkv +郑源-爱需要全心全意,http://em.21dtv.com/songs/60088772.mkv +徐怀钰-爱像一场重感冒,http://em.21dtv.com/songs/60008991.mkv +冷漠-爱像一场纷飞雨,http://em.21dtv.com/songs/60082548.mkv +冯晓荣-爱像一场纷飞雨,http://em.21dtv.com/songs/60008990.mkv +刘美麟-暗香,http://em.21dtv.com/songs/60122531.mkv +泳儿-爱相随,http://em.21dtv.com/songs/60108685.mkv +晨熙+司徒兰芳-爱像首寂寞的歌,http://em.21dtv.com/songs/60102291.mkv +张瑶-爱像两个人跳舞,http://em.21dtv.com/songs/60008986.mkv +陈百潭+曹雅雯-爱我着唛来害我,http://em.21dtv.com/songs/60123322.mkv +陈百潭+曹雅雯-爱我着唛来害我,http://em.21dtv.com/songs/60114222.mkv +梁剑东-爱微笑,http://em.21dtv.com/songs/60119726.mkv +ROOMIE-爱我像从前一样,http://em.21dtv.com/songs/60066831.mkv +李猛-爱我为何折磨我,http://em.21dtv.com/songs/60066829.mkv +李紫涵-爱我为何又离去,http://em.21dtv.com/songs/60071750.mkv +白致瑶+泽旺多吉-阿佤人民唱新歌,http://em.21dtv.com/songs/60117091.mkv +罗英初-阿佤人民唱新歌,http://em.21dtv.com/songs/60091841.mkv +景仪-阿佤人民唱新歌,http://em.21dtv.com/songs/60089937.mkv +姜灿-阿佤人民唱新歌,http://em.21dtv.com/songs/60087635.mkv +佚名-阿佤人民唱流行,http://em.21dtv.com/songs/60006830.mkv +罗英初-阿佤人民唱流行,http://em.21dtv.com/songs/60006829.mkv +姜灿-阿佤人民唱流行,http://em.21dtv.com/songs/60006828.mkv +葛笑-爱我却要伤害我,http://em.21dtv.com/songs/60122076.mkv +海威-爱我却要离开我,http://em.21dtv.com/songs/60120725.mkv +马健涛-爱我却要离开我,http://em.21dtv.com/songs/60008939.mkv +袁沁-爱我请你说出来,http://em.21dtv.com/songs/60008938.mkv +龙奔-爱我请你抱紧我,http://em.21dtv.com/songs/60008937.mkv +金城-爱我请别伤害我(演唱会),http://em.21dtv.com/songs/60008936.mkv +闫凤梅-爱我你就说出来,http://em.21dtv.com/songs/60094321.mkv +马志锋-爱我你就嫁给我,http://em.21dtv.com/songs/60063930.mkv +张梓涓-爱我你就狠狠爱,http://em.21dtv.com/songs/60071748.mkv +林妙可-爱我你就抱抱我,http://em.21dtv.com/songs/60008934.mkv +宿雨涵-爱我你就抱抱我,http://em.21dtv.com/songs/60062940.mkv +马蕊-爱我就来芭提雅,http://em.21dtv.com/songs/60097880.mkv +王奕心-爱我就好好疼我,http://em.21dtv.com/songs/60129386.mkv +雨天+杨蔓-爱我就别伤害我,http://em.21dtv.com/songs/60008922.mkv +刘嘉亮-爱我就别伤害我,http://em.21dtv.com/songs/60008921.mkv +樱子-爱我就别离开我,http://em.21dtv.com/songs/60063928.mkv +王羽泽-爱我还要背叛我,http://em.21dtv.com/songs/60008915.mkv +游鸿明-爱我和我爱的人,http://em.21dtv.com/songs/60088233.mkv +沈世爱-爱我还是伤害我,http://em.21dtv.com/songs/60081143.mkv +潘嘉丽-爱我100分钟,http://em.21dtv.com/songs/60008882.mkv +施文彬-爱我的心有多深,http://em.21dtv.com/songs/60008909.mkv +天孪兄弟-爱我的人你别哭,http://em.21dtv.com/songs/60008908.mkv +王思思-爱我不要丢下我,http://em.21dtv.com/songs/60091697.mkv +何韵诗-爱我便说爱我吧,http://em.21dtv.com/songs/60109970.mkv +梅艳芳-爱我便说爱我吧(演唱会),http://em.21dtv.com/songs/60008884.mkv +童唱-爱跳舞的小朋友,http://em.21dtv.com/songs/60008868.mkv +佚名-爱挑剔的大姑娘,http://em.21dtv.com/songs/60008867.mkv +许家豪-爱她你就说出来,http://em.21dtv.com/songs/60118038.mkv +REBORN-安塔利亚的瞬间,http://em.21dtv.com/songs/60009337.mkv +马健南-爱她就去优衣库,http://em.21dtv.com/songs/60113088.mkv +张善为-爱他的10件事,http://em.21dtv.com/songs/60008845.mkv +罗大佑-啊停不住的爱人,http://em.21dtv.com/songs/60006866.mkv +BEAT WIN-ATALKER,http://em.21dtv.com/songs/60114324.mkv +郭富城-爱上这样子的你,http://em.21dtv.com/songs/60008736.mkv +佚名-爱是怎样炼成的,http://em.21dtv.com/songs/60008822.mkv +张含韵-爱神总是敲错门,http://em.21dtv.com/songs/60080357.mkv +SWEETY-爱是怎么一回事,http://em.21dtv.com/songs/60008821.mkv +晓月-爱是最美丽的错,http://em.21dtv.com/songs/60105111.mkv +林凡-爱是最美的事情,http://em.21dtv.com/songs/60074498.mkv +林凡+洪敬尧-爱是最美的事情,http://em.21dtv.com/songs/60074497.mkv +叶玮庭-爱是这辈子的坟,http://em.21dtv.com/songs/60127802.mkv +孙铭宇-爱是这辈子的坟,http://em.21dtv.com/songs/60008823.mkv +金辉-爱上有家的女人,http://em.21dtv.com/songs/60069213.mkv +陈玉建-爱上一个人好累,http://em.21dtv.com/songs/60008727.mkv +龙帝-爱上一个人好累,http://em.21dtv.com/songs/60068070.mkv +俞灏明-爱是一个人的事,http://em.21dtv.com/songs/60008810.mkv +泉溪-爱上一个坏女孩,http://em.21dtv.com/songs/60091608.mkv +陈瑞-爱是我醒时的泪,http://em.21dtv.com/songs/60134413.mkv +王子霆-爱上我是你的错,http://em.21dtv.com/songs/60063919.mkv +司马宁波-爱上任性的女人,http://em.21dtv.com/songs/60122568.mkv +冰淇-爱上青蛙进营行,http://em.21dtv.com/songs/60087364.mkv +翁汕汕-爱上那隐隐的痛,http://em.21dtv.com/songs/60093673.mkv +陶喆-爱是凝望又离开,http://em.21dtv.com/songs/60106431.mkv +郭玲-爱上你我傻乎乎,http://em.21dtv.com/songs/60008694.mkv +水木年华-爱上你我很快乐,http://em.21dtv.com/songs/60008693.mkv +晓君-爱上你我错了吗,http://em.21dtv.com/songs/60008692.mkv +诺苏-爱上你我错了吗,http://em.21dtv.com/songs/60008691.mkv +姚天成-爱上你我不认输,http://em.21dtv.com/songs/60086431.mkv +杨鸿-爱上你我不后悔,http://em.21dtv.com/songs/60063249.mkv +光头阿兴-爱上你是一种美,http://em.21dtv.com/songs/60071742.mkv +孙露-爱上你是一个错,http://em.21dtv.com/songs/60128972.mkv +孙露-爱上你是一个错,http://em.21dtv.com/songs/60074482.mkv +雨天-爱上你是一个错,http://em.21dtv.com/songs/60008686.mkv +杨培安-爱上你是一个错,http://em.21dtv.com/songs/60008685.mkv +高慧君-爱上你是我的罪,http://em.21dtv.com/songs/60008681.mkv +刘德华-爱上你是我的错,http://em.21dtv.com/songs/60008680.mkv +刘恺名-爱上你是我的错,http://em.21dtv.com/songs/60070497.mkv +阿洋-爱上你失去自己,http://em.21dtv.com/songs/60114182.mkv +刘美君-爱上你情非得已,http://em.21dtv.com/songs/60101615.mkv +朱洁-爱上你今生无悔,http://em.21dtv.com/songs/60074480.mkv +刘璇+光良-爱上你就是唯一,http://em.21dtv.com/songs/60061011.mkv +周燕君-爱上你就不后悔,http://em.21dtv.com/songs/60074481.mkv +斯琴高丽-爱是你给我的伤,http://em.21dtv.com/songs/60131464.mkv +孙露-爱是你给我的毒,http://em.21dtv.com/songs/60115840.mkv +孙露-爱是你给我的毒,http://em.21dtv.com/songs/60074495.mkv +晨熙-爱是你给我的毒,http://em.21dtv.com/songs/60074494.mkv +毕书尽-爱是你给的温柔,http://em.21dtv.com/songs/60122937.mkv +高安+乌兰托娅-爱上你的全世界,http://em.21dtv.com/songs/60136012.mkv +吴建豪-爱是你 爱是我,http://em.21dtv.com/songs/60133476.mkv +吴建豪-爱是你 爱是我,http://em.21dtv.com/songs/60132292.mkv +许哲佩-爱上马戏团团长,http://em.21dtv.com/songs/60082526.mkv +吴淑敏-爱算命的查某人,http://em.21dtv.com/songs/60008843.mkv +何建-爱上了是谁的错,http://em.21dtv.com/songs/60074477.mkv +贺一航-爱伤了你痛了我,http://em.21dtv.com/songs/60123191.mkv +lily-爱上了你不后悔,http://em.21dtv.com/songs/60127655.mkv +陈玉建-爱上离婚的女人,http://em.21dtv.com/songs/60008649.mkv +禾川-爱是可遇不可求,http://em.21dtv.com/songs/60069215.mkv +孟小童-爱上军营爱上你,http://em.21dtv.com/songs/60069207.mkv +沙子-爱是寂寞的忧伤,http://em.21dtv.com/songs/60074492.mkv +徐浩峻-爱上寂寞爱上烟,http://em.21dtv.com/songs/60109367.mkv +徐健淇-爱上寂寞爱上烟(演唱会),http://em.21dtv.com/songs/60063918.mkv +胡白-爱上精灵魔法师,http://em.21dtv.com/songs/60008642.mkv +佚名-and so i will wait for you,http://em.21dtv.com/songs/60000248.mkv +韦誉+侬媛媛-爱是和熙的阳光,http://em.21dtv.com/songs/60094764.mkv +杨宗宪-爱是很傻的代志,http://em.21dtv.com/songs/60068072.mkv +田田-爱是和你走下去,http://em.21dtv.com/songs/60129431.mkv +张文娟-爱似花开痛花落,http://em.21dtv.com/songs/60063923.mkv +余润泽+杨娜儿-爱上回家的感觉,http://em.21dtv.com/songs/60063917.mkv +高翊菲-爱上红尘中的你,http://em.21dtv.com/songs/60117395.mkv +龙雨-爱上火柴的香烟,http://em.21dtv.com/songs/60126505.mkv +佚名-俺是公社饲养员,http://em.21dtv.com/songs/60009351.mkv +陶喆-爱是个什么东西,http://em.21dtv.com/songs/60008769.mkv +颜志文-阿树哥个杂货店(无原唱),http://em.21dtv.com/songs/60006825.mkv +李翊君-爱上孤独的男人,http://em.21dtv.com/songs/60008641.mkv +苏唯-爱是孤单的开始,http://em.21dtv.com/songs/60113997.mkv +张洋-爱上负心的女人,http://em.21dtv.com/songs/60063415.mkv +苏慧伦-爱上飞鸟的女孩,http://em.21dtv.com/songs/60008638.mkv +周乐天-爱是否会再轮回,http://em.21dtv.com/songs/60071744.mkv +群星-angels+时代曲+摘星,http://em.21dtv.com/songs/60086321.mkv +蔡琴-爱神的箭+夜上海(HD演唱会),http://em.21dtv.com/songs/60008743.mkv +琪琪格-爱上草原爱上你,http://em.21dtv.com/songs/60008637.mkv +琪琪格-爱上草原爱上你(舞曲版),http://em.21dtv.com/songs/60063915.mkv +琪琪格-爱上草原爱上你(演唱会),http://em.21dtv.com/songs/60061008.mkv +田田-爱是唱不完的歌,http://em.21dtv.com/songs/60128255.mkv +雪峰-爱上别人的女友,http://em.21dtv.com/songs/60088931.mkv +阿伊米拉-爱谁不如爱自己,http://em.21dtv.com/songs/60117307.mkv +孙露-爱上不该爱的人,http://em.21dtv.com/songs/60115834.mkv +孙露-爱上不该爱的人,http://em.21dtv.com/songs/60074473.mkv +宇桐非-爱上不该爱的人,http://em.21dtv.com/songs/60008636.mkv +佚名-爱上不爱我的人,http://em.21dtv.com/songs/60008635.mkv +周晋进-爱神爱神在哪里,http://em.21dtv.com/songs/60082533.mkv +吉杰-爱神爱神在哪里,http://em.21dtv.com/songs/60080184.mkv +龙飞+梦然-爱上爱情爱上你,http://em.21dtv.com/songs/60100697.mkv +吴宗宪-爱让一切都对了,http://em.21dtv.com/songs/60008529.mkv +谭晶-爱让我站在这里,http://em.21dtv.com/songs/60008528.mkv +群星-爱让我们在一起,http://em.21dtv.com/songs/60008525.mkv +刘冲+冲击力乐队-爱让我们都哭了,http://em.21dtv.com/songs/60128816.mkv +乔毓明-爱人为快乐之本,http://em.21dtv.com/songs/60099730.mkv +邓丽君-爱人是个多情人,http://em.21dtv.com/songs/60008580.mkv +陈妃-爱人啊你置叨位,http://em.21dtv.com/songs/60008549.mkv +宁新兵-爱人啊你在何方,http://em.21dtv.com/songs/60116720.mkv +[Group] +groupName=十六万歌曲MV等 - 93 +白冰冰-爱情着要照起工,http://em.21dtv.com/songs/60008489.mkv +黄品冠+黄嘉千-爱情转弯的地方,http://em.21dtv.com/songs/60008501.mkv +佚名-爱情这条路歹走,http://em.21dtv.com/songs/60008487.mkv +黄苏英-爱情在南我在北,http://em.21dtv.com/songs/60106508.mkv +郭欢-爱情走了你还在,http://em.21dtv.com/songs/60070493.mkv +陈淑桦-爱情走过夏日街(无原唱),http://em.21dtv.com/songs/60008507.mkv +天籁天-爱情真的有营养,http://em.21dtv.com/songs/60099183.mkv +佚名-爱情有什么道理,http://em.21dtv.com/songs/60008470.mkv +莫文蔚-爱情有什么道理(演唱会),http://em.21dtv.com/songs/60008469.mkv +过江龙-爱情有钱就可以,http://em.21dtv.com/songs/60065802.mkv +伍义-爱情因你才伤悲,http://em.21dtv.com/songs/60008462.mkv +佚名-爱情一斤值多少,http://em.21dtv.com/songs/60008454.mkv +明阳-爱情原本没来过,http://em.21dtv.com/songs/60070492.mkv +军嫂组合-爱情像西湖一样,http://em.21dtv.com/songs/60066819.mkv +汤潮-爱情小偷之慢摇,http://em.21dtv.com/songs/60090041.mkv +红月-爱情像花儿一样,http://em.21dtv.com/songs/60071734.mkv +叶明珠-爱情吻过不留痕,http://em.21dtv.com/songs/60063905.mkv +陈慧琳-爱情天使的一面,http://em.21dtv.com/songs/60008404.mkv +华少瑞明-爱情天空下着雨,http://em.21dtv.com/songs/60134951.mkv +陈盈洁-爱情是真也是假(无原唱),http://em.21dtv.com/songs/60008388.mkv +陈小春-爱情是一头大象,http://em.21dtv.com/songs/60008386.mkv +王瑞霞-爱情是我的性命,http://em.21dtv.com/songs/60008384.mkv +海生-爱情是什么东西,http://em.21dtv.com/songs/60091619.mkv +群星-爱情傻恋la la la,http://em.21dtv.com/songs/60008375.mkv +马常宝-爱情是苦酒一杯,http://em.21dtv.com/songs/60104601.mkv +罗飞音-爱情是个无价宝,http://em.21dtv.com/songs/60126040.mkv +崔伟亮-爱情是个鬼东西,http://em.21dtv.com/songs/60082516.mkv +易帆-爱情是个鬼东西,http://em.21dtv.com/songs/60080335.mkv +郑伊健-爱情盛放的季节(演唱会),http://em.21dtv.com/songs/60008378.mkv +郭金-爱情让我着了魔,http://em.21dtv.com/songs/60126289.mkv +金三-爱情让我受了苦,http://em.21dtv.com/songs/60122184.mkv +还主格格-爱情让我伤不起,http://em.21dtv.com/songs/60084838.mkv +姚苏容-爱情如水向东流,http://em.21dtv.com/songs/60008361.mkv +李明洋+邱芸子-爱情亲像一出戏,http://em.21dtv.com/songs/60008355.mkv +佚名-爱情其实会说谎,http://em.21dtv.com/songs/60008349.mkv +俞隆华-爱情骗子我问你,http://em.21dtv.com/songs/60049774.mkv +小凤凤-爱情骗子我问你,http://em.21dtv.com/songs/60008346.mkv +天堂飘雪-爱情偏偏撞红灯,http://em.21dtv.com/songs/60099177.mkv +孙淑媚-爱情那会这呢难(无原唱),http://em.21dtv.com/songs/60008327.mkv +张玮伽-爱情没有那么美,http://em.21dtv.com/songs/60101082.mkv +古皓-爱情没有那么美,http://em.21dtv.com/songs/60008311.mkv +张可儿-爱情没有对和错,http://em.21dtv.com/songs/60115903.mkv +戚薇+佟丽娅+高露-爱情没什么道理,http://em.21dtv.com/songs/60069196.mkv +王建芳-爱情面前谁怕谁,http://em.21dtv.com/songs/60098640.mkv +张艳奕-爱情面前谁怕谁,http://em.21dtv.com/songs/60081756.mkv +石雪峰-爱情没钱就不行,http://em.21dtv.com/songs/60084835.mkv +龙梅子+老猫-爱情美酒分给谁,http://em.21dtv.com/songs/60008314.mkv +追风-爱情留在回忆里,http://em.21dtv.com/songs/60116273.mkv +胡夏-爱情离我一公尺,http://em.21dtv.com/songs/60080552.mkv +张元蒂-爱情离我1公尺,http://em.21dtv.com/songs/60008296.mkv +追风-爱情路上有你我,http://em.21dtv.com/songs/60116274.mkv +苏路+陈庭-爱情拢是天注定,http://em.21dtv.com/songs/60008301.mkv +刘锦明-爱情路上风雨多,http://em.21dtv.com/songs/60133420.mkv +吕嘉琦-爱情来敲我的门,http://em.21dtv.com/songs/60074447.mkv +影视歌曲-爱情来到我心间,http://em.21dtv.com/songs/60087872.mkv +赵真-爱情可遇不可求,http://em.21dtv.com/songs/60008287.mkv +李雨寿-爱情就这样结局,http://em.21dtv.com/songs/60135385.mkv +四分卫-爱情夹在面包里,http://em.21dtv.com/songs/60008267.mkv +SWEETY-爱情就像一张纸,http://em.21dtv.com/songs/60008278.mkv +谢常清-爱情就像一出戏,http://em.21dtv.com/songs/60084832.mkv +段千寻-爱情就像一出戏,http://em.21dtv.com/songs/60008277.mkv +赵真-爱情就是那么傻,http://em.21dtv.com/songs/60066811.mkv +门丽-爱情究竟哪里找,http://em.21dtv.com/songs/60096522.mkv +罗百吉-爱情很难说出口,http://em.21dtv.com/songs/60008251.mkv +娅琳-爱情很美也很累,http://em.21dtv.com/songs/60122648.mkv +扬东霞-爱情喝了也不醉,http://em.21dtv.com/songs/60104164.mkv +吴克群+弦子-爱情呼救999,http://em.21dtv.com/songs/60100789.mkv +路童-爱情花瓣落满地,http://em.21dtv.com/songs/60084830.mkv +易欣-爱情会不会永久,http://em.21dtv.com/songs/60008261.mkv +卓依婷-爱情故事哪电影,http://em.21dtv.com/songs/60063106.mkv +黄乙玲-爱情甘讲已经过,http://em.21dtv.com/songs/60008221.mkv +许富凯-爱情敢会当参详,http://em.21dtv.com/songs/60128394.mkv +杨罡-爱情飞不到天堂,http://em.21dtv.com/songs/60065793.mkv +佚名-爱情当作迄逃物,http://em.21dtv.com/songs/60008140.mkv +张志政-爱情对我说了谎,http://em.21dtv.com/songs/60008212.mkv +NO NAME-爱情带来的改变,http://em.21dtv.com/songs/60008137.mkv +黄乙玲-爱情的酒拢袂退,http://em.21dtv.com/songs/60008168.mkv +陈淑萍-爱情的酒拢袂退,http://em.21dtv.com/songs/60008167.mkv +群星-爱情动感la la la,http://em.21dtv.com/songs/60008207.mkv +鸿飞-爱情到底是什么,http://em.21dtv.com/songs/60106483.mkv +管彤-爱情到底去哪了,http://em.21dtv.com/songs/60104357.mkv +孙艺琪-爱情不相信眼泪,http://em.21dtv.com/songs/60131338.mkv +格子兮-爱情不是偶像剧,http://em.21dtv.com/songs/60129306.mkv +花世纪-爱情不是偶像剧,http://em.21dtv.com/songs/60080164.mkv +吴若萱-爱情不是荷尔蒙,http://em.21dtv.com/songs/60114451.mkv +凝听-爱情不是打游戏,http://em.21dtv.com/songs/60082505.mkv +易帆-爱情不是打游戏,http://em.21dtv.com/songs/60080334.mkv +朱凯旗-爱情别让我太累(演唱会),http://em.21dtv.com/songs/60063887.mkv +马健涛-爱情不如尼古丁,http://em.21dtv.com/songs/60074427.mkv +干露露-爱却不能在一起,http://em.21dtv.com/songs/60117704.mkv +干露露+范宏伟-爱却不能在一起,http://em.21dtv.com/songs/60105001.mkv +范宏伟-爱却不能在一起,http://em.21dtv.com/songs/60008519.mkv +品冠-爱情不能做比较,http://em.21dtv.com/songs/60087610.mkv +黄品冠-爱情不能作比较,http://em.21dtv.com/songs/60008114.mkv +刘牧-爱情保镖,http://em.21dtv.com/songs/60101978.mkv +周小骏-爱你只要你幸福,http://em.21dtv.com/songs/60070474.mkv +贝若德华-爱你最远的距离,http://em.21dtv.com/songs/60066803.mkv +夏恒+张智勇-爱你在心口难开,http://em.21dtv.com/songs/60104000.mkv +沙宝亮+黄绮珊-爱你在心口难开,http://em.21dtv.com/songs/60098573.mkv +张峰奇-爱你在心口难开,http://em.21dtv.com/songs/60008044.mkv +尤雅-爱你在心口难开,http://em.21dtv.com/songs/60008043.mkv +豹小子-爱你在心口难开,http://em.21dtv.com/songs/60008042.mkv +阿宝-爱你在心口难开,http://em.21dtv.com/songs/60008041.mkv +张蔷-爱你在心口难开(演唱会),http://em.21dtv.com/songs/60008040.mkv +望海高歌-爱你在我来生里,http://em.21dtv.com/songs/60107771.mkv +许志安-爱你这生永不变(演唱会),http://em.21dtv.com/songs/60008050.mkv +麦子-爱你只能忘记你,http://em.21dtv.com/songs/60074417.mkv +秦影-爱你真的好难吗,http://em.21dtv.com/songs/60128273.mkv +赵明-爱你真的不容易,http://em.21dtv.com/songs/60088697.mkv +孙浪-爱你真的爱不够,http://em.21dtv.com/songs/60074414.mkv +文夏-爱你永远无后悔(无原唱),http://em.21dtv.com/songs/60078949.mkv +张瀛仁-爱你永远欠一半,http://em.21dtv.com/songs/60115915.mkv +白冰冰-爱你永远不后悔,http://em.21dtv.com/songs/60008029.mkv +谢有才-爱你一万次够不,http://em.21dtv.com/songs/60092090.mkv +马智宇-爱你越深心越痛,http://em.21dtv.com/songs/60131992.mkv +马智宇-爱你越深心越痛,http://em.21dtv.com/songs/60110697.mkv +马智宇-爱你越深心越疼,http://em.21dtv.com/songs/60109756.mkv +任栩麟-爱你一世情人节,http://em.21dtv.com/songs/60099079.mkv +郭富城-爱你一生够不够,http://em.21dtv.com/songs/60008012.mkv +伍思凯-爱你一世到来生,http://em.21dtv.com/songs/60090596.mkv +乐凡+曲国庆-爱你一生不回头,http://em.21dtv.com/songs/60119235.mkv +王识贤+孙淑媚-爱你一千一万年,http://em.21dtv.com/songs/60077079.mkv +钟明秋-ANYMORE,http://em.21dtv.com/songs/60124591.mkv +麦卉-阿娘心事无人知,http://em.21dtv.com/songs/60006815.mkv +向蕙玲-爱你无是开玩笑,http://em.21dtv.com/songs/60007992.mkv +安东阳-爱你忘了我自己,http://em.21dtv.com/songs/60087678.mkv +汤潮-爱你我就不后悔,http://em.21dtv.com/songs/60007985.mkv +嘉布洛绒+萨尔措-爱你无悔三千年,http://em.21dtv.com/songs/60063880.mkv +倪尔萍-爱你痛了我自己,http://em.21dtv.com/songs/60122499.mkv +张学友-爱你痛到不知痛,http://em.21dtv.com/songs/60007980.mkv +张宇轩-爱你痛彻心扉,http://em.21dtv.com/songs/60070468.mkv +壮立帆-爱你是这样的苦,http://em.21dtv.com/songs/60007971.mkv +陈娟儿-爱你是一种习惯,http://em.21dtv.com/songs/60126379.mkv +水果哥-爱你所以放你走,http://em.21dtv.com/songs/60111218.mkv +周武彪-爱你所以放开你,http://em.21dtv.com/songs/60007973.mkv +沈文程-爱你是唯一的梦,http://em.21dtv.com/songs/60095759.mkv +黄妃-爱你是唯一的梦,http://em.21dtv.com/songs/60007962.mkv +周子琪-爱你是我犯了错,http://em.21dtv.com/songs/60007968.mkv +易欣-爱你是我犯了错,http://em.21dtv.com/songs/60007967.mkv +李玟-爱你是我的自由,http://em.21dtv.com/songs/60007966.mkv +张智成-爱你是我的强项,http://em.21dtv.com/songs/60093814.mkv +孙淑媚-爱你是我的快乐,http://em.21dtv.com/songs/60007965.mkv +王子皓-爱你是我的承诺,http://em.21dtv.com/songs/60120753.mkv +乐天乐团-爱你失去我自己,http://em.21dtv.com/songs/60068052.mkv +丁姵均+王灿-爱你三千二百年,http://em.21dtv.com/songs/60120264.mkv +黄西田-阿娘生美害死人,http://em.21dtv.com/songs/60006814.mkv +沈世爱-爱你伤了我自己,http://em.21dtv.com/songs/60007952.mkv +岳夏-爱你胜过爱自己,http://em.21dtv.com/songs/60007954.mkv +裘海正-爱你十分泪七分,http://em.21dtv.com/songs/60007956.mkv +梦然-爱你让我忘了疼,http://em.21dtv.com/songs/60121837.mkv +杨昕希-爱你让我更聪明,http://em.21dtv.com/songs/60088071.mkv +林佳仪-爱你却要说再见(无原唱),http://em.21dtv.com/songs/60007946.mkv +冷漠-爱你却要说分手,http://em.21dtv.com/songs/60066800.mkv +范龙-爱你却要离开你,http://em.21dtv.com/songs/60127343.mkv +佚名-爱你千年万万年,http://em.21dtv.com/songs/60007943.mkv +英豪-爱你却离开了我,http://em.21dtv.com/songs/60110488.mkv +高信-爱你却离开了我,http://em.21dtv.com/songs/60106466.mkv +陈浩东-爱NO WHY,http://em.21dtv.com/songs/60113064.mkv +梁振宇-爱你2000年,http://em.21dtv.com/songs/60007780.mkv +易欣+孙莺-爱你迷失了自我,http://em.21dtv.com/songs/60063277.mkv +庄心妍-爱你就要嫁给你,http://em.21dtv.com/songs/60103259.mkv +丁思剑-爱你就要保护你,http://em.21dtv.com/songs/60007922.mkv +张大伟-爱你就像风剪云(演唱会),http://em.21dtv.com/songs/60084818.mkv +宋祖英-啊南疆,http://em.21dtv.com/songs/60104056.mkv +胡力-爱你今生到永远,http://em.21dtv.com/songs/60088493.mkv +顾建华-爱你今生到永远,http://em.21dtv.com/songs/60007916.mkv +佚名-爱你就让你幸福,http://em.21dtv.com/songs/60007920.mkv +曹义-爱你就该放了你,http://em.21dtv.com/songs/60128062.mkv +任维-爱你就该放了你,http://em.21dtv.com/songs/60007919.mkv +曹义-爱你就该放了你,http://em.21dtv.com/songs/60007918.mkv +朱海-爱你绝不是谎言,http://em.21dtv.com/songs/60066798.mkv +郑秀文-爱你还是忘记你,http://em.21dtv.com/songs/60007903.mkv +黎瑞恩-爱你会是多凄美(演唱会),http://em.21dtv.com/songs/60007914.mkv +张倾城-爱你恨你又想你,http://em.21dtv.com/songs/60007910.mkv +尚裘峰-爱你恨你却想你,http://em.21dtv.com/songs/60082500.mkv +音萌萌-爱你恨你不值得,http://em.21dtv.com/songs/60133094.mkv +黄格选-爱你和从前一样,http://em.21dtv.com/songs/60007905.mkv +林姗-爱你甘是一种罪,http://em.21dtv.com/songs/60007895.mkv +石乔-爱你顾你的将来,http://em.21dtv.com/songs/60135606.mkv +寒月-爱你的罪自己背,http://em.21dtv.com/songs/60062422.mkv +庄铭泽-爱你的这颗一心,http://em.21dtv.com/songs/60129050.mkv +任贤齐-爱你的最后一天,http://em.21dtv.com/songs/60007888.mkv +王力宏-爱你等于爱自己,http://em.21dtv.com/songs/60007889.mkv +王力宏-爱你等于爱自己(HD),http://em.21dtv.com/songs/10012692.mkv +王识贤-爱你的心已经冷(无原唱),http://em.21dtv.com/songs/60079147.mkv +望海高歌-爱你的心永不变,http://em.21dtv.com/songs/60105124.mkv +张伟东-爱你的心永不变,http://em.21dtv.com/songs/60063877.mkv +白冰冰+林文胜-爱你的心想要飞,http://em.21dtv.com/songs/60132765.mkv +贾皓然-爱你的心犯了错,http://em.21dtv.com/songs/60007876.mkv +王馨-爱你的心到永久,http://em.21dtv.com/songs/60060987.mkv +张胜淼-爱你的痛谁能懂,http://em.21dtv.com/songs/60063876.mkv +黄乙玲-爱你到350岁,http://em.21dtv.com/songs/60056372.mkv +王识贤-爱你的人就是我,http://em.21dtv.com/songs/60007860.mkv +虎妞+半梦-爱你懂你等着你,http://em.21dtv.com/songs/60115367.mkv +刘若英-爱你的每个故事,http://em.21dtv.com/songs/60007855.mkv +东海-爱你多久痛多久,http://em.21dtv.com/songs/60106573.mkv +周星星-爱你多久痛多久,http://em.21dtv.com/songs/60074402.mkv +赵星星-爱你多久痛多久,http://em.21dtv.com/songs/60068050.mkv +忆华-爱你到地老天荒,http://em.21dtv.com/songs/60119577.mkv +忆华-爱你到地老天荒,http://em.21dtv.com/songs/60094513.mkv +高进-爱能穿越几千年,http://em.21dtv.com/songs/60007765.mkv +周祥-爱你从没放弃过,http://em.21dtv.com/songs/60074399.mkv +李克勤-爱您不需要理由,http://em.21dtv.com/songs/60092795.mkv +常艾非-爱你不需要理由,http://em.21dtv.com/songs/60066797.mkv +不是我的,http://em.21dtv.com/songs/60116484.mkv +董朋-爱你不是我的错,http://em.21dtv.com/songs/60071722.mkv +梁静茹-爱你不是两三天,http://em.21dtv.com/songs/60007833.mkv +梁静茹-爱你不是两三天(演唱会),http://em.21dtv.com/songs/60007832.mkv +齐萧-爱你不能多一天,http://em.21dtv.com/songs/60100688.mkv +凉冰-爱你不长就一生,http://em.21dtv.com/songs/60007837.mkv +龙飘飘-爱你不变情意长,http://em.21dtv.com/songs/60007826.mkv +林淑蓉-爱你爱在心坎里,http://em.21dtv.com/songs/60095680.mkv +包娜娜-爱你爱在心坎里,http://em.21dtv.com/songs/60007812.mkv +叶玉卿+童非-爱你爱在每一天,http://em.21dtv.com/songs/60007811.mkv +蓝冰-爱你爱你好爱你,http://em.21dtv.com/songs/60063870.mkv +梁珍-爱您爱您到永久,http://em.21dtv.com/songs/60074419.mkv +丁艺-爱你爱你爱着你,http://em.21dtv.com/songs/60074395.mkv +崎君-爱你爱的着了魔,http://em.21dtv.com/songs/60120488.mkv +陈瑞-爱你爱到心里面,http://em.21dtv.com/songs/60065783.mkv +巫启贤+彭羚-爱你爱到太伤痛,http://em.21dtv.com/songs/60007789.mkv +轨道-爱你爱到痛断肠,http://em.21dtv.com/songs/60007790.mkv +陈伟霆-爱你爱到上宇宙,http://em.21dtv.com/songs/60105470.mkv +沈谅-爱你爱的上了瘾,http://em.21dtv.com/songs/60086406.mkv +海华-爱你爱的容易吗,http://em.21dtv.com/songs/60106076.mkv +强子-爱你爱到人憔悴,http://em.21dtv.com/songs/60063869.mkv +木禾-爱你爱到九十九,http://em.21dtv.com/songs/60082496.mkv +侯玉斌-爱你爱得好辛苦,http://em.21dtv.com/songs/60118352.mkv +初航-爱你爱得很幸福,http://em.21dtv.com/songs/60101995.mkv +老男孩-爱你爱的很小心(演唱会),http://em.21dtv.com/songs/60066792.mkv +龙晓飞-爱你爱的好疲惫,http://em.21dtv.com/songs/60007801.mkv +李绪杰-爱你爱得好狼狈,http://em.21dtv.com/songs/60104218.mkv +洛鸣-爱你爱到骨头里,http://em.21dtv.com/songs/60112831.mkv +余润泽-爱你爱到骨头里,http://em.21dtv.com/songs/60007785.mkv +王宏天-爱你爱到犯了罪,http://em.21dtv.com/songs/60108705.mkv +王宏天-爱你爱到犯了罪,http://em.21dtv.com/songs/60097881.mkv +洪立-爱你爱到发了疯,http://em.21dtv.com/songs/60069188.mkv +张学友-爱你爱到不知痛,http://em.21dtv.com/songs/60007784.mkv +杜德伟-爱你爱得不寻常,http://em.21dtv.com/songs/60088054.mkv +杜德伟-爱你爱的不寻常,http://em.21dtv.com/songs/60007800.mkv +群星-澳门我带你回家,http://em.21dtv.com/songs/60088465.mkv +梁咏琪-澳门我带你回家,http://em.21dtv.com/songs/60009446.mkv +刘晓-阿弥陀佛在我家,http://em.21dtv.com/songs/60086393.mkv +志鹏-阿弥陀佛保佑我,http://em.21dtv.com/songs/60118589.mkv +萧亚轩-爱面前谁都17,http://em.21dtv.com/songs/60112917.mkv +金范秀-Amnesia,http://em.21dtv.com/songs/60134358.mkv +5 Seconds Of Summer-Amnesia,http://em.21dtv.com/songs/60102990.mkv +阿佳组合-阿妈啦,http://em.21dtv.com/songs/60105452.mkv +冰雪姐妹-阿妈啦曲央卓玛,http://em.21dtv.com/songs/60070442.mkv +陈明章-阿嬷的五分仔车,http://em.21dtv.com/songs/60096002.mkv +安心亚-阿嬷的梦中情人,http://em.21dtv.com/songs/60074281.mkv +郭津彤-阿妹等哥回家乡,http://em.21dtv.com/songs/60114835.mkv +童唱-啊牧场上绿油油,http://em.21dtv.com/songs/60006859.mkv +Matt Cardle-Amazing,http://em.21dtv.com/songs/60124943.mkv +BADA-AMAZING,http://em.21dtv.com/songs/60123447.mkv +Foxes-Amazing,http://em.21dtv.com/songs/60119143.mkv +袁娅维-Amazing,http://em.21dtv.com/songs/60110503.mkv +佚名-爱恋总不可长久,http://em.21dtv.com/songs/60007722.mkv +殷浩-爱流眼泪的女孩,http://em.21dtv.com/songs/60091538.mkv +薛凯琪-爱丽丝的第一次,http://em.21dtv.com/songs/60007715.mkv +程浩-爱累了2015,http://em.21dtv.com/songs/60111334.mkv +崔来宾-爱了 就一辈子,http://em.21dtv.com/songs/60129033.mkv +叶时伟-爱了就会有借口,http://em.21dtv.com/songs/60074386.mkv +张倾城-爱了就别说分手,http://em.21dtv.com/songs/60007698.mkv +孟杨-爱了恨了我认了,http://em.21dtv.com/songs/60007696.mkv +刀郎-艾里甫与赛乃姆,http://em.21dtv.com/songs/60006899.mkv +古重礼-俺来唱条客家歌,http://em.21dtv.com/songs/60009350.mkv +谢安琪-阿拉伯跳舞女郎,http://em.21dtv.com/songs/60006749.mkv +苗小青-阿老表的阿表妹,http://em.21dtv.com/songs/60134177.mkv +代理仁-爱来爱去累不累,http://em.21dtv.com/songs/60084813.mkv +赖雅妍-爱可以灿烂很久,http://em.21dtv.com/songs/60007671.mkv +赵鑫-爱 就这么简单,http://em.21dtv.com/songs/60118943.mkv +费翔-爱就像短暂的梦,http://em.21dtv.com/songs/60007661.mkv +秦宇子-安静(中国好声音第三季),http://em.21dtv.com/songs/60105283.mkv +陈柔希-安静听完这一首,http://em.21dtv.com/songs/60074547.mkv +依稀-安静听完这一首,http://em.21dtv.com/songs/60009314.mkv +詹曼铃-爱甲神仙也难救,http://em.21dtv.com/songs/60070463.mkv +蒲巴甲-爱就是那样简单,http://em.21dtv.com/songs/60007657.mkv +蒲巴甲-爱就是那么简单,http://em.21dtv.com/songs/60092010.mkv +陈雷-爱就是给你满足,http://em.21dtv.com/songs/60007655.mkv +降央卓玛-爱江山更爱美人,http://em.21dtv.com/songs/60104578.mkv +卓依婷-爱江山更爱美人,http://em.21dtv.com/songs/60007641.mkv +李丽芬-爱江山更爱美人,http://em.21dtv.com/songs/60007640.mkv +张启辉-爱金钱更爱美人,http://em.21dtv.com/songs/60121647.mkv +张启辉-爱金钱更爱美人,http://em.21dtv.com/songs/60074376.mkv +吕品-爱就坚持到最后,http://em.21dtv.com/songs/60074379.mkv +刘大洋-爱就大声喊出来,http://em.21dtv.com/songs/60127763.mkv +佚名-all i want for christmas is yo,http://em.21dtv.com/songs/60000158.mkv +JUSTIN BIEBER-all i want for christmas is yo,http://em.21dtv.com/songs/60065541.mkv +群星-all i have to do is dream(演唱会),http://em.21dtv.com/songs/60072876.mkv +EVERLY BROTHERS-all i have to do is dream,http://em.21dtv.com/songs/60000154.mkv +EXID-Ah Yeah,http://em.21dtv.com/songs/60110760.mkv +戴玉强-安徽是个好地方,http://em.21dtv.com/songs/60135298.mkv +望海高歌-爱恨都是不了情,http://em.21dtv.com/songs/60115983.mkv +崎君-爱过怎能无所谓,http://em.21dtv.com/songs/60007568.mkv +张芯-爱过怎能说清楚,http://em.21dtv.com/songs/60007567.mkv +姜涛-爱该怎么说出来,http://em.21dtv.com/songs/60007505.mkv +罗艺恒-爱过,http://em.21dtv.com/songs/60118846.mkv +于金胜-爱过为何说分手,http://em.21dtv.com/songs/60074365.mkv +佚名-爱过我的每一天,http://em.21dtv.com/songs/60007558.mkv +彭羚-爱过痛过亦愿等,http://em.21dtv.com/songs/60007555.mkv +彭羚-爱过痛过亦愿等(演唱会),http://em.21dtv.com/songs/60007554.mkv +远方-爱过痛过不后悔,http://em.21dtv.com/songs/60007553.mkv +罗大安-爱过你我不后悔,http://em.21dtv.com/songs/60109567.mkv +豫剧-爱国男儿志气高,http://em.21dtv.com/songs/60134595.mkv +宋飞-爱过了就忘了吧,http://em.21dtv.com/songs/60107669.mkv +办桌二人组-爱过的人你置叨,http://em.21dtv.com/songs/60110896.mkv +沈世爱-爱过才知是个错,http://em.21dtv.com/songs/60071717.mkv +动力火车-爱给错让你想走,http://em.21dtv.com/songs/60090754.mkv +枫桥-阿哥阿妹情意长,http://em.21dtv.com/songs/60086390.mkv +毛宁-阿哥阿妹情意长,http://em.21dtv.com/songs/60006735.mkv +桑娜央金+洛桑邓珠-阿哥阿妹唱九寨,http://em.21dtv.com/songs/60006734.mkv +刘和刚-爱国爱家也爱你(军旅),http://em.21dtv.com/songs/60090683.mkv +许鹤缤-阿凡达与屌丝男,http://em.21dtv.com/songs/60105369.mkv +乌兰图雅-阿尔斯楞的眼睛,http://em.21dtv.com/songs/60132167.mkv +佚名-阿尔斯愣的眼睛,http://em.21dtv.com/songs/60006727.mkv +乌兰托娅-阿尔斯楞的眼睛,http://em.21dtv.com/songs/60006726.mkv +降央卓玛-阿尔斯楞的眼睛,http://em.21dtv.com/songs/60006725.mkv +张杰-爱到最美是陪伴,http://em.21dtv.com/songs/60109311.mkv +蔡秋凤-爱到最后无撇步,http://em.21dtv.com/songs/60066778.mkv +齐子旭-爱的最后是游戏,http://em.21dtv.com/songs/60007470.mkv +暴林+张咪-爱到最后是回忆,http://em.21dtv.com/songs/60105115.mkv +张玲(滴滴)-爱到最后才知道,http://em.21dtv.com/songs/60109327.mkv +红蔷薇-爱的字典有个你,http://em.21dtv.com/songs/60121995.mkv +张芳-爱的越深越受伤,http://em.21dtv.com/songs/60063857.mkv +易帆-爱的越深越受伤,http://em.21dtv.com/songs/60063272.mkv +龙奔-爱得越深越狼狈,http://em.21dtv.com/songs/60062708.mkv +王识贤-爱到有命无灵魂,http://em.21dtv.com/songs/60007123.mkv +饶天亮-爱的一路上有你,http://em.21dtv.com/songs/60130894.mkv +费玉清-爱得越久越寂寞(无原唱),http://em.21dtv.com/songs/60007159.mkv +刘牧+祖歌-爱的阳光,http://em.21dtv.com/songs/60101979.mkv +成云刚+王星星-爱得想咬你耳朵,http://em.21dtv.com/songs/60074325.mkv +贺一航-爱到心碎也无悔,http://em.21dtv.com/songs/60070450.mkv +杨哲-爱的小路做阵行,http://em.21dtv.com/songs/60007421.mkv +陈明真-爱到星光灿烂时,http://em.21dtv.com/songs/60007120.mkv +王识贤-爱到无命不知惊,http://em.21dtv.com/songs/60007114.mkv +思豪-爱到未来的未来,http://em.21dtv.com/songs/60109379.mkv +祁隆-爱到痛时是困惑,http://em.21dtv.com/songs/60084793.mkv +陈龙-爱得剩我一个人,http://em.21dtv.com/songs/60088917.mkv +王梓旭-爱到死去的一天,http://em.21dtv.com/songs/60007104.mkv +蔡幸娟-爱到伤离仍是爱,http://em.21dtv.com/songs/60092027.mkv +唯莎+DJ何鹏-爱的世界只有你,http://em.21dtv.com/songs/60133520.mkv +孟小笛-爱的世界只有你,http://em.21dtv.com/songs/60123831.mkv +祁隆+乐凡-爱的世界只有你,http://em.21dtv.com/songs/60081794.mkv +祁隆-爱的世界只有你,http://em.21dtv.com/songs/60070459.mkv +肖亮+司徒兰芳-爱的世界我和你,http://em.21dtv.com/songs/60094640.mkv +马健南-爱的世界迷了路,http://em.21dtv.com/songs/60105519.mkv +鸿飞-爱到死都不放手,http://em.21dtv.com/songs/60109767.mkv +周韦杰+张静沄-爱到深处无怨谁,http://em.21dtv.com/songs/60074312.mkv +赵天野+欧姐-爱到深处是寂寞,http://em.21dtv.com/songs/60130772.mkv +雨中百合-爱到深处全是泪,http://em.21dtv.com/songs/60128565.mkv +WING-爱到深处不孤单,http://em.21dtv.com/songs/60089101.mkv +温尼-爱到深处不孤单(无原唱),http://em.21dtv.com/songs/60007100.mkv +扬哲+邱芸子-爱的人生无后悔,http://em.21dtv.com/songs/60070458.mkv +林大海-爱到你注定无命,http://em.21dtv.com/songs/60007805.mkv +叶胜钦-爱到你注定无命,http://em.21dtv.com/songs/60007096.mkv +邓丽君-爱的你呀何处寻,http://em.21dtv.com/songs/60007336.mkv +邓丽君-爱的你呀何处寻(演唱会),http://em.21dtv.com/songs/60007335.mkv +雨天-爱断了一只翅膀,http://em.21dtv.com/songs/60007482.mkv +雷诺儿-爱的另一种存在,http://em.21dtv.com/songs/60066782.mkv +林宏铭+张秀卿-爱的路上我甲你,http://em.21dtv.com/songs/60007310.mkv +卓依婷-爱的路上我和你,http://em.21dtv.com/songs/60007309.mkv +谢采妘-爱的路上我和你,http://em.21dtv.com/songs/60007308.mkv +欧阳菲菲-爱的路上我和你,http://em.21dtv.com/songs/60007307.mkv +欧丽雯-爱的路上我和你,http://em.21dtv.com/songs/60007306.mkv +王瑞霞-爱的路上阮一人(无原唱),http://em.21dtv.com/songs/60071324.mkv +钟伟-爱的路上千万里,http://em.21dtv.com/songs/60007305.mkv +佚名-爱的路上千万里,http://em.21dtv.com/songs/60007304.mkv +吴涤清-爱的路上千万里(演唱会),http://em.21dtv.com/songs/60066783.mkv +梦然-爱到尽头也无悔,http://em.21dtv.com/songs/60131578.mkv +梦然-爱到尽头也无悔,http://em.21dtv.com/songs/60130503.mkv +江南+徐赛男-爱到尽头是分手,http://em.21dtv.com/songs/60007089.mkv +孙家山-爱到尽头才知道,http://em.21dtv.com/songs/60104038.mkv +天堂飘雪-爱的火焰在燃烧,http://em.21dtv.com/songs/60102082.mkv +孙耀威-爱的故事《下》,http://em.21dtv.com/songs/60007233.mkv +李逸朗+蒋雅文-爱的故事《下》,http://em.21dtv.com/songs/60007232.mkv +孙耀威-爱的故事《上》,http://em.21dtv.com/songs/60007231.mkv +蒋雅文+李逸朗-爱的故事《上》,http://em.21dtv.com/songs/60007230.mkv +林子祥+叶倩文-爱到分离仍是爱(演唱会),http://em.21dtv.com/songs/60007082.mkv +青山+王馨-爱的道路共白头,http://em.21dtv.com/songs/60099599.mkv +望海高歌-爱的道路共白头,http://em.21dtv.com/songs/60099285.mkv +司徒兰芳-爱的草原情的河,http://em.21dtv.com/songs/60103964.mkv +司徒兰芳+屠育玮-爱的草原情的河,http://em.21dtv.com/songs/60066779.mkv +付笛声+任静-爱到春潮滚滚来,http://em.21dtv.com/songs/60007074.mkv +佚名-all day and all of the night,http://em.21dtv.com/songs/60000148.mkv +黄大炜-爱从昨夜就停了,http://em.21dtv.com/songs/60007053.mkv +林宣甫-俺出世做客家人,http://em.21dtv.com/songs/60009348.mkv +周华健-爱曾是你我唯一,http://em.21dtv.com/songs/60007044.mkv +冷漠+张雷-爱吃爱喝爱生活,http://em.21dtv.com/songs/60074304.mkv +刚辉-爱比烟花更寂寞,http://em.21dtv.com/songs/60090733.mkv +梁雁翎-爱不像你这么说,http://em.21dtv.com/songs/60007030.mkv +黄琦雯-敖包相会,http://em.21dtv.com/songs/60102979.mkv +张惠妹-爱不是这样才浓,http://em.21dtv.com/songs/60007014.mkv +杨轩-爱不是要你感激,http://em.21dtv.com/songs/60007010.mkv +草蜢-爱不怕让你知道,http://em.21dtv.com/songs/60007006.mkv +刘之烁-阿波罗与向日葵,http://em.21dtv.com/songs/60125174.mkv +王羽-爱变了 你走了,http://em.21dtv.com/songs/60129415.mkv +朱孝天-爱不会一直等你,http://em.21dtv.com/songs/60006993.mkv +朱孝天-爱不会一直等你(演唱会),http://em.21dtv.com/songs/60006992.mkv +陈明章-阿爸的心肝宝贝,http://em.21dtv.com/songs/60006716.mkv +小文-爱比不爱更寂寞,http://em.21dtv.com/songs/60006950.mkv +文章-爱比不爱更寂寞,http://em.21dtv.com/songs/60006949.mkv +许茹芸-爱不爱你都一样,http://em.21dtv.com/songs/60006965.mkv +德永英明-爱が哀しいから,http://em.21dtv.com/songs/60006929.mkv +タッキー-爱はタカラモノ,http://em.21dtv.com/songs/60006932.mkv +AOA+西川贵教-爱をちょうだい,http://em.21dtv.com/songs/60121209.mkv +东京女子流-ヒマワリと星屑,http://em.21dtv.com/songs/60006689.mkv +宝儿-まもりたいwhite wishes,http://em.21dtv.com/songs/60006697.mkv +AKB48-チャンスの顺番,http://em.21dtv.com/songs/60006675.mkv +东方神起-いつだって君に,http://em.21dtv.com/songs/60006648.mkv +FUNKY MONKEY BABYS-ランウェイビート,http://em.21dtv.com/songs/60006704.mkv +佚名-メリー ジェーン(无原唱),http://em.21dtv.com/songs/60006701.mkv +大冢爱-プラネタリウム,http://em.21dtv.com/songs/60006693.mkv +柴咲コウ-かたちあるもの,http://em.21dtv.com/songs/60006655.mkv +三森すずこ-サキワフハナ,http://em.21dtv.com/songs/60134843.mkv +fhána-ムーンリバー,http://em.21dtv.com/songs/60134673.mkv +THE HOOPERS-ラブハンター,http://em.21dtv.com/songs/60122435.mkv +SPICY CHOCOLATE+大桥卓弥+奇妙礼太郎-ミスキャスト,http://em.21dtv.com/songs/60117494.mkv +EGOIST-リローデッド,http://em.21dtv.com/songs/60116446.mkv +蓝井エイル-ラピスラズリ,http://em.21dtv.com/songs/60111388.mkv +スキマスイッチ-パラボラヴァ,http://em.21dtv.com/songs/60109914.mkv +JUJU-ラストシーン,http://em.21dtv.com/songs/60109829.mkv +OLDCODEX-カタルリズム,http://em.21dtv.com/songs/60107426.mkv +姜大成+GD-ナルバキスン,http://em.21dtv.com/songs/60105739.mkv +鬼束ちひろ-私とワルツを,http://em.21dtv.com/songs/60071148.mkv +THE HIGH LOWS-胸がドキドキ,http://em.21dtv.com/songs/60068886.mkv +岚-まだ见ぬ世界へ,http://em.21dtv.com/songs/60065759.mkv +中川翔子-ホロスコ一プ,http://em.21dtv.com/songs/60065758.mkv +NOT YET-波乢りかき氷,http://em.21dtv.com/songs/60061059.mkv +スマイレージ-ドットビキニ,http://em.21dtv.com/songs/60068026.mkv +関ジャニ∞-ツブサニコイ,http://em.21dtv.com/songs/60062400.mkv +きゃりーぱみゅぱみゅ-つけまつける,http://em.21dtv.com/songs/60065753.mkv +スマイレージ-タチアガール,http://em.21dtv.com/songs/60063824.mkv +AZUSA-太阳のサイン,http://em.21dtv.com/songs/60071168.mkv +乃木坂46-その先の出口,http://em.21dtv.com/songs/60103060.mkv +AKB48-ゼロサム太阳,http://em.21dtv.com/songs/60063823.mkv +U(城田优)-刹那 a sandglass of fate,http://em.21dtv.com/songs/60062173.mkv +丰崎爱生-シロツメクサ,http://em.21dtv.com/songs/60071698.mkv +中川翔子-さかさま世界,http://em.21dtv.com/songs/60093951.mkv +フレンチキス-最初のメ一ル,http://em.21dtv.com/songs/60066619.mkv +YU-A-ごめんねママ,http://em.21dtv.com/songs/60062183.mkv +寿美菜子-ココロスカイ,http://em.21dtv.com/songs/60066766.mkv +BENI-声を闻かせて,http://em.21dtv.com/songs/60061959.mkv +モーニング娘-恋爱ハンター,http://em.21dtv.com/songs/60067199.mkv +武井咲-恋スルキモチ,http://em.21dtv.com/songs/60066117.mkv +AKB48-ぐぐたすの空,http://em.21dtv.com/songs/60068021.mkv +AKB48-キャンディー,http://em.21dtv.com/songs/60070429.mkv +小野恵令奈-キミがいれば,http://em.21dtv.com/songs/60068020.mkv +岚-君がいるから,http://em.21dtv.com/songs/60070834.mkv +NO NAME-希望について,http://em.21dtv.com/songs/60068817.mkv +吉川友-きっかけはyou,http://em.21dtv.com/songs/60062498.mkv +ちょぅちょ-カワルミライ,http://em.21dtv.com/songs/60065743.mkv +中野爱子-カメリアの瞳,http://em.21dtv.com/songs/60060959.mkv +EXLLE ATSUSHI-いつかきっと,http://em.21dtv.com/songs/60063818.mkv +走着,http://em.21dtv.com/songs/60131182.mkv +曾治伦-战争之下一站,http://em.21dtv.com/songs/60057502.mkv +叶启田-咱只有这条路,http://em.21dtv.com/songs/60057254.mkv +谢天笑-追逐影子的人,http://em.21dtv.com/songs/60110536.mkv +张家辉-直至有你之后,http://em.21dtv.com/songs/60058745.mkv +宇海文-追着月亮的狼,http://em.21dtv.com/songs/60059555.mkv +五月天-最重要的小事,http://em.21dtv.com/songs/60060462.mkv +陈奕迅-做这样的男人,http://em.21dtv.com/songs/60060747.mkv +范玮琪-最重要的决定,http://em.21dtv.com/songs/60060460.mkv +张也-走在小康路上,http://em.21dtv.com/songs/60119494.mkv +三郎-最最亲爱的你,http://em.21dtv.com/songs/60116497.mkv +林淑娟-醉在你的怀中,http://em.21dtv.com/songs/60060546.mkv +佚名-醉在你的怀中(无原唱),http://em.21dtv.com/songs/60060545.mkv +郑琇月-醉醉嘛卡归去(无原唱),http://em.21dtv.com/songs/60060552.mkv +古巨基-在这离别时候,http://em.21dtv.com/songs/60057208.mkv +朵格子-走在街上的心,http://em.21dtv.com/songs/60065519.mkv +陈乃荣-做自己的英雄,http://em.21dtv.com/songs/60100563.mkv +戊道子-做自己的宝贝(演唱会),http://em.21dtv.com/songs/60067844.mkv +郭富城-找自己爱的人,http://em.21dtv.com/songs/60057721.mkv +郝红岩-栀子花的思念,http://em.21dtv.com/songs/60067795.mkv +孟杨+CA兄弟-在这个世界上,http://em.21dtv.com/songs/60135111.mkv +李那-争做国家栋梁,http://em.21dtv.com/songs/60058315.mkv +王祖蓝-猪猪bb un咕咕,http://em.21dtv.com/songs/60059230.mkv +徐浩-最珍贵的秘密,http://em.21dtv.com/songs/60119575.mkv +赞美之泉-最珍贵的角落,http://em.21dtv.com/songs/60063342.mkv +彭丽媛-在中国大地上,http://em.21dtv.com/songs/60057219.mkv +周蕙-最真的最难忘,http://em.21dtv.com/songs/60090851.mkv +蔡秋凤-阵阵的脚步声,http://em.21dtv.com/songs/60058292.mkv +张信哲-早知道爱上你,http://em.21dtv.com/songs/60057321.mkv +关心妍-战争不是答案,http://em.21dtv.com/songs/60057495.mkv +TWINS-子子宝668,http://em.21dtv.com/songs/60059617.mkv +龙彪-最最爱的丫头,http://em.21dtv.com/songs/60133148.mkv +刘德华-专一只因为你,http://em.21dtv.com/songs/60059429.mkv +谭咏麟-只有知心一个,http://em.21dtv.com/songs/60058623.mkv +许强+瑞雪-只要真心爱过,http://em.21dtv.com/songs/60061898.mkv +许志安-终于再可一起,http://em.21dtv.com/songs/60059052.mkv +孙悦-走一走看一看,http://em.21dtv.com/songs/60059969.mkv +周亮-最远最近的你,http://em.21dtv.com/songs/60087573.mkv +群星-追忆张国荣1,http://em.21dtv.com/songs/60093049.mkv +群星-追忆张国荣3,http://em.21dtv.com/songs/60093051.mkv +群星-追忆张国荣2,http://em.21dtv.com/songs/60093050.mkv +陈秀雯-骤雨中的阳光,http://em.21dtv.com/songs/60059197.mkv +曾路得-骤雨中的阳光,http://em.21dtv.com/songs/60059196.mkv +臧天朔-只有一条长江,http://em.21dtv.com/songs/60058621.mkv +潘美辰-只要一丝温柔,http://em.21dtv.com/songs/60091663.mkv +黄义达-只有一个自己,http://em.21dtv.com/songs/60089022.mkv +黄大炜-只有一个自己,http://em.21dtv.com/songs/60058620.mkv +谢天笑-只有一个愿望,http://em.21dtv.com/songs/60058619.mkv +梁帅+西单女孩-最遥远的记忆,http://em.21dtv.com/songs/60103395.mkv +光良-再遥远的距离,http://em.21dtv.com/songs/60111699.mkv +常石磊+萨顶顶-自由行走的花,http://em.21dtv.com/songs/60098316.mkv +萨顶顶-自由行走的花,http://em.21dtv.com/songs/60084604.mkv +萨顶顶-自由行走的花(演唱会),http://em.21dtv.com/songs/60070271.mkv +许志安-这样享受恋爱,http://em.21dtv.com/songs/60057894.mkv +CS晨悠-只要外星人它,http://em.21dtv.com/songs/60106527.mkv +黄鸿升-自以为我以为,http://em.21dtv.com/songs/60108189.mkv +巫奇-只因为我爱你,http://em.21dtv.com/songs/60058563.mkv +动力火车-只有我没人陪,http://em.21dtv.com/songs/60090740.mkv +乐红-只有我的心懂(无原唱),http://em.21dtv.com/songs/60058614.mkv +于魁智-昨夜晚吃酒醉,http://em.21dtv.com/songs/60060622.mkv +欧豪-只有我不快乐,http://em.21dtv.com/songs/60084567.mkv +苏丹+毕福剑-这一天不一样,http://em.21dtv.com/songs/60108829.mkv +毕福剑+苏丹-这一天不一样,http://em.21dtv.com/songs/60108657.mkv +佚名-这一生只为你,http://em.21dtv.com/songs/60057946.mkv +廖昌永-在银色月光下,http://em.21dtv.com/songs/60095296.mkv +阎维文-在银色月光下,http://em.21dtv.com/songs/60088823.mkv +巫启贤-主耶稣我爱你(演唱会),http://em.21dtv.com/songs/60079676.mkv +王杰-只要说你爱我,http://em.21dtv.com/songs/60058528.mkv +花鼓戏-尊一声妈妈娘,http://em.21dtv.com/songs/60090156.mkv +苏勒亚其其格-主要是看气质,http://em.21dtv.com/songs/60117156.mkv +孙家山-这一首旧情歌,http://em.21dtv.com/songs/60132358.mkv +何家劲-这一生还有约,http://em.21dtv.com/songs/60057939.mkv +佚名-尊一声二奶奶,http://em.21dtv.com/songs/60060557.mkv +黎瑞恩-这夜仍然温暖,http://em.21dtv.com/songs/60057899.mkv +温兆伦+陈松伶-正义柔情永在,http://em.21dtv.com/songs/60058358.mkv +邓建民-这一曲送给你(演唱会),http://em.21dtv.com/songs/60084535.mkv +陈宝珠+杨天经-这一曲送给您(演唱会),http://em.21dtv.com/songs/60057935.mkv +钟镇涛-这一曲送给你,http://em.21dtv.com/songs/60057934.mkv +许冠杰-这一曲送给你,http://em.21dtv.com/songs/60057933.mkv +佚名-早也盼晚也盼,http://em.21dtv.com/songs/60057313.mkv +李牧怡-只要你一分钟,http://em.21dtv.com/songs/60058523.mkv +佚名-只要你笑一笑,http://em.21dtv.com/songs/60058521.mkv +陈予新-只要你想起我,http://em.21dtv.com/songs/60058520.mkv +佚名-只要你想到我,http://em.21dtv.com/songs/60058519.mkv +佚名-只要你留下来,http://em.21dtv.com/songs/60058516.mkv +龙千玉+袁小迪-只有你了解我,http://em.21dtv.com/songs/60058602.mkv +无印良品-只要你还爱我,http://em.21dtv.com/songs/60087923.mkv +常宽-这一年过去了,http://em.21dtv.com/songs/60057931.mkv +李克勤+谭咏麟-总有你的鼓励,http://em.21dtv.com/songs/60059841.mkv +张学友-只有你不知道,http://em.21dtv.com/songs/60058600.mkv +罗志祥-这一秒我哭了,http://em.21dtv.com/songs/60057929.mkv +罗志祥-这一秒我哭了(演唱会),http://em.21dtv.com/songs/60057928.mkv +宁新兵-只要明天还在,http://em.21dtv.com/songs/60116719.mkv +郑少秋+陈松龄-只有梦里来去,http://em.21dtv.com/songs/60088760.mkv +丹妮-战友们来唱歌,http://em.21dtv.com/songs/60057489.mkv +张可儿-左眼泪右眼笑,http://em.21dtv.com/songs/60111062.mkv +单色凌-最依赖的温柔,http://em.21dtv.com/songs/60079819.mkv +付雪君-这一刻,爱吧,http://em.21dtv.com/songs/60119249.mkv +斯琴格日乐-早已经习惯了,http://em.21dtv.com/songs/60057314.mkv +石峄-这一句我爱你,http://em.21dtv.com/songs/60079554.mkv +璨乐团-做一回重庆人,http://em.21dtv.com/songs/60111301.mkv +张峡浩-只有活在梦里,http://em.21dtv.com/songs/60105829.mkv +孙悦-只要还有回忆,http://em.21dtv.com/songs/60090895.mkv +蔡佳麟-怎样乎你离开,http://em.21dtv.com/songs/60057405.mkv +黄志坚+老兵+小曾-战友还记得吗(演唱会),http://em.21dtv.com/songs/60057488.mkv +邰正宵-找一个字代替,http://em.21dtv.com/songs/60128457.mkv +卓依婷-找一个字代替,http://em.21dtv.com/songs/60057715.mkv +邰正宵-找一个字代替,http://em.21dtv.com/songs/60057714.mkv +费玉清-找一个下雨天,http://em.21dtv.com/songs/60094303.mkv +李嘉石-找一个下雨天,http://em.21dtv.com/songs/60066589.mkv +佚名-找一个下雨天,http://em.21dtv.com/songs/60057710.mkv +董事长乐团-找一个新世界,http://em.21dtv.com/songs/60057712.mkv +吴淑敏-找一个人来爱,http://em.21dtv.com/songs/60057709.mkv +雷安娜-做一个木头人(演唱会),http://em.21dtv.com/songs/60060742.mkv +王瑞霞-找一个落雨暝,http://em.21dtv.com/songs/60057706.mkv +佚名-找一个落雨暝(无原唱),http://em.21dtv.com/songs/60057705.mkv +王海滨-做一个好男人,http://em.21dtv.com/songs/60087169.mkv +张宇-最勇敢的季节,http://em.21dtv.com/songs/60060445.mkv +郭子-这样对我最好,http://em.21dtv.com/songs/60057890.mkv +罗力威-这夜的渡轮上,http://em.21dtv.com/songs/60097758.mkv +刘德华-昨夜的渡轮上,http://em.21dtv.com/songs/60060603.mkv +李炳文-昨夜的渡轮上,http://em.21dtv.com/songs/60060602.mkv +方顺吉-咱一定出头天,http://em.21dtv.com/songs/60083003.mkv +孙江枫-再一次想起你,http://em.21dtv.com/songs/60122658.mkv +刘德华-这样宠我好吗,http://em.21dtv.com/songs/60057882.mkv +严宽-再一次说爱你,http://em.21dtv.com/songs/60079473.mkv +林峰-再一次 on more time,http://em.21dtv.com/songs/60061872.mkv +李茂山-再一次看着我,http://em.21dtv.com/songs/60057010.mkv +好妹妹乐队-再一次的再见,http://em.21dtv.com/songs/60099916.mkv +赵鑫+汪正正-这一次不一样,http://em.21dtv.com/songs/60094703.mkv +林凡-这一半在等你,http://em.21dtv.com/songs/60057904.mkv +胡兵-终于被我发现,http://em.21dtv.com/songs/60059040.mkv +王麟+楚博仁-自由不是理由,http://em.21dtv.com/songs/60071543.mkv +江希文-只有爱不足够,http://em.21dtv.com/songs/60058575.mkv +何李-追忆(原版),http://em.21dtv.com/songs/60093613.mkv +羽泉-卓越2000,http://em.21dtv.com/songs/60059604.mkv +王宏恩+黑人-左鞋子右鞋子,http://em.21dtv.com/songs/60060654.mkv +樊凡+李慧珍-只需要一首歌,http://em.21dtv.com/songs/60058488.mkv +冷漠-只想一个人过,http://em.21dtv.com/songs/60112526.mkv +孙渔-只想一个人过,http://em.21dtv.com/songs/60058480.mkv +徐晓菁-走向我走向你,http://em.21dtv.com/songs/60059964.mkv +金城武-珍惜我的真心,http://em.21dtv.com/songs/60057997.mkv +宇多田ヒカル(宇多田光)-真夏の通り雨,http://em.21dtv.com/songs/60135113.mkv +刀郎-最心疼的女人,http://em.21dtv.com/songs/60065532.mkv +张宇-摘下所有美丽,http://em.21dtv.com/songs/60091077.mkv +苏小露-张先生讨学钱,http://em.21dtv.com/songs/60057546.mkv +甲子蕙+吴木-真心尚介美丽,http://em.21dtv.com/songs/60058262.mkv +许茹芸-只想说给你听,http://em.21dtv.com/songs/60088650.mkv +芊芳-珍惜身边的伴,http://em.21dtv.com/songs/60135660.mkv +张清芳-这些日子以来,http://em.21dtv.com/songs/60057875.mkv +阿杜+张清芳-这些日子以来(演唱会),http://em.21dtv.com/songs/60057874.mkv +朱宇-真心难以道尽,http://em.21dtv.com/songs/60086248.mkv +赵鑫-这些年你好吗,http://em.21dtv.com/songs/60134270.mkv +南宁七仔-最炫南宁风(舞曲版),http://em.21dtv.com/songs/60079818.mkv +强辩乐团-找寻你呼唤你(演唱会),http://em.21dtv.com/songs/60057698.mkv +白若溪-最想念的夏天,http://em.21dtv.com/songs/60120817.mkv +叶玉卿-珍惜你的女人,http://em.21dtv.com/songs/60057993.mkv +张皓然-最想念的季节,http://em.21dtv.com/songs/60065531.mkv +张信哲-最想念的季节,http://em.21dtv.com/songs/60060430.mkv +张含韵-最想念的季节,http://em.21dtv.com/songs/60060429.mkv +黄品冠-最想念的季节,http://em.21dtv.com/songs/60060428.mkv +齐霖-只想念不联系,http://em.21dtv.com/songs/60126501.mkv +DJ舞曲-最新慢摇歌曲,http://em.21dtv.com/songs/50000182.mkv +陈伟联-珍惜每一分钟,http://em.21dtv.com/songs/60086240.mkv +蝴蝶大人-掌心里的阳光,http://em.21dtv.com/songs/60068991.mkv +张清芳-真心可以永远,http://em.21dtv.com/songs/60058255.mkv +张小觉-张小觉很自觉,http://em.21dtv.com/songs/60063402.mkv +DJ舞曲-最新劲爆舞曲,http://em.21dtv.com/songs/50000181.mkv +梁静茹-最想环游世界,http://em.21dtv.com/songs/60088148.mkv +陈雅伦-只喜欢一个人,http://em.21dtv.com/songs/60058459.mkv +TFboys-真心话太冒险,http://em.21dtv.com/songs/60119195.mkv +纪海星-真心话大冒险,http://em.21dtv.com/songs/60112881.mkv +民歌-知心话对党说,http://em.21dtv.com/songs/60088185.mkv +许廷铿-最喜欢不是我,http://em.21dtv.com/songs/60108886.mkv +草蜢-只想跟你遇见,http://em.21dtv.com/songs/60058468.mkv +王大宇-只想给你幸福,http://em.21dtv.com/songs/60066595.mkv +品冠-最幸福的时间,http://em.21dtv.com/songs/60112585.mkv +范玮琪-在幸福的路上,http://em.21dtv.com/songs/60132837.mkv +安又琪-最幸福的孩子,http://em.21dtv.com/songs/60060439.mkv +郑秀文-真心多爱几天,http://em.21dtv.com/songs/60058241.mkv +周恬熙-只想唱歌而已,http://em.21dtv.com/songs/60133483.mkv +蒋雪儿-周星驰的电影,http://em.21dtv.com/songs/60120922.mkv +陈松伶-追,http://em.21dtv.com/songs/60123305.mkv +徐苑-追,http://em.21dtv.com/songs/60118585.mkv +焱彬-只想把你找到,http://em.21dtv.com/songs/60093700.mkv +京剧-这些兵急人难,http://em.21dtv.com/songs/60057869.mkv +钟镇涛-在屋檐上跳舞,http://em.21dtv.com/songs/60057177.mkv +郁可唯-指望,http://em.21dtv.com/songs/60114817.mkv +胡瓜-祝我一路顺风,http://em.21dtv.com/songs/60059402.mkv +刘琛-重温一次童年,http://em.21dtv.com/songs/60059157.mkv +马怡静-在我心中有你,http://em.21dtv.com/songs/60057175.mkv +蔡明顺-祝我生日快乐,http://em.21dtv.com/songs/60106262.mkv +周杰伦+温岚-祝我生日快乐,http://em.21dtv.com/songs/60089218.mkv +周笔畅-祝我生日快乐(演唱会),http://em.21dtv.com/songs/60072819.mkv +洪辰-祝我生日快乐,http://em.21dtv.com/songs/60070262.mkv +温岚-祝我生日快乐,http://em.21dtv.com/songs/60059398.mkv +邱泽-祝我生日快乐,http://em.21dtv.com/songs/60059397.mkv +孙淑媚-找无人同脚步,http://em.21dtv.com/songs/60057690.mkv +唐禹哲-最温柔的悬念,http://em.21dtv.com/songs/60060424.mkv +张秀卿-找无阮的春天(无原唱),http://em.21dtv.com/songs/60057691.mkv +周传雄-只为你做影子,http://em.21dtv.com/songs/60058457.mkv +火龙-再为你醉一回,http://em.21dtv.com/songs/60117015.mkv +涓子-再为你醉一回,http://em.21dtv.com/songs/60115271.mkv +大哲+苏唯-再为你醉一次,http://em.21dtv.com/songs/60099908.mkv +古品-只为你一个人,http://em.21dtv.com/songs/60079615.mkv +小北-最温暖的光芒,http://em.21dtv.com/songs/60126806.mkv +宋孟君+刘浩航-最温暖的冬天,http://em.21dtv.com/songs/60130256.mkv +费玉清-在我们小时候,http://em.21dtv.com/songs/60057159.mkv +孔先斌-在网络认识你,http://em.21dtv.com/songs/60127896.mkv +艾怡良-在我爱你之前,http://em.21dtv.com/songs/60084513.mkv +G D+TOP-ZUTTER,http://em.21dtv.com/songs/60114942.mkv +陈势安-再痛也没关系,http://em.21dtv.com/songs/60070213.mkv +孙国庆-再谈一次恋爱,http://em.21dtv.com/songs/60081979.mkv +苏醒-只谈心不贪心,http://em.21dtv.com/songs/60062935.mkv +同恩-昨天我十五岁,http://em.21dtv.com/songs/60060593.mkv +胡彦斌-昨天是你生日,http://em.21dtv.com/songs/60060589.mkv +梅艳芳-昨天你去哪啊(演唱会),http://em.21dtv.com/songs/60060587.mkv +范思威-昨天你哭了吗,http://em.21dtv.com/songs/60060586.mkv +陆虎-再听妈妈的话,http://em.21dtv.com/songs/60098846.mkv +周程成-在天亮前离开,http://em.21dtv.com/songs/60101619.mkv +孙思怡-在天亮前离开,http://em.21dtv.com/songs/60084512.mkv +王识贤-猪屠口的春天,http://em.21dtv.com/songs/60059223.mkv +黄舒骏-昨天今天永远,http://em.21dtv.com/songs/60060585.mkv +宋丹丹+赵本山-昨天今天明天,http://em.21dtv.com/songs/60089810.mkv +强辩乐团-昨天今天明天,http://em.21dtv.com/songs/60060583.mkv +侯湘婷+吴克群-昨天今天明天,http://em.21dtv.com/songs/60060582.mkv +李之勤-长痛还是短痛,http://em.21dtv.com/songs/60089947.mkv +佚名-昨天的告别式,http://em.21dtv.com/songs/60060575.mkv +周渝民-最特别的存在,http://em.21dtv.com/songs/60060420.mkv +周渝民-最特别的存在(演唱会),http://em.21dtv.com/songs/60060419.mkv +林志炫-这是最后一夜,http://em.21dtv.com/songs/60057852.mkv +谢和弦-这是最后一次,http://em.21dtv.com/songs/60120946.mkv +谢和弦-这是最后一次,http://em.21dtv.com/songs/60119977.mkv +刘美君-这双眼只望你(演唱会),http://em.21dtv.com/songs/60057857.mkv +熊峰-掌声与我同行,http://em.21dtv.com/songs/60068990.mkv +林蔷-只是因为寂寞,http://em.21dtv.com/songs/60061896.mkv +颖宝儿-只属于你的歌,http://em.21dtv.com/songs/60130892.mkv +双鱼座-只属于你的歌,http://em.21dtv.com/songs/60125254.mkv +孙权-只属于好朋友,http://em.21dtv.com/songs/60123821.mkv +阿秋-再说一次爱我,http://em.21dtv.com/songs/60126352.mkv +机动现场-再说一次爱我,http://em.21dtv.com/songs/60085136.mkv +佚名-再说一次爱我(无原唱),http://em.21dtv.com/songs/60056978.mkv +大哲-自私,http://em.21dtv.com/songs/60113371.mkv +周笔畅-只剩下我一个,http://em.21dtv.com/songs/60087592.mkv +卓依婷-浊水溪的恋情,http://em.21dtv.com/songs/60061966.mkv +陆徽+张磊+陈波+周海涛-这是我们的家,http://em.21dtv.com/songs/60065473.mkv +连亚琦-这是我的时代,http://em.21dtv.com/songs/60097759.mkv +关心妍-这是什么道理,http://em.21dtv.com/songs/60079550.mkv +王孟西-只是怕你寂寞,http://em.21dtv.com/songs/60110392.mkv +李晓-这是你的答案,http://em.21dtv.com/songs/60087113.mkv +张靓颖+王铮亮-只是没有如果,http://em.21dtv.com/songs/60121685.mkv +丹妮-战士们来唱歌,http://em.21dtv.com/songs/60057482.mkv +豪图-走上蒙古高原,http://em.21dtv.com/songs/60099500.mkv +RUBBER BAND-在森林和原野(演唱会),http://em.21dtv.com/songs/60057128.mkv +劲松-尊神卡瓦洛日,http://em.21dtv.com/songs/60060555.mkv +亚东-在世界最高处,http://em.21dtv.com/songs/60057135.mkv +谭咏麟-这世界已疯癫,http://em.21dtv.com/songs/60057839.mkv +韦唯-这世界需要你,http://em.21dtv.com/songs/60057838.mkv +高枫-这世界没你大,http://em.21dtv.com/songs/60081896.mkv +佚名-在世界放光芒(无原唱),http://em.21dtv.com/songs/60057132.mkv +范玮琪-左上角的心跳,http://em.21dtv.com/songs/60060648.mkv +喜多村英梨-掌 Show,http://em.21dtv.com/songs/60105718.mkv +金小曦-这时候那时候,http://em.21dtv.com/songs/60127511.mkv +黄征-这首歌真好听,http://em.21dtv.com/songs/60057856.mkv +覃浩-这首歌写给你,http://em.21dtv.com/songs/60117214.mkv +石头-真实故事改编,http://em.21dtv.com/songs/60106171.mkv +石头(五月天)-真实故事改编,http://em.21dtv.com/songs/60104344.mkv +暴林-最伤感的情歌,http://em.21dtv.com/songs/60105114.mkv +郑源+王奕心-这首歌唱给你,http://em.21dtv.com/songs/60112307.mkv +杨千桦-这首歌不好播,http://em.21dtv.com/songs/60092844.mkv +谢安琪-姿色份子(HD演唱会),http://em.21dtv.com/songs/60059607.mkv +Ailee-暂时分别一样,http://em.21dtv.com/songs/60108207.mkv +姚志强+蒋文端-长生殿之盟心(戏曲),http://em.21dtv.com/songs/60092507.mkv +严爵-暂时的男朋友,http://em.21dtv.com/songs/60079494.mkv +范小倩-最深沉的秘密,http://em.21dtv.com/songs/60114006.mkv +孙刚-走三边[演],http://em.21dtv.com/songs/60094872.mkv +熊七梅-转身不是离开,http://em.21dtv.com/songs/60110367.mkv +苏唯-至少被你爱过,http://em.21dtv.com/songs/60097732.mkv +张佑钱-在日记里等你,http://em.21dtv.com/songs/60114523.mkv +陈予新-自然和你有关,http://em.21dtv.com/songs/60059731.mkv +黄乙玲-真情只有一摆,http://em.21dtv.com/songs/60058188.mkv +江风-最亲最爱的你,http://em.21dtv.com/songs/60072837.mkv +孙子涵-最清晰的声音,http://em.21dtv.com/songs/60084653.mkv +沈建豪-斩情系断情意,http://em.21dtv.com/songs/60113789.mkv +郑希怡-准情人的关怀,http://em.21dtv.com/songs/60059573.mkv +张辉-追求梦想的人,http://em.21dtv.com/songs/60135243.mkv +王柯-最亲密的约定,http://em.21dtv.com/songs/60080282.mkv +群星-在晴朗的夏天(儿歌),http://em.21dtv.com/songs/60091850.mkv +阮丹青-争取来的爱情,http://em.21dtv.com/songs/60058311.mkv +佚名-真情何时收回,http://em.21dtv.com/songs/60058159.mkv +叶启田-真情乎人出卖,http://em.21dtv.com/songs/60058161.mkv +林姗-真情乎人出卖,http://em.21dtv.com/songs/60058160.mkv +佳佳-致青春的我们,http://em.21dtv.com/songs/60126605.mkv +阿任-挣钱不舍得花,http://em.21dtv.com/songs/60062200.mkv +翁倩玉-真情不必多说,http://em.21dtv.com/songs/60058152.mkv +阿温-最亲爱的妈妈,http://em.21dtv.com/songs/60060398.mkv +BLACK BOX-这片悠然地方,http://em.21dtv.com/songs/60057833.mkv +康艾威-真朋友假朋友,http://em.21dtv.com/songs/60115894.mkv +黄菁-再陪我说说话,http://em.21dtv.com/songs/60127627.mkv +南拳妈妈-再陪我看一次,http://em.21dtv.com/songs/60065450.mkv +梁朝伟-只怕留不住你,http://em.21dtv.com/songs/60058431.mkv +张挥-枕旁的圣诞卡,http://em.21dtv.com/songs/60105040.mkv +安琪-正牌查某朋友,http://em.21dtv.com/songs/60058351.mkv +张国荣+陈洁灵-只怕不再遇上,http://em.21dtv.com/songs/60058430.mkv +古巨基+容祖儿-只怕不再遇上(演唱会),http://em.21dtv.com/songs/60058429.mkv +陈慧琳+刘德华-只怕不再遇上(演唱会),http://em.21dtv.com/songs/60058428.mkv +杨千嬅+尹子维-只怕不再遇上(HD演唱会),http://em.21dtv.com/songs/60058427.mkv +何曼婷-只能走到这里,http://em.21dtv.com/songs/60103881.mkv +王馨平-在你走的一天,http://em.21dtv.com/songs/60057122.mkv +吴奇隆-祝你一路顺风,http://em.21dtv.com/songs/60059392.mkv +江志丰-祝你一帆风顺,http://em.21dtv.com/songs/60067813.mkv +唐古-做你心上的人,http://em.21dtv.com/songs/60097784.mkv +顾莉雅-祝你新年快乐,http://em.21dtv.com/songs/60131979.mkv +佚名-祝你新年快乐,http://em.21dtv.com/songs/60059386.mkv +张信哲-自你往年离去,http://em.21dtv.com/songs/60059720.mkv +高月珍-祝你事业如意(无原唱),http://em.21dtv.com/songs/60059381.mkv +刘德华-怎能说忘就忘,http://em.21dtv.com/songs/60057392.mkv +刘斯远-祝你生日快乐,http://em.21dtv.com/songs/60119296.mkv +佚名-祝你生日快乐,http://em.21dtv.com/songs/60059378.mkv +童唱-祝你生日快乐,http://em.21dtv.com/songs/60059377.mkv +范晓萱-猪你生日快乐,http://em.21dtv.com/songs/60059219.mkv +佚名-祝你圣诞快乐,http://em.21dtv.com/songs/60059380.mkv +王识贤-祝你圣诞快乐,http://em.21dtv.com/songs/60059379.mkv +卫兰-珍妮丝的告白,http://em.21dtv.com/songs/60079563.mkv +储兰兰-自那日与六郎,http://em.21dtv.com/songs/60079730.mkv +梁汉文-祝你旅途愉快,http://em.21dtv.com/songs/60084592.mkv +阿超-祝你旅途愉快,http://em.21dtv.com/songs/60066605.mkv +化学猴子-在你离开之后,http://em.21dtv.com/songs/60107550.mkv +小徐儿-在你离开之后,http://em.21dtv.com/songs/60068976.mkv +钟镇涛-祝你健康快乐,http://em.21dtv.com/songs/60059365.mkv +彭高平-祝你好运长久(演唱会),http://em.21dtv.com/songs/60070261.mkv +高永泰+町安扣-宅男和怪蜀黍,http://em.21dtv.com/songs/60086223.mkv +李玉玺-在你放手瞬间,http://em.21dtv.com/songs/60104210.mkv +张可儿-走你2013,http://em.21dtv.com/songs/60072827.mkv +孙恭庆-只能到这里了,http://em.21dtv.com/songs/60112624.mkv +孙恭庆-只能到这里了,http://em.21dtv.com/songs/60110135.mkv +丁宁-做你的小女人,http://em.21dtv.com/songs/60060716.mkv +许茹芸-最难的是相遇,http://em.21dtv.com/songs/60108005.mkv +阿斯根+兰卡措-在那东山顶上,http://em.21dtv.com/songs/60123276.mkv +云飞-在那东山顶上,http://em.21dtv.com/songs/60110832.mkv +完玛三智-在那东山顶上,http://em.21dtv.com/songs/60065454.mkv +谭晶-在那东山顶上,http://em.21dtv.com/songs/60057086.mkv +罗海英-在那东山顶上,http://em.21dtv.com/songs/60057085.mkv +谭晶-在您的旗帜下,http://em.21dtv.com/songs/60057123.mkv +孟彦-做你的乖孩子,http://em.21dtv.com/songs/60122662.mkv +陈梓童-做你的大英雄,http://em.21dtv.com/songs/60121084.mkv +叶良辰+风雷-做你的保护神,http://em.21dtv.com/songs/60116617.mkv +风雷+叶良辰-做你的保护神,http://em.21dtv.com/songs/60116382.mkv +KANYE WEST+JAY-z no church in the wild,http://em.21dtv.com/songs/60071696.mkv +叶倩文-最难唱的情歌(演唱会),http://em.21dtv.com/songs/60060390.mkv +AT17-最难唱的情歌(演唱会),http://em.21dtv.com/songs/60060389.mkv +辛晓琪-在你背影守候,http://em.21dtv.com/songs/60057104.mkv +张峡浩-怎么又想你了,http://em.21dtv.com/songs/60109305.mkv +潘丽丽+詹宏达-逐暝一通电话,http://em.21dtv.com/songs/60059245.mkv +张信哲-这么远那么近,http://em.21dtv.com/songs/60120500.mkv +张国荣+黄耀明-这么远那么近,http://em.21dtv.com/songs/60057830.mkv +刘和刚-最美,http://em.21dtv.com/songs/60106632.mkv +章小军-中脉我的精彩,http://em.21dtv.com/songs/60058976.mkv +戴佩妮-贼,http://em.21dtv.com/songs/60125598.mkv +于金胜-咱们屯里的人,http://em.21dtv.com/songs/60119240.mkv +赵本山-咱们屯里的人,http://em.21dtv.com/songs/60057250.mkv +赵本山-咱们屯里的人(演唱会),http://em.21dtv.com/songs/60057249.mkv +蔡健东-怎么说走就走,http://em.21dtv.com/songs/60062240.mkv +郑琳-怎么失去了你,http://em.21dtv.com/songs/60070224.mkv +顾峰-怎么说你才好,http://em.21dtv.com/songs/60057385.mkv +李国祥-最美世界=你+我,http://em.21dtv.com/songs/60060387.mkv +祁隆-怎么舍得你走,http://em.21dtv.com/songs/60111326.mkv +动感男孩-怎么舍得你走,http://em.21dtv.com/songs/60057379.mkv +顾峰-怎么说都没用,http://em.21dtv.com/songs/60057383.mkv +巫启贤-怎么舍得离去,http://em.21dtv.com/songs/60057376.mkv +逍遥香香+大约冬季-怎么能忘记你,http://em.21dtv.com/songs/60108027.mkv +刘美君-这么那么怎么,http://em.21dtv.com/songs/60057829.mkv +李玟-最美丽的珍珠,http://em.21dtv.com/songs/60088032.mkv +南风-最美丽的遗憾,http://em.21dtv.com/songs/60060386.mkv +杨克强-最美丽的温柔,http://em.21dtv.com/songs/60060385.mkv +钱刚+艾歌-最美丽的时候,http://em.21dtv.com/songs/60079811.mkv +高信-最美丽的姑娘,http://em.21dtv.com/songs/60109757.mkv +王若琳-最美丽的错误,http://em.21dtv.com/songs/60100324.mkv +林隆璇+张芸京-怎么开始忘了,http://em.21dtv.com/songs/60057363.mkv +容祖儿-这么近那么远,http://em.21dtv.com/songs/60108453.mkv +张靓颖-这么近那么远(演唱会),http://em.21dtv.com/songs/60070237.mkv +张靓颖-这么近那么远,http://em.21dtv.com/songs/60057828.mkv +张学友-这么近那么远(演唱会),http://em.21dtv.com/songs/60057827.mkv +阿华-怎么会遇见你,http://em.21dtv.com/songs/60057362.mkv +汪泓-怎么会忘记你,http://em.21dtv.com/songs/60119753.mkv +胡东清-怎么会忘记你,http://em.21dtv.com/songs/60100395.mkv +张柏芝-怎么会那么笨,http://em.21dtv.com/songs/60057359.mkv +永邦-怎么还没人爱,http://em.21dtv.com/songs/60091577.mkv +王中平-最美好的时光,http://em.21dtv.com/songs/60109508.mkv +邬祯琳-最美好的回忆,http://em.21dtv.com/songs/60084648.mkv +书闻-怎么回到从前,http://em.21dtv.com/songs/60067778.mkv +叶胜钦-怎么会爱上你,http://em.21dtv.com/songs/60118420.mkv +阿妹-姊妹2016,http://em.21dtv.com/songs/60130823.mkv +衡越-咱们的小村庄,http://em.21dtv.com/songs/60057247.mkv +尤国通-最美的军功章,http://em.21dtv.com/songs/60104971.mkv +黄思婷-走马灯的爱情,http://em.21dtv.com/songs/60059936.mkv +刘德华+吴婉芳-这么宠我好吗,http://em.21dtv.com/songs/60057824.mkv +铭鑫-咱们村里的事,http://em.21dtv.com/songs/60133016.mkv +本兮-怎么办我爱你,http://em.21dtv.com/songs/60067777.mkv +孙艺程-怎么爱到天亮,http://em.21dtv.com/songs/60057346.mkv +孟丰敏-怎么爱才没错,http://em.21dtv.com/songs/60099944.mkv +颜小健-朱丽叶的秋天,http://em.21dtv.com/songs/60079673.mkv +徐佳莹-在旅行的路上,http://em.21dtv.com/songs/60086209.mkv +解晓东-这里通向世界,http://em.21dtv.com/songs/60090209.mkv +雷安娜+林利-在旅途洒泪时(演唱会),http://em.21dtv.com/songs/60057074.mkv +和玉芳-这里是香巴拉,http://em.21dtv.com/songs/60072792.mkv +南风-走了你还有谁,http://em.21dtv.com/songs/60059923.mkv +汪东城-这里没有天使,http://em.21dtv.com/songs/60102440.mkv +何洁-最浪漫的心愿,http://em.21dtv.com/songs/60079801.mkv +南风+张咪-最浪漫的时光,http://em.21dtv.com/songs/60104861.mkv +叶蓓蕾-最浪漫的婚礼,http://em.21dtv.com/songs/60060355.mkv +许诺-贼拉拉的想你,http://em.21dtv.com/songs/60082026.mkv +谢丹-贼拉拉的爱你,http://em.21dtv.com/songs/60057337.mkv +严咏能-转来 Key,http://em.21dtv.com/songs/60116502.mkv +孟丰敏-种梨花种春风,http://em.21dtv.com/songs/60099946.mkv +谢世超-最苦最累的人,http://em.21dtv.com/songs/60097792.mkv +辛龙-再苦也要幸福,http://em.21dtv.com/songs/60080015.mkv +周鹏-摘颗星星给我,http://em.21dtv.com/songs/60090853.mkv +张学友-真空十九小时(无原唱),http://em.21dtv.com/songs/60058132.mkv +梁静茹-最快乐那一年,http://em.21dtv.com/songs/60060353.mkv +佚名-再看看我的眼(无原唱),http://em.21dtv.com/songs/60056925.mkv +佚名-最可靠的朋友,http://em.21dtv.com/songs/60060350.mkv +谢霆锋-最快到达的梦,http://em.21dtv.com/songs/60060351.mkv +陈奕迅-早开的长途班,http://em.21dtv.com/songs/60057307.mkv +B2-自己知自己事,http://em.21dtv.com/songs/60059711.mkv +冷弦+家家-再见再也不见,http://em.21dtv.com/songs/60093994.mkv +冷弦+26家家-再见再也不见,http://em.21dtv.com/songs/60093993.mkv +秋虹-再见再也不见,http://em.21dtv.com/songs/60056922.mkv +雪儿达娃-走进珠穆朗玛,http://em.21dtv.com/songs/60059915.mkv +万芳-自己照顾自己,http://em.21dtv.com/songs/60059710.mkv +莫文蔚-自己照顾自己,http://em.21dtv.com/songs/60059709.mkv +M TO M-再见真的再见,http://em.21dtv.com/songs/60112447.mkv +草蜢-再见雨天日子,http://em.21dtv.com/songs/60093094.mkv +林凡+李家发-再见亦是朋友,http://em.21dtv.com/songs/60056918.mkv +曾航生+何婉盈-再见亦是朋友,http://em.21dtv.com/songs/60056917.mkv +韩红-再叫一声妈妈,http://em.21dtv.com/songs/60068970.mkv +孙耀威+车婉婉-再见亦是恋人,http://em.21dtv.com/songs/60056916.mkv +蒋墨安+孟欣涵-在记忆里流浪,http://em.21dtv.com/songs/60128363.mkv +郭田耒-再敬一个军礼,http://em.21dtv.com/songs/60130801.mkv +林子祥-张敬轩-相对论,http://em.21dtv.com/songs/60057536.mkv +雪莉-再见雪花飘下,http://em.21dtv.com/songs/60112374.mkv +刀郎-再见乌鲁木齐,http://em.21dtv.com/songs/60070211.mkv +蔡幸娟-再见蔚蓝海岸,http://em.21dtv.com/songs/60056895.mkv +金志文-抓紧我放弃我,http://em.21dtv.com/songs/60130809.mkv +容祖儿-再见我的初恋,http://em.21dtv.com/songs/60056906.mkv +舞曲-再见我的爱人,http://em.21dtv.com/songs/60091913.mkv +邹宏宇+尼克-再见我的爱人,http://em.21dtv.com/songs/60081453.mkv +胡琳-再见我的爱人,http://em.21dtv.com/songs/60079464.mkv +臧天朔-再见我的爱人,http://em.21dtv.com/songs/60056905.mkv +屠洪纲-再见我的爱人,http://em.21dtv.com/songs/60056904.mkv +苏慧伦-再见我的爱人,http://em.21dtv.com/songs/60056903.mkv +费玉清-再见我的爱人,http://em.21dtv.com/songs/60056902.mkv +动力火车-再见我的爱人,http://em.21dtv.com/songs/60056901.mkv +邓丽君-再见我的爱人(演唱会),http://em.21dtv.com/songs/60056900.mkv +臧天朔-再见!我的爱人,http://em.21dtv.com/songs/60056810.mkv +望海高歌-再见我爱的人,http://em.21dtv.com/songs/60126979.mkv +陈奕迅-最佳损友(HD演唱会),http://em.21dtv.com/songs/60060330.mkv +林道华-曾经深深爱过,http://em.21dtv.com/songs/60086222.mkv +古巨基-追 今生今世,http://em.21dtv.com/songs/60134986.mkv +欧汉声-指尖上的温度,http://em.21dtv.com/songs/60097765.mkv +咏峰-走进千家万户,http://em.21dtv.com/songs/60081204.mkv +陈永锋-走进千家万户,http://em.21dtv.com/songs/60079746.mkv +张俊天-最坚强的眼泪,http://em.21dtv.com/songs/60107708.mkv +王桂兰-走进平民百姓,http://em.21dtv.com/songs/60111272.mkv +夏后-再见 那时光,http://em.21dtv.com/songs/60086200.mkv +邝美云-再见那里再见,http://em.21dtv.com/songs/60056884.mkv +李唯枫-转角那个女孩,http://em.21dtv.com/songs/60081928.mkv +莫少聪-再见你的晚上,http://em.21dtv.com/songs/60056885.mkv +兄弟联-再见你的温柔,http://em.21dtv.com/songs/60089642.mkv +乐飞扬-走进你的世界,http://em.21dtv.com/songs/60099729.mkv +庄秋玉-浙江美丽天堂,http://em.21dtv.com/songs/60126848.mkv +黄雅莉-再见面的时候,http://em.21dtv.com/songs/60111557.mkv +黄雅莉-再见面的时候,http://em.21dtv.com/songs/60070210.mkv +卢广仲-最寂寞的时候,http://em.21dtv.com/songs/60060313.mkv +天意-再见了心上人,http://em.21dtv.com/songs/60079463.mkv +至上励合-再见了我的爱,http://em.21dtv.com/songs/60056869.mkv +黄凯芹-再见鲁思玛莉,http://em.21dtv.com/songs/60089028.mkv +许志安-再见露丝玛莉,http://em.21dtv.com/songs/60056880.mkv +许志安-再见露丝玛莉(演唱会),http://em.21dtv.com/songs/60056878.mkv +何韵诗-再见露丝玛莉(演唱会),http://em.21dtv.com/songs/60056877.mkv +彭玮瀚-再见老婆大人,http://em.21dtv.com/songs/60122758.mkv +田野-再见了大别山,http://em.21dtv.com/songs/60105269.mkv +尤国通-再见了大别山,http://em.21dtv.com/songs/60104969.mkv +李潮-再见了大别山,http://em.21dtv.com/songs/60071492.mkv +吴雁泽-再见了大别山,http://em.21dtv.com/songs/60056868.mkv +吕继宏-再见了大别山,http://em.21dtv.com/songs/60056867.mkv +刘斌-再见了大别山,http://em.21dtv.com/songs/60056866.mkv +蒋大为-再见了大别山,http://em.21dtv.com/songs/60056865.mkv +TAE-再见加州海滩,http://em.21dtv.com/songs/60056860.mkv +王志文-知己何必红粉,http://em.21dtv.com/songs/60058666.mkv +林忆莲-芝加哥的故事(演唱会),http://em.21dtv.com/songs/60058631.mkv +果味VC-再见孤独的心,http://em.21dtv.com/songs/60130488.mkv +刘佳慧+窦唯-再见风中之岛,http://em.21dtv.com/songs/60056855.mkv +汪峰-再见二十世纪,http://em.21dtv.com/songs/60102444.mkv +王莉-藏家儿女的心(演唱会),http://em.21dtv.com/songs/60070564.mkv +谢安琪-直角等于三角,http://em.21dtv.com/songs/60058730.mkv +谢安琪-直角等于三角(演唱会),http://em.21dtv.com/songs/60058729.mkv +阎维文-咱家的年夜饭,http://em.21dtv.com/songs/60057237.mkv +燕妮-走进东方的梦,http://em.21dtv.com/songs/60059909.mkv +孙子涵-最简单的声音,http://em.21dtv.com/songs/60070278.mkv +郭静-最精彩的艳遇,http://em.21dtv.com/songs/60112314.mkv +姜木-紫禁城的女人,http://em.21dtv.com/songs/60079715.mkv +郭建宁-走进春的怀抱,http://em.21dtv.com/songs/60128481.mkv +J美-最近不知怎么,http://em.21dtv.com/songs/60129951.mkv +茜拉-再见 不再见,http://em.21dtv.com/songs/60112178.mkv +李贺-再见不用抱歉,http://em.21dtv.com/songs/60065447.mkv +邓丽欣-再见不是朋友,http://em.21dtv.com/songs/60056847.mkv +王晓天-再见吧喵小姐,http://em.21dtv.com/songs/60081733.mkv +庾澄庆-最骄傲的理由,http://em.21dtv.com/songs/60121640.mkv +庾澄庆-最骄傲的理由,http://em.21dtv.com/songs/60060337.mkv +张峥-再见2013,http://em.21dtv.com/songs/60086199.mkv +黄西田-种葫仔生菜瓜,http://em.21dtv.com/songs/60059072.mkv +2女-只和lv做朋友,http://em.21dtv.com/songs/60058408.mkv +李丹阳-最红最美的旗,http://em.21dtv.com/songs/60060164.mkv +曹雅雯-最后最爱的人,http://em.21dtv.com/songs/60079799.mkv +徐良+小暖-在回忆中死去,http://em.21dtv.com/songs/60057061.mkv +动力火车-最后一种快乐,http://em.21dtv.com/songs/60060303.mkv +蔡琴-最后一夜(HD演唱会),http://em.21dtv.com/songs/60060296.mkv +陈浩民-总会有一个人,http://em.21dtv.com/songs/60106407.mkv +桂莹莹-最后一夜爱你,http://em.21dtv.com/songs/60132632.mkv +罗海珍-最后一首情歌,http://em.21dtv.com/songs/60135628.mkv +苏琛-最后一首情歌,http://em.21dtv.com/songs/60126111.mkv +左健-最后一首情歌,http://em.21dtv.com/songs/60099983.mkv +尹啸-再喊一声妈妈,http://em.21dtv.com/songs/60129013.mkv +童丽+刘艺-最后一声爱你,http://em.21dtv.com/songs/60101463.mkv +龙飘飘-最后一声爱你,http://em.21dtv.com/songs/60060286.mkv +段千寻-最后一个拥抱,http://em.21dtv.com/songs/60060278.mkv +B.A.D-最后一个拥抱,http://em.21dtv.com/songs/60060277.mkv +金莎-最后一个夏天,http://em.21dtv.com/songs/60060276.mkv +赵真-最后一个情人,http://em.21dtv.com/songs/60116266.mkv +孙露-最后一个情人,http://em.21dtv.com/songs/60114484.mkv +孙露-最后一个情人,http://em.21dtv.com/songs/60084640.mkv +赵真-最后一个情人,http://em.21dtv.com/songs/60060274.mkv +何龙雨-最后一个情人,http://em.21dtv.com/songs/60060273.mkv +陈瑞-最后一个情人,http://em.21dtv.com/songs/60060272.mkv +孙铭泽-最后一个军礼,http://em.21dtv.com/songs/60116713.mkv +蓝雨-最后一个谎言,http://em.21dtv.com/songs/60060271.mkv +丁子-最后一个电话,http://em.21dtv.com/songs/60134837.mkv +晓婉-最后一封情书,http://em.21dtv.com/songs/60030831.mkv +康康-最后一封简讯,http://em.21dtv.com/songs/60060265.mkv +杨克强-最后一滴眼泪(无原唱),http://em.21dtv.com/songs/60060264.mkv +梁静茹-最后一次争执,http://em.21dtv.com/songs/60091528.mkv +胡锰-最后一次纵容,http://em.21dtv.com/songs/60097790.mkv +易欣-最后一次选择,http://em.21dtv.com/songs/60091269.mkv +佟妞-最后一次想你,http://em.21dtv.com/songs/60134893.mkv +玺晨-最后一次想你,http://em.21dtv.com/songs/60129425.mkv +陈魁-最后一次想你,http://em.21dtv.com/songs/60086293.mkv +陈升-最後一次温柔,http://em.21dtv.com/songs/60060308.mkv +佚名-最后一次温柔,http://em.21dtv.com/songs/60060260.mkv +陈升-最后一次温柔,http://em.21dtv.com/songs/60060259.mkv +熊大-最后一次宿醉,http://em.21dtv.com/songs/60107050.mkv +陈瑞-最后一次流泪,http://em.21dtv.com/songs/60086292.mkv +丁当-最后一次寂寞,http://em.21dtv.com/songs/60062321.mkv +韩宝仪-最后一次回眸,http://em.21dtv.com/songs/60060257.mkv +苏慧伦-最后一次感动,http://em.21dtv.com/songs/60060256.mkv +吴若希-最后一次分手,http://em.21dtv.com/songs/60127837.mkv +吴若希-最后一次分手,http://em.21dtv.com/songs/60126702.mkv +赵薇-最后一次分手,http://em.21dtv.com/songs/60060255.mkv +姜育恒-最后一次等待(无原唱),http://em.21dtv.com/songs/60060254.mkv +刘依纯-最后一杯咖啡,http://em.21dtv.com/songs/60060246.mkv +满江-最后一班地铁(演唱会),http://em.21dtv.com/songs/60060241.mkv +佚名-最后一班渡轮,http://em.21dtv.com/songs/60060242.mkv +祁隆-最后,http://em.21dtv.com/songs/60113910.mkv +刘德华-最后你也走了,http://em.21dtv.com/songs/60060230.mkv +彭羚-重回那天那地,http://em.21dtv.com/songs/60059131.mkv +林展逸-最怀念你介人,http://em.21dtv.com/songs/60060309.mkv +刘一祯-中华民族万岁,http://em.21dtv.com/songs/60058958.mkv +张蓉蓉-再会啦再会啦,http://em.21dtv.com/songs/60079455.mkv +豪记大对唱-再会啦再会啦,http://em.21dtv.com/songs/60056792.mkv +陈一郎-再会啦!再会(无原唱),http://em.21dtv.com/songs/60095964.mkv +张伟文-再会了野茉莉,http://em.21dtv.com/songs/60092560.mkv +高向鹏-再会啦心爱的(无原唱),http://em.21dtv.com/songs/60027148.mkv +陈亚兰+施文彬-再会啦梦中见,http://em.21dtv.com/songs/60056779.mkv +羽泉+李永波-中华力量i believe,http://em.21dtv.com/songs/60058948.mkv +范晓萱-只喝可乐的猫,http://em.21dtv.com/songs/60114007.mkv +赵照+高夫-在火光中唱歌,http://em.21dtv.com/songs/60117260.mkv +高夫+赵照-在火光中唱歌,http://em.21dtv.com/songs/60114277.mkv +Kent王健-最后的捉迷藏,http://em.21dtv.com/songs/60097791.mkv +容祖儿-最后的茱丽叶,http://em.21dtv.com/songs/60060224.mkv +容祖儿-最后的茱丽叶(演唱会),http://em.21dtv.com/songs/60060223.mkv +郭桂彬-最后的一张批,http://em.21dtv.com/songs/60060219.mkv +龙飘飘-最后的夜快车,http://em.21dtv.com/songs/60094366.mkv +黄清元-最后的夜快车,http://em.21dtv.com/songs/60090357.mkv +郑智化-最后的夜都市,http://em.21dtv.com/songs/60060217.mkv +陈奕迅-最后的嬉皮士,http://em.21dtv.com/songs/60110623.mkv +许志安-最后的三拍步,http://em.21dtv.com/songs/60023760.mkv +李玖哲-最后的那一天,http://em.21dtv.com/songs/60060192.mkv +黄乙玲-最后的捷运站,http://em.21dtv.com/songs/60060183.mkv +张迈-自豪的建设者,http://em.21dtv.com/songs/60071541.mkv +秀兰玛雅-最后的火车站,http://em.21dtv.com/songs/60060182.mkv +方瑞娥-最后的火车站(无原唱),http://em.21dtv.com/songs/60060181.mkv +陈建华-最后的火车站(古鲁巴),http://em.21dtv.com/songs/60060180.mkv +蒋蒋-最后的分岔口,http://em.21dtv.com/songs/60129571.mkv +八三夭-最后的831,http://em.21dtv.com/songs/60079777.mkv +张锦华-最后才知输赢(无原唱),http://em.21dtv.com/songs/60076176.mkv +余天-最后才知输赢,http://em.21dtv.com/songs/60060168.mkv +佚名-最后才知输赢,http://em.21dtv.com/songs/60060167.mkv +阮兆祥+梁咏琳-再合唱这首歌,http://em.21dtv.com/songs/60056757.mkv +红月-做回曾经的我,http://em.21dtv.com/songs/60102613.mkv +多亮-最好不要爱我,http://em.21dtv.com/songs/60105722.mkv +高胜美-再会吧心上人(无原唱),http://em.21dtv.com/songs/60056773.mkv +江映蓉-在黑暗中漫舞,http://em.21dtv.com/songs/60079478.mkv +悠悠-中国字中国画,http://em.21dtv.com/songs/60101354.mkv +王月华-中国字中国画,http://em.21dtv.com/songs/60063048.mkv +阎维文-祖国在我心中,http://em.21dtv.com/songs/60114170.mkv +周燕君-祖国正是花季,http://em.21dtv.com/songs/60066617.mkv +殷秀梅-祖国正是花季,http://em.21dtv.com/songs/60060026.mkv +董文华-祖国正是花季,http://em.21dtv.com/songs/60060025.mkv +殷秀梅-祖国正是花季(演唱会),http://em.21dtv.com/songs/60060024.mkv +江涛-中国足球战歌,http://em.21dtv.com/songs/60091581.mkv +佚名-中国永远辉煌,http://em.21dtv.com/songs/60058933.mkv +阿木-走过一九九五(演唱会),http://em.21dtv.com/songs/60059898.mkv +郑培钦-中国选择了你,http://em.21dtv.com/songs/60111436.mkv +黑龙-中国心中国梦,http://em.21dtv.com/songs/60106516.mkv +黑龙-中国心中国梦,http://em.21dtv.com/songs/60084576.mkv +宋祖英-中国心故乡情,http://em.21dtv.com/songs/60090950.mkv +王啸坤-再给我放一首,http://em.21dtv.com/songs/60097730.mkv +钟丽燕-祖国我的最爱,http://em.21dtv.com/songs/60088810.mkv +刘子毅-再给我点时间,http://em.21dtv.com/songs/60065444.mkv +张博文-中国是我家乡,http://em.21dtv.com/songs/60126862.mkv +孙淑媚-这甘是阮的爱,http://em.21dtv.com/songs/60057776.mkv +于乃久-这个日子真好,http://em.21dtv.com/songs/60061883.mkv +水果哥-中国人中国心,http://em.21dtv.com/songs/60101409.mkv +赵鑫-找个人来陪我,http://em.21dtv.com/songs/60134269.mkv +曹雪-找个人来爱我,http://em.21dtv.com/songs/60086231.mkv +肖翊歌-找个人来爱我,http://em.21dtv.com/songs/60079537.mkv +范美-中国人东方龙,http://em.21dtv.com/songs/60127337.mkv +周燕君-祖国亲祖国美,http://em.21dtv.com/songs/60084621.mkv +关庆小海-中国情中国爱,http://em.21dtv.com/songs/60132225.mkv +关庆小海-中国情中国爱,http://em.21dtv.com/songs/60127745.mkv +李思+刘宁娜-中国年万万年,http://em.21dtv.com/songs/60080294.mkv +优客李林-只给你just for you,http://em.21dtv.com/songs/60058403.mkv +孙雷+龚丹-中国梦中国福,http://em.21dtv.com/songs/60110997.mkv +大海-中国梦我的梦,http://em.21dtv.com/songs/60135082.mkv +君子-中国梦我的梦,http://em.21dtv.com/songs/60081023.mkv +蒋大为-中国梦少年强,http://em.21dtv.com/songs/60108875.mkv +云飞-中国梦少年强,http://em.21dtv.com/songs/60108286.mkv +汤非-中国梦科学梦,http://em.21dtv.com/songs/60125850.mkv +冬雨-中国梦华夏情,http://em.21dtv.com/songs/60131187.mkv +张柏菡-中国梦飞起来,http://em.21dtv.com/songs/60115152.mkv +赤龙-中国龙中国梦,http://em.21dtv.com/songs/60087132.mkv +羽泉-烛光里的妈妈,http://em.21dtv.com/songs/60072816.mkv +姜育恒-烛光里的妈妈,http://em.21dtv.com/songs/60071532.mkv +卓依婷-烛光里的妈妈,http://em.21dtv.com/songs/60059252.mkv +张强-烛光里的妈妈,http://em.21dtv.com/songs/60059251.mkv +毛阿敏-烛光里的妈妈,http://em.21dtv.com/songs/60059250.mkv +陈小春-找个空间唱歌,http://em.21dtv.com/songs/60057677.mkv +汪峰-这感觉怎么样,http://em.21dtv.com/songs/60098552.mkv +护士合唱团-中国护士之歌,http://em.21dtv.com/songs/60067799.mkv +皓天-中国歌最美丽,http://em.21dtv.com/songs/60079648.mkv +卓依婷-走过的咖啡屋,http://em.21dtv.com/songs/60087487.mkv +陈熠-祖国的菊花台,http://em.21dtv.com/songs/60079755.mkv +王丽达-祖国的好江南,http://em.21dtv.com/songs/60098626.mkv +殷秀梅-中国的大舞台,http://em.21dtv.com/songs/60088175.mkv +花鼓戏-张广达出门来,http://em.21dtv.com/songs/60090158.mkv +何龙雨-中国不容侵犯,http://em.21dtv.com/songs/60079644.mkv +殷秀梅-祖国不会忘记,http://em.21dtv.com/songs/60108654.mkv +韩红-祖国不会忘记,http://em.21dtv.com/songs/60084619.mkv +熊卿才+幺红+王霞+张积民-祖国不会忘记(演唱会),http://em.21dtv.com/songs/60059997.mkv +群星-祖国不会忘记(演唱会),http://em.21dtv.com/songs/60059996.mkv +七郎-正港ㄟ好男儿(无原唱),http://em.21dtv.com/songs/60058345.mkv +张学友-走过1999,http://em.21dtv.com/songs/60059887.mkv +张学友-走过1999(演唱会),http://em.21dtv.com/songs/60059886.mkv +阿木-走过1995,http://em.21dtv.com/songs/60059885.mkv +庄学忠+高胜云-在风中说珍重,http://em.21dtv.com/songs/60009565.mkv +容祖儿-这分钟更爱你,http://em.21dtv.com/songs/60057769.mkv +羽泉-追风筝的孩子,http://em.21dtv.com/songs/60107131.mkv +陈楚生-追风筝的孩子,http://em.21dtv.com/songs/60067817.mkv +张敬轩-追风筝的孩子(演唱会),http://em.21dtv.com/songs/60059506.mkv +容祖儿+林欣彤-追风筝的风筝,http://em.21dtv.com/songs/60069025.mkv +小雪-这分钟不爱我,http://em.21dtv.com/songs/60057768.mkv +黄雅莉-在分手的地方,http://em.21dtv.com/songs/60071495.mkv +望海高歌-这份情已走远,http://em.21dtv.com/songs/60105126.mkv +筷子兄弟-祝福你亲爱的,http://em.21dtv.com/songs/60059326.mkv +张地-祝福你的朋友,http://em.21dtv.com/songs/60091061.mkv +孟庭苇-重逢2001,http://em.21dtv.com/songs/60059110.mkv +佚名-咱二人的约会,http://em.21dtv.com/songs/60057236.mkv +潘美辰-找到自己的爱,http://em.21dtv.com/songs/60070232.mkv +佚名-找到自己的爱,http://em.21dtv.com/songs/60057674.mkv +张祥洪-真的真的爱你,http://em.21dtv.com/songs/60058122.mkv +郑源-真的用心良苦,http://em.21dtv.com/songs/60058120.mkv +佚名-再当一天爱人(无原唱),http://em.21dtv.com/songs/60056745.mkv +林子祥-在等一个晚上,http://em.21dtv.com/songs/60057044.mkv +佚名-找到一个朋友,http://em.21dtv.com/songs/60057673.mkv +黎瑞恩-自动消失lonely days,http://em.21dtv.com/songs/60059678.mkv +单行道乐队-猪都笑了续集,http://em.21dtv.com/songs/60087497.mkv +苏慧伦-找到幸福那年,http://em.21dtv.com/songs/60057672.mkv +韩信-真的为你哭了,http://em.21dtv.com/songs/60058110.mkv +林晏如-注定为你等待,http://em.21dtv.com/songs/60059285.mkv +王绎龙-真的停不下来,http://em.21dtv.com/songs/60103462.mkv +张靓颖-直到世界末日(演唱会),http://em.21dtv.com/songs/60084553.mkv +齐秦-直到世界末日,http://em.21dtv.com/songs/60058725.mkv +张杰-直到世界尽头,http://em.21dtv.com/songs/60125512.mkv +孙淩生-直到世界尽头,http://em.21dtv.com/songs/60094057.mkv +林俊杰-只对你有感觉,http://em.21dtv.com/songs/60133867.mkv +林俊杰-只对你有感觉,http://em.21dtv.com/songs/60058402.mkv +飞轮海+HEBE-只对你有感觉,http://em.21dtv.com/songs/60058401.mkv +林峰-直到你不找我(演唱会),http://em.21dtv.com/songs/60079604.mkv +林峰-直到你不找我,http://em.21dtv.com/songs/60058724.mkv +祁隆-真的没有骗你,http://em.21dtv.com/songs/60100342.mkv +马云龙-真的好想回家,http://em.21dtv.com/songs/60072798.mkv +孟庭苇-真的还是假的,http://em.21dtv.com/songs/60058093.mkv +朱咪咪-再度孤独+命运(演唱会),http://em.21dtv.com/songs/60056748.mkv +何弘轩-在刀锋上起舞,http://em.21dtv.com/songs/60119256.mkv +光前-早到的秋天轨,http://em.21dtv.com/songs/60121391.mkv +李克勤-只懂得对你好,http://em.21dtv.com/songs/60058399.mkv +张雨-咱的爸爸妈妈,http://em.21dtv.com/songs/60100041.mkv +默言+心锁-真的爱上了你,http://em.21dtv.com/songs/60133140.mkv +潘越云-咱的爱情故事,http://em.21dtv.com/songs/60057226.mkv +苏有朋-真的爱过就好,http://em.21dtv.com/songs/60091934.mkv +尤雅-咱的爱不是爱,http://em.21dtv.com/songs/60057222.mkv +孙嫣然-真的爱爱过你,http://em.21dtv.com/songs/60058080.mkv +毛宁-再次拥有明天,http://em.21dtv.com/songs/60056743.mkv +徐松涛+黄容-自从遇见了你,http://em.21dtv.com/songs/60110223.mkv +高子童-再唱心中的歌,http://em.21dtv.com/songs/60071490.mkv +彭羚-在晨曦中出发,http://em.21dtv.com/songs/60092699.mkv +彭羚-在晨羲中出发(演唱会),http://em.21dtv.com/songs/60057040.mkv +琼雪卓玛-走出喜玛拉雅,http://em.21dtv.com/songs/60059871.mkv +八斤-再唱同桌的你,http://em.21dtv.com/songs/60123642.mkv +任妙音-在春天里想你,http://em.21dtv.com/songs/60125096.mkv +林俊杰-真材实料的我,http://em.21dtv.com/songs/60058071.mkv +陈妃-走出你的世界,http://em.21dtv.com/songs/60059870.mkv +李潮+韦蕊-在灿烂阳光下,http://em.21dtv.com/songs/60079477.mkv +王霞-在灿烂阳光下,http://em.21dtv.com/songs/60057039.mkv +阿威-走出毒品世界(无原唱),http://em.21dtv.com/songs/60059868.mkv +黄深曲-最彻底的朋友,http://em.21dtv.com/songs/60127620.mkv +巫启贤-这次不是流言,http://em.21dtv.com/songs/60057757.mkv +沈文程-真慈悲感恩啊(无原唱),http://em.21dtv.com/songs/60058076.mkv +明圣凯-战场2011,http://em.21dtv.com/songs/60057463.mkv +罗逻圣-这辈子只跟你,http://em.21dtv.com/songs/60129489.mkv +黄清元-抓不住她的心,http://em.21dtv.com/songs/60090356.mkv +邱永传-抓不住你的心,http://em.21dtv.com/songs/60117278.mkv +邱永传-抓不住你的心,http://em.21dtv.com/songs/60111434.mkv +和汇慧-抓不住的温柔,http://em.21dtv.com/songs/60111779.mkv +刘恺威-抓不住的温柔,http://em.21dtv.com/songs/60110884.mkv +尚芸菲-止不住的思念,http://em.21dtv.com/songs/60058756.mkv +黄磊-再别再别康桥,http://em.21dtv.com/songs/60056730.mkv +英基-抓不住爱的手,http://em.21dtv.com/songs/60063279.mkv +王洋+安明亮-扎巴依的夏天,http://em.21dtv.com/songs/60070225.mkv +王洋+安明亮-扎巴依的秋天,http://em.21dtv.com/songs/60071505.mkv +王洋+安明亮-扎巴依的冬天,http://em.21dtv.com/songs/60102538.mkv +王洋+安明亮-扎巴依的春天,http://em.21dtv.com/songs/60065468.mkv +甄妮-再不想拥有他(演唱会),http://em.21dtv.com/songs/60056731.mkv +带泪的鱼-最卑微的下贱,http://em.21dtv.com/songs/60094884.mkv +许哲佩-这不是我的错,http://em.21dtv.com/songs/60116242.mkv +张冬玲+冷漠-真不是闹着玩,http://em.21dtv.com/songs/60100010.mkv +冷漠+张冬玲-真不是闹着玩,http://em.21dtv.com/songs/60099788.mkv +[Group] +groupName=十六万歌曲MV等 - 92 +萧亚轩-准备好了没有,http://em.21dtv.com/songs/60059570.mkv +姚志强-朱弁回朝--招魂,http://em.21dtv.com/songs/60059198.mkv +宋祖英-这边风景独好,http://em.21dtv.com/songs/60090971.mkv +陶静-摘不到的星星,http://em.21dtv.com/songs/60133061.mkv +林冲-最不懂爱的人,http://em.21dtv.com/songs/60069040.mkv +茹雪-走不出你的爱,http://em.21dtv.com/songs/60067825.mkv +伊扬-真爱永远我的TITANIC,http://em.21dtv.com/songs/60090575.mkv +黎明-真爱一生难求,http://em.21dtv.com/songs/60058062.mkv +群星-真爱与你同在,http://em.21dtv.com/songs/60058066.mkv +凌宏兵-真爱与你同行,http://em.21dtv.com/songs/60127761.mkv +王璐岢+冷漠-再爱也没有用,http://em.21dtv.com/songs/60081770.mkv +谷峰-只爱我一点点,http://em.21dtv.com/songs/60092124.mkv +杨宗纬-最爱,http://em.21dtv.com/songs/60079765.mkv +汪起正-再爱我 OK,http://em.21dtv.com/songs/60115261.mkv +成铭-真爱为你无眠,http://em.21dtv.com/songs/60086241.mkv +慕容晓晓-再爱我好不好,http://em.21dtv.com/songs/60087093.mkv +佚名-最爱是你-中三,http://em.21dtv.com/songs/60060100.mkv +李圣杰-抓爱情的凶手,http://em.21dtv.com/songs/60059407.mkv +冯传利-再爱你这一生,http://em.21dtv.com/songs/60093985.mkv +岩罕建-只爱你一个人,http://em.21dtv.com/songs/60124815.mkv +任贤齐-只爱你一个人,http://em.21dtv.com/songs/60058391.mkv +陈慧琳-最爱你的是我,http://em.21dtv.com/songs/60060091.mkv +周传雄-最爱你的时候,http://em.21dtv.com/songs/60060090.mkv +小鸣-再爱你的时候,http://em.21dtv.com/songs/60056715.mkv +许嘉文-最爱你的男人,http://em.21dtv.com/songs/60060089.mkv +张清芳+优客李林-在爱你的路上,http://em.21dtv.com/songs/60057030.mkv +姚谦-在爱你的路上,http://em.21dtv.com/songs/60057029.mkv +詹雅雯-真爱等一个人,http://em.21dtv.com/songs/60058034.mkv +王馨-最爱的人是你,http://em.21dtv.com/songs/60106146.mkv +陈兴瑜-最爱的人是你,http://em.21dtv.com/songs/60060083.mkv +邻家王子-最爱的那个人,http://em.21dtv.com/songs/60079767.mkv +才让措-左岸的咖啡馆,http://em.21dtv.com/songs/60097722.mkv +孙悦+青春美少女-自傲的建设者,http://em.21dtv.com/songs/60090894.mkv +许鹤缤-最爱的还是你,http://em.21dtv.com/songs/60112238.mkv +May J.-元気を出して,http://em.21dtv.com/songs/60104704.mkv +锦绣二重唱-一直走一直走,http://em.21dtv.com/songs/60053928.mkv +段丽阳-有志者事竟成,http://em.21dtv.com/songs/60088171.mkv +胡丹丹-一直在你身旁,http://em.21dtv.com/songs/60112895.mkv +陈小汉-夜撰之红楼梦(戏曲),http://em.21dtv.com/songs/60093429.mkv +阿桑-叶子,http://em.21dtv.com/songs/60113044.mkv +王心凌-远在眼前的你,http://em.21dtv.com/songs/60117034.mkv +王心凌-远在眼前的你,http://em.21dtv.com/songs/60116139.mkv +周敬-夜中影梦中你,http://em.21dtv.com/songs/60066515.mkv +王薇茜-依子郁金香吟,http://em.21dtv.com/songs/60102557.mkv +赵维琦-羊卓雍湖的蓝,http://em.21dtv.com/songs/60122147.mkv +萧亚轩-一直有个秘密,http://em.21dtv.com/songs/60053923.mkv +格桑达哇-一转眼的天堂,http://em.21dtv.com/songs/60125804.mkv +傅佩嘉-一支烟的时间,http://em.21dtv.com/songs/60053880.mkv +林一峰-一支烟的时间(演唱会),http://em.21dtv.com/songs/60053879.mkv +张惠妹-用自由当借口,http://em.21dtv.com/songs/60091096.mkv +田斯斯+天空乐队-一整夜不睡觉,http://em.21dtv.com/songs/60114706.mkv +张楠-一整夜不睡觉,http://em.21dtv.com/songs/60114542.mkv +张可芝-一直像这样子(无原唱),http://em.21dtv.com/songs/60053920.mkv +王薇茜-依子薰衣草吟,http://em.21dtv.com/songs/60102556.mkv +王薇茜-依子向日葵吟,http://em.21dtv.com/songs/60102547.mkv +王伟-有贼心没贼胆,http://em.21dtv.com/songs/60130564.mkv +王薇茜-依子勿忘我吟,http://em.21dtv.com/songs/60102546.mkv +佚名-燕子捎来喜讯,http://em.21dtv.com/songs/60052148.mkv +王子皓-一直深爱着你,http://em.21dtv.com/songs/60110388.mkv +张蓉蓉-一种人一种味,http://em.21dtv.com/songs/60053934.mkv +许飞-越自然悦倾心,http://em.21dtv.com/songs/60056631.mkv +佚名-有真情有活力,http://em.21dtv.com/songs/60055408.mkv +关牧村-一支难忘的歌,http://em.21dtv.com/songs/60053871.mkv +关牧村-一支难忘的歌(演唱会),http://em.21dtv.com/songs/60053870.mkv +田斯达-有种你就爱我,http://em.21dtv.com/songs/60135585.mkv +鸿飞-愿做你的行星,http://em.21dtv.com/songs/60113108.mkv +完玛三智-愿做你的牛羊,http://em.21dtv.com/songs/60065424.mkv +关淑怡-有着你 多么美,http://em.21dtv.com/songs/60092322.mkv +彭羚-有着你多么美,http://em.21dtv.com/songs/60055407.mkv +铭鑫-咬着玫瑰流泪,http://em.21dtv.com/songs/60114841.mkv +原音社-原住民的心声,http://em.21dtv.com/songs/60092394.mkv +王薇茜-依子康乃馨吟,http://em.21dtv.com/songs/60102548.mkv +容祖儿-一直看见天使,http://em.21dtv.com/songs/60053911.mkv +张迪-一只很坏的狼,http://em.21dtv.com/songs/60053884.mkv +佚名-迎着风迎着雨,http://em.21dtv.com/songs/60054508.mkv +张秀卿-一阵风一阵雨,http://em.21dtv.com/songs/60053865.mkv +杨子-一阵风一场雨,http://em.21dtv.com/songs/60101098.mkv +邓丽君-迎着风跟着云,http://em.21dtv.com/songs/60054507.mkv +佚名-迎着风的女孩(无原唱),http://em.21dtv.com/songs/60054506.mkv +牛奶咖啡-越长大越孤单,http://em.21dtv.com/songs/60056630.mkv +黄美诗-云知道你是谁,http://em.21dtv.com/songs/60056680.mkv +郝云湖-雨中的玫瑰花,http://em.21dtv.com/songs/60055747.mkv +李逸朗+蒋雅文-雨中的恋人们,http://em.21dtv.com/songs/60055746.mkv +黄凯芹-雨中的恋人们,http://em.21dtv.com/songs/60055745.mkv +黄凯芹-雨中的恋人们(演唱会),http://em.21dtv.com/songs/60055744.mkv +黄丽芳-雨中的红雨伞,http://em.21dtv.com/songs/60111548.mkv +张睿-雨中的红玫瑰,http://em.21dtv.com/songs/60086174.mkv +阿鲁阿卓-要走的阿老表,http://em.21dtv.com/songs/60108968.mkv +詹雅雯-一枝草一点露(无原唱),http://em.21dtv.com/songs/60053893.mkv +詹雅雯-一支草一点露,http://em.21dtv.com/songs/60053867.mkv +张珊-一只赤情的鱼,http://em.21dtv.com/songs/60053883.mkv +王薇茜-依子百合花吟,http://em.21dtv.com/songs/60102552.mkv +满文军-用真爱去表白,http://em.21dtv.com/songs/60091643.mkv +望海高歌-一支爱你的歌,http://em.21dtv.com/songs/60111144.mkv +许巍-永远自由的心(演唱会),http://em.21dtv.com/songs/60054806.mkv +卓依婷-永远在我心中,http://em.21dtv.com/songs/60103951.mkv +陈姿-永远在你身旁,http://em.21dtv.com/songs/60131938.mkv +安明亮-羊腰子的传说,http://em.21dtv.com/songs/60079023.mkv +佚名-一夜一夜的梦,http://em.21dtv.com/songs/60053837.mkv +佚名-永远永远不变,http://em.21dtv.com/songs/60054797.mkv +国巍-饮养源枇杷酒,http://em.21dtv.com/songs/60094858.mkv +JS-一亿元的日落,http://em.21dtv.com/songs/60067710.mkv +乔冠霖-雨一样的恋人,http://em.21dtv.com/songs/60133336.mkv +王杰-永远相信爱情,http://em.21dtv.com/songs/60054790.mkv +扎西顿珠+乌兰图雅-月夜,http://em.21dtv.com/songs/60108530.mkv +张月-有缘无份的爱,http://em.21dtv.com/songs/60093716.mkv +胡莺瑛-有缘无份的爱,http://em.21dtv.com/songs/60070185.mkv +杨钰莹+毛宁-友谊天长地久,http://em.21dtv.com/songs/60089358.mkv +黎姿-有一天你会知,http://em.21dtv.com/songs/60055368.mkv +黄鹤-有一天你会懂,http://em.21dtv.com/songs/60079917.mkv +佚名-友谊天长地久(慢三),http://em.21dtv.com/songs/60055080.mkv +于全莉-月夜思乡情它,http://em.21dtv.com/songs/60101880.mkv +林姗-永远是阮最爱,http://em.21dtv.com/songs/60054785.mkv +龙梅子-用一生去等待,http://em.21dtv.com/songs/60120179.mkv +孙耀威-一亿三千八天(演唱会),http://em.21dtv.com/songs/60053851.mkv +赵东俊-用一生去爱你,http://em.21dtv.com/songs/60129634.mkv +谢天笑-永远是个秘密,http://em.21dtv.com/songs/60054777.mkv +蔡晓-用一生的时间,http://em.21dtv.com/songs/60104416.mkv +鲍翠薇-有一日忘掉我,http://em.21dtv.com/songs/60055361.mkv +宋伶俐-月牙泉鸣沙山,http://em.21dtv.com/songs/60072772.mkv +叶倩文-永远青春可爱,http://em.21dtv.com/songs/60054775.mkv +黄品冠-又一年又三年,http://em.21dtv.com/songs/60055474.mkv +许飞-拥有你的日子,http://em.21dtv.com/songs/60054605.mkv +佚名-永远拢是朋友,http://em.21dtv.com/songs/60054771.mkv +方瑞娥-永远拢是朋友,http://em.21dtv.com/songs/60054770.mkv +郭采洁-又圆了的月亮,http://em.21dtv.com/songs/60055477.mkv +周子汇-寓言里的王子,http://em.21dtv.com/songs/60111761.mkv +谢霆锋-又要刻意改变,http://em.21dtv.com/songs/60055473.mkv +高峰-有缘就有福气(无原唱),http://em.21dtv.com/songs/60055388.mkv +佚名-义勇军进行曲,http://em.21dtv.com/songs/60054105.mkv +于魁智-杨延辉坐宫院,http://em.21dtv.com/songs/60052216.mkv +佚名-杨延辉坐宫院,http://em.21dtv.com/songs/60052215.mkv +小5-一夜后还想念,http://em.21dtv.com/songs/60090977.mkv +刘韵-有一个傻姑娘(演唱会),http://em.21dtv.com/songs/60055360.mkv +张明敏-一样的中国心,http://em.21dtv.com/songs/60053822.mkv +金承熙-11点11分,http://em.21dtv.com/songs/60135852.mkv +顾凯-永远都有希望,http://em.21dtv.com/songs/60054751.mkv +容中尔甲-永远的雪莲花,http://em.21dtv.com/songs/60054736.mkv +李宁-永远的兄弟情,http://em.21dtv.com/songs/60111162.mkv +乌兰托娅-永远的香巴拉,http://em.21dtv.com/songs/60071450.mkv +脑浊乐队-永远的乌托邦,http://em.21dtv.com/songs/60102647.mkv +江海泉-永远的忘了吧,http://em.21dtv.com/songs/60113774.mkv +李佳颖-永远的忘了吧,http://em.21dtv.com/songs/60113613.mkv +月光星子-永远都是我的,http://em.21dtv.com/songs/60054750.mkv +朱业晋-永远的女主角,http://em.21dtv.com/songs/60080872.mkv +洪启-遥远的你和你,http://em.21dtv.com/songs/60052334.mkv +樊凡-远远懂你的人,http://em.21dtv.com/songs/60068960.mkv +黄龄-永远的那达慕,http://em.21dtv.com/songs/60104856.mkv +郭丽茹-永远的马头琴,http://em.21dtv.com/songs/60054708.mkv +云飞-远远的看着你,http://em.21dtv.com/songs/60117537.mkv +司徒兰芳-友谊地久天长,http://em.21dtv.com/songs/60067729.mkv +佚名-友谊地久天长,http://em.21dtv.com/songs/60055076.mkv +解晓东-友谊地久天长(演唱会),http://em.21dtv.com/songs/60055075.mkv +佚名-友谊地久天长(苏格兰),http://em.21dtv.com/songs/60055074.mkv +王云飞-永远的好兄弟,http://em.21dtv.com/songs/60119795.mkv +张雷-永远的好兄弟,http://em.21dtv.com/songs/60087845.mkv +王力宏-永远的第一天,http://em.21dtv.com/songs/60054697.mkv +Line-永远的奥特曼,http://em.21dtv.com/songs/60109843.mkv +枫舞+何文秀-月影残荷花落,http://em.21dtv.com/songs/60117854.mkv +零点乐队-永远不说再见(演唱会),http://em.21dtv.com/songs/60054687.mkv +ENERGY-永远不说再见(演唱会),http://em.21dtv.com/songs/60054686.mkv +徐子崴-永远别说永远,http://em.21dtv.com/songs/60135281.mkv +刘美君-夜已变得骚了(演唱会),http://em.21dtv.com/songs/60052689.mkv +陈雷-永远不变的爱,http://em.21dtv.com/songs/60054679.mkv +祁隆-永远爱你的我,http://em.21dtv.com/songs/60125982.mkv +小军-永远爱你的我,http://em.21dtv.com/songs/60104078.mkv +陈慧娴-永远爱你的人,http://em.21dtv.com/songs/60054671.mkv +许茹芸-一有爱就走吧,http://em.21dtv.com/songs/60053853.mkv +张祥洪-预言2012,http://em.21dtv.com/songs/60084471.mkv +佚名-亚细亚的孤儿,http://em.21dtv.com/songs/60051906.mkv +罗大佑-亚细亚的孤儿(无原唱),http://em.21dtv.com/songs/60051905.mkv +张靓颖-印象西湖的雨,http://em.21dtv.com/songs/60054402.mkv +佚名-有信心的生命,http://em.21dtv.com/songs/60055348.mkv +肖剑-也许我不够帅,http://em.21dtv.com/songs/60052445.mkv +武刚-也许我不够帅,http://em.21dtv.com/songs/60052444.mkv +韩晓-一小勺的温柔,http://em.21dtv.com/songs/60053786.mkv +蔡淳佳-有心人有情人,http://em.21dtv.com/songs/60055347.mkv +孙悦-异乡人的周末,http://em.21dtv.com/songs/60089790.mkv +方怡萍-有心人痴情梦,http://em.21dtv.com/songs/60101362.mkv +潘嘉丽-印象派的爱情,http://em.21dtv.com/songs/60054401.mkv +许佳慧-游向你的海洋,http://em.21dtv.com/songs/60126176.mkv +朱海君-用性命买空虚,http://em.21dtv.com/songs/60084428.mkv +周杰伦-雨下了一整晚,http://em.21dtv.com/songs/60087587.mkv +张宇-用心良苦 high party,http://em.21dtv.com/songs/60054917.mkv +赵薇-雨想哭就哭吧,http://em.21dtv.com/songs/60055712.mkv +佚名-有些话不能说(无原唱),http://em.21dtv.com/songs/60055336.mkv +詹雅雯-用心肝饮的酒,http://em.21dtv.com/songs/60054912.mkv +张四郎-异乡的松树丛,http://em.21dtv.com/songs/60054145.mkv +向荣-英雄的老矿山,http://em.21dtv.com/songs/60081210.mkv +单色凌-雨下的好难听,http://em.21dtv.com/songs/60104859.mkv +詹雅雯-异乡的火车头,http://em.21dtv.com/songs/60081851.mkv +云鸽李霞-英雄的钓鱼岛,http://em.21dtv.com/songs/60079212.mkv +简红-隐形的第三者,http://em.21dtv.com/songs/60113933.mkv +蹇红-隐形的第三者,http://em.21dtv.com/songs/60066534.mkv +张铁+长春虫子-以兄弟的名义,http://em.21dtv.com/songs/60072724.mkv +刘欢-夜,http://em.21dtv.com/songs/60119303.mkv +李章宇-于心不忍的话,http://em.21dtv.com/songs/60079321.mkv +龙千玉+蔡小虎-用心爱过的人,http://em.21dtv.com/songs/60054904.mkv +许冠杰-印象2002(演唱会),http://em.21dtv.com/songs/60054400.mkv +李丹阳-有我在你身旁,http://em.21dtv.com/songs/60055329.mkv +那英-一万一千公里,http://em.21dtv.com/songs/60053758.mkv +曾心梅-因为有你的爱,http://em.21dtv.com/songs/60054305.mkv +花树-遥望远方的你,http://em.21dtv.com/songs/60110486.mkv +邓丽君-夜雾下的姑娘,http://em.21dtv.com/songs/60052666.mkv +佚名-因为我是男性,http://em.21dtv.com/songs/60054283.mkv +孙悦-因为我是女人,http://em.21dtv.com/songs/60090897.mkv +景岗山-因为我是男人,http://em.21dtv.com/songs/60054282.mkv +门丽-因为我还爱你,http://em.21dtv.com/songs/60114166.mkv +熊浩羽-洋娃娃的舞会,http://em.21dtv.com/songs/60052222.mkv +群星-因为是圣诞节,http://em.21dtv.com/songs/60079196.mkv +春雷-药王山的传说,http://em.21dtv.com/songs/60079042.mkv +佚名-因为你因为我,http://em.21dtv.com/songs/60054254.mkv +吴克群-因为你是女人,http://em.21dtv.com/songs/60068930.mkv +张雨生-以为你都知道,http://em.21dtv.com/songs/60054091.mkv +张清芳-因为你的缘故,http://em.21dtv.com/songs/60054251.mkv +曾春年+孟杨-一万年的爱你,http://em.21dtv.com/songs/60122808.mkv +蒋雪儿-因为你爱上他,http://em.21dtv.com/songs/60054248.mkv +钱红-一万枚核弹头,http://em.21dtv.com/songs/60065355.mkv +刘丁齐-有雾霾不约你,http://em.21dtv.com/songs/60131200.mkv +罗文-愿望就是明天(演唱会),http://em.21dtv.com/songs/60056224.mkv +罗时丰-缘未尽情难离(无原唱),http://em.21dtv.com/songs/60095863.mkv +陈喆-以为简单就好,http://em.21dtv.com/songs/60094328.mkv +祥帅-一万句对不起,http://em.21dtv.com/songs/60107930.mkv +马磊-一万个为什么,http://em.21dtv.com/songs/60109038.mkv +小松拓也-一万个为什么,http://em.21dtv.com/songs/60053752.mkv +雷龙-一万个我爱你,http://em.21dtv.com/songs/60123339.mkv +马文博-一万个我爱你,http://em.21dtv.com/songs/60114267.mkv +雷龙-一万个我爱你,http://em.21dtv.com/songs/60098906.mkv +沈世爱-一万个伤不起,http://em.21dtv.com/songs/60094572.mkv +罗志强-一万个舍不得,http://em.21dtv.com/songs/60087053.mkv +庄心妍+祁隆-一万个舍不得,http://em.21dtv.com/songs/60081832.mkv +塔宏伟-一万个舍不得,http://em.21dtv.com/songs/60061826.mkv +祁隆-一万个对不起,http://em.21dtv.com/songs/60081801.mkv +宇海文+娜日-一万个不愿意,http://em.21dtv.com/songs/60080827.mkv +蔡献华-一万次想念你,http://em.21dtv.com/songs/60097701.mkv +陈浩民+陈瑀涵-一万次为什么,http://em.21dtv.com/songs/60053748.mkv +龙啸-一万次的温柔,http://em.21dtv.com/songs/60062721.mkv +方宁-因为爱我存在,http://em.21dtv.com/songs/60130368.mkv +罗文-因为爱我存在,http://em.21dtv.com/songs/60054232.mkv +钟汶-因为爱所以恨,http://em.21dtv.com/songs/60054230.mkv +谢霆锋-因为爱所以爱,http://em.21dtv.com/songs/60054228.mkv +夏韶声-you were always on my mind,http://em.21dtv.com/songs/60006578.mkv +THE RIGHTEOUS BROTHERS-youve lost that lovin feeling,http://em.21dtv.com/songs/60074207.mkv +RIGHTEOUS BROTHERS-youve lost that lovinfeelin,http://em.21dtv.com/songs/60065736.mkv +李蕴-沿途有你宠爱,http://em.21dtv.com/songs/60079003.mkv +梁朝伟-一天一点爱恋,http://em.21dtv.com/songs/60053717.mkv +刘小慧-一天48小时,http://em.21dtv.com/songs/60053709.mkv +李明德-一天天一点点,http://em.21dtv.com/songs/60053715.mkv +阿杜-一天天一点点,http://em.21dtv.com/songs/60053714.mkv +马郁-一天死去一点,http://em.21dtv.com/songs/60053713.mkv +群星-一条日光大道,http://em.21dtv.com/songs/60097704.mkv +陈永龙-一条日光大道,http://em.21dtv.com/songs/60088896.mkv +田尊铭-一台琴两个人,http://em.21dtv.com/songs/60115315.mkv +佚名-youre the one that i want,http://em.21dtv.com/songs/60006621.mkv +彭羚-一天365年,http://em.21dtv.com/songs/60053708.mkv +GEORGE BENSON+ROBERT-youre the love of my life,http://em.21dtv.com/songs/60006620.mkv +凤娘-一条简单的歌,http://em.21dtv.com/songs/60053732.mkv +卫礼安-阴天的向日葵,http://em.21dtv.com/songs/60054311.mkv +谭晶-一天比一天好,http://em.21dtv.com/songs/60092120.mkv +CHAYANNE-yo te amo我爱你,http://em.21dtv.com/songs/60006478.mkv +谭咏麟-一生只有一次,http://em.21dtv.com/songs/60130758.mkv +豪记大对唱-一生只有一摆(无原唱),http://em.21dtv.com/songs/60053629.mkv +望海高歌+雨柔-一首醉人的歌,http://em.21dtv.com/songs/60131487.mkv +望海高歌+雨柔-一首醉人的歌,http://em.21dtv.com/songs/60126988.mkv +太极乐队-一生最美一次,http://em.21dtv.com/songs/60053642.mkv +童安格-一生中的第一(无原唱),http://em.21dtv.com/songs/60053634.mkv +方季惟-一生只爱一次,http://em.21dtv.com/songs/60053615.mkv +祁隆-一生最爱的人,http://em.21dtv.com/songs/60081800.mkv +伍佰-一生最爱的人,http://em.21dtv.com/songs/60053640.mkv +蔡小虎-一生最爱的人,http://em.21dtv.com/songs/60053639.mkv +刘锡明-一生一世之恋,http://em.21dtv.com/songs/60053604.mkv +韩磊-又是一声惊雷(演唱会),http://em.21dtv.com/songs/60055469.mkv +高峰-一生一世的爱,http://em.21dtv.com/songs/60105528.mkv +罗时丰-一生一世的爱,http://em.21dtv.com/songs/60053602.mkv +达明一派-1+4=14,http://em.21dtv.com/songs/60134277.mkv +杜春梅-一生有你有我,http://em.21dtv.com/songs/60079146.mkv +于文华-又是一个春天,http://em.21dtv.com/songs/60090500.mkv +罗文-一生一次真情,http://em.21dtv.com/songs/60053595.mkv +梁汉文-一世一次恋爱,http://em.21dtv.com/songs/60053670.mkv +苏慧伦+巫奇-有谁像你爱我,http://em.21dtv.com/songs/60055313.mkv +天籁之音-阴山下的草原,http://em.21dtv.com/songs/60084404.mkv +天籁同音-阴山下的草原,http://em.21dtv.com/songs/60079200.mkv +望海高歌+飘飘-一生为你守侯,http://em.21dtv.com/songs/60133780.mkv +祁隆-一生为你感动,http://em.21dtv.com/songs/60129448.mkv +尼玛拉毛-玉树我的故乡,http://em.21dtv.com/songs/60055791.mkv +董贞-云笙叹轩辕剑,http://em.21dtv.com/songs/60079441.mkv +李健-雨是天空的泪,http://em.21dtv.com/songs/60055696.mkv +林心如-云深深雨蒙蒙,http://em.21dtv.com/songs/60056672.mkv +清风大海-夜深深飞起来,http://em.21dtv.com/songs/60100289.mkv +HENRY+AMBER-1 4 3(i love you),http://em.21dtv.com/songs/60086317.mkv +白举纲+于湉-一首热血的歌,http://em.21dtv.com/songs/60127232.mkv +黄乙玲-一世人爱一个(无原唱),http://em.21dtv.com/songs/60053668.mkv +艾正正-一生情一生忆,http://em.21dtv.com/songs/60115346.mkv +范怡文-一生情一世还,http://em.21dtv.com/songs/60053570.mkv +佚名-一生情一生还,http://em.21dtv.com/songs/60053568.mkv +范怡文-一生情一生还,http://em.21dtv.com/songs/60053567.mkv +高向鹏+方瑞娥-一生情一世爱,http://em.21dtv.com/songs/60053569.mkv +眉佳-一生情百萃缘,http://em.21dtv.com/songs/60062760.mkv +久久-忧伤飘满雨季,http://em.21dtv.com/songs/60079258.mkv +张书瑶-越思念越想念,http://em.21dtv.com/songs/60122706.mkv +小城星电台-于是你明白了,http://em.21dtv.com/songs/60119446.mkv +叶欢-一生美丽一次,http://em.21dtv.com/songs/60053562.mkv +曹权权-用生命感受爱,http://em.21dtv.com/songs/60125651.mkv +许秋怡-云是老了的风(无原唱),http://em.21dtv.com/songs/60056673.mkv +林子祥-愿世间有青天,http://em.21dtv.com/songs/60056216.mkv +小沈阳+八强学员-影视金曲串烧,http://em.21dtv.com/songs/60094484.mkv +唐古-愿时间告诉你,http://em.21dtv.com/songs/60132307.mkv +王力宏-一首简单的歌(HD),http://em.21dtv.com/songs/10012701.mkv +金志文+莫龙丹-一首简单的歌,http://em.21dtv.com/songs/60097705.mkv +本兮-一首简单的歌,http://em.21dtv.com/songs/60079149.mkv +王力宏-一首简单的歌,http://em.21dtv.com/songs/60053684.mkv +王力宏-一首简单的歌(演唱会),http://em.21dtv.com/songs/60053683.mkv +许鹤缤-一首回忆的歌,http://em.21dtv.com/songs/60130753.mkv +张智霖-一生豪情一次,http://em.21dtv.com/songs/60053549.mkv +本多RURU-有时候没时候,http://em.21dtv.com/songs/60055296.mkv +NC GIRLS-一首合唱的歌,http://em.21dtv.com/songs/60053682.mkv +音萌萌-夜深后别想她,http://em.21dtv.com/songs/60133089.mkv +陈妃-一首歌一个人,http://em.21dtv.com/songs/60053681.mkv +张桐玮-一首歌一段情,http://em.21dtv.com/songs/60053678.mkv +卓依婷-有洒矸通卖无,http://em.21dtv.com/songs/60087472.mkv +陈瑞-一首歌的时间,http://em.21dtv.com/songs/60116348.mkv +梁剑东+丁紫-夜色2017,http://em.21dtv.com/songs/60129310.mkv +梁剑东+丁紫-夜色2017,http://em.21dtv.com/songs/60128138.mkv +梁剑东-夜色2017,http://em.21dtv.com/songs/60128137.mkv +梁剑东-夜色2016,http://em.21dtv.com/songs/60119718.mkv +白燕升-一生的太阳雨,http://em.21dtv.com/songs/60068919.mkv +马常宝-忧伤的天蝎座,http://em.21dtv.com/songs/60109026.mkv +晓月-忧伤的天蝎座,http://em.21dtv.com/songs/60061841.mkv +S.H.E-勇士的十字架,http://em.21dtv.com/songs/60090420.mkv +伦永亮-一生都送给爱(无原唱),http://em.21dtv.com/songs/60053545.mkv +杨哲-一生的好朋友,http://em.21dtv.com/songs/60053535.mkv +侯旭-一生的好朋友(演唱会),http://em.21dtv.com/songs/60053534.mkv +仲南-永生的和平鸽,http://em.21dtv.com/songs/60126591.mkv +阿毛-忧伤的华尔兹,http://em.21dtv.com/songs/60129715.mkv +阿毛-忧伤的华尔兹,http://em.21dtv.com/songs/60114181.mkv +高原-忧伤的华尔兹,http://em.21dtv.com/songs/60100656.mkv +关淑怡-一首独唱的歌,http://em.21dtv.com/songs/60053676.mkv +容祖儿-一首独唱的歌(演唱会),http://em.21dtv.com/songs/60053675.mkv +张平-一生都爱着你,http://em.21dtv.com/songs/60108498.mkv +温兆伦-一生的爱给你,http://em.21dtv.com/songs/60053530.mkv +张曼-云深处心深处,http://em.21dtv.com/songs/60106843.mkv +容祖儿-一首传世之歌,http://em.21dtv.com/songs/60053674.mkv +柳云龙-一生别无所求,http://em.21dtv.com/songs/60086122.mkv +陈百强-一生不可自决,http://em.21dtv.com/songs/60053517.mkv +陈百强-一生不可自决(演唱会),http://em.21dtv.com/songs/60053516.mkv +李克勤-一生不爱别人,http://em.21dtv.com/songs/60053513.mkv +李克勤-一生不爱别人(演唱会),http://em.21dtv.com/songs/60053512.mkv +萧亚轩-一生爱你一个,http://em.21dtv.com/songs/60093105.mkv +郑伊健-一生爱你一个,http://em.21dtv.com/songs/60053510.mkv +郑伊健-一生爱你一个(演唱会),http://em.21dtv.com/songs/60053509.mkv +麦浚龙-一生爱你一个(演唱会),http://em.21dtv.com/songs/60053508.mkv +陈崴-一首爱你的歌(无原唱),http://em.21dtv.com/songs/60053673.mkv +马云龙-一生爱的是你,http://em.21dtv.com/songs/60053506.mkv +洪荣宏-伊人在水一方,http://em.21dtv.com/songs/60053962.mkv +李獭明-一人走到最后,http://em.21dtv.com/songs/60053492.mkv +民雄巴莱-一人一种孤单,http://em.21dtv.com/songs/60079141.mkv +依稀-一人一份想念,http://em.21dtv.com/songs/60053485.mkv +王晶-一人一份想念,http://em.21dtv.com/songs/60053484.mkv +雷婷-要让我再流泪,http://em.21dtv.com/songs/60079048.mkv +高迪-一人我饮酒醉,http://em.21dtv.com/songs/60121167.mkv +朱桦-一日情梦十年,http://em.21dtv.com/songs/60053493.mkv +杨采纮-有人教我放弃,http://em.21dtv.com/songs/60055289.mkv +SO WHAT-愚人节的流星(演唱会),http://em.21dtv.com/songs/60055571.mkv +灯塔-youre gonna make me lonesome,http://em.21dtv.com/songs/60068016.mkv +MILEY CYRUS-youre gonna make me lonesome,http://em.21dtv.com/songs/60066764.mkv +王菲-一人分饰两角(演唱会),http://em.21dtv.com/songs/60053470.mkv +袁泉-亚热带巧克力,http://em.21dtv.com/songs/60051899.mkv +赵真-用情最深的人,http://em.21dtv.com/songs/60054887.mkv +梁朝伟-用情最深的人(无原唱),http://em.21dtv.com/songs/60054886.mkv +苏永康+汤宝如-一起真的不易,http://em.21dtv.com/songs/60053377.mkv +钟汉良-一千种不放心,http://em.21dtv.com/songs/60053419.mkv +信-越清醒越孤独,http://em.21dtv.com/songs/60134901.mkv +潘东亮-一千万个拥抱,http://em.21dtv.com/songs/60053416.mkv +潘建义-一起闪亮时代,http://em.21dtv.com/songs/60086120.mkv +朱聪聪-一起闪亮时代,http://em.21dtv.com/songs/60081277.mkv +陈慧琳-月球上的约会,http://em.21dtv.com/songs/60079419.mkv +袁小迪-有情人无情天,http://em.21dtv.com/songs/60055272.mkv +张秀卿-有情人拢甲意,http://em.21dtv.com/songs/60055271.mkv +李俊男-一千年一万年,http://em.21dtv.com/songs/60091301.mkv +孙嘉敏-一千年的等候,http://em.21dtv.com/songs/60053414.mkv +奕丹-一千零一个你,http://em.21dtv.com/songs/60053405.mkv +亦丹-一千零一个你,http://em.21dtv.com/songs/60053404.mkv +谭晶-一起来更精彩,http://em.21dtv.com/songs/60053368.mkv +梅少民-有钱就是任性,http://em.21dtv.com/songs/60110322.mkv +庞锟-有钱就是任性,http://em.21dtv.com/songs/60106815.mkv +豫剧-用巧计哄元帅,http://em.21dtv.com/songs/60090222.mkv +詹雅雯-有情花无情水(无原唱),http://em.21dtv.com/songs/60055265.mkv +龙千玉-一切甘是天意,http://em.21dtv.com/songs/60053430.mkv +周晓鸥+杨树林-一起Funk,http://em.21dtv.com/songs/60133485.mkv +李潮-忆秦娥娄山关,http://em.21dtv.com/songs/60087059.mkv +王秀芬-忆秦娥-娄山关,http://em.21dtv.com/songs/60054127.mkv +秦鲁峰-忆秦娥娄山关,http://em.21dtv.com/songs/60054126.mkv +陈小涛-忆秦娥-娄山关,http://em.21dtv.com/songs/60054125.mkv +佚名-远去的三角地,http://em.21dtv.com/songs/60056157.mkv +王筝-一切都没发生,http://em.21dtv.com/songs/60079140.mkv +丰翼+大妮-一起大吉大利,http://em.21dtv.com/songs/60132161.mkv +汪峰-一切都会流走,http://em.21dtv.com/songs/60101413.mkv +田维英-一切都会过去,http://em.21dtv.com/songs/60079139.mkv +米凯 艾乐-一切都变了,http://em.21dtv.com/songs/60093849.mkv +温兆伦-愿倾出心里爱,http://em.21dtv.com/songs/60056215.mkv +伊能静-一千遍我爱你,http://em.21dtv.com/songs/60053385.mkv +小5-一切不能重头,http://em.21dtv.com/songs/60097703.mkv +黄品源-一去不回的人,http://em.21dtv.com/songs/60053466.mkv +彭运铝-有彭自远方来,http://em.21dtv.com/songs/60105064.mkv +王莉-有朋自远方来,http://em.21dtv.com/songs/60055259.mkv +刘罡-有朋自远方来,http://em.21dtv.com/songs/60055258.mkv +李嘉珊-一瞥,http://em.21dtv.com/songs/60116002.mkv +洪立-玉屏我们的歌,http://em.21dtv.com/songs/60107028.mkv +宫阁+Melodia-雨噼里啪啦下,http://em.21dtv.com/songs/60135128.mkv +梦幻同人志-硬盘里的姑娘,http://em.21dtv.com/songs/60107005.mkv +BACKSTREET BOYS-10000 promises,http://em.21dtv.com/songs/60000007.mkv +加藤ミリヤ+仲宗根泉-You,http://em.21dtv.com/songs/60105653.mkv +黎姿-因你真正活过,http://em.21dtv.com/songs/60054205.mkv +郭可盈-有你已经足够,http://em.21dtv.com/songs/60055240.mkv +叶倩文-与你又过一天,http://em.21dtv.com/songs/60055598.mkv +祝磊-有你我才有家,http://em.21dtv.com/songs/60067732.mkv +周慧敏-有您太多美丽,http://em.21dtv.com/songs/60061849.mkv +许嘉文-有你陪着我哭,http://em.21dtv.com/songs/60079291.mkv +陈一凡-有你陪伴真好,http://em.21dtv.com/songs/60087072.mkv +尤国通-有娘叫最幸福,http://em.21dtv.com/songs/60104973.mkv +潘攀-有娘叫最幸福,http://em.21dtv.com/songs/60055257.mkv +金大为+蔡旻佑-有你 就足够,http://em.21dtv.com/songs/60130808.mkv +杜歌+东方依依-有你就有幸福,http://em.21dtv.com/songs/60112002.mkv +伦永亮-因你极难代替,http://em.21dtv.com/songs/60054203.mkv +后弦-有你就很幸福,http://em.21dtv.com/songs/60098182.mkv +佚名-雨那会落袜停,http://em.21dtv.com/songs/60055681.mkv +洪荣宏-雨那会落袜停,http://em.21dtv.com/songs/60055680.mkv +陈瑞-有你不再孤单,http://em.21dtv.com/songs/60087071.mkv +江蕙+熊天益-月娘啊听我讲,http://em.21dtv.com/songs/60056470.mkv +黄腾-有你爱的力量,http://em.21dtv.com/songs/60111556.mkv +黎明-一秒钟两个世,http://em.21dtv.com/songs/60053315.mkv +潘嘉丽-一秒钟的永远,http://em.21dtv.com/songs/60053314.mkv +左立-有没有一首歌,http://em.21dtv.com/songs/60121621.mkv +王心凌-羽毛,http://em.21dtv.com/songs/60115294.mkv +王璘枫-有没有那一天,http://em.21dtv.com/songs/60108729.mkv +雷诺-有梦想勇敢闯,http://em.21dtv.com/songs/60117366.mkv +李国超-有梦想的咸鱼,http://em.21dtv.com/songs/60131498.mkv +黄依群-辕门外三声炮,http://em.21dtv.com/songs/60090337.mkv +越剧-辕门外三声炮,http://em.21dtv.com/songs/60088729.mkv +TONI BRAXTON-you mean the world to me,http://em.21dtv.com/songs/60006566.mkv +王俊凯-样,http://em.21dtv.com/songs/60111264.mkv +白雪-沂蒙山好风光,http://em.21dtv.com/songs/60091782.mkv +谢巧星-杨门女将-巡营,http://em.21dtv.com/songs/60052212.mkv +任静-雨绵绵情依依,http://em.21dtv.com/songs/60090574.mkv +曾心梅+沈文程-雨绵绵情绵绵,http://em.21dtv.com/songs/60055679.mkv +曾心梅+陈中-雨绵绵情绵绵,http://em.21dtv.com/songs/60055678.mkv +佚名-雨绵绵情绵绵(无原唱),http://em.21dtv.com/songs/60055677.mkv +周嘉丽-雨绵绵情绵绵(无原唱),http://em.21dtv.com/songs/60015067.mkv +LEE SAYER-you make me feel like dancing,http://em.21dtv.com/songs/60006557.mkv +STYLISTICS-you make me feel brand new,http://em.21dtv.com/songs/60006555.mkv +AT17-又美丽又可爱(演唱会),http://em.21dtv.com/songs/60055455.mkv +佚名-月朦胧鸟朦胧,http://em.21dtv.com/songs/60056468.mkv +佚名-月朦胧鸟朦胧(慢三),http://em.21dtv.com/songs/60056467.mkv +张惠妹-牙买加的槟榔,http://em.21dtv.com/songs/60111869.mkv +山野-有梦就不认输,http://em.21dtv.com/songs/60055194.mkv +田丽-野玫瑰不流泪,http://em.21dtv.com/songs/60052489.mkv +张四三-丫妈的老唱片(无原唱),http://em.21dtv.com/songs/60051866.mkv +网络歌手-预谋(DJ),http://em.21dtv.com/songs/50000228.mkv +许佳慧-预谋,http://em.21dtv.com/songs/60094687.mkv +赵鑫-一路走一路唱(演唱会),http://em.21dtv.com/songs/60072712.mkv +方琦-月亮走我也走,http://em.21dtv.com/songs/60128044.mkv +卓依婷-月亮走我也走,http://em.21dtv.com/songs/60056455.mkv +张也-月亮走我也走,http://em.21dtv.com/songs/60056454.mkv +佚名-月亮走我也走,http://em.21dtv.com/songs/60056453.mkv +苏红-月亮走我也走,http://em.21dtv.com/songs/60056452.mkv +龚月-月亮走我也走,http://em.21dtv.com/songs/60056451.mkv +董文华-月亮走我也走,http://em.21dtv.com/songs/60056450.mkv +轩子-眼泪只为你流,http://em.21dtv.com/songs/60061799.mkv +红蔷薇-月亮走我不走,http://em.21dtv.com/songs/60065434.mkv +容中尔甲-雅鲁藏布情歌,http://em.21dtv.com/songs/60051887.mkv +金承熙-0 42361111111,http://em.21dtv.com/songs/60101691.mkv +G.Z光泽-101号公路,http://em.21dtv.com/songs/60129936.mkv +欧得洋-一零一封情书,http://em.21dtv.com/songs/60053270.mkv +李伟文-月亮想你的夜,http://em.21dtv.com/songs/60065433.mkv +何衍隆-有理想都错吗,http://em.21dtv.com/songs/60133365.mkv +蒋大为-月亮,http://em.21dtv.com/songs/60110499.mkv +南征北战+米线乐团-原来,http://em.21dtv.com/songs/60106666.mkv +陈柏宇-原谅我要高飞,http://em.21dtv.com/songs/60112354.mkv +陈柏宇-原谅我要高飞,http://em.21dtv.com/songs/60079382.mkv +李圣杰-原谅我没有说,http://em.21dtv.com/songs/60056004.mkv +任重-原谅我好想她,http://em.21dtv.com/songs/60113249.mkv +司马原野-原谅我的执着,http://em.21dtv.com/songs/60067749.mkv +拉毛王旭-月亮湾的姑娘,http://em.21dtv.com/songs/60086192.mkv +李雪莱-原谅我的过错,http://em.21dtv.com/songs/60127057.mkv +崔伟亮-原谅我的不对,http://em.21dtv.com/songs/60070197.mkv +覃桢-原谅我不能忘,http://em.21dtv.com/songs/60106272.mkv +孔令奇-音乐让我说话,http://em.21dtv.com/songs/60054328.mkv +黄海涛-伊琳-去年雨季,http://em.21dtv.com/songs/60053957.mkv +林冠吟-一零七号牢房,http://em.21dtv.com/songs/60053267.mkv +张峻宁-原来你一直在,http://em.21dtv.com/songs/60055959.mkv +文欣-依恋你拥抱你,http://em.21dtv.com/songs/60053988.mkv +阿泪哥-有了你的思念,http://em.21dtv.com/songs/60119002.mkv +刘德华-原来你才是堂,http://em.21dtv.com/songs/60087395.mkv +宋孟君-一厘米的距离,http://em.21dtv.com/songs/60121589.mkv +仓木麻衣-1000万回のキス,http://em.21dtv.com/songs/60072850.mkv +团风依依-原来离开以后,http://em.21dtv.com/songs/60127874.mkv +易帆-原来离开以后,http://em.21dtv.com/songs/60118632.mkv +萧亚轩-一百分的吻,http://em.21dtv.com/songs/60063508.mkv +OU组合-月亮里的草原,http://em.21dtv.com/songs/60116467.mkv +何韵诗-眼泪教我的事,http://em.21dtv.com/songs/60079905.mkv +彭炽权+郭凤女-玉梨魂之殉爱(戏曲),http://em.21dtv.com/songs/60092689.mkv +彭炽权+郭凤女-玉梨魂之剪情(戏曲),http://em.21dtv.com/songs/60092688.mkv +吕雨澄-16 hrs,http://em.21dtv.com/songs/60135005.mkv +姚东耀-伊犁河的月夜,http://em.21dtv.com/songs/60084384.mkv +胡瑛-伊犁河的夜莺,http://em.21dtv.com/songs/60084383.mkv +杨洪基-伊犁河的月夜,http://em.21dtv.com/songs/60053955.mkv +谢有才-玉林风 玉林情,http://em.21dtv.com/songs/60070193.mkv +原始林合唱团-慵懒的星期天(无原唱),http://em.21dtv.com/songs/60054609.mkv +李戈-一路都是阳光,http://em.21dtv.com/songs/60062589.mkv +中国娃娃-雅丽的男朋友,http://em.21dtv.com/songs/60051886.mkv +林乐伟-眼泪不是香水,http://em.21dtv.com/songs/60079007.mkv +李葵航-月亮般美的你,http://em.21dtv.com/songs/60121791.mkv +张平-月亮般美的你,http://em.21dtv.com/songs/60105840.mkv +陶妍霖-原来爱是这样(HD),http://em.21dtv.com/songs/10012832.mkv +陶妍霖-原来爱是这样,http://em.21dtv.com/songs/60071473.mkv +方磊+贾玲-依兰爱情故事,http://em.21dtv.com/songs/60126949.mkv +那英-原来爱那么难,http://em.21dtv.com/songs/60055928.mkv +林凡-一恋爱就乱了,http://em.21dtv.com/songs/60105180.mkv +MANIC STREET PREACHERS+NINA PERSSON-your love alone is not enough,http://em.21dtv.com/songs/60074201.mkv +佚名-原来爱过以后,http://em.21dtv.com/songs/60055927.mkv +叶倩文+周润发-原来爱过以后,http://em.21dtv.com/songs/60055926.mkv +陈松伶-一颗真挚的心,http://em.21dtv.com/songs/60053239.mkv +李克勤-越开心越寂寞,http://em.21dtv.com/songs/60065440.mkv +蔡幸娟+彭伟华-雨颗心四行泪,http://em.21dtv.com/songs/60092026.mkv +伍思凯-一颗心交给谁,http://em.21dtv.com/songs/60053234.mkv +赵丹-一颗心的距离,http://em.21dtv.com/songs/60061817.mkv +范玮琪-一颗心的距离,http://em.21dtv.com/songs/60053233.mkv +ROBYNN+KENDY-一颗星的故事,http://em.21dtv.com/songs/60079112.mkv +IMOGEN HEAP-you know where to find me,http://em.21dtv.com/songs/60074186.mkv +刘辰希-一颗糖两种味,http://em.21dtv.com/songs/60094836.mkv +周杰伦-一口气全念对,http://em.21dtv.com/songs/60115758.mkv +周杰伦-一口气全念对,http://em.21dtv.com/songs/60109225.mkv +周杰伦-一口气全念对,http://em.21dtv.com/songs/60106700.mkv +曾轶可-有可能的夜晚,http://em.21dtv.com/songs/60079281.mkv +刘亦菲-一克拉的眼泪,http://em.21dtv.com/songs/60053240.mkv +罗敏庄-一颗恨嫁的心,http://em.21dtv.com/songs/60093025.mkv +太极乐队-一块饼一块镜(演唱会),http://em.21dtv.com/songs/60053247.mkv +锺嘉欣-一颗不变的心,http://em.21dtv.com/songs/60115463.mkv +张学友-一颗不变的心,http://em.21dtv.com/songs/60092583.mkv +央金卓嘎-一颗爱你的心,http://em.21dtv.com/songs/60127888.mkv +刘春云-一见钟情的美(演唱会),http://em.21dtv.com/songs/60053179.mkv +少司命+重小烟-以剑之名血薇,http://em.21dtv.com/songs/60070159.mkv +佚名-有价值的男性,http://em.21dtv.com/songs/60040267.mkv +陈岩+天籁天-一加一我和你,http://em.21dtv.com/songs/60079107.mkv +张克帆-用尽一生的爱,http://em.21dtv.com/songs/60054871.mkv +黑龙-用尽一生痴情,http://em.21dtv.com/songs/60085370.mkv +唐古-用尽一生爱你,http://em.21dtv.com/songs/60126730.mkv +温岚-一加一等于零,http://em.21dtv.com/songs/60053149.mkv +蒋姗倍+刘凯歌-一加一等于爱,http://em.21dtv.com/songs/60130711.mkv +赵可那-一加一等于爱,http://em.21dtv.com/songs/60126227.mkv +何贤忠-遇见 一朵云,http://em.21dtv.com/songs/60105584.mkv +阿乐+时以凌-遇见未来的你,http://em.21dtv.com/songs/60066551.mkv +朱孝天-已经是很疲惫,http://em.21dtv.com/songs/60091287.mkv +F4+朱孝天-已经是很疲备,http://em.21dtv.com/songs/60089565.mkv +王雅洁-用尽全部的爱,http://em.21dtv.com/songs/60080745.mkv +陈亚博-遇见你忘不了,http://em.21dtv.com/songs/60129723.mkv +曲尕-遇见你的时候,http://em.21dtv.com/songs/60126959.mkv +郑劲松-眼睛没有眼泪,http://em.21dtv.com/songs/60108047.mkv +七仙女-又见溜溜的她,http://em.21dtv.com/songs/60089103.mkv +佚名-又见溜溜的她(无原唱),http://em.21dtv.com/songs/60055439.mkv +张清芳-眼睛里的湖水,http://em.21dtv.com/songs/60052049.mkv +张信哲-已经结束了吗,http://em.21dtv.com/songs/60079180.mkv +彭佳慧-一九九几的他,http://em.21dtv.com/songs/60053192.mkv +刘蓝溪-野姜花的回忆(无原唱),http://em.21dtv.com/songs/60052477.mkv +罗时丰-有酒矸通卖无,http://em.21dtv.com/songs/60134096.mkv +卓依婷-有酒矸通卖无,http://em.21dtv.com/songs/60055154.mkv +叶启田-有酒矸通卖无,http://em.21dtv.com/songs/60055153.mkv +罗时丰-有酒矸通卖无,http://em.21dtv.com/songs/60055152.mkv +4 IN LOVE-已经过去爱情,http://em.21dtv.com/songs/60054073.mkv +金南玲-已经过了一年,http://em.21dtv.com/songs/60066530.mkv +李佳璐-越简单越浪漫,http://em.21dtv.com/songs/60067762.mkv +吴昊恩-要记得说再见(无原唱),http://em.21dtv.com/songs/60052368.mkv +黄凯芹-夜静的单簧管,http://em.21dtv.com/songs/60052581.mkv +区瑞强-眼睛吃冰淇淋,http://em.21dtv.com/songs/60092378.mkv +林玉英-夜间部的同学(无原唱),http://em.21dtv.com/songs/60052580.mkv +佚名-饮乎醉无原唱),http://em.21dtv.com/songs/60054365.mkv +刘德华-硬汉子热女人,http://em.21dtv.com/songs/60054562.mkv +林俊杰-以后要做的事,http://em.21dtv.com/songs/60079954.mkv +胥拉齐-一花引万花开,http://em.21dtv.com/songs/60107961.mkv +费玉清-云河,http://em.21dtv.com/songs/60116250.mkv +陈洁仪-遗憾,http://em.21dtv.com/songs/60110644.mkv +梁家辉-诱惑我一辈子,http://em.21dtv.com/songs/60055492.mkv +陈瑞-鱼和水的故事,http://em.21dtv.com/songs/60106420.mkv +陈瑞-鱼和水的故事,http://em.21dtv.com/songs/60055526.mkv +带泪的鱼-烟火式的爱情,http://em.21dtv.com/songs/60098308.mkv +叶红-叶红轻吟独唱(无原唱),http://em.21dtv.com/songs/60052506.mkv +陈亚兰-有话你就讲啦,http://em.21dtv.com/songs/60055145.mkv +姚可杰-以后留给以后,http://em.21dtv.com/songs/60113383.mkv +华晨宇-烟火里的尘埃,http://em.21dtv.com/songs/60108355.mkv +华晨宇-烟火里的尘埃,http://em.21dtv.com/songs/60107555.mkv +杨竣-要火的节奏频,http://em.21dtv.com/songs/60100181.mkv +郑源-萤火虫飞呀飞,http://em.21dtv.com/songs/60100507.mkv +郑源-萤火虫飞啊飞,http://em.21dtv.com/songs/60095351.mkv +张可儿-萤火虫的心愿,http://em.21dtv.com/songs/60107710.mkv +周兴哲-以后别做朋友,http://em.21dtv.com/songs/60104882.mkv +吴中天-阳光治痛胶囊(无原唱),http://em.21dtv.com/songs/60052196.mkv +佚名-野鸽子的天空,http://em.21dtv.com/songs/60052461.mkv +李克勤-一个也不能少,http://em.21dtv.com/songs/60128085.mkv +孙淑媚-一个西一个东,http://em.21dtv.com/songs/60053114.mkv +佚名-夜光下的战友,http://em.21dtv.com/songs/60052568.mkv +乌兰托娅-月光下的毡房,http://em.21dtv.com/songs/60065429.mkv +金海心-阳光下的星星,http://em.21dtv.com/songs/60052189.mkv +张殊-阳光下的我们,http://em.21dtv.com/songs/60105853.mkv +田震-阳光下的田震,http://em.21dtv.com/songs/60052188.mkv +王家宇-月光下的童话,http://em.21dtv.com/songs/60056359.mkv +乔军-阳光下的守望,http://em.21dtv.com/songs/60114379.mkv +戴妮-月光下的思念,http://em.21dtv.com/songs/60099257.mkv +炎黄赤子-月光下的思念,http://em.21dtv.com/songs/60089414.mkv +董文华-月光下的思念,http://em.21dtv.com/songs/60056358.mkv +央金兰泽-月光下的情思,http://em.21dtv.com/songs/60056357.mkv +蒙克-月光下的女孩,http://em.21dtv.com/songs/60109607.mkv +金海心-阳光下的花儿,http://em.21dtv.com/songs/60052186.mkv +谭晶-月光,http://em.21dtv.com/songs/60114797.mkv +佚名-youre going to love that girl,http://em.21dtv.com/songs/60006608.mkv +群星-勇敢是咱的名(无原唱),http://em.21dtv.com/songs/60054843.mkv +徐嘉良-又搁是落雨天,http://em.21dtv.com/songs/60055426.mkv +张燕-一公升的眼泪,http://em.21dtv.com/songs/60091138.mkv +陈柏宇-一公升的眼泪,http://em.21dtv.com/songs/60053132.mkv +苏醒-有故事的女人,http://em.21dtv.com/songs/60126114.mkv +达明一派-一个人在途上(演唱会),http://em.21dtv.com/songs/60053095.mkv +张蓉蓉-一个人一种味,http://em.21dtv.com/songs/60089868.mkv +夏天Alex-一个人一座城,http://em.21dtv.com/songs/60123794.mkv +曹寅-一个人一座城,http://em.21dtv.com/songs/60084358.mkv +林志炫-一个人一颗心,http://em.21dtv.com/songs/60091459.mkv +叶瑗菱-一个人一个梦,http://em.21dtv.com/songs/60053092.mkv +佚名-一个人一个梦(无原唱),http://em.21dtv.com/songs/60053091.mkv +一绫-一个人一场梦,http://em.21dtv.com/songs/60065331.mkv +本兮-一个人也不错,http://em.21dtv.com/songs/60080430.mkv +蔡小虎-一个人恰自由,http://em.21dtv.com/songs/60053072.mkv +谦木-一个人去旅行,http://em.21dtv.com/songs/60128408.mkv +陈升-一个人去旅行,http://em.21dtv.com/songs/60053075.mkv +羽泉-一个人去海边,http://em.21dtv.com/songs/60107125.mkv +胡彦斌-一个人两个人,http://em.21dtv.com/songs/60091896.mkv +佚名-一个人卡快活(无原唱),http://em.21dtv.com/songs/60053058.mkv +林慧萍-一个人看电影,http://em.21dtv.com/songs/60053059.mkv +卢一秒-一个人很久了,http://em.21dtv.com/songs/60133437.mkv +杨瞻-一个人好好过,http://em.21dtv.com/songs/60116030.mkv +杨嘉淞-一个人好好过,http://em.21dtv.com/songs/60053052.mkv +ELSIE+K.Will-一个人更自在,http://em.21dtv.com/songs/60110758.mkv +张文绮-一个人的战争,http://em.21dtv.com/songs/60097702.mkv +黄征-一个人的战役,http://em.21dtv.com/songs/60053044.mkv +飞翔-一个人的滋味,http://em.21dtv.com/songs/60114887.mkv +任玙-一个人的折磨,http://em.21dtv.com/songs/60053045.mkv +寒武纪-一个人的雨夜,http://em.21dtv.com/songs/60094068.mkv +涓子-一个人的雨夜,http://em.21dtv.com/songs/60086111.mkv +杨清明-一个人的远行,http://em.21dtv.com/songs/60125755.mkv +朱敏-一个人的眼泪,http://em.21dtv.com/songs/60111958.mkv +苗苗-一个人的月亮,http://em.21dtv.com/songs/60096448.mkv +郑俊弘-一个人的永恒,http://em.21dtv.com/songs/60131881.mkv +佚名-一个人的心事,http://em.21dtv.com/songs/60053041.mkv +胥拉齐-一个人的行囊,http://em.21dtv.com/songs/60127314.mkv +戴佩妮-一个人的行李,http://em.21dtv.com/songs/60053007.mkv +苏永康-一个人的星光,http://em.21dtv.com/songs/60053042.mkv +周韦彤-一个人的微笑,http://em.21dtv.com/songs/60103982.mkv +唐美华-一个人的舞台,http://em.21dtv.com/songs/60135065.mkv +柴学斌-一个人的舞台(无原唱),http://em.21dtv.com/songs/60053040.mkv +杨千嬅-一个人的童话,http://em.21dtv.com/songs/60053038.mkv +涓子-一个人的生日,http://em.21dtv.com/songs/60121878.mkv +刘思涵-一个人的森林,http://em.21dtv.com/songs/60127768.mkv +孔朝-一个人的世界,http://em.21dtv.com/songs/60065328.mkv +王琳-一个人的世界,http://em.21dtv.com/songs/60053033.mkv +湘佛莲-一个人的守候,http://em.21dtv.com/songs/60086110.mkv +彭宇焱-一个人的时候,http://em.21dtv.com/songs/60071419.mkv +张真菲-一个人的时候,http://em.21dtv.com/songs/60063436.mkv +郭富城-一个人的时候,http://em.21dtv.com/songs/60053032.mkv +文章-一个人的时候(无原唱),http://em.21dtv.com/songs/60053031.mkv +石磊-一个人的生活,http://em.21dtv.com/songs/60053027.mkv +孙淑媚-一个人的沙发,http://em.21dtv.com/songs/60119422.mkv +孙淑媚-一个人的沙发,http://em.21dtv.com/songs/60118499.mkv +王喆-一个人的沙场,http://em.21dtv.com/songs/60053026.mkv +威仔+格子兮-一个人的私奔,http://em.21dtv.com/songs/60130238.mkv +龙浪-一个人的伤悲,http://em.21dtv.com/songs/60109066.mkv +王心凌-一个人的日子,http://em.21dtv.com/songs/60118777.mkv +杨静-一个人的日子,http://em.21dtv.com/songs/60084355.mkv +祝健-一个人的七夕,http://em.21dtv.com/songs/60068914.mkv +大雨-一个人的秋天(HD),http://em.21dtv.com/songs/10012755.mkv +大张雨-一个人的秋天,http://em.21dtv.com/songs/60106741.mkv +宝蓝-一个人的情歌,http://em.21dtv.com/songs/60122673.mkv +带泪的鱼+Mc诺&潘成-一个人的情歌,http://em.21dtv.com/songs/50000159.mkv +流苏-一个人的情歌,http://em.21dtv.com/songs/60098583.mkv +带泪的鱼+MC诺+诗错亦染-一个人的情歌,http://em.21dtv.com/songs/60084354.mkv +容祖儿-一个人的情歌,http://em.21dtv.com/songs/60053022.mkv +颜慧萍-一个人的冒险,http://em.21dtv.com/songs/60131980.mkv +李加靓-一个人的明天,http://em.21dtv.com/songs/60087984.mkv +李维真-一个人的旅行,http://em.21dtv.com/songs/60104221.mkv +石咏莉-一个人的旅行,http://em.21dtv.com/songs/60079099.mkv +郎恒-一个人的旅行,http://em.21dtv.com/songs/60079098.mkv +赵之璧-一个人的旅行,http://em.21dtv.com/songs/60053019.mkv +周哲-一个人的旅途,http://em.21dtv.com/songs/60079097.mkv +带泪的鱼+MC诺-一个人的疗伤,http://em.21dtv.com/songs/60099990.mkv +俞灏明-一个人的浪漫,http://em.21dtv.com/songs/60053016.mkv +熊天平-一个人的流浪,http://em.21dtv.com/songs/60053018.mkv +冷漠-一个人的丽江,http://em.21dtv.com/songs/60081924.mkv +蓝芷儿-一个人的亮点,http://em.21dtv.com/songs/60053017.mkv +禹湘-一个人的快乐,http://em.21dtv.com/songs/60053015.mkv +田维英-一个人的寂寞,http://em.21dtv.com/songs/60084352.mkv +李智楠-一个人的寂寞,http://em.21dtv.com/songs/60053008.mkv +萧亚轩-一个人的精彩,http://em.21dtv.com/songs/60053013.mkv +艾歌-一个人的脚步,http://em.21dtv.com/songs/60053012.mkv +云飞儿-一个人的回忆,http://em.21dtv.com/songs/60128757.mkv +庞龙-一个人的公园(演唱会),http://em.21dtv.com/songs/60053006.mkv +梁川宇-一个人的感受,http://em.21dtv.com/songs/60116069.mkv +曾咏熙-一个人的感动,http://em.21dtv.com/songs/60131478.mkv +朴野-一个人的孤单,http://em.21dtv.com/songs/60098434.mkv +易欣-一个人的房间,http://em.21dtv.com/songs/60053005.mkv +陈楚生-一个人的冬天,http://em.21dtv.com/songs/60090295.mkv +周渝民-一个人的冬季,http://em.21dtv.com/songs/60053003.mkv +三多-一个人的独处,http://em.21dtv.com/songs/60087044.mkv +格格-一个人的草原,http://em.21dtv.com/songs/60133887.mkv +田维英-一个人的春天,http://em.21dtv.com/songs/60111305.mkv +吉娜+金志文-一个人的城市,http://em.21dtv.com/songs/60084351.mkv +肖飞-一个人的北京,http://em.21dtv.com/songs/60088487.mkv +李娅莎-一个人唱情歌,http://em.21dtv.com/songs/60100135.mkv +带泪的鱼-一个人唱情歌,http://em.21dtv.com/songs/60087043.mkv +陈楚生-一个人唱情歌,http://em.21dtv.com/songs/60053000.mkv +丁当-一个人不可能,http://em.21dtv.com/songs/60084350.mkv +丁当-一个人不可能(演唱会),http://em.21dtv.com/songs/60070137.mkv +七郎-有骨气的男性,http://em.21dtv.com/songs/60055131.mkv +杨千嬅-有过去的女人,http://em.21dtv.com/songs/60055141.mkv +侧田+杨千嬅-有过去的女人(演唱会),http://em.21dtv.com/songs/60055140.mkv +品冠-有关你的地方,http://em.21dtv.com/songs/60115764.mkv +亦帆+黄宥杰-鱼干女草食男,http://em.21dtv.com/songs/60096039.mkv +陈嘉唯-游过来游过去,http://em.21dtv.com/songs/60054999.mkv +梁汉文-衣柜里的男人,http://em.21dtv.com/songs/60053970.mkv +谢激文-阳光里的女孩,http://em.21dtv.com/songs/60089475.mkv +梁杰-有个乐队叫beyond,http://em.21dtv.com/songs/60079280.mkv +太极乐队-一个恋爱故事,http://em.21dtv.com/songs/60052955.mkv +太极乐队-一个恋爱故事(演唱会),http://em.21dtv.com/songs/60052954.mkv +BON JOVI-you give love a bad name,http://em.21dtv.com/songs/60066761.mkv +佚名-you give love a bad name,http://em.21dtv.com/songs/60006541.mkv +佚名-youve got it all over him,http://em.21dtv.com/songs/60006627.mkv +蔡诗芸-雨过后的风景,http://em.21dtv.com/songs/60079338.mkv +Kent王健-有过很多的梦,http://em.21dtv.com/songs/60109834.mkv +Kent王健-有过很多的梦,http://em.21dtv.com/songs/60097731.mkv +东山少爷-月光光照羊城,http://em.21dtv.com/songs/60092235.mkv +林不夕-勇敢的走下去,http://em.21dtv.com/songs/60132596.mkv +汪明荃-勇敢的中国人(演唱会),http://em.21dtv.com/songs/60054837.mkv +刘德华-与孤独在奔往,http://em.21dtv.com/songs/60055580.mkv +宋伶俐-勇敢的西湖人,http://em.21dtv.com/songs/60072736.mkv +安迪-勇敢的台湾人(无原唱),http://em.21dtv.com/songs/60095521.mkv +小东-勇敢的金门人,http://em.21dtv.com/songs/60107677.mkv +孙翠凤-勇敢的查某子,http://em.21dtv.com/songs/60054829.mkv +李克勤-一个都不能少,http://em.21dtv.com/songs/60126995.mkv +林奕匡-一个都不能少,http://em.21dtv.com/songs/60061814.mkv +谢霆锋-一个都不能少,http://em.21dtv.com/songs/60052951.mkv +尹光-尹光串烧金曲,http://em.21dtv.com/songs/60092547.mkv +赖伟锋-一个备胎而已,http://em.21dtv.com/songs/60102756.mkv +高志杰-一分钟一万年,http://em.21dtv.com/songs/60079090.mkv +路童-缘分是天注定,http://em.21dtv.com/songs/60086183.mkv +孙博-一分钱一分货,http://em.21dtv.com/songs/60105748.mkv +胡梅-玉妃情君王泪,http://em.21dtv.com/songs/60080551.mkv +秋裤大叔+冷漠-元芳你怎么看,http://em.21dtv.com/songs/60108778.mkv +司文-元方你怎么看,http://em.21dtv.com/songs/60079365.mkv +陈佳薪-元方你怎么看,http://em.21dtv.com/songs/60079364.mkv +冷漠+赵小兵-元芳你怎么看,http://em.21dtv.com/songs/60071471.mkv +高胜美-一封难回的信,http://em.21dtv.com/songs/60052939.mkv +水木年华-夜风里的玫瑰,http://em.21dtv.com/songs/60052561.mkv +沙玛学锋-远方来的阿妹,http://em.21dtv.com/songs/60061860.mkv +羽泉-121齐步走,http://em.21dtv.com/songs/60107123.mkv +杨坤-一二三站起来(演唱会),http://em.21dtv.com/songs/60052921.mkv +王博文+魏一宁+陈骁+Crayon Pop-123新年好,http://em.21dtv.com/songs/60108701.mkv +黄耀明-一二三上海滩,http://em.21dtv.com/songs/60052910.mkv +黄耀明-一二三上海滩(演唱会),http://em.21dtv.com/songs/60052909.mkv +王羚柔-一二三木头人,http://em.21dtv.com/songs/60052908.mkv +群星-一二三木头人,http://em.21dtv.com/songs/60052907.mkv +黑涩会美眉-一二三木头人,http://em.21dtv.com/songs/60052906.mkv +蔡健雅-YELLOW,http://em.21dtv.com/songs/60095220.mkv +艾敬-鱼儿离不开水(演唱会),http://em.21dtv.com/songs/60055520.mkv +朴海镇-一定要这样吗,http://em.21dtv.com/songs/60084346.mkv +彩月团-一对游泳的鱼,http://em.21dtv.com/songs/60052892.mkv +袁野-一定要忘了我,http://em.21dtv.com/songs/60129595.mkv +佚名-运动员进行曲,http://em.21dtv.com/songs/60056691.mkv +韩东-有多远滚多远,http://em.21dtv.com/songs/60110667.mkv +凌飞-印度洋的眼泪,http://em.21dtv.com/songs/60054394.mkv +张惠妹-越懂我越爱我,http://em.21dtv.com/songs/60091097.mkv +黄义达-一滴未干的泪,http://em.21dtv.com/songs/60052853.mkv +流浪的悠云+淡梅-云朵上的羌寨,http://em.21dtv.com/songs/60086196.mkv +阿斯满-云朵上的羌寨,http://em.21dtv.com/songs/60062202.mkv +龙梅子-一段情一段伤,http://em.21dtv.com/songs/60112411.mkv +蔡小虎+龙千玉-一段情一场梦,http://em.21dtv.com/songs/60052882.mkv +格西亚-一堆骗人的歌,http://em.21dtv.com/songs/60124152.mkv +小刚-越懂你越疼你,http://em.21dtv.com/songs/60089247.mkv +周传雄-越懂你越疼你,http://em.21dtv.com/songs/60089210.mkv +林慧萍-一滴泪两种味,http://em.21dtv.com/songs/60068911.mkv +周笔畅-一滴泪的距离,http://em.21dtv.com/songs/60052851.mkv +THE WHITE STRIPES-you dont know what love is,http://em.21dtv.com/songs/60006537.mkv +东来东往-异度空间的爱,http://em.21dtv.com/songs/60087244.mkv +张学友+陈慧娴-一对寂寞的心(演唱会),http://em.21dtv.com/songs/60052887.mkv +陈慧娴+蔡一杰-一对寂寞的心(演唱会),http://em.21dtv.com/songs/60052886.mkv +佚名-一定会再相逢(无原唱),http://em.21dtv.com/songs/60052870.mkv +扬哲-一定会出头天,http://em.21dtv.com/songs/60076519.mkv +光良-一点光一点亮(演唱会),http://em.21dtv.com/songs/60052859.mkv +DJ舞曲-印度风格慢摇,http://em.21dtv.com/songs/50000150.mkv +胜屿-一点都不想你,http://em.21dtv.com/songs/60079984.mkv +王筝-越单纯越幸福(演唱会),http://em.21dtv.com/songs/60056587.mkv +黄圣文-印第安老斑鸠,http://em.21dtv.com/songs/60114295.mkv +艾怡良-印第安老斑鸠,http://em.21dtv.com/songs/60080420.mkv +周杰伦-印地安老斑鸠(演唱会),http://em.21dtv.com/songs/60054393.mkv +コブクロ-阳だまりの道,http://em.21dtv.com/songs/60109913.mkv +苏打绿-异次元的玫瑰,http://em.21dtv.com/songs/60112912.mkv +猪哥亮-一场一场表演(演唱会),http://em.21dtv.com/songs/60072700.mkv +佚名-用诚心来相待,http://em.21dtv.com/songs/60054869.mkv +GLORIA ESTEFAN-you cant walk away from love,http://em.21dtv.com/songs/60006528.mkv +刘罡+李慧瑜-怨苍天变了心,http://em.21dtv.com/songs/60101989.mkv +吴泓君-怨苍天变了心,http://em.21dtv.com/songs/60056176.mkv +方季惟-怨苍天变了心,http://em.21dtv.com/songs/60056175.mkv +佚名-一场梦一首歌(无原唱),http://em.21dtv.com/songs/60052804.mkv +蓝奕邦-又灿烂又糜烂,http://em.21dtv.com/songs/60066544.mkv +罗家宝-袁崇焕之修书,http://em.21dtv.com/songs/60055912.mkv +李青+蒋婴-油菜花儿之恋,http://em.21dtv.com/songs/60098499.mkv +潘莎-油菜花的舞台,http://em.21dtv.com/songs/60054987.mkv +周磊-油菜花的海洋,http://em.21dtv.com/songs/60130198.mkv +林忆莲-一辈子一个你,http://em.21dtv.com/songs/60089999.mkv +张卫健-一辈子一场梦,http://em.21dtv.com/songs/60052772.mkv +龙智祥-一辈子守候你,http://em.21dtv.com/songs/60087039.mkv +BEYOND-一辈子陪我走,http://em.21dtv.com/songs/60052767.mkv +陈瑞-一辈子的真爱,http://em.21dtv.com/songs/60061809.mkv +杜广增-一辈子的新娘,http://em.21dtv.com/songs/60108591.mkv +李鑫雨-一辈子的幸福,http://em.21dtv.com/songs/60079077.mkv +居山植-一辈子的兄弟,http://em.21dtv.com/songs/60119458.mkv +罗百吉-一辈子的兄弟,http://em.21dtv.com/songs/60087038.mkv +D-EVIL-一辈子的朋友,http://em.21dtv.com/songs/60084342.mkv +安然-一辈子的诺言,http://em.21dtv.com/songs/60111818.mkv +云中梦龙-一辈子对你好,http://em.21dtv.com/songs/60087259.mkv +冰雪姐妹-一辈子的浪漫,http://em.21dtv.com/songs/60071411.mkv +刘若英-一辈子的孤单,http://em.21dtv.com/songs/60052765.mkv +祁隆-一辈子的赌注,http://em.21dtv.com/songs/60079076.mkv +满江-一辈子的宠爱,http://em.21dtv.com/songs/60052763.mkv +段千寻-一辈子不后悔,http://em.21dtv.com/songs/60052759.mkv +鲍国+徐雯婷-一辈子不放手,http://em.21dtv.com/songs/60079075.mkv +祁隆-一辈子爱着你,http://em.21dtv.com/songs/60100339.mkv +辉星-要不要感个冒,http://em.21dtv.com/songs/60072690.mkv +陈汉+杜歌-拥抱,http://em.21dtv.com/songs/60108129.mkv +梁文音-一百万种亲吻,http://em.21dtv.com/songs/60061808.mkv +克丽丝叮-一百万个可能,http://em.21dtv.com/songs/60107507.mkv +克丽丝叮-一百万个可能,http://em.21dtv.com/songs/60105608.mkv +邓丽君-雨不停心不定,http://em.21dtv.com/songs/60055635.mkv +黄立行-又不是真的爱(演唱会),http://em.21dtv.com/songs/60055421.mkv +林俊彦-也不是我愿意(无原唱),http://em.21dtv.com/songs/60095652.mkv +佚名-也不是我愿意(无原唱),http://em.21dtv.com/songs/60052420.mkv +宝蓝+姚冬青-也不是太难过,http://em.21dtv.com/songs/60127915.mkv +雷婷-银白色的月光,http://em.21dtv.com/songs/60102912.mkv +佚名-银白色的沙滩(无原唱),http://em.21dtv.com/songs/60054338.mkv +蝶当久-银白色的山歌,http://em.21dtv.com/songs/60134208.mkv +叶玉卿-一杯水的爱情,http://em.21dtv.com/songs/60052756.mkv +周渝民-要不是爱上你,http://em.21dtv.com/songs/60052356.mkv +郭静-拥抱你的微笑,http://em.21dtv.com/songs/60084414.mkv +文夏-夜半卖花姑娘,http://em.21dtv.com/songs/60052535.mkv +徐峰柏-要比今天快乐,http://em.21dtv.com/songs/60079044.mkv +孟庭苇-原本今生以为,http://em.21dtv.com/songs/60055913.mkv +亚东-饮不尽的豪爽,http://em.21dtv.com/songs/60054359.mkv +马志锋-永不放弃的梦,http://em.21dtv.com/songs/60065378.mkv +张轩铭-永不放弃的爱,http://em.21dtv.com/songs/60125539.mkv +林育群-一百分的朋友,http://em.21dtv.com/songs/60100215.mkv +崔博-约吧!大明星,http://em.21dtv.com/songs/60121615.mkv +佚名-夜半的卖花女,http://em.21dtv.com/songs/60052523.mkv +黄勇-永不拆迁的窝,http://em.21dtv.com/songs/60109057.mkv +利绮-一杯茶的时间,http://em.21dtv.com/songs/60089685.mkv +杨天宁-一百八十公里,http://em.21dtv.com/songs/60061806.mkv +ALIN-一不爱二不休,http://em.21dtv.com/songs/60095240.mkv +张靓颖+安德烈·波切-拥抱爱的梦想,http://em.21dtv.com/songs/60054574.mkv +王绎龙-摇啊摇之慢摇,http://em.21dtv.com/songs/60090088.mkv +N.S允智-Yaxixi,http://em.21dtv.com/songs/60099018.mkv +张瑞哲-有爱无心的人,http://em.21dtv.com/songs/60055096.mkv +群星-有爱就有一切,http://em.21dtv.com/songs/60055091.mkv +纳兰珠儿-有爱就有希望,http://em.21dtv.com/songs/60127272.mkv +满文军-有爱就有希望,http://em.21dtv.com/songs/60091641.mkv +蓝雨-有爱就有希望,http://em.21dtv.com/songs/60055090.mkv +群星-有爱就有可能,http://em.21dtv.com/songs/60055089.mkv +梁朝伟+杨千嬅-有爱错无放过,http://em.21dtv.com/songs/60055086.mkv +杨德朗-用爱吹散雾霾,http://em.21dtv.com/songs/60125743.mkv +优优-要爱把我包围,http://em.21dtv.com/songs/60097767.mkv +朱文-用爱把你灌醉,http://em.21dtv.com/songs/60087970.mkv +佚名-you are always on my mind,http://em.21dtv.com/songs/60006488.mkv +AKB48-翼はいらない,http://em.21dtv.com/songs/60123431.mkv +AKB48-翼はいらない,http://em.21dtv.com/songs/60122332.mkv +德永英明-翼はなくても,http://em.21dtv.com/songs/60105907.mkv +阿部真央-伝えたいこと,http://em.21dtv.com/songs/60079446.mkv +杨千嬅-向左走向右走,http://em.21dtv.com/songs/60049368.mkv +梁咏琪-向左走向右走,http://em.21dtv.com/songs/60049367.mkv +光良-向左走向右走,http://em.21dtv.com/songs/60049366.mkv +杨千嬅-向左走向右走(演唱会),http://em.21dtv.com/songs/60049365.mkv +梁静茹-向左转向右转,http://em.21dtv.com/songs/60049364.mkv +蔡淑娟-心中有一首歌,http://em.21dtv.com/songs/60050763.mkv +吴奇隆-想找一个地方,http://em.21dtv.com/songs/60049293.mkv +佚名-写伫云顶个名,http://em.21dtv.com/songs/60050025.mkv +朱凯旗-像这样的爱情(演唱会),http://em.21dtv.com/songs/60065207.mkv +尧十三-瞎子,http://em.21dtv.com/songs/60115882.mkv +曾宪元-孝子心游子情,http://em.21dtv.com/songs/60072632.mkv +海涛-写在心里的歌,http://em.21dtv.com/songs/60097724.mkv +米娜-写在心里的歌,http://em.21dtv.com/songs/60087004.mkv +杨景皓-小志向大胸怀,http://em.21dtv.com/songs/60103385.mkv +李志-寻找,http://em.21dtv.com/songs/60119658.mkv +孙露-心醉,http://em.21dtv.com/songs/60104934.mkv +林志炫-现在我这么想,http://em.21dtv.com/songs/60048526.mkv +张瑶-心中唯一的花,http://em.21dtv.com/songs/60072652.mkv +肖楗-向着未来奔跑,http://em.21dtv.com/songs/60110471.mkv +黄丽玲-现在我很幸福,http://em.21dtv.com/songs/60089021.mkv +A-LIN-现在我很幸福,http://em.21dtv.com/songs/60048525.mkv +范晓萱+A-寻找我的同类,http://em.21dtv.com/songs/60108853.mkv +严当当-向着太阳歌唱,http://em.21dtv.com/songs/60097734.mkv +银河艺术团合唱团-向着太阳飞翔,http://em.21dtv.com/songs/60133019.mkv +董文华+银河艺术团合唱团-向着太阳飞翔,http://em.21dtv.com/songs/60131779.mkv +林志颖-向昨天说再见,http://em.21dtv.com/songs/60049363.mkv +谢军-心在跳情在烧,http://em.21dtv.com/songs/60050703.mkv +阿文-心在痛泪在流,http://em.21dtv.com/songs/60106373.mkv +阿文-心在痛泪在流,http://em.21dtv.com/songs/60104530.mkv +沈凌云-星座,http://em.21dtv.com/songs/60098560.mkv +佚名-先只说迎张郎,http://em.21dtv.com/songs/60048460.mkv +海威-心只剩下苦涩,http://em.21dtv.com/songs/60113814.mkv +莫文蔚-洗澡时唱的歌,http://em.21dtv.com/songs/60109601.mkv +品冠-现在你在哪里,http://em.21dtv.com/songs/60114458.mkv +王筝-想着你睡不着,http://em.21dtv.com/songs/60049304.mkv +孙露-想着你亲爱的,http://em.21dtv.com/songs/60115823.mkv +乐凡+刘恺名-想着你亲爱的,http://em.21dtv.com/songs/60104769.mkv +孙露-想着你亲爱的,http://em.21dtv.com/songs/60099935.mkv +李青+王馨-想着你亲爱的(故事情节),http://em.21dtv.com/songs/60098498.mkv +陈美惠-想着你亲爱的,http://em.21dtv.com/songs/60097797.mkv +祁隆-想着你亲爱的,http://em.21dtv.com/songs/60084203.mkv +包蔓-想着你亲爱的,http://em.21dtv.com/songs/60080083.mkv +刘恺名-想着你亲爱的,http://em.21dtv.com/songs/60068838.mkv +张政-想做你男朋友,http://em.21dtv.com/songs/60049309.mkv +梁汉文-想着你等着你,http://em.21dtv.com/songs/60049303.mkv +容祖儿-想着你的感觉,http://em.21dtv.com/songs/60119439.mkv +巫启贤-想着你的感觉,http://em.21dtv.com/songs/60049301.mkv +高胜美-想着你的感觉,http://em.21dtv.com/songs/60049300.mkv +杜德伟-想着你的感觉,http://em.21dtv.com/songs/60049299.mkv +张信哲+容祖儿-想着你的感觉(演唱会),http://em.21dtv.com/songs/60049298.mkv +佚名-现在流行什么,http://em.21dtv.com/songs/60048523.mkv +哈泊力夫-心中流淌的歌,http://em.21dtv.com/songs/60122614.mkv +回音哥-巷子里的童年,http://em.21dtv.com/songs/60078660.mkv +卢春如-现在就说爱我,http://em.21dtv.com/songs/60048520.mkv +余恩-现在决定忘记,http://em.21dtv.com/songs/60134890.mkv +陈奂仁-下坠或天上飞,http://em.21dtv.com/songs/60108122.mkv +许魏洲-向着光亮那方,http://em.21dtv.com/songs/60122117.mkv +张雅培-心中的月亮船,http://em.21dtv.com/songs/60084255.mkv +凤凰传奇-心中的雪莲花,http://em.21dtv.com/songs/60080963.mkv +吴碧霞-心中的桃花源,http://em.21dtv.com/songs/60101054.mkv +熊英-心中的萨日朗,http://em.21dtv.com/songs/60071342.mkv +陈星-心中的山茶花,http://em.21dtv.com/songs/60050742.mkv +Dick Punks-现在的年轻人,http://em.21dtv.com/songs/60119126.mkv +达木丁苏荣-心中的蒙古包,http://em.21dtv.com/songs/60050737.mkv +赶马哥-心中的九龙溪,http://em.21dtv.com/songs/60102767.mkv +栾添翔-心中的好姑娘,http://em.21dtv.com/songs/60078802.mkv +啡啡-心中的火凤凰,http://em.21dtv.com/songs/60078803.mkv +赵垒-心中的格桑花,http://em.21dtv.com/songs/60128425.mkv +何祺-心中的苍井空,http://em.21dtv.com/songs/60097718.mkv +宋雪莱-心中的北大荒(演唱会),http://em.21dtv.com/songs/60050726.mkv +韦唯-向着春天诉说(演唱会),http://em.21dtv.com/songs/60049359.mkv +周华健-现在才说爱我,http://em.21dtv.com/songs/60048510.mkv +柳影虹+蔡淇俊-现在爱情故事(演唱会),http://em.21dtv.com/songs/60078557.mkv +郭美美-下一站再爱你,http://em.21dtv.com/songs/60103630.mkv +雨霖枫-想要真心去爱,http://em.21dtv.com/songs/60117360.mkv +徐千雅-下一站是幸福,http://em.21dtv.com/songs/60048325.mkv +单色凌-下一站去哪里,http://em.21dtv.com/songs/60078544.mkv +MISS $-香烟逐渐减少,http://em.21dtv.com/songs/60071317.mkv +赵娟-下一站会怎样,http://em.21dtv.com/songs/60084162.mkv +闫寒-相约在黄河口,http://em.21dtv.com/songs/60120053.mkv +卓依婷-校园中的喜悦,http://em.21dtv.com/songs/60049910.mkv +伍义-下一站的幸福,http://em.21dtv.com/songs/60048324.mkv +许鹤缤-下一站的美好,http://em.21dtv.com/songs/60112236.mkv +刘蓝溪-小雨中的回忆,http://em.21dtv.com/songs/60049893.mkv +木子烁-下一站的爱情,http://em.21dtv.com/songs/60086971.mkv +斯琴高丽,顾峰-想要一种幸福,http://em.21dtv.com/songs/60105930.mkv +斯琴高丽+顾峰-想要一种幸福,http://em.21dtv.com/songs/60097796.mkv +雨木-像鹰一样飞翔,http://em.21dtv.com/songs/60107340.mkv +佚名-想有一双翅膀(无原唱),http://em.21dtv.com/songs/60049288.mkv +熊七梅-心因有你而跳,http://em.21dtv.com/songs/60065245.mkv +马志锋-喜洋洋美洋洋,http://em.21dtv.com/songs/60065168.mkv +那英+王菲-相约一九九八,http://em.21dtv.com/songs/60090250.mkv +黄安-新鸳鸯蝴蝶梦,http://em.21dtv.com/songs/60050985.mkv +何家劲-新鸳鸯蝴蝶梦,http://em.21dtv.com/songs/60050984.mkv +韩宝仪-想要潇洒离开,http://em.21dtv.com/songs/60084202.mkv +曾星瑜-想要幸福的人,http://em.21dtv.com/songs/60126968.mkv +佚名-夕阳下的祝福,http://em.21dtv.com/songs/60047875.mkv +SNH48-夕阳下的约定,http://em.21dtv.com/songs/60109874.mkv +宋孟君-夕阳下的我们,http://em.21dtv.com/songs/60094464.mkv +唐古-心与心的距离,http://em.21dtv.com/songs/60128920.mkv +周游格-小英雄大肚腩,http://em.21dtv.com/songs/60112577.mkv +乐飞扬-襄阳我的家乡,http://em.21dtv.com/songs/60121344.mkv +袁攀-下雨天我哭了,http://em.21dtv.com/songs/60078546.mkv +佚名-下雨天的周末,http://em.21dtv.com/songs/60048350.mkv +陈明韶-下雨天的周末,http://em.21dtv.com/songs/60048349.mkv +程悦-相约三月江南,http://em.21dtv.com/songs/60107939.mkv +陈妍希-悬崖上的玫瑰,http://em.21dtv.com/songs/60080103.mkv +邰正宵-心要让你听见,http://em.21dtv.com/songs/60050659.mkv +邰正宵-心要让你听见(演唱会),http://em.21dtv.com/songs/60050658.mkv +七郎+乔幼-星有情月有爱,http://em.21dtv.com/songs/60068869.mkv +佚名-心有千言万语,http://em.21dtv.com/songs/60050683.mkv +高林生+刘小钰-心有千言万语,http://em.21dtv.com/songs/60050682.mkv +佚名-雪一片一片下,http://em.21dtv.com/songs/60051748.mkv +朱康-想要你因为我,http://em.21dtv.com/songs/60124045.mkv +岩罕建-想与你成恋人,http://em.21dtv.com/songs/60124818.mkv +妞妞-像羽毛一样轻,http://em.21dtv.com/songs/60078669.mkv +李玟-心已没有空位,http://em.21dtv.com/songs/60091336.mkv +曾咏熙-想遇见一个人,http://em.21dtv.com/songs/60122804.mkv +曲尔登-雪域江南舟曲,http://em.21dtv.com/songs/60106906.mkv +佚名-小扬江的少女,http://em.21dtv.com/songs/60049866.mkv +庞龙-小眼睛的姑娘,http://em.21dtv.com/songs/60049859.mkv +何洁-想要回到过去,http://em.21dtv.com/songs/60078644.mkv +卢胜林-下一个天亮轨,http://em.21dtv.com/songs/60121471.mkv +陈妃平-想一个多幺苦,http://em.21dtv.com/songs/60088860.mkv +CLOVER-幸运草的祝福,http://em.21dtv.com/songs/60051411.mkv +游小青-薰衣草的味道,http://em.21dtv.com/songs/60130555.mkv +才娜旺姆+王羽泽-相拥冰山之巅,http://em.21dtv.com/songs/60119591.mkv +黄克林-行一步算一步,http://em.21dtv.com/songs/60019952.mkv +李自强-心已被你偷走,http://em.21dtv.com/songs/60078795.mkv +谭晶-雪也白不过她,http://em.21dtv.com/songs/60078977.mkv +孙露-香烟爱上火柴,http://em.21dtv.com/songs/60115856.mkv +孙露-香烟爱上火柴,http://em.21dtv.com/songs/60078609.mkv +张政-香烟爱上火柴,http://em.21dtv.com/songs/60048955.mkv +佚名-新鞋子旧鞋子,http://em.21dtv.com/songs/60050972.mkv +郭富城-心现在还在跳,http://em.21dtv.com/songs/60050633.mkv +游国维-想象中的爱人(无原唱),http://em.21dtv.com/songs/60049263.mkv +陈玲莉-想想也是醉了,http://em.21dtv.com/songs/60112358.mkv +卓依婷-心相印手牵手,http://em.21dtv.com/songs/60065244.mkv +杨钰莹-心相印手牵手,http://em.21dtv.com/songs/60050637.mkv +田震-星星月亮太阳,http://em.21dtv.com/songs/60091771.mkv +李晟-星星月亮太阳,http://em.21dtv.com/songs/60078896.mkv +TWINS-星星月亮太阳,http://em.21dtv.com/songs/60051124.mkv +刘媛媛-许下一个心愿,http://em.21dtv.com/songs/60051562.mkv +长春虫子-小心眼的男人,http://em.21dtv.com/songs/60061763.mkv +童唱-小星星亮晶晶,http://em.21dtv.com/songs/60049852.mkv +贺世哲-相信我没有错,http://em.21dtv.com/songs/60080978.mkv +张学友-相信她关心她,http://em.21dtv.com/songs/60048845.mkv +佚名-相信她关心她(伦巴),http://em.21dtv.com/songs/60048844.mkv +牛仔酷-心相守梦相见,http://em.21dtv.com/songs/60117908.mkv +周慧敏-新相识旧情人,http://em.21dtv.com/songs/60050968.mkv +罗大佑-现象七十二变,http://em.21dtv.com/songs/60048505.mkv +张胜淼-谢谢你选择我,http://em.21dtv.com/songs/60113494.mkv +张胜淼-谢谢你选择我,http://em.21dtv.com/songs/60050076.mkv +鲁士郎-相信你相信我,http://em.21dtv.com/songs/60126459.mkv +吴小蕊-谢谢你吴莫愁,http://em.21dtv.com/songs/60110078.mkv +林木-小心女人的话,http://em.21dtv.com/songs/60049837.mkv +暴林+张怡诺-谢谢你陪着我,http://em.21dtv.com/songs/60106903.mkv +彭羚-谢谢你旧情人,http://em.21dtv.com/songs/60092704.mkv +戴爱玲-谢谢你放我走,http://em.21dtv.com/songs/60080476.mkv +曹雅雯-谢谢你的温柔,http://em.21dtv.com/songs/60050062.mkv +S.H.E+飞轮海-谢谢你的温柔,http://em.21dtv.com/songs/60050061.mkv +阿赖-谢谢你的无情,http://em.21dtv.com/songs/60117315.mkv +陈思思-谢谢您的牵挂,http://em.21dtv.com/songs/60072636.mkv +严爵-谢谢你的美好,http://em.21dtv.com/songs/60050060.mkv +佚名-谢谢你冬的雪,http://em.21dtv.com/songs/60050064.mkv +巫启贤-谢谢你冬的雪,http://em.21dtv.com/songs/60050063.mkv +阚立文-谢谢你对不起,http://em.21dtv.com/songs/60118991.mkv +萧全-谢谢你不珍惜(舞曲版),http://em.21dtv.com/songs/60067645.mkv +萧全-谢谢你不珍惜,http://em.21dtv.com/songs/60061767.mkv +冷漠-谢谢你不爱我,http://em.21dtv.com/songs/60122511.mkv +王中平-谢谢你爱过我,http://em.21dtv.com/songs/60109510.mkv +刘小慧-谢谢你爱过我,http://em.21dtv.com/songs/60050045.mkv +邵杰-谢谢了朋友们,http://em.21dtv.com/songs/60122165.mkv +赵仰瑞-乡下老爸老妈,http://em.21dtv.com/songs/60084187.mkv +陈慧琳-香薰恋爱治疗,http://em.21dtv.com/songs/60048952.mkv +吴浩康-吸血僵尸的爱,http://em.21dtv.com/songs/60047959.mkv +顺子-星星im not a star,http://em.21dtv.com/songs/60051107.mkv +徐良-像笑话般爱你,http://em.21dtv.com/songs/60105899.mkv +王菲+梁朝伟-喜相逢啦啦啦,http://em.21dtv.com/songs/60091731.mkv +中国娃娃-小媳妇回娘家,http://em.21dtv.com/songs/60049791.mkv +邓丽君-小媳妇回娘家,http://em.21dtv.com/songs/60049790.mkv +童星-小小的贺年片,http://em.21dtv.com/songs/60088384.mkv +苏阳-新鲜的花儿开,http://em.21dtv.com/songs/60067665.mkv +武艺-仙侠传 雪字,http://em.21dtv.com/songs/60121848.mkv +张园园-习习春风吹来,http://em.21dtv.com/songs/60103269.mkv +孙盈盈-星星不会寂寞,http://em.21dtv.com/songs/60104928.mkv +瞿睿婕-谢谢爸爸妈妈,http://em.21dtv.com/songs/60135600.mkv +张惠妹-血腥爱情故事,http://em.21dtv.com/songs/60111072.mkv +群星-相信爱还存在,http://em.21dtv.com/songs/60107949.mkv +姜育恒-像我这样的人(无原唱),http://em.21dtv.com/songs/60049404.mkv +林玉英-像我这款运命(无原唱),http://em.21dtv.com/songs/60049398.mkv +寒若珉-小王子的忧伤,http://em.21dtv.com/songs/60066476.mkv +何韵诗-小丸子的心事,http://em.21dtv.com/songs/60049773.mkv +赵传-像我一样骄傲(演唱会),http://em.21dtv.com/songs/60049396.mkv +庞龙-像我一样飞翔,http://em.21dtv.com/songs/60049395.mkv +孙浩雨-像我一样爱她,http://em.21dtv.com/songs/60110979.mkv +大哲-像我一样爱你,http://em.21dtv.com/songs/60105727.mkv +嫣儿-笑我一世红颜,http://em.21dtv.com/songs/60078745.mkv +李萌-新五元人民币,http://em.21dtv.com/songs/60105163.mkv +孙辉+蓝若兮-新无言的结局,http://em.21dtv.com/songs/60122660.mkv +大张伟-新无言的结局,http://em.21dtv.com/songs/60050963.mkv +海生-小薇你在何方,http://em.21dtv.com/songs/60066477.mkv +龙梅子-希望你忘了我,http://em.21dtv.com/songs/60132031.mkv +佚名-希望你点点头,http://em.21dtv.com/songs/60047987.mkv +郭桂彬-希望你爱了解,http://em.21dtv.com/songs/60047986.mkv +王浩-希望就在前方,http://em.21dtv.com/songs/60078503.mkv +林耿贤-希望2012,http://em.21dtv.com/songs/60066449.mkv +陈明章-下午的一出戏,http://em.21dtv.com/songs/60048299.mkv +佚名-雄伟的天安门,http://em.21dtv.com/songs/60051480.mkv +林子娟-希望惦你身边,http://em.21dtv.com/songs/60116960.mkv +王中平-向天要一点爱,http://em.21dtv.com/songs/60049343.mkv +小乔-心痛有几克拉,http://em.21dtv.com/songs/60104073.mkv +王秀茗-新田园欢迎您,http://em.21dtv.com/songs/60094609.mkv +自由发挥-小太阳的愿望,http://em.21dtv.com/songs/60065218.mkv +郑晟-夏天想着冬天,http://em.21dtv.com/songs/60078549.mkv +XUN-心痛无人打扫,http://em.21dtv.com/songs/60086045.mkv +广智+冲儿-心跳为你加快,http://em.21dtv.com/songs/60118540.mkv +张惠雅-心跳500天,http://em.21dtv.com/songs/60097719.mkv +金莎-想听听你说谎,http://em.21dtv.com/songs/60105446.mkv +陈慕童-想偷偷告诉你,http://em.21dtv.com/songs/60089522.mkv +李佳薇-像天堂的悬崖,http://em.21dtv.com/songs/60097799.mkv +柳佳佳-心跳跳爱动动,http://em.21dtv.com/songs/60106033.mkv +飞轮海-心疼你的心疼,http://em.21dtv.com/songs/60050584.mkv +许嵩-心疼你的过去,http://em.21dtv.com/songs/60078782.mkv +邰正宵-心太冷梦太真,http://em.21dtv.com/songs/60078781.mkv +佚名-心太冷梦太真,http://em.21dtv.com/songs/60050573.mkv +东方健-心痛留给自己,http://em.21dtv.com/songs/60101037.mkv +张国荣-心跳呼吸正常,http://em.21dtv.com/songs/60050592.mkv +张越-夏天2013,http://em.21dtv.com/songs/60097773.mkv +小山-心痛2013,http://em.21dtv.com/songs/60070082.mkv +B.A.D-夏天的圣诞节,http://em.21dtv.com/songs/60048406.mkv +孙艺琪-心疼的人错了,http://em.21dtv.com/songs/60135105.mkv +杨林-心疼地不是你,http://em.21dtv.com/songs/60050583.mkv +小山-心痛2011,http://em.21dtv.com/songs/60050606.mkv +欢子-心痛2009,http://em.21dtv.com/songs/60050605.mkv +江惠仪-相思住治阮心内,http://em.21dtv.com/songs/60062506.mkv +于文华-孝是最善的心,http://em.21dtv.com/songs/60121350.mkv +刘军-孝是最善的心,http://em.21dtv.com/songs/60121422.mkv +陈小汉-西施苎罗访艳(1)(戏曲),http://em.21dtv.com/songs/60093430.mkv +韩宝仪-新所在旧世界,http://em.21dtv.com/songs/60050953.mkv +叶丽仪-心似在白云边(演唱会),http://em.21dtv.com/songs/60050491.mkv +单色凌+伽菲珈而-小岁月太着急,http://em.21dtv.com/songs/60103131.mkv +陈浩德-相识也是缘份(演唱会),http://em.21dtv.com/songs/60078580.mkv +佚名-相识也是缘份,http://em.21dtv.com/songs/60048715.mkv +张伟文-相识也是缘份(演唱会),http://em.21dtv.com/songs/60048714.mkv +张德兰-相识也是缘份(演唱会),http://em.21dtv.com/songs/60048713.mkv +蔡健雅-先生有事吗?,http://em.21dtv.com/songs/60117194.mkv +陈飞+吴凤花-血手印-三杯酒,http://em.21dtv.com/songs/60051798.mkv +艾丽雅-像是一场远行,http://em.21dtv.com/songs/60128334.mkv +陈晓东-心伤心痛不痛(演唱会),http://em.21dtv.com/songs/60050461.mkv +周蕙-寻伤心的理由,http://em.21dtv.com/songs/60051831.mkv +邱泽-先生我听不懂,http://em.21dtv.com/songs/60048458.mkv +林峰-新生日快乐歌,http://em.21dtv.com/songs/60050936.mkv +周子轩-新失去的味道,http://em.21dtv.com/songs/60126716.mkv +凤飞飞-相思爬上心头,http://em.21dtv.com/songs/60089668.mkv +凤飞飞-相思爬上心底,http://em.21dtv.com/songs/60048779.mkv +杨宗宪-欣赏你好男儿,http://em.21dtv.com/songs/60050778.mkv +关喆-想送你的礼物,http://em.21dtv.com/songs/60112521.mkv +吴莫愁+李代沫-想神马有神马,http://em.21dtv.com/songs/60096216.mkv +霍正奇-心碎了也会痛,http://em.21dtv.com/songs/60050556.mkv +音萌萌-心碎了和谁说,http://em.21dtv.com/songs/60133090.mkv +梦成-新死了都要爱,http://em.21dtv.com/songs/60078871.mkv +陈淑芳-相思苦问苍天,http://em.21dtv.com/songs/60048767.mkv +东方依依-相思苦离别痛,http://em.21dtv.com/songs/60114966.mkv +黄耀明-下世纪再嬉戏(演唱会),http://em.21dtv.com/songs/60048295.mkv +宋祖英-新世纪艳阳天,http://em.21dtv.com/songs/60050946.mkv +吕薇-新世纪新希望,http://em.21dtv.com/songs/60050945.mkv +叶倩文-现实就是现实,http://em.21dtv.com/songs/60048501.mkv +林凡+李家发-现实就是现实,http://em.21dtv.com/songs/60048500.mkv +谢金燕-心酸甲你无关,http://em.21dtv.com/songs/60095012.mkv +刘斌-新世纪的英雄,http://em.21dtv.com/songs/60050944.mkv +蔡孟臻-小世界的女王,http://em.21dtv.com/songs/60049746.mkv +张琛-新世纪的女兵(演唱会),http://em.21dtv.com/songs/60066490.mkv +戴玉强-新世纪的呼唤,http://em.21dtv.com/songs/60089316.mkv +谢金燕-心酸和你无关,http://em.21dtv.com/songs/60050529.mkv +佚名-心事放乎伊飞,http://em.21dtv.com/songs/60050500.mkv +徐羽泽-心碎2012,http://em.21dtv.com/songs/60072649.mkv +郭瓦加毛吉-潇洒的康巴人,http://em.21dtv.com/songs/60049455.mkv +阎维文-新时代进行曲,http://em.21dtv.com/songs/60121047.mkv +彭莉-心碎的电影票,http://em.21dtv.com/songs/60050547.mkv +闫凤梅-消失的地平线,http://em.21dtv.com/songs/60107295.mkv +阿鲁阿卓-新时代的女兵(HD),http://em.21dtv.com/songs/10012820.mkv +阿鲁阿卓-新时代的女兵,http://em.21dtv.com/songs/60097801.mkv +刘春云-新时代的美兰(演唱会),http://em.21dtv.com/songs/60050941.mkv +陈淑芳-新时代的恋爱,http://em.21dtv.com/songs/60050940.mkv +熊天平-心碎的冰咖啡,http://em.21dtv.com/songs/60050546.mkv +多岐川舞子-新宿たずね人,http://em.21dtv.com/songs/60050975.mkv +王俊宇-心碎2011,http://em.21dtv.com/songs/60050544.mkv +王俊宇-心碎2010,http://em.21dtv.com/songs/60050543.mkv +六哲-心伤2010,http://em.21dtv.com/songs/60050460.mkv +庾澄庆-仙人掌与蜥蜴,http://em.21dtv.com/songs/60048445.mkv +常宽-笑容总是很美,http://em.21dtv.com/songs/60049948.mkv +庾澄庆-仙人掌和蜥蜴,http://em.21dtv.com/songs/60089259.mkv +巫启贤-小人物的心声,http://em.21dtv.com/songs/60049716.mkv +陈伟联-小人物的心声,http://em.21dtv.com/songs/60049715.mkv +陈彦允-小人物大公主,http://em.21dtv.com/songs/60101561.mkv +金贵晟-向日葵的约定,http://em.21dtv.com/songs/60112320.mkv +魏晨-向日葵的微笑(演唱会),http://em.21dtv.com/songs/60061754.mkv +李娜-夏日泛舟海上,http://em.21dtv.com/songs/60048371.mkv +Easy Shen-小倾心大爆炸,http://em.21dtv.com/songs/60112429.mkv +陈明栋-星期天的爱恋,http://em.21dtv.com/songs/60084649.mkv +陈仁鹤-新秋天不回来,http://em.21dtv.com/songs/60102865.mkv +宇恒-星期三的约会,http://em.21dtv.com/songs/60051086.mkv +俪媛-心牵牵心挂挂,http://em.21dtv.com/songs/60134903.mkv +天亮飞-想起你想起爱,http://em.21dtv.com/songs/60078640.mkv +戴荃+王宁-新千年等一回,http://em.21dtv.com/songs/60135300.mkv +戴荃+王宁-新千年等一回,http://em.21dtv.com/songs/60133733.mkv +王一超-新千年等一回,http://em.21dtv.com/songs/60106094.mkv +王力宏-星期六的深夜(演唱会),http://em.21dtv.com/songs/60051081.mkv +果然哥-向钱看向厚赚,http://em.21dtv.com/songs/60124141.mkv +彭清-虚情假意的你,http://em.21dtv.com/songs/60120554.mkv +李玖哲-小胖子的一天,http://em.21dtv.com/songs/60049691.mkv +李池湘-小朋友过新年,http://em.21dtv.com/songs/60091317.mkv +于海洋-溆浦我的天堂,http://em.21dtv.com/songs/60096033.mkv +马志锋-小苹果大菠萝,http://em.21dtv.com/songs/60107362.mkv +贡尕达哇-想你在千山外,http://em.21dtv.com/songs/60098783.mkv +翁立友-想你最后一天,http://em.21dtv.com/songs/60101474.mkv +吴琼-小女子本姓陶,http://em.21dtv.com/songs/60049688.mkv +陈建年-想你一切都好,http://em.21dtv.com/songs/60049171.mkv +凤飞飞-写宁云顶个名,http://em.21dtv.com/songs/60095459.mkv +佚名-写宁云顶个名,http://em.21dtv.com/songs/60050009.mkv +鸿飞-想你已成习惯,http://em.21dtv.com/songs/60120158.mkv +[Group] +groupName=十六万歌曲MV等 - 91 +罗维帅-想你想你想你,http://em.21dtv.com/songs/60113944.mkv +胡江伟-想你想得想哭,http://em.21dtv.com/songs/60088497.mkv +胡江伟-想你想的想哭,http://em.21dtv.com/songs/60049156.mkv +张清芳-想你想到心慌,http://em.21dtv.com/songs/60049149.mkv +董事长乐团-新男性的复仇,http://em.21dtv.com/songs/60050871.mkv +波拉-想念我的女人,http://em.21dtv.com/songs/60078637.mkv +方瑞娥-心内事无人知,http://em.21dtv.com/songs/60050404.mkv +陈小云-心内事无人知,http://em.21dtv.com/songs/60050403.mkv +南台湾小姑娘-心内事无人知(无原唱),http://em.21dtv.com/songs/60050402.mkv +李霞儿+邓雯心+刘亭婷+雷明佳-向你说声新年,http://em.21dtv.com/songs/60112772.mkv +方瑞娥-心内事谁人知,http://em.21dtv.com/songs/60095550.mkv +石淼-小男人小女人,http://em.21dtv.com/songs/60102581.mkv +萧敬腾-小男人大男孩,http://em.21dtv.com/songs/60078703.mkv +NOEL-想念你想念你,http://em.21dtv.com/songs/60066463.mkv +佚名-想念你思念你,http://em.21dtv.com/songs/60049200.mkv +陈明-想念你的夜晚,http://em.21dtv.com/songs/60090294.mkv +梁汉文+李美琳-想念你的一切,http://em.21dtv.com/songs/60049199.mkv +猪头皮-想念你的心情(演唱会),http://em.21dtv.com/songs/60049198.mkv +李弦-想你了我哭了,http://em.21dtv.com/songs/60117812.mkv +于金胜-想你就让我哭,http://em.21dtv.com/songs/60097795.mkv +李之勤-想你会想我吗,http://em.21dtv.com/songs/60049132.mkv +S.H.E-像女孩的女人,http://em.21dtv.com/songs/60079856.mkv +陈洁仪-像男孩的男人,http://em.21dtv.com/songs/60049390.mkv +韩小薰-想你的日与夜,http://em.21dtv.com/songs/60100626.mkv +罗逻圣-想你的那个人,http://em.21dtv.com/songs/60122010.mkv +冷漠-想你的每一夜,http://em.21dtv.com/songs/60099103.mkv +洪荣宏-想你的彼条歌,http://em.21dtv.com/songs/60135512.mkv +秦影-想你不再心痛,http://em.21dtv.com/songs/60100345.mkv +蔡丽津-想你不愿梦醒,http://em.21dtv.com/songs/60135702.mkv +于冠华-想你爱你恋你(无原唱),http://em.21dtv.com/songs/60049094.mkv +谢言-想你2010,http://em.21dtv.com/songs/60049092.mkv +张钰琪-像梦一样自由,http://em.21dtv.com/songs/60106870.mkv +汪峰+汪峰组四强-像梦一样自由,http://em.21dtv.com/songs/60105210.mkv +毕夏-像梦一样自由,http://em.21dtv.com/songs/60084205.mkv +中国好声音第二季-像梦一样自由(毕夏),http://em.21dtv.com/songs/60081501.mkv +汪峰-像梦一样自由,http://em.21dtv.com/songs/60049389.mkv +严璞-小蚂蚁大梦想,http://em.21dtv.com/songs/60116505.mkv +平安+汪小敏-小梦想大梦想,http://em.21dtv.com/songs/60121630.mkv +费翔-像没说过再见,http://em.21dtv.com/songs/60049387.mkv +本兮-小明是个画家,http://em.21dtv.com/songs/60130394.mkv +杨青-西门庆的眼泪,http://em.21dtv.com/songs/60047936.mkv +巧千金-小木偶奇遇记,http://em.21dtv.com/songs/60049675.mkv +崔伟亮-小妹你听我说,http://em.21dtv.com/songs/60070058.mkv +徐誉滕-小明你还好吗,http://em.21dtv.com/songs/60065215.mkv +彭莉-心茫茫醉茫茫,http://em.21dtv.com/songs/60050389.mkv +蔡秋凤-心茫茫 醉茫茫,http://em.21dtv.com/songs/60050384.mkv +佚名-小妹妹送情郎,http://em.21dtv.com/songs/60049652.mkv +甲子蕙-心茫茫情茫茫,http://em.21dtv.com/songs/60050388.mkv +打工青年艺术团-小妹妹来看我,http://em.21dtv.com/songs/60104163.mkv +容中尔甲-喜玛拉雅恋曲,http://em.21dtv.com/songs/60048163.mkv +容中尔甲-喜马拉雅恋曲,http://em.21dtv.com/songs/60048159.mkv +杨萍-心里装着百姓,http://em.21dtv.com/songs/60128115.mkv +潘斌龙-心灵猪汤无敌,http://em.21dtv.com/songs/60124220.mkv +俞思远-心里有一个他,http://em.21dtv.com/songs/60050351.mkv +韩春雨-相恋一万年轨,http://em.21dtv.com/songs/60122267.mkv +王强-香了一条大江,http://em.21dtv.com/songs/60103443.mkv +谭维维-雪落下的声音,http://em.21dtv.com/songs/60051713.mkv +谭维维-雪落下的声音(演唱会),http://em.21dtv.com/songs/60051712.mkv +慕容晓晓-下了雪的北京,http://em.21dtv.com/songs/60120571.mkv +吕方-锡老婆会发达,http://em.21dtv.com/songs/60048043.mkv +吕方-锡老婆会发达(演唱会),http://em.21dtv.com/songs/60048042.mkv +王牌-雪莲花的祝福,http://em.21dtv.com/songs/60117041.mkv +百变金童-锡林郭勒之恋,http://em.21dtv.com/songs/60080081.mkv +阿日布杰+哈斯+阿箃娜-锡林郭勒草原(演唱会),http://em.21dtv.com/songs/60085975.mkv +SpeXial-犀利Girl,http://em.21dtv.com/songs/60115637.mkv +张争-小老公大老婆,http://em.21dtv.com/songs/60131391.mkv +智涛-犀利哥的传说,http://em.21dtv.com/songs/60048040.mkv +方怡萍+高向鹏-醒来吧我的爱,http://em.21dtv.com/songs/60067669.mkv +佚名-醒来吧雷梦娜,http://em.21dtv.com/songs/60051178.mkv +刘德华-星空下没有人,http://em.21dtv.com/songs/60090700.mkv +张莫晗-星空下的誓言,http://em.21dtv.com/songs/60072663.mkv +黄思婷-星空下的漫舞,http://em.21dtv.com/songs/60051070.mkv +关淑怡-星空下的恋人,http://em.21dtv.com/songs/60051069.mkv +关淑怡-星空下的恋人(演唱会),http://em.21dtv.com/songs/60051068.mkv +员伟明-星空下的蝴蝶,http://em.21dtv.com/songs/60087014.mkv +谭圳-星空下的爱情,http://em.21dtv.com/songs/60062983.mkv +刘轩瑞-想哭时看看天,http://em.21dtv.com/songs/60103128.mkv +卢一秒-想哭哭不出来,http://em.21dtv.com/songs/60133438.mkv +庄之影-想哭就哭出来,http://em.21dtv.com/songs/60078621.mkv +林久登-小鲫仔变大鱼,http://em.21dtv.com/songs/60101395.mkv +陈熙然-西江月井岗山,http://em.21dtv.com/songs/60088902.mkv +洪雁-西江月井冈山,http://em.21dtv.com/songs/60047932.mkv +盖鸣晖+吴美英-仙姬送子-满工,http://em.21dtv.com/songs/60048437.mkv +李韦-雪净世界的非,http://em.21dtv.com/songs/60078973.mkv +沈芳如-想见你想念你,http://em.21dtv.com/songs/60049056.mkv +洪迷-相见难别亦难,http://em.21dtv.com/songs/60048673.mkv +陈婷婷-小精灵过新年(无原唱),http://em.21dtv.com/songs/60049609.mkv +白冰冰-现金寄治股市,http://em.21dtv.com/songs/60048499.mkv +那英+张碧晨-相见不如怀念,http://em.21dtv.com/songs/60105415.mkv +樊凡-相见不如怀念,http://em.21dtv.com/songs/60084174.mkv +邓丽君-相见不如怀念,http://em.21dtv.com/songs/60078572.mkv +余天-相见不如怀念,http://em.21dtv.com/songs/60048670.mkv +龙飘飘-相见不如怀念,http://em.21dtv.com/songs/60048669.mkv +那英-相见不如怀念(演唱会),http://em.21dtv.com/songs/60048668.mkv +贾玲+刘维-喜剧班的春天,http://em.21dtv.com/songs/60114091.mkv +子夕-西江爱情故事,http://em.21dtv.com/songs/60080879.mkv +彭羚-喜欢最喜欢你,http://em.21dtv.com/songs/60092698.mkv +游鸿明-喜欢原谅别人,http://em.21dtv.com/songs/60048149.mkv +贺一航-雪花,http://em.21dtv.com/songs/60114089.mkv +俞晴-雪后温尼伯格,http://em.21dtv.com/songs/60051682.mkv +王琳-喜欢我马上点,http://em.21dtv.com/songs/60048143.mkv +新仔阿波-想和你在一起,http://em.21dtv.com/songs/60132492.mkv +阳一-想和你在一起,http://em.21dtv.com/songs/60049044.mkv +王心凌-喜欢你怎么办,http://em.21dtv.com/songs/60088290.mkv +王心凌-喜欢你 怎么办,http://em.21dtv.com/songs/60048122.mkv +张韶涵-喜欢你没道理,http://em.21dtv.com/songs/60048139.mkv +张桐玮-想和你看流星,http://em.21dtv.com/songs/60049040.mkv +阚立文-想和你喝杯酒,http://em.21dtv.com/songs/60117306.mkv +陶格斯-喜欢你的名字,http://em.21dtv.com/songs/60048138.mkv +李歌也-西湖美你更美,http://em.21dtv.com/songs/60099306.mkv +唐丽-写乎妈妈的歌,http://em.21dtv.com/songs/60078749.mkv +唐俪-写乎妈妈的歌,http://em.21dtv.com/songs/60072634.mkv +黄志坚-小红帽大盖帽,http://em.21dtv.com/songs/60089043.mkv +熊照华+杨海-雪化了是春天,http://em.21dtv.com/songs/60124238.mkv +何润东-星海流浪的人,http://em.21dtv.com/songs/60051052.mkv +陈世川-喜欢可以试穿,http://em.21dtv.com/songs/60088847.mkv +罗美玲-喜欢就是喜欢,http://em.21dtv.com/songs/60048118.mkv +任娟-新槐花几时开,http://em.21dtv.com/songs/60120297.mkv +童唱-小荷花回老家,http://em.21dtv.com/songs/60049581.mkv +王绎龙-像蝴蝶一样飞,http://em.21dtv.com/songs/60088309.mkv +周兴哲-想回到那一天,http://em.21dtv.com/songs/60121503.mkv +罗中旭-想回到你身边(演唱会),http://em.21dtv.com/songs/60049045.mkv +佚名-香港祝你晚安,http://em.21dtv.com/songs/60048920.mkv +黄义达-写给自己的歌,http://em.21dtv.com/songs/60050007.mkv +龙千玉-心挂意无路用,http://em.21dtv.com/songs/60050276.mkv +林姗-心挂意无路用,http://em.21dtv.com/songs/60050275.mkv +陈美安-心挂意无路用,http://em.21dtv.com/songs/60050274.mkv +张翘-向歌友们拜年,http://em.21dtv.com/songs/60078650.mkv +马群琪-香港一九九七,http://em.21dtv.com/songs/60048916.mkv +小虎队-星光依旧灿烂,http://em.21dtv.com/songs/60115115.mkv +好声音群星-星光依旧灿烂,http://em.21dtv.com/songs/60081901.mkv +小虎队-星光依旧灿烂,http://em.21dtv.com/songs/60051050.mkv +凌志+赵越+程小刚-新光阴的故事,http://em.21dtv.com/songs/60128812.mkv +李紫昕-星光下的思念,http://em.21dtv.com/songs/60061783.mkv +李紫昕+HOTCHA-星光下的思念,http://em.21dtv.com/songs/60061782.mkv +秦齐-星光下的倾诉,http://em.21dtv.com/songs/60051049.mkv +徐誉滕-写给童年的我,http://em.21dtv.com/songs/60080321.mkv +超泉RZ组合-写给谁的情书,http://em.21dtv.com/songs/60086036.mkv +金子乔-新工人有力量(演唱会),http://em.21dtv.com/songs/60062534.mkv +蒋大为-献给妻子的歌,http://em.21dtv.com/songs/60048551.mkv +蔡琴-新感情旧回忆,http://em.21dtv.com/songs/60050828.mkv +黄山怡-想跟你去野餐,http://em.21dtv.com/songs/60120162.mkv +樱樱+星少-想跟你去流浪,http://em.21dtv.com/songs/60119739.mkv +杨采妮-心跟你还恋爱,http://em.21dtv.com/songs/60050271.mkv +赵鑫-写给你的情书,http://em.21dtv.com/songs/60118941.mkv +黄龄-心肝妹心肝郎,http://em.21dtv.com/songs/60106514.mkv +SNH48-献给明天的吻,http://em.21dtv.com/songs/60117490.mkv +李克-写给某人的曲,http://em.21dtv.com/songs/60130411.mkv +张靓颖-献给母亲的歌,http://em.21dtv.com/songs/60078564.mkv +才让旦-献给母亲的歌,http://em.21dtv.com/songs/60048548.mkv +龚玥-献给妈妈的歌,http://em.21dtv.com/songs/60117560.mkv +含恩静-习惯了自己过,http://em.21dtv.com/songs/60111748.mkv +三郎-献给老婆的歌,http://em.21dtv.com/songs/60116499.mkv +六水-写给孩子的歌,http://em.21dtv.com/songs/60113270.mkv +李萌-写给慧晶的信,http://em.21dtv.com/songs/60086035.mkv +DMX-x gon give it to ya,http://em.21dtv.com/songs/60074170.mkv +李书伟-写给父亲的歌,http://em.21dtv.com/songs/60128077.mkv +杨千嬅-写给城市的诗,http://em.21dtv.com/songs/60050002.mkv +俞静-香港别来无恙,http://em.21dtv.com/songs/60048903.mkv +谭维维-献给阿妈的歌,http://em.21dtv.com/songs/60105381.mkv +米线-献给阿妈的歌,http://em.21dtv.com/songs/60084169.mkv +德乾旺姆-献给阿妈的歌,http://em.21dtv.com/songs/60048545.mkv +许巍-像风一样自由,http://em.21dtv.com/songs/60049381.mkv +谢东-像风一样自由,http://em.21dtv.com/songs/60049380.mkv +刘孟哲-像风一样行走,http://em.21dtv.com/songs/60086986.mkv +星月组合-幸福因为有你,http://em.21dtv.com/songs/60126955.mkv +佚名-相逢有如梦中,http://em.21dtv.com/songs/60048660.mkv +佚名-幸福与你同在,http://em.21dtv.com/songs/60051396.mkv +梁静茹-幸福洋果子店(演唱会),http://em.21dtv.com/songs/60051387.mkv +李明洋+邱芸子-幸福是咱的名,http://em.21dtv.com/songs/60051370.mkv +尹玉成功+段海晶-幸福美丽天堂,http://em.21dtv.com/songs/60121604.mkv +林相清-幸福路在何方,http://em.21dtv.com/songs/60086059.mkv +庄心妍-幸福离我好远,http://em.21dtv.com/songs/60094089.mkv +孙燕姿-幸福离我好远,http://em.21dtv.com/songs/60090929.mkv +ALIN-幸福了然后呢,http://em.21dtv.com/songs/60072669.mkv +吕小毅-幸福来的时候,http://em.21dtv.com/songs/60078920.mkv +爱华-幸福就在眼前,http://em.21dtv.com/songs/60113831.mkv +陈惠英-幸福就在心中,http://em.21dtv.com/songs/60123299.mkv +星月组合-幸福就在身边,http://em.21dtv.com/songs/60133751.mkv +张坤-幸福就在前方,http://em.21dtv.com/songs/60130305.mkv +龙飞凤-幸福就在明天,http://em.21dtv.com/songs/60132034.mkv +李翊君-幸福很容易的,http://em.21dtv.com/songs/60111991.mkv +张可儿-幸福感,http://em.21dtv.com/songs/60098338.mkv +莫永虹-幸福过的城市,http://em.21dtv.com/songs/60100948.mkv +凤娘+昀葶-幸福的左撇子,http://em.21dtv.com/songs/60078911.mkv +索朗扎西-幸福的香巴拉,http://em.21dtv.com/songs/60124336.mkv +王小利+李琳-幸福的我们俩,http://em.21dtv.com/songs/60051288.mkv +杨乐-幸福的三只羊,http://em.21dtv.com/songs/60051275.mkv +王羽泽-幸福都去哪了,http://em.21dtv.com/songs/60104315.mkv +王阳阳-幸福的另一面,http://em.21dtv.com/songs/60129422.mkv +庞龙-幸福的两口子,http://em.21dtv.com/songs/60051264.mkv +陈雅森+杨梓-幸福的两个人,http://em.21dtv.com/songs/60067672.mkv +杨紫萍-幸福地久天长,http://em.21dtv.com/songs/60051305.mkv +萧泽伦-幸福的第一名,http://em.21dtv.com/songs/60078906.mkv +苏醒-幸福曾经来过(演唱会),http://em.21dtv.com/songs/60051234.mkv +刘若英-幸福不是情歌,http://em.21dtv.com/songs/60079961.mkv +张嘉倪-相逢不必邂逅,http://em.21dtv.com/songs/60048639.mkv +宋伶俐-心儿伴你飞翔,http://em.21dtv.com/songs/60078759.mkv +张景擎-兄弟祝你幸福,http://em.21dtv.com/songs/60127981.mkv +朱婧汐-夏的最后一日,http://em.21dtv.com/songs/60124044.mkv +葛林+高阳-兄弟永远不变,http://em.21dtv.com/songs/60130708.mkv +周传雄-新的夜旧的爱,http://em.21dtv.com/songs/60050819.mkv +杭航+黄渤-兄弟,http://em.21dtv.com/songs/60104235.mkv +邓丽君-雪地上的回忆,http://em.21dtv.com/songs/60051675.mkv +七郎-现代人的社会,http://em.21dtv.com/songs/60048498.mkv +吴晓荣+杨春明-兄弟情兄弟义,http://em.21dtv.com/songs/60103154.mkv +雨阳-兄弟情风雨行,http://em.21dtv.com/songs/60135965.mkv +杨海彪+杜军-兄弟你在哪里,http://em.21dtv.com/songs/60130463.mkv +佚名-想到你心就寒(无原唱),http://em.21dtv.com/songs/60049014.mkv +F.CUZ-想对你说的话,http://em.21dtv.com/songs/60115580.mkv +李伟宾-兄弟你累了吗,http://em.21dtv.com/songs/60051462.mkv +常红刚-兄弟你还好吗,http://em.21dtv.com/songs/60129043.mkv +蒋建明+张峰-兄弟你还好吗,http://em.21dtv.com/songs/60061789.mkv +唐涛-想爹娘回故乡,http://em.21dtv.com/songs/60128925.mkv +唐人街乐队-兄弟没你不行,http://em.21dtv.com/songs/60070098.mkv +张羽+朱娜-想得开玩的嗨,http://em.21dtv.com/songs/60101348.mkv +玄乐队-西大街的夜晚,http://em.21dtv.com/songs/60065160.mkv +邱凯伟+柯有伦-兄弟还记得吗,http://em.21dtv.com/songs/60110575.mkv +大雷-兄弟好久不见,http://em.21dtv.com/songs/60133532.mkv +张艳君-习大大人人夸,http://em.21dtv.com/songs/60113495.mkv +李鸿玉-习大大到咱家,http://em.21dtv.com/songs/60121794.mkv +陈婷婷-小叮当的心愿(无原唱),http://em.21dtv.com/songs/60049541.mkv +谢霆锋-想得到得不到,http://em.21dtv.com/songs/60049015.mkv +欧阳曹亮+密哥+周建华+陈高-兄弟别太累了,http://em.21dtv.com/songs/60119740.mkv +蔡献华+陈惠英-想的不能入睡,http://em.21dtv.com/songs/60049020.mkv +张智霖+许秋怡-现代爱情故事(演唱会),http://em.21dtv.com/songs/60065178.mkv +张智霖+许秋怡-现代爱情故事,http://em.21dtv.com/songs/60048492.mkv +杨千嬅+黄耀明-现代爱情故事(演唱会),http://em.21dtv.com/songs/60048491.mkv +容祖儿+王祖蓝-现代爱情故事(演唱会),http://em.21dtv.com/songs/60048490.mkv +朱虹-小城有一支歌(演唱会),http://em.21dtv.com/songs/60049517.mkv +李秋思雨-小刺猬捡蘑菇,http://em.21dtv.com/songs/60061757.mkv +佚名-行船人的愿望,http://em.21dtv.com/songs/60019941.mkv +陈盈洁-行船人的心事,http://em.21dtv.com/songs/60019940.mkv +颖宝儿-新窗前明月光,http://em.21dtv.com/songs/60098933.mkv +宋祖英-献出你的爱心,http://em.21dtv.com/songs/60090963.mkv +洪荣宏-新潮流的男儿,http://em.21dtv.com/songs/60050799.mkv +佚名-小村姑卖西瓜,http://em.21dtv.com/songs/60049531.mkv +潘秀琼-小村姑卖西瓜,http://em.21dtv.com/songs/60049530.mkv +石梅-新错过的情人,http://em.21dtv.com/songs/60119848.mkv +李进-乡愁2000,http://em.21dtv.com/songs/60048564.mkv +纪晓斌-下辈子再还你,http://em.21dtv.com/songs/60109563.mkv +郭玲-下辈子再爱你,http://em.21dtv.com/songs/60048261.mkv +范思威-下辈子再爱你,http://em.21dtv.com/songs/60048260.mkv +阿斌-下辈子再爱你,http://em.21dtv.com/songs/60048259.mkv +杨子军-下辈子遇见你,http://em.21dtv.com/songs/60112782.mkv +周赛刚-下辈子说爱你,http://em.21dtv.com/songs/60110092.mkv +孟杨-下辈子还等你,http://em.21dtv.com/songs/60121576.mkv +潘惠茹-下辈子还爱我,http://em.21dtv.com/songs/60127181.mkv +红袖-下辈子还爱你,http://em.21dtv.com/songs/60134065.mkv +张跃-下辈子爱个够,http://em.21dtv.com/songs/60061741.mkv +童唱-西北雨直直落,http://em.21dtv.com/songs/60047889.mkv +韩真真-西班牙野玫瑰,http://em.21dtv.com/songs/60047885.mkv +汪明荃-像白云像清风(演唱会),http://em.21dtv.com/songs/60049377.mkv +黄湘怡-西班牙狂想曲,http://em.21dtv.com/songs/60047882.mkv +李玖哲-需不需要理由,http://em.21dtv.com/songs/60051544.mkv +叶玉卿-想不想要不要,http://em.21dtv.com/songs/60049001.mkv +郑秀文-肖邦写过的歌,http://em.21dtv.com/songs/60093318.mkv +郑中基-卸不下的行李,http://em.21dtv.com/songs/60050027.mkv +邓紫棋-写不完的温柔,http://em.21dtv.com/songs/60049998.mkv +童唱-小白兔爱跳舞,http://em.21dtv.com/songs/60049482.mkv +帅南-心不死梦不败,http://em.21dtv.com/songs/60133624.mkv +吕薇-西柏坡的思念,http://em.21dtv.com/songs/60047880.mkv +阿玻-香巴拉看月亮,http://em.21dtv.com/songs/60048896.mkv +泽仁多吉-香巴拉的祝福,http://em.21dtv.com/songs/60048895.mkv +老兵+黄志坚+小曾-新兵连的一天,http://em.21dtv.com/songs/60050788.mkv +雍鉴君-乡巴佬的故事,http://em.21dtv.com/songs/60097710.mkv +朱宇-想不开放不开,http://em.21dtv.com/songs/60121752.mkv +林依轮-新北京新奥运,http://em.21dtv.com/songs/60091427.mkv +佚名-新北京新奥运(演唱会),http://em.21dtv.com/songs/60050782.mkv +李玟-学不会更爱你(演唱会),http://em.21dtv.com/songs/60051636.mkv +陈中+邱芸子-心不甘情不愿(无原唱),http://em.21dtv.com/songs/60095978.mkv +邱芸子+陈中-心不甘情不愿(无原唱),http://em.21dtv.com/songs/60095937.mkv +佚名-小扁担三尺三,http://em.21dtv.com/songs/60049496.mkv +DJ-X8[DJ],http://em.21dtv.com/songs/60112427.mkv +谢铭佑-下晡的ワルツ,http://em.21dtv.com/songs/60132890.mkv +孟杨-熊宝宝乖乖地,http://em.21dtv.com/songs/60051485.mkv +金学峰-心爱,http://em.21dtv.com/songs/60115458.mkv +刀郎-新阿瓦尔古丽,http://em.21dtv.com/songs/60050780.mkv +轲然-相爱是一种错,http://em.21dtv.com/songs/60061744.mkv +苏俏慧-想爱...你,http://em.21dtv.com/songs/60130684.mkv +伊能静-想爱就说出来,http://em.21dtv.com/songs/60048990.mkv +沈芳如-想爱就去爱吧(无原唱),http://em.21dtv.com/songs/60048989.mkv +陈小云-心爱的在那里,http://em.21dtv.com/songs/60050147.mkv +李翊君-心爱的再会啦,http://em.21dtv.com/songs/60095628.mkv +伍佰-心爱的再会啦(演唱会),http://em.21dtv.com/songs/60050146.mkv +陈盈洁-心爱的我想你(无原唱),http://em.21dtv.com/songs/60050142.mkv +叶启田-心爱的请保重,http://em.21dtv.com/songs/60050135.mkv +阿弟仔-心爱的欧托卖(无原唱),http://em.21dtv.com/songs/60050134.mkv +董事长乐团-心爱的牛肉面,http://em.21dtv.com/songs/60050132.mkv +佚名-心爱的你免惊(无原唱),http://em.21dtv.com/songs/60050131.mkv +阿吉仔-心爱的你敢知,http://em.21dtv.com/songs/60050130.mkv +孙子涵+李潇潇-相爱多么难得,http://em.21dtv.com/songs/60080710.mkv +黄乙玲-心爱的觅后悔,http://em.21dtv.com/songs/60050128.mkv +柯以柔-心爱的玲珑转(无原唱),http://em.21dtv.com/songs/60050125.mkv +孟庭苇-相爱的可能性,http://em.21dtv.com/songs/60048593.mkv +詹曼铃-心爱的紧返来(无原唱),http://em.21dtv.com/songs/60050123.mkv +叶倩文-相爱的第二天,http://em.21dtv.com/songs/60048591.mkv +蔡小虎-心爱的对不起,http://em.21dtv.com/songs/60115361.mkv +办桌二人组-心爱的不爱我(演唱会),http://em.21dtv.com/songs/60050117.mkv +王瑞霞-心爱的爱别人,http://em.21dtv.com/songs/60050110.mkv +玄乐队-西安爱情故事,http://em.21dtv.com/songs/60078493.mkv +王筝-西安爱情故事(演唱会),http://em.21dtv.com/songs/60047879.mkv +董含露-我总在骗自己,http://em.21dtv.com/songs/60102697.mkv +何佳-我在转龙等你,http://em.21dtv.com/songs/60133363.mkv +周华健+黄韵玲-我在这里等你,http://em.21dtv.com/songs/60089737.mkv +佚名-我在这里等你,http://em.21dtv.com/songs/60046806.mkv +陈小涛+李美怡-我在这里等你(演唱会),http://em.21dtv.com/songs/60046805.mkv +罗嘉良-我在这里等你(无原唱),http://em.21dtv.com/songs/60046804.mkv +吕薇-我在这儿等你,http://em.21dtv.com/songs/60081364.mkv +佚名-我只有这么多,http://em.21dtv.com/songs/60046906.mkv +谭咏麟-我这一生的伴,http://em.21dtv.com/songs/60046848.mkv +杨克强-我只要你现在(无原唱),http://em.21dtv.com/songs/60046902.mkv +李姗殷-我只要你活着,http://em.21dtv.com/songs/60085948.mkv +苏有朋-我只要你爱我,http://em.21dtv.com/songs/60046899.mkv +旧伤口-我只要你爱我,http://em.21dtv.com/songs/60046898.mkv +秋裤大叔-我这样的男人,http://em.21dtv.com/songs/60108762.mkv +赵小兵-我这样的男人,http://em.21dtv.com/songs/60097749.mkv +汪妤凌-我这样的女人,http://em.21dtv.com/songs/60081699.mkv +郑智化-我这样的男人,http://em.21dtv.com/songs/60046846.mkv +郑智化-我这样的男人(演唱会)(无原唱),http://em.21dtv.com/songs/60046845.mkv +佚名-为伫云顶个名,http://em.21dtv.com/songs/60044144.mkv +黄飞鹏-我在想我在猜,http://em.21dtv.com/songs/60084103.mkv +办桌二人组-我在西你在东,http://em.21dtv.com/songs/60111726.mkv +谢安琪-我最喜爱的歌(HD演唱会),http://em.21dtv.com/songs/60047001.mkv +夏鸣-我在网上等你,http://em.21dtv.com/songs/60046799.mkv +哈泊力夫+珠拉-我只为你歌唱,http://em.21dtv.com/songs/60122621.mkv +骆超勇-我在为你等候,http://em.21dtv.com/songs/60046800.mkv +耶律雅歌-温州我的故乡,http://em.21dtv.com/songs/60123090.mkv +马仕健-望着我别走开,http://em.21dtv.com/songs/60085827.mkv +余天-望着山望着海,http://em.21dtv.com/songs/60043733.mkv +叶良俊-我总是听你说,http://em.21dtv.com/songs/60046982.mkv +徐恩乾-我只是思念爱,http://em.21dtv.com/songs/60115178.mkv +黄凯芹-我沾湿了的脸,http://em.21dtv.com/songs/60046826.mkv +小沈阳+张艺谋-我只是个传说,http://em.21dtv.com/songs/60046883.mkv +路童-我最深爱的你,http://em.21dtv.com/songs/60078430.mkv +王琮玮-我在清溪等你,http://em.21dtv.com/songs/60078408.mkv +李照-我最亲爱的我,http://em.21dtv.com/songs/60079944.mkv +阮丹青+熊天平-我只能相信你,http://em.21dtv.com/songs/60046882.mkv +李建衡-我怎能忘记你,http://em.21dtv.com/songs/60046824.mkv +钟明秋-我怎能离开你,http://em.21dtv.com/songs/60126319.mkv +陈瑞-我怎能离开你,http://em.21dtv.com/songs/60111491.mkv +许茹芸-我怎能离开你,http://em.21dtv.com/songs/60046823.mkv +费玉清-我怎能离开你,http://em.21dtv.com/songs/60046822.mkv +邓丽君-我怎能离开你,http://em.21dtv.com/songs/60046821.mkv +陈奕迅-我怎么可以哭,http://em.21dtv.com/songs/60046810.mkv +姚铜-我怎么丢了你,http://em.21dtv.com/songs/60111800.mkv +陈小涛+陈思思-我在阆中等你(演唱会),http://em.21dtv.com/songs/60046781.mkv +高因-我醉了我不哭,http://em.21dtv.com/songs/60067600.mkv +洪磊-我在拉萨等你,http://em.21dtv.com/songs/60099375.mkv +颜振豪-我在丽江等你,http://em.21dtv.com/songs/60069995.mkv +佚名-我在静静等你,http://em.21dtv.com/songs/60046779.mkv +张学友-无止境的心痛,http://em.21dtv.com/songs/60047593.mkv +谢珊-我在酒城等你,http://em.21dtv.com/songs/60118050.mkv +黄睿铭-我在黄山等你,http://em.21dtv.com/songs/60118218.mkv +黄丽群-我在海角等你,http://em.21dtv.com/songs/60111547.mkv +六哲-我在乎的是你,http://em.21dtv.com/songs/60061711.mkv +晓月-我在海边等你,http://em.21dtv.com/songs/60107764.mkv +张超-我在贵州等你,http://em.21dtv.com/songs/60085482.mkv +苏夏-我在贵州等你,http://em.21dtv.com/songs/60068796.mkv +刘苓-我再给你幸福,http://em.21dtv.com/songs/60046764.mkv +徐铭志-为中国梦加油,http://em.21dtv.com/songs/60121708.mkv +长春虫子-我祝福你中国,http://em.21dtv.com/songs/60046973.mkv +汪峰-我真的需要你,http://em.21dtv.com/songs/60046874.mkv +群星-我真的谢谢你(无原唱),http://em.21dtv.com/songs/60046873.mkv +郑重-我真的心碎了,http://em.21dtv.com/songs/60071280.mkv +姜育恒-我找到我自己(演唱会),http://em.21dtv.com/songs/60046832.mkv +刘德华-我真的无所谓,http://em.21dtv.com/songs/60046871.mkv +郭欢-我知道我很傻,http://em.21dtv.com/songs/60062405.mkv +阿妮-我知道我的路,http://em.21dtv.com/songs/60101544.mkv +郭飞宏-我知道我错了,http://em.21dtv.com/songs/60127490.mkv +易欣-我知道我爱你,http://em.21dtv.com/songs/60046949.mkv +陈冠希-我知道我爱你,http://em.21dtv.com/songs/60046948.mkv +袁宇-我知道她有家,http://em.21dtv.com/songs/60078417.mkv +童话里不是骗人的+我可不是什么幺蛾子-我真的受伤了,http://em.21dtv.com/songs/60128285.mkv +李玟-我真的受伤了,http://em.21dtv.com/songs/60119666.mkv +林欣彤-我真的受伤了(演唱会),http://em.21dtv.com/songs/60065136.mkv +张学友-我真的受伤了,http://em.21dtv.com/songs/60046869.mkv +王菀之-我真的受伤了,http://em.21dtv.com/songs/60046868.mkv +泳儿-我真的受伤了(演唱会),http://em.21dtv.com/songs/60046867.mkv +王菀之+张学友-我真的受伤了(演唱会),http://em.21dtv.com/songs/60046866.mkv +林峰-我真的受伤了(演唱会),http://em.21dtv.com/songs/60046865.mkv +萧亚轩+方文山-我在断桥等你,http://em.21dtv.com/songs/60110492.mkv +路童-我在断桥等你,http://em.21dtv.com/songs/60103599.mkv +谭小雨-我在等你开口,http://em.21dtv.com/songs/60124502.mkv +冷漠-我知道你还在,http://em.21dtv.com/songs/60072572.mkv +法瑷-我知道你会走(无原唱),http://em.21dtv.com/songs/60046940.mkv +周传雄-我知道你等我,http://em.21dtv.com/songs/60046937.mkv +白冰-我知道你爱我,http://em.21dtv.com/songs/60107922.mkv +JS-我知道你爱我,http://em.21dtv.com/songs/60046931.mkv +阿轮-无字的绝情批,http://em.21dtv.com/songs/60047601.mkv +李建衡-我真的很想醉,http://em.21dtv.com/songs/60046859.mkv +熊照华-我真的好想你,http://em.21dtv.com/songs/60124235.mkv +杨丽-我真的好想你,http://em.21dtv.com/songs/60094161.mkv +张嘉洵-我真的好难过,http://em.21dtv.com/songs/60066433.mkv +千百顺-我真的会放电,http://em.21dtv.com/songs/60105667.mkv +千百顺-我真的会放电,http://em.21dtv.com/songs/60099126.mkv +伍思凯-我真的很不错,http://em.21dtv.com/songs/60046858.mkv +徐怀钰-我真的很爱你,http://em.21dtv.com/songs/60046857.mkv +刘一-我真的很爱你,http://em.21dtv.com/songs/60046856.mkv +杨燕-我真的好爱你(演唱会),http://em.21dtv.com/songs/60046854.mkv +禹湘-我真的爱过你,http://em.21dtv.com/songs/60065134.mkv +真次降措-我在草原等你,http://em.21dtv.com/songs/60046769.mkv +刘孟哲-我在春天等你(演唱会),http://em.21dtv.com/songs/60086952.mkv +春天-我在春天等你,http://em.21dtv.com/songs/60086856.mkv +杨钰莹-我在春天等你,http://em.21dtv.com/songs/60065131.mkv +伍馗-我做错了什么,http://em.21dtv.com/songs/60116540.mkv +周乐天-我做错了什么,http://em.21dtv.com/songs/60072577.mkv +隆隆-我做错了什么,http://em.21dtv.com/songs/60047010.mkv +杜歌-我做错了什么,http://em.21dtv.com/songs/60047009.mkv +伍思凯-我最爱的朋友,http://em.21dtv.com/songs/60046987.mkv +刘子毅+陈星-我最爱的女人,http://em.21dtv.com/songs/60065137.mkv +陈星+刘子毅-我最爱的女人,http://em.21dtv.com/songs/60046986.mkv +汤雷-我最爱的姑娘,http://em.21dtv.com/songs/60067598.mkv +杰子-我一直在路上,http://em.21dtv.com/songs/60129286.mkv +谢华-我一直在路上,http://em.21dtv.com/songs/60046640.mkv +王启文-我一直在路上,http://em.21dtv.com/songs/60046639.mkv +董冬-我一直在等你,http://em.21dtv.com/songs/60046638.mkv +金波-我一直在等你(演唱会),http://em.21dtv.com/songs/60046637.mkv +黄国伦-我一直在等你(无原唱),http://em.21dtv.com/songs/60046636.mkv +书云-我愿做一片云,http://em.21dtv.com/songs/60078404.mkv +宋熙铭-我愿做一棵树,http://em.21dtv.com/songs/60065129.mkv +金波-我要自由飞翔(演唱会),http://em.21dtv.com/songs/60046601.mkv +HOTCHA-我要最喜爱的,http://em.21dtv.com/songs/60046606.mkv +苏玮-我也走你的路,http://em.21dtv.com/songs/60108838.mkv +岳夏-我要找个理由,http://em.21dtv.com/songs/60046598.mkv +尚芸菲-我要找的幸福,http://em.21dtv.com/songs/60102161.mkv +关心妍-我已准备好了,http://em.21dtv.com/songs/60092309.mkv +梁咏琪-我要一种感觉,http://em.21dtv.com/songs/60046588.mkv +孙健-我有一弯明月,http://em.21dtv.com/songs/60078401.mkv +刘原龙-我愿意陪你走,http://em.21dtv.com/songs/60046757.mkv +许茹芸-我有一帘幽梦,http://em.21dtv.com/songs/60089471.mkv +许茹芸-我有一廉幽梦,http://em.21dtv.com/songs/60046718.mkv +乐飞扬-我有一个梦想,http://em.21dtv.com/songs/60098078.mkv +谭晶+王宏伟-我有一个梦想,http://em.21dtv.com/songs/60046710.mkv +卓依婷-我有一个秘密,http://em.21dtv.com/songs/60087465.mkv +大约冬季-我永远爱着你,http://em.21dtv.com/songs/60102081.mkv +庄心妍-我也许在等候,http://em.21dtv.com/songs/60125475.mkv +庄心妍-我也许在等候,http://em.21dtv.com/songs/60117708.mkv +王馨-我用相思等你,http://em.21dtv.com/songs/60128248.mkv +费玉清-屋檐下的思念,http://em.21dtv.com/songs/60088683.mkv +白安-我也想成为她,http://em.21dtv.com/songs/60104338.mkv +雷诺儿-我以为我能够,http://em.21dtv.com/songs/60071275.mkv +CLOWN+颜小健-我以为我可以,http://em.21dtv.com/songs/60078396.mkv +佚名-when you wish upon a star,http://em.21dtv.com/songs/60006269.mkv +莫文蔚-when you wish upon a star,http://em.21dtv.com/songs/60006268.mkv +黄凯芹-when you wish upon a star(演唱会),http://em.21dtv.com/songs/60006267.mkv +阿妹妹-我要为你做饭,http://em.21dtv.com/songs/60046580.mkv +东来东往-我要为你戒烟,http://em.21dtv.com/songs/60046579.mkv +潘秀琼-我要为你歌唱(演唱会),http://em.21dtv.com/songs/60084094.mkv +潘秀琼-我要为你歌唱,http://em.21dtv.com/songs/60046578.mkv +费玉清-我要为你歌唱,http://em.21dtv.com/songs/60046577.mkv +贺一航-我有我的自由,http://em.21dtv.com/songs/60046701.mkv +刘亦菲-我要我的滋味,http://em.21dtv.com/songs/60046581.mkv +王建杰-望呀望等呀等,http://em.21dtv.com/songs/60043721.mkv +陈宸-我以为的爱情,http://em.21dtv.com/songs/60116339.mkv +谢采妘-我愿是只小燕,http://em.21dtv.com/songs/60046738.mkv +航宇-我要说我爱你,http://em.21dtv.com/songs/60114735.mkv +蔡依林-when you say nothing at all,http://em.21dtv.com/songs/60006264.mkv +RONAN KEATING-when you say nothing at all,http://em.21dtv.com/songs/60006263.mkv +BOYZONE-when you say nothing at all,http://em.21dtv.com/songs/60006262.mkv +杭娇-我有什么不好,http://em.21dtv.com/songs/60046695.mkv +王力宏+柯以敏-我用生命爱你,http://em.21dtv.com/songs/60046679.mkv +佚名-will you still love me tomorro,http://em.21dtv.com/songs/60006344.mkv +江玲-我愿是个女兵(无原唱),http://em.21dtv.com/songs/60046736.mkv +王加祥-我依然想着你,http://em.21dtv.com/songs/60110384.mkv +梦成-我依然深爱你,http://em.21dtv.com/songs/60068794.mkv +苏莹-我应如何面对,http://em.21dtv.com/songs/60061709.mkv +蔡晓-我依然爱着你,http://em.21dtv.com/songs/60081037.mkv +欢子-我依然爱着你,http://em.21dtv.com/songs/60046646.mkv +许嘉文-我有钱我任性,http://em.21dtv.com/songs/60110517.mkv +吴木+尤姿涵-我有情你有意,http://em.21dtv.com/songs/60115047.mkv +张敏雯-我要去看爸爸,http://em.21dtv.com/songs/60101079.mkv +黄平-我要陪你变老,http://em.21dtv.com/songs/60119070.mkv +刘河君+妖妖-我与你相恋过,http://em.21dtv.com/songs/60113299.mkv +紫薇-我要你忘了我,http://em.21dtv.com/songs/60046559.mkv +费玉清-我要你忘了我,http://em.21dtv.com/songs/60046558.mkv +刘依纯-我有你你有我,http://em.21dtv.com/songs/60046694.mkv +刘若英+吴克群+桂纶镁+汤唯-我要你好好的,http://em.21dtv.com/songs/60116599.mkv +车志立-我要你过得好,http://em.21dtv.com/songs/60130781.mkv +钟杰-维也纳的忧伤,http://em.21dtv.com/songs/60066379.mkv +刘德华-我要你的每天,http://em.21dtv.com/songs/60046553.mkv +何韵诗-我有没有问题,http://em.21dtv.com/songs/60092274.mkv +薛家燕-我亚妈发仔瘟,http://em.21dtv.com/songs/60046492.mkv +王鹏-我越来越爱你(演唱会),http://em.21dtv.com/songs/60046763.mkv +金小曦-我已了无牵挂,http://em.21dtv.com/songs/60127506.mkv +黄品源-我要来去作兵,http://em.21dtv.com/songs/60046541.mkv +红兰-五月里的鲜花,http://em.21dtv.com/songs/60091806.mkv +吕珊+陈靖琳-我一见你就笑(演唱会),http://em.21dtv.com/songs/60078393.mkv +叶玉卿-我一见你就笑,http://em.21dtv.com/songs/60046629.mkv +邓丽君-我一见你就笑,http://em.21dtv.com/songs/60046628.mkv +蓓蕾-我一见你就笑,http://em.21dtv.com/songs/60046627.mkv +蔡琴-我一见你就笑(演唱会),http://em.21dtv.com/songs/60046626.mkv +陈法拉-我用距离爱你,http://em.21dtv.com/songs/60078397.mkv +陈盈洁-我已经觉醒啦(无原唱),http://em.21dtv.com/songs/60046654.mkv +林宥嘉-我已经敢想你,http://em.21dtv.com/songs/60127103.mkv +林宥嘉-我已经敢想你,http://em.21dtv.com/songs/60125774.mkv +张谦卑-无缘就分手吧(舞曲版),http://em.21dtv.com/songs/60065148.mkv +巫启贤-我已经不寂寞,http://em.21dtv.com/songs/60046653.mkv +黄淑辉-我已经爱著你,http://em.21dtv.com/songs/60073720.mkv +佚名-我已经爱着你,http://em.21dtv.com/songs/60046652.mkv +韦雄-我也害怕孤单,http://em.21dtv.com/songs/60046613.mkv +张学友-我也和你一样,http://em.21dtv.com/songs/60046614.mkv +周杰伦-我应该怎么办,http://em.21dtv.com/songs/60090841.mkv +张惠妹-我一个人跳舞(演唱会),http://em.21dtv.com/songs/60046623.mkv +张宇-我一个人流泪,http://em.21dtv.com/songs/60091076.mkv +汪东城-我应该去爱你,http://em.21dtv.com/songs/60069994.mkv +梦成-我应该去爱你,http://em.21dtv.com/songs/60069993.mkv +糯米-我要给你个家,http://em.21dtv.com/songs/60078382.mkv +莫旭秋-我有个好家庭(演唱会),http://em.21dtv.com/songs/60065126.mkv +佚名-我有个好家庭,http://em.21dtv.com/songs/60046688.mkv +费玉清-我有个好家庭,http://em.21dtv.com/songs/60046687.mkv +佚名-我要飞上青天,http://em.21dtv.com/songs/60046526.mkv +陈晓东-我要的只是爱,http://em.21dtv.com/songs/60046517.mkv +陈慧琳-我要的只是爱,http://em.21dtv.com/songs/60046516.mkv +金波-我要带你飞翔,http://em.21dtv.com/songs/60134355.mkv +王爱华-午夜的咖啡厅,http://em.21dtv.com/songs/60106114.mkv +黄小琥-午夜的单人床,http://em.21dtv.com/songs/60047700.mkv +乱弹阿翔-我要的不是你(无原唱),http://em.21dtv.com/songs/60046508.mkv +大卫-无缘的爱情路,http://em.21dtv.com/songs/60112597.mkv +谢东-我已不在寻求,http://em.21dtv.com/songs/60088657.mkv +王菲-我也不想这样,http://em.21dtv.com/songs/60046611.mkv +容祖儿-我也不想这样(演唱会),http://em.21dtv.com/songs/60046610.mkv +张秀卿-无缘爱你一生,http://em.21dtv.com/songs/60047559.mkv +袁晨-我又爱错了人,http://em.21dtv.com/songs/60067593.mkv +陈松伶-我心中只有你,http://em.21dtv.com/songs/60046471.mkv +王秀芬-我心属于军旗,http://em.21dtv.com/songs/60078375.mkv +高凯莉-我现在想着你,http://em.21dtv.com/songs/60124721.mkv +周笔畅-我选择喜欢你,http://em.21dtv.com/songs/60115762.mkv +六水-我选择—消防,http://em.21dtv.com/songs/60116561.mkv +杨议-我想找个老婆,http://em.21dtv.com/songs/60101655.mkv +庄秋玉-我心中的祖国,http://em.21dtv.com/songs/60126844.mkv +赵本山-我心中的太阳,http://em.21dtv.com/songs/60046468.mkv +耿玺尧-晚霞中的童年,http://em.21dtv.com/songs/60113965.mkv +王丽达-我心中的圣堂,http://em.21dtv.com/songs/60078374.mkv +吴亚荣-我心中的明灯,http://em.21dtv.com/songs/60121489.mkv +韦唯-我心中的故事,http://em.21dtv.com/songs/60046466.mkv +乌兰托娅-我心中的草原,http://em.21dtv.com/songs/60090489.mkv +刘铭-我想这不是爱,http://em.21dtv.com/songs/60121458.mkv +张惠妹-我陷在爱里面,http://em.21dtv.com/songs/60091092.mkv +西子-我心亦真不悔,http://em.21dtv.com/songs/60078371.mkv +潘美辰-我想要有个家(演唱会),http://em.21dtv.com/songs/60046419.mkv +L.A.四贱客-我需要你的钱,http://em.21dtv.com/songs/60046487.mkv +方顺吉-我需要你的爱(无原唱),http://em.21dtv.com/songs/60046486.mkv +刘劲升-我想要的幸福,http://em.21dtv.com/songs/60085930.mkv +张震岳-我想要的感觉,http://em.21dtv.com/songs/60046416.mkv +余家辉+卢艾佳-我相信,http://em.21dtv.com/songs/60104786.mkv +零下35度乐队-微笑,http://em.21dtv.com/songs/60121108.mkv +庄学忠-我希望我希望,http://em.21dtv.com/songs/60046346.mkv +李胜基-我想我是疯了,http://em.21dtv.com/songs/60086946.mkv +张学友-我希望你相信,http://em.21dtv.com/songs/60046345.mkv +佟铁鑫-我心为你燃烧,http://em.21dtv.com/songs/60046457.mkv +晓枫-我想我该走了,http://em.21dtv.com/songs/60084088.mkv +回音哥-我想我不够好,http://em.21dtv.com/songs/60068790.mkv +单色凌-我想我不够好,http://em.21dtv.com/songs/60065113.mkv +黎瑞恩-无须太早决定,http://em.21dtv.com/songs/60047509.mkv +阿龙正刚-我想说我爱你,http://em.21dtv.com/songs/60046399.mkv +薛凯琪-微笑杀人事件,http://em.21dtv.com/songs/60043784.mkv +雷诺-我心碎的时候,http://em.21dtv.com/songs/60124675.mkv +周安-我心碎的时候,http://em.21dtv.com/songs/60122597.mkv +许嵩-我想牵你的手,http://em.21dtv.com/songs/60092052.mkv +陈晓东-吻下去爱上你,http://em.21dtv.com/songs/60088890.mkv +夏雪-我想你的时候,http://em.21dtv.com/songs/60118475.mkv +岩罕建-我心里只有你,http://em.21dtv.com/songs/60124821.mkv +苏青山+酝酿心语-我心里只有你,http://em.21dtv.com/songs/60120894.mkv +罗中旭-我醒来你醒来,http://em.21dtv.com/songs/60046474.mkv +袁泉-瓦西里的故事,http://em.21dtv.com/songs/60043057.mkv +贝若德华-我辛苦你幸福,http://em.21dtv.com/songs/60085932.mkv +金宝京-我想结束孤独,http://em.21dtv.com/songs/60078361.mkv +孙悦-我喜欢这夜晚,http://em.21dtv.com/songs/60046357.mkv +萧亚轩-我喜欢你快乐,http://em.21dtv.com/songs/60046354.mkv +满江-我喜欢你的笑,http://em.21dtv.com/songs/60091649.mkv +张宁益-我想飞得更远,http://em.21dtv.com/songs/60046381.mkv +王心凌-往幸福出发吧,http://em.21dtv.com/songs/60043469.mkv +音萌萌-我想的人是你,http://em.21dtv.com/songs/60133092.mkv +黄思婷-无心的风筝线,http://em.21dtv.com/songs/60047487.mkv +A Lin-我笑到都哭了,http://em.21dtv.com/songs/60107387.mkv +王祖蓝-我,http://em.21dtv.com/songs/60125937.mkv +陈松伶-温馨不再sans amour,http://em.21dtv.com/songs/60044382.mkv +朱桦-我想不起来啦,http://em.21dtv.com/songs/60046377.mkv +白玛央宗-我心爱的哈达,http://em.21dtv.com/songs/60118813.mkv +索南扎西-我心爱的姑娘,http://em.21dtv.com/songs/60061707.mkv +佚名-我无醉是你茫,http://em.21dtv.com/songs/60046342.mkv +魏晨-我为自己代言,http://em.21dtv.com/songs/60082012.mkv +佚名-我为祖国站岗,http://em.21dtv.com/songs/60046323.mkv +BEYOND-文武英杰宣言,http://em.21dtv.com/songs/60072508.mkv +佚名-we wish you a merry christmas,http://em.21dtv.com/songs/60006153.mkv +张可儿-我无心伤害谁,http://em.21dtv.com/songs/60105023.mkv +糖糖乐团-我微笑可以吗,http://em.21dtv.com/songs/60046298.mkv +王绎龙-我我我他他他,http://em.21dtv.com/songs/60078357.mkv +佚名-when we were the new boys,http://em.21dtv.com/songs/60006256.mkv +晨熙-我问天我问地,http://em.21dtv.com/songs/60072561.mkv +BON JOVI-we werent born to follow,http://em.21dtv.com/songs/60074104.mkv +许志安-完完全全为你,http://em.21dtv.com/songs/60043152.mkv +许志安-完完全全为你(演唱会),http://em.21dtv.com/songs/60043151.mkv +卢冠廷-我未能忘掉你,http://em.21dtv.com/songs/60046327.mkv +李姝漫-我为你唱情歌,http://em.21dtv.com/songs/60107784.mkv +陈小春-万万没有想到,http://em.21dtv.com/songs/60089518.mkv +焰烽-我为梦想代言,http://em.21dtv.com/songs/60078355.mkv +司林琼-我忘了我是谁,http://em.21dtv.com/songs/60099857.mkv +THE THREE DEGREES-when will i see you again,http://em.21dtv.com/songs/60006259.mkv +卫兰+黎明-我为何让你走,http://em.21dtv.com/songs/60092391.mkv +伦永亮-我为何让你走,http://em.21dtv.com/songs/60092250.mkv +孙富锦-我为何让你走,http://em.21dtv.com/songs/60046301.mkv +郭富城-我为何让你走(演唱会),http://em.21dtv.com/songs/60046300.mkv +萨顶顶+常石磊-万物HIGH,http://em.21dtv.com/songs/60098739.mkv +谢安源-我为桂林写歌,http://em.21dtv.com/songs/60067588.mkv +李冬风-我无法忘记你,http://em.21dtv.com/songs/60107781.mkv +许文科-我无法放下你,http://em.21dtv.com/songs/60129608.mkv +MP魔幻力量-我无法不爱你,http://em.21dtv.com/songs/60124955.mkv +苏洲-弯弯的新丰江,http://em.21dtv.com/songs/60100414.mkv +陈晓东-为我多留一夜(演唱会),http://em.21dtv.com/songs/60044122.mkv +兰鸽-为我撑伞的人,http://em.21dtv.com/songs/60062559.mkv +佚名-未完成狂想曲(无原唱),http://em.21dtv.com/songs/60044286.mkv +庄学忠-未完成的恋曲,http://em.21dtv.com/songs/60044284.mkv +蔡秋凤-未完成的恋梦,http://em.21dtv.com/songs/60044283.mkv +光良-未完成的爱情,http://em.21dtv.com/songs/60110855.mkv +吴建豪-我讨厌我自己,http://em.21dtv.com/songs/60046275.mkv +张善为-问天问地问你,http://em.21dtv.com/songs/60044487.mkv +儿歌-问题天天都有,http://em.21dtv.com/songs/60092305.mkv +欧倩怡-问题天天都多,http://em.21dtv.com/songs/60044483.mkv +萧福德-无通伤阮的心(无原唱),http://em.21dtv.com/songs/60080703.mkv +U2-where the streets have no name,http://em.21dtv.com/songs/60074128.mkv +佚名-when the saints go marchinin(无原唱),http://em.21dtv.com/songs/60006255.mkv +小庄-舞台上的女孩,http://em.21dtv.com/songs/60047810.mkv +王思佳-毋通惹我麻烦(HD),http://em.21dtv.com/songs/10012803.mkv +王思佳-毋通惹我麻烦,http://em.21dtv.com/songs/60096403.mkv +高向鹏+林良欢+唐俪-无条件的爱情,http://em.21dtv.com/songs/60084130.mkv +张秀卿+黄西田-无条件的爱情,http://em.21dtv.com/songs/60047459.mkv +杨欣桦-毋通怪我无情,http://em.21dtv.com/songs/60135410.mkv +佚名-我听过你的歌,http://em.21dtv.com/songs/60046282.mkv +王炎+何影-我听过你的歌,http://em.21dtv.com/songs/60046281.mkv +罗时丰-我听过你的歌,http://em.21dtv.com/songs/60046280.mkv +阿南+孙琳-我听过你的歌,http://em.21dtv.com/songs/60046279.mkv +BRUCE SPRINGSTEEN-we take care of our own,http://em.21dtv.com/songs/60074103.mkv +李健-我始终在这里,http://em.21dtv.com/songs/60066421.mkv +罗维帅-我是这样想的,http://em.21dtv.com/songs/60132794.mkv +童唱-我是只小小鸟,http://em.21dtv.com/songs/60046241.mkv +润土-我是重庆崽儿,http://em.21dtv.com/songs/60046247.mkv +金志文-往事只能回味,http://em.21dtv.com/songs/60120041.mkv +讲者+王琪飞-往事只能回味,http://em.21dtv.com/songs/60118033.mkv +宋小宝+岳云鹏-往事只能回味,http://em.21dtv.com/songs/60117673.mkv +好妹妹-往事只能回味,http://em.21dtv.com/songs/60117645.mkv +陈思诚+王宝强-往事只能回味,http://em.21dtv.com/songs/60117339.mkv +好妹妹乐队-往事只能回味,http://em.21dtv.com/songs/60104903.mkv +李丽霞-往事只能回味,http://em.21dtv.com/songs/60092787.mkv +罗桦-往事只能回味(演唱会),http://em.21dtv.com/songs/60078038.mkv +徐靖博-往事只能回味,http://em.21dtv.com/songs/60067511.mkv +卓依婷-往事只能回味,http://em.21dtv.com/songs/60043466.mkv +尤雅-往事只能回味,http://em.21dtv.com/songs/60043465.mkv +姜育恒-往事只能回味,http://em.21dtv.com/songs/60043464.mkv +韩宝仪-往事只能回味,http://em.21dtv.com/songs/60043463.mkv +高胜美-往事只能回味,http://em.21dtv.com/songs/60043462.mkv +邓丽君-往事只能回味,http://em.21dtv.com/songs/60043461.mkv +苍茫-往事只能回味,http://em.21dtv.com/songs/60043460.mkv +甄妮-往事只能回味(演唱会),http://em.21dtv.com/songs/60043459.mkv +张澜澜-往事只能回味(演唱会),http://em.21dtv.com/songs/60043458.mkv +尤雅-往事只能回味(演唱会),http://em.21dtv.com/songs/60043457.mkv +吕珊-往事只能回味(演唱会),http://em.21dtv.com/songs/60043456.mkv +刘家昌-往事只能回味(演唱会),http://em.21dtv.com/songs/60043455.mkv +蔡琴-往事只能回味(HD演唱会),http://em.21dtv.com/songs/60043454.mkv +带泪的鱼-我是真的爱他,http://em.21dtv.com/songs/60080470.mkv +张宇-我是真的爱你(我是歌手第二期),http://em.21dtv.com/songs/60096270.mkv +张宇-我是真的爱你(我是歌手第二期),http://em.21dtv.com/songs/60081983.mkv +中国好声音第二季-我是真的爱你(阚立文+朱克),http://em.21dtv.com/songs/60081479.mkv +罗文裕-我是真的爱你,http://em.21dtv.com/songs/60065103.mkv +袁小迪+陈思安-我是真的爱你,http://em.21dtv.com/songs/60063306.mkv +张信哲-我是真的爱你,http://em.21dtv.com/songs/60046226.mkv +小春-我是真的爱你,http://em.21dtv.com/songs/60046225.mkv +温兆伦-我是真的爱你,http://em.21dtv.com/songs/60046224.mkv +马文吉-我是真的爱你,http://em.21dtv.com/songs/60046223.mkv +李宗盛-我是真的爱你,http://em.21dtv.com/songs/60046222.mkv +胡东-我是真的爱你,http://em.21dtv.com/songs/60046221.mkv +段千寻-我是真的爱你,http://em.21dtv.com/songs/60046220.mkv +梁静茹-我是真的爱你(演唱会),http://em.21dtv.com/songs/60046219.mkv +灯塔-我是真的爱过,http://em.21dtv.com/songs/60078347.mkv +瑶瑶-我是真的爱过,http://em.21dtv.com/songs/60067586.mkv +马克白乐团-我是一只山羊,http://em.21dtv.com/songs/60106457.mkv +胡栓栓-我是一条小河,http://em.21dtv.com/songs/60134142.mkv +郭欢+汤非-我是一条小河,http://em.21dtv.com/songs/60101714.mkv +咏峰-我是一条小河,http://em.21dtv.com/songs/60080337.mkv +陈永锋-我是一条小河,http://em.21dtv.com/songs/60078345.mkv +郭欢-我是一条小河,http://em.21dtv.com/songs/60067584.mkv +男人唐潮-我是一片绿叶,http://em.21dtv.com/songs/60071266.mkv +谢常清-我是一颗种子,http://em.21dtv.com/songs/60068784.mkv +李佳倩-我是一个好人,http://em.21dtv.com/songs/60098456.mkv +王建房-我是一个光棍,http://em.21dtv.com/songs/60078343.mkv +陈瑞-我是一朵梅花,http://em.21dtv.com/songs/60123314.mkv +陈淑萍-无伤心无算爱,http://em.21dtv.com/songs/60066441.mkv +贾富营-我是性情中人,http://em.21dtv.com/songs/60131832.mkv +赵仰瑞-我是乡村歌手,http://em.21dtv.com/songs/60131842.mkv +叶德娴-我所喜爱的歌,http://em.21dtv.com/songs/60092430.mkv +龙千玉-我是无心的人,http://em.21dtv.com/songs/60046183.mkv +何耀珊-我说喂我说嗨,http://em.21dtv.com/songs/60089128.mkv +罗百吉-五十五十的爱,http://em.21dtv.com/songs/60047663.mkv +刘德华-我是我你是你,http://em.21dtv.com/songs/60090695.mkv +齐峰-乌斯太的夜晚(演唱会),http://em.21dtv.com/songs/60047039.mkv +王淑妍-我是谁的女人,http://em.21dtv.com/songs/60105249.mkv +林慧萍-我是如此爱你,http://em.21dtv.com/songs/60046164.mkv +侯湘婷-我是如此爱你,http://em.21dtv.com/songs/60046163.mkv +乔嘉-我是人不是神,http://em.21dtv.com/songs/60101872.mkv +李丽霞-万水千山纵横(演唱会),http://em.21dtv.com/songs/60068720.mkv +罗文-万水千山纵横,http://em.21dtv.com/songs/60043316.mkv +关正杰-万水千山纵横,http://em.21dtv.com/songs/60043315.mkv +叶振棠-万水千山纵横(演唱会),http://em.21dtv.com/songs/60043314.mkv +MELANIE FIONA-wrong side of a love song,http://em.21dtv.com/songs/60074169.mkv +1931-我是那么爱你,http://em.21dtv.com/songs/60109787.mkv +天籁天-我是你的月亮,http://em.21dtv.com/songs/60116682.mkv +古天乐-我是你的天秤,http://em.21dtv.com/songs/60046149.mkv +那英-我是你的情人,http://em.21dtv.com/songs/60046143.mkv +庞龙-我是你的朋友(演唱会),http://em.21dtv.com/songs/60046142.mkv +张彬-我思念的母亲,http://em.21dtv.com/songs/60135199.mkv +张可儿-我是你的玫瑰,http://em.21dtv.com/songs/60111865.mkv +张可儿-我是你的可乐,http://em.21dtv.com/songs/60067582.mkv +艺萱-我是你的孩子,http://em.21dtv.com/songs/60099456.mkv +远景-我是你的乖乖,http://em.21dtv.com/songs/60067581.mkv +叶凡-我是你的读者,http://em.21dtv.com/songs/60061700.mkv +许巍-我思念的城市(演唱会),http://em.21dtv.com/songs/60046259.mkv +李宇春-我死你的叉叉,http://em.21dtv.com/songs/60088008.mkv +胡杰夕-为什么要这样,http://em.21dtv.com/songs/60062471.mkv +庄学忠-为什么要流泪,http://em.21dtv.com/songs/60044103.mkv +卢荣深-为什么要分离,http://em.21dtv.com/songs/60128863.mkv +佚名-为什么想念你,http://em.21dtv.com/songs/60044102.mkv +刘嘉玲+杨辨妮-为什么想念你,http://em.21dtv.com/songs/60044101.mkv +陈玉建-为什么伤害我,http://em.21dtv.com/songs/60044086.mkv +罗百吉-为什么没有爱,http://em.21dtv.com/songs/60044075.mkv +朱星潼-为什么离开我,http://em.21dtv.com/songs/60122825.mkv +佚名-为什么离开我,http://em.21dtv.com/songs/60044074.mkv +刚辉-为什么离开我,http://em.21dtv.com/songs/60044073.mkv +李逸-为什么可烦恼,http://em.21dtv.com/songs/60044071.mkv +佚名-为什么还不来(无原唱),http://em.21dtv.com/songs/60044070.mkv +陈奕迅-我什么都没有,http://em.21dtv.com/songs/60046058.mkv +刘若英-我什么都不要,http://em.21dtv.com/songs/60046057.mkv +谢霆锋-我什么都不是,http://em.21dtv.com/songs/60046056.mkv +慕容晓晓-为什么不早说(HD),http://em.21dtv.com/songs/10012790.mkv +慕容晓晓+陈炳强-为什么不早说,http://em.21dtv.com/songs/60081130.mkv +张帝-为什么不爱我(演唱会),http://em.21dtv.com/songs/60078099.mkv +王菲-为什么爱上他,http://em.21dtv.com/songs/60044062.mkv +许茹芸-雾散了云开了,http://em.21dtv.com/songs/60092085.mkv +洪健华-我失恋你悲伤,http://em.21dtv.com/songs/60046063.mkv +董芳-五十六个祝福,http://em.21dtv.com/songs/60065152.mkv +马睿菈-我是个小女人(演唱会),http://em.21dtv.com/songs/60062747.mkv +于乐-我是个好老婆,http://em.21dtv.com/songs/60046111.mkv +张胜淼-我伤过好几回,http://em.21dtv.com/songs/60046050.mkv +应昌佑-我是否还爱你,http://em.21dtv.com/songs/60046107.mkv +黎明-我是否还爱你(演唱会),http://em.21dtv.com/songs/60046106.mkv +佚名-我是多么想你,http://em.21dtv.com/songs/60046101.mkv +群星-我是多么想你(无原唱),http://em.21dtv.com/songs/60046100.mkv +吴梓涵-微时代的爱情,http://em.21dtv.com/songs/60115051.mkv +格格-我是草原姑娘,http://em.21dtv.com/songs/60133888.mkv +佚名-我是痴情无限,http://em.21dtv.com/songs/60046093.mkv +关菊英-我是痴情无限,http://em.21dtv.com/songs/60046092.mkv +张伟文-我是痴情无限(演唱会),http://em.21dtv.com/songs/60046091.mkv +关菊英-我是痴情无限(演唱会),http://em.21dtv.com/songs/60046090.mkv +邵雨涵-我是超级女声,http://em.21dtv.com/songs/60046089.mkv +林淑蓉-往事不堪回首,http://em.21dtv.com/songs/60043437.mkv +无级生-我是贝克汉姆,http://em.21dtv.com/songs/60046074.mkv +吴蓓雅-我是比较幽默,http://em.21dtv.com/songs/60123749.mkv +洋葱-往事不敢触摸,http://em.21dtv.com/songs/60078036.mkv +洋葱妹妹-往事不敢触摸,http://em.21dtv.com/songs/60069901.mkv +符琼音-五十八度寂寞,http://em.21dtv.com/songs/60047658.mkv +蔡卓妍-往事并不如烟,http://em.21dtv.com/songs/60043436.mkv +JS-我是爱真的你,http://em.21dtv.com/songs/60109826.mkv +阿伊古丽-我是阿伊古丽,http://em.21dtv.com/songs/60134375.mkv +黄格选-我是爱你的人,http://em.21dtv.com/songs/60046073.mkv +詹雅雯-无人知的城市,http://em.21dtv.com/songs/60080131.mkv +樱花姐妹-无人知的城市(无原唱),http://em.21dtv.com/songs/60047402.mkv +王俊杰-温柔乡的吉他,http://em.21dtv.com/songs/60114676.mkv +吴娜-我热恋的中国,http://em.21dtv.com/songs/60078324.mkv +杭天琪-我热恋的故乡,http://em.21dtv.com/songs/60133862.mkv +田震-我热恋的故乡,http://em.21dtv.com/songs/60046040.mkv +腾格尔-我热恋的故乡,http://em.21dtv.com/songs/60046039.mkv +范琳琳-我热恋的故乡,http://em.21dtv.com/songs/60046038.mkv +赵传-温柔的查甫人,http://em.21dtv.com/songs/60044353.mkv +何嘉莉-无情者有情人,http://em.21dtv.com/songs/60047381.mkv +陈浩民-完全自我手册,http://em.21dtv.com/songs/60093484.mkv +林强-温泉乡的枪子,http://em.21dtv.com/songs/60044346.mkv +杨哲-温泉乡的情歌,http://em.21dtv.com/songs/60127084.mkv +洪荣宏-温泉乡的恋歌,http://em.21dtv.com/songs/60100914.mkv +罗时丰-温泉乡的吉他,http://em.21dtv.com/songs/60078120.mkv +郭金发-温泉乡的吉他,http://em.21dtv.com/songs/60044345.mkv +群星-为全世界歌唱,http://em.21dtv.com/songs/60044046.mkv +群星-为全世界唱歌,http://em.21dtv.com/songs/60093036.mkv +施文彬+陈亚兰-无情人有情天,http://em.21dtv.com/songs/60047364.mkv +刘依纯-无情人有情歌,http://em.21dtv.com/songs/60114415.mkv +李明洋+邱芸子-无情人痴情心,http://em.21dtv.com/songs/60047362.mkv +陈茂丰-为情茫为情叹,http://em.21dtv.com/songs/60117350.mkv +伍浩哲-无情风无情雨(无原唱),http://em.21dtv.com/songs/60012359.mkv +蔡小虎-无情风伤心雨,http://em.21dtv.com/songs/60095904.mkv +林俊彦-无情风绝情雨(无原唱),http://em.21dtv.com/songs/60047350.mkv +陈雷-无情的月台票,http://em.21dtv.com/songs/60047344.mkv +王识贤-无情的夜快车,http://em.21dtv.com/songs/60047341.mkv +黄一飞-无情的夜快车,http://em.21dtv.com/songs/60047340.mkv +孙楠-我期待^送别,http://em.21dtv.com/songs/60113404.mkv +马睿菈-无情的坏男人,http://em.21dtv.com/songs/60047324.mkv +罗时丰-无情的电影票,http://em.21dtv.com/songs/60134094.mkv +罗时丰-无情的电影票,http://em.21dtv.com/songs/60047320.mkv +季小璐-我期待的qq号,http://em.21dtv.com/songs/60046017.mkv +蓝萍-无情的电话机,http://em.21dtv.com/songs/60047319.mkv +潘小芬-我亲爱的中国(演唱会),http://em.21dtv.com/songs/60067578.mkv +潘赢-我亲爱的姑娘,http://em.21dtv.com/songs/60111248.mkv +徐鸿武-我亲爱的姑娘,http://em.21dtv.com/songs/60091209.mkv +刘恺名-我亲爱的姑娘,http://em.21dtv.com/songs/60085920.mkv +苏晴-我亲爱的爸爸,http://em.21dtv.com/songs/60078321.mkv +郑智化-我亲爱的宝贝,http://em.21dtv.com/songs/60046029.mkv +郑耿一-我怕我遇不到,http://em.21dtv.com/songs/60061696.mkv +4_IN_LOVE-我怕你再摇晃,http://em.21dtv.com/songs/60089562.mkv +瑞雪-我盼你我等你,http://em.21dtv.com/songs/60129427.mkv +谢容儿-外婆的小蒲扇,http://em.21dtv.com/songs/60103575.mkv +林昕阳-外婆的澎湖湾,http://em.21dtv.com/songs/60124133.mkv +张行-外婆的澎湖弯,http://em.21dtv.com/songs/60091153.mkv +张江-外婆的澎湖湾,http://em.21dtv.com/songs/60091127.mkv +卓依婷-外婆的彭湖湾(儿歌),http://em.21dtv.com/songs/60090760.mkv +群星-外婆的澎湖湾,http://em.21dtv.com/songs/60089442.mkv +卓依婷-外婆的澎湖湾,http://em.21dtv.com/songs/60043080.mkv +佚名-外婆的澎湖湾,http://em.21dtv.com/songs/60043079.mkv +张明敏-外婆的澎湖湾(演唱会),http://em.21dtv.com/songs/60043078.mkv +王洁实+谢莉斯-外婆的澎湖湾(演唱会),http://em.21dtv.com/songs/60043077.mkv +潘安邦-外婆的澎湖湾(演唱会),http://em.21dtv.com/songs/60043076.mkv +赌鬼乐队-Woohah,http://em.21dtv.com/songs/60134252.mkv +Crush-Woo Ah,http://em.21dtv.com/songs/60132063.mkv +梅东生-无您在阮身边,http://em.21dtv.com/songs/60068804.mkv +KONE-为你再活一天,http://em.21dtv.com/songs/60044013.mkv +佚名-舞女中的舞女,http://em.21dtv.com/songs/60047803.mkv +卓依婷-蜗牛与黄鹂鸟,http://em.21dtv.com/songs/60044526.mkv +童唱-蜗牛与黄鹂鸟,http://em.21dtv.com/songs/60044525.mkv +王琼-为你写一首歌,http://em.21dtv.com/songs/60117042.mkv +望海高歌-为你写一首歌,http://em.21dtv.com/songs/60116875.mkv +方瑞娥-为你笑为我哭,http://em.21dtv.com/songs/60043997.mkv +佚名-为你想替你想,http://em.21dtv.com/songs/60043996.mkv +江蕙-为你想替你想,http://em.21dtv.com/songs/60043995.mkv +童杰-为你相思一生,http://em.21dtv.com/songs/60091804.mkv +刘心-为你写的旋律,http://em.21dtv.com/songs/60110882.mkv +张怀斌-为你写的情歌,http://em.21dtv.com/songs/60044001.mkv +李泰-为难,http://em.21dtv.com/songs/60106943.mkv +居山植-我那逝去的爱,http://em.21dtv.com/songs/60046001.mkv +孙楠-我拿什么拯救,http://em.21dtv.com/songs/60090913.mkv +张雷-我拿什么回忆,http://em.21dtv.com/songs/60078316.mkv +齐秦-我拿什么爱你,http://em.21dtv.com/songs/60045996.mkv +正歌-吻你时的心慌,http://em.21dtv.com/songs/60093721.mkv +梁剑东-无奈你早已走,http://em.21dtv.com/songs/60119724.mkv +孙淑媚-为你梦为你等,http://em.21dtv.com/songs/60043986.mkv +梁丰富-为你们来唱歌,http://em.21dtv.com/songs/60128136.mkv +蒙古歌-为内蒙古喝彩,http://em.21dtv.com/songs/60090199.mkv +韩磊+任真+查汗-为内蒙古喝彩,http://em.21dtv.com/songs/60043937.mkv +李龙-我那么的爱你,http://em.21dtv.com/songs/60098500.mkv +于文华-为女民兵题照,http://em.21dtv.com/songs/60044031.mkv +佚名-为女民兵题照,http://em.21dtv.com/songs/60044030.mkv +刚辉-为你流干了泪,http://em.21dtv.com/songs/60043981.mkv +秦影-为你流过的泪,http://em.21dtv.com/songs/60097717.mkv +阿影-为你流过的泪,http://em.21dtv.com/songs/60097716.mkv +舞曲-舞女泪+丰收(快四),http://em.21dtv.com/songs/60090140.mkv +龙千玉-望你回心转意,http://em.21dtv.com/songs/60077999.mkv +动力火车-我能给你什么,http://em.21dtv.com/songs/60090746.mkv +王铮亮-我能给的天亮,http://em.21dtv.com/songs/60078319.mkv +张夕磊-为你付出太多,http://em.21dtv.com/songs/60086908.mkv +龙飘飘-舞女2003,http://em.21dtv.com/songs/60089560.mkv +阿清-为你点一盏灯,http://em.21dtv.com/songs/60066376.mkv +王建杰-为你唱这首歌,http://em.21dtv.com/songs/60114682.mkv +刘克泉-为你唱这首歌,http://em.21dtv.com/songs/60066375.mkv +佚名-为你唱一首歌,http://em.21dtv.com/songs/60043950.mkv +陈宏-为你唱一首歌,http://em.21dtv.com/songs/60043949.mkv +那英-为你朝思暮想,http://em.21dtv.com/songs/60043952.mkv +群星-我们走向世界,http://em.21dtv.com/songs/60097746.mkv +合唱-我们走向世界,http://em.21dtv.com/songs/60086939.mkv +佚名-我没醉是你茫(无原唱),http://em.21dtv.com/songs/60045761.mkv +陈盈洁-我没醉是你茫(无原唱),http://em.21dtv.com/songs/60045760.mkv +范玮琪-我们之间的事,http://em.21dtv.com/songs/60045981.mkv +佚名-我们走过的路,http://em.21dtv.com/songs/60045985.mkv +回音哥-无名指的约定,http://em.21dtv.com/songs/60101306.mkv +辛晓琪-无名指的幸福,http://em.21dtv.com/songs/60047252.mkv +小歆-无名指的等待,http://em.21dtv.com/songs/60067604.mkv +歪歪-无名指的等待,http://em.21dtv.com/songs/60047251.mkv +李飞-我梦中的草原,http://em.21dtv.com/songs/60114613.mkv +群星-我们要秀自己,http://em.21dtv.com/songs/60045953.mkv +齐霖-我们用心守候,http://em.21dtv.com/songs/60113117.mkv +董家辉-我们一起追梦,http://em.21dtv.com/songs/60118880.mkv +许志刚-我们一起走过,http://em.21dtv.com/songs/60130746.mkv +张柏芝-我们一起开始,http://em.21dtv.com/songs/60092634.mkv +中国娃娃-我没有那么笨,http://em.21dtv.com/songs/60045746.mkv +郭文翰-我没有很想你,http://em.21dtv.com/songs/60134326.mkv +郭文翰-我没有很想你,http://em.21dtv.com/songs/60124578.mkv +JPM-我没有很想你,http://em.21dtv.com/songs/60072540.mkv +陈芳-我们要好好过,http://em.21dtv.com/songs/60119027.mkv +张龙珍-我们要好好过,http://em.21dtv.com/songs/60118574.mkv +庄笔锋-我们一定会赢,http://em.21dtv.com/songs/60121638.mkv +群星-我们心在一起,http://em.21dtv.com/songs/60045949.mkv +张赫宣+周知-我们相信爱情,http://em.21dtv.com/songs/60078305.mkv +张艳君-我们万众一心,http://em.21dtv.com/songs/60133688.mkv +GREEN DAY-wake me up when september ends,http://em.21dtv.com/songs/60062037.mkv +尔萨+方雨儿-我们同舟共济,http://em.21dtv.com/songs/60045945.mkv +欧阳大龙-我们是中国人,http://em.21dtv.com/songs/60088166.mkv +肖琬露-我们是幸福的,http://em.21dtv.com/songs/60078302.mkv +五月天-我们时时刻刻,http://em.21dtv.com/songs/60087262.mkv +羽泉-我们手牵着手,http://em.21dtv.com/songs/60088485.mkv +羽飞-我们手牵着手,http://em.21dtv.com/songs/60045943.mkv +林晓勇-我们是亲兄弟,http://em.21dtv.com/songs/60119709.mkv +张华+高向鹏-我们是好兄弟,http://em.21dtv.com/songs/60108489.mkv +蓝漪-我们是好少年,http://em.21dtv.com/songs/60086937.mkv +陈淑桦-我们去追云彩,http://em.21dtv.com/songs/60045918.mkv +新声一班-我们去探险吧,http://em.21dtv.com/songs/60100074.mkv +左成-我没去过大理,http://em.21dtv.com/songs/60130280.mkv +丁当-我没那么爱你,http://em.21dtv.com/songs/60101848.mkv +任洁玲-我们没有爱过,http://em.21dtv.com/songs/60087272.mkv +PAUL CARRACK-when my little girl is smiling,http://em.21dtv.com/songs/60074124.mkv +许慧欣-我美丽的爱情,http://em.21dtv.com/songs/60045763.mkv +金婷婷-我们就是中国(演唱会),http://em.21dtv.com/songs/60099550.mkv +廖昌永-我们就是中国,http://em.21dtv.com/songs/60066416.mkv +于金胜-我们就是世界,http://em.21dtv.com/songs/60132176.mkv +GARETH GATES-what my heart wants to say,http://em.21dtv.com/songs/60006207.mkv +曹箐芳-我们和你同在,http://em.21dtv.com/songs/60065093.mkv +群星-我们欢聚一堂,http://em.21dtv.com/songs/60045899.mkv +周蕙-我们还会相遇,http://em.21dtv.com/songs/60097747.mkv +ALIN-我们会更好的,http://em.21dtv.com/songs/60065096.mkv +欢子-我们回不去了,http://em.21dtv.com/songs/60065095.mkv +唐彩妹-我们共同的家,http://em.21dtv.com/songs/60101303.mkv +黎明-无名份的浪漫(演唱会),http://em.21dtv.com/songs/60047240.mkv +谭咏麟-无名份的结束,http://em.21dtv.com/songs/60047239.mkv +郑秀文-我们的主题曲,http://em.21dtv.com/songs/60045853.mkv +郑秀文-我们的主题曲(演唱会),http://em.21dtv.com/songs/60045852.mkv +雷佳-我们的中国梦,http://em.21dtv.com/songs/60109001.mkv +安心亚-我们都在等待,http://em.21dtv.com/songs/60072545.mkv +许志安-我们都要幸福,http://em.21dtv.com/songs/60045885.mkv +蛋堡+N.CHEN-我们都有问题,http://em.21dtv.com/songs/60101168.mkv +关晓彤-我们的18岁,http://em.21dtv.com/songs/60116564.mkv +李小璐+吕柯景-我们的小幸福,http://em.21dtv.com/songs/60045842.mkv +彭坦+春晓-我们的小世界,http://em.21dtv.com/songs/60045841.mkv +千百惠+祁隆-我们的幸福呢,http://em.21dtv.com/songs/60111731.mkv +千百惠+祁隆-我们的幸福呢,http://em.21dtv.com/songs/60095189.mkv +费翔-我们的幸福呢,http://em.21dtv.com/songs/60045845.mkv +XUN-我们都太倔强,http://em.21dtv.com/songs/60095250.mkv +侯磊-我们都是旅客,http://em.21dtv.com/songs/60122495.mkv +苏慧伦-我们都是好人,http://em.21dtv.com/songs/60045869.mkv +青青凉-我们大声呼喊,http://em.21dtv.com/songs/60045782.mkv +田亚霍-我们的情人节,http://em.21dtv.com/songs/60118801.mkv +李治廷-我们的起跑线,http://em.21dtv.com/songs/60067573.mkv +王中平+苏儿真-我们的那一年,http://em.21dtv.com/songs/60045821.mkv +童唱-我们多么幸福,http://em.21dtv.com/songs/60045893.mkv +刘超-我们的老支书,http://em.21dtv.com/songs/60105647.mkv +操玥-我们的老书记,http://em.21dtv.com/songs/60084064.mkv +蒋荣宗-我们的交响曲,http://em.21dtv.com/songs/60088584.mkv +范玮琪-我们的纪念日,http://em.21dtv.com/songs/60045811.mkv +TWINS-我们的纪念册,http://em.21dtv.com/songs/60045810.mkv +TWINS-我们的纪念册(演唱会),http://em.21dtv.com/songs/60045809.mkv +庄学忠-微妙的含羞草,http://em.21dtv.com/songs/60043766.mkv +2R-我们的合唱歌,http://em.21dtv.com/songs/60045807.mkv +傅又宣-我们的鬼故事,http://em.21dtv.com/songs/60132214.mkv +董冬-我们的大中华,http://em.21dtv.com/songs/60045794.mkv +王蓉+老猫-我们的钓鱼岛,http://em.21dtv.com/songs/60078287.mkv +C ALLSTAR-我们的电车上,http://em.21dtv.com/songs/60066411.mkv +林保怡-无谜底的爱你,http://em.21dtv.com/songs/60047233.mkv +命树-我们都不完美,http://em.21dtv.com/songs/60107608.mkv +谢安琪-我们都被忘了,http://em.21dtv.com/songs/60081718.mkv +曹菲儿-我们的爱爱爱,http://em.21dtv.com/songs/60084062.mkv +曹菲儿+铁热沁夫-我们的爱爱爱,http://em.21dtv.com/songs/60068774.mkv +王俊凯+王源-我们曾在一起,http://em.21dtv.com/songs/60078312.mkv +TF家族-我们曾在一起,http://em.21dtv.com/songs/60069966.mkv +群可-我们曾经的爱,http://em.21dtv.com/songs/60079970.mkv +张思思-我们不是情侣,http://em.21dtv.com/songs/60133655.mkv +方力申-我们不是朋友,http://em.21dtv.com/songs/60045778.mkv +林欣彤-我们不是公主,http://em.21dtv.com/songs/60062656.mkv +六哲-我明白你的爱,http://em.21dtv.com/songs/60115009.mkv +张信哲-我们爱这个错,http://em.21dtv.com/songs/60045775.mkv +薛之谦+黄龄-我们爱过就好,http://em.21dtv.com/songs/60067569.mkv +薛之谦+龙梅子-我们爱过就好,http://em.21dtv.com/songs/60065084.mkv +佚名-五木のふ守呗,http://em.21dtv.com/songs/60047652.mkv +黄鸿升-我来自那颗星,http://em.21dtv.com/songs/60117418.mkv +黄鸿升-忘了怎么快乐,http://em.21dtv.com/songs/60071212.mkv +MP魔幻力量-忘了怎么爱你,http://em.21dtv.com/songs/60072490.mkv +许茹芸-我俩一同飞去,http://em.21dtv.com/songs/60045724.mkv +流氓阿德-无路用的咖小,http://em.21dtv.com/songs/60110343.mkv +黄格选-未来需要等待(演唱会),http://em.21dtv.com/songs/60044261.mkv +王心凌-忘了我也不错,http://em.21dtv.com/songs/60072489.mkv +罗嘉良+张可颐-望两望笑一笑,http://em.21dtv.com/songs/60043682.mkv +任军太-为了我为了你(演唱会),http://em.21dtv.com/songs/60062866.mkv +苏有朋-忘了我忘了你,http://em.21dtv.com/songs/60043620.mkv +TRAIN-50 ways to say goodbye,http://em.21dtv.com/songs/60071565.mkv +林慧萍-忘了我是女人,http://em.21dtv.com/songs/60043613.mkv +GEEKS-无论我去哪里,http://em.21dtv.com/songs/60067603.mkv +罗百吉-五零五零的爱,http://em.21dtv.com/songs/60093032.mkv +千百惠-忘了伤心的人,http://em.21dtv.com/songs/60043598.mkv +陈玉建-忘了伤忘了痛,http://em.21dtv.com/songs/60083959.mkv +古巨基-忘了时间的钟,http://em.21dtv.com/songs/60043599.mkv +蒋志光-未来是否继续,http://em.21dtv.com/songs/60090197.mkv +韩伟-蔚蓝色的晴朗,http://em.21dtv.com/songs/60072507.mkv +布仁巴雅尔-蔚蓝色的杭盖,http://em.21dtv.com/songs/60044322.mkv +郭静-忘了如何遗忘,http://em.21dtv.com/songs/60121017.mkv +波拉-网络情网络缘,http://em.21dtv.com/songs/60043386.mkv +李翊君-忘了你忘了我,http://em.21dtv.com/songs/60099323.mkv +一单上达-忘了你忘了我,http://em.21dtv.com/songs/60099055.mkv +Beyond-为了你为了我,http://em.21dtv.com/songs/60098982.mkv +才让措-忘了你忘了我,http://em.21dtv.com/songs/60097760.mkv +BEYOND-为了您为了我,http://em.21dtv.com/songs/60043918.mkv +蔡兴麟-为了你为了我,http://em.21dtv.com/songs/60043916.mkv +王文清-忘了你忘了我,http://em.21dtv.com/songs/60043596.mkv +王杰-忘了你忘了我,http://em.21dtv.com/songs/60043595.mkv +潘倩倩-忘了你忘了痛,http://em.21dtv.com/songs/60043594.mkv +王杰-忘了你忘了你,http://em.21dtv.com/songs/60089418.mkv +紫龙-忘了你的伤心,http://em.21dtv.com/songs/60043591.mkv +杨枫-忘了你的承诺,http://em.21dtv.com/songs/60102372.mkv +罗嘉良-未来没法计算,http://em.21dtv.com/songs/60044258.mkv +潘子华-我累了我痛了,http://em.21dtv.com/songs/60045713.mkv +杨宗纬-我离开我自己,http://em.21dtv.com/songs/60078279.mkv +杨乃文-我离开我自己,http://em.21dtv.com/songs/60045716.mkv +徐浩峻-忘了记忆的痛,http://em.21dtv.com/songs/60109365.mkv +徐健淇-忘了记忆的痛,http://em.21dtv.com/songs/60086902.mkv +MP魔幻力量+阿信-未来就是现在,http://em.21dtv.com/songs/60115617.mkv +周笔畅-未来就是现在,http://em.21dtv.com/songs/60044257.mkv +齐峰-万莉哈达梅林(演唱会),http://em.21dtv.com/songs/60043281.mkv +李宇春-未来的主人翁(演唱会),http://em.21dtv.com/songs/60044255.mkv +银霞-我来弹你来唱,http://em.21dtv.com/songs/60045700.mkv +陈湘胤-未来的第一站,http://em.21dtv.com/songs/60121087.mkv +林育韦-未来的第一站,http://em.21dtv.com/songs/60044248.mkv +陈思思-武陵茶叶儿香,http://em.21dtv.com/songs/60126384.mkv +高原-乌兰察布兄弟,http://em.21dtv.com/songs/60113095.mkv +孔浩浩-忘了吧忘了她,http://em.21dtv.com/songs/60128957.mkv +莫日根-乌兰巴托之夜,http://em.21dtv.com/songs/60132840.mkv +朱永飞-乌兰巴托之夜,http://em.21dtv.com/songs/60116884.mkv +安来宁-乌兰巴托之夜,http://em.21dtv.com/songs/60116725.mkv +马丹-乌兰巴托之夜,http://em.21dtv.com/songs/60061720.mkv +龙梅子-乌兰巴托之夜,http://em.21dtv.com/songs/60047034.mkv +格格-乌兰巴托之夜,http://em.21dtv.com/songs/60047033.mkv +蒋敦豪-乌兰巴托的夜,http://em.21dtv.com/songs/60126142.mkv +成诚-乌兰巴托的夜,http://em.21dtv.com/songs/60120572.mkv +谭维维-乌兰巴托的夜,http://em.21dtv.com/songs/60109632.mkv +左小祖咒-乌兰巴托的夜,http://em.21dtv.com/songs/60067601.mkv +琪琪格-乌兰巴托的夜(演唱会),http://em.21dtv.com/songs/60061719.mkv +邱永传-忘了吧算了吧,http://em.21dtv.com/songs/60118957.mkv +唯嘉-忘了吧算了吧,http://em.21dtv.com/songs/60082010.mkv +王杰-为了爱梦一生,http://em.21dtv.com/songs/60043905.mkv +罗时丰-为了爱梦一生,http://em.21dtv.com/songs/60043904.mkv +高胜美-为了爱梦一生,http://em.21dtv.com/songs/60043903.mkv +文章-为了爱离开你,http://em.21dtv.com/songs/60065018.mkv +黎明-我可以忘记你,http://em.21dtv.com/songs/60078276.mkv +安心亚-我可以很勇敢,http://em.21dtv.com/songs/60062215.mkv +张惠妹-我可以抱你吗,http://em.21dtv.com/songs/60045688.mkv +迪克牛仔-我可以抱你吗(演唱会),http://em.21dtv.com/songs/60045687.mkv +曾春年-我可以爱你吗,http://em.21dtv.com/songs/60065080.mkv +王宝-我开始摇滚了,http://em.21dtv.com/songs/60085907.mkv +正午阳光-我开始摇滚了,http://em.21dtv.com/songs/60045676.mkv +刘牧-无可救药的爱,http://em.21dtv.com/songs/60070006.mkv +周蕙-我看见的世界,http://em.21dtv.com/songs/60085908.mkv +这位太太-我看到很多人,http://em.21dtv.com/songs/60045678.mkv +刘春梅-我可爱的家乡,http://em.21dtv.com/songs/60089673.mkv +姚绍华-我可爱的孩子,http://em.21dtv.com/songs/60045680.mkv +蔡文晶-我就这样离开,http://em.21dtv.com/songs/60085906.mkv +齐剑-我就在你左右,http://em.21dtv.com/songs/60061687.mkv +许云上-我就在你身旁,http://em.21dtv.com/songs/60122106.mkv +任贤齐-我就在你身边,http://em.21dtv.com/songs/60045669.mkv +金池-我就在你面前,http://em.21dtv.com/songs/60081786.mkv +龚宏琦-我居住的地方,http://em.21dtv.com/songs/60089561.mkv +龙千玉-为君尤为君愁,http://em.21dtv.com/songs/60043898.mkv +陈卫东-我就要把你追,http://em.21dtv.com/songs/60134396.mkv +正歌-忘记天长地久,http://em.21dtv.com/songs/60099358.mkv +王智勇-我就是这个样,http://em.21dtv.com/songs/60130589.mkv +童波-忘记是一种痛,http://em.21dtv.com/songs/60113927.mkv +海阔-忘记是一种痛,http://em.21dtv.com/songs/60110349.mkv +包治繁-我就是要娶她,http://em.21dtv.com/songs/60122538.mkv +易帝米-我就是一粒米,http://em.21dtv.com/songs/60084054.mkv +大嘴巴-我就是喜欢你,http://em.21dtv.com/songs/60045657.mkv +音乐走廊-忘记说我爱你,http://em.21dtv.com/songs/60119049.mkv +李刚-我就是你兄弟,http://em.21dtv.com/songs/60131497.mkv +张泽-我就是酱的了(演唱会),http://em.21dtv.com/songs/60045650.mkv +黄鸿升-玩具枪与玫瑰,http://em.21dtv.com/songs/60089062.mkv +才让措-忘记你忘记我,http://em.21dtv.com/songs/60098397.mkv +屠洪纲-忘记你的眼睛,http://em.21dtv.com/songs/60043544.mkv +继风-握紧你的温柔,http://em.21dtv.com/songs/60117963.mkv +李泽坚-忘记你的伤悲,http://em.21dtv.com/songs/60099310.mkv +庄学忠-忘记你不容易,http://em.21dtv.com/songs/60087753.mkv +龙飘飘-忘记你不容易,http://em.21dtv.com/songs/60043540.mkv +汪峰-无家可归的人,http://em.21dtv.com/songs/60105209.mkv +黄乙玲-望酒解脱一切,http://em.21dtv.com/songs/60043677.mkv +陈妃-无结果的恋情,http://em.21dtv.com/songs/60047155.mkv +曾春年-忘记2011,http://em.21dtv.com/songs/60065005.mkv +韦思琪-忘记2015,http://em.21dtv.com/songs/60114242.mkv +杨清明-忘记2014,http://em.21dtv.com/songs/60109450.mkv +潘美辰-我捡到一颗心,http://em.21dtv.com/songs/60088244.mkv +梦成-我记得我爱过,http://em.21dtv.com/songs/60069958.mkv +何润东-我记得我爱过,http://em.21dtv.com/songs/60045625.mkv +贺敬轩-我决定不爱了,http://em.21dtv.com/songs/60130768.mkv +贺敬轩-我决定不爱了,http://em.21dtv.com/songs/60128417.mkv +山野-忘记把你忘记,http://em.21dtv.com/songs/60103243.mkv +S.H.E-忘记把你忘记,http://em.21dtv.com/songs/60090422.mkv +TRONY+GABRIELLA-what i ve been looking for,http://em.21dtv.com/songs/60006194.mkv +SHARPEY+RYAN-what i ve been looking for,http://em.21dtv.com/songs/60006193.mkv +FUKI-With U,http://em.21dtv.com/songs/60134675.mkv +徐浩-Wish U,http://em.21dtv.com/songs/60125570.mkv +佚名-why i love you so much,http://em.21dtv.com/songs/60006324.mkv +BRITNEY SPEARS-what its like to be me,http://em.21dtv.com/songs/60006202.mkv +杜丽莎-will i have to wait forever,http://em.21dtv.com/songs/60006342.mkv +谢珊-我还在想着他,http://em.21dtv.com/songs/60118051.mkv +马力-我喝醉我心碎,http://em.21dtv.com/songs/60086925.mkv +朱俐静+毕书尽-我会在你身边,http://em.21dtv.com/songs/60078265.mkv +黄韵玲-我怀着你的爱,http://em.21dtv.com/songs/60045594.mkv +郭美美-我会一直想你,http://em.21dtv.com/songs/60133000.mkv +郭美美-我会一直想你,http://em.21dtv.com/songs/60131891.mkv +帅霖-我会一直疼你,http://em.21dtv.com/songs/60105798.mkv +倪微晨-我会永远记得,http://em.21dtv.com/songs/60062781.mkv +杨海彪+贾本蔓-我会永远爱你,http://em.21dtv.com/songs/60045617.mkv +余天-我还要喝咖啡,http://em.21dtv.com/songs/60087329.mkv +宋雪莱-我还要等多久,http://em.21dtv.com/songs/60045490.mkv +刘德华-我狠心伤你吗,http://em.21dtv.com/songs/60045577.mkv +TWINS-我很想爱上他,http://em.21dtv.com/songs/60089577.mkv +赵学而-我恨我是女人,http://em.21dtv.com/songs/60045583.mkv +刘雷-我会为你守侯,http://em.21dtv.com/songs/60097748.mkv +周笔畅-我和未来有约,http://em.21dtv.com/songs/60087597.mkv +林依伦-问花问路问你,http://em.21dtv.com/songs/60089361.mkv +卡拉OK-问花问路问你,http://em.21dtv.com/songs/60089195.mkv +胥拉齐-为何我还不懂,http://em.21dtv.com/songs/60071215.mkv +张金利-我和我的祖国,http://em.21dtv.com/songs/60130339.mkv +张明敏-我和我的祖国,http://em.21dtv.com/songs/60129084.mkv +SNH48-我和我的祖国,http://em.21dtv.com/songs/60128702.mkv +廖昌永-我和我的祖国,http://em.21dtv.com/songs/60102192.mkv +蒙克-我和我的祖国[演],http://em.21dtv.com/songs/60101678.mkv +平安-我和我的祖国,http://em.21dtv.com/songs/60099995.mkv +张靓颖-我和我的祖国,http://em.21dtv.com/songs/60089872.mkv +李潮-我和我的祖国,http://em.21dtv.com/songs/60078251.mkv +王旭-我和我的祖国,http://em.21dtv.com/songs/60061683.mkv +杨紫萍-我和我的祖国,http://em.21dtv.com/songs/60045545.mkv +王霞-我和我的祖国,http://em.21dtv.com/songs/60045544.mkv +孙静-我和我的祖国,http://em.21dtv.com/songs/60045543.mkv +蒙克-我和我的祖国,http://em.21dtv.com/songs/60045542.mkv +麦穗-我和我的祖国,http://em.21dtv.com/songs/60045541.mkv +李谷一-我和我的祖国(演唱会),http://em.21dtv.com/songs/60045540.mkv +吴亚荣-我和我的大海,http://em.21dtv.com/songs/60121488.mkv +陈琳-我还是挑我的,http://em.21dtv.com/songs/60045481.mkv +关悦-我还是属于你,http://em.21dtv.com/songs/60045480.mkv +徐怀钰-我还是那个我,http://em.21dtv.com/songs/60114555.mkv +林正豪-我还是很想她,http://em.21dtv.com/songs/60045478.mkv +戴佩妮-我还是很爱你(演唱会),http://em.21dtv.com/songs/60045477.mkv +Mp魔幻力量-我还是爱着你,http://em.21dtv.com/songs/60103800.mkv +梦成-我害怕失去你,http://em.21dtv.com/songs/60069951.mkv +阚立文+艾菲-我还能做什么,http://em.21dtv.com/songs/60081919.mkv +钟汶-我还能做什么,http://em.21dtv.com/songs/60045472.mkv +谢雨欣-我还能做什么,http://em.21dtv.com/songs/60045471.mkv +小柯+黄琦珊-我还能做什么,http://em.21dtv.com/songs/60045470.mkv +刘继业-我还能去爱谁,http://em.21dtv.com/songs/60071248.mkv +冬冬-我和你分手后,http://em.21dtv.com/songs/60045536.mkv +飞鹰-为何离开我,http://em.21dtv.com/songs/60103710.mkv +刘梦-我火了很彷徨,http://em.21dtv.com/songs/60105639.mkv +樊凡-我怀里的天空,http://em.21dtv.com/songs/60097750.mkv +廖伟雄-我还可以真吗,http://em.21dtv.com/songs/60045466.mkv +佚名-我会继续想你,http://em.21dtv.com/songs/60045609.mkv +李蕙敏-我会继续想你,http://em.21dtv.com/songs/60045608.mkv +广智-为何还在爱你,http://em.21dtv.com/songs/60043866.mkv +木子琪OW6IIN-我还唱那首歌,http://em.21dtv.com/songs/60084050.mkv +CLOWN-我还唱那首歌,http://em.21dtv.com/songs/60061989.mkv +夏冰-我还不能放下,http://em.21dtv.com/songs/60103996.mkv +陈百潭-为何爱着别人,http://em.21dtv.com/songs/60096013.mkv +费玉清-为何爱着别人,http://em.21dtv.com/songs/60095929.mkv +佚名-where have all the flowers gon,http://em.21dtv.com/songs/60006291.mkv +佚名-where have all the cowboys gon,http://em.21dtv.com/songs/60006290.mkv +李乐诗-无悔爱你一生,http://em.21dtv.com/songs/60047136.mkv +何鹏-望海(原版),http://em.21dtv.com/songs/60093615.mkv +郑怡-微光中的歌吟,http://em.21dtv.com/songs/60043762.mkv +IU-我过去的故事,http://em.21dtv.com/songs/60100725.mkv +刘德华-我给你的快乐,http://em.21dtv.com/songs/60045454.mkv +孙家山-我干了你随意,http://em.21dtv.com/songs/60132357.mkv +蒋山-我干了你随意,http://em.21dtv.com/songs/60131783.mkv +巫启贤-我感觉不到你,http://em.21dtv.com/songs/60045447.mkv +聂子轩-五公分的距离,http://em.21dtv.com/songs/60113966.mkv +莫艳琳-顽固独身主义(演唱会),http://em.21dtv.com/songs/60043190.mkv +王不火-我干杯你随意,http://em.21dtv.com/songs/60129378.mkv +陈百潭-我干杯你随意,http://em.21dtv.com/songs/60123316.mkv +许佳慧-吻过爱过的你,http://em.21dtv.com/songs/60097743.mkv +五分之一-五分之一的我,http://em.21dtv.com/songs/60090514.mkv +刘德华-无法一天不想,http://em.21dtv.com/songs/60104818.mkv +佚名-无法一天不想,http://em.21dtv.com/songs/60047110.mkv +符致逸-无非一声掰拜,http://em.21dtv.com/songs/60126012.mkv +符致逸-无非一声掰拜,http://em.21dtv.com/songs/60124331.mkv +梦璟SAYA-问佛,http://em.21dtv.com/songs/60125819.mkv +林玉英-枉费为你牺牲,http://em.21dtv.com/songs/60095693.mkv +王玉英-枉费为你牺牲(无原唱),http://em.21dtv.com/songs/60043402.mkv +西风-无法挽留的爱,http://em.21dtv.com/songs/60118901.mkv +SF9-无法忘记的美,http://em.21dtv.com/songs/60133281.mkv +陆萍-无法停止想你,http://em.21dtv.com/songs/60047106.mkv +德德玛-我富饶的家乡,http://em.21dtv.com/songs/60087893.mkv +江志丰-我放开你的手,http://em.21dtv.com/songs/60108662.mkv +梦彤-晚风吹过哨塔,http://em.21dtv.com/songs/60133898.mkv +王雅洁-晚风吹过哨塔,http://em.21dtv.com/songs/60109546.mkv +雷佳-晚风吹过哨塔(演唱会),http://em.21dtv.com/songs/60078015.mkv +BOY MEETS GIRL-waiting for a star to fall,http://em.21dtv.com/songs/60006082.mkv +FOREIGNER-waiting for a girl like you,http://em.21dtv.com/songs/60006081.mkv +覃桢+李雨奚-520我爱你,http://em.21dtv.com/songs/60112956.mkv +JKAI+VV+KIEN-WeChat,http://em.21dtv.com/songs/60134712.mkv +白智英+2PM-我耳边的糖果,http://em.21dtv.com/songs/60045417.mkv +ONE OK ROCK-We Are,http://em.21dtv.com/songs/60131094.mkv +梁雁翎-我对真心无悔,http://em.21dtv.com/songs/60045408.mkv +小乔-我的掌纹是你,http://em.21dtv.com/songs/60103225.mkv +田馥甄-我等着你回来[演],http://em.21dtv.com/songs/60101143.mkv +村根-我的珠穆朗玛,http://em.21dtv.com/songs/60045355.mkv +孙浩雨-我对着镜子哭,http://em.21dtv.com/songs/60102125.mkv +赵云红-我的中华妈妈,http://em.21dtv.com/songs/60069948.mkv +冯允谦-What Do You Want From Me,http://em.21dtv.com/songs/60080499.mkv +彭羚-我的眼我的泪,http://em.21dtv.com/songs/60045328.mkv +SPICE GIRLS-who do you think you are,http://em.21dtv.com/songs/60006313.mkv +PIXIE LOTT FT+PUSHA T-what do you take me for,http://em.21dtv.com/songs/60074110.mkv +PIXIE LOTT+PUSHA T-what do you take me for,http://em.21dtv.com/songs/60063793.mkv +王宏伟-我的衣食父母,http://em.21dtv.com/songs/60067561.mkv +刘和刚-我的衣食父母,http://em.21dtv.com/songs/60045334.mkv +小5-我的野蛮同学,http://em.21dtv.com/songs/60099965.mkv +[Group] +groupName=十六万歌曲MV等 - 90 +刘德华-我的野蛮男友,http://em.21dtv.com/songs/60090697.mkv +可米小子-我的野蛮女友,http://em.21dtv.com/songs/60045330.mkv +汪明荃+胡杏儿+黄宗泽-我的野蛮奶奶,http://em.21dtv.com/songs/60092955.mkv +胡幸儿+汪明荃-我的野蛮奶奶,http://em.21dtv.com/songs/60091895.mkv +耿为华-我的移民老乡,http://em.21dtv.com/songs/60078233.mkv +欧豪-我的音乐最酷,http://em.21dtv.com/songs/60120682.mkv +艾敬-我的一九九七,http://em.21dtv.com/songs/60045331.mkv +潘美辰-我的心在坠落,http://em.21dtv.com/songs/60088246.mkv +陶晶莹-我的心在发烫,http://em.21dtv.com/songs/60045303.mkv +张瀛仁-我的心已经冷,http://em.21dtv.com/songs/60045300.mkv +于寇华+方文琳-我的心我的情,http://em.21dtv.com/songs/60045298.mkv +龙千玉-我的心我的梦,http://em.21dtv.com/songs/60045297.mkv +龙羽-我的心谁能懂,http://em.21dtv.com/songs/60101587.mkv +童安格-我的心让你牵,http://em.21dtv.com/songs/60045284.mkv +隆隆-我的心没有碎,http://em.21dtv.com/songs/60045279.mkv +阿佳组合-我的喜马拉雅,http://em.21dtv.com/songs/60085892.mkv +车婉婉+梁汉文-我的心里是你,http://em.21dtv.com/songs/60045275.mkv +图桠格-我的心灵牧场,http://em.21dtv.com/songs/60072530.mkv +郁可唯-我的心给了你,http://em.21dtv.com/songs/60088753.mkv +陈永强-我的心肝宝贝,http://em.21dtv.com/songs/60102896.mkv +庞晓宇-我的心肝宝贝,http://em.21dtv.com/songs/60085894.mkv +王子鸣-我的心等着你,http://em.21dtv.com/songs/60089416.mkv +蔡琴-我的兄弟姐妹,http://em.21dtv.com/songs/60045313.mkv +蔡琴-我的兄弟姐妹(演唱会),http://em.21dtv.com/songs/60045312.mkv +刘德华-我的心不流泪,http://em.21dtv.com/songs/60090696.mkv +孔先斌-我的网络朋友,http://em.21dtv.com/songs/60113398.mkv +佚名-where do we go from here,http://em.21dtv.com/songs/60006287.mkv +蔚雨芯-why dont you feel me,http://em.21dtv.com/songs/60071691.mkv +罗美玲-为冬天写的诗,http://em.21dtv.com/songs/60043851.mkv +许志安-我的天我的歌,http://em.21dtv.com/songs/60045236.mkv +张学友-我的天我的歌(演唱会),http://em.21dtv.com/songs/60045235.mkv +许志安-我的天我的歌(演唱会),http://em.21dtv.com/songs/60045234.mkv +许志安+刘浩龙-我的天我的歌(演唱会),http://em.21dtv.com/songs/60045233.mkv +赵晨妍-我的他他的她,http://em.21dtv.com/songs/60085891.mkv +李小璐-我的淘气天使,http://em.21dtv.com/songs/60045228.mkv +郑俊海-我搭台你唱戏,http://em.21dtv.com/songs/60100503.mkv +马云龙-我的痛没人懂,http://em.21dtv.com/songs/60068763.mkv +王妍舒-我的童话成真,http://em.21dtv.com/songs/60125905.mkv +阿权-我的头发白了,http://em.21dtv.com/songs/60129712.mkv +天籁天-我的天长地久,http://em.21dtv.com/songs/60120444.mkv +郑少秋-无敌是最寂寞,http://em.21dtv.com/songs/60047086.mkv +西域胡杨-我的深圳故事,http://em.21dtv.com/songs/60078219.mkv +吴胜根-我的岁数怎样,http://em.21dtv.com/songs/60102040.mkv +刘冲-我的深南大道,http://em.21dtv.com/songs/60045201.mkv +麦浚龙-我的失恋女王(演唱会),http://em.21dtv.com/songs/60045210.mkv +胡诺言-我的世界盛事,http://em.21dtv.com/songs/60045216.mkv +陈奕迅-我的世界末日(演唱会),http://em.21dtv.com/songs/60045215.mkv +满江-屋顶上的秋天(演唱会),http://em.21dtv.com/songs/60047055.mkv +杨千嬅-我的生存之道,http://em.21dtv.com/songs/60045205.mkv +彭丽媛-我的士兵兄弟,http://em.21dtv.com/songs/60045212.mkv +沙莎-我的陕北村庄,http://em.21dtv.com/songs/60100267.mkv +朱海君+李明洋-我的人我的梦,http://em.21dtv.com/songs/60068762.mkv +吴俊宏+吴俪-我的人我的梦,http://em.21dtv.com/songs/60045195.mkv +风语-我的情只为你,http://em.21dtv.com/songs/60112386.mkv +易帆-我的情只为你,http://em.21dtv.com/songs/60111934.mkv +龙飘飘-我多情你薄情,http://em.21dtv.com/songs/60045410.mkv +廖昌永-我的牵挂你懂,http://em.21dtv.com/songs/60078215.mkv +钟舒漫-我的青春幽灵,http://em.21dtv.com/songs/60045183.mkv +小男孩乐团-我的亲爱小孩,http://em.21dtv.com/songs/60113427.mkv +顺子-我的朋友betty su,http://em.21dtv.com/songs/60045177.mkv +刘中省-我等你在雨巷,http://em.21dtv.com/songs/60115716.mkv +孙艺玲-忘掉那张俏脸,http://em.21dtv.com/songs/60100846.mkv +游美灵-我等你在荔波,http://em.21dtv.com/songs/60118752.mkv +汪正正-我的女人最好,http://em.21dtv.com/songs/60045174.mkv +子祺-我的农民兄弟,http://em.21dtv.com/songs/60063494.mkv +陆正信-我等你来宜州,http://em.21dtv.com/songs/60121060.mkv +李碧华-我对你好不好(无原唱),http://em.21dtv.com/songs/60045401.mkv +浦航-忘掉你给的美,http://em.21dtv.com/songs/60131615.mkv +浦航-忘掉你给的美,http://em.21dtv.com/songs/60107872.mkv +林海峰-我得你得唔得(演唱会),http://em.21dtv.com/songs/60044975.mkv +阎维文-我等你到天明,http://em.21dtv.com/songs/60045384.mkv +刘辰希-我对你动了心,http://em.21dtv.com/songs/60094839.mkv +雷光夏-我的80年代,http://em.21dtv.com/songs/60044980.mkv +黄立行-我的梦中情人,http://em.21dtv.com/songs/60045164.mkv +高隆-我的梦中姑娘,http://em.21dtv.com/songs/60045163.mkv +覃艺馨-我的梦中国梦,http://em.21dtv.com/songs/60111394.mkv +江美琪-我多么羡慕你,http://em.21dtv.com/songs/60089398.mkv +江美琪-我多么羡幕你,http://em.21dtv.com/songs/60045409.mkv +秋果-我的美女老婆,http://em.21dtv.com/songs/60068759.mkv +刘超华-我的梦你不懂,http://em.21dtv.com/songs/60045160.mkv +廖子褕-我的秘密花园,http://em.21dtv.com/songs/60045165.mkv +陈小玲-我的美丽乡村,http://em.21dtv.com/songs/60102888.mkv +金志文-我的MIDI,http://em.21dtv.com/songs/60080596.mkv +CELINE DION-where does my heart beat now,http://em.21dtv.com/songs/60006289.mkv +陈宏斌-我的蒙古高原,http://em.21dtv.com/songs/60085887.mkv +格格-我的蒙古高原,http://em.21dtv.com/songs/60078212.mkv +容祖儿-我的麻烦男友(演唱会),http://em.21dtv.com/songs/60045154.mkv +音乐走廊+歌一生-我多么的想你,http://em.21dtv.com/songs/60118184.mkv +潘嘉丽-维多利亚的爱,http://em.21dtv.com/songs/60044195.mkv +刘栋升-我的泪为了谁,http://em.21dtv.com/songs/60087408.mkv +刘冲-我的泪为了谁,http://em.21dtv.com/songs/60045146.mkv +许茹芸-我的蓝色夏天,http://em.21dtv.com/songs/60045140.mkv +娃娃+SAIKON-我的赖皮女友,http://em.21dtv.com/songs/60045138.mkv +老猫+赖伟锋-我的雷帝女孩,http://em.21dtv.com/songs/60045143.mkv +张宇-我的快乐与你,http://em.21dtv.com/songs/60092593.mkv +C ALLSTAR-我的快乐时代(演唱会),http://em.21dtv.com/songs/60078210.mkv +陈奕迅-我的快乐时代,http://em.21dtv.com/songs/60045137.mkv +陈奕迅-我的快乐时代(演唱会),http://em.21dtv.com/songs/60045136.mkv +张宇-我的快乐悲伤,http://em.21dtv.com/songs/60045134.mkv +二龙湖浩哥-我地家在四平,http://em.21dtv.com/songs/60127712.mkv +凤凰传奇-我的家在哪里,http://em.21dtv.com/songs/60078208.mkv +李冬风-我的家在陇南,http://em.21dtv.com/songs/60117808.mkv +拉毛王旭-我的家在橄榄坝,http://em.21dtv.com/songs/60069941.mkv +宇海文+娜日-我的家在草原,http://em.21dtv.com/songs/60069940.mkv +刘姝麟-我的锦绣中华,http://em.21dtv.com/songs/60080227.mkv +海生-我的家乡盐城,http://em.21dtv.com/songs/60078207.mkv +陈雨琪-我的家我的国,http://em.21dtv.com/songs/60084023.mkv +周敬-我的今生最爱,http://em.21dtv.com/songs/60078209.mkv +冯允谦-我的九十年代,http://em.21dtv.com/songs/60071240.mkv +顾峰-我的就是你的,http://em.21dtv.com/songs/60045128.mkv +交警宝贝组合-我的交警妈妈,http://em.21dtv.com/songs/60127724.mkv +佚名-袜冻结局的爱,http://em.21dtv.com/songs/60043062.mkv +紫海-我的减肥女友,http://em.21dtv.com/songs/60102608.mkv +葛笑+琴琴-我的红颜知己,http://em.21dtv.com/songs/60122077.mkv +葛笑+笑青-我的红颜知己,http://em.21dtv.com/songs/60117182.mkv +葛笑+徐宏-我的红颜知己,http://em.21dtv.com/songs/60103550.mkv +葛笑+张灵敏-我的红颜知己,http://em.21dtv.com/songs/60099470.mkv +吉香-我的红原草地,http://em.21dtv.com/songs/60045096.mkv +张天龙+门丽-我的好媳妇儿,http://em.21dtv.com/songs/60133651.mkv +白举纲-我都还没长大,http://em.21dtv.com/songs/60112130.mkv +张郎-我的高中女生,http://em.21dtv.com/songs/60086915.mkv +德德玛-我的根在草原,http://em.21dtv.com/songs/60045076.mkv +齐峰-我的根在草原(演唱会),http://em.21dtv.com/songs/60045075.mkv +于洋-我的故乡五华,http://em.21dtv.com/songs/60122472.mkv +张映龙-我的个乡亲们,http://em.21dtv.com/songs/60084333.mkv +龙千玉-我的歌为你唱,http://em.21dtv.com/songs/60136049.mkv +白致瑶-我的父亲母亲,http://em.21dtv.com/songs/60117079.mkv +刘瑞琦-我的烦恼是你,http://em.21dtv.com/songs/60127778.mkv +徐若瑄-我的烦恼是你,http://em.21dtv.com/songs/60045061.mkv +王朝国-我的父母双亲,http://em.21dtv.com/songs/60117919.mkv +黄耀明-我的二十世纪,http://em.21dtv.com/songs/60089056.mkv +葛小虎-我的鄂尔多斯,http://em.21dtv.com/songs/60119936.mkv +大大朋-我到底怎么了,http://em.21dtv.com/songs/60044971.mkv +潘晓峰-我到底算什么,http://em.21dtv.com/songs/60044970.mkv +张振宇-我到底输给谁,http://em.21dtv.com/songs/60044969.mkv +洪卓立-我的独立时代,http://em.21dtv.com/songs/60045058.mkv +张艳奕-我的多啦a梦,http://em.21dtv.com/songs/60045059.mkv +大来-我的大宝贝儿,http://em.21dtv.com/songs/60119386.mkv +马雨梵-我的草原天堂,http://em.21dtv.com/songs/60124719.mkv +高朋-我的草原姑娘,http://em.21dtv.com/songs/60078196.mkv +流苏-忘掉从前的你,http://em.21dtv.com/songs/60102484.mkv +任洁玲-我的痴你的狂,http://em.21dtv.com/songs/60045047.mkv +罗钎予-我的长江黄河,http://em.21dtv.com/songs/60065055.mkv +雷光夏-我的八十年代,http://em.21dtv.com/songs/60045033.mkv +湘齐萌-我的布达拉宫,http://em.21dtv.com/songs/60104290.mkv +TWINS-我的爸爸妈妈(演唱会),http://em.21dtv.com/songs/60045037.mkv +GILLIAN-我的爸爸妈妈(演唱会),http://em.21dtv.com/songs/60045036.mkv +白龙-我的爱只为你,http://em.21dtv.com/songs/60045031.mkv +天籁天-我的爱在哪里,http://em.21dtv.com/songs/60084018.mkv +孙维良-我的爱在海上(演唱会),http://em.21dtv.com/songs/60067553.mkv +一只舟-我的爱在何方,http://em.21dtv.com/songs/60093944.mkv +孙江枫-我的爱像大海,http://em.21dtv.com/songs/60045025.mkv +姜鹏-我的爱像大海,http://em.21dtv.com/songs/60045024.mkv +张道儒-我的爱我明了,http://em.21dtv.com/songs/60097751.mkv +王伟-我的爱桃花开,http://em.21dtv.com/songs/60124245.mkv +石头-我的爱受了伤,http://em.21dtv.com/songs/60078194.mkv +张婷-我的爱受了伤,http://em.21dtv.com/songs/60068756.mkv +陈思彤+王柯淇-我的爱伤了风,http://em.21dtv.com/songs/60078193.mkv +修竹-我的爱去哪了,http://em.21dtv.com/songs/60103886.mkv +林蔷-我的爱请别走,http://em.21dtv.com/songs/60045017.mkv +李猛-我的爱你明白,http://em.21dtv.com/songs/60072526.mkv +郭文俊-我的爱你的菜,http://em.21dtv.com/songs/60085878.mkv +张真菲-我的奥林匹克,http://em.21dtv.com/songs/60063434.mkv +郭燕-我的爱回不来,http://em.21dtv.com/songs/60045003.mkv +索丽娜-我的爱好不好,http://em.21dtv.com/songs/60129473.mkv +叶倩文-我的爱对你说,http://em.21dtv.com/songs/60045001.mkv +杨丞琳-我的爱吊点滴,http://em.21dtv.com/songs/60045000.mkv +艾敬-我的1997,http://em.21dtv.com/songs/60044979.mkv +涓子-我曾真心爱过,http://em.21dtv.com/songs/60105220.mkv +任静-我常在你左右,http://em.21dtv.com/songs/60044951.mkv +涓子-我曾最爱的人,http://em.21dtv.com/songs/60105219.mkv +刘德华-无出息的汉子,http://em.21dtv.com/songs/60047072.mkv +李娜-望城市从故乡,http://em.21dtv.com/songs/60043655.mkv +赵鑫-我承认我错了,http://em.21dtv.com/songs/60118942.mkv +李克勤-未成年同盟会,http://em.21dtv.com/songs/60044233.mkv +李克勤-未成年同盟会(演唱会),http://em.21dtv.com/songs/60044232.mkv +小歆-我从梦中哭醒,http://em.21dtv.com/songs/60094071.mkv +高胜美-未曾留下地址,http://em.21dtv.com/songs/60089009.mkv +佚名-未曾留下地址(无原唱),http://em.21dtv.com/songs/60044229.mkv +OWL CITY-when can i see you again,http://em.21dtv.com/songs/60074123.mkv +龙梅子-完成不了的爱,http://em.21dtv.com/songs/60043095.mkv +钟伟-我不知我爱你,http://em.21dtv.com/songs/60044937.mkv +黄小琥-我不知我爱你(演唱会),http://em.21dtv.com/songs/60044936.mkv +冷酷-握不住手中沙,http://em.21dtv.com/songs/60121416.mkv +谢容儿-我不做你娘娘,http://em.21dtv.com/songs/60080784.mkv +刘小慧-握不住你的手,http://em.21dtv.com/songs/60047020.mkv +六折真人-我把自己灌醉,http://em.21dtv.com/songs/60106616.mkv +邓小龙-我不值得你爱,http://em.21dtv.com/songs/60124542.mkv +肖兵-我不再爱的人,http://em.21dtv.com/songs/60127290.mkv +刘明湘-我不要再比了,http://em.21dtv.com/songs/60127773.mkv +杨千嬅-我不要你爱我,http://em.21dtv.com/songs/60044905.mkv +晖倪-我不要很浪漫,http://em.21dtv.com/songs/60100093.mkv +思小妞-我不要爱情了,http://em.21dtv.com/songs/60094121.mkv +曹磊-我不想再爱你,http://em.21dtv.com/songs/60044891.mkv +杨海彪-我不想再爱了(演唱会),http://em.21dtv.com/songs/60044890.mkv +徐怀钰-我不想一个人,http://em.21dtv.com/songs/60044889.mkv +刘德华-我不相信眼泪,http://em.21dtv.com/songs/60044873.mkv +郭静-我不想忘记你,http://em.21dtv.com/songs/60044887.mkv +CLAIRE-我不想忘记你,http://em.21dtv.com/songs/60044886.mkv +牛奶咖啡-我不想说再见,http://em.21dtv.com/songs/60114672.mkv +含烟-我不想说再见,http://em.21dtv.com/songs/60105692.mkv +佚名-我不想说再见,http://em.21dtv.com/songs/60044884.mkv +白雪-我不想说再见,http://em.21dtv.com/songs/60044883.mkv +易帆-我不想说分手,http://em.21dtv.com/songs/60044881.mkv +唐以菲-我不想离开你,http://em.21dtv.com/songs/60044877.mkv +黄耀明-舞吧舞吧舞吧(演唱会),http://em.21dtv.com/songs/60047764.mkv +裘海正-我不是真的醉,http://em.21dtv.com/songs/60044864.mkv +赵本水-我不是赵本山,http://em.21dtv.com/songs/60065046.mkv +肖剑-我不是燕小六,http://em.21dtv.com/songs/60044857.mkv +陈楚生-我不是我自己,http://em.21dtv.com/songs/60088894.mkv +庞锟-我不是土豪哥,http://em.21dtv.com/songs/60094888.mkv +BUDDY-我不是宋承宪,http://em.21dtv.com/songs/60044850.mkv +大鹏+徐熙娣-我不是潘金莲,http://em.21dtv.com/songs/60128943.mkv +詹雅雯-我不是你的人(无原唱),http://em.21dtv.com/songs/60044839.mkv +回音哥-我不是你的狗,http://em.21dtv.com/songs/60103992.mkv +李美妙-我不上你的当,http://em.21dtv.com/songs/60119668.mkv +小斯韵-我不上你的当,http://em.21dtv.com/songs/60044811.mkv +沈芯羽-我不上你的当,http://em.21dtv.com/songs/60044810.mkv +肖军-我不是刘德华,http://em.21dtv.com/songs/60044837.mkv +陈雷-我不是开玩笑(无原唱),http://em.21dtv.com/songs/60044836.mkv +妞妞-我不是江南style,http://em.21dtv.com/songs/60078173.mkv +丢丢+FEATURING+潘艺-我不是坏小孩,http://em.21dtv.com/songs/60044831.mkv +廖鸿飞-我不是好男人,http://em.21dtv.com/songs/60115143.mkv +李泽坚-我不是坏男人,http://em.21dtv.com/songs/60102347.mkv +廖鸿飞-我不是好男人,http://em.21dtv.com/songs/60097744.mkv +谢子锋-我不是坏男人,http://em.21dtv.com/songs/60044828.mkv +高以爱-我不是坏女孩,http://em.21dtv.com/songs/60044830.mkv +芭比-我不是坏女孩,http://em.21dtv.com/songs/60044829.mkv +高安+曹磊-我不是高富帅,http://em.21dtv.com/songs/60085873.mkv +高山林-我不是高富帅,http://em.21dtv.com/songs/60068753.mkv +王盛楠-我不是范冰冰,http://em.21dtv.com/songs/60085872.mkv +黄品冠-我比谁都清楚,http://em.21dtv.com/songs/60044731.mkv +陈晓东-我比谁都清楚,http://em.21dtv.com/songs/60044730.mkv +童唱-我不是歹囝仔,http://em.21dtv.com/songs/60044818.mkv +佚名-我比谁都爱你,http://em.21dtv.com/songs/60044729.mkv +老猫-我不是陈冠希,http://em.21dtv.com/songs/60044817.mkv +孔朝-我不是不温柔,http://em.21dtv.com/songs/60114477.mkv +郭思源-我不是不爱你,http://em.21dtv.com/songs/60117286.mkv +郑源+郑东-我不是不爱你,http://em.21dtv.com/songs/60096511.mkv +姜育恒-我不是不爱你,http://em.21dtv.com/songs/60044816.mkv +吴雨霏-我本人(演唱会),http://em.21dtv.com/songs/60078163.mkv +姚亦晴(Shiny)-我不认识的我,http://em.21dtv.com/songs/60133541.mkv +姚亦晴-我不认识的我,http://em.21dtv.com/songs/60132344.mkv +佚名-what becomes of the broken hea,http://em.21dtv.com/songs/60006187.mkv +林忆莲-我不能忘记你,http://em.21dtv.com/songs/60135424.mkv +佚名-五百年前的爱,http://em.21dtv.com/songs/60047627.mkv +高晓通+桃子-我不能没有你,http://em.21dtv.com/songs/60114905.mkv +于昌兴-我不能没有你,http://em.21dtv.com/songs/60097745.mkv +胡量-我不能没有你,http://em.21dtv.com/songs/60071231.mkv +佚名-我不能没信心,http://em.21dtv.com/songs/60044798.mkv +佚名-我不能没信心(无原唱),http://em.21dtv.com/songs/60044797.mkv +李虎-我把你弄丢了,http://em.21dtv.com/songs/60108586.mkv +胡力-我被你宠坏了,http://em.21dtv.com/songs/60044721.mkv +王檀-我不能不爱你,http://em.21dtv.com/songs/60115300.mkv +言承旭-我不能不爱你,http://em.21dtv.com/songs/60044795.mkv +佚名-我不能不爱你(慢四),http://em.21dtv.com/songs/60044794.mkv +郑玉华-忘不了遇上你,http://em.21dtv.com/songs/60134309.mkv +杨宗纬-我变了我没变,http://em.21dtv.com/songs/60112016.mkv +杨宗纬-我变了我没变,http://em.21dtv.com/songs/60111185.mkv +六哲-忘不了你的好,http://em.21dtv.com/songs/60061648.mkv +陈建-忘不了放不下,http://em.21dtv.com/songs/60083957.mkv +安东阳-忘不了的温柔,http://em.21dtv.com/songs/60086900.mkv +王艺-忘不了的无奈,http://em.21dtv.com/songs/60043501.mkv +杨皓天-忘不了的是你,http://em.21dtv.com/songs/60106011.mkv +杨皓天-忘不了的是你,http://em.21dtv.com/songs/60085824.mkv +王易俊-微博里的情缘,http://em.21dtv.com/songs/60085829.mkv +张德豪-忘不了爱不起,http://em.21dtv.com/songs/60043490.mkv +哈小哲-我爸就是你爸,http://em.21dtv.com/songs/60115065.mkv +张三李四-我爸就是你爸,http://em.21dtv.com/songs/60114521.mkv +李玟-我被回忆牵绊,http://em.21dtv.com/songs/60091338.mkv +王铮亮+刘涛-我不会一个人,http://em.21dtv.com/songs/60101456.mkv +SHANIA TWAIN-whose bed have your boots been,http://em.21dtv.com/songs/60006322.mkv +钟洁-我不会喜欢你,http://em.21dtv.com/songs/60084014.mkv +陈柏霖-我不会喜欢你,http://em.21dtv.com/songs/60065042.mkv +林昕阳-我不很爱你了,http://em.21dtv.com/songs/60044767.mkv +培圣-我不懂这爱情,http://em.21dtv.com/songs/60044750.mkv +刘小慧-握不到你的手,http://em.21dtv.com/songs/60047017.mkv +张艺婷-忘不掉你的美,http://em.21dtv.com/songs/60132467.mkv +吴灿涛-我比从前寂寞,http://em.21dtv.com/songs/60106682.mkv +常君-五百次的回眸,http://em.21dtv.com/songs/60059623.mkv +许志安-我不爱我自己,http://em.21dtv.com/songs/60044740.mkv +甜美真+汕汕-我把爱告诉海,http://em.21dtv.com/songs/60065039.mkv +陈慧琳-我不爱高帕飞,http://em.21dtv.com/songs/60093460.mkv +陈瑞-为爱一生守候,http://em.21dtv.com/songs/60105497.mkv +江美琪-Way Oh,http://em.21dtv.com/songs/60107015.mkv +许冠英-我阿英个老婆(演唱会),http://em.21dtv.com/songs/60044534.mkv +陈明真-为爱笑着流泪,http://em.21dtv.com/songs/60043844.mkv +于海霞-我爱我的祖国,http://em.21dtv.com/songs/60108280.mkv +戴玉强-我爱我的祖国,http://em.21dtv.com/songs/60044684.mkv +常思思-我爱我的祖国,http://em.21dtv.com/songs/60044683.mkv +张志林-我爱我的老婆,http://em.21dtv.com/songs/60044682.mkv +陈盈洁-我爱我的歌迷,http://em.21dtv.com/songs/60044681.mkv +陈一郎-望啊望等啊等(无原唱),http://em.21dtv.com/songs/60095967.mkv +Tiesto+Matthew Koma-Wasted,http://em.21dtv.com/songs/60125024.mkv +陈松伶-我爱上了英雄,http://em.21dtv.com/songs/60044673.mkv +波拉-我爱上了寂寞,http://em.21dtv.com/songs/60085866.mkv +袁攀-惟爱你在昨天,http://em.21dtv.com/songs/60068740.mkv +林隆璇-我爱你这样深,http://em.21dtv.com/songs/60044652.mkv +高胜美-我爱你这样深,http://em.21dtv.com/songs/60044651.mkv +光良-我爱你在哪里,http://em.21dtv.com/songs/60090653.mkv +阿四龙组合-我爱你知道吗,http://em.21dtv.com/songs/60108959.mkv +望海高歌-我爱你我等你,http://em.21dtv.com/songs/60115980.mkv +罗宾-我爱你我爱你,http://em.21dtv.com/songs/60102624.mkv +林良欢-我爱你千万年,http://em.21dtv.com/songs/60122909.mkv +常健鸿-我爱你请别走,http://em.21dtv.com/songs/60061671.mkv +刘尊-我爱你那么深,http://em.21dtv.com/songs/60044636.mkv +萧亚轩-我爱你那么多,http://em.21dtv.com/songs/60044635.mkv +萧亚轩-我爱你那么多(演唱会),http://em.21dtv.com/songs/60044634.mkv +林葳+陈冠霖-我爱你你爱我,http://em.21dtv.com/songs/60117851.mkv +李爱-我爱你就够了,http://em.21dtv.com/songs/60078151.mkv +麦霸阿杜-我爱你犯了罪,http://em.21dtv.com/songs/60062753.mkv +陈德容-我爱你爱好多,http://em.21dtv.com/songs/60044627.mkv +中国好声音第二季-when a man loves a woman(金润吉),http://em.21dtv.com/songs/60081460.mkv +林子祥-when a man loves a woman,http://em.21dtv.com/songs/60006233.mkv +MICHAEL BOLTON-when a man loves a woman,http://em.21dtv.com/songs/60006232.mkv +夏韶声+杜丽莎-when a man loves a woman(演唱会),http://em.21dtv.com/songs/60006231.mkv +宁菲儿-为爱流泪的人,http://em.21dtv.com/songs/60128980.mkv +尔萨-为爱放弃自由,http://em.21dtv.com/songs/60043810.mkv +高斌-为爱抚平伤痕,http://em.21dtv.com/songs/60062363.mkv +吴欣亚-我爱的就是你,http://em.21dtv.com/songs/60116640.mkv +陈飞彤+长春虫子-我爱的就是你,http://em.21dtv.com/songs/60084003.mkv +郭欢+周鹏-我爱唱蒙古歌,http://em.21dtv.com/songs/60103629.mkv +Fresh极客少年团-UP 4 U,http://em.21dtv.com/songs/60109092.mkv +Dears-U N Me,http://em.21dtv.com/songs/60103762.mkv +Kat Tun-UNLOCK,http://em.21dtv.com/songs/60134721.mkv +守夜人 Night Keepers-Undo拆掉,http://em.21dtv.com/songs/60131346.mkv +NATASHA ST. PIER-un ange frappe a ma porte,http://em.21dtv.com/songs/60074084.mkv +蔡献华-贴在一起跳舞(舞曲版),http://em.21dtv.com/songs/60083917.mkv +卓依婷-踏着夕阳归去,http://em.21dtv.com/songs/60041212.mkv +甲子蕙-停住相聚时间,http://em.21dtv.com/songs/60042637.mkv +葛镇狄-台州幸福台州,http://em.21dtv.com/songs/60135688.mkv +李蕙敏-他在屋顶唱歌,http://em.21dtv.com/songs/60041128.mkv +任韵淇+柯以敏-她在睡前哭泣,http://em.21dtv.com/songs/60118328.mkv +马达+林惠敏-她在睡前哭泣,http://em.21dtv.com/songs/60095164.mkv +李玟+柯以敏-她在睡前哭泣,http://em.21dtv.com/songs/60041175.mkv +柯以敏+李玟-他在睡前哭泣,http://em.21dtv.com/songs/60041127.mkv +许飞-他在那里站岗,http://em.21dtv.com/songs/60041126.mkv +陈绮贞-躺在你的衣柜,http://em.21dtv.com/songs/60041518.mkv +陈绮贞-躺在你的衣柜(演唱会),http://em.21dtv.com/songs/60041517.mkv +张伯宏-同志们走起来,http://em.21dtv.com/songs/60089265.mkv +陈升-汀州路的春天,http://em.21dtv.com/songs/60042503.mkv +韩磊-天姿呼和浩特,http://em.21dtv.com/songs/60102932.mkv +王中平-天知道我爱你,http://em.21dtv.com/songs/60042332.mkv +王建杰+鱼仔-透早的飞行机,http://em.21dtv.com/songs/60042920.mkv +陈奕迅-太阳照常升起,http://em.21dtv.com/songs/60093397.mkv +陈慧琳-糖衣与巧克力,http://em.21dtv.com/songs/60041512.mkv +阎维文-太阳月亮星星,http://em.21dtv.com/songs/60041398.mkv +胡月亮-太阳月亮相思,http://em.21dtv.com/songs/60085762.mkv +林文隆-太阳已经出来,http://em.21dtv.com/songs/60095668.mkv +褚乔-太阳为你升起,http://em.21dtv.com/songs/60086865.mkv +陈红-天有情天亦老,http://em.21dtv.com/songs/60042283.mkv +李珊-听一曲蝶恋花,http://em.21dtv.com/songs/60085802.mkv +毛宁-天也蓝梦也蓝,http://em.21dtv.com/songs/60091546.mkv +高林生-天也兰梦也兰,http://em.21dtv.com/songs/60089003.mkv +大家唱合唱团-田野里静悄悄,http://em.21dtv.com/songs/60042339.mkv +许茹芸-天涯海角珍重,http://em.21dtv.com/songs/60042257.mkv +李心洁-同一个星空下,http://em.21dtv.com/songs/60042703.mkv +TWINS-同样的两个梦,http://em.21dtv.com/songs/60042698.mkv +阿杜-他一定很爱你,http://em.21dtv.com/songs/60128507.mkv +金志文+汪正正+千斤组合-他一定很爱你,http://em.21dtv.com/songs/60135846.mkv +陈慧琳-她一定很爱你,http://em.21dtv.com/songs/60041171.mkv +2个女生-她一定很爱你,http://em.21dtv.com/songs/60041170.mkv +江美琪-他一定很爱你,http://em.21dtv.com/songs/60041121.mkv +动力火车-他一定很爱你,http://em.21dtv.com/songs/60041120.mkv +陈慧琳-他一定很爱你,http://em.21dtv.com/songs/60041119.mkv +阿杜-他一定很爱你,http://em.21dtv.com/songs/60041118.mkv +5566-偷心yes i love you,http://em.21dtv.com/songs/60042862.mkv +关淑怡-提醒我的伤心,http://em.21dtv.com/songs/60041689.mkv +赵鑫-听信你的谎言,http://em.21dtv.com/songs/60124531.mkv +赵鑫-听信你的谎言,http://em.21dtv.com/songs/60123207.mkv +梁咏琪-他喜欢的是你,http://em.21dtv.com/songs/60041109.mkv +庄立帆-天下第一媒婆(无原唱),http://em.21dtv.com/songs/60042187.mkv +傲艺-天下第一美版,http://em.21dtv.com/songs/60106611.mkv +何炅+王嘉尔-透鲜滴星期天,http://em.21dtv.com/songs/60121366.mkv +罗文聪-他乡的明信片,http://em.21dtv.com/songs/60041112.mkv +莫文蔚-the way you make me feel,http://em.21dtv.com/songs/60005723.mkv +RONAN-the way you make me feel,http://em.21dtv.com/songs/60005722.mkv +MICHAEL JACKSON-the way you make me feel,http://em.21dtv.com/songs/60005721.mkv +BOYZONE-the way you make me feel,http://em.21dtv.com/songs/60005720.mkv +AFROJACK+DIMITRI VEGAS+LIKE MI-the way we see the world,http://em.21dtv.com/songs/60074032.mkv +沈伟杰-通往温柔的路,http://em.21dtv.com/songs/60090042.mkv +江珊+黄格选-通往温柔的路,http://em.21dtv.com/songs/60042646.mkv +郑东-听我说亲爱的,http://em.21dtv.com/songs/60064979.mkv +夏婉安+孙紫涵-天未亮心微凉,http://em.21dtv.com/songs/60121532.mkv +MICHAEL BOLTON-thats what love is all about,http://em.21dtv.com/songs/60005535.mkv +佚名-天无绝人之路,http://em.21dtv.com/songs/60042176.mkv +N SYNC-thats when ill stop loving y,http://em.21dtv.com/songs/60005539.mkv +林忆莲-the way he makes me feel(演唱会),http://em.21dtv.com/songs/60005709.mkv +蔡依林-台湾的心跳声,http://em.21dtv.com/songs/60041268.mkv +赵咏华-听我唱这首歌,http://em.21dtv.com/songs/60042597.mkv +鸡蛋蒸肉饼-逃亡吧少年呀,http://em.21dtv.com/songs/60134487.mkv +余天-天无边海无底,http://em.21dtv.com/songs/60042175.mkv +林乐伟-TUXEDO,http://em.21dtv.com/songs/60102381.mkv +MADONNA-this used to be my playground,http://em.21dtv.com/songs/60005772.mkv +孔令奇-天天这么快乐,http://em.21dtv.com/songs/60090883.mkv +佚名-偷偷想一个人,http://em.21dtv.com/songs/60042853.mkv +宋雪-铁蹄下的歌女,http://em.21dtv.com/songs/60042495.mkv +么红-铁蹄下的歌女,http://em.21dtv.com/songs/60042494.mkv +降央卓玛-天堂,http://em.21dtv.com/songs/60111504.mkv +BACKSTREET BOYS-thats the way i like it,http://em.21dtv.com/songs/60005528.mkv +王若琳-the things we do for love,http://em.21dtv.com/songs/60074026.mkv +10CC-the things we do for love,http://em.21dtv.com/songs/60005699.mkv +张善为-同天同地同你,http://em.21dtv.com/songs/60089855.mkv +苏慧伦-天台上的月光,http://em.21dtv.com/songs/60093073.mkv +苏慧伦-天台上的星光,http://em.21dtv.com/songs/60042093.mkv +唐古-天堂上的妈妈,http://em.21dtv.com/songs/60099891.mkv +杨千嬅-谈谈情探探听,http://em.21dtv.com/songs/60041451.mkv +李晓东-听听你的声音,http://em.21dtv.com/songs/60042592.mkv +苏隽-天堂里的来信,http://em.21dtv.com/songs/60042111.mkv +沙宝亮-天堂里的风景,http://em.21dtv.com/songs/60091602.mkv +嘉央曲珍-天堂里的阿妈(演唱会),http://em.21dtv.com/songs/60064967.mkv +尧尧-天堂就在这里,http://em.21dtv.com/songs/60042110.mkv +BARRY MANILOW-tryinto get the feeling agai,http://em.21dtv.com/songs/60005952.mkv +陶喆-天天2003,http://em.21dtv.com/songs/60088919.mkv +刘继强-偷偷的喜欢你,http://em.21dtv.com/songs/60071193.mkv +姜育恒+叶欢-天天等天天问,http://em.21dtv.com/songs/60042129.mkv +ELTON JOHN-this train dont stop there an,http://em.21dtv.com/songs/60005771.mkv +陈雷-甜甜的白贼话,http://em.21dtv.com/songs/60042402.mkv +孙辉-偷偷的爱上你,http://em.21dtv.com/songs/60123830.mkv +李翊君-天天爱日日愁,http://em.21dtv.com/songs/60042127.mkv +卓依婷-天使在夜里哭,http://em.21dtv.com/songs/60042078.mkv +周子寒-天使在夜里哭,http://em.21dtv.com/songs/60042077.mkv +曾嵘-天使在夜里哭,http://em.21dtv.com/songs/60042076.mkv +赵静怡-天使暂时离开,http://em.21dtv.com/songs/60042080.mkv +萧亚轩-天使暂时离开,http://em.21dtv.com/songs/60042079.mkv +程科-痛是一种快乐,http://em.21dtv.com/songs/60042814.mkv +郭蘅祈[郭子]-天使也看见了,http://em.21dtv.com/songs/60095109.mkv +郭蘅祈-天使也看见了,http://em.21dtv.com/songs/60093748.mkv +郭蘅祈+郭子-天使也看见了,http://em.21dtv.com/songs/60093747.mkv +小男孩乐团-天使也会受伤,http://em.21dtv.com/songs/60133600.mkv +小男孩乐团-天使也会受伤,http://em.21dtv.com/songs/60130268.mkv +雷乐队-泰山与灰姑娘,http://em.21dtv.com/songs/60041415.mkv +蒋蒋-她是一个女孩,http://em.21dtv.com/songs/60106251.mkv +吉佑社-她是一个女孩,http://em.21dtv.com/songs/60103966.mkv +凌波-天上星七色花,http://em.21dtv.com/songs/60080361.mkv +拒绝燃烧-踏莎行梅花图,http://em.21dtv.com/songs/60133736.mkv +阿尔法-天山下的彩虹,http://em.21dtv.com/songs/60110600.mkv +佚名-他是我的兄弟,http://em.21dtv.com/songs/60041105.mkv +MC阳子-她说她没喝醉,http://em.21dtv.com/songs/60127657.mkv +MC魏小然-她说她没喝醉,http://em.21dtv.com/songs/60128688.mkv +黄韵玲+刘若英-听是谁在唱歌 mpg,http://em.21dtv.com/songs/60089061.mkv +刘若英+黄韵玲-听!是谁在唱歌,http://em.21dtv.com/songs/60087422.mkv +刘若英-听!是谁在唱歌,http://em.21dtv.com/songs/60042504.mkv +剑鸿-唐僧师徒改行,http://em.21dtv.com/songs/60116604.mkv +谢宏-甜死人不偿命,http://em.21dtv.com/songs/60042399.mkv +杨洪基-天山南天山北,http://em.21dtv.com/songs/60091404.mkv +周子寒-听说你离开他,http://em.21dtv.com/songs/60042583.mkv +龙飘飘-听说你就要走(无原唱),http://em.21dtv.com/songs/60042582.mkv +萧磊-他是你的幸福,http://em.21dtv.com/songs/60107163.mkv +泳儿-天使明明在此,http://em.21dtv.com/songs/60042064.mkv +林依晨-天使经过身边,http://em.21dtv.com/songs/60110302.mkv +龚月-天时地利人和,http://em.21dtv.com/songs/60077891.mkv +尊华-天使丢了翅膀,http://em.21dtv.com/songs/60042053.mkv +王珂迩-天上的黄石寨,http://em.21dtv.com/songs/60108710.mkv +高子童-天上的长白山,http://em.21dtv.com/songs/60071185.mkv +彭高平-天上的布达拉(演唱会),http://em.21dtv.com/songs/60071184.mkv +钱蕙丽-听说罢心惆怅,http://em.21dtv.com/songs/60042576.mkv +佚名-天生不是情造,http://em.21dtv.com/songs/60041999.mkv +陈百强-天生不是情人,http://em.21dtv.com/songs/60041998.mkv +陈百强-天生不是情人(演唱会),http://em.21dtv.com/songs/60041997.mkv +王若琳-the revenge of the farm animals,http://em.21dtv.com/songs/60063772.mkv +龙影云-突然那么想你,http://em.21dtv.com/songs/60133152.mkv +瑶瑶-突然那么想你,http://em.21dtv.com/songs/60117938.mkv +贾宗超-突然那么怀念,http://em.21dtv.com/songs/60079934.mkv +宋祖英-同人民在一起,http://em.21dtv.com/songs/60115864.mkv +王菀之-她扔了根火柴(演唱会),http://em.21dtv.com/songs/60083862.mkv +明道-突然好想爱她,http://em.21dtv.com/songs/60086257.mkv +毛阿敏-投入地爱一次,http://em.21dtv.com/songs/60042899.mkv +赤龙-他牵着你的手,http://em.21dtv.com/songs/60120966.mkv +杨千嬅-抬起我的头来,http://em.21dtv.com/songs/60041289.mkv +许志安-抬起我的头来(演唱会),http://em.21dtv.com/songs/60041288.mkv +佚名-天清清地灵灵,http://em.21dtv.com/songs/60041957.mkv +郑秀文-抬起你的头来,http://em.21dtv.com/songs/60093309.mkv +陈玉建-听情歌忘了她,http://em.21dtv.com/songs/60062295.mkv +陈伟-听情歌的男人,http://em.21dtv.com/songs/60117320.mkv +才娜旺姆-听那一首天籁,http://em.21dtv.com/songs/60119586.mkv +日京江羽人-田纳西华尔猪,http://em.21dtv.com/songs/60118621.mkv +许美静-听那星光歌唱,http://em.21dtv.com/songs/60042555.mkv +胡东清-听你说过国语,http://em.21dtv.com/songs/60088492.mkv +维妮亚-他,你好吗?,http://em.21dtv.com/songs/60126021.mkv +BOBBY VEE-the night has a thousand eyes,http://em.21dtv.com/songs/60005649.mkv +R KELLY-the night has a thousand eyes(无原唱),http://em.21dtv.com/songs/60005648.mkv +郭蓉-童年的小摇车,http://em.21dtv.com/songs/60042759.mkv +陈心蕊-童年的弯月亮,http://em.21dtv.com/songs/60128525.mkv +曾以诺-童年的澎湖湾,http://em.21dtv.com/songs/60132507.mkv +洛桑邓珠-童年的黑帐篷,http://em.21dtv.com/songs/60042757.mkv +童可可-听你爱听的歌,http://em.21dtv.com/songs/60120842.mkv +曾恩琦+丞妮+言言-天马座的幻想,http://em.21dtv.com/songs/60106907.mkv +白举纲-to make you feel my love(快乐男声),http://em.21dtv.com/songs/60084769.mkv +佚名-to make you feel my love,http://em.21dtv.com/songs/60005833.mkv +李代沫-他们,http://em.21dtv.com/songs/60107778.mkv +佚名-too much too little too late,http://em.21dtv.com/songs/60005882.mkv +JOHNNY MATHIS+DENIEC-too much too little too late,http://em.21dtv.com/songs/60005881.mkv +常宽-他们说我不好,http://em.21dtv.com/songs/60041098.mkv +黎亚-甜蜜是奢侈的,http://em.21dtv.com/songs/60089066.mkv +REBECCA FERGUSON-teach me how to be loved,http://em.21dtv.com/songs/60073979.mkv +盖鸣晖-唐明皇祭杨妃(演唱会),http://em.21dtv.com/songs/60083871.mkv +于金胜-甜蜜2013,http://em.21dtv.com/songs/60077924.mkv +李宇春-甜蜜的我爱你,http://em.21dtv.com/songs/60088010.mkv +谭咏麟-听了一夜的雨,http://em.21dtv.com/songs/60085799.mkv +邵伟轩-特洛伊的海伦,http://em.21dtv.com/songs/60071174.mkv +周传雄-掏了心伤了心,http://em.21dtv.com/songs/60041532.mkv +陈浩德-天籁星河传说(演唱会),http://em.21dtv.com/songs/60083910.mkv +叶振棠-天籁星河传说,http://em.21dtv.com/songs/60041896.mkv +STEPS-the last thing on my mind,http://em.21dtv.com/songs/60005615.mkv +沈凌云-踏浪,http://em.21dtv.com/songs/60098565.mkv +冯瑞丽-驼铃梦坡恋歌,http://em.21dtv.com/songs/60093986.mkv +吴子安-天蓝蓝海蓝蓝,http://em.21dtv.com/songs/60118444.mkv +韩磊-天蓝蓝海蓝蓝,http://em.21dtv.com/songs/60041902.mkv +陈娟儿-天流泪地伤悲,http://em.21dtv.com/songs/60083892.mkv +柯羽-天灵灵地灵灵,http://em.21dtv.com/songs/60041925.mkv +佩希-他离开我认输,http://em.21dtv.com/songs/60101042.mkv +阎维文-天路将士之歌,http://em.21dtv.com/songs/60077880.mkv +小北-天亮后说晚安,http://em.21dtv.com/songs/60126802.mkv +林忆莲-逃离钢筋森林(演唱会),http://em.21dtv.com/songs/60041549.mkv +王亚平-吐鲁番的歌声,http://em.21dtv.com/songs/60067499.mkv +巴哈尔古丽-吐鲁番的姑娘,http://em.21dtv.com/songs/60042958.mkv +瞿颖-天空下的城市,http://em.21dtv.com/songs/60041887.mkv +阿里西里组合-天空下的草海,http://em.21dtv.com/songs/60133031.mkv +江得胜-掏空天空天空,http://em.21dtv.com/songs/60041531.mkv +杨乃文-推开世界的门,http://em.21dtv.com/songs/60130451.mkv +杨乃文-推开世界的门,http://em.21dtv.com/songs/60129268.mkv +坤达-天空没有下雨,http://em.21dtv.com/songs/60041885.mkv +群星-瞳孔里的太阳,http://em.21dtv.com/songs/60130661.mkv +MP魔幻力量+阿信-天机,http://em.21dtv.com/songs/60111635.mkv +杨洪基-塔尖上的中国,http://em.21dtv.com/songs/60117834.mkv +蔡济文-替旧情人祝福,http://em.21dtv.com/songs/60041712.mkv +谢金燕-听寂寞哭出声,http://em.21dtv.com/songs/60064977.mkv +张明敏-团结就是力量,http://em.21dtv.com/songs/60129083.mkv +广播之友合唱团-团结就是力量,http://em.21dtv.com/songs/60042963.mkv +办桌二人组-提酒矸过日子,http://em.21dtv.com/songs/60095472.mkv +LANA DEL REY-this is what makes us girls,http://em.21dtv.com/songs/60074041.mkv +ARMIN VAN BUUREN TREVOR GUTHRIE-this is what it feels like,http://em.21dtv.com/songs/60082369.mkv +BEE GEES-this is where i came in,http://em.21dtv.com/songs/60005758.mkv +SNOW PATROL-this isnt everything you are,http://em.21dtv.com/songs/60065709.mkv +PITBULL+KE$HA-TIMBER,http://em.21dtv.com/songs/60095183.mkv +PITBULLl+KESHA-Timber,http://em.21dtv.com/songs/60093938.mkv +陈珧-桃花园的思念,http://em.21dtv.com/songs/60061621.mkv +么健-桃花谢了春红,http://em.21dtv.com/songs/60133332.mkv +魏雪漫-听海,http://em.21dtv.com/songs/60121170.mkv +AT17+方力申-他和她的事情,http://em.21dtv.com/songs/60092128.mkv +TWINS-他和她的事情(演唱会),http://em.21dtv.com/songs/60041085.mkv +萧亚轩-他和她的故事,http://em.21dtv.com/songs/60041084.mkv +田原-她和她的房间,http://em.21dtv.com/songs/60041155.mkv +托尼-痛还是放不下,http://em.21dtv.com/songs/60132487.mkv +ANIMALS-the house of the rising sun,http://em.21dtv.com/songs/60005609.mkv +李飞-桃花美桃花红,http://em.21dtv.com/songs/60112000.mkv +周杭-童话里的天使,http://em.21dtv.com/songs/60097793.mkv +李星-桃花开好运来,http://em.21dtv.com/songs/60129230.mkv +吕继宏-桃花红杏花白,http://em.21dtv.com/songs/60103970.mkv +阎维文-桃花红杏花白,http://em.21dtv.com/songs/60041570.mkv +单秀荣-桃花红杏花白,http://em.21dtv.com/songs/60041569.mkv +阿正-天花板(演唱会),http://em.21dtv.com/songs/60071179.mkv +小宇-他和别人睡了,http://em.21dtv.com/songs/60077797.mkv +家家-她和别人睡了,http://em.21dtv.com/songs/60076090.mkv +周渝民-童话不够美好,http://em.21dtv.com/songs/60042734.mkv +Apink-童话般的爱情,http://em.21dtv.com/songs/60129883.mkv +N SYNC-that girl will never be mine,http://em.21dtv.com/songs/60005520.mkv +高明骏-透过你的双眼,http://em.21dtv.com/songs/60042905.mkv +陈俊廷-天公伯仔保佑(无原唱),http://em.21dtv.com/songs/60041825.mkv +SHERYL CROW-the first cut is the deepest,http://em.21dtv.com/songs/60005586.mkv +张峰-天鹅遇上蛤蟆,http://em.21dtv.com/songs/60041811.mkv +周杰伦-土耳其冰淇淋,http://em.21dtv.com/songs/60127852.mkv +周杰伦-土耳其冰淇淋,http://em.21dtv.com/songs/60123759.mkv +儿歌-天地之间的歌,http://em.21dtv.com/songs/60089135.mkv +苏有朋-天地一片沙鸥,http://em.21dtv.com/songs/60088534.mkv +何静-天地与爱与人,http://em.21dtv.com/songs/60090612.mkv +陈建年-台东心兰花情(无原唱),http://em.21dtv.com/songs/60041261.mkv +陶莉萍-他的我我的你,http://em.21dtv.com/songs/60041076.mkv +沙靖杰-痛到零点以下,http://em.21dtv.com/songs/60135488.mkv +卫诗-听得见的青春,http://em.21dtv.com/songs/60042526.mkv +卫诗-听得见的青春(HD演唱会),http://em.21dtv.com/songs/60042525.mkv +张惠妹-听得见的梦想,http://em.21dtv.com/songs/60042524.mkv +刘浩-天地间爱最大,http://em.21dtv.com/songs/60097711.mkv +陈加洛-痛到感觉不到,http://em.21dtv.com/songs/60042793.mkv +孙淑媚-天顶的一蕊云,http://em.21dtv.com/songs/60041804.mkv +许景淳-天顶的月娘啊,http://em.21dtv.com/songs/60041806.mkv +三宝-痛彻心扉的爱,http://em.21dtv.com/songs/60114964.mkv +徐辉-听从心的声音,http://em.21dtv.com/songs/60105901.mkv +于博雅-太迟,http://em.21dtv.com/songs/60117531.mkv +陈辰-听窗外的风铃,http://em.21dtv.com/songs/60042520.mkv +袁凤瑛-逃出人间世外,http://em.21dtv.com/songs/60041545.mkv +ROBERTA FLACK+DONNY-the closer i get to you,http://em.21dtv.com/songs/60005564.mkv +佚名-天苍苍海茫茫,http://em.21dtv.com/songs/60041767.mkv +王檀-天边已微微亮,http://em.21dtv.com/songs/60133989.mkv +梅艳芳-她比烟花寂寞,http://em.21dtv.com/songs/60041140.mkv +胡夏-他比我更适合,http://em.21dtv.com/songs/60119897.mkv +杨林-她比我更好吗,http://em.21dtv.com/songs/60041139.mkv +罗时丰-台北上午零时,http://em.21dtv.com/songs/60041244.mkv +洪一峰-台北上午零时,http://em.21dtv.com/songs/60041243.mkv +吴雨霏-台北四天三夜,http://em.21dtv.com/songs/60041248.mkv +吴雨霏-台北四天三夜(演唱会),http://em.21dtv.com/songs/60041247.mkv +小小浩+Jenny伊-她不是你新娘,http://em.21dtv.com/songs/60096252.mkv +说书人-台北市点仔胶,http://em.21dtv.com/songs/60041245.mkv +周柏豪-天不怕地不怕,http://em.21dtv.com/songs/60110940.mkv +范振锋+梁奕伦-天不怕地不怕(演唱会),http://em.21dtv.com/songs/60041748.mkv +A-LIN-逃避没有不好,http://em.21dtv.com/songs/60041539.mkv +阿新-天不亮就分手,http://em.21dtv.com/songs/60041747.mkv +张道儒-停不了的思念,http://em.21dtv.com/songs/60097786.mkv +六哲-逃不了的爱情,http://em.21dtv.com/songs/60077840.mkv +游鸿明-台北寂寞部屋,http://em.21dtv.com/songs/60041233.mkv +刘克泉-听不见看不见,http://em.21dtv.com/songs/60116578.mkv +洪韵儿-听不见的晚安,http://em.21dtv.com/songs/60113810.mkv +AT17-the best is yet to come,http://em.21dtv.com/songs/60005549.mkv +林一峰-the best is yet to come(演唱会),http://em.21dtv.com/songs/60005548.mkv +TWINS-the best is yet to come(演唱会),http://em.21dtv.com/songs/60005547.mkv +任剑辉-唐伯虎戏秋香,http://em.21dtv.com/songs/60041489.mkv +凌东明+蒋文端-唐伯虎戏秋香,http://em.21dtv.com/songs/60041488.mkv +过江龙-唐伯虎点秋香,http://em.21dtv.com/songs/60061618.mkv +刘惠鸣+邓洁玲+张惠兰-唐伯虎赌秋香,http://em.21dtv.com/songs/60041487.mkv +郭潇城+关群英-唐伯虎点秋香,http://em.21dtv.com/songs/60041486.mkv +胡美仪+苏珊-唐伯虎点秋香(演唱会),http://em.21dtv.com/songs/60041485.mkv +胡美仪+吕姗-唐伯虎点秋香(演唱会),http://em.21dtv.com/songs/60041484.mkv +亚东-天边的若尔盖,http://em.21dtv.com/songs/60041735.mkv +林俊杰-听不懂没关系(演唱会),http://em.21dtv.com/songs/60042519.mkv +聂建亮-天边的勒勒车,http://em.21dtv.com/songs/60083878.mkv +何静-天边的格桑花,http://em.21dtv.com/songs/60093973.mkv +何静-天边的格桑花(演唱会),http://em.21dtv.com/songs/60064954.mkv +吕方-听不到的说话,http://em.21dtv.com/songs/60042515.mkv +张崇基+张崇德-听不到的说话(演唱会),http://em.21dtv.com/songs/60042514.mkv +蔡旻佑-台北21度c,http://em.21dtv.com/songs/60041215.mkv +NANCY SINATRA-these boots are made for walki,http://em.21dtv.com/songs/60005747.mkv +邓丽君-tie a yellow ribbon round the,http://em.21dtv.com/songs/60005795.mkv +安宇-听安宇唱情歌,http://em.21dtv.com/songs/60077940.mkv +阳一-她爱上了别人,http://em.21dtv.com/songs/60041136.mkv +王若琳-the adventures of bernie the s,http://em.21dtv.com/songs/60063768.mkv +苏永康-他爱了我好久,http://em.21dtv.com/songs/60091940.mkv +苏永康-她爱了我好久,http://em.21dtv.com/songs/60041135.mkv +南条爱乃-きみを探しに,http://em.21dtv.com/songs/60113315.mkv +郭术军-嫂子 祝福你,http://em.21dtv.com/songs/60093602.mkv +赵小南-谁在月亮之上,http://em.21dtv.com/songs/60040163.mkv +唐美华-守着我的承诺,http://em.21dtv.com/songs/60123787.mkv +林欣彤-狮子山下遇上,http://em.21dtv.com/songs/60077589.mkv +白智英-随着时间流逝,http://em.21dtv.com/songs/60040960.mkv +卡拉OK-手足情同志心(军旅),http://em.21dtv.com/songs/60089707.mkv +樊凡-守着你到永远,http://em.21dtv.com/songs/60039701.mkv +樊凡-守着你到永久,http://em.21dtv.com/songs/60088153.mkv +弦小杰-数着你的借口,http://em.21dtv.com/songs/60039812.mkv +甲子蕙+荒山亮-渗着目屎的爱,http://em.21dtv.com/songs/60072386.mkv +袁权-说再见难再见,http://em.21dtv.com/songs/60077736.mkv +伊雪-说再见好不好,http://em.21dtv.com/songs/60114992.mkv +张可儿-说再见的时候,http://em.21dtv.com/songs/60112661.mkv +蓝奕邦-说再见的对象,http://em.21dtv.com/songs/60105335.mkv +朱正杰-谁在乎我的泪,http://em.21dtv.com/songs/60097782.mkv +罗志祥-说真话的朋友,http://em.21dtv.com/songs/60117121.mkv +佚名-谁值得你去爱,http://em.21dtv.com/songs/60040165.mkv +黄思婷-手中的感情线,http://em.21dtv.com/songs/60083818.mkv +刀郎-谁在窗外流泪,http://em.21dtv.com/songs/60077706.mkv +K ONE-孙子爱情兵法,http://em.21dtv.com/songs/60041010.mkv +佚名-世运在莫斯科,http://em.21dtv.com/songs/60039336.mkv +洪卓立-双鱼座的眼泪,http://em.21dtv.com/songs/60097720.mkv +金莎-双鱼座的女孩,http://em.21dtv.com/songs/60088804.mkv +华顺-谁愿意嫁给我,http://em.21dtv.com/songs/60087446.mkv +华顺-谁愿意嫁给我(卡通),http://em.21dtv.com/songs/60087445.mkv +马力-神一样的姑娘,http://em.21dtv.com/songs/60086820.mkv +单色凌+爱朵女孩-神一样的对手,http://em.21dtv.com/songs/60097771.mkv +任贤齐-谁要我站起来,http://em.21dtv.com/songs/60040145.mkv +杨挺-所以我讨厌你,http://em.21dtv.com/songs/60129276.mkv +黄伟霖-是因为太爱你,http://em.21dtv.com/songs/60123390.mkv +FACE TO FACE-是意外还是爱,http://em.21dtv.com/songs/60039526.mkv +无鸣-沈阳我的故乡,http://em.21dtv.com/songs/60038520.mkv +张智霖-少一天都太短,http://em.21dtv.com/songs/60038182.mkv +任家萱-3.1415,http://em.21dtv.com/songs/60109135.mkv +Selina-3.1415,http://em.21dtv.com/songs/60107429.mkv +邓丽君-说一说笑一笑,http://em.21dtv.com/songs/60040433.mkv +雷佳-三月三上华山,http://em.21dtv.com/songs/60067391.mkv +宋祖英-三月三九月九,http://em.21dtv.com/songs/60037368.mkv +吕薇-三月三九月九,http://em.21dtv.com/songs/60037367.mkv +Kent王健-所有人的游戏,http://em.21dtv.com/songs/60097764.mkv +谢霆锋-所有人都是傻,http://em.21dtv.com/songs/60041033.mkv +杨海潮-生于七十年代,http://em.21dtv.com/songs/60088079.mkv +杜忻恬+许富凯-是友情是爱情,http://em.21dtv.com/songs/60125731.mkv +刘志新-漱玉平民之歌,http://em.21dtv.com/songs/60131205.mkv +麦田守望者-所有你想要的,http://em.21dtv.com/songs/60041032.mkv +陈雷-莎哟娜啦探戈,http://em.21dtv.com/songs/60037494.mkv +陈威男-谁愚弄了上帝,http://em.21dtv.com/songs/60080910.mkv +叶启田-时也命也运也(无原唱),http://em.21dtv.com/songs/60039161.mkv +陈威男-谁愚弄了上帝,http://em.21dtv.com/songs/60118151.mkv +钟明秋-三月里的小雨,http://em.21dtv.com/songs/60126313.mkv +卓依婷-三月里的小雨,http://em.21dtv.com/songs/60037366.mkv +巫启贤-三月里的小雨,http://em.21dtv.com/songs/60037365.mkv +刘文正-三月里的小雨,http://em.21dtv.com/songs/60037364.mkv +黄格选-三月里的小雨(演唱会),http://em.21dtv.com/songs/60037363.mkv +李志-山阴路的夏天,http://em.21dtv.com/songs/60127015.mkv +孙楠-十月里的回忆,http://em.21dtv.com/songs/60039045.mkv +邰正宵-是雨还是眼泪,http://em.21dtv.com/songs/60039531.mkv +郭富城-是雨还是眼泪,http://em.21dtv.com/songs/60039530.mkv +Nora Says-所有关于她的,http://em.21dtv.com/songs/60124962.mkv +王中平-伤一工痛半冬,http://em.21dtv.com/songs/60083767.mkv +郑锦昌-十一哥过新年,http://em.21dtv.com/songs/60093336.mkv +诸诸葛葛-树与根的情义,http://em.21dtv.com/songs/60117229.mkv +鼎骅-闪耀的那颗星,http://em.21dtv.com/songs/60121192.mkv +彩贝与海-岁月的红砖墙,http://em.21dtv.com/songs/60135264.mkv +谢霆锋-上一次下一次,http://em.21dtv.com/songs/60038062.mkv +吴天-伤一次痛一次,http://em.21dtv.com/songs/60127826.mkv +林志颖-伤心只到这里,http://em.21dtv.com/songs/60037984.mkv +林志颖-伤心只到这里(演唱会),http://em.21dtv.com/songs/60037983.mkv +杨帆-伤心雨伤心泪,http://em.21dtv.com/songs/60037982.mkv +刘斌-洒下一片深情,http://em.21dtv.com/songs/60037135.mkv +孙楠-洒下一片深情(演唱会),http://em.21dtv.com/songs/60037134.mkv +蔡依林-伤心淹没夜晚,http://em.21dtv.com/songs/60092015.mkv +姚志强+曾慧-苏小小之离魂(2)(戏曲),http://em.21dtv.com/songs/60092504.mkv +姚志强+曾慧-苏小小之离魂(1)(戏曲),http://em.21dtv.com/songs/60092503.mkv +郑欣宜-上心,http://em.21dtv.com/songs/60115452.mkv +刘育绫-伤心乌日车站,http://em.21dtv.com/songs/60037957.mkv +李琼-三峡我的家乡,http://em.21dtv.com/songs/60091351.mkv +夹子道-死心塌地-hi版(演唱会),http://em.21dtv.com/songs/60040636.mkv +李萧杰-伤心十字街口,http://em.21dtv.com/songs/60069794.mkv +郑进一+张瑞涵-伤心是咱的名,http://em.21dtv.com/songs/60037952.mkv +王建杰-伤心是阮的名,http://em.21dtv.com/songs/60037947.mkv +向蕙玲-伤心人伤心歌,http://em.21dtv.com/songs/60125275.mkv +刘依纯-伤心人伤心歌,http://em.21dtv.com/songs/60037941.mkv +十三狼-陕西人吼起来,http://em.21dtv.com/songs/60115731.mkv +佚名-伤心人的名字(无原唱),http://em.21dtv.com/songs/60037940.mkv +叶时伟-伤心全是为你,http://em.21dtv.com/songs/60114437.mkv +王美蓉-四县情海风意,http://em.21dtv.com/songs/60040707.mkv +臧天朔-伤心捧出自己,http://em.21dtv.com/songs/60037934.mkv +樊凡-搜寻你的名字,http://em.21dtv.com/songs/60062343.mkv +邱永传-伤心你的堕落,http://em.21dtv.com/songs/60083765.mkv +王雪晶-稍息立正站好,http://em.21dtv.com/songs/60038105.mkv +范晓萱-稍息立正站好,http://em.21dtv.com/songs/60038104.mkv +凌云-手心里的温柔,http://em.21dtv.com/songs/60098128.mkv +刀郎-手心里的温柔,http://em.21dtv.com/songs/60096032.mkv +降央卓玛-手心里的温柔(演唱会),http://em.21dtv.com/songs/60077661.mkv +降央卓玛-手心里的温柔,http://em.21dtv.com/songs/60062517.mkv +翁立友-伤心叫你的名,http://em.21dtv.com/songs/60067408.mkv +汤兰花-水仙花的身影,http://em.21dtv.com/songs/60040241.mkv +施文彬-伤心歌伤心肝,http://em.21dtv.com/songs/60037904.mkv +林木-伤心分我一半,http://em.21dtv.com/songs/60037903.mkv +徐浩-随心Free,http://em.21dtv.com/songs/60125572.mkv +邓小龙-伤心2017,http://em.21dtv.com/songs/60132968.mkv +邓小龙-伤心2017,http://em.21dtv.com/songs/60131863.mkv +温亚伦-伤心2016,http://em.21dtv.com/songs/60127177.mkv +孟杨-伤心2016,http://em.21dtv.com/songs/60122665.mkv +六哲-伤心2010,http://em.21dtv.com/songs/60087351.mkv +饶天亮-伤心2012,http://em.21dtv.com/songs/60064837.mkv +高瑞屏-伤心的巷仔口,http://em.21dtv.com/songs/60037891.mkv +郑中基-伤心的小鹦鹉(演唱会),http://em.21dtv.com/songs/60037892.mkv +高明骏-伤心对我来说(无原唱),http://em.21dtv.com/songs/60037902.mkv +韩春雨-谁下的情毒轨,http://em.21dtv.com/songs/60122268.mkv +洪卓立-熟悉的陌生人,http://em.21dtv.com/songs/60097803.mkv +朱英-熟悉的陌生人,http://em.21dtv.com/songs/60039768.mkv +田家达-熟悉的陌生人(无原唱),http://em.21dtv.com/songs/60039767.mkv +詹雅雯-伤心的脚步声,http://em.21dtv.com/songs/60013354.mkv +七郎-思乡的出外人,http://em.21dtv.com/songs/60040584.mkv +金娴雅-伤心2013,http://em.21dtv.com/songs/60094725.mkv +湘唯一+金娴雅-伤心2013,http://em.21dtv.com/songs/60094584.mkv +湘唯一-伤心2013,http://em.21dtv.com/songs/60094576.mkv +王杰-伤心1999,http://em.21dtv.com/songs/60037842.mkv +王杰-伤心1999(演唱会),http://em.21dtv.com/songs/60037841.mkv +孙艳-伤我最深的人,http://em.21dtv.com/songs/60114481.mkv +宋沛江-伤我最深的人,http://em.21dtv.com/songs/60111820.mkv +袁泉-所谓,http://em.21dtv.com/songs/60115371.mkv +刘欢+蒋中一-手挽手心连心,http://em.21dtv.com/songs/60039632.mkv +张崇基+张崇德-十五年金风medley(演唱会),http://em.21dtv.com/songs/60077610.mkv +黄小桢-十五秒练习曲,http://em.21dtv.com/songs/60039031.mkv +叶启田-十五暝的月台,http://em.21dtv.com/songs/60134990.mkv +叶启田-十五暝的月台,http://em.21dtv.com/songs/60133450.mkv +杨搏-十万毫升泪水(演唱会),http://em.21dtv.com/songs/60128112.mkv +莫龙丹-十万毫升泪水,http://em.21dtv.com/songs/60097706.mkv +蔡健雅-十万毫升泪水,http://em.21dtv.com/songs/60080433.mkv +佚名-she works hard for the money,http://em.21dtv.com/songs/60004965.mkv +倪锋-十万个我想你,http://em.21dtv.com/songs/60107503.mkv +诚峰-十万个为什么,http://em.21dtv.com/songs/60122120.mkv +大庆小芳-十万个为什么,http://em.21dtv.com/songs/60099909.mkv +郭晋安+宣萱-十万个为什么,http://em.21dtv.com/songs/60093369.mkv +田跃君-十万个对不起,http://em.21dtv.com/songs/60039022.mkv +Sage The Gemini-Swerve,http://em.21dtv.com/songs/60124985.mkv +风云组合-商务儿女之歌,http://em.21dtv.com/songs/60100643.mkv +周迅-身未动心已远,http://em.21dtv.com/songs/60038269.mkv +伍俊华-是我宠坏了你,http://em.21dtv.com/songs/60039508.mkv +杜德伟-是我宠坏了你,http://em.21dtv.com/songs/60039507.mkv +Jason Derulo+Nicki Minaj+Ty Dolla ign-Swalla,http://em.21dtv.com/songs/60133216.mkv +Calvin Harris-Summer,http://em.21dtv.com/songs/60121226.mkv +赛日-上天祝福四川,http://em.21dtv.com/songs/60038053.mkv +洛天依-莎图温的裙摆,http://em.21dtv.com/songs/60127167.mkv +林心如-山迢迢路迢迢,http://em.21dtv.com/songs/60037681.mkv +东来东往-试图生日快乐,http://em.21dtv.com/songs/60039370.mkv +何炅-手贴手的约定,http://em.21dtv.com/songs/60120309.mkv +何炅+严艺丹-手贴手的约定,http://em.21dtv.com/songs/60069830.mkv +林玉英+夏国星-沙滩上的回忆(无原唱),http://em.21dtv.com/songs/60037479.mkv +杨一郎-伤太深爱太难,http://em.21dtv.com/songs/60099330.mkv +游烨-Strong,http://em.21dtv.com/songs/60133948.mkv +Sonna Rele-Strong,http://em.21dtv.com/songs/60109891.mkv +文文-谁偷了我的菜,http://em.21dtv.com/songs/60040131.mkv +麦霸阿杜-伤透了你的心,http://em.21dtv.com/songs/60062752.mkv +佚名-save the last dance for me,http://em.21dtv.com/songs/60004818.mkv +GOTYE+KIMBRA-somebody that i used to know,http://em.21dtv.com/songs/60082334.mkv +王明丽-上天会安排的,http://em.21dtv.com/songs/60097708.mkv +杨洪基-水调歌头游泳,http://em.21dtv.com/songs/60091408.mkv +孜龙-伤痛2011,http://em.21dtv.com/songs/60077515.mkv +儿歌-身体部位称呼,http://em.21dtv.com/songs/60089634.mkv +Scandal-Stamp!,http://em.21dtv.com/songs/60114356.mkv +赵永-伤透爱刺痛心,http://em.21dtv.com/songs/60072373.mkv +Breathe Carolina+crossnaders-Stable,http://em.21dtv.com/songs/60129898.mkv +魏潇逸-顺时针逆时针,http://em.21dtv.com/songs/60129822.mkv +洪禄云-谁是最美的人,http://em.21dtv.com/songs/60098580.mkv +平安-谁是最美的人,http://em.21dtv.com/songs/60094489.mkv +何嘉乐-世上最美的歌,http://em.21dtv.com/songs/60071127.mkv +羽泉-世上最懂我的,http://em.21dtv.com/songs/60107127.mkv +砰砰乐团-十三支大老二,http://em.21dtv.com/songs/60039014.mkv +李碧华-岁岁月月年年,http://em.21dtv.com/songs/60040962.mkv +翁倩玉-沙沙雨淋湿湿,http://em.21dtv.com/songs/60037473.mkv +李娜-谁说也不信它,http://em.21dtv.com/songs/60088001.mkv +李娜-谁说也不信他,http://em.21dtv.com/songs/60088000.mkv +李娜-谁说也不相他,http://em.21dtv.com/songs/60040130.mkv +张译文-谁是下一个哥,http://em.21dtv.com/songs/60120526.mkv +周艳泓-谁是下一个哥(演唱会),http://em.21dtv.com/songs/60061601.mkv +周艳泓-谁是下一个哥,http://em.21dtv.com/songs/60040106.mkv +林俊杰-生生,http://em.21dtv.com/songs/60108615.mkv +扭曲的机器-三十,http://em.21dtv.com/songs/60108531.mkv +立涛-谁是我的织女,http://em.21dtv.com/songs/60061599.mkv +刘晓-谁是我的新郎,http://em.21dtv.com/songs/60098148.mkv +衡越-谁是我的新郎(演唱会),http://em.21dtv.com/songs/60040105.mkv +KEEVA MAK-杀死我的温柔,http://em.21dtv.com/songs/60037437.mkv +高明骏+陈艾湄-谁说我不在乎,http://em.21dtv.com/songs/60040128.mkv +郭富城+陈艾湄-谁说我不在乎(演唱会),http://em.21dtv.com/songs/60040127.mkv +王焱-谁说我不想哭,http://em.21dtv.com/songs/60040126.mkv +林宗兴-谁说我不爱你,http://em.21dtv.com/songs/60113700.mkv +宝莉斯-谁说我不爱你,http://em.21dtv.com/songs/60071140.mkv +小龙-谁说我不爱你,http://em.21dtv.com/songs/60040125.mkv +BLUE-sorry seems to be the hardest,http://em.21dtv.com/songs/60005192.mkv +许慧欣-诗水蛇山神庙,http://em.21dtv.com/songs/60038869.mkv +阿兰-三生石三生路,http://em.21dtv.com/songs/60102850.mkv +ALAN-三生石三生路,http://em.21dtv.com/songs/60037306.mkv +林鸿阳-傻傻傻傻地等,http://em.21dtv.com/songs/60037551.mkv +张也-三十三个月亮(演唱会),http://em.21dtv.com/songs/60037323.mkv +纪晓川-三十岁的兄弟,http://em.21dtv.com/songs/60121999.mkv +赵雷-三十岁的女人,http://em.21dtv.com/songs/60132925.mkv +赵雷-三十岁的女人,http://em.21dtv.com/songs/60118077.mkv +谭维维-三十岁的女人,http://em.21dtv.com/songs/60114068.mkv +陈才超-三十岁的男人,http://em.21dtv.com/songs/60100588.mkv +苹果姐姐-十四岁的地铁(无原唱),http://em.21dtv.com/songs/60039015.mkv +SUPER7-谁是谁的爱人,http://em.21dtv.com/songs/60069836.mkv +甄妮-似是前生欠你,http://em.21dtv.com/songs/60093010.mkv +群星-叔叔去哪儿了,http://em.21dtv.com/songs/60115335.mkv +陈钟-三十七度男人,http://em.21dtv.com/songs/60130858.mkv +MICHAEL JACKSON-shes out of my life,http://em.21dtv.com/songs/60073869.mkv +樊凡-搜索你的名字,http://em.21dtv.com/songs/60090024.mkv +徐齐强-说什么我爱你,http://em.21dtv.com/songs/60040415.mkv +游鸿明-十三楼的新鞋,http://em.21dtv.com/songs/60039013.mkv +韩磊-深山里的汉子,http://em.21dtv.com/songs/60038345.mkv +佚名-四三零穿梭机,http://em.21dtv.com/songs/60040702.mkv +南台湾小姑娘-傻傻恋爱的人,http://em.21dtv.com/songs/60037549.mkv +李翊君-随时可能流泪,http://em.21dtv.com/songs/60040942.mkv +雷诺儿-上世纪的童话,http://em.21dtv.com/songs/60061567.mkv +洛嘉-上世纪的情歌,http://em.21dtv.com/songs/60113808.mkv +网络歌手-誓守家的诺言,http://em.21dtv.com/songs/60090109.mkv +蔡依林-十三号星期舞,http://em.21dtv.com/songs/60077609.mkv +囚鸟-深深的喜欢你,http://em.21dtv.com/songs/60080246.mkv +一川-神圣的农民工,http://em.21dtv.com/songs/60038497.mkv +德德玛-深深的牧人情,http://em.21dtv.com/songs/60098385.mkv +郁钧剑-哨所的喇叭花,http://em.21dtv.com/songs/60038183.mkv +赵斌-傻傻等待的人,http://em.21dtv.com/songs/60107239.mkv +郭欢-四十度的悲伤,http://em.21dtv.com/songs/60097723.mkv +王丽达-哨所的兵哥哥,http://em.21dtv.com/songs/60125896.mkv +刘德华-深深地爱着你,http://em.21dtv.com/songs/60038361.mkv +阿日布杰+哈斯+阿箃娜-神圣的阿拉善(演唱会),http://em.21dtv.com/songs/60085703.mkv +薛之谦-深深的爱过你,http://em.21dtv.com/songs/60088609.mkv +陈玉建-水是冰的眼泪,http://em.21dtv.com/songs/60040222.mkv +晓雨-深深爱着的你,http://em.21dtv.com/songs/60061572.mkv +陈伟-谁说爱要结果,http://em.21dtv.com/songs/60040115.mkv +佚名-升淑啊不要哭,http://em.21dtv.com/songs/60038525.mkv +洪荣宏-谁人要乎阮载(无原唱),http://em.21dtv.com/songs/60040082.mkv +谢雷-送阮一个妈妈(无原唱),http://em.21dtv.com/songs/60040792.mkv +邰正宵-谁让你想到哭,http://em.21dtv.com/songs/60040050.mkv +天骏-萨日朗的微笑,http://em.21dtv.com/songs/60077443.mkv +郑莉莉-生日快乐宝贝,http://em.21dtv.com/songs/60130795.mkv +徐小凤-谁人还笑我傻,http://em.21dtv.com/songs/60040060.mkv +末希-四日爱情轨迹,http://em.21dtv.com/songs/60077764.mkv +李卓婷-手枪与红玫瑰,http://em.21dtv.com/songs/60039626.mkv +孙峰-手牵手一起走,http://em.21dtv.com/songs/60115790.mkv +群星-手牵手we are family,http://em.21dtv.com/songs/60039625.mkv +林志颖-十七岁的雨季,http://em.21dtv.com/songs/60039005.mkv +林志颖-十七岁的雨季(演唱会),http://em.21dtv.com/songs/60039004.mkv +龙梅子-十七岁的新娘,http://em.21dtv.com/songs/60039002.mkv +李佩彤-谁欠谁的幸福,http://em.21dtv.com/songs/60124055.mkv +吴淑敏-十七岁的年代,http://em.21dtv.com/songs/60039001.mkv +M.C THE MAX-说起那个男人,http://em.21dtv.com/songs/60111629.mkv +马嘉均-收起你个电话,http://em.21dtv.com/songs/60111526.mkv +星宇-失去你的温柔,http://em.21dtv.com/songs/60038833.mkv +黑龙-失去你的黄昏,http://em.21dtv.com/songs/60038832.mkv +任军太-失去你才知道,http://em.21dtv.com/songs/60064866.mkv +向蕙玲-失去你不后悔,http://em.21dtv.com/songs/60108370.mkv +佚名-说起了我的梦(中四),http://em.21dtv.com/songs/60040410.mkv +高胜美-说起了我的梦(无原唱),http://em.21dtv.com/songs/60040409.mkv +TWINS-三千六百五十,http://em.21dtv.com/songs/60037287.mkv +臧天朔-申请几片温柔,http://em.21dtv.com/songs/60038243.mkv +JERRY+MERRY-抒情歌 平快车,http://em.21dtv.com/songs/60039739.mkv +歌浴森-神曲2012,http://em.21dtv.com/songs/60072383.mkv +苏永康-三千c c 的约会,http://em.21dtv.com/songs/60037282.mkv +泽旺多吉-神奇的香巴拉(演唱会),http://em.21dtv.com/songs/60083783.mkv +谭晶-神奇的涠洲岛,http://em.21dtv.com/songs/60064856.mkv +雪狼组合-深情的太阳谷,http://em.21dtv.com/songs/60038317.mkv +童唱-神奇的七巧板,http://em.21dtv.com/songs/60038481.mkv +品冠+Jayden-神奇的每一天,http://em.21dtv.com/songs/60121513.mkv +宋祖英-深情地恋着你,http://em.21dtv.com/songs/60038319.mkv +潘建义-神奇的龙湾潭,http://em.21dtv.com/songs/60085701.mkv +青河+白淑荣+月兰+毕里格-神奇的科尔沁,http://em.21dtv.com/songs/60077554.mkv +图桠格-神奇的布达拉(演唱会),http://em.21dtv.com/songs/60061575.mkv +望海高歌-神奇的爱情花,http://em.21dtv.com/songs/60126984.mkv +林忆莲-深情本难解释,http://em.21dtv.com/songs/60038312.mkv +王建杰-身躯边彼个人(无原唱),http://em.21dtv.com/songs/60038257.mkv +云开-失去爱人的人,http://em.21dtv.com/songs/60038821.mkv +李玟-Stuck On U 偷心贼,http://em.21dtv.com/songs/60080207.mkv +方顺吉-少年仔的心声,http://em.21dtv.com/songs/60038153.mkv +施文彬-山娘仔的情歌,http://em.21dtv.com/songs/60118618.mkv +佚名-少年仔甭捉狂,http://em.21dtv.com/songs/60038152.mkv +黄克林-少年仔甭捉狂,http://em.21dtv.com/songs/60038151.mkv +唐韦琪-送你一片阳光(演唱会),http://em.21dtv.com/songs/60040785.mkv +田亚霍-赏你一个痛快,http://em.21dtv.com/songs/60132751.mkv +郝萌-送你一个长安,http://em.21dtv.com/songs/60121009.mkv +韩磊+汤灿-送你一个长安,http://em.21dtv.com/songs/60083428.mkv +董文华-送你一份吉利,http://em.21dtv.com/songs/60040783.mkv +汪正正-送你一份吉利(演唱会),http://em.21dtv.com/songs/60040782.mkv +红蔷薇-思念远方的你,http://em.21dtv.com/songs/60095215.mkv +张明敏-送你一把泥土,http://em.21dtv.com/songs/60040777.mkv +费玉清-送你一把泥土,http://em.21dtv.com/songs/60040776.mkv +詹雅雯+詹雅云-思念限时挂号,http://em.21dtv.com/songs/60040565.mkv +吴碧霞-思念,http://em.21dtv.com/songs/60106686.mkv +红蔷薇-思念天边的你,http://em.21dtv.com/songs/60103513.mkv +谢世超-思念天边的你,http://em.21dtv.com/songs/60081721.mkv +陈中-思念是一种痛,http://em.21dtv.com/songs/60135890.mkv +Robynn+Kendy-思念是一种病,http://em.21dtv.com/songs/60103036.mkv +张震岳-思念是一种病,http://em.21dtv.com/songs/60040558.mkv +齐秦-思念是一种病(无原唱),http://em.21dtv.com/songs/60040557.mkv +王可-思念是一首歌,http://em.21dtv.com/songs/60097768.mkv +刘辰希-思念是一把刀,http://em.21dtv.com/songs/60094838.mkv +男声-是你使我伤心,http://em.21dtv.com/songs/60039470.mkv +詹雅雯-是你伤我的心,http://em.21dtv.com/songs/60039469.mkv +樱花姐妹-是你伤我的心,http://em.21dtv.com/songs/60039468.mkv +女声-是你伤我的心,http://em.21dtv.com/songs/60039467.mkv +月星海-是你撕碎了爱,http://em.21dtv.com/songs/60103337.mkv +王杰-是你是你是你,http://em.21dtv.com/songs/60039472.mkv +李明洋+邱芸子-思念你的滋味,http://em.21dtv.com/songs/60040551.mkv +王建杰-思念你的心情,http://em.21dtv.com/songs/60081802.mkv +佚名-思念你的心情,http://em.21dtv.com/songs/60040550.mkv +孔先斌-思念梦中的你,http://em.21dtv.com/songs/60112617.mkv +洪荣宏-少年就是本钱(无原唱),http://em.21dtv.com/songs/60038128.mkv +白冰冰+蔡万来-是你乎我的爱,http://em.21dtv.com/songs/60132766.mkv +蔡丽津-思念的莎酷拉,http://em.21dtv.com/songs/60134193.mkv +王杰-谁能丢掉伤心,http://em.21dtv.com/songs/60088299.mkv +NMB48-ドリアン少年,http://em.21dtv.com/songs/60114352.mkv +完玛三智+谭晶-生命站立成树,http://em.21dtv.com/songs/60064859.mkv +汪峰-生命中的一天,http://em.21dtv.com/songs/60038594.mkv +肖燕-生命中的天使,http://em.21dtv.com/songs/60038593.mkv +李宗盛-生命中的精灵,http://em.21dtv.com/songs/60038591.mkv +心薇-三秒钟的决定(无原唱),http://em.21dtv.com/songs/60037256.mkv +李志洲-生命中的过客,http://em.21dtv.com/songs/60103359.mkv +陈雷-上美ㄟ一首歌,http://em.21dtv.com/songs/60120104.mkv +郭静-生命因你动听(演唱会),http://em.21dtv.com/songs/60038579.mkv +佩希-什么样的世道,http://em.21dtv.com/songs/60120314.mkv +王菲-什么也不知道(演唱会),http://em.21dtv.com/songs/60038432.mkv +叶维道-生命因爱动听,http://em.21dtv.com/songs/60092439.mkv +杨坤-生命像块石头,http://em.21dtv.com/songs/60082032.mkv +林忆莲-生命属于我们,http://em.21dtv.com/songs/60038575.mkv +俊锋-什么是好兄弟,http://em.21dtv.com/songs/60128791.mkv +马丽-四面山好地方,http://em.21dtv.com/songs/60109748.mkv +徐向立-生命没有如果,http://em.21dtv.com/songs/60119570.mkv +刘舫-生命没有彩排,http://em.21dtv.com/songs/60085705.mkv +吴俊余-谁没了谁不行,http://em.21dtv.com/songs/60132283.mkv +湘海-沙漠里的骆驼,http://em.21dtv.com/songs/60037463.mkv +零点乐队-生命就是这样,http://em.21dtv.com/songs/60038563.mkv +黄义达-Set Me Free III,http://em.21dtv.com/songs/60080579.mkv +孟杨-神马都是我的,http://em.21dtv.com/songs/60077553.mkv +杨丞琳-失眠的睡美人(演唱会),http://em.21dtv.com/songs/60038807.mkv +陆正信-神秘的山旮旯,http://em.21dtv.com/songs/60121061.mkv +寒武纪-神马都是浮云,http://em.21dtv.com/songs/60072382.mkv +寒武纪-神马都是浮云(舞曲版),http://em.21dtv.com/songs/60072381.mkv +西子-神马都是浮云,http://em.21dtv.com/songs/60068647.mkv +萧全-神马都是浮云,http://em.21dtv.com/songs/60063143.mkv +张欣-神秘的塞班岛,http://em.21dtv.com/songs/60135210.mkv +詹雅雯-失眠的瞑真长,http://em.21dtv.com/songs/60038806.mkv +赵鑫-什么都不想要,http://em.21dtv.com/songs/60094698.mkv +佚名-什么都不必说(无原唱),http://em.21dtv.com/songs/60038395.mkv +兰天-深埋不变的爱,http://em.21dtv.com/songs/60097787.mkv +佚名-失恋阵线聊盟(恰恰),http://em.21dtv.com/songs/60038777.mkv +草蜢-失恋阵线联盟,http://em.21dtv.com/songs/60038776.mkv +杨洪基-十六字令三首,http://em.21dtv.com/songs/60038979.mkv +苏打绿-说了再见以后,http://em.21dtv.com/songs/60081684.mkv +安又琪-失恋这件小事,http://em.21dtv.com/songs/60071113.mkv +萧磊-伤了心的雨季,http://em.21dtv.com/songs/60072372.mkv +音萌萌-伤了心的季节,http://em.21dtv.com/songs/60133085.mkv +群星-手拉手心连心,http://em.21dtv.com/songs/60095037.mkv +肖雪-山里山山外山,http://em.21dtv.com/songs/60122031.mkv +蹇红-深蓝色的情书,http://em.21dtv.com/songs/60081000.mkv +周杰伦-深蓝色的情书,http://em.21dtv.com/songs/60038306.mkv +简弘亦-深蓝色的气球,http://em.21dtv.com/songs/60128291.mkv +佚名-十六岁的花季,http://em.21dtv.com/songs/60038977.mkv +黄秋生-屎捞人月光光,http://em.21dtv.com/songs/60093540.mkv +蒋大为-山里人唱山歌,http://em.21dtv.com/songs/60037655.mkv +Sexy Zone-胜利の日まで,http://em.21dtv.com/songs/60132128.mkv +哈辉+中央人民广播电台童声合唱团-声律启蒙 东,http://em.21dtv.com/songs/60103985.mkv +李泫憙-少了你的时间,http://em.21dtv.com/songs/60133806.mkv +刀郎-萨拉姆毛主席,http://em.21dtv.com/songs/60037153.mkv +邝文珣-失恋了怎么办,http://em.21dtv.com/songs/60038754.mkv +靓舞精灵-失恋联盟阵线,http://em.21dtv.com/songs/60038755.mkv +赵薇-sha la la 救生圈,http://em.21dtv.com/songs/60004919.mkv +肖燕-水灵灵的眼睛,http://em.21dtv.com/songs/60040205.mkv +陈惠英-水灵灵的丽水,http://em.21dtv.com/songs/60077711.mkv +周燕君-水灵灵的丽水,http://em.21dtv.com/songs/60069841.mkv +迪克牛仔-莎郎嘿sa lang hae,http://em.21dtv.com/songs/60037486.mkv +刘德华-谁流过的眼泪,http://em.21dtv.com/songs/60090707.mkv +来国庆-索伦嘎的婚礼,http://em.21dtv.com/songs/60129265.mkv +赵科岩-伤泪2015,http://em.21dtv.com/songs/60109637.mkv +曹卉娟+慕容萱-失恋第一百天,http://em.21dtv.com/songs/60038746.mkv +春妹-山里的小野菊,http://em.21dtv.com/songs/60037652.mkv +童唱-闪亮的水晶心,http://em.21dtv.com/songs/60037726.mkv +刘畊宏-失落的入场券,http://em.21dtv.com/songs/60038792.mkv +刘佳轩-失落的感情线,http://em.21dtv.com/songs/60038785.mkv +钟石福-山里的带头人,http://em.21dtv.com/songs/60093724.mkv +儿歌-三轮车跑得快,http://em.21dtv.com/songs/60089625.mkv +罗时丰+陈小云-三轮车夫之恋,http://em.21dtv.com/songs/60077454.mkv +陈美安+陈建华-三轮车夫之恋,http://em.21dtv.com/songs/60068638.mkv +佚名-三轮车夫之恋,http://em.21dtv.com/songs/60037252.mkv +小龙-算了吧忘了吧,http://em.21dtv.com/songs/60040896.mkv +李蕙敏-失恋不是一切,http://em.21dtv.com/songs/60092813.mkv +林汉洋-失恋2000,http://em.21dtv.com/songs/60038732.mkv +罗宾-松开手剪断爱,http://em.21dtv.com/songs/60040726.mkv +郑伊健-谁可情深如我,http://em.21dtv.com/songs/60040009.mkv +郑伊健-谁可情深如我(演唱会),http://em.21dtv.com/songs/60040008.mkv +孝敏-Sketch,http://em.21dtv.com/songs/60121574.mkv +孝敏-Sketch,http://em.21dtv.com/songs/60120455.mkv +李雨儿-盛开的栀子花,http://em.21dtv.com/songs/60128104.mkv +彭纪谚-升空的潜水钟,http://em.21dtv.com/songs/60038523.mkv +乌兰齐齐格-盛开的马兰花,http://em.21dtv.com/songs/60116522.mkv +仁青连布-盛开的格桑花,http://em.21dtv.com/songs/60114984.mkv +佚名-斯卡博勒市场,http://em.21dtv.com/songs/60040605.mkv +SARAH BRIGHTMAN-斯卡布罗集市(演唱会),http://em.21dtv.com/songs/60040606.mkv +黄立行-世界只有我们,http://em.21dtv.com/songs/60039309.mkv +黎明-神经质女主角(演唱会),http://em.21dtv.com/songs/60038458.mkv +潘上恩-世界再大都easy(无原唱),http://em.21dtv.com/songs/60039298.mkv +AZU+SEAMO-时间よ止まれ,http://em.21dtv.com/songs/60122341.mkv +霓裳-圣洁与你同在,http://em.21dtv.com/songs/60114879.mkv +苏永康-谁将音量收细,http://em.21dtv.com/songs/60093088.mkv +℃ UTE-世界一happyな女の子,http://em.21dtv.com/songs/60077637.mkv +SUNBOY'Z+关智斌-三加一等于一,http://em.21dtv.com/songs/60037234.mkv +佚名-司机兄的心声,http://em.21dtv.com/songs/60040449.mkv +陈奕迅-世界,http://em.21dtv.com/songs/60120074.mkv +萧敬腾+李一平-世界唯一的你,http://em.21dtv.com/songs/60112189.mkv +杨承熹-世界唯一的你,http://em.21dtv.com/songs/60077635.mkv +曹格-世界唯一的你,http://em.21dtv.com/songs/60039287.mkv +黄瑶-世界我们来了,http://em.21dtv.com/songs/60114917.mkv +佚名-世间始终你好,http://em.21dtv.com/songs/60039244.mkv +杨千嬅+黄耀明-世间始终你好(演唱会),http://em.21dtv.com/songs/60039243.mkv +苏永康+陈慧娴-世间始终你好(演唱会),http://em.21dtv.com/songs/60039242.mkv +罗文+甄妮-世间始终你好(演唱会),http://em.21dtv.com/songs/60039241.mkv +董璐-世界是一个家,http://em.21dtv.com/songs/60039284.mkv +大庆小芳-舌尖上的爱情,http://em.21dtv.com/songs/60067412.mkv +郑中基-时间人物地点,http://em.21dtv.com/songs/60039141.mkv +张学友-时间人物地点(演唱会),http://em.21dtv.com/songs/60039140.mkv +刀郎-世界如此寂寞,http://em.21dtv.com/songs/60132230.mkv +刀郎-世界如此寂寞,http://em.21dtv.com/songs/60069824.mkv +泳儿-世界请看着我,http://em.21dtv.com/songs/60039280.mkv +泳儿-世界请看着我(演唱会),http://em.21dtv.com/songs/60039279.mkv +费翔-世界没有距离,http://em.21dtv.com/songs/60039270.mkv +萧潇-时间没有等我,http://em.21dtv.com/songs/60092003.mkv +丁小芹-世纪末新生活,http://em.21dtv.com/songs/60090455.mkv +陈奕迅-世纪末的呼声,http://em.21dtv.com/songs/60039217.mkv +何家劲-是寂寞吧我想,http://em.21dtv.com/songs/60039437.mkv +莫文蔚-时间里的飞人,http://em.21dtv.com/songs/60120908.mkv +莫文蔚-时间里的飞人,http://em.21dtv.com/songs/60116227.mkv +任家萱-时间会做的事,http://em.21dtv.com/songs/60109960.mkv +任家萱-时间会做的事,http://em.21dtv.com/songs/60109136.mkv +高盟杰+黄镫辉+邱凯伟-世界第一麦方ㄆㄤˋ,http://em.21dtv.com/songs/60085720.mkv +常石磊-世界等我出发,http://em.21dtv.com/songs/60104098.mkv +香蝶公主-圣洁的索玛花,http://em.21dtv.com/songs/60107358.mkv +张碧晨-时间都去哪了,http://em.21dtv.com/songs/60105053.mkv +王铮亮-时间都去哪了,http://em.21dtv.com/songs/60102560.mkv +郑秀文-时间地点人物,http://em.21dtv.com/songs/60039132.mkv +陈羽凡+胡海泉+于魁智-三家店 奔跑,http://em.21dtv.com/songs/60109704.mkv +陈羽凡+胡海泉+于魁智-三家店^奔跑,http://em.21dtv.com/songs/60108990.mkv +宋祖英-圣洁的白莲花,http://em.21dtv.com/songs/60077571.mkv +周展忠+祝荣发-沙家浜之智斗,http://em.21dtv.com/songs/60037449.mkv +周展忠-沙家浜之朝霞,http://em.21dtv.com/songs/60037447.mkv +好妹妹乐队-蛇精病不会动,http://em.21dtv.com/songs/60106751.mkv +DAVICHI-时间啊停止吧,http://em.21dtv.com/songs/60039121.mkv +GOSSIP-standing in the way of control(演唱会),http://em.21dtv.com/songs/60073933.mkv +佚名-standing in the shadows of lov,http://em.21dtv.com/songs/60005234.mkv +R.KELLY-step in the name of love,http://em.21dtv.com/songs/60073942.mkv +佚名-stop in the name of love,http://em.21dtv.com/songs/60005276.mkv +李玟-safe in the arms of love,http://em.21dtv.com/songs/60004786.mkv +王曼棋-说好只是朋友,http://em.21dtv.com/songs/60115299.mkv +周杰伦-上海一九四三,http://em.21dtv.com/songs/60038037.mkv +晓月-树和叶的约定,http://em.21dtv.com/songs/60129183.mkv +赵芬妮-拾海星的小孩(无原唱),http://em.21dtv.com/songs/60039176.mkv +关喆-伤痕,http://em.21dtv.com/songs/60109164.mkv +黄品源-上海滩夜未眠,http://em.21dtv.com/songs/60118209.mkv +叶丽仪-上海滩龙虎斗(演唱会),http://em.21dtv.com/songs/60038035.mkv +网络歌手-上海滩滑稽版,http://em.21dtv.com/songs/60088410.mkv +黄静雅-生活是一条歌,http://em.21dtv.com/songs/60083786.mkv +曹蕾-守候你的情缘,http://em.21dtv.com/songs/60066321.mkv +何流-守护丽人终于,http://em.21dtv.com/songs/60132202.mkv +何流-守护丽人终于,http://em.21dtv.com/songs/60131165.mkv +黄湘怡-撒哈拉的月亮,http://em.21dtv.com/songs/60037141.mkv +小贱-说好了不见面,http://em.21dtv.com/songs/60063147.mkv +宋健-生活就是这样,http://em.21dtv.com/songs/60115862.mkv +综艺主持人-生活就是舞台,http://em.21dtv.com/songs/60068176.mkv +周传雄-上海黑夜黎明(演唱会),http://em.21dtv.com/songs/60038027.mkv +李丹-水花花泥花花(儿歌),http://em.21dtv.com/songs/60087976.mkv +甄子丹-Sherry,http://em.21dtv.com/songs/60108739.mkv +张冬玲-说好的一辈子,http://em.21dtv.com/songs/60061606.mkv +陈以桐-说好的幸福呢,http://em.21dtv.com/songs/60102870.mkv +浪花兄弟-说好的幸福呢,http://em.21dtv.com/songs/60083840.mkv +周杰伦-说好的幸福呢,http://em.21dtv.com/songs/60040374.mkv +陶妍霖-说好不会分手,http://em.21dtv.com/songs/60083838.mkv +凡人+齐秦-上海爱情故事,http://em.21dtv.com/songs/60038023.mkv +The Legend-SHADOW,http://em.21dtv.com/songs/60119201.mkv +Austin Mahone-Shadow,http://em.21dtv.com/songs/60102999.mkv +Aimer-谁か、海を。,http://em.21dtv.com/songs/60110741.mkv +阿飞-送给最美的你,http://em.21dtv.com/songs/60062194.mkv +卓依婷-傻瓜与野丫头,http://em.21dtv.com/songs/60037520.mkv +庄学忠-傻瓜与野丫头,http://em.21dtv.com/songs/60037519.mkv +谢雷+刘家妏-傻瓜与野丫头(演唱会),http://em.21dtv.com/songs/60037517.mkv +江蕙+林俊逸-傻瓜与野ㄚ头,http://em.21dtv.com/songs/60114639.mkv +张宇-傻瓜与野丫头,http://em.21dtv.com/songs/60037516.mkv +甄楚倩-试过也算拥有(无原唱),http://em.21dtv.com/songs/60093015.mkv +佚名-试过也算拥有(无原唱),http://em.21dtv.com/songs/60039366.mkv +吴宗宪-三个月零六天,http://em.21dtv.com/songs/60037217.mkv +儿歌-十个印第安人,http://em.21dtv.com/songs/60089627.mkv +童唱-十个印地安人,http://em.21dtv.com/songs/60038964.mkv +容祖儿-深闺,http://em.21dtv.com/songs/60103214.mkv +CK-傻瓜生日快乐,http://em.21dtv.com/songs/60072366.mkv +阿楠-受过伤流过泪,http://em.21dtv.com/songs/60102858.mkv +阿文-受过伤的男人,http://em.21dtv.com/songs/60116328.mkv +吉东风-受过伤的男人,http://em.21dtv.com/songs/60107566.mkv +HOTCHA-三个人在途上,http://em.21dtv.com/songs/60062043.mkv +彭青-三个人去旅游,http://em.21dtv.com/songs/60080681.mkv +陈冠希+TWINS-三个人的舞会,http://em.21dtv.com/songs/60037213.mkv +王若琳-三个人的晚餐,http://em.21dtv.com/songs/60095330.mkv +黄韵玲-三个人的晚餐,http://em.21dtv.com/songs/60037212.mkv +林志炫-三个人的痛苦,http://em.21dtv.com/songs/60037211.mkv +陈奕迅-三个人的探戈(演唱会),http://em.21dtv.com/songs/60037210.mkv +孙淑媚-三个人的世界,http://em.21dtv.com/songs/60037209.mkv +董贞-三个人的时光,http://em.21dtv.com/songs/60077451.mkv +陶莉萍-三个人的拔河,http://em.21dtv.com/songs/60037208.mkv +安叶-三个人的爱情,http://em.21dtv.com/songs/60111817.mkv +储毅-时光难再倒回,http://em.21dtv.com/songs/60086829.mkv +望海高歌-送给妈妈的歌,http://em.21dtv.com/songs/60121748.mkv +甄秀珍-送给妈妈的歌,http://em.21dtv.com/songs/60040745.mkv +郝云-苏格兰我的家,http://em.21dtv.com/songs/60077780.mkv +王亚东-送给老婆的歌,http://em.21dtv.com/songs/60110380.mkv +XY兄弟-时光里的院子,http://em.21dtv.com/songs/60130014.mkv +倮倮-水缸里的月亮,http://em.21dtv.com/songs/60040185.mkv +HANA-傻瓜里的童话,http://em.21dtv.com/songs/60126526.mkv +谢军-山谷里的思念,http://em.21dtv.com/songs/60123175.mkv +佚名-山谷里的灯火,http://em.21dtv.com/songs/60037645.mkv +佚名-some guys have all the luck,http://em.21dtv.com/songs/60005133.mkv +黄乙玲-烧滚滚冷冰冰,http://em.21dtv.com/songs/60038082.mkv +化学-山果果金黄黄(演唱会),http://em.21dtv.com/songs/60086805.mkv +化学-山果果金黄黄,http://em.21dtv.com/songs/60086804.mkv +陈蕾-谁搞的情人节,http://em.21dtv.com/songs/60098896.mkv +威仔+夏凌兮-傻瓜不准难过,http://em.21dtv.com/songs/60125375.mkv +王健-傻瓜爱上天使,http://em.21dtv.com/songs/60061555.mkv +中国好声音第二季-somethings got a hold on me(葛泓语),http://em.21dtv.com/songs/60081469.mkv +葛鸿语-Somethings Got a Hold on Me,http://em.21dtv.com/songs/60080964.mkv +小山-伤感2010,http://em.21dtv.com/songs/60037768.mkv +黄舒骏-是否真心如我,http://em.21dtv.com/songs/60039435.mkv +ASOS-十分钟的恋爱,http://em.21dtv.com/songs/60038957.mkv +张雨生-是否真的爱我,http://em.21dtv.com/songs/60039434.mkv +瓦其依合-山风一样自由,http://em.21dtv.com/songs/60111302.mkv +阿鲁阿卓-山风一样自由,http://em.21dtv.com/songs/60080891.mkv +JS-苏菲亚的愿望,http://em.21dtv.com/songs/60040815.mkv +JS-苏菲亚的盛宴,http://em.21dtv.com/songs/60040814.mkv +周晏伊-说分手不可以,http://em.21dtv.com/songs/60108393.mkv +MAP6-散发魅力时间,http://em.21dtv.com/songs/60122399.mkv +毛宁-是否会想起我,http://em.21dtv.com/songs/60039422.mkv +庄振凯-三分痴七分迷,http://em.21dtv.com/songs/60111844.mkv +李玲玉-是否把我忘记,http://em.21dtv.com/songs/60109429.mkv +曹轩宾-十二月的奇迹,http://em.21dtv.com/songs/60099281.mkv +EXO-十二月的奇迹(韩语),http://em.21dtv.com/songs/60084555.mkv +刘键-十二月的冬天,http://em.21dtv.com/songs/60064869.mkv +韩磊-萨尔银多的梦,http://em.21dtv.com/songs/60102934.mkv +徐良+小凌-三二一对不起,http://em.21dtv.com/songs/60037192.mkv +佚名-索尔维格之歌,http://em.21dtv.com/songs/60041035.mkv +歆小瑶+冬一-十二岁洛丽塔,http://em.21dtv.com/songs/60132659.mkv +The Chainsmokers-SELFIE,http://em.21dtv.com/songs/60119200.mkv +樱子-三十二号嫁给你,http://em.21dtv.com/songs/60069782.mkv +李猛-三二场演唱会,http://em.21dtv.com/songs/60072356.mkv +韩庚-Season,http://em.21dtv.com/songs/60116361.mkv +郑秀文-上帝早已预备(演唱会),http://em.21dtv.com/songs/60038017.mkv +金润吉-谁的眼泪在飞,http://em.21dtv.com/songs/60085738.mkv +卓依婷-谁的眼泪在飞,http://em.21dtv.com/songs/60039966.mkv +佚名-谁的眼泪在飞,http://em.21dtv.com/songs/60039965.mkv +孟庭苇-谁的眼泪在飞,http://em.21dtv.com/songs/60039964.mkv +张继听-松的!衣池濑,http://em.21dtv.com/songs/60092647.mkv +孙楠-谁的心忘了收,http://em.21dtv.com/songs/60039961.mkv +刘德华-谁的心忘了收,http://em.21dtv.com/songs/60039960.mkv +自由发挥-3d舞力全失,http://em.21dtv.com/songs/60063499.mkv +曹格-数到五答应我,http://em.21dtv.com/songs/60039801.mkv +魏然-数到三我不哭,http://em.21dtv.com/songs/60100667.mkv +徐嘉华-圣诞Song,http://em.21dtv.com/songs/60107742.mkv +唐古-数到三就忘记,http://em.21dtv.com/songs/60105710.mkv +AKB48-素敌な三角关系,http://em.21dtv.com/songs/60077783.mkv +陈慧琳-数到三就不哭,http://em.21dtv.com/songs/60039800.mkv +陈慧琳-数到三就不哭(演唱会),http://em.21dtv.com/songs/60039799.mkv +Groove Coverage-上帝是个女孩,http://em.21dtv.com/songs/50000114.mkv +郭美美-上帝是个女孩,http://em.21dtv.com/songs/60085688.mkv +孙子涵-孙大圣的逆袭,http://em.21dtv.com/songs/60080713.mkv +春妹-山顶上的村庄,http://em.21dtv.com/songs/60037612.mkv +[Group] +groupName=十六万歌曲MV等 - 89 +任贤齐+魔幻力量-谁对你最温柔,http://em.21dtv.com/songs/60115679.mkv +李翊君-上帝没有帮助,http://em.21dtv.com/songs/60038013.mkv +张澜澜-谁的梦向天阙,http://em.21dtv.com/songs/60039956.mkv +文夏-省都卖花姑娘,http://em.21dtv.com/songs/60038656.mkv +龚格尔-傻大木的英明,http://em.21dtv.com/songs/60089092.mkv +杨洪基-水调歌头-游泳,http://em.21dtv.com/songs/60040228.mkv +佚名-圣诞公播(舞曲版),http://em.21dtv.com/songs/60064860.mkv +甲子慧-说得到做不到,http://em.21dtv.com/songs/60099426.mkv +乔幼-山顶的有情人,http://em.21dtv.com/songs/60130047.mkv +白冰冰-山顶的黑狗兄,http://em.21dtv.com/songs/60037607.mkv +刘德华-上帝创造女人,http://em.21dtv.com/songs/60038010.mkv +佚名-谁都不能代替(无原唱),http://em.21dtv.com/songs/60039977.mkv +李健-十点半的地铁,http://em.21dtv.com/songs/60133788.mkv +BEYOND-是错也再不分,http://em.21dtv.com/songs/60092144.mkv +群星-四川依然美丽,http://em.21dtv.com/songs/60083853.mkv +彭-四川依然美丽,http://em.21dtv.com/songs/60040650.mkv +陆海涛-瘦成一道闪电,http://em.21dtv.com/songs/60120066.mkv +官恩娜-失常,http://em.21dtv.com/songs/60111019.mkv +徐靖博-谁曾为我流泪,http://em.21dtv.com/songs/60039953.mkv +廖名扬-四川是我的家,http://em.21dtv.com/songs/60067458.mkv +田震-伸出手让我看,http://em.21dtv.com/songs/60091763.mkv +金三-伸出你我的手,http://em.21dtv.com/songs/60123247.mkv +小臭臭-伸出你的手语,http://em.21dtv.com/songs/60083774.mkv +刘丽-山冲里毛竹美,http://em.21dtv.com/songs/60090682.mkv +JUSTIN BIEBER-santa claus is coming to town,http://em.21dtv.com/songs/60073837.mkv +女声-santa claus is coming to town,http://em.21dtv.com/songs/60004804.mkv +男声-santa claus is coming to town,http://em.21dtv.com/songs/60004803.mkv +BOBO-双城华谊兄弟,http://em.21dtv.com/songs/60087179.mkv +佚名-伸出告别的手,http://em.21dtv.com/songs/60038244.mkv +崔苗-陕北这片热土,http://em.21dtv.com/songs/60123877.mkv +陈义正-上辈子的绝情,http://em.21dtv.com/songs/60128514.mkv +童丽-十八相送之三,http://em.21dtv.com/songs/60077593.mkv +甄妮+凌波-十八相送之二(演唱会),http://em.21dtv.com/songs/60038926.mkv +于全莉-谁伴我双飞它,http://em.21dtv.com/songs/60101882.mkv +黄鸿升-谁比我还懂你,http://em.21dtv.com/songs/60069834.mkv +阿鲁阿卓-石壁我的家园,http://em.21dtv.com/songs/60077614.mkv +童唱-舒伯特摇篮曲,http://em.21dtv.com/songs/60039748.mkv +吴涤清-舒伯特小夜曲,http://em.21dtv.com/songs/60067439.mkv +陆家俊-十八岁的忧郁,http://em.21dtv.com/songs/60038914.mkv +芦伟+姜颖桥-十八岁的天空,http://em.21dtv.com/songs/60129532.mkv +万昕-烧不死的情歌,http://em.21dtv.com/songs/60067411.mkv +吕梓铷-伤不起的爱情,http://em.21dtv.com/songs/60114440.mkv +冷漠-伤不起的爱情,http://em.21dtv.com/songs/60085682.mkv +雨天+韩晶-伤不起的爱情,http://em.21dtv.com/songs/60064833.mkv +谭咏麟-说吧你会得到(演唱会),http://em.21dtv.com/songs/60040342.mkv +郑嘉颖-谁比你更重要,http://em.21dtv.com/songs/60039941.mkv +白冰冰-三百六十五夜,http://em.21dtv.com/songs/60037173.mkv +LOS P.ISTON4-受不了没有趣(无原唱),http://em.21dtv.com/songs/60039712.mkv +周灵燕-说不尽的乡情,http://em.21dtv.com/songs/60040354.mkv +曾沛慈-数不尽的星空,http://em.21dtv.com/songs/60077678.mkv +巩宏国-深不见底的悲,http://em.21dtv.com/songs/60067416.mkv +好妹妹乐队+陈粒-38号大迪曲,http://em.21dtv.com/songs/60127890.mkv +孙淑媚-舍不得又如何,http://em.21dtv.com/songs/60108429.mkv +叶玉卿-舍不得又如何,http://em.21dtv.com/songs/60038231.mkv +蔡依林-舍不得又如何,http://em.21dtv.com/songs/60038230.mkv +望海高歌-舍不得忘记你,http://em.21dtv.com/songs/60038228.mkv +林忆莲-舍不得说再见,http://em.21dtv.com/songs/60038226.mkv +郭富城-舍不得让你走,http://em.21dtv.com/songs/60038225.mkv +斗妍-舍不得让你走,http://em.21dtv.com/songs/60038224.mkv +王杰-舍不得让你走(无原唱),http://em.21dtv.com/songs/60038223.mkv +马旋-舍不得骗自己,http://em.21dtv.com/songs/60128603.mkv +贺娜-陕北的女娃娃,http://em.21dtv.com/songs/60135766.mkv +李丹阳+杨洪基-舍不得你们走,http://em.21dtv.com/songs/60071107.mkv +佚名-舍不得你离去,http://em.21dtv.com/songs/60038213.mkv +潘美辰-舍不得你离去,http://em.21dtv.com/songs/60038212.mkv +张宇-舍不得你的爱,http://em.21dtv.com/songs/60091085.mkv +高因-舍不得离开你,http://em.21dtv.com/songs/60067413.mkv +张信哲-舍不得对不起,http://em.21dtv.com/songs/60038202.mkv +周传雄-说不出有多爱,http://em.21dtv.com/songs/60090830.mkv +胡宇威-说不出我爱你,http://em.21dtv.com/songs/60106210.mkv +羽泉-谁不曾谁不想,http://em.21dtv.com/songs/60039944.mkv +童唱-shell be coming round the mou,http://em.21dtv.com/songs/60004968.mkv +The One+金延智-说不出口的话,http://em.21dtv.com/songs/60113195.mkv +BLAKE SHELTON-sure be cool if you did,http://em.21dtv.com/songs/60073964.mkv +詹雅雯-失败成功之本,http://em.21dtv.com/songs/60038706.mkv +夏韶声-说不出的未来(演唱会),http://em.21dtv.com/songs/60040352.mkv +王心凌-说不出的味道,http://em.21dtv.com/songs/60103447.mkv +夏文晴-说不出的思念,http://em.21dtv.com/songs/60115768.mkv +小钟-送不出的玫瑰,http://em.21dtv.com/songs/60040737.mkv +柳影虹-说不出的快活,http://em.21dtv.com/songs/60088134.mkv +伊能静-说不出的快活,http://em.21dtv.com/songs/60040351.mkv +葛兰-说不出的快活,http://em.21dtv.com/songs/60040350.mkv +周蕙-说不出的快活(演唱会),http://em.21dtv.com/songs/60040349.mkv +叶丽仪-说不出的快活(演唱会),http://em.21dtv.com/songs/60040348.mkv +沈殿霞-说不出的快活(演唱会),http://em.21dtv.com/songs/60040347.mkv +林志炫-说不出的告白,http://em.21dtv.com/songs/60088101.mkv +林志炫-说不出的告别,http://em.21dtv.com/songs/60040346.mkv +佚名-陕北1988,http://em.21dtv.com/songs/60037745.mkv +庹宗华+莎莉-是爱在敲门吗(无原唱),http://em.21dtv.com/songs/60039385.mkv +佚名-something about the way you lo,http://em.21dtv.com/songs/60005155.mkv +安苛-示爱誓爱逝爱,http://em.21dtv.com/songs/60086830.mkv +酷兔兔+司文-神啊求求你啦,http://em.21dtv.com/songs/60038435.mkv +邓丽君-使爱情更美丽,http://em.21dtv.com/songs/60039186.mkv +杨罡-说爱你到永远,http://em.21dtv.com/songs/60068678.mkv +黄国俊-谁爱你到永久(无原唱),http://em.21dtv.com/songs/60039932.mkv +FUN4-说爱你的时候,http://em.21dtv.com/songs/60079846.mkv +FUN4乐团-说爱你的时候,http://em.21dtv.com/songs/60077722.mkv +曹格-Saving All My Love For You,http://em.21dtv.com/songs/60099277.mkv +中国好声音第二季-Saving All My Love For You(孟楠),http://em.21dtv.com/songs/60081566.mkv +GERRY GOFFIN-saving all my love for you,http://em.21dtv.com/songs/60004825.mkv +佚名-smile a little smile for me,http://em.21dtv.com/songs/60005079.mkv +岚-Sakura,http://em.21dtv.com/songs/60111030.mkv +陈小春-神啊救救我吧,http://em.21dtv.com/songs/60090291.mkv +陈小春+郑伊健+谢天华+林晓峰+钱嘉乐-神啊 救救我,http://em.21dtv.com/songs/60114206.mkv +钟汉良-是爱还是伤害,http://em.21dtv.com/songs/60039382.mkv +佚名-是爱还是伤害,http://em.21dtv.com/songs/60039381.mkv +孙盛希-是爱还是陪伴,http://em.21dtv.com/songs/60104045.mkv +叶时伟-深爱2012,http://em.21dtv.com/songs/60077545.mkv +李蕙敏-说爱便爱一生,http://em.21dtv.com/songs/60040335.mkv +陈林波-人在外心在家,http://em.21dtv.com/songs/60114866.mkv +羽翘-认真你就输了,http://em.21dtv.com/songs/60098698.mkv +成铭-人走了茶凉了,http://em.21dtv.com/songs/60096302.mkv +卓依婷-认真爱一个人,http://em.21dtv.com/songs/60094451.mkv +曹越-若有缘再相见,http://em.21dtv.com/songs/60105946.mkv +MR.-人一世物一世,http://em.21dtv.com/songs/60066271.mkv +龙千玉+傅振辉-日月人的舞台,http://em.21dtv.com/songs/60074677.mkv +郭金发-日月人的目屎,http://em.21dtv.com/songs/60095944.mkv +汤潮-人一但变了心,http://em.21dtv.com/songs/60088200.mkv +汤潮-人一旦变了心,http://em.21dtv.com/songs/60036470.mkv +曾胜-让幸福开满花,http://em.21dtv.com/songs/60100099.mkv +邓丽君-让心儿圈起你,http://em.21dtv.com/songs/60088744.mkv +吴是闳-任性的想和你,http://em.21dtv.com/songs/60125290.mkv +VOX 玩声乐团-让我做你的家,http://em.21dtv.com/songs/60097726.mkv +潘美辰-让我再爱一次,http://em.21dtv.com/songs/60036192.mkv +王杰-让我永远爱你,http://em.21dtv.com/songs/60036188.mkv +何遇程-让我一个人走,http://em.21dtv.com/songs/60112511.mkv +梁雁翎-让我一个人走,http://em.21dtv.com/songs/60036184.mkv +正歌-让我笑让我哭,http://em.21dtv.com/songs/60108652.mkv +马云飞-让我学会成长,http://em.21dtv.com/songs/60067365.mkv +燕妮-让微笑多一点,http://em.21dtv.com/songs/60088263.mkv +林俊杰-让我心动的人,http://em.21dtv.com/songs/60036181.mkv +红蔷薇-让我为你祝福,http://em.21dtv.com/songs/60116189.mkv +齐秦-让我让你崩溃,http://em.21dtv.com/songs/60036170.mkv +韩宝仪-让我悄悄离去,http://em.21dtv.com/songs/60036167.mkv +谭英-让我牵你的手,http://em.21dtv.com/songs/60111410.mkv +汪峰-让我们在一起,http://em.21dtv.com/songs/60085639.mkv +郑璐-让我们舞起来(演),http://em.21dtv.com/songs/60099539.mkv +宋祖英-让我们舞起来,http://em.21dtv.com/songs/60036155.mkv +常健鸿-让我们跳起来(演唱会),http://em.21dtv.com/songs/60036154.mkv +张冬玲-让我默默离开,http://em.21dtv.com/songs/60105018.mkv +高胜美-让我默默离开,http://em.21dtv.com/songs/60036161.mkv +佚名-让我们看云去,http://em.21dtv.com/songs/60036153.mkv +太阳部落-让我们回去吧,http://em.21dtv.com/songs/60097725.mkv +阿鲁阿卓-让我们回去吧,http://em.21dtv.com/songs/60088845.mkv +叶俊华-让我们回家吧,http://em.21dtv.com/songs/60072337.mkv +阿鲁阿卓-让我们回家吧(演唱会),http://em.21dtv.com/songs/60067362.mkv +代理-让我哭让我醉,http://em.21dtv.com/songs/60036145.mkv +钟嘉欣-让我继续爱你,http://em.21dtv.com/songs/60036140.mkv +索南扎西-让我好好爱你,http://em.21dtv.com/songs/60068615.mkv +姜育恒-让我好好爱你,http://em.21dtv.com/songs/60036135.mkv +奥杰阿格-让我带你回家,http://em.21dtv.com/songs/60120446.mkv +陈慧娴-让我抱着你哭,http://em.21dtv.com/songs/60036121.mkv +糯米-让我把梦做完,http://em.21dtv.com/songs/60088400.mkv +李腾-让我把歌唱完(演唱会),http://em.21dtv.com/songs/60036119.mkv +张宇-让头抬的更高,http://em.21dtv.com/songs/60089273.mkv +佚名-ready to take a chance again,http://em.21dtv.com/songs/60004621.mkv +谢霆锋-忍痛忍气忍爱,http://em.21dtv.com/songs/60092111.mkv +王芷蕾-让他们都知道,http://em.21dtv.com/songs/60036108.mkv +王建杰-日头困月娘醒,http://em.21dtv.com/songs/60036661.mkv +彭家丽-仍是这样爱你,http://em.21dtv.com/songs/60092655.mkv +佚名-仍是这样爱你,http://em.21dtv.com/songs/60036602.mkv +芭比-燃烧中的引线,http://em.21dtv.com/songs/60036011.mkv +张学友-人生需要什么,http://em.21dtv.com/songs/60036449.mkv +伍佰-汝是我的心肝,http://em.21dtv.com/songs/60064814.mkv +龙千玉-人生是一条河,http://em.21dtv.com/songs/60136043.mkv +金门王+陈小霞-人生随意就好,http://em.21dtv.com/songs/60036442.mkv +佚名-人生是一个海,http://em.21dtv.com/songs/60036440.mkv +龙千玉-人生日正当中(无原唱),http://em.21dtv.com/songs/60075333.mkv +豪记大对唱-人生日正当中(无原唱),http://em.21dtv.com/songs/60036436.mkv +王瑞霞-阮是欠你多少,http://em.21dtv.com/songs/60037080.mkv +王默君-让思念伴着我,http://em.21dtv.com/songs/60090094.mkv +童安格-让思念伴着我,http://em.21dtv.com/songs/60036106.mkv +张栋梁-人生没有如果,http://em.21dtv.com/songs/60113475.mkv +刘辰希+吐洪江-让生命去等候,http://em.21dtv.com/songs/60103943.mkv +童安格-让生命去等候,http://em.21dtv.com/songs/60064785.mkv +关淑怡-人生可有知己(演唱会),http://em.21dtv.com/songs/60036420.mkv +叶德娴-人生究竟乜事,http://em.21dtv.com/songs/60092425.mkv +李玟-让世界更美丽,http://em.21dtv.com/songs/60036104.mkv +闫薇薇-人生几度相逢,http://em.21dtv.com/songs/60111470.mkv +林俊逸-让世界都听见,http://em.21dtv.com/songs/60085636.mkv +唐子宜-让世界充满爱,http://em.21dtv.com/songs/60111785.mkv +佚名-让世界充满爱,http://em.21dtv.com/songs/60036103.mkv +群星-让世界充满爱,http://em.21dtv.com/songs/60036102.mkv +张学友-仍是会喜欢你,http://em.21dtv.com/songs/60067368.mkv +方瑞娥+邱贤桂-人生的咸酸甜,http://em.21dtv.com/songs/60124013.mkv +佚名-人生的第一步,http://em.21dtv.com/songs/60036400.mkv +丁克森-燃烧吧小宇宙,http://em.21dtv.com/songs/60126559.mkv +钟镇涛-仍然心在想你,http://em.21dtv.com/songs/60036593.mkv +陈永业-仍然为你倾心,http://em.21dtv.com/songs/60036588.mkv +彭羚-仍然是最爱你,http://em.21dtv.com/songs/60036587.mkv +陈秀雯-仍然是最爱你(演唱会),http://em.21dtv.com/songs/60036586.mkv +李明洋+邱芸子-日日思夜夜梦,http://em.21dtv.com/songs/60036654.mkv +佚名-red roses for a blue lady,http://em.21dtv.com/songs/60004638.mkv +陈雷-日日春日日圆,http://em.21dtv.com/songs/60036650.mkv +陈国富+ABBY-仍然爱着耶稣(演唱会),http://em.21dtv.com/songs/60083715.mkv +黄思婷-日牵挂夜孤单,http://em.21dtv.com/songs/60036648.mkv +Beyonce-Rocket,http://em.21dtv.com/songs/60111584.mkv +SF9-如能与你相伴,http://em.21dtv.com/songs/60131107.mkv +陈琳-让你想不明白,http://em.21dtv.com/songs/60089534.mkv +陈瑞-让你疼着的鱼,http://em.21dtv.com/songs/60112361.mkv +M.C The Max-让你随风而逝,http://em.21dtv.com/songs/60121281.mkv +郑伊健-仍能情深爱上,http://em.21dtv.com/songs/60036580.mkv +郑伊健-仍能情深爱上(演唱会),http://em.21dtv.com/songs/60036579.mkv +王力宏-让你感动流泪,http://em.21dtv.com/songs/60091690.mkv +关良-让梦自由的飞,http://em.21dtv.com/songs/60113271.mkv +王莹-让明天更美好,http://em.21dtv.com/songs/60083699.mkv +王莹-让明天更美好(演唱会),http://em.21dtv.com/songs/60077316.mkv +合唱-人民警察之歌,http://em.21dtv.com/songs/60036364.mkv +罗福祥-人民的好公仆,http://em.21dtv.com/songs/60106191.mkv +陈慧琳-人们不会忘记(演唱会),http://em.21dtv.com/songs/60036355.mkv +王菀之-融了钟的时间,http://em.21dtv.com/songs/60036704.mkv +S.E.C-Rock Like You Never Rock Before,http://em.21dtv.com/songs/60081763.mkv +李盈盈-人类呀爱我吧,http://em.21dtv.com/songs/60113643.mkv +郝婉彤-人类未解之谜,http://em.21dtv.com/songs/60134322.mkv +群星-让绿色听得见,http://em.21dtv.com/songs/60036064.mkv +李利依-热恋你的美丽,http://em.21dtv.com/songs/60068618.mkv +毕达-若可以我愿意,http://em.21dtv.com/songs/60077440.mkv +么珊-让快乐飞起来,http://em.21dtv.com/songs/60128739.mkv +莫旭秋-raindrops keep falling on my head(演唱会),http://em.21dtv.com/songs/60073787.mkv +王若琳-raindrops keep fallinon my h,http://em.21dtv.com/songs/60063712.mkv +佚名-raindrops keep falling on my head,http://em.21dtv.com/songs/60004601.mkv +西子-如今心有不甘,http://em.21dtv.com/songs/60077433.mkv +郭富城-仍记起这么多,http://em.21dtv.com/songs/60093346.mkv +王野-让寂寞更寂寞,http://em.21dtv.com/songs/60077314.mkv +佚名-人间就是这样,http://em.21dtv.com/songs/60036337.mkv +罗大佑+金智娟-如今才是唯一,http://em.21dtv.com/songs/60037014.mkv +Beast-Ribbon,http://em.21dtv.com/songs/60123450.mkv +胡夏-人海中遇见你,http://em.21dtv.com/songs/60100397.mkv +林育群-人海中遇见你,http://em.21dtv.com/songs/60077349.mkv +林子祥-人海中一个你,http://em.21dtv.com/songs/60036322.mkv +于樱樱-让回忆随风飘,http://em.21dtv.com/songs/60089592.mkv +余天-让回忆随风飘,http://em.21dtv.com/songs/60036059.mkv +河图-如花,http://em.21dtv.com/songs/60110338.mkv +倪安东-然后,http://em.21dtv.com/songs/60108309.mkv +子安圣皓-然后我们懂了,http://em.21dtv.com/songs/60063480.mkv +万芳+伍佰-然后你怎么说(演唱会),http://em.21dtv.com/songs/60035990.mkv +CLOWN-然后没有然后,http://em.21dtv.com/songs/60061988.mkv +双星-热烘烘的新年,http://em.21dtv.com/songs/60077338.mkv +佚名-热烘烘的太阳,http://em.21dtv.com/songs/60036241.mkv +江志丰-如何搁再爱你,http://em.21dtv.com/songs/60108660.mkv +邓丽君-让花儿为你开,http://em.21dtv.com/songs/60103607.mkv +林子娟-如何把你忘记,http://em.21dtv.com/songs/60036997.mkv +苏有朋-如何爱一个人,http://em.21dtv.com/songs/60036996.mkv +江明学-如果真有来生(无原唱),http://em.21dtv.com/songs/60036992.mkv +陈斌-如果真的可以,http://em.21dtv.com/songs/60108978.mkv +齐豫-如果真的不要,http://em.21dtv.com/songs/60036990.mkv +张峥-如果再次相遇,http://em.21dtv.com/songs/60082041.mkv +蔡献华+李晶-如果有下辈子,http://em.21dtv.com/songs/60083733.mkv +安香-如果有下辈子,http://em.21dtv.com/songs/60077426.mkv +范炜+程渤智-如果有那一天,http://em.21dtv.com/songs/60086791.mkv +汤加丽-如果有那一天,http://em.21dtv.com/songs/60036961.mkv +原子霏+胡译仁-如果有两个你,http://em.21dtv.com/songs/60130168.mkv +林子祥-如果有话要说,http://em.21dtv.com/songs/60036958.mkv +郑秀文-如果一个女人,http://em.21dtv.com/songs/60036954.mkv +小荣-如果幸福的错,http://em.21dtv.com/songs/60036953.mkv +郭晓晓-如果我要结婚,http://em.21dtv.com/songs/60135835.mkv +脱拉库乐团+蔡黄汝-人工卫星导航,http://em.21dtv.com/songs/60113987.mkv +丁小芹-如果我是男生,http://em.21dtv.com/songs/60036934.mkv +郑秀文-如果我是男人,http://em.21dtv.com/songs/60036933.mkv +隐藏乐队-如果我能回头,http://em.21dtv.com/songs/60036930.mkv +小山-如果我们分开,http://em.21dtv.com/songs/60083731.mkv +孙一璟-如果我会功夫,http://em.21dtv.com/songs/60036919.mkv +严艺丹-如果我答应你,http://em.21dtv.com/songs/60113224.mkv +星弟-如果天还没黑,http://em.21dtv.com/songs/60110239.mkv +星弟-如果天还没黑,http://em.21dtv.com/songs/60083728.mkv +林峰-如果时间来到,http://em.21dtv.com/songs/60036908.mkv +林峰-如果时间来到(演唱会),http://em.21dtv.com/songs/60036907.mkv +汪苏泷-如果时光倒流,http://em.21dtv.com/songs/60114645.mkv +B.A.D-如果你在这里,http://em.21dtv.com/songs/60036889.mkv +梁静茹-如果能在一起,http://em.21dtv.com/songs/60036844.mkv +刘文正-如果你在心中,http://em.21dtv.com/songs/60089164.mkv +洪杰-如果你也听说,http://em.21dtv.com/songs/60119768.mkv +尚雯婕-如果你也听说,http://em.21dtv.com/songs/60114510.mkv +孙伯纶-如果你也听说,http://em.21dtv.com/songs/60113400.mkv +孙伯纶-如果你也听说,http://em.21dtv.com/songs/60112618.mkv +张惠妹-如果你也听说,http://em.21dtv.com/songs/60036883.mkv +佚名-如果你要离去,http://em.21dtv.com/songs/60036882.mkv +李宗盛-如果你要离去,http://em.21dtv.com/songs/60036881.mkv +SNH48-如果你拥抱我,http://em.21dtv.com/songs/60109875.mkv +承伟-如果你也爱我,http://em.21dtv.com/songs/60077418.mkv +宋孟君+刘浩航-如果你喜欢我,http://em.21dtv.com/songs/60131350.mkv +谢霆锋-如果你是骗子,http://em.21dtv.com/songs/60036868.mkv +莫文蔚-如果你是李白,http://em.21dtv.com/songs/60036867.mkv +王菲-如果你是假的,http://em.21dtv.com/songs/60092999.mkv +江美琪-如果你说抱歉,http://em.21dtv.com/songs/60107016.mkv +郭富城-如果你认真过,http://em.21dtv.com/songs/60036865.mkv +俊歌-如果你能幸福,http://em.21dtv.com/songs/60105591.mkv +佚名-如果你嫁给我(DJ版),http://em.21dtv.com/songs/60097738.mkv +庞龙-如果你嫁给我,http://em.21dtv.com/songs/60036860.mkv +薛恒泰-如果你还喜欢,http://em.21dtv.com/songs/60061543.mkv +时金钰-如果你会快乐,http://em.21dtv.com/songs/60036859.mkv +蔡晓-如果你还爱我,http://em.21dtv.com/songs/60112216.mkv +光良-如果你还爱我(演唱会),http://em.21dtv.com/songs/60036856.mkv +陶靖-如果你不爱我,http://em.21dtv.com/songs/60124667.mkv +冷漠-如果你不爱我,http://em.21dtv.com/songs/60081923.mkv +诺诺-如果你不爱我,http://em.21dtv.com/songs/60066279.mkv +杜歌-如果你不爱我,http://em.21dtv.com/songs/60036852.mkv +谯帆-如果能不爱你,http://em.21dtv.com/songs/60114082.mkv +阿雅-如果你爱上我,http://em.21dtv.com/songs/60036847.mkv +E-LIN琳-如果能爱别人,http://em.21dtv.com/songs/60036841.mkv +钱宇-如果没有遇见,http://em.21dtv.com/songs/60077413.mkv +高以爱-如果没有明天,http://em.21dtv.com/songs/60036821.mkv +K ONE-如果没有明天,http://em.21dtv.com/songs/60036820.mkv +朱晨辰+杨承熹-如果没有离开,http://em.21dtv.com/songs/60124046.mkv +潘虹樾-如果没有离开,http://em.21dtv.com/songs/60036819.mkv +龙梅子-如果没遇见你,http://em.21dtv.com/songs/60124772.mkv +雅立-如果没遇见你,http://em.21dtv.com/songs/60088926.mkv +黄信佳-如果没遇见你,http://em.21dtv.com/songs/60036835.mkv +一单上达-如果没有后来,http://em.21dtv.com/songs/60099054.mkv +谢霆锋-如果没有感觉,http://em.21dtv.com/songs/60036818.mkv +田梓橙-如果可以重来,http://em.21dtv.com/songs/60124300.mkv +柴俊-如果可以选择,http://em.21dtv.com/songs/60116058.mkv +李恩美-如果可以倒流,http://em.21dtv.com/songs/60072350.mkv +云菲菲-如果可以不爱,http://em.21dtv.com/songs/60106584.mkv +俞灏明-如果可以爱你,http://em.21dtv.com/songs/60036810.mkv +钟舒曼-如果看见明天,http://em.21dtv.com/songs/60068630.mkv +莫文蔚-如果还有以后,http://em.21dtv.com/songs/60036800.mkv +卢凯彤-如果还有时间,http://em.21dtv.com/songs/60077406.mkv +罗志祥-如果还有如果,http://em.21dtv.com/songs/60081936.mkv +苗伟-如果还有如果,http://em.21dtv.com/songs/60069768.mkv +孙子涵-如果回忆能死,http://em.21dtv.com/songs/60072349.mkv +幻眼乐队-如果还有明天,http://em.21dtv.com/songs/60097737.mkv +薛岳-如果还有明天,http://em.21dtv.com/songs/60036799.mkv +薛岳+阿信-如果还有明天,http://em.21dtv.com/songs/60036798.mkv +超月组合-如果还有来生,http://em.21dtv.com/songs/60114108.mkv +红蔷薇-如果还有来世,http://em.21dtv.com/songs/60083722.mkv +寒武纪-如果还有来世,http://em.21dtv.com/songs/60083721.mkv +赵喜同-如果还有机会,http://em.21dtv.com/songs/60118937.mkv +郎郎-如果还能再见,http://em.21dtv.com/songs/60104478.mkv +周艳泓+马旭成-如果和你相爱,http://em.21dtv.com/songs/60066278.mkv +马旭成-如果和你相爱(演唱会),http://em.21dtv.com/songs/60036801.mkv +梁静茹-如果回到最初,http://em.21dtv.com/songs/60036803.mkv +汪峰-如果风不再吹,http://em.21dtv.com/songs/60102450.mkv +张恒远+汪峰-如果风不再吹,http://em.21dtv.com/songs/60085655.mkv +中国好声音第二季-如果风不再吹(汪峰+张恒远),http://em.21dtv.com/songs/60081585.mkv +韩磊-如果风不再吹,http://em.21dtv.com/songs/60036794.mkv +戴梅君+庄振凯-日孤单夜牵挂,http://em.21dtv.com/songs/60083717.mkv +苏永康-如果凳会说话,http://em.21dtv.com/songs/60036790.mkv +甄妮-如果曾经拥有,http://em.21dtv.com/songs/60036783.mkv +MC冰鑫-如果不曾相见,http://em.21dtv.com/songs/60132103.mkv +苏慧伦-如果爱是这样,http://em.21dtv.com/songs/60036769.mkv +李佳薇-如果爱是星光,http://em.21dtv.com/songs/60100114.mkv +晓月-如果爱请深爱,http://em.21dtv.com/songs/60100087.mkv +笑天-如果爱请深爱,http://em.21dtv.com/songs/60077400.mkv +魏来-如果爱请深爱,http://em.21dtv.com/songs/60069766.mkv +晨熙-如果爱请深爱,http://em.21dtv.com/songs/60068628.mkv +李翔-如果爱请深爱,http://em.21dtv.com/songs/60067372.mkv +杨罡-如果爱能轮回,http://em.21dtv.com/songs/60036757.mkv +默契-如果爱能回头,http://em.21dtv.com/songs/60099634.mkv +白雪-如果爱还活着,http://em.21dtv.com/songs/60036752.mkv +李俊旭-如果爱好好爱,http://em.21dtv.com/songs/60036753.mkv +李健-如果爱不在了,http://em.21dtv.com/songs/60036750.mkv +许志安-如果…如果…,http://em.21dtv.com/songs/60036744.mkv +二古月-让风带走回忆,http://em.21dtv.com/songs/60107471.mkv +周觅+黄子韬+灿烈-Rewind,http://em.21dtv.com/songs/60125320.mkv +Rascal Flatts-Rewind,http://em.21dtv.com/songs/60103811.mkv +陆智谭+Wendy-Return,http://em.21dtv.com/songs/60120064.mkv +枫舞+水滢-任尔东南西北,http://em.21dtv.com/songs/60112803.mkv +乐童音乐家-RE BYE,http://em.21dtv.com/songs/60122466.mkv +常海-热带鱼的邮件,http://em.21dtv.com/songs/60036235.mkv +孙淑媚-阮的痛是真的,http://em.21dtv.com/songs/60037065.mkv +张冬玲-人的命天注定,http://em.21dtv.com/songs/60129070.mkv +佚名-阮的故乡南都,http://em.21dtv.com/songs/60037058.mkv +黄乙玲-radio的点歌心情,http://em.21dtv.com/songs/60004590.mkv +吴碧霞-人大代表之歌,http://em.21dtv.com/songs/60036309.mkv +张智霖-如此这般想你,http://em.21dtv.com/songs/60036733.mkv +SS501-弱虫~臆病な仆,http://em.21dtv.com/songs/60037128.mkv +徐良-如此懦弱的我,http://em.21dtv.com/songs/60085650.mkv +游鸿明-让初恋像昨天,http://em.21dtv.com/songs/60111246.mkv +林忆莲-如从来未爱你,http://em.21dtv.com/songs/60036734.mkv +欣哲-忍不住的牵挂,http://em.21dtv.com/songs/60068625.mkv +周华健-若不是因为你(演唱会),http://em.21dtv.com/songs/60037100.mkv +廖峻-若不是为着你(无原唱),http://em.21dtv.com/songs/60037099.mkv +周韦杰-若不是太爱你,http://em.21dtv.com/songs/60071091.mkv +高洪章-人比人气死人(演唱会),http://em.21dtv.com/songs/60061535.mkv +坏碑唇-日不落的一天,http://em.21dtv.com/songs/60097714.mkv +蟑螂乐队-让爱自由自在,http://em.21dtv.com/songs/60092033.mkv +蟑螂合唱团-让爱自由自在,http://em.21dtv.com/songs/60088616.mkv +桑紫菲-让爱有个结局,http://em.21dtv.com/songs/60110321.mkv +群星-让爱无所不在,http://em.21dtv.com/songs/60036038.mkv +林忆莲-让爱人去流浪,http://em.21dtv.com/songs/60036036.mkv +MEATLOAF-rock and roll dreams come thro,http://em.21dtv.com/songs/60004700.mkv +枫舞-让爱飘进梦乡,http://em.21dtv.com/songs/60106026.mkv +佚名-让爱那么愉快,http://em.21dtv.com/songs/60036032.mkv +杜德伟-让爱那么愉快,http://em.21dtv.com/songs/60036031.mkv +Night Beds-Ramona,http://em.21dtv.com/songs/60124959.mkv +张萌萌-让爱卷土重来,http://em.21dtv.com/songs/60068614.mkv +张萌萌-让爱卷土重来(演唱会),http://em.21dtv.com/songs/60068613.mkv +陈瑞-让爱简简单单,http://em.21dtv.com/songs/60077312.mkv +刘德华-让爱火再燃烧,http://em.21dtv.com/songs/60036025.mkv +吴宏彬-让爱回到从前,http://em.21dtv.com/songs/60107576.mkv +李玟-让爱固定下来,http://em.21dtv.com/songs/60091342.mkv +李美凤-热爱cant let you go,http://em.21dtv.com/songs/60036228.mkv +赵星翔-让爱不再摇摆,http://em.21dtv.com/songs/60064779.mkv +EMELI SANDE-read all about it pt iii,http://em.21dtv.com/songs/60073789.mkv +林子祥-千枝针刺在心,http://em.21dtv.com/songs/60034185.mkv +林子祥-千枝针刺在心(演唱会),http://em.21dtv.com/songs/60034184.mkv +姚贝娜-牵着阳光的手,http://em.21dtv.com/songs/60094044.mkv +卢齐炜+小臭臭-牵着手一起走,http://em.21dtv.com/songs/60098171.mkv +彭筝-牵着手一辈子,http://em.21dtv.com/songs/60131427.mkv +谭咏麟-情中情戏中戏,http://em.21dtv.com/songs/60035468.mkv +杨卿俪-牵着妈妈的手,http://em.21dtv.com/songs/60108597.mkv +谢宏-请再爱我一回,http://em.21dtv.com/songs/60035614.mkv +佚名-牵引着你的心,http://em.21dtv.com/songs/60034255.mkv +群星-全宇宙过圣诞(演唱会),http://em.21dtv.com/songs/60035938.mkv +林心如-情愿为你受罪,http://em.21dtv.com/songs/60035454.mkv +东方骏-情愿为你受伤,http://em.21dtv.com/songs/60035453.mkv +邓紫琪-潜意式的残酷,http://em.21dtv.com/songs/60077156.mkv +郑嘉颖-全因身边有你,http://em.21dtv.com/songs/60035937.mkv +古天乐-全因身边有你,http://em.21dtv.com/songs/60035936.mkv +刀郎-去伊犁的路上,http://em.21dtv.com/songs/60110872.mkv +王杰-情已经失去了,http://em.21dtv.com/songs/60091708.mkv +摇滚女王-情愿孤独终老,http://em.21dtv.com/songs/60135308.mkv +海生-情一动心就痛,http://em.21dtv.com/songs/60125874.mkv +海生-情一动心就痛,http://em.21dtv.com/songs/60109496.mkv +刘松-沁园春大连赞,http://em.21dtv.com/songs/60128832.mkv +邱芸子-情也愁爱也恨,http://em.21dtv.com/songs/60035401.mkv +GROOVE COVERAGE-7 years and 50 days,http://em.21dtv.com/songs/60000029.mkv +龙剑笙-秋香一笑传情,http://em.21dtv.com/songs/60035740.mkv +刘惠呜+张惠兰-秋香一笑传情,http://em.21dtv.com/songs/60035739.mkv +郭彩洁-庆幸有你爱我,http://em.21dtv.com/songs/60088785.mkv +蔡淳佳-庆幸有你爱我,http://em.21dtv.com/songs/60035623.mkv +童唱-清溪水慢慢流,http://em.21dtv.com/songs/60034903.mkv +童唱-清溪水慢慢流(无原唱),http://em.21dtv.com/songs/60034902.mkv +张卫健-倾心倾意倾神,http://em.21dtv.com/songs/60034856.mkv +萧亚轩-全心全意爱你,http://em.21dtv.com/songs/60091979.mkv +罗志祥-全心全意爱你,http://em.21dtv.com/songs/60088434.mkv +七仙女-七仙女下凡了,http://em.21dtv.com/songs/60033787.mkv +解晓慧-七夕那点事儿,http://em.21dtv.com/songs/60127381.mkv +灵凤-七夕爱情故事,http://em.21dtv.com/songs/60033780.mkv +婧婧-七夕爱情故事,http://em.21dtv.com/songs/60033779.mkv +段千寻-七夕爱情故事,http://em.21dtv.com/songs/60033778.mkv +三宝-蔷薇下的许愿,http://em.21dtv.com/songs/60112485.mkv +邓丽君-祈望,http://em.21dtv.com/songs/60103606.mkv +郭富城-青蛙物语上集,http://em.21dtv.com/songs/60093368.mkv +范玮琪-亲吻寂寞旅人,http://em.21dtv.com/songs/60091955.mkv +1983组合-青蛙不是王子,http://em.21dtv.com/songs/60119085.mkv +望海高歌+雨柔+成云刚+卡密儿-亲VV的兄弟,http://em.21dtv.com/songs/60105956.mkv +萧全-请停止冷漠啊,http://em.21dtv.com/songs/60064761.mkv +郑中基-晴天阴天雨天,http://em.21dtv.com/songs/60035494.mkv +黄大炜-秋天1944,http://em.21dtv.com/songs/60134496.mkv +胡耀威-恰同学少年时,http://em.21dtv.com/songs/60034051.mkv +张鑫鑫-秋天,http://em.21dtv.com/songs/60115165.mkv +佚名-七逃人的气魄,http://em.21dtv.com/songs/60095385.mkv +江蕙-七鼗人的气魄,http://em.21dtv.com/songs/60033769.mkv +七郎-七桃人的目屎,http://em.21dtv.com/songs/60095375.mkv +七郎-迄逃人的目屎,http://em.21dtv.com/songs/60034031.mkv +阿吉仔-迄逃人的目屎,http://em.21dtv.com/songs/60034030.mkv +郭金发-迄逃人的目屎(无原唱),http://em.21dtv.com/songs/60034029.mkv +尹美莱-倾听你的诉说,http://em.21dtv.com/songs/60111832.mkv +郑斌-去他妈的脆弱,http://em.21dtv.com/songs/60113013.mkv +大风-青苔里的月亮,http://em.21dtv.com/songs/60034788.mkv +彩贝乐队DR-秋天里的幻想,http://em.21dtv.com/songs/60067355.mkv +邓丽君-蜻蜓姑娘之歌,http://em.21dtv.com/songs/60093235.mkv +李兴国-前腿弓后腿蹬,http://em.21dtv.com/songs/60034303.mkv +阿丽玛+奇力格尔-青铜鄂尔多斯,http://em.21dtv.com/songs/60034789.mkv +梅了了-秋天的银杏树,http://em.21dtv.com/songs/60098532.mkv +李杨飞-秋天的澄迈湾,http://em.21dtv.com/songs/60107789.mkv +黄大炜-秋天1944,http://em.21dtv.com/songs/60035716.mkv +谭咏麟-情是永愿着迷,http://em.21dtv.com/songs/60035342.mkv +雷安娜-情是永远着迷(演唱会),http://em.21dtv.com/songs/60035341.mkv +黄可门-秋水伊人的泪,http://em.21dtv.com/songs/60130929.mkv +刘继业+范甜丽-前世缘今生牵,http://em.21dtv.com/songs/60115028.mkv +刘继业-前世缘今生牵,http://em.21dtv.com/songs/60115027.mkv +张津涤-前世雨今生泪,http://em.21dtv.com/songs/60117732.mkv +王力宏-七十亿分之一,http://em.21dtv.com/songs/60109518.mkv +黄鸿升-七十亿分之一,http://em.21dtv.com/songs/60064699.mkv +李菓-缺少一点勇气,http://em.21dtv.com/songs/60081041.mkv +佚名-其实我也在乎,http://em.21dtv.com/songs/60033919.mkv +陈娇-恰似我要的爱,http://em.21dtv.com/songs/60068574.mkv +余文乐-其实我们很熟,http://em.21dtv.com/songs/60033909.mkv +韩春雨-其实我很在乎,http://em.21dtv.com/songs/60121117.mkv +蔡少芬-其实我很简单,http://em.21dtv.com/songs/60033901.mkv +苏永康-其实我很担心,http://em.21dtv.com/songs/60033900.mkv +彭纪谚-其实我不贪心,http://em.21dtv.com/songs/60033893.mkv +钟嘉欣-其实我不快乐,http://em.21dtv.com/songs/60033892.mkv +风之琳-情深深意浓浓,http://em.21dtv.com/songs/60067347.mkv +赵薇-情深深雨濛濛,http://em.21dtv.com/songs/60088703.mkv +苏有朋-情深深雨濛濛,http://em.21dtv.com/songs/60088535.mkv +赵薇-情深深雨蒙蒙,http://em.21dtv.com/songs/60035300.mkv +赵薇-情深深雨蒙蒙(演唱会),http://em.21dtv.com/songs/60035299.mkv +苏有朋-情深深雨蒙蒙(演唱会),http://em.21dtv.com/songs/60035298.mkv +龙千玉+俞隆华-情深深缘薄薄,http://em.21dtv.com/songs/60035301.mkv +邱芸子-情深深心绵绵,http://em.21dtv.com/songs/60035297.mkv +慢摇舞曲-祁式情歌DJ舞曲,http://em.21dtv.com/songs/30000602.mkv +冷漠+杨小曼-牵手情放手爱,http://em.21dtv.com/songs/60114410.mkv +巫启贤-其实你最重要,http://em.21dtv.com/songs/60033890.mkv +金志文-恰似你的温柔,http://em.21dtv.com/songs/60121028.mkv +齐秦+齐豫-恰似你的温柔,http://em.21dtv.com/songs/60098966.mkv +馨梓-恰似你的温柔,http://em.21dtv.com/songs/60090315.mkv +郑怡-恰似你的温柔,http://em.21dtv.com/songs/60090256.mkv +朴俊凯-恰似你的温柔,http://em.21dtv.com/songs/60089946.mkv +春天-恰似你的温柔,http://em.21dtv.com/songs/60086732.mkv +刘惜君-恰似你的温柔,http://em.21dtv.com/songs/60071046.mkv +卓依婷-恰似你的温柔,http://em.21dtv.com/songs/60034050.mkv +梁雁翎-恰似你的温柔,http://em.21dtv.com/songs/60034049.mkv +李翊君-恰似你的温柔,http://em.21dtv.com/songs/60034048.mkv +邓丽君-恰似你的温柔,http://em.21dtv.com/songs/60034047.mkv +郑秀文-恰似你的温柔(演唱会),http://em.21dtv.com/songs/60034046.mkv +颜福伟-恰似你的温柔(演唱会),http://em.21dtv.com/songs/60034045.mkv +蔡琴-恰似你的温柔(演唱会),http://em.21dtv.com/songs/60034044.mkv +姜洪波-前世来生的爱,http://em.21dtv.com/songs/60105740.mkv +姚婷-前生今世来生,http://em.21dtv.com/songs/60034288.mkv +云丹久美-前世今生的缘,http://em.21dtv.com/songs/60113237.mkv +黑龙-前世今生的爱,http://em.21dtv.com/songs/60089077.mkv +黄征-前生今日来世,http://em.21dtv.com/songs/60079930.mkv +方瑞娥+高向鹏-钱四脚人两脚,http://em.21dtv.com/songs/60034323.mkv +郑伊健-全世界的眼泪,http://em.21dtv.com/songs/60035903.mkv +褚乔-全世界的晚霞,http://em.21dtv.com/songs/60128381.mkv +TANK-全世界都停电,http://em.21dtv.com/songs/60035904.mkv +罗文裕-全世界的孤单,http://em.21dtv.com/songs/60097735.mkv +卷子-其实很想提起,http://em.21dtv.com/songs/60110906.mkv +原味-牵手的右前方,http://em.21dtv.com/songs/60034236.mkv +齐秦+齐豫-其实都是一样,http://em.21dtv.com/songs/60033871.mkv +林忆莲-情深本难解释,http://em.21dtv.com/songs/60035282.mkv +成龙+魏允熙-青石板的诉说,http://em.21dtv.com/songs/60117768.mkv +谢雷-情人+午夜香吻(演唱会),http://em.21dtv.com/songs/60035166.mkv +李传永-情人你在哪里,http://em.21dtv.com/songs/60072315.mkv +林智文+麻吉弟弟-情人节愚人节,http://em.21dtv.com/songs/60035227.mkv +张苡澄-情人节你好吗,http://em.21dtv.com/songs/60105869.mkv +胡杰夕-情人节没有爱,http://em.21dtv.com/songs/60068600.mkv +陈杰洲-情人节的早上(无原唱),http://em.21dtv.com/songs/60035219.mkv +本兮+小贱-情人节的夜晚,http://em.21dtv.com/songs/60077252.mkv +郝刚-情人节的夜晚,http://em.21dtv.com/songs/60064745.mkv +蓝乐-情人节的眼泪,http://em.21dtv.com/songs/60094279.mkv +张祥洪-情人节的那天,http://em.21dtv.com/songs/60085617.mkv +王爵ALSTON-情人节的电话,http://em.21dtv.com/songs/60086772.mkv +范文泽-情人节的爱情,http://em.21dtv.com/songs/60117165.mkv +后来者-沁入骨髓的爱,http://em.21dtv.com/songs/60099861.mkv +高峰-情人的山坡上(无原唱),http://em.21dtv.com/songs/60035189.mkv +佚名-情人的脚步声,http://em.21dtv.com/songs/60035188.mkv +佚名-情人的黄衬衫,http://em.21dtv.com/songs/60035187.mkv +谢雷-情人的黄衬衫,http://em.21dtv.com/songs/60035186.mkv +张柏芝-情人不会忘记,http://em.21dtv.com/songs/60035181.mkv +小灵灵-亲亲猪猪宝贝,http://em.21dtv.com/songs/60034600.mkv +腾讯-亲亲猪猪宝贝,http://em.21dtv.com/songs/60034599.mkv +何韵诗-千千万万个我(演唱会),http://em.21dtv.com/songs/60034150.mkv +周华健-亲亲我的宝贝,http://em.21dtv.com/songs/60034597.mkv +周华健-亲亲我的宝贝(演唱会),http://em.21dtv.com/songs/60034596.mkv +梦露乐团-亲亲我的宝贝(无原唱),http://em.21dtv.com/songs/60034595.mkv +荣洽+宋毅-秋千上的记忆,http://em.21dtv.com/songs/60112179.mkv +宋毅-秋千上的记忆,http://em.21dtv.com/songs/60103209.mkv +吴德华-求求你原谅我,http://em.21dtv.com/songs/60035806.mkv +王立东-求求你饶了我,http://em.21dtv.com/songs/60119823.mkv +杨刚-求求你告诉我,http://em.21dtv.com/songs/60035803.mkv +于玄子-求求你给点力,http://em.21dtv.com/songs/60077295.mkv +慢摇舞曲-求求你给点爱(2013弹Club Dj小强 Remix),http://em.21dtv.com/songs/30000594.mkv +金城-求求你给点爱,http://em.21dtv.com/songs/60083688.mkv +梁红兵-亲亲你的酒窝,http://em.21dtv.com/songs/60112811.mkv +天涯传说-亲亲你抱抱你,http://em.21dtv.com/songs/60034591.mkv +梁川宇-情牵江门五邑,http://em.21dtv.com/songs/60116070.mkv +陈思思-亲亲的中国人,http://em.21dtv.com/songs/60034587.mkv +何川-亲亲的一句话,http://em.21dtv.com/songs/60034586.mkv +刘玉东-亲亲的雪莲花,http://em.21dtv.com/songs/60118396.mkv +蒙克-亲亲的西北风[演],http://em.21dtv.com/songs/60101677.mkv +蒙克-亲亲的西北风(演唱会),http://em.21dtv.com/songs/60061508.mkv +李丹阳-亲亲的茉莉花,http://em.21dtv.com/songs/60034585.mkv +郝萌-亲亲的老百姓,http://em.21dtv.com/songs/60121006.mkv +张艳君-亲亲的脚手架,http://em.21dtv.com/songs/60111084.mkv +阎维文-轻轻的呼唤你,http://em.21dtv.com/songs/60088825.mkv +邓丽君-悄悄地告诉你,http://em.21dtv.com/songs/60102773.mkv +高瑜-轻轻的告诉你,http://em.21dtv.com/songs/60098950.mkv +杨钰莹-轻轻地告诉你,http://em.21dtv.com/songs/60088084.mkv +春天-轻轻地告诉你,http://em.21dtv.com/songs/60079868.mkv +卓依婷-轻轻地告诉你,http://em.21dtv.com/songs/60034806.mkv +杨钰莹-轻轻的告诉你,http://em.21dtv.com/songs/60034803.mkv +杨钰莹-轻轻的告诉你(演唱会),http://em.21dtv.com/songs/60034802.mkv +天骏-亲亲的二人台,http://em.21dtv.com/songs/60121547.mkv +唐薇-亲亲的大草原,http://em.21dtv.com/songs/60133518.mkv +李吟-期盼最爱的你,http://em.21dtv.com/songs/60077110.mkv +涓子-期盼最爱的你,http://em.21dtv.com/songs/60067316.mkv +范拥军-期盼世界和平,http://em.21dtv.com/songs/60103538.mkv +陈小涛-清平乐六盘山,http://em.21dtv.com/songs/60034892.mkv +佚名-清平乐 六盘山,http://em.21dtv.com/songs/60034891.mkv +尹光+胡美仪-俏潘安之店遇,http://em.21dtv.com/songs/60034450.mkv +李克勤-请你早睡早起,http://em.21dtv.com/songs/60035594.mkv +陈升-去年在北海道,http://em.21dtv.com/songs/60035853.mkv +江语晨-请你勇敢一点,http://em.21dtv.com/songs/60035593.mkv +张博-欠你一个婚礼,http://em.21dtv.com/songs/60125495.mkv +张博-欠你一个婚礼,http://em.21dtv.com/songs/60122710.mkv +周游格-欠你一场婚礼(演唱会),http://em.21dtv.com/songs/60069716.mkv +甲子蕙-情难忘意难忘,http://em.21dtv.com/songs/60035135.mkv +佚名-青年团员之歌,http://em.21dtv.com/songs/60034754.mkv +曾静玟+范玮琪-千年,http://em.21dtv.com/songs/60094525.mkv +吕方-请你试着爱我,http://em.21dtv.com/songs/60035582.mkv +张明敏-青年人中国心,http://em.21dtv.com/songs/60034753.mkv +伦永亮-情暖情醉情牵,http://em.21dtv.com/songs/60035148.mkv +王麟-去年买了个表,http://em.21dtv.com/songs/60081810.mkv +马旭东-去你妹的爱情,http://em.21dtv.com/songs/60077299.mkv +周艳泓+金润吉-请你继续爱我,http://em.21dtv.com/songs/60103163.mkv +江淑娜-请你记得我好,http://em.21dtv.com/songs/60035565.mkv +望海高歌-牵牛花竹篱笆,http://em.21dtv.com/songs/60099286.mkv +萧磊-千年后会更美,http://em.21dtv.com/songs/60072294.mkv +王艺-千年后的轮回,http://em.21dtv.com/songs/60034123.mkv +蔡小虎+林姍-情难分爱难离,http://em.21dtv.com/songs/60095893.mkv +邱芸子+陈中-情难断梦袜醒,http://em.21dtv.com/songs/60035119.mkv +陈中-情难断梦抹醒,http://em.21dtv.com/songs/60095980.mkv +方顺吉+陈韦霖-情难断梦抹醒,http://em.21dtv.com/songs/60082070.mkv +曾心梅+陈中-情难断梦袂醒,http://em.21dtv.com/songs/60035118.mkv +寒武纪-强扭的瓜不甜,http://em.21dtv.com/songs/60116737.mkv +伍浩哲+陈美凤-情难断断袜离,http://em.21dtv.com/songs/60035117.mkv +佚名-情难断断抹离(无原唱),http://em.21dtv.com/songs/60035116.mkv +陈秀玲+陈中-情难断断袂离,http://em.21dtv.com/songs/60035115.mkv +伍浩哲-情难断断抹离(无原唱),http://em.21dtv.com/songs/60012357.mkv +李克勤-请你不要难过,http://em.21dtv.com/songs/60103351.mkv +夹子太硬啦-请你帮我升级,http://em.21dtv.com/songs/60035537.mkv +陈明栋-请你把我背回,http://em.21dtv.com/songs/60123300.mkv +黄乙玲-青梅竹马之爱(无原唱),http://em.21dtv.com/songs/60057328.mkv +徐良+孙羽幽-七秒钟的记忆,http://em.21dtv.com/songs/60077105.mkv +尚雯婕-倾慕者的幻想,http://em.21dtv.com/songs/60066239.mkv +陈雷-切抹熄的灯火,http://em.21dtv.com/songs/60034457.mkv +韩宝仪-情绵绵雨绵绵,http://em.21dtv.com/songs/60035108.mkv +韩再芬-情蜜蜜意绵绵,http://em.21dtv.com/songs/60035106.mkv +陈雷+谢金燕-情茫茫心茫茫,http://em.21dtv.com/songs/60035090.mkv +王莹+远航-情妹妹情哥哥,http://em.21dtv.com/songs/60115309.mkv +办桌阿龙+苏又榕-情绵绵爱绵绵,http://em.21dtv.com/songs/60035107.mkv +段千寻-全民抗震之歌,http://em.21dtv.com/songs/60035887.mkv +顾莉雅-清明节的思念,http://em.21dtv.com/songs/60122271.mkv +张津涤-千里眼顺风耳,http://em.21dtv.com/songs/60126889.mkv +秀兰玛雅-情路越爱越痛(无原唱),http://em.21dtv.com/songs/60035077.mkv +王俊凯(TFBoys)-七里香,http://em.21dtv.com/songs/60104299.mkv +龙千玉-千里路万里情,http://em.21dtv.com/songs/60034099.mkv +吴琼-晴朗朗的月亮,http://em.21dtv.com/songs/60099148.mkv +大小姐+香蕉哥哥-起立敬礼坐下,http://em.21dtv.com/songs/60034017.mkv +尹相杰-前楼的小姑娘,http://em.21dtv.com/songs/60034281.mkv +唐美华-去看苗乡侗寨,http://em.21dtv.com/songs/60110950.mkv +TWINS-请靠近我一点,http://em.21dtv.com/songs/60092225.mkv +岳菲-清江志珠江情,http://em.21dtv.com/songs/60082038.mkv +贺一航-请记住我的爱,http://em.21dtv.com/songs/60129626.mkv +苏永康-请将音量收细(演唱会),http://em.21dtv.com/songs/60035530.mkv +丁晓红-清江清长阳长,http://em.21dtv.com/songs/60106566.mkv +戴佩妮-七九八九九九,http://em.21dtv.com/songs/60033744.mkv +米粒+谢桐-穷孩子富孩子,http://em.21dtv.com/songs/60085626.mkv +阿四-请回到我这里,http://em.21dtv.com/songs/60112333.mkv +罗嘉良+关咏荷-奇哥再闯情关,http://em.21dtv.com/songs/60033931.mkv +许嵩-千古,http://em.21dtv.com/songs/60115396.mkv +阿兰-千古,http://em.21dtv.com/songs/60113037.mkv +本兮+小伟-奇怪我不懂爱,http://em.21dtv.com/songs/60085577.mkv +九斌子-情歌里的眼泪,http://em.21dtv.com/songs/60115673.mkv +星月组合-情哥哥情妹妹,http://em.21dtv.com/songs/60133752.mkv +星月组合-情哥哥情妹妹,http://em.21dtv.com/songs/60126956.mkv +大庆小芳-情哥哥唱情歌,http://em.21dtv.com/songs/60081862.mkv +红蔷薇+陈岩-情歌2013,http://em.21dtv.com/songs/60097788.mkv +金泽+许佳慧-情歌2012,http://em.21dtv.com/songs/60077237.mkv +CRAZY秀-情歌2012,http://em.21dtv.com/songs/60061515.mkv +詹雅雯-情孤单爱认命,http://em.21dtv.com/songs/60035010.mkv +冷漠+金泽-情歌2012,http://em.21dtv.com/songs/60083658.mkv +崔来宾-秋风里的妈妈,http://em.21dtv.com/songs/60123867.mkv +郝云-群发的我不回,http://em.21dtv.com/songs/60096516.mkv +徐在明-秋风吹秋雨寒,http://em.21dtv.com/songs/60113516.mkv +冷酷-秋风吹秋雨寒,http://em.21dtv.com/songs/60111709.mkv +吴奇隆-奇而浓的狂想,http://em.21dtv.com/songs/60033929.mkv +王玮-期待我们的爱,http://em.21dtv.com/songs/60080287.mkv +丁小芹-请对我好一点,http://em.21dtv.com/songs/60090456.mkv +龙千玉-情的锁爱的磨,http://em.21dtv.com/songs/60034952.mkv +文奎-确定让你幸福,http://em.21dtv.com/songs/60087909.mkv +莫艳琳-齐达内we say hi(演唱会),http://em.21dtv.com/songs/60033857.mkv +阿丽玛+奇力格尔-请到内蒙古来,http://em.21dtv.com/songs/60035517.mkv +阿幼朵-黔东南的七月(演唱会),http://em.21dtv.com/songs/60034333.mkv +佚名-请大家来得道(无原唱),http://em.21dtv.com/songs/60035514.mkv +郑秀文-秋冬爱的故事,http://em.21dtv.com/songs/60035658.mkv +DJ舞曲-汽车专用慢摇,http://em.21dtv.com/songs/50000185.mkv +龚诗嘉-起初只是朋友,http://em.21dtv.com/songs/60034002.mkv +王雪娥-青春阳光欢笑,http://em.21dtv.com/songs/60034729.mkv +TFBOYS-青春修炼手册,http://em.21dtv.com/songs/60103044.mkv +贺世哲-求苍天一件事,http://em.21dtv.com/songs/60085629.mkv +苏有朋-青春期的故事,http://em.21dtv.com/songs/60090181.mkv +逃跑计划-青春没有终点,http://em.21dtv.com/songs/60100490.mkv +叶胜钦-青春就是本钱,http://em.21dtv.com/songs/60034688.mkv +林一峰-青草地溪水旁(演唱会),http://em.21dtv.com/songs/60034653.mkv +彭青-青春多是无奈,http://em.21dtv.com/songs/60077200.mkv +白智英+宋宥彬-清晨的林荫道,http://em.21dtv.com/songs/60112131.mkv +子祺-启程的好日子,http://em.21dtv.com/songs/60063493.mkv +达明一派-青春残酷物语,http://em.21dtv.com/songs/60034668.mkv +菲菲+安徒生+疯闹芯+天狼-情长长爱久久,http://em.21dtv.com/songs/60103542.mkv +左成-青春被猪拱了,http://em.21dtv.com/songs/60135176.mkv +五色石南叶-青·长安青骨,http://em.21dtv.com/songs/60115676.mkv +李艳-请别再说爱我,http://em.21dtv.com/songs/60135377.mkv +佚名-请别再说爱我,http://em.21dtv.com/songs/60035504.mkv +凯歌-请不要再爱我,http://em.21dtv.com/songs/60097780.mkv +于立成-请不要挑逗我,http://em.21dtv.com/songs/60035508.mkv +莫少聪-牵绊一生的爱,http://em.21dtv.com/songs/60034192.mkv +陈柔希-请不要离开我,http://em.21dtv.com/songs/60077266.mkv +佚名-请不要对我说,http://em.21dtv.com/songs/60035506.mkv +林天爱-丘比特的虾米,http://em.21dtv.com/songs/60064764.mkv +张道儒-请别说我爱你,http://em.21dtv.com/songs/60097781.mkv +樊少华-亲别苦了自己,http://em.21dtv.com/songs/60064721.mkv +杨哲-千不该万不该,http://em.21dtv.com/songs/60034063.mkv +高凌风-牵不到你的手,http://em.21dtv.com/songs/60105526.mkv +晓月-牵不到你的手,http://em.21dtv.com/songs/60034193.mkv +刀郎-请不出的告别,http://em.21dtv.com/songs/60089159.mkv +张智霖+HOTCHA-情爱现代事故,http://em.21dtv.com/songs/60092620.mkv +望海高歌-亲爱亲爱的你,http://em.21dtv.com/songs/60126978.mkv +孙子涵-请安静忘记我,http://em.21dtv.com/songs/60089788.mkv +梅朵-亲爱的祝福你,http://em.21dtv.com/songs/60117869.mkv +孙家山-亲爱的咱不哭,http://em.21dtv.com/songs/60122656.mkv +沈芳如-亲爱的夜已深,http://em.21dtv.com/songs/60034556.mkv +琛子-亲爱的谢谢你,http://em.21dtv.com/songs/60121962.mkv +乐洋-亲爱的谢谢你,http://em.21dtv.com/songs/60108268.mkv +亦勋-亲爱的谢谢你,http://em.21dtv.com/songs/60077184.mkv +杨孟茜-亲爱的想你啦,http://em.21dtv.com/songs/60083633.mkv +张洪波-亲爱的小妹儿,http://em.21dtv.com/songs/60099238.mkv +成铭-亲爱的小妹儿,http://em.21dtv.com/songs/60096301.mkv +刘庭羽+刘大毅-亲爱的我愿意,http://em.21dtv.com/songs/60034552.mkv +徐誉滕-亲爱的我有了,http://em.21dtv.com/songs/60080318.mkv +朱其民-亲爱的我懂了,http://em.21dtv.com/songs/60124043.mkv +思小玥+冯志泽-亲爱的我爱你,http://em.21dtv.com/songs/60133727.mkv +王德一彪-亲爱的我爱你,http://em.21dtv.com/songs/60120767.mkv +泽仁伍波-亲爱的我爱你,http://em.21dtv.com/songs/60120701.mkv +邓小龙-亲爱的我爱你,http://em.21dtv.com/songs/60117268.mkv +祁隆-亲爱的我爱你,http://em.21dtv.com/songs/60105278.mkv +欣新-亲爱的我爱你,http://em.21dtv.com/songs/60094183.mkv +冷酷-亲爱的我爱你,http://em.21dtv.com/songs/60093998.mkv +杨廷廷-亲爱的我爱你,http://em.21dtv.com/songs/60068590.mkv +邓小龙-亲爱的我爱你,http://em.21dtv.com/songs/60068589.mkv +张祥洪-亲爱的我爱你,http://em.21dtv.com/songs/60034546.mkv +小山-亲爱的我爱你,http://em.21dtv.com/songs/60034545.mkv +陈依然-亲爱的我爱你,http://em.21dtv.com/songs/60034544.mkv +修美娜-亲爱的听我说,http://em.21dtv.com/songs/60077179.mkv +雷启飞+李佳茜-亲爱的请保重,http://em.21dtv.com/songs/60069723.mkv +李明宇-亲爱的你走了,http://em.21dtv.com/songs/60083631.mkv +红蔷薇+陈岩-亲爱的你真乖,http://em.21dtv.com/songs/60097770.mkv +伤感一哥-亲爱的你要走,http://em.21dtv.com/songs/60119252.mkv +门丽+龙飞-亲爱的你哪里,http://em.21dtv.com/songs/60109670.mkv +程响-亲爱的你可知,http://em.21dtv.com/songs/60034524.mkv +蔡卓妍+马天佑-亲爱的你好吗,http://em.21dtv.com/songs/60129581.mkv +于玄子-亲爱的你别走,http://em.21dtv.com/songs/60034517.mkv +金丹-亲爱的你别哭,http://em.21dtv.com/songs/60068586.mkv +黄耀明-亲爱的玛嘉烈(演唱会),http://em.21dtv.com/songs/60034509.mkv +光前-亲爱的老同学,http://em.21dtv.com/songs/60130094.mkv +冯光-亲爱的嫁给我,http://em.21dtv.com/songs/60125158.mkv +常青-亲爱的嫁给我,http://em.21dtv.com/songs/60119484.mkv +王英俊-亲爱的嫁给我,http://em.21dtv.com/songs/60107909.mkv +财郎-亲爱的嫁给我,http://em.21dtv.com/songs/60106294.mkv +何龙雨-亲爱的嫁给我,http://em.21dtv.com/songs/60077171.mkv +齐剑-亲爱的好兄弟,http://em.21dtv.com/songs/60099641.mkv +晓依-亲爱的回来吧,http://em.21dtv.com/songs/60124019.mkv +庄子轩-亲爱的跟我走,http://em.21dtv.com/songs/60116768.mkv +李虎-亲爱的对不起,http://em.21dtv.com/songs/60083626.mkv +小薇-亲爱的对不起,http://em.21dtv.com/songs/60069718.mkv +王钰卓-亲爱的对不起,http://em.21dtv.com/songs/60066232.mkv +雷龙-亲爱的对不起,http://em.21dtv.com/songs/60034502.mkv +阿龙正刚+阿唯-亲爱的对不起,http://em.21dtv.com/songs/60034501.mkv +马力-亲爱的不要走,http://em.21dtv.com/songs/60086764.mkv +暴林-亲爱的不要走,http://em.21dtv.com/songs/60071053.mkv +苏月+祁隆-亲爱的别想我,http://em.21dtv.com/songs/60118004.mkv +张凯-亲爱的别离开,http://em.21dtv.com/songs/60086763.mkv +杨臣刚-亲爱的别嫁了,http://em.21dtv.com/songs/60124114.mkv +潘迪华-亲爱的巴比多(演唱会),http://em.21dtv.com/songs/60034485.mkv +谢雷-亲爱的巴比多(无原唱),http://em.21dtv.com/songs/60034484.mkv +康康-凭姊仔住市内,http://em.21dtv.com/songs/60033637.mkv +李克勤-披着羊皮的狼,http://em.21dtv.com/songs/60115218.mkv +谭咏麟-披着羊皮的狼,http://em.21dtv.com/songs/60033388.mkv +高一首-披着羊皮的狼,http://em.21dtv.com/songs/60033387.mkv +刀郎-披着羊皮的狼,http://em.21dtv.com/songs/60033386.mkv +郑源-披着羊皮的狼(演唱会),http://em.21dtv.com/songs/60033385.mkv +谭咏麟+顾爱宁-披着羊皮的狼(演唱会),http://em.21dtv.com/songs/60033384.mkv +陈一郎-噗仔声加催落(无原唱),http://em.21dtv.com/songs/60033693.mkv +书画-陪着你一起疯,http://em.21dtv.com/songs/60093659.mkv +谢亮子-批着狼皮的羊,http://em.21dtv.com/songs/60088658.mkv +谢亮子-披着狼皮的羊,http://em.21dtv.com/songs/60033383.mkv +魏晨-屏住呼吸想你,http://em.21dtv.com/songs/60066218.mkv +安东+刘洋-朋友再干一杯,http://em.21dtv.com/songs/60077070.mkv +郑智化-朋友天堂好吗(无原唱),http://em.21dtv.com/songs/60033352.mkv +艺林歌哥-朋友朋友干杯,http://em.21dtv.com/songs/60096113.mkv +董冬-朋友 你好吗,http://em.21dtv.com/songs/60114750.mkv +程罕华-朋友你不要走,http://em.21dtv.com/songs/60112866.mkv +易欣-朋友们对我说,http://em.21dtv.com/songs/60033338.mkv +龙梅子-陪月亮不孤单,http://em.21dtv.com/songs/60081104.mkv +Gavy NJ-朋友看到了你,http://em.21dtv.com/songs/60113165.mkv +绅士合唱团-put your head on my shoulder,http://em.21dtv.com/songs/60004562.mkv +黎明-朋友好久不见,http://em.21dtv.com/songs/60033336.mkv +庄心妍-飘洋过海的鱼,http://em.21dtv.com/songs/60105809.mkv +吴百伦-朋友出去走走,http://em.21dtv.com/songs/60033322.mkv +BASTARZ-品行ZERO,http://em.21dtv.com/songs/60111580.mkv +庞晓宁-庞晓宇的眼泪,http://em.21dtv.com/songs/60033184.mkv +EXO-偏心,http://em.21dtv.com/songs/60118256.mkv +圆圆-盼星星盼月亮,http://em.21dtv.com/songs/60100802.mkv +佚名-盼星星盼月亮,http://em.21dtv.com/songs/60033170.mkv +曾辉彬-陪我走人生路,http://em.21dtv.com/songs/60033269.mkv +黄致列-陪我一起做梦,http://em.21dtv.com/songs/60126490.mkv +刘清沨-陪我一起飞翔,http://em.21dtv.com/songs/60121449.mkv +范萱蔚-petcy我买我自已,http://em.21dtv.com/songs/60004457.mkv +家入レオ-仆たちの未来,http://em.21dtv.com/songs/60122674.mkv +CNBLUE-Puzzle,http://em.21dtv.com/songs/60121232.mkv +扎西尼玛-菩提下的恋曲,http://em.21dtv.com/songs/60068566.mkv +金钰儿-菩提花佛前开,http://em.21dtv.com/songs/60135856.mkv +佚名-萍水相逢的人,http://em.21dtv.com/songs/60033650.mkv +李茂山-萍水相逢的人,http://em.21dtv.com/songs/60033649.mkv +余天-萍水相逢的人(无原唱),http://em.21dtv.com/songs/60033648.mkv +覃浩-怕受伤的男人,http://em.21dtv.com/songs/60117210.mkv +杨洪基-菩萨蛮-黄鹤楼,http://em.21dtv.com/songs/60033695.mkv +岩罕建-泼水节的祝福,http://em.21dtv.com/songs/60124823.mkv +黄小桢-泡水的后车厢(无原唱),http://em.21dtv.com/songs/60033220.mkv +麦家瑜-佩枪的茱丽叶,http://em.21dtv.com/songs/60068556.mkv +巧千金-排排坐吃果果,http://em.21dtv.com/songs/60033123.mkv +陈百强+张敬轩-偏偏喜喜欢你,http://em.21dtv.com/songs/60033422.mkv +李雨寿-皮皮虾我们走,http://em.21dtv.com/songs/60135386.mkv +李行亮-皮皮虾我们走,http://em.21dtv.com/songs/60135381.mkv +李雨寿-皮皮虾我们走,http://em.21dtv.com/songs/60133830.mkv +张思思-皮皮虾我们走,http://em.21dtv.com/songs/60133656.mkv +砰砰乐团-砰砰全民英检,http://em.21dtv.com/songs/60033293.mkv +王涛+陈红-乒乓球飞起来(演唱会),http://em.21dtv.com/songs/60033570.mkv +施文彬-漂丿的男子汉,http://em.21dtv.com/songs/60033496.mkv +大张伟-偏偏爱上洋葱,http://em.21dtv.com/songs/60102075.mkv +Rita Ora-Poison,http://em.21dtv.com/songs/60112458.mkv +张启靓-陪你一直到老,http://em.21dtv.com/songs/60033250.mkv +唐古-陪你一起变老,http://em.21dtv.com/songs/60120422.mkv +彭羚-盼那天再步近,http://em.21dtv.com/songs/60033155.mkv +镐东-陪你飞陪你醉,http://em.21dtv.com/songs/60100531.mkv +打扰一下-泡沫,http://em.21dtv.com/songs/60109388.mkv +袁成杰+戚薇-perfect match我的绝配,http://em.21dtv.com/songs/60004451.mkv +MC HOTDOG-贫民百万歌星[替换],http://em.21dtv.com/songs/60101217.mkv +MC HOTDOG-贫民百万歌星,http://em.21dtv.com/songs/60068562.mkv +黄勇+独飞-骗了情毁了爱,http://em.21dtv.com/songs/60109060.mkv +肖遥+冯冲-怕老婆的男人,http://em.21dtv.com/songs/60033097.mkv +刘牧-漂流木,http://em.21dtv.com/songs/60101977.mkv +迪丽热巴-漂亮的在一起,http://em.21dtv.com/songs/60131860.mkv +张明敏-漂亮的中国人,http://em.21dtv.com/songs/60033475.mkv +马常宝-漂亮的大姑娘,http://em.21dtv.com/songs/60080664.mkv +蔡依林-PLAY我呸,http://em.21dtv.com/songs/60107189.mkv +蔡依林-PLAY我呸,http://em.21dtv.com/songs/60106260.mkv +Tinashe+Chris Brown-Player,http://em.21dtv.com/songs/60117501.mkv +无鸣-徘徊十字路口,http://em.21dtv.com/songs/60033125.mkv +徐浩-蒲公英的约定,http://em.21dtv.com/songs/60129142.mkv +周杰伦-蒲公英的约定(演唱会),http://em.21dtv.com/songs/60033709.mkv +乌兰托娅-蒲公英的翅膀,http://em.21dtv.com/songs/60071037.mkv +THE OFFSPRING-pretty fly for a white guy,http://em.21dtv.com/songs/60004526.mkv +叶启田-平凡的老百姓,http://em.21dtv.com/songs/60033597.mkv +林强-平凡的老百姓,http://em.21dtv.com/songs/60033596.mkv +叶宇澄-潘多拉的盒子,http://em.21dtv.com/songs/60033132.mkv +古巨基+祖海-飘动的红丝带,http://em.21dtv.com/songs/60033515.mkv +农夫+KiKi-P得霸气一点,http://em.21dtv.com/songs/60110861.mkv +黄凯芹-平常心(双语种),http://em.21dtv.com/songs/60033594.mkv +林子娟-平常心看爱情,http://em.21dtv.com/songs/60033593.mkv +关心妍-庞贝21世纪,http://em.21dtv.com/songs/60033183.mkv +王梓轩-碰不上会更美,http://em.21dtv.com/songs/60119819.mkv +李翊君-陪伴没有距离,http://em.21dtv.com/songs/60033223.mkv +沉文程-飘泊的迄逃人,http://em.21dtv.com/songs/60095766.mkv +沈文程-漂泊的迄逃人,http://em.21dtv.com/songs/60033458.mkv +朱安禹-平安夜狂想曲,http://em.21dtv.com/songs/60033587.mkv +宿雨涵-平安夜好平安,http://em.21dtv.com/songs/60064692.mkv +肖梦婷-哦 香格里拉,http://em.21dtv.com/songs/60107134.mkv +Mack Wilds-Own It,http://em.21dtv.com/songs/60098042.mkv +ELLE VARNER-only wanna give it to you,http://em.21dtv.com/songs/60062015.mkv +谭炳文+李香琴-噢我的个打令(演唱会),http://em.21dtv.com/songs/60061478.mkv +萧煌奇-偶然的那一天,http://em.21dtv.com/songs/60033062.mkv +迪玛希-OPERA2,http://em.21dtv.com/songs/60132951.mkv +温拿乐队-ole ole 永不放弃(演唱会),http://em.21dtv.com/songs/60004258.mkv +PALOMA FAITH-Only Love Can Hurt Like This,http://em.21dtv.com/songs/60101220.mkv +黄尊-哦了我的宝贝,http://em.21dtv.com/songs/60111551.mkv +张三李四-欧吉桑乎干啦,http://em.21dtv.com/songs/60119492.mkv +童唱-oh how lovely is the evening,http://em.21dtv.com/songs/60004219.mkv +JERROD NIEMANN-only god could love you more,http://em.21dtv.com/songs/60073717.mkv +明道-偶尔还会难过,http://em.21dtv.com/songs/60097785.mkv +巫启贤-偶尔爱我的人,http://em.21dtv.com/songs/60033055.mkv +容祖儿-on call 36小时,http://em.21dtv.com/songs/60073692.mkv +康康-恁姊仔住市内,http://em.21dtv.com/songs/60032685.mkv +高咏梅-你总在我心里,http://em.21dtv.com/songs/60136010.mkv +田震-你总在我身边,http://em.21dtv.com/songs/60032566.mkv +崔天琪-你在追赶什么,http://em.21dtv.com/songs/60109285.mkv +王菲-你在终点等我,http://em.21dtv.com/songs/60127209.mkv +郑恩地+河琳-你这样的春天,http://em.21dtv.com/songs/60135813.mkv +韩红-你在雪夜离开,http://em.21dtv.com/songs/60032482.mkv +黄凯芹-你最喜欢的歌,http://em.21dtv.com/songs/60032589.mkv +周华健-你在我心里面,http://em.21dtv.com/songs/60032474.mkv +张力超-你在听我的歌,http://em.21dtv.com/songs/60118555.mkv +Ven陈斌-你找什么理由,http://em.21dtv.com/songs/60110804.mkv +巫奇-你怎么未看见,http://em.21dtv.com/songs/60089841.mkv +巫奇-你怎么没看见,http://em.21dtv.com/songs/60032492.mkv +叶俊华-你怎么还没来,http://em.21dtv.com/songs/60093701.mkv +宋祖英-你怎么还不回,http://em.21dtv.com/songs/60032485.mkv +光头李进+范涛-你最近在干嘛,http://em.21dtv.com/songs/60119268.mkv +莫少聪-你在九月离开(演唱会),http://em.21dtv.com/songs/60032459.mkv +S.H.E-你最近还好吗,http://em.21dtv.com/songs/60076992.mkv +桥童-男主角的剧情,http://em.21dtv.com/songs/60070972.mkv +洪百慧-女主角不是我,http://em.21dtv.com/songs/60033022.mkv +佟铁鑫-男子汉去飞行(军旅),http://em.21dtv.com/songs/60090620.mkv +杨坤-你终会感觉到,http://em.21dtv.com/songs/60032563.mkv +阿杜-你终会感觉到,http://em.21dtv.com/songs/60032562.mkv +孝天-男子汉大丈夫,http://em.21dtv.com/songs/60086722.mkv +北原山猫-男子汉大丈夫,http://em.21dtv.com/songs/60031072.mkv +许强+晓月-你走后的雨季,http://em.21dtv.com/songs/60032570.mkv +NBC-你走后的日子,http://em.21dtv.com/songs/60032569.mkv +单色凌-你最好别想我,http://em.21dtv.com/songs/60097755.mkv +中国好声音第二季-你在烦恼什么(张新+刘籽辰),http://em.21dtv.com/songs/60081538.mkv +苏打绿-你在烦恼什么,http://em.21dtv.com/songs/60064658.mkv +陈慧萍-你知道我知道,http://em.21dtv.com/songs/60032556.mkv +张卫健-你值得我等待,http://em.21dtv.com/songs/60032561.mkv +邱泽-你知道我爱你,http://em.21dtv.com/songs/60032546.mkv +黄磊-你知道我爱你,http://em.21dtv.com/songs/60032545.mkv +东来东往-你真的不懂爱,http://em.21dtv.com/songs/60083541.mkv +韩光-你真的爱我吗,http://em.21dtv.com/songs/60083540.mkv +孙伟-你真的爱我吗,http://em.21dtv.com/songs/60061472.mkv +因果兄弟-你真的爱我吗,http://em.21dtv.com/songs/60032525.mkv +范晓萱-你真的爱我吗,http://em.21dtv.com/songs/60032524.mkv +曲婉婷-你准备好了吗,http://em.21dtv.com/songs/60071008.mkv +赵鑫-你只爱你自己,http://em.21dtv.com/songs/60123206.mkv +吴莫愁-你一直在心中,http://em.21dtv.com/songs/60116643.mkv +余天-你要走我不留(演唱会),http://em.21dtv.com/songs/60032403.mkv +张玉华-那又怎么样呢,http://em.21dtv.com/songs/60030848.mkv +AT17-你有自己一套(演唱会),http://em.21dtv.com/songs/60032447.mkv +曾宝仪-你一直存在着,http://em.21dtv.com/songs/60032406.mkv +耿宁-你要走别回头,http://em.21dtv.com/songs/60032401.mkv +李健-你一言我一语,http://em.21dtv.com/songs/60128084.mkv +任贤齐-你愿意我愿意,http://em.21dtv.com/songs/60032452.mkv +183CLUB-你永远是最美的,http://em.21dtv.com/songs/60032426.mkv +杨奇煜-你永远是对的,http://em.21dtv.com/songs/60121799.mkv +马文吉-宁愿一个人过,http://em.21dtv.com/songs/60032706.mkv +黎田康子-那一夜的月亮,http://em.21dtv.com/songs/60030836.mkv +林志炫-你永远不知道,http://em.21dtv.com/songs/60132620.mkv +梁剑东-你永远不知道,http://em.21dtv.com/songs/60119717.mkv +邝美云-你永远不会懂,http://em.21dtv.com/songs/60032423.mkv +王力宏-你以为我是谁(演唱会),http://em.21dtv.com/songs/60032418.mkv +汪佩蓉-你以为你是谁,http://em.21dtv.com/songs/60032417.mkv +陈威全-你有我的快乐,http://em.21dtv.com/songs/60068547.mkv +宋祖英-南阳我的家乡,http://em.21dtv.com/songs/60031156.mkv +符致逸-你要我爱什么,http://em.21dtv.com/songs/60102598.mkv +杨千桦-那一天还未到,http://em.21dtv.com/songs/60124106.mkv +陈慧琳-你有事瞒住我,http://em.21dtv.com/songs/60032440.mkv +小宇-你要什么就说,http://em.21dtv.com/songs/60032394.mkv +甜美真-难以释怀的爱,http://em.21dtv.com/songs/60085504.mkv +陈思玮-你一切都好吗,http://em.21dtv.com/songs/60130841.mkv +任贤齐+舒淇-那一年这一天,http://em.21dtv.com/songs/60030820.mkv +小多+梦然-那一年我和你,http://em.21dtv.com/songs/60076787.mkv +许文科-那一年那一天,http://em.21dtv.com/songs/60093697.mkv +徐誉滕-那一年那一天,http://em.21dtv.com/songs/60030818.mkv +孟杨-你有你的天空,http://em.21dtv.com/songs/60076978.mkv +蔡俊涛-那一年的情书,http://em.21dtv.com/songs/60069632.mkv +JILL-宁愿你不知道,http://em.21dtv.com/songs/60032699.mkv +陈柏宇-你有没有听过,http://em.21dtv.com/songs/60083538.mkv +王小荣-宁愿没遇见你,http://em.21dtv.com/songs/60120756.mkv +李胜利-难以抗拒的爱,http://em.21dtv.com/songs/60105161.mkv +孙江峰-那一刻爱上你,http://em.21dtv.com/songs/60076808.mkv +孙江枫-那一刻爱上你,http://em.21dtv.com/songs/60069631.mkv +郑进一-你已经嫁别人(无原唱),http://em.21dtv.com/songs/60032416.mkv +胡量-你要好好爱我,http://em.21dtv.com/songs/60071005.mkv +黄文武-你应该在这里,http://em.21dtv.com/songs/60124739.mkv +潘七魁-难以割舍的缘,http://em.21dtv.com/songs/60122970.mkv +王觉-难以割舍的缘,http://em.21dtv.com/songs/60121955.mkv +许茹芸-那一个人像你,http://em.21dtv.com/songs/60092084.mkv +简弘亦-你一定要幸福,http://em.21dtv.com/songs/60129468.mkv +何洁-你一定要幸福,http://em.21dtv.com/songs/60032405.mkv +大喇叭-你要的我没有,http://em.21dtv.com/songs/60132321.mkv +大喇叭组合-你要的我没有,http://em.21dtv.com/songs/60130215.mkv +尚芸菲-你要的是什么,http://em.21dtv.com/songs/60107690.mkv +琼雪卓玛-你一定很恨我,http://em.21dtv.com/songs/60072247.mkv +黑龙+王璐苛-你一定很爱他,http://em.21dtv.com/songs/60076976.mkv +本多RURU-你一点都没变,http://em.21dtv.com/songs/60032404.mkv +林俊杰-你要的不是我,http://em.21dtv.com/songs/60032384.mkv +林玉英-你一杯我一杯,http://em.21dtv.com/songs/60095684.mkv +周华健-你有爱过我吗,http://em.21dtv.com/songs/60092465.mkv +HIT-5-你现在还好吗,http://em.21dtv.com/songs/60080400.mkv +周华健-你现在还好吗,http://em.21dtv.com/songs/60032355.mkv +曾航生-你现在还好吗,http://em.21dtv.com/songs/60032354.mkv +佚名-你现在好过吗,http://em.21dtv.com/songs/60032356.mkv +回声乐团+凤小岳-你想要的一切,http://em.21dtv.com/songs/60097757.mkv +蒋雪儿-你想要的爱情,http://em.21dtv.com/songs/60130715.mkv +黄小琥-那些我爱的人,http://em.21dtv.com/songs/60030798.mkv +韩宝仪-你潇洒我漂亮,http://em.21dtv.com/songs/60032370.mkv +范琳-你潇洒我漂亮,http://em.21dtv.com/songs/60032369.mkv +蔡琴-那些事那些人,http://em.21dtv.com/songs/60030797.mkv +邱永传-你吓死宝宝了,http://em.21dtv.com/songs/60117277.mkv +黄文武-那些年这些年,http://em.21dtv.com/songs/60124740.mkv +东海-那些年那些事,http://em.21dtv.com/songs/60128736.mkv +陈钰芸-那些年的我们,http://em.21dtv.com/songs/60069630.mkv +周历城-那些年的爱情,http://em.21dtv.com/songs/60132296.mkv +陈慧娴-你喜欢我什么,http://em.21dtv.com/songs/60032350.mkv +草莓救星-你喜欢哪一个,http://em.21dtv.com/songs/60104392.mkv +宋熙铭-你像花儿一样,http://em.21dtv.com/songs/60069676.mkv +吕继宏-你幸福我祝福,http://em.21dtv.com/songs/60032377.mkv +曾轶可-你幸福我幸福,http://em.21dtv.com/songs/60080353.mkv +郑源-你幸福我快乐,http://em.21dtv.com/songs/60103621.mkv +群星合唱-你幸福我快乐,http://em.21dtv.com/songs/60088473.mkv +蒋雯丽-你幸福我快乐,http://em.21dtv.com/songs/60032376.mkv +陈玉建-你幸福我快乐,http://em.21dtv.com/songs/60032375.mkv +蒋雯丽+吴若甫-你幸福我快乐(演唱会),http://em.21dtv.com/songs/60032374.mkv +江惠仪-你幸福你快乐,http://em.21dtv.com/songs/60129325.mkv +姜玉阳-你幸福你快乐,http://em.21dtv.com/songs/60032373.mkv +张雷-你想飞就去飞,http://em.21dtv.com/songs/60097756.mkv +李琼-宁夏川白牡丹,http://em.21dtv.com/songs/60032694.mkv +李玟-你,http://em.21dtv.com/songs/60125710.mkv +张子孝-你向北我向南,http://em.21dtv.com/songs/60129074.mkv +小雪-那些别人要的,http://em.21dtv.com/songs/60030787.mkv +光良-那些爱过的事,http://em.21dtv.com/songs/60109989.mkv +光良-那些爱过的事,http://em.21dtv.com/songs/60109162.mkv +光良-那些爱过的事,http://em.21dtv.com/songs/60108318.mkv +周冰倩-暖我一生的你,http://em.21dtv.com/songs/60032807.mkv +曹沁芳-女为悦己者容,http://em.21dtv.com/songs/60118642.mkv +游鸿明-你微笑时好美,http://em.21dtv.com/songs/60101662.mkv +谢霆锋-你微笑时好美,http://em.21dtv.com/songs/60032293.mkv +丁当-你为什么说谎,http://em.21dtv.com/songs/60032304.mkv +汤宝如-你我开始很美,http://em.21dtv.com/songs/60032323.mkv +黎明-难忘过去的爱,http://em.21dtv.com/songs/60093570.mkv +佚名-难忘的总是你,http://em.21dtv.com/songs/60031272.mkv +阿吉仔-难忘的西帽山,http://em.21dtv.com/songs/60031267.mkv +陈雷-难忘的温泉乡,http://em.21dtv.com/songs/60031266.mkv +STAY-你我都是傻瓜,http://em.21dtv.com/songs/60032321.mkv +罗时丰-难忘的纱帽山,http://em.21dtv.com/songs/60031265.mkv +黄伟麟-你我的平安夜,http://em.21dtv.com/songs/60032317.mkv +佚名-你我都没有错,http://em.21dtv.com/songs/60032320.mkv +徐浩峻-难忘东方微笑,http://em.21dtv.com/songs/60111104.mkv +佚名-难忘的凤凰桥,http://em.21dtv.com/songs/60031252.mkv +顾凯-南无地藏菩萨,http://em.21dtv.com/songs/60031150.mkv +邓丽君-难忘初恋情人,http://em.21dtv.com/songs/60031240.mkv +拉毛王旭-南无阿弥陀佛,http://em.21dtv.com/songs/60111119.mkv +顾凯-南无阿弥陀佛,http://em.21dtv.com/songs/60031149.mkv +牛飞-你偷走我的心,http://em.21dtv.com/songs/60032291.mkv +南台湾小姑娘-南台湾小姑娘,http://em.21dtv.com/songs/60031138.mkv +张雷-你偷了我的爱,http://em.21dtv.com/songs/60032290.mkv +叶倩文-你听到了没有,http://em.21dtv.com/songs/60032285.mkv +叶倩文-你听到了没有(演唱会),http://em.21dtv.com/songs/60032284.mkv +叶倩文+陈奕迅-你听到了没有(演唱会),http://em.21dtv.com/songs/60032283.mkv +佚名-need to be next to you(无原唱),http://em.21dtv.com/songs/60004058.mkv +白小白-你说这样分手,http://em.21dtv.com/songs/60117066.mkv +平安-你是这样的人,http://em.21dtv.com/songs/60118536.mkv +韩红-你是这样的人,http://em.21dtv.com/songs/60109015.mkv +戴玉强-你是这样的人,http://em.21dtv.com/songs/60089311.mkv +刘欢-你是这样的人(演唱会),http://em.21dtv.com/songs/60032231.mkv +LINDA-你睡着的样子,http://em.21dtv.com/songs/60032241.mkv +陈妍希-你手中的江湖,http://em.21dtv.com/songs/60099577.mkv +大鹏-那丝也有春天,http://em.21dtv.com/songs/60076801.mkv +谭晶-你是一片红叶,http://em.21dtv.com/songs/60098778.mkv +刘欢-你是一面旗帜,http://em.21dtv.com/songs/60032227.mkv +张震岳-你说有个女孩,http://em.21dtv.com/songs/60061463.mkv +佚名-你是阳光空气,http://em.21dtv.com/songs/60032219.mkv +古巨基-你是阳光空气,http://em.21dtv.com/songs/60032218.mkv +汤飞-你是一个好人,http://em.21dtv.com/songs/60032223.mkv +凯瑞-你是一个好人,http://em.21dtv.com/songs/60032222.mkv +何耀珊-你说喂我说嗨,http://em.21dtv.com/songs/60032271.mkv +小柯-你说我容易吗,http://em.21dtv.com/songs/60032273.mkv +柯肇雷-你说我容易吗,http://em.21dtv.com/songs/60032272.mkv +佚名-你是无情的人,http://em.21dtv.com/songs/60032215.mkv +邓丽君-你是我的知音,http://em.21dtv.com/songs/60089497.mkv +苏贤文-你是我的知己,http://em.21dtv.com/songs/60100417.mkv +马常宝-你是我的知己,http://em.21dtv.com/songs/60080663.mkv +波拉+贺世哲-你是我的主角,http://em.21dtv.com/songs/60064650.mkv +于震环-你是我的主角,http://em.21dtv.com/songs/60032133.mkv +语录-你是我的英雄,http://em.21dtv.com/songs/60106277.mkv +张涵-你是我的氧气,http://em.21dtv.com/songs/60115912.mkv +郭富城-你是我的一切,http://em.21dtv.com/songs/60032130.mkv +董阳-你是我的月亮,http://em.21dtv.com/songs/60112931.mkv +刘恺名+杨小曼-你是我的依靠,http://em.21dtv.com/songs/60098145.mkv +萧政云-你是我的阳光,http://em.21dtv.com/songs/60124425.mkv +周艳泓-你是我的阳光,http://em.21dtv.com/songs/60032127.mkv +钟嘉欣-你是我的一半,http://em.21dtv.com/songs/60071001.mkv +张瀛仁+林俊吉-你是我的一半,http://em.21dtv.com/songs/60032128.mkv +简弘亦-你是我的虚荣,http://em.21dtv.com/songs/60129469.mkv +吴克群-你是我的星球,http://em.21dtv.com/songs/60110076.mkv +吴克群-你是我的星球,http://em.21dtv.com/songs/60109218.mkv +饶海明-你是我的新娘,http://em.21dtv.com/songs/60119055.mkv +马智宇-你是我的新娘,http://em.21dtv.com/songs/60066194.mkv +余天-你是我的性命,http://em.21dtv.com/songs/60032122.mkv +文杰-你是我的幸福,http://em.21dtv.com/songs/60100068.mkv +王可-你是我的幸福,http://em.21dtv.com/songs/60076950.mkv +怕黑+天籁天-你是我的幸福,http://em.21dtv.com/songs/60064649.mkv +傅振辉+高向鹏-你是我的兄弟,http://em.21dtv.com/songs/60032123.mkv +林俊杰-你是我的唯一,http://em.21dtv.com/songs/60130477.mkv +刘浩航-你是我的唯一,http://em.21dtv.com/songs/60117585.mkv +洪荣宏-你是我的唯一,http://em.21dtv.com/songs/60100278.mkv +倩倩-你是我的唯一,http://em.21dtv.com/songs/60083525.mkv +郎郎-你是我的唯一,http://em.21dtv.com/songs/60083524.mkv +倩倩-你是我的唯一(舞曲版),http://em.21dtv.com/songs/60083523.mkv +郎郎-你是我的唯一(舞曲版),http://em.21dtv.com/songs/60076947.mkv +许志豪-你是我的唯一,http://em.21dtv.com/songs/60067285.mkv +郑源+陶钰玉-你是我的唯一,http://em.21dtv.com/songs/60064648.mkv +巫启贤-你是我的唯一,http://em.21dtv.com/songs/60032116.mkv +翁立友-你是我的唯一,http://em.21dtv.com/songs/60032115.mkv +陈飞彤-你是我的唯一,http://em.21dtv.com/songs/60032114.mkv +立威廉-你是我的微笑,http://em.21dtv.com/songs/60032113.mkv +刘德华-你是我的温柔,http://em.21dtv.com/songs/60032117.mkv +费翔-你是我的王牌,http://em.21dtv.com/songs/60032112.mkv +李克勤-你是我的太阳(演唱会),http://em.21dtv.com/songs/60032110.mkv +吴诗曼-你是我的天使,http://em.21dtv.com/songs/60135024.mkv +齐豫-你是我的天使(演唱会),http://em.21dtv.com/songs/60101014.mkv +齐豫-你是我的天使,http://em.21dtv.com/songs/60100691.mkv +储毅-你是我的天使,http://em.21dtv.com/songs/60086734.mkv +艾敬-你是我的天使(演唱会),http://em.21dtv.com/songs/60032111.mkv +范萱蔚-你是我的石头,http://em.21dtv.com/songs/60032108.mkv +罗时丰-你是我的生命,http://em.21dtv.com/songs/60134080.mkv +洪荣宏-你是我的生命,http://em.21dtv.com/songs/60095783.mkv +佚名-你是我得生命,http://em.21dtv.com/songs/60095398.mkv +王建杰-你是我的生命,http://em.21dtv.com/songs/60032107.mkv +姚贝娜-你是我的四季,http://em.21dtv.com/songs/60097752.mkv +姚贝娜-你是我的四季(演唱会),http://em.21dtv.com/songs/60085528.mkv +苏又熔+办桌阿龙-你是我的世界,http://em.21dtv.com/songs/60032109.mkv +苏唯-你是我的晴天,http://em.21dtv.com/songs/60097753.mkv +孙耀威-你是我的女王,http://em.21dtv.com/songs/60094058.mkv +沈志仲-你是我的女人,http://em.21dtv.com/songs/60108675.mkv +王理想-你是我的女人,http://em.21dtv.com/songs/60086733.mkv +许嘉文-你是我的女人,http://em.21dtv.com/songs/60076946.mkv +熊七梅-你是我的女人,http://em.21dtv.com/songs/60070998.mkv +谭咏麟-你是我的女人,http://em.21dtv.com/songs/60032101.mkv +刘德华-你是我的女人,http://em.21dtv.com/songs/60032100.mkv +刘德华-你是我的女人(演唱会),http://em.21dtv.com/songs/60032098.mkv +佚名-你是我的男人,http://em.21dtv.com/songs/60032097.mkv +韩晶-你是我的男人,http://em.21dtv.com/songs/60032096.mkv +林忆莲-你是我的男人(演唱会),http://em.21dtv.com/songs/60032095.mkv +苏有朋-你是我的no 1(演唱会),http://em.21dtv.com/songs/60032075.mkv +苏堇凡-你是我的某某,http://em.21dtv.com/songs/60105317.mkv +叶诺帆-你是我的玫瑰,http://em.21dtv.com/songs/60122557.mkv +叶诺帆-你是我的玫瑰,http://em.21dtv.com/songs/60112563.mkv +丁丁-你是我的李白,http://em.21dtv.com/songs/60117519.mkv +袁小迪-你是我的靠山,http://em.21dtv.com/songs/60067280.mkv +洪卓立-你是我的戒指,http://em.21dtv.com/songs/60076943.mkv +纳兰珠儿-你是我的江南,http://em.21dtv.com/songs/60127269.mkv +宗义博-你是我的骄傲,http://em.21dtv.com/songs/60110158.mkv +邓宁-你是我的骄傲,http://em.21dtv.com/songs/60076942.mkv +伍佰-你是我的花朵,http://em.21dtv.com/songs/60032090.mkv +彭纪谚-你是我的蝴蝶,http://em.21dtv.com/songs/60032089.mkv +付乐+王畇琪-你是我的闺蜜,http://em.21dtv.com/songs/60108291.mkv +韩磊-你是我的房子,http://em.21dtv.com/songs/60100630.mkv +何洁-你是我的风景(无原唱),http://em.21dtv.com/songs/60089612.mkv +海霞-你是我的草原,http://em.21dtv.com/songs/60122963.mkv +樱子-你是我的草原,http://em.21dtv.com/songs/60066192.mkv +韩磊-你是我的传奇,http://em.21dtv.com/songs/60076941.mkv +洪荣宏-你是我的春风,http://em.21dtv.com/songs/60032084.mkv +浪花兄弟+周杰伦-你是我的ok绷,http://em.21dtv.com/songs/60032076.mkv +秀兰玛雅+邵大伦-你是我的宝贝,http://em.21dtv.com/songs/60123054.mkv +秀兰玛雅+邵大伦-你是我的宝贝,http://em.21dtv.com/songs/60113920.mkv +秀兰玛雅-你是我的宝贝,http://em.21dtv.com/songs/60113916.mkv +何旭-你是我的宝贝,http://em.21dtv.com/songs/60110839.mkv +办桌二人组-你是我的宝贝,http://em.21dtv.com/songs/60076940.mkv +林林-你是我的宝贝,http://em.21dtv.com/songs/60069669.mkv +蔡幸娟-你是我的宝贝,http://em.21dtv.com/songs/60032082.mkv +郭富城-你是我的1+2,http://em.21dtv.com/songs/60032074.mkv +马旭东-你说我不够帅,http://em.21dtv.com/songs/60083532.mkv +妤桢-那时我不懂爱,http://em.21dtv.com/songs/60104910.mkv +曾强-你是我爱的人,http://em.21dtv.com/songs/60070996.mkv +邓丽君-你是偷心的人,http://em.21dtv.com/songs/60088741.mkv +谢金燕-你是水我是鱼,http://em.21dtv.com/songs/60032060.mkv +王敏-你是谁我是谁,http://em.21dtv.com/songs/60070995.mkv +郑仲茵+罗文聪-你是水我是火,http://em.21dtv.com/songs/60032059.mkv +王羽-你撕碎我的心,http://em.21dtv.com/songs/60129414.mkv +辛莉恩-你算什么东西,http://em.21dtv.com/songs/60124538.mkv +山野-年三十的电话,http://em.21dtv.com/songs/60066205.mkv +孙艺程-你是谁爱谁谁,http://em.21dtv.com/songs/60132368.mkv +孙艺程-你是谁爱谁谁,http://em.21dtv.com/songs/60130245.mkv +孙淑媚+王识贤-你是阮的温泉,http://em.21dtv.com/songs/60032045.mkv +陈中+邱芸子-你是阮的过去,http://em.21dtv.com/songs/60032044.mkv +迪克牛仔-你是你我是我,http://em.21dtv.com/songs/60032036.mkv +王杰-你是你我是我(无原唱),http://em.21dtv.com/songs/60032035.mkv +青蛙乐队-你说你很爱他,http://em.21dtv.com/songs/60072246.mkv +宋沛江-难舍你的温柔,http://em.21dtv.com/songs/60114500.mkv +苏永康+卓韵芝-那谁没有下次,http://em.21dtv.com/songs/60061444.mkv +金智娟-你是明日意义,http://em.21dtv.com/songs/60032031.mkv +黎姿-你是明日意义,http://em.21dtv.com/songs/60032030.mkv +晓依-拿什么去爱你,http://em.21dtv.com/songs/60076772.mkv +权振东-你什么都想要,http://em.21dtv.com/songs/60112741.mkv +方力申-你什么都可以,http://em.21dtv.com/songs/60031985.mkv +黄征-你是另一个我,http://em.21dtv.com/songs/60102969.mkv +林佳仪-你伤了我的心,http://em.21dtv.com/songs/60031980.mkv +富龙-你是狡猾狐狸,http://em.21dtv.com/songs/60111024.mkv +星弟-你说会陪着我,http://em.21dtv.com/songs/60106896.mkv +周桐同-那时候哥还小,http://em.21dtv.com/songs/60115759.mkv +周桐同-那时候哥还小,http://em.21dtv.com/songs/60030763.mkv +张小觉-你说谎的样子,http://em.21dtv.com/songs/60063399.mkv +李贵府-那时候的我们,http://em.21dtv.com/songs/60030762.mkv +BOBO-那时候的我们,http://em.21dtv.com/songs/60030761.mkv +渔圈+C蓝-你说过我信过,http://em.21dtv.com/songs/60076962.mkv +STARSHIP-nothings gonna stop us now,http://em.21dtv.com/songs/60066701.mkv +小龙女-你是个大骗子,http://em.21dtv.com/songs/60098285.mkv +GLENN MEDEIROS-nothings gonna change my love,http://em.21dtv.com/songs/60066700.mkv +于全莉-你是风我是云,http://em.21dtv.com/songs/60107474.mkv +许志安-你伤风我感冒,http://em.21dtv.com/songs/60031979.mkv +韩宝仪-你是否还记得,http://em.21dtv.com/songs/60032015.mkv +伊贞羽-你是否还爱我,http://em.21dtv.com/songs/60032014.mkv +方梦诚-你是否爱过我,http://em.21dtv.com/songs/60032012.mkv +李青+晨阳-你是蝶我是花,http://em.21dtv.com/songs/60076937.mkv +钟欣桐-你说的我都爱,http://em.21dtv.com/songs/60080370.mkv +余天-那是多少年前(无原唱),http://em.21dtv.com/songs/60030768.mkv +佚名-你身边永是我,http://em.21dtv.com/songs/60031984.mkv +陈慧娴-你身边永是我,http://em.21dtv.com/songs/60031983.mkv +田野-你是不是在笑,http://em.21dtv.com/songs/60070994.mkv +何韵诗-你是八十年代,http://em.21dtv.com/songs/60031997.mkv +何韵诗-你是八十年代(演唱会),http://em.21dtv.com/songs/60031996.mkv +胡桐语-女神别来无恙,http://em.21dtv.com/songs/60107958.mkv +AGA-能说不的秘密,http://em.21dtv.com/songs/60080390.mkv +林伊凡-你是爱我的吗(无原唱),http://em.21dtv.com/songs/60031995.mkv +曾静玟-你说爱然后呢,http://em.21dtv.com/songs/60083531.mkv +王虎-男人真的很难,http://em.21dtv.com/songs/60068514.mkv +三峡宋英杰-男人真的好累,http://em.21dtv.com/songs/60099061.mkv +李炳辰-男人也有眼泪,http://em.21dtv.com/songs/60068513.mkv +周华健-女人缘男人缘,http://em.21dtv.com/songs/60032989.mkv +孟杨-男人压力山大,http://em.21dtv.com/songs/60110148.mkv +姜育恒-男人也会心碎,http://em.21dtv.com/songs/60113393.mkv +轲然-男人小心圈套,http://em.21dtv.com/songs/60064603.mkv +高恺蔚-你让星星发亮,http://em.21dtv.com/songs/60085523.mkv +西子-女人心女人情,http://em.21dtv.com/songs/60077036.mkv +佚名-女人心男人情,http://em.21dtv.com/songs/60032980.mkv +音乐走廊+歌一生-女人心女人泪,http://em.21dtv.com/songs/60130885.mkv +张小玲-女人心女人泪,http://em.21dtv.com/songs/60087809.mkv +陈辰-女人心海底针,http://em.21dtv.com/songs/60077035.mkv +李玟-你让我有感觉,http://em.21dtv.com/songs/60031965.mkv +庞晓宇-男人为什么累,http://em.21dtv.com/songs/60031012.mkv +汪佩蓉-男人味女人味,http://em.21dtv.com/songs/60031014.mkv +杨川平-你让我很受伤,http://em.21dtv.com/songs/60076933.mkv +陈慧琳-你若是真爱我,http://em.21dtv.com/songs/60031973.mkv +范怡文-男人说女人说,http://em.21dtv.com/songs/60031007.mkv +袁小迪+龙千玉-男人情女人心,http://em.21dtv.com/songs/60031001.mkv +[Group] +groupName=十六万歌曲MV等 - 88 +李欧-男人凭什么说,http://em.21dtv.com/songs/60076827.mkv +郑锦昌-女人女人女人,http://em.21dtv.com/songs/60032949.mkv +尹光-女人女人女人(演唱会),http://em.21dtv.com/songs/60032948.mkv +蔡淳佳+金海心-女人们的咖啡,http://em.21dtv.com/songs/60077030.mkv +苗伟-男人泪好珍贵,http://em.21dtv.com/songs/60069638.mkv +陈慧琳-女人就是恋爱(演唱会),http://em.21dtv.com/songs/60032943.mkv +陈瑞-男人酒女人泪,http://em.21dtv.com/songs/60064601.mkv +王杰-男人简单就好,http://em.21dtv.com/songs/60030984.mkv +万一-男人绝不认输,http://em.21dtv.com/songs/60126565.mkv +于金胜-男人坏女人爱,http://em.21dtv.com/songs/60030983.mkv +陈宝欣-女人何苦太累,http://em.21dtv.com/songs/60107313.mkv +周传雄-女人的吻与爱,http://em.21dtv.com/songs/60032919.mkv +郑仲茵-女人的华尔滋,http://em.21dtv.com/songs/60032911.mkv +毛阿敏-女人不是月亮,http://em.21dtv.com/songs/60032906.mkv +海心-女人不是羔羊,http://em.21dtv.com/songs/60098590.mkv +黑龙-男人不怕失败,http://em.21dtv.com/songs/60089081.mkv +张学友-男人本该妒忌(演唱会)(无原唱),http://em.21dtv.com/songs/60030935.mkv +郭富城-你牵走我的心,http://em.21dtv.com/songs/60031947.mkv +陈爱-你其实很幸福,http://em.21dtv.com/songs/60110646.mkv +宋潮-女强人女汉子,http://em.21dtv.com/songs/60131353.mkv +卓依婷-年青人的心声,http://em.21dtv.com/songs/60087460.mkv +卓依婷-年轻人的心声,http://em.21dtv.com/songs/60032647.mkv +佚名-年轻人的心声,http://em.21dtv.com/songs/60032646.mkv +五月天-年轻就要对味,http://em.21dtv.com/songs/60089594.mkv +宇桐非-你确定不爱我,http://em.21dtv.com/songs/60097754.mkv +城市少女-年轻不要留白,http://em.21dtv.com/songs/60032634.mkv +赵显宰-哪怕只活一天,http://em.21dtv.com/songs/60061438.mkv +黄韵玲-女朋友男朋友,http://em.21dtv.com/songs/60071014.mkv +陈盈洁+吴俅-你陪我喝一杯,http://em.21dtv.com/songs/60031943.mkv +唐冰冰-你陪我唱情歌,http://em.21dtv.com/songs/60076931.mkv +夏韶声-你漂亮的固执(演唱会),http://em.21dtv.com/songs/60031944.mkv +李霞儿-尼泊尔的微笑,http://em.21dtv.com/songs/60111176.mkv +Faith-No Why,http://em.21dtv.com/songs/60104672.mkv +朴容仁+权顺日-No Way,http://em.21dtv.com/songs/60130401.mkv +Bob Girls-No Way,http://em.21dtv.com/songs/60101736.mkv +伍佳丽-No Sir,http://em.21dtv.com/songs/60104777.mkv +包伟铭-No One,http://em.21dtv.com/songs/60125235.mkv +包伟铭-No.One,http://em.21dtv.com/songs/60123704.mkv +蒋雪儿-NoNoNo,http://em.21dtv.com/songs/60131785.mkv +佚名-nguoi oi nguoi o dung ve,http://em.21dtv.com/songs/60004093.mkv +Sean Paul+Dua Lipa-No Lie,http://em.21dtv.com/songs/60131105.mkv +Kisum-No Jam,http://em.21dtv.com/songs/60123492.mkv +李玟-Nobody,http://em.21dtv.com/songs/60118682.mkv +大女孩-Nobody,http://em.21dtv.com/songs/60104004.mkv +曾小萍-娜奴娃的探戈(无原唱),http://em.21dtv.com/songs/60030861.mkv +Brown Eyes-那女孩看着我,http://em.21dtv.com/songs/60111591.mkv +徐浩-那女孩对我说,http://em.21dtv.com/songs/60131434.mkv +徐浩-那女孩对我说,http://em.21dtv.com/songs/60129143.mkv +黄义达-那女孩对我说,http://em.21dtv.com/songs/60030751.mkv +赵传-那女孩的曾经,http://em.21dtv.com/songs/60076789.mkv +林玉英-你那会彼无情,http://em.21dtv.com/songs/60095685.mkv +佚名-你那会彼无情(无原唱),http://em.21dtv.com/songs/60031930.mkv +李岗霖-那女孩爱过我,http://em.21dtv.com/songs/60030750.mkv +佚名-浓浓的一杯酒(无原唱),http://em.21dtv.com/songs/60032767.mkv +江美琪-你那边是晴天,http://em.21dtv.com/songs/60031926.mkv +李蕙敏-你没有好结果,http://em.21dtv.com/songs/60031908.mkv +十三狼-农民心中的歌,http://em.21dtv.com/songs/60115730.mkv +柠檬-柠檬香的夏天,http://em.21dtv.com/songs/60085549.mkv +吴莫愁-那么问题来了,http://em.21dtv.com/songs/60107585.mkv +雨中百合-男迷失了自我,http://em.21dtv.com/songs/60121106.mkv +一只舟-男迷失了自我,http://em.21dtv.com/songs/60120261.mkv +Mc天佑-你没那么爱我,http://em.21dtv.com/songs/60121286.mkv +乌日雅-内蒙古那达慕,http://em.21dtv.com/songs/60031317.mkv +葛小虎-内蒙古大草原,http://em.21dtv.com/songs/60119934.mkv +赵仰瑞-农民的音乐梦,http://em.21dtv.com/songs/60072259.mkv +高原天籁-你美的让人醉,http://em.21dtv.com/songs/60133111.mkv +谢世超-农民的城市里,http://em.21dtv.com/songs/60097736.mkv +A Lin-柠檬草的味道,http://em.21dtv.com/songs/60109792.mkv +蔡依林-柠檬草的味道,http://em.21dtv.com/songs/60032713.mkv +陳柏宇-妳來自那顆星,http://em.21dtv.com/songs/60093500.mkv +陈柏宇-你来自哪颗星,http://em.21dtv.com/songs/60031882.mkv +谢亮子-那里有我的家(无原唱),http://em.21dtv.com/songs/60030723.mkv +谢亮子+彭泽-哪里有我的家,http://em.21dtv.com/songs/60030669.mkv +张崇基+张崇德-你令我快乐过(演唱会),http://em.21dtv.com/songs/60031900.mkv +吕方-你令我快乐过(演唱会),http://em.21dtv.com/songs/60031899.mkv +关心妍+吕方-你令我快乐过(演唱会),http://em.21dtv.com/songs/60031898.mkv +WHITNEY HOUSTON+JERM-nobody loves me like you do,http://em.21dtv.com/songs/60004151.mkv +陈大天-哪里来的勇气,http://em.21dtv.com/songs/60124628.mkv +李慧林+陶馨州-你离开那一夜,http://em.21dtv.com/songs/60031891.mkv +扬墨-哪凉快哪儿呆,http://em.21dtv.com/songs/60030670.mkv +高进-你离开了一年,http://em.21dtv.com/songs/60031890.mkv +洪一平-尼罗河的眼泪,http://em.21dtv.com/songs/60104281.mkv +佚名-尼罗河的歌声,http://em.21dtv.com/songs/60031351.mkv +蓝奕邦-你伦敦我纽约,http://em.21dtv.com/songs/60080608.mkv +黎明-你令爱了不起,http://em.21dtv.com/songs/60031897.mkv +群星-你可以这样做(无原唱),http://em.21dtv.com/songs/60095866.mkv +王力宏-你可以告诉我,http://em.21dtv.com/songs/60090082.mkv +逍遥香香-你开心我快乐,http://em.21dtv.com/songs/60132959.mkv +S.H.E-你快乐我随意,http://em.21dtv.com/songs/60031876.mkv +蔡依林-你快乐我内伤(演唱会),http://em.21dtv.com/songs/60031875.mkv +杨钰莹-你看蓝蓝的天,http://em.21dtv.com/songs/60031848.mkv +孙思怡-你快乐的时候,http://em.21dtv.com/songs/60100833.mkv +苏有朋-你快乐不快乐,http://em.21dtv.com/songs/60088533.mkv +大牛-你肯嫁给我不,http://em.21dtv.com/songs/60081036.mkv +孙尘辰-你就这样走了,http://em.21dtv.com/songs/60110975.mkv +黄立成+MACHI-南京1937,http://em.21dtv.com/songs/60068515.mkv +阿杜-你就像个小孩,http://em.21dtv.com/songs/60031841.mkv +祁勃力-你教我那首歌,http://em.21dtv.com/songs/60131703.mkv +卢冠廷-你今天快乐吗,http://em.21dtv.com/songs/60125244.mkv +卢冠廷-你今天快乐吗,http://em.21dtv.com/songs/60121470.mkv +邰正宵-你就是我要的(演唱会),http://em.21dtv.com/songs/60031835.mkv +李沁怡-你叫什么名字,http://em.21dtv.com/songs/60031822.mkv +李慧珍+张靓颖-你叫什么名字,http://em.21dtv.com/songs/60031821.mkv +卢凯彤-廿九岁的遗书,http://em.21dtv.com/songs/60116610.mkv +杨乃文-你就是吃定我,http://em.21dtv.com/songs/60031831.mkv +陈娟儿-你寂寞才找我,http://em.21dtv.com/songs/60061456.mkv +馨梓-那就好好过吧,http://em.21dtv.com/songs/60088975.mkv +陈妃平-那就好好过吧,http://em.21dtv.com/songs/60030711.mkv +卓依婷-农家的小女孩,http://em.21dtv.com/songs/60032748.mkv +陶晶莹-年纪大了一点(演唱会),http://em.21dtv.com/songs/60032622.mkv +孔敏智+Flowsik-NINANO,http://em.21dtv.com/songs/60135100.mkv +汪晨蕊-你还要我怎样(演唱会),http://em.21dtv.com/songs/60128163.mkv +薛之谦-你还要我怎样,http://em.21dtv.com/songs/60093806.mkv +佚名-女孩与四重奏,http://em.21dtv.com/songs/60032869.mkv +林天爱-你还相信爱吗,http://em.21dtv.com/songs/60099340.mkv +叶丽仪-女黑侠木兰花(演唱会),http://em.21dtv.com/songs/60032870.mkv +柏君-你狠心离开我,http://em.21dtv.com/songs/60031793.mkv +孙淑媚-你乎我的希望,http://em.21dtv.com/songs/60031794.mkv +张惠妹-你和我的时光,http://em.21dtv.com/songs/60031783.mkv +刘达文-你还是走了吧,http://em.21dtv.com/songs/60031751.mkv +容祖儿-你还是疼我的,http://em.21dtv.com/songs/60031748.mkv +桂侠-男孩似的女孩,http://em.21dtv.com/songs/60089371.mkv +张津涤-你何时才回来,http://em.21dtv.com/songs/60123929.mkv +张津涤-你何时才回来,http://em.21dtv.com/songs/60122733.mkv +罗汉-您好人民公仆,http://em.21dtv.com/songs/60100380.mkv +王泽奇-您好人民公仆,http://em.21dtv.com/songs/60100317.mkv +枫舞+相容-奈何桥再相约,http://em.21dtv.com/songs/60129303.mkv +谢和弦-女孩你知道吗,http://em.21dtv.com/songs/60112962.mkv +章磊-你和你的Ta,http://em.21dtv.com/songs/60117110.mkv +王杰-你还没爱过我,http://em.21dtv.com/songs/60031742.mkv +杜昊+冯晓文-你还记得我吗,http://em.21dtv.com/songs/60031741.mkv +林木-你还会想我吗,http://em.21dtv.com/songs/60088110.mkv +疯子!,http://em.21dtv.com/songs/60130833.mkv +鹿角乐团-女孩别再忧愁,http://em.21dtv.com/songs/60071012.mkv +江蕙-那会彼无注意(无原唱),http://em.21dtv.com/songs/60030709.mkv +好不好?,http://em.21dtv.com/songs/60125311.mkv +S CLUB 7-never had a dream come true,http://em.21dtv.com/songs/60004068.mkv +李雨寿-妞给爷笑一个,http://em.21dtv.com/songs/60135384.mkv +孙露-你给我一片天,http://em.21dtv.com/songs/60115799.mkv +孙露-你给我一片天,http://em.21dtv.com/songs/60076911.mkv +成龙-你给我一片天,http://em.21dtv.com/songs/60031725.mkv +李鸥-你给我我给你,http://em.21dtv.com/songs/60130445.mkv +孙淑媚-你甘是无情人,http://em.21dtv.com/songs/60031704.mkv +孙燕姿-逆光,http://em.21dtv.com/songs/60115097.mkv +李茂山-那个人就是我,http://em.21dtv.com/songs/60030704.mkv +李太行-那个人不是我,http://em.21dtv.com/songs/60062603.mkv +田一龙-那个人不是我,http://em.21dtv.com/songs/60061440.mkv +阿正+HNS组合-南国情(演唱会),http://em.21dtv.com/songs/60070973.mkv +方瑞娥-南国卖花姑娘(无原唱),http://em.21dtv.com/songs/60031102.mkv +谢和弦-你甘拢袂不甘,http://em.21dtv.com/songs/60128404.mkv +乱弹阿翔-你咁会想到我,http://em.21dtv.com/songs/60031755.mkv +ERIC CARMEN-never gonna fall in love again,http://em.21dtv.com/songs/60004065.mkv +珍爱-你过得还好吗,http://em.21dtv.com/songs/60110418.mkv +刘皇-你过的还好吗,http://em.21dtv.com/songs/60076912.mkv +侯奇才-你过的还好吗,http://em.21dtv.com/songs/60064630.mkv +陈红-你过得好不好,http://em.21dtv.com/songs/60031727.mkv +彭家丽-你过得比较好(无原唱),http://em.21dtv.com/songs/60095526.mkv +郑国锋-你给的安全感,http://em.21dtv.com/songs/60076909.mkv +正午-难过不是很多,http://em.21dtv.com/songs/60116085.mkv +左乐-难过不是很多,http://em.21dtv.com/songs/60069642.mkv +王熹蛮-你根本不懂我,http://em.21dtv.com/songs/60095327.mkv +女孩与机器人-南方小羊牧场,http://em.21dtv.com/songs/60076832.mkv +暖调-农发行进行曲,http://em.21dtv.com/songs/60101368.mkv +炎彬-能否回到从前,http://em.21dtv.com/songs/60083484.mkv +苏晴-逆风的蒲公英,http://em.21dtv.com/songs/60067294.mkv +伯阳-女儿一生有你,http://em.21dtv.com/songs/60032854.mkv +范萱蔚-廿二世纪少女,http://em.21dtv.com/songs/60032652.mkv +王利-女儿城的传说,http://em.21dtv.com/songs/60083559.mkv +晓雨-你带走我的心,http://em.21dtv.com/songs/60031523.mkv +熊峰-你带走我的爱,http://em.21dtv.com/songs/60068528.mkv +许强-难道这就是爱,http://em.21dtv.com/songs/60031189.mkv +晓月-难道这就是爱,http://em.21dtv.com/songs/60031188.mkv +彭佳慧-你答应我的事,http://em.21dtv.com/songs/60031521.mkv +羽泉-难道,http://em.21dtv.com/songs/60127286.mkv +王菲-你的心已不见,http://em.21dtv.com/songs/60091737.mkv +金城-你的心我最懂,http://em.21dtv.com/songs/60031644.mkv +邓丽君-你的心我的心,http://em.21dtv.com/songs/60031643.mkv +陈慧琳-难道消失了你,http://em.21dtv.com/songs/60031187.mkv +龙千玉-你的笑容变了,http://em.21dtv.com/songs/60031628.mkv +陈淑萍-你的心你的梦,http://em.21dtv.com/songs/60031637.mkv +黄西田+樱桃姐妹-你的心猜袂着,http://em.21dtv.com/songs/60031630.mkv +方怡萍-你的味无住址(无原唱),http://em.21dtv.com/songs/60031618.mkv +T.R.Y-你对我太重要,http://em.21dtv.com/songs/60031699.mkv +向蕙玲-你的人我的梦,http://em.21dtv.com/songs/60031601.mkv +吴淑敏+陈豪-你的人我的梦(无原唱),http://em.21dtv.com/songs/60031600.mkv +黑龙-拿得起放的下,http://em.21dtv.com/songs/60083446.mkv +高进-拿得起放得下,http://em.21dtv.com/songs/60064588.mkv +杨钰莹-难道你不明白,http://em.21dtv.com/songs/60031174.mkv +林静熙-难道你不爱我,http://em.21dtv.com/songs/60076837.mkv +成云刚+王星星-你的名我的姓,http://em.21dtv.com/songs/60076894.mkv +李明德+阿轮-你的名我的命,http://em.21dtv.com/songs/60031588.mkv +黄妃+江国宾-你的名我的命,http://em.21dtv.com/songs/60031587.mkv +陈慧娴-你的梦我的梦,http://em.21dtv.com/songs/60031586.mkv +伦永亮-你的梦我不懂(无原唱),http://em.21dtv.com/songs/60031585.mkv +洪玲-你的路我的梦,http://em.21dtv.com/songs/60031582.mkv +林显丞-你的路我的梦(无原唱),http://em.21dtv.com/songs/60031581.mkv +田一龙-你的泪会说谎,http://em.21dtv.com/songs/60031573.mkv +黄薏儒+梁理凯-你点亮的星空,http://em.21dtv.com/songs/60107379.mkv +游鸿明-你的呼吸是海,http://em.21dtv.com/songs/60031565.mkv +高信-你到底在哪里,http://em.21dtv.com/songs/60072227.mkv +田维英-你到底要什么,http://em.21dtv.com/songs/60083494.mkv +张明明-你到底要什么,http://em.21dtv.com/songs/60061451.mkv +刘超华-你到底为谁累,http://em.21dtv.com/songs/60121455.mkv +刘超华-你到底为谁累,http://em.21dtv.com/songs/60031535.mkv +刘超华-你到底爱上谁,http://em.21dtv.com/songs/60031529.mkv +优客李林-你的愁我的梦,http://em.21dtv.com/songs/60031556.mkv +优客李林-你的愁我的梦(演唱会),http://em.21dtv.com/songs/60031555.mkv +力鹏-你的爱在远方,http://em.21dtv.com/songs/60134947.mkv +靳海涛-你的爱忘不了,http://em.21dtv.com/songs/60099601.mkv +阿涛-你的爱忘不了,http://em.21dtv.com/songs/60064623.mkv +游艺湉-你的爱太嚣张,http://em.21dtv.com/songs/60076887.mkv +谢容儿-你的爱太嚣张,http://em.21dtv.com/songs/60076886.mkv +晓依-你的爱是伤害,http://em.21dtv.com/songs/60080009.mkv +邢晓斌-你的爱是伤害,http://em.21dtv.com/songs/60076885.mkv +罗逻圣-你的爱死了吗,http://em.21dtv.com/songs/60129483.mkv +张龙珍-你的爱是毒药,http://em.21dtv.com/songs/60114553.mkv +龙梅子-你的爱情像闪,http://em.21dtv.com/songs/60123419.mkv +龙帝-难道爱你有错,http://em.21dtv.com/songs/60068516.mkv +林姗-难道爱你是错,http://em.21dtv.com/songs/60031164.mkv +阿文-你的爱还在吗,http://em.21dtv.com/songs/60109680.mkv +易欣-你的爱给了谁,http://em.21dtv.com/songs/60031543.mkv +陈珧-你的爱给了谁,http://em.21dtv.com/songs/60031542.mkv +零点乐队-你的爱给了谁(演唱会),http://em.21dtv.com/songs/60031541.mkv +林姗-你的爱给别人,http://em.21dtv.com/songs/60069650.mkv +黄思婷-你的爱给别人,http://em.21dtv.com/songs/60031540.mkv +周深-你曾这样问过,http://em.21dtv.com/songs/60126724.mkv +梁家郡-你出现的那天,http://em.21dtv.com/songs/60127126.mkv +海镔-你从未走远.,http://em.21dtv.com/songs/60107035.mkv +何刚-牛车我的爸妈,http://em.21dtv.com/songs/60085550.mkv +海镔-你曾是我唯一,http://em.21dtv.com/songs/60061470.mkv +小琢-你曾经对我说,http://em.21dtv.com/songs/60122681.mkv +郎军-你曾经对我说,http://em.21dtv.com/songs/60080191.mkv +詹雅雯-你曾经爱过我,http://em.21dtv.com/songs/60107205.mkv +韩宝仪-你曾经爱过我,http://em.21dtv.com/songs/60031513.mkv +刘晶-你长得像我吗,http://em.21dtv.com/songs/60104828.mkv +单行道乐队-农村包围城市,http://em.21dtv.com/songs/60032744.mkv +杨树林+男光音组合-奶爸阵线联盟,http://em.21dtv.com/songs/60133845.mkv +周裔平-你不在属于我,http://em.21dtv.com/songs/60126726.mkv +迪玛希-拿不走的记忆,http://em.21dtv.com/songs/60135789.mkv +吕家声-你不在的风景,http://em.21dtv.com/songs/60130174.mkv +袁惟仁-你不知道的我,http://em.21dtv.com/songs/60031510.mkv +陈永馨-你不知道的事,http://em.21dtv.com/songs/60102897.mkv +陈以桐-你不知道的事,http://em.21dtv.com/songs/60102866.mkv +范玮琪+鲍丹-你不知道的事,http://em.21dtv.com/songs/60095082.mkv +桂雨蒙-你不知道的事,http://em.21dtv.com/songs/60081634.mkv +罗力威-你不知道的事(演唱会),http://em.21dtv.com/songs/60076879.mkv +徐亮+刘柏延-你不知道的事,http://em.21dtv.com/songs/60070984.mkv +王力宏-你不知道的事,http://em.21dtv.com/songs/60031509.mkv +解晓东-你不要心太黑,http://em.21dtv.com/songs/60031501.mkv +吴宗宪-你比以前快乐,http://em.21dtv.com/songs/60031439.mkv +黄佩舒-你不要的天堂,http://em.21dtv.com/songs/60130926.mkv +七郎+谢雷-南部兄北部哥,http://em.21dtv.com/songs/60126564.mkv +罗百吉-你把我心吃掉,http://em.21dtv.com/songs/60062740.mkv +小九-你不问我不说,http://em.21dtv.com/songs/60111823.mkv +阿勇泽让-你把我害苦了,http://em.21dtv.com/songs/60031431.mkv +杨丞琳-你不属于我了,http://em.21dtv.com/songs/60031496.mkv +梁咏琪-你不是一个人,http://em.21dtv.com/songs/60127124.mkv +黄健翔-你不是一个人,http://em.21dtv.com/songs/60031494.mkv +JPM-那不是雪中红,http://em.21dtv.com/songs/60062066.mkv +焰烽-你不是我的菜,http://em.21dtv.com/songs/60070983.mkv +刘德华-你不说我不懂,http://em.21dtv.com/songs/60031497.mkv +咚大为-男不帅女不爱,http://em.21dtv.com/songs/60030877.mkv +TWINS-你不是好情人,http://em.21dtv.com/songs/60031486.mkv +万首-牛背上的孩子,http://em.21dtv.com/songs/60032724.mkv +佚名-牛背上的姑娘,http://em.21dtv.com/songs/60032723.mkv +高瑞屏-哪不是爱着你,http://em.21dtv.com/songs/60030657.mkv +梦飞船-南半球北半球,http://em.21dtv.com/songs/60031081.mkv +余天-能不能留住你,http://em.21dtv.com/songs/60031343.mkv +佚名-能不能留住你,http://em.21dtv.com/songs/60031342.mkv +高胜美-能不能留住你,http://em.21dtv.com/songs/60031341.mkv +五月天-能不能不要说,http://em.21dtv.com/songs/60031339.mkv +单小源-能不能不结束,http://em.21dtv.com/songs/60131225.mkv +阿茹+黑面-南部妹东部兄,http://em.21dtv.com/songs/60085500.mkv +黄志强+素兰-南部妹北部哥,http://em.21dtv.com/songs/60031083.mkv +寒武纪-你不离我不弃,http://em.21dtv.com/songs/60094069.mkv +天籁天-你不离我不弃,http://em.21dtv.com/songs/60086729.mkv +高安+西单女孩-你不来我不老,http://em.21dtv.com/songs/60120150.mkv +高安-你不来我不老,http://em.21dtv.com/songs/60120148.mkv +高安-你不来我不老,http://em.21dtv.com/songs/60117391.mkv +高安+西单女孩-你不来我不老,http://em.21dtv.com/songs/60116397.mkv +岑晓路-你不来我不好,http://em.21dtv.com/songs/60103244.mkv +游鸿明-你不留的回忆,http://em.21dtv.com/songs/60031480.mkv +张靓颖-那不会是爱吧,http://em.21dtv.com/songs/60030684.mkv +女兵三人组-女兵的小秘密,http://em.21dtv.com/songs/60087630.mkv +钟嘉欣-你不懂我的心,http://em.21dtv.com/songs/60031462.mkv +景帅-你不懂我的心,http://em.21dtv.com/songs/60031461.mkv +2个女生-你不懂我不同,http://em.21dtv.com/songs/60031460.mkv +独脚神鹰-那边的格桑花,http://em.21dtv.com/songs/60030683.mkv +刘嘉亮-你不懂爱自己,http://em.21dtv.com/songs/60031458.mkv +吴宗宪-你比从前快乐,http://em.21dtv.com/songs/60031436.mkv +周杰伦-你比从前快乐(演唱会),http://em.21dtv.com/songs/60031435.mkv +蓝心湄-你不必太在意,http://em.21dtv.com/songs/60031453.mkv +基地小虎-你不爱我了吗,http://em.21dtv.com/songs/60099897.mkv +吴建豪-你不爱我爱谁,http://em.21dtv.com/songs/60031449.mkv +吴建豪-你不爱我爱谁(演唱会),http://em.21dtv.com/songs/60031448.mkv +高安-你把爱还给我,http://em.21dtv.com/songs/60064615.mkv +思念-你把爱给了谁,http://em.21dtv.com/songs/60076862.mkv +冯文女-你把爱给了谁,http://em.21dtv.com/songs/60031418.mkv +蔡秋凤-你按怎对待我,http://em.21dtv.com/songs/60031416.mkv +孙燕姿-你爱我哪一面,http://em.21dtv.com/songs/60031408.mkv +郑秀文-你爱我爱不起,http://em.21dtv.com/songs/60031399.mkv +梦飞船-你爱她我爱她,http://em.21dtv.com/songs/60031394.mkv +孙蓝-你爱上他以后,http://em.21dtv.com/songs/60105760.mkv +张真菲-你爱上他了吗,http://em.21dtv.com/songs/60063431.mkv +阳一-你爱上他了吗,http://em.21dtv.com/songs/60031391.mkv +覃元隆-你爱上他了吗,http://em.21dtv.com/songs/60031390.mkv +尹光-你阿妈大减价(演唱会),http://em.21dtv.com/songs/60061450.mkv +成龙-你爱的我是谁,http://em.21dtv.com/songs/60091224.mkv +施文彬-你爱的是别人,http://em.21dtv.com/songs/60031379.mkv +杨罡-你爱的人是谁,http://em.21dtv.com/songs/60080805.mkv +S.H.E-你爱的就是我,http://em.21dtv.com/songs/60031377.mkv +张琪玮-你爱的不是我,http://em.21dtv.com/songs/60123939.mkv +黄体体-你爱的不是我,http://em.21dtv.com/songs/60067266.mkv +顾峰-你爱的不是我,http://em.21dtv.com/songs/60067265.mkv +施文彬-你爱的不是我,http://em.21dtv.com/songs/60031376.mkv +邓丽君-女の生きがい(演唱会),http://em.21dtv.com/songs/60032827.mkv +陈艺搏-命中注定的她,http://em.21dtv.com/songs/60114227.mkv +孙淑媚-明知已经无缘,http://em.21dtv.com/songs/60030263.mkv +员伟明-埋葬一个世界,http://em.21dtv.com/songs/60081248.mkv +佚名-毛主席派人来,http://em.21dtv.com/songs/60028683.mkv +泽娜卓-毛主席的光辉,http://em.21dtv.com/songs/60028666.mkv +才旦卓玛-毛主席的光辉,http://em.21dtv.com/songs/60028665.mkv +徐秋菊-梅州我的家乡,http://em.21dtv.com/songs/60029006.mkv +佚名-莫扎特摇篮曲,http://em.21dtv.com/songs/60030452.mkv +黄宝欣-莫再偷恋往事,http://em.21dtv.com/songs/60030450.mkv +陈骅-莫扎特的烦恼,http://em.21dtv.com/songs/60030451.mkv +孙淑媚-梦着思念的人,http://em.21dtv.com/songs/60029758.mkv +罗时丰-墓仔埔也敢去,http://em.21dtv.com/songs/60076769.mkv +佚名-墓仔埔也敢去,http://em.21dtv.com/songs/60030640.mkv +叶启田-墓仔埔也敢去,http://em.21dtv.com/songs/60030639.mkv +蔡依林-墓仔埔也敢去,http://em.21dtv.com/songs/60030638.mkv +伍佰-墓仔埔也敢去(演唱会),http://em.21dtv.com/songs/60030637.mkv +贺一航-墓仔埔也敢去(无原唱),http://em.21dtv.com/songs/60030636.mkv +谢莉婷-梦中花梦中情,http://em.21dtv.com/songs/60123179.mkv +谢莉婷-梦中花梦中情,http://em.21dtv.com/songs/60117233.mkv +杨丽-梦中花儿开了,http://em.21dtv.com/songs/60094163.mkv +李九鸣-没资格说爱我,http://em.21dtv.com/songs/60128076.mkv +雷婷-没资格说爱我,http://em.21dtv.com/songs/60100617.mkv +李九鸣-没资格说爱我,http://em.21dtv.com/songs/60086695.mkv +央吉拉-梦中的央吉拉,http://em.21dtv.com/songs/60126759.mkv +巴桑拉姆-梦中的雪莲花,http://em.21dtv.com/songs/60085465.mkv +登越顿珠-梦中的香巴拉,http://em.21dtv.com/songs/60076694.mkv +张行-梦中的乌蓬船,http://em.21dtv.com/songs/60091155.mkv +米线-梦中的唐古拉,http://em.21dtv.com/songs/60088398.mkv +李杨飞-梦中的三亚湾,http://em.21dtv.com/songs/60116010.mkv +彩贝乐队-梦中的三亚湾,http://em.21dtv.com/songs/60067233.mkv +羌人老三-梦中的苹果树,http://em.21dtv.com/songs/60114726.mkv +刘建东-梦中的兰花花,http://em.21dtv.com/songs/60127767.mkv +刘建东-梦中的兰花花,http://em.21dtv.com/songs/60121436.mkv +亚东-命中的红珊瑚,http://em.21dtv.com/songs/60089595.mkv +高安-明知道很爱你,http://em.21dtv.com/songs/60127601.mkv +高安+杨净宇-明知道很爱你,http://em.21dtv.com/songs/60126454.mkv +含烟-梦中的大草原,http://em.21dtv.com/songs/60094845.mkv +黑骏马组合-梦中的查干湖,http://em.21dtv.com/songs/60069611.mkv +游子-梦中的白玉兰,http://em.21dtv.com/songs/60113822.mkv +吴小红-梦在草原飞翔,http://em.21dtv.com/songs/60121493.mkv +李国庆-梦在草原飞翔,http://em.21dtv.com/songs/60119655.mkv +闵国银+王蓉-埋葬爱的借口,http://em.21dtv.com/songs/60117303.mkv +黄凯芹-没有真的放手,http://em.21dtv.com/songs/60028914.mkv +王杰-梦与游戏之间,http://em.21dtv.com/songs/60029747.mkv +零点乐队-每一夜每一天(演唱会),http://em.21dtv.com/songs/60029105.mkv +毛泽少-没有眼泪的鱼,http://em.21dtv.com/songs/60110325.mkv +陈哓东-没有烟火的xiax,http://em.21dtv.com/songs/60028903.mkv +虢建五+林琳-梦一样的地方,http://em.21dtv.com/songs/60119955.mkv +草蜢-每一些也是情,http://em.21dtv.com/songs/60029104.mkv +李美-明月心公仆情,http://em.21dtv.com/songs/60133827.mkv +伯阳-没有雪的冬季,http://em.21dtv.com/songs/60028899.mkv +陈奕迅-命运无奇不有,http://em.21dtv.com/songs/60093394.mkv +Seth MacFarlane-My Way,http://em.21dtv.com/songs/60133279.mkv +朱莉静-My Way,http://em.21dtv.com/songs/60117802.mkv +Area51-MYTIME,http://em.21dtv.com/songs/60123439.mkv +陈晓东-每一天都想念,http://em.21dtv.com/songs/60029102.mkv +郭静-每一天都不同,http://em.21dtv.com/songs/60029101.mkv +杨美莲-没有什么道理(无原唱),http://em.21dtv.com/songs/60028884.mkv +曲婉婷-没有什么不同,http://em.21dtv.com/songs/60069594.mkv +杨宗纬-没有什么不能,http://em.21dtv.com/songs/60083365.mkv +陈奂仁+区阳靖-没有时间后悔,http://em.21dtv.com/songs/60062252.mkv +林忆莲-命运是否这样,http://em.21dtv.com/songs/60030304.mkv +NAV-Myself,http://em.21dtv.com/songs/60134769.mkv +陈洁仪-每一生都等你,http://em.21dtv.com/songs/60085432.mkv +柳石明-木鱼石的传说,http://em.21dtv.com/songs/60085486.mkv +代慧颖-没有人在乎我,http://em.21dtv.com/songs/60132182.mkv +任贤齐-没有人了解我,http://em.21dtv.com/songs/60028874.mkv +佚名-没有人的时候,http://em.21dtv.com/songs/60028869.mkv +孙燕姿-没有人的方向(演唱会),http://em.21dtv.com/songs/60028868.mkv +陈柏圻-没有人的地方,http://em.21dtv.com/songs/60028867.mkv +王宏健-没有权利爱你,http://em.21dtv.com/songs/60100315.mkv +严爵-没有你怎么办,http://em.21dtv.com/songs/60061409.mkv +SHINE-没有你怎么办(演唱会),http://em.21dtv.com/songs/60028846.mkv +何遇程-没有你我会哭,http://em.21dtv.com/songs/60112509.mkv +关心妍-没有你那有我,http://em.21dtv.com/songs/60119270.mkv +张宇-没有你的月台,http://em.21dtv.com/songs/60028829.mkv +陈慧琳-没有你的一切,http://em.21dtv.com/songs/60028828.mkv +涓子-没有你的世界,http://em.21dtv.com/songs/60064513.mkv +王爵ALSTON-没有你的日子,http://em.21dtv.com/songs/60086693.mkv +刘继业-没有你的日子,http://em.21dtv.com/songs/60085424.mkv +王爵-没有你的日子,http://em.21dtv.com/songs/60083363.mkv +周传雄-没有你的日子,http://em.21dtv.com/songs/60028819.mkv +周传雄-没有你的日子(演唱会),http://em.21dtv.com/songs/60028818.mkv +寒武纪-没有你的秋季,http://em.21dtv.com/songs/60108454.mkv +安心亚-没有你的明天,http://em.21dtv.com/songs/60072186.mkv +郑家星-没有你的季节,http://em.21dtv.com/songs/60083362.mkv +张跃-没有你的孤单,http://em.21dtv.com/songs/60061408.mkv +陈奕-没有你的房间,http://em.21dtv.com/songs/60028815.mkv +刘德华-没有你的城市,http://em.21dtv.com/songs/60028814.mkv +丽娜-没有你的承诺,http://em.21dtv.com/songs/60028813.mkv +六岁半-没有名字的歌,http://em.21dtv.com/songs/60116560.mkv +常思思-玛依拉变奏曲,http://em.21dtv.com/songs/60028403.mkv +古巨基-没有脚的小鸟,http://em.21dtv.com/songs/60028793.mkv +谢天笑-命运还是巧合,http://em.21dtv.com/songs/60110530.mkv +谢天笑-命运还是巧合[消伴],http://em.21dtv.com/songs/60101506.mkv +陈瑞-梦萦魂牵的爱,http://em.21dtv.com/songs/60094331.mkv +莫翰-没有故乡的风,http://em.21dtv.com/songs/60096118.mkv +吴炜-没有故事的人,http://em.21dtv.com/songs/60028787.mkv +邱胜翊-每一分每一秒,http://em.21dtv.com/songs/60128459.mkv +郝云-卖艺的小青年(演唱会),http://em.21dtv.com/songs/60064508.mkv +刘文-命运的铁栅栏,http://em.21dtv.com/songs/60098146.mkv +林姗-命运的青红灯,http://em.21dtv.com/songs/60030292.mkv +陈晓东-没有灯火的xmas,http://em.21dtv.com/songs/60028778.mkv +柳絮-梦一场醉一生,http://em.21dtv.com/songs/60099349.mkv +黄金剩女-没有车没有房,http://em.21dtv.com/songs/60028774.mkv +孙辉-没有车没有房,http://em.21dtv.com/songs/60028773.mkv +孟阳-没烟抽的女人,http://em.21dtv.com/songs/60085421.mkv +孟杨-没烟抽的女人,http://em.21dtv.com/songs/60028765.mkv +庄心妍-没有翅膀的鸟,http://em.21dtv.com/songs/60135184.mkv +韦唯-命运不是辘轳,http://em.21dtv.com/songs/60030287.mkv +李娜-命运不是辘轳,http://em.21dtv.com/songs/60030286.mkv +周汤豪-My Boo,http://em.21dtv.com/songs/60131273.mkv +周汤豪-My Boo,http://em.21dtv.com/songs/60130197.mkv +王杰-没有爱哪有恨,http://em.21dtv.com/songs/60028770.mkv +徐静蕾-梦想照进现实,http://em.21dtv.com/songs/60029696.mkv +黄磊-梦醒在几点钟,http://em.21dtv.com/songs/60029730.mkv +歌浴森-冒险喜马拉雅,http://em.21dtv.com/songs/60080515.mkv +蔡晓-梦想就在前方,http://em.21dtv.com/songs/60128374.mkv +海心-梦想就在前方,http://em.21dtv.com/songs/60114657.mkv +天意-梦想就在前方,http://em.21dtv.com/songs/60099180.mkv +戴溶萱-梦想就是现实,http://em.21dtv.com/songs/60125603.mkv +朱咪咪-梦想号黄包车(演唱会),http://em.21dtv.com/songs/60029684.mkv +甄妮-梦想号黄包车(演唱会),http://em.21dtv.com/songs/60029683.mkv +林美惠-摸心肝想看觅,http://em.21dtv.com/songs/60030313.mkv +黄乙玲-摸心肝想看觅,http://em.21dtv.com/songs/60030312.mkv +CS晨悠-梦想的天空它,http://em.21dtv.com/songs/60106529.mkv +群星-梦想的弹簧床,http://em.21dtv.com/songs/60029674.mkv +秀兰玛雅-梦醒才知相思,http://em.21dtv.com/songs/60029707.mkv +杨培安-梦想从心开始,http://em.21dtv.com/songs/60029671.mkv +汪峰+蒋敦豪+徐歌阳-满,http://em.21dtv.com/songs/60129335.mkv +张惠妹-默,http://em.21dtv.com/songs/60129079.mkv +VC组合-默,http://em.21dtv.com/songs/60126556.mkv +王子文-闷,http://em.21dtv.com/songs/60125908.mkv +周笔畅-梦,http://em.21dtv.com/songs/60125316.mkv +BY2-梦想不能等待,http://em.21dtv.com/songs/60080883.mkv +1931组合-梦想不会孤单,http://em.21dtv.com/songs/60123423.mkv +我回来了,http://em.21dtv.com/songs/60125595.mkv +锦绣二重唱-明天也要作伴,http://em.21dtv.com/songs/60030221.mkv +BOYZ II MEN-more than youll ever know,http://em.21dtv.com/songs/60065652.mkv +佚名-明天又将如何(无原唱),http://em.21dtv.com/songs/60030225.mkv +卢飞-明天修正伴奏,http://em.21dtv.com/songs/60121475.mkv +林志炫-每天想你一遍,http://em.21dtv.com/songs/60029067.mkv +苏云-明天我不远行,http://em.21dtv.com/songs/60076731.mkv +刘德华-明天同一时间,http://em.21dtv.com/songs/60090699.mkv +艾梦萌-明天天亮以后,http://em.21dtv.com/songs/60066159.mkv +胡彦斌-明天是你生日,http://em.21dtv.com/songs/60090124.mkv +林忆莲-明天是否爱我,http://em.21dtv.com/songs/60030208.mkv +王璐-马头琴的诉说,http://em.21dtv.com/songs/60117925.mkv +蒙克-马头琴的悲伤,http://em.21dtv.com/songs/60084644.mkv +王俊凯-摩天轮的思念,http://em.21dtv.com/songs/60125898.mkv +迈克华仔-明天就是未来,http://em.21dtv.com/songs/60067241.mkv +霍正奇-明天还要继续,http://em.21dtv.com/songs/60030186.mkv +陈淑桦-明天还爱我吗,http://em.21dtv.com/songs/60030184.mkv +郭峰-每天都有你在(演唱会),http://em.21dtv.com/songs/60029061.mkv +梁静茹-每天第一件事,http://em.21dtv.com/songs/60029059.mkv +187INC+顽童MJ116-每天都是生日,http://em.21dtv.com/songs/60120183.mkv +夏冰-明天的你快乐,http://em.21dtv.com/songs/60083424.mkv +佚名-猛听得金鼓响,http://em.21dtv.com/songs/60029452.mkv +杜莉萨-眉头不再猛皱,http://em.21dtv.com/songs/60092824.mkv +李丽霞+JoeJunior-眉头不再猛皱,http://em.21dtv.com/songs/60092775.mkv +冷漠+陈瑞-蒙上眼锁上心,http://em.21dtv.com/songs/60126626.mkv +宋祖英-梦是我的绿窗,http://em.21dtv.com/songs/60090959.mkv +齐天三喜-米斯特闷先生,http://em.21dtv.com/songs/60081374.mkv +左小祖咒-陌生人在唱歌,http://em.21dtv.com/songs/60123881.mkv +吴宗宪-陌生人谁爱我,http://em.21dtv.com/songs/60030413.mkv +邱淑君-抹生牵拖厝边(无原唱),http://em.21dtv.com/songs/60030379.mkv +易欣-没事陪你走走,http://em.21dtv.com/songs/60028758.mkv +谢金燕-没什么我愿意,http://em.21dtv.com/songs/60028753.mkv +林显丞-买什么送小姐(无原唱),http://em.21dtv.com/songs/60028424.mkv +北原山猫-没什么了不起(无原唱),http://em.21dtv.com/songs/60028752.mkv +潘辰-没什么大不了,http://em.21dtv.com/songs/60028750.mkv +KRUSTY-没什么大不了,http://em.21dtv.com/songs/60028749.mkv +乔毓明-马赛克的世界,http://em.21dtv.com/songs/60105553.mkv +谢霆锋-末世纪的呼声,http://em.21dtv.com/songs/60030388.mkv +谢霆锋-末世纪的呼声(演唱会),http://em.21dtv.com/songs/60030387.mkv +陈奕迅-末世纪的呼声(演唱会),http://em.21dtv.com/songs/60030386.mkv +Spexial-迷失in U,http://em.21dtv.com/songs/60109113.mkv +周冰倩-陌生的华尔滋,http://em.21dtv.com/songs/60030403.mkv +容中尔甲-牧人之歌(舞曲版),http://em.21dtv.com/songs/60062882.mkv +王艺-美人鱼的眼泪,http://em.21dtv.com/songs/60029343.mkv +超人-美人笑美人傲,http://em.21dtv.com/songs/60106314.mkv +金池-默认,http://em.21dtv.com/songs/60106343.mkv +王汇筑-末日前的使坏,http://em.21dtv.com/songs/60101444.mkv +许志安-某日某个傍晚,http://em.21dtv.com/songs/60030500.mkv +满江-MR.MAN,http://em.21dtv.com/songs/60124217.mkv +Apink-Mr.Chu,http://em.21dtv.com/songs/60109796.mkv +林鸿阳-没人把你代替,http://em.21dtv.com/songs/60028746.mkv +杨千嬅-慢热北海道夏,http://em.21dtv.com/songs/60028596.mkv +孙淑媚-没人爱的女人,http://em.21dtv.com/songs/60028745.mkv +伍佰-没人爱的女孩,http://em.21dtv.com/songs/60090587.mkv +ALAN-明日への赞歌,http://em.21dtv.com/songs/60030129.mkv +哈琳-母亲祝您长寿,http://em.21dtv.com/songs/60097727.mkv +童唱-母亲您真伟大,http://em.21dtv.com/songs/60030538.mkv +佚名-母亲你真伟大,http://em.21dtv.com/songs/60030537.mkv +童唱-母亲你真伟大(无原唱),http://em.21dtv.com/songs/60030536.mkv +佚名-母亲你在何方,http://em.21dtv.com/songs/60030535.mkv +佚名-母亲教我的歌,http://em.21dtv.com/songs/60030534.mkv +腾格尔-母亲湖的泪水,http://em.21dtv.com/songs/60030532.mkv +易影峰-梦起飞的地方,http://em.21dtv.com/songs/60069608.mkv +古巨基-MONICA,http://em.21dtv.com/songs/60108363.mkv +宇宙少女-MoMoMo,http://em.21dtv.com/songs/60119433.mkv +Jay Park+Ugly Duck-Mommae,http://em.21dtv.com/songs/60117463.mkv +李昶旻-Moment,http://em.21dtv.com/songs/60094149.mkv +何建清-美女我想泡你,http://em.21dtv.com/songs/60029328.mkv +雨宗林-某年某月某天,http://em.21dtv.com/songs/60130868.mkv +雨宗林-某年某月某天,http://em.21dtv.com/songs/60127572.mkv +高昊-某年某月某天,http://em.21dtv.com/songs/60030495.mkv +SHELLY佳+魏然-蒙娜丽莎的画,http://em.21dtv.com/songs/60076648.mkv +佚名-暝那会这呢长,http://em.21dtv.com/songs/60030270.mkv +江美丽-暝那会这呢长,http://em.21dtv.com/songs/60030269.mkv +胡杰夕-美女啊嫁给我,http://em.21dtv.com/songs/60064530.mkv +金润吉-慢慢走欣赏啊,http://em.21dtv.com/songs/60126298.mkv +阎维文-妈妈祝您长寿,http://em.21dtv.com/songs/60028313.mkv +叶丽仪-妈妈真的爱你,http://em.21dtv.com/songs/60028311.mkv +杨卿俪-妈妈永远不老,http://em.21dtv.com/songs/60108594.mkv +许亚童-迷梦,http://em.21dtv.com/songs/60127387.mkv +邱芸子-梦袂醒情难断,http://em.21dtv.com/songs/60029616.mkv +朱惠娟-马面唔知几长,http://em.21dtv.com/songs/60028378.mkv +王建杰-妈妈无怨的爱,http://em.21dtv.com/songs/60028308.mkv +周永斌-妈妈我想你了,http://em.21dtv.com/songs/60123766.mkv +樱花姐妹-妈妈!我想你,http://em.21dtv.com/songs/60071337.mkv +陈盈洁-妈妈我感谢你,http://em.21dtv.com/songs/60028299.mkv +吴松发-妈妈我的亲娘,http://em.21dtv.com/songs/60080979.mkv +路童-妹妹我的宝贝,http://em.21dtv.com/songs/60062731.mkv +童声合唱团-妈妈我不怕黑,http://em.21dtv.com/songs/60028297.mkv +任妙音-妹妹她比花俏,http://em.21dtv.com/songs/60098093.mkv +何曼婷-明明说好不哭,http://em.21dtv.com/songs/60090598.mkv +李克勤-明明深爱着你,http://em.21dtv.com/songs/60076719.mkv +尼格尔-牧马人的传说,http://em.21dtv.com/songs/60069628.mkv +童唱-妈妈你真伟大,http://em.21dtv.com/songs/60028275.mkv +童唱-妈妈您歇歇吧,http://em.21dtv.com/songs/60028276.mkv +邵洪-妈妈你辛苦了,http://em.21dtv.com/songs/60135797.mkv +刘嘉亮-妈妈您辛苦了,http://em.21dtv.com/songs/60028277.mkv +阿影-妈妈你去哪了,http://em.21dtv.com/songs/60099567.mkv +庄心妍-妈妈你去哪儿,http://em.21dtv.com/songs/60099996.mkv +董文华-妈妈你可知道,http://em.21dtv.com/songs/60028273.mkv +刘一祯-妈妈您快留步,http://em.21dtv.com/songs/60070903.mkv +刘罡-妈妈你别伤心,http://em.21dtv.com/songs/60028270.mkv +童唱-猫妈妈找小猫,http://em.21dtv.com/songs/60028641.mkv +988群星-马马Mi呀过好年,http://em.21dtv.com/songs/60097709.mkv +梁静茹-慢慢来比较快,http://em.21dtv.com/songs/60062623.mkv +佚名-妈妈看看我吧,http://em.21dtv.com/songs/60028266.mkv +乐洋-妹妹嫁给我吧,http://em.21dtv.com/songs/60103860.mkv +素兰-妈妈交待的话,http://em.21dtv.com/songs/60095835.mkv +蒋小涵-妈妈怀里的歌(儿歌),http://em.21dtv.com/songs/60090193.mkv +张继红-妈妈怀里的歌,http://em.21dtv.com/songs/60028259.mkv +李晓-木棉花的春天,http://em.21dtv.com/songs/60076766.mkv +林玉英-默默的祝福你,http://em.21dtv.com/songs/60030464.mkv +高胜美-默默的祝福你,http://em.21dtv.com/songs/60030463.mkv +亚东-妈妈的羊皮袄,http://em.21dtv.com/songs/60028248.mkv +宋祖英-妈妈的油茶果,http://em.21dtv.com/songs/60125412.mkv +宋祖英-妈妈的油茶果,http://em.21dtv.com/songs/60123843.mkv +佚名-毛毛的相思雨,http://em.21dtv.com/songs/60028652.mkv +白冰冰-毛毛的相思雨,http://em.21dtv.com/songs/60028651.mkv +李琼-妹妹的小酒窝,http://em.21dtv.com/songs/60029368.mkv +晓月-妈妈的那双脚,http://em.21dtv.com/songs/60111942.mkv +林俊杰-妈妈的娜鲁娃,http://em.21dtv.com/songs/60028233.mkv +欧得洋-妈妈的老情歌,http://em.21dtv.com/songs/60028231.mkv +佚名-妹妹的红腰带,http://em.21dtv.com/songs/60029367.mkv +叶倩文-慢慢地更加好(演唱会),http://em.21dtv.com/songs/60028584.mkv +童可可-萌萌滴乖乖滴,http://em.21dtv.com/songs/60112868.mkv +于浩宸-妈妈的富厚堂,http://em.21dtv.com/songs/60066137.mkv +梁静茹-满满的都是爱,http://em.21dtv.com/songs/60028523.mkv +祁隆-毛毛虫的爱情,http://em.21dtv.com/songs/60028650.mkv +程响-妹妹不做仙女,http://em.21dtv.com/songs/60111332.mkv +谢千里-没毛病好不了,http://em.21dtv.com/songs/60131815.mkv +肖洋-妈妈包的饺子,http://em.21dtv.com/songs/60122028.mkv +吕莘-迷恋这件小事,http://em.21dtv.com/songs/60125280.mkv +汪明荃-美丽娱乐世界(演唱会),http://em.21dtv.com/songs/60029295.mkv +KELLY CLARKSON-my life would suck without you,http://em.21dtv.com/songs/60067951.mkv +陈慧娴-my love will get you home(演唱会),http://em.21dtv.com/songs/60004006.mkv +谢霆锋-making love out of nothing at,http://em.21dtv.com/songs/60003721.mkv +AIR SUPPLY-making love out of nothing at,http://em.21dtv.com/songs/60003720.mkv +丁文琪-麻辣女孩kim possible(无原唱),http://em.21dtv.com/songs/60028336.mkv +CHARLIE WILSON-my love is all i have,http://em.21dtv.com/songs/60073642.mkv +祁隆+任妙音-梦里回到昨天,http://em.21dtv.com/songs/60125985.mkv +曾淑勤-茉莉花的日子,http://em.21dtv.com/songs/60030395.mkv +李玟-美丽的主题曲,http://em.21dtv.com/songs/60029249.mkv +郑梅芳-美丽的中国梦,http://em.21dtv.com/songs/60083380.mkv +新疆民歌-美丽的因太克,http://em.21dtv.com/songs/60089917.mkv +枫舞+歌一生-美丽的月亮船,http://em.21dtv.com/songs/60099347.mkv +周杰伦-米兰的小铁匠,http://em.21dtv.com/songs/60029951.mkv +MINI-美丽的新天地(无原唱),http://em.21dtv.com/songs/60029243.mkv +洛桑尖措-美丽的仙女湾,http://em.21dtv.com/songs/60069601.mkv +童唱-玛丽的小绵羊,http://em.21dtv.com/songs/60028392.mkv +驿动儿+海浪飞歌-美丽的雪莲花,http://em.21dtv.com/songs/60122286.mkv +伍俊华-美丽的新加坡,http://em.21dtv.com/songs/60029241.mkv +陈天红-美丽的天柱山,http://em.21dtv.com/songs/60121071.mkv +陈天红-美丽的天柱山,http://em.21dtv.com/songs/60083379.mkv +王丽达-美丽的松山湖,http://em.21dtv.com/songs/60076618.mkv +林睿一-美丽单身女人,http://em.21dtv.com/songs/60029147.mkv +励雯雯-美丽的上林湖,http://em.21dtv.com/songs/60120380.mkv +阎维文-美丽的萨尔浒,http://em.21dtv.com/songs/60076616.mkv +蔡佳君-美丽的黔西南,http://em.21dtv.com/songs/60064524.mkv +于洋-美丽的黔西南,http://em.21dtv.com/songs/60063289.mkv +段宛彤-美丽的青华海,http://em.21dtv.com/songs/60127150.mkv +泽旺多吉-美丽的佩枯措,http://em.21dtv.com/songs/60094979.mkv +许强-美丽的纳木措,http://em.21dtv.com/songs/60085435.mkv +朱永飞-美丽的蒙古包,http://em.21dtv.com/songs/60116890.mkv +阿勇泽让-美丽的蒙古包,http://em.21dtv.com/songs/60029207.mkv +祖海-美丽的罗源湾,http://em.21dtv.com/songs/60116181.mkv +崇子-美丽的刘家峡,http://em.21dtv.com/songs/60067224.mkv +民歌-美丽的泸沽湖,http://em.21dtv.com/songs/60090032.mkv +向爱平+马岚-美丽的昆士兰,http://em.21dtv.com/songs/60106675.mkv +东方红艳-美丽的金莲花,http://em.21dtv.com/songs/60120279.mkv +芭比-msn里的贾宝玉,http://em.21dtv.com/songs/60003940.mkv +雯雯-美丽的红水河,http://em.21dtv.com/songs/60083377.mkv +任贤齐-美丽的坏女人,http://em.21dtv.com/songs/60029191.mkv +韩紫灵-美丽的海南岛,http://em.21dtv.com/songs/60110671.mkv +孙露-美丽的花蝴蝶,http://em.21dtv.com/songs/60115844.mkv +孙露-美丽的花蝴蝶,http://em.21dtv.com/songs/60076613.mkv +张洪量-美丽的花蝴蝶,http://em.21dtv.com/songs/60029190.mkv +张洪量-美丽的花蝴蝶(演唱会),http://em.21dtv.com/songs/60029189.mkv +周安-美丽的淮安梦,http://em.21dtv.com/songs/60113338.mkv +刚毅-美丽的高原红,http://em.21dtv.com/songs/60086699.mkv +岗毅-美丽的高原红,http://em.21dtv.com/songs/60029176.mkv +刘唯-美丽的噶曲河,http://em.21dtv.com/songs/60087387.mkv +格桑梅朵-美丽的嘎曲河,http://em.21dtv.com/songs/60029175.mkv +马晓晨-美丽的橄榄坝,http://em.21dtv.com/songs/60134466.mkv +德德玛-美丽的额济纳,http://em.21dtv.com/songs/60029174.mkv +意玲-美丽的钓鱼岛,http://em.21dtv.com/songs/60115186.mkv +张信哲-美丽的地平线,http://em.21dtv.com/songs/60029173.mkv +乌兰图雅-美丽的达古拉,http://em.21dtv.com/songs/60132164.mkv +乌兰图雅-美丽的达古拉,http://em.21dtv.com/songs/60087248.mkv +郞凯亦-美丽的大草原,http://em.21dtv.com/songs/60099544.mkv +醉美-美丽的川藏线,http://em.21dtv.com/songs/60111457.mkv +宋春雁-美丽的长白湖,http://em.21dtv.com/songs/60115101.mkv +陈佳敏-美丽的布依寨,http://em.21dtv.com/songs/60118137.mkv +吴娜-美丽的鲅鱼圈,http://em.21dtv.com/songs/60108378.mkv +何洁-美丽的苯女人,http://em.21dtv.com/songs/60087311.mkv +周强-美丽的阿依河,http://em.21dtv.com/songs/60029150.mkv +燕尾蝶-美丽的阿拉善,http://em.21dtv.com/songs/60098619.mkv +满江-美丽不是错误,http://em.21dtv.com/songs/60091650.mkv +齐旦布+达娃卓玛-梅里爱的见证,http://em.21dtv.com/songs/60128644.mkv +麦洁文-没哭声的女子,http://em.21dtv.com/songs/60028721.mkv +张森-梦开始的地方,http://em.21dtv.com/songs/60115909.mkv +孙楠-梦开始的地方,http://em.21dtv.com/songs/60107655.mkv +华兄弟-梦开始的地方,http://em.21dtv.com/songs/60098167.mkv +童安格-梦开始的地方,http://em.21dtv.com/songs/60029580.mkv +骆超勇-梦开始的地方,http://em.21dtv.com/songs/60029579.mkv +洛天依-妹控即是正义,http://em.21dtv.com/songs/60133933.mkv +王羚柔-mr焦糖miss玛奇朵(无原唱),http://em.21dtv.com/songs/60003937.mkv +蔡依林-马甲上的绳索,http://em.21dtv.com/songs/60028357.mkv +沈显睿-铭记七十年前,http://em.21dtv.com/songs/60120692.mkv +宿涵+小旭PRO-麻将!麻将!,http://em.21dtv.com/songs/60132383.mkv +佚名-满江红随想曲,http://em.21dtv.com/songs/60028516.mkv +歌浴森-买间房子好吗,http://em.21dtv.com/songs/60102428.mkv +苏福-满街都是圣人,http://em.21dtv.com/songs/60095877.mkv +佚名-满街都是圣人(无原唱),http://em.21dtv.com/songs/60028520.mkv +Gwen Stefani-Misery,http://em.21dtv.com/songs/60122380.mkv +朱浩仁+陈珂冰-MIRROR,http://em.21dtv.com/songs/60124047.mkv +崔龙阳-Mirror,http://em.21dtv.com/songs/60123879.mkv +SHANIA TWAIN-man i feel like a woman,http://em.21dtv.com/songs/60003735.mkv +庞龙-美好,http://em.21dtv.com/songs/60107704.mkv +登格尔-梦回喜玛拉雅,http://em.21dtv.com/songs/60029558.mkv +孔妍-梅花雪梨花月,http://em.21dtv.com/songs/60132349.mkv +颜羽-马航 让我回家,http://em.21dtv.com/songs/60099620.mkv +许志安-迷糊情欲对象,http://em.21dtv.com/songs/60029865.mkv +许志安-迷糊情欲对象(演唱会),http://em.21dtv.com/songs/60029864.mkv +马健南-马航去的地方,http://em.21dtv.com/songs/60099622.mkv +WILLIE NELSON-my heroes have always been cow,http://em.21dtv.com/songs/60003995.mkv +邓紫棋-美好的旧时光(演唱会),http://em.21dtv.com/songs/60064520.mkv +谢金燕-卖火柴小女孩,http://em.21dtv.com/songs/60028469.mkv +ROD STEWART-my heart cant tell you no,http://em.21dtv.com/songs/60003991.mkv +詹雅雯-卖火柴的女孩,http://em.21dtv.com/songs/60110511.mkv +谢金燕-唛搁在这废话,http://em.21dtv.com/songs/60028497.mkv +谢金燕-麦搁在这废话,http://em.21dtv.com/songs/60028440.mkv +宋玉柱-蒙古族婚礼歌,http://em.21dtv.com/songs/60069607.mkv +庄心妍-魔鬼中的天使,http://em.21dtv.com/songs/60099217.mkv +崔天琪-魔鬼中的天使,http://em.21dtv.com/songs/60085479.mkv +中国好声音第二季-魔鬼中的天使(崔天琪),http://em.21dtv.com/songs/60081582.mkv +田馥甄-魔鬼中的天使,http://em.21dtv.com/songs/60062991.mkv +郑希怡-玫瑰遇上真爱,http://em.21dtv.com/songs/60028965.mkv +朱浩-没关系让你走,http://em.21dtv.com/songs/60069590.mkv +赵咏华-玫瑰香+欢颜,http://em.21dtv.com/songs/60097763.mkv +Mc魏小然-玫瑰是我偷的,http://em.21dtv.com/songs/60118273.mkv +马啼帮-每个人都能够,http://em.21dtv.com/songs/60127594.mkv +刘晶-每个人的力量,http://em.21dtv.com/songs/60080645.mkv +阿清-每个人都寂寞,http://em.21dtv.com/songs/60066146.mkv +阿木-某个女人的美,http://em.21dtv.com/songs/60030490.mkv +阿木-某个女人的美(演唱会),http://em.21dtv.com/songs/60030489.mkv +任军太-玫瑰花与傻瓜(演唱会),http://em.21dtv.com/songs/60062863.mkv +许嵩-玫瑰花的葬礼,http://em.21dtv.com/songs/60028935.mkv +苏天华-玫瑰花的眼泪,http://em.21dtv.com/songs/60028934.mkv +卓依婷-莫辜负好时光,http://em.21dtv.com/songs/60030424.mkv +蒋荣宗+216臭脸娃娃-魔法音乐学院,http://em.21dtv.com/songs/60030339.mkv +蟑螂乐队-麻烦你让一让,http://em.21dtv.com/songs/60028322.mkv +童唱-猫儿追老鼠逃,http://em.21dtv.com/songs/60028638.mkv +郁钧剑-马儿哟快快跑,http://em.21dtv.com/songs/60028356.mkv +Meghan Trainor-Me Too,http://em.21dtv.com/songs/60121291.mkv +豫剧-马二牛学剃头,http://em.21dtv.com/songs/60134615.mkv +Pile-Melody,http://em.21dtv.com/songs/60132120.mkv +Pile-Melody,http://em.21dtv.com/songs/60122407.mkv +古巨基-Medley,http://em.21dtv.com/songs/60134971.mkv +申明-马尔代夫和你,http://em.21dtv.com/songs/60134030.mkv +张敬轩-墨尔本的翡翠,http://em.21dtv.com/songs/60092613.mkv +林颐-墨尔本的翡翠,http://em.21dtv.com/songs/60030456.mkv +林颐-墨尔本的翡翠(演唱会),http://em.21dtv.com/songs/60030455.mkv +萌萌哒天团-魔都,http://em.21dtv.com/songs/60116228.mkv +网络歌手-梦带我去旅行,http://em.21dtv.com/songs/60085449.mkv +MOMO姐姐-momo带我去飞翔,http://em.21dtv.com/songs/60003861.mkv +罗家宝-牡丹亭之叫画,http://em.21dtv.com/songs/60030562.mkv +文千岁+李宝莹-牡丹亭之人鬼恋,http://em.21dtv.com/songs/60030557.mkv +梁耀安+蒋文端-牡丹亭-幽媾,http://em.21dtv.com/songs/60030559.mkv +CASSIDY-my drink nmy 2 step,http://em.21dtv.com/songs/60003970.mkv +吕雯-麦当娜的女儿,http://em.21dtv.com/songs/60028435.mkv +桂莹莹-每当你抱着我,http://em.21dtv.com/songs/60132633.mkv +胡杨林-每当你抱着我,http://em.21dtv.com/songs/60029023.mkv +WILLIE NELSON-mammas dont let your babies g,http://em.21dtv.com/songs/60003734.mkv +梁朝伟-马德里的情人,http://em.21dtv.com/songs/60028353.mkv +蔡依林-马德里不思议,http://em.21dtv.com/songs/60028352.mkv +陈盈洁-抹冻结局的爱,http://em.21dtv.com/songs/60096027.mkv +孙淑媚-抹冻回头的路,http://em.21dtv.com/songs/60030375.mkv +佚名-袂冻回头的路,http://em.21dtv.com/songs/60029391.mkv +罗时丰-袂当搁爱的人,http://em.21dtv.com/songs/60029388.mkv +车沅沅-每点爱都记着,http://em.21dtv.com/songs/60093229.mkv +周渝民-每次醒来+冰雨,http://em.21dtv.com/songs/60029016.mkv +青燕子演唱组-牧场上我的家,http://em.21dtv.com/songs/60030601.mkv +童唱-牧场上绿油油,http://em.21dtv.com/songs/60030600.mkv +格杨-merry christmas good bye for you,http://em.21dtv.com/songs/60073596.mkv +林心如-摸不透我的心,http://em.21dtv.com/songs/60091444.mkv +谭咏麟-mmm bop世界大同(演唱会),http://em.21dtv.com/songs/60003854.mkv +刘和刚-马背上的思念,http://em.21dtv.com/songs/60103925.mkv +容中尔甲-马背上的少年,http://em.21dtv.com/songs/60062881.mkv +王磊-马背上的柔情,http://em.21dtv.com/songs/60095329.mkv +德德玛-马背上的骑手,http://em.21dtv.com/songs/60028347.mkv +丽菲-马背上的情歌,http://em.21dtv.com/songs/60103058.mkv +格格-马背上的情歌,http://em.21dtv.com/songs/60076549.mkv +鲍国-马背上的女孩,http://em.21dtv.com/songs/60109055.mkv +游美灵-马背上的汉子,http://em.21dtv.com/songs/60068455.mkv +曲根-马背上的爱人,http://em.21dtv.com/songs/60076548.mkv +杨晓霞-抹不去的回忆,http://em.21dtv.com/songs/60030373.mkv +余文乐-默背你的心碎,http://em.21dtv.com/songs/60030458.mkv +佚名-make believe its your first t,http://em.21dtv.com/songs/60003713.mkv +二弟-没办法你太傻,http://em.21dtv.com/songs/60099071.mkv +Seventeen-MANSAE,http://em.21dtv.com/songs/60116474.mkv +Team 8-梦へのルート,http://em.21dtv.com/songs/60122431.mkv +魏新雨-来自星星的你,http://em.21dtv.com/songs/60100665.mkv +麻辣女生-来自星星的你,http://em.21dtv.com/songs/60099629.mkv +曹寅-来自星星的你,http://em.21dtv.com/songs/60099276.mkv +张浩-留在我的身边,http://em.21dtv.com/songs/60115158.mkv +江美琪-留在谁的心里,http://em.21dtv.com/songs/60027583.mkv +谢知言-雷州情(客家话),http://em.21dtv.com/songs/60068426.mkv +朱桦-恋着你的影子,http://em.21dtv.com/songs/60027156.mkv +郭婷筠-笼仔内的鸟仔,http://em.21dtv.com/songs/60135821.mkv +佚名-恋之曼珠沙华,http://em.21dtv.com/songs/60027161.mkv +李垚坤-老子马上有钱,http://em.21dtv.com/songs/60113618.mkv +邹昌龙-拉住妈妈的手,http://em.21dtv.com/songs/60129662.mkv +刘和刚-拉住妈妈的手,http://em.21dtv.com/songs/60109177.mkv +刘和刚-拉住妈妈的手,http://em.21dtv.com/songs/60108333.mkv +刘和刚-拉住妈妈的手,http://em.21dtv.com/songs/60081086.mkv +金志文-流着泪说分手,http://em.21dtv.com/songs/60117295.mkv +张瑶-流着泪说分手,http://em.21dtv.com/songs/60112689.mkv +小文-流着泪说分手,http://em.21dtv.com/songs/60027750.mkv +小柯+那英-留住蓝色地球,http://em.21dtv.com/songs/60093804.mkv +谭咏麟-恋足100分,http://em.21dtv.com/songs/60027164.mkv +谭咏麟-恋足100分(演唱会),http://em.21dtv.com/songs/60027163.mkv +刘春云-留住春天的云(演唱会),http://em.21dtv.com/songs/60027588.mkv +何洁-来自不同星球,http://em.21dtv.com/songs/60026017.mkv +腾格尔-老爷子老太太,http://em.21dtv.com/songs/60091908.mkv +赖雅妍-赖雅妍感觉你,http://em.21dtv.com/songs/60089488.mkv +莫露露-狼一样的男人,http://em.21dtv.com/songs/60107160.mkv +李紫昕-懒羊羊当大厨,http://em.21dtv.com/songs/60098488.mkv +赖雅妍-赖雅妍爱死了,http://em.21dtv.com/songs/60089489.mkv +海鸣威-落叶,http://em.21dtv.com/songs/60112079.mkv +刘依纯+林大海-六月天心也冷,http://em.21dtv.com/songs/60027802.mkv +洪卓立-恋一生的意志,http://em.21dtv.com/songs/60079908.mkv +黄乙玲-落雨暝的怨叹,http://em.21dtv.com/songs/60028129.mkv +蓝紫-蓝月亮紫月亮,http://em.21dtv.com/songs/60085350.mkv +SELENA GOMEZ-love you like a love song,http://em.21dtv.com/songs/60060866.mkv +小老头-绿野户外驴歌,http://em.21dtv.com/songs/60116744.mkv +达明一派+谢霆锋-六月和十二月(演唱会),http://em.21dtv.com/songs/60027797.mkv +叶瑗菱-来一段粘巴达(无原唱),http://em.21dtv.com/songs/60026016.mkv +苏慧伦-六月的茉莉梦,http://em.21dtv.com/songs/60076487.mkv +佚名-陆雅臣求岳母,http://em.21dtv.com/songs/60027912.mkv +蔡孟臻-来一场大冒险,http://em.21dtv.com/songs/60076312.mkv +魏晨-流星雨又来临,http://em.21dtv.com/songs/60027741.mkv +张瀛仁-乱相思恋相思,http://em.21dtv.com/songs/60135217.mkv +游鸿明+高家慧-楼下那个女人,http://em.21dtv.com/songs/60027888.mkv +陈惠婷-流星冒险王国,http://em.21dtv.com/songs/60117341.mkv +小刚-留下来给我爱,http://em.21dtv.com/songs/60090988.mkv +陈奕夫-流行感冒卡拉,http://em.21dtv.com/songs/60103677.mkv +VIXX-狼,http://em.21dtv.com/songs/60123563.mkv +佚名-love will never do without you,http://em.21dtv.com/songs/60003614.mkv +AOA-Luv Me,http://em.21dtv.com/songs/60114321.mkv +天依美眉-洛天依投食歌,http://em.21dtv.com/songs/60070897.mkv +佚名-林投叶色青青,http://em.21dtv.com/songs/60027390.mkv +小琢-老同学QQ见,http://em.21dtv.com/songs/60105777.mkv +田田-蓝天下的高原,http://em.21dtv.com/songs/60135586.mkv +PAUL MCCARTNEY-listen to what the man said,http://em.21dtv.com/songs/60003428.mkv +新新人类-来跳舞来吟歌(无原唱),http://em.21dtv.com/songs/60016054.mkv +佚名-looking through the eyes of love,http://em.21dtv.com/songs/60003490.mkv +佚名-浪淘沙北戴河,http://em.21dtv.com/songs/60026260.mkv +群星-light the passion share the dr,http://em.21dtv.com/songs/60003405.mkv +盖鸣晖+吴美英-楼台会访良朋,http://em.21dtv.com/songs/60076502.mkv +盖鸣晖+吴美英-楼台会-访良朋,http://em.21dtv.com/songs/60027885.mkv +那顺-骆驼草的思念,http://em.21dtv.com/songs/60028049.mkv +MARK TERENZI-love to be loved by you,http://em.21dtv.com/songs/60003604.mkv +王馨-来世做陌生人,http://em.21dtv.com/songs/60096413.mkv +梅艳芳-路始终告一段,http://em.21dtv.com/songs/60027957.mkv +纳兰-来生缘一世情,http://em.21dtv.com/songs/60069552.mkv +黄鸿升-六十亿分之一,http://em.21dtv.com/songs/60064489.mkv +赵新-梨树下的念想,http://em.21dtv.com/songs/60124518.mkv +黄乙玲-拢是为著你啦,http://em.21dtv.com/songs/60050540.mkv +李嘉-拢是为着你啦,http://em.21dtv.com/songs/60027869.mkv +陈淑萍-拢是为着你啦,http://em.21dtv.com/songs/60027868.mkv +郭富城-临睡吻你一次,http://em.21dtv.com/songs/60027402.mkv +王二妮+云飞-拉手手亲,http://em.21dtv.com/songs/60102516.mkv +莫文蔚-live show实况转播(演唱会),http://em.21dtv.com/songs/60003445.mkv +丹增-拉萨啤酒之歌,http://em.21dtv.com/songs/60095382.mkv +欢子-恋上你的滋味,http://em.21dtv.com/songs/60027142.mkv +乔洋-恋上你的无赖,http://em.21dtv.com/songs/60087250.mkv +游鸿明-恋上另一个人,http://em.21dtv.com/songs/60027137.mkv +任妙音-淋湿了我的心,http://em.21dtv.com/songs/60108295.mkv +任妙音-淋湿了我的心,http://em.21dtv.com/songs/60072156.mkv +张学友-楼上来的声音,http://em.21dtv.com/songs/60027878.mkv +张学友-楼上来的声音(演唱会),http://em.21dtv.com/songs/60027877.mkv +张曙亮-绿色井陉之恋,http://em.21dtv.com/songs/60100022.mkv +孟庭苇-老师节日快乐,http://em.21dtv.com/songs/60090942.mkv +杨朗朗-刘三姐的歌谣,http://em.21dtv.com/songs/60107817.mkv +北桑-老司机带带我,http://em.21dtv.com/songs/60128847.mkv +谭娟-庐山会更美丽(HD),http://em.21dtv.com/songs/10012811.mkv +张艺-泪水划过的脸,http://em.21dtv.com/songs/60121674.mkv +葛小虎-绿色鄂尔多斯,http://em.21dtv.com/songs/60119938.mkv +阿力-蓝色的忧郁轨,http://em.21dtv.com/songs/60122212.mkv +容中尔甲-绿色的那曲卡,http://em.21dtv.com/songs/60028178.mkv +佚名-蓝色的多瑙河,http://em.21dtv.com/songs/60026075.mkv +黄小桢-里斯本的倦意(无原唱),http://em.21dtv.com/songs/60026878.mkv +王电-老人家别担心,http://em.21dtv.com/songs/60072134.mkv +任承浩-恋人还是朋友,http://em.21dtv.com/songs/60076419.mkv +于童-恋曲1990,http://em.21dtv.com/songs/60090507.mkv +黄伟麟-恋曲1999,http://em.21dtv.com/songs/60089026.mkv +朴翔-恋曲1980,http://em.21dtv.com/songs/60125689.mkv +马天宇-恋曲L A,http://em.21dtv.com/songs/60080237.mkv +张秀卿-老情歌旧情人,http://em.21dtv.com/songs/60026390.mkv +雷龙+唐古-恋曲2012,http://em.21dtv.com/songs/60123353.mkv +沙宝亮-恋曲2012,http://em.21dtv.com/songs/60081383.mkv +曾轶可-恋曲2012,http://em.21dtv.com/songs/60080352.mkv +肖亮+黑鸭子-恋曲2012,http://em.21dtv.com/songs/60076417.mkv +陈美惠+雷龙-恋曲2012,http://em.21dtv.com/songs/60061369.mkv +胡海泉+丁泽强-恋曲1980,http://em.21dtv.com/songs/60095050.mkv +陶喆-恋曲1980,http://em.21dtv.com/songs/60086677.mkv +陈玉建+陈美惠-恋曲2012,http://em.21dtv.com/songs/60027117.mkv +王识贤-恋曲2002,http://em.21dtv.com/songs/60027116.mkv +罗大佑-恋曲2000,http://em.21dtv.com/songs/60027115.mkv +罗大佑-恋曲1990,http://em.21dtv.com/songs/60027114.mkv +高胜美-恋曲1990,http://em.21dtv.com/songs/60027113.mkv +罗大佑-恋曲1990(演唱会),http://em.21dtv.com/songs/60027112.mkv +罗大佑-恋曲1980,http://em.21dtv.com/songs/60027111.mkv +乌兰巴特-老朋友新朋友,http://em.21dtv.com/songs/60083265.mkv +孙浩-老朋友你好吗,http://em.21dtv.com/songs/60026372.mkv +枫舞-老朋友喝杯酒,http://em.21dtv.com/songs/60113728.mkv +肖亮-老朋友干杯酒,http://em.21dtv.com/songs/60134135.mkv +祁隆-老婆你辛苦了,http://em.21dtv.com/songs/60098678.mkv +勾辉-老婆你听我说,http://em.21dtv.com/songs/60105655.mkv +袁晨-老婆你听我说,http://em.21dtv.com/songs/60085358.mkv +吕曹恺+罗伊然-绿飘带飘起来,http://em.21dtv.com/songs/60085405.mkv +杨程凯-老婆别离开我,http://em.21dtv.com/songs/60067187.mkv +天郎-老婆变成老狼,http://em.21dtv.com/songs/60076354.mkv +龙世杰-Lovely,http://em.21dtv.com/songs/60104638.mkv +Eisblume-Louise,http://em.21dtv.com/songs/60124869.mkv +Neon Jungle-Louder,http://em.21dtv.com/songs/60101806.mkv +戈锐-LONELY,http://em.21dtv.com/songs/60105083.mkv +陈慧娴-Lonely,http://em.21dtv.com/songs/60098877.mkv +The Veronicas-Lolita,http://em.21dtv.com/songs/60107446.mkv +高永泰-弄闹子挖特了,http://em.21dtv.com/songs/60127605.mkv +方力申+邓丽欣+傅颖-冷暖热情之间,http://em.21dtv.com/songs/60092751.mkv +张宇-留你留得好苦,http://em.21dtv.com/songs/60027552.mkv +佚名-love me with all your heart,http://em.21dtv.com/songs/60003569.mkv +阎飞翔-冷漠伤了温柔,http://em.21dtv.com/songs/60076370.mkv +SHELLY佳+西西(RUMIKI)-黎明前的忧伤,http://em.21dtv.com/songs/60085371.mkv +闪亮三姐妹-罗密欧的世界,http://em.21dtv.com/songs/60028030.mkv +李琼-路漫漫漫漫路,http://em.21dtv.com/songs/60027951.mkv +林姗-离袂开的伤痕,http://em.21dtv.com/songs/60131543.mkv +李小浩+李绪杰-黎明的小星星,http://em.21dtv.com/songs/60104201.mkv +千童+奋斗-浪漫的七月七,http://em.21dtv.com/songs/60062819.mkv +刘罡+陈嘉璐-罗曼蒂克主义,http://em.21dtv.com/songs/60101991.mkv +高子洋-浪漫的不太满,http://em.21dtv.com/songs/60026233.mkv +佚名-lets make a night to remember(无原唱),http://em.21dtv.com/songs/60003371.mkv +叶佳修-流浪者的独白,http://em.21dtv.com/songs/60027683.mkv +曲肖冰-猎!猎鱼达人,http://em.21dtv.com/songs/60133764.mkv +许云龙+群星-冷链人在路上,http://em.21dtv.com/songs/60117217.mkv +文觉非+谭玉珍-拉郎配之抢笛,http://em.21dtv.com/songs/60025907.mkv +陈效先+潘晓虹-拉郎配之抢笛,http://em.21dtv.com/songs/60025906.mkv +草蜢-la la means i love you,http://em.21dtv.com/songs/60003242.mkv +刘恺威-la la la 我爱你,http://em.21dtv.com/songs/60003234.mkv +ANN WINSBORN-la la love on my mind,http://em.21dtv.com/songs/60003241.mkv +佚名-老俩口学毛选,http://em.21dtv.com/songs/60026358.mkv +徐誉滕-李雷和韩梅梅(演唱会),http://em.21dtv.com/songs/60061365.mkv +徐誉滕-李雷和韩梅梅,http://em.21dtv.com/songs/60026863.mkv +远方-离了婚的女人,http://em.21dtv.com/songs/60026773.mkv +高枫-流浪儿想回家(无原唱),http://em.21dtv.com/songs/60027656.mkv +宋祖英-蓝蓝的一片海,http://em.21dtv.com/songs/60090969.mkv +沈文程-冷冷的心上人,http://em.21dtv.com/songs/60026605.mkv +金范秀-流泪的我的爱,http://em.21dtv.com/songs/60106346.mkv +来国庆-流浪的马头琴,http://em.21dtv.com/songs/60129263.mkv +田正-流浪的牧马人,http://em.21dtv.com/songs/60134024.mkv +苏勒亚其其格-流浪的牧马人,http://em.21dtv.com/songs/60066126.mkv +龚月-蓝蓝的马莲花,http://em.21dtv.com/songs/60104645.mkv +赵真-流泪的两只鹅,http://em.21dtv.com/songs/60119996.mkv +王菲-流浪的红舞鞋,http://em.21dtv.com/songs/60027634.mkv +艾敬-流浪的的燕子,http://em.21dtv.com/songs/60027628.mkv +许诺-离开这个地方,http://em.21dtv.com/songs/60080325.mkv +谭耀文+徐申东-两颗心一起飞,http://em.21dtv.com/songs/60081155.mkv +冷漠+云菲菲-两颗心四行泪,http://em.21dtv.com/songs/60061372.mkv +蔡幸娟+彭伟华-两颗心四行泪,http://em.21dtv.com/songs/60027280.mkv +陈司翰-两颗星的距离,http://em.21dtv.com/songs/60027281.mkv +阿杜-离开我的自由,http://em.21dtv.com/songs/60076392.mkv +王如华-离开我别惹我,http://em.21dtv.com/songs/60122999.mkv +李东升-离开我别惹我,http://em.21dtv.com/songs/60026764.mkv +庄心妍-离开前叫醒我,http://em.21dtv.com/songs/60127950.mkv +齐秦-泠空气的独白,http://em.21dtv.com/songs/60090367.mkv +佚名-冷空气的独白,http://em.21dtv.com/songs/60026593.mkv +齐秦-冷空气的独白(无原唱),http://em.21dtv.com/songs/60026592.mkv +王梦麟-离开你走近你(无原唱),http://em.21dtv.com/songs/60026753.mkv +陈玉建-离开你我哭了,http://em.21dtv.com/songs/60026749.mkv +胡玉-离开你舍不得,http://em.21dtv.com/songs/60119901.mkv +王孟西-离开你离开我,http://em.21dtv.com/songs/60110394.mkv +林智文-离开你的世界,http://em.21dtv.com/songs/60088108.mkv +洪荣宏-离开你的世界,http://em.21dtv.com/songs/60026746.mkv +佚名-离开你的世界(无原唱),http://em.21dtv.com/songs/60026745.mkv +大哲-离开你不后悔,http://em.21dtv.com/songs/60026742.mkv +甘萍+李进-离开家的日子,http://em.21dtv.com/songs/60026733.mkv +佚名-离开故乡的我,http://em.21dtv.com/songs/60026729.mkv +S.H.E-离开地球表面,http://em.21dtv.com/songs/60113185.mkv +尹熙水-离开地球表面,http://em.21dtv.com/songs/60098305.mkv +五月天-离开地球表面,http://em.21dtv.com/songs/60026727.mkv +李小璐+童童-离开地球表面,http://em.21dtv.com/songs/60026726.mkv +林姗-离开的彼一暝,http://em.21dtv.com/songs/60064469.mkv +侯湘婷-离开爱的日子,http://em.21dtv.com/songs/60026722.mkv +佚名-两脚人四脚钱,http://em.21dtv.com/songs/60095391.mkv +佚名-两脚人四脚钱(无原唱),http://em.21dtv.com/songs/60027277.mkv +方力申+邓丽欣+傅颖-冷静热情之间,http://em.21dtv.com/songs/60026589.mkv +陈晓东-了解你的所有,http://em.21dtv.com/songs/60026494.mkv +陈晓东-了解你的所有(演唱会),http://em.21dtv.com/songs/60026493.mkv +杨洪基-牢记两个务必,http://em.21dtv.com/songs/60026316.mkv +凡人二重唱-离家500里,http://em.21dtv.com/songs/60026694.mkv +孙子涵-连借口都没有,http://em.21dtv.com/songs/60104925.mkv +李利依-离家的那一天,http://em.21dtv.com/songs/60068433.mkv +乔军-离家的那一天,http://em.21dtv.com/songs/60026706.mkv +HANNAH MONTANA-life is what you make it(演唱会),http://em.21dtv.com/songs/60003401.mkv +THE BEATLES-lucy in the sky with diamonds,http://em.21dtv.com/songs/60003675.mkv +茜拉-Listen,http://em.21dtv.com/songs/60098720.mkv +佚名-let it snow let it snow,http://em.21dtv.com/songs/60003331.mkv +佚名-love is a many splendored thin,http://em.21dtv.com/songs/60003530.mkv +许云上-烈火中的英雄(演),http://em.21dtv.com/songs/60099488.mkv +方怡萍-路还要走下去(无原唱),http://em.21dtv.com/songs/60027946.mkv +韩晓辉-滦河水滦河美,http://em.21dtv.com/songs/60107348.mkv +陈笑风+陈绮绮-六号门之卖仔(戏曲),http://em.21dtv.com/songs/60093496.mkv +麦浚龙-灵魂没有秘密,http://em.21dtv.com/songs/60027418.mkv +许歌淳一-厉害了我的国,http://em.21dtv.com/songs/60134223.mkv +庄学忠-梨花开遍天涯,http://em.21dtv.com/songs/60026808.mkv +佚名-lets hear it for the boy,http://em.21dtv.com/songs/60003369.mkv +董文华-浪花海的颂歌,http://em.21dtv.com/songs/60098742.mkv +林睿一-轮回到下一世,http://em.21dtv.com/songs/60028013.mkv +沈昊飞-老虎爱上刺猬,http://em.21dtv.com/songs/60086666.mkv +周显-掠过夜色的星,http://em.21dtv.com/songs/60128897.mkv +尚雯婕-两个下雪的夜,http://em.21dtv.com/songs/60027270.mkv +徐国人-两个人一起哭,http://em.21dtv.com/songs/60112702.mkv +江淑娜-两个人的月亮,http://em.21dtv.com/songs/60027258.mkv +应昌佑-两个人的烟火,http://em.21dtv.com/songs/60097741.mkv +黎明-两个人的烟火,http://em.21dtv.com/songs/60027256.mkv +黎明-两个人的烟火(演唱会),http://em.21dtv.com/songs/60027255.mkv +梁咏琪-两个人的幸运,http://em.21dtv.com/songs/60027254.mkv +雷有辉-两个人的幸运,http://em.21dtv.com/songs/60027253.mkv +金少祥-两个人的心碎,http://em.21dtv.com/songs/60100986.mkv +付辛博-两个人的星空,http://em.21dtv.com/songs/60076428.mkv +高安-两个人的天地,http://em.21dtv.com/songs/60121155.mkv +张信哲-两个人的森林,http://em.21dtv.com/songs/60063412.mkv +花子风-两个人的世界,http://em.21dtv.com/songs/60097740.mkv +左孝-两个人的世界,http://em.21dtv.com/songs/60076427.mkv +杨坤+陈琳-两个人的世界,http://em.21dtv.com/songs/60027249.mkv +罗永娟-两个人的世界,http://em.21dtv.com/songs/60027248.mkv +陈琳+杨坤-两个人的世界,http://em.21dtv.com/songs/60027247.mkv +海心-两个人的情歌,http://em.21dtv.com/songs/60110346.mkv +张侠浩-两个人的旅途,http://em.21dtv.com/songs/60109298.mkv +张跃-两个人的苦恋,http://em.21dtv.com/songs/60061371.mkv +林子娟-两个人的寂寞,http://em.21dtv.com/songs/60086679.mkv +萧亚轩-两个人的寂寞,http://em.21dtv.com/songs/60027244.mkv +程芷渝-两个人的呼吸,http://em.21dtv.com/songs/60124323.mkv +吴宗宪-两个人的画像,http://em.21dtv.com/songs/60087556.mkv +S.H.E+周定韦-两个人的荒岛,http://em.21dtv.com/songs/60027243.mkv +王冠-两个人的孤单,http://em.21dtv.com/songs/60107060.mkv +王学琳-两个人的孤单,http://em.21dtv.com/songs/60027242.mkv +郭品超-两个人的风景,http://em.21dtv.com/songs/60027241.mkv +何洁-两个人的地球,http://em.21dtv.com/songs/60027240.mkv +何洁-两个人的地球(演唱会),http://em.21dtv.com/songs/60027239.mkv +朱业晋-两个人的曾经,http://em.21dtv.com/songs/60115987.mkv +张艳奕-两个人的城堡,http://em.21dtv.com/songs/60027238.mkv +佚名-珑关桥的呼声,http://em.21dtv.com/songs/60027858.mkv +卓依婷-泷观桥的呼声,http://em.21dtv.com/songs/60027857.mkv +卓依婷-龙观桥的呼声,http://em.21dtv.com/songs/60027825.mkv +苏小花-老公你真讨厌,http://em.21dtv.com/songs/60062932.mkv +山楂妹-—老公你辛苦了,http://em.21dtv.com/songs/60101334.mkv +弓秀丽-老公你辛苦了,http://em.21dtv.com/songs/60085355.mkv +周斌华-泪干了心更痛,http://em.21dtv.com/songs/60106699.mkv +张祥洪-两个不同的你,http://em.21dtv.com/songs/60083301.mkv +北原山猫-六分钟谈一生,http://em.21dtv.com/songs/60087439.mkv +北原山猫-六分钟护一生,http://em.21dtv.com/songs/60027776.mkv +林俊杰-裂缝中的阳光,http://em.21dtv.com/songs/60079952.mkv +李慈庸-雷锋就在身边,http://em.21dtv.com/songs/60113625.mkv +薛凯琪-LET GO,http://em.21dtv.com/songs/60107197.mkv +王建杰-路灯照阮的心(无原唱),http://em.21dtv.com/songs/60027936.mkv +徐小凤-冷得真的可怕(演唱会),http://em.21dtv.com/songs/60026576.mkv +沈庆-老掉牙的忧伤,http://em.21dtv.com/songs/60097729.mkv +后羿-老掉牙的爱情,http://em.21dtv.com/songs/60068419.mkv +佚名-落大雨彼一日,http://em.21dtv.com/songs/60028057.mkv +仲维军+TONE-六点五十七 am,http://em.21dtv.com/songs/60027775.mkv +邹文正-留低她于厕所,http://em.21dtv.com/songs/60063504.mkv +郁钧剑+董文华-两地书母子情,http://em.21dtv.com/songs/60027214.mkv +南方二重唱-蓝的伞红的伞(无原唱),http://em.21dtv.com/songs/60026047.mkv +花鼓戏-刘大娘笑呵呵,http://em.21dtv.com/songs/60090147.mkv +麦家瑜-轮到你失眠时,http://em.21dtv.com/songs/60108177.mkv +黄乙玲-恋的曼珠沙华,http://em.21dtv.com/songs/60027074.mkv +赵薇-来得及的明天,http://em.21dtv.com/songs/60025971.mkv +龙奔-累的跟狗一样,http://em.21dtv.com/songs/60122316.mkv +邓超-乱炖的木吉他,http://em.21dtv.com/songs/60131867.mkv +佚名-伦敦德里小调,http://em.21dtv.com/songs/60028008.mkv +迪克牛仔-老爹的回乡路,http://em.21dtv.com/songs/60076340.mkv +辛晓琪-离春天多么远,http://em.21dtv.com/songs/60026687.mkv +阎维文-粮仓满天下安,http://em.21dtv.com/songs/60108955.mkv +群星-澜+春光乍洩,http://em.21dtv.com/songs/60093042.mkv +任贤齐-留不住让他走,http://em.21dtv.com/songs/60027526.mkv +洪荣宏-留不住你的心,http://em.21dtv.com/songs/60027525.mkv +邓丽君-留不住你的心,http://em.21dtv.com/songs/60027524.mkv +邱永传+罗长华-留不住你的人,http://em.21dtv.com/songs/60128458.mkv +邱永传+罗长华-留不住你的人,http://em.21dtv.com/songs/60114122.mkv +雨中百合-留不住你的爱,http://em.21dtv.com/songs/60111513.mkv +徐熙媛-留不住你的爱,http://em.21dtv.com/songs/60091205.mkv +陈咏-留不住的温柔,http://em.21dtv.com/songs/60027521.mkv +金长勋+金希澈-离别真的如我,http://em.21dtv.com/songs/60062526.mkv +蔡龄龄-留不住的故事,http://em.21dtv.com/songs/60106263.mkv +彭佳慧-留不住的故事,http://em.21dtv.com/songs/60086682.mkv +黄莺莺-留不住的故事,http://em.21dtv.com/songs/60070887.mkv +林隆璇-留不住的故事,http://em.21dtv.com/songs/60027520.mkv +5分钟,http://em.21dtv.com/songs/60131904.mkv +庄伟斌-来吧我的人生,http://em.21dtv.com/songs/60125473.mkv +成凤-路边摊的心声(无原唱),http://em.21dtv.com/songs/60095535.mkv +佚名-路边摊的心声(无原唱),http://em.21dtv.com/songs/60027930.mkv +拉毛王旭-驴背上的琴声,http://em.21dtv.com/songs/60111125.mkv +孙国庆-篱笆墙的影子,http://em.21dtv.com/songs/60086673.mkv +刘欢-篱笆墙的影子,http://em.21dtv.com/songs/60026841.mkv +万梓良-篱笆墙的影子(演唱会),http://em.21dtv.com/songs/60026840.mkv +胡彦斌-老爸你别装酷,http://em.21dtv.com/songs/60026319.mkv +小白杨-老板娘不容易,http://em.21dtv.com/songs/60135142.mkv +李克勤+李家声+梁荣忠-礼拜六没节目,http://em.21dtv.com/songs/60026845.mkv +曹方-礼拜六礼拜七,http://em.21dtv.com/songs/60026844.mkv +王伟-老板苦老板累,http://em.21dtv.com/songs/60116133.mkv +周巍-离不开家的妈,http://em.21dtv.com/songs/60130193.mkv +索朗扎西-离不开的月亮,http://em.21dtv.com/songs/60109560.mkv +陈胜屿-来不及在一起,http://em.21dtv.com/songs/60098894.mkv +胜屿-来不及在一起,http://em.21dtv.com/songs/60097742.mkv +郭书瑶-来不及说再见,http://em.21dtv.com/songs/60025969.mkv +陈行-来不及说爱你,http://em.21dtv.com/songs/60124657.mkv +张靓颖-来不及说爱你,http://em.21dtv.com/songs/60025966.mkv +李翊君-来不及说爱你(演唱会),http://em.21dtv.com/songs/60025965.mkv +原始林合唱团-来不及告诉你,http://em.21dtv.com/songs/60025961.mkv +任贤齐-来不及告诉你,http://em.21dtv.com/songs/60025960.mkv +梅花三姐妹-离别的月台票,http://em.21dtv.com/songs/60026654.mkv +陈雷-离别的月台票,http://em.21dtv.com/songs/60026653.mkv +邝美云-离别的摇篮曲(无原唱),http://em.21dtv.com/songs/60026652.mkv +洪荣宏-路边的小野花,http://em.21dtv.com/songs/60095791.mkv +佚名-路边的小野花(无原唱),http://em.21dtv.com/songs/60027921.mkv +洪荣宏+张玲绮-离别的尾班车,http://em.21dtv.com/songs/60026651.mkv +柳絮-离别的那一天,http://em.21dtv.com/songs/60099351.mkv +张秀卿-离别的彼首歌,http://em.21dtv.com/songs/60026640.mkv +张三李四-老伯伯乎干啦,http://em.21dtv.com/songs/60119493.mkv +因果兄弟-来吧2008(演唱会),http://em.21dtv.com/songs/60025943.mkv +丁子峻-恋爱中的傻子(无原唱),http://em.21dtv.com/songs/60027068.mkv +满江-恋爱中的城市,http://em.21dtv.com/songs/60027067.mkv +ABBA-lay all your love on me,http://em.21dtv.com/songs/60003293.mkv +佚名-long as the rose is red,http://em.21dtv.com/songs/60003474.mkv +胡诺言-恋爱是二人前,http://em.21dtv.com/songs/60027046.mkv +张心杰+天天-离爱情有点近,http://em.21dtv.com/songs/60064467.mkv +韦雄+钟嘉欣-恋爱令人心痛,http://em.21dtv.com/songs/60027024.mkv +冰淇淋少女组-恋爱革命21,http://em.21dtv.com/songs/60027010.mkv +AIKO-戻れない明日,http://em.21dtv.com/songs/60041709.mkv +EVERY LITTLE THING-恋をしている,http://em.21dtv.com/songs/60026986.mkv +慕容晓晓-困在原点的爱,http://em.21dtv.com/songs/60086660.mkv +张梓瑶-哭着醒来的人,http://em.21dtv.com/songs/60129093.mkv +黄圣依-开在心里的花,http://em.21dtv.com/songs/60076236.mkv +陈梓童-控制,http://em.21dtv.com/songs/60123308.mkv +梁汉文-捆着我困着我(演唱会),http://em.21dtv.com/songs/60025868.mkv +林志颖-看着我的眼睛(演唱会),http://em.21dtv.com/songs/60025154.mkv +XUN-课桌上的青春,http://em.21dtv.com/songs/60083224.mkv +佚名-看着你想着伊,http://em.21dtv.com/songs/60025151.mkv +叶启田-看着你想到伊,http://em.21dtv.com/songs/60076855.mkv +洪颜-坑仔口的眼泪,http://em.21dtv.com/songs/60066096.mkv +张惠妹-空中的梦想家(演唱会),http://em.21dtv.com/songs/60025481.mkv +宇海文-开着车去草原,http://em.21dtv.com/songs/60025044.mkv +潘东亮-可以再狠一点,http://em.21dtv.com/songs/60076263.mkv +薛松-旷野中的石头,http://em.21dtv.com/songs/60124449.mkv +佚名-跨越一九九九,http://em.21dtv.com/songs/60025667.mkv +张杰+高振铭-看月亮爬上来,http://em.21dtv.com/songs/60111888.mkv +张杰-看月亮爬上来,http://em.21dtv.com/songs/60025145.mkv +吴若希-可以背负更多,http://em.21dtv.com/songs/60125300.mkv +吴若希-可以背负更多,http://em.21dtv.com/songs/60121498.mkv +蔡健雅-可以爱你真好,http://em.21dtv.com/songs/60025347.mkv +小鸣-刻下纹身之后,http://em.21dtv.com/songs/60025388.mkv +Xun-可惜我不是他,http://em.21dtv.com/songs/60119211.mkv +程文政-可惜我爱怀念,http://em.21dtv.com/songs/60134044.mkv +程文政-可惜我爱怀念,http://em.21dtv.com/songs/60124322.mkv +沈世爱-开心农场之歌,http://em.21dtv.com/songs/60025035.mkv +剑鸿-可惜你不心疼,http://em.21dtv.com/songs/60116603.mkv +路绮欧-可笑的木偶戏,http://em.21dtv.com/songs/60061334.mkv +朱桦-咔,http://em.21dtv.com/songs/60125673.mkv +佚名-看我跃马扬鞭,http://em.21dtv.com/songs/60025139.mkv +郭富城-渴望无限ASK_FOR_MORE,http://em.21dtv.com/songs/60090266.mkv +超级女声+陈西贝-看我七十二变,http://em.21dtv.com/songs/60088722.mkv +谈莉娜-看我七十二变,http://em.21dtv.com/songs/60025135.mkv +蔡依林-看我七十二变,http://em.21dtv.com/songs/60025134.mkv +李其燊-哭为你笑为你,http://em.21dtv.com/songs/60107780.mkv +郭易-开往你的路上,http://em.21dtv.com/songs/60088787.mkv +纪晓川-可我还是想你,http://em.21dtv.com/songs/60129476.mkv +王正银-KTV醉一回,http://em.21dtv.com/songs/60105246.mkv +莫文蔚-开水与白面包,http://em.21dtv.com/songs/60025021.mkv +莫文蔚-开水与白面包(演唱会),http://em.21dtv.com/songs/60025020.mkv +陈影-哭砂,http://em.21dtv.com/songs/60113053.mkv +李潮-客山歌山歌客(演唱会),http://em.21dtv.com/songs/60070847.mkv +戴玉强-喀什葛尔女郎,http://em.21dtv.com/songs/60064424.mkv +佚名-喀什葛尔女郎,http://em.21dtv.com/songs/60024956.mkv +王宏伟-喀什噶尔女郎,http://em.21dtv.com/songs/60024954.mkv +彭亮-渴死的鱼(舞曲版),http://em.21dtv.com/songs/60068405.mkv +刘若英-开始的那句话,http://em.21dtv.com/songs/60025011.mkv +郑秀文-开水白与面包,http://em.21dtv.com/songs/60089505.mkv +阎维文-可亲可敬的人,http://em.21dtv.com/songs/60025332.mkv +孙悦-哭泣的百合花,http://em.21dtv.com/songs/60025566.mkv +梁川宇+洪颖仪-开平真系好喽,http://em.21dtv.com/songs/60116073.mkv +佚名-看破这场情梦,http://em.21dtv.com/songs/60025113.mkv +GEORGE MICHAEL-killer papa was a rolling ston,http://em.21dtv.com/songs/60003149.mkv +佚名-卡片上的诺言,http://em.21dtv.com/songs/60024969.mkv +5566-k one-风云变色,http://em.21dtv.com/songs/60003128.mkv +张秀卿-看你醉等你醒(无原唱),http://em.21dtv.com/songs/60072035.mkv +Zia+洪大光-可能是秋悲吧,http://em.21dtv.com/songs/60116488.mkv +李戈-喀纳斯的春天,http://em.21dtv.com/songs/60076222.mkv +炎亚纶-可能你还爱我,http://em.21dtv.com/songs/60080027.mkv +香菜香香-看那大雁飞过,http://em.21dtv.com/songs/60067157.mkv +甄妮+MELODY-killing me softly with his son,http://em.21dtv.com/songs/60003152.mkv +ROBERTA FLACK-killing me softly with his son,http://em.21dtv.com/songs/60003151.mkv +佚名-kiss me honey honey kiss me,http://em.21dtv.com/songs/60003172.mkv +紫海-开门大发财了,http://em.21dtv.com/songs/60118835.mkv +李祥祥-卡拉永远OK,http://em.21dtv.com/songs/60081343.mkv +梁海洋-哭了又能怎样,http://em.21dtv.com/songs/60121835.mkv +羽泉-狂流,http://em.21dtv.com/songs/60076296.mkv +黑雨-快乐无处不在,http://em.21dtv.com/songs/60089076.mkv +赵之璧-快乐是自找的,http://em.21dtv.com/songs/60025786.mkv +龙智祥-凯里亲爱的你,http://em.21dtv.com/songs/60116422.mkv +林志颖-凯莉!亲爱的你,http://em.21dtv.com/songs/60025047.mkv +刘超华-哭了吗真的吗,http://em.21dtv.com/songs/60025563.mkv +吕远-克拉玛依之歌,http://em.21dtv.com/songs/60025376.mkv +佚名-科罗拉多之夜,http://em.21dtv.com/songs/60025217.mkv +闪亮三姐妹-快来快来约我,http://em.21dtv.com/songs/60025689.mkv +莫镇贤-快乐怪魔泛滥,http://em.21dtv.com/songs/60025741.mkv +谢江波-快乐的新远乐,http://em.21dtv.com/songs/60085336.mkv +吴歌-快乐的小羊羔,http://em.21dtv.com/songs/60107582.mkv +靳景文-快乐的小歌手,http://em.21dtv.com/songs/60083234.mkv +童唱-快乐的小歌手,http://em.21dtv.com/songs/60025736.mkv +郭金发-可怜的小姑娘,http://em.21dtv.com/songs/60025320.mkv +北原山猫-快乐的台湾人(无原唱),http://em.21dtv.com/songs/60025733.mkv +罗时丰-快乐的碳矿夫,http://em.21dtv.com/songs/60134088.mkv +沈文程-快乐的碳矿夫,http://em.21dtv.com/songs/60095755.mkv +佚名-快乐的炭矿夫,http://em.21dtv.com/songs/60025735.mkv +陈盈洁-快乐的炭矿夫,http://em.21dtv.com/songs/60025734.mkv +许瑞铭-快乐的讨海人(无原唱),http://em.21dtv.com/songs/60090212.mkv +童唱-快乐的山娃娃,http://em.21dtv.com/songs/60025729.mkv +郭金发-可怜的烧酒仙,http://em.21dtv.com/songs/60025319.mkv +高胜美-可怜的落魄人,http://em.21dtv.com/songs/60102948.mkv +佚名-可怜的落魄人,http://em.21dtv.com/songs/60025314.mkv +北原山猫-可怜的落魄人(无原唱),http://em.21dtv.com/songs/60025313.mkv +佚名-可怜的酒家男,http://em.21dtv.com/songs/60025311.mkv +陈一郎-可怜的酒家男,http://em.21dtv.com/songs/60025310.mkv +唐从圣-快乐的告别式,http://em.21dtv.com/songs/60094030.mkv +佚名-快乐的单身汉,http://em.21dtv.com/songs/60025713.mkv +康康-快乐岛的日子(无原唱),http://em.21dtv.com/songs/60095522.mkv +付梦妮-快乐不再快乐,http://em.21dtv.com/songs/60076284.mkv +张学友-看开些吧女孩,http://em.21dtv.com/songs/60025094.mkv +赤龙-开卡车的兄弟,http://em.21dtv.com/songs/60120970.mkv +比比-看见雨下了吗(无原唱),http://em.21dtv.com/songs/60025089.mkv +蔡国庆+景岗山+黄格选-跨进一九九九,http://em.21dtv.com/songs/60025663.mkv +刘晓俊-开金箱动御笔(戏曲),http://em.21dtv.com/songs/60090714.mkv +华D-客家人系有料,http://em.21dtv.com/songs/60099127.mkv +林依轮-靠近你温暖我,http://em.21dtv.com/songs/60025200.mkv +闪亮三姐妹-靠近你靠近我,http://em.21dtv.com/songs/60025198.mkv +梦然-看见你的声音,http://em.21dtv.com/songs/60129315.mkv +[Group] +groupName=十六万歌曲MV等 - 87 +陈小涛-空军后勤之歌,http://em.21dtv.com/songs/60025455.mkv +蔡国庆-看见从前的你,http://em.21dtv.com/songs/60132857.mkv +拾音社-Kimoji,http://em.21dtv.com/songs/60115189.mkv +佚名-快回头望一望,http://em.21dtv.com/songs/60025687.mkv +张蓉蓉-可恨可爱的人,http://em.21dtv.com/songs/60076255.mkv +豪记大对唱-可恨可爱的人,http://em.21dtv.com/songs/60025298.mkv +姜育恒-哭过笑过爱过,http://em.21dtv.com/songs/60025555.mkv +谢霆锋-跨过世界的人,http://em.21dtv.com/songs/60025662.mkv +徐若瑄-快过期的草莓,http://em.21dtv.com/songs/60025684.mkv +A Lin+信-狂风里的拥抱,http://em.21dtv.com/songs/60107392.mkv +金久哲-嗑儿,http://em.21dtv.com/songs/60127491.mkv +华娜-科尔沁迎宾曲,http://em.21dtv.com/songs/60125239.mkv +徐新军-哭的依然是我,http://em.21dtv.com/songs/60116829.mkv +储兰兰-看大王在帐中,http://em.21dtv.com/songs/60076239.mkv +王麟-快到我碗里来,http://em.21dtv.com/songs/60097762.mkv +思豪-快点说你爱我,http://em.21dtv.com/songs/60109378.mkv +陈小云-看到你想到伊,http://em.21dtv.com/songs/60025067.mkv +乐小菲-口袋里的彩虹,http://em.21dtv.com/songs/60114378.mkv +冯凯淇-看的开的女人,http://em.21dtv.com/songs/60111705.mkv +冯凯淇-看得开的女人,http://em.21dtv.com/songs/60076240.mkv +佚名-肯达基老家乡,http://em.21dtv.com/songs/60025410.mkv +黄绮珊-看得见的幸福,http://em.21dtv.com/songs/60103730.mkv +雷乐队-凯达格兰大道(无原唱),http://em.21dtv.com/songs/60025045.mkv +唐俪+吴俊宏-看得到的幸福,http://em.21dtv.com/songs/60120420.mkv +鲁士郎-看得到的未来,http://em.21dtv.com/songs/60081363.mkv +古巨基+容祖儿-狂串乐基儿medley(演唱会),http://em.21dtv.com/songs/60025832.mkv +流苏-看不透的红尘,http://em.21dtv.com/songs/60076238.mkv +糯米-看不清你的美,http://em.21dtv.com/songs/60025060.mkv +小贝-看不清的傻瓜,http://em.21dtv.com/songs/60067156.mkv +星盒子-快半拍慢半拍,http://em.21dtv.com/songs/60025671.mkv +王栎鑫-可不可以忘记,http://em.21dtv.com/songs/60025283.mkv +卢学睿-可不可以爱我,http://em.21dtv.com/songs/60025280.mkv +俞思远+B.I.Z乐团-可不可以爱你,http://em.21dtv.com/songs/60025279.mkv +蓝心湄-可不可以爱你,http://em.21dtv.com/songs/60025278.mkv +林晓培-看不见听不见,http://em.21dtv.com/songs/60025058.mkv +庄妮-看不见你的爱,http://em.21dtv.com/songs/60025057.mkv +王祝海-看不见的忧伤,http://em.21dtv.com/songs/60121937.mkv +裘海正-看不见的温柔,http://em.21dtv.com/songs/60025056.mkv +徐怀钰-看不见的朋友,http://em.21dtv.com/songs/60089884.mkv +许嵩-看不见的风景,http://em.21dtv.com/songs/60025055.mkv +V.N.P-看不见不是黑,http://em.21dtv.com/songs/60097769.mkv +江枫-哭不出的眼泪,http://em.21dtv.com/songs/60061337.mkv +文千岁-可爱的紫荆花(戏曲),http://em.21dtv.com/songs/60092741.mkv +黄妃+邵大伦-可爱的冤仇人,http://em.21dtv.com/songs/60067163.mkv +佚名-可爱的陌生人,http://em.21dtv.com/songs/60025245.mkv +李潮-可爱的母亲城,http://em.21dtv.com/songs/60070843.mkv +欧阳菲菲-可爱的玫瑰花,http://em.21dtv.com/songs/60088168.mkv +辛晓琪-可爱的玫瑰花,http://em.21dtv.com/songs/60025240.mkv +佚名-可爱的免悲伤,http://em.21dtv.com/songs/60025242.mkv +童唱-可爱的蓝精灵,http://em.21dtv.com/songs/60025237.mkv +佚名-可爱的杜鹃花,http://em.21dtv.com/songs/60025229.mkv +赖慧如+陈麒安-可爱的阿娜达,http://em.21dtv.com/songs/60120963.mkv +AKB48-君は気まぐれ,http://em.21dtv.com/songs/60104651.mkv +フレンチ_キス-君なら大丈夫,http://em.21dtv.com/songs/60062191.mkv +S.H.E-金钟罩铁布衫,http://em.21dtv.com/songs/60024107.mkv +那仁朝格-就这样走了吗,http://em.21dtv.com/songs/60107262.mkv +孙鹏-就这样遇见爱,http://em.21dtv.com/songs/60122661.mkv +白雅言-就这样 我们,http://em.21dtv.com/songs/60115320.mkv +王梓蘅-就这样散了吧,http://em.21dtv.com/songs/60024682.mkv +赵永-就这样让你走,http://em.21dtv.com/songs/60072098.mkv +吴炜-就这样结束吗,http://em.21dtv.com/songs/60090813.mkv +马艳-就这样跟你走,http://em.21dtv.com/songs/60068396.mkv +灿烂阿龙-就这样等着你,http://em.21dtv.com/songs/60066088.mkv +萧亚轩-节奏与布鲁士,http://em.21dtv.com/songs/60023599.mkv +眷子-就这样爱上你,http://em.21dtv.com/songs/60101712.mkv +澎恰恰-金纸心银纸情,http://em.21dtv.com/songs/60024104.mkv +办桌二人组-叫着心爱的名,http://em.21dtv.com/songs/60023529.mkv +ELIN-脚趾上的星光,http://em.21dtv.com/songs/60067124.mkv +大卫+小波-假装圣诞快乐,http://em.21dtv.com/songs/60023151.mkv +慕钰华+洪文斌-将真情来表示(无原唱),http://em.21dtv.com/songs/60023404.mkv +孙更俊-记住那场雪,http://em.21dtv.com/songs/60070787.mkv +江美琪-就这么一辈子(演唱会),http://em.21dtv.com/songs/60024676.mkv +EAGLES-加州旅馆-hotel california(演唱会),http://em.21dtv.com/songs/60022980.mkv +迪克牛仔-加州旅店再见,http://em.21dtv.com/songs/60083122.mkv +陈瑞-镜子里的女人,http://em.21dtv.com/songs/60117349.mkv +佚名-就在今夜挥别,http://em.21dtv.com/songs/60024671.mkv +佚名-就在今夜forever young(无原唱),http://em.21dtv.com/songs/60024670.mkv +江蕙-酒醉还是地震,http://em.21dtv.com/songs/60024491.mkv +杨钰莹-剪纸花的女孩,http://em.21dtv.com/songs/60023241.mkv +卓依婷-九寨沟的春天,http://em.21dtv.com/songs/60086641.mkv +郑秀月-酒醉的人上大,http://em.21dtv.com/songs/60024479.mkv +江俐奇-酒中的红玫瑰,http://em.21dtv.com/songs/60024468.mkv +云鸽李霞-军中的兵哥哥,http://em.21dtv.com/songs/60076216.mkv +奉天乐队-记忆中的颜色,http://em.21dtv.com/songs/60120445.mkv +和汇慧-记忆中的未来,http://em.21dtv.com/songs/60122610.mkv +郑江-记忆中的时光,http://em.21dtv.com/songs/60107273.mkv +唐美华-记忆中的春天,http://em.21dtv.com/songs/60110098.mkv +赵丹-记忆中的被爱,http://em.21dtv.com/songs/60088694.mkv +王立荐-记忆中的爱情,http://em.21dtv.com/songs/60108732.mkv +胡波涛-倦于游泳的鱼,http://em.21dtv.com/songs/60097774.mkv +陈建延+文蕙-今夜又搁失眠(无原唱),http://em.21dtv.com/songs/60095992.mkv +甄妮-今夜又被软化(无原唱),http://em.21dtv.com/songs/60093009.mkv +佚名-今夜又被软化(无原唱),http://em.21dtv.com/songs/60024019.mkv +童安格+蓝立平-记忆由爱开始,http://em.21dtv.com/songs/60022725.mkv +冯翰铭-今夜星光灿烂,http://em.21dtv.com/songs/60130105.mkv +姜育恒-今夜星光灿烂,http://em.21dtv.com/songs/60024016.mkv +容祖儿-今夜星光灿烂(演唱会),http://em.21dtv.com/songs/60024015.mkv +黄耀明+刘以达-今夜星光灿烂(演唱会),http://em.21dtv.com/songs/60024014.mkv +达明一派-今夜星光灿烂(演唱会),http://em.21dtv.com/songs/60024013.mkv +冷漠-今夜我又喝醉,http://em.21dtv.com/songs/60110864.mkv +郭富城-今夜我有点坏,http://em.21dtv.com/songs/60024006.mkv +郭富城-今夜我有点坏(演唱会),http://em.21dtv.com/songs/60024005.mkv +佚名-今夜我想喝醉,http://em.21dtv.com/songs/60024002.mkv +周华健-今夜无所不能,http://em.21dtv.com/songs/60024011.mkv +林子娟-今夜我将离开(无原唱),http://em.21dtv.com/songs/60023998.mkv +草蜢-今夜我好想你(无原唱),http://em.21dtv.com/songs/60023997.mkv +田震-今夜我独自走,http://em.21dtv.com/songs/60091762.mkv +马苏+刘涛+李小冉-今夜天使降临,http://em.21dtv.com/songs/60081116.mkv +伍浩哲+苏振华-叫一声兄弟阿,http://em.21dtv.com/songs/60121362.mkv +陈雷+陈思安-叫一声心爱的,http://em.21dtv.com/songs/60023526.mkv +白致瑶-叫一声我的哥,http://em.21dtv.com/songs/60117070.mkv +李琼-叫一声我的哥,http://em.21dtv.com/songs/60068377.mkv +龚柯允+ETERNITY-将一生交给你,http://em.21dtv.com/songs/60124775.mkv +赵小兵+司徒兰芳-叫一声二奶奶,http://em.21dtv.com/songs/60107238.mkv +赵小兵+司徒兰芳-叫一声二奶奶,http://em.21dtv.com/songs/60083154.mkv +谢霆锋-讲一千次爱你,http://em.21dtv.com/songs/60023434.mkv +洪荣宏-今夜你置叼位,http://em.21dtv.com/songs/60122952.mkv +洪荣宏-今夜你置叼位,http://em.21dtv.com/songs/60112070.mkv +佚名-今夜你甘会来,http://em.21dtv.com/songs/60095394.mkv +佚名-今夜你敢会来,http://em.21dtv.com/songs/60023981.mkv +佚名-今夜你甘会来(无原唱),http://em.21dtv.com/songs/60023980.mkv +卫兰-今夜你不会来,http://em.21dtv.com/songs/60023979.mkv +佚名-今夜来饮乎醉(无原唱),http://em.21dtv.com/songs/60023973.mkv +周冰倩-今夜礼花满天,http://em.21dtv.com/songs/60023974.mkv +冯晓荣-记忆里的昨天,http://em.21dtv.com/songs/60113277.mkv +晏磊-记忆里的妈妈,http://em.21dtv.com/songs/60116863.mkv +苏唯-记忆里的爱情,http://em.21dtv.com/songs/60114739.mkv +黄凯芹-今夜可否留低(演唱会),http://em.21dtv.com/songs/60023972.mkv +白雅彤-今夜就想要你,http://em.21dtv.com/songs/60100336.mkv +陈小涛-军营后勤之歌,http://em.21dtv.com/songs/60088867.mkv +许富凯-今夜搁再想你,http://em.21dtv.com/songs/60063214.mkv +佚名-今夜搁再想你,http://em.21dtv.com/songs/60023964.mkv +谢霆锋-基因改造阿们,http://em.21dtv.com/songs/60093186.mkv +林颐-见一个爱一个,http://em.21dtv.com/songs/60100225.mkv +罗中旭-今夜带我飞翔,http://em.21dtv.com/songs/60023949.mkv +王建杰-今夜的台北市,http://em.21dtv.com/songs/60023958.mkv +郑茜匀-姐要的是真爱,http://em.21dtv.com/songs/60132994.mkv +郑茜匀-姐要的是真爱,http://em.21dtv.com/songs/60127474.mkv +刘奕彤-姐要的是真爱,http://em.21dtv.com/songs/60107521.mkv +陈绮贞-九月的咖啡店(无原唱),http://em.21dtv.com/songs/60024355.mkv +好妹妹乐队-九月的高跟鞋,http://em.21dtv.com/songs/60104902.mkv +齐豫-九月的高跟鞋,http://em.21dtv.com/songs/60024353.mkv +庄心妍-记忆的冬三月,http://em.21dtv.com/songs/60127951.mkv +黄凯芹-静夜的单簧管(演唱会),http://em.21dtv.com/songs/60024274.mkv +张信哲-今夜唱什么歌,http://em.21dtv.com/songs/60023948.mkv +朱海君-寄袂出的批信,http://em.21dtv.com/songs/60068359.mkv +兰天-今夜不再想你,http://em.21dtv.com/songs/60097715.mkv +涓子-今夜不醉不归,http://em.21dtv.com/songs/60118750.mkv +都市苍狼-今夜不醉不归,http://em.21dtv.com/songs/60098814.mkv +正歌-今夜不醉不归,http://em.21dtv.com/songs/60096379.mkv +涓子-今夜不醉不归,http://em.21dtv.com/songs/60062536.mkv +阿毛-今夜不醉不归,http://em.21dtv.com/songs/60062197.mkv +小辣椒-进一步退两步,http://em.21dtv.com/songs/60024163.mkv +心杰-戒烟不如戒命,http://em.21dtv.com/songs/60067129.mkv +郭峰-今夜伴陪寂寞,http://em.21dtv.com/songs/60023946.mkv +流氓阿德-加油吧加油吧(无原唱),http://em.21dtv.com/songs/60095794.mkv +彭运铝-加油吧好兄弟,http://em.21dtv.com/songs/60116826.mkv +林良乐-假戏真做的人,http://em.21dtv.com/songs/60023132.mkv +亚东-吉祥藏历新年,http://em.21dtv.com/songs/60022572.mkv +冷漠-揪心,http://em.21dtv.com/songs/60113278.mkv +徐少楠-继续我们的梦,http://em.21dtv.com/songs/60105896.mkv +常思思-今宵如此美丽(演唱会),http://em.21dtv.com/songs/60068382.mkv +王馨平-继续千个太阳,http://em.21dtv.com/songs/60022777.mkv +办桌阿杰+王羚柔-旧相片的记治,http://em.21dtv.com/songs/60062222.mkv +白安-接下来是什么,http://em.21dtv.com/songs/60104340.mkv +周传雄-今宵酒醒何处,http://em.21dtv.com/songs/60126707.mkv +谢金燕-决心放你离开,http://em.21dtv.com/songs/60076204.mkv +宋祖英-江西风景独好,http://em.21dtv.com/songs/60108447.mkv +马常宝-家乡的小石桥,http://em.21dtv.com/songs/60083120.mkv +格桑曲珍-吉祥的新千年,http://em.21dtv.com/songs/60091507.mkv +降央卓玛-吉祥的酥油灯,http://em.21dtv.com/songs/60022576.mkv +佚名-家乡的龙眼树,http://em.21dtv.com/songs/60023021.mkv +望海高歌-家乡的百合花,http://em.21dtv.com/songs/60104185.mkv +刘小慧-今宵不想告别,http://em.21dtv.com/songs/60023920.mkv +卢广仲-就像白痴一样,http://em.21dtv.com/songs/60062725.mkv +豪图-今晚月色真好,http://em.21dtv.com/songs/60061307.mkv +林颐-接吻鱼的伤悲,http://em.21dtv.com/songs/60091501.mkv +江蕙+任贤齐-今晚我要唱歌,http://em.21dtv.com/songs/60023907.mkv +蔡一杰-今晚我靓唔靓,http://em.21dtv.com/songs/60070817.mkv +萧煌奇-甲我跳舞好否,http://em.21dtv.com/songs/60081090.mkv +吉木喜儿-今晚没有月亮,http://em.21dtv.com/songs/60023902.mkv +雷忠-精武门李小龙,http://em.21dtv.com/songs/60061311.mkv +周华健-just when i needed you most,http://em.21dtv.com/songs/60003126.mkv +佚名-just when i needed you most,http://em.21dtv.com/songs/60003125.mkv +潘玮柏-just when i needed you most,http://em.21dtv.com/songs/60003124.mkv +周华健-juse when i needed yoy most,http://em.21dtv.com/songs/60003095.mkv +冰川-九尾狐的眼泪,http://em.21dtv.com/songs/60105621.mkv +任贤齐-绝望的生鱼片,http://em.21dtv.com/songs/60024872.mkv +伍浩哲-讲袜出嘴的话,http://em.21dtv.com/songs/60023431.mkv +Lawson-Juliet,http://em.21dtv.com/songs/60099008.mkv +陈心蕊-金太阳银月亮,http://em.21dtv.com/songs/60120081.mkv +山野-借他一个明天,http://em.21dtv.com/songs/60104983.mkv +吴俅-吉他是我的手(无原唱),http://em.21dtv.com/songs/60022567.mkv +王文浩-街头漂泊歌手,http://em.21dtv.com/songs/60133986.mkv +罗志祥-今天你最漂亮,http://em.21dtv.com/songs/60067133.mkv +武权-今天你笑了吗,http://em.21dtv.com/songs/60023856.mkv +初百军-今天你爱了吗,http://em.21dtv.com/songs/60023852.mkv +许慧欣-今天开始永远,http://em.21dtv.com/songs/60072083.mkv +庄心妍-今天就要回家,http://em.21dtv.com/songs/60094491.mkv +拉热吉-吉他寂寞了吗,http://em.21dtv.com/songs/60064359.mkv +郭顶-今天还是明天,http://em.21dtv.com/songs/60023848.mkv +杜丽莎-今天爱情报告,http://em.21dtv.com/songs/60023826.mkv +MBLAQ'S G.O-即使在我梦中,http://em.21dtv.com/songs/60061279.mkv +方力申-就是这么爱你,http://em.21dtv.com/songs/60024635.mkv +杨千嬅-就是这么爱你(演唱会),http://em.21dtv.com/songs/60024634.mkv +刘大鹏-今生最爱的人,http://em.21dtv.com/songs/60116581.mkv +张蓉蓉-今身最爱的人,http://em.21dtv.com/songs/60072486.mkv +张蓉蓉-今生最爱的人,http://em.21dtv.com/songs/60023821.mkv +蔡小虎-今生最爱的人,http://em.21dtv.com/songs/60023820.mkv +晓晓-今生最爱的你,http://em.21dtv.com/songs/60111135.mkv +后来者-今生最爱的你,http://em.21dtv.com/songs/60110914.mkv +潘润康-今生有缘相遇,http://em.21dtv.com/songs/60115276.mkv +谢和弦+Sea Level-就是要你知道,http://em.21dtv.com/songs/60134225.mkv +刘思伟+郭少杰-既生瑜何生亮,http://em.21dtv.com/songs/60067105.mkv +少年霜-剑三 夏清风,http://em.21dtv.com/songs/60125438.mkv +蓝雨-就算我瞎了眼,http://em.21dtv.com/songs/60024654.mkv +王馨+石雪峰-今生为你着迷,http://em.21dtv.com/songs/60128251.mkv +宋荷艺-即使时光流逝,http://em.21dtv.com/songs/60116730.mkv +黄沾-江山如此多娇FUN,http://em.21dtv.com/songs/60093539.mkv +杭娇-江山如此多娇,http://em.21dtv.com/songs/60061297.mkv +董文华-江山如此多娇,http://em.21dtv.com/songs/60023358.mkv +盖鸣晖-江山如此多娇(演唱会),http://em.21dtv.com/songs/60023357.mkv +黄沾-江山如此多fun,http://em.21dtv.com/songs/60023356.mkv +古皓-就是你可是你,http://em.21dtv.com/songs/60024627.mkv +佚名-救世南海古佛(无原唱),http://em.21dtv.com/songs/60024586.mkv +甲子蕙+陈伟强-将思念放心头,http://em.21dtv.com/songs/60023393.mkv +许云上-九三年的六月,http://em.21dtv.com/songs/60083187.mkv +张峥-就算你不爱我,http://em.21dtv.com/songs/60085308.mkv +张争-就算你不爱我,http://em.21dtv.com/songs/60083198.mkv +香香-就算没有如果,http://em.21dtv.com/songs/60134458.mkv +香香-就算没有如果,http://em.21dtv.com/songs/60133103.mkv +钟嘉欣-就算没有明天,http://em.21dtv.com/songs/60076188.mkv +黄晓明+孙俪-就算没有明天,http://em.21dtv.com/songs/60024646.mkv +凤飞飞-就是溜溜的她(无原唱),http://em.21dtv.com/songs/60024621.mkv +B2-尖沙咀去东京,http://em.21dtv.com/songs/60023182.mkv +田娟-九十九个日夜,http://em.21dtv.com/songs/60062993.mkv +荣联合-九十九朵玫瑰,http://em.21dtv.com/songs/60024341.mkv +DAVICHI-即使恨也爱着,http://em.21dtv.com/songs/60022608.mkv +彭丽媛-建设和谐家园,http://em.21dtv.com/songs/60091172.mkv +刘小慧-急色鬼爱出位,http://em.21dtv.com/songs/60022618.mkv +李丽霞+李香琴-今时唔同往日,http://em.21dtv.com/songs/60092780.mkv +燕尾蝶-金色的太阳鸟,http://em.21dtv.com/songs/60107053.mkv +KRUSTY-吉丝缔的兄弟,http://em.21dtv.com/songs/60022560.mkv +B.A.D-金斯顿的梦想,http://em.21dtv.com/songs/60024083.mkv +正歌-酒是穿肠毒药,http://em.21dtv.com/songs/60094191.mkv +叶佩雯-角色扮演游戏,http://em.21dtv.com/songs/60023485.mkv +林凡+孙富锦-今生必需有你,http://em.21dtv.com/songs/60023770.mkv +王紫菲-金山百草传奇,http://em.21dtv.com/songs/60134003.mkv +佚名-今生爱过的人,http://em.21dtv.com/songs/60023768.mkv +黄乙玲-今生爱过的人,http://em.21dtv.com/songs/60023767.mkv +春奈るな-君色シグナル,http://em.21dtv.com/songs/60110240.mkv +理想-假如这是游戏,http://em.21dtv.com/songs/60062620.mkv +黑龙-就让一切走远,http://em.21dtv.com/songs/60024611.mkv +辛晓琪-就让我这样吧,http://em.21dtv.com/songs/60024610.mkv +邓丽君-假如我是真的,http://em.21dtv.com/songs/60023119.mkv +谭咏麟-假如我是真的(演唱会),http://em.21dtv.com/songs/60023118.mkv +梅艳芳-假如我是男人(演唱会),http://em.21dtv.com/songs/60023117.mkv +萧正楠-假如我是假的,http://em.21dtv.com/songs/60093109.mkv +陈玉建-就让我寂寞吧,http://em.21dtv.com/songs/60083194.mkv +张宇-假如你忘记我,http://em.21dtv.com/songs/60091074.mkv +殇小谨+白晶晶-假如能说抱歉,http://em.21dtv.com/songs/60068368.mkv +黄凯芹-假如没有明天,http://em.21dtv.com/songs/60102959.mkv +小类-假若明天来临,http://em.21dtv.com/songs/60023121.mkv +朱桦-假如还有来世,http://em.21dtv.com/songs/60087971.mkv +伊人佳人组合-假日湖畔随想,http://em.21dtv.com/songs/60068367.mkv +向蕙玲-甲阮宠乎我凭,http://em.21dtv.com/songs/60064377.mkv +凡间精灵-假如不曾相遇,http://em.21dtv.com/songs/60110869.mkv +郭宴-假如爱有天意,http://em.21dtv.com/songs/60135824.mkv +李健-假如爱有天意,http://em.21dtv.com/songs/60109419.mkv +谷祖琳-假如爱有天意,http://em.21dtv.com/songs/60023102.mkv +老兵+黄志坚+小曾-军旗下的祝福(演唱会),http://em.21dtv.com/songs/60024904.mkv +阎维文-军旗下的我们,http://em.21dtv.com/songs/60024903.mkv +吴淑敏-坚强是你的名,http://em.21dtv.com/songs/60023207.mkv +冷漠+李策-旧情人旧情歌,http://em.21dtv.com/songs/60066084.mkv +张卫-机器灵砍菜刀,http://em.21dtv.com/songs/60101629.mkv +张卫-机器铃砍菜刀,http://em.21dtv.com/songs/60100013.mkv +闫桂佳-激情点燃梦想,http://em.21dtv.com/songs/60116324.mkv +翁立友+余天-甲青春拼输赢(无原唱),http://em.21dtv.com/songs/60023065.mkv +王景-经曲爱情传奇,http://em.21dtv.com/songs/60024198.mkv +曲泉丞-极品,http://em.21dtv.com/songs/60104178.mkv +马常宝-金瓶似的小山,http://em.21dtv.com/songs/60109028.mkv +降央卓玛-金瓶似的小山,http://em.21dtv.com/songs/60068385.mkv +郁钧剑-金瓶似的小山,http://em.21dtv.com/songs/60024061.mkv +佚名-金瓶似的小山,http://em.21dtv.com/songs/60024060.mkv +谭晶-金瓶似的小山,http://em.21dtv.com/songs/60024059.mkv +童唱-江畔独步寻花,http://em.21dtv.com/songs/60023350.mkv +张琳琳-江南雨[演],http://em.21dtv.com/songs/60103280.mkv +谭双剑-叫你一声亲人,http://em.21dtv.com/songs/60081395.mkv +小虎队-叫你一声my love,http://em.21dtv.com/songs/60023511.mkv +草蜢-叫你一声my love(演唱会),http://em.21dtv.com/songs/60023510.mkv +曾春年-叫你一声老婆,http://em.21dtv.com/songs/60076071.mkv +李艳云+张曙亮+赵丽洁+尹艳伟-叫你一声好人,http://em.21dtv.com/songs/60100158.mkv +网络-贱女人坏男人,http://em.21dtv.com/songs/60090107.mkv +姚雨鑫-叫你如何懂我,http://em.21dtv.com/songs/60063262.mkv +陈盈洁-叫你麦你就要,http://em.21dtv.com/songs/60023509.mkv +宋祖英-江南美美江南,http://em.21dtv.com/songs/60090960.mkv +李乐诗-今年流行什么,http://em.21dtv.com/songs/60023748.mkv +孙悦-今年流行浪漫,http://em.21dtv.com/songs/60023747.mkv +周予天-几年几月几天,http://em.21dtv.com/songs/60123751.mkv +张暖雅-借你的手暖心,http://em.21dtv.com/songs/60117728.mkv +王雪晶+庄群诗-今年比去年好,http://em.21dtv.com/songs/60088329.mkv +佚名-叫你不你就要,http://em.21dtv.com/songs/60023505.mkv +亚东-纪念班禅大师,http://em.21dtv.com/songs/60089597.mkv +任贤齐-寂寞也能快乐,http://em.21dtv.com/songs/60022940.mkv +袁勇-寂寞夜寂寞人,http://em.21dtv.com/songs/60128377.mkv +NMB48-絶灭黖髪少女,http://em.21dtv.com/songs/60097794.mkv +佚名-寂寞是阮的名,http://em.21dtv.com/songs/60022929.mkv +陈盈洁-寂寞是阮的名,http://em.21dtv.com/songs/60022928.mkv +曾心梅+陈中-寂寞是阮的名,http://em.21dtv.com/songs/60022927.mkv +卓依婷-姐妹情手足情,http://em.21dtv.com/songs/60087457.mkv +梅花三姐妹-姐妹情手足情,http://em.21dtv.com/songs/60023659.mkv +蔡幸娟-寂寞难以忍耐,http://em.21dtv.com/songs/60022912.mkv +吴克群-寂寞男孩之歌,http://em.21dtv.com/songs/60096215.mkv +群星合唱-姐妹们手拉手,http://em.21dtv.com/songs/60089444.mkv +范晓萱-姐妹们的聚会,http://em.21dtv.com/songs/60023655.mkv +熊照华-寂寞可以习惯,http://em.21dtv.com/songs/60124234.mkv +田馥甄-寂寞寂寞就好,http://em.21dtv.com/songs/60022890.mkv +佚名-菅芒花的春天,http://em.21dtv.com/songs/60023223.mkv +白冰冰-菅芒花的春天,http://em.21dtv.com/songs/60023222.mkv +CS晨悠-寂寞刮胡刀它,http://em.21dtv.com/songs/60106528.mkv +朱晓琳-寂寞的小男孩,http://em.21dtv.com/songs/60133783.mkv +晓月-寂寞的射手座,http://em.21dtv.com/songs/60083108.mkv +许强-寂寞的射手座,http://em.21dtv.com/songs/60022865.mkv +王森-寂寞的情人节,http://em.21dtv.com/songs/60022860.mkv +齐旦布-寂寞的牛角琴,http://em.21dtv.com/songs/60068354.mkv +莫文蔚-寂寞的恋人啊,http://em.21dtv.com/songs/60022854.mkv +柯震东-寂寞的咖啡因,http://em.21dtv.com/songs/60062545.mkv +黄乙玲-寂寞的广告牌,http://em.21dtv.com/songs/60022844.mkv +王迪-就恋这片热土,http://em.21dtv.com/songs/60134011.mkv +赵本水-就恋这把热土,http://em.21dtv.com/songs/60064418.mkv +儿歌-机灵一休和尚,http://em.21dtv.com/songs/60092302.mkv +黑龙-戒了烟戒了你(演唱会),http://em.21dtv.com/songs/60023704.mkv +二手玫瑰-伎俩,http://em.21dtv.com/songs/60103864.mkv +胡蝶-久丽情康源梦,http://em.21dtv.com/songs/60135643.mkv +操申满-见了面分了手,http://em.21dtv.com/songs/60123990.mkv +郑国锋-角落里的阳光,http://em.21dtv.com/songs/60101687.mkv +潘妙丹-角落里的爱情,http://em.21dtv.com/songs/60094212.mkv +中川翔子-9lives,http://em.21dtv.com/songs/60105548.mkv +苍龙-结了婚的男人,http://em.21dtv.com/songs/60118864.mkv +金波-九零后当兵来(演唱会),http://em.21dtv.com/songs/60024327.mkv +谢金燕+叶佳修-酒窟仔相对看,http://em.21dtv.com/songs/60024436.mkv +卓依婷-绝口不提爱你,http://em.21dtv.com/songs/60119322.mkv +郑中基-绝口不提爱你,http://em.21dtv.com/songs/60024842.mkv +郑中基-绝口不提爱你(演唱会),http://em.21dtv.com/songs/60024841.mkv +那英-借口不是理由,http://em.21dtv.com/songs/60023725.mkv +那英-藉口不是理由,http://em.21dtv.com/songs/60022632.mkv +林志炫-句句真情的话,http://em.21dtv.com/songs/60091463.mkv +林子祥-旧居中的钢琴,http://em.21dtv.com/songs/60024513.mkv +林子祥-旧居中的钢琴(演唱会),http://em.21dtv.com/songs/60024512.mkv +韩传芳-姐姐我想你了,http://em.21dtv.com/songs/60115522.mkv +胡苏-姐姐我想你了,http://em.21dtv.com/songs/60061298.mkv +林依晨-接近无限的蓝,http://em.21dtv.com/songs/60023564.mkv +祁隆+王如华-姐姐我爱上你,http://em.21dtv.com/songs/60131706.mkv +王如华-姐姐我爱上你,http://em.21dtv.com/songs/60122993.mkv +佚名-究竟天有几高,http://em.21dtv.com/songs/60024296.mkv +潘美辰-拒绝融化的冰,http://em.21dtv.com/songs/60024733.mkv +朴一泽-嫁嫁嫁给我吧,http://em.21dtv.com/songs/60067115.mkv +张智霖-究竟海有几深,http://em.21dtv.com/songs/60061315.mkv +张智霖-究竟海有多深,http://em.21dtv.com/songs/60024295.mkv +乔洋-结局后才明白,http://em.21dtv.com/songs/60066068.mkv +罗百吉-九九姑娘酒窝,http://em.21dtv.com/songs/60024314.mkv +王麟+陈翔宇-舅舅的艳阳天,http://em.21dtv.com/songs/60024689.mkv +天威-静静的夜国语,http://em.21dtv.com/songs/60119395.mkv +何龙雨-渐渐被你遗忘,http://em.21dtv.com/songs/60114999.mkv +姚东耀-今后一个人走,http://em.21dtv.com/songs/60104026.mkv +群星-橘红色的火焰,http://em.21dtv.com/songs/60126058.mkv +群星-橘红色的火焰,http://em.21dtv.com/songs/60066089.mkv +苗苗-橘黄色的花瓣,http://em.21dtv.com/songs/60096469.mkv +童唱-鸡公仔尾弯弯,http://em.21dtv.com/songs/60022518.mkv +娅琪朵-假公主的微笑,http://em.21dtv.com/songs/60104920.mkv +廖名扬-巾帼英雄李娜,http://em.21dtv.com/songs/60076106.mkv +乌兰图雅-酒歌,http://em.21dtv.com/songs/60106577.mkv +樊少华+马建军-嫁给我亲爱的,http://em.21dtv.com/songs/60083129.mkv +方季惟-借过我的爱情,http://em.21dtv.com/songs/60023720.mkv +王丽达-井冈山的月亮,http://em.21dtv.com/songs/60100300.mkv +阿吉仔-将感情放水流,http://em.21dtv.com/songs/60023377.mkv +何如惠-寄给你我的心(无原唱),http://em.21dtv.com/songs/60022799.mkv +马艳-军歌美军歌亮,http://em.21dtv.com/songs/60076212.mkv +佚名-接过雷锋的枪,http://em.21dtv.com/songs/60023562.mkv +林海峰-劲歌金曲06(演唱会),http://em.21dtv.com/songs/60024176.mkv +于淼-靖哥哥蓉妹妹,http://em.21dtv.com/songs/60024256.mkv +李琼-俊寡妇不嫁人,http://em.21dtv.com/songs/60091352.mkv +黄乙玲-九分醉十分爱,http://em.21dtv.com/songs/60042745.mkv +陈百强-几分钟的约会,http://em.21dtv.com/songs/60022655.mkv +梁咏琪-几分钟的约会(演唱会),http://em.21dtv.com/songs/60022654.mkv +陈绮贞-九份的咖啡店,http://em.21dtv.com/songs/60024303.mkv +江淑娜-景德镇的女人,http://em.21dtv.com/songs/60024234.mkv +王菲儿-姐的心谁了解,http://em.21dtv.com/songs/60098650.mkv +徐誉滕-剪断,http://em.21dtv.com/songs/60111107.mkv +SWING-就当我未玩够,http://em.21dtv.com/songs/60024599.mkv +叶欢-记得我们有约,http://em.21dtv.com/songs/60022703.mkv +高胜美-记得我们有约,http://em.21dtv.com/songs/60022702.mkv +郭淑贤-记得我的样子(无原唱),http://em.21dtv.com/songs/60022699.mkv +崔伟亮-借点情借点爱(舞曲版),http://em.21dtv.com/songs/60085288.mkv +曹越-借点情借点爱(舞曲版),http://em.21dtv.com/songs/60083164.mkv +李翊君-举得起放袜落,http://em.21dtv.com/songs/60024713.mkv +美宝-记得你忘记的,http://em.21dtv.com/songs/60103520.mkv +刘珊琳-记得你记得我,http://em.21dtv.com/songs/60022693.mkv +邓丽君-记得你记得我,http://em.21dtv.com/songs/60022692.mkv +易欣-记得你的温柔,http://em.21dtv.com/songs/60125631.mkv +网络歌手-几度梦回大唐,http://em.21dtv.com/songs/60129479.mkv +猪哥亮-戒赌戒烟戒酒,http://em.21dtv.com/songs/60069517.mkv +Ben-决定接受介绍,http://em.21dtv.com/songs/60111581.mkv +唐国礼-记得介年寒天,http://em.21dtv.com/songs/60092487.mkv +罗国礼-记得介年寒天,http://em.21dtv.com/songs/60091829.mkv +格杨-决定就此放手,http://em.21dtv.com/songs/60081897.mkv +佚名-决冻回头的路,http://em.21dtv.com/songs/60024781.mkv +尹相杰+江涛+孙浩+韩特-军队和老百姓,http://em.21dtv.com/songs/60024888.mkv +大合唱-军队和老百姓,http://em.21dtv.com/songs/60024887.mkv +方顺吉-简单的一句话,http://em.21dtv.com/songs/60125626.mkv +蒋雅文-记得第一次吗,http://em.21dtv.com/songs/60022685.mkv +段美一代-井底的小青蛙,http://em.21dtv.com/songs/60064411.mkv +关德辉-简单的 忘了,http://em.21dtv.com/songs/60130099.mkv +林凡-记得懂得舍得,http://em.21dtv.com/songs/60022686.mkv +樊少华-剪断爱松开手,http://em.21dtv.com/songs/60083138.mkv +王璟+胡志一-经典爱情传奇,http://em.21dtv.com/songs/60024195.mkv +佚名-仅此一次的错(无原唱),http://em.21dtv.com/songs/60024117.mkv +孟杨-嫁错郎入对行,http://em.21dtv.com/songs/60126783.mkv +许罡-交错的平行线,http://em.21dtv.com/songs/60114773.mkv +任天鸣-京城的jazz黄昏,http://em.21dtv.com/songs/60024185.mkv +佚名-计程车的心声,http://em.21dtv.com/songs/60022670.mkv +方育琪+杜伟坤-金厝边银亲戚(演唱会),http://em.21dtv.com/songs/60024040.mkv +新秀团队-肩并着肩分开,http://em.21dtv.com/songs/60076033.mkv +胡松华-金杯献给祖国,http://em.21dtv.com/songs/60024038.mkv +谢天笑-脚步声在靠近,http://em.21dtv.com/songs/60083152.mkv +张斯斯-姐不是母老虎,http://em.21dtv.com/songs/60083160.mkv +菜籽-家本是不讲理,http://em.21dtv.com/songs/60127351.mkv +F4-决不能失去你,http://em.21dtv.com/songs/60087191.mkv +F4-绝不能失去你,http://em.21dtv.com/songs/60024819.mkv +F4-绝不能失去你(演唱会),http://em.21dtv.com/songs/60024818.mkv +金喜善-即便几度分手,http://em.21dtv.com/songs/60083104.mkv +蒙央-绝不会再想她,http://em.21dtv.com/songs/60102700.mkv +李亮超+HOJO-戒不掉你的吻,http://em.21dtv.com/songs/60081049.mkv +康乔-剪不断理还乱,http://em.21dtv.com/songs/60091021.mkv +龙梅子-剪不断理还乱,http://em.21dtv.com/songs/60083136.mkv +王珏-戒不掉的想念,http://em.21dtv.com/songs/60091724.mkv +唐子淇-讲不出的再见,http://em.21dtv.com/songs/60131279.mkv +佚名-见本厨的小姐(吉露巴),http://em.21dtv.com/songs/60023279.mkv +谭咏麟-讲不出的告别,http://em.21dtv.com/songs/60023409.mkv +刀郎+谭咏麟-讲不出的告别,http://em.21dtv.com/songs/60023408.mkv +谭咏麟+刀郎-讲不出的告别(演唱会),http://em.21dtv.com/songs/60023407.mkv +海哲明-将爱进行到底,http://em.21dtv.com/songs/60067121.mkv +吉克隽逸-Jai Ho,http://em.21dtv.com/songs/60123732.mkv +苏永康-旧爱还是最美,http://em.21dtv.com/songs/60024497.mkv +清水翔太-君が暮らす街,http://em.21dtv.com/songs/60024924.mkv +幸田来未-今すぐ欲しい,http://em.21dtv.com/songs/60023737.mkv +DEEN-君かいない夏(无原唱),http://em.21dtv.com/songs/60024923.mkv +Crystal Kay-君がいたから,http://em.21dtv.com/songs/60112425.mkv +下川みくに-君がいるから,http://em.21dtv.com/songs/60108265.mkv +SHANIA TWAIN-if you wanna touch her ask,http://em.21dtv.com/songs/60002804.mkv +JESSIE WARE-if youre never gonna move,http://em.21dtv.com/songs/60073420.mkv +THE SCRIPT-if you could see me now,http://em.21dtv.com/songs/60082211.mkv +CELINE DION-i want you to need me,http://em.21dtv.com/songs/60002708.mkv +陈嘉唯-i will听你的话(演唱会),http://em.21dtv.com/songs/60002729.mkv +JAMES MORRISON-i wont let you go,http://em.21dtv.com/songs/60062051.mkv +佚名-i want to hold your hand,http://em.21dtv.com/songs/60002702.mkv +DRAGON 5-i want to hold your hand,http://em.21dtv.com/songs/60002701.mkv +AIR SUPPLY-i want to give it all(演唱会),http://em.21dtv.com/songs/60002700.mkv +PHIL COLLINS-i wish it would rain down,http://em.21dtv.com/songs/60002731.mkv +I Tiger JK-I Wish,http://em.21dtv.com/songs/60131069.mkv +Gavy NJ-I Wish,http://em.21dtv.com/songs/60104683.mkv +RITA ORA-I Will Never Let You Down,http://em.21dtv.com/songs/60099696.mkv +ROD STEWART-if we fall in love tonight,http://em.21dtv.com/songs/60002784.mkv +CHITA-i wanna find a way out,http://em.21dtv.com/songs/60061978.mkv +BARRY MANILOW-i wanna do it with you,http://em.21dtv.com/songs/60002686.mkv +NICKELBACK-if today was your last day,http://em.21dtv.com/songs/60084724.mkv +BOYZ II MEN-in the still of the night,http://em.21dtv.com/songs/60002929.mkv +佚名-in the heat of the night,http://em.21dtv.com/songs/60002925.mkv +Q.JONES-A.BERGMAN-M.BERGMAN-in the heat of the night(无原唱),http://em.21dtv.com/songs/60002924.mkv +佚名-i saw mommy kissing santa clau,http://em.21dtv.com/songs/60002641.mkv +佚名-im still in love with you,http://em.21dtv.com/songs/60002887.mkv +佚名-i still believe in santa claus,http://em.21dtv.com/songs/60002659.mkv +REBA MCENTIRE-id rather ride around with yo,http://em.21dtv.com/songs/60002756.mkv +DROBERTSON-i really dont want to know,http://em.21dtv.com/songs/60002637.mkv +A.DUBIN+H.WARREN-i only have eyes for you(无原唱),http://em.21dtv.com/songs/60002635.mkv +CARPENTERS-i need to be in love(无原唱),http://em.21dtv.com/songs/60002625.mkv +Ailee-Insane,http://em.21dtv.com/songs/60115562.mkv +佚名-in never rains in southern cal,http://em.21dtv.com/songs/60002919.mkv +佚名-its not right but its okay,http://em.21dtv.com/songs/60003007.mkv +佚名-ill never love this way again,http://em.21dtv.com/songs/60002842.mkv +JOHNNY MATHIS-its not for me to say,http://em.21dtv.com/songs/60003006.mkv +女声-ill never fall in love again,http://em.21dtv.com/songs/60002839.mkv +男声-ill never fall in love again,http://em.21dtv.com/songs/60002838.mkv +TAE-i miss you day by day,http://em.21dtv.com/songs/60002614.mkv +林峰-im okay(演唱会),http://em.21dtv.com/songs/60073429.mkv +BARRY MANILOW-i made it through the rain,http://em.21dtv.com/songs/60002612.mkv +佚名-id love you to want me,http://em.21dtv.com/songs/60002755.mkv +LOBO-id love you to want me,http://em.21dtv.com/songs/60002754.mkv +KENT LAVOIE.A-id love you to want me,http://em.21dtv.com/songs/60002753.mkv +MATZKA-i love you no ha ha,http://em.21dtv.com/songs/60002591.mkv +佚名-i love you love me love,http://em.21dtv.com/songs/60002590.mkv +JANIE FRICKIE-i loved you all the way(无原唱),http://em.21dtv.com/songs/60002610.mkv +佚名-i love to dance with you,http://em.21dtv.com/songs/60002585.mkv +WESTLIFE-i lay my love on you,http://em.21dtv.com/songs/60002567.mkv +FIRE HOUSE-i live my life for you,http://em.21dtv.com/songs/60002574.mkv +BOYZONE-i love it when we do,http://em.21dtv.com/songs/60002578.mkv +BOBBY VINTON-i love how you love me,http://em.21dtv.com/songs/60002577.mkv +钟嘉欣-i ll be waiting for you,http://em.21dtv.com/songs/60002575.mkv +B.O.B-ill be in the sky,http://em.21dtv.com/songs/60073422.mkv +李艾瑾-I Know,http://em.21dtv.com/songs/60135378.mkv +安瑞甜-I Know,http://em.21dtv.com/songs/60116726.mkv +Shift K3Y-I Know,http://em.21dtv.com/songs/60104722.mkv +佚名-i just fall in love again,http://em.21dtv.com/songs/60002553.mkv +K.MICHELLE-i just cant do this,http://em.21dtv.com/songs/60060827.mkv +MICHAEL JACKSON+SIJCTSLY-i just cant stop loving you,http://em.21dtv.com/songs/60002552.mkv +SHAI-if i ever fall in love,http://em.21dtv.com/songs/60002766.mkv +CHER-if i could turn back time,http://em.21dtv.com/songs/60002763.mkv +吉克隽逸-if i aint got you,http://em.21dtv.com/songs/60073413.mkv +RIHANNA-i hate that i love you,http://em.21dtv.com/songs/60002537.mkv +佚名-i have never been to me,http://em.21dtv.com/songs/60002542.mkv +邓丽君-i have never been to me,http://em.21dtv.com/songs/60002541.mkv +刘雅婷-i hate myself for loving you,http://em.21dtv.com/songs/60084721.mkv +艾菲-I Hate Myself For Loving You,http://em.21dtv.com/songs/60080892.mkv +佚名-i hate myself for loving you,http://em.21dtv.com/songs/60002536.mkv +JOAN JETT-i hate myself for loving you,http://em.21dtv.com/songs/60002535.mkv +CHARLENE-I Have Never Been To Me,http://em.21dtv.com/songs/60099648.mkv +张菲-ive got you under my skin,http://em.21dtv.com/songs/60003041.mkv +佚名-ive got you under my skin,http://em.21dtv.com/songs/60003040.mkv +蓝井エイル-IGNITE,http://em.21dtv.com/songs/60109608.mkv +佚名-im gonna make you love me,http://em.21dtv.com/songs/60002865.mkv +佚名-i gotta know whats going on,http://em.21dtv.com/songs/60002532.mkv +LITTLE JIMMY OSMOND-im gonna knock on your door,http://em.21dtv.com/songs/60002864.mkv +G.GERSHWIN-I.GERSHWIN-ive got a crush on you(无原唱),http://em.21dtv.com/songs/60003038.mkv +曾佩欣-IF YOU,http://em.21dtv.com/songs/60126964.mkv +JKAI-IF YOU,http://em.21dtv.com/songs/60123485.mkv +郑子威-If You,http://em.21dtv.com/songs/60122171.mkv +BigBang-IF YOU,http://em.21dtv.com/songs/60121219.mkv +韩红-If You,http://em.21dtv.com/songs/60121130.mkv +林一峰-i dont want to say goodbye,http://em.21dtv.com/songs/60002508.mkv +佚名-i dont wanna talk about it,http://em.21dtv.com/songs/60002501.mkv +佚名-i dont wanna live without you,http://em.21dtv.com/songs/60002500.mkv +汪妤凌-I Dont Wanna Fall In Love,http://em.21dtv.com/songs/60080726.mkv +GAVIN DEGRAW-i dont want to be,http://em.21dtv.com/songs/60062033.mkv +刘德华-i dont wanna say goodbye(演唱会),http://em.21dtv.com/songs/60063627.mkv +THE PUSSYCAT DOLLS-i dont need a man,http://em.21dtv.com/songs/60073378.mkv +MISS A-i dont need a man,http://em.21dtv.com/songs/60073377.mkv +女声-i dont like to sleep alone,http://em.21dtv.com/songs/60002492.mkv +男声-i dont like to sleep alone,http://em.21dtv.com/songs/60002491.mkv +佚名-it came upon the midnight clea,http://em.21dtv.com/songs/60002968.mkv +BEE GEES-i could not love you more,http://em.21dtv.com/songs/60002469.mkv +SARA EVANS-i could not ask for more,http://em.21dtv.com/songs/60073372.mkv +佚名-i cant make you love me,http://em.21dtv.com/songs/60002459.mkv +GEORGE MICHAEL-i cant make you love me,http://em.21dtv.com/songs/60002458.mkv +佚名-i can love you like that,http://em.21dtv.com/songs/60002446.mkv +佚名-i can laugh about it now,http://em.21dtv.com/songs/60002445.mkv +陈冠希-i can fly我可以,http://em.21dtv.com/songs/60002443.mkv +童唱-ive been working on the rail,http://em.21dtv.com/songs/60003037.mkv +苏打绿+PRISCILLA AHN-It Began With A Fallen Leaf,http://em.21dtv.com/songs/60093787.mkv +O.REDDING+J.BUTIER-ive been loving you too long(无原唱),http://em.21dtv.com/songs/60003035.mkv +MARIAH CAREY-ill be lovin u long time,http://em.21dtv.com/songs/60002812.mkv +佚名-i believe in you and me,http://em.21dtv.com/songs/60002422.mkv +佚名-黑珍珠别烦我(无原唱),http://em.21dtv.com/songs/60020606.mkv +佚名-憨只有憨一摆,http://em.21dtv.com/songs/60019870.mkv +王瑞霞-憨只有憨一摆,http://em.21dtv.com/songs/60019869.mkv +高霞-孩子我想你了,http://em.21dtv.com/songs/60124725.mkv +李克勤-活着为求什么,http://em.21dtv.com/songs/60069485.mkv +郑晓飞-孩子我的宝贝,http://em.21dtv.com/songs/60071978.mkv +丝绒公路-和昨天说再见,http://em.21dtv.com/songs/60126573.mkv +张燕-海之头江之尾,http://em.21dtv.com/songs/60085166.mkv +小肥+傅颖-画纸上的戒指,http://em.21dtv.com/songs/60021617.mkv +LINDA-孩子气的理由,http://em.21dtv.com/songs/60019681.mkv +CONNIE吕莘-孩子气的坚持,http://em.21dtv.com/songs/60019680.mkv +谢名-海之南我的爱,http://em.21dtv.com/songs/60114783.mkv +翟惠民-含着泪朝前走,http://em.21dtv.com/songs/60019891.mkv +宋岳庭-活着就是折腾,http://em.21dtv.com/songs/60099202.mkv +杨斯壬-活着就是英雄,http://em.21dtv.com/songs/60085247.mkv +那英-活着就是现在(演唱会),http://em.21dtv.com/songs/60022397.mkv +许志安-活着就是精彩,http://em.21dtv.com/songs/60093160.mkv +汤宝如-活着就是等待,http://em.21dtv.com/songs/60022396.mkv +何润东-后知后觉的爱,http://em.21dtv.com/songs/60122481.mkv +媛媛-花正红花正开,http://em.21dtv.com/songs/60098229.mkv +山野-换种方式生活,http://em.21dtv.com/songs/60083076.mkv +唐古-换种方式爱你,http://em.21dtv.com/songs/60123782.mkv +鸿飞-还在等她的爱,http://em.21dtv.com/songs/60106486.mkv +TANK-会长大的幸福,http://em.21dtv.com/songs/60022300.mkv +萧煌奇-嗨早安用早餐(演唱会),http://em.21dtv.com/songs/60020611.mkv +张惠妹-还有眼泪就好,http://em.21dtv.com/songs/60019664.mkv +吴介贤-花一样的香味,http://em.21dtv.com/songs/60064326.mkv +摩天人-海一样的伤口,http://em.21dtv.com/songs/60019823.mkv +苏小花-火一样的情歌,http://em.21dtv.com/songs/60114000.mkv +童波-花一样的姑娘,http://em.21dtv.com/songs/60119860.mkv +童波-花一样的姑娘,http://em.21dtv.com/songs/60103499.mkv +晓月-回忆一次一次,http://em.21dtv.com/songs/60097733.mkv +宿鲁雁-海洋心是我心,http://em.21dtv.com/songs/60112642.mkv +江珊-红颜为你开放,http://em.21dtv.com/songs/60021007.mkv +陈伟-活一天拼一天(无原唱),http://em.21dtv.com/songs/60022380.mkv +SWING-黑雨天白钢琴,http://em.21dtv.com/songs/60092199.mkv +阎琰-活一天爱一天,http://em.21dtv.com/songs/60063234.mkv +鸿飞-还有什么好说,http://em.21dtv.com/songs/60109770.mkv +王立荐-回忆是快乐的,http://em.21dtv.com/songs/60081182.mkv +郑容和+尹道贤-回忆是残忍的,http://em.21dtv.com/songs/60110579.mkv +佚名-花有情花有爱(无原唱),http://em.21dtv.com/songs/60021532.mkv +方皓玟-还要去过生活,http://em.21dtv.com/songs/60133745.mkv +方皓玟-还要去过生活,http://em.21dtv.com/songs/60129175.mkv +张学友+陈嘉露-花与琴的流星,http://em.21dtv.com/songs/60021538.mkv +古巨基+唐素琪-花与琴的流星(演唱会),http://em.21dtv.com/songs/60021537.mkv +阎维文-好一片艳阳天,http://em.21dtv.com/songs/60020255.mkv +子弹壳乐队-会有那么一天,http://em.21dtv.com/songs/60133553.mkv +MARISA-会有那么一天,http://em.21dtv.com/songs/60075933.mkv +水木年华-会有那么一天,http://em.21dtv.com/songs/60070782.mkv +杨庆煌-会有那么一天,http://em.21dtv.com/songs/60022295.mkv +马兆骏-会有那么一天,http://em.21dtv.com/songs/60022294.mkv +龙智祥-会有那么一天,http://em.21dtv.com/songs/60022293.mkv +林俊杰-会有那么一天,http://em.21dtv.com/songs/60022292.mkv +龙智祥-会有那么一天(演唱会),http://em.21dtv.com/songs/60022291.mkv +徐若瑄-好眼泪坏眼泪,http://em.21dtv.com/songs/60020247.mkv +陈祥平+佚名-好运来发大财,http://em.21dtv.com/songs/60020270.mkv +何遇程-回忆里的祝福,http://em.21dtv.com/songs/60112506.mkv +光良-回忆里的疯狂,http://em.21dtv.com/songs/60080537.mkv +带泪的鱼-回忆里的爱情,http://em.21dtv.com/songs/60130288.mkv +蔡素蕊-喝一口老米酒(无原唱),http://em.21dtv.com/songs/60020296.mkv +杨姣-花一开就相爱,http://em.21dtv.com/songs/60100179.mkv +李克勤-花园街的流星,http://em.21dtv.com/songs/60111157.mkv +谢名-好一个中国梦,http://em.21dtv.com/songs/60114778.mkv +祖海-好一个花鼓灯,http://em.21dtv.com/songs/60020253.mkv +谭维维-好一个都江堰,http://em.21dtv.com/songs/60020252.mkv +佚名-have you ever seen the rain,http://em.21dtv.com/songs/60002125.mkv +CELINE DION-have you ever been in love,http://em.21dtv.com/songs/60002121.mkv +小神鹰+蒋文端-好一朵迎春花,http://em.21dtv.com/songs/60020251.mkv +温霖-好一朵茉莉花,http://em.21dtv.com/songs/60118751.mkv +郭颂-好一朵茉莉花,http://em.21dtv.com/songs/60020250.mkv +唐雅明-回忆的挂号信,http://em.21dtv.com/songs/60022244.mkv +BIANCA WU-have yourself a merry little c,http://em.21dtv.com/songs/60070344.mkv +佚名-have yourself a merry little c,http://em.21dtv.com/songs/60002130.mkv +木喆-回忆2013,http://em.21dtv.com/songs/60094916.mkv +黎明-好像在我耳旁,http://em.21dtv.com/songs/60020223.mkv +黎明-好象在我耳旁,http://em.21dtv.com/songs/60020220.mkv +陶莉萍-好想再听一遍,http://em.21dtv.com/songs/60020217.mkv +张焱+蓝雨-红心中国之歌,http://em.21dtv.com/songs/60020988.mkv +AK-好想再对你说[演],http://em.21dtv.com/songs/60101591.mkv +陈慧娴+黎明-好想永远这样,http://em.21dtv.com/songs/60020216.mkv +萧亚轩-好想遇见爱情,http://em.21dtv.com/songs/60091984.mkv +罗志祥-红线,http://em.21dtv.com/songs/60111349.mkv +李琳-很想我们一起,http://em.21dtv.com/songs/60020667.mkv +黎明-或许未必不过,http://em.21dtv.com/songs/60022493.mkv +康康-或许你是对的,http://em.21dtv.com/songs/60022492.mkv +张敬轩-呼吸里听笑话,http://em.21dtv.com/songs/60091103.mkv +许美静-或许可能应该,http://em.21dtv.com/songs/60022491.mkv +洪卓立-黑心King,http://em.21dtv.com/songs/60112832.mkv +解伟苓-好想好好爱你,http://em.21dtv.com/songs/60107996.mkv +周蕙-好想好好爱你,http://em.21dtv.com/songs/60020192.mkv +范晓萱-好小孩的日记,http://em.21dtv.com/songs/60020225.mkv +MONMON-嘿+幸福快乐,http://em.21dtv.com/songs/60087208.mkv +卞义-好兄弟在一起,http://em.21dtv.com/songs/60119328.mkv +梁秋予+张乐-好兄弟在一起,http://em.21dtv.com/songs/60106042.mkv +伊龙-好兄弟醉一回,http://em.21dtv.com/songs/60113252.mkv +暴林+甄强-好兄弟真情义,http://em.21dtv.com/songs/60122799.mkv +暴林+甄强-好兄弟真情意,http://em.21dtv.com/songs/60121733.mkv +王洋-嘿兄弟咋了撒,http://em.21dtv.com/songs/60111277.mkv +猪头皮-和谐的夜晚_ooa,http://em.21dtv.com/songs/60090078.mkv +猪头皮-和谐的夜晚oaa,http://em.21dtv.com/songs/60020442.mkv +木童-好兄弟一辈子,http://em.21dtv.com/songs/60122817.mkv +唐志星-好兄弟我敬你,http://em.21dtv.com/songs/60132308.mkv +果然哥-好兄弟三杯酒,http://em.21dtv.com/songs/60133883.mkv +尚长荣+于魁志+王桂荣-好兄弟好朋友,http://em.21dtv.com/songs/60020245.mkv +朱现有+王凌远-好兄弟干一杯,http://em.21dtv.com/songs/60128074.mkv +李书伟+西域胡杨-好兄弟干一杯,http://em.21dtv.com/songs/60120602.mkv +何森-好兄弟干一杯,http://em.21dtv.com/songs/60109145.mkv +陈思安-欢喜等甘愿爱(无原唱),http://em.21dtv.com/songs/60021775.mkv +阿修罗-唤醒沉睡的你,http://em.21dtv.com/songs/60067088.mkv +树子-画,http://em.21dtv.com/songs/60118725.mkv +马智宇-和我一起飞翔,http://em.21dtv.com/songs/60110691.mkv +张宇-还我一个永远,http://em.21dtv.com/songs/60087807.mkv +洪荣宏-乎我搁惜一摆,http://em.21dtv.com/songs/60021138.mkv +安仕伟-嗨我的小公主,http://em.21dtv.com/songs/60108437.mkv +Kendrick Lamar-HUMBLE,http://em.21dtv.com/songs/60134725.mkv +童唱-红太阳照山河,http://em.21dtv.com/songs/60020974.mkv +水晶乐坊-红太阳照边疆,http://em.21dtv.com/songs/60020973.mkv +任静-红太阳照边疆,http://em.21dtv.com/songs/60020972.mkv +佚名-嘿听我这首歌(无原唱),http://em.21dtv.com/songs/60020626.mkv +钟舒漫-hate the way you love me,http://em.21dtv.com/songs/60073309.mkv +八大巨星-红彤彤的新年,http://em.21dtv.com/songs/60075787.mkv +牛欣欣-红彤彤的春天,http://em.21dtv.com/songs/60075786.mkv +杨钰莹-红彤彤的春天,http://em.21dtv.com/songs/60020978.mkv +张小觉-坏天使好魔鬼,http://em.21dtv.com/songs/60063395.mkv +夏国星-海滩上的回忆,http://em.21dtv.com/songs/60087621.mkv +王心如+格里杰夫-坏天气好心情,http://em.21dtv.com/songs/60021721.mkv +央金兰泽-火塘旁的摩梭,http://em.21dtv.com/songs/60075948.mkv +温岚-胡同里有只猫,http://em.21dtv.com/songs/60021217.mkv +张祥洪-灰太狼的无奈,http://em.21dtv.com/songs/60022051.mkv +马雨贤-灰太狼的悲伤,http://em.21dtv.com/songs/60022050.mkv +杭天琪-黑头发飘起来(演唱会),http://em.21dtv.com/songs/60020571.mkv +杭天琪+范琳琳-黑头发飘起来(演唱会),http://em.21dtv.com/songs/60020570.mkv +佚名-黑头发飘起来(恰恰),http://em.21dtv.com/songs/60020569.mkv +孙国庆-黑土地的呐喊,http://em.21dtv.com/songs/60089235.mkv +唐俪-后头厝的心声,http://em.21dtv.com/songs/60064313.mkv +黄乙玲-好头不如好尾,http://em.21dtv.com/songs/60020175.mkv +王洋-呼图壁的奶子,http://em.21dtv.com/songs/60083053.mkv +王洋+安明亮-呼图壁的奶子,http://em.21dtv.com/songs/60072014.mkv +于文华+尹相杰-洪水中的思念,http://em.21dtv.com/songs/60021061.mkv +佘诗曼-黄沙中的恋人,http://em.21dtv.com/songs/60021990.mkv +MAKIYO-还是要说再见,http://em.21dtv.com/songs/60019634.mkv +李翊君-还是选择放手,http://em.21dtv.com/songs/60116926.mkv +陈慧娴-还是喜欢看你,http://em.21dtv.com/songs/60019630.mkv +许仁杰-花树下的约定,http://em.21dtv.com/songs/60021483.mkv +曾一鸣-后生我辈自在,http://em.21dtv.com/songs/60021115.mkv +宋祖英-洪水水浪打浪,http://em.21dtv.com/songs/60087691.mkv +天骄蝴蝶-还是那么爱你,http://em.21dtv.com/songs/60019622.mkv +罗逻圣-猴赛雷祝福你,http://em.21dtv.com/songs/60123077.mkv +晓晓+雨巷-何时了却牵挂,http://em.21dtv.com/songs/60075713.mkv +李友胜-黄鼠狼爱上鸡,http://em.21dtv.com/songs/60101379.mkv +蔡依林-和世界做邻居,http://em.21dtv.com/songs/60020433.mkv +蔡依林-和世界做邻居(演唱会),http://em.21dtv.com/songs/60020432.mkv +何耀珊-还是会想起他,http://em.21dtv.com/songs/60087320.mkv +李代沫-会说话的哑巴,http://em.21dtv.com/songs/60083089.mkv +刘德华-会说话的哑巴,http://em.21dtv.com/songs/60022286.mkv +李逸朗-化身孤岛的鲸,http://em.21dtv.com/songs/60109443.mkv +徐怀钰-黑色的星期天,http://em.21dtv.com/songs/60020540.mkv +陈雷-何时才会看破,http://em.21dtv.com/songs/60002436.mkv +冷漠-挥手不说再见,http://em.21dtv.com/songs/60022063.mkv +弦子+孟庭苇-还舍不得离别,http://em.21dtv.com/songs/60125548.mkv +郑秀文-洪水般的爱情,http://em.21dtv.com/songs/60021060.mkv +雷佳-好日子慢慢过,http://em.21dtv.com/songs/60103697.mkv +毛阿敏-好人一生平安,http://em.21dtv.com/songs/60132667.mkv +韦唯-好人一生平安(我是歌手第二期),http://em.21dtv.com/songs/60096544.mkv +杨丽-好人一生平安,http://em.21dtv.com/songs/60085178.mkv +卓依婷-好人一生平安,http://em.21dtv.com/songs/60020148.mkv +李娜-好人一生平安,http://em.21dtv.com/songs/60020147.mkv +李娜-好人一生平安(演唱会),http://em.21dtv.com/songs/60020146.mkv +佚名-还仍然想我吗,http://em.21dtv.com/songs/60019596.mkv +谭晶-好人就在身边,http://em.21dtv.com/songs/60075683.mkv +许志安-好情人坏情人,http://em.21dtv.com/songs/60020132.mkv +黎瑞恩-还欠缺些什么,http://em.21dtv.com/songs/60019595.mkv +杜龙-红旗渠的传说,http://em.21dtv.com/songs/60075780.mkv +刘超华-海青环保之歌,http://em.21dtv.com/songs/60019788.mkv +张杰-很奇怪我爱你,http://em.21dtv.com/songs/60132443.mkv +张杰-很奇怪我爱你,http://em.21dtv.com/songs/60104130.mkv +五月天-后青春期的诗,http://em.21dtv.com/songs/60021114.mkv +江一燕-好朋友我爱你,http://em.21dtv.com/songs/60075681.mkv +ALIN-好朋友的祝福,http://em.21dtv.com/songs/60071992.mkv +游鸿明-好朋友的魔咒,http://em.21dtv.com/songs/60020125.mkv +徐建军-琥珀里的拥抱,http://em.21dtv.com/songs/60075830.mkv +NEIL DAIMOND-hooked on the memory of you,http://em.21dtv.com/songs/60002331.mkv +容祖儿-Honey!,http://em.21dtv.com/songs/60104951.mkv +少女时代TTS-Holler,http://em.21dtv.com/songs/60104964.mkv +谭维维-Hold不住,http://em.21dtv.com/songs/60117241.mkv +PLAYBOYZ-happy new year 这个赞,http://em.21dtv.com/songs/60002091.mkv +高夫-怀念一部手机,http://em.21dtv.com/songs/60114276.mkv +巧千金-好年头好兆头,http://em.21dtv.com/songs/60106806.mkv +巧千金-好年头好兆头,http://em.21dtv.com/songs/60075680.mkv +佚名-好年头好兆头,http://em.21dtv.com/songs/60020108.mkv +景岗山+陈红-好年头好兆头,http://em.21dtv.com/songs/60020107.mkv +许岚岚-海南人在他乡,http://em.21dtv.com/songs/60130743.mkv +网络歌手-河南人怎么了,http://em.21dtv.com/songs/60088416.mkv +姬长乐-好男人在路上,http://em.21dtv.com/songs/60103190.mkv +冷漠-好男人中国造,http://em.21dtv.com/songs/60106626.mkv +聂琳峰-和男人一起唱,http://em.21dtv.com/songs/60085181.mkv +清远-好男人有很多,http://em.21dtv.com/songs/60091623.mkv +颜小健-哈尼 你最重要,http://em.21dtv.com/songs/60097804.mkv +蔡国权-怀念你一世纪,http://em.21dtv.com/songs/60021666.mkv +曾轶可-还能孩子多久,http://em.21dtv.com/songs/60019588.mkv +王鹤铮-和你很像的人,http://em.21dtv.com/songs/60120802.mkv +范怡文-很难该说什么,http://em.21dtv.com/songs/60020650.mkv +阎维文-好男儿当兵走,http://em.21dtv.com/songs/60020094.mkv +洪一峰-怀念的夜都市,http://em.21dtv.com/songs/60095768.mkv +佚名-怀念的乡土情,http://em.21dtv.com/songs/60021658.mkv +DJ舞曲-嗨你到天明去,http://em.21dtv.com/songs/50000151.mkv +佚名-怀念的花篮灯,http://em.21dtv.com/songs/60021650.mkv +袁小迪-怀念的华尔滋,http://em.21dtv.com/songs/60067083.mkv +龙千玉-怀念的华尔滋,http://em.21dtv.com/songs/60021651.mkv +余天龙-怀念的大树脚,http://em.21dtv.com/songs/60064331.mkv +杨荣辉-怀念的播音员,http://em.21dtv.com/songs/60132589.mkv +杨荣辉-怀念的播音员,http://em.21dtv.com/songs/60130466.mkv +秀兰玛雅-怀念的播音员,http://em.21dtv.com/songs/60021649.mkv +齐秦-怀念的播音员,http://em.21dtv.com/songs/60021648.mkv +罗时丰-怀念的播音员,http://em.21dtv.com/songs/60021647.mkv +洪第七-怀念的播音员,http://em.21dtv.com/songs/60021646.mkv +许志安-好男不与女斗,http://em.21dtv.com/songs/60020090.mkv +许志安-好男不与女斗(演唱会),http://em.21dtv.com/songs/60020089.mkv +伍华+可歆-怀念不如相见,http://em.21dtv.com/songs/60097761.mkv +叶一茜-怀念不如相见,http://em.21dtv.com/songs/60021645.mkv +方怡萍-话哪不讲头前(无原唱),http://em.21dtv.com/songs/60021627.mkv +佚名-hush not a word to mary,http://em.21dtv.com/songs/60002401.mkv +佚名-还能爱我多久,http://em.21dtv.com/songs/60019586.mkv +温兆伦-还能爱你多久,http://em.21dtv.com/songs/60019585.mkv +夏嘉伟-蛤蟆神“攻”,http://em.21dtv.com/songs/60115076.mkv +黄淇-hold me now握紧我,http://em.21dtv.com/songs/60002289.mkv +南风-好美丽的姑娘,http://em.21dtv.com/songs/60020081.mkv +天亮-好美的中国梦,http://em.21dtv.com/songs/60126742.mkv +宋祖英-好美的一个秋,http://em.21dtv.com/songs/60090952.mkv +郭欢-黑名单上的人,http://em.21dtv.com/songs/60083029.mkv +郭桂彬-黑粒仔的故事,http://em.21dtv.com/songs/60020523.mkv +尹光-荷兰银行支票(演唱会),http://em.21dtv.com/songs/60075726.mkv +伯阳-滑落相思的情,http://em.21dtv.com/songs/60021586.mkv +袁咏琳-很旅行的爱情,http://em.21dtv.com/songs/60020647.mkv +佚名-好莱坞的早餐(无原唱),http://em.21dtv.com/songs/60020076.mkv +KRISTEN KELLY-he loves to make me cry,http://em.21dtv.com/songs/60073312.mkv +南合文斗-混了三十一年,http://em.21dtv.com/songs/60022327.mkv +满文军-海蓝色的眼睛,http://em.21dtv.com/songs/60019762.mkv +黎明-回来说爱着我,http://em.21dtv.com/songs/60022152.mkv +LISA-坏了你的规矩,http://em.21dtv.com/songs/60021699.mkv +陶馨州-后来你爱着谁,http://em.21dtv.com/songs/60110657.mkv +余飞-后来你爱着谁,http://em.21dtv.com/songs/60109974.mkv +刘惠鸣-红楼梦之哭灵,http://em.21dtv.com/songs/60068322.mkv +陈子琳-火辣辣的日子,http://em.21dtv.com/songs/60116338.mkv +乌兰图雅-火辣辣的情歌,http://em.21dtv.com/songs/60116514.mkv +乌兰图雅-火辣辣的情歌,http://em.21dtv.com/songs/60109932.mkv +乌兰托娅-火辣辣的情歌,http://em.21dtv.com/songs/60063080.mkv +乌兰图雅-火辣辣的情歌,http://em.21dtv.com/songs/60063075.mkv +礼仪歌曲-婚礼进行曲二,http://em.21dtv.com/songs/60090101.mkv +张德力-火了就火了吧,http://em.21dtv.com/songs/60111868.mkv +猪哥亮-呵老甲会喋舌(演唱会),http://em.21dtv.com/songs/60075703.mkv +东阳-后来嫁给了谁,http://em.21dtv.com/songs/60116500.mkv +大张伟-胡撸胡撸瓢儿,http://em.21dtv.com/songs/60105728.mkv +香巴拉组合-海螺沟的祝福,http://em.21dtv.com/songs/60075647.mkv +周燕君-欢乐的葡萄节,http://em.21dtv.com/songs/60119361.mkv +岩宰仑-欢乐的泼水节,http://em.21dtv.com/songs/60124807.mkv +德德玛-欢乐的那达慕,http://em.21dtv.com/songs/60021743.mkv +魏宗武-欢乐的马锅头,http://em.21dtv.com/songs/60110715.mkv +格桑梅朵-欢乐的珞巴人,http://em.21dtv.com/songs/60091508.mkv +吉木喜儿-欢乐的火把节,http://em.21dtv.com/songs/60021742.mkv +甄妮-回来吧心上人,http://em.21dtv.com/songs/60022151.mkv +佚名-回来吧!心上人,http://em.21dtv.com/songs/60022142.mkv +吕方-回来吧流浪花,http://em.21dtv.com/songs/60022148.mkv +马丹-呼伦贝尔草原,http://em.21dtv.com/songs/60021158.mkv +黑GIRL-哈库呐玛塔塔,http://em.21dtv.com/songs/60019550.mkv +周传雄-很快就要离开,http://em.21dtv.com/songs/60070740.mkv +范宏伟-红酒与二锅头,http://em.21dtv.com/songs/60080138.mkv +小俊-回家我要回家,http://em.21dtv.com/songs/60085238.mkv +吴哲铭-濠江我的家乡,http://em.21dtv.com/songs/60121491.mkv +任洁玲-好久没有淋雨,http://em.21dtv.com/songs/60020066.mkv +爱戴-和寂寞说分手,http://em.21dtv.com/songs/60020409.mkv +高枫-很久很久以前,http://em.21dtv.com/songs/60081886.mkv +佚名-好久好久以前,http://em.21dtv.com/songs/60020063.mkv +范玮琪-很久很久以后,http://em.21dtv.com/songs/60118873.mkv +梁文音-很久很久以后,http://em.21dtv.com/songs/60020642.mkv +李玖哲+黄立行+李钧天-好久好久不见,http://em.21dtv.com/songs/60020062.mkv +陈雷-换角度想看觅,http://em.21dtv.com/songs/60021839.mkv +佚名-回家的人-慢四,http://em.21dtv.com/songs/60022121.mkv +红弈-宏军地产之歌,http://em.21dtv.com/songs/60127266.mkv +施易男-好久不见的你,http://em.21dtv.com/songs/60130372.mkv +龙宽-Hi!有我在,http://em.21dtv.com/songs/60107384.mkv +佚名-hand in hand-手拉手,http://em.21dtv.com/songs/60002052.mkv +贺东-High 歌,http://em.21dtv.com/songs/60110544.mkv +DJ Juice+Hanhae+Loco-Higher,http://em.21dtv.com/songs/60129913.mkv +JENNIFER LOPEZ-hold it dont drop it,http://em.21dtv.com/songs/60073344.mkv +佚名-heaven is a place on earth,http://em.21dtv.com/songs/60002160.mkv +儿歌-好孩子要诚实,http://em.21dtv.com/songs/60089136.mkv +李娜-黄河走向海洋,http://em.21dtv.com/songs/60021920.mkv +陈冠希-坏孩子的天空,http://em.21dtv.com/songs/60021695.mkv +顾莉雅-狠狠心说分手,http://em.21dtv.com/songs/60064299.mkv +姜佑泽-荷花香莲子情,http://em.21dtv.com/songs/60116688.mkv +于全莉-槐花香槐花美,http://em.21dtv.com/songs/60131144.mkv +韩晓辉-槐花香槐花美,http://em.21dtv.com/songs/60128578.mkv +罗嘉良-火花,http://em.21dtv.com/songs/60109566.mkv +侯丽娟-洪湖水浪打浪,http://em.21dtv.com/songs/60120329.mkv +王庆爽+王相周-洪湖水浪打浪,http://em.21dtv.com/songs/60112101.mkv +宋祖英-洪湖水浪打浪,http://em.21dtv.com/songs/60109274.mkv +景仪-洪湖水浪打浪,http://em.21dtv.com/songs/60087947.mkv +常石磊-洪湖水浪打浪,http://em.21dtv.com/songs/60083036.mkv +金波-洪湖水浪打浪(演唱会),http://em.21dtv.com/songs/60062522.mkv +庄学忠-洪湖水浪打浪,http://em.21dtv.com/songs/60021059.mkv +杨钰莹-洪湖水浪打浪,http://em.21dtv.com/songs/60021058.mkv +王郡梅-洪湖水浪打浪,http://em.21dtv.com/songs/60021057.mkv +宋祖英-洪湖水浪打浪,http://em.21dtv.com/songs/60021056.mkv +王郡梅-洪湖水浪打浪(演唱会),http://em.21dtv.com/songs/60021055.mkv +葛仲珊-皇后区的皇后,http://em.21dtv.com/songs/60131774.mkv +葛仲珊-皇后区的皇后,http://em.21dtv.com/songs/60130707.mkv +王爱奉-红花跑兰花笑,http://em.21dtv.com/songs/60106119.mkv +孙雪宁-呼唤你的名字,http://em.21dtv.com/songs/60130247.mkv +孙雪宁-呼唤你的名字,http://em.21dtv.com/songs/60127905.mkv +阿吉仔-会好嘛无一定(无原唱),http://em.21dtv.com/songs/60022279.mkv +伊能静-轰轰烈烈去爱,http://em.21dtv.com/songs/60020741.mkv +琪琪格-呼和浩特恋人,http://em.21dtv.com/songs/60069467.mkv +任军太-火火的中国梦,http://em.21dtv.com/songs/60108292.mkv +王丽达-红红的中国结,http://em.21dtv.com/songs/60020852.mkv +乌兰托娅-火红的萨日朗,http://em.21dtv.com/songs/60070785.mkv +乌兰图雅-红红的萨日朗,http://em.21dtv.com/songs/60066028.mkv +秀兰玛雅-后悔的人是你,http://em.21dtv.com/songs/60021092.mkv +陈雷-黄昏的码头灯,http://em.21dtv.com/songs/60021944.mkv +二龙+飞歌儿-火火的好日子,http://em.21dtv.com/songs/60132172.mkv +火鸟三人组-红红的蝴蝶结,http://em.21dtv.com/songs/60020847.mkv +孙艺程-好好的爱自己,http://em.21dtv.com/songs/60020023.mkv +卡拉OK-黄河唱长城喜(军旅),http://em.21dtv.com/songs/60089711.mkv +阿峰-后悔错过了你,http://em.21dtv.com/songs/60021089.mkv +李泉-划火柴的女孩,http://em.21dtv.com/songs/60021565.mkv +慕容晓晓-黄花菜都凉了,http://em.21dtv.com/songs/60115952.mkv +张寒-后悔爱上了你,http://em.21dtv.com/songs/60021085.mkv +张信哲-好好爱个女孩,http://em.21dtv.com/songs/60135193.mkv +刘家昌-好好爱爱我吧,http://em.21dtv.com/songs/60020015.mkv +韩庚-还跟在你身边,http://em.21dtv.com/songs/60072026.mkv +宋祖英-黄果树大瀑布,http://em.21dtv.com/songs/60021894.mkv +刘凯伦-好姑娘等着我,http://em.21dtv.com/songs/60113290.mkv +刘一鸣-好姑娘等着我,http://em.21dtv.com/songs/60066015.mkv +王心凌-灰姑娘的眼泪,http://em.21dtv.com/songs/60022030.mkv +佚名-灰姑娘的舞鞋,http://em.21dtv.com/songs/60022029.mkv +姜育恒-活该你被抛弃,http://em.21dtv.com/songs/60022370.mkv +大家唱合唱团-和郭沫若同志,http://em.21dtv.com/songs/60089226.mkv +路遥+杨林+大佛-好哥们干一杯,http://em.21dtv.com/songs/60129650.mkv +KENT-回归k-pax星球,http://em.21dtv.com/songs/60061270.mkv +彭家丽-何故何苦何必,http://em.21dtv.com/songs/60020347.mkv +林凡-何故何苦何必,http://em.21dtv.com/songs/60020346.mkv +郭小霖-何故何苦何必,http://em.21dtv.com/songs/60020345.mkv +林峰-换个方式爱你,http://em.21dtv.com/songs/60061265.mkv +林峰-换个方式爱你(演唱会),http://em.21dtv.com/songs/60021831.mkv +扎西尼玛-回归巴拉格宗,http://em.21dtv.com/songs/60072042.mkv +王紫-红歌,http://em.21dtv.com/songs/60093877.mkv +李紫涵+豆豆龙+安逸晨-红歌2013,http://em.21dtv.com/songs/60085190.mkv +赶马哥-花房子的早晨,http://em.21dtv.com/songs/60102768.mkv +张睿-花非花雾非雾,http://em.21dtv.com/songs/60081443.mkv +张真菲-花非花雾非雾,http://em.21dtv.com/songs/60081267.mkv +陈姿-会飞的蝴蝶花,http://em.21dtv.com/songs/60131937.mkv +陈淑萍-乎风吹想要飞,http://em.21dtv.com/songs/60021133.mkv +Pitbull+J Balvin+Camila Cabello-Hey Ma,http://em.21dtv.com/songs/60133263.mkv +Mans Zelmerlow-Heroes,http://em.21dtv.com/songs/60114348.mkv +伊人佳人组合-花儿开花儿谢,http://em.21dtv.com/songs/60068332.mkv +王雯-花儿红人儿俏,http://em.21dtv.com/songs/60085204.mkv +晓安-哈尔滨欢迎你,http://em.21dtv.com/songs/60116865.mkv +晓安-哈尔滨欢迎你,http://em.21dtv.com/songs/60112721.mkv +马力-哈尔滨的冬天,http://em.21dtv.com/songs/60094350.mkv +巫启贤-回到自己身边,http://em.21dtv.com/songs/60089840.mkv +曹越+司徒兰芳-回到最初时光,http://em.21dtv.com/songs/60105947.mkv +张卫健-好多野不知道,http://em.21dtv.com/songs/60092570.mkv +萌萌哒天团-花都,http://em.21dtv.com/songs/60124421.mkv +方得弟(群星)-惠东消防之歌,http://em.21dtv.com/songs/60094909.mkv +方得弟(群星)-惠东消防之歌,http://em.21dtv.com/songs/60093592.mkv +李宇春-混蛋 我想你,http://em.21dtv.com/songs/60116899.mkv +周艳泓-红顶屋的故事,http://em.21dtv.com/songs/60020813.mkv +丘丘合唱团-河堤上的傻瓜,http://em.21dtv.com/songs/60020458.mkv +陈思玮-活到了这年头,http://em.21dtv.com/songs/60130843.mkv +文千岁+梁少芯-魂断蓝桥-定情,http://em.21dtv.com/songs/60022333.mkv +王建荣-活到老爱到老,http://em.21dtv.com/songs/60125920.mkv +孙淑媚-活到老爱到老,http://em.21dtv.com/songs/60022353.mkv +曾心梅-花当开月无圆,http://em.21dtv.com/songs/60095592.mkv +江蕙-花当开月无圆,http://em.21dtv.com/songs/60021319.mkv +黄容-惠东江夏之歌,http://em.21dtv.com/songs/60114299.mkv +那英-活的就是现在,http://em.21dtv.com/songs/60022363.mkv +易欣-活多久爱多久,http://em.21dtv.com/songs/60120579.mkv +焦炭乐团+张羽伟-猴硐的一板桥,http://em.21dtv.com/songs/60095802.mkv +豫剧-恨爹爹心不正,http://em.21dtv.com/songs/60134569.mkv +Jessie-海底Demo,http://em.21dtv.com/songs/60118266.mkv +鹿晗-海底Deep,http://em.21dtv.com/songs/60118206.mkv +严龙+红尘-红尘中爱一回,http://em.21dtv.com/songs/60072005.mkv +FEIST-how come you never go there,http://em.21dtv.com/songs/60065610.mkv +陈一郎-行船人的吉他,http://em.21dtv.com/songs/60095972.mkv +苏打绿-回车诺比的梦,http://em.21dtv.com/songs/60117159.mkv +傅颖-花吃了这女孩,http://em.21dtv.com/songs/60021315.mkv +曾玮中-红尘来来去去,http://em.21dtv.com/songs/60135334.mkv +宋熙铭-火车开往哪里,http://em.21dtv.com/songs/60069486.mkv +朴树-火车开往冬天,http://em.21dtv.com/songs/60022414.mkv +王晓敏-红尘苦记忆伤,http://em.21dtv.com/songs/60112112.mkv +佚名-hotel california-加州旅馆,http://em.21dtv.com/songs/60002346.mkv +佚名-how can i not love you,http://em.21dtv.com/songs/60002355.mkv +李紫君-会唱歌的故乡,http://em.21dtv.com/songs/60022270.mkv +卜学亮-火车顶的心情(无原唱),http://em.21dtv.com/songs/60022413.mkv +李琦-挥别昨天的我,http://em.21dtv.com/songs/60111989.mkv +佚名-含苞欲放的花,http://em.21dtv.com/songs/60019872.mkv +佚名-含苞欲放的花(吉特巴),http://em.21dtv.com/songs/60019871.mkv +刀郎-花瓣下的种子,http://em.21dtv.com/songs/60069472.mkv +于台烟-何必问对与错,http://em.21dtv.com/songs/60090499.mkv +苏醒-还不是因为爱,http://em.21dtv.com/songs/60019575.mkv +铭鑫-河北人怎么了,http://em.21dtv.com/songs/60133018.mkv +陈振云-挥不去的影子,http://em.21dtv.com/songs/60022057.mkv +陈振云-挥不去的影子(舞曲版),http://em.21dtv.com/songs/60022056.mkv +罗宾+方文琳-挥不去的思念,http://em.21dtv.com/songs/60022055.mkv +庾澄庆-回不去的时光,http://em.21dtv.com/songs/60105811.mkv +庾澄庆-回不去的时光,http://em.21dtv.com/songs/60075910.mkv +冷漠+司徒兰芳-挥不去的情愁,http://em.21dtv.com/songs/60072041.mkv +陈瑞+冷漠-挥不去的情愁,http://em.21dtv.com/songs/60022054.mkv +陈美希-回不去的美丽,http://em.21dtv.com/songs/60121094.mkv +棉花糖-回不去的旅人,http://em.21dtv.com/songs/60022077.mkv +赵奕欢-回不去的过去,http://em.21dtv.com/songs/60085237.mkv +周毅-回不去的从前,http://em.21dtv.com/songs/60131272.mkv +马旭东-回不去的曾经,http://em.21dtv.com/songs/60128604.mkv +郑智化-挥别你的眼泪,http://em.21dtv.com/songs/60022053.mkv +楼沁-合不来分不开,http://em.21dtv.com/songs/60107847.mkv +藏古西烈-合不来分不开,http://em.21dtv.com/songs/60037518.mkv +王丽达-火把节的火把,http://em.21dtv.com/songs/60118769.mkv +尹光+谢晓莹-胡不归之慰妻,http://em.21dtv.com/songs/60064317.mkv +新马师曾-胡不归之慰妻,http://em.21dtv.com/songs/60021206.mkv +谭炳文-胡不归之哭坟(演唱会),http://em.21dtv.com/songs/60061256.mkv +冯乐永+曾小敏-胡不归之别妻(戏曲),http://em.21dtv.com/songs/60092337.mkv +苏安婷-还不够快乐吗,http://em.21dtv.com/songs/60091922.mkv +邓志驹-胡不归—哭坟,http://em.21dtv.com/songs/60021204.mkv +徐小明-何必当初相识,http://em.21dtv.com/songs/60132476.mkv +孙艺琪-何必当初相识,http://em.21dtv.com/songs/60132365.mkv +张小翅-还不成熟的我,http://em.21dtv.com/songs/60067086.mkv +童唱-好爸爸坏爸爸,http://em.21dtv.com/songs/60019968.mkv +爽子-黑暗中的莲花,http://em.21dtv.com/songs/60075732.mkv +7朵花+183CLUB-好爱她好想他,http://em.21dtv.com/songs/60019967.mkv +New Politics-Harlem,http://em.21dtv.com/songs/60098045.mkv +林志炫-喝爱情酿的酒,http://em.21dtv.com/songs/60020280.mkv +AI-HANABI,http://em.21dtv.com/songs/60134631.mkv +MANDY MOORE-have a little faith in me,http://em.21dtv.com/songs/60060816.mkv +丁当-很爱过一个人,http://em.21dtv.com/songs/60131126.mkv +Tove Lo-Habits,http://em.21dtv.com/songs/60104746.mkv +ALAN-怀かしい未来,http://em.21dtv.com/songs/60021635.mkv +王菲-给自已的情书,http://em.21dtv.com/songs/60121953.mkv +庄心妍-故作,http://em.21dtv.com/songs/60111046.mkv +林依伦-赶走心里的鬼,http://em.21dtv.com/songs/60091423.mkv +宋冬野-鸽子,http://em.21dtv.com/songs/60111819.mkv +杜德伟-跟着我一辈子,http://em.21dtv.com/songs/60018662.mkv +BABY MONKIZ-跟着我说嘻哈,http://em.21dtv.com/songs/60018661.mkv +TOKYO D.-跟着我 fly fly away(无原唱),http://em.21dtv.com/songs/60018657.mkv +佚名-给最伤心的人,http://em.21dtv.com/songs/60018613.mkv +郑秀文-给最伤心的人(演唱会),http://em.21dtv.com/songs/60018612.mkv +陈旭-哥只是个传说,http://em.21dtv.com/songs/60018331.mkv +傅羽-给最深爱的人,http://em.21dtv.com/songs/60070711.mkv +杨宗纬-跟着你到天边,http://em.21dtv.com/songs/60113677.mkv +吴青峰-跟着你到天边,http://em.21dtv.com/songs/60099882.mkv +李佑晨-该怎么讨厌你,http://em.21dtv.com/songs/60075439.mkv +南拳妈妈-公主恋爱手册,http://em.21dtv.com/songs/60018709.mkv +郑欣宜-给最开心的人,http://em.21dtv.com/songs/60116292.mkv +林一峰-给最开心的人(演唱会),http://em.21dtv.com/songs/60018611.mkv +王菲-给自己的情书,http://em.21dtv.com/songs/60018606.mkv +容祖儿-给自己的情书(演唱会),http://em.21dtv.com/songs/60018605.mkv +梁咏琪-给自己的情歌,http://em.21dtv.com/songs/60018604.mkv +麦家瑜-给自己的命书,http://em.21dtv.com/songs/60124730.mkv +东来东往-给自己的安慰,http://em.21dtv.com/songs/60082954.mkv +佚名-跟着共产党走,http://em.21dtv.com/songs/60018655.mkv +郭一男-古锥的台湾话(无原唱),http://em.21dtv.com/songs/60019000.mkv +黄乙玲-古锥的少年家(无原唱),http://em.21dtv.com/songs/60018999.mkv +费玉清-跟着地球旋转(无原唱),http://em.21dtv.com/songs/60018650.mkv +HAZZA-该走的都走吧,http://em.21dtv.com/songs/60075440.mkv +吴欢-该走的都走吧,http://em.21dtv.com/songs/60017827.mkv +许茹芸-公主彻夜未眠,http://em.21dtv.com/songs/60090216.mkv +公主帮-公主彻夜未眠,http://em.21dtv.com/songs/60018704.mkv +许茹芸-公主彻夜末眠,http://em.21dtv.com/songs/60092074.mkv +厉娜-广州爱情故事,http://em.21dtv.com/songs/60019342.mkv +陈思安-搁再爱的勇气,http://em.21dtv.com/songs/60070705.mkv +群星-公元一九九七,http://em.21dtv.com/songs/60018696.mkv +梁静茹-关于幸福的事,http://em.21dtv.com/songs/60090019.mkv +颂乐-给予幸福的人,http://em.21dtv.com/songs/60133099.mkv +蔡佳麟-甘愿为你孤单,http://em.21dtv.com/songs/60117187.mkv +邱芸子+林威成-甘愿为你痴迷(无原唱),http://em.21dtv.com/songs/60095936.mkv +林威成+邱芸子-甘愿为你痴迷(无原唱),http://em.21dtv.com/songs/60095660.mkv +卢崛娃娃-关于我们的爱,http://em.21dtv.com/songs/60075592.mkv +曹智贤+樱樱-该遗忘的忧伤,http://em.21dtv.com/songs/60085105.mkv +任娟-高原天空的星,http://em.21dtv.com/songs/60071948.mkv +乌兰托娅-高原上一朵云,http://em.21dtv.com/songs/60121343.mkv +雪山朗玛组合-高原深处的爱,http://em.21dtv.com/songs/60130872.mkv +七郎-古意人的自尊,http://em.21dtv.com/songs/60018994.mkv +刘斌-国要强民要壮,http://em.21dtv.com/songs/60019460.mkv +刘德华-关于你我的事,http://em.21dtv.com/songs/60019225.mkv +曹倍铭-关于你的记忆,http://em.21dtv.com/songs/60135329.mkv +崔乙幕-关于你的记忆,http://em.21dtv.com/songs/60126816.mkv +王渝文-关于你的爱情(无原唱),http://em.21dtv.com/songs/60019223.mkv +印能法师-观音灵感真言,http://em.21dtv.com/songs/60099847.mkv +吴依琳-过一个大肥年,http://em.21dtv.com/songs/60075635.mkv +丁楠霓+丁嘉林-过一个大肥年,http://em.21dtv.com/songs/60075634.mkv +杜歌+郭少杰-哥已不在江湖,http://em.21dtv.com/songs/60116023.mkv +林展逸-歌谣班介心声,http://em.21dtv.com/songs/60018404.mkv +方大同-关于爱的定义,http://em.21dtv.com/songs/60071969.mkv +万芳-甘心再生一世,http://em.21dtv.com/songs/60017877.mkv +拉毛王旭-故乡我的月亮,http://em.21dtv.com/songs/60075580.mkv +巫启贤-跟夏天说再见,http://em.21dtv.com/songs/60091011.mkv +卓依婷-过新年最高兴,http://em.21dtv.com/songs/60087489.mkv +阳光天使-恭喜你祝福你,http://em.21dtv.com/songs/60071958.mkv +赵荣-感谢你陪着我,http://em.21dtv.com/songs/60114104.mkv +马智宇-感谢你嫁给我,http://em.21dtv.com/songs/60065986.mkv +李萌-感谢那个女孩(HD),http://em.21dtv.com/songs/10012798.mkv +李萌-感谢那个女孩,http://em.21dtv.com/songs/60097798.mkv +姜育恒-感谢你高尔夫,http://em.21dtv.com/songs/60112613.mkv +李宇春-感谢你感动我,http://em.21dtv.com/songs/60069409.mkv +4MEN-感谢你的笑容,http://em.21dtv.com/songs/60067024.mkv +林俊吉-感谢你的陪伴,http://em.21dtv.com/songs/60064220.mkv +郑秀月-感谢你的陪伴(无原唱),http://em.21dtv.com/songs/60018091.mkv +浦航-感谢你的恩赐,http://em.21dtv.com/songs/60116114.mkv +袁小迪+乔幼-感谢您爱过我,http://em.21dtv.com/songs/60103558.mkv +王莹-故乡梦同学情,http://em.21dtv.com/songs/60128238.mkv +和妤婕-给心灵放个假,http://em.21dtv.com/songs/60071954.mkv +雪域格桑-故乡就在江边,http://em.21dtv.com/songs/60117362.mkv +詹雅雯-故乡的一封信,http://em.21dtv.com/songs/60094879.mkv +王玲-故乡的小火车(无原唱),http://em.21dtv.com/songs/60019091.mkv +高松-故乡的万泉河,http://em.21dtv.com/songs/60019090.mkv +谢妤-故乡的山楂树,http://em.21dtv.com/songs/60116247.mkv +齐旦布-故乡的牧羊人,http://em.21dtv.com/songs/60075572.mkv +许富凯-故乡的门口埕,http://em.21dtv.com/songs/60082972.mkv +李永成-故乡的蓝月亮,http://em.21dtv.com/songs/60082971.mkv +醉美-故乡的蓝月亮,http://em.21dtv.com/songs/60071967.mkv +龙千玉-故乡的金针花,http://em.21dtv.com/songs/60133147.mkv +黄静雅-故乡的凤凰花(无原唱),http://em.21dtv.com/songs/60019076.mkv +李斯丹妮+艾菲-鬼,http://em.21dtv.com/songs/60125702.mkv +谢安琪-跟我走这世界(HD演唱会),http://em.21dtv.com/songs/60018648.mkv +陈庆聪-给我最爱的你,http://em.21dtv.com/songs/60075516.mkv +陈秀雯-给我一些时间,http://em.21dtv.com/songs/60018591.mkv +张智航-给我一双翅膀,http://em.21dtv.com/songs/60075515.mkv +佚名-给我一个微笑,http://em.21dtv.com/songs/60018579.mkv +余天-给我一个微笑(无原唱),http://em.21dtv.com/songs/60018578.mkv +林道华-给我一个理由,http://em.21dtv.com/songs/60081929.mkv +郑智化-给我一个空间,http://em.21dtv.com/songs/60088767.mkv +陈小春-给我一个机会,http://em.21dtv.com/songs/60018576.mkv +月星海-给我一份真爱,http://em.21dtv.com/songs/60085133.mkv +小蝶-给我一分一秒,http://em.21dtv.com/songs/60115125.mkv +崔来宾-给我一幅风景,http://em.21dtv.com/songs/60129034.mkv +李玲玉-给我一点温柔,http://em.21dtv.com/songs/60109431.mkv +梁博-给我一点温度,http://em.21dtv.com/songs/60119731.mkv +本多RURU-给我一点爱tonight,http://em.21dtv.com/songs/60018569.mkv +汶阳-给我一次机会(无原唱),http://em.21dtv.com/songs/60018566.mkv +靳欢琪-给我一杯时光,http://em.21dtv.com/songs/60106445.mkv +温岚-该我幸福了吧,http://em.21dtv.com/songs/60081706.mkv +马浚伟-怪我未够登对,http://em.21dtv.com/songs/60019186.mkv +Eru-格外痛的春天,http://em.21dtv.com/songs/60108220.mkv +蒋大为-敢问路在何方,http://em.21dtv.com/songs/60128366.mkv +琦智-敢问路在何方,http://em.21dtv.com/songs/60088349.mkv +龚月-敢问路在何方,http://em.21dtv.com/songs/60075451.mkv +刀郎-敢问路在何方,http://em.21dtv.com/songs/60069405.mkv +蒋大为-敢问路在何方,http://em.21dtv.com/songs/60017932.mkv +蒋大为-敢问路在何方(演唱会),http://em.21dtv.com/songs/60017931.mkv +佚名-给无良心的人,http://em.21dtv.com/songs/60018595.mkv +吴欢-给我留个位置,http://em.21dtv.com/songs/60105697.mkv +梁静茹-给未来的自己,http://em.21dtv.com/songs/60018528.mkv +杨宗纬-给未来的自己(演唱会),http://em.21dtv.com/songs/60018527.mkv +高慧君-管我快不快乐,http://em.21dtv.com/songs/60019262.mkv +孙子涵-给我机会重来,http://em.21dtv.com/songs/60116698.mkv +章艺子-该我的还给我,http://em.21dtv.com/songs/60017822.mkv +云飞儿-给我爱情就好,http://em.21dtv.com/songs/60133348.mkv +周笔畅-管他什么音乐,http://em.21dtv.com/songs/60098199.mkv +陈俊豪+米可-管他什么音乐,http://em.21dtv.com/songs/60095126.mkv +范晓萱+百分百乐团-管他什么音乐,http://em.21dtv.com/songs/60019258.mkv +谢霆锋-给天使看的戏,http://em.21dtv.com/songs/60018526.mkv +王晶-隔条街的距离,http://em.21dtv.com/songs/60018438.mkv +佚名-go tell in on the mountain,http://em.21dtv.com/songs/60001930.mkv +军嫂组合-沟通从心开始,http://em.21dtv.com/songs/60099769.mkv +海鸣威+胡杨林-工体爱情故事,http://em.21dtv.com/songs/60068279.mkv +苏亚-观世音菩萨赞,http://em.21dtv.com/songs/60075595.mkv +周华健-告诉我你爱我,http://em.21dtv.com/songs/60018307.mkv +林俊-告诉我你爱谁,http://em.21dtv.com/songs/60018306.mkv +孟飞-跟上我的节奏,http://em.21dtv.com/songs/60118511.mkv +李逸-告诉她我爱她,http://em.21dtv.com/songs/60018293.mkv +胡歌-告诉他我爱她,http://em.21dtv.com/songs/60018292.mkv +吴陌川-怪叔叔有人爱,http://em.21dtv.com/songs/60131263.mkv +奔月-哥是山妹是水,http://em.21dtv.com/songs/60131311.mkv +SWING-隔三日见一面,http://em.21dtv.com/songs/60018431.mkv +路童+珍美儿-告诉你我爱你,http://em.21dtv.com/songs/60062730.mkv +薛凯琪-给十年后的我,http://em.21dtv.com/songs/60018521.mkv +邓丽君-告诉你告诉我,http://em.21dtv.com/songs/60018291.mkv +尼玛次仁-格桑美朵盖松,http://em.21dtv.com/songs/60018427.mkv +段乐-故事里的天堂,http://em.21dtv.com/songs/60019043.mkv +段乐-故事里的天堂(无原唱),http://em.21dtv.com/songs/60019042.mkv +熊七梅-故事里的你我,http://em.21dtv.com/songs/60098613.mkv +望海高歌-故事里的女孩,http://em.21dtv.com/songs/60135342.mkv +庄心妍-歌声里的回忆,http://em.21dtv.com/songs/60119487.mkv +庄心妍-歌声里的回忆,http://em.21dtv.com/songs/60118546.mkv +卓依婷-故事里的故事,http://em.21dtv.com/songs/60019040.mkv +戴娆-故事就是故事(演唱会),http://em.21dtv.com/songs/60019039.mkv +阚杰-哥是光棍光(舞曲版),http://em.21dtv.com/songs/60075488.mkv +田跃君+童可可-该死的异地恋,http://em.21dtv.com/songs/60125969.mkv +莫大人+JAN-该死的异地恋,http://em.21dtv.com/songs/60100426.mkv +许哲佩-该死的高跟鞋,http://em.21dtv.com/songs/60064215.mkv +伍思凯-故事的第一行,http://em.21dtv.com/songs/60019032.mkv +阎维文-骨肉情同胞爱,http://em.21dtv.com/songs/60019003.mkv +东浩-狗日的小日本,http://em.21dtv.com/songs/60069425.mkv +孙建华-光荣的后勤兵,http://em.21dtv.com/songs/60111804.mkv +兄弟组合-光荣的后勤兵,http://em.21dtv.com/songs/60075603.mkv +陈雷-感情债算袜清,http://em.21dtv.com/songs/60018063.mkv +佚名-感情债上歹还,http://em.21dtv.com/songs/60018062.mkv +佚名-过去已成过去,http://em.21dtv.com/songs/60019526.mkv +韩鼎睿-过去现在未来,http://em.21dtv.com/songs/60109020.mkv +谢恩民-过去现在未来(演唱会),http://em.21dtv.com/songs/60061226.mkv +TENSION-感情线shes the one,http://em.21dtv.com/songs/60018051.mkv +黄西田+樱桃姐妹-感情像大风台,http://em.21dtv.com/songs/60018054.mkv +霍勇-共青团员之歌,http://em.21dtv.com/songs/60075544.mkv +佚名-共青团员之歌,http://em.21dtv.com/songs/60018782.mkv +高榕-钢琴上的芭蕾,http://em.21dtv.com/songs/60018151.mkv +佚名-过去让他过去,http://em.21dtv.com/songs/60019523.mkv +冷酷-过去就过去吧,http://em.21dtv.com/songs/60125169.mkv +彭青-枸杞红盖头白,http://em.21dtv.com/songs/60105065.mkv +于台烟-感情的面头前,http://em.21dtv.com/songs/60018007.mkv +詹雅雯-感情的可怜人,http://em.21dtv.com/songs/60018006.mkv +佚名-过去的好时光,http://em.21dtv.com/songs/60019517.mkv +可歆-过去的回不去,http://em.21dtv.com/songs/60098180.mkv +安崇艺-感情都吵没了,http://em.21dtv.com/songs/60114492.mkv +蜜蜂少女队-GPS密封令,http://em.21dtv.com/songs/60132867.mkv +靓舞精灵-怪脾气的姑娘,http://em.21dtv.com/songs/60019175.mkv +Lil Uzi Vert+Quavo+Travis Scott-Go Off,http://em.21dtv.com/songs/60133225.mkv +袁娅维-Golden,http://em.21dtv.com/songs/60132868.mkv +曹杰-姑娘在我心上,http://em.21dtv.com/songs/60018968.mkv +苏泽-给你一双翅膀,http://em.21dtv.com/songs/60081328.mkv +群星-给你一个拥抱,http://em.21dtv.com/songs/60122020.mkv +华语群星-给你一个拥抱,http://em.21dtv.com/songs/60097772.mkv +爽子-给你一个机会,http://em.21dtv.com/songs/60075506.mkv +闪亮三姐妹-给你一个机会,http://em.21dtv.com/songs/60018510.mkv +陈耀川-给你一份温柔,http://em.21dtv.com/songs/60018509.mkv +谭维维-给你一点颜色,http://em.21dtv.com/songs/60117245.mkv +安东阳-姑娘像花一样,http://em.21dtv.com/songs/60018963.mkv +羽泉-给你我的真心,http://em.21dtv.com/songs/60091876.mkv +佳小宇-给你我的幸福,http://em.21dtv.com/songs/60085130.mkv +苏有朋-给你我的所有,http://em.21dtv.com/songs/60091936.mkv +天孪兄弟-姑娘我爱上你,http://em.21dtv.com/songs/60062989.mkv +李辉-给你,http://em.21dtv.com/songs/60098495.mkv +许巍-姑娘让我爱你,http://em.21dtv.com/songs/60088641.mkv +徐威-姑娘让我爱你,http://em.21dtv.com/songs/60018952.mkv +郝红岩-姑娘你在何方,http://em.21dtv.com/songs/60065995.mkv +长春虫子-姑娘你听我说,http://em.21dtv.com/songs/60018948.mkv +索南扎西-姑娘你听我说,http://em.21dtv.com/songs/60018947.mkv +吴松发-姑娘你不要拽,http://em.21dtv.com/songs/60081709.mkv +来国庆-姑娘美朵拉姆,http://em.21dtv.com/songs/60062553.mkv +深仁多吉-姑娘麦朵草原,http://em.21dtv.com/songs/60088226.mkv +白龙传说-姑娘嫁给我吧,http://em.21dtv.com/songs/60111321.mkv +刘子毅-姑娘嫁给我吧,http://em.21dtv.com/songs/60085142.mkv +蔡健雅-跟你借的幸福,http://em.21dtv.com/songs/60018616.mkv +太极乐队-怪你过份美丽(演唱会),http://em.21dtv.com/songs/60095284.mkv +MR-怪你过分美丽,http://em.21dtv.com/songs/60095248.mkv +刘美君-怪你过份美丽,http://em.21dtv.com/songs/60069429.mkv +张国荣-怪你过份美丽,http://em.21dtv.com/songs/60019174.mkv +张国荣-怪你过份美丽(演唱会),http://em.21dtv.com/songs/60019173.mkv +亚东-姑娘达瓦卓玛,http://em.21dtv.com/songs/60018940.mkv +罗文-给你的是这么,http://em.21dtv.com/songs/60018499.mkv +容祖儿-共你痴痴爱在(故事情节),http://em.21dtv.com/songs/60101325.mkv +[Group] +groupName=十六万歌曲MV等 - 86 +容祖儿-共你痴痴爱在[消伴],http://em.21dtv.com/songs/60100854.mkv +动力火车-给你爱but you lie(演唱会),http://em.21dtv.com/songs/60018490.mkv +佚名-哥们再干一杯,http://em.21dtv.com/songs/60075487.mkv +雨木-哥们再干一杯,http://em.21dtv.com/songs/60061210.mkv +谭艳-光明,http://em.21dtv.com/songs/60116249.mkv +罗隽永-光,http://em.21dtv.com/songs/60108808.mkv +佚名-give me just one more night,http://em.21dtv.com/songs/60001907.mkv +佚名-管芒花的春天,http://em.21dtv.com/songs/60019256.mkv +新疆民歌-古丽娅茹11,http://em.21dtv.com/songs/60089902.mkv +新疆民歌-古丽娅茹13,http://em.21dtv.com/songs/60089904.mkv +新疆民歌-古丽娅茹10,http://em.21dtv.com/songs/60089901.mkv +新疆民歌-古丽娅茹12,http://em.21dtv.com/songs/60089903.mkv +黄征-归来,http://em.21dtv.com/songs/60113113.mkv +游鸿明-过两天再爱你,http://em.21dtv.com/songs/60111247.mkv +游鸿明-过两天再爱你,http://em.21dtv.com/songs/60109500.mkv +周俊伟-过了期的回忆,http://em.21dtv.com/songs/60019499.mkv +谢慧娴-够local,http://em.21dtv.com/songs/60126202.mkv +凤凰传奇-古老的乡巴拉,http://em.21dtv.com/songs/60018986.mkv +佚名-归来吧苏连多,http://em.21dtv.com/songs/60019369.mkv +摇摆娇娃-该快乐就快乐(无原唱),http://em.21dtv.com/songs/60017812.mkv +佚名-港口痴情的人,http://em.21dtv.com/songs/60018186.mkv +蔡依林-感觉你的存在,http://em.21dtv.com/songs/60017979.mkv +曾淑勤-过节的霓虹灯,http://em.21dtv.com/songs/60019480.mkv +于文华-给家打个电话,http://em.21dtv.com/songs/60106581.mkv +Take That-Giants,http://em.21dtv.com/songs/60133291.mkv +EN VOGUE-giving him something he can fe,http://em.21dtv.com/songs/60001909.mkv +赵育闻-共和国圆舞曲,http://em.21dtv.com/songs/60131853.mkv +王媛媛-共和国的旗帜,http://em.21dtv.com/songs/60018774.mkv +解亚娇-共和国的华诞,http://em.21dtv.com/songs/60075542.mkv +谭晶-共和国的春天,http://em.21dtv.com/songs/60069424.mkv +彭清-哥哥在我心上,http://em.21dtv.com/songs/60085557.mkv +李风持-格格生日快乐,http://em.21dtv.com/songs/60018417.mkv +晓月-哥哥亲哥哥傻,http://em.21dtv.com/songs/60119618.mkv +望海高歌-哥哥亲哥哥傻,http://em.21dtv.com/songs/60106910.mkv +王爱华-姑姑您挺辛苦,http://em.21dtv.com/songs/60116158.mkv +望海高歌-姑姑您挺辛苦,http://em.21dtv.com/songs/60115979.mkv +红蔷薇-哥哥你听我说,http://em.21dtv.com/songs/60071949.mkv +刘小慧-改改恋爱革命,http://em.21dtv.com/songs/60017849.mkv +郑毅-给个哭的机会,http://em.21dtv.com/songs/60018481.mkv +崔浩然-哥哥不是无赖,http://em.21dtv.com/songs/60102169.mkv +刘小慧-改改{爱恋革命},http://em.21dtv.com/songs/60017847.mkv +龙韩宇-该放手就放手,http://em.21dtv.com/songs/60064214.mkv +太子-该放手就放手,http://em.21dtv.com/songs/60017810.mkv +洛天依-古风2016,http://em.21dtv.com/songs/60131610.mkv +卡修rui+妖扬-古风2016,http://em.21dtv.com/songs/60127792.mkv +李美丽-感恩一路有你,http://em.21dtv.com/songs/60132564.mkv +小爱与花儿乐队-Get Up,http://em.21dtv.com/songs/60132389.mkv +Baby Vox-Get Up,http://em.21dtv.com/songs/60115568.mkv +林忆莲-给等最久的人(演唱会),http://em.21dtv.com/songs/60018478.mkv +伊能静-怪盗亚森罗苹,http://em.21dtv.com/songs/60089606.mkv +伊能静-怪盗亚森罗频,http://em.21dtv.com/songs/60019167.mkv +张龙珍-孤单已成习惯,http://em.21dtv.com/songs/60135261.mkv +江美琪-孤单,http://em.21dtv.com/songs/60104271.mkv +宇桐非-感动天感动地,http://em.21dtv.com/songs/60017944.mkv +张靓颖-G大调的悲伤,http://em.21dtv.com/songs/60135245.mkv +佚名-港町十三番地,http://em.21dtv.com/songs/60018174.mkv +周杰伦-歌德式的教堂,http://em.21dtv.com/songs/60090842.mkv +尹洪强-刚点亮的灯笼,http://em.21dtv.com/songs/60098304.mkv +梁咏琪-给大家的情歌,http://em.21dtv.com/songs/60065992.mkv +姜木-孤独的伊甸园,http://em.21dtv.com/songs/60075556.mkv +刘美冰-孤单的萨克斯,http://em.21dtv.com/songs/60082960.mkv +高山林-孤单的情人节,http://em.21dtv.com/songs/60018840.mkv +蒋蒋-孤独的皮特张,http://em.21dtv.com/songs/60112210.mkv +罗天婵-孤独的牧羊人,http://em.21dtv.com/songs/60101674.mkv +刀郎-孤独的牧羊人,http://em.21dtv.com/songs/60085145.mkv +佚名-孤独的牧羊人,http://em.21dtv.com/songs/60018886.mkv +小峰峰+王媛渊-古董店的娃娃,http://em.21dtv.com/songs/60080303.mkv +魏楚沅-孤独的稻草人,http://em.21dtv.com/songs/60096566.mkv +张靓颖-g大调的悲伤,http://em.21dtv.com/songs/60002045.mkv +叶巧琳-孤单的贝多芬,http://em.21dtv.com/songs/60118417.mkv +叶巧琳-孤单的贝多芬,http://em.21dtv.com/songs/60115744.mkv +盈袖-孤独爱上寂寞,http://em.21dtv.com/songs/60085144.mkv +青春美少女-跟从前说再见(演唱会),http://em.21dtv.com/songs/60018615.mkv +谢军-给擦肩的缘份,http://em.21dtv.com/songs/60018475.mkv +高胜美-共此花月春风,http://em.21dtv.com/songs/60018770.mkv +新月合唱团-共产儿童团歌,http://em.21dtv.com/songs/60018767.mkv +童唱-共产儿童团歌,http://em.21dtv.com/songs/60018766.mkv +李志洲-哥唱的是寂寞,http://em.21dtv.com/songs/60018313.mkv +杨子-哥唱的不是戏,http://em.21dtv.com/songs/60101104.mkv +雷蕾-歌唱吧长吉图,http://em.21dtv.com/songs/60120120.mkv +韩红-歌唱2002,http://em.21dtv.com/songs/60018359.mkv +马常宝+王杰-哥不做单身汉,http://em.21dtv.com/songs/60101000.mkv +关颖-关不住的秘密,http://em.21dtv.com/songs/60019196.mkv +杨宇-告别远去的你,http://em.21dtv.com/songs/60125738.mkv +刘维-古堡下的守候,http://em.21dtv.com/songs/60018977.mkv +汶阳+李玉玲-干杯莎哟娜啦(无原唱),http://em.21dtv.com/songs/60018127.mkv +黄绮珊+廖国钺+陈波-改变所有的错(最美和声)(现场版),http://em.21dtv.com/songs/60101582.mkv +庾澄庆-改变所有的错,http://em.21dtv.com/songs/60017843.mkv +何龙雨-给不起的承诺,http://em.21dtv.com/songs/60113260.mkv +何龙雨+艾歌-给不起的承诺,http://em.21dtv.com/songs/60105585.mkv +刘转亮-给不了你什么,http://em.21dtv.com/songs/60080656.mkv +谢娜-给不了的幸福,http://em.21dtv.com/songs/60018471.mkv +成云刚+王星星-该不该该不该,http://em.21dtv.com/songs/60086554.mkv +庾澄庆+金润吉-关不掉的月光,http://em.21dtv.com/songs/60082037.mkv +中国好声音第二季-关不掉的月光(庾澄庆+金润吉),http://em.21dtv.com/songs/60081574.mkv +庾澄庆-关不掉的月光,http://em.21dtv.com/songs/60080042.mkv +谢世超-割不断的红颜,http://em.21dtv.com/songs/60120945.mkv +吴俊熠-割不断的回忆,http://em.21dtv.com/songs/60085122.mkv +李雪-给爸爸妈妈的,http://em.21dtv.com/songs/60018470.mkv +黄舒骏-改变1995,http://em.21dtv.com/songs/60017839.mkv +荣帝丞-给爱一个理由,http://em.21dtv.com/songs/60070707.mkv +庞龙-给爱人的倾诉,http://em.21dtv.com/songs/60018467.mkv +乌兰吉雅-给爱情加把火,http://em.21dtv.com/songs/60123597.mkv +Ladies Code-Galaxy,http://em.21dtv.com/songs/60134732.mkv +庞龙-给爱的人倾诉,http://em.21dtv.com/songs/60089845.mkv +赤い公园-风が知ってる,http://em.21dtv.com/songs/60105391.mkv +蔡小虎-风中缘风中情,http://em.21dtv.com/songs/60017522.mkv +流苏-放在心里想你,http://em.21dtv.com/songs/60102485.mkv +豫剧-负责任探敌岛,http://em.21dtv.com/songs/60134610.mkv +林忆莲-放纵全部的爱,http://em.21dtv.com/songs/60016761.mkv +林爽-风中那朵小花,http://em.21dtv.com/songs/60082918.mkv +邵兵-风最冷的时候,http://em.21dtv.com/songs/60017525.mkv +李建科-风筝飞上了天,http://em.21dtv.com/songs/60017467.mkv +陈妃-风中的相思树,http://em.21dtv.com/songs/60095984.mkv +魏碧海-风中的四叶草,http://em.21dtv.com/songs/60122292.mkv +阿斯根-风中的玛尼堆,http://em.21dtv.com/songs/60017490.mkv +品冠-风中的吉普赛,http://em.21dtv.com/songs/60071934.mkv +许效舜-福州伯的故事,http://em.21dtv.com/songs/60017706.mkv +伍俊华-风雨中的阳光,http://em.21dtv.com/songs/60070687.mkv +游鸿明-风雨中的朋友,http://em.21dtv.com/songs/60017437.mkv +韩红-风雨中的美丽,http://em.21dtv.com/songs/60017436.mkv +韩红-风雨中的美丽(演唱会),http://em.21dtv.com/songs/60017435.mkv +杨咏青-风雨中的等待,http://em.21dtv.com/songs/60067004.mkv +李安琪-风雨中痴情人(无原唱),http://em.21dtv.com/songs/60017434.mkv +崔现雅-风一样的勇士,http://em.21dtv.com/songs/60075391.mkv +冷漠-风一样的女子,http://em.21dtv.com/songs/60075390.mkv +陈晓东-风一样的男子,http://em.21dtv.com/songs/60017394.mkv +戴梅君-放袂记的所在,http://em.21dtv.com/songs/60069383.mkv +泰迪罗宾-发育过的男人,http://em.21dtv.com/songs/60016455.mkv +佚名-风雨的人生路,http://em.21dtv.com/songs/60095452.mkv +巴桑拉姆-风一吹爱就来,http://em.21dtv.com/songs/60119477.mkv +陈明真-飞越悲伤的墙,http://em.21dtv.com/songs/60127554.mkv +佚名-飞越悲伤的墙,http://em.21dtv.com/songs/60016897.mkv +谭咏麟-飞一般的遐想,http://em.21dtv.com/songs/60016888.mkv +刘伟-飞一般的想念,http://em.21dtv.com/songs/60075338.mkv +印良法师-放下,http://em.21dtv.com/songs/60119332.mkv +林义忠-放下我的情感,http://em.21dtv.com/songs/60016735.mkv +安涛-分享身边的事,http://em.21dtv.com/songs/60071928.mkv +云泉法师-放下难舍的缘,http://em.21dtv.com/songs/60070673.mkv +旺福乐团-飞向你飞向我,http://em.21dtv.com/songs/60016870.mkv +锦绣二重唱-飞向你飞向我,http://em.21dtv.com/songs/60016869.mkv +宁新兵-放下你的手机,http://em.21dtv.com/songs/60122669.mkv +郭凤女-焚香记之打神(戏曲),http://em.21dtv.com/songs/60093344.mkv +刘之烁-放学后看夜空,http://em.21dtv.com/songs/60128813.mkv +光光+C.K-飞向别人的床,http://em.21dtv.com/songs/60016866.mkv +龙千玉-风微微情绵绵,http://em.21dtv.com/songs/60017384.mkv +詹雅雯-放袜落彼个人(无原唱),http://em.21dtv.com/songs/60016726.mkv +N SYNC-for the girl who has everythin,http://em.21dtv.com/songs/60001749.mkv +田震-分手真的难受,http://em.21dtv.com/songs/60017129.mkv +CLOWN-放手也是幸福,http://em.21dtv.com/songs/60016717.mkv +冯博娟-分手已是时候,http://em.21dtv.com/songs/60017116.mkv +冷漠-分手依然爱你,http://em.21dtv.com/songs/60017115.mkv +尚乐心成-分手有害健康,http://em.21dtv.com/songs/60061189.mkv +金志文-放手,http://em.21dtv.com/songs/60106341.mkv +佚名-风速四十公尺,http://em.21dtv.com/songs/60017377.mkv +徐安则+微光-分手时的我们,http://em.21dtv.com/songs/60069389.mkv +Supper Moment+郑欣宜-分手是常识吧,http://em.21dtv.com/songs/60125012.mkv +郑欣宜+supper Moment-分手是常识吧,http://em.21dtv.com/songs/60118962.mkv +王键-分手时不哭泣,http://em.21dtv.com/songs/60017109.mkv +张圣全-放手让你去爱,http://em.21dtv.com/songs/60016715.mkv +彭家丽-分手前一小时,http://em.21dtv.com/songs/60017106.mkv +张敬轩-分手前的雨天,http://em.21dtv.com/songs/60091102.mkv +张瀛仁-放思念去找你,http://em.21dtv.com/songs/60135218.mkv +叶瑗菱-分送寂寞和爱,http://em.21dtv.com/songs/60017134.mkv +丁思忖-分手后还爱你,http://em.21dtv.com/songs/60081301.mkv +旭明-分手后的祝福,http://em.21dtv.com/songs/60017072.mkv +沈丹丹-分手该说什么,http://em.21dtv.com/songs/60082901.mkv +邓丽君-釜山港へ帰れ(演唱会),http://em.21dtv.com/songs/60017709.mkv +张宇轩-放手2016,http://em.21dtv.com/songs/60126871.mkv +李志洲-放手2012,http://em.21dtv.com/songs/60066994.mkv +张启靓-分手的这些天,http://em.21dtv.com/songs/60017065.mkv +刘杰-分手的那一夜,http://em.21dtv.com/songs/60110030.mkv +刘杰-分手的那一夜,http://em.21dtv.com/songs/60075356.mkv +张洪量-分手的那一夜,http://em.21dtv.com/songs/60017060.mkv +星盒子-分手的第一天,http://em.21dtv.com/songs/60017048.mkv +赵云龙-分手的第七天,http://em.21dtv.com/songs/60017047.mkv +名洋-分手摆在胸口,http://em.21dtv.com/songs/60017041.mkv +刘天骐-分手不做朋友,http://em.21dtv.com/songs/60101957.mkv +庞晓宇-分手别说理由,http://em.21dtv.com/songs/60071921.mkv +侧田-肤浅,http://em.21dtv.com/songs/60110844.mkv +李潮-父亲我记住了,http://em.21dtv.com/songs/60086552.mkv +刘大成-父亲我记住了,http://em.21dtv.com/songs/60075428.mkv +仝林梅+李永成-方青天日月朗,http://em.21dtv.com/songs/60070664.mkv +严当当-父亲山母亲河(演唱会),http://em.21dtv.com/songs/60075427.mkv +林淑蓉-风凄凄雨绵绵,http://em.21dtv.com/songs/60017349.mkv +余天-风凄凄意绵绵,http://em.21dtv.com/songs/60017348.mkv +高胜美-风凄凄意绵绵,http://em.21dtv.com/songs/60017347.mkv +晓琳-放弃你该不该,http://em.21dtv.com/songs/60132501.mkv +周子琰-风起来的时光,http://em.21dtv.com/songs/60085089.mkv +梁召今-父亲河母亲河,http://em.21dtv.com/songs/60116068.mkv +陈玉建-放弃后的心疼,http://em.21dtv.com/songs/60065957.mkv +李娣-父亲给的幸福,http://em.21dtv.com/songs/60121770.mkv +枫桥-父亲的口头禅,http://em.21dtv.com/songs/60101403.mkv +胡玮琪-发泡的一瞬间,http://em.21dtv.com/songs/60016431.mkv +谢承佑-Follow,http://em.21dtv.com/songs/60127405.mkv +龙千玉-放你去自由飞,http://em.21dtv.com/songs/60070671.mkv +许秋汉-烦恼的星期天,http://em.21dtv.com/songs/60092065.mkv +印能法师-佛母准提神咒,http://em.21dtv.com/songs/60099833.mkv +詹雅雯-放袂落彼个人,http://em.21dtv.com/songs/60016643.mkv +赵真-福门开好运来,http://em.21dtv.com/songs/60127443.mkv +唐飞-父母交代的话,http://em.21dtv.com/songs/60075420.mkv +陈慧琳-沸洛依德笑我,http://em.21dtv.com/songs/60093463.mkv +张北北-放了我忘了我,http://em.21dtv.com/songs/60133649.mkv +Kanto+Bada-Flower,http://em.21dtv.com/songs/60134718.mkv +BADA-FLOWER,http://em.21dtv.com/songs/60123448.mkv +Lizzy+Kanto-Flower,http://em.21dtv.com/songs/60115612.mkv +成天龙-放了你忘了我,http://em.21dtv.com/songs/60114559.mkv +张惠妹-放了那个作品,http://em.21dtv.com/songs/60112668.mkv +彩贝与海-分了就分了吧,http://em.21dtv.com/songs/60109342.mkv +BANANA GIRL-疯了疯了疯了,http://em.21dtv.com/songs/60017565.mkv +佚名-风流的行船人,http://em.21dtv.com/songs/60017334.mkv +文夏-风流的行船人,http://em.21dtv.com/songs/60079466.mkv +佚名-风流的阿狗兄,http://em.21dtv.com/songs/60017333.mkv +张智霖-疯了吧想我吗(演唱会),http://em.21dtv.com/songs/60064205.mkv +阿鲁阿卓-飞来吧黑颈鹤,http://em.21dtv.com/songs/60082895.mkv +程海星-放开手让她走,http://em.21dtv.com/songs/60016628.mkv +丁咚-放开手让你走,http://em.21dtv.com/songs/60090454.mkv +海阔-放开手放开爱,http://em.21dtv.com/songs/60110350.mkv +容祖儿-放开你的头脑,http://em.21dtv.com/songs/60120467.mkv +温岚-放开你的头脑,http://em.21dtv.com/songs/60016625.mkv +梅艳芳-放开你的头脑,http://em.21dtv.com/songs/60016624.mkv +伍佰-放开你的脑袋(演唱会),http://em.21dtv.com/songs/60071917.mkv +韩晶-放开你的理由,http://em.21dtv.com/songs/60016620.mkv +邓紫棋-分开后的关心,http://em.21dtv.com/songs/60085083.mkv +詹雅雯-分开的一站仔,http://em.21dtv.com/songs/60081098.mkv +秦浩-分开的太久了,http://em.21dtv.com/songs/60108788.mkv +五月天-翻开地球表面,http://em.21dtv.com/songs/60016461.mkv +曾明莉-分开的彼一天(无原唱),http://em.21dtv.com/songs/60017007.mkv +霍勇+王莉-风景这边独好,http://em.21dtv.com/songs/60109003.mkv +宋祖英-风景这边独好,http://em.21dtv.com/songs/60017312.mkv +李霄云-房间1501,http://em.21dtv.com/songs/60070665.mkv +张国荣-飞机师的风衣,http://em.21dtv.com/songs/60130302.mkv +张国荣-飞机师的风衣,http://em.21dtv.com/songs/60126867.mkv +张学友-飞机师的风衣(无原唱),http://em.21dtv.com/songs/60016819.mkv +孙艺程-飞机去哪儿了,http://em.21dtv.com/songs/60099930.mkv +JOSS STONE-fell in love with a boy,http://em.21dtv.com/songs/60001662.mkv +李潇潇+孙子涵-法海我不爱你,http://em.21dtv.com/songs/60075293.mkv +刘雅丽-粉红色的一生(演唱会),http://em.21dtv.com/songs/60082907.mkv +陈百强-粉红色的一生,http://em.21dtv.com/songs/60017171.mkv +梅艳芳-粉红色的一生(演唱会),http://em.21dtv.com/songs/60017170.mkv +陈百强-粉红色的一生(演唱会),http://em.21dtv.com/songs/60017169.mkv +西卿-粉红色的腰带,http://em.21dtv.com/songs/60046547.mkv +林美莉-粉红色的腰带,http://em.21dtv.com/songs/60017168.mkv +郑秀文-粉红色的天使,http://em.21dtv.com/songs/60017166.mkv +孟庭苇-粉红色的凸床,http://em.21dtv.com/songs/60095518.mkv +陈升+万芳-粉红色的凸床,http://em.21dtv.com/songs/60017167.mkv +孟茜-粉红色的回忆,http://em.21dtv.com/songs/60082906.mkv +韩宝仪-粉红色的回忆,http://em.21dtv.com/songs/60017165.mkv +苗苗-风含情水含笑,http://em.21dtv.com/songs/60096478.mkv +卓依婷-风含情水含笑,http://em.21dtv.com/songs/60017301.mkv +杨钰莹-风含情水含笑,http://em.21dtv.com/songs/60017300.mkv +吴克群-法海你不懂爱,http://em.21dtv.com/songs/60094026.mkv +龚玥菲-法海你不懂爱,http://em.21dtv.com/songs/60075292.mkv +洛天依-法海你不懂爱,http://em.21dtv.com/songs/60071913.mkv +龚琳娜-法海你不懂爱,http://em.21dtv.com/songs/60071912.mkv +吕薇-凤凰落在瑞丽,http://em.21dtv.com/songs/60086548.mkv +超级未来大乐队-废话里的传说,http://em.21dtv.com/songs/60104462.mkv +赵鹏-风和花的爱情,http://em.21dtv.com/songs/60126241.mkv +左左右右-粉Happy,http://em.21dtv.com/songs/60114514.mkv +佚名-风干我的悲伤,http://em.21dtv.com/songs/60017295.mkv +S.I.N.G女团-飞过时间的海,http://em.21dtv.com/songs/60121306.mkv +唐禹哲-放过你自己吧,http://em.21dtv.com/songs/60016599.mkv +胡苏珊+张伟文-飞哥跌落坑渠,http://em.21dtv.com/songs/60093068.mkv +张卫健-飞哥跌落坑渠,http://em.21dtv.com/songs/60092573.mkv +苏珊+张伟文-飞哥跌落坑渠(演唱会),http://em.21dtv.com/songs/60016801.mkv +林忆莲-分分钟需要你,http://em.21dtv.com/songs/60121820.mkv +叶倩文+林子祥+林德信-分分钟需要你(演唱会),http://em.21dtv.com/songs/60075347.mkv +陈浩德-分分钟需要你(演唱会),http://em.21dtv.com/songs/60075346.mkv +林子祥-分分钟需要你(演唱会),http://em.21dtv.com/songs/60016998.mkv +佚名-伏尔加船夫曲,http://em.21dtv.com/songs/60017648.mkv +Killer Soap-飞到最高最远,http://em.21dtv.com/songs/60103792.mkv +蔡小虎-风的名雨的影,http://em.21dtv.com/songs/60017268.mkv +林奕匡-奋斗2015,http://em.21dtv.com/songs/60113692.mkv +蟑螂乐队-风车转花朵飞,http://em.21dtv.com/songs/60017229.mkv +曹方-风吹过下雨天(演唱会),http://em.21dtv.com/songs/60017250.mkv +李雨伦-风吹过的夏天,http://em.21dtv.com/songs/60017249.mkv +陈林波-风吹过的幸福,http://em.21dtv.com/songs/60131949.mkv +陈超-非常2007,http://em.21dtv.com/songs/60016909.mkv +李明花-放不下的思念,http://em.21dtv.com/songs/60016574.mkv +张立基-放不下的是你,http://em.21dtv.com/songs/60016573.mkv +子熙-放不下的守候,http://em.21dtv.com/songs/60085072.mkv +勾辉-放不下的情缘,http://em.21dtv.com/songs/60125234.mkv +插班生-放不下的活着,http://em.21dtv.com/songs/60121718.mkv +李建强-放不下的姑娘,http://em.21dtv.com/songs/60082885.mkv +蔡旻佑-翻不完的夏天,http://em.21dtv.com/songs/60016460.mkv +兰天-飞不过那片海,http://em.21dtv.com/songs/60062562.mkv +南方二重唱-飞不到你的天(无原唱),http://em.21dtv.com/songs/60095489.mkv +佚名-飞不到你的天(无原唱),http://em.21dtv.com/songs/60016788.mkv +黄小琥-分不到你的爱(演唱会),http://em.21dtv.com/songs/60016980.mkv +那英-放爱一条生路,http://em.21dtv.com/songs/60016563.mkv +萧亚轩-放爱情一个假,http://em.21dtv.com/songs/60071916.mkv +许慧欣-放爱情一个假,http://em.21dtv.com/songs/60016562.mkv +Nathan Sykes-Famous,http://em.21dtv.com/songs/60129972.mkv +Kanye West-Famous,http://em.21dtv.com/songs/60121272.mkv +刘平芳-分捱多一些爱(无原唱),http://em.21dtv.com/songs/60016975.mkv +ALAN-风に向かう花,http://em.21dtv.com/songs/60017217.mkv +May'n-ゼロ分のゼロ,http://em.21dtv.com/songs/60134757.mkv +飞轮海-二月三十号见,http://em.21dtv.com/songs/60016408.mkv +赖有天-二一零二分手,http://em.21dtv.com/songs/60075286.mkv +SS301-21GRAM,http://em.21dtv.com/songs/60119191.mkv +这位太太-而我眼已垂落,http://em.21dtv.com/songs/60088734.mkv +TEARSFORFEARS-everybody wants to rule the wo,http://em.21dtv.com/songs/60001557.mkv +吴雨霏-耳王十四一心,http://em.21dtv.com/songs/60016321.mkv +杨洪基-恩提巴克之歌,http://em.21dtv.com/songs/60016301.mkv +吴雨霏-二十世纪少年(演唱会),http://em.21dtv.com/songs/60016389.mkv +闫学晶-二十四节气歌,http://em.21dtv.com/songs/60070661.mkv +陈升-二十岁的眼泪(演唱会),http://em.21dtv.com/songs/60016397.mkv +邱泽-二十岁的界线,http://em.21dtv.com/songs/60016396.mkv +EXILE TRIBE-24karats tribe of gold,http://em.21dtv.com/songs/60062116.mkv +陈文浩-二四k的爱情,http://em.21dtv.com/songs/60070291.mkv +邰正宵+亦帆-23个情人节,http://em.21dtv.com/songs/60081691.mkv +亦帆+邰正宵-二三个情人节,http://em.21dtv.com/songs/60075282.mkv +水木年华-二十二条校规,http://em.21dtv.com/songs/60091567.mkv +吴品醇-二十多岁的人,http://em.21dtv.com/songs/60016383.mkv +赵继伟-二沙岛的夜晚,http://em.21dtv.com/songs/60063438.mkv +SKE48-Escape,http://em.21dtv.com/songs/60101825.mkv +许志安-二人行一日后(演唱会),http://em.21dtv.com/songs/60016371.mkv +苏永康+许志安-二人行一日后(演唱会),http://em.21dtv.com/songs/60016370.mkv +苏永康+许志安-二人行一日后,http://em.21dtv.com/songs/60016369.mkv +草蜢-二人迷失世界,http://em.21dtv.com/songs/60016372.mkv +孙淑媚-恩情没人能比,http://em.21dtv.com/songs/60016298.mkv +何本辰-e盘的爱过了,http://em.21dtv.com/songs/60071593.mkv +MEATLOAF-2 out of three aint bad,http://em.21dtv.com/songs/60000013.mkv +Drake-Energy,http://em.21dtv.com/songs/60113146.mkv +Watermat-Empire,http://em.21dtv.com/songs/60130007.mkv +Shakira-Empire,http://em.21dtv.com/songs/60099026.mkv +蓝调-201314,http://em.21dtv.com/songs/60096488.mkv +大支-二零一三一四,http://em.21dtv.com/songs/60075279.mkv +何洁-二零一三一四,http://em.21dtv.com/songs/60071908.mkv +张啸-二零一二来了,http://em.21dtv.com/songs/60061170.mkv +THE POLICE-every little thing she does is,http://em.21dtv.com/songs/60001546.mkv +张艾嘉+刘若英+李心洁-二零 三零 四零,http://em.21dtv.com/songs/60016340.mkv +张宇-20岁的眼泪,http://em.21dtv.com/songs/60099228.mkv +承利-20秒必须摇,http://em.21dtv.com/songs/60126933.mkv +吴宗宪-二零零一爱我,http://em.21dtv.com/songs/60016349.mkv +佚名-鄂伦春族小唱,http://em.21dtv.com/songs/60016286.mkv +加藤ミリヤ-20 CRY,http://em.21dtv.com/songs/60105652.mkv +ELI YOUNG BAND-even if it breaks your heart,http://em.21dtv.com/songs/60065582.mkv +BARBRA STREISAND+DON-enough is enough no more tears,http://em.21dtv.com/songs/60001511.mkv +高永泰-二货Mr·2,http://em.21dtv.com/songs/60106469.mkv +高佳-鄂尔多斯土地,http://em.21dtv.com/songs/60128614.mkv +琪琪格-鄂尔多斯恋曲,http://em.21dtv.com/songs/60069375.mkv +左成-二大爷的忧伤,http://em.21dtv.com/songs/60135169.mkv +刘忻-耳朵里的阳光,http://em.21dtv.com/songs/60069377.mkv +SNH48-二次元大冒险,http://em.21dtv.com/songs/60127668.mkv +Kisum-2 Beer,http://em.21dtv.com/songs/60123491.mkv +张啸-刀子嘴豆腐心,http://em.21dtv.com/songs/60014697.mkv +佚名-订做一个天堂,http://em.21dtv.com/songs/60015453.mkv +群星-订做一个天堂,http://em.21dtv.com/songs/60015452.mkv +波拉+王童-带着星星回家,http://em.21dtv.com/songs/60122950.mkv +刘轩蓁-独自欣赏美丽,http://em.21dtv.com/songs/60125223.mkv +叶启田+曾心梅-搭在胸坎的爱,http://em.21dtv.com/songs/60013708.mkv +笑天-带走我的思念,http://em.21dtv.com/songs/60014291.mkv +汤兰花-大自然的声音,http://em.21dtv.com/songs/60014239.mkv +谢宇文-等着你的电话,http://em.21dtv.com/songs/60015059.mkv +伍思凯-等着你爱着你,http://em.21dtv.com/songs/60087292.mkv +佚名-等着你爱着你,http://em.21dtv.com/songs/60015058.mkv +梁佑嘉-带自己去旅行,http://em.21dtv.com/songs/60075095.mkv +罗敏庄+杜雯惠-大丈夫好姊妹(演唱会),http://em.21dtv.com/songs/60075088.mkv +杨皓天-带着爱去旅行,http://em.21dtv.com/songs/60106009.mkv +丹增多吉-第一眼见到你,http://em.21dtv.com/songs/60112487.mkv +郑中基-第一眼的爱情,http://em.21dtv.com/songs/60015288.mkv +张智霖-多一些可以么,http://em.21dtv.com/songs/60016235.mkv +Angelababy-都要微笑好吗,http://em.21dtv.com/songs/60118243.mkv +ANGELABABY-都要微笑好吗,http://em.21dtv.com/songs/60075226.mkv +杨颖-都要微笑好吗,http://em.21dtv.com/songs/60066970.mkv +罗志祥-独一无二only you,http://em.21dtv.com/songs/60015819.mkv +孙耀威-但愿他珍惜你,http://em.21dtv.com/songs/60014439.mkv +常宽-第一天就爱你,http://em.21dtv.com/songs/60015282.mkv +R+B-多一天爱一点,http://em.21dtv.com/songs/60016234.mkv +游鸿明-第一千个昼夜,http://em.21dtv.com/songs/60015274.mkv +蓝雨-第一千滴眼泪,http://em.21dtv.com/songs/60088592.mkv +孙业鸿-钓鱼郎渡周末,http://em.21dtv.com/songs/60015382.mkv +谭维维-地狱就是天堂,http://em.21dtv.com/songs/60117242.mkv +王仁宏-戴眼镜的小孩,http://em.21dtv.com/songs/60014303.mkv +周笔畅-戴眼镜的女孩,http://em.21dtv.com/songs/60014302.mkv +XY兄弟-戴眼镜的将军,http://em.21dtv.com/songs/60130013.mkv +志玛-大眼睛的姑娘,http://em.21dtv.com/songs/60070618.mkv +迪克牛仔-第一号伤心人,http://em.21dtv.com/songs/60015266.mkv +陈小春-第1号女朋友,http://em.21dtv.com/songs/60088866.mkv +陈小春-第一号女朋友,http://em.21dtv.com/songs/60015265.mkv +那英-但愿好梦成真,http://em.21dtv.com/songs/60014419.mkv +李炜-当一回花木兰,http://em.21dtv.com/songs/60014648.mkv +陈奕迅-第一个雅皮士,http://em.21dtv.com/songs/60015263.mkv +韦礼安-第一个想到你,http://em.21dtv.com/songs/60121111.mkv +东来东往-多一个人陪伴,http://em.21dtv.com/songs/60101863.mkv +陈彦允-等一个人到老,http://em.21dtv.com/songs/60117337.mkv +草蜢-对一个人爱错,http://em.21dtv.com/songs/60016076.mkv +草蜢-对一个人爱错(演唱会),http://em.21dtv.com/songs/60016075.mkv +JLS-do you feel what i feel,http://em.21dtv.com/songs/60067872.mkv +TWINS-did you ever see a lassie,http://em.21dtv.com/songs/60001230.mkv +洪禄云+宋健-大院儿不了情,http://em.21dtv.com/songs/60120715.mkv +熊天平-大雨带我逃亡,http://em.21dtv.com/songs/60014214.mkv +TAE-多一点少一点,http://em.21dtv.com/songs/60090440.mkv +中国人-钓鱼岛的自白,http://em.21dtv.com/songs/60069356.mkv +周慧敏-多一点多一遍,http://em.21dtv.com/songs/60016230.mkv +TRY-第一道彩红光,http://em.21dtv.com/songs/60087226.mkv +TRY-第一道彩虹光,http://em.21dtv.com/songs/60015253.mkv +小琴儿-第一次遇见你,http://em.21dtv.com/songs/60061152.mkv +容祖儿-第一次我想醉,http://em.21dtv.com/songs/60015250.mkv +容祖儿-第一次我想醉(演唱会),http://em.21dtv.com/songs/60015249.mkv +阿宝-第一次见到你,http://em.21dtv.com/songs/60075186.mkv +金子嫣-对与错的选择(无原唱),http://em.21dtv.com/songs/60016080.mkv +王心凌-第一次爱的人,http://em.21dtv.com/songs/60015240.mkv +王心凌-第一次爱的人(演唱会),http://em.21dtv.com/songs/60015239.mkv +崔皓+田娃-打一辈子光棍,http://em.21dtv.com/songs/60097721.mkv +潘协庆-多想再问问你,http://em.21dtv.com/songs/60016213.mkv +彭子帅-多想再见到你,http://em.21dtv.com/songs/60133707.mkv +庄心妍-到现在还爱你,http://em.21dtv.com/songs/60132423.mkv +庄心妍-到现在还爱你,http://em.21dtv.com/songs/60131385.mkv +佚名-但信一切是缘,http://em.21dtv.com/songs/60014412.mkv +郝雨-大学生自习室,http://em.21dtv.com/songs/60070617.mkv +小刚-多想让你知道,http://em.21dtv.com/songs/60090982.mkv +周传雄-多想让你知道,http://em.21dtv.com/songs/60090828.mkv +王祖蓝-地星人都知道,http://em.21dtv.com/songs/60075174.mkv +京剧-大雪飘扑人面,http://em.21dtv.com/songs/60014189.mkv +蔡恒-灯熄了烟熄了,http://em.21dtv.com/songs/60014827.mkv +紫琴-丁香开过山岗,http://em.21dtv.com/songs/60070644.mkv +大小姐-大小姐进行曲,http://em.21dtv.com/songs/60097707.mkv +施文彬-大细汉差彼多,http://em.21dtv.com/songs/60082787.mkv +动力火车-多想给你一些,http://em.21dtv.com/songs/60090741.mkv +无印少年-当星光不伴我,http://em.21dtv.com/songs/60014639.mkv +徐歌阳-蝶,http://em.21dtv.com/songs/60129141.mkv +杨美娜-当,http://em.21dtv.com/songs/60127095.mkv +曾春年-多想把你留住,http://em.21dtv.com/songs/60082870.mkv +高进-多想把你抱住,http://em.21dtv.com/songs/60016208.mkv +王力宏-当我睁开眼睛,http://em.21dtv.com/songs/60091688.mkv +徐佳莹-当我找到了你,http://em.21dtv.com/songs/60129139.mkv +童唱-动物园真热闹,http://em.21dtv.com/songs/60015666.mkv +童安格-等我一起入梦,http://em.21dtv.com/songs/60015038.mkv +李亮超-多我一个不多,http://em.21dtv.com/songs/60081052.mkv +佚名-当我行过麦堆,http://em.21dtv.com/songs/60014606.mkv +黄宥杰-达文西的左手,http://em.21dtv.com/songs/60102968.mkv +ABBA-dance while the music still go,http://em.21dtv.com/songs/60001136.mkv +布仁巴雅尔-带我去草原吧,http://em.21dtv.com/songs/60099985.mkv +呼斯楞-带我去草原吧,http://em.21dtv.com/songs/60062456.mkv +黄思婷-等无你来爱阮,http://em.21dtv.com/songs/60015039.mkv +新疆民歌-当我们在一起,http://em.21dtv.com/songs/60089913.mkv +罗志祥-当我们在一块,http://em.21dtv.com/songs/60088436.mkv +罗志祥-当我们宅一块,http://em.21dtv.com/songs/60014621.mkv +梦之旅-当我们年轻时,http://em.21dtv.com/songs/60075118.mkv +佚名-当我们还年轻,http://em.21dtv.com/songs/60014614.mkv +陈奕迅-第五个现代化(演唱会),http://em.21dtv.com/songs/60015226.mkv +丁当-当我的好朋友,http://em.21dtv.com/songs/60120266.mkv +尚雯婕+徐子崴-待我长发及腰,http://em.21dtv.com/songs/60108459.mkv +张芸京-等我变了之后,http://em.21dtv.com/songs/60126900.mkv +佚名-didnt we almost have it all,http://em.21dtv.com/songs/60001234.mkv +常石磊-对他说我愿意,http://em.21dtv.com/songs/60066976.mkv +童唱-稻田里的火鸡,http://em.21dtv.com/songs/60014786.mkv +袁晨野-都塔尔玛利亚,http://em.21dtv.com/songs/60089469.mkv +B.A.D-冬天的热带鱼,http://em.21dtv.com/songs/60015601.mkv +佚名-独身仔的心声,http://em.21dtv.com/songs/60015809.mkv +蒋小涵-大山中的女孩,http://em.21dtv.com/songs/60089465.mkv +马天宇+王嘉+关晓彤-带上月光上路,http://em.21dtv.com/songs/60133107.mkv +唐率-打死我也不干,http://em.21dtv.com/songs/60013824.mkv +戴佩妮-第十五个耳洞,http://em.21dtv.com/songs/60091234.mkv +小山-大声说我爱你,http://em.21dtv.com/songs/60085019.mkv +吴丹妮-倒数三秒天晴,http://em.21dtv.com/songs/60070627.mkv +THE POLICE-dont stand so close to me,http://em.21dtv.com/songs/60001371.mkv +王爱华-都市秋天国语,http://em.21dtv.com/songs/60065942.mkv +林淑蓉-多少情多少泪,http://em.21dtv.com/songs/60016195.mkv +张惠妹-都什么时候了,http://em.21dtv.com/songs/60015688.mkv +吴娜-大森林的早晨,http://em.21dtv.com/songs/60103148.mkv +阎维文-大森林的早晨,http://em.21dtv.com/songs/60064100.mkv +CD.VOICE-都市恋爱故事,http://em.21dtv.com/songs/60015694.mkv +谢宜君+赵太祥-对时机,http://em.21dtv.com/songs/60063168.mkv +佟大为-大世界小作为,http://em.21dtv.com/songs/60014129.mkv +范逸臣-大世界小世界,http://em.21dtv.com/songs/60132839.mkv +关淑怡-当世界无玫瑰(演唱会),http://em.21dtv.com/songs/60014594.mkv +林颖-打神告庙-告庙,http://em.21dtv.com/songs/60013822.mkv +春妹-多沙谷喽麦鲁,http://em.21dtv.com/songs/60016185.mkv +黄西田+樱桃姐妹-都市的庄脚人,http://em.21dtv.com/songs/60015690.mkv +郑少秋-大时代小访客,http://em.21dtv.com/songs/60095105.mkv +张震岳-大声点听见吗,http://em.21dtv.com/songs/60091161.mkv +秦杨-淡水的庙仔边,http://em.21dtv.com/songs/60014453.mkv +庭竹-倒数的每一天,http://em.21dtv.com/songs/60014711.mkv +大哲-第三次说分手,http://em.21dtv.com/songs/60119385.mkv +朝伦巴图+乌日柴乎-大圣成吉思汗,http://em.21dtv.com/songs/60081995.mkv +陈升-打死不再恋爱,http://em.21dtv.com/songs/60093736.mkv +杨克强-点燃生命之火(无原唱),http://em.21dtv.com/songs/60015318.mkv +乃木坂46-大人への近道,http://em.21dtv.com/songs/60115665.mkv +张启靓-单人房双人床,http://em.21dtv.com/songs/60014360.mkv +莫文蔚-单人房双人床,http://em.21dtv.com/songs/60014359.mkv +孙淑媚-多情犹原伤心,http://em.21dtv.com/songs/60016178.mkv +吕方-但求雨季到来,http://em.21dtv.com/songs/60014408.mkv +德德玛-代钦塔拉草原,http://em.21dtv.com/songs/60091210.mkv +后弦-地球上的爱人,http://em.21dtv.com/songs/60065936.mkv +谭咏麟+孙楠-地球人醒来吧,http://em.21dtv.com/songs/60134236.mkv +佚名-多情人逃情网(无原唱),http://em.21dtv.com/songs/60016170.mkv +秀兰玛雅-多情人多情梦,http://em.21dtv.com/songs/60038849.mkv +袁惟仁-东区那条巷子,http://em.21dtv.com/songs/60105363.mkv +闲狐-踮起脚尖吻你,http://em.21dtv.com/songs/60131918.mkv +佚名-多情会有问题,http://em.21dtv.com/songs/60016163.mkv +马玉芬-多情会有问题(无原唱),http://em.21dtv.com/songs/60016162.mkv +郑志立-地球好危险啊,http://em.21dtv.com/songs/60126274.mkv +叶瑷菱-多情话伤心底,http://em.21dtv.com/songs/60016161.mkv +沉石磊-第七个情人节,http://em.21dtv.com/songs/60075183.mkv +乌兰托娅-多情的蒙古人,http://em.21dtv.com/songs/60068233.mkv +阿桑古卡-多情的康巴女,http://em.21dtv.com/songs/60016146.mkv +方怡萍-多情的阿娜答,http://em.21dtv.com/songs/60123999.mkv +方怡萍-多情的阿那答,http://em.21dtv.com/songs/60101361.mkv +十三狼-大秦兵马雄风,http://em.21dtv.com/songs/60106656.mkv +阿妹妹-dj请别放情歌,http://em.21dtv.com/songs/60001253.mkv +柴咲コウ-大切にするよ,http://em.21dtv.com/songs/60014101.mkv +蘑菇兄弟-大朋友小朋友,http://em.21dtv.com/songs/60104419.mkv +军嫂组合-等你在玉环湖(演),http://em.21dtv.com/songs/60099770.mkv +毛宁-等你在老地方,http://em.21dtv.com/songs/60015020.mkv +陈思思-等你在黄河口,http://em.21dtv.com/songs/60104557.mkv +赖伟锋-对你做过的事,http://em.21dtv.com/songs/60112277.mkv +天籁天-对你一网情深,http://em.21dtv.com/songs/60113378.mkv +彭丽嫒-当那一天来临,http://em.21dtv.com/songs/60133704.mkv +群星-当那一天来临,http://em.21dtv.com/songs/60132797.mkv +佚名-当那一天来临,http://em.21dtv.com/songs/60014542.mkv +陈小涛-当那一天来临,http://em.21dtv.com/songs/60014541.mkv +格格-带你一起飞舞,http://em.21dtv.com/songs/60014269.mkv +苏晴-等那一群白鸽,http://em.21dtv.com/songs/60082827.mkv +林依婷-等你一句抱歉,http://em.21dtv.com/songs/60065935.mkv +大厨-多年以后的你,http://em.21dtv.com/songs/60109249.mkv +GABRIELLE-dont need the sun to shine,http://em.21dtv.com/songs/60001353.mkv +钟舒漫-大女生小往事,http://em.21dtv.com/songs/60065920.mkv +二兵-大男人要坚强,http://em.21dtv.com/songs/60105557.mkv +林俊杰-大男人小女孩,http://em.21dtv.com/songs/60014078.mkv +丁晓松-等你融化的冰,http://em.21dtv.com/songs/60015008.mkv +刘品言+安钧璨-大男人大女人,http://em.21dtv.com/songs/60112535.mkv +李虎-大男人臭男人,http://em.21dtv.com/songs/60082782.mkv +叶振棠-大内群英续集,http://em.21dtv.com/songs/60014083.mkv +黑子-多年前的兄弟,http://em.21dtv.com/songs/60123412.mkv +佚名-当年青的时候,http://em.21dtv.com/songs/60014574.mkv +陈美凤+江宏恩-等你看望你疼(无原唱),http://em.21dtv.com/songs/60016763.mkv +李念-待你君临天下,http://em.21dtv.com/songs/60122857.mkv +任剑辉-帝女花之迎凤(戏曲),http://em.21dtv.com/songs/60092242.mkv +张伟文+胡美仪-帝女花之香夭,http://em.21dtv.com/songs/60092558.mkv +任剑辉+白雪仙-帝女花之相认(下),http://em.21dtv.com/songs/60015159.mkv +任剑辉+白雪仙-帝女花之香劫,http://em.21dtv.com/songs/60015160.mkv +群星-帝女花之树盟,http://em.21dtv.com/songs/60015158.mkv +任剑辉+白雪仙-帝女花之上表,http://em.21dtv.com/songs/60015157.mkv +刘惠鸣+将文端-帝女花-雪中燕,http://em.21dtv.com/songs/60015156.mkv +任剑辉+白雪仙-帝女花-雪中燕(无原唱),http://em.21dtv.com/songs/60015155.mkv +吴宗宪-当你回来找我,http://em.21dtv.com/songs/60014555.mkv +蔡小虎+龙千玉-对你的这段情,http://em.21dtv.com/songs/60016043.mkv +赵一颐-待你长发及腰,http://em.21dtv.com/songs/60128424.mkv +徐子崴-待你长发及腰,http://em.21dtv.com/songs/60119571.mkv +徐子崴-待你长发及腰,http://em.21dtv.com/songs/60105077.mkv +乐天乐团-待你长发及腰,http://em.21dtv.com/songs/60094802.mkv +张吉-待你长发及腰,http://em.21dtv.com/songs/60086516.mkv +金子嫣-对你不再有爱(无原唱),http://em.21dtv.com/songs/60016032.mkv +零点乐队-等你把梦做完(演唱会),http://em.21dtv.com/songs/60014967.mkv +孙协志-等你爱着别人,http://em.21dtv.com/songs/60014966.mkv +冷漠-等你2009,http://em.21dtv.com/songs/60014962.mkv +张伟进-读毛主席的书,http://em.21dtv.com/songs/60015834.mkv +佚名-读毛主席的书,http://em.21dtv.com/songs/60015833.mkv +汪东城+卢艾佳+吕兴阳-大明星,http://em.21dtv.com/songs/60104273.mkv +沈文程-大冒险家之歌,http://em.21dtv.com/songs/60014065.mkv +MOMO姐姐-东摸摸西摸摸,http://em.21dtv.com/songs/60015544.mkv +佚名-dont make me wait for love,http://em.21dtv.com/songs/60001351.mkv +张学友-多么的需要你,http://em.21dtv.com/songs/60016128.mkv +晃儿-盗墓笔记天真,http://em.21dtv.com/songs/60082816.mkv +王鹤铮-点亮智慧人生,http://em.21dtv.com/songs/60061154.mkv +刘一喆-对流星说爱你,http://em.21dtv.com/songs/60082864.mkv +谢怡安-丢了幸福的猪,http://em.21dtv.com/songs/60130757.mkv +姜玉阳-丢了幸福的猪,http://em.21dtv.com/songs/60015480.mkv +佚名-断了线的风筝,http://em.21dtv.com/songs/60015931.mkv +纪敏佳-点亮万家灯火,http://em.21dtv.com/songs/60121997.mkv +长春虫子-动了情伤了心,http://em.21dtv.com/songs/60015653.mkv +MC魏小然-动了情的痞子,http://em.21dtv.com/songs/60128687.mkv +刘刚-大脸猫爱吃鱼,http://em.21dtv.com/songs/60014061.mkv +林浩威-大脸猫爱吃鱼,http://em.21dtv.com/songs/60014060.mkv +PHIL COLLINS-dont let him steal your heart,http://em.21dtv.com/songs/60001336.mkv +金磊鑫-达兰鄂罗木河,http://em.21dtv.com/songs/60102831.mkv +许桂荧+牛马丁-地块凉地块坐,http://em.21dtv.com/songs/60015095.mkv +快乐2世代-打开翅膀 fly away,http://em.21dtv.com/songs/60013787.mkv +软硬天师-点解要大家笠,http://em.21dtv.com/songs/60015311.mkv +软硬天师-点解要大家笠(演唱会),http://em.21dtv.com/songs/60015310.mkv +郑锦昌-点解我钟意你,http://em.21dtv.com/songs/60015309.mkv +黄三元-大姐头甲兄弟,http://em.21dtv.com/songs/60014043.mkv +佚名-杜鹃山-无产者,http://em.21dtv.com/songs/60015871.mkv +凡人-杜鹃鸟的黄昏,http://em.21dtv.com/songs/60015867.mkv +卓依婷-大家来听故事,http://em.21dtv.com/songs/60014019.mkv +叶启田-大家来听故事,http://em.21dtv.com/songs/60014018.mkv +梅花三姐妹-大家来听故事,http://em.21dtv.com/songs/60014017.mkv +谢其国-大家来干一杯(无原唱),http://em.21dtv.com/songs/60014012.mkv +林忆莲-冬季来的女人(演唱会),http://em.21dtv.com/songs/60015575.mkv +USHER+PITBULL-DJ Got Us Falling In Love,http://em.21dtv.com/songs/60101226.mkv +黄翊-冬季等到夏季(无原唱),http://em.21dtv.com/songs/60015574.mkv +张振宇-第几次离开我,http://em.21dtv.com/songs/60015185.mkv +辛晓琪-第几次爱上你,http://em.21dtv.com/songs/60015184.mkv +东京小子-东京ドライブ,http://em.21dtv.com/songs/60117523.mkv +少女时代-Divine,http://em.21dtv.com/songs/60132399.mkv +伊能静-电话中拥抱你,http://em.21dtv.com/songs/60015346.mkv +Soler-毒后,http://em.21dtv.com/songs/60109890.mkv +谭咏麟+李克勤-大会堂演奏厅(演唱会),http://em.21dtv.com/songs/60013988.mkv +李克勤-大会堂演奏厅(演唱会),http://em.21dtv.com/songs/60013987.mkv +李克勤+容祖儿-大会堂演奏厅(演唱会),http://em.21dtv.com/songs/60013986.mkv +李克勤+黄凯芹-大会堂演奏厅(演唱会),http://em.21dtv.com/songs/60013985.mkv +童唱-大和尚小师父(无原唱),http://em.21dtv.com/songs/60013967.mkv +庞龙-大红袍志中情,http://em.21dtv.com/songs/60081956.mkv +迟云-大红袍志中情,http://em.21dtv.com/songs/60065917.mkv +罗时丰-断魂岭钟声泪,http://em.21dtv.com/songs/60075240.mkv +佚名-断魂岭钟声泪,http://em.21dtv.com/songs/60015921.mkv +阿雅-当哈利遇到honey,http://em.21dtv.com/songs/60014532.mkv +庄心妍-当蝴离开了蝶,http://em.21dtv.com/songs/60127949.mkv +徐良-电话里的秘密,http://em.21dtv.com/songs/60064136.mkv +蓝雨-大海2006,http://em.21dtv.com/songs/60013950.mkv +饶海明-都怪我太认真,http://em.21dtv.com/songs/60122272.mkv +罗熙杰-dj got us fallin in love,http://em.21dtv.com/songs/60082135.mkv +USER-dj got us fallinin love,http://em.21dtv.com/songs/60001252.mkv +何韵诗-对过去的我说,http://em.21dtv.com/songs/60082861.mkv +西狂-大哥你少喝点,http://em.21dtv.com/songs/60075055.mkv +沈昊飞-大哥你还好吗,http://em.21dtv.com/songs/60107864.mkv +阿权-打工累讨债难,http://em.21dtv.com/songs/60118128.mkv +雷光夏-第36个故事,http://em.21dtv.com/songs/60015163.mkv +李翊君-断跟的高跟鞋,http://em.21dtv.com/songs/60015920.mkv +佚名-当歌唱的时候,http://em.21dtv.com/songs/60014526.mkv +魏松-东方有一个梦,http://em.21dtv.com/songs/60099627.mkv +王霞-东方有一个梦,http://em.21dtv.com/songs/60015522.mkv +阎维文-东方为什么红(演唱会),http://em.21dtv.com/songs/60026860.mkv +张伊-达芬奇的密码,http://em.21dtv.com/songs/60091044.mkv +祖海-东方梦 赤子情,http://em.21dtv.com/songs/60015513.mkv +Years&Years-Desire,http://em.21dtv.com/songs/60108255.mkv +imagine dragons-demons,http://em.21dtv.com/songs/60098031.mkv +Tom Tyger-Delano,http://em.21dtv.com/songs/60123547.mkv +胡琳-Dejavu,http://em.21dtv.com/songs/60122043.mkv +ENERGY-第二次爱上你,http://em.21dtv.com/songs/60015168.mkv +回声乐团-等待着爱的人,http://em.21dtv.com/songs/60099895.mkv +佚名-点灯也无地找,http://em.21dtv.com/songs/60015298.mkv +凌志辉-等待也是种美,http://em.21dtv.com/songs/60014922.mkv +许嵩-等到烟火清凉,http://em.21dtv.com/songs/60104426.mkv +萌萌哒天团-帝都,http://em.21dtv.com/songs/60112183.mkv +佚名-顶大学生个肺,http://em.21dtv.com/songs/60015444.mkv +吴倩莲-等到心关了门,http://em.21dtv.com/songs/60014933.mkv +孟杨-等待幸福的羊,http://em.21dtv.com/songs/60075150.mkv +羽泉-大地,http://em.21dtv.com/songs/60075042.mkv +邓丽君-歹歹尪吃抹空,http://em.21dtv.com/songs/60014242.mkv +OWL CITY-dreams dont turn to dust,http://em.21dtv.com/songs/60073156.mkv +黎明-等到天昏地暗,http://em.21dtv.com/songs/60014930.mkv +阿吉仔-到底是为按怎,http://em.21dtv.com/songs/60061144.mkv +沈玮琦-到底是谁的错,http://em.21dtv.com/songs/60112825.mkv +K.WILL-大多数是爱情,http://em.21dtv.com/songs/60075046.mkv +S.H.E-到底算不算爱,http://em.21dtv.com/songs/60090431.mkv +佚名-到敌人后方去,http://em.21dtv.com/songs/60014734.mkv +佚名-到敌人后方去(无原唱),http://em.21dtv.com/songs/60014733.mkv +B.A.D-得到你的方法,http://em.21dtv.com/songs/60014796.mkv +胡彦斌-打动每一个心,http://em.21dtv.com/songs/60091897.mkv +陈杰洲-等待还是空白(无原唱),http://em.21dtv.com/songs/60014906.mkv +王牌-等到猴年马月,http://em.21dtv.com/songs/60135559.mkv +朱哲琴-丹顶鹤的故事,http://em.21dtv.com/songs/60014311.mkv +王紫蓓-到底G是5还是So,http://em.21dtv.com/songs/60101141.mkv +袁晨野-都达尔玛利亚,http://em.21dtv.com/songs/60015681.mkv +邱晨悦-等待2012,http://em.21dtv.com/songs/60075148.mkv +田毅-大大的一棵树,http://em.21dtv.com/songs/60117058.mkv +青果儿+康然-淡淡的久久的,http://em.21dtv.com/songs/60014448.mkv +京剧-大吊车真厉害,http://em.21dtv.com/songs/60013910.mkv +施易男-大稻埕的天光,http://em.21dtv.com/songs/60122785.mkv +王心如-到底爱怎么了,http://em.21dtv.com/songs/60014738.mkv +余天-到底爱我不爱,http://em.21dtv.com/songs/60014737.mkv +韩宝仪-到底爱我不爱,http://em.21dtv.com/songs/60014736.mkv +韩宝仪-到底爱不爱我,http://em.21dtv.com/songs/60089539.mkv +旺姆-大草原小情歌,http://em.21dtv.com/songs/60075041.mkv +韦唯-东窗月西窗月,http://em.21dtv.com/songs/60015501.mkv +赵传-当初应该爱你,http://em.21dtv.com/songs/60014521.mkv +大庆小芳-大草原的情歌,http://em.21dtv.com/songs/60099910.mkv +醉美-大草原的女儿,http://em.21dtv.com/songs/60116305.mkv +晶迪-大长腿的姑娘,http://em.21dtv.com/songs/60124022.mkv +李创-断肠人在天涯,http://em.21dtv.com/songs/60122843.mkv +佚名-稻草人的心情,http://em.21dtv.com/songs/60014784.mkv +言承旭-多出来的自由,http://em.21dtv.com/songs/60016112.mkv +童唱-稻草里的火鸡,http://em.21dtv.com/songs/60014779.mkv +刘玮-多彩的万绿湖,http://em.21dtv.com/songs/60090720.mkv +陈晓东-挡不住我的心,http://em.21dtv.com/songs/60014672.mkv +炎亚纶-挡不住的太阳,http://em.21dtv.com/songs/60105231.mkv +炎亚纶-挡不住的太阳[消伴],http://em.21dtv.com/songs/60100921.mkv +张驰-带不走的伤心,http://em.21dtv.com/songs/60075092.mkv +泳儿-挡不住的风情,http://em.21dtv.com/songs/60111235.mkv +潘春春-挡不住的风情,http://em.21dtv.com/songs/60085028.mkv +叶玉卿-挡不住的风情,http://em.21dtv.com/songs/60014670.mkv +叶玉卿-挡不住的风情(演唱会),http://em.21dtv.com/songs/60014669.mkv +容祖儿-挡不住的风情(演唱会),http://em.21dtv.com/songs/60014668.mkv +孙俪心-大布苏的笑声,http://em.21dtv.com/songs/60094050.mkv +单小源+赵彤-对不起谢谢你,http://em.21dtv.com/songs/60075251.mkv +林忆莲-对不起谢谢你,http://em.21dtv.com/songs/60016002.mkv +黎骏-对不起我自私,http://em.21dtv.com/songs/60089556.mkv +李雨伦-对不起我想你,http://em.21dtv.com/songs/60129252.mkv +李瑞丰-对不起我想你,http://em.21dtv.com/songs/60100152.mkv +黎明-对不起我爱谁,http://em.21dtv.com/songs/60015995.mkv +许伊-对不起我爱你,http://em.21dtv.com/songs/60114053.mkv +金贵晟-对不起我爱你,http://em.21dtv.com/songs/60082860.mkv +张真菲-对不起我爱你,http://em.21dtv.com/songs/60063427.mkv +萧潇-对不起我爱你,http://em.21dtv.com/songs/60015994.mkv +梁静茹-对不起我爱你,http://em.21dtv.com/songs/60015993.mkv +黎明-对不起我爱你,http://em.21dtv.com/songs/60015992.mkv +蔡淳佳-对不起我爱你,http://em.21dtv.com/songs/60015991.mkv +1983-对不起我爱你,http://em.21dtv.com/songs/60015990.mkv +心跳男孩-对不起我爱你(演唱会),http://em.21dtv.com/songs/60015989.mkv +黎明-对不起我爱你(演唱会),http://em.21dtv.com/songs/60015988.mkv +周慧敏-对不起亲爱的,http://em.21dtv.com/songs/60015985.mkv +佚名-对不起亲爱的,http://em.21dtv.com/songs/60015984.mkv +雨柔-对不起木良心,http://em.21dtv.com/songs/60095156.mkv +陈咏-对不起没关系,http://em.21dtv.com/songs/60104547.mkv +陈慧琳-对不起不是你,http://em.21dtv.com/songs/60015983.mkv +陈慧琳-对不起不是你(演唱会),http://em.21dtv.com/songs/60015982.mkv +郑晓填-对不起不爱你,http://em.21dtv.com/songs/60130792.mkv +张娜拉-对不起不爱你,http://em.21dtv.com/songs/60094099.mkv +代理仁-大不了就分手,http://em.21dtv.com/songs/60013857.mkv +BII-到不了的幸福,http://em.21dtv.com/songs/60014724.mkv +青山-丢不了的情意,http://em.21dtv.com/songs/60015466.mkv +昊珺-等不来的回信,http://em.21dtv.com/songs/60131474.mkv +萧敬腾-到不了的地方(故事情节),http://em.21dtv.com/songs/60101163.mkv +闻美茜-大不了不爱你,http://em.21dtv.com/songs/60080753.mkv +彭羚-躲不开的快活,http://em.21dtv.com/songs/60016250.mkv +容祖儿-等不及爱上你,http://em.21dtv.com/songs/60014875.mkv +波拉-德不孤必有邻,http://em.21dtv.com/songs/60064120.mkv +任明-冬不尔的琴声,http://em.21dtv.com/songs/60070649.mkv +轲然-动不动说分手,http://em.21dtv.com/songs/60061159.mkv +小曾-当兵的那一天,http://em.21dtv.com/songs/60014505.mkv +誓言-等不到你的爱,http://em.21dtv.com/songs/60134214.mkv +黄苏英-动不动就想你,http://em.21dtv.com/songs/60101205.mkv +陶辚竹-得不到的幸福,http://em.21dtv.com/songs/60061146.mkv +汪苏泷-得不到的温柔,http://em.21dtv.com/songs/60116106.mkv +申菲-得不到的爱人,http://em.21dtv.com/songs/60131692.mkv +杜星萤-得不到的爱情,http://em.21dtv.com/songs/60113650.mkv +酒吧伤心人-得不到的爱情,http://em.21dtv.com/songs/60107282.mkv +吴淑敏-得不到的爱情,http://em.21dtv.com/songs/60096047.mkv +莫旭秋-得不到的爱情(演唱会),http://em.21dtv.com/songs/60075134.mkv +尤雅-得不到的爱情,http://em.21dtv.com/songs/60014791.mkv +叶玉卿-得不到的爱情,http://em.21dtv.com/songs/60014790.mkv +梅艳芳-得不到的爱情(演唱会),http://em.21dtv.com/songs/60014789.mkv +克里木-大板城的姑娘,http://em.21dtv.com/songs/60087349.mkv +克里木-大坂城的姑娘,http://em.21dtv.com/songs/60013844.mkv +巴郎百川-大坂城的姑娘,http://em.21dtv.com/songs/60013843.mkv +王洛宾-达板城的姑娘,http://em.21dtv.com/songs/60013711.mkv +李双江-达坂城的姑娘,http://em.21dtv.com/songs/60013710.mkv +火风-夺标2000(演唱会),http://em.21dtv.com/songs/60016246.mkv +1983-等爱走了以后,http://em.21dtv.com/songs/60014864.mkv +赵薇-多爱自己一些,http://em.21dtv.com/songs/60016103.mkv +萧亚轩-多爱自己一下,http://em.21dtv.com/songs/60016102.mkv +佚名-当爱在的时候,http://em.21dtv.com/songs/60014499.mkv +姚黛玮-当爱在的时候,http://em.21dtv.com/songs/60014498.mkv +张学友-当爱已成习惯,http://em.21dtv.com/songs/60111867.mkv +古巨基-当爱已成往事,http://em.21dtv.com/songs/60134978.mkv +石头-当爱已成往事,http://em.21dtv.com/songs/60120826.mkv +许志安-当爱已成往事,http://em.21dtv.com/songs/60118906.mkv +谭维维+沙宝亮-当爱已成往事,http://em.21dtv.com/songs/60114073.mkv +李宗盛+梁静茹-当爱已成往事,http://em.21dtv.com/songs/60100136.mkv +于毅-当爱已成往事,http://em.21dtv.com/songs/60099732.mkv +丁于+范玮琪-当爱已成往事,http://em.21dtv.com/songs/60094792.mkv +胡彦斌-当爱已成往事,http://em.21dtv.com/songs/60086520.mkv +柯以敏+高明骏-当爱已成往事,http://em.21dtv.com/songs/60085027.mkv +曾一鸣-当爱已成往事,http://em.21dtv.com/songs/60080832.mkv +辛晓琪-当爱已成往事,http://em.21dtv.com/songs/60080016.mkv +王俊凯+王源-当爱已成往事,http://em.21dtv.com/songs/60075109.mkv +辛晓琪+周华健-当爱已成往事,http://em.21dtv.com/songs/60075108.mkv +张国荣-当爱已成往事,http://em.21dtv.com/songs/60014497.mkv +林忆莲+李宗盛-当爱已成往事,http://em.21dtv.com/songs/60014496.mkv +林忆莲+李宗盛-当爱已成往事(演唱会),http://em.21dtv.com/songs/60014495.mkv +蓝乐-当爱已成伤害,http://em.21dtv.com/songs/60094278.mkv +雨宗林-当爱已成负担,http://em.21dtv.com/songs/60065927.mkv +雨天-当爱已成负担,http://em.21dtv.com/songs/60064111.mkv +小刚-多爱我一秒钟,http://em.21dtv.com/songs/60089815.mkv +李圣杰-当爱是个玩笑,http://em.21dtv.com/songs/60091304.mkv +都市苍狼-党啊亲爱的党,http://em.21dtv.com/songs/60064116.mkv +Taemin-Danger,http://em.21dtv.com/songs/60104739.mkv +清水翔太-Damage,http://em.21dtv.com/songs/60119778.mkv +潘协庆-当爱来的时候(无原唱),http://em.21dtv.com/songs/60014489.mkv +吕珊-dream a little dream of me(演唱会),http://em.21dtv.com/songs/60073151.mkv +MICHAEL BUBLE-dream a little dream of me(演唱会),http://em.21dtv.com/songs/60073150.mkv +孙燕姿-dream a little dream of me,http://em.21dtv.com/songs/60001410.mkv +苏永康-dream a little dream of me,http://em.21dtv.com/songs/60001409.mkv +王中平-当爱还来得及,http://em.21dtv.com/songs/60014487.mkv +AAA-dream after dream~梦から醒めた梦~,http://em.21dtv.com/songs/60073152.mkv +覃浩-当爱到了尽头,http://em.21dtv.com/songs/60115374.mkv +DJ舞曲-嘟啊嘟啊嘟啊,http://em.21dtv.com/songs/50000152.mkv +李宗盛+郑惠玉-当爱擦身而过,http://em.21dtv.com/songs/60014485.mkv +张学友-当爱变成习惯,http://em.21dtv.com/songs/60014482.mkv +张学友-当爱变成习惯(演唱会),http://em.21dtv.com/songs/60014481.mkv +詹雅雯-车站最后一夜,http://em.21dtv.com/songs/60094901.mkv +俞胜恩-迟早要痛一场,http://em.21dtv.com/songs/60114395.mkv +群星-从这一刻开始,http://em.21dtv.com/songs/60116197.mkv +樊露花-藏在心里的爱,http://em.21dtv.com/songs/60130510.mkv +赵咏华-趁着心还能飞,http://em.21dtv.com/songs/60012539.mkv +钟明秋-车站,http://em.21dtv.com/songs/60108096.mkv +邓丽君-春在岁岁年年,http://em.21dtv.com/songs/60013373.mkv +枫桥-参战老兵之歌,http://em.21dtv.com/songs/60084952.mkv +软硬天师-叱咤劲歌金曲(演唱会),http://em.21dtv.com/songs/60012797.mkv +林海峰-叱咤劲歌金曲(演唱会),http://em.21dtv.com/songs/60012796.mkv +狄易达-乘着光影恋爱,http://em.21dtv.com/songs/60070591.mkv +陈雅森-乘着风的翅膀,http://em.21dtv.com/songs/60135946.mkv +陈雅森-乘着风的翅膀,http://em.21dtv.com/songs/60122250.mkv +大张伟-乘着爱的翅膀,http://em.21dtv.com/songs/60108407.mkv +苏勒亚琪琪格+蒙克-草原我的最爱,http://em.21dtv.com/songs/60084961.mkv +龙凤之约-草原我的最爱,http://em.21dtv.com/songs/60082697.mkv +范海荣-草原我的天堂,http://em.21dtv.com/songs/60071820.mkv +天骏-草原我的情人,http://em.21dtv.com/songs/60074864.mkv +乌兰托娅-草原我的情人,http://em.21dtv.com/songs/60070573.mkv +王伟-草原我的梦乡,http://em.21dtv.com/songs/60105241.mkv +阿斯根-草原我的阿妈,http://em.21dtv.com/songs/60012106.mkv +任子峰-穿越时空的爱,http://em.21dtv.com/songs/60013112.mkv +云飞-草原上的月亮,http://em.21dtv.com/songs/60101888.mkv +格格-草原上的月光,http://em.21dtv.com/songs/60074862.mkv +胡斌-草原上的姑娘,http://em.21dtv.com/songs/60070572.mkv +琪琪格-草原上的哥哥,http://em.21dtv.com/songs/60113892.mkv +乐桐-草原上唱情歌,http://em.21dtv.com/songs/60105551.mkv +乐桐-草原上唱情歌,http://em.21dtv.com/songs/60062574.mkv +儿歌-春雨朦朦地下,http://em.21dtv.com/songs/60089631.mkv +童唱-春雨蒙蒙地下,http://em.21dtv.com/songs/60013370.mkv +郑秀文-长夜 my love good night,http://em.21dtv.com/songs/60057617.mkv +叶倩文-长夜 my love good night,http://em.21dtv.com/songs/60057616.mkv +卢巧音-长夜 my love good night,http://em.21dtv.com/songs/60057615.mkv +叶倩文-长夜 my love good night(演唱会),http://em.21dtv.com/songs/60057614.mkv +卢巧音-长夜 my love good night(演唱会),http://em.21dtv.com/songs/60057613.mkv +AKIRA-苍き月满ちて,http://em.21dtv.com/songs/60111577.mkv +德德玛-草原绿色的歌,http://em.21dtv.com/songs/60012081.mkv +泽仁伍波+张梅-仓央嘉措情歌,http://em.21dtv.com/songs/60120707.mkv +根呷-仓央嘉措情歌,http://em.21dtv.com/songs/60088135.mkv +容中尔甲+尼玛拉毛-仓央嘉措情歌,http://em.21dtv.com/songs/60087695.mkv +李金枝-朝阳沟好地方,http://em.21dtv.com/songs/60012430.mkv +佚名-can you feel the love tonight,http://em.21dtv.com/songs/60000797.mkv +ELTON JOHN-can you feel the love tonight,http://em.21dtv.com/songs/60000796.mkv +网络歌手-超越2005,http://em.21dtv.com/songs/60088423.mkv +曹永廉-长夜动人灿烂,http://em.21dtv.com/songs/60057620.mkv +高旭-差一点丢了你,http://em.21dtv.com/songs/60121160.mkv +胡龄萌-从现在到以前,http://em.21dtv.com/songs/60123097.mkv +胡龄萌-从现在到以前,http://em.21dtv.com/songs/60118858.mkv +薛凯琪-丑小鸭天鹅湖,http://em.21dtv.com/songs/60090205.mkv +黄勇深-从相遇到分离,http://em.21dtv.com/songs/60086505.mkv +苏玮-长相思在敦煌,http://em.21dtv.com/songs/60108849.mkv +谢莉婷-痴心是阮的名,http://em.21dtv.com/songs/60070593.mkv +徐浩峻-诚信就是阳光,http://em.21dtv.com/songs/60109370.mkv +杜德伟-从新跟他一个,http://em.21dtv.com/songs/60013589.mkv +陌小聪-唱幸福给你听,http://em.21dtv.com/songs/60070581.mkv +杨千嬅-长信不如短讯,http://em.21dtv.com/songs/60057612.mkv +大庆小芳-长相爱贵相知,http://em.21dtv.com/songs/60065893.mkv +山野-从相爱到分开,http://em.21dtv.com/songs/60064083.mkv +冬炜-赐我一根红线,http://em.21dtv.com/songs/60013473.mkv +周柏豪-传闻,http://em.21dtv.com/songs/60114455.mkv +温兆伦-从未试过拥有,http://em.21dtv.com/songs/60013585.mkv +吴淑敏-唱袜煞的情歌,http://em.21dtv.com/songs/60012346.mkv +林展逸-出外人的心声,http://em.21dtv.com/songs/60012974.mkv +金玲-出外人的心声(无原唱),http://em.21dtv.com/songs/60012973.mkv +许诺-趁我们还年轻,http://em.21dtv.com/songs/60080324.mkv +小肥-宠物的毕业礼,http://em.21dtv.com/songs/60012881.mkv +大家唱合唱团-从汀州向长沙,http://em.21dtv.com/songs/60089225.mkv +龙飘飘-春天在车厢里,http://em.21dtv.com/songs/60013351.mkv +谢有才-茶叹,http://em.21dtv.com/songs/60108890.mkv +吴迪-触痛心触痛爱,http://em.21dtv.com/songs/60097800.mkv +EXAMPLE-changed the way you kiss me,http://em.21dtv.com/songs/60062021.mkv +沈菁-春天我对你说,http://em.21dtv.com/songs/60105213.mkv +何超仪-春天我不回家,http://em.21dtv.com/songs/60090608.mkv +尹相杰-赤条条来人间,http://em.21dtv.com/songs/60012822.mkv +M-GIRLS+沙家纬-春天是我们的,http://em.21dtv.com/songs/60013350.mkv +鸿飞-窗台上的思念,http://em.21dtv.com/songs/60109769.mkv +张亿亚+常颖-cant take my eyes off you,http://em.21dtv.com/songs/60084698.mkv +刘雅丽+晓华-cant take my eyes off you(演唱会),http://em.21dtv.com/songs/60082118.mkv +张惠妹-cant take my eyes off you,http://em.21dtv.com/songs/60000847.mkv +张菲-cant take my eyes off you,http://em.21dtv.com/songs/60000846.mkv +佚名-cant take my eyes off you,http://em.21dtv.com/songs/60000845.mkv +GLORIA GAYNOR-cant take my eyes off you,http://em.21dtv.com/songs/60000844.mkv +ENGELBERT HUNPERDINC-cant take my eyes off you,http://em.21dtv.com/songs/60000843.mkv +黎明-cant take my eyes off u,http://em.21dtv.com/songs/60000842.mkv +张曼-春天里的歌唱,http://em.21dtv.com/songs/60085347.mkv +王艺-春天里的春天,http://em.21dtv.com/songs/60107082.mkv +陈鹰-春天搁再来临(无原唱),http://em.21dtv.com/songs/60013333.mkv +李君-春天的那片云,http://em.21dtv.com/songs/60110270.mkv +黄凯芹+周慧敏-长痛不如短痛,http://em.21dtv.com/songs/60065892.mkv +汤潮-长痛不如短痛,http://em.21dtv.com/songs/60057603.mkv +海浪-长痛不如短痛,http://em.21dtv.com/songs/60057602.mkv +石欣卉-从台北到北京,http://em.21dtv.com/songs/60013570.mkv +云龙-传说中的爱情,http://em.21dtv.com/songs/60074983.mkv +蓝雨-传说中的爱情,http://em.21dtv.com/songs/60061111.mkv +陈瑞-错是你痛是我,http://em.21dtv.com/songs/60133049.mkv +小多-错是你痛是我,http://em.21dtv.com/songs/60063145.mkv +郑秀文-曾是你的宝贝,http://em.21dtv.com/songs/60012188.mkv +顾钊羽-城市的最东边,http://em.21dtv.com/songs/60130890.mkv +佚名-彩色的牵牛花,http://em.21dtv.com/songs/60065878.mkv +管维嘉-沉睡的木吉他,http://em.21dtv.com/songs/60012520.mkv +合唱-潮声唱响亚运,http://em.21dtv.com/songs/60012444.mkv +音乐走廊+歌一生-唱首爱你的歌,http://em.21dtv.com/songs/60130884.mkv +陈奕迅-超人的主题曲,http://em.21dtv.com/songs/60012400.mkv +陈奕迅-超人的主题曲(演唱会),http://em.21dtv.com/songs/60012399.mkv +杨臣刚-成人爱情游戏,http://em.21dtv.com/songs/60091413.mkv +谢雨欣-穿裙子的季节,http://em.21dtv.com/songs/60013103.mkv +江志丰-痴情有啥意义,http://em.21dtv.com/songs/60069307.mkv +林良欢-痴情人痴情梦,http://em.21dtv.com/songs/60012727.mkv +张玉姗-从情人变知己,http://em.21dtv.com/songs/60013568.mkv +古巨基-从前情人好吗,http://em.21dtv.com/songs/60013560.mkv +王建杰-痴情判我有罪(无原唱),http://em.21dtv.com/songs/60012725.mkv +苏平生-唱起来跳起来,http://em.21dtv.com/songs/60127331.mkv +龙凤之约-唱起来跳起来,http://em.21dtv.com/songs/60086487.mkv +王亚平-唱起来跳起来,http://em.21dtv.com/songs/60063041.mkv +阿玻-唱起来跳起来,http://em.21dtv.com/songs/60012338.mkv +任贤齐-出去就别回来,http://em.21dtv.com/songs/60012950.mkv +蔡小虎-痴情乎人心疼,http://em.21dtv.com/songs/60012712.mkv +罗时丰-长崎蝴蝶姑娘,http://em.21dtv.com/songs/60057596.mkv +良一-纯情的小百合 (さゆり),http://em.21dtv.com/songs/60084995.mkv +洋葱+睿儿-痴情的男子汉,http://em.21dtv.com/songs/60108686.mkv +额尔古纳乐队-唱起草原的歌,http://em.21dtv.com/songs/60074899.mkv +卓依婷+郑怡萍-擦皮鞋少年家,http://em.21dtv.com/songs/60053151.mkv +阿吉仔-查埔人的心情,http://em.21dtv.com/songs/60012230.mkv +Sechs Kies-Couple,http://em.21dtv.com/songs/60129984.mkv +Stella Jang-Colors,http://em.21dtv.com/songs/60133287.mkv +Miguel-Coffee,http://em.21dtv.com/songs/60113177.mkv +单小源-此昵称不存在,http://em.21dtv.com/songs/60075008.mkv +黄凯芹-从没这般相信(演唱会),http://em.21dtv.com/songs/60013548.mkv +童唱-炒米香要嫁尪,http://em.21dtv.com/songs/60012456.mkv +叶瑷菱-出卖想你的心,http://em.21dtv.com/songs/60012940.mkv +陈浩民+ 韩元元-城门,http://em.21dtv.com/songs/60105494.mkv +李碧华-查某人亲像水,http://em.21dtv.com/songs/60012228.mkv +江蕙-聪明人糊涂心,http://em.21dtv.com/songs/60013490.mkv +郑伊健-从没对我坦白,http://em.21dtv.com/songs/60013546.mkv +郑伊健-从没对我坦白(演唱会),http://em.21dtv.com/songs/60013545.mkv +胡彦斌-沉默的大多数,http://em.21dtv.com/songs/60082717.mkv +朱浩-出卖爱的情人,http://em.21dtv.com/songs/60125676.mkv +张学友-除了这些还有,http://em.21dtv.com/songs/60092592.mkv +陈牧耶-初恋这件大事,http://em.21dtv.com/songs/60130853.mkv +张雪-擦亮眼选对伴,http://em.21dtv.com/songs/60128005.mkv +沙宝亮+谭晶-晨露,http://em.21dtv.com/songs/60095208.mkv +Oh My Girl-Closer,http://em.21dtv.com/songs/60115618.mkv +高明骏-擦亮你的名字,http://em.21dtv.com/songs/60011857.mkv +黄品冠-从来没有想过,http://em.21dtv.com/songs/60013539.mkv +谭咏麟-从来麻烦自找,http://em.21dtv.com/songs/60013536.mkv +李素专-痴恋梦爱一生,http://em.21dtv.com/songs/60098487.mkv +龙梅子+老猫-赤裸裸的离开,http://em.21dtv.com/songs/60062713.mkv +郭峰-从来就没有路,http://em.21dtv.com/songs/60013535.mkv +全智允+Samuel Seo-Cliché,http://em.21dtv.com/songs/60134908.mkv +王识贤-初恋的女朋友(无原唱),http://em.21dtv.com/songs/60013011.mkv +崔大财+含蓄-财来到富来到,http://em.21dtv.com/songs/60132406.mkv +卓依婷-从来都不知道,http://em.21dtv.com/songs/60013533.mkv +陈升-从来不是主流,http://em.21dtv.com/songs/60117323.mkv +付笛声+任静-初恋般的味道(演唱会),http://em.21dtv.com/songs/60013005.mkv +星弟-乘客,http://em.21dtv.com/songs/60108534.mkv +黄致列-从开始到现在,http://em.21dtv.com/songs/60119075.mkv +刘辰希-从开始到现在,http://em.21dtv.com/songs/60103942.mkv +金贵晟-从开始到现在,http://em.21dtv.com/songs/60082759.mkv +张信哲-从开始到现在,http://em.21dtv.com/songs/60013528.mkv +陶晶-从开始到现在,http://em.21dtv.com/songs/60013527.mkv +骆容溶+骆爸-此刻让爱永恒,http://em.21dtv.com/songs/60081365.mkv +佚名-此刻你在何处,http://em.21dtv.com/songs/60013444.mkv +刘嘉亮-此刻你听好了,http://em.21dtv.com/songs/60128818.mkv +蔡小虎-吃苦当作吃补,http://em.21dtv.com/songs/60012660.mkv +谢霆锋-残酷爱情实录,http://em.21dtv.com/songs/60011990.mkv +上海彩虹室内合唱团-春节自救指南,http://em.21dtv.com/songs/60131131.mkv +潘赢-曾经最爱的她,http://em.21dtv.com/songs/60111249.mkv +涓子-曾经最爱的人,http://em.21dtv.com/songs/60079512.mkv +子枫-曾经最爱的人,http://em.21dtv.com/songs/60068986.mkv +KELLIE-曾经有一个梦,http://em.21dtv.com/songs/60067782.mkv +佚名-曾经有个女孩,http://em.21dtv.com/songs/60012182.mkv +蔡小虎-唱甲无人块听(无原唱),http://em.21dtv.com/songs/60095899.mkv +格格-成吉思汗舞曲,http://em.21dtv.com/songs/60130493.mkv +格格-成吉思汗舞曲(演唱会),http://em.21dtv.com/songs/60012562.mkv +罗中旭-唱假声的男人,http://em.21dtv.com/songs/60012334.mkv +成泉-曾经你给的吻,http://em.21dtv.com/songs/60115956.mkv +花鼓戏-蔡九哥莫逗耍,http://em.21dtv.com/songs/60090174.mkv +张倾城-曾经最爱的你,http://em.21dtv.com/songs/60012183.mkv +张智霖-曾经不知你好(演唱会),http://em.21dtv.com/songs/60012161.mkv +无名-曾经爱过的人,http://em.21dtv.com/songs/60089321.mkv +饶天亮-曾经爱过的人,http://em.21dtv.com/songs/60012156.mkv +李李-刺激2007,http://em.21dtv.com/songs/60013459.mkv +2MORO-刺激2006,http://em.21dtv.com/songs/60013458.mkv +赵英俊-刺激2005,http://em.21dtv.com/songs/60013457.mkv +佚名-come in out of the pain(无原唱),http://em.21dtv.com/songs/60000990.mkv +ENRIQUE IGLESIAS+WHITNEYHUSTON-could i have this kiss forever,http://em.21dtv.com/songs/60073076.mkv +WHITNEY HOUSTON+ENRI-could i have this kiss forever,http://em.21dtv.com/songs/60001044.mkv +AIMER-あなたに出会わなければ~夏雪冬花,http://em.21dtv.com/songs/60074215.mkv +林志美-彩虹下的约定,http://em.21dtv.com/songs/60011944.mkv +根呷-彩虹下的心愿,http://em.21dtv.com/songs/60100896.mkv +李全伟-彩虹是我的桥,http://em.21dtv.com/songs/60068151.mkv +刘玉婉-长湖水清又凉,http://em.21dtv.com/songs/60057578.mkv +秀兰玛雅-唱乎甲己来听,http://em.21dtv.com/songs/60127245.mkv +窦靖童-Chimes,http://em.21dtv.com/songs/60120840.mkv +华晨宇-春[HI歌],http://em.21dtv.com/songs/60106662.mkv +林明祯-Change,http://em.21dtv.com/songs/60135437.mkv +Rap Monster+Wale-Change,http://em.21dtv.com/songs/60133269.mkv +CHRISTINA AGUILERA-CHANGE,http://em.21dtv.com/songs/60129906.mkv +金泫雅-Change,http://em.21dtv.com/songs/60116311.mkv +Nick Jonas-Chains,http://em.21dtv.com/songs/60110784.mkv +金小曦-晨光中的记忆,http://em.21dtv.com/songs/60127507.mkv +佚名-吃果子拜树头,http://em.21dtv.com/songs/60012657.mkv +太阳部落-唱给未来的歌(HD),http://em.21dtv.com/songs/10012762.mkv +太阳部落-唱给未来的歌,http://em.21dtv.com/songs/60097783.mkv +黎明-从过去到永远,http://em.21dtv.com/songs/60013509.mkv +高夫-唱给朋友的歌,http://em.21dtv.com/songs/60129813.mkv +罗时丰-错过你我不要,http://em.21dtv.com/songs/60065913.mkv +雷子萱-错过你的缘分,http://em.21dtv.com/songs/60127579.mkv +刘冲-擦干你的泪水,http://em.21dtv.com/songs/60121423.mkv +王迪-擦干你的泪水,http://em.21dtv.com/songs/60113887.mkv +大雨点儿+一万个理由-擦干你的泪水,http://em.21dtv.com/songs/60086479.mkv +易帆-擦干你的泪水,http://em.21dtv.com/songs/60011850.mkv +深南大道-擦干你的泪水,http://em.21dtv.com/songs/60011849.mkv +刘芳-擦干你的泪水,http://em.21dtv.com/songs/60011848.mkv +刘冲-擦干你的泪水,http://em.21dtv.com/songs/60011847.mkv +于文华-春姑娘的歌声,http://em.21dtv.com/songs/60013255.mkv +张信哲+于台烟-错过你错过爱,http://em.21dtv.com/songs/60013674.mkv +刘一祯-唱给妈妈的歌,http://em.21dtv.com/songs/60074898.mkv +刘捷-唱给妈妈的歌,http://em.21dtv.com/songs/60064048.mkv +张火丁-春闺梦可怜负,http://em.21dtv.com/songs/60104136.mkv +南风-唱给老婆的歌,http://em.21dtv.com/songs/60110061.mkv +赵丽-唱给老公的歌,http://em.21dtv.com/songs/60110556.mkv +杨卿俪-穿过记忆的河,http://em.21dtv.com/songs/60108598.mkv +佚名-错过就是悲哀,http://em.21dtv.com/songs/60013672.mkv +郭凌霞-穿过海的声音,http://em.21dtv.com/songs/60066921.mkv +大厨-唱歌给妈妈听,http://em.21dtv.com/songs/60112600.mkv +TAYLOR DAYNE-cant get enough of your love,http://em.21dtv.com/songs/60000818.mkv +SMASH MOUTH-cant get enough of you baby,http://em.21dtv.com/songs/60000817.mkv +常红刚-错过的心上人,http://em.21dtv.com/songs/60109290.mkv +阿翼-错过的海岸线,http://em.21dtv.com/songs/60108112.mkv +吕继宏-唱给爸爸的歌,http://em.21dtv.com/songs/60012327.mkv +渡辺麻友-出逢いの续き,http://em.21dtv.com/songs/60113821.mkv +雷阳-从分手到现在,http://em.21dtv.com/songs/60099598.mkv +邱中欣-长大总要出嫁,http://em.21dtv.com/songs/60061096.mkv +陈雅森-唱到心里的歌,http://em.21dtv.com/songs/60121097.mkv +BY2-触动心触动爱,http://em.21dtv.com/songs/60066920.mkv +赵雷-成都,http://em.21dtv.com/songs/60127446.mkv +陈慧琳-柴斗文的女人,http://em.21dtv.com/songs/60012250.mkv +C ALLSTAR-从当天到今天(演唱会),http://em.21dtv.com/songs/60075012.mkv +陈宇骁+郭纯-长得帅死的快,http://em.21dtv.com/songs/60109696.mkv +来国庆-柴达木的情人,http://em.21dtv.com/songs/60062551.mkv +詹雅雯+詹雅云-船顶的欧里桑,http://em.21dtv.com/songs/60078171.mkv +群星-船顶的欧里桑,http://em.21dtv.com/songs/60013141.mkv +关亚楠-彻底把你忘记,http://em.21dtv.com/songs/60084981.mkv +孙艳-彻底把你忘记,http://em.21dtv.com/songs/60071834.mkv +爱戴-初次与你相遇,http://em.21dtv.com/songs/60012988.mkv +徐羽泽-长春我的家乡,http://em.21dtv.com/songs/60071825.mkv +关淑怡-cu cu rru cu cu paloma(演唱会),http://em.21dtv.com/songs/60001114.mkv +乐洋-匆匆那年的你,http://em.21dtv.com/songs/60120286.mkv +乐洋-匆匆那年的你,http://em.21dtv.com/songs/60114970.mkv +朴树-冲出你的窗口,http://em.21dtv.com/songs/60012843.mkv +张可可-从此没有从此,http://em.21dtv.com/songs/60013505.mkv +郑嘉颖-曾在梦中恋爱,http://em.21dtv.com/songs/60012191.mkv +爱戴-初次和你相遇,http://em.21dtv.com/songs/60091678.mkv +黄立纲-纯纯的男子汉,http://em.21dtv.com/songs/60013383.mkv +群星-初次尝到寂寞,http://em.21dtv.com/songs/60012987.mkv +陈雷-丑丑啊思相枝,http://em.21dtv.com/songs/60012899.mkv +马剑芬-曾厝垵的夏天,http://em.21dtv.com/songs/60100649.mkv +成云刚+郝耀霞-错不在你和我,http://em.21dtv.com/songs/60013644.mkv +那英-藏不住的快乐,http://em.21dtv.com/songs/60012044.mkv +土土-唱不赢周杰伦,http://em.21dtv.com/songs/60061097.mkv +佚名-come back when you grow up,http://em.21dtv.com/songs/60000986.mkv +陈慧琳-崇拜我羡慕你,http://em.21dtv.com/songs/60012873.mkv +伊风-唱不完的情歌(舞曲版),http://em.21dtv.com/songs/60074894.mkv +黄思婷-唱不完的情歌,http://em.21dtv.com/songs/60012305.mkv +杭娇-唱不完的情歌,http://em.21dtv.com/songs/60012304.mkv +信-唱不完的副歌,http://em.21dtv.com/songs/60132210.mkv +佚名-唱不完的爱情(无原唱),http://em.21dtv.com/songs/60012301.mkv +姜鹏-朝拜虔诚的心,http://em.21dtv.com/songs/60012422.mkv +林文龙-从不流泪的我,http://em.21dtv.com/songs/60013495.mkv +洛琴-春不来花不开,http://em.21dtv.com/songs/60013217.mkv +张岱-城堡里的公主,http://em.21dtv.com/songs/60104118.mkv +SQUARE+江若琳-茶杯里的爱情,http://em.21dtv.com/songs/60012201.mkv +阿兰-赤壁大江东去,http://em.21dtv.com/songs/60088829.mkv +瞿颖-触不到的恋人,http://em.21dtv.com/songs/60091792.mkv +王缇+区俊涛-触不到的恋人,http://em.21dtv.com/songs/60088312.mkv +陈慧琳-触不到的恋人,http://em.21dtv.com/songs/60013080.mkv +Halsey-Castle,http://em.21dtv.com/songs/60122382.mkv +谭轩辕-Carrie,http://em.21dtv.com/songs/60115405.mkv +张在仁-CARMIN,http://em.21dtv.com/songs/60135196.mkv +佚名-christina aguilera genie in a bottle,http://em.21dtv.com/songs/60000933.mkv +王伟-错爱2011,http://em.21dtv.com/songs/60064087.mkv +龙奔-错爱2010,http://em.21dtv.com/songs/60062709.mkv +杨东煜-不再遮遮掩掩,http://em.21dtv.com/songs/60094947.mkv +邱一晨-别再折磨自己,http://em.21dtv.com/songs/60108038.mkv +张静-不属于我的爱,http://em.21dtv.com/songs/60074810.mkv +齐霖-不再与你联系,http://em.21dtv.com/songs/60114921.mkv +苏永康-别张音量收细,http://em.21dtv.com/songs/60063987.mkv +赵咏华-别这样离开我,http://em.21dtv.com/songs/60010797.mkv +苏永康-别再想他好吗,http://em.21dtv.com/songs/60010776.mkv +脆乐团-编织星空的人,http://em.21dtv.com/songs/60134148.mkv +Crispy脆乐团-编织星空的人,http://em.21dtv.com/songs/60133188.mkv +梁静茹-别再为他流泪,http://em.21dtv.com/songs/60010770.mkv +郑福强-不再为你流泪,http://em.21dtv.com/songs/60074800.mkv +万心-不再为你流泪,http://em.21dtv.com/songs/60011752.mkv +龙飞-不再为你改变,http://em.21dtv.com/songs/60074799.mkv +梁雁翎-不再为你等待,http://em.21dtv.com/songs/60011751.mkv +阿福-别再为爱心碎,http://em.21dtv.com/songs/60010769.mkv +袁哲-不再为爱而退,http://em.21dtv.com/songs/60011750.mkv +黄品源-不知谁娶到你,http://em.21dtv.com/songs/60011799.mkv +钟明秋-不装饰你的梦,http://em.21dtv.com/songs/60126314.mkv +蔡国权-不装饰你的梦,http://em.21dtv.com/songs/60114031.mkv +罗桦-不装饰你的梦(演唱会),http://em.21dtv.com/songs/60074811.mkv +李丽霞-不装饰你的梦(演唱会),http://em.21dtv.com/songs/60068150.mkv +蔡国权-不装饰你的梦,http://em.21dtv.com/songs/60011804.mkv +王燕-别在伤口撒盐,http://em.21dtv.com/songs/60069260.mkv +张惠妹-别在伤口洒盐,http://em.21dtv.com/songs/60010788.mkv +张惠妹-别在伤口洒盐(演唱会),http://em.21dtv.com/songs/60010787.mkv +王袁-不做人造美女,http://em.21dtv.com/songs/60090092.mkv +团风依依-不再让你流泪,http://em.21dtv.com/songs/60101307.mkv +佚名-不再让你哭泣,http://em.21dtv.com/songs/60011745.mkv +任柏儒-不再让你孤单,http://em.21dtv.com/songs/60113246.mkv +任柏儒-不再让你孤单,http://em.21dtv.com/songs/60112497.mkv +高明骏-不再让你孤单,http://em.21dtv.com/songs/60084945.mkv +陈奕迅-不再让你孤单,http://em.21dtv.com/songs/60074798.mkv +水木年华-不再让你孤单,http://em.21dtv.com/songs/60070557.mkv +任贤齐-不再让你孤单(演唱会),http://em.21dtv.com/songs/60011744.mkv +陈升-不再让你孤单(演唱会),http://em.21dtv.com/songs/60011743.mkv +林依晨-百褶裙的夏天,http://em.21dtv.com/songs/60009800.mkv +周昊天-不再期待的爱,http://em.21dtv.com/songs/60121507.mkv +何弘轩-不做普通朋友(HD),http://em.21dtv.com/songs/10012704.mkv +修美娜-不做你的烟火,http://em.21dtv.com/songs/60104794.mkv +彭羚-抱着你的日子,http://em.21dtv.com/songs/60010078.mkv +冯曦妤-不做你的情人,http://em.21dtv.com/songs/60011817.mkv +S.H.E-不做你的朋友,http://em.21dtv.com/songs/60087210.mkv +S.H.E-不作你的朋友,http://em.21dtv.com/songs/60011814.mkv +佚名-抱着你的感觉,http://em.21dtv.com/songs/60010077.mkv +张煜枫-不做你的风筝,http://em.21dtv.com/songs/60112683.mkv +樊少华-不做你的备胎,http://em.21dtv.com/songs/60097713.mkv +冯皓-不做你的包袱,http://em.21dtv.com/songs/60011816.mkv +张信哲-不做你的爱人,http://em.21dtv.com/songs/60011815.mkv +谢津-不再迷信爱情,http://em.21dtv.com/songs/60089474.mkv +夏天Alex-不再联系续集,http://em.21dtv.com/songs/60103177.mkv +张栋梁-别再惊动爱情,http://em.21dtv.com/songs/60063365.mkv +山野-不作就不会死,http://em.21dtv.com/songs/60104982.mkv +李绍雄-不再忽冷忽热,http://em.21dtv.com/songs/60117821.mkv +佚名-别再怪我痴情,http://em.21dtv.com/songs/60010760.mkv +国巍-不做孤独尘埃,http://em.21dtv.com/songs/60108405.mkv +六哲-不知道为什么,http://em.21dtv.com/songs/60084947.mkv +张洁-不值得我去爱,http://em.21dtv.com/songs/60129097.mkv +陈淑桦-别走的太匆匆,http://em.21dtv.com/songs/60082635.mkv +潘秀琼-别走得那么快,http://em.21dtv.com/songs/60090054.mkv +金波-班长的红玫瑰,http://em.21dtv.com/songs/60009832.mkv +谢霆锋-不知道的意外,http://em.21dtv.com/songs/60093182.mkv +曾淑勤-不再等待天堂,http://em.21dtv.com/songs/60087960.mkv +雨柔+望海高歌-不再懂得爱你,http://em.21dtv.com/songs/60130869.mkv +童欣-不再痴心等你,http://em.21dtv.com/songs/60011729.mkv +佚名-别在窗前等我(无原唱),http://em.21dtv.com/songs/60010778.mkv +金城武-别再背着我哭,http://em.21dtv.com/songs/60010755.mkv +高峰-别做爱情傀儡,http://em.21dtv.com/songs/60068126.mkv +高峰-别做爱情傀儡(舞曲版),http://em.21dtv.com/songs/60068125.mkv +刘转亮+陈杨-不要再找借口,http://em.21dtv.com/songs/60070555.mkv +刘转亮-不要再找借口,http://em.21dtv.com/songs/60011649.mkv +任贤齐-不要再用冷漠,http://em.21dtv.com/songs/60090541.mkv +张伦辉-不要这样对我,http://em.21dtv.com/songs/60074795.mkv +祁隆-不要这样对我,http://em.21dtv.com/songs/60011660.mkv +李秀英-碧玉簪-三盖衣,http://em.21dtv.com/songs/60010442.mkv +陈坤-不要再随便了,http://em.21dtv.com/songs/60089517.mkv +佚名-不要再说爱我,http://em.21dtv.com/songs/60011644.mkv +动力火车-不要再说爱我,http://em.21dtv.com/songs/60011643.mkv +罗百吉+宝贝-不要在脸上留,http://em.21dtv.com/songs/60088443.mkv +SVS-不要再来烦我(无原唱),http://em.21dtv.com/songs/60011638.mkv +庄心妍-不要再缠着我,http://em.21dtv.com/songs/60130290.mkv +佚名-不要走不要走,http://em.21dtv.com/songs/60011665.mkv +潘美辰-不要走不要走(无原唱),http://em.21dtv.com/songs/60011664.mkv +蔡依林-不一样又怎样,http://em.21dtv.com/songs/60107190.mkv +庾澄庆-比永远还要久,http://em.21dtv.com/songs/60010390.mkv +李芊慧-播音员的心声,http://em.21dtv.com/songs/60010921.mkv +徐熙媛-不一样的天使,http://em.21dtv.com/songs/60091200.mkv +乱弹阿翔-不一样的朋友,http://em.21dtv.com/songs/60011678.mkv +何洁-不一样的地方,http://em.21dtv.com/songs/60011677.mkv +庄学忠-白云下的牧歌,http://em.21dtv.com/songs/60009760.mkv +游牧人组合-白云下的爱情,http://em.21dtv.com/songs/60113827.mkv +王琳玲-不要问为什么,http://em.21dtv.com/songs/60108712.mkv +毛阿敏-不要问为什么,http://em.21dtv.com/songs/60094565.mkv +连诗雅-不意外的意外,http://em.21dtv.com/songs/60135786.mkv +王韵壹-被遗忘的声音,http://em.21dtv.com/songs/60091748.mkv +萧敬腾-被遗忘的时光,http://em.21dtv.com/songs/60126128.mkv +刘宸启-被遗忘的时光,http://em.21dtv.com/songs/60118387.mkv +黄小琥-被遗忘的时光,http://em.21dtv.com/songs/60114912.mkv +萧敬腾+徐诣帆-被遗忘的时光,http://em.21dtv.com/songs/60112923.mkv +常石磊+萨顶顶-被遗忘的时光,http://em.21dtv.com/songs/60098317.mkv +超级女声+易慧-被遗忘的时光,http://em.21dtv.com/songs/60088717.mkv +林秀憬-被遗忘的时光,http://em.21dtv.com/songs/60082615.mkv +王韵壹-被遗忘的时光,http://em.21dtv.com/songs/60069251.mkv +蔡琴-被遗忘的时光,http://em.21dtv.com/songs/60010310.mkv +吕珊-被遗忘的时光(演唱会),http://em.21dtv.com/songs/60010308.mkv +蔡琴-被遗忘的时光(演唱会),http://em.21dtv.com/songs/60010307.mkv +雨宗林-被遗忘的角落,http://em.21dtv.com/songs/60065843.mkv +洪煜褀+SHELLY佳-被遗忘的角落,http://em.21dtv.com/songs/60063971.mkv +林翠萍-不要为爱哭泣,http://em.21dtv.com/songs/60091488.mkv +盖鸣晖+吴美英-拜月亭-抢伞下,http://em.21dtv.com/songs/60009828.mkv +盖鸣晖+吴美英-拜月亭-抢伞上,http://em.21dtv.com/songs/60009827.mkv +程科-不怨天不怨地,http://em.21dtv.com/songs/60011704.mkv +苏芮-不要说走就走,http://em.21dtv.com/songs/60011622.mkv +郭峰-不要说走就走,http://em.21dtv.com/songs/60011621.mkv +郭峰-不要说走就走(演唱会),http://em.21dtv.com/songs/60011620.mkv +伍佰-半夜十一点钟,http://em.21dtv.com/songs/60089121.mkv +北原山猫-北原山猫叫春,http://em.21dtv.com/songs/60010235.mkv +兰志刚-不要说离开我,http://em.21dtv.com/songs/60121396.mkv +群星-不要输给心痛,http://em.21dtv.com/songs/60011607.mkv +陈好-不用说出口的,http://em.21dtv.com/songs/60011698.mkv +石梅-不要让我知道,http://em.21dtv.com/songs/60066890.mkv +欧姐-不要让我上火,http://em.21dtv.com/songs/60132652.mkv +刘嘉亮-不要让我难过,http://em.21dtv.com/songs/60011603.mkv +郭富城-不要让你知道,http://em.21dtv.com/songs/60011602.mkv +高林生-不要让你知道,http://em.21dtv.com/songs/60011601.mkv +苏勒亚其其格-不要让爱塞车,http://em.21dtv.com/songs/60011600.mkv +明月微风-不要轻易说爱,http://em.21dtv.com/songs/60133746.mkv +白松-不要轻易说爱,http://em.21dtv.com/songs/60011597.mkv +正午-不要轻易放弃,http://em.21dtv.com/songs/60116081.mkv +黄莺莺-不要轻言别离,http://em.21dtv.com/songs/60070551.mkv +佚名-不要轻言别离,http://em.21dtv.com/songs/60011596.mkv +谭晶-把一切献给党,http://em.21dtv.com/songs/60111404.mkv +王宏伟-把一切献给党,http://em.21dtv.com/songs/60009605.mkv +邓丽欣-被遗弃的公主,http://em.21dtv.com/songs/60093239.mkv +曾路得+关心妍+张崇基+张崇德-不要怕只要爱,http://em.21dtv.com/songs/60082674.mkv +中国娃娃-不要你的礼物,http://em.21dtv.com/songs/60011584.mkv +晓枫-八月末的爱情,http://em.21dtv.com/songs/60009496.mkv +邓丽欣-不要离我太远,http://em.21dtv.com/songs/60011577.mkv +邓丽欣-不要离我太远(演唱会),http://em.21dtv.com/songs/60011576.mkv +新秀团队-被雨淋湿的爱,http://em.21dtv.com/songs/60074655.mkv +张强-白月亮红脸膛,http://em.21dtv.com/songs/60009754.mkv +苏妙玲-背影里的沉默,http://em.21dtv.com/songs/60062927.mkv +小阿鹏-白月亮白姐姐,http://em.21dtv.com/songs/60131367.mkv +谢霆锋-不要刻意改变,http://em.21dtv.com/songs/60011568.mkv +[Group] +groupName=十六万歌曲MV等 - 85 +郑秀文-不要惊动爱情,http://em.21dtv.com/songs/60011564.mkv +高皓正-不要惊动爱情,http://em.21dtv.com/songs/60011563.mkv +龙啸-不要嫁错男人,http://em.21dtv.com/songs/60074782.mkv +林董-不要见不要贱,http://em.21dtv.com/songs/60100219.mkv +朱雅-不要见不要贱,http://em.21dtv.com/songs/60069279.mkv +许慧欣-不要回来找我,http://em.21dtv.com/songs/60092056.mkv +佚名-不应该有的爱,http://em.21dtv.com/songs/60095387.mkv +糖糖-不应该相信他,http://em.21dtv.com/songs/60126015.mkv +蔡琴-把月光射下来,http://em.21dtv.com/songs/60009606.mkv +王绎龙-不要告诉妈妈,http://em.21dtv.com/songs/60065868.mkv +王绎龙-不要告诉妈妈(舞曲版),http://em.21dtv.com/songs/60061077.mkv +佚名-不要告诉别人(无原唱),http://em.21dtv.com/songs/60011554.mkv +董育君-不应该爱到你,http://em.21dtv.com/songs/60082678.mkv +林慧萍-不愿发生的事,http://em.21dtv.com/songs/60091477.mkv +佚名-不愿发生的事(无原唱),http://em.21dtv.com/songs/60011707.mkv +罗时丰-不愿放你的手(无原唱),http://em.21dtv.com/songs/60095851.mkv +梁子媛-Byebye,http://em.21dtv.com/songs/60104257.mkv +伍佰-半夜11点钟,http://em.21dtv.com/songs/60009905.mkv +童欣-不要痴心等你,http://em.21dtv.com/songs/60011530.mkv +亚东-八一城的姑娘,http://em.21dtv.com/songs/60090519.mkv +丁恩妃-不要变成离别,http://em.21dtv.com/songs/60122452.mkv +胡世明-不要把爱带走(演唱会),http://em.21dtv.com/songs/60071801.mkv +喊我的名字-不愿被爱出卖,http://em.21dtv.com/songs/60011705.mkv +张学友-不想这是场戏,http://em.21dtv.com/songs/60011490.mkv +黄征-把信邮进大海(演唱会),http://em.21dtv.com/songs/60009604.mkv +陈玉建-不想一个人睡,http://em.21dtv.com/songs/60134410.mkv +ME2-布鞋与高跟鞋(无原唱),http://em.21dtv.com/songs/60011831.mkv +王菲-不需要抱着你,http://em.21dtv.com/songs/60091735.mkv +国巍-比想象还要美,http://em.21dtv.com/songs/60062413.mkv +黄品冠-比想像更想你,http://em.21dtv.com/songs/60010385.mkv +郑源-不小心犯的错(演唱会),http://em.21dtv.com/songs/60066887.mkv +何杰-不小心爱上你,http://em.21dtv.com/songs/60011495.mkv +张国荣-奔向未来日子,http://em.21dtv.com/songs/60010321.mkv +王铁峰-不想为爱再哭,http://em.21dtv.com/songs/60011481.mkv +王菲-不相识的约会,http://em.21dtv.com/songs/60011443.mkv +孟庭苇-不消失的回忆,http://em.21dtv.com/songs/60081121.mkv +黄圣依-不许惹我生气(演唱会),http://em.21dtv.com/songs/60011508.mkv +毕夏-不想让你知道,http://em.21dtv.com/songs/60106053.mkv +周蕙-不想让你知道,http://em.21dtv.com/songs/60011471.mkv +徐真真-不想让你生气,http://em.21dtv.com/songs/60123977.mkv +汤非-别嫌妈妈唠叨,http://em.21dtv.com/songs/60120688.mkv +雨天-不想看见你哭,http://em.21dtv.com/songs/60011462.mkv +赵永-不想看到你哭,http://em.21dtv.com/songs/60068143.mkv +满文军-不想见到月光,http://em.21dtv.com/songs/60091636.mkv +六哲-不想回忆过去,http://em.21dtv.com/songs/60011461.mkv +王大文-不喜欢补习班,http://em.21dtv.com/songs/60114679.mkv +张栋梁-被幸福追着跑,http://em.21dtv.com/songs/60063364.mkv +孙茜-把幸福带回家,http://em.21dtv.com/songs/60074576.mkv +苏永康-不想独自快乐,http://em.21dtv.com/songs/60011455.mkv +苏永康-不想独自快乐(演唱会),http://em.21dtv.com/songs/60011454.mkv +拉毛王旭-把心丢在草原,http://em.21dtv.com/songs/60069235.mkv +益佳-不想吃鱼的猫,http://em.21dtv.com/songs/60120821.mkv +枫桥-不想错过的人,http://em.21dtv.com/songs/60108628.mkv +掠琼-不想不问不说,http://em.21dtv.com/songs/60120576.mkv +莫少聪-别笑别说别懂,http://em.21dtv.com/songs/60010744.mkv +张柏芝-不相爱的好处,http://em.21dtv.com/songs/60011442.mkv +周慧敏-别望着我离开,http://em.21dtv.com/songs/60010724.mkv +王力宏-不完整的旋律,http://em.21dtv.com/songs/60011432.mkv +佚名-不伪装的温柔(无原唱),http://em.21dtv.com/songs/60011435.mkv +郁可唯-不完整的存在,http://em.21dtv.com/songs/60131878.mkv +熊七梅-不忘又能怎样,http://em.21dtv.com/songs/60110363.mkv +赖嘉嘉-别问我在哪里,http://em.21dtv.com/songs/60010735.mkv +田震-把握每个瞬间,http://em.21dtv.com/songs/60091770.mkv +小右+莫小娘-被窝里的晚安,http://em.21dtv.com/songs/60127919.mkv +齐鹏-Baby 我还爱着你,http://em.21dtv.com/songs/60043368.mkv +陈淑芳-奔我多一集爱,http://em.21dtv.com/songs/60010317.mkv +郭子-把我的手握紧(无原唱),http://em.21dtv.com/songs/60009588.mkv +佚名-breaking up is hard to do,http://em.21dtv.com/songs/60000700.mkv +阿庆+叶钟晴-被偷走的爱恋,http://em.21dtv.com/songs/60084901.mkv +女声-before the next tear drop falls,http://em.21dtv.com/songs/60000537.mkv +男声-before the next tear drop falls,http://em.21dtv.com/songs/60000536.mkv +孙更俊-不同的日子,http://em.21dtv.com/songs/60070548.mkv +华峰-奔腾的大草原,http://em.21dtv.com/songs/60086456.mkv +孙燕姿-不是真的爱我,http://em.21dtv.com/songs/60011393.mkv +林晓培-闭上一只眼睛,http://em.21dtv.com/songs/60010431.mkv +孙耀威-不属于我的泪,http://em.21dtv.com/songs/60061083.mkv +程琳-不是一般的戏,http://em.21dtv.com/songs/60134046.mkv +K.WILL+政敏+昭宥-白色心动(white love),http://em.21dtv.com/songs/60074593.mkv +张利宽-不伤心的理由,http://em.21dtv.com/songs/60064006.mkv +佚名-不是我们的错(无原唱),http://em.21dtv.com/songs/60011388.mkv +皮晓艾-波斯湾的想念,http://em.21dtv.com/songs/60128257.mkv +王梓旭-不是我不在乎,http://em.21dtv.com/songs/60119818.mkv +亮剑-不是我不在乎,http://em.21dtv.com/songs/60074757.mkv +于童-不是我不小心,http://em.21dtv.com/songs/60090505.mkv +张镐哲-不是我不小心,http://em.21dtv.com/songs/60011385.mkv +张镐哲-不是我不小心(演唱会),http://em.21dtv.com/songs/60011384.mkv +王蓦骞-不是我不想爱,http://em.21dtv.com/songs/60115310.mkv +王源-不是我不想爱,http://em.21dtv.com/songs/60066886.mkv +梁静茹-不是我不明白,http://em.21dtv.com/songs/60107842.mkv +梁静茹+卢广仲-不是我不明白,http://em.21dtv.com/songs/60065865.mkv +佚名-不是我不明白,http://em.21dtv.com/songs/60011383.mkv +崔健-不是我不明白(演唱会),http://em.21dtv.com/songs/60011382.mkv +王羽泽-不是我不爱你,http://em.21dtv.com/songs/60011381.mkv +孟文豪-冰是睡着的水,http://em.21dtv.com/songs/60081124.mkv +云菲菲-冰是睡着的水,http://em.21dtv.com/songs/60010843.mkv +齐萧-不是说好了吗,http://em.21dtv.com/songs/60100683.mkv +郭顶-不是说好的吗,http://em.21dtv.com/songs/60011376.mkv +佚名-冰山上的雪莲,http://em.21dtv.com/songs/60010841.mkv +董文华-冰山上的雪莲,http://em.21dtv.com/songs/60010840.mkv +刀郎-冰山上的雪莲,http://em.21dtv.com/songs/60010839.mkv +萧凡-别说你还爱我,http://em.21dtv.com/songs/60112919.mkv +林依霖-不是你的猫咪,http://em.21dtv.com/songs/60011374.mkv +丁当-不是你的错乐,http://em.21dtv.com/songs/60087231.mkv +齐晨+曹权权-别睡了起来嗨,http://em.21dtv.com/songs/60129865.mkv +OUTSIDER-悲伤哭泣的鸟,http://em.21dtv.com/songs/60099691.mkv +双子-不适合说再见,http://em.21dtv.com/songs/60127796.mkv +张智霖-不说谎的男人(无原唱),http://em.21dtv.com/songs/60011400.mkv +李贵府-被伤过的男人,http://em.21dtv.com/songs/60010303.mkv +伊能静-悲伤的茱丽叶,http://em.21dtv.com/songs/60010141.mkv +罗文裕-悲伤的卓别麟,http://em.21dtv.com/songs/60097789.mkv +雷婷-悲伤的双曲线,http://em.21dtv.com/songs/60074641.mkv +刘立群-别说等了太久,http://em.21dtv.com/songs/60098151.mkv +范逸臣-不说出的温柔,http://em.21dtv.com/songs/60011398.mkv +孟庭苇-白纱窗的女孩,http://em.21dtv.com/songs/60009725.mkv +谭鹏飞-不是不想不愿,http://em.21dtv.com/songs/60065864.mkv +樊凡-不是不爱你了,http://em.21dtv.com/songs/60068139.mkv +金莎-白蛇爱情物语,http://em.21dtv.com/songs/60074595.mkv +林忆莲-不如重新开始,http://em.21dtv.com/songs/60011344.mkv +龙晓飞-别让自己委屈,http://em.21dtv.com/songs/60010671.mkv +秦影-不让眼泪说谎,http://em.21dtv.com/songs/60129452.mkv +火雅-不让眼泪去逃,http://em.21dtv.com/songs/60011316.mkv +林俊彦-不如意喝落去(无原唱),http://em.21dtv.com/songs/60095651.mkv +佚名-不如意喝落去(无原唱),http://em.21dtv.com/songs/60011340.mkv +邹宗翰-不忍心让你走,http://em.21dtv.com/songs/60071793.mkv +C ALLSTAR-别让小岛沉没(演唱会),http://em.21dtv.com/songs/60074692.mkv +田震-别让我再模糊,http://em.21dtv.com/songs/60091766.mkv +山风-别让我一个人,http://em.21dtv.com/songs/60113434.mkv +夏婉安+李俊杰-别让我忘不掉,http://em.21dtv.com/songs/60118473.mkv +音乐走廊+歌一生-别让我失去你,http://em.21dtv.com/songs/60134448.mkv +音乐走廊+歌一生-别让我失去你,http://em.21dtv.com/songs/60124698.mkv +音乐走廊-别让我失去你,http://em.21dtv.com/songs/60109734.mkv +许志安-别让我喝太多,http://em.21dtv.com/songs/60092055.mkv +童可可-别让我放不下,http://em.21dtv.com/songs/60126004.mkv +林姗-别让我等太久(无原唱),http://em.21dtv.com/songs/60010652.mkv +熊汝霖-BROTHER CAN YOU SPARE A DIME,http://em.21dtv.com/songs/60097699.mkv +Beat Win-Broken,http://em.21dtv.com/songs/60129890.mkv +老兵-别让老人孤独,http://em.21dtv.com/songs/60063980.mkv +方怡萍-别人的香水味,http://em.21dtv.com/songs/60074694.mkv +林忆莲-不如重新开始(演唱会),http://em.21dtv.com/songs/60061068.mkv +郭少杰-把钱赚美了吧,http://em.21dtv.com/songs/60113017.mkv +王祝海-别轻易说分手,http://em.21dtv.com/songs/60121934.mkv +王祝海-别轻易说分手,http://em.21dtv.com/songs/60113871.mkv +马兆骏-不起眼的吉他,http://em.21dtv.com/songs/60011300.mkv +陈慧娴-不清晰的恋爱(演唱会),http://em.21dtv.com/songs/60011302.mkv +郭静-别去问他好吗,http://em.21dtv.com/songs/60070535.mkv +刘嘉亮-白蔷薇的眼泪,http://em.21dtv.com/songs/60130114.mkv +刘嘉亮-白蔷薇的眼泪,http://em.21dtv.com/songs/60128819.mkv +王啸坤-被强迫的信仰,http://em.21dtv.com/songs/60074654.mkv +天骏-把情留在包头,http://em.21dtv.com/songs/60121550.mkv +赵鲁-把钱还给我吧,http://em.21dtv.com/songs/60009577.mkv +赵薇-表情动作语言,http://em.21dtv.com/songs/60088706.mkv +赵薇-表情 动作 语言,http://em.21dtv.com/songs/60010553.mkv +南方女生-把青春献给党,http://em.21dtv.com/songs/60009578.mkv +一绫-半屏月半清醒,http://em.21dtv.com/songs/60134832.mkv +BOYFRIEND-别碰我的女人,http://em.21dtv.com/songs/60061965.mkv +崎君-不抛弃不放弃,http://em.21dtv.com/songs/60011293.mkv +黎明-不怕你不爱我,http://em.21dtv.com/songs/60011292.mkv +张洪量-Bpmf宝拉,http://em.21dtv.com/songs/60117739.mkv +羽泉-奔跑+冷酷到底,http://em.21dtv.com/songs/60080040.mkv +虎妞-背叛2013,http://em.21dtv.com/songs/60070528.mkv +苏志燮-Boy Go,http://em.21dtv.com/songs/60102655.mkv +李斯丹妮-Boring,http://em.21dtv.com/songs/60111165.mkv +吴建豪-BOOGIE,http://em.21dtv.com/songs/60130183.mkv +吴建豪-BOOGIE,http://em.21dtv.com/songs/60128888.mkv +罗志祥-bet on it必杀技,http://em.21dtv.com/songs/60000561.mkv +谢莉婷-伴你一生一世,http://em.21dtv.com/songs/60009926.mkv +杨钰莹+潘劲东-伴你潇洒的走(演唱会),http://em.21dtv.com/songs/60009923.mkv +曹越-不能忘不能爱,http://em.21dtv.com/songs/60119625.mkv +姜育恒-不能停止的爱,http://em.21dtv.com/songs/60087637.mkv +叶瑗菱-不能停止爱你,http://em.21dtv.com/songs/60089719.mkv +佚名-不能停止爱你(无原唱),http://em.21dtv.com/songs/60011276.mkv +罗美玲-不能说走就走,http://em.21dtv.com/songs/60011274.mkv +李泽坚-不能厮守的爱,http://em.21dtv.com/songs/60074749.mkv +佚名-把你锁进梦里,http://em.21dtv.com/songs/60009575.mkv +徐威-被你伤害的人,http://em.21dtv.com/songs/60091189.mkv +HOPE-不能说的秘密,http://em.21dtv.com/songs/60082657.mkv +周杰伦-不能说的秘密,http://em.21dtv.com/songs/60011273.mkv +孙辉-把你捧在掌心,http://em.21dtv.com/songs/60116707.mkv +孙辉-把你捧在掌心,http://em.21dtv.com/songs/60009574.mkv +林圣杰-不能抛弃梦想,http://em.21dtv.com/songs/60108619.mkv +陆川+孙中亮-把你记在心里,http://em.21dtv.com/songs/60098845.mkv +翁立友-不能讲的秘密,http://em.21dtv.com/songs/60011263.mkv +孙燕姿-不能和你一起,http://em.21dtv.com/songs/60011261.mkv +赵薇-不能和你分手,http://em.21dtv.com/songs/60011260.mkv +赵薇-不能和你分手(演唱会),http://em.21dtv.com/songs/60011259.mkv +田宝-不能回家的人,http://em.21dtv.com/songs/60113897.mkv +郑嘉嘉-比你更像男人,http://em.21dtv.com/songs/60065846.mkv +李玟-不能给你温柔,http://em.21dtv.com/songs/60011257.mkv +程呈-把你放在心里,http://em.21dtv.com/songs/60113922.mkv +夏天Alex-不能飞的机票,http://em.21dtv.com/songs/60125339.mkv +陈瑞-把你藏在心里,http://em.21dtv.com/songs/60088906.mkv +谢军-把你藏在怀里,http://em.21dtv.com/songs/60009564.mkv +尚雯婕+付辛博-不能承受的爱,http://em.21dtv.com/songs/60011253.mkv +孙中亮-不能错过的人,http://em.21dtv.com/songs/60084931.mkv +方静-别拿爱当借口,http://em.21dtv.com/songs/60132495.mkv +鄢青-被埋葬的理想,http://em.21dtv.com/songs/60131898.mkv +杨洪基-白毛女-杨白劳,http://em.21dtv.com/songs/60009690.mkv +诸诸葛葛-爸妈你辛苦了,http://em.21dtv.com/songs/60116246.mkv +王爱奉+楼兰-爸妈您听我说,http://em.21dtv.com/songs/60106121.mkv +蔡依林-爆米花的味道(演唱会),http://em.21dtv.com/songs/60010094.mkv +李风持-白玫瑰的葬礼,http://em.21dtv.com/songs/60009693.mkv +黄海波-把命都给你了,http://em.21dtv.com/songs/60086441.mkv +麦子杰-B面的第三首歌,http://em.21dtv.com/songs/60097700.mkv +谭咏麟-半梦半醒之间,http://em.21dtv.com/songs/60009885.mkv +林隆璇-半梦半醒之间,http://em.21dtv.com/songs/60009884.mkv +高胜美-半梦半醒之间,http://em.21dtv.com/songs/60009883.mkv +雷安娜-别了忧郁johnny blue(演唱会),http://em.21dtv.com/songs/60010619.mkv +王中平-别离选择了我,http://em.21dtv.com/songs/60090079.mkv +佚名-别离选择了我(无原唱),http://em.21dtv.com/songs/60010628.mkv +依稀-玻璃鞋的对白,http://em.21dtv.com/songs/60010913.mkv +依稀-玻璃鞋的对白(舞曲版),http://em.21dtv.com/songs/60010912.mkv +邓丽君-别离,http://em.21dtv.com/songs/60103601.mkv +李玖哲-柏拉图式想念,http://em.21dtv.com/songs/60009803.mkv +陈绮贞-柏拉图式爱情,http://em.21dtv.com/songs/60097766.mkv +张镤心-柏拉图的忧伤,http://em.21dtv.com/songs/60068097.mkv +苏有朋-柏拉图的永恒,http://em.21dtv.com/songs/60088536.mkv +苏有朋+李芳-柏拉图的永恒,http://em.21dtv.com/songs/60009801.mkv +郑源-变了散了算了,http://em.21dtv.com/songs/60010499.mkv +白冰冰-布鲁斯的暗暝,http://em.21dtv.com/songs/60011827.mkv +大Ann细Ann-巴啦啦小魔仙,http://em.21dtv.com/songs/60102073.mkv +林俊杰-不流泪的机场,http://em.21dtv.com/songs/60011236.mkv +黑龙-别离开我好吗,http://em.21dtv.com/songs/60010627.mkv +草蜢-本来就是这样,http://em.21dtv.com/songs/60091958.mkv +张琳-八路军拉大栓,http://em.21dtv.com/songs/60009485.mkv +王洪迪-八零九零的歌,http://em.21dtv.com/songs/60009481.mkv +伍义-八零后相亲记,http://em.21dtv.com/songs/60063114.mkv +姜青涛-八零后我最牛,http://em.21dtv.com/songs/60061030.mkv +C ALLSTAR-八零后时代曲(演唱会),http://em.21dtv.com/songs/60074563.mkv +寿君超-八零后的无奈,http://em.21dtv.com/songs/60071762.mkv +孟飞-80后的我们,http://em.21dtv.com/songs/60128976.mkv +涛子-被离婚的女人,http://em.21dtv.com/songs/60114666.mkv +洪禄云+枫舞-碧兰村的姑娘,http://em.21dtv.com/songs/60097802.mkv +洪禄云+枫舞-碧蓝村的姑娘,http://em.21dtv.com/songs/60084904.mkv +张惠妹-不可知的未来,http://em.21dtv.com/songs/60091088.mkv +李锡勋-不可以相爱吗,http://em.21dtv.com/songs/60074737.mkv +林家小妹-不可以太想我,http://em.21dtv.com/songs/60011205.mkv +佚名-不可以不想你,http://em.21dtv.com/songs/60011203.mkv +何杰-不愧兄弟一场,http://em.21dtv.com/songs/60101252.mkv +成铭-白开水的情缘,http://em.21dtv.com/songs/60084878.mkv +苏晴-不客气三部曲,http://em.21dtv.com/songs/60074738.mkv +马健涛-不可能的可能,http://em.21dtv.com/songs/60011191.mkv +王力宏-不可能错过你,http://em.21dtv.com/songs/60011190.mkv +李宵云-不可能错地你,http://em.21dtv.com/songs/60011189.mkv +吴淑敏-比快乐搁卡真,http://em.21dtv.com/songs/60063973.mkv +孟庭苇-不快乐的爱人,http://em.21dtv.com/songs/60089240.mkv +彭羚-不可爱的时候,http://em.21dtv.com/songs/60092697.mkv +佚名-别假装舍不得,http://em.21dtv.com/songs/60010589.mkv +苏永康-别将音量收细,http://em.21dtv.com/songs/60063977.mkv +皓天-百家姓中华情,http://em.21dtv.com/songs/60009787.mkv +张栋梁-北极星的眼泪,http://em.21dtv.com/songs/60010185.mkv +孙露-别叫我忘了你,http://em.21dtv.com/songs/60100847.mkv +陈胜屿-别叫我忘了你,http://em.21dtv.com/songs/60074688.mkv +莫爱河往生-毕节我的家乡,http://em.21dtv.com/songs/60107971.mkv +蒋雪儿-不解释的结局,http://em.21dtv.com/songs/60131786.mkv +吉佑社-不解释的结局,http://em.21dtv.com/songs/60130170.mkv +张涵雅-BJ4不解释,http://em.21dtv.com/songs/60109319.mkv +储兰兰-北京人都在忙,http://em.21dtv.com/songs/60082607.mkv +炎亚纶-比寂寞更寂寞,http://em.21dtv.com/songs/60074664.mkv +杨坤-不见面的朋友,http://em.21dtv.com/songs/60132582.mkv +罗志祥-不具名的悲伤,http://em.21dtv.com/songs/60065860.mkv +佚名-八角楼的灯光,http://em.21dtv.com/songs/60009472.mkv +谭明-八角楼的灯光,http://em.21dtv.com/songs/60009471.mkv +S.H.E-不仅仅失去你,http://em.21dtv.com/songs/60090429.mkv +李志-被禁忌的游戏,http://em.21dtv.com/songs/60127022.mkv +李志-被禁忌的游戏(演唱会),http://em.21dtv.com/songs/60074652.mkv +外国男星-搬家的那一天,http://em.21dtv.com/songs/60009838.mkv +林二汶-北京道落雪了,http://em.21dtv.com/songs/60074647.mkv +雪莲三姐妹-北京的金山上,http://em.21dtv.com/songs/60111514.mkv +六弦+徐林-北京的金山上,http://em.21dtv.com/songs/60094814.mkv +胡斌-北京的金山上,http://em.21dtv.com/songs/60070526.mkv +周艳泓-北京的金山上,http://em.21dtv.com/songs/60010198.mkv +胡彦斌-北京的金山上,http://em.21dtv.com/songs/60010197.mkv +韩红-北京的金山上,http://em.21dtv.com/songs/60010196.mkv +才旦卓玛-北京的金山上,http://em.21dtv.com/songs/60010195.mkv +苏醒+鲁赛赛-北京City,http://em.21dtv.com/songs/60120884.mkv +KELLY JACKIE-北极村的回信,http://em.21dtv.com/songs/60010181.mkv +大哲-北京爱情故事,http://em.21dtv.com/songs/60074646.mkv +凡人+刘若英-北京爱情故事,http://em.21dtv.com/songs/60010192.mkv +许美静-边界1999,http://em.21dtv.com/songs/60010464.mkv +黄亚-北京2008,http://em.21dtv.com/songs/60010190.mkv +佚名-blame it on the bossa nova,http://em.21dtv.com/songs/60000605.mkv +SNH48-BINGO!,http://em.21dtv.com/songs/60124990.mkv +许千千-Bilili,http://em.21dtv.com/songs/60115395.mkv +RK金承熙-Bikini,http://em.21dtv.com/songs/60122413.mkv +汤钧禧-baby i cant stop loving you,http://em.21dtv.com/songs/60000397.mkv +李翊君-不会再有的错,http://em.21dtv.com/songs/60011165.mkv +祁隆-不会再让你哭,http://em.21dtv.com/songs/60011164.mkv +梁文音-薄荷与指甲剪,http://em.21dtv.com/songs/60009960.mkv +紫海-别回头让你走,http://em.21dtv.com/songs/60118833.mkv +李翊君-不回头的逃兵,http://em.21dtv.com/songs/60011150.mkv +DJ舞曲-冰河时代 1,http://em.21dtv.com/songs/50000146.mkv +林淑鹃-白花飘雪花飘,http://em.21dtv.com/songs/60091485.mkv +王爱华-白桦林的思念,http://em.21dtv.com/songs/60133997.mkv +刘纯如-被忽略的女人,http://em.21dtv.com/songs/60010295.mkv +丁丁-不会哭的女孩,http://em.21dtv.com/songs/60090453.mkv +斌斌-不回家的男人,http://em.21dtv.com/songs/60117771.mkv +谢勇强-不后悔认识你,http://em.21dtv.com/songs/60074729.mkv +孙悦-百合花的情思,http://em.21dtv.com/songs/60090902.mkv +黄玉荣+祝钒刚+明道-不后悔的决定,http://em.21dtv.com/songs/60011144.mkv +朱明+李雅轩-不后悔爱上你,http://em.21dtv.com/songs/60102314.mkv +那英-不后悔爱上你,http://em.21dtv.com/songs/60011143.mkv +莫智钦-不好不坏的爱,http://em.21dtv.com/songs/60100427.mkv +鼓鼓-不会爱就别爱,http://em.21dtv.com/songs/60136040.mkv +何龙雨-不该这样想你,http://em.21dtv.com/songs/60068130.mkv +司徒荣-不该这样对我,http://em.21dtv.com/songs/60011083.mkv +孙子涵-不该再是旧的,http://em.21dtv.com/songs/60116696.mkv +孙子涵-不该再是旧的,http://em.21dtv.com/songs/60107649.mkv +李圣杰-不顾一切的爱,http://em.21dtv.com/songs/60011118.mkv +陈淑萍-不顾一切爱你,http://em.21dtv.com/songs/60065858.mkv +易欣-不顾一切爱你,http://em.21dtv.com/songs/60011117.mkv +钟芹-不该相遇的人,http://em.21dtv.com/songs/60011082.mkv +陈黎明-不该相遇的人,http://em.21dtv.com/songs/60011081.mkv +李翊君-不甘心不放手,http://em.21dtv.com/songs/60091360.mkv +动力火车-不甘心不放手,http://em.21dtv.com/songs/60011097.mkv +含笑-不该问的问题,http://em.21dtv.com/songs/60011080.mkv +新宝岛康乐队-彼个上海姑娘,http://em.21dtv.com/songs/60061052.mkv +杨丞琳-不敢说的怀念,http://em.21dtv.com/songs/60086467.mkv +南宫苡彤-不过是场失恋,http://em.21dtv.com/songs/60103955.mkv +伍佰-不过是爱上妳,http://em.21dtv.com/songs/60087287.mkv +伍佰-不过是爱上你,http://em.21dtv.com/songs/60011135.mkv +闪亮三姐妹-不该让我哭泣,http://em.21dtv.com/songs/60011078.mkv +居山植-不该让你心碎,http://em.21dtv.com/songs/60011076.mkv +林可昕-不过期的守候,http://em.21dtv.com/songs/60124123.mkv +蒙面哥-不管你信不信,http://em.21dtv.com/songs/60102701.mkv +办桌阿杰+苏路-不甘你的目屎,http://em.21dtv.com/songs/60095477.mkv +刘亭婷-不管你爱不爱(演唱会),http://em.21dtv.com/songs/60069268.mkv +张冬玲-不该流的泪滴,http://em.21dtv.com/songs/60011073.mkv +刘冲-不该流的泪滴,http://em.21dtv.com/songs/60011072.mkv +远方-不该和你分手,http://em.21dtv.com/songs/60011070.mkv +杨柳+高歌-兵哥哥兵妹妹,http://em.21dtv.com/songs/60010866.mkv +张傲-把gen留住,http://em.21dtv.com/songs/60109299.mkv +李魏西-不孤单的孤单,http://em.21dtv.com/songs/60107806.mkv +冷酷-不该把你来爱,http://em.21dtv.com/songs/60116571.mkv +秋风-不该把你放弃,http://em.21dtv.com/songs/60074722.mkv +陈喆喆-不该把你放弃,http://em.21dtv.com/songs/60065857.mkv +丁丁与西西-邦戈邦戈栗子,http://em.21dtv.com/songs/60097728.mkv +杨星星-不该爱上的牛,http://em.21dtv.com/songs/60133841.mkv +温博-边防战士之歌,http://em.21dtv.com/songs/60082622.mkv +代理仁-报复,http://em.21dtv.com/songs/60093969.mkv +华羽-不分手的女人,http://em.21dtv.com/songs/60121461.mkv +阿庆+熊文利-不分手的恋人,http://em.21dtv.com/songs/60097712.mkv +王瑞淇-不分手的恋爱,http://em.21dtv.com/songs/60124267.mkv +汪苏泷-不分手的恋爱,http://em.21dtv.com/songs/60011057.mkv +祁哲西-不分手的爱情,http://em.21dtv.com/songs/60074721.mkv +巫启贤-不负人却负我,http://em.21dtv.com/songs/60011060.mkv +巫启贤-不负人不负我,http://em.21dtv.com/songs/60011059.mkv +胡斌-北方的天空下,http://em.21dtv.com/songs/60117136.mkv +刀郎-北方的天空下,http://em.21dtv.com/songs/60010161.mkv +天生兄妹-百分百好男人,http://em.21dtv.com/songs/60132335.mkv +天生兄妹-百分百好男人,http://em.21dtv.com/songs/60130223.mkv +Ry X-Berlin,http://em.21dtv.com/songs/60124983.mkv +Axwell Shapov-Belong,http://em.21dtv.com/songs/60129885.mkv +姜木-贝尔加湖的鸟,http://em.21dtv.com/songs/60074650.mkv +WILLIE NELSON-blue eyes crying in the rain,http://em.21dtv.com/songs/60000625.mkv +大军-别带走我的爱,http://em.21dtv.com/songs/60074684.mkv +张暄祺-不懂也不想懂,http://em.21dtv.com/songs/60066877.mkv +覃沐曦-别丢下我不管,http://em.21dtv.com/songs/60114048.mkv +白小白-不懂事的小孩,http://em.21dtv.com/songs/60135590.mkv +田心蕾-彼得潘症候群,http://em.21dtv.com/songs/60116172.mkv +渠怀龙-不懂你的温柔,http://em.21dtv.com/songs/60074720.mkv +雨天-不懂浪漫的人,http://em.21dtv.com/songs/60088928.mkv +图桠格-巴丹吉林放歌(演唱会),http://em.21dtv.com/songs/60071765.mkv +殷秀梅-北大荒我的家,http://em.21dtv.com/songs/60082602.mkv +彭丽媛-北大荒人的歌,http://em.21dtv.com/songs/60086453.mkv +陈俊华-北大荒人的歌,http://em.21dtv.com/songs/60084891.mkv +侯旭-北大荒人的歌(演唱会),http://em.21dtv.com/songs/60010154.mkv +曹雅雯-彼段感情了后,http://em.21dtv.com/songs/60130386.mkv +佚名-baby dont get hooked on me,http://em.21dtv.com/songs/60000393.mkv +萧风-贝多芬的悲伤,http://em.21dtv.com/songs/60088575.mkv +郑毅-贝多芬的悲伤,http://em.21dtv.com/songs/60082612.mkv +洪煜祺+SHELLY佳-不淡定的恋爱,http://em.21dtv.com/songs/60070541.mkv +The Black Skirts-比等待的 更,http://em.21dtv.com/songs/60122434.mkv +小肥+吴雨霏-逼得宠物太紧,http://em.21dtv.com/songs/60010361.mkv +钟镇涛-背对背面对面,http://em.21dtv.com/songs/60093377.mkv +海哲明-别对爱情失望,http://em.21dtv.com/songs/60066867.mkv +任贤齐-不单爱你这些,http://em.21dtv.com/songs/60087275.mkv +乔洋-不存在的永远,http://em.21dtv.com/songs/60011031.mkv +吴青峰-不存在的情人,http://em.21dtv.com/songs/60087570.mkv +林俊杰-不存在的情人,http://em.21dtv.com/songs/60063995.mkv +邓紫棋-不存在的存在,http://em.21dtv.com/songs/60094709.mkv +新街口组合-不抽烟不喝酒,http://em.21dtv.com/songs/60100075.mkv +章子怡-把春天迎进来,http://em.21dtv.com/songs/60088377.mkv +詹雅雯-甭刺探我的心,http://em.21dtv.com/songs/60010348.mkv +群星-把春天抱满怀,http://em.21dtv.com/songs/60074572.mkv +刘芳菲+程晨+牛欣欣+刘姝辰-把春天抱满怀,http://em.21dtv.com/songs/60074571.mkv +冯晓泉-半城山半城水,http://em.21dtv.com/songs/60009852.mkv +黄小琥-不承认还有伤,http://em.21dtv.com/songs/60103728.mkv +沈建宏-半成年的告白,http://em.21dtv.com/songs/60088211.mkv +万妮达-不潮不用花钱,http://em.21dtv.com/songs/60126566.mkv +李玟-不潮不用花钱,http://em.21dtv.com/songs/60120638.mkv +林俊杰-不潮不用花钱,http://em.21dtv.com/songs/60011026.mkv +周诗雅-不必再说爱我,http://em.21dtv.com/songs/60082641.mkv +刘惜君-不必再怀念我,http://em.21dtv.com/songs/60011007.mkv +刘克泉-别把幸福遗忘,http://em.21dtv.com/songs/60065849.mkv +关淑怡-不绑线的风筝,http://em.21dtv.com/songs/60010990.mkv +孙耀威-不必为我留下,http://em.21dtv.com/songs/60011004.mkv +高因-抱抱我亲爱的,http://em.21dtv.com/songs/60066857.mkv +阿吉仔-别把我当傻子,http://em.21dtv.com/songs/60104523.mkv +佚名-爸爸是行船人(无原唱),http://em.21dtv.com/songs/60009632.mkv +谭咏麟-不必伸手给我,http://em.21dtv.com/songs/60010999.mkv +夏天alex-比悲伤更悲伤,http://em.21dtv.com/songs/60111792.mkv +刘大成-宝贝你在哪里,http://em.21dtv.com/songs/60069240.mkv +王羽-宝贝你辛苦了,http://em.21dtv.com/songs/60131668.mkv +居山植-爸爸你回来吧,http://em.21dtv.com/songs/60119459.mkv +王亚洲-八百里大秦川,http://em.21dtv.com/songs/60104298.mkv +黄文海-宝贝 嫁给我吧,http://em.21dtv.com/songs/60096568.mkv +马响-宝贝绝不放弃,http://em.21dtv.com/songs/60082589.mkv +佚名-步步高新春到,http://em.21dtv.com/songs/60011841.mkv +李霄云-爸爸给的坚强,http://em.21dtv.com/songs/60091378.mkv +大芭-爸爸的西装社,http://em.21dtv.com/songs/60009618.mkv +安康-不必承受的痛,http://em.21dtv.com/songs/60066876.mkv +刘博宽-8+8=8,http://em.21dtv.com/songs/60096199.mkv +183CLUB-bomba bomba爱情炸弹,http://em.21dtv.com/songs/60000643.mkv +张道儒-把爱这样放开,http://em.21dtv.com/songs/60097739.mkv +张靓颖-Bazaar,http://em.21dtv.com/songs/60135244.mkv +张靓颖-BAZAAR,http://em.21dtv.com/songs/60102245.mkv +陆锋-不爱也无所谓,http://em.21dtv.com/songs/60010980.mkv +金果-被爱遗忘的人,http://em.21dtv.com/songs/60082613.mkv +姚天成-不爱我告诉我,http://em.21dtv.com/songs/60070540.mkv +鸿飞-不爱我放了我,http://em.21dtv.com/songs/60122296.mkv +许茹芸-不爱我放了我,http://em.21dtv.com/songs/60010974.mkv +吴宗宪-不爱我的画面,http://em.21dtv.com/songs/60010973.mkv +塔宏伟-不按套路去爱,http://em.21dtv.com/songs/60074714.mkv +黑龙-被爱射伤的鸟,http://em.21dtv.com/songs/60132024.mkv +东来东往-被爱伤害以后,http://em.21dtv.com/songs/60010284.mkv +林峰-被爱伤过的人,http://em.21dtv.com/songs/60010282.mkv +贡维特-被爱融化的雪,http://em.21dtv.com/songs/60010281.mkv +马云龙-被爱抛弃的人,http://em.21dtv.com/songs/60010280.mkv +MP魔幻力量-不按牌理出牌,http://em.21dtv.com/songs/60061062.mkv +宋季英-别爱那么轻易,http://em.21dtv.com/songs/60135125.mkv +贺一航-被爱暖过的人,http://em.21dtv.com/songs/60131826.mkv +龚柯允-不爱你的时侯,http://em.21dtv.com/songs/60126508.mkv +高胜美-把爱埋在心窝,http://em.21dtv.com/songs/60009539.mkv +邓丽君-把爱埋在心窝,http://em.21dtv.com/songs/60009538.mkv +蔡晓-把爱留在昨天,http://em.21dtv.com/songs/60105343.mkv +琼雪卓玛-把爱留在西藏,http://em.21dtv.com/songs/60062840.mkv +金迈-不爱了就分手,http://em.21dtv.com/songs/60010965.mkv +张津涤-不爱了不哭了,http://em.21dtv.com/songs/60102229.mkv +牵手-不爱就散了吧,http://em.21dtv.com/songs/60010959.mkv +胡艾莲-不爱就请离开,http://em.21dtv.com/songs/60116210.mkv +邱敬婷-把爱交给时间,http://em.21dtv.com/songs/60129657.mkv +何龙雨-把爱交给时间,http://em.21dtv.com/songs/60074567.mkv +梁川宇-不爱就放手吧,http://em.21dtv.com/songs/60130500.mkv +羽泉-把爱放在心中,http://em.21dtv.com/songs/60009535.mkv +童安格-把爱放在心里,http://em.21dtv.com/songs/60009534.mkv +孔媛-把爱当成天意,http://em.21dtv.com/songs/60128956.mkv +中国好声音第二季-bad boy(丁克森),http://em.21dtv.com/songs/60081454.mkv +思豪-把爱藏在心里,http://em.21dtv.com/songs/60086440.mkv +刘佳成-被爱冲昏了头,http://em.21dtv.com/songs/60111714.mkv +门丽-被爱垂钓的鱼,http://em.21dtv.com/songs/60118117.mkv +梦琪-Baby I love you love you,http://em.21dtv.com/songs/60080630.mkv +W+INDS.-変わりゆく空,http://em.21dtv.com/songs/60010534.mkv +向蕙玲-爱住治恨内底,http://em.21dtv.com/songs/60009264.mkv +萧泽伦-爱着一个朋友,http://em.21dtv.com/songs/60070509.mkv +高安-爱着远方的你,http://em.21dtv.com/songs/60074542.mkv +李玟-爱再也不回来,http://em.21dtv.com/songs/60009149.mkv +阿木-爱在现实面前,http://em.21dtv.com/songs/60009206.mkv +琪琪格-爱在微笑之前,http://em.21dtv.com/songs/60065821.mkv +佚名-爱在无限天闯,http://em.21dtv.com/songs/60009199.mkv +张睿+刘惜君-爱在天长地久,http://em.21dtv.com/songs/60080845.mkv +庞龙-爱着她想着她,http://em.21dtv.com/songs/60009237.mkv +庞龙-爱着她想着她(演唱会),http://em.21dtv.com/songs/60009236.mkv +梁朝伟-爱只是一个字,http://em.21dtv.com/songs/60009258.mkv +宅男塾-阿宅失眠日记,http://em.21dtv.com/songs/60006842.mkv +央金兰泽-爱在思金拉措,http://em.21dtv.com/songs/60068083.mkv +阿宝+张冬玲-爱只说给你听,http://em.21dtv.com/songs/60113038.mkv +张津涤+张冬玲-爱只说给你听,http://em.21dtv.com/songs/60100028.mkv +雨天-爱只是个传说,http://em.21dtv.com/songs/60009257.mkv +张也-爱在人间天堂(演唱会),http://em.21dtv.com/songs/60082558.mkv +伯阳-爱在秋天失落,http://em.21dtv.com/songs/60009184.mkv +郑宇文-爱在千里之外,http://em.21dtv.com/songs/60009183.mkv +胡力-爱在千里之外,http://em.21dtv.com/songs/60009182.mkv +金波-爱在你我之间,http://em.21dtv.com/songs/60121041.mkv +孙耀威-爱自那天遇上,http://em.21dtv.com/songs/60009276.mkv +段千寻-爱总那么伤人,http://em.21dtv.com/songs/60009282.mkv +彭丽嘉+祁隆-爱着你宠着你,http://em.21dtv.com/songs/60120551.mkv +彭丽嘉-爱着你宠着你,http://em.21dtv.com/songs/60120550.mkv +祁隆-爱着你宠着你,http://em.21dtv.com/songs/60096421.mkv +任中军-爱着你才怕你,http://em.21dtv.com/songs/60065824.mkv +许志安-爱着你绑着你,http://em.21dtv.com/songs/60009233.mkv +孙艳-爱怎么能放手,http://em.21dtv.com/songs/60009220.mkv +不辣-爱 这么简单,http://em.21dtv.com/songs/60128730.mkv +雷龙-爱走了心碎了,http://em.21dtv.com/songs/60123350.mkv +孙露-爱走了心碎了,http://em.21dtv.com/songs/60115841.mkv +长春虫子-爱走了心碎了,http://em.21dtv.com/songs/60107294.mkv +孙露-爱走了心碎了,http://em.21dtv.com/songs/60074546.mkv +长春虫子-爱走了心碎了,http://em.21dtv.com/songs/60009289.mkv +雷龙-爱走了心碎了,http://em.21dtv.com/songs/60009288.mkv +柔情-爱之恋未了情,http://em.21dtv.com/songs/60074539.mkv +谢世超-爱走了我累了,http://em.21dtv.com/songs/60084869.mkv +珍美儿-爱走了累累累,http://em.21dtv.com/songs/60009287.mkv +昊龙-爱走了别回头,http://em.21dtv.com/songs/60100082.mkv +林心如+汤钧禧-爱再靠近一点,http://em.21dtv.com/songs/60009148.mkv +张婧-爱自己最快乐,http://em.21dtv.com/songs/60009275.mkv +陈译贤-爱这个小东西(无原唱),http://em.21dtv.com/songs/60094450.mkv +李潮-啊中国的土地,http://em.21dtv.com/songs/60133808.mkv +钟丽燕-啊中国的土地(演唱会),http://em.21dtv.com/songs/60074287.mkv +殷秀梅-啊中国的土地,http://em.21dtv.com/songs/60063836.mkv +望海高歌+雨柔-爱在2017,http://em.21dtv.com/songs/60132512.mkv +雨柔+望海高歌-爱在2017,http://em.21dtv.com/songs/60131969.mkv +徐一鸣-爱在2012,http://em.21dtv.com/songs/60063939.mkv +熊七梅-爱注定要分手,http://em.21dtv.com/songs/60098614.mkv +阿吉仔+吴仪君-爱着打死无退,http://em.21dtv.com/songs/60061029.mkv +齐旦布-爱在达古冰山,http://em.21dtv.com/songs/60123415.mkv +西子+戴千秋-爱真的不简单,http://em.21dtv.com/songs/60112227.mkv +张星唯-爱在城市的雨,http://em.21dtv.com/songs/60130322.mkv +吴青峰-爱在波西米亚,http://em.21dtv.com/songs/60115756.mkv +唐飞-爱着别人的尪,http://em.21dtv.com/songs/60082560.mkv +戴佩妮-爱在被爱之前,http://em.21dtv.com/songs/60063940.mkv +林依轮-爱在2000,http://em.21dtv.com/songs/60009151.mkv +钱红-爱一直在心里,http://em.21dtv.com/songs/60134365.mkv +赵华-爱越真伤越的,http://em.21dtv.com/songs/60104453.mkv +笑天-爱要怎么弥补,http://em.21dtv.com/songs/60009020.mkv +六哲-爱要怎么放开,http://em.21dtv.com/songs/60061021.mkv +许飞-爱要怎么分割,http://em.21dtv.com/songs/60063212.mkv +佚名-爱要走的时候(无原唱),http://em.21dtv.com/songs/60009026.mkv +黎冰冰-爱一直都存在,http://em.21dtv.com/songs/60107383.mkv +文章-爱永远少一秒(无原唱),http://em.21dtv.com/songs/60009097.mkv +蓝心湄-哎呀呀啦啦啦,http://em.21dtv.com/songs/60006878.mkv +伍浩哲-爱有心无八字,http://em.21dtv.com/songs/60068081.mkv +李荣浩-哎呀,http://em.21dtv.com/songs/60107798.mkv +王力宏-爱因为在心中,http://em.21dtv.com/songs/60009092.mkv +秦影-爱已无法回首,http://em.21dtv.com/songs/60100349.mkv +罗文聪-爱一天疼一冬,http://em.21dtv.com/songs/60009062.mkv +晨熙-爱一天伤一天,http://em.21dtv.com/songs/60129184.mkv +陈晓东-爱一天多一天,http://em.21dtv.com/songs/60009061.mkv +韦雄-爱与痛的边缘,http://em.21dtv.com/songs/60063058.mkv +林峰-爱与痛的边缘(演唱会),http://em.21dtv.com/songs/60062639.mkv +周慧敏-爱与痛的边缘(演唱会),http://em.21dtv.com/songs/60009135.mkv +王菲-爱与痛的边缘(演唱会),http://em.21dtv.com/songs/60009134.mkv +邓丽欣-爱与痛的边缘(演唱会),http://em.21dtv.com/songs/60009133.mkv +陈慧琳-爱与痛的边缘(演唱会),http://em.21dtv.com/songs/60009132.mkv +心锁-爱越深越孤独,http://em.21dtv.com/songs/60099254.mkv +王馨平-爱一生也不够,http://em.21dtv.com/songs/60009060.mkv +施文彬-爱愈深心愈凝,http://em.21dtv.com/songs/60009142.mkv +谢莉婷-爱愈深心愈寒,http://em.21dtv.com/songs/60123180.mkv +谢莉婷-爱愈深心愈寒,http://em.21dtv.com/songs/60117234.mkv +袁小迪-爱愈深伤愈重,http://em.21dtv.com/songs/60009141.mkv +张牧阅-爱越深伤越深,http://em.21dtv.com/songs/60069222.mkv +吴家程+郑品蓁-爱愈深情愈重,http://em.21dtv.com/songs/60102030.mkv +旺福-爱有什么不好,http://em.21dtv.com/songs/60087928.mkv +阿译-A译Show,http://em.21dtv.com/songs/60114183.mkv +朱业晋-爱已随风而去,http://em.21dtv.com/songs/60009082.mkv +阿任-爱要说到做到,http://em.21dtv.com/songs/60099566.mkv +黎骏-爱一生都不够,http://em.21dtv.com/songs/60009059.mkv +佚名-爱要让他知道,http://em.21dtv.com/songs/60009015.mkv +罗小虎-爱要全心全意,http://em.21dtv.com/songs/60084858.mkv +魏晨-爱有你才完整,http://em.21dtv.com/songs/60069221.mkv +阿乐-爱有你才存在,http://em.21dtv.com/songs/60009107.mkv +杨千桦-爱有枯荣时节,http://em.21dtv.com/songs/60092843.mkv +罗小虎-爱已刻骨铭心,http://em.21dtv.com/songs/60080658.mkv +洪荣宏-爱一斤值外多,http://em.21dtv.com/songs/60009057.mkv +罗时丰-爱一斤值多少,http://em.21dtv.com/songs/60074524.mkv +徐元雄-爱依旧情难随,http://em.21dtv.com/songs/60105073.mkv +黄嘉千-爱已经满满的,http://em.21dtv.com/songs/60009078.mkv +刘爽-爱一回醉一回,http://em.21dtv.com/songs/60110887.mkv +吴淑敏-爱一回痛一回,http://em.21dtv.com/songs/60061023.mkv +易欣-爱一回伤一回,http://em.21dtv.com/songs/60061022.mkv +游鸿明-爱一回伤一回,http://em.21dtv.com/songs/60009056.mkv +翁立友-爱一回伤一回,http://em.21dtv.com/songs/60009055.mkv +吕方-爱一回伤一回,http://em.21dtv.com/songs/60009054.mkv +游鸿明-爱一回伤一回(演唱会),http://em.21dtv.com/songs/60009053.mkv +朱志容-阿依河的早晨,http://em.21dtv.com/songs/60084785.mkv +奚丽娜-阿依河的月亮,http://em.21dtv.com/songs/60084784.mkv +容祖儿-爱一个上一课,http://em.21dtv.com/songs/60009052.mkv +何耀珊-爱一个人没错,http://em.21dtv.com/songs/60009047.mkv +林心如-爱一个人快乐,http://em.21dtv.com/songs/60009046.mkv +周澎-爱一个人好难,http://em.21dtv.com/songs/60111773.mkv +君子-爱一个人好难,http://em.21dtv.com/songs/60105689.mkv +卓依婷-爱一个人好难,http://em.21dtv.com/songs/60009043.mkv +苏永康-爱一个人好难,http://em.21dtv.com/songs/60009042.mkv +林姗-爱易放情难收(无原唱),http://em.21dtv.com/songs/60095659.mkv +佚名-爱易放情难收(无原唱),http://em.21dtv.com/songs/60009089.mkv +罗文聪-爱越多恨越多,http://em.21dtv.com/songs/60009146.mkv +李丽珍-爱于错误年代,http://em.21dtv.com/songs/60092774.mkv +张兵-爱一次痛一世,http://em.21dtv.com/songs/60009033.mkv +晨熙-爱一场痛一场,http://em.21dtv.com/songs/60119621.mkv +陈美凤-爱一次痛一次,http://em.21dtv.com/songs/60061042.mkv +高向鹏+方怡萍-爱愈长伤愈深,http://em.21dtv.com/songs/60009143.mkv +花哥-爱一次伤一次,http://em.21dtv.com/songs/60080559.mkv +晓月-爱一场梦一场,http://em.21dtv.com/songs/60106901.mkv +毅光年-爱一次就足够,http://em.21dtv.com/songs/60114636.mkv +韩磊-爱与愁交给谁,http://em.21dtv.com/songs/60088955.mkv +佚名-爱要趁火打劫(无原唱),http://em.21dtv.com/songs/60009009.mkv +张学友+王菲-爱一次给不完,http://em.21dtv.com/songs/60009032.mkv +牵心牵魂-爱一辈子就好,http://em.21dtv.com/songs/60098620.mkv +叶胜钦-爱一摆痛一回,http://em.21dtv.com/songs/60118421.mkv +郑琇月-爱一摆痛一摆(无原唱),http://em.21dtv.com/songs/60009029.mkv +林胜天-爱已被你撕碎,http://em.21dtv.com/songs/60009070.mkv +李翊君-爱一步恨一步,http://em.21dtv.com/songs/60009030.mkv +回音哥-爱与不爱之间,http://em.21dtv.com/songs/60082553.mkv +麦子杰-爱与不爱之间,http://em.21dtv.com/songs/60080239.mkv +高明骏-爱与不爱之间,http://em.21dtv.com/songs/60009119.mkv +林志颖-爱像一阵旋风(演唱会)(无原唱),http://em.21dtv.com/songs/60008995.mkv +徐国人-爱需要你和我,http://em.21dtv.com/songs/60125564.mkv +舒婧-爱需要打折吗,http://em.21dtv.com/songs/60063934.mkv +望海高歌-爱像桃花儿开,http://em.21dtv.com/songs/60135343.mkv +张继红-爱心天长地久,http://em.21dtv.com/songs/60009003.mkv +阳光校园合唱团-爱心树遍人间,http://em.21dtv.com/songs/60111474.mkv +刘平芳+陈威-俺想你心恁痛,http://em.21dtv.com/songs/60009353.mkv +陈振云-爱心会真情汇,http://em.21dtv.com/songs/60118159.mkv +沈世爱+陈婷婷-爱想到做不到,http://em.21dtv.com/songs/60097779.mkv +Monsta X-爱,http://em.21dtv.com/songs/60122404.mkv +徐新军-翱翔吧中美标,http://em.21dtv.com/songs/60108520.mkv +熊庆-翱翔吧泸州舰,http://em.21dtv.com/songs/60117905.mkv +山野-爱我再多一天,http://em.21dtv.com/songs/60104987.mkv +张星唯-爱我真的不难,http://em.21dtv.com/songs/60129089.mkv +潘嘉丽-爱我一百分钟,http://em.21dtv.com/songs/60088240.mkv +何耀珊-爱微笑的眼睛,http://em.21dtv.com/songs/60008872.mkv +梁君诺+毕夏-爱我,http://em.21dtv.com/songs/60117862.mkv +姜育恒+李翊君-爱我你怕了吗,http://em.21dtv.com/songs/60008935.mkv +高山林-爱我就回来吧,http://em.21dtv.com/songs/60008927.mkv +姚天成-爱我就跟我走,http://em.21dtv.com/songs/60101317.mkv +王鹤铮-爱我就跟我走,http://em.21dtv.com/songs/60094237.mkv +大刚-爱我就跟我走,http://em.21dtv.com/songs/60008926.mkv +子枫-爱我就放过我,http://em.21dtv.com/songs/60063929.mkv +By2-爱我就大声说,http://em.21dtv.com/songs/60114328.mkv +谢金燕-爱我就趁现在(无原唱),http://em.21dtv.com/songs/60008924.mkv +绿昕-爱为何要分手,http://em.21dtv.com/songs/60082542.mkv +孙露-爱无悔伤无悔,http://em.21dtv.com/songs/60115839.mkv +孙露-爱无悔伤无悔,http://em.21dtv.com/songs/60074514.mkv +晨熙-爱无悔伤无悔,http://em.21dtv.com/songs/60008953.mkv +绿昕-爱为何说分手,http://em.21dtv.com/songs/60074502.mkv +杨宇彤-爱我还是爱我,http://em.21dtv.com/songs/60125739.mkv +宫长坤-爱我还是爱他,http://em.21dtv.com/songs/60120464.mkv +张华-爱我还是爱他,http://em.21dtv.com/songs/60008912.mkv +阿男-爱我的站左边,http://em.21dtv.com/songs/60108966.mkv +梅艳芳-爱我的只有我,http://em.21dtv.com/songs/60008910.mkv +莫文蔚-alive 我的自由式(演唱会),http://em.21dtv.com/songs/60000136.mkv +总政歌舞团五重唱-啊我的弱水河,http://em.21dtv.com/songs/60108526.mkv +楼沁-爱我的请举手,http://em.21dtv.com/songs/60107848.mkv +中国好声音第二季-爱我的请举手(王宇),http://em.21dtv.com/songs/60081461.mkv +许明明-爱我的请举手,http://em.21dtv.com/songs/60081220.mkv +墨绿森林-爱我的请举手,http://em.21dtv.com/songs/60080676.mkv +莫文蔚-爱我的请举手,http://em.21dtv.com/songs/60008901.mkv +SELINA-爱我的每个人,http://em.21dtv.com/songs/60074508.mkv +任家萱-爱我的每个人,http://em.21dtv.com/songs/60063926.mkv +卢学睿-爱我的两个人,http://em.21dtv.com/songs/60008899.mkv +李明洋+张蓉蓉-爱无第二句话,http://em.21dtv.com/songs/60074511.mkv +许君豪-爱我不要分手,http://em.21dtv.com/songs/60008894.mkv +罗子淇-爱我别像爱她,http://em.21dtv.com/songs/60131727.mkv +小刚-爱无边情无限,http://em.21dtv.com/songs/60090986.mkv +魏新雨-爱我比你用心,http://em.21dtv.com/songs/60069219.mkv +徐方-爱我不必长久,http://em.21dtv.com/songs/60065813.mkv +佚名-爱它自己会走(无原唱),http://em.21dtv.com/songs/60008848.mkv +孙耀威-爱她因为爱你,http://em.21dtv.com/songs/60008849.mkv +AK组合-爱她,http://em.21dtv.com/songs/60117431.mkv +许嵩-安徒生不后悔,http://em.21dtv.com/songs/60009338.mkv +王金-爱太累心太累,http://em.21dtv.com/songs/60130608.mkv +THE CORRS-all the love in the world,http://em.21dtv.com/songs/60000177.mkv +陈梦晨-爱 天空幻想,http://em.21dtv.com/songs/60112355.mkv +女兵三人组-爱听班长的歌(军旅),http://em.21dtv.com/songs/60090876.mkv +苏永康-爱是这样微妙,http://em.21dtv.com/songs/60093087.mkv +关心妍-爱上这样的人,http://em.21dtv.com/songs/60008735.mkv +曹颖-爱上怎样的人,http://em.21dtv.com/songs/60008733.mkv +祯襄-爱上这样的你,http://em.21dtv.com/songs/60132774.mkv +黄义达-爱是自私的歌,http://em.21dtv.com/songs/60089024.mkv +罗文裕-爱上自然的你,http://em.21dtv.com/songs/60113940.mkv +罗文裕-爱上自然的你,http://em.21dtv.com/songs/60112885.mkv +郑中基-爱是最大权利,http://em.21dtv.com/songs/60100502.mkv +吴雨霏-爱是最大权利,http://em.21dtv.com/songs/60008830.mkv +吴雨霏-爱是最大权利(演唱会),http://em.21dtv.com/songs/60008829.mkv +蔡卓妍-爱是最大权利(演唱会),http://em.21dtv.com/songs/60008828.mkv +赵楠-爱是一种信仰,http://em.21dtv.com/songs/60081268.mkv +君君-爱是一种幸福,http://em.21dtv.com/songs/60008815.mkv +巫启贤-爱是一种伤害,http://em.21dtv.com/songs/60008813.mkv +孙淑媚-爱是一种负担,http://em.21dtv.com/songs/60008812.mkv +戴爱玲-爱是一起冒险,http://em.21dtv.com/songs/60120575.mkv +云开-爱上有家的她,http://em.21dtv.com/songs/60008732.mkv +钱小寒-爱上已婚男人,http://em.21dtv.com/songs/60008730.mkv +焦靖峰-爱上一个女孩,http://em.21dtv.com/songs/60110361.mkv +杨洋-爱是一个疯字,http://em.21dtv.com/songs/60127093.mkv +张祥洪-爱上远方的你,http://em.21dtv.com/songs/60084850.mkv +徐怀钰-爱是一道光芒,http://em.21dtv.com/songs/60008809.mkv +姚亦晴-爱是一本小说,http://em.21dtv.com/songs/60104912.mkv +查查-爱是相互依靠,http://em.21dtv.com/songs/60118722.mkv +谭咏麟-爱是唯一要求,http://em.21dtv.com/songs/60008798.mkv +彭佳慧-爱是无路可退,http://em.21dtv.com/songs/60087865.mkv +潘玮柏-爱上未来的你,http://em.21dtv.com/songs/60008713.mkv +苏勒亚其其格-爱上乌兰察布,http://em.21dtv.com/songs/60100410.mkv +纪晓斌-爱上我的冤家,http://em.21dtv.com/songs/60074485.mkv +孙耀威+苏儿真-爱上同一个她,http://em.21dtv.com/songs/60008712.mkv +俞隆华+曾心梅-爱深深情绵绵,http://em.21dtv.com/songs/60008738.mkv +詹曼铃-爱是生命温泉,http://em.21dtv.com/songs/60008792.mkv +李伟-爱是什么味道,http://em.21dtv.com/songs/60082537.mkv +岳太阳-爱是什么东西,http://em.21dtv.com/songs/60123863.mkv +孙艳-爱上谁就是谁,http://em.21dtv.com/songs/60095289.mkv +李佳霖-爱上亲爱的你,http://em.21dtv.com/songs/60069211.mkv +杰子+许怡-爱上你最幸福,http://em.21dtv.com/songs/60129290.mkv +潘美辰-爱上你又如何(演唱会)(无原唱),http://em.21dtv.com/songs/60008696.mkv +沈芳如-爱上你失去你,http://em.21dtv.com/songs/60089400.mkv +晨熙-爱上你失去你,http://em.21dtv.com/songs/60084849.mkv +奥迪-爱上你 失去你,http://em.21dtv.com/songs/60071740.mkv +曹慰-爱上你失去你,http://em.21dtv.com/songs/60068068.mkv +晓月-爱上你伤了我,http://em.21dtv.com/songs/60063156.mkv +大哲-爱上你伤了我,http://em.21dtv.com/songs/60008677.mkv +吴勇滨-爱上你怕了你,http://em.21dtv.com/songs/60096045.mkv +黄格选-爱上你没有错(演唱会),http://em.21dtv.com/songs/60008675.mkv +孙悦-爱上你没道理,http://em.21dtv.com/songs/60008674.mkv +方维珍-爱上你离开你,http://em.21dtv.com/songs/60008673.mkv +李霞-爱上你很快乐,http://em.21dtv.com/songs/60008670.mkv +孙辉-爱上你好姑娘,http://em.21dtv.com/songs/60116710.mkv +孙辉-爱上你好姑娘,http://em.21dtv.com/songs/60008669.mkv +万芳-爱上你给的痛,http://em.21dtv.com/songs/60090464.mkv +刘河君-爱是你给的伤,http://em.21dtv.com/songs/60115723.mkv +刘安然-爱上你的影子,http://em.21dtv.com/songs/60132243.mkv +张雨生-爱上你的一切,http://em.21dtv.com/songs/60008664.mkv +任岩-爱上你的笑容,http://em.21dtv.com/songs/60082529.mkv +郑知文-爱上你的秀发,http://em.21dtv.com/songs/60124567.mkv +胡江伟-爱上你的感觉,http://em.21dtv.com/songs/60008660.mkv +蔡献华-爱上你错了吗,http://em.21dtv.com/songs/60105345.mkv +基地小虎-爱上你错了吗,http://em.21dtv.com/songs/60066826.mkv +小虎-爱上你错了吗,http://em.21dtv.com/songs/60008658.mkv +唐从圣+林采欣-爱上你不奇怪,http://em.21dtv.com/songs/60081992.mkv +崔广杰-爱上你不后悔,http://em.21dtv.com/songs/60105793.mkv +任轩萱-爱上你不后悔,http://em.21dtv.com/songs/60068067.mkv +李碧华-爱是你爱是我,http://em.21dtv.com/songs/60089966.mkv +伍思凯-爱上每一个你,http://em.21dtv.com/songs/60008651.mkv +蔡依林-爱上了一条街,http://em.21dtv.com/songs/60008647.mkv +徐一鸣-爱上了沈春阳,http://em.21dtv.com/songs/60065808.mkv +向蕙玲-爱三角情两乱,http://em.21dtv.com/songs/60063914.mkv +无印良品-爱是寂寞的风,http://em.21dtv.com/songs/60008775.mkv +胡白-爱上精灵法师,http://em.21dtv.com/songs/60088499.mkv +蔡小虎+黄思婷-爱是久久长长,http://em.21dtv.com/songs/60074493.mkv +格杨-爱上就会认真,http://em.21dtv.com/songs/60069206.mkv +佚名-爱伤害了你我,http://em.21dtv.com/songs/60008622.mkv +任承浩-爱生活爱老婆,http://em.21dtv.com/songs/60121358.mkv +陶大帅-爱上哥请直说,http://em.21dtv.com/songs/60117359.mkv +萧亚轩-爱是个坏东西,http://em.21dtv.com/songs/60008768.mkv +萧亚轩-爱是个坏东西(演唱会),http://em.21dtv.com/songs/60008767.mkv +李翊君-爱上孤独男人,http://em.21dtv.com/songs/60089348.mkv +刘牧-爱上孤独的我,http://em.21dtv.com/songs/60062667.mkv +陈玉建-爱上负心的人,http://em.21dtv.com/songs/60008640.mkv +曹雅雯-爱是独一无二,http://em.21dtv.com/songs/60112726.mkv +潘旭-爱上第二故乡,http://em.21dtv.com/songs/60121889.mkv +马睿菈-爱上别人的他,http://em.21dtv.com/songs/60008633.mkv +刘栋升-爱上别人的人(演唱会),http://em.21dtv.com/songs/60069205.mkv +郑源-爱上别人的人,http://em.21dtv.com/songs/60008632.mkv +刘栋升-爱上别人的人,http://em.21dtv.com/songs/60008631.mkv +符号-爱上别人的人,http://em.21dtv.com/songs/60008630.mkv +涓子-爱上冰冷的你,http://em.21dtv.com/songs/60132687.mkv +孙渔-爱上冰冷的你,http://em.21dtv.com/songs/60132360.mkv +王麟-爱上贝克汉姆,http://em.21dtv.com/songs/60082001.mkv +小乔-安顺爱情故事,http://em.21dtv.com/songs/60104069.mkv +张韶涵-爱上爱的味道,http://em.21dtv.com/songs/60008628.mkv +尹冰儿-爱上爱的感觉,http://em.21dtv.com/songs/60068065.mkv +群星-爱让我们一起,http://em.21dtv.com/songs/60091859.mkv +佚名-爱让我更寂寞(无原唱),http://em.21dtv.com/songs/60008524.mkv +曾心梅-爱人是行船人,http://em.21dtv.com/songs/60008581.mkv +王馨平-爱让人太盲目,http://em.21dtv.com/songs/60008521.mkv +周传雄-爱如日升月落,http://em.21dtv.com/songs/60008611.mkv +陈永强-爱人你辛苦了,http://em.21dtv.com/songs/60133046.mkv +唐俪-爱人的高跟鞋,http://em.21dtv.com/songs/60063912.mkv +豪记大对唱-爱人的高跟鞋,http://em.21dtv.com/songs/60008552.mkv +司马凤-爱人啊紧回头(无原唱),http://em.21dtv.com/songs/60095491.mkv +陈小云-爱人啊紧回头,http://em.21dtv.com/songs/60008548.mkv +黄西田+樱桃姐妹-爱人啊不是你,http://em.21dtv.com/songs/60008547.mkv +陈天红-爱情自有天意,http://em.21dtv.com/songs/60082522.mkv +戚薇-爱情自有天意,http://em.21dtv.com/songs/60071736.mkv +李玟-爱情这么精彩,http://em.21dtv.com/songs/60089963.mkv +曾沛慈-爱情怎么喊停,http://em.21dtv.com/songs/60080831.mkv +赵俊承-爱情走了以后,http://em.21dtv.com/songs/60103586.mkv +罗美玲-爱情走过以后,http://em.21dtv.com/songs/60008508.mkv +杨帆-爱情这个魔鬼,http://em.21dtv.com/songs/60088068.mkv +曹磊-爱情走的时候,http://em.21dtv.com/songs/60087953.mkv +古巨基+容祖儿-爱情也有生命,http://em.21dtv.com/songs/60097777.mkv +黎明-爱情要去哪里,http://em.21dtv.com/songs/60089070.mkv +瑶瑶-爱情一碰就碎,http://em.21dtv.com/songs/60121965.mkv +罗文聪-爱情有拿要还,http://em.21dtv.com/songs/60008468.mkv +南台湾小姑娘-爱情先天免疫,http://em.21dtv.com/songs/60008422.mkv +杨哲-爱亲像放风吹,http://em.21dtv.com/songs/60008075.mkv +张智霖+HOTCHA-爱情现代事故,http://em.21dtv.com/songs/60061001.mkv +A-LIN-爱请问怎么走,http://em.21dtv.com/songs/60008513.mkv +洪真英-爱情wifi,http://em.21dtv.com/songs/60109494.mkv +周蕙-爱情无关是非,http://em.21dtv.com/songs/60008416.mkv +曾淑勤-爱情外的路人,http://em.21dtv.com/songs/60008409.mkv +萧亚轩-爱情通关密语,http://em.21dtv.com/songs/60008407.mkv +胡彦斌-爱情是怎么了,http://em.21dtv.com/songs/60074454.mkv +晓月-爱情是一种病,http://em.21dtv.com/songs/60100090.mkv +南台湾小姑娘-爱情莎哟娜啦,http://em.21dtv.com/songs/60095486.mkv +南台湾小姑娘-爱情莎哟哪啦(演唱会),http://em.21dtv.com/songs/60008371.mkv +多亮-爱情是什么样,http://em.21dtv.com/songs/60081871.mkv +许茹芸-爱情三十六计,http://em.21dtv.com/songs/60114060.mkv +林军-爱情三十六计,http://em.21dtv.com/songs/60079949.mkv +信+小丸子-爱情三十六计,http://em.21dtv.com/songs/60008363.mkv +蔡依林-爱情三十六计,http://em.21dtv.com/songs/60008362.mkv +欢子-爱情是伤感的,http://em.21dtv.com/songs/60097778.mkv +曾春年-爱情是伤感的,http://em.21dtv.com/songs/60087958.mkv +李嘉-爱情啥咪东西,http://em.21dtv.com/songs/60008372.mkv +蒙面哥+唯莎-爱情说来就来,http://em.21dtv.com/songs/60127365.mkv +梁文音-爱其实很残忍,http://em.21dtv.com/songs/60105198.mkv +叶一茜-爱情十二元素,http://em.21dtv.com/songs/60008379.mkv +郯城小朱-爱情是场梦城,http://em.21dtv.com/songs/60129673.mkv +群星-爱其实并不远,http://em.21dtv.com/songs/60008070.mkv +赵小南-爱情让我心痛,http://em.21dtv.com/songs/60069199.mkv +张祥洪-爱情让我脆弱,http://em.21dtv.com/songs/60082514.mkv +NAMOLLA FAMILY-爱情如此简单,http://em.21dtv.com/songs/60008360.mkv +司空雷-爱却没有了你,http://em.21dtv.com/songs/60097776.mkv +温岚-爱情没有对错,http://em.21dtv.com/songs/60063070.mkv +丁当+张震岳-爱情没有答案,http://em.21dtv.com/songs/60008310.mkv +慕容晓晓-爱情买卖(新版),http://em.21dtv.com/songs/60063902.mkv +林知卉+王尚宏-爱情袂赴变老,http://em.21dtv.com/songs/60113718.mkv +林知卉-爱情袂赴变老,http://em.21dtv.com/songs/60113716.mkv +高峰-爱情路太坎坷(无原唱),http://em.21dtv.com/songs/60034459.mkv +许嵩+安琪-爱情里的眼泪,http://em.21dtv.com/songs/60008297.mkv +巫启贤+杨采妮-爱情来的时候,http://em.21dtv.com/songs/60008292.mkv +李鹏飞-爱情就像开水,http://em.21dtv.com/songs/60063897.mkv +谢天华-爱情今天经过,http://em.21dtv.com/songs/60008274.mkv +蔡琴-爱情就是这样,http://em.21dtv.com/songs/60008276.mkv +蓝羽-爱情结束得伤(舞曲版),http://em.21dtv.com/songs/60008272.mkv +江一燕-爱情海里的鱼,http://em.21dtv.com/songs/60008240.mkv +胡建烽-爱情孤单行驶,http://em.21dtv.com/songs/60123092.mkv +井柏然-爱情掉在哪里,http://em.21dtv.com/songs/60060993.mkv +吴进法-爱情的西北雨,http://em.21dtv.com/songs/60070478.mkv +尤雅-爱情的尾班车(无原唱),http://em.21dtv.com/songs/60048946.mkv +方怡萍-爱情的伤愈伤(无原唱),http://em.21dtv.com/songs/60008182.mkv +詹雅雯-爱情的墓仔埔,http://em.21dtv.com/songs/60008177.mkv +佚名-爱情的摩托车,http://em.21dtv.com/songs/60008175.mkv +詹雅雯-爱情的基仔埔,http://em.21dtv.com/songs/60094536.mkv +群星合唱-爱情动感LA_LA_LA,http://em.21dtv.com/songs/60088480.mkv +陈雷-爱情的飞凌机,http://em.21dtv.com/songs/60008153.mkv +许美静-爱情多半遗憾,http://em.21dtv.com/songs/60092071.mkv +花儿乐队-爱情残酷物语,http://em.21dtv.com/songs/60008123.mkv +S.H.E-爱情不再冒险,http://em.21dtv.com/songs/60008121.mkv +陈立珂-爱情不要转移(演唱会),http://em.21dtv.com/songs/60008119.mkv +可米小子-爱情不用翻译,http://em.21dtv.com/songs/60008120.mkv +于金胜-爱情保险公司,http://em.21dtv.com/songs/60070475.mkv +太真儿-爱情不是游戏,http://em.21dtv.com/songs/60099913.mkv +黎骏-爱情不是游戏,http://em.21dtv.com/songs/60008116.mkv +糖糖乐团-爱情不是想象,http://em.21dtv.com/songs/60066804.mkv +阮以伟-爱情不是拍戏,http://em.21dtv.com/songs/60063888.mkv +网络歌手-爱情不是毒药,http://em.21dtv.com/songs/60115329.mkv +吴峙轩-爱情被你拐走,http://em.21dtv.com/songs/60086413.mkv +周诗雅-爱情不被祝福,http://em.21dtv.com/songs/60065791.mkv +李焓语-爱陪伴我成长,http://em.21dtv.com/songs/60131503.mkv +陈奕迅-allegro opus 3 3am,http://em.21dtv.com/songs/60000184.mkv +镐天-爱你在我心底,http://em.21dtv.com/songs/60112328.mkv +冯泽雨-爱你只说一遍,http://em.21dtv.com/songs/60066802.mkv +李玟-爱你在每一天,http://em.21dtv.com/songs/60008037.mkv +黄梓茗-爱你在每一秒,http://em.21dtv.com/songs/60103729.mkv +王艺-爱你在每一秒,http://em.21dtv.com/songs/60008036.mkv +姚黛玮-爱你只到明天,http://em.21dtv.com/songs/60026965.mkv +任军太-爱你真的很累(演唱会),http://em.21dtv.com/songs/60062860.mkv +斯琴高丽-爱你一样爱他,http://em.21dtv.com/songs/60080699.mkv +雨柔+文志-爱你一生一世,http://em.21dtv.com/songs/60100616.mkv +雨柔+文志-爱你一世一生,http://em.21dtv.com/songs/60099597.mkv +晓晓+香山-爱你一生一世,http://em.21dtv.com/songs/60099266.mkv +李佳倩+张宇轩-爱你一生一世,http://em.21dtv.com/songs/60098457.mkv +郑梅芳-爱你一生一世,http://em.21dtv.com/songs/60082503.mkv +汪明荃-爱你一世一生,http://em.21dtv.com/songs/60008017.mkv +汪明荃-爱你一生一世(演唱会),http://em.21dtv.com/songs/60008014.mkv +唱片街-爱你一生不变,http://em.21dtv.com/songs/60082502.mkv +黎明-爱你一生不变,http://em.21dtv.com/songs/60008011.mkv +何洁-爱你与你无关,http://em.21dtv.com/songs/60008033.mkv +佚名-爱你又能怪谁(无原唱),http://em.21dtv.com/songs/60008031.mkv +伍佰-爱你越来越多,http://em.21dtv.com/songs/60008034.mkv +波拉-爱能有几平米,http://em.21dtv.com/songs/60086405.mkv +黎瑞恩-爱你一定快乐,http://em.21dtv.com/songs/60008008.mkv +黎瑞恩-爱你一定快乐(演唱会),http://em.21dtv.com/songs/60008007.mkv +于金胜-爱你永不后悔,http://em.21dtv.com/songs/60127721.mkv +张启辉-爱你永不后悔(演唱会),http://em.21dtv.com/songs/60084822.mkv +张启辉-爱你永不后悔,http://em.21dtv.com/songs/60008028.mkv +柯言-爱你永不放弃,http://em.21dtv.com/songs/60113731.mkv +吴淑敏-爱你想你等你(无原唱),http://em.21dtv.com/songs/60007357.mkv +陶晶-爱你像爱自己,http://em.21dtv.com/songs/60008002.mkv +龙千玉-爱你无惜代价,http://em.21dtv.com/songs/60007994.mkv +尤雅-爱难忘情难忘,http://em.21dtv.com/songs/60007760.mkv +蔡谨全-爱难忘情难忘(演唱会),http://em.21dtv.com/songs/60007759.mkv +吴木+苏路-爱你我袂后悔,http://em.21dtv.com/songs/60086411.mkv +翁立友-爱你无惊无命,http://em.21dtv.com/songs/60007991.mkv +咪依鲁江-爱你我的新娘,http://em.21dtv.com/songs/60112584.mkv +姚成骏-爱你我错了吗,http://em.21dtv.com/songs/60063256.mkv +姚鸣-爱你我错了吗,http://em.21dtv.com/songs/60007984.mkv +洪启松-爱南通爱南安,http://em.21dtv.com/songs/60129345.mkv +刘嘉亮-爱你实在太累,http://em.21dtv.com/songs/60007958.mkv +尔萨-爱你是我的缘,http://em.21dtv.com/songs/60089251.mkv +杨宗宪-爱你是我的命,http://em.21dtv.com/songs/60035819.mkv +高向鹏-爱你是我的错,http://em.21dtv.com/songs/60007964.mkv +吴倩莲-爱你是我不对,http://em.21dtv.com/songs/60007963.mkv +冷漠-爱你是贪心的,http://em.21dtv.com/songs/60099786.mkv +郭建一+萧玉芬-爱你尚深的人,http://em.21dtv.com/songs/60095942.mkv +曾心梅-爱你是阮的命,http://em.21dtv.com/songs/60007961.mkv +张栋梁-爱你胜过自己,http://em.21dtv.com/songs/60007955.mkv +汀潞-爱你是否有罪,http://em.21dtv.com/songs/60007960.mkv +李玟-爱你是大麻烦,http://em.21dtv.com/songs/60007959.mkv +孙燕姿-安宁,http://em.21dtv.com/songs/60115094.mkv +杜德伟+苏慧伦-爱你让我勇敢,http://em.21dtv.com/songs/60007949.mkv +姚天成-爱你让我心碎,http://em.21dtv.com/songs/60106752.mkv +孙勇-爱你让我发疯,http://em.21dtv.com/songs/60007947.mkv +张圣全-爱你如此狼狈,http://em.21dtv.com/songs/60007950.mkv +袁小迪+林姗-爱你千年万年,http://em.21dtv.com/songs/60007942.mkv +邵振锋-爱你那么多年,http://em.21dtv.com/songs/60007938.mkv +佚名-爱你360年,http://em.21dtv.com/songs/60007781.mkv +付浩天-爱你没有结果,http://em.21dtv.com/songs/60130067.mkv +GLADYS KNIGHT+VINCE-aint nothinlike the real th,http://em.21dtv.com/songs/60000128.mkv +阿福-爱你今生无悔,http://em.21dtv.com/songs/60074405.mkv +王爱华-爱你寂寞一生,http://em.21dtv.com/songs/60065787.mkv +倪尔萍-爱你就成全你,http://em.21dtv.com/songs/60074406.mkv +XOV-Animal,http://em.21dtv.com/songs/60112474.mkv +龙梅子-爱你还是恨你,http://em.21dtv.com/songs/60068051.mkv +江若琳-爱你还是爱美(演唱会),http://em.21dtv.com/songs/60007901.mkv +陈予新-爱你会更快乐,http://em.21dtv.com/songs/60007913.mkv +王建杰-爱你甘愿忍耐,http://em.21dtv.com/songs/60007896.mkv +大哲-爱你到一百岁,http://em.21dtv.com/songs/60007842.mkv +游鸿明-爱你的心已碎,http://em.21dtv.com/songs/60115275.mkv +蔡丽津-爱你的心落雪,http://em.21dtv.com/songs/60007882.mkv +江蕙-爱你的阮的心,http://em.21dtv.com/songs/60007863.mkv +品冠-爱你的那一天,http://em.21dtv.com/songs/60090859.mkv +温岚-爱你的两个我,http://em.21dtv.com/songs/60007854.mkv +张睿-爱你断了翅膀,http://em.21dtv.com/songs/60099239.mkv +周慧敏-爱你多过爱他,http://em.21dtv.com/songs/60007890.mkv +李扬光-爱能创造奇迹,http://em.21dtv.com/songs/60117814.mkv +林志颖-爱你不只今天,http://em.21dtv.com/songs/60007838.mkv +苏永康-爱你不要言语,http://em.21dtv.com/songs/60091944.mkv +萧亚轩-爱你不要距离(演唱会),http://em.21dtv.com/songs/60007834.mkv +阿杜-爱你比我重要,http://em.21dtv.com/songs/60007815.mkv +汶扬-爱你不是芹彩(无原唱),http://em.21dtv.com/songs/60080280.mkv +佚名-爱你不是谎言,http://em.21dtv.com/songs/60007831.mkv +蜜雪薇琪-爱能不能不变,http://em.21dtv.com/songs/60007763.mkv +莫旭秋-爱你变成害你(演唱会),http://em.21dtv.com/songs/60063873.mkv +黄耀明-爱你变成害你(演唱会),http://em.21dtv.com/songs/60063872.mkv +吴雨霏-爱你变成恨你,http://em.21dtv.com/songs/60007822.mkv +吴雨霏-爱你变成恨你(演唱会),http://em.21dtv.com/songs/60007821.mkv +巫启贤-爱你变成害你,http://em.21dtv.com/songs/60007820.mkv +张伟文-爱你变成害你(演唱会),http://em.21dtv.com/songs/60007819.mkv +叶丽仪-爱你变成害你(演唱会),http://em.21dtv.com/songs/60007818.mkv +潘迪华-爱你变成害你(演唱会),http://em.21dtv.com/songs/60007817.mkv +于娜-爱你爱你爱你,http://em.21dtv.com/songs/60007808.mkv +胡清蓝-爱你爱你爱你,http://em.21dtv.com/songs/60007807.mkv +孙淑媚-爱你爱甲心痛,http://em.21dtv.com/songs/60007804.mkv +蒋雪儿-爱你爱的醉了,http://em.21dtv.com/songs/60094271.mkv +叶瑗菱-爱你爱到心醉(无原唱),http://em.21dtv.com/songs/60007792.mkv +詹雅雯-爱你爱到心痛,http://em.21dtv.com/songs/60081777.mkv +顾晓宇-爱你爱到心碎,http://em.21dtv.com/songs/60007791.mkv +关淑怡-爱你爱的太久,http://em.21dtv.com/songs/60007802.mkv +关淑怡-爱你爱得太久,http://em.21dtv.com/songs/60007797.mkv +洪煜祺-爱你爱得蛋疼,http://em.21dtv.com/songs/60099374.mkv +李炳辰-爱蒙住我的眼,http://em.21dtv.com/songs/60007744.mkv +张寒-爱没有救世主,http://em.21dtv.com/songs/60070465.mkv +马群琪-澳门一九九九,http://em.21dtv.com/songs/60009448.mkv +新宝岛康乐队-阿嬷是妈祖鱼,http://em.21dtv.com/songs/60006801.mkv +梁一贞-爱没那么简单,http://em.21dtv.com/songs/60062625.mkv +刘俐婷-爱芒芒醉茫茫,http://em.21dtv.com/songs/60095464.mkv +RANDY MONTANA-aint much left of lovinyou,http://em.21dtv.com/songs/60000125.mkv +少女时代-all my love is for you,http://em.21dtv.com/songs/60072878.mkv +莫文蔚-艾美丽爱美丽,http://em.21dtv.com/songs/60006901.mkv +阿六三-阿妈教我的歌,http://em.21dtv.com/songs/60070441.mkv +阿桑古卡-阿妈的酥油灯,http://em.21dtv.com/songs/60006783.mkv +于台烟-阿母的手路菜,http://em.21dtv.com/songs/60086394.mkv +胡斌-阿妈的奶茶香,http://em.21dtv.com/songs/60127310.mkv +何乌兰-阿妈的蒙古袍,http://em.21dtv.com/songs/60098104.mkv +傅滢滢-阿嬷的教示语,http://em.21dtv.com/songs/60084781.mkv +叶启田-爱某不惊艰苦,http://em.21dtv.com/songs/60080716.mkv +梁咏琪-暗恋也很快乐,http://em.21dtv.com/songs/60088140.mkv +Apink-Always,http://em.21dtv.com/songs/60134639.mkv +安薰雅-ALWAYS,http://em.21dtv.com/songs/60123839.mkv +尹美莱-Always,http://em.21dtv.com/songs/60119455.mkv +A.KOR-Always,http://em.21dtv.com/songs/60109081.mkv +孙晓磊-爱了伤了痛了,http://em.21dtv.com/songs/60130242.mkv +蓝雨+张焱-阿里山的姑娘,http://em.21dtv.com/songs/60099477.mkv +常石磊+萨顶顶-阿里山的姑娘,http://em.21dtv.com/songs/60098319.mkv +邓丽君-阿里山的姑娘,http://em.21dtv.com/songs/60095225.mkv +玖月奇迹-阿里山的姑娘(演唱会),http://em.21dtv.com/songs/60084779.mkv +玖月奇迹-阿里山的姑娘,http://em.21dtv.com/songs/60082453.mkv +温岚+吉杰-阿里山的姑娘,http://em.21dtv.com/songs/60082452.mkv +佚名-阿里山的姑娘,http://em.21dtv.com/songs/60006770.mkv +奚秀兰-阿里山的姑娘,http://em.21dtv.com/songs/60006769.mkv +顾媚-阿里山的姑娘,http://em.21dtv.com/songs/60006768.mkv +金佩姗-爱了你伤了我(无原唱),http://em.21dtv.com/songs/60007705.mkv +A2A-暗恋你的好处,http://em.21dtv.com/songs/60114317.mkv +N SYNC-a little more time on you,http://em.21dtv.com/songs/60000053.mkv +赵孤星-爱来了我来了,http://em.21dtv.com/songs/60063865.mkv +Monsta X-All in,http://em.21dtv.com/songs/60123509.mkv +Monsta X-All in,http://em.21dtv.com/songs/60122403.mkv +A Lin-All In,http://em.21dtv.com/songs/60107386.mkv +ALIN-ALL IN,http://em.21dtv.com/songs/60106521.mkv +A Lin-All In,http://em.21dtv.com/songs/60106519.mkv +阿桑格来鹏措-爱恋就在梦里,http://em.21dtv.com/songs/60080415.mkv +李丽珍-爱了就不后悔,http://em.21dtv.com/songs/60007699.mkv +柯有伦-A LIFE,http://em.21dtv.com/songs/60124146.mkv +新街口组合+MONA-暗恋过结局呢,http://em.21dtv.com/songs/60065826.mkv +陈慧娴-爱恋二千小时,http://em.21dtv.com/songs/60007719.mkv +田野-爱来得太突然,http://em.21dtv.com/songs/60132757.mkv +荆涛-爱了淡了忘了,http://em.21dtv.com/songs/60129549.mkv +李秋实-爱了吧散了吧,http://em.21dtv.com/songs/60109436.mkv +JUSTIN BIEBER-as long as you love me,http://em.21dtv.com/songs/60072903.mkv +BACKSTREET BOYS-as long as you love me,http://em.21dtv.com/songs/60000342.mkv +二宝-爱恋2010,http://em.21dtv.com/songs/60007718.mkv +凤娘+周韦杰-爱甲这呢固执,http://em.21dtv.com/songs/60066789.mkv +海弦月-爱就要在一起,http://em.21dtv.com/songs/60122961.mkv +蔡晓-爱就要说出来,http://em.21dtv.com/songs/60068044.mkv +TAE-爱就要让你懂,http://em.21dtv.com/songs/60007663.mkv +李玟-爱就要趁现在,http://em.21dtv.com/songs/60007662.mkv +卢巧音-爱将我们撕开,http://em.21dtv.com/songs/60007642.mkv +王瑞霞-爱甲无路好退,http://em.21dtv.com/songs/60007632.mkv +SLAP-安静忍耐等待,http://em.21dtv.com/songs/60123537.mkv +李俊英-爱就给我拥抱,http://em.21dtv.com/songs/60084811.mkv +歌一生-爱就给我拥抱,http://em.21dtv.com/songs/60080513.mkv +李圣杰-爱就多爱一点,http://em.21dtv.com/songs/60091306.mkv +吴瑶-爱就不要装假,http://em.21dtv.com/songs/60007651.mkv +荣联合-爱经不起等待,http://em.21dtv.com/songs/60060981.mkv +ENGELBERT HUMPERDINC-am i that easy to forget,http://em.21dtv.com/songs/60000211.mkv +毕国勇-爱好痛心不苦,http://em.21dtv.com/songs/60007577.mkv +杨采妮-爱会来寻觅我,http://em.21dtv.com/songs/60092848.mkv +罗秋红-爱环保有诗意,http://em.21dtv.com/songs/60084809.mkv +黄妃-爱河边的咖啡,http://em.21dtv.com/songs/60007581.mkv +侯强+尹力-爱过怎么舍得,http://em.21dtv.com/songs/60007566.mkv +佚名-爱敢着讲理由,http://em.21dtv.com/songs/60007507.mkv +胡杰夕-爱过一次就够,http://em.21dtv.com/songs/60065780.mkv +赵齐-爱过云爱给你,http://em.21dtv.com/songs/60094707.mkv +邱芸子+扬哲-爱过无通后悔,http://em.21dtv.com/songs/60063859.mkv +郑希怡-爱过我的好人,http://em.21dtv.com/songs/60007557.mkv +李文乐-爱过痛过哭过,http://em.21dtv.com/songs/60063858.mkv +刘依纯-爱过人拢会知(无原唱),http://em.21dtv.com/songs/60095463.mkv +诚峰-爱过你伤了你,http://em.21dtv.com/songs/60066786.mkv +张惠妹-爱过你恨过你,http://em.21dtv.com/songs/60091095.mkv +钱小寒-爱过你恨过你,http://em.21dtv.com/songs/60007550.mkv +陈彩林-阿哥你带我走,http://em.21dtv.com/songs/60107322.mkv +M STREET-爱过你爱着你,http://em.21dtv.com/songs/60074362.mkv +张惠春-爱过了又怎样,http://em.21dtv.com/songs/60127975.mkv +罗艳-爱过了伤过了,http://em.21dtv.com/songs/60123072.mkv +登越顿珠-爱过哭过笑过,http://em.21dtv.com/songs/60074359.mkv +刘川枫-爱过就已足够,http://em.21dtv.com/songs/60116585.mkv +伦永亮-爱过就是完全(演唱会),http://em.21dtv.com/songs/60007543.mkv +万阳-爱过就不后悔,http://em.21dtv.com/songs/60090465.mkv +沈志仲-爱过就不后悔,http://em.21dtv.com/songs/60060977.mkv +尔萨-爱过后的酸楚,http://em.21dtv.com/songs/60007539.mkv +唐敏洁-爱狗狗爱生活,http://em.21dtv.com/songs/60007519.mkv +咻比嘟哗-爱给的那么多,http://em.21dtv.com/songs/60007516.mkv +六哲-爱过的每一天,http://em.21dtv.com/songs/60112519.mkv +江蕙-阿公的眠床脚,http://em.21dtv.com/songs/60006738.mkv +安琪-阿公的老刻盘,http://em.21dtv.com/songs/60006737.mkv +罗时丰-阿公的老吉他,http://em.21dtv.com/songs/60130654.mkv +萧煌奇-阿公的旧皮衫,http://em.21dtv.com/songs/60111383.mkv +范宏伟-爱过才知道痛,http://em.21dtv.com/songs/60080136.mkv +庄学忠-爱过不留痕迹,http://em.21dtv.com/songs/60007531.mkv +枫桥+枕云听月-阿哥阿妹恋歌,http://em.21dtv.com/songs/60133884.mkv +The Neighbourhood-Afraid,http://em.21dtv.com/songs/60103829.mkv +梁咏琪-爱抚摸你思想,http://em.21dtv.com/songs/60007504.mkv +凌宏兵-爱福家欢迎您,http://em.21dtv.com/songs/60127760.mkv +萧敬腾-阿飞的小蝴蝶,http://em.21dtv.com/songs/60006729.mkv +洛天依-奥飞布局之歌,http://em.21dtv.com/songs/60129343.mkv +TWINS-a for apple b for boy,http://em.21dtv.com/songs/60000043.mkv +白冰冰-阿娥的摇篮曲,http://em.21dtv.com/songs/60006724.mkv +熊天平-爱的真正重量,http://em.21dtv.com/songs/60007453.mkv +陈瑞-爱得真伤的深,http://em.21dtv.com/songs/60074326.mkv +杨戬勇-爱的真伤得深,http://em.21dtv.com/songs/60007452.mkv +孙江枫-爱的真伤得深,http://em.21dtv.com/songs/60007451.mkv +吕方-爱得真爱得深,http://em.21dtv.com/songs/60007161.mkv +阿吉仔-爱的犹原是你,http://em.21dtv.com/songs/60007441.mkv +孙晓雨-爱的心已太累,http://em.21dtv.com/songs/60108420.mkv +王可-爱到无药可救,http://em.21dtv.com/songs/60124248.mkv +鲍国-爱到忘了自己,http://em.21dtv.com/songs/60102952.mkv +钟镇涛-爱得忘了自己,http://em.21dtv.com/songs/60007155.mkv +晓依-爱到无路可走,http://em.21dtv.com/songs/60096327.mkv +熊照华-爱到无路可退,http://em.21dtv.com/songs/60120739.mkv +彭佳慧-爱到无路可退,http://em.21dtv.com/songs/60007113.mkv +龙川-爱到无路可退,http://em.21dtv.com/songs/60007112.mkv +李小璐-爱的无可救药,http://em.21dtv.com/songs/60007410.mkv +阿美-爱到天荒地老,http://em.21dtv.com/songs/60134387.mkv +罗时丰-爱到天荒地老,http://em.21dtv.com/songs/60063840.mkv +巫启贤-爱到天荒地老,http://em.21dtv.com/songs/60007106.mkv +李家辉-爱的痛彻心扉,http://em.21dtv.com/songs/60068040.mkv +殷悦-爱多少早知道,http://em.21dtv.com/songs/60007485.mkv +尤姿涵-爱的伤这呢重,http://em.21dtv.com/songs/60007361.mkv +向蕙玲-爱的伤这呢重,http://em.21dtv.com/songs/60007360.mkv +杜蕾-爱到死心塌地,http://em.21dtv.com/songs/60082465.mkv +董璇-爱到死心塌地,http://em.21dtv.com/songs/60007105.mkv +六哲-爱的撕心裂肺[消伴],http://em.21dtv.com/songs/60101266.mkv +游国维-爱得顺其自然(无原唱),http://em.21dtv.com/songs/60007145.mkv +林剑衡-爱得死去活来,http://em.21dtv.com/songs/60096354.mkv +林姗-爱的是你的心(无原唱),http://em.21dtv.com/songs/60007373.mkv +金城-爱的伤了小豆,http://em.21dtv.com/songs/60088800.mkv +东方依依-爱的伤了痛了,http://em.21dtv.com/songs/60133323.mkv +天孪兄弟-爱到伤害自己,http://em.21dtv.com/songs/60007098.mkv +林雨-爱的伤痕累累,http://em.21dtv.com/songs/60100223.mkv +骁雄-爱的如此狼狈,http://em.21dtv.com/songs/60127599.mkv +秦瑶-爱得那么天真,http://em.21dtv.com/songs/60074321.mkv +林吉玲-爱到没有未来(无原唱),http://em.21dtv.com/songs/60007093.mkv +刘冰-爱到没有退路,http://em.21dtv.com/songs/60007092.mkv +覃飞宇-爱的路上有你,http://em.21dtv.com/songs/60007311.mkv +汤潮-爱大了受伤了,http://em.21dtv.com/songs/60007065.mkv +蒋蒋+朱贺-爱德华的小说,http://em.21dtv.com/songs/60118882.mkv +孙耀威-爱的故事上集(演唱会),http://em.21dtv.com/songs/60007235.mkv +蓝心湄-爱的光合作用,http://em.21dtv.com/songs/60007238.mkv +谢震东-爱到风烛残年,http://em.21dtv.com/songs/60127410.mkv +谢震东-爱到风烛残年,http://em.21dtv.com/songs/60120948.mkv +周杰伦+杨瑞代-爱的飞行日记(演唱会),http://em.21dtv.com/songs/60007201.mkv +B2-爱到翻天覆地,http://em.21dtv.com/songs/60090395.mkv +SpeXial-爱的附加档案,http://em.21dtv.com/songs/60127683.mkv +施文彬-爱到不知轻重,http://em.21dtv.com/songs/60007070.mkv +邹文正-爱得不是时候,http://em.21dtv.com/songs/60082466.mkv +詹曼铃-爱到别人的尪,http://em.21dtv.com/songs/60007067.mkv +田梓呈-爱到不离不弃,http://em.21dtv.com/songs/60063001.mkv +马志锋-爱的爸爸妈妈,http://em.21dtv.com/songs/60063845.mkv +迪玛希-Adagio,http://em.21dtv.com/songs/60132950.mkv +新宝岛康乐队-阿春仔伊阿嬷,http://em.21dtv.com/songs/60013955.mkv +元若蓝-爱乘以无限大,http://em.21dtv.com/songs/60007048.mkv +文姬-爱唱歌的草原,http://em.21dtv.com/songs/60117770.mkv +欧汉声-爱从分手开始,http://em.21dtv.com/songs/60097775.mkv +罗时丰-哀愁的火车站,http://em.21dtv.com/songs/60006893.mkv +江蕙-哀愁的风雨桥,http://em.21dtv.com/songs/60095729.mkv +童孔+黄磊+林志颖-爱从不轻易来,http://em.21dtv.com/songs/60131716.mkv +乌兰托娅-爱不在就放手,http://em.21dtv.com/songs/60007040.mkv +吴瑶-爱不在服务区,http://em.21dtv.com/songs/60007039.mkv +詹雅雯-阿比仔的心事,http://em.21dtv.com/songs/60006721.mkv +周晏伊-爱不用太礼貌,http://em.21dtv.com/songs/60103978.mkv +沈维-爱被眼泪代替,http://em.21dtv.com/songs/60062906.mkv +沈世爱-爱比烟花寂寞,http://em.21dtv.com/songs/60006957.mkv +io-爱不需要理由,http://em.21dtv.com/songs/60129944.mkv +何洁-爱不需要理由,http://em.21dtv.com/songs/60120308.mkv +何洁-爱不需要理由,http://em.21dtv.com/songs/60115682.mkv +李玖哲-爱不需要理由,http://em.21dtv.com/songs/60007032.mkv +五洋-爱不需要承诺,http://em.21dtv.com/songs/60007031.mkv +潘浩东-敖包下的思念,http://em.21dtv.com/songs/60099384.mkv +阿权-俺爸,http://em.21dtv.com/songs/60108111.mkv +姜青涛-爱不起伤不起,http://em.21dtv.com/songs/60087640.mkv +张柏芝-爱不起放弃你,http://em.21dtv.com/songs/60092636.mkv +后羿-爱变了心乱了,http://em.21dtv.com/songs/60068032.mkv +林欣蓉-爱不会再回来,http://em.21dtv.com/songs/60111197.mkv +戴洛-爱不会离开你,http://em.21dtv.com/songs/60006991.mkv +安俊豪-爱不敢说出口,http://em.21dtv.com/songs/60130252.mkv +李蕴-爱不等于一起,http://em.21dtv.com/songs/60115231.mkv +李蕴-爱不等于一起,http://em.21dtv.com/songs/60006979.mkv +杨宗宪-阿爸的西门町(无原唱),http://em.21dtv.com/songs/60006715.mkv +梁剑东-爱不到是最好,http://em.21dtv.com/songs/60119725.mkv +向蕙玲-阿爸的膨纱衫,http://em.21dtv.com/songs/60006714.mkv +姜育恒+黑龙-爱不到的滋味,http://em.21dtv.com/songs/60006977.mkv +黑龙-爱不到的滋味,http://em.21dtv.com/songs/60006976.mkv +M2-爱不爱坏不坏,http://em.21dtv.com/songs/60006964.mkv +宇海文-爱不爱都是罪,http://em.21dtv.com/songs/60063838.mkv +誓言-爱不爱都是错,http://em.21dtv.com/songs/60062910.mkv +陈盈洁-阿爸へ脚踏车,http://em.21dtv.com/songs/60006711.mkv +SOULJA+青山テルマKKNYLY-ここにいるよ,http://em.21dtv.com/songs/60074233.mkv +大冢爱-クラゲ 流れ星,http://em.21dtv.com/songs/60006658.mkv +ふくい舞-いくたびの樱,http://em.21dtv.com/songs/60006647.mkv +邓丽君-アカシアの梦(演唱会),http://em.21dtv.com/songs/60006641.mkv +佚名-かあさんの歌,http://em.21dtv.com/songs/60006652.mkv +松浦亚弥-チョコレート魂,http://em.21dtv.com/songs/60006676.mkv +松たか子-みんなひとり,http://em.21dtv.com/songs/60006700.mkv +邓丽君-ノスタ ルジア(演唱会),http://em.21dtv.com/songs/60006680.mkv +青山黛玛-そばにいるね,http://em.21dtv.com/songs/60006673.mkv +MAY'N-シンジテミル,http://em.21dtv.com/songs/60006668.mkv +佚名-さくらさくら,http://em.21dtv.com/songs/60006662.mkv +BOY STYLE-ココロのちず,http://em.21dtv.com/songs/60006659.mkv +安田レイ-きみのうた,http://em.21dtv.com/songs/60135119.mkv +井上苑子-メッセージ,http://em.21dtv.com/songs/60134870.mkv +まふまふ-いかないで,http://em.21dtv.com/songs/60134831.mkv +Plus-キャンバス,http://em.21dtv.com/songs/60120235.mkv +丸本莉子-つなぐもの,http://em.21dtv.com/songs/60119231.mkv +井上苑子-だいすき。,http://em.21dtv.com/songs/60116537.mkv +JUJU-ありがとう,http://em.21dtv.com/songs/60109828.mkv +さくら学院-颜笑れ!!,http://em.21dtv.com/songs/60098058.mkv +德永英明-やさしいね,http://em.21dtv.com/songs/60105903.mkv +袁小迪-呒通做歹子,http://em.21dtv.com/songs/60103557.mkv +岚-リフレイン(演唱会),http://em.21dtv.com/songs/60065760.mkv +J SOUL BROTHERS-リフレイン,http://em.21dtv.com/songs/60063829.mkv +SEVEN OOPS-ラヴァーズ,http://em.21dtv.com/songs/60060964.mkv +户松遥-ユメセカイ,http://em.21dtv.com/songs/60071703.mkv +EXILE-もっと强く,http://em.21dtv.com/songs/60062025.mkv +Elisa-ミレナリオ,http://em.21dtv.com/songs/60104666.mkv +関ジャニ∞-マイホーム,http://em.21dtv.com/songs/60062401.mkv +NMB48-捕食者たち,http://em.21dtv.com/songs/60063992.mkv +AKB48-羊饲いの旅,http://em.21dtv.com/songs/60070118.mkv +V6-バリバリbuddy!,http://em.21dtv.com/songs/60065755.mkv +花泽香菜-初恋ノオト,http://em.21dtv.com/songs/60070599.mkv +AKB48-ノエルの夜,http://em.21dtv.com/songs/60063826.mkv +松田圣子-泪のしずく,http://em.21dtv.com/songs/60068427.mkv +NICO TOUCHES-手をたたけ,http://em.21dtv.com/songs/60062120.mkv +ゴールデンボンバー-仆クエスト,http://em.21dtv.com/songs/60061491.mkv +中孝介-それぞれに,http://em.21dtv.com/songs/60063451.mkv +MIHIMARU GT-ずっと君と…,http://em.21dtv.com/songs/60070431.mkv +YU-YU-君とずっと,http://em.21dtv.com/songs/60062185.mkv +NO3B-キスの流星,http://em.21dtv.com/songs/60069163.mkv +恵比寿マスカッツ-おかあさん,http://em.21dtv.com/songs/60065742.mkv +小野恵令奈-えれぴょん,http://em.21dtv.com/songs/60068019.mkv +秦基博-アルタイル,http://em.21dtv.com/songs/60071697.mkv +大桥卓弥-ありがとう,http://em.21dtv.com/songs/60062306.mkv +JAY'ED-雨のち晴れ,http://em.21dtv.com/songs/60067735.mkv +芦田爱菜-雨に愿いを,http://em.21dtv.com/songs/60071465.mkv +SKE48-青空片想い,http://em.21dtv.com/songs/60069732.mkv +山下智久-爱 テキサス,http://em.21dtv.com/songs/60065825.mkv +强辩乐团-转转转运歌,http://em.21dtv.com/songs/60059462.mkv +成龙-壮志在我胸(演唱会),http://em.21dtv.com/songs/60059487.mkv +梁玉荣-再折长亭柳(戏曲),http://em.21dtv.com/songs/60092926.mkv +谢长廷-政治这条路(无原唱),http://em.21dtv.com/songs/60081274.mkv +锃亮组合-重铸中国梦,http://em.21dtv.com/songs/60122206.mkv +王莉-走在艳阳天,http://em.21dtv.com/songs/60105257.mkv +荒山亮-再战英雄路,http://em.21dtv.com/songs/60107968.mkv +徐若瑄-坐在月亮上,http://em.21dtv.com/songs/60060691.mkv +陈威全-坐在月亮里,http://em.21dtv.com/songs/60060690.mkv +林志炫-抓住一颗心,http://em.21dtv.com/songs/60059415.mkv +任家萱-重作一个梦,http://em.21dtv.com/songs/60065499.mkv +佚名-走在阳光里,http://em.21dtv.com/songs/60059980.mkv +林慧萍-走在阳光里,http://em.21dtv.com/songs/60059979.mkv +威仔+夏凌兮-最自由的笑,http://em.21dtv.com/songs/60122645.mkv +施文彬-最重要的事,http://em.21dtv.com/songs/60131467.mkv +MAKIYO-站在云端上,http://em.21dtv.com/songs/60123500.mkv +群星-最重要的人,http://em.21dtv.com/songs/60123084.mkv +佚名-最重要的人,http://em.21dtv.com/songs/60060461.mkv +[Group] +groupName=十六万歌曲MV等 - 84 +可米小子-最重要的你,http://em.21dtv.com/songs/60089199.mkv +何雁诗-最真心一对,http://em.21dtv.com/songs/60120310.mkv +蔡国庆-智者行天下,http://em.21dtv.com/songs/60129582.mkv +李彩桦-正在想念谁,http://em.21dtv.com/songs/60058364.mkv +吴克群-住在心里面,http://em.21dtv.com/songs/60059270.mkv +印玉莲-只在修行中,http://em.21dtv.com/songs/60099131.mkv +东于哲-最最喜欢你,http://em.21dtv.com/songs/60062335.mkv +杨臣刚-最真心的话,http://em.21dtv.com/songs/60060456.mkv +群星-总在我身旁,http://em.21dtv.com/songs/60059851.mkv +星光帮-总在我身边,http://em.21dtv.com/songs/60089325.mkv +佚名-珍重我的爱,http://em.21dtv.com/songs/60058013.mkv +罗时丰+张秀卿-珍重我的爱(无原唱),http://em.21dtv.com/songs/60058012.mkv +佚名-蜘蛛女之吻,http://em.21dtv.com/songs/60058699.mkv +宋旭-真正男子汉,http://em.21dtv.com/songs/60128993.mkv +司空雷+蓝波-真正男子汉,http://em.21dtv.com/songs/60121483.mkv +潘玮柏-站在你这边,http://em.21dtv.com/songs/60057520.mkv +黄凯芹-站在你那边,http://em.21dtv.com/songs/60093526.mkv +约瑟翰 庞麦郎-阻止你哭泣,http://em.21dtv.com/songs/60107943.mkv +庞麦郎-阻止你哭泣,http://em.21dtv.com/songs/60107702.mkv +费玉清-醉在你怀中,http://em.21dtv.com/songs/60060549.mkv +蔡琴-醉在你怀中,http://em.21dtv.com/songs/60060548.mkv +白光-醉在你怀中,http://em.21dtv.com/songs/60060547.mkv +阿玻-醉在女儿国(演唱会),http://em.21dtv.com/songs/60060550.mkv +曹雷-转载你的爱,http://em.21dtv.com/songs/60059460.mkv +邵大伦-再重来一次,http://em.21dtv.com/songs/60128465.mkv +周二珂-走在冷风中,http://em.21dtv.com/songs/60127840.mkv +佳佳-走在冷风中,http://em.21dtv.com/songs/60133373.mkv +刘思涵-走在冷风中,http://em.21dtv.com/songs/60079750.mkv +范逸臣-在这里分手,http://em.21dtv.com/songs/60057213.mkv +F4-在这里等你,http://em.21dtv.com/songs/60057212.mkv +翁立友-作阵看烟火,http://em.21dtv.com/songs/60038235.mkv +周厚光-自在江湖笑,http://em.21dtv.com/songs/60059804.mkv +曹尔真-走自己的路,http://em.21dtv.com/songs/60065520.mkv +王飞雪-在最后之前,http://em.21dtv.com/songs/60135573.mkv +叶幼琪-醉折海棠花(戏曲),http://em.21dtv.com/songs/60092422.mkv +曾治伦-战争后逃兵,http://em.21dtv.com/songs/60057496.mkv +SOOL J+Wable+Ultima-走在花路上,http://em.21dtv.com/songs/60134802.mkv +九江天空-在这个夜里,http://em.21dtv.com/songs/60084516.mkv +高峰-站在高山唱(无原唱),http://em.21dtv.com/songs/60057518.mkv +阿鲁阿卓+程琳-站在高岗上,http://em.21dtv.com/songs/60098841.mkv +汪小敏-站在高岗上,http://em.21dtv.com/songs/60096383.mkv +李丽霞+方伊琪-站在高岗上,http://em.21dtv.com/songs/60092779.mkv +张韶涵-站在高岗上,http://em.21dtv.com/songs/60087107.mkv +胡锦+谢雷-站在高岗上(演唱会),http://em.21dtv.com/songs/60079524.mkv +大山+陈俊彤-站在高岗上,http://em.21dtv.com/songs/60071510.mkv +庄学忠+陈美娥-站在高岗上,http://em.21dtv.com/songs/60057517.mkv +张惠妹-站在高岗上,http://em.21dtv.com/songs/60057516.mkv +张惠妹-站在高岗上(演唱会),http://em.21dtv.com/songs/60057515.mkv +叶丽仪-站在高岗上(演唱会),http://em.21dtv.com/songs/60057514.mkv +谢雷+甄秀珍-站在高岗上(演唱会),http://em.21dtv.com/songs/60057513.mkv +黄乐其+黄政-最糟糕的事,http://em.21dtv.com/songs/60110725.mkv +刀郎-辗转泛泪光,http://em.21dtv.com/songs/60070226.mkv +林忆莲-站在第一排(演唱会),http://em.21dtv.com/songs/60057512.mkv +单色凌-执着的形状,http://em.21dtv.com/songs/60099825.mkv +高原-最真的幸福,http://em.21dtv.com/songs/60109043.mkv +周旭风-追逐的天赋,http://em.21dtv.com/songs/60084598.mkv +赵咏华-最真的期待,http://em.21dtv.com/songs/60060455.mkv +曹星-真正的朋友,http://em.21dtv.com/songs/60121735.mkv +阿权-最真的朋友,http://em.21dtv.com/songs/60121051.mkv +小青岛+李志洲-真正的朋友,http://em.21dtv.com/songs/60116746.mkv +钟SIR+何浩威+谢心羽+罗苑文-种子的梦想,http://em.21dtv.com/songs/60135857.mkv +张柏芝-终止的开始,http://em.21dtv.com/songs/60092637.mkv +姜涛-执着的飞蛾,http://em.21dtv.com/songs/60058716.mkv +萧敬腾+劳晓音+谷微-最长的电影(最美和声)(现场版),http://em.21dtv.com/songs/60101164.mkv +孙悦-真正的懂你,http://em.21dtv.com/songs/60090903.mkv +鸿伟+乐萱-最真的承诺,http://em.21dtv.com/songs/60067840.mkv +庄学忠-珍重道别离,http://em.21dtv.com/songs/60058009.mkv +吕珊-再折长亭柳(演唱会),http://em.21dtv.com/songs/60057023.mkv +李美丽-赵州禅茶颂,http://em.21dtv.com/songs/60079540.mkv +刘耔彤-装作不在乎,http://em.21dtv.com/songs/60087420.mkv +阿吉仔-作阵彼一暝,http://em.21dtv.com/songs/60063260.mkv +赵雨航-醉在爱情里,http://em.21dtv.com/songs/60130778.mkv +赵雨航-醉在爱情里,http://em.21dtv.com/songs/60123211.mkv +赵雨航-醉在爱情里,http://em.21dtv.com/songs/60118076.mkv +顺子-只要在一起,http://em.21dtv.com/songs/60058551.mkv +余安安-自由在我手,http://em.21dtv.com/songs/60059784.mkv +佚名-忠于职守歌,http://em.21dtv.com/songs/60059007.mkv +罗敏庄-这一种感觉(演唱会),http://em.21dtv.com/songs/60079559.mkv +许冠杰-这一种感觉,http://em.21dtv.com/songs/60057951.mkv +卓依婷-找一字代替,http://em.21dtv.com/songs/60087466.mkv +徐彪-咱要赚大钱,http://em.21dtv.com/songs/60115174.mkv +徐彪-咱要赚大钱,http://em.21dtv.com/songs/60115173.mkv +程琳-只有这地球,http://em.21dtv.com/songs/60089430.mkv +詹曼铃-在雨中等你,http://em.21dtv.com/songs/60063358.mkv +彭羚-只因有着你,http://em.21dtv.com/songs/60058574.mkv +郭富城-只因拥有你,http://em.21dtv.com/songs/60058571.mkv +吴国华-周瑜忆小乔,http://em.21dtv.com/songs/60059190.mkv +向爱平-战友圆舞曲,http://em.21dtv.com/songs/60111747.mkv +李建复-转眼一瞬间,http://em.21dtv.com/songs/60094145.mkv +张新海-昨夜又梦你,http://em.21dtv.com/songs/60063407.mkv +林宝-终于要离开,http://em.21dtv.com/songs/60059049.mkv +孙露-怎样遇见你,http://em.21dtv.com/songs/60127906.mkv +方怡萍-只有一个你,http://em.21dtv.com/songs/60101360.mkv +蔡依林-只有一个你,http://em.21dtv.com/songs/60058618.mkv +佚名-只因一个你,http://em.21dtv.com/songs/60058570.mkv +徐佳莹-只要一分钟,http://em.21dtv.com/songs/60111908.mkv +徐佳莹-只要一分钟,http://em.21dtv.com/songs/60100048.mkv +陈奕迅-终于一百日,http://em.21dtv.com/songs/60059050.mkv +王子硕+王圆圆-仲夜夏之梦,http://em.21dtv.com/songs/60110390.mkv +曹芙嘉+汤子星-在银杏树下,http://em.21dtv.com/songs/60079491.mkv +佚名-怎样信赖你,http://em.21dtv.com/songs/60057408.mkv +小多-昨夜西湖雨,http://em.21dtv.com/songs/60079830.mkv +邓志驹-重阳行好运,http://em.21dtv.com/songs/60059171.mkv +合唱-只因喜欢你,http://em.21dtv.com/songs/60089200.mkv +林海峰+周美茵-只因喜欢你,http://em.21dtv.com/songs/60058569.mkv +软硬天师-只因喜欢你(演唱会),http://em.21dtv.com/songs/60058568.mkv +邓丽欣+I LOVE YOU BO-只因喜欢你(演唱会),http://em.21dtv.com/songs/60058567.mkv +林海峰+王菲-只因喜欢faye,http://em.21dtv.com/songs/60058566.mkv +王菲-只有我自己,http://em.21dtv.com/songs/60088319.mkv +德乾旺姆-藏语文之歌,http://em.21dtv.com/songs/60012053.mkv +童唱-只要我长大,http://em.21dtv.com/songs/60058544.mkv +TWINS-只要我长大,http://em.21dtv.com/songs/60058543.mkv +吕方-只因我太痴(演唱会),http://em.21dtv.com/songs/60058565.mkv +林隆璇-只愿为你等,http://em.21dtv.com/songs/60058625.mkv +薇妮-终于我哭了,http://em.21dtv.com/songs/60130732.mkv +天织堂-找一晚快乐,http://em.21dtv.com/songs/60057718.mkv +任贤齐-只要我甘心,http://em.21dtv.com/songs/60058541.mkv +郭富城-只要我的爱,http://em.21dtv.com/songs/60058540.mkv +王汇筑-只要我长大,http://em.21dtv.com/songs/60124263.mkv +王杰-只因我爱你,http://em.21dtv.com/songs/60058564.mkv +蔡依林-做一天的你,http://em.21dtv.com/songs/60060744.mkv +杨波-战友是什么,http://em.21dtv.com/songs/60088077.mkv +佚名-终于失去你,http://em.21dtv.com/songs/60059045.mkv +艾可-终于失去你,http://em.21dtv.com/songs/60059044.mkv +高向鹏-自由尚介好,http://em.21dtv.com/songs/60059782.mkv +陈以桐-终于说出口,http://em.21dtv.com/songs/60101698.mkv +唐一嘉+萧敬腾-终于说出口,http://em.21dtv.com/songs/60094442.mkv +小宇-终于说出口,http://em.21dtv.com/songs/60059046.mkv +姚匡玉-再也输不起(无原唱),http://em.21dtv.com/songs/60089780.mkv +佚名-自有人评说,http://em.21dtv.com/songs/60059796.mkv +童丽-自有人评说,http://em.21dtv.com/songs/60059795.mkv +毛阿敏-自有人评说,http://em.21dtv.com/songs/60059794.mkv +张智霖-这一曲再唱,http://em.21dtv.com/songs/60057936.mkv +张学友+邝美云-祇有情永在,http://em.21dtv.com/songs/60092582.mkv +李乐诗+罗嘉良-只有情永在(演唱会),http://em.21dtv.com/songs/60079625.mkv +莫旭秋+樊奕敏-只有情永在(演唱会),http://em.21dtv.com/songs/60065487.mkv +周慧敏+张学友-只有情永在(演唱会),http://em.21dtv.com/songs/60058608.mkv +古巨基-只友情不变,http://em.21dtv.com/songs/60090780.mkv +小文-左眼皮跳跳,http://em.21dtv.com/songs/60060658.mkv +胡雯-左眼皮跳跳,http://em.21dtv.com/songs/60060657.mkv +阎维文-这一片热土,http://em.21dtv.com/songs/60057932.mkv +黄淇-只有你最真(无原唱),http://em.21dtv.com/songs/60058607.mkv +汤灿-只因你最美,http://em.21dtv.com/songs/60058560.mkv +李殊-只有你最好,http://em.21dtv.com/songs/60058606.mkv +庄之影-只有你知道,http://em.21dtv.com/songs/60061900.mkv +许诺-只要你愿意,http://em.21dtv.com/songs/60080326.mkv +苏晴+程实-只要你愿意,http://em.21dtv.com/songs/60067796.mkv +王识贤-只要你越头,http://em.21dtv.com/songs/60058524.mkv +李嘉-只有你一人(无原唱),http://em.21dtv.com/songs/60058605.mkv +郑伊健+吴君如-只因你心醉,http://em.21dtv.com/songs/60058559.mkv +赵鑫-只要你幸福,http://em.21dtv.com/songs/60135777.mkv +陈佳-只要你幸福,http://em.21dtv.com/songs/60098848.mkv +张磊-只要你幸福,http://em.21dtv.com/songs/60086253.mkv +曾春年-只要你幸福,http://em.21dtv.com/songs/60063346.mkv +应昌佑-只要你幸福,http://em.21dtv.com/songs/60058522.mkv +SWIN S-只因你太美,http://em.21dtv.com/songs/60129994.mkv +汤灿-只因你太美,http://em.21dtv.com/songs/60058558.mkv +巫启贤-只因你伤心,http://em.21dtv.com/songs/60058557.mkv +PCHY-只有你pieng ter,http://em.21dtv.com/songs/60058599.mkv +蔡小虎-只要你平安,http://em.21dtv.com/songs/60058517.mkv +刘牧-只要你快乐,http://em.21dtv.com/songs/60070244.mkv +张信哲-只要你快乐,http://em.21dtv.com/songs/60058515.mkv +汪佩蓉-只要你快乐,http://em.21dtv.com/songs/60058514.mkv +金巧巧-只要你快乐,http://em.21dtv.com/songs/60058513.mkv +华雪-只要你快乐,http://em.21dtv.com/songs/60058512.mkv +办桌二人组-只要你快乐,http://em.21dtv.com/songs/60058511.mkv +周传雄-只要你还在,http://em.21dtv.com/songs/60058505.mkv +龙千玉-只要你欢喜,http://em.21dtv.com/songs/60058508.mkv +金城武-只要你和我,http://em.21dtv.com/songs/60058507.mkv +侯博文-战友你好吗,http://em.21dtv.com/songs/60122489.mkv +谭锡禧+李国祥-总有你鼓励(演唱会),http://em.21dtv.com/songs/60084608.mkv +陈德彰+李国祥-总有你鼓励(演唱会),http://em.21dtv.com/songs/60084607.mkv +黑妹+李国祥-总有你鼓励(演唱会),http://em.21dtv.com/songs/60079739.mkv +伦永亮+李国祥-总有你鼓励,http://em.21dtv.com/songs/60059843.mkv +谭咏麟+李克勤-总有你鼓励(演唱会),http://em.21dtv.com/songs/60059842.mkv +易欣-只要你的美,http://em.21dtv.com/songs/60058498.mkv +干露露-只要你的爱,http://em.21dtv.com/songs/60086252.mkv +谢华+卢惠美-只要你的爱,http://em.21dtv.com/songs/60066596.mkv +卢惠美-只要你的爱,http://em.21dtv.com/songs/60058497.mkv +刘雨潼-只要你爱我,http://em.21dtv.com/songs/60084564.mkv +郑中基-只要你爱我,http://em.21dtv.com/songs/60058496.mkv +王赞-只要你爱我,http://em.21dtv.com/songs/60058495.mkv +余天-昨夜梦醒时,http://em.21dtv.com/songs/60060616.mkv +佚名-昨夜梦醒时,http://em.21dtv.com/songs/60060615.mkv +青山-昨夜梦醒时,http://em.21dtv.com/songs/60060614.mkv +李翊君-昨夜梦醒时,http://em.21dtv.com/songs/60060613.mkv +李茂山-昨夜梦醒时,http://em.21dtv.com/songs/60060612.mkv +许冠杰-知音梦里寻,http://em.21dtv.com/songs/60058686.mkv +龙飘飘-昨夜梦见你,http://em.21dtv.com/songs/60060611.mkv +邰正宵-再一秒就好,http://em.21dtv.com/songs/60070216.mkv +张学友-昨夜梦魂中,http://em.21dtv.com/songs/60060610.mkv +邓丽君-昨夜梦魂中,http://em.21dtv.com/songs/60060609.mkv +张学友-昨夜梦魂中(演唱会),http://em.21dtv.com/songs/60060608.mkv +叶丽仪-昨夜梦魂中(演唱会),http://em.21dtv.com/songs/60060607.mkv +董鸣华-做一名公仆,http://em.21dtv.com/songs/60106247.mkv +王杰-早已明白你,http://em.21dtv.com/songs/60091709.mkv +杨宗纬-这一路走来,http://em.21dtv.com/songs/60079557.mkv +方力申-钟意了知己,http://em.21dtv.com/songs/60059069.mkv +林姗+翁立友-只有来认命,http://em.21dtv.com/songs/60058588.mkv +张学友-早已离开我(演唱会),http://em.21dtv.com/songs/60057315.mkv +小保安张争-战友离别情,http://em.21dtv.com/songs/60115869.mkv +胡凯欣-这样可以吗(无原唱),http://em.21dtv.com/songs/60090123.mkv +马艺航-主要看气质,http://em.21dtv.com/songs/60119064.mkv +魏菲儿-主要看气质,http://em.21dtv.com/songs/60118200.mkv +冯雪刚-主要看气质,http://em.21dtv.com/songs/60116569.mkv +赵学而-终于可结束,http://em.21dtv.com/songs/60093226.mkv +周华健-终于可结束,http://em.21dtv.com/songs/60089739.mkv +李如麟-怎样看乎开(无原唱),http://em.21dtv.com/songs/60095613.mkv +杨永聪-这一刻爱吧,http://em.21dtv.com/songs/60125753.mkv +付辛博-这一刻爱吧,http://em.21dtv.com/songs/60080509.mkv +温拿乐队-钟意就钟意,http://em.21dtv.com/songs/60059068.mkv +温拿乐队-钟意就钟意(演唱会),http://em.21dtv.com/songs/60059067.mkv +佚名-志愿军战歌,http://em.21dtv.com/songs/60058828.mkv +群星-重阳九月九,http://em.21dtv.com/songs/60059172.mkv +DAYDREAM+许亮宇-最要紧好玩,http://em.21dtv.com/songs/60120202.mkv +宋孟君+蔡忻如-纸印记的爱,http://em.21dtv.com/songs/60094478.mkv +方皓玟+RubberBand-终于好天气,http://em.21dtv.com/songs/60125623.mkv +RUBBERBAND+方皓玟-终于好天气,http://em.21dtv.com/songs/60123529.mkv +焦庆军-自由换伤口,http://em.21dtv.com/songs/60061923.mkv +佚名-知音何处寻,http://em.21dtv.com/songs/60058685.mkv +周璇-知音何处觅,http://em.21dtv.com/songs/60058684.mkv +佚名-找一个雨天,http://em.21dtv.com/songs/60057713.mkv +刘德华-找一个情人,http://em.21dtv.com/songs/60057707.mkv +任贤齐-只要跟你好,http://em.21dtv.com/songs/60058492.mkv +陈夏莲+李明洋-找一个地方,http://em.21dtv.com/songs/60135910.mkv +于立成-找一个地方,http://em.21dtv.com/songs/60057703.mkv +方顺吉-怎样放袂离,http://em.21dtv.com/songs/60057404.mkv +舒北-最远的远方,http://em.21dtv.com/songs/60130678.mkv +金志文+吉娜-最远的远方,http://em.21dtv.com/songs/60084656.mkv +JS-最远的位置,http://em.21dtv.com/songs/60090412.mkv +佚名-昨夜的温柔,http://em.21dtv.com/songs/60060604.mkv +云天组合-这样的我们,http://em.21dtv.com/songs/60057887.mkv +张挥-折翼的天使,http://em.21dtv.com/songs/60105038.mkv +蓝乐-折翼的天使,http://em.21dtv.com/songs/60094281.mkv +游鸿明-最远的身边,http://em.21dtv.com/songs/60110352.mkv +钟镇涛-这样的日子,http://em.21dtv.com/songs/60057885.mkv +佚名-追忆当日爱,http://em.21dtv.com/songs/60059550.mkv +谢霆锋-正义大朋友,http://em.21dtv.com/songs/60093192.mkv +韩红-这样的女人,http://em.21dtv.com/songs/60057884.mkv +杨钰莹-最远的旅行,http://em.21dtv.com/songs/60060446.mkv +刘德华-昨夜渡轮上,http://em.21dtv.com/songs/60060605.mkv +波拉-自由的灵魂,http://em.21dtv.com/songs/60110339.mkv +王嘉诚+熊伽林-自由的节奏,http://em.21dtv.com/songs/60059770.mkv +吴申梅-走音的吉他,http://em.21dtv.com/songs/60071549.mkv +黄致列-最远的距离,http://em.21dtv.com/songs/60134507.mkv +XUN-最远的距离,http://em.21dtv.com/songs/60131121.mkv +TANK-最远的距离,http://em.21dtv.com/songs/60079820.mkv +张平-这样的结果,http://em.21dtv.com/songs/60115906.mkv +李逸-专一的姑娘,http://em.21dtv.com/songs/60059426.mkv +沙宝亮-昨夜的风雨,http://em.21dtv.com/songs/60124199.mkv +张靓颖-终于等到你,http://em.21dtv.com/songs/60119553.mkv +张靓颖-终于等到你,http://em.21dtv.com/songs/60081746.mkv +洪彤+方展荣-正月点灯笼,http://em.21dtv.com/songs/60058360.mkv +蘑菇兄弟-自由的奔跑,http://em.21dtv.com/songs/60102715.mkv +庞晓宇-这样的爱你,http://em.21dtv.com/songs/60057883.mkv +龚诗嘉-再一次拥有,http://em.21dtv.com/songs/60057018.mkv +张学友-这一次意外(演唱会),http://em.21dtv.com/songs/60057913.mkv +江美琪-再一次也好,http://em.21dtv.com/songs/60057017.mkv +李克勤-再一次想你,http://em.21dtv.com/songs/60057016.mkv +李克勤-再一次想你(演唱会),http://em.21dtv.com/songs/60057015.mkv +阳帆-再一次相见,http://em.21dtv.com/songs/60087098.mkv +陈信宏-再一次相见,http://em.21dtv.com/songs/60071494.mkv +郑心羽-再一次幸福,http://em.21dtv.com/songs/60107271.mkv +陈坤-再一次实现,http://em.21dtv.com/songs/60057013.mkv +黎娅-再一次入梦,http://em.21dtv.com/songs/60057012.mkv +陆锋-再一次起飞,http://em.21dtv.com/songs/60057011.mkv +任贤齐-再一次好吗,http://em.21dtv.com/songs/60057009.mkv +李梓菡-再一次爱我,http://em.21dtv.com/songs/60081656.mkv +COLOR-这一次爱你,http://em.21dtv.com/songs/60066591.mkv +金光灿-再也不能够,http://em.21dtv.com/songs/60134347.mkv +赵仕瑾-再也不可能,http://em.21dtv.com/songs/60107234.mkv +赵仕瑾-再也不可能,http://em.21dtv.com/songs/60080363.mkv +也不见,http://em.21dtv.com/songs/60120452.mkv +刘小慧+AIRSUPPLY-再也不分离(无原唱),http://em.21dtv.com/songs/60057000.mkv +林玉英-再也不分离(无原唱),http://em.21dtv.com/songs/60056999.mkv +赵凯磊-再也不错过,http://em.21dtv.com/songs/60122142.mkv +易欣-再也不爱了,http://em.21dtv.com/songs/60116859.mkv +金波-战友啊战友,http://em.21dtv.com/songs/60108937.mkv +吴奇隆-只因爱着你,http://em.21dtv.com/songs/60058556.mkv +孙铭泽-战友啊兄弟,http://em.21dtv.com/songs/60098257.mkv +潘玮柏+李孝利-只要爱上你,http://em.21dtv.com/songs/60058490.mkv +金池-忠于爱情它,http://em.21dtv.com/songs/60100520.mkv +林子祥-这样爱过你,http://em.21dtv.com/songs/60057876.mkv +潘晓峰-只有爱存在,http://em.21dtv.com/songs/60069009.mkv +织田かおり-追想カノン,http://em.21dtv.com/songs/60103516.mkv +黄凯芹-珍惜这一晚,http://em.21dtv.com/songs/60058003.mkv +黄凯芹-珍惜这一晚(演唱会),http://em.21dtv.com/songs/60058002.mkv +黑妹-珍惜再会时(演唱会),http://em.21dtv.com/songs/60079565.mkv +林静仪-珍惜再回时(演唱会),http://em.21dtv.com/songs/60079564.mkv +梅艳芳-珍惜再会时,http://em.21dtv.com/songs/60058001.mkv +梅艳芳-珍惜再会时(演唱会),http://em.21dtv.com/songs/60058000.mkv +阿权-最炫中国梦,http://em.21dtv.com/songs/60087163.mkv +宋祖英-衷心祝福你,http://em.21dtv.com/songs/60090970.mkv +潘裕文-最想做的事,http://em.21dtv.com/songs/60060431.mkv +李克勤-只想找到你,http://em.21dtv.com/songs/60058486.mkv +龙千玉+蔡小虎-真心只爱你,http://em.21dtv.com/songs/60058277.mkv +王子硕+王圆圆-仲夏夜之梦,http://em.21dtv.com/songs/60125911.mkv +San E+Raina-仲夏夜之蜜,http://em.21dtv.com/songs/60101819.mkv +杨千嬅-仲夏夜之梦,http://em.21dtv.com/songs/60059079.mkv +凌琳-仲夏夜之梦,http://em.21dtv.com/songs/60059078.mkv +杨千嬅-仲夏夜之恋,http://em.21dtv.com/songs/60092825.mkv +蔡胜裕-真心遇无心(无原唱),http://em.21dtv.com/songs/60095926.mkv +谢金燕-只想要简单,http://em.21dtv.com/songs/60065486.mkv +凌琳-仲夏夜的梦,http://em.21dtv.com/songs/60089155.mkv +萧磊-最炫小苹果,http://em.21dtv.com/songs/60119930.mkv +筷子兄弟+凤凰传奇-最炫小苹果,http://em.21dtv.com/songs/60109559.mkv +筷子兄弟+凤凰传奇-最炫小苹果,http://em.21dtv.com/songs/60108794.mkv +王瑞霞-真心无人欲,http://em.21dtv.com/songs/60096408.mkv +康武军-真想忘记你,http://em.21dtv.com/songs/60126856.mkv +任贤齐-诛仙我回来,http://em.21dtv.com/songs/60059206.mkv +黄妃-真心无代价,http://em.21dtv.com/songs/60058263.mkv +黄品源+梁咏琪-珍惜我的爱,http://em.21dtv.com/songs/60057996.mkv +ECHO-准许我爱你,http://em.21dtv.com/songs/60059581.mkv +大原樱子-真夏の太阳,http://em.21dtv.com/songs/60114465.mkv +向蕙玲+庄振凯-真心疼惜你,http://em.21dtv.com/songs/60119343.mkv +彭伟华-最心疼是你,http://em.21dtv.com/songs/60060434.mkv +戎梵-只想听你说,http://em.21dtv.com/songs/60061897.mkv +容祖儿-在夏天冬眠,http://em.21dtv.com/songs/60057183.mkv +杨丞琳-重新认识我,http://em.21dtv.com/songs/60063246.mkv +古巨基-至net小人类(演唱会),http://em.21dtv.com/songs/60058791.mkv +刘超华-真心惹的祸,http://em.21dtv.com/songs/60058261.mkv +魏紫祺-诛仙青云志,http://em.21dtv.com/songs/60128621.mkv +刘伟-走下去·续,http://em.21dtv.com/songs/60117575.mkv +林忆莲-真想你知道(演唱会),http://em.21dtv.com/songs/60058219.mkv +谭咏麟-只想你开心,http://em.21dtv.com/songs/60093207.mkv +凌加峻-只想你快乐,http://em.21dtv.com/songs/60087369.mkv +李克勤-只想您会意,http://em.21dtv.com/songs/60058476.mkv +李克勤-只想你会意(演唱会),http://em.21dtv.com/songs/60058475.mkv +赫拉含青-最新民族风,http://em.21dtv.com/songs/60134255.mkv +王迅+凤凰传奇-最炫民族风,http://em.21dtv.com/songs/60124287.mkv +孟凡鹏+韩雷+韩传忠+龙飞龙泽-最炫民族风,http://em.21dtv.com/songs/60084657.mkv +叶玮庭+李秋泽-最炫民族风,http://em.21dtv.com/songs/60081561.mkv +凤凰传奇-最炫民族风,http://em.21dtv.com/songs/60060444.mkv +凤凰传奇-最炫民族风(演唱会),http://em.21dtv.com/songs/60060443.mkv +君子-摘下满天星,http://em.21dtv.com/songs/60105686.mkv +郑少秋-摘下满天星,http://em.21dtv.com/songs/60057429.mkv +余天-只想留住你,http://em.21dtv.com/songs/60058473.mkv +张善为-醉醒拢是你,http://em.21dtv.com/songs/60061536.mkv +黑皮-醉醒拢是你,http://em.21dtv.com/songs/60060538.mkv +枫桥-掌心里的雪,http://em.21dtv.com/songs/60057643.mkv +杜雯媞-掌心里的海,http://em.21dtv.com/songs/60067785.mkv +孙晓雨-真心来爱我,http://em.21dtv.com/songs/60079580.mkv +于金胜-真心来爱我,http://em.21dtv.com/songs/60071517.mkv +黄思婷-正想考考你(无原唱),http://em.21dtv.com/songs/60058355.mkv +吕明银+许民财-真心甲你疼,http://em.21dtv.com/songs/60127820.mkv +王小荣-总想见到你,http://em.21dtv.com/songs/60120757.mkv +李玟-真想见到你,http://em.21dtv.com/songs/60058218.mkv +张可儿-真心换真情,http://em.21dtv.com/songs/60084547.mkv +雪儿-真心换真情,http://em.21dtv.com/songs/60079579.mkv +程响-真心换伤心,http://em.21dtv.com/songs/60058253.mkv +佚名-再向虎山行,http://em.21dtv.com/songs/60056996.mkv +枫舞-知心好朋友,http://em.21dtv.com/songs/60108629.mkv +高向鹏-真心换酷刑,http://em.21dtv.com/songs/60100658.mkv +吴宗宪-真心换绝情,http://em.21dtv.com/songs/60058252.mkv +吴汉书-真心换绝情,http://em.21dtv.com/songs/60058251.mkv +黄乙玲-真心换绝情,http://em.21dtv.com/songs/60058250.mkv +柯泯薰-最喜欢的你,http://em.21dtv.com/songs/60097677.mkv +叶玉卿-真心换爱心,http://em.21dtv.com/songs/60058249.mkv +胡大亮-衷心感谢你,http://em.21dtv.com/songs/60124374.mkv +何旭-只想告诉你,http://em.21dtv.com/songs/60121365.mkv +玄鸟传说-最炫广场舞,http://em.21dtv.com/songs/60128208.mkv +玄鸟传说-最炫广场舞,http://em.21dtv.com/songs/60113839.mkv +飞轮海-找幸福给你,http://em.21dtv.com/songs/60057695.mkv +苏有朋-左心房的痛,http://em.21dtv.com/songs/60060655.mkv +钟嘉欣-最幸福的事,http://em.21dtv.com/songs/60070283.mkv +梁文音-最幸福的事,http://em.21dtv.com/songs/60060442.mkv +DJ-最幸福的人,http://em.21dtv.com/songs/60129919.mkv +丽菲-最幸福的人,http://em.21dtv.com/songs/60128738.mkv +曾春年-最幸福的人,http://em.21dtv.com/songs/60060441.mkv +李昀泽+陈飞好-最幸福的歌,http://em.21dtv.com/songs/60118674.mkv +张杉弟-真心的祝愿,http://em.21dtv.com/songs/60125510.mkv +方顺吉-真心的知已,http://em.21dtv.com/songs/60095557.mkv +谭咏麟-珍惜的珍惜(演唱会),http://em.21dtv.com/songs/60057992.mkv +方顺吉-真心的知己,http://em.21dtv.com/songs/60058239.mkv +向蕙玲-真心到永远,http://em.21dtv.com/songs/60119342.mkv +高旗-祖先的阴影,http://em.21dtv.com/songs/60060031.mkv +康雅岚-崭新的一天,http://em.21dtv.com/songs/60057454.mkv +张善为-真夏的樱花,http://em.21dtv.com/songs/60058213.mkv +李国祥-摘星的晚上,http://em.21dtv.com/songs/60057437.mkv +谭咏麟-知心当玩偶,http://em.21dtv.com/songs/60058678.mkv +谭咏麟+陈晓东-知心当玩偶(演唱会),http://em.21dtv.com/songs/60058677.mkv +丁当-最小的伟大,http://em.21dtv.com/songs/60134838.mkv +谢雷+黄小菁-真心的情人(无原唱),http://em.21dtv.com/songs/60058237.mkv +张学友-真心的朋友,http://em.21dtv.com/songs/60058236.mkv +倪子越-只想对你说,http://em.21dtv.com/songs/60105595.mkv +KENT王健+星弟-只想对你说,http://em.21dtv.com/songs/60084560.mkv +潘成-只想对你说,http://em.21dtv.com/songs/60079619.mkv +英伦希-只想对你说,http://em.21dtv.com/songs/60063282.mkv +唐俪-真心的恋梦,http://em.21dtv.com/songs/60130204.mkv +刘文杰-真相的枷锁,http://em.21dtv.com/songs/60122519.mkv +余天-真心的呼唤(无原唱),http://em.21dtv.com/songs/60058235.mkv +阿格尔-祖先的歌谣,http://em.21dtv.com/songs/60079761.mkv +许志安-真心都给你,http://em.21dtv.com/songs/60058240.mkv +侯湘婷-真夏的公车,http://em.21dtv.com/songs/60089621.mkv +彭羚-只想得到爱,http://em.21dtv.com/songs/60058466.mkv +红正-再叙东北情,http://em.21dtv.com/songs/60102614.mkv +红蔷薇-追寻的爱恋,http://em.21dtv.com/songs/60118839.mkv +卓依婷-长兴村之恋,http://em.21dtv.com/songs/60087492.mkv +佚名-自行车之恋(无原唱),http://em.21dtv.com/songs/60059684.mkv +塔宏伟-最炫草原风,http://em.21dtv.com/songs/60079817.mkv +崎君-真心藏宝图,http://em.21dtv.com/songs/60120489.mkv +陈乃荣-只想抱着你,http://em.21dtv.com/songs/60069008.mkv +谢采妘-针线本相连,http://em.21dtv.com/songs/60057966.mkv +刘依纯-真心变无心,http://em.21dtv.com/songs/60058227.mkv +徐怀钰-只想被你爱,http://em.21dtv.com/songs/60058465.mkv +钟洁+小琼-真心不可以,http://em.21dtv.com/songs/60084546.mkv +李丽珍-真心不会变,http://em.21dtv.com/songs/60058229.mkv +杨丽-真心爱着你,http://em.21dtv.com/songs/60079577.mkv +芝麻龙眼-重新爱一次,http://em.21dtv.com/songs/60059161.mkv +FREE_PARTY-真心爱过你,http://em.21dtv.com/songs/60087193.mkv +李鹏飞-最心爱的人,http://em.21dtv.com/songs/60087162.mkv +佚名-真夏の果実,http://em.21dtv.com/songs/60058212.mkv +杨培安-真我最自由,http://em.21dtv.com/songs/60058211.mkv +李青+元元-只为这一次,http://em.21dtv.com/songs/60079617.mkv +杜德伟-准我再一次,http://em.21dtv.com/songs/60059579.mkv +杜德伟-准我再一次(演唱会),http://em.21dtv.com/songs/60059578.mkv +叶民志-这我早就知(无原唱),http://em.21dtv.com/songs/60057867.mkv +朱丹-只为遇见你,http://em.21dtv.com/songs/60058458.mkv +王瑞霞-找无伊的人(无原唱),http://em.21dtv.com/songs/60057693.mkv +温兆伦+陈松伶-在我心中印,http://em.21dtv.com/songs/60057174.mkv +张学友-在我心深处,http://em.21dtv.com/songs/60057172.mkv +林晓勇-主我寻求你,http://em.21dtv.com/songs/60119706.mkv +李代沫+吉克隽逸-在我想起来,http://em.21dtv.com/songs/60079489.mkv +吉克隽逸+李代沫-在我想起来,http://em.21dtv.com/songs/60071498.mkv +尹磊磊-在我生命里,http://em.21dtv.com/songs/60135149.mkv +郑希怡-在我生命里,http://em.21dtv.com/songs/60057165.mkv +罗文-在我生命里(演唱会),http://em.21dtv.com/songs/60057164.mkv +婳诗诗+格子-最温柔的你,http://em.21dtv.com/songs/60131320.mkv +黄克林-只为你一人,http://em.21dtv.com/songs/60058456.mkv +潘龙江-只为你心动,http://em.21dtv.com/songs/60084559.mkv +刘维刚-只为你心动,http://em.21dtv.com/songs/60084558.mkv +庄伟斌-只为你倾城,http://em.21dtv.com/songs/60116765.mkv +王羽泽-做我女朋友,http://em.21dtv.com/songs/60060738.mkv +花耀飞-只为你流泪,http://em.21dtv.com/songs/60079614.mkv +侯旭-只为你流泪,http://em.21dtv.com/songs/60058454.mkv +菲麦尔-只为你回眸,http://em.21dtv.com/songs/60100431.mkv +佟丽娅-只为你歌唱,http://em.21dtv.com/songs/60097516.mkv +李炳辰-只为你付出,http://em.21dtv.com/songs/60058453.mkv +曾玮中-找无你的人,http://em.21dtv.com/songs/60135333.mkv +戴梅君-找无你的爱,http://em.21dtv.com/songs/60057688.mkv +李建衡-只为你存在,http://em.21dtv.com/songs/60058451.mkv +徐立-只忘了一些,http://em.21dtv.com/songs/60079613.mkv +佚名-准我离开吧,http://em.21dtv.com/songs/60059576.mkv +杨千嬅-致未来的你,http://em.21dtv.com/songs/60121798.mkv +Yellow!-着袜浸温泉,http://em.21dtv.com/songs/60109120.mkv +张柏芝-真我工作坊,http://em.21dtv.com/songs/60058210.mkv +陈羽凡+耀乐团-整晚的音乐,http://em.21dtv.com/songs/60095140.mkv +路逍遥-做我的新娘,http://em.21dtv.com/songs/60117264.mkv +邱永传-做我的新娘,http://em.21dtv.com/songs/60095349.mkv +杨林-做我的情人,http://em.21dtv.com/songs/60079837.mkv +杜德伟-做我的情人,http://em.21dtv.com/songs/60060736.mkv +陈娇-做我的男人,http://em.21dtv.com/songs/60099578.mkv +蒲庭龙-做我的目睛,http://em.21dtv.com/songs/60079836.mkv +尤雅-走味的咖啡,http://em.21dtv.com/songs/60059956.mkv +佚名-走味的咖啡,http://em.21dtv.com/songs/60059955.mkv +林晏如-走味的咖啡,http://em.21dtv.com/songs/60059954.mkv +ZEST-昨晚的故事,http://em.21dtv.com/songs/60103050.mkv +刘德华-真我的风采,http://em.21dtv.com/songs/60058209.mkv +徐健淇-做我的爱人(演唱会),http://em.21dtv.com/songs/60063206.mkv +来国庆-做我的爱人,http://em.21dtv.com/songs/60062557.mkv +陈志朋-做我的爱人,http://em.21dtv.com/songs/60060735.mkv +丁少华-宅无处不在,http://em.21dtv.com/songs/60086225.mkv +S.H.E-只为爱上你,http://em.21dtv.com/songs/60087211.mkv +孙宝奇-追我爱的人,http://em.21dtv.com/songs/60079707.mkv +孙宝奇-追我爱的人(舞曲版),http://em.21dtv.com/songs/60061915.mkv +陈文浩-挣它一个亿,http://em.21dtv.com/songs/60128537.mkv +何家劲-再偷一个夜,http://em.21dtv.com/songs/60056987.mkv +中央乐团-在太行山上,http://em.21dtv.com/songs/60057153.mkv +佚名-在太行山上,http://em.21dtv.com/songs/60057152.mkv +王麟-最甜蜜的爱,http://em.21dtv.com/songs/60094611.mkv +草蜢-暂停开始过,http://em.21dtv.com/songs/60057264.mkv +张宇-长头发之恋,http://em.21dtv.com/songs/60064934.mkv +代小波-昨天的昨天,http://em.21dtv.com/songs/60060581.mkv +温拿乐队-昨天的笑声,http://em.21dtv.com/songs/60060580.mkv +德乾旺姆-昨天的太阳,http://em.21dtv.com/songs/60060577.mkv +吴亦帆-昨天的天堂,http://em.21dtv.com/songs/60060578.mkv +温兆伦-昨天的明天,http://em.21dtv.com/songs/60084660.mkv +潘星雅-昨天的今天,http://em.21dtv.com/songs/60079829.mkv +云开-最痛的感情,http://em.21dtv.com/songs/60060422.mkv +那英-走上这条路,http://em.21dtv.com/songs/60088746.mkv +许美静-只是这人生,http://em.21dtv.com/songs/60058447.mkv +罗文聪+朱慧珍-暂时做憨人,http://em.21dtv.com/songs/60057263.mkv +洪荣宏-暂时再会啦(无原唱),http://em.21dtv.com/songs/60057262.mkv +SES-只是种感觉,http://em.21dtv.com/songs/60089573.mkv +佚名-尊师重道歌(无原唱),http://em.21dtv.com/songs/60060556.mkv +佚名-做事照步来,http://em.21dtv.com/songs/60024297.mkv +瑞雪-重上烟雨楼,http://em.21dtv.com/songs/60065497.mkv +龙千玉-总是要忍耐(无原唱),http://em.21dtv.com/songs/60059833.mkv +李晖-战士与母亲(演唱会),http://em.21dtv.com/songs/60084526.mkv +彭丽媛-战士与母亲,http://em.21dtv.com/songs/60079520.mkv +群星-朱氏一家亲,http://em.21dtv.com/songs/60127282.mkv +彭丽媛-掌声与喝采,http://em.21dtv.com/songs/60091173.mkv +彭丽媛-掌声与喝彩,http://em.21dtv.com/songs/60087864.mkv +童欣-只是一个吻,http://em.21dtv.com/songs/60058446.mkv +许慧欣-暂时一个人,http://em.21dtv.com/songs/60057261.mkv +群星-在岁月飞扬,http://em.21dtv.com/songs/60057150.mkv +陈峙民-紫色耶诞节,http://em.21dtv.com/songs/60059653.mkv +张蓉蓉-总是一场梦,http://em.21dtv.com/songs/60059835.mkv +张蓉蓉-总是一场梦(无原唱),http://em.21dtv.com/songs/60059834.mkv +尤雅-总是笑一笑,http://em.21dtv.com/songs/60059832.mkv +张信哲-最伤心是谁,http://em.21dtv.com/songs/60060407.mkv +江映蓉+李宵云-掌声响起来,http://em.21dtv.com/songs/60091579.mkv +孙琳-掌声响起来,http://em.21dtv.com/songs/60090934.mkv +韩宝仪-掌声响起来,http://em.21dtv.com/songs/60089540.mkv +梁静茹-掌声响起来,http://em.21dtv.com/songs/60088147.mkv +肖亮-掌声响起来(演唱会),http://em.21dtv.com/songs/60079530.mkv +张伟文+华娃-张生戏红娘,http://em.21dtv.com/songs/60057545.mkv +曾春年-最伤心的人,http://em.21dtv.com/songs/60063347.mkv +萧全-最伤心的歌,http://em.21dtv.com/songs/60060406.mkv +刘燕燕-总是为着你,http://em.21dtv.com/songs/60059831.mkv +严爵-至少我有我,http://em.21dtv.com/songs/60080022.mkv +周笔畅-只剩我一个,http://em.21dtv.com/songs/60058438.mkv +梁咏琪-左手无名指,http://em.21dtv.com/songs/60060650.mkv +阿吉仔-总是为了你,http://em.21dtv.com/songs/60095951.mkv +陈宏斌-这是我故乡,http://em.21dtv.com/songs/60086238.mkv +颜羽-这是我的岛,http://em.21dtv.com/songs/60087114.mkv +顺子-这所谓的爱,http://em.21dtv.com/songs/60126443.mkv +施文彬-这是我的爱,http://em.21dtv.com/songs/60057846.mkv +张政-再说我爱你,http://em.21dtv.com/songs/60056977.mkv +天心-至少我爱过,http://em.21dtv.com/songs/60061902.mkv +杨蕊绮-只是太想念,http://em.21dtv.com/songs/60133859.mkv +付笛声+任静-只是太想你,http://em.21dtv.com/songs/60058444.mkv +戴梅君-醉死台北城,http://em.21dtv.com/songs/60060530.mkv +张敬轩-只是太爱你,http://em.21dtv.com/songs/60061895.mkv +尧尧-在水上行走(无原唱),http://em.21dtv.com/songs/60057138.mkv +许嵩-早睡身体好,http://em.21dtv.com/songs/60124475.mkv +郭静-在树上唱歌,http://em.21dtv.com/songs/60116297.mkv +郭静-在树上唱歌,http://em.21dtv.com/songs/60057137.mkv +樊凡-转身说爱你,http://em.21dtv.com/songs/60113757.mkv +佚名-咱是强中强,http://em.21dtv.com/songs/60057253.mkv +叶启田-做事起头难,http://em.21dtv.com/songs/60060733.mkv +张清芳-走时请关窗,http://em.21dtv.com/songs/60059943.mkv +蔡依林-追杀邱比特(演唱会),http://em.21dtv.com/songs/60059537.mkv +韩磊-追随你一生,http://em.21dtv.com/songs/60059539.mkv +古巨基-致少年时代,http://em.21dtv.com/songs/60102015.mkv +孙子涵-总是那么傻,http://em.21dtv.com/songs/60117652.mkv +游鸿明-只是那个人,http://em.21dtv.com/songs/60058443.mkv +周汤豪-这是你的歌,http://em.21dtv.com/songs/60067788.mkv +陈玉建-左手摸右手,http://em.21dtv.com/songs/60127562.mkv +佚名-总是梦见你,http://em.21dtv.com/songs/60059830.mkv +董贞-最是李商隐,http://em.21dtv.com/songs/60107180.mkv +佚名-真是乐死人,http://em.21dtv.com/songs/60058206.mkv +关淑怡-最深刻一次,http://em.21dtv.com/songs/60060414.mkv +李唯枫-转身看到你,http://em.21dtv.com/songs/60071537.mkv +苏永康-最深刻的爱,http://em.21dtv.com/songs/60060413.mkv +苏永康-最深刻的爱(演唱会),http://em.21dtv.com/songs/60060412.mkv +KILLY-在世界中心,http://em.21dtv.com/songs/60057133.mkv +容祖儿-在时间面前,http://em.21dtv.com/songs/60071497.mkv +郑伊健-至少还有我,http://em.21dtv.com/songs/60058818.mkv +飞轮海-至少还有我,http://em.21dtv.com/songs/60058817.mkv +梦苇-至少还有你,http://em.21dtv.com/songs/60125827.mkv +孙楠-至少还有你,http://em.21dtv.com/songs/60107656.mkv +姚贝娜-至少还有你,http://em.21dtv.com/songs/60102095.mkv +蔡妍+ALAN-至少还有你,http://em.21dtv.com/songs/60098753.mkv +范玮琪+任韵淇-至少还有你,http://em.21dtv.com/songs/60095074.mkv +周华健-至少还有你,http://em.21dtv.com/songs/60079634.mkv +郑嘉颖-至少还有你(演唱会),http://em.21dtv.com/songs/60079633.mkv +辛晓琪-至少还有你,http://em.21dtv.com/songs/60079632.mkv +洪卓立-至少还有你(演唱会),http://em.21dtv.com/songs/60072808.mkv +谭咏麟+杜丽莎-至少还有你,http://em.21dtv.com/songs/60069013.mkv +巫启贤-至少还有你,http://em.21dtv.com/songs/60058816.mkv +林忆莲-至少还有你,http://em.21dtv.com/songs/60058815.mkv +李霄云-至少还有你,http://em.21dtv.com/songs/60058814.mkv +陈慧琳-至少还有你,http://em.21dtv.com/songs/60058813.mkv +张敬轩-至少还有你(演唱会),http://em.21dtv.com/songs/60058812.mkv +张国荣-至少还有你(演唱会),http://em.21dtv.com/songs/60058811.mkv +许志安-至少还有你(演唱会),http://em.21dtv.com/songs/60058810.mkv +谢霆锋-至少还有你(演唱会),http://em.21dtv.com/songs/60058809.mkv +萧亚轩-至少还有你(演唱会),http://em.21dtv.com/songs/60058808.mkv +温拿乐队-至少还有你(演唱会),http://em.21dtv.com/songs/60058807.mkv +邰正宵-至少还有你(演唱会),http://em.21dtv.com/songs/60058806.mkv +梁咏琪-至少还有你(演唱会),http://em.21dtv.com/songs/60058805.mkv +迪克牛仔-至少还有你(演唱会),http://em.21dtv.com/songs/60058804.mkv +SUPER JUNIOR-M-至少还有你(演唱会),http://em.21dtv.com/songs/60058803.mkv +君子-至少还有梦,http://em.21dtv.com/songs/60061901.mkv +佚名-真是好样的,http://em.21dtv.com/songs/60058205.mkv +易秀明珠-至少还有爱,http://em.21dtv.com/songs/60058802.mkv +黄明志-咱是好兄弟,http://em.21dtv.com/songs/60106495.mkv +董事长乐团-众神护台湾,http://em.21dtv.com/songs/60096483.mkv +郑志立-只是好朋友,http://em.21dtv.com/songs/60094714.mkv +张婧-只是好朋友,http://em.21dtv.com/songs/60081744.mkv +梁晓雪-只是会可惜,http://em.21dtv.com/songs/60079611.mkv +古天乐-至少还爱你,http://em.21dtv.com/songs/60058801.mkv +李书伟-掌声告诉我,http://em.21dtv.com/songs/60120598.mkv +许茹芸-只说给你听,http://em.21dtv.com/songs/60058448.mkv +张清芳-只是个孩子,http://em.21dtv.com/songs/60058441.mkv +小山-最伤感的人,http://em.21dtv.com/songs/60037867.mkv +黄征-真实的自我,http://em.21dtv.com/songs/60072800.mkv +屠洪纲-真实的自我,http://em.21dtv.com/songs/60058202.mkv +梅艳芳-装饰的眼泪(无原唱),http://em.21dtv.com/songs/60092942.mkv +叶玉卿-紫色的眼泪,http://em.21dtv.com/songs/60059652.mkv +佚名-装饰的眼泪(无原唱),http://em.21dtv.com/songs/60059474.mkv +曹芙嘉+周强-纸上的新娘,http://em.21dtv.com/songs/60033039.mkv +阿木-中暑的思念(演唱会),http://em.21dtv.com/songs/60058983.mkv +大哲-最深的伤口,http://em.21dtv.com/songs/60060411.mkv +王煊儿-转身的瞬间,http://em.21dtv.com/songs/60059449.mkv +赖雅妍-转身的时候,http://em.21dtv.com/songs/60059448.mkv +栾添翔-最傻的傻瓜,http://em.21dtv.com/songs/60062736.mkv +王可儿-最帅的逆行,http://em.21dtv.com/songs/60115292.mkv +任岩-最傻的男人,http://em.21dtv.com/songs/60060405.mkv +毛阿敏-真实的女人,http://em.21dtv.com/songs/60058201.mkv +蔡孟臻-真实的模样,http://em.21dtv.com/songs/60086247.mkv +真妮-紫色的玫瑰,http://em.21dtv.com/songs/60059651.mkv +国巍-战士的渴望,http://em.21dtv.com/songs/60079518.mkv +S.H.E-紫色的结它,http://em.21dtv.com/songs/60090427.mkv +蒋雪儿-转身的距离,http://em.21dtv.com/songs/60127362.mkv +阎维文-战士的军礼,http://em.21dtv.com/songs/60057477.mkv +爱朵女孩-真实的谎言,http://em.21dtv.com/songs/60079576.mkv +谭咏麟-真实的谎言,http://em.21dtv.com/songs/60058199.mkv +佚名-真实的谎话,http://em.21dtv.com/songs/60058198.mkv +江蕙-直时才会冻(无原唱),http://em.21dtv.com/songs/60058742.mkv +林美慧子-总是错错错,http://em.21dtv.com/songs/60090008.mkv +佚名-总是爱忍耐,http://em.21dtv.com/songs/60059829.mkv +言承旭-在ktv说爱你,http://em.21dtv.com/songs/60057027.mkv +常健鸿-至少爱过你,http://em.21dtv.com/songs/60121627.mkv +罗文-做人做到底,http://em.21dtv.com/songs/60060732.mkv +佚名-做人照步来,http://em.21dtv.com/songs/60060731.mkv +李嘉-做人照步来,http://em.21dtv.com/songs/60060730.mkv +郑少秋-做人要自由,http://em.21dtv.com/songs/60063447.mkv +李芊慧-做人要正当(无原唱),http://em.21dtv.com/songs/60095631.mkv +许冠杰-做人要识do(演唱会),http://em.21dtv.com/songs/60060728.mkv +易帆-再燃一根烟,http://em.21dtv.com/songs/60056941.mkv +刘德华-再入我怀中,http://em.21dtv.com/songs/60056943.mkv +张清芳-昨日梦已远,http://em.21dtv.com/songs/60060569.mkv +姜育恒-昨日梦已远,http://em.21dtv.com/songs/60060568.mkv +WK-做人民公仆,http://em.21dtv.com/songs/60103836.mkv +阿吉太组合-自然交响曲,http://em.21dtv.com/songs/60133027.mkv +阿吉太组合-自然交响曲,http://em.21dtv.com/songs/60123273.mkv +陈雷-自然就是美,http://em.21dtv.com/songs/60059732.mkv +李克勤-醉人的一晚,http://em.21dtv.com/songs/60105970.mkv +陈艾玲-罪人的眼睛,http://em.21dtv.com/songs/60060478.mkv +姜育恒-昨日的行李,http://em.21dtv.com/songs/60113392.mkv +赵小磊-昨日帝王篇,http://em.21dtv.com/songs/60084659.mkv +王梓蘅-昨日的美丽,http://em.21dtv.com/songs/60060567.mkv +王梓蘅-昨日的美丽(演唱会),http://em.21dtv.com/songs/60060566.mkv +邓妙华-醉人的美酒(无原唱),http://em.21dtv.com/songs/60060525.mkv +佚名-醉人的口红,http://em.21dtv.com/songs/60060524.mkv +李香兰-醉人的口红,http://em.21dtv.com/songs/60060523.mkv +白虹-醉人的口红,http://em.21dtv.com/songs/60060522.mkv +张勇-醉人的花香,http://em.21dtv.com/songs/60060521.mkv +洛桑扎西-醉人的花香,http://em.21dtv.com/songs/60060520.mkv +郑少秋-做人爱自由(演唱会),http://em.21dtv.com/songs/60060723.mkv +袁小迪+邱淑君-真情只一摆,http://em.21dtv.com/songs/60058187.mkv +李碧华-真情最难留,http://em.21dtv.com/songs/60058189.mkv +猪哥亮-赚钱照步来,http://em.21dtv.com/songs/60070266.mkv +佚名-这情像砂子,http://em.21dtv.com/songs/60057834.mkv +方瑞娥-真情卸落海,http://em.21dtv.com/songs/60124012.mkv +袁小迪-真情献乎你(无原唱),http://em.21dtv.com/songs/60011541.mkv +孙楠-智取威虎山,http://em.21dtv.com/songs/60087131.mkv +龙千玉-真情无后悔,http://em.21dtv.com/songs/60058177.mkv +佚名-再牵我的手,http://em.21dtv.com/songs/60056940.mkv +向蕙玲-追求我的梦,http://em.21dtv.com/songs/60065508.mkv +柯以敏-在秋天醒来,http://em.21dtv.com/songs/60057125.mkv +韦唯-真情属于你(演唱会),http://em.21dtv.com/songs/60058173.mkv +许冠杰-追求三部曲,http://em.21dtv.com/songs/60059535.mkv +群星-真情暖人间,http://em.21dtv.com/songs/60058168.mkv +大刚-再牵你的手(演唱会),http://em.21dtv.com/songs/60079467.mkv +李玖哲-只牵你的手,http://em.21dtv.com/songs/60058433.mkv +刘尊-再牵你的手,http://em.21dtv.com/songs/60056939.mkv +蔡幸娟+李克勤-再牵你的手,http://em.21dtv.com/songs/60056938.mkv +孙江枫-最亲密的人,http://em.21dtv.com/songs/60112626.mkv +冈林+丁晓松-最亲密的人,http://em.21dtv.com/songs/60105617.mkv +冈林-最亲密的人,http://em.21dtv.com/songs/60105616.mkv +悠悠-紫鹊界恋歌,http://em.21dtv.com/songs/60066609.mkv +群星-扎曲河之恋,http://em.21dtv.com/songs/60057417.mkv +佚名-争取好名声,http://em.21dtv.com/songs/60069003.mkv +佚名-真情放水流,http://em.21dtv.com/songs/60058157.mkv +十二美女-真情放水流,http://em.21dtv.com/songs/60058156.mkv +徐千雅-中秋的月亮,http://em.21dtv.com/songs/60105076.mkv +林子娟-重情的女人,http://em.21dtv.com/songs/60087139.mkv +吴松发-追求的梦想,http://em.21dtv.com/songs/60099141.mkv +吕方-再期待恋爱,http://em.21dtv.com/songs/60056936.mkv +王建杰-真情不愿放,http://em.21dtv.com/songs/60058154.mkv +上班族-挣钱不容易,http://em.21dtv.com/songs/60058370.mkv +周冰倩-真情不会老,http://em.21dtv.com/songs/60058153.mkv +詹雅雯-最亲爱的人,http://em.21dtv.com/songs/60060401.mkv +吴宗宪-最亲爱的人,http://em.21dtv.com/songs/60060400.mkv +吴炜-最亲爱的人,http://em.21dtv.com/songs/60060399.mkv +任妙音-最亲爱的你,http://em.21dtv.com/songs/60125101.mkv +范玮琪-最亲爱的你,http://em.21dtv.com/songs/60067838.mkv +Zia-做朋友也好,http://em.21dtv.com/songs/60122449.mkv +叶振棠-这片叶给你(演唱会),http://em.21dtv.com/songs/60057832.mkv +蔡琴-再骗我一次,http://em.21dtv.com/songs/60056935.mkv +梅艳芳-再陪你一晚,http://em.21dtv.com/songs/60090022.mkv +常思思-这片海有我,http://em.21dtv.com/songs/60057831.mkv +银河童声合唱团-只怕不抵抗,http://em.21dtv.com/songs/60058426.mkv +周蕙-只能做朋友,http://em.21dtv.com/songs/60058425.mkv +龙飘飘-怎能再回头,http://em.21dtv.com/songs/60057394.mkv +孙露-做你心上人,http://em.21dtv.com/songs/60115800.mkv +萧敬腾-只能想念你,http://em.21dtv.com/songs/60061894.mkv +李池湘-祝你新年好(演唱会),http://em.21dtv.com/songs/60059385.mkv +群星-最牛幸福年,http://em.21dtv.com/songs/60097673.mkv +童唱-终南望余雪,http://em.21dtv.com/songs/60059024.mkv +秦博-怎能无所谓,http://em.21dtv.com/songs/60130631.mkv +龙千玉-最难忘的人,http://em.21dtv.com/songs/60060393.mkv +林子祥-最难忘的你,http://em.21dtv.com/songs/60135422.mkv +赵咏华-只能说遗憾,http://em.21dtv.com/songs/60058422.mkv +吕品+天佑-做男人好难,http://em.21dtv.com/songs/60127813.mkv +陈笑玮-在你旗帜下,http://em.21dtv.com/songs/60066577.mkv +神奇胶-做你男人我,http://em.21dtv.com/songs/60125989.mkv +韦唯-怎能没有你,http://em.21dtv.com/songs/60057391.mkv +杨克强-祝你们幸福,http://em.21dtv.com/songs/60118703.mkv +喜公公-祝你们幸福,http://em.21dtv.com/songs/60113362.mkv +付佳明-只能看着你,http://em.21dtv.com/songs/60058420.mkv +萧潇-只能靠想像,http://em.21dtv.com/songs/60088572.mkv +萧潇-只能靠想象,http://em.21dtv.com/songs/60058421.mkv +小贱-宅男狂想曲,http://em.21dtv.com/songs/60079516.mkv +王馨平-中南海保镖,http://em.21dtv.com/songs/60058977.mkv +胡杏儿+王浩信-最难过今天,http://em.21dtv.com/songs/60060392.mkv +龙飞-只能更爱你,http://em.21dtv.com/songs/60081360.mkv +周兴哲-在你耳边说,http://em.21dtv.com/songs/60108388.mkv +容祖儿-在你的左右,http://em.21dtv.com/songs/60057106.mkv +邱泽-做你的英雄,http://em.21dtv.com/songs/60060718.mkv +郭富城+吴倩莲-骤暖的缘份,http://em.21dtv.com/songs/60059194.mkv +袁成杰+戚薇-做你的一半,http://em.21dtv.com/songs/60060717.mkv +暖暖笑-做你的小猪,http://em.21dtv.com/songs/60086314.mkv +南拳妈妈-宅男的夏天,http://em.21dtv.com/songs/60057440.mkv +童可可-做你的新娘,http://em.21dtv.com/songs/60113925.mkv +童可可-做你的新娘,http://em.21dtv.com/songs/60097663.mkv +马常宝-做你的雪莲,http://em.21dtv.com/songs/60122278.mkv +何龙雨+艾歌-做你的雪莲,http://em.21dtv.com/songs/60109146.mkv +艾歌-做你的雪莲,http://em.21dtv.com/songs/60072847.mkv +倪明-做你的小狗,http://em.21dtv.com/songs/60067842.mkv +胡杰夕-做你的王子,http://em.21dtv.com/songs/60065537.mkv +Mi2-做你的微光,http://em.21dtv.com/songs/60107421.mkv +祁哲西-在你的天堂,http://em.21dtv.com/songs/60079482.mkv +闻美茜-做你的天使,http://em.21dtv.com/songs/60087167.mkv +易欣-做你的手机,http://em.21dtv.com/songs/60079834.mkv +齐晨-在你的身边,http://em.21dtv.com/songs/60116420.mkv +闪亮三姐妹-作你的情人,http://em.21dtv.com/songs/60087166.mkv +羽森-做你的朋友,http://em.21dtv.com/songs/60122021.mkv +吴淑敏-做你的朋友,http://em.21dtv.com/songs/60060713.mkv +许先-做你的男神,http://em.21dtv.com/songs/60129606.mkv +张信哲-做你的男人,http://em.21dtv.com/songs/60111853.mkv +张信哲-做你的男人,http://em.21dtv.com/songs/60060712.mkv +许嵩-做你的男人,http://em.21dtv.com/songs/60060711.mkv +方琳涵+方泳懿-做你的马丁,http://em.21dtv.com/songs/60122784.mkv +艾歌-做你的红颜,http://em.21dtv.com/songs/60102651.mkv +何耀珊-做你的公主,http://em.21dtv.com/songs/60060710.mkv +4EVER-找你的地图,http://em.21dtv.com/songs/60079538.mkv +王瑞霞-做你的宝贝,http://em.21dtv.com/songs/60060709.mkv +凌云-做你的爱人,http://em.21dtv.com/songs/60098125.mkv +谢军-做你的爱人(演唱会),http://em.21dtv.com/songs/60063163.mkv +饶天亮-做你的爱人,http://em.21dtv.com/songs/60060708.mkv +柳影虹-做你的爱人(演唱会),http://em.21dtv.com/songs/60059625.mkv +德乾旺姆-在那草地上,http://em.21dtv.com/songs/60057084.mkv +林育群-最难唱的歌,http://em.21dtv.com/songs/60100217.mkv +梁静茹+光良-只能抱着你,http://em.21dtv.com/songs/60058418.mkv +任妙音-怎能把你忘,http://em.21dtv.com/songs/60125098.mkv +史小祺-最美在温州,http://em.21dtv.com/songs/60118416.mkv +伍思凯-怎么做朋友,http://em.21dtv.com/songs/60057390.mkv +阿香-卓玛 卓玛,http://em.21dtv.com/songs/60103654.mkv +施强-最美中国心,http://em.21dtv.com/songs/60118616.mkv +郎郎-最美中国心(演唱会),http://em.21dtv.com/songs/60084652.mkv +老猫-最美中国人,http://em.21dtv.com/songs/60135635.mkv +阿权-咱们中国人,http://em.21dtv.com/songs/60105456.mkv +陈丽媛+李嘉石-最美中国梦,http://em.21dtv.com/songs/60122224.mkv +正月十五-最美中国梦,http://em.21dtv.com/songs/60097675.mkv +韩旭-最美中国红,http://em.21dtv.com/songs/60084651.mkv +蓝心湄-周末夜天使(无原唱),http://em.21dtv.com/songs/60059183.mkv +区瑞强-再莫愚弄我,http://em.21dtv.com/songs/60092372.mkv +PUZZLETOE-怎么又哭了,http://em.21dtv.com/songs/60113184.mkv +陶红-最美颐和园,http://em.21dtv.com/songs/60094338.mkv +冷漠+云菲菲-志摩与徽因,http://em.21dtv.com/songs/60079636.mkv +潘美辰-做梦亦孤单,http://em.21dtv.com/songs/60060707.mkv +张震岳-走慢一点点,http://em.21dtv.com/songs/60081831.mkv +五月天-志明与春娇,http://em.21dtv.com/songs/60058827.mkv +无印良品-志明与春娇(演唱会),http://em.21dtv.com/songs/60058826.mkv +洛奇-最美乡里人,http://em.21dtv.com/songs/60112828.mkv +郑允武-咱们习大大,http://em.21dtv.com/songs/60114127.mkv +海龙-证明我爱你,http://em.21dtv.com/songs/60079595.mkv +任静-最美铜川红,http://em.21dtv.com/songs/60125109.mkv +国辉-最美是家乡,http://em.21dtv.com/songs/60097676.mkv +大军-最美是家乡,http://em.21dtv.com/songs/60080929.mkv +耿为华-最美是故乡,http://em.21dtv.com/songs/60113964.mkv +崔云飞-怎么说分手,http://em.21dtv.com/songs/60115134.mkv +许志安-怎么舍得你,http://em.21dtv.com/songs/60117226.mkv +张学友-怎么舍得你(演唱会),http://em.21dtv.com/songs/60057378.mkv +许志安-怎么舍得你(演唱会),http://em.21dtv.com/songs/60057377.mkv +天亮飞-罪名是爱你,http://em.21dtv.com/songs/60084658.mkv +林晓薇-最美女医师,http://em.21dtv.com/songs/60127107.mkv +程响-怎么能忘了,http://em.21dtv.com/songs/60097614.mkv +云菲菲-怎么能忘记,http://em.21dtv.com/songs/60079503.mkv +蒋大为-赞美你山茶,http://em.21dtv.com/songs/60092006.mkv +夏天Alex-这么那么难,http://em.21dtv.com/songs/60119373.mkv +阎琰-最美女儿心,http://em.21dtv.com/songs/60063239.mkv +格桑-卓玛你别哭,http://em.21dtv.com/songs/60067820.mkv +赵垒-这秘密真美,http://em.21dtv.com/songs/60065471.mkv +阎维文-祝妈妈长寿(演唱会),http://em.21dtv.com/songs/60059359.mkv +容中尔甲-珠穆朗玛峰,http://em.21dtv.com/songs/60059215.mkv +胡渭康-最美丽的事,http://em.21dtv.com/songs/60134145.mkv +WATERMAN-最美丽的脸,http://em.21dtv.com/songs/60060384.mkv +王绎龙-最美丽的花,http://em.21dtv.com/songs/60070282.mkv +普雷放-周末狂热夜,http://em.21dtv.com/songs/60084585.mkv +紫檀-周末快乐吧,http://em.21dtv.com/songs/60130640.mkv +钟彩媚-最美客家妹,http://em.21dtv.com/songs/60129687.mkv +周迅-走马看黄花,http://em.21dtv.com/songs/60059937.mkv +祖海-醉美轿子山,http://em.21dtv.com/songs/60128270.mkv +水仙梦寒-最美江南水,http://em.21dtv.com/songs/60086300.mkv +齐晨-咱们结婚吧,http://em.21dtv.com/songs/60087104.mkv +王喆-最美酒宫城,http://em.21dtv.com/songs/60131650.mkv +艺涛-怎么会这样,http://em.21dtv.com/songs/60130679.mkv +路嘉欣-怎么会这样,http://em.21dtv.com/songs/60086218.mkv +周兴哲-怎么好意思,http://em.21dtv.com/songs/60109224.mkv +周渝民-怎么会是你,http://em.21dtv.com/songs/60057361.mkv +王菀之-怎么会寂寞,http://em.21dtv.com/songs/60057358.mkv +冷漠+云菲菲-志摩和徽因,http://em.21dtv.com/songs/60084570.mkv +啡啡-醉美蝴蝶谷,http://em.21dtv.com/songs/60103988.mkv +杨凯琳+余枫-怎么还不爱,http://em.21dtv.com/songs/60116027.mkv +余枫+杨凯琳-怎么还不爱,http://em.21dtv.com/songs/60115691.mkv +李波-醉梦故人谣,http://em.21dtv.com/songs/60098468.mkv +卫东-醉美大中华,http://em.21dtv.com/songs/60111738.mkv +王玉-最美的祝福,http://em.21dtv.com/songs/60060379.mkv +陈幸子-最美的夜晚,http://em.21dtv.com/songs/60103682.mkv +李尚尚-最美的意外,http://em.21dtv.com/songs/60100138.mkv +回音哥-最美的遗忘,http://em.21dtv.com/songs/60098219.mkv +黄妃-昨暝的月娘,http://em.21dtv.com/songs/60060565.mkv +琼雪卓玛-卓玛的眼泪,http://em.21dtv.com/songs/60062846.mkv +K ONE-最美的一刻,http://em.21dtv.com/songs/60060377.mkv +泽旺多吉-卓玛的眼睛,http://em.21dtv.com/songs/60109493.mkv +思念-最美的遇见,http://em.21dtv.com/songs/60079810.mkv +泽旺多吉-卓玛的眼睛,http://em.21dtv.com/songs/60079712.mkv +冯文女-最美的遇见,http://em.21dtv.com/songs/60060378.mkv +枫舞+相容-最美的相遇,http://em.21dtv.com/songs/60131555.mkv +杨钰莹-最美的相遇,http://em.21dtv.com/songs/60072836.mkv +阿茹娜-最美的新娘,http://em.21dtv.com/songs/60079809.mkv +王梓衡-最美的新娘,http://em.21dtv.com/songs/60060376.mkv +小琢-最美的寻觅,http://em.21dtv.com/songs/60070280.mkv +风信子组合-最美的微笑,http://em.21dtv.com/songs/60086299.mkv +戴凤鑫-最美的温柔,http://em.21dtv.com/songs/60100060.mkv +品冠-最美的问候(HD),http://em.21dtv.com/songs/10012751.mkv +品冠-最美的问候,http://em.21dtv.com/songs/60100794.mkv +张杰-最美的太阳,http://em.21dtv.com/songs/60060375.mkv +张玮-最美的天堂,http://em.21dtv.com/songs/60105049.mkv +索南扎西-最美的天堂,http://em.21dtv.com/songs/60069048.mkv +孙子涵-致命的甜蜜,http://em.21dtv.com/songs/60079639.mkv +西单女孩-最美的天空,http://em.21dtv.com/songs/60063137.mkv +焰烽-醉美顶太红,http://em.21dtv.com/songs/60131624.mkv +李玟-周末的台北,http://em.21dtv.com/songs/60059181.mkv +龙梅子-最美的誓言,http://em.21dtv.com/songs/60089089.mkv +依栏听雪-最美的伤口,http://em.21dtv.com/songs/60134894.mkv +张宇轩-最美的伤口,http://em.21dtv.com/songs/60071561.mkv +刘萱萱-最美的时光,http://em.21dtv.com/songs/60098153.mkv +韩晶-最美的时光,http://em.21dtv.com/songs/60095359.mkv +周笔畅-最美的时光,http://em.21dtv.com/songs/60080383.mkv +满江-最美的时光(演唱会),http://em.21dtv.com/songs/60060374.mkv +王丽达-最美的山背,http://em.21dtv.com/songs/60115289.mkv +贺东-最美大陕北,http://em.21dtv.com/songs/60110547.mkv +戴玉强-咱们都是兵,http://em.21dtv.com/songs/60089312.mkv +胭脂雪飘飘+爱相随-最美的情缘,http://em.21dtv.com/songs/60079807.mkv +孙博-最美的情缘,http://em.21dtv.com/songs/60079806.mkv +陈意涵-最美的情书,http://em.21dtv.com/songs/60113055.mkv +樱子-最美的情郎,http://em.21dtv.com/songs/60059981.mkv +红笛-最美的情歌,http://em.21dtv.com/songs/60069047.mkv +王爱华-最美的情歌,http://em.21dtv.com/songs/60067835.mkv +侯梦亮-最美的女人,http://em.21dtv.com/songs/60086298.mkv +威仔+胡艾彤-这么多年了,http://em.21dtv.com/songs/60118492.mkv +弘诺方舟-最美的年华,http://em.21dtv.com/songs/60121644.mkv +扎西卓玛-最美的名字,http://em.21dtv.com/songs/60063355.mkv +桑紫菲-最美的茉莉,http://em.21dtv.com/songs/60110320.mkv +桑紫菲-最美的茉莉,http://em.21dtv.com/songs/60071558.mkv +周慧敏-最美的泪水,http://em.21dtv.com/songs/60060370.mkv +谭圳-最美的恋曲,http://em.21dtv.com/songs/60060371.mkv +庄振凯+向蕙玲-最美的嫁妆,http://em.21dtv.com/songs/60110178.mkv +许云上-祖母的镜子,http://em.21dtv.com/songs/60098765.mkv +许云上-祖母的镜子(演唱会),http://em.21dtv.com/songs/60084622.mkv +张洪亮-最美的眷恋,http://em.21dtv.com/songs/60087161.mkv +情歌依依-最美的眷恋,http://em.21dtv.com/songs/60087160.mkv +段林希-追梦的孩子(演唱会),http://em.21dtv.com/songs/60062340.mkv +六哲-最美的回忆,http://em.21dtv.com/songs/60125149.mkv +李小璐-最美的呼吸,http://em.21dtv.com/songs/60060369.mkv +蒙面哥+李姝漫-最美的婚纱,http://em.21dtv.com/songs/60130717.mkv +蒙面哥+李姝漫-最美的婚纱,http://em.21dtv.com/songs/60129573.mkv +晓依-最美的花季,http://em.21dtv.com/songs/60079805.mkv +尤国通-最美的歌谣,http://em.21dtv.com/songs/60104972.mkv +王觉-最美的姑娘,http://em.21dtv.com/songs/60109540.mkv +郭静-最美的等候,http://em.21dtv.com/songs/60120032.mkv +阿娜丹-醉美的地方,http://em.21dtv.com/songs/60127529.mkv +乐桐-最美的地方,http://em.21dtv.com/songs/60079804.mkv +徐俊嵩-最美大东北,http://em.21dtv.com/songs/60111909.mkv +罗桑-卓玛的草原,http://em.21dtv.com/songs/60079711.mkv +廖梦心+张芮嘉+邹知乐-追梦的翅膀,http://em.21dtv.com/songs/60130295.mkv +彭羚-最美的表情,http://em.21dtv.com/songs/60060366.mkv +黎瑞恩-怎么都不错,http://em.21dtv.com/songs/60057352.mkv +吴介贤-追梦的宝贝,http://em.21dtv.com/songs/60065507.mkv +兰卡措-卓玛的爱恋,http://em.21dtv.com/songs/60072822.mkv +徐歌阳-追梦赤子心,http://em.21dtv.com/songs/60125569.mkv +GALA乐队-追梦赤子心,http://em.21dtv.com/songs/60101770.mkv +张恒远-追梦赤子心,http://em.21dtv.com/songs/60081599.mkv +快乐男声全国10强-追梦赤子心,http://em.21dtv.com/songs/60081026.mkv +GALA-追梦赤子心,http://em.21dtv.com/songs/60061914.mkv +群星-咱们穿越吧,http://em.21dtv.com/songs/60124356.mkv +金志文+朱娜-怎么唱情歌,http://em.21dtv.com/songs/60084522.mkv +刘惜君-怎么唱情歌,http://em.21dtv.com/songs/60057351.mkv +潘建义-醉美百草园,http://em.21dtv.com/songs/60086306.mkv +何晶-醉美百草园,http://em.21dtv.com/songs/60080976.mkv +佚名-昨暝彼场梦,http://em.21dtv.com/songs/60060564.mkv +陈茂丰-昨暝彼场梦,http://em.21dtv.com/songs/60060563.mkv +许志安-怎么爱都怕,http://em.21dtv.com/songs/60057347.mkv +刘斌-这里也是家,http://em.21dtv.com/songs/60057821.mkv +郑国锋-做了一个梦,http://em.21dtv.com/songs/60079833.mkv +龙飘飘-醉了我的心,http://em.21dtv.com/songs/60097693.mkv +郭鑫-这里是新疆,http://em.21dtv.com/songs/60122181.mkv +艾尼瓦尔-这里是新疆,http://em.21dtv.com/songs/60057819.mkv +群星-在老师身边,http://em.21dtv.com/songs/60057064.mkv +李嘉-转来阮身边,http://em.21dtv.com/songs/60059440.mkv +佚名-咱俩人的爱,http://em.21dtv.com/songs/60057242.mkv +任贤齐-走了千万里,http://em.21dtv.com/songs/60090569.mkv +陶晶莹-走路去纽约,http://em.21dtv.com/songs/60059927.mkv +陈俐俐-醉了千古爱,http://em.21dtv.com/songs/60118142.mkv +王喆-醉了千古爱,http://em.21dtv.com/songs/60084627.mkv +方琼-醉了千古爱,http://em.21dtv.com/songs/60072841.mkv +刘舒东-走了那么久,http://em.21dtv.com/songs/60119312.mkv +刘嘉亮-中了你的毒,http://em.21dtv.com/songs/60104815.mkv +王如华-在黎明之前,http://em.21dtv.com/songs/60122992.mkv +胡海泉+毛妮卓玛-最浪漫的事,http://em.21dtv.com/songs/60095055.mkv +丁少华-最浪漫的事,http://em.21dtv.com/songs/60079800.mkv +赵咏华-最浪漫的事,http://em.21dtv.com/songs/60060358.mkv +聂云-最浪漫的事,http://em.21dtv.com/songs/60060357.mkv +孟勇-最浪漫的诗,http://em.21dtv.com/songs/60060356.mkv +金志文-最浪漫的事,http://em.21dtv.com/songs/60054672.mkv +吕珊-栈罗河之恋,http://em.21dtv.com/songs/60057460.mkv +杨臣刚+中乐汇-中乐汇之家,http://em.21dtv.com/songs/60131534.mkv +杨宗纬-重来好不好,http://em.21dtv.com/songs/60059139.mkv +潘美辰-最冷的夏天,http://em.21dtv.com/songs/60060361.mkv +林建亨-最冷的夏天,http://em.21dtv.com/songs/60060360.mkv +刘若英-最亮的星光,http://em.21dtv.com/songs/60089173.mkv +蔡旻佑-最烂的我们,http://em.21dtv.com/songs/60124437.mkv +欣荣歌友会歌唱精英-这里·东莞,http://em.21dtv.com/songs/60107008.mkv +陶晶莹-走路到纽约,http://em.21dtv.com/songs/60088920.mkv +佚名-走路的女孩,http://em.21dtv.com/songs/60059926.mkv +梁静茹-最烂的理由,http://em.21dtv.com/songs/60060354.mkv +林道远-重来的力量,http://em.21dtv.com/songs/60059138.mkv +周俊伟-最冷的季节,http://em.21dtv.com/songs/60060359.mkv +佚名-再来的港都,http://em.21dtv.com/songs/60056929.mkv +不辣-最冷的冬季,http://em.21dtv.com/songs/60128727.mkv +莫小浪-咱老爸老妈,http://em.21dtv.com/songs/60128354.mkv +马浚伟-这刻向你冲,http://em.21dtv.com/songs/60057813.mkv +张俐敏-再看我一眼,http://em.21dtv.com/songs/60056927.mkv +韦唯-再看你一眼,http://em.21dtv.com/songs/60056926.mkv +MAKIYO-走开你那位,http://em.21dtv.com/songs/60059920.mkv +张韶涵-再快乐一点,http://em.21dtv.com/songs/60056928.mkv +孙更俊-钟馗嫁妹,http://em.21dtv.com/songs/60071529.mkv +林忆莲-只可活一次,http://em.21dtv.com/songs/60058416.mkv +林宥嘉-早开的晚霞,http://em.21dtv.com/songs/60086215.mkv +林宥嘉-早开的晚霞(演唱会),http://em.21dtv.com/songs/60062661.mkv +谭咏麟-最酷的天才,http://em.21dtv.com/songs/60130760.mkv +罗百吉-最快的速度,http://em.21dtv.com/songs/60060352.mkv +敖长生-最可爱的人,http://em.21dtv.com/songs/60084645.mkv +彭高平-咱可爱的人,http://em.21dtv.com/songs/60071502.mkv +佚名-自己找婆家,http://em.21dtv.com/songs/60059708.mkv +杜广增-走近卓玛拉,http://em.21dtv.com/songs/60080952.mkv +4 IN LOVE-再见中国海(演唱会),http://em.21dtv.com/songs/60056923.mkv +赵本水-致敬赵本山,http://em.21dtv.com/songs/60058837.mkv +赵媛媛-再见再不见,http://em.21dtv.com/songs/60056921.mkv +李克勤-再见演奏厅,http://em.21dtv.com/songs/60056909.mkv +佚名-再见艳阳天,http://em.21dtv.com/songs/60056910.mkv +Berry good-最近因为你,http://em.21dtv.com/songs/60109083.mkv +谭咏麟-再见亦是泪,http://em.21dtv.com/songs/60056915.mkv +谭咏麟-再见亦是泪(演唱会),http://em.21dtv.com/songs/60056914.mkv +童唱-周记与日记,http://em.21dtv.com/songs/60059180.mkv +柯羽-再见 依然,http://em.21dtv.com/songs/60133886.mkv +陈佩斯+朱时茂-主角与配角,http://em.21dtv.com/songs/60090284.mkv +佚名-最紧要好玩,http://em.21dtv.com/songs/60060339.mkv +许冠杰-最紧要好玩,http://em.21dtv.com/songs/60060338.mkv +袁子皓-再见莹火虫,http://em.21dtv.com/songs/60092037.mkv +袁耀发-再见萤火虫,http://em.21dtv.com/songs/60056920.mkv +王菲-再见萤火虫,http://em.21dtv.com/songs/60056919.mkv +孙露-转角遇到你,http://em.21dtv.com/songs/60115853.mkv +衡越-庄稼院的歌,http://em.21dtv.com/songs/60059468.mkv +白举纲-再见 原点,http://em.21dtv.com/songs/60106159.mkv +隔壁团-再见18岁,http://em.21dtv.com/songs/60121103.mkv +罗时丰-自己吓自己,http://em.21dtv.com/songs/60059707.mkv +林凡-再见西雅图,http://em.21dtv.com/songs/60056907.mkv +六哲-再见小时候,http://em.21dtv.com/songs/60132221.mkv +南拳妈妈-再见小时候,http://em.21dtv.com/songs/60056908.mkv +张也-走进新时代,http://em.21dtv.com/songs/60059913.mkv +李谷一+李光羲+张也-走进新时代,http://em.21dtv.com/songs/60059912.mkv +佚名-走进新时代(演唱会),http://em.21dtv.com/songs/60059911.mkv +央金兰泽-藏家小伙子,http://em.21dtv.com/songs/60074842.mkv +阿吉仔-自己选的路,http://em.21dtv.com/songs/60095955.mkv +陶建阿成-走进香巴拉,http://em.21dtv.com/songs/60135958.mkv +姜育恒-在嫁我之前,http://em.21dtv.com/songs/60090879.mkv +唐美华-再见我的爱,http://em.21dtv.com/songs/60117630.mkv +赵小兵-再见我的爱,http://em.21dtv.com/songs/60084507.mkv +樱桃帮-再见我的爱,http://em.21dtv.com/songs/60056899.mkv +叶熙祺-再见我的爱,http://em.21dtv.com/songs/60056898.mkv +徐良-再见我的爱,http://em.21dtv.com/songs/60056897.mkv +DREAM GIRLS-再见我爱你,http://em.21dtv.com/songs/60097530.mkv +丁薇-再见我爱妳,http://em.21dtv.com/songs/60090461.mkv +丁薇-再见我爱你,http://em.21dtv.com/songs/60056896.mkv +腾格尔-走进天门山,http://em.21dtv.com/songs/60091909.mkv +邰正宵+周慧敏-知己(双语种),http://em.21dtv.com/songs/60058667.mkv +Chay-这就是幸福,http://em.21dtv.com/songs/60123453.mkv +网络歌手-这就是物流,http://em.21dtv.com/songs/60071513.mkv +陈晓东-这就是生活(演唱会),http://em.21dtv.com/songs/60057808.mkv +郝明晗-走进沙破头,http://em.21dtv.com/songs/60112311.mkv +李铮-走进沙坡头,http://em.21dtv.com/songs/60111999.mkv +苏平生-这就是老师,http://em.21dtv.com/songs/60126105.mkv +霍建华-指甲上的花,http://em.21dtv.com/songs/60058781.mkv +琪琪格+格里杰夫-这就是草原,http://em.21dtv.com/songs/60070236.mkv +李真-这就是爱情,http://em.21dtv.com/songs/60111167.mkv +曾宝仪-这就是爱情,http://em.21dtv.com/songs/60084533.mkv +容祖儿-这就是爱吗,http://em.21dtv.com/songs/60057807.mkv +王识贤-再见阮的爱,http://em.21dtv.com/songs/60056890.mkv +崔子格-再见亲爱的,http://em.21dtv.com/songs/60080107.mkv +汪峰-再见蒲公英(演唱会),http://em.21dtv.com/songs/60128162.mkv +佚名-最佳男主角,http://em.21dtv.com/songs/60060320.mkv +叶启田-最佳男主角,http://em.21dtv.com/songs/60060319.mkv +陈雷-最佳男主角,http://em.21dtv.com/songs/60060318.mkv +伊能静-最佳男主角(无原唱),http://em.21dtv.com/songs/60060317.mkv +司文-再见你一面,http://em.21dtv.com/songs/60056887.mkv +侯海华-再见你一面,http://em.21dtv.com/songs/60056886.mkv +三朵花-住进你心窝,http://em.21dtv.com/songs/60061908.mkv +夏后-再见那时光,http://em.21dtv.com/songs/60086204.mkv +张羽-走进你身边,http://em.21dtv.com/songs/60087834.mkv +张羽-走近你身边,http://em.21dtv.com/songs/60059916.mkv +郭书瑶-最佳男朋友,http://em.21dtv.com/songs/60067831.mkv +陈晓东-最佳男朋友(演唱会),http://em.21dtv.com/songs/60060316.mkv +黄凯芹-最佳男配角,http://em.21dtv.com/songs/60060315.mkv +棒棒堂-最佳男配角,http://em.21dtv.com/songs/60060314.mkv +王爱华-走进内蒙古,http://em.21dtv.com/songs/60123008.mkv +陈柏宇-最佳努力奖,http://em.21dtv.com/songs/60060321.mkv +爱戴-抓紧你的手,http://em.21dtv.com/songs/60059408.mkv +李宇春-走进你的梦,http://em.21dtv.com/songs/60079745.mkv +陆麒蔚-再见你的爱,http://em.21dtv.com/songs/60068969.mkv +罗志祥-再见陌生人,http://em.21dtv.com/songs/60117966.mkv +罗志祥-再见陌生人,http://em.21dtv.com/songs/60103517.mkv +陈一玲-再见美人鱼,http://em.21dtv.com/songs/60120067.mkv +周艳泓-再见茉莉花,http://em.21dtv.com/songs/60056882.mkv +张伯宏-再见木吉他,http://em.21dtv.com/songs/60056883.mkv +张健-最寂寞的人,http://em.21dtv.com/songs/60119499.mkv +邱蔓绫-周杰伦组曲,http://em.21dtv.com/songs/60100500.mkv +黄海永-致敬李天平,http://em.21dtv.com/songs/60080572.mkv +郑子悦-再见了童年,http://em.21dtv.com/songs/60131883.mkv +马志锋-致敬刘德华,http://em.21dtv.com/songs/60065490.mkv +KINGSTAR+小5-再见了单纯,http://em.21dtv.com/songs/60067767.mkv +邵永华-走进了草原,http://em.21dtv.com/songs/60126262.mkv +陶大帅-再见了爱情,http://em.21dtv.com/songs/60133060.mkv +梦然-走进康立方,http://em.21dtv.com/songs/60103398.mkv +刘罡+雪伶-走进咖啡屋,http://em.21dtv.com/songs/60082724.mkv +王丽达-张家界情歌,http://em.21dtv.com/songs/60057535.mkv +豫剧-咱居家好比,http://em.21dtv.com/songs/60134555.mkv +蓝金利-走进井冈山,http://em.21dtv.com/songs/60105336.mkv +林青霞-只记今朝笑,http://em.21dtv.com/songs/60058413.mkv +吕珊-只记今朝笑(演唱会),http://em.21dtv.com/songs/60058412.mkv +韩信-炸鸡和啤酒,http://em.21dtv.com/songs/60100625.mkv +王祖蓝-再见葫芦娃,http://em.21dtv.com/songs/60079461.mkv +梁玉嵘-子建会洛神(戏曲),http://em.21dtv.com/songs/60092913.mkv +S.H.E-最近还好吗,http://em.21dtv.com/songs/60060344.mkv +任贤齐+莫那-再见黄鹤楼,http://em.21dtv.com/songs/60056859.mkv +王宏伟-张家港之恋,http://em.21dtv.com/songs/60086228.mkv +欢子-早就该知道,http://em.21dtv.com/songs/60127138.mkv +牙牙乐-早就该忘记,http://em.21dtv.com/songs/60116125.mkv +潘越云-芝加哥台北(无原唱),http://em.21dtv.com/songs/60058632.mkv +杨千嬅-再见二丁目,http://em.21dtv.com/songs/60056854.mkv +杨千嬅-再见二丁目(演唱会),http://em.21dtv.com/songs/60056853.mkv +黄耀明-再见二丁目(演唱会),http://em.21dtv.com/songs/60056852.mkv +黎春燕-自己的知己,http://em.21dtv.com/songs/60126492.mkv +齐旦布+兰卡措-最近的遥远,http://em.21dtv.com/songs/60123416.mkv +孙楠-自己的英雄,http://em.21dtv.com/songs/60079729.mkv +大哲-自己的英雄,http://em.21dtv.com/songs/60079728.mkv +张寒-自己的英雄(演唱会),http://em.21dtv.com/songs/60066610.mkv +熊汝霖-最近的远方,http://em.21dtv.com/songs/60131626.mkv +彭于晏-转角的夏天,http://em.21dtv.com/songs/60059439.mkv +钟汶-指尖的星光,http://em.21dtv.com/songs/60058783.mkv +C.K-指尖的星光,http://em.21dtv.com/songs/60058782.mkv +群星-自己的太阳,http://em.21dtv.com/songs/60111353.mkv +超泉RZ组合-再见的童年,http://em.21dtv.com/songs/60086202.mkv +关心妍-自己的童话,http://em.21dtv.com/songs/60119271.mkv +小山-曾经的誓言,http://em.21dtv.com/songs/60087106.mkv +吕雯-自己的生活,http://em.21dtv.com/songs/60059696.mkv +齐秦-自己的沙场,http://em.21dtv.com/songs/60059695.mkv +杨丽-宅家的女人,http://em.21dtv.com/songs/60094160.mkv +李文乐-曾经的梦想,http://em.21dtv.com/songs/60065466.mkv +吴建豪-自己的节奏,http://em.21dtv.com/songs/60059693.mkv +冷冰-再见东京塔,http://em.21dtv.com/songs/60066572.mkv +陈晓东-最近的距离,http://em.21dtv.com/songs/60060343.mkv +许迪-湛江的海洋,http://em.21dtv.com/songs/60061881.mkv +苏晴-自己的革命,http://em.21dtv.com/songs/60084601.mkv +曹菲儿-自己的方向,http://em.21dtv.com/songs/60087955.mkv +周惠+成龙-自己的电影,http://em.21dtv.com/songs/60059691.mkv +周怡然-自己的传奇,http://em.21dtv.com/songs/60116655.mkv +王筝-指尖的爱情,http://em.21dtv.com/songs/60094610.mkv +花树-知己长相伴,http://em.21dtv.com/songs/60118003.mkv +望海高歌-知己长相伴,http://em.21dtv.com/songs/60116877.mkv +秦天-再见吧战友,http://em.21dtv.com/songs/60056841.mkv +茜拉-再见不再见,http://em.21dtv.com/songs/60120907.mkv +陈柏宇-再见不再见,http://em.21dtv.com/songs/60056848.mkv +多亮-知己不知彼,http://em.21dtv.com/songs/60097598.mkv +李佳霖-再见吧校园,http://em.21dtv.com/songs/60070209.mkv +红豆-再见吧兄弟,http://em.21dtv.com/songs/60056840.mkv +龙川-主角不是我,http://em.21dtv.com/songs/60102388.mkv +刀郎-再见吧妈妈,http://em.21dtv.com/songs/60120349.mkv +刀郎-再见吧妈妈,http://em.21dtv.com/songs/60070208.mkv +佚名-再见吧妈妈,http://em.21dtv.com/songs/60056839.mkv +李双江-再见吧妈妈,http://em.21dtv.com/songs/60056838.mkv +佚名-再见吧浪漫,http://em.21dtv.com/songs/60056836.mkv +谭咏麟-再见吧浪漫(无原唱),http://em.21dtv.com/songs/60056835.mkv +阎维文-再见吧老兵,http://em.21dtv.com/songs/60056837.mkv +周传雄+陈慧琳-再见北极雪,http://em.21dtv.com/songs/60056844.mkv +金志文+千斤组合-最近比较烦,http://em.21dtv.com/songs/60134352.mkv +周华健+李宗盛+黄品冠-最近比较烦,http://em.21dtv.com/songs/60060342.mkv +四分卫-再见吧恶魔,http://em.21dtv.com/songs/60056834.mkv +音萌萌-再见吧爱人,http://em.21dtv.com/songs/60133086.mkv +王麟-再见吧爱情,http://em.21dtv.com/songs/60067766.mkv +蒋婴-走进阿尔山,http://em.21dtv.com/songs/60130713.mkv +4_IN_LOVE-最骄傲的事,http://em.21dtv.com/songs/60090379.mkv +CIRCUS-最后这一课,http://em.21dtv.com/songs/60060304.mkv +玖壹壹-再会中港路,http://em.21dtv.com/songs/60113891.mkv +詹雅雯-再会中港路,http://em.21dtv.com/songs/60056807.mkv +顾峰-最后一支烟,http://em.21dtv.com/songs/60112384.mkv +潘玮柏-最后一支舞,http://em.21dtv.com/songs/60101438.mkv +梁朝伟-最后一支舞,http://em.21dtv.com/songs/60091523.mkv +陈淑萍-最后一张批(无原唱),http://em.21dtv.com/songs/60060302.mkv +陶红-中华一枝花,http://em.21dtv.com/songs/60094337.mkv +陈升-最后一盏灯(演唱会),http://em.21dtv.com/songs/60060300.mkv +刘德华-总会有一天,http://em.21dtv.com/songs/60090694.mkv +郑锦昌-再会鸳鸯江,http://em.21dtv.com/songs/60093334.mkv +嘴哥乐团-最后一首歌,http://em.21dtv.com/songs/60123791.mkv +赵心雨-醉后一首歌,http://em.21dtv.com/songs/60114099.mkv +谭天昂-最后一首歌,http://em.21dtv.com/songs/60086295.mkv +王雅-最后一丝光,http://em.21dtv.com/songs/60067830.mkv +吴宗宪-最后一首歌,http://em.21dtv.com/songs/60060290.mkv +刘艺涵-最后一首歌,http://em.21dtv.com/songs/60060289.mkv +李玖哲-最后一首歌,http://em.21dtv.com/songs/60060288.mkv +迪克牛仔-最后一首歌,http://em.21dtv.com/songs/60060287.mkv +郑伊健-只会因你唱,http://em.21dtv.com/songs/60058411.mkv +郑伊健-只会因你唱(演唱会),http://em.21dtv.com/songs/60058410.mkv +吴雨霏-最后一秒钟,http://em.21dtv.com/songs/60060284.mkv +索南扎西-藏汉一家亲,http://em.21dtv.com/songs/60012045.mkv +林沐桦+李威豪-最后一句话,http://em.21dtv.com/songs/60060279.mkv +李萌-最后一根烟,http://em.21dtv.com/songs/60098494.mkv +陈娟儿-最后一根烟,http://em.21dtv.com/songs/60079796.mkv +谢天笑-最后一个人,http://em.21dtv.com/songs/60110533.mkv +琳琳-只好一个人,http://em.21dtv.com/songs/60105266.mkv +孙淑媚-最后一个人,http://em.21dtv.com/songs/60060275.mkv +梁咏琪-最后一个ending,http://em.21dtv.com/songs/60060270.mkv +罗时丰-再会呀港都,http://em.21dtv.com/songs/60134081.mkv +文夏-再会呀港都(无原唱),http://em.21dtv.com/songs/60077336.mkv +佚名-再会呀港都,http://em.21dtv.com/songs/60056803.mkv +林姗-再会呀港都,http://em.21dtv.com/songs/60056802.mkv +陈盈洁-再会呀港都,http://em.21dtv.com/songs/60056801.mkv +陈雷-再会呀港都,http://em.21dtv.com/songs/60056800.mkv +佚名-再会呀港都(演唱会),http://em.21dtv.com/songs/60056799.mkv +克拉克(Mr.C)-最后一分钟,http://em.21dtv.com/songs/60115697.mkv +张学友-最后一封信,http://em.21dtv.com/songs/60060269.mkv +佚名-最后一封信,http://em.21dtv.com/songs/60060268.mkv +蔡琴-最后一封信,http://em.21dtv.com/songs/60060267.mkv +阿吉仔-最后一封信,http://em.21dtv.com/songs/60060266.mkv +谭嘉仪-最后也分开,http://em.21dtv.com/songs/60134237.mkv +钟洁希-最后一滴眼,http://em.21dtv.com/songs/60111465.mkv +佚名-再会夜都市,http://em.21dtv.com/songs/60056806.mkv +龙千玉-再会夜都市,http://em.21dtv.com/songs/60056805.mkv +郭金发-再会夜都市,http://em.21dtv.com/songs/60056804.mkv +赵芸涵-最后一滴泪,http://em.21dtv.com/songs/60101683.mkv +易欣-最后一滴泪,http://em.21dtv.com/songs/60060263.mkv +熊磊-最后一场雨,http://em.21dtv.com/songs/60117019.mkv +冠宇-最后一杯酒,http://em.21dtv.com/songs/60060245.mkv +沈文程-最后一杯酒(无原唱),http://em.21dtv.com/songs/60060244.mkv +流苏-总会想起你,http://em.21dtv.com/songs/60110344.mkv +郁钧剑-中华心连心,http://em.21dtv.com/songs/60058964.mkv +关淑怡-纵横星光下,http://em.21dtv.com/songs/60092325.mkv +小军+王钰钧-总会幸福的,http://em.21dtv.com/songs/60119445.mkv +许晓杰-中华孝道情,http://em.21dtv.com/songs/60127390.mkv +兰天-再欢五十年,http://em.21dtv.com/songs/60062564.mkv +秀兰玛雅-再会无情人,http://em.21dtv.com/songs/60056796.mkv +陈健-最后为你哭,http://em.21dtv.com/songs/60060237.mkv +游鸿明-在乎我的人,http://em.21dtv.com/songs/60057060.mkv +耿为华-中华我的家,http://em.21dtv.com/songs/60116202.mkv +合唱-中华我的家,http://em.21dtv.com/songs/60089721.mkv +王爱华-中华我的家,http://em.21dtv.com/songs/60058962.mkv +陈红+张媛媛-中华我的家(演唱会),http://em.21dtv.com/songs/60058961.mkv +许富凯+曹雅雯-最后尾班车,http://em.21dtv.com/songs/60084638.mkv +刘斌-这话听着亲,http://em.21dtv.com/songs/60057799.mkv +何易峰-再回头也难,http://em.21dtv.com/songs/60056763.mkv +陈姿-中华台湾情,http://em.21dtv.com/songs/60131936.mkv +易欣-只好说再见,http://em.21dtv.com/songs/60058407.mkv +金志文-最好是现在,http://em.21dtv.com/songs/60094727.mkv +大张凡-做好嵩县人,http://em.21dtv.com/songs/60105729.mkv +张洪量-再会思春期,http://em.21dtv.com/songs/60056795.mkv +许志安-只会深爱你,http://em.21dtv.com/songs/60058409.mkv +吴娇-中华情之歌,http://em.21dtv.com/songs/60116638.mkv +谢华-最后情人节,http://em.21dtv.com/songs/60060232.mkv +齐航-在和平年代,http://em.21dtv.com/songs/60134515.mkv +王雅洁-在和平年代,http://em.21dtv.com/songs/60117048.mkv +谭晶-在和平年代,http://em.21dtv.com/songs/60057050.mkv +袁小迪-只恨你一人,http://em.21dtv.com/songs/60080010.mkv +极地阳光-在海那一端,http://em.21dtv.com/songs/60088085.mkv +黎明-招呼你朋友(演唱会),http://em.21dtv.com/songs/60057651.mkv +陈晓东-在乎你感受,http://em.21dtv.com/songs/60057057.mkv +郭嘉欣-找回你的心,http://em.21dtv.com/songs/60057679.mkv +邓丽君-中华民族颂[演],http://em.21dtv.com/songs/60101522.mkv +佚名-再会啦再会,http://em.21dtv.com/songs/60056791.mkv +叶启田-再会啦再会,http://em.21dtv.com/songs/60056790.mkv +蔡小虎+黄思婷-再会啦再会,http://em.21dtv.com/songs/60056789.mkv +邵大伦-再会啦寂寞,http://em.21dtv.com/songs/60128464.mkv +办桌二人组+李炳辉-再会啦车站,http://em.21dtv.com/songs/60056778.mkv +庄上荣-中华江夏黄,http://em.21dtv.com/songs/60096064.mkv +李言哲-中华好少年,http://em.21dtv.com/songs/60116928.mkv +[Group] +groupName=十六万歌曲MV等 - 83 +熊天平-最后还是会,http://em.21dtv.com/songs/60060226.mkv +钟丽燕+廖昌永-中华好明月,http://em.21dtv.com/songs/60112323.mkv +钟丽燕-中华好明月,http://em.21dtv.com/songs/60058945.mkv +刘和刚+战扬-中华好家风,http://em.21dtv.com/songs/60107518.mkv +张丰毅+朱亚文+段奕宏-中华好儿孙,http://em.21dtv.com/songs/60109297.mkv +张丰毅+段奕宏+朱亚文-中华好儿孙,http://em.21dtv.com/songs/60108476.mkv +陈美安+陈建华-最后火车站,http://em.21dtv.com/songs/60069045.mkv +黄乙玲-最后火车站,http://em.21dtv.com/songs/60060227.mkv +安又琪-最后悔爱谁,http://em.21dtv.com/songs/60087681.mkv +陈慧琳-最好给最好(HD),http://em.21dtv.com/songs/10012556.mkv +陈慧琳-最好给最好,http://em.21dtv.com/songs/60060159.mkv +王建杰-再会干一杯,http://em.21dtv.com/songs/60056777.mkv +江蕙-只好放你行(无原唱),http://em.21dtv.com/songs/60058405.mkv +于洋-中华儿女情,http://em.21dtv.com/songs/60079655.mkv +周杰伦-最后的战役,http://em.21dtv.com/songs/60060222.mkv +崔子格-最好的自己,http://em.21dtv.com/songs/60122690.mkv +本兮-最后的最后,http://em.21dtv.com/songs/60079789.mkv +尚雯婕-最后的赞歌,http://em.21dtv.com/songs/60079788.mkv +苏永康-最好的祝福,http://em.21dtv.com/songs/60060158.mkv +郑容和-最后的叶子,http://em.21dtv.com/songs/60110578.mkv +张国立-最好的一站,http://em.21dtv.com/songs/60105825.mkv +梁家辉+陈慧琳-最好的夜晚,http://em.21dtv.com/songs/60096363.mkv +ETERNITY-最后的一天,http://em.21dtv.com/songs/60121245.mkv +王识贤-最后的雨声,http://em.21dtv.com/songs/60060220.mkv +荒山亮-最后的勇气,http://em.21dtv.com/songs/60084636.mkv +黄思婷-最后的眼泪,http://em.21dtv.com/songs/60102973.mkv +王亚平-中华第一楼,http://em.21dtv.com/songs/60063046.mkv +雷一鸣-最好的遇见,http://em.21dtv.com/songs/60120117.mkv +谭菲菲-最后的约定,http://em.21dtv.com/songs/60079787.mkv +阿悄-最后的约定,http://em.21dtv.com/songs/60060221.mkv +湘浩雨-最后的拥抱,http://em.21dtv.com/songs/60122968.mkv +张峥-最后的拥抱,http://em.21dtv.com/songs/60105833.mkv +查亮-最后的选择,http://em.21dtv.com/songs/60131556.mkv +李茂山-最后的选择,http://em.21dtv.com/songs/60060215.mkv +苏永康-最后的消息,http://em.21dtv.com/songs/60060213.mkv +MR.S乐团-最后的夏天,http://em.21dtv.com/songs/60128692.mkv +冷漠-最后的夏天,http://em.21dtv.com/songs/60024955.mkv +常健鸿-醉后的心碎,http://em.21dtv.com/songs/60105801.mkv +大庆小芳-醉后的心碎,http://em.21dtv.com/songs/60084626.mkv +常健鸿-醉后的心碎,http://em.21dtv.com/songs/60070284.mkv +侯美仪-醉后的心声,http://em.21dtv.com/songs/60060499.mkv +本兮-最后的悬念,http://em.21dtv.com/songs/60079786.mkv +苍茫-最后的旋律(演唱会),http://em.21dtv.com/songs/60060214.mkv +詹雅雯-最后的相逢,http://em.21dtv.com/songs/60093882.mkv +何炅-最好的幸福,http://em.21dtv.com/songs/60060157.mkv +刘川枫-最后的兄弟,http://em.21dtv.com/songs/60121434.mkv +王旭鹏-最后的无言,http://em.21dtv.com/songs/60121914.mkv +陈胜屿-最后的微笑,http://em.21dtv.com/songs/60098893.mkv +蒋雪儿-最后的微笑,http://em.21dtv.com/songs/60079784.mkv +TANK-最后的微笑,http://em.21dtv.com/songs/60060208.mkv +满江-最后的温柔,http://em.21dtv.com/songs/60079785.mkv +田元-最后的温柔,http://em.21dtv.com/songs/60069044.mkv +佚名-最后的温柔,http://em.21dtv.com/songs/60060211.mkv +冼灏英-最后的温柔,http://em.21dtv.com/songs/60060209.mkv +杨炅翰+严艺丹-最好的我们,http://em.21dtv.com/songs/60121805.mkv +谢楠-最好的我们,http://em.21dtv.com/songs/60060156.mkv +张靓颖+韩庚-最好的未来,http://em.21dtv.com/songs/60079775.mkv +BIGBANG-最后的问候,http://em.21dtv.com/songs/60060212.mkv +林圣男-最后的晚餐,http://em.21dtv.com/songs/60060207.mkv +孙淑媚-最后的舞伴,http://em.21dtv.com/songs/60095509.mkv +江潮+夏婉安-最后的晚安,http://em.21dtv.com/songs/60121854.mkv +小凌-最后的天堂,http://em.21dtv.com/songs/60079783.mkv +ALIN-最后的天堂,http://em.21dtv.com/songs/60072832.mkv +雷诺儿-最后的天使,http://em.21dtv.com/songs/60060206.mkv +郭采洁-最好的天气,http://em.21dtv.com/songs/60069041.mkv +罗时丰-最后的谈判,http://em.21dtv.com/songs/60095856.mkv +佚名-最后的谈判,http://em.21dtv.com/songs/60060201.mkv +佚名-最后的探戈,http://em.21dtv.com/songs/60060204.mkv +叶启田-最后的探戈,http://em.21dtv.com/songs/60060203.mkv +向蕙玲-最后的探戈,http://em.21dtv.com/songs/60060202.mkv +凤凰传奇-最后的讨伐,http://em.21dtv.com/songs/60060205.mkv +凤凰传奇-最好的讨伐,http://em.21dtv.com/songs/60060154.mkv +栗锦-最后的疼爱,http://em.21dtv.com/songs/60131563.mkv +薛小毅-走后的思念,http://em.21dtv.com/songs/60087150.mkv +STORM HEART-最后的胜利,http://em.21dtv.com/songs/60070276.mkv +谢安琪-最好的时刻,http://em.21dtv.com/songs/60080306.mkv +田震-最后的时刻,http://em.21dtv.com/songs/60060200.mkv +江若琳-最好的时光,http://em.21dtv.com/songs/60132672.mkv +江若琳-最好的时光,http://em.21dtv.com/songs/60130526.mkv +江若琳-最好的时光,http://em.21dtv.com/songs/60129330.mkv +张信哲-最好的时光,http://em.21dtv.com/songs/60111859.mkv +刘涛-最好的时光,http://em.21dtv.com/songs/60087156.mkv +杨钰莹-最好的时光,http://em.21dtv.com/songs/60079774.mkv +张信哲-最好的时光,http://em.21dtv.com/songs/60060152.mkv +凤凰传奇-最好的时代,http://em.21dtv.com/songs/60103100.mkv +佚名-最后的伤悲,http://em.21dtv.com/songs/60060199.mkv +黄芳-最后的情书,http://em.21dtv.com/songs/60060197.mkv +花妮-最后的倾诉,http://em.21dtv.com/songs/60060195.mkv +韩磊-最后的倾诉,http://em.21dtv.com/songs/60060194.mkv +韩磊-最后的倾诉(演唱会),http://em.21dtv.com/songs/60060193.mkv +兰馨+郑宇伶-最好的情人,http://em.21dtv.com/songs/60086289.mkv +谢雷-醉后的情人,http://em.21dtv.com/songs/60071562.mkv +朱海君-最后的情人,http://em.21dtv.com/songs/60069043.mkv +狮子合唱团-最后的请求,http://em.21dtv.com/songs/60133969.mkv +狮子合唱团-最后的请求,http://em.21dtv.com/songs/60128202.mkv +狮子合唱团-最后的请求,http://em.21dtv.com/songs/60127188.mkv +高斌-最后的情歌,http://em.21dtv.com/songs/60113101.mkv +伯阳-最后的情歌,http://em.21dtv.com/songs/60060196.mkv +杨宗宪+陈思安-最后的情歌,http://em.21dtv.com/songs/60021373.mkv +赖伟锋-最好的朋友,http://em.21dtv.com/songs/60099504.mkv +群星-最好的朋友,http://em.21dtv.com/songs/60060151.mkv +陈琳-最好的朋友,http://em.21dtv.com/songs/60060150.mkv +万清泉-中华的品牌,http://em.21dtv.com/songs/60067805.mkv +王晓娟-最后的呐喊,http://em.21dtv.com/songs/60086291.mkv +陈明-最好的明天,http://em.21dtv.com/songs/60124637.mkv +樱花姐妹-最后的目屎,http://em.21dtv.com/songs/60072445.mkv +樱花姐妹-最后的目屎(无原唱),http://em.21dtv.com/songs/60060191.mkv +甄妮-最后的玫瑰(演唱会),http://em.21dtv.com/songs/60060190.mkv +Rain-最好的礼物,http://em.21dtv.com/songs/60131098.mkv +艺人大合唱-最好的礼物,http://em.21dtv.com/songs/60117148.mkv +金娃-最好的礼物,http://em.21dtv.com/songs/60108069.mkv +李加靓-最后的礼物,http://em.21dtv.com/songs/60087985.mkv +群星-最好的礼物,http://em.21dtv.com/songs/60060149.mkv +吉克隽逸-最后的恋人,http://em.21dtv.com/songs/60123735.mkv +邰正宵-最后的恋人,http://em.21dtv.com/songs/60080265.mkv +金素梅-最后的恋人,http://em.21dtv.com/songs/60060189.mkv +孙子涵-最后的泪滴,http://em.21dtv.com/songs/60102112.mkv +黎明-最后的恋爱,http://em.21dtv.com/songs/60060188.mkv +黎明-最后的恋爱(演唱会),http://em.21dtv.com/songs/60060187.mkv +晓月-最后的哭泣,http://em.21dtv.com/songs/60087943.mkv +枫舞-最后的哭泣,http://em.21dtv.com/songs/60060186.mkv +胡斌-中华大家园,http://em.21dtv.com/songs/60117135.mkv +胡斌-中华大家园,http://em.21dtv.com/songs/60071526.mkv +李雪+铁木隆-中华大家园,http://em.21dtv.com/songs/60069017.mkv +鲍蓉-中华大家园,http://em.21dtv.com/songs/60058944.mkv +群星-中华大家园(演唱会),http://em.21dtv.com/songs/60058943.mkv +牙牙乐-最后的寄托,http://em.21dtv.com/songs/60116126.mkv +张琛-中华大家庭,http://em.21dtv.com/songs/60089282.mkv +闵国银-最后的纪念,http://em.21dtv.com/songs/60117302.mkv +孙子涵-最后的距离,http://em.21dtv.com/songs/60102113.mkv +郑君威+董育君-最后的结局,http://em.21dtv.com/songs/60135808.mkv +八三夭-最好的结局,http://em.21dtv.com/songs/60067828.mkv +佚名-最后的酒杯,http://em.21dtv.com/songs/60060185.mkv +沈文程+陈盈洁-最后的酒杯,http://em.21dtv.com/songs/60060184.mkv +彭三-最后的谎言,http://em.21dtv.com/songs/60111903.mkv +杨紫燃-最后的回忆(演唱会),http://em.21dtv.com/songs/60079781.mkv +杨紫燃-最后的回忆,http://em.21dtv.com/songs/60069042.mkv +刘惜君-最后的航班,http://em.21dtv.com/songs/60079780.mkv +不辣-最后的歌曲,http://em.21dtv.com/songs/60128728.mkv +夜郎野猫-最后的港口,http://em.21dtv.com/songs/60101315.mkv +东城卫-最后的光景(演唱会),http://em.21dtv.com/songs/60062332.mkv +张学友-最后的告别,http://em.21dtv.com/songs/60060178.mkv +奇力格尔-最后的告白,http://em.21dtv.com/songs/60060177.mkv +奇力格尔-最后的告白(演唱会),http://em.21dtv.com/songs/60060176.mkv +王健+赵彤-最后的敷衍,http://em.21dtv.com/songs/60107059.mkv +许强-最后的枫叶,http://em.21dtv.com/songs/60060175.mkv +罗志祥-最后的风度,http://em.21dtv.com/songs/60060174.mkv +艳阳天-最后的冬天,http://em.21dtv.com/songs/60070275.mkv +朱元冰-最好的道歉,http://em.21dtv.com/songs/60115995.mkv +龙千玉-再会滴答滴,http://em.21dtv.com/songs/60075407.mkv +黄绮珊-再回到从前,http://em.21dtv.com/songs/60100677.mkv +张镐哲-再回到从前,http://em.21dtv.com/songs/60056759.mkv +张镐哲-再回到从前(演唱会),http://em.21dtv.com/songs/60056758.mkv +佚名-最后的裁判,http://em.21dtv.com/songs/60060170.mkv +孙青-最后的承诺,http://em.21dtv.com/songs/60060172.mkv +陈慧娴-最后的缠绵,http://em.21dtv.com/songs/60060171.mkv +佚名-最后的出帆,http://em.21dtv.com/songs/60060173.mkv +崔健-最后的抱怨,http://em.21dtv.com/songs/60091009.mkv +小山-最后的表白,http://em.21dtv.com/songs/60111826.mkv +王静莹-最坏的宝贝,http://em.21dtv.com/songs/60060310.mkv +宋孟君+格子兮-最后的安慰,http://em.21dtv.com/songs/60120459.mkv +郭欢-最后的爱人,http://em.21dtv.com/songs/60079779.mkv +范玮琪+梁静茹-最好的安排,http://em.21dtv.com/songs/60118874.mkv +西单女孩+梁帅-最好吃的饭,http://em.21dtv.com/songs/60107203.mkv +那英-再会不再见,http://em.21dtv.com/songs/60056776.mkv +叶佳修-再会吧原野,http://em.21dtv.com/songs/60056775.mkv +凤飞飞-再会吧原野,http://em.21dtv.com/songs/60056774.mkv +廖昌永-最好不相见,http://em.21dtv.com/songs/60103262.mkv +李漠-最好不相见,http://em.21dtv.com/songs/60060143.mkv +佚名-再会吧素兰(无原唱),http://em.21dtv.com/songs/60056771.mkv +佚名-再会吧南洋,http://em.21dtv.com/songs/60056770.mkv +林一峰-重回布拉格(演唱会),http://em.21dtv.com/songs/60059129.mkv +潘丽丽-再会吧北投,http://em.21dtv.com/songs/60095796.mkv +佚名-再会吧!北投,http://em.21dtv.com/songs/60056768.mkv +彭莉-再会吧!北投,http://em.21dtv.com/songs/60056767.mkv +袁小迪-最后爱一摆(无原唱),http://em.21dtv.com/songs/60060166.mkv +江蕙-再会啊港都(无原唱),http://em.21dtv.com/songs/60095724.mkv +拉毛王旭-中国在收获,http://em.21dtv.com/songs/60061904.mkv +冷漠-中国最强音,http://em.21dtv.com/songs/60103097.mkv +姚晔-祖国赞美诗,http://em.21dtv.com/songs/60090877.mkv +吴娜-中国赞美诗,http://em.21dtv.com/songs/60079654.mkv +郭公芳-祖国赞美诗,http://em.21dtv.com/songs/60060022.mkv +何龙雨-中国丈母娘,http://em.21dtv.com/songs/60098112.mkv +陈淑桦-做个真的我,http://em.21dtv.com/songs/60060703.mkv +张津涤-只怪这场雨,http://em.21dtv.com/songs/60132449.mkv +阿丽玛+奇力格尔-中国正北方,http://em.21dtv.com/songs/60058936.mkv +毛宁-祖国圆舞曲,http://em.21dtv.com/songs/60060021.mkv +佟铁鑫-祖国因为你,http://em.21dtv.com/songs/60090621.mkv +孟文豪-中国有力量,http://em.21dtv.com/songs/60079653.mkv +宋祖英-烛光映红天,http://em.21dtv.com/songs/60090962.mkv +佚名-中国一定强,http://em.21dtv.com/songs/60058929.mkv +刘润洁-只怪遇到你,http://em.21dtv.com/songs/60123686.mkv +张信子-最该圆的梦,http://em.21dtv.com/songs/60129069.mkv +乔军-中国新乡村,http://em.21dtv.com/songs/60079652.mkv +兰旗儿-中国新诗篇,http://em.21dtv.com/songs/60067803.mkv +彭丽媛-中国新世纪,http://em.21dtv.com/songs/60058927.mkv +彭丽媛-中国新世纪(演唱会),http://em.21dtv.com/songs/60058926.mkv +杨帆-中国新歌声,http://em.21dtv.com/songs/60127090.mkv +蔡健东-只怪我自己,http://em.21dtv.com/songs/60062241.mkv +费玉清-走过我自己,http://em.21dtv.com/songs/60059896.mkv +屈慧-祖国我想你,http://em.21dtv.com/songs/60071552.mkv +曹震豪-再过五分钟,http://em.21dtv.com/songs/60065445.mkv +饶海明-中国我爱你,http://em.21dtv.com/songs/60119054.mkv +郑海燕+戴玉强-中国我爱你,http://em.21dtv.com/songs/60111445.mkv +阿香-祖国我爱你,http://em.21dtv.com/songs/60108113.mkv +张可-中国我爱你,http://em.21dtv.com/songs/60101077.mkv +凤凰传奇-中国我爱你,http://em.21dtv.com/songs/60058921.mkv +段丽阳+曹子魏-中国是我家,http://em.21dtv.com/songs/60100907.mkv +宿雨涵-中国是我家,http://em.21dtv.com/songs/60062954.mkv +杨洋-中国是我家,http://em.21dtv.com/songs/60058914.mkv +刘蕊绮-中国山水画,http://em.21dtv.com/songs/60110044.mkv +王岗岗-中国少年郎,http://em.21dtv.com/songs/60087135.mkv +林妙可-祖国是妈妈,http://em.21dtv.com/songs/60105181.mkv +杨洪基-重归苏莲托,http://em.21dtv.com/songs/60089984.mkv +男声-重归苏联托,http://em.21dtv.com/songs/60059128.mkv +女声-重归苏莲托,http://em.21dtv.com/songs/60059127.mkv +刘斌-重归苏连托,http://em.21dtv.com/songs/60059126.mkv +杨洪基-重归苏连托(演唱会),http://em.21dtv.com/songs/60059125.mkv +于选龙+曹雅鑫-走钢索的人,http://em.21dtv.com/songs/60130059.mkv +李泉-走钢索的人,http://em.21dtv.com/songs/60059882.mkv +苏永康-走钢索的人(演唱会),http://em.21dtv.com/songs/60059881.mkv +哈泊力夫-这该死的爱,http://em.21dtv.com/songs/60122618.mkv +张靓颖-这该死的爱,http://em.21dtv.com/songs/60057775.mkv +杨培安-这该死的爱,http://em.21dtv.com/songs/60057774.mkv +贺世哲-找个人来疼,http://em.21dtv.com/songs/60086232.mkv +张倩-找个人爱我,http://em.21dtv.com/songs/60079536.mkv +吴欢-找个人爱吧,http://em.21dtv.com/songs/60131260.mkv +吴欢-找个人爱吧,http://em.21dtv.com/songs/60128891.mkv +张傲-中国情人节,http://em.21dtv.com/songs/60058905.mkv +蔡小虎-重感情的人,http://em.21dtv.com/songs/60059124.mkv +温拿乐队-追赶跑跳碰(演唱会),http://em.21dtv.com/songs/60059509.mkv +F4-追赶跑跳碰(演唱会),http://em.21dtv.com/songs/60059508.mkv +佚名-追赶跑跳碰(无原唱),http://em.21dtv.com/songs/60059507.mkv +易秒英-祖国年年好,http://em.21dtv.com/songs/60060007.mkv +林志炫-只给你JUST_FOR_YOU,http://em.21dtv.com/songs/60091464.mkv +子曰秋野-中国梦里见,http://em.21dtv.com/songs/60097508.mkv +泽郎多杰-扎嘎啦雪山,http://em.21dtv.com/songs/60091613.mkv +容祖儿-朱古力万岁(演唱会),http://em.21dtv.com/songs/60059200.mkv +洪禄云+枫舞-走过咖啡屋,http://em.21dtv.com/songs/60086281.mkv +千百惠-走过咖啡屋,http://em.21dtv.com/songs/60059891.mkv +佚名-走过咖啡屋(中四步),http://em.21dtv.com/songs/60059890.mkv +阎维文+佟铁鑫+吕继宏-中国进行曲(演唱会),http://em.21dtv.com/songs/60058898.mkv +Easy Shen-烛光俱乐部,http://em.21dtv.com/songs/60133195.mkv +群星-中国进行曲,http://em.21dtv.com/songs/60088448.mkv +葛晓璐-中国欢喜年,http://em.21dtv.com/songs/60058892.mkv +木杰+王觉+张宇轩-中国好兄弟,http://em.21dtv.com/songs/60107772.mkv +王觉-中国好兄弟,http://em.21dtv.com/songs/60094234.mkv +杨西音子-做个好同志,http://em.21dtv.com/songs/60135416.mkv +姜佑泽-中国好声音,http://em.21dtv.com/songs/60070249.mkv +钟丽燕-中国好时代,http://em.21dtv.com/songs/60088806.mkv +言承旭-做个好情人,http://em.21dtv.com/songs/60060700.mkv +徐一鸣-中国好情歌,http://em.21dtv.com/songs/60107735.mkv +冷漠-中国好情歌,http://em.21dtv.com/songs/60103096.mkv +杨军-中国好男人,http://em.21dtv.com/songs/60116933.mkv +赵本水-找个好男人(演唱会),http://em.21dtv.com/songs/60057675.mkv +杨鸿-中国好老婆,http://em.21dtv.com/songs/60113688.mkv +魏侴+小七仔-中国好老婆,http://em.21dtv.com/songs/60080752.mkv +胡大亮-中国好吉祥,http://em.21dtv.com/songs/60118854.mkv +王丽达-祖国好江南,http://em.21dtv.com/songs/60079757.mkv +尹光-做个好警察,http://em.21dtv.com/songs/60060699.mkv +屈建华-中国好火锅,http://em.21dtv.com/songs/60121606.mkv +傲艺-中国好歌曲,http://em.21dtv.com/songs/60101913.mkv +风雷-找个好姑娘,http://em.21dtv.com/songs/60116381.mkv +王紫菲-中国好姑娘,http://em.21dtv.com/songs/60099411.mkv +张冬玲-中国好姑娘,http://em.21dtv.com/songs/60079649.mkv +彭小龙-中国好功夫,http://em.21dtv.com/songs/60115935.mkv +李纲锋-中国坏大叔,http://em.21dtv.com/songs/60125717.mkv +江得胜-正港的英雄,http://em.21dtv.com/songs/60058347.mkv +彭丽媛-中国的月亮,http://em.21dtv.com/songs/60058880.mkv +廖莎+叶矛-中国的月亮,http://em.21dtv.com/songs/60058879.mkv +阎维文-中国大阅兵,http://em.21dtv.com/songs/60058873.mkv +吴静-中国大阅兵,http://em.21dtv.com/songs/60058872.mkv +张也-中国的希望,http://em.21dtv.com/songs/60058878.mkv +九缘兄弟-珍贵的兄弟,http://em.21dtv.com/songs/60114972.mkv +殷秀梅-中国大舞台,http://em.21dtv.com/songs/60058871.mkv +孙丽英-中国大团圆,http://em.21dtv.com/songs/60087651.mkv +张国荣-走过的岁月,http://em.21dtv.com/songs/60092581.mkv +汤灿-中国的声音,http://em.21dtv.com/songs/60091591.mkv +大隶-再给点时间,http://em.21dtv.com/songs/60114466.mkv +陈瑞-走过的时候,http://em.21dtv.com/songs/60059889.mkv +刘媛媛-祖国的哨兵,http://em.21dtv.com/songs/60067826.mkv +邹娜-中国大手笔,http://em.21dtv.com/songs/60058870.mkv +施文彬-正港的朋友,http://em.21dtv.com/songs/60058346.mkv +AMURO-自挂东南枝,http://em.21dtv.com/songs/60079724.mkv +温兆伦-这孤单女子,http://em.21dtv.com/songs/60057798.mkv +群星-中国队加油,http://em.21dtv.com/songs/60058881.mkv +云朵-中国的孩子(演唱会),http://em.21dtv.com/songs/60058876.mkv +陈思思+刘和刚-祖国的海洋,http://em.21dtv.com/songs/60100586.mkv +王丽达+汤子星-祖国的海洋,http://em.21dtv.com/songs/60071551.mkv +爱朵女孩-祖国的花朵,http://em.21dtv.com/songs/60079754.mkv +黎瑞莲-最孤单的心,http://em.21dtv.com/songs/60060139.mkv +梦然-最孤独的人,http://em.21dtv.com/songs/60131576.mkv +炎彬-最孤单的人,http://em.21dtv.com/songs/60079773.mkv +张也-中国的春天,http://em.21dtv.com/songs/60058874.mkv +彭丽媛-中国朝前走,http://em.21dtv.com/songs/60058869.mkv +彭丽媛-祖国春光好,http://em.21dtv.com/songs/60091175.mkv +宋红历-祖国春常在,http://em.21dtv.com/songs/60130260.mkv +吕继宏+张也-中国春常在,http://em.21dtv.com/songs/60103971.mkv +李谷一-祖国春常在,http://em.21dtv.com/songs/60059998.mkv +含笑+苏小花-中国冲冲冲,http://em.21dtv.com/songs/60122572.mkv +佚名-走过长安街,http://em.21dtv.com/songs/60059899.mkv +苏路-早该爱着你,http://em.21dtv.com/songs/60070222.mkv +胡松华-祖国啊母亲,http://em.21dtv.com/songs/60059993.mkv +佚名-尊干爱兵歌,http://em.21dtv.com/songs/60060554.mkv +刘小钰-祝福有情人,http://em.21dtv.com/songs/60059340.mkv +曾光萍+张升营-张凤戏秋娟,http://em.21dtv.com/songs/60089940.mkv +于文华-丈夫辛苦了,http://em.21dtv.com/songs/60087254.mkv +江蕙-重逢未了情,http://em.21dtv.com/songs/60059118.mkv +卡拉OK-长发为君剪,http://em.21dtv.com/songs/60089194.mkv +gala-征服太平洋,http://em.21dtv.com/songs/60113164.mkv +群星-重返十七岁,http://em.21dtv.com/songs/60112150.mkv +韩紫灵-祝福送给你,http://em.21dtv.com/songs/60135986.mkv +枫舞+李琪-祝福送给你,http://em.21dtv.com/songs/60112032.mkv +李俊男-祝福是放手,http://em.21dtv.com/songs/60128083.mkv +良一-重逢泉州港,http://em.21dtv.com/songs/60113989.mkv +段红-祝福你中国,http://em.21dtv.com/songs/60066604.mkv +蒋大为-祝福你祖国(演唱会),http://em.21dtv.com/songs/60059330.mkv +俞静-祝福你一生,http://em.21dtv.com/songs/60059329.mkv +天星董阳+金克成-祝福你兄弟,http://em.21dtv.com/songs/60120439.mkv +董阳-祝福你兄弟,http://em.21dtv.com/songs/60114019.mkv +陈思安-祝福你甲伊,http://em.21dtv.com/songs/60059325.mkv +林强-祝福您大家,http://em.21dtv.com/songs/60059331.mkv +乌兰雪容-祝福你草原,http://em.21dtv.com/songs/60090491.mkv +吴百伦-征服明天我,http://em.21dtv.com/songs/60058322.mkv +办桌二人组-重逢火车站,http://em.21dtv.com/songs/60059116.mkv +江蕙-重逢高雄港,http://em.21dtv.com/songs/60095751.mkv +陈雷-重逢高雄港,http://em.21dtv.com/songs/60059115.mkv +快乐家族-绽放的微笑,http://em.21dtv.com/songs/60057531.mkv +高胜美-追风的女儿,http://em.21dtv.com/songs/60059504.mkv +刘艺淼-绽放的玫瑰,http://em.21dtv.com/songs/60110038.mkv +追风骏马组合-追风的骏马,http://em.21dtv.com/songs/60116275.mkv +陈雅森-重复的谎言,http://em.21dtv.com/songs/60119031.mkv +龙千玉+陈百潭-重逢等何时,http://em.21dtv.com/songs/60059114.mkv +佚名-重逢的港口,http://em.21dtv.com/songs/60059113.mkv +龙千玉-重逢的港口,http://em.21dtv.com/songs/60059112.mkv +陈一郎-重逢的港口,http://em.21dtv.com/songs/60059111.mkv +刘刚-自废的承诺,http://em.21dtv.com/songs/60059680.mkv +拉毛王旭-祝福大别山,http://em.21dtv.com/songs/60130364.mkv +冯刚毅-重返长生殿,http://em.21dtv.com/songs/60059099.mkv +苏永康-做福百万人,http://em.21dtv.com/songs/60093081.mkv +童唱-早发白帝城,http://em.21dtv.com/songs/60057305.mkv +佚名-咱二人的爱(无原唱),http://em.21dtv.com/songs/60057235.mkv +王泽太-罪恶的温柔,http://em.21dtv.com/songs/60116156.mkv +张学友-再度重遇你,http://em.21dtv.com/songs/60115150.mkv +张学友-再度重遇你,http://em.21dtv.com/songs/60081829.mkv +周慧敏-只等这一季,http://em.21dtv.com/songs/60058398.mkv +孙露-再度重相逢,http://em.21dtv.com/songs/60065443.mkv +伍佰-再度重相逢,http://em.21dtv.com/songs/60056753.mkv +陈星-真的要走了,http://em.21dtv.com/songs/60058118.mkv +逃跑计划-直到有一天,http://em.21dtv.com/songs/60120988.mkv +林美美-咱兜有行情(无原唱),http://em.21dtv.com/songs/60057234.mkv +谭咏麟-知道又如何,http://em.21dtv.com/songs/60058658.mkv +佚名-走到一起来,http://em.21dtv.com/songs/60059877.mkv +陈红+林依轮-走到一起来,http://em.21dtv.com/songs/60059876.mkv +妮南+刘彤-走到一起来(演唱会),http://em.21dtv.com/songs/60059875.mkv +成龙-真的用了心,http://em.21dtv.com/songs/60058119.mkv +DJ舞曲-重低音极品,http://em.21dtv.com/songs/50000192.mkv +金玟岐-直到遇见你,http://em.21dtv.com/songs/60120043.mkv +邰正宵-再等一百年,http://em.21dtv.com/songs/60056747.mkv +庾澄庆-注定要爱你,http://em.21dtv.com/songs/60092553.mkv +丁汀-真的需要你,http://em.21dtv.com/songs/60081869.mkv +巫启贤-真的谢谢你,http://em.21dtv.com/songs/60058117.mkv +王中平-咱的戏棚戏,http://em.21dtv.com/songs/60065460.mkv +李玟-真的想见你(演唱会),http://em.21dtv.com/songs/60058115.mkv +小沈阳+汤潮-真的想回家,http://em.21dtv.com/songs/60115107.mkv +倪金威-真的想回家,http://em.21dtv.com/songs/60112517.mkv +汤潮-真的想回家,http://em.21dtv.com/songs/60106060.mkv +熊七梅-真的无所谓,http://em.21dtv.com/songs/60058114.mkv +毕昕-真的无所谓,http://em.21dtv.com/songs/60058113.mkv +符致逸-真的我没事,http://em.21dtv.com/songs/60058111.mkv +春妹-转动我的腰,http://em.21dtv.com/songs/60059435.mkv +钟盛忠+钟晓玉-最懂我的人,http://em.21dtv.com/songs/60100530.mkv +邱晨悦-再多停一秒,http://em.21dtv.com/songs/60126258.mkv +薛凯琪-找到天使了,http://em.21dtv.com/songs/60057671.mkv +群星-最动听情歌(舞曲版),http://em.21dtv.com/songs/60079772.mkv +门丽-最动听情歌,http://em.21dtv.com/songs/60060136.mkv +萧贺硕-坐地铁回家,http://em.21dtv.com/songs/60079831.mkv +王建杰-真的太爱你,http://em.21dtv.com/songs/60058108.mkv +蓝立萍-真的是你吗,http://em.21dtv.com/songs/60058106.mkv +彭羚-只当是个梦,http://em.21dtv.com/songs/60058394.mkv +赵真-真的伤不起,http://em.21dtv.com/songs/60061889.mkv +杨丞琳-折叠式爱情,http://em.21dtv.com/songs/60057737.mkv +罗力威-在地球漫步,http://em.21dtv.com/songs/60126027.mkv +罗力威-在地球漫步,http://em.21dtv.com/songs/60124341.mkv +佚名-走到情拢散,http://em.21dtv.com/songs/60059873.mkv +吴宗宪-走到情拢散,http://em.21dtv.com/songs/60000390.mkv +刘惜君-直到那一天,http://em.21dtv.com/songs/60119293.mkv +刘惜君-直到那一天,http://em.21dtv.com/songs/60118392.mkv +王杰-醉读女人心,http://em.21dtv.com/songs/60060486.mkv +刘文正-正当你年轻,http://em.21dtv.com/songs/60058344.mkv +蜜雪薇琪-知道你会走(演唱会),http://em.21dtv.com/songs/60058657.mkv +ALIN-最懂你的人,http://em.21dtv.com/songs/60086288.mkv +梁咏琪-找到你便够,http://em.21dtv.com/songs/60057670.mkv +萱萱-知道你爱我,http://em.21dtv.com/songs/60112198.mkv +何守建-真的没再见,http://em.21dtv.com/songs/60125121.mkv +赵真+祁隆-真的没骗你,http://em.21dtv.com/songs/60100480.mkv +丁亮-真的离开我,http://em.21dtv.com/songs/60084544.mkv +朱青-直到流干泪,http://em.21dtv.com/songs/60063476.mkv +石梅-注定离不开,http://em.21dtv.com/songs/60069022.mkv +佚名-战斗进行曲,http://em.21dtv.com/songs/60057467.mkv +陈小云-招弟甲罔市(伦巴),http://em.21dtv.com/songs/60057650.mkv +郑秀文-祝大家好过(演唱会),http://em.21dtv.com/songs/60059289.mkv +王若琳-正当继承人,http://em.21dtv.com/songs/60129416.mkv +刘雷-真的很在乎,http://em.21dtv.com/songs/60121460.mkv +杨坤-真的很在乎,http://em.21dtv.com/songs/60079573.mkv +可风-真的很想你,http://em.21dtv.com/songs/60086244.mkv +童丽-真的好想你,http://em.21dtv.com/songs/60079572.mkv +卓依婷-真的好想你,http://em.21dtv.com/songs/60058099.mkv +周冰倩-真的好想你,http://em.21dtv.com/songs/60058098.mkv +田家达-真的好想你,http://em.21dtv.com/songs/60058097.mkv +谢霆锋-做对好兄弟,http://em.21dtv.com/songs/60093184.mkv +邰正宵-真的好爱你,http://em.21dtv.com/songs/60132978.mkv +张启辉-真的好爱你,http://em.21dtv.com/songs/60081264.mkv +晟瑶-真的好爱你,http://em.21dtv.com/songs/60079570.mkv +刘其贤-真的很爱你,http://em.21dtv.com/songs/60062668.mkv +陆平-真的很爱你,http://em.21dtv.com/songs/60058100.mkv +黑龙-真的好爱你,http://em.21dtv.com/songs/60058096.mkv +王岗岗-走 打鬼子去,http://em.21dtv.com/songs/60087149.mkv +苏慧伦-追得过一切,http://em.21dtv.com/songs/60088529.mkv +侯湘婷+汪蕊+王绍珏-真的更精彩,http://em.21dtv.com/songs/60058092.mkv +佚名-这等待眼睛,http://em.21dtv.com/songs/60057765.mkv +萧正楠-最短的情信,http://em.21dtv.com/songs/60060137.mkv +吴思贤-最大的缺点(HD),http://em.21dtv.com/songs/10012734.mkv +吴思贤-最大的缺点,http://em.21dtv.com/songs/60102031.mkv +司马原野-注定的结局,http://em.21dtv.com/songs/60067810.mkv +周慧敏-注定的结局,http://em.21dtv.com/songs/60059282.mkv +周慧敏-注定的结局(演唱会),http://em.21dtv.com/songs/60059281.mkv +小老虎+SOULSPEAK-再等等鸽子,http://em.21dtv.com/songs/60123855.mkv +乔嘉-真的对不起,http://em.21dtv.com/songs/60111678.mkv +乔嘉-真的对不起,http://em.21dtv.com/songs/60097627.mkv +刘可可-真的对不起,http://em.21dtv.com/songs/60084542.mkv +杨培安-最短的爱情,http://em.21dtv.com/songs/60097678.mkv +杨丞琳-折叠的爱情,http://em.21dtv.com/songs/60088056.mkv +黎明-中毒的爱情,http://em.21dtv.com/songs/60058859.mkv +曾宝仪-最懂得爱你,http://em.21dtv.com/songs/60060133.mkv +金婷婷-知道不知道(演唱会),http://em.21dtv.com/songs/60099552.mkv +苗苗-知道不知道,http://em.21dtv.com/songs/60096472.mkv +刘孟哲-知道不知道,http://em.21dtv.com/songs/60087123.mkv +张瑶-知道不知道,http://em.21dtv.com/songs/60058656.mkv +万芳-知道不知道,http://em.21dtv.com/songs/60058655.mkv +童一首歌-知道不知道,http://em.21dtv.com/songs/60058654.mkv +莫文蔚-知道不知道,http://em.21dtv.com/songs/60058653.mkv +刘若英-知道不知道,http://em.21dtv.com/songs/60058652.mkv +黄卓-知道不知道,http://em.21dtv.com/songs/60058651.mkv +韩宝仪-知道不知道,http://em.21dtv.com/songs/60058650.mkv +龚月-知道不知道,http://em.21dtv.com/songs/60058649.mkv +安雯-知道不知道,http://em.21dtv.com/songs/60058648.mkv +张凤凤-知道不知道(演唱会),http://em.21dtv.com/songs/60058647.mkv +刘韵-知道不知道(演唱会),http://em.21dtv.com/songs/60058646.mkv +佚名-知道不知道(伦巴),http://em.21dtv.com/songs/60058645.mkv +冷漠-真的不应该,http://em.21dtv.com/songs/60066592.mkv +郎郎-真的不想老,http://em.21dtv.com/songs/60104480.mkv +庄心妍-真的不容易,http://em.21dtv.com/songs/60072797.mkv +孟杨-真的不可以,http://em.21dtv.com/songs/60061888.mkv +刘斌-咱当兵的人,http://em.21dtv.com/songs/60087406.mkv +梁雁翎-真的爱我吗,http://em.21dtv.com/songs/60058088.mkv +许佳慧-真的爱上你,http://em.21dtv.com/songs/60063216.mkv +古巨基+张柏芝-直到爱上你,http://em.21dtv.com/songs/60058722.mkv +袁彬-真的爱错了,http://em.21dtv.com/songs/60097628.mkv +张雷-真的爱不起,http://em.21dtv.com/songs/60079569.mkv +高林生-再次走近你,http://em.21dtv.com/songs/60089544.mkv +大庆小芳-支持中国货,http://em.21dtv.com/songs/60127883.mkv +胡龄月+兰雨-再唱映山红,http://em.21dtv.com/songs/60113984.mkv +王莹-再唱映山红,http://em.21dtv.com/songs/60106125.mkv +苏慧伦-再唱一首歌,http://em.21dtv.com/songs/60056737.mkv +赵薇-自从有了你,http://em.21dtv.com/songs/60059674.mkv +彭文华-自从遇见你,http://em.21dtv.com/songs/60126909.mkv +曹与欢-再次遇见你,http://em.21dtv.com/songs/60109401.mkv +戚薇-自从遇见你,http://em.21dtv.com/songs/60079722.mkv +吕雯-自从遇见你,http://em.21dtv.com/songs/60062733.mkv +龙凤之约-在草原等我,http://em.21dtv.com/songs/60087099.mkv +杨波+陈彩林-在草原等你,http://em.21dtv.com/songs/60106001.mkv +佚名-忠诚于党歌,http://em.21dtv.com/songs/60079659.mkv +军歌-忠诚于党歌,http://em.21dtv.com/songs/60070254.mkv +正午-只差一点点,http://em.21dtv.com/songs/60116083.mkv +刘姝辰-再唱新年好,http://em.21dtv.com/songs/60079451.mkv +佚名-忠诚卫士歌,http://em.21dtv.com/songs/60058998.mkv +祖海-再唱为了谁,http://em.21dtv.com/songs/60056736.mkv +李佳-再唱甜蜜蜜,http://em.21dtv.com/songs/60056735.mkv +梁朝伟-这次是真的,http://em.21dtv.com/songs/60057762.mkv +群星-这城市有爱,http://em.21dtv.com/songs/60057756.mkv +谢帝-这才是成都,http://em.21dtv.com/songs/60132886.mkv +TWINS-作词人的错(演唱会),http://em.21dtv.com/songs/60060670.mkv +梁耀安+蒋文瑞-紫钗情-拾钗,http://em.21dtv.com/songs/60059640.mkv +蔡小虎-最痴情的人,http://em.21dtv.com/songs/60060124.mkv +黄艳磊-自从你走后,http://em.21dtv.com/songs/60115551.mkv +许慧欣-走出你视线,http://em.21dtv.com/songs/60092059.mkv +GOGO+MEME-自从你出现,http://em.21dtv.com/songs/60059672.mkv +佚名-这次来真的,http://em.21dtv.com/songs/60057758.mkv +袁惟仁-自从离开你(无原唱),http://em.21dtv.com/songs/60059671.mkv +佚名-这次离开你,http://em.21dtv.com/songs/60057760.mkv +陈筱娟-这次离开你,http://em.21dtv.com/songs/60057759.mkv +蔡献华-再唱蓝宝石,http://em.21dtv.com/songs/60100453.mkv +赵薇-自从离别后,http://em.21dtv.com/songs/60059670.mkv +胡大亮+单艺-这才叫做爱,http://em.21dtv.com/songs/60119898.mkv +Mad Clown+金娜英-再次见到你,http://em.21dtv.com/songs/60120224.mkv +刘欢-再次见到你,http://em.21dtv.com/songs/60090716.mkv +盖鸣晖-紫钗记-钗圆(演唱会),http://em.21dtv.com/songs/60059629.mkv +张斌-再唱红梅赞,http://em.21dtv.com/songs/60119523.mkv +贾永久-再唱红梅赞,http://em.21dtv.com/songs/60118067.mkv +改编对唱-再唱洪湖水,http://em.21dtv.com/songs/60128032.mkv +叶思言-再唱洪湖水,http://em.21dtv.com/songs/60120393.mkv +佚名-走唱过一生,http://em.21dtv.com/songs/60059863.mkv +Jinusean+张韩娜-再次告诉我,http://em.21dtv.com/songs/60110772.mkv +BBF-只唱给你听,http://em.21dtv.com/songs/60132046.mkv +马常宝+于兰-再唱姑娘山,http://em.21dtv.com/songs/60124711.mkv +菲麦尔-最初的自己,http://em.21dtv.com/songs/60100434.mkv +李逸-最长的一日,http://em.21dtv.com/songs/60060450.mkv +尚芸菲+蓝雨-最初的拥抱,http://em.21dtv.com/songs/60099208.mkv +原子霏-最初的信仰,http://em.21dtv.com/songs/60126672.mkv +孙浩雨-最初的信仰,http://em.21dtv.com/songs/60110987.mkv +张钰琪-最初的信仰,http://em.21dtv.com/songs/60100040.mkv +张蓉蓉-走唱的心声,http://em.21dtv.com/songs/60059862.mkv +安香+徐子策-最初的温柔,http://em.21dtv.com/songs/60106782.mkv +赵乃吉-最初的温柔,http://em.21dtv.com/songs/60105392.mkv +冷漠-最初的我们,http://em.21dtv.com/songs/60097674.mkv +何永俊-最初的童话,http://em.21dtv.com/songs/60060131.mkv +韩寒-最差的时光,http://em.21dtv.com/songs/60060123.mkv +陈绮贞-最初的起点,http://em.21dtv.com/songs/60060130.mkv +梁咏琪-走出地平线,http://em.21dtv.com/songs/60091519.mkv +张婧-最初的年华,http://em.21dtv.com/songs/60081440.mkv +寂悸-最初的模样,http://em.21dtv.com/songs/60123849.mkv +韩丰-最初的梦想,http://em.21dtv.com/songs/60135977.mkv +许霖-最初的梦想,http://em.21dtv.com/songs/60129611.mkv +井柏然-最初的梦想,http://em.21dtv.com/songs/60123616.mkv +范玮琪-最初的梦想,http://em.21dtv.com/songs/60060129.mkv +刁寒-最初的美丽,http://em.21dtv.com/songs/60060128.mkv +王莉-真诚的美丽,http://em.21dtv.com/songs/60058075.mkv +张若昀-最长的旅途,http://em.21dtv.com/songs/60123948.mkv +李琦-最长的旅途,http://em.21dtv.com/songs/60112763.mkv +山鹰组合-走出大凉山,http://em.21dtv.com/songs/60059867.mkv +山鹰组合-走出大凉山(演唱会),http://em.21dtv.com/songs/60059866.mkv +李魏西-最初的快乐,http://em.21dtv.com/songs/60100174.mkv +沙宝亮-最初的信仰,http://em.21dtv.com/songs/60079771.mkv +嗑着瓜子的猫-最长的电影,http://em.21dtv.com/songs/60127873.mkv +赵乃吉-最长的电影,http://em.21dtv.com/songs/60134260.mkv +苏浩+孙伯纶-最长的电影,http://em.21dtv.com/songs/60114742.mkv +茜拉-最长的电影,http://em.21dtv.com/songs/60098722.mkv +周杰伦-最长的电影,http://em.21dtv.com/songs/60060449.mkv +伍佰-最初的地方(演唱会),http://em.21dtv.com/songs/60060127.mkv +孙晓雨-再唱灞桥柳,http://em.21dtv.com/songs/60086198.mkv +陈盈洁-自从爱着你,http://em.21dtv.com/songs/60059668.mkv +蔡凤凰+杨鸣-自从爱着你,http://em.21dtv.com/songs/60059667.mkv +BUONO-杂草のうた,http://em.21dtv.com/songs/60056704.mkv +卡拉OK-找不著籍口,http://em.21dtv.com/songs/60087503.mkv +叶振棠-找不着借口,http://em.21dtv.com/songs/60057667.mkv +叶振棠-找不着借口(演唱会),http://em.21dtv.com/songs/60057666.mkv +JESSICA-止不住的泪,http://em.21dtv.com/songs/60084557.mkv +张凡-这辈子的爱,http://em.21dtv.com/songs/60113454.mkv +胡艺-这辈子爱你,http://em.21dtv.com/songs/60098712.mkv +翁立友-这杯饮落去,http://em.21dtv.com/songs/60079542.mkv +周越洪-主播也很累,http://em.21dtv.com/songs/60107607.mkv +龙千玉-醉比醒卡好,http://em.21dtv.com/songs/60060483.mkv +七郎+乔幼-纸包袜条火,http://em.21dtv.com/songs/60084568.mkv +陈少华-走不完的路,http://em.21dtv.com/songs/60084611.mkv +叶蔻-走不完的爱,http://em.21dtv.com/songs/60059861.mkv +本兮+单小源+小伟-在悲伤之后,http://em.21dtv.com/songs/60100105.mkv +本兮+许嵩+单小飞+单小源-在悲伤之后,http://em.21dtv.com/songs/60067768.mkv +李晓然-这不算什么,http://em.21dtv.com/songs/60098466.mkv +王苗-这不是情歌,http://em.21dtv.com/songs/60107908.mkv +卢焕刚-这不是情歌,http://em.21dtv.com/songs/60103960.mkv +陈茂丰-咱不是讲好,http://em.21dtv.com/songs/60135942.mkv +PU-B2-这不是爱情,http://em.21dtv.com/songs/60079851.mkv +魏楚沅-再抱紧一点,http://em.21dtv.com/songs/60105534.mkv +爱戴-准备接受爱,http://em.21dtv.com/songs/60059572.mkv +胡夏-准备好要爱(演唱会),http://em.21dtv.com/songs/60067818.mkv +老兵-准备好了吗,http://em.21dtv.com/songs/60065509.mkv +顺子-找不回的爱,http://em.21dtv.com/songs/60093664.mkv +大哲-最笨的男人,http://em.21dtv.com/songs/60118480.mkv +言承旭-找不到出路,http://em.21dtv.com/songs/60057662.mkv +任然-走不出回忆,http://em.21dtv.com/songs/60132189.mkv +林晓薇-走不出的城,http://em.21dtv.com/songs/60127108.mkv +夏婉安-纸包不住火,http://em.21dtv.com/songs/60118471.mkv +许飞-左半边翅膀,http://em.21dtv.com/songs/60060632.mkv +那英-最爱这一天,http://em.21dtv.com/songs/60060116.mkv +那英-最爱这一天(演唱会),http://em.21dtv.com/songs/60060115.mkv +张蓉蓉-真爱只有你,http://em.21dtv.com/songs/60058069.mkv +傅振辉+林姗-真爱只有你,http://em.21dtv.com/songs/60058068.mkv +龙飞+云飞儿-只爱这一次,http://em.21dtv.com/songs/60105414.mkv +李青+时嘉-只爱这一次,http://em.21dtv.com/songs/60086250.mkv +许云上-真爱在梦中(演),http://em.21dtv.com/songs/60099490.mkv +黎明-真爱在明天,http://em.21dtv.com/songs/60058067.mkv +蓝迪-最爱中国字,http://em.21dtv.com/songs/60134191.mkv +李牧遥-真爱与拥有,http://em.21dtv.com/songs/60088026.mkv +灿烂阿龙-再爱一万年,http://em.21dtv.com/songs/60066571.mkv +李羿慧-真爱一世情,http://em.21dtv.com/songs/60058063.mkv +徐小凤-真爱又如何,http://em.21dtv.com/songs/60058065.mkv +方力申-只爱一个人,http://em.21dtv.com/songs/60062346.mkv +巫启贤+方丽仪-只爱一点点,http://em.21dtv.com/songs/60058393.mkv +陈慧琳-最爱演唱会,http://em.21dtv.com/songs/60060113.mkv +李克勤-最爱演唱会(演唱会),http://em.21dtv.com/songs/60060112.mkv +陈慧琳+许志安-最爱演唱会(演唱会),http://em.21dtv.com/songs/60060111.mkv +谭咏麟-最爱笑的人,http://em.21dtv.com/songs/60060110.mkv +任盈盈-真爱我做主,http://em.21dtv.com/songs/60120301.mkv +梅艳芳-最爱我自己,http://em.21dtv.com/songs/60060109.mkv +张杰-再爱我一回,http://em.21dtv.com/songs/60056721.mkv +江珊-只爱我一个,http://em.21dtv.com/songs/60058392.mkv +蔡琴-再爱我一次,http://em.21dtv.com/songs/60056720.mkv +蔡琴-再爱我一次(HD演唱会),http://em.21dtv.com/songs/60056719.mkv +大哲-真爱无情人,http://em.21dtv.com/songs/60084540.mkv +菜籽-主啊我求你,http://em.21dtv.com/songs/60135684.mkv +伊琳-再爱我几天,http://em.21dtv.com/songs/60056718.mkv +何润东-再爱我好吗,http://em.21dtv.com/songs/60056717.mkv +陈美凤+蔡小虎-真爱无后悔,http://em.21dtv.com/songs/60058059.mkv +董燕妮-真爱太昂贵,http://em.21dtv.com/songs/60058057.mkv +叶倩文-最爱是我家,http://em.21dtv.com/songs/60060108.mkv +詹雅雯-真爱谁人知,http://em.21dtv.com/songs/60058056.mkv +刘德华-真爱是苦味,http://em.21dtv.com/songs/60058052.mkv +罗时丰-最爱上海滩,http://em.21dtv.com/songs/60088441.mkv +刘德华-最爱上海滩,http://em.21dtv.com/songs/60060094.mkv +谢雨欣-在爱人身边,http://em.21dtv.com/songs/60092096.mkv +吕雯-真爱惹麻烦,http://em.21dtv.com/songs/60081951.mkv +郑恩地-在爱情面前,http://em.21dtv.com/songs/60123234.mkv +曾心梅-最爱你一人(无原唱),http://em.21dtv.com/songs/60095588.mkv +阿吉仔+苏路-只爱你一人,http://em.21dtv.com/songs/60071522.mkv +办桌阿杰+王羚柔-只爱你一个,http://em.21dtv.com/songs/60062225.mkv +唐心-只爱你一个,http://em.21dtv.com/songs/60058390.mkv +苏又熔-只爱你一个,http://em.21dtv.com/songs/60058389.mkv +龙千玉-只爱你一个,http://em.21dtv.com/songs/60058388.mkv +冷漠-再爱你一次,http://em.21dtv.com/songs/60107512.mkv +王铮亮-真爱你的云,http://em.21dtv.com/songs/60058049.mkv +黄国俊-真爱你的云,http://em.21dtv.com/songs/60058048.mkv +蔡恒-最爱你的笑,http://em.21dtv.com/songs/60060092.mkv +李浩民-最爱你的人,http://em.21dtv.com/songs/60132556.mkv +刘传彬-最爱你的人,http://em.21dtv.com/songs/60105631.mkv +李浩民-最爱你的人,http://em.21dtv.com/songs/60087155.mkv +常艾非-最爱你的人,http://em.21dtv.com/songs/60010165.mkv +红月-最爱民族风,http://em.21dtv.com/songs/60072831.mkv +顾莉雅-真爱每一天(演唱会),http://em.21dtv.com/songs/60058042.mkv +李易峰-早安摩天轮,http://em.21dtv.com/songs/60057287.mkv +墨绿森林-只爱陌生人,http://em.21dtv.com/songs/60080677.mkv +王菲-只爱陌生人,http://em.21dtv.com/songs/60058385.mkv +张亚东-只爱陌生人(无原唱),http://em.21dtv.com/songs/60058384.mkv +SNH48-早安梦幻岛,http://em.21dtv.com/songs/60123538.mkv +蔡仁皓-真爱来敲门,http://em.21dtv.com/songs/60058040.mkv +梁静茹-在爱里等你,http://em.21dtv.com/songs/60107843.mkv +尚雯婕-智爱狂想曲,http://em.21dtv.com/songs/60123858.mkv +杨千嬅-真爱开玩笑,http://em.21dtv.com/songs/60058036.mkv +佚名-真爱看不到,http://em.21dtv.com/songs/60058039.mkv +王杰-真爱看不到,http://em.21dtv.com/songs/60058038.mkv +佚名-真爱看不到(无原唱),http://em.21dtv.com/songs/60058037.mkv +后弦-只爱火星人,http://em.21dtv.com/songs/60087536.mkv +唐禹哲-最爱还是你,http://em.21dtv.com/songs/60060088.mkv +刘立峰-真爱好难求,http://em.21dtv.com/songs/60099119.mkv +陈升-真爱a感觉(演唱会),http://em.21dtv.com/songs/60058029.mkv +栗锦+汤琦+林文静+刘鹏远-只爱高跟鞋,http://em.21dtv.com/songs/60086249.mkv +葛泓语-只爱高跟鞋,http://em.21dtv.com/songs/60081597.mkv +张惠妹-只爱高跟鞋(演唱会),http://em.21dtv.com/songs/60058383.mkv +冯杰-只爱高富帅,http://em.21dtv.com/songs/60127756.mkv +黄品冠+丁当-真爱到永远(演唱会),http://em.21dtv.com/songs/60058031.mkv +陶喆-真爱等一下,http://em.21dtv.com/songs/60080274.mkv +魏晨-只爱到一半,http://em.21dtv.com/songs/60071521.mkv +刀郎-真爱的胸怀,http://em.21dtv.com/songs/60058033.mkv +张靓颖-真爱的味道,http://em.21dtv.com/songs/60063382.mkv +陈喆+张庭锐-最爱的是你,http://em.21dtv.com/songs/60127543.mkv +小乔-最爱的是你,http://em.21dtv.com/songs/60103228.mkv +于玄子+陈艺彤-最爱的是你,http://em.21dtv.com/songs/60084634.mkv +郑中基-最爱的是你,http://em.21dtv.com/songs/60060086.mkv +楚奕-最爱的七中,http://em.21dtv.com/songs/60066618.mkv +张凌枫-最爱的情歌,http://em.21dtv.com/songs/60069038.mkv +李娅莎-最爱的情歌,http://em.21dtv.com/songs/60065525.mkv +苏有朋-最爱的朋友,http://em.21dtv.com/songs/60060070.mkv +金城-最爱的女人,http://em.21dtv.com/songs/60061928.mkv +龙奔-最爱的女人,http://em.21dtv.com/songs/60060068.mkv +小豪-最爱的女孩,http://em.21dtv.com/songs/60115879.mkv +朱子峰-最爱的女孩,http://em.21dtv.com/songs/60111955.mkv +元强-最爱的女孩,http://em.21dtv.com/songs/60093895.mkv +大哲-最爱的女孩,http://em.21dtv.com/songs/60062310.mkv +财郎-真爱断了弦,http://em.21dtv.com/songs/60106296.mkv +林绫-真爱的旅行,http://em.21dtv.com/songs/60058032.mkv +林志炫-在爱的路上,http://em.21dtv.com/songs/60089367.mkv +雅立-找爱的空位,http://em.21dtv.com/songs/60057658.mkv +吴亚荣-最爱的姑娘,http://em.21dtv.com/songs/60121490.mkv +张晓明-最爱的姑娘,http://em.21dtv.com/songs/60098348.mkv +李子杰-最爱的姑娘,http://em.21dtv.com/songs/60072830.mkv +吴奇隆-再爱的冲动,http://em.21dtv.com/songs/60056713.mkv +JERRY+MERRY-最爱的宝贝,http://em.21dtv.com/songs/60060064.mkv +吴木蓝-早安晨之美,http://em.21dtv.com/songs/60081505.mkv +卢广仲-早安晨之美,http://em.21dtv.com/songs/60057286.mkv +林晓勇-主啊差遣我,http://em.21dtv.com/songs/60119705.mkv +朕威-真爱才动心,http://em.21dtv.com/songs/60130391.mkv +张心杰-最爱不是我,http://em.21dtv.com/songs/60060062.mkv +孙悦-真爱不改变,http://em.21dtv.com/songs/60090904.mkv +乐TEEN歌声-主爱不变迁,http://em.21dtv.com/songs/60069021.mkv +乃木坂46-月の大きさ,http://em.21dtv.com/songs/60093954.mkv +郭品超-一直在这里,http://em.21dtv.com/songs/60053926.mkv +易欣-眼中只有你,http://em.21dtv.com/songs/60052102.mkv +媛媛-迎战中国梦,http://em.21dtv.com/songs/60102107.mkv +星弟-一直在附近,http://em.21dtv.com/songs/60053924.mkv +唐古-一直在等你,http://em.21dtv.com/songs/60110948.mkv +佚名-犹在这等待,http://em.21dtv.com/songs/60054985.mkv +POPU LADY-一直一直爱,http://em.21dtv.com/songs/60093939.mkv +尹光+李丽仪-要仔也要女(戏曲),http://em.21dtv.com/songs/60092540.mkv +庄伟斌-越走越相信,http://em.21dtv.com/songs/60116766.mkv +温兆伦-月照有心人,http://em.21dtv.com/songs/60056563.mkv +吴进法-一仔一心肝,http://em.21dtv.com/songs/60126704.mkv +江一燕-雨中圆舞曲,http://em.21dtv.com/songs/60055769.mkv +郭颂-越走越亮堂,http://em.21dtv.com/songs/60056634.mkv +郑玉华-约在月光下,http://em.21dtv.com/songs/60134313.mkv +吴欢-一直一个人,http://em.21dtv.com/songs/60053922.mkv +天空乐队+田斯斯-一整夜不睡,http://em.21dtv.com/songs/60105735.mkv +大喇叭-一抓一蹦跶,http://em.21dtv.com/songs/60132320.mkv +余润泽&徐铵-一抓一蹦跶,http://em.21dtv.com/songs/60132204.mkv +大喇叭组合-一抓一蹦跶,http://em.21dtv.com/songs/60130214.mkv +余润泽+徐铵-一抓一蹦跶,http://em.21dtv.com/songs/60128785.mkv +萧全-一整夜 All Night,http://em.21dtv.com/songs/60100436.mkv +庄心妍-一直想着他,http://em.21dtv.com/songs/60096263.mkv +来国庆+唐雅-一支小雨伞,http://em.21dtv.com/songs/60062550.mkv +佚名-一支小雨伞,http://em.21dtv.com/songs/60053878.mkv +叶启田-一支小雨伞,http://em.21dtv.com/songs/60053877.mkv +小凤凤-一支小雨伞,http://em.21dtv.com/songs/60053876.mkv +王建杰-一支小雨伞,http://em.21dtv.com/songs/60053875.mkv +洪荣宏-一支小雨伞,http://em.21dtv.com/songs/60053874.mkv +金波-一直向前走(演唱会),http://em.21dtv.com/songs/60053919.mkv +童唱-一只小麻雀,http://em.21dtv.com/songs/60053892.mkv +赵小兵+王业星-燕赵兄弟情,http://em.21dtv.com/songs/60094307.mkv +洪荣宏-一阵西北雨(无原唱),http://em.21dtv.com/songs/60053866.mkv +Y.I.Y.O-一直往前走,http://em.21dtv.com/songs/60053915.mkv +陈玉建+木子-一直往前闯,http://em.21dtv.com/songs/60113067.mkv +梁汉文-一再问究境,http://em.21dtv.com/songs/60079162.mkv +林欣彤-一再问究竟(演唱会),http://em.21dtv.com/songs/60065359.mkv +苏慧伦-鸭子(双语种),http://em.21dtv.com/songs/60051874.mkv +许茹芸-一直是晴天,http://em.21dtv.com/songs/60053914.mkv +深白色2人组-鱼在水里哭,http://em.21dtv.com/songs/60055534.mkv +THE BE FOUR-要争取快乐(演唱会),http://em.21dtv.com/songs/60084329.mkv +MARIA CORDERO-要争取快乐(演唱会),http://em.21dtv.com/songs/60052403.mkv +佚名-要争取快乐(无原唱),http://em.21dtv.com/songs/60052402.mkv +拉拉宝宝-叶子飘下来,http://em.21dtv.com/songs/60052517.mkv +陈泳泼-愿做你手机,http://em.21dtv.com/songs/60115501.mkv +袁宝川-有种你就来,http://em.21dtv.com/songs/60131799.mkv +袁宝川-有种你就来,http://em.21dtv.com/songs/60129594.mkv +王麟-有种你爱我,http://em.21dtv.com/songs/60112124.mkv +杨瀞-由在你安排(无原唱),http://em.21dtv.com/songs/60054974.mkv +高明骏-约在某一天,http://em.21dtv.com/songs/60056273.mkv +王薇茜-依子茉莉吟,http://em.21dtv.com/songs/60102554.mkv +王薇茜-依子玫瑰吟,http://em.21dtv.com/songs/60102551.mkv +吴克群-一直没发现,http://em.21dtv.com/songs/60053912.mkv +王薇茜-依子牡丹吟,http://em.21dtv.com/songs/60102550.mkv +王丽达-越走路越宽,http://em.21dtv.com/songs/60056632.mkv +杨烈-夜照亮了夜,http://em.21dtv.com/songs/60052705.mkv +万芳-夜照亮了夜,http://em.21dtv.com/songs/60052704.mkv +牛马丁-一支郎叮当,http://em.21dtv.com/songs/60095803.mkv +陈美龄-雨中康乃馨,http://em.21dtv.com/songs/60055760.mkv +张德兰-雨中康乃馨(演唱会),http://em.21dtv.com/songs/60055759.mkv +甲子蕙-一张空白纸,http://em.21dtv.com/songs/60053859.mkv +佚名-雨中交响曲,http://em.21dtv.com/songs/60055757.mkv +甄妮-雨中交响曲(演唱会),http://em.21dtv.com/songs/60055756.mkv +廖必胜-一醉解千愁,http://em.21dtv.com/songs/60070155.mkv +王薇茜-依子菊花吟,http://em.21dtv.com/songs/60102555.mkv +陆正信-宜州鸡蛋哥,http://em.21dtv.com/songs/60121059.mkv +戴蕾-游子回来了,http://em.21dtv.com/songs/60055040.mkv +吴大维-亚洲呼啦啦,http://em.21dtv.com/songs/60051909.mkv +白冰冰-营芝花春天,http://em.21dtv.com/songs/60095825.mkv +毛宁-一直很安静,http://em.21dtv.com/songs/60067712.mkv +阿桑-一直很安静,http://em.21dtv.com/songs/60053910.mkv +张大伟-与祖国有约[演],http://em.21dtv.com/songs/60101345.mkv +江蕙-一嘴干一杯,http://em.21dtv.com/songs/60053945.mkv +郭富城-雨中感叹号,http://em.21dtv.com/songs/60055751.mkv +王薇茜-依子芙蓉吟,http://em.21dtv.com/songs/60102553.mkv +ENERGY-一直到最后,http://em.21dtv.com/songs/60053905.mkv +云儿非-一张电影票,http://em.21dtv.com/songs/60087260.mkv +刘德华+叶倩文-眼中的希望,http://em.21dtv.com/songs/60052100.mkv +RUBBER BAND-一早地下铁,http://em.21dtv.com/songs/60053857.mkv +SNH48-雨中动物园,http://em.21dtv.com/songs/60109887.mkv +姜峰-一直都是你,http://em.21dtv.com/songs/60087056.mkv +黄海+潘潘声-雨中的失落,http://em.21dtv.com/songs/60055750.mkv +卢庚戌-严重的时刻,http://em.21dtv.com/songs/60134965.mkv +木吉他-雨中的歉意,http://em.21dtv.com/songs/60055749.mkv +张勇-悠长的情线,http://em.21dtv.com/songs/60091053.mkv +李爱绮-愿作多情人,http://em.21dtv.com/songs/60066562.mkv +徐子洺-雨中的恋曲,http://em.21dtv.com/songs/60117758.mkv +罗美玲-勇者的浪漫,http://em.21dtv.com/songs/60100943.mkv +合唱-勇者的浪漫,http://em.21dtv.com/songs/60099135.mkv +陈柏宇+VnP-勇者的浪漫,http://em.21dtv.com/songs/60097623.mkv +王薇茜-依子杜鹃吟,http://em.21dtv.com/songs/60102549.mkv +易桀齐-一直到今天,http://em.21dtv.com/songs/60053904.mkv +佚名-雨中的故事,http://em.21dtv.com/songs/60055743.mkv +李晓杰-雨中的姑娘,http://em.21dtv.com/songs/60114606.mkv +凯歌-幼稚的果敢,http://em.21dtv.com/songs/60097524.mkv +庄闲-一张动车票,http://em.21dtv.com/songs/60132426.mkv +龙千玉-一阵暴风雨,http://em.21dtv.com/songs/60053863.mkv +林姗-一阵暴风雨,http://em.21dtv.com/songs/60053862.mkv +包伟铭-一直爱着你,http://em.21dtv.com/songs/60123705.mkv +高安+舒欣-一直爱着你,http://em.21dtv.com/songs/60122288.mkv +高安-一直爱着你,http://em.21dtv.com/songs/60122287.mkv +白若溪+吴俊泽-永远在一起,http://em.21dtv.com/songs/60120818.mkv +缘分兄弟-永远在一起,http://em.21dtv.com/songs/60107945.mkv +群星-永远在一起,http://em.21dtv.com/songs/60103522.mkv +龚诗嘉-远远在一起,http://em.21dtv.com/songs/60056164.mkv +许哲佩-永远在一起,http://em.21dtv.com/songs/60054802.mkv +陈文浩-有一种心跳,http://em.21dtv.com/songs/60107327.mkv +曾春年+秀才-永远做兄弟,http://em.21dtv.com/songs/60111143.mkv +良一+佳虹-永远坐同船,http://em.21dtv.com/songs/60065386.mkv +张倾城-有一种伤口,http://em.21dtv.com/songs/60079303.mkv +大嘴巴-永远在身边,http://em.21dtv.com/songs/60054801.mkv +佚名-犹原在梦中,http://em.21dtv.com/songs/60054984.mkv +郑秀文-有一种快乐,http://em.21dtv.com/songs/60055379.mkv +李思琳-悠悠珠江口(演唱会),http://em.21dtv.com/songs/60054967.mkv +高向鹏+方瑞娥-永远祝福你,http://em.21dtv.com/songs/60054805.mkv +陈腾-永远祝福你(无原唱),http://em.21dtv.com/songs/60054804.mkv +闪亮三姐妹-犹原在等你,http://em.21dtv.com/songs/60054983.mkv +张潇逸-有一种错觉,http://em.21dtv.com/songs/60113486.mkv +小5-音乐自白书,http://em.21dtv.com/songs/60070167.mkv +阿吉仔-有影真爱你,http://em.21dtv.com/songs/60061851.mkv +蔡丽津-永远只爱你(无原唱),http://em.21dtv.com/songs/60054803.mkv +孟庭苇-哑哑与亚亚,http://em.21dtv.com/songs/60051885.mkv +黎明-越夜越有机,http://em.21dtv.com/songs/60056627.mkv +卫兰-越夜越有机(演唱会),http://em.21dtv.com/songs/60056626.mkv +黎明-越夜越有机(演唱会),http://em.21dtv.com/songs/60056625.mkv +黎明-越也越有机,http://em.21dtv.com/songs/60056621.mkv +胭脂雪飘飘-姻缘一线牵,http://em.21dtv.com/songs/60094654.mkv +佚名-友谊圆舞曲,http://em.21dtv.com/songs/60055082.mkv +莫文蔚-愈夜愈美丽,http://em.21dtv.com/songs/60091967.mkv +黎明-越夜越寂寞,http://em.21dtv.com/songs/60056624.mkv +黄品源-永远有多远,http://em.21dtv.com/songs/60054799.mkv +动力火车-永远拥抱你,http://em.21dtv.com/songs/60054795.mkv +赵本山-月牙小夜曲,http://em.21dtv.com/songs/60056520.mkv +弈羚-愈饮心愈凝(无原唱),http://em.21dtv.com/songs/60094819.mkv +陈思安-愈饮心愈凝,http://em.21dtv.com/songs/60079362.mkv +郑锦昌-炎炎夏已凉,http://em.21dtv.com/songs/60052017.mkv +王建杰-永远相信你(无原唱),http://em.21dtv.com/songs/60054791.mkv +方瑞娥+黄西田-永远行同齐(演唱会),http://em.21dtv.com/songs/60084422.mkv +龙飞+云菲菲-月夜相思情,http://em.21dtv.com/songs/60100695.mkv +李青+云菲菲-月夜相思情,http://em.21dtv.com/songs/60097510.mkv +林姗-月夜相思曲,http://em.21dtv.com/songs/60095657.mkv +佚名-月夜相思曲,http://em.21dtv.com/songs/60056537.mkv +陈小云-月夜相思曲(无原唱),http://em.21dtv.com/songs/60056536.mkv +佚名-夜夜相思曲,http://em.21dtv.com/songs/60052683.mkv +王莉-月圆相思后,http://em.21dtv.com/songs/60118792.mkv +金婷婷-月圆相思后,http://em.21dtv.com/songs/60094726.mkv +威龙-永远向前走,http://em.21dtv.com/songs/60102104.mkv +阿吉仔-月圆心缺角(无原唱),http://em.21dtv.com/songs/60056560.mkv +詹曼铃-永远心袂清(无原唱),http://em.21dtv.com/songs/60054792.mkv +孙渔-有一些记忆,http://em.21dtv.com/songs/60055372.mkv +郎郎-永远幸福吧(舞曲版),http://em.21dtv.com/songs/60079244.mkv +王识贤-永远行逗阵,http://em.21dtv.com/songs/60054756.mkv +陈雷-夜夜想到你,http://em.21dtv.com/songs/60052684.mkv +佚名-鸳鸯袜着顶,http://em.21dtv.com/songs/60055898.mkv +王筱凡-悠悠乌篷船,http://em.21dtv.com/songs/60124283.mkv +莹莹-一眼万年之DJ,http://em.21dtv.com/songs/60090187.mkv +邱淑君-夜夜为你醉(无原唱),http://em.21dtv.com/songs/60052681.mkv +蔡献华-永远我和你,http://em.21dtv.com/songs/60100454.mkv +阿俊-有一位姑娘,http://em.21dtv.com/songs/60108956.mkv +郭婷筠+蔡佳麟-姻缘天注定,http://em.21dtv.com/songs/60107278.mkv +王玲-姻缘天注定(无原唱),http://em.21dtv.com/songs/60032099.mkv +李茂山+张翊君-永远疼惜你,http://em.21dtv.com/songs/60054787.mkv +佚名-有一天我会,http://em.21dtv.com/songs/60055370.mkv +蔡淳佳-有一天我会,http://em.21dtv.com/songs/60055369.mkv +李明洋-月圆天青青,http://em.21dtv.com/songs/60070202.mkv +枫舞+芸若-悠悠桃花情,http://em.21dtv.com/songs/60094957.mkv +森森+斑斑-永远守着他(演唱会),http://em.21dtv.com/songs/60079243.mkv +刘德华-永远是这天,http://em.21dtv.com/songs/60054786.mkv +奥杰阿格-有一双眼睛,http://em.21dtv.com/songs/60055363.mkv +阿吉仔-雨夜伤心泪,http://em.21dtv.com/songs/60055731.mkv +胡东清+米卫强-永远是兄弟,http://em.21dtv.com/songs/60082825.mkv +一飞-用一生去等,http://em.21dtv.com/songs/60084429.mkv +张学友-用余生去爱,http://em.21dtv.com/songs/60106832.mkv +卓依婷-永远是朋友,http://em.21dtv.com/songs/60054784.mkv +殷秀梅-永远是朋友,http://em.21dtv.com/songs/60054783.mkv +毛阿敏-永远是朋友,http://em.21dtv.com/songs/60054782.mkv +杭天琪-永远是朋友,http://em.21dtv.com/songs/60054781.mkv +甘萍-永远是朋友,http://em.21dtv.com/songs/60054780.mkv +洪荣宏+张玲绮-永远是你的,http://em.21dtv.com/songs/60054779.mkv +七郎+张丽君-鸳鸯手巾仔,http://em.21dtv.com/songs/60055893.mkv +韩磊-又一声惊雷(演唱会),http://em.21dtv.com/songs/60055475.mkv +唐嫣+罗晋-用一生回忆,http://em.21dtv.com/songs/60072739.mkv +叶蓓-优氧深呼吸,http://em.21dtv.com/songs/60054942.mkv +黄乙玲-用一生等待,http://em.21dtv.com/songs/60054933.mkv +苏妙玲-永远十八岁,http://em.21dtv.com/songs/60105318.mkv +长春虫子-用一生爱你,http://em.21dtv.com/songs/60054931.mkv +傲艺-愿意让你走,http://em.21dtv.com/songs/60109987.mkv +傲艺-愿意让你走,http://em.21dtv.com/songs/60107505.mkv +王建杰-月圆人袂圆,http://em.21dtv.com/songs/60056555.mkv +张瀛仁+杰克-永远牵作伙,http://em.21dtv.com/songs/60115917.mkv +黄志强+郑秀月-永远牵作伙(无原唱),http://em.21dtv.com/songs/60060471.mkv +上明+林玉英-月圆情人梦,http://em.21dtv.com/songs/60056554.mkv +宋孟君-有一群孩子,http://em.21dtv.com/songs/60094472.mkv +欧阳俊-永远陪着你,http://em.21dtv.com/songs/60103403.mkv +朱海君-永远陪你行,http://em.21dtv.com/songs/60086156.mkv +周杰伦-爷爷泡的茶,http://em.21dtv.com/songs/60052419.mkv +林子娟-永远陪伴你(无原唱),http://em.21dtv.com/songs/60054774.mkv +江蕙-一叶女人心,http://em.21dtv.com/songs/60053825.mkv +许冠杰-夜夜念奴娇,http://em.21dtv.com/songs/60052678.mkv +阿弟仔-永远那么远,http://em.21dtv.com/songs/60054773.mkv +贾静雯-夜已那么深,http://em.21dtv.com/songs/60052690.mkv +陈岩-拥有你的美,http://em.21dtv.com/songs/60084416.mkv +黎明-夜夜梦中见(演唱会),http://em.21dtv.com/songs/60052677.mkv +七郎-月圆梦也圆,http://em.21dtv.com/songs/60056553.mkv +陈百潭+傅滢滢-永远梦袂醒,http://em.21dtv.com/songs/60104570.mkv +阿牛-有缘来做伙,http://em.21dtv.com/songs/60055390.mkv +草蜢-有缘来作伙,http://em.21dtv.com/songs/60055389.mkv +群星-用音乐加油,http://em.21dtv.com/songs/60091861.mkv +黄品源-永远拢共款(无原唱),http://em.21dtv.com/songs/60054769.mkv +林心如-夜夜兰桂坊,http://em.21dtv.com/songs/60088096.mkv +李明洋-远远看着你,http://em.21dtv.com/songs/60070200.mkv +金志文+大野+大山+孙豆尔+黄一+邹宏宇+李维真-永远垮不掉,http://em.21dtv.com/songs/60079242.mkv +EQ群星-永远垮不掉,http://em.21dtv.com/songs/60054768.mkv +谢采妘-遥远寄相思,http://em.21dtv.com/songs/60052341.mkv +林淑蓉-遥远寄相思,http://em.21dtv.com/songs/60052340.mkv +卢磊-一饮尽千钟,http://em.21dtv.com/songs/60105674.mkv +韩磊-一饮尽千钟,http://em.21dtv.com/songs/60079161.mkv +王江发+小璇-永远将你揽,http://em.21dtv.com/songs/60094232.mkv +七郎+邓咏家-鸳鸯吉鲁巴,http://em.21dtv.com/songs/60125062.mkv +蔡依林-一眼就看见(演唱会),http://em.21dtv.com/songs/60053806.mkv +S.H.E-永远记得我,http://em.21dtv.com/songs/60090424.mkv +刘德华-永远记得你(HD),http://em.21dtv.com/songs/10012654.mkv +刘玮-永远记得你,http://em.21dtv.com/songs/60054765.mkv +刘德华-永远记得你(演唱会),http://em.21dtv.com/songs/60054764.mkv +何韵诗-月移花影动,http://em.21dtv.com/songs/60109969.mkv +龙啸-永远好兄弟,http://em.21dtv.com/songs/60103736.mkv +张志良-悠悠黄土情,http://em.21dtv.com/songs/60097664.mkv +赵学而-永远怀念你,http://em.21dtv.com/songs/60054759.mkv +张蓉蓉-永远怀念你,http://em.21dtv.com/songs/60054758.mkv +李荣浩+陈坤-演员和歌手,http://em.21dtv.com/songs/60103376.mkv +陈坤+李荣浩-演员和歌手[消伴],http://em.21dtv.com/songs/60100988.mkv +蔡孟臻-有一个拥抱,http://em.21dtv.com/songs/60065401.mkv +KENT王健-有一个小孩,http://em.21dtv.com/songs/60084450.mkv +蒙面哥+彭清-一亿个伤心(HD),http://em.21dtv.com/songs/60134190.mkv +DJ小星星-一亿个伤心,http://em.21dtv.com/songs/60129920.mkv +蒙面哥+彭清-一亿个伤心,http://em.21dtv.com/songs/60112944.mkv +蒙面哥-一亿个伤心,http://em.21dtv.com/songs/60111387.mkv +王凤霞-永远跟你走,http://em.21dtv.com/songs/60130573.mkv +宋祖英-永远跟你走,http://em.21dtv.com/songs/60054755.mkv +佚名-永远跟你行,http://em.21dtv.com/songs/60054754.mkv +李荣浩-有一个姑娘,http://em.21dtv.com/songs/60100162.mkv +赵薇-有一个姑娘,http://em.21dtv.com/songs/60055354.mkv +金波-永远跟党走,http://em.21dtv.com/songs/60134356.mkv +李潮-永远跟党走,http://em.21dtv.com/songs/60071451.mkv +刘一祯-永远跟党走,http://em.21dtv.com/songs/60054753.mkv +朱建明-有一个地方,http://em.21dtv.com/songs/60113601.mkv +吴亦凡-有一个地方,http://em.21dtv.com/songs/60105693.mkv +张信哲-有一个地方,http://em.21dtv.com/songs/60091045.mkv +群星-有一个班级,http://em.21dtv.com/songs/60116200.mkv +缘分兄弟-永远放心上,http://em.21dtv.com/songs/60115328.mkv +张雨生-永远的自由,http://em.21dtv.com/songs/60054742.mkv +群星-永远的祝愿,http://em.21dtv.com/songs/60054741.mkv +程科-一夜动真情,http://em.21dtv.com/songs/60053828.mkv +丁姵均+郭婷筠-永远的知己,http://em.21dtv.com/songs/60121325.mkv +甲子蕙+林美-永远的知己,http://em.21dtv.com/songs/60054740.mkv +李沐峰-泱泱大中华,http://em.21dtv.com/songs/60132553.mkv +群星-永远的祝福,http://em.21dtv.com/songs/60088463.mkv +庭竹-遥远的祝福,http://em.21dtv.com/songs/60087776.mkv +卓依婷-永远的祝福,http://em.21dtv.com/songs/60087476.mkv +高向鹏+方怡萍-永远的最爱,http://em.21dtv.com/songs/60054743.mkv +张洪量-永远的永远,http://em.21dtv.com/songs/60105856.mkv +关喆-永远的永远,http://em.21dtv.com/songs/60103892.mkv +尚雯婕-远远的远远,http://em.21dtv.com/songs/60079398.mkv +五月天-永远的永远,http://em.21dtv.com/songs/60054738.mkv +佚名-永远的一天,http://em.21dtv.com/songs/60054737.mkv +蔡淳佳-永远的愚人,http://em.21dtv.com/songs/60054739.mkv +张也-永远的邀请,http://em.21dtv.com/songs/60105012.mkv +法瑷-圆圆的月亮(无原唱),http://em.21dtv.com/songs/60056042.mkv +陈国富+玺恩-永远的依靠(演唱会),http://em.21dtv.com/songs/60079241.mkv +丁当-一样的月光,http://em.21dtv.com/songs/60114961.mkv +信-一样的月光,http://em.21dtv.com/songs/60111698.mkv +谭维维+段旭明-一样的月光,http://em.21dtv.com/songs/60111408.mkv +孙楠+余超颖+梦然-一样的月光(HD),http://em.21dtv.com/songs/10012773.mkv +孙楠+余超颖+梦然-一样的月光(最美和声)(现场版),http://em.21dtv.com/songs/60101069.mkv +萧煌奇+杨培安-一样的月光,http://em.21dtv.com/songs/60098729.mkv +麦子杰+迪克牛仔-一样的月光,http://em.21dtv.com/songs/60084379.mkv +黄绮珊-一样的月光,http://em.21dtv.com/songs/60079922.mkv +黑妹-一样的月光(演唱会),http://em.21dtv.com/songs/60079160.mkv +王韵壹+赵可-一样的月光,http://em.21dtv.com/songs/60071432.mkv +徐佳莹-一样的月光,http://em.21dtv.com/songs/60053821.mkv +苏芮-一样的月光,http://em.21dtv.com/songs/60053820.mkv +潘虹樾-一样的月光,http://em.21dtv.com/songs/60053819.mkv +黄琦珊-一样的月光,http://em.21dtv.com/songs/60053818.mkv +苏芮-一样的月光(演唱会),http://em.21dtv.com/songs/60053817.mkv +动力火车+迪克牛仔-一样的月光(演唱会),http://em.21dtv.com/songs/60053816.mkv +一绫+李明洋-永远的一对,http://em.21dtv.com/songs/60106564.mkv +李丹阳-遥远的心愿,http://em.21dtv.com/songs/60079040.mkv +张学友-永远的笑靥,http://em.21dtv.com/songs/60054732.mkv +张学友-永远的笑颜,http://em.21dtv.com/songs/60054731.mkv +陈思思-永远的相约,http://em.21dtv.com/songs/60054729.mkv +毛阿敏-一样的夕阳,http://em.21dtv.com/songs/60053814.mkv +刘瑞琦-一样的夏天,http://em.21dtv.com/songs/60084378.mkv +刘小慧-永远的心痛,http://em.21dtv.com/songs/60054733.mkv +孙燕姿-一样的夏天,http://em.21dtv.com/songs/60053815.mkv +林玉英-远洋的心声(无原唱),http://em.21dtv.com/songs/60056162.mkv +王涛-一样的想你,http://em.21dtv.com/songs/60094992.mkv +蔡凤凰-月夜的小路,http://em.21dtv.com/songs/60056528.mkv +张行-永远的鲜花,http://em.21dtv.com/songs/60091156.mkv +刀郎-永远的兄弟,http://em.21dtv.com/songs/60054735.mkv +佚名-永远的兄弟(无原唱),http://em.21dtv.com/songs/60054734.mkv +张敬轩+王菀之-友谊的小船,http://em.21dtv.com/songs/60127979.mkv +成泉-友谊的小船,http://em.21dtv.com/songs/60123983.mkv +张德力-永远的乡愁,http://em.21dtv.com/songs/60122720.mkv +三郎-友谊的小船,http://em.21dtv.com/songs/60122456.mkv +汤唯-永远的微笑,http://em.21dtv.com/songs/60113780.mkv +华娃-永远的微笑(演唱会),http://em.21dtv.com/songs/60084421.mkv +潘秀琼-永远的微笑(演唱会),http://em.21dtv.com/songs/60079240.mkv +周璇-永远的微笑,http://em.21dtv.com/songs/60054728.mkv +张清芳-永远的微笑,http://em.21dtv.com/songs/60054727.mkv +堂娜-永远的微笑,http://em.21dtv.com/songs/60054726.mkv +李心洁-永远的微笑,http://em.21dtv.com/songs/60054725.mkv +费玉清-永远的微笑,http://em.21dtv.com/songs/60054724.mkv +陈松伶-永远的微笑,http://em.21dtv.com/songs/60054723.mkv +谢雷-永远的微笑(演唱会),http://em.21dtv.com/songs/60054722.mkv +罗大佑-永远的微笑(演唱会),http://em.21dtv.com/songs/60054721.mkv +尚芸菲-遥远的天涯,http://em.21dtv.com/songs/60098300.mkv +陈奕迅-永远都天明,http://em.21dtv.com/songs/60102883.mkv +柳影虹-一样的天空,http://em.21dtv.com/songs/60092888.mkv +李丽霞+方伊琪-一样的天空,http://em.21dtv.com/songs/60092778.mkv +苏珊+吕珊-一样的天空(演唱会),http://em.21dtv.com/songs/60079159.mkv +许巍-悠远的天空,http://em.21dtv.com/songs/60054968.mkv +林淑蓉-一样的天空,http://em.21dtv.com/songs/60053813.mkv +VMP-遥远的童话,http://em.21dtv.com/songs/60052338.mkv +佚名-雨夜的探戈,http://em.21dtv.com/songs/60055722.mkv +张艳君-永远的上游,http://em.21dtv.com/songs/60122745.mkv +陈慧娴-月夜的随想(演唱会),http://em.21dtv.com/songs/60056527.mkv +格桑英妮-遥远的思念,http://em.21dtv.com/songs/60107833.mkv +廖昌永-圆圆的思念,http://em.21dtv.com/songs/60079387.mkv +胡斌-遥远的思念,http://em.21dtv.com/songs/60071403.mkv +龙奔+攸浟-遥远的思念,http://em.21dtv.com/songs/60070125.mkv +祖海-永远的思念,http://em.21dtv.com/songs/60054720.mkv +王瑞霞-永远的思念,http://em.21dtv.com/songs/60054719.mkv +伍佰-遥远的世界,http://em.21dtv.com/songs/60010889.mkv +胡月-月圆的时候(演唱会),http://em.21dtv.com/songs/60056546.mkv +洪金宝+刘楚恬-爷爷的情书,http://em.21dtv.com/songs/60119770.mkv +欧阳菲菲-永远的情人,http://em.21dtv.com/songs/60054718.mkv +明月微风-永远的牵挂,http://em.21dtv.com/songs/60133748.mkv +云飞儿-遥远的情感,http://em.21dtv.com/songs/60133349.mkv +李明洋-遥远的牵挂,http://em.21dtv.com/songs/60132549.mkv +袁双洋-永远的牵挂,http://em.21dtv.com/songs/60096122.mkv +袁双-永远的牵挂,http://em.21dtv.com/songs/60092035.mkv +办桌二人组-永远的情歌,http://em.21dtv.com/songs/60071449.mkv +谢金燕+王识贤-永远的期待,http://em.21dtv.com/songs/60054717.mkv +张惠妹+孙楠-永远的朋友,http://em.21dtv.com/songs/60054716.mkv +田梓呈+庞龙-永远的朋友,http://em.21dtv.com/songs/60054715.mkv +邵雅茜-永远的朋友,http://em.21dtv.com/songs/60054714.mkv +李玟+孙楠-永远的朋友,http://em.21dtv.com/songs/60054713.mkv +黄格选+安雯-永远的朋友,http://em.21dtv.com/songs/60054712.mkv +陈伟联-永远的朋友,http://em.21dtv.com/songs/60054711.mkv +办桌二人组-永远的朋友,http://em.21dtv.com/songs/60054710.mkv +彭丽媛-遥远的朋友,http://em.21dtv.com/songs/60052335.mkv +蔡琴-远扬的梦舟,http://em.21dtv.com/songs/60056161.mkv +杨斯壬-永远的妈妈,http://em.21dtv.com/songs/60086154.mkv +哈琳-遥远的妈妈(演唱会),http://em.21dtv.com/songs/60068903.mkv +梦鸽-永远的妈妈,http://em.21dtv.com/songs/60054707.mkv +蔡小虎-遥远的美丽,http://em.21dtv.com/songs/60052333.mkv +龙凤呈祥组合-摇曳的玫瑰,http://em.21dtv.com/songs/60111560.mkv +梁玉嵘-雨夜悼鸣凤(戏曲),http://em.21dtv.com/songs/60092924.mkv +张宇-永远的恋人,http://em.21dtv.com/songs/60054706.mkv +林宝+许绍洋-永远的恋人,http://em.21dtv.com/songs/60054705.mkv +谭咏麟-雨夜的浪漫,http://em.21dtv.com/songs/60055721.mkv +谭咏麟-雨夜的浪漫(演唱会),http://em.21dtv.com/songs/60055720.mkv +李克勤-雨夜的浪漫(演唱会),http://em.21dtv.com/songs/60055719.mkv +胡彦斌-爷爷的老家(演唱会),http://em.21dtv.com/songs/60052417.mkv +裘继戎-遥远的路程,http://em.21dtv.com/songs/60132874.mkv +怡然-悠悠杜康情,http://em.21dtv.com/songs/60094122.mkv +张惠妹-永远的快乐,http://em.21dtv.com/songs/60054704.mkv +王瑞霞-遥远的记治,http://em.21dtv.com/songs/60052331.mkv +瑞雪-永远的记忆,http://em.21dtv.com/songs/60072734.mkv +办桌二人组-遥远的记忆,http://em.21dtv.com/songs/60052330.mkv +雅丽-遥远的家乡,http://em.21dtv.com/songs/60115511.mkv +程楚煜-一样的坚强,http://em.21dtv.com/songs/60100352.mkv +杨一郎+卫薇儿-有一点寂寞,http://em.21dtv.com/songs/60118697.mkv +毛泽少-遥远的距离,http://em.21dtv.com/songs/60128154.mkv +戈浪-有缘的结局,http://em.21dtv.com/songs/60111113.mkv +汤俊军+张莹-永远的骄傲,http://em.21dtv.com/songs/60106059.mkv +兄弟联+徐若瑄-永远都会在,http://em.21dtv.com/songs/60054749.mkv +阿鲁阿卓-遥远的回声,http://em.21dtv.com/songs/60052329.mkv +媛媛-永远的怀念,http://em.21dtv.com/songs/60110129.mkv +姚莉-永远的怀念,http://em.21dtv.com/songs/60089231.mkv +张惠妹-永远的画面,http://em.21dtv.com/songs/60054701.mkv +陈振云-永远的海港,http://em.21dtv.com/songs/60054700.mkv +孟根琪琪格-遥远的故乡,http://em.21dtv.com/songs/60070124.mkv +王铮亮-爷爷的过往,http://em.21dtv.com/songs/60114697.mkv +顾凯-永远的港口,http://em.21dtv.com/songs/60054699.mkv +郭易-羊羊顶呱呱,http://em.21dtv.com/songs/60079022.mkv +李维-遥远的孤单,http://em.21dtv.com/songs/60105160.mkv +汪峰-永远的感动,http://em.21dtv.com/songs/60065385.mkv +张如城-友谊的光彩,http://em.21dtv.com/songs/60055073.mkv +林宇中-优雅的分手,http://em.21dtv.com/songs/60054941.mkv +陈慧琳-永远的福气,http://em.21dtv.com/songs/60054698.mkv +彤彤+赵本山-演员的烦恼,http://em.21dtv.com/songs/60087861.mkv +莉莉-摇曳的风铃,http://em.21dtv.com/songs/60119925.mkv +赵芳-永远的丰碑,http://em.21dtv.com/songs/60084419.mkv +BEYOND-永远等待1,http://em.21dtv.com/songs/60092145.mkv +张信哲+刘嘉玲-有一点动心,http://em.21dtv.com/songs/60055353.mkv +容祖儿+张信哲-有一点动心(演唱会),http://em.21dtv.com/songs/60055352.mkv +佚名-遥远的地方,http://em.21dtv.com/songs/60052327.mkv +江蕙-遥远的等待,http://em.21dtv.com/songs/60052325.mkv +柏文-永远的草原,http://em.21dtv.com/songs/60116055.mkv +孟文豪-永远的草原,http://em.21dtv.com/songs/60115860.mkv +许雅涵-永远的承诺,http://em.21dtv.com/songs/60063223.mkv +陈星-遥远的承诺,http://em.21dtv.com/songs/60052323.mkv +阮以伟-永远的沉默,http://em.21dtv.com/songs/60065384.mkv +刘德华-一样的灿烂,http://em.21dtv.com/songs/60053811.mkv +谢若琳-雨夜电唱机,http://em.21dtv.com/songs/60055723.mkv +管维嘉-押韵的悲伤,http://em.21dtv.com/songs/60051869.mkv +李丹阳-遥远的拜年,http://em.21dtv.com/songs/60052322.mkv +郑秀文-永远都不够(演唱会),http://em.21dtv.com/songs/60054748.mkv +于文华-永远的报答,http://em.21dtv.com/songs/60054696.mkv +周华健-永远的宝贝,http://em.21dtv.com/songs/60054695.mkv +SNH48-遥远的彼岸,http://em.21dtv.com/songs/60110797.mkv +周雨刚-永远的爱人,http://em.21dtv.com/songs/60111777.mkv +温博-永远的爱人,http://em.21dtv.com/songs/60065383.mkv +邱芸子-永远的爱人,http://em.21dtv.com/songs/60054694.mkv +刘冲-永远的爱人,http://em.21dtv.com/songs/60054693.mkv +黄英-永夜的爱情,http://em.21dtv.com/songs/60079237.mkv +艺声-遥远的爱情,http://em.21dtv.com/songs/60079038.mkv +吴淑敏-遥远的爱情,http://em.21dtv.com/songs/60071402.mkv +李彬-遥远的爱情,http://em.21dtv.com/songs/60052321.mkv +李殊-烟雨唱扬州,http://em.21dtv.com/songs/60088023.mkv +天骏-悠悠草原情,http://em.21dtv.com/songs/60079261.mkv +佚名-永远唱袜煞,http://em.21dtv.com/songs/60054689.mkv +于爽-银鹰处处飞,http://em.21dtv.com/songs/60079206.mkv +SUPPER MOMENT-一样不一样,http://em.21dtv.com/songs/60122425.mkv +吴俊宏+唐俪-永远伴相随,http://em.21dtv.com/songs/60054677.mkv +佚名-永远甭提起,http://em.21dtv.com/songs/60054678.mkv +庄学忠-月圆倍思亲,http://em.21dtv.com/songs/60087758.mkv +佚名-永远不能忘,http://em.21dtv.com/songs/60054685.mkv +孙楠-永远不回头,http://em.21dtv.com/songs/60109264.mkv +杨培安-永远不回头,http://em.21dtv.com/songs/60106969.mkv +羽泉+萧敬腾+范玮琪-永远不回头,http://em.21dtv.com/songs/60094638.mkv +萧敬腾+胡海泉+陈羽凡+范玮琪-永远不回头,http://em.21dtv.com/songs/60081713.mkv +群星-永远不回头,http://em.21dtv.com/songs/60066538.mkv +佚名-永远不回头,http://em.21dtv.com/songs/60054684.mkv +王杰+张雨生+邰正宵-永远不回头,http://em.21dtv.com/songs/60054683.mkv +罗桦-永远不更改(演唱会),http://em.21dtv.com/songs/60065382.mkv +谢采妘-永远不更改,http://em.21dtv.com/songs/60054682.mkv +张信哲-永远不改变,http://em.21dtv.com/songs/60054681.mkv +李易峰-永远不分开,http://em.21dtv.com/songs/60104205.mkv +欢子-永远不分开,http://em.21dtv.com/songs/60054680.mkv +飞轮海-愿意不爱你,http://em.21dtv.com/songs/60056231.mkv +蔡佳麟-犹原爱着你,http://em.21dtv.com/songs/60132856.mkv +郑志勇-永远爱着你,http://em.21dtv.com/songs/60127465.mkv +白玛拉姆+次旺桑布-永远爱着你,http://em.21dtv.com/songs/60127233.mkv +邓小龙+冉青霞-永远爱着你,http://em.21dtv.com/songs/60112290.mkv +冉青霞-永远爱着你,http://em.21dtv.com/songs/60111703.mkv +张智霖-永远爱着你,http://em.21dtv.com/songs/60097521.mkv +小老鹰乐团-愿意爱着你,http://em.21dtv.com/songs/60096255.mkv +草蜢-永远爱着您,http://em.21dtv.com/songs/60093096.mkv +金果-永远爱着你,http://em.21dtv.com/songs/60084417.mkv +林峰+谢天华+金刚-永远爱着你(演唱会),http://em.21dtv.com/songs/60062632.mkv +林峰+草蜢-永远爱着你(演唱会),http://em.21dtv.com/songs/60062629.mkv +BY2-一样爱着你,http://em.21dtv.com/songs/60061974.mkv +草蜢-永远爱着你(演唱会),http://em.21dtv.com/songs/60054675.mkv +郭健一+萧玉芬-永远爱着你,http://em.21dtv.com/songs/60054674.mkv +容祖儿-永远爱着你(演唱会),http://em.21dtv.com/songs/60054673.mkv +陈玉建-永远爱你的,http://em.21dtv.com/songs/60118165.mkv +郭富城-永远爱不完,http://em.21dtv.com/songs/60062402.mkv +翁立友-用心作阵行,http://em.21dtv.com/songs/60113955.mkv +黄俊杰-雨下一整夜,http://em.21dtv.com/songs/60126466.mkv +于文文-雨下一整晚,http://em.21dtv.com/songs/60108279.mkv +李晓兵-也许有一天,http://em.21dtv.com/songs/60079052.mkv +晨威-也许有一天,http://em.21dtv.com/songs/60072691.mkv +林亦妍-也许有一天,http://em.21dtv.com/songs/60062660.mkv +动力火车-也许有一天,http://em.21dtv.com/songs/60052450.mkv +潘子华-越想越心痛,http://em.21dtv.com/songs/60056620.mkv +陈奕迅-愈想愈无谓,http://em.21dtv.com/songs/60110618.mkv +庄心妍-越笑越难过,http://em.21dtv.com/songs/60114520.mkv +萧蔓萱-越想越不愿(无原唱),http://em.21dtv.com/songs/60056619.mkv +刘牧-余香,http://em.21dtv.com/songs/60101971.mkv +上官流云-一心想玉人,http://em.21dtv.com/songs/60053795.mkv +朱海君+李明洋-用心相疼痛,http://em.21dtv.com/songs/60054926.mkv +卓文萱-有星星的夜,http://em.21dtv.com/songs/60055349.mkv +熊立红-印象武夷山,http://em.21dtv.com/songs/60079208.mkv +甘薇-一心为了你,http://em.21dtv.com/songs/60053793.mkv +杨林-也许我不同,http://em.21dtv.com/songs/60052448.mkv +张睿-允许我爱你,http://em.21dtv.com/songs/60081444.mkv +叶振棠-浴血太平山,http://em.21dtv.com/songs/60055802.mkv +叶振棠-浴血太平山(演唱会),http://em.21dtv.com/songs/60055801.mkv +梁汉文-一小时冲印(演唱会),http://em.21dtv.com/songs/60053787.mkv +余天龙-用心去打拼,http://em.21dtv.com/songs/60065388.mkv +邓咏家+谢雷-英雄配美人,http://em.21dtv.com/songs/60120010.mkv +张婧-也许你知道,http://em.21dtv.com/songs/60061804.mkv +张钧喻-一想你就笑,http://em.21dtv.com/songs/60053785.mkv +林于雯-涯系你介入,http://em.21dtv.com/songs/60095645.mkv +林俊贤-也许你的梦,http://em.21dtv.com/songs/60052440.mkv +黄凯芹-影像罗曼史,http://em.21dtv.com/songs/60129831.mkv +陈秀雯-映象罗曼史,http://em.21dtv.com/songs/60093490.mkv +方瑞娥+黄西田-用心来交陪,http://em.21dtv.com/songs/60054915.mkv +赵霏儿-月下莲花开,http://em.21dtv.com/songs/60114812.mkv +齐秦-也许就足够,http://em.21dtv.com/songs/60052438.mkv +杨丞琳-一小节休息,http://em.21dtv.com/songs/60087054.mkv +曹秀琴+吴国华-月下海印情,http://em.21dtv.com/songs/60056508.mkv +张洪平-余侠魂诉情,http://em.21dtv.com/songs/60055507.mkv +中华儿女-英雄护国心,http://em.21dtv.com/songs/60127701.mkv +詹雅雯-异乡火车头,http://em.21dtv.com/songs/60054147.mkv +徐浩峻-与香港同行,http://em.21dtv.com/songs/60116830.mkv +倪宾-有孝感动天(无原唱),http://em.21dtv.com/songs/60055331.mkv +胡杨林-与幸福有关,http://em.21dtv.com/songs/60055610.mkv +罗时丰-一心分两人,http://em.21dtv.com/songs/60053792.mkv +刘育绫-用心斗阵行,http://em.21dtv.com/songs/60054909.mkv +王家霖-英雄大中国,http://em.21dtv.com/songs/60119804.mkv +佳林-英雄大中国,http://em.21dtv.com/songs/60117554.mkv +佚名-英雄的赞歌,http://em.21dtv.com/songs/60054425.mkv +王菲-游戏的终点,http://em.21dtv.com/songs/60055023.mkv +张毅-月下的相思,http://em.21dtv.com/songs/60056504.mkv +柳影虹-一夕到天晓(演唱会),http://em.21dtv.com/songs/60062705.mkv +芭比-异想的甜蜜,http://em.21dtv.com/songs/60054159.mkv +丁琪媛-雨下的时候,http://em.21dtv.com/songs/60101234.mkv +CONNIE吕莘-隐形的清流,http://em.21dtv.com/songs/60054384.mkv +陈百潭-异乡的情怀,http://em.21dtv.com/songs/60096014.mkv +周璇-月下的祈祷,http://em.21dtv.com/songs/60056503.mkv +楼沁+莉娃-一想到你呀,http://em.21dtv.com/songs/60104264.mkv +伍佳丽-一想到你呀,http://em.21dtv.com/songs/60070153.mkv +卓依婷-一想到你呀,http://em.21dtv.com/songs/60053784.mkv +[Group] +groupName=十六万歌曲MV等 - 82 +张惠妹-一想到你呀,http://em.21dtv.com/songs/60053783.mkv +张惠妹-一想到你呀(演唱会),http://em.21dtv.com/songs/60053782.mkv +佚名-异乡的男儿(无原唱),http://em.21dtv.com/songs/60054144.mkv +陈盈洁+黄瑞田-异乡的恋情,http://em.21dtv.com/songs/60054143.mkv +郑锦昌+林静仪-月下订佳期(演唱会),http://em.21dtv.com/songs/60079424.mkv +李明洋-异乡的憨子,http://em.21dtv.com/songs/60108569.mkv +曹智贤-游戏的婚礼,http://em.21dtv.com/songs/60080901.mkv +邓丽君-雨下的花朵,http://em.21dtv.com/songs/60055711.mkv +哈妮-月下的篝火,http://em.21dtv.com/songs/60127861.mkv +王瑞霞-用心等待你,http://em.21dtv.com/songs/60054908.mkv +高向鹏-用心等待你,http://em.21dtv.com/songs/60054907.mkv +李明洋+龙千玉-异乡的城市,http://em.21dtv.com/songs/60054142.mkv +江蕙-异乡的城市,http://em.21dtv.com/songs/60054141.mkv +张杰+吴汶芳-隐形的翅膀,http://em.21dtv.com/songs/60111879.mkv +卢小爱-隐形的翅膀,http://em.21dtv.com/songs/60110063.mkv +龚琳娜-隐形的翅膀,http://em.21dtv.com/songs/60094785.mkv +易帆-隐形的翅膀(演唱会),http://em.21dtv.com/songs/60084406.mkv +邓小龙-隐形的翅膀,http://em.21dtv.com/songs/60080486.mkv +张韶涵-有形的翅膀,http://em.21dtv.com/songs/60070184.mkv +张韶涵-隐形的翅膀,http://em.21dtv.com/songs/60054383.mkv +关正杰-英雄出少年,http://em.21dtv.com/songs/60054424.mkv +汪佩蓉-有心唱情歌,http://em.21dtv.com/songs/60131596.mkv +洛天依-元宵吃货节,http://em.21dtv.com/songs/60132679.mkv +陈瑞-有幸曾爱过,http://em.21dtv.com/songs/60109703.mkv +陈瑞-有幸曾爱过,http://em.21dtv.com/songs/60081613.mkv +詹雅雯-异乡悲恋梦,http://em.21dtv.com/songs/60054140.mkv +蔡振南-异乡悲恋梦,http://em.21dtv.com/songs/60054139.mkv +金琳-缘,http://em.21dtv.com/songs/60127515.mkv +BBF-一万种相遇,http://em.21dtv.com/songs/60132044.mkv +小彭-依偎着我哭,http://em.21dtv.com/songs/60089818.mkv +代小波-要我怎么说,http://em.21dtv.com/songs/60052396.mkv +周艾杰-亿万中国心,http://em.21dtv.com/songs/60070160.mkv +吴淑敏+施文彬-因为拄到你,http://em.21dtv.com/songs/60054307.mkv +常健鸿-有我也有你,http://em.21dtv.com/songs/60105799.mkv +吴国敬-越吻越伤心,http://em.21dtv.com/songs/60132289.mkv +刘德华-越望越伤心,http://em.21dtv.com/songs/60092362.mkv +许志安-越吻越伤心(演唱会),http://em.21dtv.com/songs/60084487.mkv +郑秀文-越吻越伤心,http://em.21dtv.com/songs/60056618.mkv +苏永康-越吻越伤心,http://em.21dtv.com/songs/60056617.mkv +苏永康+吴国敬-越吻越伤心,http://em.21dtv.com/songs/60056616.mkv +苏永康+陈洁仪-越吻越伤心,http://em.21dtv.com/songs/60056615.mkv +张学友-越吻越伤心(演唱会),http://em.21dtv.com/songs/60056614.mkv +苏永康-越吻越伤心(演唱会),http://em.21dtv.com/songs/60056613.mkv +刘德华-愈望愈伤心,http://em.21dtv.com/songs/60055879.mkv +梅艳芳-欲望野兽街,http://em.21dtv.com/songs/60055826.mkv +成雨霏+成迎昊-因为有你在,http://em.21dtv.com/songs/60116846.mkv +DREAM GIRLS-因为有你在,http://em.21dtv.com/songs/60072729.mkv +蓝冰-因为有了你,http://em.21dtv.com/songs/60080607.mkv +阿悄+朱元冰-因为遇见你,http://em.21dtv.com/songs/60135882.mkv +贺敬轩-因为遇见你,http://em.21dtv.com/songs/60135767.mkv +王源-因为遇见你,http://em.21dtv.com/songs/60125932.mkv +MAKIYO-养我一辈子,http://em.21dtv.com/songs/60052230.mkv +蔡枫华-烟外晓云轻(演唱会),http://em.21dtv.com/songs/60061796.mkv +佚名-烟外晓云轻,http://em.21dtv.com/songs/60051982.mkv +陈雅欣-因为相信你,http://em.21dtv.com/songs/60080102.mkv +SNH48-因为喜欢你,http://em.21dtv.com/songs/60109873.mkv +周华健-因为我在乎,http://em.21dtv.com/songs/60054288.mkv +星光帮-因为我相信,http://em.21dtv.com/songs/60054287.mkv +SS501-因为我太傻,http://em.21dtv.com/songs/60054285.mkv +刘美君-因为我没有,http://em.21dtv.com/songs/60054280.mkv +关贵敏-一湾湾流水,http://em.21dtv.com/songs/60053745.mkv +B2-因为我高兴(无原唱),http://em.21dtv.com/songs/60054277.mkv +詹雅雯-因为我不甘,http://em.21dtv.com/songs/60080680.mkv +洪禄云+陈水林-因为我爱你,http://em.21dtv.com/songs/60084397.mkv +秦咏-因为我爱你,http://em.21dtv.com/songs/60079198.mkv +王岩-因为我爱你,http://em.21dtv.com/songs/60068931.mkv +月光星子-因为我爱你,http://em.21dtv.com/songs/60054275.mkv +佚名-因为我爱你,http://em.21dtv.com/songs/60054274.mkv +星子-因为我爱你,http://em.21dtv.com/songs/60054271.mkv +谢雷-因为我爱你,http://em.21dtv.com/songs/60054270.mkv +彭佳慧-因为我爱你,http://em.21dtv.com/songs/60054269.mkv +毛毛-因为我爱你,http://em.21dtv.com/songs/60054268.mkv +杨燕-因为我爱你(演唱会),http://em.21dtv.com/songs/60054267.mkv +刘燕-因为太执着,http://em.21dtv.com/songs/60079197.mkv +KARISE EDEN-you wont let me,http://em.21dtv.com/songs/60071695.mkv +晨熙-因为太爱你,http://em.21dtv.com/songs/60118637.mkv +吴建豪-因为太爱你,http://em.21dtv.com/songs/60054266.mkv +王雪霏+林进-因为是医生,http://em.21dtv.com/songs/60112859.mkv +老光-因为是微商,http://em.21dtv.com/songs/60120859.mkv +KISS-因为是女子,http://em.21dtv.com/songs/60054261.mkv +佚名-夜为什么黑,http://em.21dtv.com/songs/60052654.mkv +Jessica-因为是春天,http://em.21dtv.com/songs/60134711.mkv +王中平-因为你有我,http://em.21dtv.com/songs/60054256.mkv +DR.MOON-因为你笑了,http://em.21dtv.com/songs/60054253.mkv +张惠妹-因为你没说,http://em.21dtv.com/songs/60054252.mkv +卞义-因为你美丽,http://em.21dtv.com/songs/60071441.mkv +全英录-因为你的爱,http://em.21dtv.com/songs/60133384.mkv +翁立友-因为你的爱,http://em.21dtv.com/songs/60054250.mkv +王子鸣-因为那场雨,http://em.21dtv.com/songs/60091691.mkv +王若琳-因为你爱我,http://em.21dtv.com/songs/60054249.mkv +曾春年+孟杨-一万年爱你,http://em.21dtv.com/songs/60117785.mkv +华语群星-由我们主宰(HD),http://em.21dtv.com/songs/10012716.mkv +五月天+欧开合唱团-由我们主宰,http://em.21dtv.com/songs/60101889.mkv +张安娜-一万米距离,http://em.21dtv.com/songs/60122717.mkv +佚名-you were meant for me,http://em.21dtv.com/songs/60006579.mkv +小柯-遥望励志篇,http://em.21dtv.com/songs/60052312.mkv +罗志祥-一万零一夜,http://em.21dtv.com/songs/60053754.mkv +关菊英-遗忘了以往,http://em.21dtv.com/songs/60079176.mkv +张学友-一吻两心印,http://em.21dtv.com/songs/60111067.mkv +文雯-冤枉了幸福,http://em.21dtv.com/songs/60133743.mkv +张爽+孙益程-遗忘了无奈,http://em.21dtv.com/songs/60087830.mkv +孙益程+张爽-遗忘了无奈,http://em.21dtv.com/songs/60087667.mkv +张爽+孙益程-遗忘了无柰,http://em.21dtv.com/songs/60054066.mkv +羽泉-遗忘了思忆,http://em.21dtv.com/songs/60091879.mkv +王杰-遗忘了思忆,http://em.21dtv.com/songs/60091712.mkv +许绍洋-一万里情路,http://em.21dtv.com/songs/60053753.mkv +乐伦-又闻梨花香,http://em.21dtv.com/songs/60066545.mkv +阿茹娜-因为看穿爱,http://em.21dtv.com/songs/60065368.mkv +慢摇舞曲-一物降一物(DJ何鹏),http://em.21dtv.com/songs/30000607.mkv +门丽+何鹏-一物降一物,http://em.21dtv.com/songs/50000215.mkv +门丽-一物降一物,http://em.21dtv.com/songs/60104519.mkv +尤雅-有我就有你,http://em.21dtv.com/songs/60055326.mkv +邓丽君-有我就有你,http://em.21dtv.com/songs/60055325.mkv +佚名-yesterday when i was young,http://em.21dtv.com/songs/60006466.mkv +杜丽莎-yesterday when i was young,http://em.21dtv.com/songs/60006465.mkv +梁静茹-因为还是会,http://em.21dtv.com/songs/60054233.mkv +王爱华-有位好姑娘,http://em.21dtv.com/songs/60129409.mkv +张天龙-一万个幸福,http://em.21dtv.com/songs/60126868.mkv +孙耀威-一万个万一,http://em.21dtv.com/songs/60053751.mkv +田震-一万个温柔,http://em.21dtv.com/songs/60091760.mkv +杨坤-一万个女人,http://em.21dtv.com/songs/60105170.mkv +郑源-一万个理由,http://em.21dtv.com/songs/60053750.mkv +童星-一万个理由,http://em.21dtv.com/songs/60053749.mkv +云菲菲-一万个谎言,http://em.21dtv.com/songs/60093963.mkv +蒋雪儿-一万个放心,http://em.21dtv.com/songs/60122085.mkv +陈奕迅-叶问风中转(演唱会),http://em.21dtv.com/songs/60084334.mkv +陈奕迅-叶问风中转,http://em.21dtv.com/songs/60052510.mkv +陈伟霆-遗忘的勇气,http://em.21dtv.com/songs/60068928.mkv +韩逸-一万滴眼泪,http://em.21dtv.com/songs/60133080.mkv +金南玲-遗忘的遗憾,http://em.21dtv.com/songs/60135841.mkv +邱泽-原味的夏天,http://em.21dtv.com/songs/60056015.mkv +程响-意外的邂逅,http://em.21dtv.com/songs/60107935.mkv +程响-意外的邂逅,http://em.21dtv.com/songs/60097689.mkv +陈奕夫+阿布-一万点伤害,http://em.21dtv.com/songs/60129729.mkv +万梓晴-遗忘的时光,http://em.21dtv.com/songs/60122455.mkv +羽乐团-遗忘的情节,http://em.21dtv.com/songs/60072723.mkv +周华健-意外的旅客,http://em.21dtv.com/songs/60054192.mkv +辛晓琪-遗忘的结晶,http://em.21dtv.com/songs/60054063.mkv +曾心梅-夜雾的港口,http://em.21dtv.com/songs/60052665.mkv +詹雅雯-夜雾的港口(无原唱),http://em.21dtv.com/songs/60052664.mkv +慕容晓晓-遗忘的春天,http://em.21dtv.com/songs/60068927.mkv +刘若英-遗忘的城市,http://em.21dtv.com/songs/60054062.mkv +夏天-一万次再见,http://em.21dtv.com/songs/60106734.mkv +蓝琪儿-一万次心碎,http://em.21dtv.com/songs/60079156.mkv +龙飞-一万次伤心,http://em.21dtv.com/songs/60062712.mkv +石筱群+钟汉良-一万次呼喊,http://em.21dtv.com/songs/60117953.mkv +徐歌阳-一万次悲伤,http://em.21dtv.com/songs/60125568.mkv +逃跑计划-一万次悲伤,http://em.21dtv.com/songs/60086127.mkv +苏勒亚其其格-因为爱着你,http://em.21dtv.com/songs/60113995.mkv +雨巷+晓晓-因为爱着你,http://em.21dtv.com/songs/60100995.mkv +龙梅子-因为爱着你,http://em.21dtv.com/songs/60086141.mkv +王乃恩-因为爱着你,http://em.21dtv.com/songs/60080286.mkv +央宗卓嘎-因为爱着你,http://em.21dtv.com/songs/60063243.mkv +郑嘉颖-因为爱上你,http://em.21dtv.com/songs/60054227.mkv +孙思怡-因为爱上你,http://em.21dtv.com/songs/60054226.mkv +张崇基+张崇德-youve got a friend(演唱会),http://em.21dtv.com/songs/60063817.mkv +女团4X-Yummy,http://em.21dtv.com/songs/60110968.mkv +曾心梅-越头作阮走,http://em.21dtv.com/songs/60056612.mkv +陈雷-越头作你去,http://em.21dtv.com/songs/60056611.mkv +陈彦宁-一天又一夜,http://em.21dtv.com/songs/60104556.mkv +雷诺儿-越痛越想你,http://em.21dtv.com/songs/60102918.mkv +游鸿明-一天一万年,http://em.21dtv.com/songs/60053728.mkv +小宝-一天一万年,http://em.21dtv.com/songs/60053727.mkv +孙淑媚-一天一万年,http://em.21dtv.com/songs/60053726.mkv +史啸吟-一天一万年,http://em.21dtv.com/songs/60053725.mkv +徐峰柏-一天一梦想,http://em.21dtv.com/songs/60079155.mkv +狄易达-一天一粒糖,http://em.21dtv.com/songs/60053718.mkv +黄立成-缘投与阿丑,http://em.21dtv.com/songs/60056110.mkv +MACHI-缘投与阿丑,http://em.21dtv.com/songs/60056109.mkv +孙莞-樱桃小丸子,http://em.21dtv.com/songs/60106772.mkv +贾璨璨-樱桃小公主,http://em.21dtv.com/songs/60087063.mkv +郑少秋-倚天屠龙记,http://em.21dtv.com/songs/60054097.mkv +郑少秋-倚天屠龙记(演唱会),http://em.21dtv.com/songs/60054096.mkv +陈小云-怨叹什路用,http://em.21dtv.com/songs/60095987.mkv +沈文程-怨叹什路用(无原唱),http://em.21dtv.com/songs/60095756.mkv +小凤凤-一条手巾仔,http://em.21dtv.com/songs/60053740.mkv +陈盈洁-一条手巾仔,http://em.21dtv.com/songs/60053739.mkv +锦绣二重唱-一同去郊游,http://em.21dtv.com/songs/60053743.mkv +佚名-怨叹你无情(无原唱),http://em.21dtv.com/songs/60056185.mkv +猪哥亮+周三珊-一条内酷带,http://em.21dtv.com/songs/60065353.mkv +C ALLSTAR-雨天没有你,http://em.21dtv.com/songs/60065410.mkv +MICHAEL LEARNS TO ROCK-you took my heart away,http://em.21dtv.com/songs/60006576.mkv +F.I.R-亚特兰提斯,http://em.21dtv.com/songs/60051904.mkv +猪哥亮-越头看自己,http://em.21dtv.com/songs/60056610.mkv +蔡义德-越头看人生,http://em.21dtv.com/songs/60070203.mkv +袁小迪-越头看人生,http://em.21dtv.com/songs/60066567.mkv +江蕙-越头看情路,http://em.21dtv.com/songs/60056609.mkv +陈一畅-一条旧围巾,http://em.21dtv.com/songs/60071430.mkv +黄妃-油桐花新娘,http://em.21dtv.com/songs/60054994.mkv +陈明章-油桐花新娘,http://em.21dtv.com/songs/60054993.mkv +林于雯-一天花手巾,http://em.21dtv.com/songs/60095640.mkv +温瑞鸳-一条花手巾(无原唱),http://em.21dtv.com/songs/60053731.mkv +郭赛伟-渊泰的小路,http://em.21dtv.com/songs/60118976.mkv +陈绮贞-雨天的尾巴,http://em.21dtv.com/songs/60055706.mkv +莫莫-一天的回忆,http://em.21dtv.com/songs/60072715.mkv +景岗山+艾雨-一天成永远,http://em.21dtv.com/songs/60081913.mkv +赵仰瑞-有她才有家,http://em.21dtv.com/songs/60135771.mkv +佚名-玉堂春-起解,http://em.21dtv.com/songs/60055792.mkv +易欣-一天爱一点,http://em.21dtv.com/songs/60053710.mkv +王建杰-一生作阵走,http://em.21dtv.com/songs/60107065.mkv +陈奕迅-一生中最爱,http://em.21dtv.com/songs/60053637.mkv +谭咏麟-一生中最爱(演唱会),http://em.21dtv.com/songs/60053636.mkv +谭咏麟+李克勤-一生中最爱(演唱会),http://em.21dtv.com/songs/60053635.mkv +陈浩德-一世钟意你(演唱会),http://em.21dtv.com/songs/60061824.mkv +庄学忠-一生只有你,http://em.21dtv.com/songs/60053628.mkv +王建杰-一生只有你,http://em.21dtv.com/songs/60053627.mkv +林姗-一生只有你,http://em.21dtv.com/songs/60053626.mkv +洪百慧-一生只有你,http://em.21dtv.com/songs/60053625.mkv +蔡小虎-一生只有你,http://em.21dtv.com/songs/60053624.mkv +佚名-一生只为你,http://em.21dtv.com/songs/60053622.mkv +杨臣刚-一生只为你,http://em.21dtv.com/songs/60053621.mkv +川子-有谁在思念,http://em.21dtv.com/songs/60113438.mkv +阿才-又是这秋季,http://em.21dtv.com/songs/60104527.mkv +庞龙+郭欢-一生足够了,http://em.21dtv.com/songs/60070150.mkv +陈百潭-赢是咱的名,http://em.21dtv.com/songs/60104569.mkv +王识贤-一生只爱你,http://em.21dtv.com/songs/60053613.mkv +双剑兄弟-一生只爱你,http://em.21dtv.com/songs/60053612.mkv +林心如-一生只爱你,http://em.21dtv.com/songs/60053611.mkv +司空雷-一生中爱过,http://em.21dtv.com/songs/60131238.mkv +山子华-月色映中天,http://em.21dtv.com/songs/60115132.mkv +罗敏庄-一生也在等,http://em.21dtv.com/songs/60053591.mkv +罗文+甄妮-一生有意义,http://em.21dtv.com/songs/60053609.mkv +叶倩文-愿死也为情,http://em.21dtv.com/songs/60056218.mkv +叶倩文-愿死也为情(演唱会),http://em.21dtv.com/songs/60056217.mkv +谢天笑-与声音跳舞(演唱会),http://em.21dtv.com/songs/60079334.mkv +陈琳-一三一三一,http://em.21dtv.com/songs/60053500.mkv +声音乐团-用声音守望,http://em.21dtv.com/songs/60080252.mkv +伊啦啦-一生一起走,http://em.21dtv.com/songs/60103072.mkv +花树-夜是一阕歌,http://em.21dtv.com/songs/60132828.mkv +刘德华-余生一起过,http://em.21dtv.com/songs/60079323.mkv +佚名-月色眼内浮,http://em.21dtv.com/songs/60056494.mkv +麋先生-野生游乐园,http://em.21dtv.com/songs/60133120.mkv +麋先生-野生游乐园,http://em.21dtv.com/songs/60132009.mkv +黄湘怡-一首摇篮曲,http://em.21dtv.com/songs/60080576.mkv +张学友-一生一火花,http://em.21dtv.com/songs/60053598.mkv +群星-一生一火花(演唱会),http://em.21dtv.com/songs/60053597.mkv +任静-一生一个梦,http://em.21dtv.com/songs/60053596.mkv +罗逻圣-耶稣拥抱你,http://em.21dtv.com/songs/60129488.mkv +陈慧琳-一生一爱情,http://em.21dtv.com/songs/60053593.mkv +陈慧琳-一生一爱情(演唱会),http://em.21dtv.com/songs/60053592.mkv +B.Gs-1+4+1,http://em.21dtv.com/songs/60115566.mkv +棉花囡囡-又是下雨天,http://em.21dtv.com/songs/60084455.mkv +刘娅婷-优伤小夜曲,http://em.21dtv.com/songs/60062681.mkv +988群星-一首新年歌,http://em.21dtv.com/songs/60097479.mkv +童唱-银色小木舟(无原唱),http://em.21dtv.com/songs/60054352.mkv +蔡秋凤-一生为着你,http://em.21dtv.com/songs/60053583.mkv +蔡秋凤-雨水我问你,http://em.21dtv.com/songs/60055699.mkv +方瑞娥+高向鹏-一生袜分离,http://em.21dtv.com/songs/60053580.mkv +马浚伟-一生忘不了,http://em.21dtv.com/songs/60053582.mkv +中岛美嘉-桜色舞うころ,http://em.21dtv.com/songs/60054454.mkv +晓月-忧伤天蝎座,http://em.21dtv.com/songs/60079260.mkv +蒋易-有谁听说过,http://em.21dtv.com/songs/60055312.mkv +郑少秋-一生拖你走,http://em.21dtv.com/songs/60053579.mkv +郑少秋-一生拖你手,http://em.21dtv.com/songs/60093280.mkv +草蜢-也算是缘份(无原唱),http://em.21dtv.com/songs/60052427.mkv +苏芮-也算是奇迹,http://em.21dtv.com/songs/60052426.mkv +阿普萨萨-一生是朋友,http://em.21dtv.com/songs/60121050.mkv +裘海正-雨伞是媒红,http://em.21dtv.com/songs/60086170.mkv +庄蕙如-雨伞是媒红,http://em.21dtv.com/songs/60084462.mkv +彭炽权+叶幼琪-易水送荆轲(戏曲),http://em.21dtv.com/songs/60092661.mkv +天籁回音-一生守护你,http://em.21dtv.com/songs/60102084.mkv +钱惠丽+方亚芬-月色溶溶夜,http://em.21dtv.com/songs/60056493.mkv +卡拉OK-夜深人敲门,http://em.21dtv.com/songs/60090772.mkv +曾心梅-有谁人来陪,http://em.21dtv.com/songs/60055311.mkv +赖铭伟-伊是阮老爸,http://em.21dtv.com/songs/60131836.mkv +佚名-夜深人静后,http://em.21dtv.com/songs/60052647.mkv +秋雨-又是秋雨夜,http://em.21dtv.com/songs/60120837.mkv +邓丽君-云深情也深(无原唱),http://em.21dtv.com/songs/60056671.mkv +刘锡明-一生全属你,http://em.21dtv.com/songs/60053575.mkv +高安-一生去守候(演唱会),http://em.21dtv.com/songs/60053574.mkv +含烟-又是清秋雨,http://em.21dtv.com/songs/60105691.mkv +谢雷-一生求平凡(无原唱),http://em.21dtv.com/songs/60053573.mkv +伍浩哲-一生求平凡(无原唱),http://em.21dtv.com/songs/60053572.mkv +陈瑞-一世情歌版,http://em.21dtv.com/songs/60108135.mkv +庹宗华-一生情不绝,http://em.21dtv.com/songs/60053566.mkv +范振锋-一生情不绝,http://em.21dtv.com/songs/60053565.mkv +雨柔-一生去爱你,http://em.21dtv.com/songs/60134432.mkv +宇轩-一生陪着你,http://em.21dtv.com/songs/60132374.mkv +詹雅雯-一生陪伴你,http://em.21dtv.com/songs/60078337.mkv +黎明-眼神骗不过,http://em.21dtv.com/songs/60052097.mkv +邰正宵-眼神骗不过(演唱会),http://em.21dtv.com/songs/60052096.mkv +高子洋-一手捧杯啊(无原唱),http://em.21dtv.com/songs/60053672.mkv +谢霆锋-有谁能体会,http://em.21dtv.com/songs/60092115.mkv +金波-有事你就说,http://em.21dtv.com/songs/60055303.mkv +张宇-有谁能懂我,http://em.21dtv.com/songs/60091078.mkv +王大文-有什么意义,http://em.21dtv.com/songs/60097532.mkv +陈小春-有说_没说,http://em.21dtv.com/songs/60088865.mkv +韩传芳-原是木棉红,http://em.21dtv.com/songs/60093604.mkv +张智霖-一生恋再恋,http://em.21dtv.com/songs/60053561.mkv +张行-一生里有你,http://em.21dtv.com/songs/60133694.mkv +陈瑞-又是梨花白,http://em.21dtv.com/songs/60122242.mkv +林心如-夜宿兰桂坊,http://em.21dtv.com/songs/60052668.mkv +泳儿-有谁来爱我,http://em.21dtv.com/songs/60055308.mkv +林良欢-一生来爱你,http://em.21dtv.com/songs/60053559.mkv +蒋林刚-有谁看得清,http://em.21dtv.com/songs/60103554.mkv +高枫-有事就言语(演唱会),http://em.21dtv.com/songs/60055302.mkv +刘美君-一双旧皮鞋,http://em.21dtv.com/songs/60053690.mkv +解晓东-与世界联网,http://em.21dtv.com/songs/60055602.mkv +佚名-严守纪律歌,http://em.21dtv.com/songs/60052010.mkv +谭咏麟-愿世界和平,http://em.21dtv.com/songs/60093210.mkv +容儿-一生交给你,http://em.21dtv.com/songs/60053558.mkv +张善为-一生换一天,http://em.21dtv.com/songs/60053557.mkv +佚名-烟水寒又寒,http://em.21dtv.com/songs/60051979.mkv +少峰-一生好兄弟,http://em.21dtv.com/songs/60133602.mkv +风萧萧-一世好兄弟,http://em.21dtv.com/songs/60065349.mkv +施志兴-雨水还是泪,http://em.21dtv.com/songs/60096314.mkv +王蓉-有时候寂寞,http://em.21dtv.com/songs/60055295.mkv +张一山-一山好锋光(演唱会),http://em.21dtv.com/songs/60084370.mkv +阿毛-忧伤华尔兹,http://em.21dtv.com/songs/60079257.mkv +璐菲-忧伤华尔兹,http://em.21dtv.com/songs/60070180.mkv +陈浩德-月是故乡明(演唱会),http://em.21dtv.com/songs/60079422.mkv +陈绍瑀-月是故乡明,http://em.21dtv.com/songs/60056497.mkv +钟明秋-一水隔天涯,http://em.21dtv.com/songs/60126311.mkv +杨燕-一水隔天涯(演唱会),http://em.21dtv.com/songs/60079153.mkv +方伊琪+陈浩德-一水隔天涯(演唱会),http://em.21dtv.com/songs/60079152.mkv +郑秀文-一水隔天涯,http://em.21dtv.com/songs/60053697.mkv +梅艳芳-一水隔天涯,http://em.21dtv.com/songs/60053696.mkv +黄红英-一水隔天涯,http://em.21dtv.com/songs/60053695.mkv +张德兰-一水隔天涯(演唱会),http://em.21dtv.com/songs/60053694.mkv +汪明荃-一水隔天涯(演唱会),http://em.21dtv.com/songs/60053693.mkv +黄丹仪-一水隔天涯(演唱会),http://em.21dtv.com/songs/60053692.mkv +陈洁丽-一水隔天涯(演唱会),http://em.21dtv.com/songs/60053691.mkv +李克勤-一生挂念你,http://em.21dtv.com/songs/60053548.mkv +SUPERCELL-银色飞行船,http://em.21dtv.com/songs/60079204.mkv +佚名-阳生而熟悉,http://em.21dtv.com/songs/60052198.mkv +流苏-一生的追忆,http://em.21dtv.com/songs/60086124.mkv +TWINS-一生的知己,http://em.21dtv.com/songs/60092202.mkv +玛希-银色的毡房,http://em.21dtv.com/songs/60054350.mkv +海俊杰+戴恩玲-一生的一生(演唱会),http://em.21dtv.com/songs/60053541.mkv +施志兴-一生的眼泪,http://em.21dtv.com/songs/60096309.mkv +桑娜央金-银色的月亮,http://em.21dtv.com/songs/60091513.mkv +刘伟-云上的诱惑,http://em.21dtv.com/songs/60080652.mkv +胡松华-银色的月光,http://em.21dtv.com/songs/60054349.mkv +罗时丰-一生的选择,http://em.21dtv.com/songs/60066525.mkv +冷漠-一生的信仰,http://em.21dtv.com/songs/60134918.mkv +冷漠-一生的信仰,http://em.21dtv.com/songs/60125162.mkv +萧亚轩-遗失的心跳,http://em.21dtv.com/songs/60065360.mkv +张宇-一生的相守,http://em.21dtv.com/songs/60091072.mkv +子力-忧伤的小妹,http://em.21dtv.com/songs/60054952.mkv +晓枫-一生的兄弟,http://em.21dtv.com/songs/60124020.mkv +洪颜-忧伤的蚊子,http://em.21dtv.com/songs/60054951.mkv +梅朵-一生的唯一,http://em.21dtv.com/songs/60117868.mkv +邓紫棋-遗失的声音,http://em.21dtv.com/songs/60114119.mkv +王旭-一生的誓言,http://em.21dtv.com/songs/60065345.mkv +邓紫棋-遗失的声音,http://em.21dtv.com/songs/60061833.mkv +朱妍-一生的思念,http://em.21dtv.com/songs/60087967.mkv +林姗-一生的伤痕,http://em.21dtv.com/songs/60053540.mkv +佚名-银色的圣诞,http://em.21dtv.com/songs/60054348.mkv +王啸坤-云上的日子,http://em.21dtv.com/songs/60056668.mkv +刘珊珊-云上的日子,http://em.21dtv.com/songs/60056667.mkv +黎瑞恩-云上的日子,http://em.21dtv.com/songs/60056666.mkv +李健-云上的日子(演唱会),http://em.21dtv.com/songs/60056665.mkv +郭富城-一生的情人,http://em.21dtv.com/songs/60053539.mkv +胡雯-忧伤的秋千,http://em.21dtv.com/songs/60054950.mkv +曾春年-一生的牵挂,http://em.21dtv.com/songs/60079143.mkv +张镐哲-遗失的情歌,http://em.21dtv.com/songs/60054058.mkv +尼玛次仁-一生的祈祷,http://em.21dtv.com/songs/60053538.mkv +詹雅雯+不想红-一生的期待,http://em.21dtv.com/songs/60053537.mkv +朱天毅-一生的朋友,http://em.21dtv.com/songs/60106919.mkv +费玉清-一生的朋友,http://em.21dtv.com/songs/60053536.mkv +彭博-余生的美好,http://em.21dtv.com/songs/60131422.mkv +张韶涵-遗失的美好,http://em.21dtv.com/songs/60054057.mkv +阿沁-遗失的美好,http://em.21dtv.com/songs/60054056.mkv +许强-忧伤的离去,http://em.21dtv.com/songs/60079256.mkv +尤雅-一生的恋梦(无原唱),http://em.21dtv.com/songs/60048273.mkv +樱花姐妹-雨水的哭声,http://em.21dtv.com/songs/60074434.mkv +樱花姊妹-雨水的哭声,http://em.21dtv.com/songs/60071169.mkv +焦靖峰-一生的记忆,http://em.21dtv.com/songs/60110358.mkv +宋嘉其-一生都记起,http://em.21dtv.com/songs/60111006.mkv +易欣-忧伤的季节,http://em.21dtv.com/songs/60054949.mkv +庄振凯-一生的坚持,http://em.21dtv.com/songs/60125477.mkv +王莱-一生的骄傲,http://em.21dtv.com/songs/60084372.mkv +遥远-一世的红颜,http://em.21dtv.com/songs/60112287.mkv +腾格尔-又是大旱年,http://em.21dtv.com/songs/60055458.mkv +钟亚华-忧伤的公主,http://em.21dtv.com/songs/60108077.mkv +黄迎迎-忧伤的公主,http://em.21dtv.com/songs/60106510.mkv +黄馨可-一生的故事,http://em.21dtv.com/songs/60080179.mkv +佚名-雨伞的故事,http://em.21dtv.com/songs/60055687.mkv +蔡琴-一生都给你,http://em.21dtv.com/songs/60053544.mkv +陈奕迅-遗失的国度,http://em.21dtv.com/songs/60054055.mkv +齐旦布-一生的飞翔,http://em.21dtv.com/songs/60071425.mkv +叶德娴-一生的赌注,http://em.21dtv.com/songs/60053533.mkv +孙楠-一生的第一,http://em.21dtv.com/songs/60053532.mkv +陈淑萍-一生等待你,http://em.21dtv.com/songs/60119016.mkv +陈瑞-一生的等待,http://em.21dtv.com/songs/60094747.mkv +任贤齐-有谁懂得爱,http://em.21dtv.com/songs/60055305.mkv +刘愉愉-一生的承诺,http://em.21dtv.com/songs/60086123.mkv +杜留香-忧伤的沉默,http://em.21dtv.com/songs/60122880.mkv +宇桐非-易碎的玻璃,http://em.21dtv.com/songs/60070161.mkv +张学友-一生不醉醒,http://em.21dtv.com/songs/60053520.mkv +卡拉OK-一生不忘记,http://em.21dtv.com/songs/60089705.mkv +黎明-一生比我好(无原唱),http://em.21dtv.com/songs/60093557.mkv +佚名-一生比我好(无原唱),http://em.21dtv.com/songs/60053511.mkv +佚名-yo si ba na ya,http://em.21dtv.com/songs/60006477.mkv +蒙面哥-忧伤悲剧人,http://em.21dtv.com/songs/60135694.mkv +罗忆诗-一丝不挂念,http://em.21dtv.com/songs/60113938.mkv +颜裕林-一生不放手,http://em.21dtv.com/songs/60110678.mkv +张镐哲-岩石般的爱,http://em.21dtv.com/songs/60101085.mkv +彭羚-一世爱着你,http://em.21dtv.com/songs/60053652.mkv +杨谨-牙刷爱牙膏,http://em.21dtv.com/songs/60086078.mkv +杨沐-依然在这里,http://em.21dtv.com/songs/60121802.mkv +马天宇-依然在一起,http://em.21dtv.com/songs/60054011.mkv +李健-依然在路上,http://em.21dtv.com/songs/60079171.mkv +韦礼安-有人在等我,http://em.21dtv.com/songs/60079296.mkv +新裤子-野人也有爱,http://em.21dtv.com/songs/60052493.mkv +李嘉-一人一条路,http://em.21dtv.com/songs/60053488.mkv +马天宇-一人一旅途,http://em.21dtv.com/songs/60128595.mkv +佚名-一人一款命,http://em.21dtv.com/songs/60053486.mkv +李玉刚+杨树林-一人饮酒醉,http://em.21dtv.com/songs/60133818.mkv +MC菏泽小志-一人饮酒醉,http://em.21dtv.com/songs/60121287.mkv +陈粒-易燃易爆炸,http://em.21dtv.com/songs/60121092.mkv +佚名-一人行一路,http://em.21dtv.com/songs/60053473.mkv +邱芸子+陈中-一人行一路,http://em.21dtv.com/songs/60053472.mkv +蔡秋凤-一人行一路,http://em.21dtv.com/songs/60053471.mkv +马彬咏-依然向前走,http://em.21dtv.com/songs/60119062.mkv +苏永康-有人喜欢蓝(演唱会),http://em.21dtv.com/songs/60055291.mkv +邱芸子-一人跳恰恰(无原唱),http://em.21dtv.com/songs/60053479.mkv +梁浩贤-一人同乐日,http://em.21dtv.com/songs/60053481.mkv +任家萱+萧煌奇-一人水一项,http://em.21dtv.com/songs/60108297.mkv +Selina+萧煌奇-一人水一项,http://em.21dtv.com/songs/60107431.mkv +宇恒-依然是朋友,http://em.21dtv.com/songs/60054002.mkv +黄仲齐-依然是朋友,http://em.21dtv.com/songs/60054001.mkv +钟康琪-云瑞庆升平,http://em.21dtv.com/songs/60056663.mkv +AT17-依然亲爱的,http://em.21dtv.com/songs/60092130.mkv +AT17-依然 亲爱的,http://em.21dtv.com/songs/60053991.mkv +林欣彤-一人旅行团(演唱会),http://em.21dtv.com/songs/60065341.mkv +蔡琴-一人卡拉ok,http://em.21dtv.com/songs/60053474.mkv +李芊慧-一人行一路(无原唱),http://em.21dtv.com/songs/60095629.mkv +赵光辉-伊人何时归,http://em.21dtv.com/songs/60118935.mkv +何韵诗-有人跟踪我(演唱会),http://em.21dtv.com/songs/60055286.mkv +邰正宵-有人关心你,http://em.21dtv.com/songs/60055288.mkv +金智娟-有人关心你,http://em.21dtv.com/songs/60055287.mkv +苏芮-优柔的执着(无原唱),http://em.21dtv.com/songs/60054937.mkv +樊奕敏+康华+马蹄路-伊人当自强,http://em.21dtv.com/songs/60129316.mkv +晓雨-依然的最爱,http://em.21dtv.com/songs/60079170.mkv +佚名-亚热带少年,http://em.21dtv.com/songs/60051902.mkv +刘美君-亚热带少年,http://em.21dtv.com/songs/60051901.mkv +刘美君-亚热带少年(演唱会),http://em.21dtv.com/songs/60051900.mkv +孙燕姿-愚人的国度,http://em.21dtv.com/songs/60055570.mkv +日京江羽人-羽人不想飞,http://em.21dtv.com/songs/60055622.mkv +王枭杰-依然爱着你,http://em.21dtv.com/songs/60084381.mkv +禇桐羽-月球暂住证,http://em.21dtv.com/songs/60116182.mkv +张震岳-一切再重来,http://em.21dtv.com/songs/60053458.mkv +张震岳-一切再重来(演唱会),http://em.21dtv.com/songs/60053457.mkv +詹曼铃-一切做伊飞,http://em.21dtv.com/songs/60053459.mkv +樊少华+唐薇-一起走天涯,http://em.21dtv.com/songs/60133901.mkv +唐薇&樊少华-一起走天涯,http://em.21dtv.com/songs/60132311.mkv +张蓉蓉-要去做你去,http://em.21dtv.com/songs/60052389.mkv +钟舒漫-月球殖民地,http://em.21dtv.com/songs/60079420.mkv +群星-一千种快乐,http://em.21dtv.com/songs/60053421.mkv +谭咏麟-一千种记忆,http://em.21dtv.com/songs/60053420.mkv +陈光标-一起做好人,http://em.21dtv.com/songs/60080903.mkv +张蓉蓉-一切由在天,http://em.21dtv.com/songs/60072297.mkv +关淑怡-一切也愿意,http://em.21dtv.com/songs/60053456.mkv +李小璐-一起拥有爱,http://em.21dtv.com/songs/60053376.mkv +何杰-一切已忘掉,http://em.21dtv.com/songs/60107494.mkv +那英-一千一万遍,http://em.21dtv.com/songs/60053418.mkv +扎西尼玛-一曲呀啦嗦,http://em.21dtv.com/songs/60053464.mkv +佚名-一千一个冬,http://em.21dtv.com/songs/60053417.mkv +何嘉文-元气嘻游记(无原唱),http://em.21dtv.com/songs/60055906.mkv +金波-一起向远方(演唱会),http://em.21dtv.com/songs/60053375.mkv +温拿乐队-友情相关照(演唱会),http://em.21dtv.com/songs/60055070.mkv +谭咏麟-友情相关照(演唱会),http://em.21dtv.com/songs/60055069.mkv +李幸倪-月球下的人,http://em.21dtv.com/songs/60121771.mkv +李幸倪-月球下的人,http://em.21dtv.com/songs/60120620.mkv +可歆-有期限的爱,http://em.21dtv.com/songs/60099852.mkv +秀兰玛雅-一切为着爱,http://em.21dtv.com/songs/60053455.mkv +陈小云-有情无心肝(无原唱),http://em.21dtv.com/songs/60055278.mkv +苏芮-一切为明天(无原唱),http://em.21dtv.com/songs/60053453.mkv +张洪波-一切为了你,http://em.21dtv.com/songs/60061820.mkv +王绍博-一切为了你,http://em.21dtv.com/songs/60053452.mkv +六哲-一切为了爱,http://em.21dtv.com/songs/60053451.mkv +黄品冠-一切为了爱,http://em.21dtv.com/songs/60053450.mkv +佚名-一切为打赢,http://em.21dtv.com/songs/60053447.mkv +蜜蜂少女队-一起跳舞吧,http://em.21dtv.com/songs/60124457.mkv +江蕙-一切随在伊,http://em.21dtv.com/songs/60053446.mkv +明道-一起晒星光,http://em.21dtv.com/songs/60097480.mkv +草蜢-一起手牵手,http://em.21dtv.com/songs/60053373.mkv +黄凯芹-一切说清楚,http://em.21dtv.com/songs/60053444.mkv +佚名-有钱上界好,http://em.21dtv.com/songs/60055263.mkv +陈奕迅-月球上的人(HD演唱会),http://em.21dtv.com/songs/60056490.mkv +李克勤-一切是创造,http://em.21dtv.com/songs/60053443.mkv +剑鸿-有钱随便花,http://em.21dtv.com/songs/60125231.mkv +陈百潭-有情若无情,http://em.21dtv.com/songs/60055276.mkv +陈百潭-有情若无情(无原唱),http://em.21dtv.com/songs/60055275.mkv +王识贤-一起去幸福,http://em.21dtv.com/songs/60068918.mkv +尤雅-一曲情未了,http://em.21dtv.com/songs/60053463.mkv +CONNIE吕莘-一起去神游,http://em.21dtv.com/songs/60053372.mkv +常思思-邀请全世界,http://em.21dtv.com/songs/60052241.mkv +宇宙人-一起去跑步,http://em.21dtv.com/songs/60079134.mkv +董小七-一起去冒险,http://em.21dtv.com/songs/60123120.mkv +魏如萱-一起去旅行,http://em.21dtv.com/songs/60053371.mkv +泳儿-一起去峇里,http://em.21dtv.com/songs/60079133.mkv +侯湘婷-一起去巴黎,http://em.21dtv.com/songs/60053370.mkv +吴进法-月缺盼月圆,http://em.21dtv.com/songs/60071485.mkv +林俊杰-一千年以后,http://em.21dtv.com/songs/60053415.mkv +王瑞霞+蔡小虎-一切没问题,http://em.21dtv.com/songs/60053438.mkv +邰正宵-一千零一夜,http://em.21dtv.com/songs/60128454.mkv +邰正宵-一千零一夜,http://em.21dtv.com/songs/60053413.mkv +孙仟一-一千零一夜,http://em.21dtv.com/songs/60053412.mkv +蜜雪薇琪-一千零一夜,http://em.21dtv.com/songs/60053411.mkv +李翊君-一千零一夜,http://em.21dtv.com/songs/60053410.mkv +李克勤-一千零一夜(演唱会),http://em.21dtv.com/songs/60053409.mkv +彭羚-一千零一晚,http://em.21dtv.com/songs/60053408.mkv +杨千嬅-一千零一个,http://em.21dtv.com/songs/60053403.mkv +游美灵-一起来跳舞,http://em.21dtv.com/songs/60132688.mkv +游美灵-一起来跳舞,http://em.21dtv.com/songs/60071424.mkv +江映蓉-一起来挑麦,http://em.21dtv.com/songs/60053369.mkv +詹雅雯-一切拢是命,http://em.21dtv.com/songs/60053435.mkv +张蓉蓉-一切拢顺利,http://em.21dtv.com/songs/60053437.mkv +蔡秋凤-一切拢是空,http://em.21dtv.com/songs/60053434.mkv +曾心梅-一切拢是爱(无原唱),http://em.21dtv.com/songs/60095579.mkv +佚名-一切拢是爱(无原唱),http://em.21dtv.com/songs/60053433.mkv +杜德伟-一起看月亮,http://em.21dtv.com/songs/60053365.mkv +李茂山-一曲寄知音,http://em.21dtv.com/songs/60091371.mkv +唐志星-有钱就没事,http://em.21dtv.com/songs/60132309.mkv +郭小霖-一千句im sorry,http://em.21dtv.com/songs/60053401.mkv +吴勇滨-一切交乎你,http://em.21dtv.com/songs/60065338.mkv +俞隆华-友情甲爱情,http://em.21dtv.com/songs/60055060.mkv +佚名-友情甲爱情,http://em.21dtv.com/songs/60055059.mkv +陈玉建-有钱就爱你,http://em.21dtv.com/songs/60055260.mkv +覃沐曦-一切会好的,http://em.21dtv.com/songs/60098759.mkv +游鸿明-一千个昼夜(无原唱),http://em.21dtv.com/songs/60053399.mkv +郑嘉颖-一千个愿意,http://em.21dtv.com/songs/60053398.mkv +傅振辉+黄思婷-一千个相思,http://em.21dtv.com/songs/60095456.mkv +四个朋友-一千个太阳,http://em.21dtv.com/songs/60105719.mkv +五月天-一千个世纪,http://em.21dtv.com/songs/60053396.mkv +方瑞娥-一千个世纪,http://em.21dtv.com/songs/60053395.mkv +张菱-一千个理由,http://em.21dtv.com/songs/60053389.mkv +耿宁-一千个轮回,http://em.21dtv.com/songs/60053391.mkv +易丹-一千个轮回(演唱会),http://em.21dtv.com/songs/60053390.mkv +王芷蕾-一千个春天,http://em.21dtv.com/songs/60053388.mkv +叶幼琪+蒋文端-一曲凤求凰(戏曲),http://em.21dtv.com/songs/60092408.mkv +魏宗武-一千滴眼泪,http://em.21dtv.com/songs/60111542.mkv +盛一伦-以前的以后,http://em.21dtv.com/songs/60117945.mkv +李晓-远去的云朵,http://em.21dtv.com/songs/60087087.mkv +谢艺-远去的笑声,http://em.21dtv.com/songs/60104438.mkv +梁佳玉-一起的幸福,http://em.21dtv.com/songs/60113733.mkv +叶玉卿-一切都为爱,http://em.21dtv.com/songs/60053429.mkv +叶玉卿+张立基-一切都为爱,http://em.21dtv.com/songs/60053428.mkv +张迈-一起的日子,http://em.21dtv.com/songs/60071423.mkv +德德玛-远去的母亲,http://em.21dtv.com/songs/60087895.mkv +陈梓清-友情的美景,http://em.21dtv.com/songs/60097507.mkv +高隆-遗弃的玫瑰,http://em.21dtv.com/songs/60054054.mkv +丛浩楠-勇气的理由,http://em.21dtv.com/songs/60054861.mkv +爱歌-远去的记忆,http://em.21dtv.com/songs/60118754.mkv +I_ME-友情的界限,http://em.21dtv.com/songs/60087198.mkv +IME-友情的界限,http://em.21dtv.com/songs/60087197.mkv +尹光+胡美仪-艳曲动皇心,http://em.21dtv.com/songs/60052116.mkv +范小倩-遗弃的花海,http://em.21dtv.com/songs/60120905.mkv +于台烟-一切都还好,http://em.21dtv.com/songs/60053427.mkv +林汉扬-一切都怪我(无原唱),http://em.21dtv.com/songs/60053426.mkv +晓东-远去的背影,http://em.21dtv.com/songs/60119615.mkv +那英-一切都变了,http://em.21dtv.com/songs/60053425.mkv +沙漠讯号-遗弃的背包,http://em.21dtv.com/songs/60128165.mkv +张瑶-友情的安慰,http://em.21dtv.com/songs/60055057.mkv +湘东雨-一千次温柔,http://em.21dtv.com/songs/60079136.mkv +许志安-一千次日落,http://em.21dtv.com/songs/60053387.mkv +邹顺风-一起唱情歌,http://em.21dtv.com/songs/60120019.mkv +凯歌-一千次凝眸,http://em.21dtv.com/songs/60097477.mkv +黄耀明-一千场恋爱(演唱会),http://em.21dtv.com/songs/60087049.mkv +黄耀明-一千场恋爱,http://em.21dtv.com/songs/60053386.mkv +苏勒亚其其格-一起唱歌吧,http://em.21dtv.com/songs/60123108.mkv +韩宝仪-一去不回头,http://em.21dtv.com/songs/60053468.mkv +高胜美-一去不回头,http://em.21dtv.com/songs/60053467.mkv +彭佳慧+Alin-忆起爱相随,http://em.21dtv.com/songs/60125552.mkv +幸田来未-一千の言叶,http://em.21dtv.com/songs/60053384.mkv +徐沛东-油瓶子怕摔,http://em.21dtv.com/songs/60072741.mkv +杨钰莹-一片艳阳天,http://em.21dtv.com/songs/60053348.mkv +陶红-有朋远方来,http://em.21dtv.com/songs/60079293.mkv +佚名-崖畔上开花,http://em.21dtv.com/songs/60051877.mkv +陈思思-崖畔上开花,http://em.21dtv.com/songs/60051876.mkv +CRYSTAL WATERS-100% pure love,http://em.21dtv.com/songs/60000006.mkv +阿杰(办桌二人组)+王羚柔-原配变小三,http://em.21dtv.com/songs/60088836.mkv +办桌阿杰+王羚柔-元配变小三,http://em.21dtv.com/songs/60062223.mkv +Troye Sivan-Youth,http://em.21dtv.com/songs/60116481.mkv +LUCY HALE-You Sound Good To Me,http://em.21dtv.com/songs/60101216.mkv +Ella Henderson-Yours,http://em.21dtv.com/songs/60106530.mkv +金朝汉+朴经-Y.O.U,http://em.21dtv.com/songs/60126295.mkv +Beyoncé-Yoncé,http://em.21dtv.com/songs/60117434.mkv +天天-YOLO同一个节奏(人物),http://em.21dtv.com/songs/60101061.mkv +二龙-有你最幸福,http://em.21dtv.com/songs/60108275.mkv +刘思伟+屈珂羽-有你最幸福,http://em.21dtv.com/songs/60103115.mkv +郭天祥-有你在身旁,http://em.21dtv.com/songs/60122179.mkv +闫旭-有你在身旁,http://em.21dtv.com/songs/60065398.mkv +无印良品-有你在身旁,http://em.21dtv.com/songs/60055251.mkv +无印良品-有你在身旁(演唱会),http://em.21dtv.com/songs/60055250.mkv +罗小虎-有你在身边,http://em.21dtv.com/songs/60084447.mkv +刘惜君-有你在身边,http://em.21dtv.com/songs/60055249.mkv +李恕权-拥你在梦里,http://em.21dtv.com/songs/60054601.mkv +叶启田-月娘在故乡,http://em.21dtv.com/songs/60056486.mkv +林姗-月娘月圆时,http://em.21dtv.com/songs/60056485.mkv +崔恕-一年又一年,http://em.21dtv.com/songs/60132410.mkv +董文华-一年又一年,http://em.21dtv.com/songs/60079126.mkv +常石磊-一年又一年(演唱会),http://em.21dtv.com/songs/60079125.mkv +谢采妘-一年又一年,http://em.21dtv.com/songs/60053330.mkv +林淑容-一年又一年,http://em.21dtv.com/songs/60053329.mkv +李茂山-一年又一年,http://em.21dtv.com/songs/60053328.mkv +佚名-怨你一世人(无原唱),http://em.21dtv.com/songs/60056181.mkv +杨培安-有你有明天,http://em.21dtv.com/songs/60055242.mkv +杨培安+符琼音-有你有明天,http://em.21dtv.com/songs/60055241.mkv +汤宝如-越难越爱你,http://em.21dtv.com/songs/60056602.mkv +佚名-月娘笑阮憨,http://em.21dtv.com/songs/60056484.mkv +周慧敏-要你喜欢我,http://em.21dtv.com/songs/60052383.mkv +唐俪-月娘我问你,http://em.21dtv.com/songs/60120417.mkv +阿吉仔-月娘我问你,http://em.21dtv.com/songs/60056483.mkv +BY2-有你我不怕(演唱会),http://em.21dtv.com/songs/60065396.mkv +巧千金-一年胜一年,http://em.21dtv.com/songs/60079124.mkv +牛欣欣+刘姝辰+张翘-一年胜一年,http://em.21dtv.com/songs/60079123.mkv +小雪-有你是荣幸,http://em.21dtv.com/songs/60055235.mkv +米儿丝-要你说爱我,http://em.21dtv.com/songs/60052382.mkv +三支羽毛-有你陪着我,http://em.21dtv.com/songs/60071458.mkv +安又琪-有你陪着我,http://em.21dtv.com/songs/60055233.mkv +刘依纯-有你陪阮行,http://em.21dtv.com/songs/60084446.mkv +龙飘飘-愿你莫忘记,http://em.21dtv.com/songs/60102057.mkv +张婧-有那么难吗,http://em.21dtv.com/songs/60061846.mkv +佚名-有你明白我,http://em.21dtv.com/songs/60055227.mkv +吴欢-一年零一天,http://em.21dtv.com/songs/60053325.mkv +痞克四-有你来加油,http://em.21dtv.com/songs/60055226.mkv +林玉英-有你块身边(无原唱),http://em.21dtv.com/songs/60055225.mkv +苏慧伦-要你记住我,http://em.21dtv.com/songs/60052379.mkv +DK金大为-有你就足够,http://em.21dtv.com/songs/60129922.mkv +王瀚-有你就足够,http://em.21dtv.com/songs/60127198.mkv +袁姗姗-有你就足够,http://em.21dtv.com/songs/60124460.mkv +王中平+余皓然-有你就足够,http://em.21dtv.com/songs/60110371.mkv +祁隆-有你就足够,http://em.21dtv.com/songs/60107929.mkv +小军-有你就足够,http://em.21dtv.com/songs/60067731.mkv +魏嘉榆+方顺吉-有你就有我,http://em.21dtv.com/songs/60130911.mkv +唐俪-月娘金金看,http://em.21dtv.com/songs/60120418.mkv +李玟-有你就够了,http://em.21dtv.com/songs/60055223.mkv +全体-有你就刚好,http://em.21dtv.com/songs/60132219.mkv +王爱奉-一年级的歌,http://em.21dtv.com/songs/60106117.mkv +雷佳-云南好地方,http://em.21dtv.com/songs/60086197.mkv +大刚-有你更精彩,http://em.21dtv.com/songs/60079288.mkv +佚名-youll never find another love,http://em.21dtv.com/songs/60006586.mkv +阿普萨萨-云南的月亮,http://em.21dtv.com/songs/60122214.mkv +向蕙玲-月娘的眼泪,http://em.21dtv.com/songs/60096213.mkv +伍佰-与你到永久,http://em.21dtv.com/songs/60055586.mkv +金贵晟+NATHALIE SABA-有你的远方,http://em.21dtv.com/songs/60127517.mkv +谢金晶-月娘的心肝,http://em.21dtv.com/songs/60135746.mkv +谢金燕-月娘的心肝,http://em.21dtv.com/songs/60056477.mkv +魏晨+于莎莎-有你的幸福,http://em.21dtv.com/songs/60055220.mkv +许茹芸-有你的天堂,http://em.21dtv.com/songs/60055219.mkv +任和-有你的天晴,http://em.21dtv.com/songs/60079287.mkv +沈小勇-有你的世界,http://em.21dtv.com/songs/60111230.mkv +林志颖-有你的世界,http://em.21dtv.com/songs/60055217.mkv +梁世韵-有你的世界,http://em.21dtv.com/songs/60055216.mkv +张瀛仁+庄振凯-有你的日子,http://em.21dtv.com/songs/60055215.mkv +沈圣哲-有你的青春,http://em.21dtv.com/songs/60125863.mkv +许鹤缤-有你的目光,http://em.21dtv.com/songs/60122119.mkv +庄心妍-有你的快乐,http://em.21dtv.com/songs/60084445.mkv +王若琳-有你的快乐,http://em.21dtv.com/songs/60055214.mkv +林晓培-有你的快乐,http://em.21dtv.com/songs/60055213.mkv +五月天-有你的将来,http://em.21dtv.com/songs/60055212.mkv +苏晴-有你的画面,http://em.21dtv.com/songs/60084444.mkv +李娜-有你的地方,http://em.21dtv.com/songs/60055211.mkv +李雨伦-有你的城市,http://em.21dtv.com/songs/60130444.mkv +詹雅雯-有你的城市,http://em.21dtv.com/songs/60055209.mkv +李明洋-有你的城市,http://em.21dtv.com/songs/60055208.mkv +蒋鑫怡-有你的从前,http://em.21dtv.com/songs/60055210.mkv +向蕙玲-月娘的背影,http://em.21dtv.com/songs/60108372.mkv +高因-有你才有我,http://em.21dtv.com/songs/60067730.mkv +永光-有你才幸福,http://em.21dtv.com/songs/60071457.mkv +阿杜-有你才完整,http://em.21dtv.com/songs/60055207.mkv +李建衡+王冠-有你才完美,http://em.21dtv.com/songs/60055206.mkv +郑伊健-有你便有我,http://em.21dtv.com/songs/60055205.mkv +张国荣+邓志玉-愿能比翼飞,http://em.21dtv.com/songs/60092574.mkv +佚名-月娘半屏圆,http://em.21dtv.com/songs/60056474.mkv +黄乙玲-月娘半屏圆,http://em.21dtv.com/songs/60056473.mkv +豪记大对唱-月娘半屏圆,http://em.21dtv.com/songs/60056472.mkv +佚名-月娘半屏圆(演唱会),http://em.21dtv.com/songs/60056471.mkv +黄璜+陈临安+章民峰+高伯敏+伍京文-要你不平凡,http://em.21dtv.com/songs/60134502.mkv +西域胡杨-有你不会老,http://em.21dtv.com/songs/60123158.mkv +房祖名-一年八个月,http://em.21dtv.com/songs/60053321.mkv +凤娘-月娘啊月娘,http://em.21dtv.com/songs/60123663.mkv +陈洁仪-有你爱过我,http://em.21dtv.com/songs/60055203.mkv +文夏-迎妈祖之夜,http://em.21dtv.com/songs/60079311.mkv +蔡凤凰-迎妈祖之夜,http://em.21dtv.com/songs/60054505.mkv +顾凯-有梦有远方,http://em.21dtv.com/songs/60080531.mkv +吴宪-有没有未来,http://em.21dtv.com/songs/60055183.mkv +蔡明顺-一秒一瞬间,http://em.21dtv.com/songs/60079122.mkv +承利-夜末央热播,http://em.21dtv.com/songs/60126935.mkv +林志炫+伍思凯-有没有朋友,http://em.21dtv.com/songs/60091458.mkv +伍思凯-有梦有朋友,http://em.21dtv.com/songs/60061845.mkv +伍思凯+优客李林-有梦有朋友,http://em.21dtv.com/songs/60055198.mkv +蔡依林-愈慢愈美丽,http://em.21dtv.com/songs/60055878.mkv +蔡依林-愈慢愈美丽(演唱会),http://em.21dtv.com/songs/60055877.mkv +卓玛-伊玛亚吉松,http://em.21dtv.com/songs/60053958.mkv +高登-有没有搞错,http://em.21dtv.com/songs/60068941.mkv +宇桐非-有没有搞错,http://em.21dtv.com/songs/60055178.mkv +彭佳慧-有梦挺快乐,http://em.21dtv.com/songs/60081373.mkv +王俊杰-一暝听江蕙,http://em.21dtv.com/songs/60114674.mkv +方琦-沂蒙山小调,http://em.21dtv.com/songs/60128045.mkv +王蓦骞-沂蒙山小调,http://em.21dtv.com/songs/60115312.mkv +孙佳-沂蒙山小调,http://em.21dtv.com/songs/60086132.mkv +王源-沂蒙山小调(演唱会),http://em.21dtv.com/songs/60079173.mkv +朱之文+于文华-沂蒙山小调,http://em.21dtv.com/songs/60054028.mkv +张也-沂蒙山小调,http://em.21dtv.com/songs/60054027.mkv +于华-沂蒙山小调,http://em.21dtv.com/songs/60054026.mkv +马志锋-月美人更美(演唱会),http://em.21dtv.com/songs/60065435.mkv +于洋+叶俊华-有梦你就来,http://em.21dtv.com/songs/60117536.mkv +吴宗宪-有梦你会红,http://em.21dtv.com/songs/60055196.mkv +阿吉仔-运命莫怨天,http://em.21dtv.com/songs/60056698.mkv +东方快车-有梦没有风,http://em.21dtv.com/songs/60055195.mkv +沙宝亮-一秒零七天,http://em.21dtv.com/songs/60091598.mkv +阿毛-一枚空信封,http://em.21dtv.com/songs/60115481.mkv +动力火车-要么就分开,http://em.21dtv.com/songs/60090758.mkv +胡彦斌+李彩桦-有梦好甜蜜,http://em.21dtv.com/songs/60055193.mkv +佚名-月满繁星夜,http://em.21dtv.com/songs/60056461.mkv +佚名-you mean everything to me,http://em.21dtv.com/songs/60006565.mkv +竹乡哥-圆梦大中华,http://em.21dtv.com/songs/60107102.mkv +庄上荣-圆梦大中华,http://em.21dtv.com/songs/60105004.mkv +谷峰-以梦的鲜艳,http://em.21dtv.com/songs/60092123.mkv +六甲乐团-圆梦的小熊,http://em.21dtv.com/songs/60056039.mkv +阿权-爷们的心声,http://em.21dtv.com/songs/60100549.mkv +周子轩-有梦的兄弟,http://em.21dtv.com/songs/60098195.mkv +梁静茹-一秒的天堂,http://em.21dtv.com/songs/60053307.mkv +庄秋玉-圆梦的时代,http://em.21dtv.com/songs/60126840.mkv +霍建华-要命的迷人,http://em.21dtv.com/songs/60052375.mkv +黄西田+许巧盈-鸭母带鸡子,http://em.21dtv.com/songs/60051871.mkv +李行亮-一秒的记忆,http://em.21dtv.com/songs/60097478.mkv +潘敬祖-一秒都罕有,http://em.21dtv.com/songs/60084363.mkv +M.I.C.男团-要命的烦恼(演唱会),http://em.21dtv.com/songs/60052374.mkv +黄义达-一秒的安慰,http://em.21dtv.com/songs/60053306.mkv +云鸽李霞-一梦成千年,http://em.21dtv.com/songs/60096175.mkv +陈洁丽-一米八十五(演唱会),http://em.21dtv.com/songs/60053303.mkv +沈昊飞-爷们别说累,http://em.21dtv.com/songs/60100263.mkv +吕方-月满抱佳人(演唱会),http://em.21dtv.com/songs/60056460.mkv +李胜哲-有梦不觉寒,http://em.21dtv.com/songs/60125719.mkv +吕薇-月亮最知道,http://em.21dtv.com/songs/60084500.mkv +刘平芳-有量正有福,http://em.21dtv.com/songs/60055173.mkv +凌志辉-眼泪在笑我,http://em.21dtv.com/songs/60079013.mkv +刘若英-一路走下去,http://em.21dtv.com/songs/60115727.mkv +C ALLSTAR-音乐殖民地,http://em.21dtv.com/songs/60079203.mkv +王琳玲-眼泪中的爱,http://em.21dtv.com/songs/60108721.mkv +邓丽君-眼泪中的爱,http://em.21dtv.com/songs/60052087.mkv +梁佳玉-月亮又圆了,http://em.21dtv.com/songs/60114629.mkv +李戈-越冷越想你,http://em.21dtv.com/songs/60062590.mkv +张学友-夜了又破晓,http://em.21dtv.com/songs/60052617.mkv +苏永康-夜了又破晓(演唱会),http://em.21dtv.com/songs/60052616.mkv +胡彦斌-耶利亚女郎,http://em.21dtv.com/songs/60107957.mkv +刘子豪-耶利亚女郎,http://em.21dtv.com/songs/60089671.mkv +童安格-耶利亚女郎,http://em.21dtv.com/songs/60052411.mkv +周笔畅-御龙耀九天,http://em.21dtv.com/songs/60079355.mkv +温瑞鸳-忧虑又何奈(无原唱),http://em.21dtv.com/songs/60054948.mkv +林晓培-越来越会爱(演唱会),http://em.21dtv.com/songs/60056598.mkv +童唱-月亮月光光,http://em.21dtv.com/songs/60056442.mkv +吕方-眼泪有多重,http://em.21dtv.com/songs/60052084.mkv +蔡健雅-越来越不懂,http://em.21dtv.com/songs/60056596.mkv +任贤齐-越来越爱你,http://em.21dtv.com/songs/60056595.mkv +陈冠希-越来越爱你,http://em.21dtv.com/songs/60056594.mkv +麦浚龙-越来越爱你(演唱会),http://em.21dtv.com/songs/60056593.mkv +钟伟-玉兰溪之恋,http://em.21dtv.com/songs/60055785.mkv +翁立友-用泪写缘份,http://em.21dtv.com/songs/60113956.mkv +翁立友-用泪写缘份,http://em.21dtv.com/songs/60110468.mkv +于樱樱-一缕相思情,http://em.21dtv.com/songs/60053301.mkv +谢采妘-一缕相思情,http://em.21dtv.com/songs/60053300.mkv +李茂山-一缕相思情,http://em.21dtv.com/songs/60053299.mkv +张冬玲-一路向前方,http://em.21dtv.com/songs/60119500.mkv +李萧杰-一路向前版,http://em.21dtv.com/songs/60106956.mkv +沈芯羽-一粒小麦子(演唱会),http://em.21dtv.com/songs/60053255.mkv +洪荣宏-夜来香姑娘,http://em.21dtv.com/songs/60052612.mkv +谢孝康-月亮湾之恋,http://em.21dtv.com/songs/60056438.mkv +刘维-月亮湾之恋,http://em.21dtv.com/songs/60056437.mkv +叶全-原谅我一次,http://em.21dtv.com/songs/60056008.mkv +欢子-原谅我一次,http://em.21dtv.com/songs/60056007.mkv +刘德华-原来我有爱,http://em.21dtv.com/songs/60055972.mkv +钟嘉欣-原谅我是我,http://em.21dtv.com/songs/60115461.mkv +钟嘉欣-原谅我是我,http://em.21dtv.com/songs/60079381.mkv +草蜢-原谅我是我,http://em.21dtv.com/songs/60056006.mkv +草蜢-原谅我是我(演唱会),http://em.21dtv.com/songs/60056005.mkv +秋风-眼泪为谁流,http://em.21dtv.com/songs/60079012.mkv +陈柏宇-原谅我怕黑,http://em.21dtv.com/songs/60072766.mkv +钟明秋-眼泪为你流,http://em.21dtv.com/songs/60126323.mkv +陈鹏-眼泪为你流,http://em.21dtv.com/songs/60052080.mkv +陈百强-眼泪为你流,http://em.21dtv.com/songs/60052079.mkv +洪卓立-眼泪为你留,http://em.21dtv.com/songs/60052078.mkv +纪炎炎-原来我可以,http://em.21dtv.com/songs/60055970.mkv +BEYOND-原谅我今天,http://em.21dtv.com/songs/60092140.mkv +丁菲飞-月亮忘记了,http://em.21dtv.com/songs/60056440.mkv +晏雨冰-原谅我好吗,http://em.21dtv.com/songs/60079380.mkv +潘美辰-原谅我改变(演唱会),http://em.21dtv.com/songs/60056001.mkv +金岩-月亮弯儿月,http://em.21dtv.com/songs/60086191.mkv +佚名-原谅我的心,http://em.21dtv.com/songs/60056000.mkv +孙协志-要了我的命,http://em.21dtv.com/songs/60080259.mkv +阿文-原谅我的错,http://em.21dtv.com/songs/60113040.mkv +佚名-原谅我的错(无原唱),http://em.21dtv.com/songs/60055999.mkv +姜冠豪-原谅我的错(无原唱),http://em.21dtv.com/songs/60055998.mkv +陈建廷-原谅我的爱(无原唱),http://em.21dtv.com/songs/60095993.mkv +SARA-原来我爱你,http://em.21dtv.com/songs/60055968.mkv +LEANN RIMES-you light up my life,http://em.21dtv.com/songs/60006553.mkv +何静-月亮偷着哭,http://em.21dtv.com/songs/60056434.mkv +洪辰-眼泪太年轻(演唱会),http://em.21dtv.com/songs/60068898.mkv +佚名-youve lost that loving feeling,http://em.21dtv.com/songs/60006629.mkv +BARRY MANN-youve lost that lovinfeeling,http://em.21dtv.com/songs/60006628.mkv +方琦-一路上有你,http://em.21dtv.com/songs/60124001.mkv +黄致列-一路上有你,http://em.21dtv.com/songs/60119074.mkv +肖亮-一路上有你,http://em.21dtv.com/songs/60111355.mkv +张碧晨+魏雪漫-一路上有你,http://em.21dtv.com/songs/60104143.mkv +群星-一路上有你,http://em.21dtv.com/songs/60094633.mkv +八强学员-一路上有你,http://em.21dtv.com/songs/60081765.mkv +张学友-一路上有你,http://em.21dtv.com/songs/60053286.mkv +张学友-一路上有你(演唱会),http://em.21dtv.com/songs/60053285.mkv +华语群星-一路上有爱,http://em.21dtv.com/songs/60107556.mkv +张磊-眼泪算什么,http://em.21dtv.com/songs/60086083.mkv +降央卓玛-月亮升起来,http://em.21dtv.com/songs/60095358.mkv +李直-月亮升起来,http://em.21dtv.com/songs/60072771.mkv +阿鲁阿卓-月亮升起来,http://em.21dtv.com/songs/60056430.mkv +阿玻-月亮升起来,http://em.21dtv.com/songs/60056429.mkv +蓝雨-眼泪是魔鬼,http://em.21dtv.com/songs/60052076.mkv +SNH48-眼泪深呼吸(演),http://em.21dtv.com/songs/60099035.mkv +林俊杰-御龙三国志,http://em.21dtv.com/songs/60072760.mkv +邓力+曾凡苡-椰林人之歌,http://em.21dtv.com/songs/60128447.mkv +吴克群-音乐让我说,http://em.21dtv.com/songs/60054326.mkv +张宇-月亮惹的祸,http://em.21dtv.com/songs/60096069.mkv +吴泓君-月亮惹的祸,http://em.21dtv.com/songs/60056424.mkv +李翊君-月亮惹的祸,http://em.21dtv.com/songs/60056423.mkv +佚名-月亮惹的祸(慢四),http://em.21dtv.com/songs/60056422.mkv +容中尔甲-月亮牵着心,http://em.21dtv.com/songs/60056418.mkv +M3-音乐fun起来,http://em.21dtv.com/songs/60054317.mkv +王玲-月亮请安排(无原唱),http://em.21dtv.com/songs/60056420.mkv +李玟-一路陪着我,http://em.21dtv.com/songs/60091331.mkv +魏海珊-一领蓬线衫,http://em.21dtv.com/songs/60053271.mkv +赵洁莹-眼泪碰石头,http://em.21dtv.com/songs/60101183.mkv +刘惜君-御龙品青梅,http://em.21dtv.com/songs/60072759.mkv +方力申-娱乐你朋友,http://em.21dtv.com/songs/60092753.mkv +丁当-原来你都在,http://em.21dtv.com/songs/60115655.mkv +谭晶+王宏伟-要拉你的手,http://em.21dtv.com/songs/60079047.mkv +九天-依恋你的唇,http://em.21dtv.com/songs/60067713.mkv +何静-有了你的爱,http://em.21dtv.com/songs/60089616.mkv +本兮-一厘米之外,http://em.21dtv.com/songs/60080431.mkv +任贤齐-眼泪没有用(演唱会),http://em.21dtv.com/songs/60052075.mkv +林志炫-御龙铭千古,http://em.21dtv.com/songs/60133876.mkv +林志炫-御龙铭千古,http://em.21dtv.com/songs/60084468.mkv +林志炫-御龙铭千古(演唱会),http://em.21dtv.com/songs/60079354.mkv +莫文蔚-原来没可能,http://em.21dtv.com/songs/60055941.mkv +慢山乐队-音乐旅行家,http://em.21dtv.com/songs/60125592.mkv +陈明喜-1064℃,http://em.21dtv.com/songs/60129740.mkv +SHINE-1000年、ずっとそばにいて…,http://em.21dtv.com/songs/60072849.mkv +高达-娱乐零零狗,http://em.21dtv.com/songs/60055538.mkv +RANDY MONTANA-1000 faces,http://em.21dtv.com/songs/60072848.mkv +林凡-眼泪流回去,http://em.21dtv.com/songs/60052074.mkv +梁静茹-一路两个人,http://em.21dtv.com/songs/60070144.mkv +汪苏泷-御龙镜中隐,http://em.21dtv.com/songs/60079353.mkv +佚名-眼泪甲雨水(无原唱),http://em.21dtv.com/songs/60052072.mkv +梁咏琪-缘了就是完,http://em.21dtv.com/songs/60092895.mkv +陈慧娴-缘了就是完,http://em.21dtv.com/songs/60056103.mkv +谭耀文-原来就是你,http://em.21dtv.com/songs/60093219.mkv +林忆莲-有泪尽情流,http://em.21dtv.com/songs/60055169.mkv +CUTTING EDGE-your love is my oxygen,http://em.21dtv.com/songs/60066763.mkv +RITA COOLIDGE-your love is lifting me(演唱会),http://em.21dtv.com/songs/60006598.mkv +SIMPLE PLAN-your love is a lie,http://em.21dtv.com/songs/60006596.mkv +刘惜君-御龙华胥引,http://em.21dtv.com/songs/60127769.mkv +易秒英-月亮花儿开,http://em.21dtv.com/songs/60056412.mkv +宋祖英-月亮花儿开,http://em.21dtv.com/songs/60056411.mkv +凤凰传奇-御龙归字谣,http://em.21dtv.com/songs/60066549.mkv +伊能静-月亮儿弯弯,http://em.21dtv.com/songs/60090576.mkv +单色凌-眼泪都在笑,http://em.21dtv.com/songs/60079008.mkv +风语-月亮的影子,http://em.21dtv.com/songs/60133102.mkv +才旺多吉-月亮的影子,http://em.21dtv.com/songs/60056403.mkv +西单女孩-月亮的眼泪,http://em.21dtv.com/songs/60063135.mkv +甜美真-月亮的眼睛,http://em.21dtv.com/songs/60065431.mkv +王珏-陨落的缘份(演,http://em.21dtv.com/songs/60056688.mkv +杨洪基-月亮的心愿,http://em.21dtv.com/songs/60056402.mkv +高春义+刘靖暄-眼泪的幸福,http://em.21dtv.com/songs/60101005.mkv +唐香凝-夜郎的微笑,http://em.21dtv.com/songs/60125327.mkv +阿茹娜-月亮对我说,http://em.21dtv.com/songs/60056404.mkv +洪煜祺+SHELLY佳-余留的温柔,http://em.21dtv.com/songs/60079322.mkv +ENERGY-眼泪的味道,http://em.21dtv.com/songs/60052070.mkv +谭咏麟-一路到天涯,http://em.21dtv.com/songs/60053274.mkv +单九希-眼泪的透明,http://em.21dtv.com/songs/60120387.mkv +蔡健雅-异类的同类,http://em.21dtv.com/songs/60117197.mkv +郭映-眼泪的体会,http://em.21dtv.com/songs/60088789.mkv +陈慧娴-月亮的随想(演唱会),http://em.21dtv.com/songs/60056401.mkv +李研心-月亮的思念,http://em.21dtv.com/songs/60105987.mkv +李行亮-原来都是梦,http://em.21dtv.com/songs/60127052.mkv +瞿江锋-眼泪的伤悲,http://em.21dtv.com/songs/60107926.mkv +新宝岛康乐队-有乐町人生(演唱会)(无原唱),http://em.21dtv.com/songs/60055162.mkv +韩光-月老的情话,http://em.21dtv.com/songs/60094344.mkv +龚月-月亮的女儿,http://em.21dtv.com/songs/60084498.mkv +谢安琪-眼泪的名字,http://em.21dtv.com/songs/60086082.mkv +苏晴-音乐的力量,http://em.21dtv.com/songs/60084402.mkv +刘冲+冲击力乐队-压力的尽头,http://em.21dtv.com/songs/60120354.mkv +史宸铭-月老的红线,http://em.21dtv.com/songs/60128866.mkv +梁洛施-眼泪的好戏,http://em.21dtv.com/songs/60052069.mkv +佚名-有力的关怀,http://em.21dtv.com/songs/60055171.mkv +张冬玲-一路的歌唱,http://em.21dtv.com/songs/60061818.mkv +侯晓松-音乐的代价,http://em.21dtv.com/songs/60084401.mkv +乔海清-眼泪的错觉,http://em.21dtv.com/songs/60120288.mkv +王露凝-眼泪的错觉,http://em.21dtv.com/songs/60063026.mkv +张冬玲-一路唱情歌,http://em.21dtv.com/songs/60126861.mkv +陈百祥-娱乐插班生,http://em.21dtv.com/songs/60055536.mkv +乌兰图雅-雅鲁藏布江,http://em.21dtv.com/songs/60066510.mkv +慕容晓晓-眼泪不值钱,http://em.21dtv.com/songs/60061798.mkv +庄学忠-月亮不下山,http://em.21dtv.com/songs/60056378.mkv +谭咏麟-有泪不轻流(演唱会),http://em.21dtv.com/songs/60055168.mkv +泳儿-眼泪不快乐,http://em.21dtv.com/songs/60065304.mkv +安东-一路北风吹,http://em.21dtv.com/songs/60053273.mkv +IVY-眼泪啊再见,http://em.21dtv.com/songs/60052065.mkv +阿香-月亮啊月亮,http://em.21dtv.com/songs/60103661.mkv +李贞贤-月亮啊月亮,http://em.21dtv.com/songs/60056377.mkv +四个朋友-越看越尬意,http://em.21dtv.com/songs/60113364.mkv +锦绣二重唱-一开始相恋,http://em.21dtv.com/songs/60053218.mkv +付辛博-一开始就错,http://em.21dtv.com/songs/60079111.mkv +黎明-有空请爱我(演唱会),http://em.21dtv.com/songs/60055160.mkv +佚名-you keep me hanging on,http://em.21dtv.com/songs/60006550.mkv +姜育恒-有空来坐坐,http://em.21dtv.com/songs/60055159.mkv +亚东-夜空里的星-,http://em.21dtv.com/songs/60052594.mkv +亚东-夜空里的星,http://em.21dtv.com/songs/60052593.mkv +张优-夜空的星点,http://em.21dtv.com/songs/60116774.mkv +言承旭-愉快的民谣,http://em.21dtv.com/songs/60055560.mkv +许冠杰-愉快的旅程,http://em.21dtv.com/songs/60055559.mkv +古巨基-夜空的精灵,http://em.21dtv.com/songs/60052591.mkv +陈明-远空的呼唤,http://em.21dtv.com/songs/60056153.mkv +果味 VC-夜空多灿烂,http://em.21dtv.com/songs/60052592.mkv +钟嘉欣-一颗不变心,http://em.21dtv.com/songs/60116320.mkv +张学友-一颗不变心(演唱会),http://em.21dtv.com/songs/60053220.mkv +周程成-又见浊月光,http://em.21dtv.com/songs/60055454.mkv +郑少秋-一剑镇神州,http://em.21dtv.com/songs/60053181.mkv +侯湘婷-眼睛眨三下,http://em.21dtv.com/songs/60052055.mkv +草原兄妹-又见艳阳天,http://em.21dtv.com/songs/60070189.mkv +黄芳-又见烟雨楼,http://em.21dtv.com/songs/60055452.mkv +车镜子-又见烟雨楼,http://em.21dtv.com/songs/60055451.mkv +刘紫玲-又见雨夜花,http://em.21dtv.com/songs/60055453.mkv +李明明+安羽-又见杨梅红,http://em.21dtv.com/songs/60124078.mkv +许志安-一家一减你,http://em.21dtv.com/songs/60053158.mkv +邓健泓+许志安-一家一减你(演唱会),http://em.21dtv.com/songs/60053157.mkv +许茹芸-遇见一个人,http://em.21dtv.com/songs/60088652.mkv +金嗓子-崖介月光光,http://em.21dtv.com/songs/60113021.mkv +双星-迎接新一年,http://em.21dtv.com/songs/60079221.mkv +叶民志-迎接新世纪,http://em.21dtv.com/songs/60079282.mkv +郑锦昌+刘君儿-迎接新美景,http://em.21dtv.com/songs/60093333.mkv +黎明-眼睛想旅行,http://em.21dtv.com/songs/60052054.mkv +杜文泽-眼睛想旅行,http://em.21dtv.com/songs/60052053.mkv +黎明-眼睛想旅行(演唱会),http://em.21dtv.com/songs/60052052.mkv +张德兰-愿君心记取,http://em.21dtv.com/songs/60056206.mkv +张德兰-愿君心记取(演唱会),http://em.21dtv.com/songs/60056205.mkv +张柏芝-眼睛喜欢你,http://em.21dtv.com/songs/60052051.mkv +郭静-遇见新的我,http://em.21dtv.com/songs/60134343.mkv +戴玉强-又见西柏坡,http://em.21dtv.com/songs/60065405.mkv +佚名-又见西柏坡,http://em.21dtv.com/songs/60055449.mkv +沈建豪-已经无置彼,http://em.21dtv.com/songs/60113787.mkv +吴俊宏-一剑望天涨,http://em.21dtv.com/songs/60101289.mkv +吴俊宏-一剑望天涯,http://em.21dtv.com/songs/60101290.mkv +沈芳如-已经无所谓(无原唱),http://em.21dtv.com/songs/60054075.mkv +詹曼铃-一句我爱你,http://em.21dtv.com/songs/60053211.mkv +吕凌-一句我爱你,http://em.21dtv.com/songs/60053210.mkv +小曲儿-弈剑听雨阁,http://em.21dtv.com/songs/60084671.mkv +阿黑-一脚踏两船(无原唱),http://em.21dtv.com/songs/60053186.mkv +李萧杰-又见桃花运,http://em.21dtv.com/songs/60106957.mkv +爱朵女孩-又见桃花开,http://em.21dtv.com/songs/60072749.mkv +汤灿-又见桃花开,http://em.21dtv.com/songs/60055448.mkv +卓依婷-又见桃花红,http://em.21dtv.com/songs/60087452.mkv +隆熙俊-又见三月天,http://em.21dtv.com/songs/60055446.mkv +彭羚-眼睛湿湿的,http://em.21dtv.com/songs/60052050.mkv +周鼎棋-又见山里红,http://em.21dtv.com/songs/60130200.mkv +枫舞+王馨-又见山里红,http://em.21dtv.com/songs/60102400.mkv +祁隆-又见山里红,http://em.21dtv.com/songs/60079308.mkv +余天-又见圣诞红(无原唱),http://em.21dtv.com/songs/60055447.mkv +沈志仲-缘尽是背叛,http://em.21dtv.com/songs/60108679.mkv +佚名-夜静人敲门,http://em.21dtv.com/songs/60052582.mkv +秀兰玛雅-缘尽情未了,http://em.21dtv.com/songs/60056099.mkv +王峰-又见秋菊黄,http://em.21dtv.com/songs/60132726.mkv +佚名-一脚破皮箱,http://em.21dtv.com/songs/60053185.mkv +邓丽君-一见你就笑,http://em.21dtv.com/songs/60053169.mkv +汪明荃-一见你就笑(演唱会),http://em.21dtv.com/songs/60053168.mkv +胡美仪-一见你就笑(演唱会),http://em.21dtv.com/songs/60053167.mkv +插班生-眼镜蒙蒙的,http://em.21dtv.com/songs/60084319.mkv +插班生-眼镜朦朦的,http://em.21dtv.com/songs/60080091.mkv +卓依婷-又见茉莉花,http://em.21dtv.com/songs/60055444.mkv +周艳泓-又见茉莉花,http://em.21dtv.com/songs/60055443.mkv +张筱雨-又见茉莉花,http://em.21dtv.com/songs/60055442.mkv +末裔乐队-又见茉莉花,http://em.21dtv.com/songs/60055441.mkv +臧天朔-又见满江红,http://em.21dtv.com/songs/60088507.mkv +费玉清-又见柳叶青,http://em.21dtv.com/songs/60055440.mkv +高安+马睿菈-又见老情人,http://em.21dtv.com/songs/60071461.mkv +张秀卿-已经拢乎汝,http://em.21dtv.com/songs/60054074.mkv +张芯瑜-雨季开始了,http://em.21dtv.com/songs/60055668.mkv +胡琳-遇见旧情人,http://em.21dtv.com/songs/60126085.mkv +胡琳-遇见旧情人,http://em.21dtv.com/songs/60079356.mkv +黄红英-遇见旧情人,http://em.21dtv.com/songs/60055847.mkv +邓丽君-遇见旧情人,http://em.21dtv.com/songs/60055846.mkv +伍佰-一九九玫瑰(演唱会),http://em.21dtv.com/songs/60072707.mkv +许冠杰-有酒今朝醉,http://em.21dtv.com/songs/60055155.mkv +谢安琪-艺妓回忆录,http://em.21dtv.com/songs/60093178.mkv +刘惜君-羊角花又开,http://em.21dtv.com/songs/60087404.mkv +大来-一句好兄弟,http://em.21dtv.com/songs/60113376.mkv +自由派对-眼睛会说话,http://em.21dtv.com/songs/60079006.mkv +潘赢+杨子一-眼睛会撒谎,http://em.21dtv.com/songs/60065303.mkv +白冰冰+七郎-饮酒哈烧茶,http://em.21dtv.com/songs/60054368.mkv +北原山猫-饮酒欢乐歌,http://em.21dtv.com/songs/60054369.mkv +卓依婷-愿嫁汉家郎,http://em.21dtv.com/songs/60056203.mkv +韩宝仪-愿嫁汉家郎,http://em.21dtv.com/songs/60056202.mkv +蔡琴-愿嫁汉家郎,http://em.21dtv.com/songs/60056201.mkv +蔡琴-愿嫁汉家郎(演唱会),http://em.21dtv.com/songs/60056200.mkv +雨露-又见洪湖水,http://em.21dtv.com/songs/60130870.mkv +容中尔甲-又见高原红,http://em.21dtv.com/songs/60106786.mkv +Suby-又见故乡云(现场版),http://em.21dtv.com/songs/60103040.mkv +SUBY-又见故乡云(演唱会),http://em.21dtv.com/songs/60084453.mkv +央金次卓-又见格桑花,http://em.21dtv.com/songs/60063240.mkv +云菲菲+乐伦-又见枫叶红,http://em.21dtv.com/songs/60108284.mkv +阿良-又见枫叶红,http://em.21dtv.com/songs/60105459.mkv +中央乐团-游击队之歌,http://em.21dtv.com/songs/60089106.mkv +佚名-游击队之歌,http://em.21dtv.com/songs/60055001.mkv +一东-妖精的尾巴,http://em.21dtv.com/songs/60096163.mkv +张芯-一季的秋天,http://em.21dtv.com/songs/60053145.mkv +络迈-远嫁的农妹,http://em.21dtv.com/songs/60124840.mkv +陈升-拥挤的乐园,http://em.21dtv.com/songs/60054596.mkv +刚辉-永久的记忆,http://em.21dtv.com/songs/60054648.mkv +胡艾莲-永久的回忆,http://em.21dtv.com/songs/60112902.mkv +赵薇-雨季的故事,http://em.21dtv.com/songs/60055666.mkv +齐亚男-遇见对的人,http://em.21dtv.com/songs/60122315.mkv +唐笑-遇见对的人,http://em.21dtv.com/songs/60080721.mkv +许诺-遇见对的人,http://em.21dtv.com/songs/60067744.mkv +佚名-杨基杜德尔(恰恰),http://em.21dtv.com/songs/60052206.mkv +佚名-杨基嘟得儿,http://em.21dtv.com/songs/60052205.mkv +孙莞-沿街的城堡,http://em.21dtv.com/songs/60106773.mkv +叶幼琪-吟尽楚江秋(戏曲),http://em.21dtv.com/songs/60092417.mkv +黎瑞恩-雨季不再来,http://em.21dtv.com/songs/60055665.mkv +黎瑞恩-雨季不再来(演唱会),http://em.21dtv.com/songs/60055664.mkv +张彬-有家不能归,http://em.21dtv.com/songs/60119517.mkv +胡大亮+王二妮-又见北风吹,http://em.21dtv.com/songs/60114729.mkv +李嘉-已经不必要,http://em.21dtv.com/songs/60054071.mkv +黄西田+樱桃姐妹-运将啊运将,http://em.21dtv.com/songs/60056697.mkv +宋祖英-拥军爱民歌(军旅),http://em.21dtv.com/songs/60090956.mkv +宋祖英-拥军爱民歌,http://em.21dtv.com/songs/60089246.mkv +谭咏麟-缘尽爱更痴,http://em.21dtv.com/songs/60056097.mkv +方婉真-运河追情夜,http://em.21dtv.com/songs/60056696.mkv +詹雅雯-约会治明载,http://em.21dtv.com/songs/60056266.mkv +MIHO-诱惑怎么办,http://em.21dtv.com/songs/60099684.mkv +周菁-以后再坚强,http://em.21dtv.com/songs/60104887.mkv +李佳薇-也好也不好,http://em.21dtv.com/songs/60100113.mkv +陈小汉+李敏华-幽会小周后(戏曲),http://em.21dtv.com/songs/60093420.mkv +郑锦昌-愿化惜花蜂,http://em.21dtv.com/songs/60056199.mkv +任玲-永恒小步舞,http://em.21dtv.com/songs/60071447.mkv +左小祖咒+宝罗-野合万事兴,http://em.21dtv.com/songs/60067690.mkv +阿吉仔-有话无块讲,http://em.21dtv.com/songs/60055147.mkv +张卫健-诱惑我的心,http://em.21dtv.com/songs/60055491.mkv +郭凤女-幽恨碎银筝,http://em.21dtv.com/songs/60093342.mkv +黑龙+李芳蕾-以后是我们,http://em.21dtv.com/songs/60086136.mkv +圣雨-演坏了自己,http://em.21dtv.com/songs/60072685.mkv +林嘉欣+郑中基-约会林嘉欣,http://em.21dtv.com/songs/60056265.mkv +叶胜钦-樱花节人生,http://em.21dtv.com/songs/60067718.mkv +邓婉玲-耶和华是爱,http://em.21dtv.com/songs/60134284.mkv +浩角翔起-咽喉共之歌,http://em.21dtv.com/songs/60067686.mkv +泥鳅Niko-樱花纷飞时,http://em.21dtv.com/songs/60133927.mkv +许茹芸-永恒的转眼,http://em.21dtv.com/songs/60054645.mkv +F4-永恒的真爱,http://em.21dtv.com/songs/60054644.mkv +张栋梁-遗憾的艺术,http://em.21dtv.com/songs/60117730.mkv +许永生-诱惑的艺术,http://em.21dtv.com/songs/60079320.mkv +本兮-樱花的眼泪,http://em.21dtv.com/songs/60105957.mkv +ALAN-樱花的眼泪,http://em.21dtv.com/songs/60054464.mkv +易思葭-以后的以后,http://em.21dtv.com/songs/60129178.mkv +庄心妍-以后的以后[DJ],http://em.21dtv.com/songs/60101340.mkv +蔡淳佳-约好的以后,http://em.21dtv.com/songs/60095222.mkv +纪敏佳-永恒的烟火,http://em.21dtv.com/songs/60088407.mkv +庄心妍-以后的以后,http://em.21dtv.com/songs/60084389.mkv +杨钰莹-永恒的诱惑,http://em.21dtv.com/songs/60054643.mkv +毛阿敏-永恒的诱惑,http://em.21dtv.com/songs/60054642.mkv +庞龙-永恒的信念(演唱会),http://em.21dtv.com/songs/60054641.mkv +张燕+胡量-永恒的旋律,http://em.21dtv.com/songs/60071446.mkv +张燕+胡量-永恒的旋律(演唱会),http://em.21dtv.com/songs/60070176.mkv +阿楠-以后的我们,http://em.21dtv.com/songs/60118129.mkv +刘瑞琦-遗憾的温度,http://em.21dtv.com/songs/60125213.mkv +高峰-雨后的天空,http://em.21dtv.com/songs/60089000.mkv +常石磊-永恒的童话(演唱会),http://em.21dtv.com/songs/60079236.mkv +格桑梅朵-永恒的思念,http://em.21dtv.com/songs/60054640.mkv +沈芳如-遗憾的情梦,http://em.21dtv.com/songs/60054049.mkv +零点乐队-永恒的起点,http://em.21dtv.com/songs/60054639.mkv +周亮-永恒的默契,http://em.21dtv.com/songs/60054638.mkv +窦智孔-樱花的秘密,http://em.21dtv.com/songs/60054463.mkv +陆瑶-遗憾的美丽,http://em.21dtv.com/songs/60054048.mkv +严爵-永恒的快乐,http://em.21dtv.com/songs/60115663.mkv +德德玛-永恒的眷恋,http://em.21dtv.com/songs/60121711.mkv +F4-烟火的季节,http://em.21dtv.com/songs/60051974.mkv +易展-永恒的精彩,http://em.21dtv.com/songs/60098412.mkv +灵心-永恒的回忆,http://em.21dtv.com/songs/60112842.mkv +余天-永恒的回忆,http://em.21dtv.com/songs/60054637.mkv +马天宇-烟火的光芒,http://em.21dtv.com/songs/60051973.mkv +游子-永恒的大唐,http://em.21dtv.com/songs/60113823.mkv +刘玮-永恒的彩霞,http://em.21dtv.com/songs/60054635.mkv +郭新龙-永恒的承诺,http://em.21dtv.com/songs/60065380.mkv +张也-永恒的承诺,http://em.21dtv.com/songs/60054636.mkv +谢金晶-雨后的彩虹,http://em.21dtv.com/songs/60105378.mkv +郑源-雨后的彩虹,http://em.21dtv.com/songs/60079339.mkv +燕羽-永恒的爱恋,http://em.21dtv.com/songs/60099389.mkv +晓依-永恒的爱恋,http://em.21dtv.com/songs/60067726.mkv +李双松-永恒的爱恋,http://em.21dtv.com/songs/60054634.mkv +张禹凌-萤火虫女孩,http://em.21dtv.com/songs/60054525.mkv +彭博-萤火虫长大,http://em.21dtv.com/songs/60131425.mkv +刘珺儿-野花不要采,http://em.21dtv.com/songs/60052473.mkv +蔡凤凰+杨鸣-运河悲喜曲,http://em.21dtv.com/songs/60056695.mkv +邓健泓-一个钟之后,http://em.21dtv.com/songs/60053127.mkv +姚越-阳光在身边,http://em.21dtv.com/songs/60079026.mkv +姚越+金志文-阳光在身边,http://em.21dtv.com/songs/60072687.mkv +王力宏-摇滚怎么了,http://em.21dtv.com/songs/60052274.mkv +汪明荃-勇敢中国人(演唱会),http://em.21dtv.com/songs/60054849.mkv +冷漠-月光族的泪,http://em.21dtv.com/songs/60056369.mkv +林俊杰-一个又一个,http://em.21dtv.com/songs/60053124.mkv +林俊杰-一个又一个(演唱会),http://em.21dtv.com/songs/60053123.mkv +丁维伟-阳光音乐生,http://em.21dtv.com/songs/60087032.mkv +郑智化-有关于承诺(无原唱),http://em.21dtv.com/songs/60055136.mkv +黄英-远歌,http://em.21dtv.com/songs/60117417.mkv +乌兰托娅-月光下毡房,http://em.21dtv.com/songs/60071482.mkv +余天-月光小夜曲,http://em.21dtv.com/songs/60056367.mkv +任真-月光小夜曲,http://em.21dtv.com/songs/60056366.mkv +李明洋-月光小夜曲,http://em.21dtv.com/songs/60056365.mkv +李茂山-月光小夜曲,http://em.21dtv.com/songs/60056364.mkv +韩宝仪-月光小夜曲,http://em.21dtv.com/songs/60056363.mkv +蔡琴-月光小夜曲,http://em.21dtv.com/songs/60056362.mkv +王菲-一个小心愿,http://em.21dtv.com/songs/60091733.mkv +邓丽君-一个小心愿,http://em.21dtv.com/songs/60053118.mkv +SARA-月光下想你,http://em.21dtv.com/songs/60070201.mkv +钟舒漫-阳光小小姐,http://em.21dtv.com/songs/60052191.mkv +韩宝仪-一个小微笑,http://em.21dtv.com/songs/60053117.mkv +余天龙+谢莉婷-月光相思情,http://em.21dtv.com/songs/60080104.mkv +青山-月光像情网,http://em.21dtv.com/songs/60056361.mkv +张秀卿-又搁想起你,http://em.21dtv.com/songs/60096072.mkv +汪明荃-月光像姐儿(演唱会),http://em.21dtv.com/songs/60056360.mkv +YHBOYS-阳光小鬼头,http://em.21dtv.com/songs/60134826.mkv +米亮-阳光下飞行,http://em.21dtv.com/songs/60052190.mkv +李茂山-阳光下的伞,http://em.21dtv.com/songs/60052187.mkv +李勇森-月光下等你,http://em.21dtv.com/songs/60128087.mkv +玉面天使-月光下等你,http://em.21dtv.com/songs/60081649.mkv +谢小雨-月光下的泪,http://em.21dtv.com/songs/60105372.mkv +黄绮珊-月光下的海,http://em.21dtv.com/songs/60079410.mkv +黄小蕾-月光我的爱,http://em.21dtv.com/songs/60089042.mkv +佚名-又阁天黑黑,http://em.21dtv.com/songs/60055427.mkv +余天+王瑞霞-月光透归暝,http://em.21dtv.com/songs/60134889.mkv +郭燕-一公升眼泪,http://em.21dtv.com/songs/60053133.mkv +阿佳组合-月光上行走,http://em.21dtv.com/songs/60079408.mkv +刘珺儿-一个伤心人,http://em.21dtv.com/songs/60053101.mkv +梅花三姐妹-勇敢三姐妹,http://em.21dtv.com/songs/60054842.mkv +周华健-有故事的人,http://em.21dtv.com/songs/60055133.mkv +郑欣宜-有故事的人,http://em.21dtv.com/songs/60055132.mkv +孟庭苇+夏炎-勇敢说出爱,http://em.21dtv.com/songs/60087669.mkv +晶迪-一个人远走,http://em.21dtv.com/songs/60084359.mkv +堂娜-一个人演戏,http://em.21dtv.com/songs/60053090.mkv +同恩-一个人遗憾,http://em.21dtv.com/songs/60053093.mkv +卓文萱-一个人勇敢,http://em.21dtv.com/songs/60053094.mkv +黄龄-一个人想你,http://em.21dtv.com/songs/60129854.mkv +黄龄-一个人想你,http://em.21dtv.com/songs/60053089.mkv +张宇-一个人万岁,http://em.21dtv.com/songs/60053088.mkv +熊汝霖+黄夕倍+林秀憬+大春子-一个人跳舞,http://em.21dtv.com/songs/60084357.mkv +张目+周诗颖-一个人跳舞,http://em.21dtv.com/songs/60081482.mkv +张惠妹-一个人跳舞,http://em.21dtv.com/songs/60053086.mkv +辛晓琪-一个人甜蜜,http://em.21dtv.com/songs/60053085.mkv +薛凯琪-一个人失忆,http://em.21dtv.com/songs/60053079.mkv +家家+晓晓文-一个人死亡,http://em.21dtv.com/songs/60070139.mkv +姚懿娜-一个人生活,http://em.21dtv.com/songs/60128947.mkv +一绫-一个人生活,http://em.21dtv.com/songs/60086112.mkv +温岚-一个人生活,http://em.21dtv.com/songs/60079103.mkv +吴莫愁-一个人生活,http://em.21dtv.com/songs/60079102.mkv +艳阳天-一个人生活,http://em.21dtv.com/songs/60070138.mkv +紫龙-一个人生活,http://em.21dtv.com/songs/60053078.mkv +林凡-一个人生活,http://em.21dtv.com/songs/60053077.mkv +范文芳-一个人生活,http://em.21dtv.com/songs/60053076.mkv +何玲玲-一个人私奔,http://em.21dtv.com/songs/60072705.mkv +王识贤-一个人孃孃,http://em.21dtv.com/songs/60077549.mkv +王识贤-一个人娘娘,http://em.21dtv.com/songs/60053071.mkv +张丽娅-一个人难过,http://em.21dtv.com/songs/60133644.mkv +音萌萌-一个人难过,http://em.21dtv.com/songs/60133083.mkv +司文-一个人买醉,http://em.21dtv.com/songs/60053070.mkv +崔子格-一个人冒险,http://em.21dtv.com/songs/60080106.mkv +张惠雅-一个人旅行,http://em.21dtv.com/songs/60118559.mkv +朱宇-一个人旅行,http://em.21dtv.com/songs/60087045.mkv +袁泉-一个人旅行,http://em.21dtv.com/songs/60053069.mkv +易欣-一个人旅行,http://em.21dtv.com/songs/60053068.mkv +佚名-有寡人离了,http://em.21dtv.com/songs/60055134.mkv +张宇-一个人流泪,http://em.21dtv.com/songs/60053066.mkv +熊天平-一个人流浪,http://em.21dtv.com/songs/60053065.mkv +飞轮海-一个人流浪,http://em.21dtv.com/songs/60053064.mkv +徐亚飞-一个人旅程,http://em.21dtv.com/songs/60053067.mkv +覃桢-一个人恋爱,http://em.21dtv.com/songs/60103564.mkv +郑伊健-一个人恋爱,http://em.21dtv.com/songs/60053062.mkv +孙江枫-一个人哭泣,http://em.21dtv.com/songs/60053061.mkv +蔡琴-一个人卡拉OK,http://em.21dtv.com/songs/60088603.mkv +糖兄妹-一个人咖啡,http://em.21dtv.com/songs/60053057.mkv +邬祯琳-一个人寂寞,http://em.21dtv.com/songs/60084356.mkv +刘力扬-一个人就好,http://em.21dtv.com/songs/60053056.mkv +齐萧-一个人喝醉,http://em.21dtv.com/songs/60066518.mkv +卢凯彤-一个人回家,http://em.21dtv.com/songs/60065330.mkv +吴奇隆-一个人回家,http://em.21dtv.com/songs/60053055.mkv +巩贺-一个人回家,http://em.21dtv.com/songs/60053054.mkv +罗正委-一个人飞翔,http://em.21dtv.com/songs/60124348.mkv +刘冲-一个人飞翔,http://em.21dtv.com/songs/60053049.mkv +小乔-一个人的我,http://em.21dtv.com/songs/60104064.mkv +那英-一个人的事,http://em.21dtv.com/songs/60053034.mkv +麦子-一个人的路,http://em.21dtv.com/songs/60128625.mkv +熊七梅-一个人的路,http://em.21dtv.com/songs/60121895.mkv +张志林-一个人的苦,http://em.21dtv.com/songs/60053014.mkv +谢金燕-一个人的ktv,http://em.21dtv.com/songs/60053001.mkv +欢子-一个人的街,http://em.21dtv.com/songs/60071415.mkv +张惠妹+阿密特-一个人对话,http://em.21dtv.com/songs/60061815.mkv +魏语诺-一个人的歌,http://em.21dtv.com/songs/60116400.mkv +徐浩-一个人的歌,http://em.21dtv.com/songs/60115949.mkv +Qsmile组合-一个人等待,http://em.21dtv.com/songs/60121301.mkv +刘超华-一个人的等,http://em.21dtv.com/songs/60053002.mkv +肖亮-一个人的错,http://em.21dtv.com/songs/60080305.mkv +许慧欣-一个人唱歌,http://em.21dtv.com/songs/60072703.mkv +[Group] +groupName=十六万歌曲MV等 - 81 +侯国栋-一个人波沙,http://em.21dtv.com/songs/60079096.mkv +轻日记-一个人暧昧,http://em.21dtv.com/songs/60079095.mkv +周华健-有过去的人(演唱会),http://em.21dtv.com/songs/60055142.mkv +沈小恒-已过期的歌,http://em.21dtv.com/songs/60111231.mkv +猎人-阳光七彩梦,http://em.21dtv.com/songs/60114673.mkv +兰均-摇个女朋友,http://em.21dtv.com/songs/60117561.mkv +万阳-又过了一年,http://em.21dtv.com/songs/60089582.mkv +周华安-又搁块想你,http://em.21dtv.com/songs/60117618.mkv +邰正宵-月光海洋梦,http://em.21dtv.com/songs/60056335.mkv +王雪晶-阳光和小雨,http://em.21dtv.com/songs/60089423.mkv +吴宗宪-阳光和小雨(无原唱),http://em.21dtv.com/songs/60052176.mkv +王蓉-摇滚坏姐姐,http://em.21dtv.com/songs/60103474.mkv +林志炫-阳光赶快来(演唱会)(无原唱),http://em.21dtv.com/songs/60052174.mkv +柯佳青-一公分的海,http://em.21dtv.com/songs/60081920.mkv +谢雨欣-阳光的祝愿,http://em.21dtv.com/songs/60052173.mkv +降央卓玛-月光的忧伤,http://em.21dtv.com/songs/60122253.mkv +信乐团-英国的夏天,http://em.21dtv.com/songs/60054405.mkv +SWEETY-勇敢的幸福,http://em.21dtv.com/songs/60054836.mkv +董文华-月光的思念,http://em.21dtv.com/songs/60056326.mkv +李鑫雨-勇敢的傻瓜,http://em.21dtv.com/songs/60065387.mkv +许茹芸-月光的祈祷,http://em.21dtv.com/songs/60056325.mkv +龙千玉-勇敢的女性,http://em.21dtv.com/songs/60054832.mkv +TRY-勇敢的女孩,http://em.21dtv.com/songs/60079249.mkv +蔡小虎-勇敢的男儿,http://em.21dtv.com/songs/60115360.mkv +王麟-勇敢的梦想,http://em.21dtv.com/songs/60082002.mkv +张可儿-有过的美丽,http://em.21dtv.com/songs/60070182.mkv +刘香慈-勇敢的力量,http://em.21dtv.com/songs/60054831.mkv +品冠-勇敢的灵魂,http://em.21dtv.com/songs/60068934.mkv +老猫-勇敢的狂奔,http://em.21dtv.com/songs/60086157.mkv +彭健新-阳光大减价(演唱会),http://em.21dtv.com/songs/60052172.mkv +文夏-月光的海边,http://em.21dtv.com/songs/60078381.mkv +张学友-勇敢的故事,http://em.21dtv.com/songs/60054830.mkv +丁丁-勇敢的代价,http://em.21dtv.com/songs/60081624.mkv +吴业坤-阳光点的歌,http://em.21dtv.com/songs/60115043.mkv +刘德华-与孤独奔往,http://em.21dtv.com/songs/60090686.mkv +伍佰-要改变自己,http://em.21dtv.com/songs/60052366.mkv +曾辉彬-摇滚吧 山歌,http://em.21dtv.com/songs/60052265.mkv +徐海星-勇敢吧孩子,http://em.21dtv.com/songs/60101353.mkv +陈曦-勇敢爱下去,http://em.21dtv.com/songs/60079248.mkv +蔡健雅-一分钟追悔(演唱会),http://em.21dtv.com/songs/60052933.mkv +王晶-一分钟以前,http://em.21dtv.com/songs/60052932.mkv +蔡依林-衣服占心术,http://em.21dtv.com/songs/60053969.mkv +郑融-一分钟漂亮,http://em.21dtv.com/songs/60052931.mkv +张皓然-一分钟偶像,http://em.21dtv.com/songs/60065326.mkv +郭欢-缘分在哪里,http://em.21dtv.com/songs/60062406.mkv +翁立友-缘份这两字,http://em.21dtv.com/songs/60126076.mkv +王力宏+谭维维-缘分一道桥,http://em.21dtv.com/songs/60129383.mkv +刘宜-缘分[演],http://em.21dtv.com/songs/60094831.mkv +五月天-夜访吸血鬼,http://em.21dtv.com/songs/60052559.mkv +张挥-远方我的爱,http://em.21dtv.com/songs/60105042.mkv +郑中基-缘份无边界,http://em.21dtv.com/songs/60056093.mkv +叶启田-缘份天注定,http://em.21dtv.com/songs/60056092.mkv +翁立友-缘份天注定,http://em.21dtv.com/songs/60056091.mkv +叶启田-缘分天注定,http://em.21dtv.com/songs/60056065.mkv +邱芸子+陈中-缘份天决定(无原唱),http://em.21dtv.com/songs/60056089.mkv +叶振棠+田蕊妮-缘份是天意,http://em.21dtv.com/songs/60056087.mkv +梁咏琪-缘份手牵手,http://em.21dtv.com/songs/60091518.mkv +梁咏琪-缘份手牵起,http://em.21dtv.com/songs/60056088.mkv +郑希怡-要放松的他,http://em.21dtv.com/songs/60052363.mkv +张文绮-缘份783,http://em.21dtv.com/songs/60105849.mkv +陆萍-远方飘着霞,http://em.21dtv.com/songs/60056147.mkv +吴永飞-远方老妈妈,http://em.21dtv.com/songs/60121497.mkv +阳帆-扬帆流浪记,http://em.21dtv.com/songs/60087031.mkv +张伟文-缘份咖啡座,http://em.21dtv.com/songs/60092561.mkv +豪记大对唱-缘份放一边,http://em.21dtv.com/songs/60056086.mkv +庭竹-远方的祝福,http://em.21dtv.com/songs/60056146.mkv +咪依鲁江-远方的新娘,http://em.21dtv.com/songs/60079395.mkv +汤宝如-缘分的天空,http://em.21dtv.com/songs/60103410.mkv +汤宝如-缘份的天空,http://em.21dtv.com/songs/60056084.mkv +汤宝如-缘份的天空(演唱会),http://em.21dtv.com/songs/60056083.mkv +孙楠-缘份的天空(演唱会),http://em.21dtv.com/songs/60056082.mkv +德龙-远方的思恋,http://em.21dtv.com/songs/60065422.mkv +智明嘉措-远方的情人,http://em.21dtv.com/songs/60056143.mkv +韩红-远方的情人,http://em.21dtv.com/songs/60056142.mkv +蓝馨-远方的情郎,http://em.21dtv.com/songs/60056141.mkv +春妹-远方的情郎,http://em.21dtv.com/songs/60056140.mkv +马志锋-缘分的奇迹,http://em.21dtv.com/songs/60065419.mkv +殷实-远方的牵挂,http://em.21dtv.com/songs/60133909.mkv +彝组合-远方的朋友,http://em.21dtv.com/songs/60079392.mkv +韦唯-远方的朋友,http://em.21dtv.com/songs/60056139.mkv +萧丽珠-迎风的女孩,http://em.21dtv.com/songs/60091973.mkv +田丽颖-远方的恋人,http://em.21dtv.com/songs/60130617.mkv +张平-远方的恋人,http://em.21dtv.com/songs/60120510.mkv +李葵航-远方的恋人,http://em.21dtv.com/songs/60116927.mkv +韩红-远方的孩子,http://em.21dtv.com/songs/60121131.mkv +雷光夏-远方的鼓声,http://em.21dtv.com/songs/60115517.mkv +冯光-远方的姑娘,http://em.21dtv.com/songs/60121403.mkv +梅南林-远方的姑娘,http://em.21dtv.com/songs/60098534.mkv +降央卓玛-远飞的大雁,http://em.21dtv.com/songs/60100610.mkv +陈瑞-远方的爱人,http://em.21dtv.com/songs/60135936.mkv +尔玛豪鹰-远方的爱人,http://em.21dtv.com/songs/60056134.mkv +李韦-有风唱着歌,http://em.21dtv.com/songs/60070181.mkv +毛阿敏-远方伴着你,http://em.21dtv.com/songs/60056133.mkv +MI2-缘分,http://em.21dtv.com/songs/60079850.mkv +佚名-雁儿在林梢,http://em.21dtv.com/songs/60052128.mkv +凤飞飞-雁儿在林梢(无原唱),http://em.21dtv.com/songs/60052127.mkv +杨青倩+曹格-月儿又弯弯,http://em.21dtv.com/songs/60056302.mkv +蔡琴-12月22,http://em.21dtv.com/songs/60123131.mkv +蔡琴-12月22,http://em.21dtv.com/songs/60122092.mkv +青山-月儿像柠檬,http://em.21dtv.com/songs/60088937.mkv +杨小萍-月儿像柠檬,http://em.21dtv.com/songs/60088066.mkv +洪禄云+陈水林-月儿像柠檬,http://em.21dtv.com/songs/60084490.mkv +邓丽君-月儿像柠檬,http://em.21dtv.com/songs/60056300.mkv +陈芬兰-月儿像柠檬,http://em.21dtv.com/songs/60056299.mkv +吕珊-月儿像柠檬(演唱会),http://em.21dtv.com/songs/60056298.mkv +佚名-月儿像柠檬(无原唱),http://em.21dtv.com/songs/60056297.mkv +许慧欣-鱼儿水中游,http://em.21dtv.com/songs/60055524.mkv +阎维文-一二三四歌,http://em.21dtv.com/songs/60052913.mkv +冯汉树-杨二舍化缘,http://em.21dtv.com/songs/60052200.mkv +钟舒祺-燕儿翩翩飞,http://em.21dtv.com/songs/60063454.mkv +张露-鱼儿哪里来,http://em.21dtv.com/songs/60087846.mkv +张伟文-鱼儿那里来,http://em.21dtv.com/songs/60055522.mkv +童唱-鱼儿哪里来,http://em.21dtv.com/songs/60055521.mkv +伊能静-月儿亮弯弯,http://em.21dtv.com/songs/60056286.mkv +陈升+郁可唯-月儿几时圆,http://em.21dtv.com/songs/60065426.mkv +宇威-约定在海边,http://em.21dtv.com/songs/60107659.mkv +伊妹儿-运动总动员,http://em.21dtv.com/songs/60056692.mkv +钟晓玉+钟盛忠-一定要再见,http://em.21dtv.com/songs/60124592.mkv +齐秦-一定要有你,http://em.21dtv.com/songs/60052878.mkv +张靓颖-一定要幸福,http://em.21dtv.com/songs/60129127.mkv +张江-一定要幸福,http://em.21dtv.com/songs/60104133.mkv +杨幂-一定要幸福,http://em.21dtv.com/songs/60084345.mkv +鱼仔+王中平-一定要幸福,http://em.21dtv.com/songs/60052877.mkv +陈小春-一定要幸福,http://em.21dtv.com/songs/60052876.mkv +慢摇舞曲-愿得一人心(2013弹Club DjSenny Remix),http://em.21dtv.com/songs/30000589.mkv +谭艳-愿得一人心,http://em.21dtv.com/songs/60126215.mkv +孙露-愿得一人心,http://em.21dtv.com/songs/60115824.mkv +杨子-愿得一人心,http://em.21dtv.com/songs/60101107.mkv +李行亮+雨宗林-愿得一人心,http://em.21dtv.com/songs/60093767.mkv +李行亮-愿得一人心,http://em.21dtv.com/songs/60071479.mkv +吉那罐子-伊甸园苹果,http://em.21dtv.com/songs/60115748.mkv +刘虹桦-一定要满足,http://em.21dtv.com/songs/60052875.mkv +罗逻圣-一带一路情,http://em.21dtv.com/songs/60123074.mkv +后羿-一定要快乐,http://em.21dtv.com/songs/60068912.mkv +胡夏-一定有个你,http://em.21dtv.com/songs/60080557.mkv +罗时丰-一定要成功,http://em.21dtv.com/songs/60134077.mkv +林翠萍-一定要成功,http://em.21dtv.com/songs/60052874.mkv +陈百潭-一定要成功,http://em.21dtv.com/songs/60052873.mkv +赵鑫-一定要爱你,http://em.21dtv.com/songs/60094696.mkv +吴紫涵-一定要爱你,http://em.21dtv.com/songs/60079086.mkv +孙露-一定要爱你,http://em.21dtv.com/songs/60079085.mkv +魏新雨-一定要爱你,http://em.21dtv.com/songs/60070136.mkv +田一龙-一定要爱你,http://em.21dtv.com/songs/60052872.mkv +季小璐-一定要爱你,http://em.21dtv.com/songs/60052871.mkv +王大文-印度小夜曲,http://em.21dtv.com/songs/60097518.mkv +张柏芝-一段小把戏,http://em.21dtv.com/songs/60092624.mkv +芭比-摇到外婆桥,http://em.21dtv.com/songs/60052264.mkv +吉克隽逸-月到天心处,http://em.21dtv.com/songs/60086187.mkv +杨宗宪-一点三十分,http://em.21dtv.com/songs/60052861.mkv +脱拉库-一点四十八(无原唱),http://em.21dtv.com/songs/60052862.mkv +杨幂-有点舍不得,http://em.21dtv.com/songs/60079275.mkv +钟康琪-云端庆升平,http://em.21dtv.com/songs/60056642.mkv +尚雯婕-一大片天空,http://em.21dtv.com/songs/60052831.mkv +林渃晗-一定能做到,http://em.21dtv.com/songs/60118720.mkv +DJ舞曲-夜店女皇2,http://em.21dtv.com/songs/50000156.mkv +DJ舞曲-夜店女皇1,http://em.21dtv.com/songs/50000155.mkv +王峰-愿得你的心,http://em.21dtv.com/songs/60132727.mkv +CRAIG DAVID-you dont miss your water(演唱会),http://em.21dtv.com/songs/60006538.mkv +范逸臣+刘虹华-亚德里亚海,http://em.21dtv.com/songs/60051891.mkv +佚名-一对旧皮鞋,http://em.21dtv.com/songs/60052888.mkv +林锋-约旦河西岸,http://em.21dtv.com/songs/60088127.mkv +樊凡+任重-约定的永远,http://em.21dtv.com/songs/60112044.mkv +樊凡-约定的永远,http://em.21dtv.com/songs/60109470.mkv +邓福如-一点点喜欢,http://em.21dtv.com/songs/60052858.mkv +张洪量-伊豆的舞娘,http://em.21dtv.com/songs/60053954.mkv +周杰伦-夜的第七章,http://em.21dtv.com/songs/60052552.mkv +本多RURU-一点点力量,http://em.21dtv.com/songs/60052857.mkv +群星合唱-亚当的肋骨,http://em.21dtv.com/songs/60091869.mkv +PSOTM3N+林大晋-亚当的肋骨(无原唱),http://em.21dtv.com/songs/60051889.mkv +王朝国-约定的地方,http://em.21dtv.com/songs/60102535.mkv +谢天笑-约定的地方,http://em.21dtv.com/songs/60056252.mkv +柳妍熙-一点都不痛,http://em.21dtv.com/songs/60114628.mkv +梅朵措-缘定的爱人,http://em.21dtv.com/songs/60065417.mkv +杜德伟+林忆莲-you dont bring me flowers,http://em.21dtv.com/songs/60006532.mkv +BARBRA STREISAND+NEI-you dont bring me flowers,http://em.21dtv.com/songs/60006531.mkv +李晓杰-又唱艳阳天,http://em.21dtv.com/songs/60088019.mkv +李蕙敏-一次又一次,http://em.21dtv.com/songs/60052821.mkv +方践宁-野草亦是花,http://em.21dtv.com/songs/60052458.mkv +陈盈洁-野草亦是花,http://em.21dtv.com/songs/60052457.mkv +唐煜航-又唱摇篮曲,http://em.21dtv.com/songs/60070187.mkv +马可+汪函-越策越开心,http://em.21dtv.com/songs/60090328.mkv +陈娟儿-越唱越寂寞,http://em.21dtv.com/songs/60079432.mkv +叶怀佩-越唱越大声,http://em.21dtv.com/songs/60112562.mkv +叶怀佩-越唱越大声,http://em.21dtv.com/songs/60110912.mkv +LINDA-衣橱演唱会,http://em.21dtv.com/songs/60053967.mkv +王彩桦-有唱有保庇,http://em.21dtv.com/songs/60055100.mkv +王刚-又唱小燕子,http://em.21dtv.com/songs/60132711.mkv +李风持-又唱相思泪,http://em.21dtv.com/songs/60055425.mkv +傅超华+刘晓华-勇闯新境界,http://em.21dtv.com/songs/60123635.mkv +吕宏伟-又唱小白杨,http://em.21dtv.com/songs/60118435.mkv +舒鸣-一次性爱上,http://em.21dtv.com/songs/60081976.mkv +HOTEL SAINT GEORAGE-you can trust in me,http://em.21dtv.com/songs/60082414.mkv +段红-又唱南泥湾,http://em.21dtv.com/songs/60109475.mkv +潘斯蒙-又唱茉莉花,http://em.21dtv.com/songs/60124221.mkv +侯丽娟-又唱浏阳河,http://em.21dtv.com/songs/60120322.mkv +宋祖英-又唱浏阳河,http://em.21dtv.com/songs/60055423.mkv +唐大聪-夜察 凯旋,http://em.21dtv.com/songs/60133502.mkv +杭天琪-月残花烛泪,http://em.21dtv.com/songs/60056284.mkv +蓝天-油菜花又开,http://em.21dtv.com/songs/60099474.mkv +王娜-又唱好声音,http://em.21dtv.com/songs/60113854.mkv +王莉-又唱红梅赞,http://em.21dtv.com/songs/60086164.mkv +璇儿-油菜花儿开,http://em.21dtv.com/songs/60108738.mkv +鲁文嘉措-油菜花儿开,http://em.21dtv.com/songs/60108172.mkv +祝健-油菜花儿开,http://em.21dtv.com/songs/60102592.mkv +鲁文嘉措-油菜花儿开,http://em.21dtv.com/songs/60084434.mkv +八大巨星-迎春花儿开,http://em.21dtv.com/songs/60079218.mkv +刘若颖-油菜花儿黄,http://em.21dtv.com/songs/60087069.mkv +BOW WOW-you can get it all,http://em.21dtv.com/songs/60074179.mkv +鸿飞-愚蠢的幸福,http://em.21dtv.com/songs/60106481.mkv +良一-郁悴的男儿,http://em.21dtv.com/songs/60055796.mkv +王心凌-衣橱的秘密,http://em.21dtv.com/songs/60053966.mkv +何玫瑰-忧愁的玫瑰,http://em.21dtv.com/songs/60095384.mkv +邱淑君-忧愁的玫瑰(无原唱),http://em.21dtv.com/songs/60054946.mkv +江蕙-忧愁的牡丹,http://em.21dtv.com/songs/60128159.mkv +洪荣宏+江蕙-忧愁的牡丹,http://em.21dtv.com/songs/60095779.mkv +佚名-忧愁的牡丹,http://em.21dtv.com/songs/60054947.mkv +冷漠-远处的灯火,http://em.21dtv.com/songs/60068959.mkv +LISA-拥抱再拥抱,http://em.21dtv.com/songs/60054591.mkv +林忆莲-一辈子心情(演唱会),http://em.21dtv.com/songs/60052771.mkv +安俊宁+恒少-一辈子兄弟,http://em.21dtv.com/songs/60099950.mkv +叶倩文-一辈子温柔,http://em.21dtv.com/songs/60052770.mkv +菊梓乔-一辈子守候,http://em.21dtv.com/songs/60132843.mkv +卢广仲-一百种生活,http://em.21dtv.com/songs/60052735.mkv +张靓颖+杨坤-一辈子朋友(演唱会),http://em.21dtv.com/songs/60079078.mkv +杨坤+张靓颖-一辈子朋友,http://em.21dtv.com/songs/60072698.mkv +龙飞凤-一辈子很长,http://em.21dtv.com/songs/60129868.mkv +陈奕迅-拥抱这分钟,http://em.21dtv.com/songs/60093400.mkv +阿当-一辈子的伤,http://em.21dtv.com/songs/60068908.mkv +刘德华-一辈子的错,http://em.21dtv.com/songs/60052764.mkv +袁培华-一辈子的爱,http://em.21dtv.com/songs/60052762.mkv +佚名-一辈子的爱,http://em.21dtv.com/songs/60052761.mkv +萧敬腾-一辈子存在(演唱会),http://em.21dtv.com/songs/60052760.mkv +陈雅森-一辈子爱你,http://em.21dtv.com/songs/60124659.mkv +梁丰富-一杯又一杯,http://em.21dtv.com/songs/60130498.mkv +花邱阳-月伴影相随,http://em.21dtv.com/songs/60130682.mkv +李进-拥抱英特奈,http://em.21dtv.com/songs/60054590.mkv +不要停,http://em.21dtv.com/songs/60133853.mkv +黎明-一百样可能,http://em.21dtv.com/songs/60052733.mkv +蔡秋凤-一步一脚印,http://em.21dtv.com/songs/60052795.mkv +王菀之-拥抱一个人,http://em.21dtv.com/songs/60091730.mkv +杜德伟-夜半一点钟(演唱会),http://em.21dtv.com/songs/60052544.mkv +佚名-一步一步来,http://em.21dtv.com/songs/60052792.mkv +陈奂仁-一步一步爱,http://em.21dtv.com/songs/60128520.mkv +郑秀文+陈奂仁-一步一步爱,http://em.21dtv.com/songs/60052791.mkv +卓依婷-一把小雨伞,http://em.21dtv.com/songs/60052718.mkv +佚名-一把小雨伞,http://em.21dtv.com/songs/60052717.mkv +容祖儿-月半小夜曲,http://em.21dtv.com/songs/60119441.mkv +陈乐基-月半小夜曲,http://em.21dtv.com/songs/60105469.mkv +李克勤-月半小夜曲,http://em.21dtv.com/songs/60056282.mkv +梁咏琪+李克勤-月半小夜曲(演唱会),http://em.21dtv.com/songs/60056281.mkv +李克勤-月半小夜曲(演唱会),http://em.21dtv.com/songs/60056280.mkv +陈慧娴-月半小夜曲(演唱会),http://em.21dtv.com/songs/60056279.mkv +刘晓龙+罗嘉俊-拥抱新希望,http://em.21dtv.com/songs/60134938.mkv +佚名-一巴香水印,http://em.21dtv.com/songs/60052714.mkv +GIRL'S DAY-拥抱我一次,http://em.21dtv.com/songs/60061839.mkv +佚名-拥抱我入梦(无原唱),http://em.21dtv.com/songs/60054587.mkv +蔡小虎-一把无情盐,http://em.21dtv.com/songs/60065324.mkv +I LOVE YOU BOYZ-遥摆乌克兰,http://em.21dtv.com/songs/60052302.mkv +高枫-永不说再见,http://em.21dtv.com/songs/60054622.mkv +蔡淳佳-银白色月光,http://em.21dtv.com/songs/60088602.mkv +韩庚-夜伴三庚语,http://em.21dtv.com/songs/60115525.mkv +苏晴-银白色宫殿,http://em.21dtv.com/songs/60067715.mkv +罗时丰-摇摆say good bye,http://em.21dtv.com/songs/60052250.mkv +陈百潭-一步若踏错,http://em.21dtv.com/songs/60052787.mkv +叶玉卿-夜半卿私语,http://em.21dtv.com/songs/60052539.mkv +吕方-夜半轻私语,http://em.21dtv.com/songs/60052538.mkv +佩君-夜半青红灯(无原唱),http://em.21dtv.com/songs/60052537.mkv +张北北-拥抱你离去,http://em.21dtv.com/songs/60115145.mkv +ENERGY-you better not come home,http://em.21dtv.com/songs/60006522.mkv +高贵强-一笔空心字,http://em.21dtv.com/songs/60065325.mkv +侯旭-一杯接一杯,http://em.21dtv.com/songs/60052750.mkv +PHIL COLLINS-youll be in my heart,http://em.21dtv.com/songs/60006585.mkv +赵倍誉-一摆搁一摆(无原唱),http://em.21dtv.com/songs/60052736.mkv +陶馨州-一百个想你,http://em.21dtv.com/songs/60108998.mkv +吉杰-一百个快乐(演唱会),http://em.21dtv.com/songs/60061807.mkv +许茹芸-一百个谎言,http://em.21dtv.com/songs/60090215.mkv +张津涤-一百个放心,http://em.21dtv.com/songs/60099237.mkv +佚名-夜半的钟声,http://em.21dtv.com/songs/60052525.mkv +袁成杰-拥抱到最后,http://em.21dtv.com/songs/60079232.mkv +六哲+袁惜君-一半的一半,http://em.21dtv.com/songs/60103090.mkv +魏君华-摇摆的心痛,http://em.21dtv.com/songs/60133115.mkv +陈楚生-拥抱的温暖,http://em.21dtv.com/songs/60080452.mkv +袁泉-拥抱的问号,http://em.21dtv.com/songs/60054579.mkv +黎明-夜变得透明,http://em.21dtv.com/songs/60052548.mkv +黎明-拥抱大世界,http://em.21dtv.com/songs/60093564.mkv +尹熙水-拥抱的理由,http://em.21dtv.com/songs/60111029.mkv +赵齐-拥抱的理由,http://em.21dtv.com/songs/60110562.mkv +任贤齐-拥抱的快乐,http://em.21dtv.com/songs/60054578.mkv +杨海彪-哑巴的爱情,http://em.21dtv.com/songs/60129278.mkv +祝兰兰-以播出为准,http://em.21dtv.com/songs/60080059.mkv +单色凌-一百次分开,http://em.21dtv.com/songs/60131226.mkv +周诗雅-一百次的伤,http://em.21dtv.com/songs/60079072.mkv +吴蓓雅-一杯冰啤酒,http://em.21dtv.com/songs/60125304.mkv +杨志忠-一杯白开水,http://em.21dtv.com/songs/60131527.mkv +许志安-用爱造世界,http://em.21dtv.com/songs/60054867.mkv +林俊吉-又爱又心痛,http://em.21dtv.com/songs/60072747.mkv +徐新军+刘艳慧-用爱赢天下,http://em.21dtv.com/songs/60107744.mkv +陈思安-要爱有情人,http://em.21dtv.com/songs/60086097.mkv +周丽淇-越爱越怕追,http://em.21dtv.com/songs/60056580.mkv +米志宏-又爱又怕你,http://em.21dtv.com/songs/60055418.mkv +吴克群-越爱越难过,http://em.21dtv.com/songs/60056579.mkv +六哲-越爱越陌生,http://em.21dtv.com/songs/60132223.mkv +张智霖-愈爱愈美丽,http://em.21dtv.com/songs/60133669.mkv +张智霖-愈爱愈美丽,http://em.21dtv.com/songs/60131402.mkv +徐浩峻-越爱越美丽,http://em.21dtv.com/songs/60111103.mkv +刘若英-越爱越美丽,http://em.21dtv.com/songs/60056578.mkv +柏文-越爱越美丽,http://em.21dtv.com/songs/60056577.mkv +尚雯婕-越爱越明白,http://em.21dtv.com/songs/60081974.mkv +黄小琥-越爱越明白,http://em.21dtv.com/songs/60079431.mkv +黄小琥-愈爱愈明白,http://em.21dtv.com/songs/60066554.mkv +刘艺杰-越爱越寂寞,http://em.21dtv.com/songs/60056573.mkv +周韦杰+徐佩仪-愈爱愈坚定,http://em.21dtv.com/songs/60063461.mkv +林柔均-愈爱愈后悔,http://em.21dtv.com/songs/60066553.mkv +王瑞霞-越爱越孤单,http://em.21dtv.com/songs/60056571.mkv +许亮宇-越爱越不会,http://em.21dtv.com/songs/60122109.mkv +办桌阿杰+王瑞霞-愈爱愈悲哀,http://em.21dtv.com/songs/60095476.mkv +孙淑媚-越爱心越重,http://em.21dtv.com/songs/60056569.mkv +BTO-you aint seen nothing yet,http://em.21dtv.com/songs/60006483.mkv +王瑞霞-有爱若无爱,http://em.21dtv.com/songs/60055093.mkv +金海心-与爱情有关,http://em.21dtv.com/songs/60055575.mkv +谭维维-与爱情无关,http://em.21dtv.com/songs/60103578.mkv +游鸿明-与爱情无关,http://em.21dtv.com/songs/60055574.mkv +佚名-youre a part of me,http://em.21dtv.com/songs/60006604.mkv +夜叉乐队-you are not the loser,http://em.21dtv.com/songs/60071694.mkv +佚名-you are my only one(无原唱),http://em.21dtv.com/songs/60006501.mkv +王心凌-you are my only love,http://em.21dtv.com/songs/60006500.mkv +HOTCHA-you are my best friend,http://em.21dtv.com/songs/60006495.mkv +谢霆锋-与爱侣相对,http://em.21dtv.com/songs/60055573.mkv +李煜-要爱就要快,http://em.21dtv.com/songs/60052352.mkv +童丽-用爱将心偷,http://em.21dtv.com/songs/60079252.mkv +汪明荃-用爱将心偷,http://em.21dtv.com/songs/60054865.mkv +汪明荃-用爱将心偷(演唱会),http://em.21dtv.com/songs/60054864.mkv +佚名-有爱就无恨,http://em.21dtv.com/songs/60055088.mkv +田正-有爱会结缘,http://em.21dtv.com/songs/60134023.mkv +苏勒亚其其格-有爱会结缘,http://em.21dtv.com/songs/60127329.mkv +尚音-因爱而美丽,http://em.21dtv.com/songs/60054198.mkv +宋逸民+李宣榕-有爱的所在,http://em.21dtv.com/songs/60071453.mkv +杜蕾-有爱的世界,http://em.21dtv.com/songs/60121796.mkv +储毅-有爱的世界,http://em.21dtv.com/songs/60104796.mkv +萧亚轩-有爱到就好,http://em.21dtv.com/songs/60072744.mkv +张译文-有爱的地方,http://em.21dtv.com/songs/60120525.mkv +谭晶-有爱才有家,http://em.21dtv.com/songs/60098780.mkv +松隆子-桜の雨 いつか,http://em.21dtv.com/songs/60054452.mkv +带泪的鱼-像针锥一样,http://em.21dtv.com/songs/60099987.mkv +张国荣+关菊英-心中只有你,http://em.21dtv.com/songs/60067662.mkv +毛宁+陈明-心中只有你,http://em.21dtv.com/songs/60050764.mkv +西域胡杨-行走在新疆,http://em.21dtv.com/songs/60078898.mkv +童唱-星仔走天涯,http://em.21dtv.com/songs/60051162.mkv +何欣穗-现在怎么办,http://em.21dtv.com/songs/60048528.mkv +F4-寻找朱丽叶,http://em.21dtv.com/songs/60089567.mkv +吴建豪-寻找朱丽叶,http://em.21dtv.com/songs/60087559.mkv +吴建豪-寻找茱丽叶,http://em.21dtv.com/songs/60051851.mkv +周柏豪-现在已夜深,http://em.21dtv.com/songs/60101300.mkv +佚名-心只有一个,http://em.21dtv.com/songs/60050722.mkv +林晏如-心只有一个,http://em.21dtv.com/songs/60050721.mkv +Sugarbowl-像这样一步,http://em.21dtv.com/songs/60109893.mkv +萧亚轩-想找一条船,http://em.21dtv.com/songs/60091986.mkv +乌兰托娅-心在云上飞,http://em.21dtv.com/songs/60065246.mkv +旺福乐团-小职员日记,http://em.21dtv.com/songs/60086033.mkv +阿悄+童可可-旋转音乐盒,http://em.21dtv.com/songs/60104525.mkv +童可可+阿悄-旋转音乐盒,http://em.21dtv.com/songs/60104353.mkv +成龙-向着阳光走,http://em.21dtv.com/songs/60049361.mkv +梦成-新自由飞翔,http://em.21dtv.com/songs/60078877.mkv +张杰-心中一把火(演唱会),http://em.21dtv.com/songs/60070084.mkv +李玉波-新扎西印记,http://em.21dtv.com/songs/60062612.mkv +王熙然-选择性失忆,http://em.21dtv.com/songs/60071382.mkv +李翊君-选择性失忆,http://em.21dtv.com/songs/60051625.mkv +吴涤清-心醉心碎后,http://em.21dtv.com/songs/60090812.mkv +龚玥菲+张瀚元-寻找西门庆,http://em.21dtv.com/songs/60094782.mkv +陶红-习主席寄语,http://em.21dtv.com/songs/60108997.mkv +潘越云-西子湾之恋,http://em.21dtv.com/songs/60095798.mkv +潘越云-西子弯之恋,http://em.21dtv.com/songs/60047955.mkv +方伊琪-选择+我愿意,http://em.21dtv.com/songs/60051615.mkv +罗文聪-心中无牵挂,http://em.21dtv.com/songs/60050759.mkv +枫舞-心在为你跳,http://em.21dtv.com/songs/60113726.mkv +张挥-学着忘记你,http://em.21dtv.com/songs/60078968.mkv +五月天-心中无别人,http://em.21dtv.com/songs/60050758.mkv +五月天-心中无别人(演唱会),http://em.21dtv.com/songs/60050757.mkv +荀相侨-向着太阳追,http://em.21dtv.com/songs/60135681.mkv +戴玉强-向着太阳走,http://em.21dtv.com/songs/60091242.mkv +周杰伦-鞋子特大号,http://em.21dtv.com/songs/60106710.mkv +安又琪-笑着说再见,http://em.21dtv.com/songs/60123838.mkv +陈晓东-笑着说再会,http://em.21dtv.com/songs/60049980.mkv +S.H.E-想做少奶奶,http://em.21dtv.com/songs/60049310.mkv +冷漠+西单女孩-笑着说分手,http://em.21dtv.com/songs/60068852.mkv +杜国龙-笑着说分手,http://em.21dtv.com/songs/60062338.mkv +王中平-心在说爱你,http://em.21dtv.com/songs/60091683.mkv +黄品源+大支-笑着让你走,http://em.21dtv.com/songs/60049979.mkv +黄致列-像中枪一样,http://em.21dtv.com/songs/60121181.mkv +白智英-像中枪一样,http://em.21dtv.com/songs/60049418.mkv +毛阿敏-笑在你心头,http://em.21dtv.com/songs/60049970.mkv +谭炳文+李香梦-携着你双手(演唱会),http://em.21dtv.com/songs/60049991.mkv +刘超华-想着你的美,http://em.21dtv.com/songs/60049302.mkv +祁隆-想着你的好,http://em.21dtv.com/songs/60110435.mkv +刘恺名-想着你的好,http://em.21dtv.com/songs/60109181.mkv +孙中亮-想着你的好,http://em.21dtv.com/songs/60105746.mkv +郑伊健-选择你的爱,http://em.21dtv.com/songs/60051622.mkv +潘晓峰-寻找玛依拉,http://em.21dtv.com/songs/60051848.mkv +刀郎-寻找玛依拉,http://em.21dtv.com/songs/60051847.mkv +海鸣威-寻找迈克尔,http://em.21dtv.com/songs/60051849.mkv +孔雀哥哥-新竹楼情歌,http://em.21dtv.com/songs/60106762.mkv +李慧珍-寻找李慧珍,http://em.21dtv.com/songs/60051846.mkv +成威-相招来淡水,http://em.21dtv.com/songs/60048889.mkv +三宝+柔情-笑着哭最痛,http://em.21dtv.com/songs/60103054.mkv +陈慧琳-想再见到你,http://em.21dtv.com/songs/60093457.mkv +王雨琪-现在就出发,http://em.21dtv.com/songs/60078560.mkv +凌志辉-心醉换心碎,http://em.21dtv.com/songs/60078806.mkv +郭健一+萧玉芬-雪中红玫瑰,http://em.21dtv.com/songs/60051771.mkv +群星-笑住挂住你,http://em.21dtv.com/songs/60049984.mkv +袁惜君+蔡晓-选择跟她走,http://em.21dtv.com/songs/60103561.mkv +金波-向祖国敬礼(演唱会),http://em.21dtv.com/songs/60049362.mkv +佟大为-小指勾勾勾,http://em.21dtv.com/songs/60112516.mkv +张天甫-心中的卓玛,http://em.21dtv.com/songs/60125499.mkv +聂琳峰-西藏的祝福,http://em.21dtv.com/songs/60047903.mkv +俞灏明-心中的英雄(演唱会),http://em.21dtv.com/songs/60050753.mkv +徐怀钰-心中的遗憾,http://em.21dtv.com/songs/60050752.mkv +索朗扎西-心中的约定,http://em.21dtv.com/songs/60072651.mkv +陈雷-小卒的心声,http://em.21dtv.com/songs/60049900.mkv +将军-心中的仙女,http://em.21dtv.com/songs/60104956.mkv +才让洛桑-心中的雪莲,http://em.21dtv.com/songs/60130360.mkv +金学峰-心中的旋律(演唱会),http://em.21dtv.com/songs/60050751.mkv +WK+ME-心中的西藏,http://em.21dtv.com/songs/60099048.mkv +J.A.M-心中的唯一,http://em.21dtv.com/songs/60050749.mkv +萧蔷-现在的我们,http://em.21dtv.com/songs/60048517.mkv +谢艳+马俊-心中的蔚蓝,http://em.21dtv.com/songs/60107223.mkv +吕继宏-心中的武当,http://em.21dtv.com/songs/60084254.mkv +吉克隽逸-心中的太阳,http://em.21dtv.com/songs/60118428.mkv +佚名-心中的太阳,http://em.21dtv.com/songs/60050746.mkv +玛希-心中的太阳,http://em.21dtv.com/songs/60050745.mkv +刘欢-心中的太阳,http://em.21dtv.com/songs/60050744.mkv +吕静-心中的天堂,http://em.21dtv.com/songs/60050748.mkv +小男孩乐团-心中的图画,http://em.21dtv.com/songs/60116743.mkv +王志清-心中的童话,http://em.21dtv.com/songs/60088292.mkv +杨俊杰-旋转的童话,http://em.21dtv.com/songs/60081232.mkv +泽旺多吉-心中的三峡,http://em.21dtv.com/songs/60100272.mkv +罗力威-寻找的是你(演唱会),http://em.21dtv.com/songs/60078986.mkv +尔萨-心中的圣地,http://em.21dtv.com/songs/60050743.mkv +王力宏-心中的日月(HD),http://em.21dtv.com/songs/10012700.mkv +王拓+叶秉恒-心中的日月,http://em.21dtv.com/songs/60081555.mkv +王力宏-心中的日月,http://em.21dtv.com/songs/60050741.mkv +云飞-心中的女神,http://em.21dtv.com/songs/60108287.mkv +云飞-心中的女神,http://em.21dtv.com/songs/60065248.mkv +邝美云-卸妆的女人,http://em.21dtv.com/songs/60050032.mkv +牛飞-心中的女孩,http://em.21dtv.com/songs/60050739.mkv +Verbal Jint+Car the garden-想知道那个,http://em.21dtv.com/songs/60131117.mkv +大厨-心中的梦想,http://em.21dtv.com/songs/60109250.mkv +那仁朝格+张元启+潘超+韩静-心中的梦想,http://em.21dtv.com/songs/60107264.mkv +阿洛-心中的妈妈,http://em.21dtv.com/songs/60061774.mkv +林玉英-心中的秘密(无原唱),http://em.21dtv.com/songs/60050738.mkv +张斯斯-心中的玫瑰,http://em.21dtv.com/songs/60078804.mkv +佚名-心中的玫瑰,http://em.21dtv.com/songs/60050736.mkv +李谷一-心中的玫瑰,http://em.21dtv.com/songs/60050735.mkv +泽郎-心中的梅朵,http://em.21dtv.com/songs/60127165.mkv +容中尔甲-心中的恋人,http://em.21dtv.com/songs/60050734.mkv +李荣浩-行走的力量,http://em.21dtv.com/songs/60111998.mkv +薛凯琪-寻找独角兽,http://em.21dtv.com/songs/60051844.mkv +德乾旺姆-西藏的孩子,http://em.21dtv.com/songs/60047902.mkv +贺军翔-心中的花园,http://em.21dtv.com/songs/60062447.mkv +降央卓玛-心中的高原,http://em.21dtv.com/songs/60106426.mkv +齐峰-心中的故乡(演唱会),http://em.21dtv.com/songs/60050733.mkv +蔡国庆-心中的故事,http://em.21dtv.com/songs/60050732.mkv +刘子禾-心中的姑娘,http://em.21dtv.com/songs/60109179.mkv +清醒乐队-旋转的房子,http://em.21dtv.com/songs/60051596.mkv +苏莹惠-心中的草原,http://em.21dtv.com/songs/60119916.mkv +龙梅-心中的草原,http://em.21dtv.com/songs/60101206.mkv +乌兰图雅-心中的草原,http://em.21dtv.com/songs/60063076.mkv +乌兰托娅-心中的草原,http://em.21dtv.com/songs/60061773.mkv +易帆-弦子的传说,http://em.21dtv.com/songs/60048480.mkv +张翠萍-心中的彩虹,http://em.21dtv.com/songs/60126896.mkv +袁小明-心中的彩虹,http://em.21dtv.com/songs/60126169.mkv +刘洋+余波-心中的彩虹,http://em.21dtv.com/songs/60050727.mkv +雨儿-旋转的悲伤,http://em.21dtv.com/songs/60070107.mkv +天明-心中的爸妈,http://em.21dtv.com/songs/60122637.mkv +王晓敏-心中的悲凉,http://em.21dtv.com/songs/60121920.mkv +林冲-心中的宝贝,http://em.21dtv.com/songs/60068865.mkv +语录-心中的爱人,http://em.21dtv.com/songs/60106279.mkv +陈汝佳-心中的安妮,http://em.21dtv.com/songs/60088897.mkv +毛宁-心中的安妮(演唱会),http://em.21dtv.com/songs/60050725.mkv +泽郎多杰-心中的阿妈,http://em.21dtv.com/songs/60090046.mkv +廖芊芊-心在草原飞,http://em.21dtv.com/songs/60080219.mkv +萧贺硕-现在才明白,http://em.21dtv.com/songs/60078558.mkv +洪荣宏-心中充满爱(无原唱),http://em.21dtv.com/songs/60095787.mkv +佚名-心中充满爱(无原唱),http://em.21dtv.com/songs/60050724.mkv +徐小凤-行踪不要问(无原唱),http://em.21dtv.com/songs/60019955.mkv +佚名-想着彼个人,http://em.21dtv.com/songs/60049295.mkv +蔡秋凤-想着彼当时(无原唱),http://em.21dtv.com/songs/60049294.mkv +贡尕达哇-寻找爱之路,http://em.21dtv.com/songs/60070111.mkv +张韶涵-寻找爱蜜莉,http://em.21dtv.com/songs/60051843.mkv +胡佳琛-寻找爱丁堡,http://em.21dtv.com/songs/60051842.mkv +RED PEOPLE-选择ABC,http://em.21dtv.com/songs/60120236.mkv +至上励合-下一站永远(演唱会),http://em.21dtv.com/songs/60048334.mkv +雷雨哥-相约在一起,http://em.21dtv.com/songs/60124676.mkv +星弟-相约在雨季,http://em.21dtv.com/songs/60048887.mkv +海鸣威-下一站香港(演唱会),http://em.21dtv.com/songs/60048332.mkv +彭靖惠-下一站幸福,http://em.21dtv.com/songs/60048333.mkv +阿木-新彝族舞曲(演唱会),http://em.21dtv.com/songs/60050980.mkv +胡耀华-相遇只为你,http://em.21dtv.com/songs/60126086.mkv +后弦+米娜-下一站吻别,http://em.21dtv.com/songs/60048331.mkv +TWINS-下一站天后(演唱会),http://em.21dtv.com/songs/60065172.mkv +TWINS-下一站天后,http://em.21dtv.com/songs/60048330.mkv +梁洛施+TWINS-下一站天后(演唱会),http://em.21dtv.com/songs/60048329.mkv +蔡卓妍-下一站天后(演唱会),http://em.21dtv.com/songs/60048328.mkv +容祖儿-下一站天国(演唱会),http://em.21dtv.com/songs/60048327.mkv +黄耀明-下一站天国(演唱会),http://em.21dtv.com/songs/60048326.mkv +香香-细语之慢摇,http://em.21dtv.com/songs/60090312.mkv +毛阿敏-相约在明天,http://em.21dtv.com/songs/60102432.mkv +王秀茗-夕阳最美丽,http://em.21dtv.com/songs/60127205.mkv +赵齐-下一站快乐,http://em.21dtv.com/songs/60094705.mkv +一飞-相遇在红尘,http://em.21dtv.com/songs/60109915.mkv +容中尔甲-雄鹰在飞翔,http://em.21dtv.com/songs/60051483.mkv +张津涤-相约在冬季,http://em.21dtv.com/songs/60117735.mkv +格格-相约在草原,http://em.21dtv.com/songs/60048886.mkv +双星-相约在春天,http://em.21dtv.com/songs/60078596.mkv +龚铭-新扬州八怪,http://em.21dtv.com/songs/60111565.mkv +王一琪-相约在冰城,http://em.21dtv.com/songs/60122983.mkv +宋祖英-相约月圆时,http://em.21dtv.com/songs/60090964.mkv +梁佳玉-相约玉龙洞,http://em.21dtv.com/songs/60086979.mkv +王心凌-下一页的我,http://em.21dtv.com/songs/60048320.mkv +刘牧+马钰淇-星愿,http://em.21dtv.com/songs/60101980.mkv +侯磊-悬崖,http://em.21dtv.com/songs/60101910.mkv +李辉-校园像我家,http://em.21dtv.com/songs/60049909.mkv +孙楠-小英雄哪吒,http://em.21dtv.com/songs/60097487.mkv +邵静然-新呀新年到,http://em.21dtv.com/songs/60078875.mkv +张信哲-夏夜星空海,http://em.21dtv.com/songs/60132432.mkv +古巨基+高明骏-相约新北京,http://em.21dtv.com/songs/60087506.mkv +陈奕迅-夕阳无限好,http://em.21dtv.com/songs/60047871.mkv +陈奕迅-夕阳无限好(HD演唱会),http://em.21dtv.com/songs/60047870.mkv +佚名-想要忘了你,http://em.21dtv.com/songs/60049280.mkv +张婧-想要忘记你,http://em.21dtv.com/songs/60049279.mkv +刘德华-享用我的姓,http://em.21dtv.com/songs/60048969.mkv +夏天ALEX-下一条微信,http://em.21dtv.com/songs/60099903.mkv +韩宝仪-夕阳山外山,http://em.21dtv.com/songs/60047868.mkv +三郎白昭-雪域是我家,http://em.21dtv.com/songs/60051758.mkv +吴建豪-下一首情歌,http://em.21dtv.com/songs/60131254.mkv +王力宏-写一首情歌,http://em.21dtv.com/songs/60050020.mkv +阿木-悬崖上的爱,http://em.21dtv.com/songs/60065291.mkv +甘晴-相约儒之堂,http://em.21dtv.com/songs/60096415.mkv +孙艳-相约儒之堂,http://em.21dtv.com/songs/60096246.mkv +花世纪-想要认识你,http://em.21dtv.com/songs/60061753.mkv +成于申-心有千千结,http://em.21dtv.com/songs/60118593.mkv +卓依婷-心有千千结,http://em.21dtv.com/songs/60050681.mkv +尤雅-心有千千结,http://em.21dtv.com/songs/60050680.mkv +佚名-心有千千结,http://em.21dtv.com/songs/60050679.mkv +石修+钟玲玲-心有千千结,http://em.21dtv.com/songs/60050678.mkv +海霞-相约去草原,http://em.21dtv.com/songs/60122964.mkv +张倬闻+严璞-小妖哪里跑,http://em.21dtv.com/songs/60132434.mkv +刘明扬-信仰你懂的,http://em.21dtv.com/songs/60061780.mkv +F.I.R+阿信-需要你的爱,http://em.21dtv.com/songs/60051549.mkv +金奕萱-下一秒幸福,http://em.21dtv.com/songs/60067615.mkv +李德筠-想要梦见你,http://em.21dtv.com/songs/60118670.mkv +岩罕建-相约眉公河,http://em.21dtv.com/songs/60124826.mkv +尕让邓真-雪域蓝色梦,http://em.21dtv.com/songs/60051755.mkv +孙更俊-行云流水,http://em.21dtv.com/songs/60071359.mkv +王喆-相约雷锋城,http://em.21dtv.com/songs/60072607.mkv +先知玛莉-星夜里的人,http://em.21dtv.com/songs/60117559.mkv +最强昌珉-像眼泪的人,http://em.21dtv.com/songs/60078668.mkv +莫凡-相约老地方,http://em.21dtv.com/songs/60079966.mkv +尚雯婕-雪夜狂想曲(演唱会),http://em.21dtv.com/songs/60051747.mkv +三口组-逍遥甲自在(无原唱),http://em.21dtv.com/songs/60049423.mkv +高胜美-笑拥江山梦,http://em.21dtv.com/songs/60049969.mkv +兰卡布尺-雪域江河情,http://em.21dtv.com/songs/60051754.mkv +凤娘-想欲见的人,http://em.21dtv.com/songs/60049289.mkv +孔丹丹+吴林峰-新玉环之歌,http://em.21dtv.com/songs/60112616.mkv +庞晓宇-新烟花易冷,http://em.21dtv.com/songs/60072662.mkv +费玉清-想要和你飞,http://em.21dtv.com/songs/60080141.mkv +桑娜央金-相约海螺沟,http://em.21dtv.com/songs/60070043.mkv +张杰-下一个自己,http://em.21dtv.com/songs/60078542.mkv +韩雪-下一个转角,http://em.21dtv.com/songs/60048318.mkv +萧敬腾+王呈章-下一个永远,http://em.21dtv.com/songs/60112191.mkv +张信哲-下一个永远,http://em.21dtv.com/songs/60048317.mkv +贾静雯-许一个愿望,http://em.21dtv.com/songs/60066500.mkv +周冰倩-下一个夜晚,http://em.21dtv.com/songs/60048316.mkv +西帅-下一个雨季,http://em.21dtv.com/songs/60132876.mkv +章丽-下一个约定,http://em.21dtv.com/songs/60104351.mkv +梁一贞-下一个心愿,http://em.21dtv.com/songs/60085984.mkv +ERIKA-下一个未来,http://em.21dtv.com/songs/60126522.mkv +郭静-下一个天亮(演唱会),http://em.21dtv.com/songs/60068823.mkv +郭静-下一个天亮,http://em.21dtv.com/songs/60048314.mkv +金娃-下一个秋天,http://em.21dtv.com/songs/60084160.mkv +郭静-下一个奇迹,http://em.21dtv.com/songs/60062410.mkv +黄小琥-下一个期待,http://em.21dtv.com/songs/60048312.mkv +莫文蔚-想一个男生,http://em.21dtv.com/songs/60049284.mkv +莫文蔚-想一个男生(演唱会),http://em.21dtv.com/songs/60049283.mkv +谢宇文-下一个男人,http://em.21dtv.com/songs/60048310.mkv +佚名-想要跟你飞,http://em.21dtv.com/songs/60049275.mkv +甲子蕙-想要跟你飞,http://em.21dtv.com/songs/60049274.mkv +凤飞飞-想要跟你飞,http://em.21dtv.com/songs/60049273.mkv +邓海-下一个路口,http://em.21dtv.com/songs/60108031.mkv +佚名-行一个军礼,http://em.21dtv.com/songs/60019953.mkv +郑秀文-下一个阶段,http://em.21dtv.com/songs/60048309.mkv +单良-下一个冬天,http://em.21dtv.com/songs/60048308.mkv +黄少梅+黎佩仪-雪夜访珍妃(戏曲),http://em.21dtv.com/songs/60093536.mkv +李春波-新一封家书(演唱会),http://em.21dtv.com/songs/60050979.mkv +李贞瑶-想要的自己,http://em.21dtv.com/songs/60127053.mkv +央金兰泽-雪域的祝福,http://em.21dtv.com/songs/60068891.mkv +向小康+阿迪雅-校园的早晨,http://em.21dtv.com/songs/60110916.mkv +TAE-小雨的自传,http://em.21dtv.com/songs/60090441.mkv +佚名-校园的早晨,http://em.21dtv.com/songs/60049906.mkv +苏打绿-下雨的夜晚,http://em.21dtv.com/songs/60116219.mkv +余天-下雨的夜里,http://em.21dtv.com/songs/60048341.mkv +刘德华+关芝琳-相约到永久,http://em.21dtv.com/songs/60048880.mkv +杨美莲-星夜的细语(无原唱),http://em.21dtv.com/songs/60051142.mkv +周天然-信燕的信念,http://em.21dtv.com/songs/60086055.mkv +黄玠-下雨的晚上,http://em.21dtv.com/songs/60108182.mkv +易桀齐-幸运的我们,http://em.21dtv.com/songs/60051413.mkv +张艳君-相约窦王岭,http://em.21dtv.com/songs/60129117.mkv +佚名-想要弹同调,http://em.21dtv.com/songs/60049270.mkv +莫文蔚-下雨的日子,http://em.21dtv.com/songs/60048339.mkv +佚名-吸烟的女人,http://em.21dtv.com/songs/60047961.mkv +张嘉倪-相遇的魔咒,http://em.21dtv.com/songs/60048870.mkv +杨冰滢-相遇的美丽,http://em.21dtv.com/songs/60113660.mkv +邓丽君-小雨多美丽,http://em.21dtv.com/songs/60049887.mkv +群星-校园多美好(儿歌),http://em.21dtv.com/songs/60091857.mkv +关牧村-校园多美好,http://em.21dtv.com/songs/60049907.mkv +许巍-小鱼的理想,http://em.21dtv.com/songs/60049875.mkv +陈瑞-想要的浪漫,http://em.21dtv.com/songs/60123313.mkv +朱洁仪+杨承华-信仰的力量,http://em.21dtv.com/songs/60122827.mkv +耀阳-信仰的力量,http://em.21dtv.com/songs/60120857.mkv +林姗+李茂山-星夜的离别,http://em.21dtv.com/songs/60084266.mkv +韩宝仪-星夜的离别,http://em.21dtv.com/songs/60084265.mkv +青山-星夜的离别(演唱会),http://em.21dtv.com/songs/60084264.mkv +卓依婷-星夜的离别,http://em.21dtv.com/songs/60051141.mkv +佚名-星夜的离别,http://em.21dtv.com/songs/60051140.mkv +李茂山-星夜的离别,http://em.21dtv.com/songs/60051139.mkv +高胜美-星夜的离别,http://em.21dtv.com/songs/60051138.mkv +费玉清-星夜的离别,http://em.21dtv.com/songs/60051137.mkv +SNH48-相遇的季节,http://em.21dtv.com/songs/60127681.mkv +贾富营-相遇的结局,http://em.21dtv.com/songs/60122137.mkv +刘心-相遇的季节,http://em.21dtv.com/songs/60099805.mkv +李利依-校园点歌台,http://em.21dtv.com/songs/60068851.mkv +许茹芸-想要的感觉,http://em.21dtv.com/songs/60049271.mkv +枫桥-相约的车站,http://em.21dtv.com/songs/60094561.mkv +丁当-下一道彩虹,http://em.21dtv.com/songs/60098063.mkv +曲尔登-雄鹰的翅膀,http://em.21dtv.com/songs/60106905.mkv +卓依婷-星夜的别离,http://em.21dtv.com/songs/60087468.mkv +蔡卓妍-夏宇的爱情,http://em.21dtv.com/songs/60065175.mkv +方力申-下一次再见,http://em.21dtv.com/songs/60092752.mkv +余文乐-下一次真爱,http://em.21dtv.com/songs/60048306.mkv +朱俐静-下一次拥抱,http://em.21dtv.com/songs/60105128.mkv +雨露-下一次相遇,http://em.21dtv.com/songs/60134434.mkv +音乐走廊+歌一生-下一次相遇,http://em.21dtv.com/songs/60129787.mkv +杨丞琳-下一次微笑,http://em.21dtv.com/songs/60048305.mkv +萧亚轩-下一次恋爱,http://em.21dtv.com/songs/60048304.mkv +高洪章-雄鹰翅膀上,http://em.21dtv.com/songs/60078954.mkv +刘德华-下一次不敢,http://em.21dtv.com/songs/60087394.mkv +林美-相遇彼一天(无原唱),http://em.21dtv.com/songs/60048869.mkv +莫文蔚-吸烟不吸烟,http://em.21dtv.com/songs/60093102.mkv +佚名-夕阳伴我归,http://em.21dtv.com/songs/60047863.mkv +元若蓝+吴忠明-心愿便利贴,http://em.21dtv.com/songs/60050695.mkv +崔健-像一把刀子,http://em.21dtv.com/songs/60133615.mkv +华林-新羊爱上狼,http://em.21dtv.com/songs/60119320.mkv +罗时丰-星星知我心,http://em.21dtv.com/songs/60134095.mkv +文夏-星星知我心(无原唱),http://em.21dtv.com/songs/60078220.mkv +卓依婷-星星知我心,http://em.21dtv.com/songs/60051134.mkv +佚名-星星知我心,http://em.21dtv.com/songs/60051133.mkv +秀兰玛雅-星星知我心,http://em.21dtv.com/songs/60051132.mkv +罗时丰-星星知我心,http://em.21dtv.com/songs/60051131.mkv +龙飘飘-星星知我心,http://em.21dtv.com/songs/60051130.mkv +李茂山-星星知我心,http://em.21dtv.com/songs/60051129.mkv +高胜美-星星知我心,http://em.21dtv.com/songs/60051128.mkv +方文琳-星星知我心,http://em.21dtv.com/songs/60051127.mkv +蔡幸娟-星星知我心(演唱会),http://em.21dtv.com/songs/60051126.mkv +HIT-5-写下这首歌,http://em.21dtv.com/songs/60050015.mkv +群星-新禧最前线,http://em.21dtv.com/songs/60078873.mkv +杨钰博-小小足球梦,http://em.21dtv.com/songs/60114621.mkv +张卫健-谢谢再联络,http://em.21dtv.com/songs/60050094.mkv +谢金燕-谢谢再联络,http://em.21dtv.com/songs/60050093.mkv +陈小春-谢谢再连络,http://em.21dtv.com/songs/60050092.mkv +鄞雅茹-星星在唱歌,http://em.21dtv.com/songs/60105441.mkv +周华健+苏慧伦-潇潇雨未歇,http://em.21dtv.com/songs/60084678.mkv +周华健-潇潇雨未歇,http://em.21dtv.com/songs/60080055.mkv +冯允谦-想写一首歌,http://em.21dtv.com/songs/60105618.mkv +何耀珊-谢谢有你们,http://em.21dtv.com/songs/60050091.mkv +蒋大红-谢谢有你版,http://em.21dtv.com/songs/60107183.mkv +宿雨涵-小小一粒沙,http://em.21dtv.com/songs/60062953.mkv +赵芬妮-小象与大象,http://em.21dtv.com/songs/60049793.mkv +尚雯婕-小星星The Star,http://em.21dtv.com/songs/60081804.mkv +羽翘-吸血新世纪,http://em.21dtv.com/songs/60047960.mkv +孙露-小小新娘花,http://em.21dtv.com/songs/60115816.mkv +听月+枫舞-小小新娘花,http://em.21dtv.com/songs/60078733.mkv +云菲菲-小小新娘花,http://em.21dtv.com/songs/60049826.mkv +金城-小小新娘花,http://em.21dtv.com/songs/60049825.mkv +汤灿-湘西小阿妹,http://em.21dtv.com/songs/60114641.mkv +彩虹乐队-X X X,http://em.21dtv.com/songs/60120549.mkv +詹雅雯-相信我一摆(无原唱),http://em.21dtv.com/songs/60048854.mkv +魏一宁-小心我外婆,http://em.21dtv.com/songs/60108167.mkv +杨乃文-小心我撒野,http://em.21dtv.com/songs/60097486.mkv +陈心蕊-谢谢我妈妈,http://em.21dtv.com/songs/60120080.mkv +任和-相信我的心,http://em.21dtv.com/songs/60071312.mkv +刘品言-谢谢我的我,http://em.21dtv.com/songs/60110016.mkv +刘品言-谢谢我的我,http://em.21dtv.com/songs/60109178.mkv +王君默-想想我的爱,http://em.21dtv.com/songs/60049260.mkv +黄乙玲-相信我的爱,http://em.21dtv.com/songs/60048853.mkv +苏春梅-血写桃花扇(戏曲),http://em.21dtv.com/songs/60093075.mkv +糖藈-像消失一样,http://em.21dtv.com/songs/60102605.mkv +佚名-小小水仙花,http://em.21dtv.com/songs/60049824.mkv +戴军-小小少年郎,http://em.21dtv.com/songs/60089310.mkv +朱安禹-小小水蜜桃,http://em.21dtv.com/songs/60049823.mkv +水蜜桃-小小水蜜桃,http://em.21dtv.com/songs/60049822.mkv +吴建豪-想像十个你(演唱会),http://em.21dtv.com/songs/60049265.mkv +昊恩+家家-星星数不清,http://em.21dtv.com/songs/60051118.mkv +周裔平-新寻人启事,http://em.21dtv.com/songs/60127859.mkv +朵久央+潘兴周-心向黔东南,http://em.21dtv.com/songs/60132522.mkv +吉克隽逸-谢谢你再见,http://em.21dtv.com/songs/60121485.mkv +那英-相信那一天,http://em.21dtv.com/songs/60048839.mkv +黄维德+唐艾萱-小心女人香,http://em.21dtv.com/songs/60049838.mkv +彭丽媛-谢谢你朋友,http://em.21dtv.com/songs/60101349.mkv +韩冰-谢谢你朋友,http://em.21dtv.com/songs/60087005.mkv +陈仁丰-谢谢你捧场,http://em.21dtv.com/songs/60050070.mkv +戴登仲-谢谢你来过,http://em.21dtv.com/songs/60116848.mkv +邢傲伟+童苡萱-谢谢你和我,http://em.21dtv.com/songs/60116286.mkv +群星-谢谢你的爱,http://em.21dtv.com/songs/60120854.mkv +伊能静+秦昊-谢谢你的爱,http://em.21dtv.com/songs/60110838.mkv +祝建林-谢谢你的爱,http://em.21dtv.com/songs/60093725.mkv +费阳-谢谢你的爱,http://em.21dtv.com/songs/60078757.mkv +刘德华-谢谢您的爱,http://em.21dtv.com/songs/60050083.mkv +刘德华-谢谢您的爱(演唱会),http://em.21dtv.com/songs/60050082.mkv +卓依婷-谢谢你的爱,http://em.21dtv.com/songs/60050055.mkv +刘德华-谢谢你的爱,http://em.21dtv.com/songs/60050054.mkv +李心洁-谢谢你的爱,http://em.21dtv.com/songs/60050052.mkv +杨天经-谢谢你的爱(演唱会),http://em.21dtv.com/songs/60050051.mkv +谢和弦-谢谢你爱我,http://em.21dtv.com/songs/60129615.mkv +于文文-谢谢你爱我,http://em.21dtv.com/songs/60107477.mkv +于文文-谢谢你爱我,http://em.21dtv.com/songs/60105568.mkv +MAKIYO-谢谢你爱我,http://em.21dtv.com/songs/60062106.mkv +容祖儿-谢谢你爱我,http://em.21dtv.com/songs/60050046.mkv +水晶乐坊-新新茉莉花(演唱会),http://em.21dtv.com/songs/60050973.mkv +胡斌-相信玫瑰花,http://em.21dtv.com/songs/60071311.mkv +阳光天使-笑笑没烦恼,http://em.21dtv.com/songs/60072633.mkv +童唱-小小螺丝帽,http://em.21dtv.com/songs/60049814.mkv +施文彬-闲闲来泡茶,http://em.21dtv.com/songs/60095576.mkv +萧闳仁-小小流浪狗,http://em.21dtv.com/songs/60049813.mkv +雪-潇湘兰花吟,http://em.21dtv.com/songs/60133064.mkv +陈义正-雪下了等待,http://em.21dtv.com/songs/60114196.mkv +尹光-乡下佬出城,http://em.21dtv.com/songs/60092545.mkv +郑锦昌-乡下佬出城(演唱会),http://em.21dtv.com/songs/60048580.mkv +谢金燕-笑笑看一切,http://em.21dtv.com/songs/60049962.mkv +成威-笑笑看前途,http://em.21dtv.com/songs/60049961.mkv +白冰冰-笑笑看前途,http://em.21dtv.com/songs/60049960.mkv +唐俪-笑笑看今世,http://em.21dtv.com/songs/60111783.mkv +马智宇-新喜结良缘,http://em.21dtv.com/songs/60131991.mkv +李强-信息化之歌,http://em.21dtv.com/songs/60107785.mkv +高洪章-新小河淌水(演唱会),http://em.21dtv.com/songs/60061777.mkv +郑子寒-小小和平鸽,http://em.21dtv.com/songs/60086031.mkv +吴依琳-小小贺年片,http://em.21dtv.com/songs/60078730.mkv +牛欣欣-小小贺年片,http://em.21dtv.com/songs/60049810.mkv +刘美君-嬉戏号客机(演唱会),http://em.21dtv.com/songs/60048058.mkv +年少-写信给自己(无原唱),http://em.21dtv.com/songs/60050016.mkv +尹光-新雪姑七友(演唱会),http://em.21dtv.com/songs/60050977.mkv +慕钰华-想呷归暗暝(无原唱),http://em.21dtv.com/songs/60049032.mkv +晟瑶-心向风随去,http://em.21dtv.com/songs/60068861.mkv +陈盈洁-笑笑放乎开,http://em.21dtv.com/songs/60049959.mkv +杨丞琳-想幸福的人,http://em.21dtv.com/songs/60068837.mkv +潘晓峰-星星的祝福,http://em.21dtv.com/songs/60070088.mkv +苏麦-熏香的月亮,http://em.21dtv.com/songs/60068892.mkv +方怡萍-咸咸的眼泪(无原唱),http://em.21dtv.com/songs/60048482.mkv +张含韵-星星的眼睛,http://em.21dtv.com/songs/60051110.mkv +小虎队-星星的约会,http://em.21dtv.com/songs/60115116.mkv +小虎队-星星的约会,http://em.21dtv.com/songs/60051111.mkv +梦成-心系钓鱼岛,http://em.21dtv.com/songs/60070083.mkv +胡彦斌-小小的心愿,http://em.21dtv.com/songs/60072630.mkv +徐国人-小希的相机,http://em.21dtv.com/songs/60087876.mkv +马健涛+刘云丽-小小的幸福,http://em.21dtv.com/songs/60122277.mkv +宝贝小雨-小小的幸福,http://em.21dtv.com/songs/60049806.mkv +张宇-小小的太阳,http://em.21dtv.com/songs/60049803.mkv +圆圆-小小的童话,http://em.21dtv.com/songs/60086030.mkv +晓月-星星的誓言,http://em.21dtv.com/songs/60067668.mkv +韦昕辰-小小的少年,http://em.21dtv.com/songs/60106446.mkv +任静-星星的世界,http://em.21dtv.com/songs/60118319.mkv +非主流-湘乡单身歌,http://em.21dtv.com/songs/60084186.mkv +王绎龙-小小的配角,http://em.21dtv.com/songs/60111283.mkv +万塘路18号-小小的蚂蚁,http://em.21dtv.com/songs/60114963.mkv +孙俪-小小的梦想,http://em.21dtv.com/songs/60049801.mkv +杨乃文-星星堆满天,http://em.21dtv.com/songs/60051113.mkv +华子+周子琰+回音哥+张楚+侯磊-星星的妈妈,http://em.21dtv.com/songs/60099821.mkv +邓丽君-小小的秘密,http://em.21dtv.com/songs/60049802.mkv +夏克立+黄嘉千+夏天-小小的美好,http://em.21dtv.com/songs/60116678.mkv +佚名-小小的礼品,http://em.21dtv.com/songs/60049800.mkv +宋孟君-星星的路口,http://em.21dtv.com/songs/60094471.mkv +关颖-星星的泪光,http://em.21dtv.com/songs/60051109.mkv +佚名-心像刀块割,http://em.21dtv.com/songs/60050642.mkv +王壹珊-心像刀块割(无原唱),http://em.21dtv.com/songs/60050641.mkv +龙飘飘-祥祥都吉祥,http://em.21dtv.com/songs/60065194.mkv +佘诗曼-星星的加冕,http://em.21dtv.com/songs/60092286.mkv +本兮-下雪的季节,http://em.21dtv.com/songs/60129211.mkv +苏运莹-香香的幻想,http://em.21dtv.com/songs/60130690.mkv +区瑞强-新鲜的感觉,http://em.21dtv.com/songs/60092376.mkv +华语群星-星星的爸爸,http://em.21dtv.com/songs/60120385.mkv +梁静茹-小小的爱情,http://em.21dtv.com/songs/60049799.mkv +徐紫淇-行行出状元,http://em.21dtv.com/songs/60126917.mkv +徐紫淇-行行出状元,http://em.21dtv.com/songs/60125574.mkv +平安-星星不眨眼,http://em.21dtv.com/songs/60118539.mkv +孙佳-小小兵之家,http://em.21dtv.com/songs/60086029.mkv +巫启贤-相信不相信,http://em.21dtv.com/songs/60048837.mkv +马俊伟+陈建颖-新细胞时代,http://em.21dtv.com/songs/60050964.mkv +佚名-小小百合花,http://em.21dtv.com/songs/60049796.mkv +邓丽君-星,http://em.21dtv.com/songs/60112990.mkv +李丽霞+谭炳文-星星爱月亮,http://em.21dtv.com/songs/60092783.mkv +姚贝娜-相信爱很美,http://em.21dtv.com/songs/60117647.mkv +伍思凯-希望在这里,http://em.21dtv.com/songs/60047998.mkv +橙子焦糖-像我这样做,http://em.21dtv.com/songs/60106048.mkv +何耀珊-像我这样的,http://em.21dtv.com/songs/60049399.mkv +戴梅君+张燕清-希望再相逢,http://em.21dtv.com/songs/60084145.mkv +张燕清+戴梅君-希望再相逢,http://em.21dtv.com/songs/60070024.mkv +方怡萍+李明洋-希望再相逢,http://em.21dtv.com/songs/60047997.mkv +久登-像我这款人,http://em.21dtv.com/songs/60049397.mkv +后弦-下完这场雨,http://em.21dtv.com/songs/60133456.mkv +后弦-下完这场雨,http://em.21dtv.com/songs/60133455.mkv +后弦-下完这场雨,http://em.21dtv.com/songs/60131241.mkv +后弦-下完这场雨,http://em.21dtv.com/songs/60127809.mkv +林姗-希望在春天,http://em.21dtv.com/songs/60066450.mkv +胡越山-心窝再不痛,http://em.21dtv.com/songs/60050630.mkv +任贤齐-希望有一天,http://em.21dtv.com/songs/60047996.mkv +佚名-像雾又像花,http://em.21dtv.com/songs/60049416.mkv +林淑蓉-像雾又像花,http://em.21dtv.com/songs/60049415.mkv +朱咪咪-像雾又像花(演唱会),http://em.21dtv.com/songs/60049414.mkv +谢雷-像雾又像花(演唱会),http://em.21dtv.com/songs/60049413.mkv +左有顺-相忘于江湖,http://em.21dtv.com/songs/60130283.mkv +陈楚生-相望于江湖,http://em.21dtv.com/songs/60048813.mkv +陈楚生-相忘于江湖,http://em.21dtv.com/songs/60048811.mkv +周子轩-新问心无愧,http://em.21dtv.com/songs/60126718.mkv +周璇-许我向你看,http://em.21dtv.com/songs/60051560.mkv +林青霞-许我向你看,http://em.21dtv.com/songs/60051559.mkv +群星-系唔系既唧,http://em.21dtv.com/songs/60048230.mkv +方力申-希望我听错,http://em.21dtv.com/songs/60092754.mkv +卢春如-希望我能飞,http://em.21dtv.com/songs/60047995.mkv +马雨梵-想忘忘不得,http://em.21dtv.com/songs/60130903.mkv +萧亚轩-先问你自己,http://em.21dtv.com/songs/60048459.mkv +王野-想为你做的,http://em.21dtv.com/songs/60049255.mkv +阿吉仔-希望你作伴,http://em.21dtv.com/songs/60047993.mkv +王识贤-希望你开心,http://em.21dtv.com/songs/60068818.mkv +龙千玉-希望你会知,http://em.21dtv.com/songs/60047991.mkv +许绍洋-希望你还在,http://em.21dtv.com/songs/60047989.mkv +郭富城-希望你还好,http://em.21dtv.com/songs/60047988.mkv +黄宇光-希望你会懂,http://em.21dtv.com/songs/60084144.mkv +苏慧伦+张震岳-希望你会懂,http://em.21dtv.com/songs/60047990.mkv +SARA-心为你而碎,http://em.21dtv.com/songs/60061770.mkv +郑源+郑东-希望你懂我,http://em.21dtv.com/songs/60086968.mkv +怪才小龙-心为你等待,http://em.21dtv.com/songs/60071340.mkv +陈泳泼-想为你唱歌,http://em.21dtv.com/songs/60115500.mkv +郭静-像我们这样,http://em.21dtv.com/songs/60078666.mkv +陈百潭-希望唛下雨,http://em.21dtv.com/songs/60047985.mkv +洪禄云+枫舞-新网络情缘,http://em.21dtv.com/songs/60094203.mkv +毛宁-希望亮起来(演唱会),http://em.21dtv.com/songs/60078504.mkv +郑素伶-行袜尽的路(无原唱),http://em.21dtv.com/songs/60019951.mkv +李芊慧-希望搁做堆(无原唱),http://em.21dtv.com/songs/60095632.mkv +苏路-笑我放抹开,http://em.21dtv.com/songs/60104384.mkv +艺人大合唱-希望的种子,http://em.21dtv.com/songs/60088514.mkv +杨培安-希望的种子,http://em.21dtv.com/songs/60047984.mkv +群星-希望的种子,http://em.21dtv.com/songs/60047983.mkv +张祥洪-醒悟的滋味,http://em.21dtv.com/songs/60084269.mkv +林姗-虚伪的偎靠,http://em.21dtv.com/songs/60051541.mkv +邓小伟-小伟的情歌,http://em.21dtv.com/songs/60080946.mkv +佚名-希望的期待,http://em.21dtv.com/songs/60047981.mkv +于湉-夏娃的苹果,http://em.21dtv.com/songs/60116535.mkv +张信哲-想我的理由,http://em.21dtv.com/songs/60049258.mkv +伍佰-稀微的风中,http://em.21dtv.com/songs/60048037.mkv +林子祥-小屋的风雨,http://em.21dtv.com/songs/60049788.mkv +吴卓光-夏完淳解京,http://em.21dtv.com/songs/60087554.mkv +邓超+小臭臭-小尾巴之歌,http://em.21dtv.com/songs/60114816.mkv +勤琴-想忘不能忘,http://em.21dtv.com/songs/60099817.mkv +大哲-笑我不浪漫,http://em.21dtv.com/songs/60078744.mkv +江美琪-希望变成你,http://em.21dtv.com/songs/60047980.mkv +王杰-向太阳怒吼,http://em.21dtv.com/songs/60049342.mkv +林姗-心痛也欢喜,http://em.21dtv.com/songs/60050621.mkv +吴倩莲-新天涯歌女,http://em.21dtv.com/songs/60050956.mkv +林逸欣-夏天协奏曲,http://em.21dtv.com/songs/60048414.mkv +张惠雅-心跳500(HD),http://em.21dtv.com/songs/10012782.mkv +罗正委-僰乡 天堂,http://em.21dtv.com/songs/60124349.mkv +爱朵女孩-像天使一样,http://em.21dtv.com/songs/60088268.mkv +爱朵女孩-象天使一样,http://em.21dtv.com/songs/60078661.mkv +孙语诺-夏天说分手,http://em.21dtv.com/songs/60080708.mkv +林师杰-小天使的话,http://em.21dtv.com/songs/60111196.mkv +秋裤大叔-心太软续集,http://em.21dtv.com/songs/60108757.mkv +赵小兵-心太软续集,http://em.21dtv.com/songs/60063442.mkv +林子娟-心痛阮甘愿,http://em.21dtv.com/songs/60050619.mkv +储兰兰-小提琴对花(演唱会),http://em.21dtv.com/songs/60078724.mkv +蔡秋凤-心头冷酸酸,http://em.21dtv.com/songs/60078790.mkv +安以轩-心跳零距离,http://em.21dtv.com/songs/60089807.mkv +张郎-心痛留给自,http://em.21dtv.com/songs/60103287.mkv +钟汉良-新天龙八部,http://em.21dtv.com/songs/60096138.mkv +朱海君-心痛看祙到,http://em.21dtv.com/songs/60114587.mkv +朱海君-心痛看礯到,http://em.21dtv.com/songs/60113604.mkv +GOGO+MEME-夏天结束前,http://em.21dtv.com/songs/60048413.mkv +黄乙玲-心痛酒来洗,http://em.21dtv.com/songs/60050618.mkv +郭晓杰-心痛后明白,http://em.21dtv.com/songs/60078789.mkv +张铁-小兔儿乖乖,http://em.21dtv.com/songs/60049769.mkv +穆言-心痛的滋味,http://em.21dtv.com/songs/60078787.mkv +张蓉蓉-心痛的滋味,http://em.21dtv.com/songs/60050617.mkv +司文-心痛的滋味,http://em.21dtv.com/songs/60050616.mkv +刘育绫-心痛的滋味,http://em.21dtv.com/songs/60050615.mkv +谢高峰-心疼的印章,http://em.21dtv.com/songs/60119981.mkv +袁洁琼-夏天的影子,http://em.21dtv.com/songs/60085987.mkv +郑君威+萧玉芬-心痛第一名,http://em.21dtv.com/songs/60078788.mkv +S.H.E-夏天的微笑,http://em.21dtv.com/songs/60048408.mkv +许飞-夏天的味道,http://em.21dtv.com/songs/60048411.mkv +海雷-夏天的味道,http://em.21dtv.com/songs/60048410.mkv +阿布-夏天的味道,http://em.21dtv.com/songs/60048409.mkv +古巨基-夏天的童话,http://em.21dtv.com/songs/60048407.mkv +箱子君-心痛的誓言,http://em.21dtv.com/songs/60135624.mkv +九江天空+侯丽娜-夏天的思念,http://em.21dtv.com/songs/60093624.mkv +九江天空-夏天的思念,http://em.21dtv.com/songs/60085986.mkv +潘美辰-心痛的伤口,http://em.21dtv.com/songs/60050614.mkv +邬祯琳-夏天的秘密,http://em.21dtv.com/songs/60084166.mkv +蔡小虎-心痛的恋情,http://em.21dtv.com/songs/60050612.mkv +张惠妹-夏天的浪花(演唱会),http://em.21dtv.com/songs/60048405.mkv +蔡丽津-心痛的恋歌,http://em.21dtv.com/songs/60135700.mkv +芬华-心痛的开始,http://em.21dtv.com/songs/60135664.mkv +张蓉蓉-心疼的脚步,http://em.21dtv.com/songs/60050582.mkv +张赫宣-心痛的回音,http://em.21dtv.com/songs/60081827.mkv +林玉英-夏天的海边,http://em.21dtv.com/songs/60101399.mkv +杨千嬅-夏天的故事,http://em.21dtv.com/songs/60048404.mkv +杨千嬅-夏天的故事(演唱会),http://em.21dtv.com/songs/60048403.mkv +陈明-心痛的感觉,http://em.21dtv.com/songs/60078786.mkv +佚名-心痛的感觉,http://em.21dtv.com/songs/60050611.mkv +苏芮-心痛的感觉,http://em.21dtv.com/songs/60050610.mkv +林志炫-心痛的感觉,http://em.21dtv.com/songs/60050609.mkv +陈慧琳-夏天的绯闻,http://em.21dtv.com/songs/60048400.mkv +金城武-夏天的代志,http://em.21dtv.com/songs/60048399.mkv +周四亚-心疼的错误(HD),http://em.21dtv.com/songs/10012744.mkv +周诗雅-心疼的错误,http://em.21dtv.com/songs/60101302.mkv +毛泽少-心头的彩虹,http://em.21dtv.com/songs/60133911.mkv +林小龙-夏天的爱恋,http://em.21dtv.com/songs/60116967.mkv +佚名-心痛不再有,http://em.21dtv.com/songs/60050607.mkv +黄荻钧-系统不支持,http://em.21dtv.com/songs/60121187.mkv +韩庚-心疼笔记本,http://em.21dtv.com/songs/60088950.mkv +干露露+葛笑-携手走一生,http://em.21dtv.com/songs/60113442.mkv +徐佳莹-潇洒走一回,http://em.21dtv.com/songs/60119565.mkv +常石磊-潇洒走一回,http://em.21dtv.com/songs/60118534.mkv +段红-潇洒走一回,http://em.21dtv.com/songs/60109479.mkv +Frank秋枫-潇洒走一回,http://em.21dtv.com/songs/60103775.mkv +胡海泉+柳枝-潇洒走一回,http://em.21dtv.com/songs/60095054.mkv +馨梓-潇洒走一回,http://em.21dtv.com/songs/60088974.mkv +叶慧婷-潇洒走一回(演唱会),http://em.21dtv.com/songs/60065209.mkv +卓依婷-潇洒走一回,http://em.21dtv.com/songs/60049469.mkv +赵学而-潇洒走一回,http://em.21dtv.com/songs/60049468.mkv +叶倩文-潇洒走一回,http://em.21dtv.com/songs/60049467.mkv +叶倩文-潇洒走一回(演唱会),http://em.21dtv.com/songs/60049466.mkv +汪明荃-潇洒走一回(演唱会),http://em.21dtv.com/songs/60049465.mkv +罗文-潇洒走一回(演唱会),http://em.21dtv.com/songs/60049464.mkv +佚名-相识在童年,http://em.21dtv.com/songs/60048716.mkv +草蜢-限时专送abc,http://em.21dtv.com/songs/60048533.mkv +蔡自刚-相思在秋天,http://em.21dtv.com/songs/60065189.mkv +孤独浪子-新屌丝之歌,http://em.21dtv.com/songs/60128979.mkv +晓月-相思知多少,http://em.21dtv.com/songs/60072604.mkv +邓丽君-心事知多少,http://em.21dtv.com/songs/60050510.mkv +张卫健-新禅院钟声,http://em.21dtv.com/songs/60050798.mkv +谭炳文-新禅院钟声(演唱会),http://em.21dtv.com/songs/60050797.mkv +林淑鹃-相思夜夜深,http://em.21dtv.com/songs/60091486.mkv +郑少秋-心事有谁知,http://em.21dtv.com/songs/60050509.mkv +薛家燕-心事有谁知,http://em.21dtv.com/songs/60050508.mkv +君子-携手游人间,http://em.21dtv.com/songs/60105685.mkv +张真-携手游人间,http://em.21dtv.com/songs/60049990.mkv +佚名-相思夜绵绵(无原唱),http://em.21dtv.com/songs/60048796.mkv +谢世超-相思与苦酒,http://em.21dtv.com/songs/60086001.mkv +陈振-像是一个梦,http://em.21dtv.com/songs/60117343.mkv +陈晨-小沈阳哥哥,http://em.21dtv.com/songs/60049729.mkv +大哲-心碎一百遍,http://em.21dtv.com/songs/60090866.mkv +潘佩莉-心酸为着你,http://em.21dtv.com/songs/60072648.mkv +黄乙玲-相思无药医,http://em.21dtv.com/songs/60048792.mkv +马常宝+单宝娟-相思万物烟,http://em.21dtv.com/songs/60124712.mkv +马常宝-相思万物烟,http://em.21dtv.com/songs/60078589.mkv +佚名-相思万千重,http://em.21dtv.com/songs/60048790.mkv +曾航生-相思万千重,http://em.21dtv.com/songs/60048789.mkv +杨烈-相思无了时(无原唱),http://em.21dtv.com/songs/60048791.mkv +小老头-相思万缕情,http://em.21dtv.com/songs/60106794.mkv +李茂山-相思未了情,http://em.21dtv.com/songs/60091373.mkv +杜德伟-献上我的心,http://em.21dtv.com/songs/60048553.mkv +李嘉-心事无底藏,http://em.21dtv.com/songs/60050507.mkv +方瑞娥-相思无病名,http://em.21dtv.com/songs/60065188.mkv +张可-孝顺是什么,http://em.21dtv.com/songs/60078738.mkv +胡斌-心事谁人知,http://em.21dtv.com/songs/60071339.mkv +张惠妹-心事谁人知,http://em.21dtv.com/songs/60050506.mkv +小凤凤-心事谁人知,http://em.21dtv.com/songs/60050505.mkv +沈文程-心事谁人知,http://em.21dtv.com/songs/60050504.mkv +黄乙玲-心事谁人知,http://em.21dtv.com/songs/60050503.mkv +军歌-献身使命歌,http://em.21dtv.com/songs/60070035.mkv +王麟+老猫-许sir思密达,http://em.21dtv.com/songs/60078959.mkv +羽泉-向上人生路,http://em.21dtv.com/songs/60065204.mkv +杨小弈-小三惹的祸,http://em.21dtv.com/songs/60061761.mkv +思予+金久哲-潇洒去远方,http://em.21dtv.com/songs/60126924.mkv +刘福助-心事千万条(无原唱),http://em.21dtv.com/songs/60050502.mkv +杨皓楠+杨幸-雪山千年恋,http://em.21dtv.com/songs/60129279.mkv +杨皓楠+杨幸-雪山千年恋,http://em.21dtv.com/songs/60116947.mkv +陈心蕊-小手牵大手,http://em.21dtv.com/songs/60127551.mkv +王婧-心随你远行,http://em.21dtv.com/songs/60128218.mkv +云中鹏-新手女司机,http://em.21dtv.com/songs/60134862.mkv +BY2-新少女祈祷,http://em.21dtv.com/songs/60050929.mkv +吴克群-先生你哪位(演唱会),http://em.21dtv.com/songs/60048457.mkv +本兮-小三你好贱,http://em.21dtv.com/songs/60078716.mkv +伍思凯-心上没有心,http://em.21dtv.com/songs/60050463.mkv +刘德华-相识没缘份,http://em.21dtv.com/songs/60048711.mkv +关健-小三没有错,http://em.21dtv.com/songs/60049722.mkv +林志颖-现实梦想家,http://em.21dtv.com/songs/60048502.mkv +佚名-相思梦难圆,http://em.21dtv.com/songs/60048775.mkv +SHELLY佳-相思泪易醒,http://em.21dtv.com/songs/60068828.mkv +邵大伦-小手拉小手,http://em.21dtv.com/songs/60086995.mkv +陈瑞-心碎了无痕,http://em.21dtv.com/songs/60131953.mkv +张学友-心碎了无痕,http://em.21dtv.com/songs/60050555.mkv +陈晓东-心碎了无痕,http://em.21dtv.com/songs/60050554.mkv +张学友-心碎了无痕(演唱会),http://em.21dtv.com/songs/60050553.mkv +安东-心碎了落花,http://em.21dtv.com/songs/60050552.mkv +吉它在倾诉-心是莲花开,http://em.21dtv.com/songs/60066486.mkv +梁静茹-小手拉大手,http://em.21dtv.com/songs/60049748.mkv +萧全-消失了彩虹,http://em.21dtv.com/songs/60066469.mkv +张智霖-相思苦难捱,http://em.21dtv.com/songs/60087821.mkv +张智霖+许秋怡-相思苦难挨,http://em.21dtv.com/songs/60048766.mkv +佚名-心酸讲无话,http://em.21dtv.com/songs/60050530.mkv +羽泉-向世界尽头,http://em.21dtv.com/songs/60049341.mkv +佚名-笑声救地球,http://em.21dtv.com/songs/60049950.mkv +廖伟雄-笑声救地球,http://em.21dtv.com/songs/60049949.mkv +柳丁-向世界出发,http://em.21dtv.com/songs/60097537.mkv +T-RUSH-新生活运动,http://em.21dtv.com/songs/60050935.mkv +辛晓琪-心是会痛的,http://em.21dtv.com/songs/60050513.mkv +五公子-消失海平面,http://em.21dtv.com/songs/60122474.mkv +李艺明-相思红棉树,http://em.21dtv.com/songs/60105990.mkv +荣联合-相思红豆情,http://em.21dtv.com/songs/60078585.mkv +冷酷-相思化蝶飞,http://em.21dtv.com/songs/60113281.mkv +G.O+MIR-像傻瓜一样,http://em.21dtv.com/songs/60084207.mkv +JUN JIN-像傻瓜一样(演唱会),http://em.21dtv.com/songs/60084206.mkv +张伟文-新山歌姻缘(演唱会),http://em.21dtv.com/songs/60050927.mkv +施文彬-心酸过一暗,http://em.21dtv.com/songs/60050528.mkv +张娜拉-想说给你听,http://em.21dtv.com/songs/60078641.mkv +邓丽君-心酸孤单女,http://em.21dtv.com/songs/60050527.mkv +黄思婷-相思归暗暝,http://em.21dtv.com/songs/60048748.mkv +澎恰恰+黄妃-心随风在飞,http://em.21dtv.com/songs/60050534.mkv +张学友+汤宝如-相思风雨中,http://em.21dtv.com/songs/60048746.mkv +张可颐+杨天经-相思风雨中(演唱会),http://em.21dtv.com/songs/60048745.mkv +好妹妹乐队-相思赋予谁,http://em.21dtv.com/songs/60072603.mkv +音乐走廊+歌一生-香山枫叶红,http://em.21dtv.com/songs/60116374.mkv +李如麟-心事放心内(无原唱),http://em.21dtv.com/songs/60050501.mkv +谭咏麟-相识非偶然,http://em.21dtv.com/songs/60048710.mkv +张学友-相识非偶然(演唱会),http://em.21dtv.com/songs/60048709.mkv +谭咏麟-相识非偶然(演唱会),http://em.21dtv.com/songs/60048708.mkv +陈慧娴-相识非偶然(演唱会),http://em.21dtv.com/songs/60048707.mkv +于台烟-相思的种子,http://em.21dtv.com/songs/60048741.mkv +王渝-相思的种子,http://em.21dtv.com/songs/60048740.mkv +张艾莉-心酸的滋味,http://em.21dtv.com/songs/60135231.mkv +韩宝仪-相思的滋味,http://em.21dtv.com/songs/60048742.mkv +卓玛加-雪山的祝福(演唱会),http://em.21dtv.com/songs/60051734.mkv +Kelly-现实的遗忘,http://em.21dtv.com/songs/60087200.mkv +潘嘉丽-限时的遗忘,http://em.21dtv.com/songs/60048532.mkv +李青+王爱华-相思的夜里,http://em.21dtv.com/songs/60085999.mkv +蒋婴-相思的夜里,http://em.21dtv.com/songs/60085998.mkv +陈宏庆-小三的眼泪,http://em.21dtv.com/songs/60078714.mkv +大刚-相思的眼泪,http://em.21dtv.com/songs/60066458.mkv +王娜-相识的缘分,http://em.21dtv.com/songs/60107062.mkv +王瑞霞-心酸的约定(无原唱),http://em.21dtv.com/songs/60050526.mkv +陈宏庆-小三的心酸,http://em.21dtv.com/songs/60078713.mkv +小文-心碎的温柔,http://em.21dtv.com/songs/60099968.mkv +任丁-心碎的温柔,http://em.21dtv.com/songs/60078780.mkv +王月华-相思的味道,http://em.21dtv.com/songs/60086977.mkv +心瑶-消失的王城,http://em.21dtv.com/songs/60125588.mkv +成铭-心碎的叹息,http://em.21dtv.com/songs/60086044.mkv +邱芸子-心碎的恰恰,http://em.21dtv.com/songs/60050549.mkv +施文彬-心碎的情歌,http://em.21dtv.com/songs/60095567.mkv +黑妹-心酸的情歌(演唱会),http://em.21dtv.com/songs/60078778.mkv +巫启贤-心酸的情歌,http://em.21dtv.com/songs/60050525.mkv +彭佳慧-心酸的情歌,http://em.21dtv.com/songs/60050524.mkv +刘德华-心酸的情歌,http://em.21dtv.com/songs/60050523.mkv +刘德华-心酸的情歌(演唱会),http://em.21dtv.com/songs/60050522.mkv +卓依婷-心锁等你合,http://em.21dtv.com/songs/60050571.mkv +华少陈-现实的年代,http://em.21dtv.com/songs/60133428.mkv +郑基高+洙宪-相似的模样,http://em.21dtv.com/songs/60114128.mkv +那英-心酸的浪漫,http://em.21dtv.com/songs/60050521.mkv +阿鲁阿卓-心上的罗加,http://em.21dtv.com/songs/60114853.mkv +李翊君-相思的烈酒,http://em.21dtv.com/songs/60048738.mkv +豆子民-新时代恋歌,http://em.21dtv.com/songs/60078870.mkv +RICH BOY-新时代恋歌,http://em.21dtv.com/songs/60065258.mkv +三多-心碎的寂寞,http://em.21dtv.com/songs/60087009.mkv +张祥洪-心碎的结局,http://em.21dtv.com/songs/60086043.mkv +周瑾-小三的结局,http://em.21dtv.com/songs/60072626.mkv +凤飞飞-潇洒的季节,http://em.21dtv.com/songs/60049454.mkv +王丽达-宣誓的画面,http://em.21dtv.com/songs/60071381.mkv +群星-消失的光阴,http://em.21dtv.com/songs/60109574.mkv +完玛三智-心上的姑娘,http://em.21dtv.com/songs/60065240.mkv +曾星瑜-心酸的过客,http://em.21dtv.com/songs/60126967.mkv +赵鑫-消失的风景,http://em.21dtv.com/songs/60115427.mkv +唐涛-消失的村庄,http://em.21dtv.com/songs/60103171.mkv +何乌兰-心上的草原,http://em.21dtv.com/songs/60070077.mkv +黄小琥-心酸的成熟,http://em.21dtv.com/songs/60117411.mkv +黄小琥-心酸的成熟,http://em.21dtv.com/songs/60116413.mkv +杭娇-相思的缠绕,http://em.21dtv.com/songs/60048737.mkv +佚名-心酸的承诺,http://em.21dtv.com/songs/60050520.mkv +蔡依林-消失的城堡,http://em.21dtv.com/songs/60049441.mkv +蔡依林-消失的城堡(演唱会),http://em.21dtv.com/songs/60049440.mkv +佚名-心碎的抱歉,http://em.21dtv.com/songs/60050545.mkv +霍正奇-潇洒的背后,http://em.21dtv.com/songs/60049453.mkv +曹燕平-小三的表白,http://em.21dtv.com/songs/60072625.mkv +大哲-小三的爱情,http://em.21dtv.com/songs/60120427.mkv +贺一航-心碎的爱情,http://em.21dtv.com/songs/60103580.mkv +-消逝的爱情,http://em.21dtv.com/songs/60090385.mkv +5566-消逝的爱情(无原唱),http://em.21dtv.com/songs/60049443.mkv +王中龙-相思崇武港(演唱会),http://em.21dtv.com/songs/60078581.mkv +罗力威-现实不重要(演唱会),http://em.21dtv.com/songs/60078555.mkv +范思威-新身不由己,http://em.21dtv.com/songs/60050930.mkv +上明-心碎伴相思,http://em.21dtv.com/songs/60131130.mkv +郭小霖-相识不相恋,http://em.21dtv.com/songs/60048706.mkv +王爱华-相思伴我忧,http://em.21dtv.com/songs/60093873.mkv +黄敏莎-向上吧少年,http://em.21dtv.com/songs/60096567.mkv +佚名-相思比梦长,http://em.21dtv.com/songs/60048732.mkv +费玉清-相思比梦长,http://em.21dtv.com/songs/60048731.mkv +ROBYNN+KENDY-小说伴咖啡,http://em.21dtv.com/songs/60067642.mkv +黄妃-新十八姑娘,http://em.21dtv.com/songs/60050939.mkv +阿译-吓死宝宝了,http://em.21dtv.com/songs/60131927.mkv +叶贝文-吓死宝宝了,http://em.21dtv.com/songs/60122565.mkv +周艳泓-吓死宝宝了,http://em.21dtv.com/songs/60118456.mkv +许嘉文-吓死宝宝了,http://em.21dtv.com/songs/60117222.mkv +黑龙-潇洒爱一回,http://em.21dtv.com/songs/60089080.mkv +罗时丰-心所爱的人,http://em.21dtv.com/songs/60134087.mkv +陈美安-心所爱的人,http://em.21dtv.com/songs/60068860.mkv +佚名-心所爱的人,http://em.21dtv.com/songs/60050569.mkv +罗时丰-心所爱的人,http://em.21dtv.com/songs/60050568.mkv +黄品源-心所爱的人,http://em.21dtv.com/songs/60050567.mkv +陈思安-心所爱的人,http://em.21dtv.com/songs/60050566.mkv +蔡小虎-心所爱的人,http://em.21dtv.com/songs/60050565.mkv +文夏-心所爱的人(无原唱),http://em.21dtv.com/songs/60050564.mkv +潘越云-心所爱的人(无原唱),http://em.21dtv.com/songs/60050563.mkv +SNH48-夏日真心话,http://em.21dtv.com/songs/60117488.mkv +谭咏麟+李克勤-夏日之神话(演唱会),http://em.21dtv.com/songs/60048394.mkv +李克勤-夏日之神话(演唱会),http://em.21dtv.com/songs/60048393.mkv +佚名-血染紫禁城,http://em.21dtv.com/songs/60051797.mkv +郭美美-夏日完结篇,http://em.21dtv.com/songs/60048390.mkv +黎明-夏日烧着了,http://em.21dtv.com/songs/60048389.mkv +荣杨-想让你幸福,http://em.21dtv.com/songs/60062874.mkv +阿军-想让你快乐,http://em.21dtv.com/songs/60114172.mkv +大厨-新人面桃花,http://em.21dtv.com/songs/60110110.mkv +汤旭-向日葵之歌,http://em.21dtv.com/songs/60049340.mkv +TOKYO D.-夏日狂想曲(无原唱),http://em.21dtv.com/songs/60048380.mkv +小树-向日葵人生,http://em.21dtv.com/songs/60118523.mkv +小树-向日葵人生,http://em.21dtv.com/songs/60078655.mkv +张悬-信任的样子,http://em.21dtv.com/songs/60051004.mkv +DREAM GIRLS-雪人的眼泪,http://em.21dtv.com/songs/60097657.mkv +贺敬轩-夏日的思念,http://em.21dtv.com/songs/60130767.mkv +佚名-昔日的恋歌,http://em.21dtv.com/songs/60048005.mkv +罗时丰-昔日的恋歌,http://em.21dtv.com/songs/60048004.mkv +甜美真+任丙伟-夏日的回忆,http://em.21dtv.com/songs/60063002.mkv +刘程伊-昔日的伙伴,http://em.21dtv.com/songs/60072593.mkv +女声-血染的风采,http://em.21dtv.com/songs/60051796.mkv +男声-血染的风采,http://em.21dtv.com/songs/60051795.mkv +龚月-血染的风采,http://em.21dtv.com/songs/60051794.mkv +董文华-血染的风采,http://em.21dtv.com/songs/60051793.mkv +梅艳芳-血染的风采(演唱会),http://em.21dtv.com/songs/60051792.mkv +棒棒堂-夏日初体验,http://em.21dtv.com/songs/60048368.mkv +童唱-雪人不见了,http://em.21dtv.com/songs/60051727.mkv +姚莉-雪人不见了(无原唱),http://em.21dtv.com/songs/60051725.mkv +俞灏明+简美妍-陷入爱里面,http://em.21dtv.com/songs/60048536.mkv +张秀卿-心情壮维维,http://em.21dtv.com/songs/60069665.mkv +张秀卿-心情妆娾娾,http://em.21dtv.com/songs/60050442.mkv +八大巨星-喜庆新年乐,http://em.21dtv.com/songs/60078525.mkv +林德荣+颜薇恩-喜庆新年乐,http://em.21dtv.com/songs/60048171.mkv +林宗兴-想起昔当时,http://em.21dtv.com/songs/60065201.mkv +佚名-心情无人知,http://em.21dtv.com/songs/60050440.mkv +俞隆华-心情无人知,http://em.21dtv.com/songs/60046544.mkv +IU+Jang Yi jeong-星期五见面,http://em.21dtv.com/songs/60099003.mkv +陈慧琳-星期五档案,http://em.21dtv.com/songs/60051091.mkv +王莹-乡情甜又美,http://em.21dtv.com/songs/60131675.mkv +心跳男孩-星期天日记,http://em.21dtv.com/songs/60051089.mkv +龙千玉-心情谁了解(无原唱),http://em.21dtv.com/songs/60050439.mkv +杨子军-新七十二变,http://em.21dtv.com/songs/60112786.mkv +办桌二人组-小强怕拖鞋,http://em.21dtv.com/songs/60049699.mkv +林依伦-新青年制造,http://em.21dtv.com/songs/60050919.mkv +崔来宾-喜庆农家人,http://em.21dtv.com/songs/60099212.mkv +傲艺-想起你的美,http://em.21dtv.com/songs/60103088.mkv +杨钰莹-想起你的好,http://em.21dtv.com/songs/60078639.mkv +郑锦昌-新青梅竹马,http://em.21dtv.com/songs/60050918.mkv +双星-喜庆满华堂,http://em.21dtv.com/songs/60078524.mkv +袁攀+李涵-续曲玫瑰花,http://em.21dtv.com/songs/60078961.mkv +元明-新亲密爱人,http://em.21dtv.com/songs/60066489.mkv +邝美云-星期六约会,http://em.21dtv.com/songs/60051084.mkv +孙丹菲-星期六晚上,http://em.21dtv.com/songs/60051083.mkv +张阳阳-星期六深夜,http://em.21dtv.com/songs/60116807.mkv +杨宗宪-心情乱什么,http://em.21dtv.com/songs/60050436.mkv +苏青山-想起老妈妈,http://em.21dtv.com/songs/60084197.mkv +童丽-想起老妈妈,http://em.21dtv.com/songs/60078638.mkv +于文华-想起老妈妈,http://em.21dtv.com/songs/60049216.mkv +于文华+郁钧剑-想起老妈妈,http://em.21dtv.com/songs/60049215.mkv +李蕙敏-心情乱了点,http://em.21dtv.com/songs/60050435.mkv +成威-相亲来淡水,http://em.21dtv.com/songs/60048696.mkv +林姗-想起父母时,http://em.21dtv.com/songs/60067633.mkv +傅振辉-心情放乎开(无原唱),http://em.21dtv.com/songs/60050430.mkv +贾富营-相欠的拥抱,http://em.21dtv.com/songs/60135769.mkv +红陌-相欠的拥抱,http://em.21dtv.com/songs/60135626.mkv +谭晶-喜庆的日子,http://em.21dtv.com/songs/60078523.mkv +许茹芸-学琴的孩子,http://em.21dtv.com/songs/60092075.mkv +詹曼铃-谢去的花蕊(无原唱),http://em.21dtv.com/songs/60050034.mkv +小乔-小乔初嫁篇,http://em.21dtv.com/songs/60104071.mkv +小乔-小乔赤壁篇,http://em.21dtv.com/songs/60104072.mkv +李泽坚-相亲不相爱,http://em.21dtv.com/songs/60078574.mkv +伊雪-想起彼当时,http://em.21dtv.com/songs/60049213.mkv +陈小云-想起彼当时,http://em.21dtv.com/songs/60049212.mkv +办桌二人组-想起彼当时,http://em.21dtv.com/songs/60049211.mkv +方蓉-像朋友一样,http://em.21dtv.com/songs/60049393.mkv +荒山亮-心破碎的声,http://em.21dtv.com/songs/60118018.mkv +林为音+叶诺帆-心内只有你,http://em.21dtv.com/songs/60128119.mkv +方怡萍-心内只有你,http://em.21dtv.com/songs/60050408.mkv +马可谦-想念在心里,http://em.21dtv.com/songs/60116384.mkv +贺金-想你在丽江,http://em.21dtv.com/songs/60112268.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-新年主打歌,http://em.21dtv.com/songs/60078865.mkv +王真颜-想你一整夜,http://em.21dtv.com/songs/60049172.mkv +[Group] +groupName=十六万歌曲MV等 - 80 +牛欣欣+周张驰+何泽胜+刘姝辰-新年ye ye ye,http://em.21dtv.com/songs/60078832.mkv +巧千金-新年咿呀嘿,http://em.21dtv.com/songs/60078864.mkv +俊成-仙女与樵夫,http://em.21dtv.com/songs/60099755.mkv +黄志玮-想你一秒钟,http://em.21dtv.com/songs/60049170.mkv +周张弛+牛欣欣+等-新年又来到,http://em.21dtv.com/songs/60065256.mkv +刘斌-想你呀罗迪,http://em.21dtv.com/songs/60049168.mkv +邓志驹+蒋文瑞-新年游街市,http://em.21dtv.com/songs/60050904.mkv +林姗-想你月津港,http://em.21dtv.com/songs/60120666.mkv +天悦-想念一个人,http://em.21dtv.com/songs/60079997.mkv +吴森丰-新年已到来,http://em.21dtv.com/songs/60132294.mkv +群星-新年迎春花(演唱会),http://em.21dtv.com/songs/60050903.mkv +徐杰-想你心正痛,http://em.21dtv.com/songs/60084193.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-新年喜洋洋,http://em.21dtv.com/songs/60078861.mkv +八大巨星-新年喜洋洋,http://em.21dtv.com/songs/60078860.mkv +卓依婷-新年喜洋洋,http://em.21dtv.com/songs/60050901.mkv +林清国-想你想袜离(无原唱),http://em.21dtv.com/songs/60049164.mkv +佚名-想念新四军,http://em.21dtv.com/songs/60049205.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-新年新时代,http://em.21dtv.com/songs/60078863.mkv +八大巨星-新年喜眉梢,http://em.21dtv.com/songs/60089147.mkv +马智宇-想你想哭了,http://em.21dtv.com/songs/60131990.mkv +雨宗林-想你心会痛,http://em.21dtv.com/songs/60131967.mkv +彭佳慧-想你想疯了,http://em.21dtv.com/songs/60133705.mkv +彭佳慧-想你想疯了,http://em.21dtv.com/songs/60086984.mkv +郁可唯-想你想疯了,http://em.21dtv.com/songs/60080346.mkv +柯以敏-想你想疯了,http://em.21dtv.com/songs/60049159.mkv +卓依婷-新年行大运,http://em.21dtv.com/songs/60050874.mkv +阿悄-想你想到痛,http://em.21dtv.com/songs/60128499.mkv +佚名-新娘像朵花,http://em.21dtv.com/songs/60050914.mkv +夏天-想你写的歌,http://em.21dtv.com/songs/60078632.mkv +馨梓-想你想断肠,http://em.21dtv.com/songs/60090316.mkv +邓丽君-想你想断肠,http://em.21dtv.com/songs/60049158.mkv +佚名-想你想断肠(慢三),http://em.21dtv.com/songs/60049157.mkv +天籁天-想你想不够,http://em.21dtv.com/songs/60132336.mkv +群星-新年无限好,http://em.21dtv.com/songs/60126057.mkv +群星-新年无限好,http://em.21dtv.com/songs/60078859.mkv +大张伟-新年爽歪歪,http://em.21dtv.com/songs/60072660.mkv +萧亚轩-想念圣诞节,http://em.21dtv.com/songs/60049202.mkv +葛星-新娘上错床,http://em.21dtv.com/songs/60050913.mkv +汪佩蓉-想念是笨的,http://em.21dtv.com/songs/60049203.mkv +吴炜-想你让我醉,http://em.21dtv.com/songs/60087566.mkv +新八大巨星-新年热闹闹,http://em.21dtv.com/songs/60089318.mkv +陈志康+尹汇芬-新年热闹闹,http://em.21dtv.com/songs/60050899.mkv +徐怀钰-小女人的心,http://em.21dtv.com/songs/60049686.mkv +温兆伦-心内全是爱,http://em.21dtv.com/songs/60050400.mkv +周明辉-想你牵挂你,http://em.21dtv.com/songs/60087582.mkv +巧千金-新年扭一扭,http://em.21dtv.com/songs/60078856.mkv +江蕙-想你你无知,http://em.21dtv.com/songs/60095736.mkv +江蕙-想你你呒知,http://em.21dtv.com/songs/60049141.mkv +苏青山-想念你妈妈,http://em.21dtv.com/songs/60120886.mkv +刘丽娟-想念你妈妈,http://em.21dtv.com/songs/60113286.mkv +银纱-想念你的夜,http://em.21dtv.com/songs/60134368.mkv +李玟-想念你的夜,http://em.21dtv.com/songs/60080622.mkv +邵欣哲-想念你的人,http://em.21dtv.com/songs/60078636.mkv +SAYA-想念你的歌,http://em.21dtv.com/songs/60049197.mkv +郑中基-想念你的爱,http://em.21dtv.com/songs/60049196.mkv +郑中基-想念你的爱(演唱会),http://em.21dtv.com/songs/60049195.mkv +王瑞淇-想念陌生人,http://em.21dtv.com/songs/60078634.mkv +郭富城-想你每分钟,http://em.21dtv.com/songs/60049139.mkv +牛欣欣-新年来做客,http://em.21dtv.com/songs/60078854.mkv +双星-新年乐逍遥,http://em.21dtv.com/songs/60078855.mkv +牛欣欣+魏依曼+等-新年辣辣song,http://em.21dtv.com/songs/60065255.mkv +战素杰-想你泪儿流,http://em.21dtv.com/songs/60086010.mkv +群星-新年快乐歌,http://em.21dtv.com/songs/60107120.mkv +浪花兄弟-想你就写信,http://em.21dtv.com/songs/60049134.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-新年进行曲,http://em.21dtv.com/songs/60078847.mkv +施文彬-想你纪念日,http://em.21dtv.com/songs/60049133.mkv +苏炜乔-想你记得我,http://em.21dtv.com/songs/60128345.mkv +苏炜乔-想你记得我,http://em.21dtv.com/songs/60122055.mkv +阳光天使-新年好预兆,http://em.21dtv.com/songs/60072657.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-新年好心情,http://em.21dtv.com/songs/60078844.mkv +马靓辳-小鸟关不住,http://em.21dtv.com/songs/60100655.mkv +马靓轘-小鸟关不住,http://em.21dtv.com/songs/60080669.mkv +晓明-新农夫和蛇,http://em.21dtv.com/songs/60050917.mkv +佚名-象鸟儿一样,http://em.21dtv.com/songs/60049373.mkv +李安琪-想你的滋味(无原唱),http://em.21dtv.com/songs/60089956.mkv +拾参乐团-想念的重量,http://em.21dtv.com/songs/60100063.mkv +天籁天-想你的夜晚,http://em.21dtv.com/songs/60133534.mkv +林姗-心内的愿望,http://em.21dtv.com/songs/60066484.mkv +佚名-孝女的愿望,http://em.21dtv.com/songs/60049902.mkv +张清芳-想你的心慌,http://em.21dtv.com/songs/60087827.mkv +张清芳-想你到心慌,http://em.21dtv.com/songs/60049099.mkv +小宇-想你的习惯,http://em.21dtv.com/songs/60049120.mkv +李彬-想念的幸福,http://em.21dtv.com/songs/60049185.mkv +胡力-想你的幸福,http://em.21dtv.com/songs/60049125.mkv +伍思凯-想你的天空,http://em.21dtv.com/songs/60049119.mkv +七郎-想你的探戈(无原唱),http://em.21dtv.com/songs/60049118.mkv +江蕙-想你到天光,http://em.21dtv.com/songs/60049098.mkv +许富凯-想你的时阵,http://em.21dtv.com/songs/60128393.mkv +蔡琴-想你的时准,http://em.21dtv.com/songs/60095913.mkv +陈雷-想你的时阵,http://em.21dtv.com/songs/60078628.mkv +佚名-想你的时阵,http://em.21dtv.com/songs/60049117.mkv +黄思婷-想你的深夜,http://em.21dtv.com/songs/60084191.mkv +皖东阳光-想你的时候,http://em.21dtv.com/songs/60134036.mkv +钟盛忠+钟晓玉-想你的时候,http://em.21dtv.com/songs/60127522.mkv +岩罕建-想你的时候,http://em.21dtv.com/songs/60124819.mkv +万子良-想你的时候,http://em.21dtv.com/songs/60113209.mkv +张玲(滴滴)-想你的时候,http://em.21dtv.com/songs/60108501.mkv +谢作健-想你的时候,http://em.21dtv.com/songs/60108007.mkv +金贵晟-想你的时候,http://em.21dtv.com/songs/60100528.mkv +邹银川-想你的时候,http://em.21dtv.com/songs/60049112.mkv +千百惠-想你的时候,http://em.21dtv.com/songs/60049111.mkv +洪荣宏-想你的时候,http://em.21dtv.com/songs/60049110.mkv +陈俊辰-想你的时候,http://em.21dtv.com/songs/60049109.mkv +蔡琴-想你的时候,http://em.21dtv.com/songs/60049108.mkv +莫小浪-想你的时光,http://em.21dtv.com/songs/60127348.mkv +陈亚兰+施文彬-想你到深更,http://em.21dtv.com/songs/60049097.mkv +艾歌-想你的女人,http://em.21dtv.com/songs/60134153.mkv +李玟-想你的名字,http://em.21dtv.com/songs/60091337.mkv +佚名-想你的理由,http://em.21dtv.com/songs/60049104.mkv +黄思婷-心内的楼窗,http://em.21dtv.com/songs/60050395.mkv +涂紫凝-想你的距离,http://em.21dtv.com/songs/60086981.mkv +戴爱玲-想你的距离,http://em.21dtv.com/songs/60080475.mkv +谢金燕-想你的歌诗,http://em.21dtv.com/songs/60049102.mkv +林姗-想你的功课,http://em.21dtv.com/songs/60049103.mkv +金城-想你的感觉,http://em.21dtv.com/songs/60078627.mkv +佚名-想你的方向,http://em.21dtv.com/songs/60049101.mkv +吴依琳-新年咚咚锵,http://em.21dtv.com/songs/60078837.mkv +丁嘉林+丁楠霓+江怡萱-新年咚咚锵,http://em.21dtv.com/songs/60078836.mkv +庞龙+代茜-向南的窗子,http://em.21dtv.com/songs/60105009.mkv +代茜+庞龙-向南的窗子,http://em.21dtv.com/songs/60104774.mkv +金海心-想念的翅膀,http://em.21dtv.com/songs/60049183.mkv +吴松发-想念的爱人,http://em.21dtv.com/songs/60099140.mkv +王莱-想你的暗暝,http://em.21dtv.com/songs/60125947.mkv +易秀成+王艺闻-新农村小调(演唱会),http://em.21dtv.com/songs/60065257.mkv +吴奇隆-侠女闯天关,http://em.21dtv.com/songs/60048236.mkv +王子鸣-想你才明白,http://em.21dtv.com/songs/60049096.mkv +程响-新娘不是我,http://em.21dtv.com/songs/60117108.mkv +程响-新娘不是我,http://em.21dtv.com/songs/60062301.mkv +白冰冰-新娘不是阮,http://em.21dtv.com/songs/60050909.mkv +刘慧湘-想你比蜜甜,http://em.21dtv.com/songs/60086009.mkv +沈建豪-心内彼粒星,http://em.21dtv.com/songs/60099364.mkv +袁宇-寻你不曾留,http://em.21dtv.com/songs/60110505.mkv +刘伟光-想念爱的你,http://em.21dtv.com/songs/60119285.mkv +孙中亮-想念爱的你,http://em.21dtv.com/songs/60062968.mkv +李家仁-小明做特首,http://em.21dtv.com/songs/60066473.mkv +邓百成-细妹仔恁靓(无原唱),http://em.21dtv.com/songs/60095932.mkv +金娃娃-熊猫与傻瓜,http://em.21dtv.com/songs/60071379.mkv +旺福乐团-小绵羊赶集(无原唱),http://em.21dtv.com/songs/60049662.mkv +刘航-熊猫下的毒,http://em.21dtv.com/songs/60051491.mkv +金久哲-小妹听我说,http://em.21dtv.com/songs/60078697.mkv +王铁峰-小妹听我说,http://em.21dtv.com/songs/60066472.mkv +颜裕林-小妹听哥说,http://em.21dtv.com/songs/60096553.mkv +李家仁-小明上广州,http://em.21dtv.com/songs/60049665.mkv +李家仁-小明上方舟,http://em.21dtv.com/songs/60062595.mkv +佚名-小妹十不该,http://em.21dtv.com/songs/60049654.mkv +陈奕迅-新美人主义,http://em.21dtv.com/songs/60050869.mkv +李家仁-小明去东莞,http://em.21dtv.com/songs/60078700.mkv +阿依诺儿-秀美黔东南,http://em.21dtv.com/songs/60134376.mkv +李家仁-小明去拜年,http://em.21dtv.com/songs/60049664.mkv +李家仁-小明去澳洲,http://em.21dtv.com/songs/60078699.mkv +吴炜-小妹你真好,http://em.21dtv.com/songs/60049653.mkv +叶子枫-小妹你别哭,http://em.21dtv.com/songs/60099133.mkv +王丽萍-像妈妈一样,http://em.21dtv.com/songs/60086016.mkv +肖旭+冯粒+唐柏宁-下面没有了,http://em.21dtv.com/songs/60128319.mkv +黄香莲-新满面春风(无原唱),http://em.21dtv.com/songs/60050868.mkv +靓舞精灵-新马来情歌,http://em.21dtv.com/songs/60050866.mkv +白马人组合-兄妹来当兵,http://em.21dtv.com/songs/60070099.mkv +德德玛-下马酒之歌,http://em.21dtv.com/songs/60085982.mkv +乌兰-下马酒之歌,http://em.21dtv.com/songs/60048290.mkv +郑素伶-行抹尽的路(无原唱),http://em.21dtv.com/songs/60019948.mkv +龙飞-羡慕嫉妒恨,http://em.21dtv.com/songs/60081359.mkv +潇潇-羡慕嫉妒恨,http://em.21dtv.com/songs/60078562.mkv +高林生-羡慕嫉妒恨,http://em.21dtv.com/songs/60062377.mkv +赵真-小米加步枪,http://em.21dtv.com/songs/60135775.mkv +赵真-小米加步枪,http://em.21dtv.com/songs/60132923.mkv +刘正淳-夏末浣溪沙,http://em.21dtv.com/songs/60086972.mkv +晏文彬-小猫和大猪,http://em.21dtv.com/songs/60106898.mkv +李家仁-小明过圣诞(演唱会),http://em.21dtv.com/songs/60078698.mkv +胡铁-新民工情思,http://em.21dtv.com/songs/60078830.mkv +李叶恩+大军-寻梦到永远,http://em.21dtv.com/songs/60051816.mkv +格桑-寻梦大山包,http://em.21dtv.com/songs/60062388.mkv +许茹芸-像猫的女人,http://em.21dtv.com/songs/60049386.mkv +谢宜君-心门的帘子,http://em.21dtv.com/songs/60128405.mkv +韩雪-夏末的回忆,http://em.21dtv.com/songs/60088960.mkv +杨罡-熄灭的爱火,http://em.21dtv.com/songs/60078508.mkv +何莉飞+黄绍成-小妹等阿哥,http://em.21dtv.com/songs/60089614.mkv +佟铁鑫-心里装着谁,http://em.21dtv.com/songs/60110843.mkv +廖昌永-心里装着谁,http://em.21dtv.com/songs/60106819.mkv +莫艳琳-醒来再做梦,http://em.21dtv.com/songs/60104396.mkv +周峰-心里总有你,http://em.21dtv.com/songs/60087008.mkv +原乡+高音-相恋在红尘,http://em.21dtv.com/songs/60099849.mkv +王如华-心里有片天,http://em.21dtv.com/songs/60131653.mkv +蓝若兮-相恋一年多,http://em.21dtv.com/songs/60117186.mkv +孙辉+蓝若兮-相恋一年多,http://em.21dtv.com/songs/60113406.mkv +吕方-相恋一秒钟,http://em.21dtv.com/songs/60048686.mkv +俞思远-心里有个他,http://em.21dtv.com/songs/60050342.mkv +安宇-心里有个你,http://em.21dtv.com/songs/60050341.mkv +罗文-心里有个谜(演唱会),http://em.21dtv.com/songs/60050340.mkv +黎耀祥-心里有个谜(演唱会),http://em.21dtv.com/songs/60050339.mkv +丁当-想恋一个爱,http://em.21dtv.com/songs/60119219.mkv +钟彩媚-溪流,http://em.21dtv.com/songs/60108087.mkv +新社联会员-新联新梦想,http://em.21dtv.com/songs/60105932.mkv +童唱-雪莲献北京,http://em.21dtv.com/songs/60051709.mkv +葛笑-小丽我等你,http://em.21dtv.com/songs/60100443.mkv +沉默-小丽我等你,http://em.21dtv.com/songs/60086022.mkv +陈晨-夏洛特烦恼,http://em.21dtv.com/songs/60126387.mkv +金志文-夏洛特烦恼,http://em.21dtv.com/songs/60115459.mkv +孟庭苇-心里是花园,http://em.21dtv.com/songs/60084243.mkv +沙玛学锋-小凉山很小,http://em.21dtv.com/songs/60061758.mkv +叶文辉-像恋人一样,http://em.21dtv.com/songs/60123729.mkv +柯以敏-像恋人一样,http://em.21dtv.com/songs/60049385.mkv +李克-新浪人情歌,http://em.21dtv.com/songs/60106932.mkv +阿龙正刚-新浪人情歌,http://em.21dtv.com/songs/60050863.mkv +豆子民-新老婆最大,http://em.21dtv.com/songs/60078829.mkv +金豆豆-心里暖暖的,http://em.21dtv.com/songs/60126305.mkv +王炀+金豆豆-心里暖暖的,http://em.21dtv.com/songs/60108709.mkv +段思思-信了你的邪,http://em.21dtv.com/songs/60051000.mkv +刘明辉-向黎明出发,http://em.21dtv.com/songs/60120363.mkv +西域胡杨-新楼兰姑娘,http://em.21dtv.com/songs/60123157.mkv +梁文音-想流浪的鱼,http://em.21dtv.com/songs/60072614.mkv +江宏-小两口问答,http://em.21dtv.com/songs/60088191.mkv +庄学忠-小俩口问答,http://em.21dtv.com/songs/60049629.mkv +斯琴格日乐-小路喀秋莎,http://em.21dtv.com/songs/60091253.mkv +庄学忠-小两口回答,http://em.21dtv.com/songs/60087752.mkv +林晓培-醒来就忘记,http://em.21dtv.com/songs/60100210.mkv +谭晶-相邻就是缘,http://em.21dtv.com/songs/60048687.mkv +童唱-小驴和老鸭,http://em.21dtv.com/songs/60049641.mkv +李九鸣-犀利哥之歌,http://em.21dtv.com/songs/60048041.mkv +德德玛-锡林郭勒美,http://em.21dtv.com/songs/60070026.mkv +叶倩文-心里的阳光(演唱会),http://em.21dtv.com/songs/60050333.mkv +李盼+康志雄-暹逻的微笑,http://em.21dtv.com/songs/60097694.mkv +谭雪-心里的温柔,http://em.21dtv.com/songs/60078767.mkv +梅朵-心灵的天堂,http://em.21dtv.com/songs/60117873.mkv +潘裕文-心里的狮子,http://em.21dtv.com/songs/60050332.mkv +苏有朋-雪来的时候,http://em.21dtv.com/songs/60051702.mkv +孟慧圆-心里的人儿,http://em.21dtv.com/songs/60133568.mkv +许美静-绚丽的霓虹,http://em.21dtv.com/songs/60051630.mkv +丝袜小姐-心里的魔鬼,http://em.21dtv.com/songs/60087245.mkv +梁文音-心里的孩子,http://em.21dtv.com/songs/60072643.mkv +熊七梅-心灵的呼唤,http://em.21dtv.com/songs/60109504.mkv +潘秀琼-心里的火花(演唱会),http://em.21dtv.com/songs/60078766.mkv +黄晓君-心里的火花,http://em.21dtv.com/songs/60050331.mkv +柴强+田娟-心里藏着你,http://em.21dtv.com/songs/60111205.mkv +七郎-新郎不是我(无原唱),http://em.21dtv.com/songs/60095379.mkv +轲然-新郎不是我,http://em.21dtv.com/songs/60081025.mkv +七峰-新郎不是我(无原唱),http://em.21dtv.com/songs/60050860.mkv +许鹤缤+伞子红-幸亏遇到你,http://em.21dtv.com/songs/60112240.mkv +刘德华-星空下没人,http://em.21dtv.com/songs/60051072.mkv +林俊杰-星空下的吻,http://em.21dtv.com/songs/60051071.mkv +凌云-向快乐问好,http://em.21dtv.com/songs/60098127.mkv +王爱奉-小恐龙斯帕,http://em.21dtv.com/songs/60113868.mkv +吕继宏-向快乐看齐,http://em.21dtv.com/songs/60049319.mkv +零点乐队+林依轮-向快乐出发,http://em.21dtv.com/songs/60049318.mkv +零点乐队-向快乐出发(演唱会),http://em.21dtv.com/songs/60049317.mkv +林依轮-向快乐出发(演唱会),http://em.21dtv.com/songs/60049316.mkv +刘若英-相看两不厌,http://em.21dtv.com/songs/60115031.mkv +郝婉彤-想哭就微笑,http://em.21dtv.com/songs/60114133.mkv +朱业晋-想哭就哭吧,http://em.21dtv.com/songs/60115989.mkv +江蕙-笑看红尘梦,http://em.21dtv.com/songs/60049932.mkv +赵真-新咖啡眼泪,http://em.21dtv.com/songs/60050857.mkv +梅艳芳+许志安-笑看风云变(演唱会),http://em.21dtv.com/songs/60049931.mkv +佚名-先苦而后甜,http://em.21dtv.com/songs/60048451.mkv +ALAN-想哭的思念,http://em.21dtv.com/songs/60049065.mkv +臧天朔-新康定情歌,http://em.21dtv.com/songs/60050858.mkv +浩轩-心苦的女人,http://em.21dtv.com/songs/60120721.mkv +浩轩-心苦的女人,http://em.21dtv.com/songs/60104283.mkv +邓丽君-相见在明天,http://em.21dtv.com/songs/60048676.mkv +韦唯-相聚在龙年,http://em.21dtv.com/songs/60048683.mkv +陈慧娴-心就要飞了,http://em.21dtv.com/songs/60050320.mkv +陈慧娴-心就要飞了(演唱会),http://em.21dtv.com/songs/60050319.mkv +具雪梅-相见无几时,http://em.21dtv.com/songs/60048675.mkv +乌兰托娅-新疆我爱你,http://em.21dtv.com/songs/60072655.mkv +谭晶-心静听炊烟,http://em.21dtv.com/songs/60130761.mkv +星月组合-相见是何年,http://em.21dtv.com/songs/60133755.mkv +容祖儿-信今生爱过,http://em.21dtv.com/songs/60050998.mkv +李克勤+黄贯中+叶世荣-小姐你好嘢,http://em.21dtv.com/songs/60049602.mkv +巧千金-小金牛贺年,http://em.21dtv.com/songs/60078696.mkv +袁小迪-小姐免歹势,http://em.21dtv.com/songs/60070057.mkv +尹光-小姐李露薇(演唱会),http://em.21dtv.com/songs/60049600.mkv +储兰兰-新京剧宝宝(演唱会),http://em.21dtv.com/songs/60084232.mkv +邓丽君-相聚更甜蜜,http://em.21dtv.com/songs/60048681.mkv +杨超+马可谦-新疆儿娃子,http://em.21dtv.com/songs/60116035.mkv +买买提-新疆的英孜,http://em.21dtv.com/songs/60090495.mkv +席文静-西江第一楼,http://em.21dtv.com/songs/60129041.mkv +周安信-乡间的小路,http://em.21dtv.com/songs/60118453.mkv +卓依婷-乡间的小路,http://em.21dtv.com/songs/60048569.mkv +张明敏-乡间的小路,http://em.21dtv.com/songs/60048568.mkv +叶佳修-乡间的小路,http://em.21dtv.com/songs/60048567.mkv +孙辉-想家的幸福,http://em.21dtv.com/songs/60116706.mkv +孙辉-想家的幸福,http://em.21dtv.com/songs/60072613.mkv +佚名-小姐等什人,http://em.21dtv.com/songs/60049598.mkv +龚月-想家的时候,http://em.21dtv.com/songs/60078620.mkv +阎维文-想家的时候,http://em.21dtv.com/songs/60049051.mkv +洛桑扎西-夏季的拉萨,http://em.21dtv.com/songs/60112830.mkv +洛桑扎西-夏季的拉萨,http://em.21dtv.com/songs/60091614.mkv +杨燕-相聚不容易(演唱会),http://em.21dtv.com/songs/60048680.mkv +马潇潇-孝敬不能等,http://em.21dtv.com/songs/60118189.mkv +静婷-相见不恨晚,http://em.21dtv.com/songs/60048667.mkv +黄清源-相见不恨晚,http://em.21dtv.com/songs/60048666.mkv +白光-相见不恨晚,http://em.21dtv.com/songs/60048665.mkv +梁汉文-夏季不不不,http://em.21dtv.com/songs/60048362.mkv +雨迹+陈小朵-相会在昨天,http://em.21dtv.com/songs/60126421.mkv +林依婷-像孩子一样,http://em.21dtv.com/songs/60070051.mkv +玖壹壹+LuLu黄路梓茵-嘻哈庄脚情,http://em.21dtv.com/songs/60118799.mkv +臧天朔-心还在等候,http://em.21dtv.com/songs/60050278.mkv +臧天朔-心还在等待,http://em.21dtv.com/songs/60091911.mkv +激波卓玛-相会在草原,http://em.21dtv.com/songs/60091669.mkv +陈瑞-像海一样蓝,http://em.21dtv.com/songs/60097687.mkv +佚名-心湖雨又风,http://em.21dtv.com/songs/60050290.mkv +高胜美-心湖雨又风,http://em.21dtv.com/songs/60050289.mkv +张靓颖-西湖印象雨,http://em.21dtv.com/songs/60047931.mkv +杜振祥-新欢与旧爱,http://em.21dtv.com/songs/60080461.mkv +陈奕迅-喜欢一个人,http://em.21dtv.com/songs/60114200.mkv +巩新亮-喜欢一个人,http://em.21dtv.com/songs/60071301.mkv +BEYOND-喜欢一个人,http://em.21dtv.com/songs/60048146.mkv +黑龙-新回心转意,http://em.21dtv.com/songs/60050841.mkv +佚名-杏花溪之恋,http://em.21dtv.com/songs/60084287.mkv +卓依婷-杏花溪之恋,http://em.21dtv.com/songs/60051196.mkv +费玉清+蔡幸娟-杏花溪之恋,http://em.21dtv.com/songs/60051195.mkv +林心如-喜欢下雨天,http://em.21dtv.com/songs/60048145.mkv +重小烟-雪海香梅尽,http://em.21dtv.com/songs/60084308.mkv +何韵诗-喜欢喜欢你(演唱会),http://em.21dtv.com/songs/60048144.mkv +佚名-心花为你开,http://em.21dtv.com/songs/60050294.mkv +周艾杰-小河淌水了,http://em.21dtv.com/songs/60084212.mkv +童音-小号手之歌,http://em.21dtv.com/songs/60049566.mkv +文千岁-鲜花送玉人(戏曲),http://em.21dtv.com/songs/60092750.mkv +甘国卫+胡美仪-鲜花送玉人,http://em.21dtv.com/songs/60048477.mkv +宋祖英-鲜花属于你,http://em.21dtv.com/songs/60107665.mkv +S.H.E-心还是热的,http://em.21dtv.com/songs/60079857.mkv +黄小琥-写乎啥米人,http://em.21dtv.com/songs/60050008.mkv +欢子-心还是会疼,http://em.21dtv.com/songs/60065233.mkv +刘德华-喜欢去做梦,http://em.21dtv.com/songs/60090692.mkv +赵姝-西湖千古情,http://em.21dtv.com/songs/60096132.mkv +何玲玲-邂逅丘比特,http://em.21dtv.com/songs/60072637.mkv +刘媛媛-鲜花陪伴你,http://em.21dtv.com/songs/60048475.mkv +兄弟联-想和你一起,http://em.21dtv.com/songs/60049043.mkv +钟心-心和你约会(HD),http://em.21dtv.com/songs/10012816.mkv +钟心-心和你约会,http://em.21dtv.com/songs/60067653.mkv +许志安-喜欢你是你(演唱会),http://em.21dtv.com/songs/60048140.mkv +赵传-雪花女神龙,http://em.21dtv.com/songs/60078971.mkv +蔡献华-雪花那个飘,http://em.21dtv.com/songs/60097659.mkv +张曼-雪花那个飘,http://em.21dtv.com/songs/60085372.mkv +凤琴-写乎你的歌,http://em.21dtv.com/songs/60130107.mkv +许富凯-写乎你的歌,http://em.21dtv.com/songs/60071335.mkv +张德兰-鲜花满月樱(演唱会),http://em.21dtv.com/songs/60068826.mkv +张德兰-鲜花满月楼,http://em.21dtv.com/songs/60048474.mkv +童唱-小花猫钓鱼,http://em.21dtv.com/songs/60049593.mkv +彭佳慧-喜欢两个人,http://em.21dtv.com/songs/60048121.mkv +陈晓东-新欢加精选(演唱会),http://em.21dtv.com/songs/60050838.mkv +汤灿-新花好月圆,http://em.21dtv.com/songs/60106061.mkv +SHELLY佳-新后会无期,http://em.21dtv.com/songs/60068866.mkv +孙伟-小红好姑娘,http://em.21dtv.com/songs/60078693.mkv +陈雷-喜欢干一杯,http://em.21dtv.com/songs/60048117.mkv +林姗+蔡小虎-像画搁像花,http://em.21dtv.com/songs/60049384.mkv +黄勇-僰乡好姑娘,http://em.21dtv.com/songs/60132011.mkv +程琳-雪后的早晨,http://em.21dtv.com/songs/60051681.mkv +秀兰玛雅-细汉的愿望,http://em.21dtv.com/songs/60085980.mkv +余诗云-雪花的问候,http://em.21dtv.com/songs/60133368.mkv +蒋闻潞-喜欢的味道,http://em.21dtv.com/songs/60048116.mkv +谢天笑-循环的太阳,http://em.21dtv.com/songs/60051857.mkv +刀郎-西海的情歌,http://em.21dtv.com/songs/60087380.mkv +于淼-新蝴蝶泉边,http://em.21dtv.com/songs/60070086.mkv +姜喆-邂逅的那天,http://em.21dtv.com/songs/60050101.mkv +荒山亮-销魂的吉他(演唱会),http://em.21dtv.com/songs/60072622.mkv +亚圣美-嘻哈草原风,http://em.21dtv.com/songs/60061735.mkv +蔡小虎-小虎纯情曲(无原唱),http://em.21dtv.com/songs/60095901.mkv +麦霸阿杜+朱敏-新红尘情歌,http://em.21dtv.com/songs/60071346.mkv +佚名-想喝杯咖啡,http://em.21dtv.com/songs/60049038.mkv +孙敬媛-学会不爱你(演唱会),http://em.21dtv.com/songs/60084304.mkv +黄乙玲-西海岸情歌,http://em.21dtv.com/songs/60047921.mkv +叶一茜-像公主一样,http://em.21dtv.com/songs/60125259.mkv +陈雷-心肝捉坦横,http://em.21dtv.com/songs/60050268.mkv +陈小春-下岗一枝花,http://em.21dtv.com/songs/60048278.mkv +TWINS-星光游乐园,http://em.21dtv.com/songs/60051051.mkv +刘继业-习惯一个人,http://em.21dtv.com/songs/60085976.mkv +焰火-习惯一个人,http://em.21dtv.com/songs/60061739.mkv +海鸣-习惯一个人,http://em.21dtv.com/songs/60061738.mkv +王浩-习惯一个人,http://em.21dtv.com/songs/60048079.mkv +黄贯中-香港一定得,http://em.21dtv.com/songs/60048915.mkv +杨迎-向歌友拜年,http://em.21dtv.com/songs/60049315.mkv +黄乙玲-心肝无人疼,http://em.21dtv.com/songs/60050265.mkv +郑嘉阳-写给她的歌,http://em.21dtv.com/songs/60050005.mkv +许富凯-写故事的人,http://em.21dtv.com/songs/60123165.mkv +佚名-心肝亲像铁,http://em.21dtv.com/songs/60050264.mkv +合唱-小姑娘入城,http://em.21dtv.com/songs/60095492.mkv +佚名-小姑娘入城,http://em.21dtv.com/songs/60049562.mkv +佚名-小姑娘入城(恰恰),http://em.21dtv.com/songs/60049561.mkv +毕书尽-写给你的歌,http://em.21dtv.com/songs/60100254.mkv +张莫晗-写给你的歌,http://em.21dtv.com/songs/60096290.mkv +任双江-写给你的歌,http://em.21dtv.com/songs/60061766.mkv +白冰-写给你的歌,http://em.21dtv.com/songs/60050004.mkv +佚名-写给你的歌(无原唱),http://em.21dtv.com/songs/60050003.mkv +聂诗-习惯没有你,http://em.21dtv.com/songs/60124365.mkv +佚名-心肝乱糟糟,http://em.21dtv.com/songs/60050261.mkv +黄乙玲-心肝乱糟糟,http://em.21dtv.com/songs/60050260.mkv +蔡佳麟-心肝乱啥米,http://em.21dtv.com/songs/60096490.mkv +毛泽少-下个路口见,http://em.21dtv.com/songs/60102431.mkv +李宇春-下个路口见,http://em.21dtv.com/songs/60088002.mkv +牛奶咖啡-习惯了寂寞,http://em.21dtv.com/songs/60048072.mkv +言承旭-习惯两个人,http://em.21dtv.com/songs/60048073.mkv +陈浩德+方伊琪-香港靓女多(演唱会),http://em.21dtv.com/songs/60078599.mkv +佚名-香港靓女多,http://em.21dtv.com/songs/60048907.mkv +李秋实-新光辉岁月,http://em.21dtv.com/songs/60116923.mkv +酒窝乐团-新光辉岁月,http://em.21dtv.com/songs/60116303.mkv +尹光+李丽义-新光棍姻缘(演唱会),http://em.21dtv.com/songs/60078827.mkv +这群人-学尬干那塞,http://em.21dtv.com/songs/60070108.mkv +郑源-新滚滚红尘(演唱会),http://em.21dtv.com/songs/60084231.mkv +霍尊+杨树林-新贵妃醉酒,http://em.21dtv.com/songs/60135971.mkv +胡海泉+艾伦-新贵妃醉驾,http://em.21dtv.com/songs/60134144.mkv +吴克群-新贵妃醉酒,http://em.21dtv.com/songs/60082014.mkv +龚玥菲-新贵妃醉酒,http://em.21dtv.com/songs/60078828.mkv +李玉刚-新贵妃醉酒,http://em.21dtv.com/songs/60050835.mkv +刘心-写给方大同,http://em.21dtv.com/songs/60067644.mkv +女子十二乐坊-新古典主义,http://em.21dtv.com/songs/60089772.mkv +江一燕-星光电影院,http://em.21dtv.com/songs/60051048.mkv +香香-小狗的幸福,http://em.21dtv.com/songs/60101573.mkv +夏天-习惯对我好,http://em.21dtv.com/songs/60078512.mkv +冷漠-写过的情诗,http://em.21dtv.com/songs/60101270.mkv +郭津彤-心肝大宝贝,http://em.21dtv.com/songs/60114830.mkv +C 1 K-写给ck的歌,http://em.21dtv.com/songs/60078747.mkv +尹光-香港cheap boom boom,http://em.21dtv.com/songs/60048902.mkv +郑中基-星光伴我心,http://em.21dtv.com/songs/60051043.mkv +郑中基-星光伴我心(演唱会),http://em.21dtv.com/songs/60051042.mkv +DJ小星星-性感不是骚,http://em.21dtv.com/songs/60129921.mkv +孙子涵-想改变今晚,http://em.21dtv.com/songs/60080714.mkv +凌东成-星光伴彩虹,http://em.21dtv.com/songs/60092341.mkv +许焕松-幸福制造者,http://em.21dtv.com/songs/60117227.mkv +林俊吉+李依婷-幸福作阵行(无原唱),http://em.21dtv.com/songs/60051406.mkv +胡夏-幸福在这里,http://em.21dtv.com/songs/60113970.mkv +胡夏-幸福在这里,http://em.21dtv.com/songs/60112156.mkv +林冲-幸福在这里(演唱会),http://em.21dtv.com/songs/60065278.mkv +杨燕-幸福在这里,http://em.21dtv.com/songs/60051402.mkv +刘珊琳-幸福在这里,http://em.21dtv.com/songs/60051401.mkv +林冲-幸福在这里(演唱会)(无原唱),http://em.21dtv.com/songs/60051400.mkv +飞鱼-幸福最终话,http://em.21dtv.com/songs/60061787.mkv +何苗-幸福在中国,http://em.21dtv.com/songs/60067677.mkv +舞曲-相逢在雨中(牛仔舞),http://em.21dtv.com/songs/60093072.mkv +黎明-相逢在雨中,http://em.21dtv.com/songs/60048662.mkv +陈松伶-幸福只有爱,http://em.21dtv.com/songs/60051405.mkv +云菲菲-幸福在前方,http://em.21dtv.com/songs/60078938.mkv +何洁-幸福在哪里,http://em.21dtv.com/songs/60087305.mkv +胡雪盟-幸福在哪里,http://em.21dtv.com/songs/60084283.mkv +蒲紫微-幸福在哪里,http://em.21dtv.com/songs/60068881.mkv +刘璐-幸福在哪里,http://em.21dtv.com/songs/60068880.mkv +佚名-幸福在哪里,http://em.21dtv.com/songs/60051399.mkv +李天华-幸福在哪里,http://em.21dtv.com/songs/60051398.mkv +晓依-幸福中国年,http://em.21dtv.com/songs/60111941.mkv +叶俊华-幸福中国年,http://em.21dtv.com/songs/60105678.mkv +陈夏莲-幸福置叼位,http://em.21dtv.com/songs/60135903.mkv +呼斯楞-相逢在草原,http://em.21dtv.com/songs/60062462.mkv +邝美云-相逢在半生(无原唱),http://em.21dtv.com/songs/60093252.mkv +佚名-相逢在半生(无原唱),http://em.21dtv.com/songs/60048661.mkv +孙中亮-幸福着爱你,http://em.21dtv.com/songs/60123817.mkv +孙中亮-幸福着爱你,http://em.21dtv.com/songs/60070094.mkv +苏有朋-幸福一万年,http://em.21dtv.com/songs/60051392.mkv +陈彦允-幸福夜未眠,http://em.21dtv.com/songs/60102891.mkv +许茹芸-幸福一秒吧,http://em.21dtv.com/songs/60051391.mkv +陈咏-幸福要来到,http://em.21dtv.com/songs/60070093.mkv +佚名-相逢有乐町,http://em.21dtv.com/songs/60048658.mkv +陈小云-相逢有乐町,http://em.21dtv.com/songs/60048657.mkv +游美灵+彭美云+金麦子-幸福一家人,http://em.21dtv.com/songs/60071372.mkv +查可欣-幸福有多远,http://em.21dtv.com/songs/60084282.mkv +张蔷-幸福有多远,http://em.21dtv.com/songs/60051394.mkv +韩晶-幸福一辈子,http://em.21dtv.com/songs/60051390.mkv +余天-相逢夕阳下,http://em.21dtv.com/songs/60048654.mkv +佚名-相逢夕阳下,http://em.21dtv.com/songs/60048653.mkv +张艺曦-幸福小蚂蚁,http://em.21dtv.com/songs/60078936.mkv +WEWE-心方向FROM_MY_HEART,http://em.21dtv.com/songs/60090452.mkv +陈夏莲+一绫-幸福我问你,http://em.21dtv.com/songs/60123291.mkv +刘依纯-幸福万万年,http://em.21dtv.com/songs/60051379.mkv +苗苗-幸福万年长,http://em.21dtv.com/songs/60086060.mkv +龚月-幸福万年长,http://em.21dtv.com/songs/60078932.mkv +汤灿-幸福万年长,http://em.21dtv.com/songs/60051378.mkv +龙千玉-幸福无地找,http://em.21dtv.com/songs/60051380.mkv +袁小迪+杨依庭-幸福手中过,http://em.21dtv.com/songs/60051372.mkv +温馨+曲艺-幸福是什么,http://em.21dtv.com/songs/60120732.mkv +白致瑶-幸福是什么,http://em.21dtv.com/songs/60117077.mkv +陈明-幸福是什么,http://em.21dtv.com/songs/60112351.mkv +阿任-幸福是什么,http://em.21dtv.com/songs/60099564.mkv +朱美璇-幸福是什么,http://em.21dtv.com/songs/60099290.mkv +庞龙-幸福是什么(演唱会),http://em.21dtv.com/songs/60051369.mkv +龚玥-相逢是首歌,http://em.21dtv.com/songs/60128658.mkv +俞静-相逢是首歌,http://em.21dtv.com/songs/60048652.mkv +于文华+尹相杰-纤夫四季调,http://em.21dtv.com/songs/60048469.mkv +蔡小虎-幸福送乎你,http://em.21dtv.com/songs/60100953.mkv +王铮亮-幸福时光机,http://em.21dtv.com/songs/60117929.mkv +邰正宵-幸福任意门,http://em.21dtv.com/songs/60051360.mkv +邬兆邦+董育君-幸福千万年,http://em.21dtv.com/songs/60087020.mkv +王莉-幸福千万点,http://em.21dtv.com/songs/60051356.mkv +高夫-小夫妻情歌,http://em.21dtv.com/songs/60117389.mkv +索朗扎西-幸福去拉萨,http://em.21dtv.com/songs/60119874.mkv +潘佩莉+荒山亮-幸福青春路,http://em.21dtv.com/songs/60072670.mkv +贾璨璨-幸福拍手歌,http://em.21dtv.com/songs/60101514.mkv +佚名-幸福拍手歌,http://em.21dtv.com/songs/60051355.mkv +佚名-幸福拍手歌(恰恰),http://em.21dtv.com/songs/60051354.mkv +王瑛淇-媳妇你真好,http://em.21dtv.com/songs/60078515.mkv +佚名-幸福那里来,http://em.21dtv.com/songs/60051351.mkv +波拉+张渼壹-幸福你和我,http://em.21dtv.com/songs/60087019.mkv +郁可唯-幸福难不难,http://em.21dtv.com/songs/60078924.mkv +林宇中-幸福马戏团,http://em.21dtv.com/songs/60051342.mkv +陈奕迅-幸福摩天轮,http://em.21dtv.com/songs/60051349.mkv +杨千嬅-幸福摩天轮(演唱会),http://em.21dtv.com/songs/60051348.mkv +梁咏琪-幸福摩天轮(演唱会),http://em.21dtv.com/songs/60051347.mkv +陈慧琳-幸福摩天轮(演唱会),http://em.21dtv.com/songs/60051346.mkv +糯米-幸福迷了路,http://em.21dtv.com/songs/60051345.mkv +龙千玉-相逢梦何时,http://em.21dtv.com/songs/60048649.mkv +冯伟杰-幸福抹等人,http://em.21dtv.com/songs/60117565.mkv +曾一鸣-像疯了一样,http://em.21dtv.com/songs/60096089.mkv +齐秦-像疯了一样,http://em.21dtv.com/songs/60049382.mkv +郑新玮-幸福路一段,http://em.21dtv.com/songs/60051341.mkv +杨小弈-幸福流行歌,http://em.21dtv.com/songs/60068874.mkv +余润泽-幸福啦啦歌,http://em.21dtv.com/songs/60087334.mkv +辛柏青+朱媛媛-幸福两口子(演唱会),http://em.21dtv.com/songs/60078922.mkv +吴宗宪-幸福进行曲,http://em.21dtv.com/songs/60051328.mkv +林强-幸福进行曲,http://em.21dtv.com/songs/60051327.mkv +王二妮+阿宝-幸福吉祥年,http://em.21dtv.com/songs/60113845.mkv +龙梅子-幸福就是爱,http://em.21dtv.com/songs/60122322.mkv +邰正宵-幸福纪念日,http://em.21dtv.com/songs/60051323.mkv +陆毅+鲍蕾+陆雨萱-幸福家家有,http://em.21dtv.com/songs/60109689.mkv +陆毅+鲍蕾+陆雨萱-幸福家家有,http://em.21dtv.com/songs/60108971.mkv +陈相军+刘隹-幸福久久长,http://em.21dtv.com/songs/60123324.mkv +陈明仁-相逢酒场内,http://em.21dtv.com/songs/60048648.mkv +范晓萱-幸福合作社,http://em.21dtv.com/songs/60051318.mkv +林凡-幸福很突然,http://em.21dtv.com/songs/60078916.mkv +邝文珣-幸福后乐园,http://em.21dtv.com/songs/60051319.mkv +古巨基-幸福号列车,http://em.21dtv.com/songs/60051317.mkv +贾斯文-幸福很简单,http://em.21dtv.com/songs/60071367.mkv +曾春年+刘宜-幸福花儿开,http://em.21dtv.com/songs/60131480.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-幸福花儿开,http://em.21dtv.com/songs/60078917.mkv +乌兰托亚-幸福花儿开,http://em.21dtv.com/songs/60051321.mkv +陈小云-相逢后壁沟(探戈),http://em.21dtv.com/songs/60048647.mkv +田华杜磊-幸福海岸线,http://em.21dtv.com/songs/60051316.mkv +高峰-幸福过一生,http://em.21dtv.com/songs/60051315.mkv +方顺吉-幸福过一生(无原唱),http://em.21dtv.com/songs/60051314.mkv +余天龙+吴仪君-相逢高铁站,http://em.21dtv.com/songs/60121378.mkv +余天龙-相逢高铁站,http://em.21dtv.com/songs/60121376.mkv +余秋仪-幸福格桑花,http://em.21dtv.com/songs/60051311.mkv +董事长乐团+阎韦伶-幸福的滋味,http://em.21dtv.com/songs/60108872.mkv +张宇-幸福的滋味,http://em.21dtv.com/songs/60051303.mkv +谢娜-幸福的滋味,http://em.21dtv.com/songs/60051302.mkv +刘佳轩-幸福的滋味,http://em.21dtv.com/songs/60051301.mkv +梁汉文-幸福的钟声,http://em.21dtv.com/songs/60092902.mkv +解婕翎-幸福的重量,http://em.21dtv.com/songs/60132879.mkv +龙千玉-幸福的最后,http://em.21dtv.com/songs/60117423.mkv +曾婕-幸福的终点,http://em.21dtv.com/songs/60129193.mkv +郑钧-幸福的子弹,http://em.21dtv.com/songs/60088777.mkv +张力尹-幸福的左岸,http://em.21dtv.com/songs/60051304.mkv +林佑威+赵韩樱子-幸福的样子,http://em.21dtv.com/songs/60107821.mkv +贯诗钦-幸福的意义,http://em.21dtv.com/songs/60128411.mkv +黛妮-幸福到永远,http://em.21dtv.com/songs/60080936.mkv +戴妮-幸福到永远,http://em.21dtv.com/songs/60080479.mkv +戎梵-幸福都一样,http://em.21dtv.com/songs/60061786.mkv +强辩乐团-幸福的预言,http://em.21dtv.com/songs/60051298.mkv +李西-幸福的预言,http://em.21dtv.com/songs/60051297.mkv +张凌枫-幸福的源头,http://em.21dtv.com/songs/60051300.mkv +夏后-幸福的勇气,http://em.21dtv.com/songs/60086057.mkv +清源-幸福的源泉,http://em.21dtv.com/songs/60051299.mkv +罗文聪-幸福的邀请,http://em.21dtv.com/songs/60051294.mkv +秦杨+尹馨-幸福第一名,http://em.21dtv.com/songs/60095828.mkv +纪昀-幸福的眼泪,http://em.21dtv.com/songs/60121998.mkv +兰卡布尺-幸福的摇篮,http://em.21dtv.com/songs/60051295.mkv +小沈阳-幸福的眼泪,http://em.21dtv.com/songs/60051293.mkv +黄馨-幸福的眼泪,http://em.21dtv.com/songs/60051292.mkv +张平-幸福到永久,http://em.21dtv.com/songs/60120509.mkv +郑嘉颖-幸福的遗憾,http://em.21dtv.com/songs/60095227.mkv +泰歌+曾妮娜+小臭臭-幸福的阳光,http://em.21dtv.com/songs/60098576.mkv +梁静茹-幸福的预感,http://em.21dtv.com/songs/60051296.mkv +邓任妤-幸福的约定,http://em.21dtv.com/songs/60102775.mkv +李慧珍-幸福的约定,http://em.21dtv.com/songs/60081046.mkv +朴野-幸福的选择,http://em.21dtv.com/songs/60098436.mkv +萧淑慎-幸福的形状,http://em.21dtv.com/songs/60051291.mkv +江蕙-幸福的小站,http://em.21dtv.com/songs/60051290.mkv +许茹芸-幸福的相遇,http://em.21dtv.com/songs/60051289.mkv +张文绮-幸福的希望,http://em.21dtv.com/songs/60065277.mkv +王慧雯-幸福的笑脸,http://em.21dtv.com/songs/60133984.mkv +周华健-幸福到想哭,http://em.21dtv.com/songs/60051243.mkv +潘晓峰-幸福的d弦,http://em.21dtv.com/songs/60051245.mkv +佚名-幸福的位置,http://em.21dtv.com/songs/60051282.mkv +安琪-幸福的尾声,http://em.21dtv.com/songs/60051281.mkv +洪玲-幸福的未来,http://em.21dtv.com/songs/60095771.mkv +孙耀威+梁文音-幸福的忘记,http://em.21dtv.com/songs/60094458.mkv +陈文浩+牛牛-幸福的味道,http://em.21dtv.com/songs/60122237.mkv +曾雨轩-幸福的味道,http://em.21dtv.com/songs/60116872.mkv +江蕙-幸福的温度,http://em.21dtv.com/songs/60113776.mkv +摇滚高天+泡椒小姐-幸福的味道,http://em.21dtv.com/songs/60103312.mkv +许慧欣-辛福的味道,http://em.21dtv.com/songs/60092060.mkv +甜美真-幸福的味道,http://em.21dtv.com/songs/60065276.mkv +许慧欣-幸福的味道,http://em.21dtv.com/songs/60051287.mkv +王麟-幸福的味道,http://em.21dtv.com/songs/60051286.mkv +拉拉宝宝-幸福的味道,http://em.21dtv.com/songs/60051285.mkv +郭晓薇-幸福的味道,http://em.21dtv.com/songs/60051284.mkv +许慧欣-幸福的味道(演唱会),http://em.21dtv.com/songs/60051283.mkv +黄妃-幸福的通知,http://em.21dtv.com/songs/60051280.mkv +许慧欣-幸福的糖衣,http://em.21dtv.com/songs/60088647.mkv +付梦妮-幸福的条件,http://em.21dtv.com/songs/60109133.mkv +许慧欣-幸福的糖e,http://em.21dtv.com/songs/60051279.mkv +林佑威-幸福的声音,http://em.21dtv.com/songs/60078910.mkv +佚名-西风的声音,http://em.21dtv.com/songs/60047916.mkv +庞龙+郭欢-幸福的守望,http://em.21dtv.com/songs/60070089.mkv +黄雪瑶-幸福的伤口,http://em.21dtv.com/songs/60097588.mkv +许绍洋-幸福的瞬间,http://em.21dtv.com/songs/60051278.mkv +周传雄-幸福的瞬间(演唱会),http://em.21dtv.com/songs/60051277.mkv +潘裕文+徐宛铃-幸福的时光,http://em.21dtv.com/songs/60051276.mkv +萧煌奇-幸福的气味,http://em.21dtv.com/songs/60088574.mkv +朱紫娆-幸福的诠释,http://em.21dtv.com/songs/60084273.mkv +陈百潭-消风的气球,http://em.21dtv.com/songs/60049431.mkv +梁静茹-幸福的权利,http://em.21dtv.com/songs/60091526.mkv +张雷-幸福的牵挂,http://em.21dtv.com/songs/60078909.mkv +李代沫-幸福的起点,http://em.21dtv.com/songs/60097589.mkv +尹航-幸福的起点,http://em.21dtv.com/songs/60061785.mkv +STYLE-幸福的起点,http://em.21dtv.com/songs/60051272.mkv +薛之谦-校服的裙摆,http://em.21dtv.com/songs/60049903.mkv +黑涩会美眉-幸福的泡泡,http://em.21dtv.com/songs/60051271.mkv +鸿飞-像风的男子,http://em.21dtv.com/songs/60134488.mkv +张冬玲-幸福的女人,http://em.21dtv.com/songs/60051270.mkv +高安-幸福等你来,http://em.21dtv.com/songs/60078912.mkv +沈芯羽-幸福大魔咒,http://em.21dtv.com/songs/60051239.mkv +肖阳-幸福的梦想,http://em.21dtv.com/songs/60127295.mkv +许雅涵-幸福的冒泡,http://em.21dtv.com/songs/60051269.mkv +喜波-幸福的玫瑰,http://em.21dtv.com/songs/60131289.mkv +金大喜-幸福的乐章,http://em.21dtv.com/songs/60051260.mkv +金大喜+朱铭捷-幸福的乐章,http://em.21dtv.com/songs/60051259.mkv +卓文萱-幸福的理由(HD),http://em.21dtv.com/songs/10012718.mkv +卓文萱-幸福的理由,http://em.21dtv.com/songs/60099128.mkv +张栋梁-幸福的理由(演唱会),http://em.21dtv.com/songs/60051262.mkv +朱俐静-幸福的螺旋,http://em.21dtv.com/songs/60116881.mkv +小沈阳-幸福的泪水,http://em.21dtv.com/songs/60051261.mkv +谢娜-幸福的流泪,http://em.21dtv.com/songs/60051265.mkv +张信哲+OLIVIA-幸福的力量,http://em.21dtv.com/songs/60051263.mkv +徐若瑄-幸福的轮廓,http://em.21dtv.com/songs/60051268.mkv +江明学-幸福的恋歌,http://em.21dtv.com/songs/60095717.mkv +徐一鸣+TRY-幸福的开始,http://em.21dtv.com/songs/60066494.mkv +丁当-幸福的可能,http://em.21dtv.com/songs/60107455.mkv +丁当-幸福的可能,http://em.21dtv.com/songs/60093743.mkv +周迅-幸福的开关,http://em.21dtv.com/songs/60109231.mkv +陈慧琳-幸福的快车,http://em.21dtv.com/songs/60051258.mkv +向蕙玲-幸福的嫁妆,http://em.21dtv.com/songs/60108371.mkv +杨丞琳-幸福的节拍,http://em.21dtv.com/songs/60113652.mkv +刘畊宏-幸福的距离,http://em.21dtv.com/songs/60051257.mkv +潘佩莉-幸福的家伙,http://em.21dtv.com/songs/60051256.mkv +雷雨哥-幸福的含义,http://em.21dtv.com/songs/60134438.mkv +陈怡婷-幸福的花香,http://em.21dtv.com/songs/60122232.mkv +张蓉蓉-相逢等何时,http://em.21dtv.com/songs/60048641.mkv +张优-幸福的歌谣,http://em.21dtv.com/songs/60115898.mkv +佚名-西风的故乡,http://em.21dtv.com/songs/60047913.mkv +梁静茹-幸福的感觉,http://em.21dtv.com/songs/60091525.mkv +文章-幸福的感觉(演唱会),http://em.21dtv.com/songs/60071363.mkv +李娅莎-幸福的孤单,http://em.21dtv.com/songs/60114597.mkv +刘李-幸福的疯子,http://em.21dtv.com/songs/60111719.mkv +李茂山-幸福的风筝,http://em.21dtv.com/songs/60088047.mkv +庄莹-幸福的方向,http://em.21dtv.com/songs/60051254.mkv +姜育恒+周潇潇-幸福的代言,http://em.21dtv.com/songs/60116690.mkv +叶世荣-幸福的定义,http://em.21dtv.com/songs/60051253.mkv +蓝弘钦-幸福的定义(无原唱),http://em.21dtv.com/songs/60051252.mkv +萧亚轩-幸福的地图,http://em.21dtv.com/songs/60051251.mkv +蔡国庆-幸福的灯火,http://em.21dtv.com/songs/60051250.mkv +陈柔希-幸福的答桉,http://em.21dtv.com/songs/60097591.mkv +纪如璟-幸福的存在,http://em.21dtv.com/songs/60051249.mkv +乔幼+陈随意-幸福的春天,http://em.21dtv.com/songs/60109127.mkv +王建杰-幸福的车手,http://em.21dtv.com/songs/60107068.mkv +何鹏-媳妇当车模,http://em.21dtv.com/songs/60104781.mkv +黄思婷-幸福的出口,http://em.21dtv.com/songs/60089044.mkv +任重-幸福的错觉,http://em.21dtv.com/songs/60113250.mkv +美宝-幸福的翅膀,http://em.21dtv.com/songs/60097590.mkv +庭竹-幸福的翅膀,http://em.21dtv.com/songs/60051248.mkv +周渝民-幸福的保证,http://em.21dtv.com/songs/60051246.mkv +翊馨-幸福的不舍,http://em.21dtv.com/songs/60071362.mkv +罗文聪+叶家妤-幸福的表情,http://em.21dtv.com/songs/60051247.mkv +何龙雨+傅潇莹-幸福到百年,http://em.21dtv.com/songs/60051242.mkv +以东-幸福的爱情,http://em.21dtv.com/songs/60078905.mkv +李静-幸福草原美,http://em.21dtv.com/songs/60051233.mkv +刘建军-消防兵之歌,http://em.21dtv.com/songs/60061755.mkv +郭静-幸福不设限,http://em.21dtv.com/songs/60117288.mkv +郭静-幸福不设限,http://em.21dtv.com/songs/60116298.mkv +朱星潼-幸福吧妈妈,http://em.21dtv.com/songs/60117800.mkv +王麟-幸福の味道,http://em.21dtv.com/songs/60051226.mkv +郑吟秋-星儿知我心,http://em.21dtv.com/songs/60051040.mkv +王小尧-新二十四孝,http://em.21dtv.com/songs/60067663.mkv +段红-小二黑结婚,http://em.21dtv.com/songs/60066470.mkv +刀郎+黄灿-肖尔布拉克,http://em.21dtv.com/songs/60070068.mkv +梁观成-兄弟在一起,http://em.21dtv.com/songs/60131574.mkv +无悔-兄弟在身旁,http://em.21dtv.com/songs/60118620.mkv +钟汉良-心的最里面,http://em.21dtv.com/songs/60084240.mkv +曾春年+飞翔-兄弟争口气,http://em.21dtv.com/songs/60109405.mkv +青稞地组合-兄弟在草原,http://em.21dtv.com/songs/60129777.mkv +40+林贞熙-像电影一样,http://em.21dtv.com/songs/60102988.mkv +三毛+蓝羽-兄弟呀兄弟,http://em.21dtv.com/songs/60113212.mkv +虞笙-新的夜晚,http://em.21dtv.com/songs/60063297.mkv +简红-兄弟一条命,http://em.21dtv.com/songs/60104355.mkv +覃浩-兄弟一起醉,http://em.21dtv.com/songs/60098762.mkv +宋潮-兄弟一起飞,http://em.21dtv.com/songs/60131352.mkv +曹越-兄弟一起闯,http://em.21dtv.com/songs/60111945.mkv +曹越+纪晓斌-兄弟一起闯,http://em.21dtv.com/songs/60105118.mkv +晶迪+金龙-兄弟一起闯,http://em.21dtv.com/songs/60103325.mkv +永浩-兄弟一家亲,http://em.21dtv.com/songs/60133912.mkv +火山-兄弟一辈子,http://em.21dtv.com/songs/60121891.mkv +潘东亮-兄弟一辈子,http://em.21dtv.com/songs/60110355.mkv +杨浩龙-兄弟一杯酒,http://em.21dtv.com/songs/60068885.mkv +金霖+刘一祯+陈雅琪-孝道行天下,http://em.21dtv.com/songs/60118113.mkv +高义健+董一名-兄弟向前冲,http://em.21dtv.com/songs/60128610.mkv +姜鹏-兄弟想你了,http://em.21dtv.com/songs/60133548.mkv +姜鹏+韩东-兄弟想你了,http://em.21dtv.com/songs/60119408.mkv +张东朗-兄弟辛苦了,http://em.21dtv.com/songs/60109296.mkv +群星-相对无言+today(演唱会),http://em.21dtv.com/songs/60084171.mkv +海阔-兄弟我挺你,http://em.21dtv.com/songs/60110348.mkv +祁隆+赵小兵-兄弟我敬你,http://em.21dtv.com/songs/60098674.mkv +梦成-新单身情歌,http://em.21dtv.com/songs/60078824.mkv +林垂立+蔡秋凤-新都市恋情,http://em.21dtv.com/songs/60050822.mkv +栾添翔-兄弟情最深,http://em.21dtv.com/songs/60078950.mkv +红蔷薇-想的全是你,http://em.21dtv.com/songs/60112876.mkv +东郭先生-兄弟情如酒,http://em.21dtv.com/songs/60122460.mkv +于文华-想对婆婆说,http://em.21dtv.com/songs/60049023.mkv +赵鑫-许多年以后,http://em.21dtv.com/songs/60116268.mkv +李佳霖-许多年以后,http://em.21dtv.com/songs/60070105.mkv +赵鑫-许多年以后,http://em.21dtv.com/songs/60065288.mkv +妙音兄弟-兄弟你好吗,http://em.21dtv.com/songs/60126761.mkv +胡建烽-心底那个人,http://em.21dtv.com/songs/60104374.mkv +F4-想对你更好,http://em.21dtv.com/songs/60090405.mkv +中坚份子-想对你更好(演唱会)(无原唱),http://em.21dtv.com/songs/60049022.mkv +蒙哥+零零-心的另一半,http://em.21dtv.com/songs/60065227.mkv +佚名-心的另一边,http://em.21dtv.com/songs/60050193.mkv +崔建国-兄弟来相会,http://em.21dtv.com/songs/60104090.mkv +张胜淼-兄弟来喝酒,http://em.21dtv.com/songs/60113492.mkv +张胜淼+尹南+熊小龙+陈龙-兄弟来喝酒,http://em.21dtv.com/songs/60099242.mkv +孟想-兄弟累不累,http://em.21dtv.com/songs/60123832.mkv +飞翔-兄弟快挣钱,http://em.21dtv.com/songs/60115531.mkv +青山-孝道记在心,http://em.21dtv.com/songs/60084223.mkv +苏青山-孝道记心上,http://em.21dtv.com/songs/60120885.mkv +李辉+张文广-兄弟记得我,http://em.21dtv.com/songs/60131512.mkv +卓依婷-向大家拜年,http://em.21dtv.com/songs/60049314.mkv +马天宇-想到和做到,http://em.21dtv.com/songs/60049011.mkv +利哥-兄弟好兄弟,http://em.21dtv.com/songs/60132259.mkv +胡建烽+郑浩南-兄弟喝个够,http://em.21dtv.com/songs/60129511.mkv +金丹+叶小青+笑天-兄弟干一杯,http://em.21dtv.com/songs/60121019.mkv +刘尊+刘爽-兄弟干一杯,http://em.21dtv.com/songs/60106640.mkv +杨鸿-兄弟干一杯(演),http://em.21dtv.com/songs/60100195.mkv +云珩-兄弟干一杯,http://em.21dtv.com/songs/60097517.mkv +余润泽+徐铵-兄弟跟我走,http://em.21dtv.com/songs/60103084.mkv +舒晓龙-兄弟跟我唱,http://em.21dtv.com/songs/60127321.mkv +暴林-心都给了你,http://em.21dtv.com/songs/60050222.mkv +扎西-兄弟哥顶你,http://em.21dtv.com/songs/60130361.mkv +童可可-薛定谔的猫,http://em.21dtv.com/songs/60135623.mkv +张雨生-心底的中国,http://em.21dtv.com/songs/60050201.mkv +唐韦琪-小岛岛吔吔(演唱会),http://em.21dtv.com/songs/60049535.mkv +舒方-心底的温柔,http://em.21dtv.com/songs/60128327.mkv +易桀齐-幸达的我们,http://em.21dtv.com/songs/60051201.mkv +肖雨蒙-心底的天堂,http://em.21dtv.com/songs/60086040.mkv +张崇基+张崇德-兄弟的天空(演唱会),http://em.21dtv.com/songs/60065281.mkv +张学友-想的都是她,http://em.21dtv.com/songs/60049021.mkv +江美琪-相对的失去,http://em.21dtv.com/songs/60048629.mkv +CONNIE吕莘-心动的时刻,http://em.21dtv.com/songs/60050217.mkv +木棉-心底的秘密,http://em.21dtv.com/songs/60050200.mkv +田田-心动的季节,http://em.21dtv.com/songs/60132753.mkv +袁元+林浩威-心动的街角,http://em.21dtv.com/songs/60050216.mkv +林浩威-心动的街角,http://em.21dtv.com/songs/60050215.mkv +黑龙+关寅飞-兄弟大过天,http://em.21dtv.com/songs/60078946.mkv +赵传-心动的感觉(演唱会),http://em.21dtv.com/songs/60050214.mkv +王振楠-兴担趁嫜仔,http://em.21dtv.com/songs/60129392.mkv +马智宇+赵洪涛-兄弟闯天下,http://em.21dtv.com/songs/60105522.mkv +浩阳-兄弟常联系,http://em.21dtv.com/songs/60106074.mkv +邓小龙-兄弟抱一下,http://em.21dtv.com/songs/60100493.mkv +庞龙-兄弟抱一下(演唱会),http://em.21dtv.com/songs/60070096.mkv +庞龙-兄弟抱一下,http://em.21dtv.com/songs/60066498.mkv +尹啸-兄弟别忘记,http://em.21dtv.com/songs/60129012.mkv +任飞扬-兄弟遍天下,http://em.21dtv.com/songs/60123621.mkv +海心+阿当-兄弟不容易,http://em.21dtv.com/songs/60104284.mkv +吴晓荣-想对爸妈说,http://em.21dtv.com/songs/60100792.mkv +赵洪强-兄弟不分离,http://em.21dtv.com/songs/60131849.mkv +张宇轩+于金胜-兄弟啊兄弟,http://em.21dtv.com/songs/60078945.mkv +于金胜+张宇轩-兄弟啊兄弟,http://em.21dtv.com/songs/60072672.mkv +叶丽仪-献出真善美(演唱会),http://em.21dtv.com/songs/60048543.mkv +李强年-小船在荡漾,http://em.21dtv.com/songs/60086990.mkv +菁菁-小船在荡漾,http://em.21dtv.com/songs/60086989.mkv +罗桦-新禅院钟声(演唱会),http://em.21dtv.com/songs/60078814.mkv +陈浩德-新禅院钟声(演唱会),http://em.21dtv.com/songs/60078813.mkv +张杰-小丑与英雄,http://em.21dtv.com/songs/60070056.mkv +贺敬轩-下次遇见你,http://em.21dtv.com/songs/60129627.mkv +石小倩-献出一份爱,http://em.21dtv.com/songs/60078563.mkv +李蕙敏-下次遇到你(演唱会),http://em.21dtv.com/songs/60048271.mkv +沙溢-秀才遇到兵,http://em.21dtv.com/songs/60114650.mkv +刘芳菲-新春喜洋洋,http://em.21dtv.com/songs/60078823.mkv +佚名-乡村小姑娘,http://em.21dtv.com/songs/60048566.mkv +甘国卫+胡美仪-新春行大运,http://em.21dtv.com/songs/60050804.mkv +苏永康-小城无眼泪,http://em.21dtv.com/songs/60049516.mkv +王贞心-向春天出发,http://em.21dtv.com/songs/60111289.mkv +罗时丰-行船人的爱,http://em.21dtv.com/songs/60134111.mkv +佚名-行船人的爱,http://em.21dtv.com/songs/60019937.mkv +洪荣宏-行船人的爱,http://em.21dtv.com/songs/60019936.mkv +至上励合-炫彩朋友圈,http://em.21dtv.com/songs/60086070.mkv +佚名-献出你的爱,http://em.21dtv.com/songs/60048542.mkv +川北-炫彩滦州影,http://em.21dtv.com/songs/60099214.mkv +群星-新春乐逍遥,http://em.21dtv.com/songs/60078818.mkv +八大巨星-新春结良缘,http://em.21dtv.com/songs/60050807.mkv +润土-新川江号子,http://em.21dtv.com/songs/60050801.mkv +甘国卫+胡美仪-新春好运来,http://em.21dtv.com/songs/60050805.mkv +汪明荃-新春行大运,http://em.21dtv.com/songs/60092956.mkv +杨乃文-小丑的姿态,http://em.21dtv.com/songs/60096094.mkv +敬紫琦-西藏的祝福,http://em.21dtv.com/songs/60108532.mkv +张秀卿-想厝的心情,http://em.21dtv.com/songs/60049006.mkv +尤雅-想厝的心情,http://em.21dtv.com/songs/60049005.mkv +深白色2人组-香草的天空,http://em.21dtv.com/songs/60048899.mkv +佚名-新春大吉庆,http://em.21dtv.com/songs/60050803.mkv +东南-小丑的行李,http://em.21dtv.com/songs/60101242.mkv +巧千金-新春的歌谣,http://em.21dtv.com/songs/60078816.mkv +刘维-小丑的烦恼,http://em.21dtv.com/songs/60134943.mkv +朱丽婷-新采茶舞曲,http://em.21dtv.com/songs/60081279.mkv +袁冰-星城长沙美,http://em.21dtv.com/songs/60105360.mkv +尔萨-相伴这一生,http://em.21dtv.com/songs/60135147.mkv +阿星-下辈子见吧,http://em.21dtv.com/songs/60114176.mkv +恒辉-相伴在红尘,http://em.21dtv.com/songs/60106885.mkv +孟杨+江涛-下辈子等我,http://em.21dtv.com/songs/60112635.mkv +孟杨-下辈子等我,http://em.21dtv.com/songs/60048249.mkv +孟杨-下辈子等我(舞曲版),http://em.21dtv.com/songs/60048248.mkv +吕雅芬-西班牙女郎,http://em.21dtv.com/songs/60110072.mkv +外国民歌-西班牙女郎,http://em.21dtv.com/songs/60089757.mkv +佚名-西班牙女郎,http://em.21dtv.com/songs/60047884.mkv +佚名-西班牙女郎(快三),http://em.21dtv.com/songs/60047883.mkv +佚名-西班牙姑娘,http://em.21dtv.com/songs/60047881.mkv +佚名-惜别夜港边,http://em.21dtv.com/songs/60048030.mkv +龚诗嘉-想不想自由,http://em.21dtv.com/songs/60049002.mkv +苏永康-信不信由你(演唱会),http://em.21dtv.com/songs/60050994.mkv +七郎-惜别西海岸,http://em.21dtv.com/songs/60048029.mkv +佚名-写不完的爱,http://em.21dtv.com/songs/60049997.mkv +潘美辰-写不完的爱,http://em.21dtv.com/songs/60049996.mkv +李娜-写不完的爱,http://em.21dtv.com/songs/60049995.mkv +庄心妍+富博洋-新霸王别姬,http://em.21dtv.com/songs/60116772.mkv +童唱-小白兔请客,http://em.21dtv.com/songs/60049484.mkv +唐娜-小白兔乖乖,http://em.21dtv.com/songs/60049483.mkv +孙淑媚-心不是阮的,http://em.21dtv.com/songs/60119426.mkv +谭学胜-西部是故乡,http://em.21dtv.com/songs/60084139.mkv +佚名-想把情人留,http://em.21dtv.com/songs/60048996.mkv +纪晓斌-心被你左右,http://em.21dtv.com/songs/60131723.mkv +王宝磊-心被你左右,http://em.21dtv.com/songs/60124251.mkv +任妙音-想把你挽留,http://em.21dtv.com/songs/60125099.mkv +成林江措+琼雪卓玛-香巴拉峡谷,http://em.21dtv.com/songs/60066461.mkv +西部牛仔-香巴拉天堂,http://em.21dtv.com/songs/60072610.mkv +雪儿达娃-香巴拉女孩,http://em.21dtv.com/songs/60048897.mkv +香巴拉组合-香巴拉恋曲,http://em.21dtv.com/songs/60078598.mkv +金辉-小白脸(舞曲版),http://em.21dtv.com/songs/60072623.mkv +邓超予-新编龙船调,http://em.21dtv.com/songs/60108915.mkv +刘佳成-心拔凉拔凉,http://em.21dtv.com/songs/60113289.mkv +林淑容-小贝壳之恋,http://em.21dtv.com/songs/60117846.mkv +杜德伟-想不尽的你(演唱会),http://em.21dtv.com/songs/60048998.mkv +张嘉桐-心不会说谎,http://em.21dtv.com/songs/60113458.mkv +腾格尔-西部恍惚惚(演唱会),http://em.21dtv.com/songs/60047895.mkv +黑龙-学不会放手(演唱会),http://em.21dtv.com/songs/60051635.mkv +七郎+邱芸子-惜别火车站,http://em.21dtv.com/songs/60048027.mkv +慕容婕柃-惜别高铁站,http://em.21dtv.com/songs/60131442.mkv +斯美塔-香巴格里拉,http://em.21dtv.com/songs/60078597.mkv +刘思伟+春天-相伴到永远,http://em.21dtv.com/songs/60070037.mkv +晓月-惜别的校园,http://em.21dtv.com/songs/60080781.mkv +李茂山-惜别的晚暝(无原唱),http://em.21dtv.com/songs/60048024.mkv +罗文+甄妮-相伴到天边,http://em.21dtv.com/songs/60048624.mkv +田维英-想不到是你,http://em.21dtv.com/songs/60123037.mkv +马仁业-小白的梦想,http://em.21dtv.com/songs/60135995.mkv +朱主爱-新宝岛曼波,http://em.21dtv.com/songs/60133782.mkv +谢霆锋-西部大开发,http://em.21dtv.com/songs/60093196.mkv +洪禄云+陈水林-惜别的海岸,http://em.21dtv.com/songs/60084146.mkv +罗时丰-惜别的海岸,http://em.21dtv.com/songs/60078506.mkv +江蕙-惜别的海岸(演唱会),http://em.21dtv.com/songs/60062507.mkv +庄学忠-惜别的海岸,http://em.21dtv.com/songs/60048022.mkv +佚名-惜别的海岸,http://em.21dtv.com/songs/60048021.mkv +龙飘飘-惜别的海岸,http://em.21dtv.com/songs/60048020.mkv +黄乙玲-惜别的海岸,http://em.21dtv.com/songs/60048019.mkv +曾心梅-惜别的海岸,http://em.21dtv.com/songs/60048018.mkv +杨荣辉-惜别船头岸,http://em.21dtv.com/songs/60116949.mkv +巴郎百川-西部传歌人,http://em.21dtv.com/songs/60047891.mkv +弥藏乐队-香槟布鲁斯,http://em.21dtv.com/songs/60105060.mkv +周笔畅-新步步惊心,http://em.21dtv.com/songs/60112579.mkv +豪记大对唱-心爱只有你,http://em.21dtv.com/songs/60050163.mkv +方瑞娥+高向鹏-心爱只有你,http://em.21dtv.com/songs/60050162.mkv +秦杨+方馨-心爱走天涯,http://em.21dtv.com/songs/60050165.mkv +林姗+蔡小虎-心爱走天涯,http://em.21dtv.com/songs/60050164.mkv +佚名-心爱在那里,http://em.21dtv.com/songs/60050161.mkv +陈小云-心爱在那里,http://em.21dtv.com/songs/60050160.mkv +张蓉蓉-心爱再会啦,http://em.21dtv.com/songs/60050159.mkv +格格-相爱在草原,http://em.21dtv.com/songs/60133889.mkv +罗逻圣-相爱在春天,http://em.21dtv.com/songs/60123078.mkv +蔡枫华-相爱亦相分(演唱会),http://em.21dtv.com/songs/60061745.mkv +陈岩+花树-想爱一瞬间,http://em.21dtv.com/songs/60118157.mkv +张宇轩-相爱以后,http://em.21dtv.com/songs/60071307.mkv +胡斌-新阿瓦古丽,http://em.21dtv.com/songs/60130671.mkv +伊风-相爱手相牵,http://em.21dtv.com/songs/60048613.mkv +黄克林-心爱是啥人(无原唱),http://em.21dtv.com/songs/60050158.mkv +豆子民-相爱是个错,http://em.21dtv.com/songs/60086975.mkv +将军-向爱情呐喊,http://em.21dtv.com/songs/60104955.mkv +王筝-先爱情故事,http://em.21dtv.com/songs/60088308.mkv +林良欢+许志豪-心爱请保重,http://em.21dtv.com/songs/60050155.mkv +阿吉仔-新爱你入骨(无原唱),http://em.21dtv.com/songs/60050781.mkv +佚名-心爱你敢知,http://em.21dtv.com/songs/60050154.mkv +蔡秋凤-心爱你敢知,http://em.21dtv.com/songs/60050153.mkv +李蕙敏-想爱没有情,http://em.21dtv.com/songs/60048991.mkv +刘德华-相爱没缘份,http://em.21dtv.com/songs/60092356.mkv +MAKIYO-先爱了再说,http://em.21dtv.com/songs/60048447.mkv +阿勇-相爱六十年,http://em.21dtv.com/songs/60116327.mkv +楚为仁-心爱嫁别人(无原唱),http://em.21dtv.com/songs/60050151.mkv +谢知言-相爱恨逍遥,http://em.21dtv.com/songs/60124493.mkv +门丽-相爱到永远,http://em.21dtv.com/songs/60127527.mkv +冷漠-相爱到永远,http://em.21dtv.com/songs/60104803.mkv +枫桥-相爱到永远,http://em.21dtv.com/songs/60065181.mkv +刘思伟+春天-相爱到永远,http://em.21dtv.com/songs/60062675.mkv +南台湾小姑娘-心爱等一下,http://em.21dtv.com/songs/60050149.mkv +陈麒安+杜忻恬-相爱的勇气,http://em.21dtv.com/songs/60113080.mkv +万芳-相爱的运气,http://em.21dtv.com/songs/60048599.mkv +臻言+蒋婴-相爱到永久,http://em.21dtv.com/songs/60124389.mkv +佚名-心爱的小镇(无原唱),http://em.21dtv.com/songs/60050144.mkv +佚名-心爱的小姐,http://em.21dtv.com/songs/60050143.mkv +尤雅-心爱叼位去,http://em.21dtv.com/songs/60050150.mkv +余天+黄妃-心爱的台湾,http://em.21dtv.com/songs/60013881.mkv +庄学忠-心爱的是你,http://em.21dtv.com/songs/60050140.mkv +林俊吉-心爱的女王,http://em.21dtv.com/songs/60127097.mkv +钟应龙-心爱的女孩,http://em.21dtv.com/songs/60114157.mkv +伊风-心爱的女孩,http://em.21dtv.com/songs/60050133.mkv +朱俐静-相爱的模样,http://em.21dtv.com/songs/60080058.mkv +邓丽君-心爱的马车,http://em.21dtv.com/songs/60050126.mkv +佚名-相爱的理由,http://em.21dtv.com/songs/60048594.mkv +胡杨林+阿杜-相爱的泪水,http://em.21dtv.com/songs/60072600.mkv +齐雅-相爱的力量,http://em.21dtv.com/songs/60128646.mkv +向蕙玲-心爱的侣伴,http://em.21dtv.com/songs/60119341.mkv +闫凤梅-心爱的姑娘,http://em.21dtv.com/songs/60106359.mkv +尹寒-心爱的姑娘,http://em.21dtv.com/songs/60094076.mkv +扎西尼玛-心爱的姑娘,http://em.21dtv.com/songs/60050121.mkv +代小波-心爱的姑娘,http://em.21dtv.com/songs/60050120.mkv +祁隆-相爱到放弃,http://em.21dtv.com/songs/60078566.mkv +杨丞琳-相爱的方法,http://em.21dtv.com/songs/60130450.mkv +青蛙乐队-相爱的地方,http://em.21dtv.com/songs/60084170.mkv +贡米-寻爱的翅膀,http://em.21dtv.com/songs/60051806.mkv +孙淑媚-心爱的别走,http://em.21dtv.com/songs/60050116.mkv +吴俊宏-心爱的爸妈,http://em.21dtv.com/songs/60072638.mkv +佚名-心爱的甭哭,http://em.21dtv.com/songs/60050115.mkv +小凤凤-心爱的甭哭,http://em.21dtv.com/songs/60050114.mkv +陈雷-心爱的甭哭,http://em.21dtv.com/songs/60050113.mkv +熊七梅-心爱的百合,http://em.21dtv.com/songs/60102510.mkv +谢子歌-心爱的宝贝,http://em.21dtv.com/songs/60050112.mkv +红金升-心爱的爸爸(无原唱),http://em.21dtv.com/songs/60050111.mkv +关正杰-相爱不相聚,http://em.21dtv.com/songs/60092317.mkv +苗苗-新敖包相会,http://em.21dtv.com/songs/60096464.mkv +王菀之-想爱不相爱,http://em.21dtv.com/songs/60048988.mkv +谢金燕-心爱不是我,http://em.21dtv.com/songs/60050106.mkv +陈茂丰-相爱变伤害,http://em.21dtv.com/songs/60067621.mkv +蔡幸娟-相爱不容易,http://em.21dtv.com/songs/60048589.mkv +魏晨-相爱不能见,http://em.21dtv.com/songs/60109761.mkv +汪苏泷-想爱不能爱,http://em.21dtv.com/songs/60124195.mkv +张柏芝-相爱不能爱,http://em.21dtv.com/songs/60078565.mkv +苏路+何冠颖-心爱彼个人,http://em.21dtv.com/songs/60050105.mkv +郭斯炫+黄胧刺-相爱不分开,http://em.21dtv.com/songs/60081314.mkv +吴彤+罗忆诗-相爱不到老,http://em.21dtv.com/songs/60063102.mkv +余天+黄妃-心爱ㄟ台湾,http://em.21dtv.com/songs/60050104.mkv +韩庚-X+MAN,http://em.21dtv.com/songs/60080973.mkv +玉置浩二-行かないで,http://em.21dtv.com/songs/60135528.mkv +林忆莲-我坐在这里(演唱会),http://em.21dtv.com/songs/60047006.mkv +黄凯芹-我只在乎你,http://em.21dtv.com/songs/60129833.mkv +孙睦涵-我只在乎你,http://em.21dtv.com/songs/60118500.mkv +邰正宵-我只在乎你,http://em.21dtv.com/songs/60117274.mkv +张杰+宋宇宁-我只在乎你,http://em.21dtv.com/songs/60111881.mkv +孙睦涵+徐小清-我只在乎你,http://em.21dtv.com/songs/60111812.mkv +张碧晨-我只在乎你,http://em.21dtv.com/songs/60105052.mkv +齐秦+齐豫-我只在乎你,http://em.21dtv.com/songs/60098967.mkv +胡海泉+徐林-我只在乎你,http://em.21dtv.com/songs/60095052.mkv +彭佳慧-我只在乎你,http://em.21dtv.com/songs/60086955.mkv +春天-我只在乎你,http://em.21dtv.com/songs/60086855.mkv +林宥嘉-我只在乎你,http://em.21dtv.com/songs/60085949.mkv +尹熙水-我只在乎你,http://em.21dtv.com/songs/60084109.mkv +林宥嘉-我只在乎你(演唱会),http://em.21dtv.com/songs/60078423.mkv +郭书瑶-我只在乎你(演唱会),http://em.21dtv.com/songs/60078422.mkv +刘惜君-我只在乎你,http://em.21dtv.com/songs/60071282.mkv +徐若瑄-我只在乎你(演唱会),http://em.21dtv.com/songs/60067597.mkv +伍皎乾-我只在乎你,http://em.21dtv.com/songs/60063113.mkv +陈洁丽-我只在乎你(演唱会),http://em.21dtv.com/songs/60062261.mkv +苏打绿-我只在乎你(演唱会),http://em.21dtv.com/songs/60061716.mkv +RUBBER BAND-我只在乎你(演唱会),http://em.21dtv.com/songs/60061715.mkv +萧潇-我只在乎你,http://em.21dtv.com/songs/60046917.mkv +屠洪纲-我只在乎你,http://em.21dtv.com/songs/60046916.mkv +梁咏琪-我只在乎你,http://em.21dtv.com/songs/60046915.mkv +何润东-我只在乎你,http://em.21dtv.com/songs/60046914.mkv +邓丽君-我只在乎你,http://em.21dtv.com/songs/60046913.mkv +成龙+邓丽君-我只在乎你,http://em.21dtv.com/songs/60046912.mkv +BOBO-我只在乎你,http://em.21dtv.com/songs/60046911.mkv +BJACK-我只在乎你,http://em.21dtv.com/songs/60046910.mkv +苏永康-我只在乎你(演唱会),http://em.21dtv.com/songs/60046909.mkv +雷安娜-我只在乎你(演唱会),http://em.21dtv.com/songs/60046908.mkv +蓝奕邦-为执着干杯,http://em.21dtv.com/songs/60071219.mkv +黎姿-我只怨自己(演唱会),http://em.21dtv.com/songs/60046907.mkv +伍浩哲-为着一字爱(无原唱),http://em.21dtv.com/songs/60044143.mkv +郑秀文-我只要现在,http://em.21dtv.com/songs/60046903.mkv +佚名-我终于学会,http://em.21dtv.com/songs/60046966.mkv +周传雄-我终于学会(无原唱),http://em.21dtv.com/songs/60046965.mkv +夏婉安-王子一米七,http://em.21dtv.com/songs/60121529.mkv +李建复-网住一季秋,http://em.21dtv.com/songs/60043400.mkv +费玉清-网住一季秋,http://em.21dtv.com/songs/60043399.mkv +于全莉-雾中云海它,http://em.21dtv.com/songs/60101883.mkv +解彬-王子与公主,http://em.21dtv.com/songs/60061646.mkv +袁惟仁-王子与公主(演唱会),http://em.21dtv.com/songs/60043376.mkv +林展逸-我自远方来,http://em.21dtv.com/songs/60046980.mkv +关楚耀-我这一代人,http://em.21dtv.com/songs/60067595.mkv +许志安-我这样爱你,http://em.21dtv.com/songs/60046843.mkv +黎明-我这样爱你(演唱会),http://em.21dtv.com/songs/60046842.mkv +侧田-我这样爱你(演唱会),http://em.21dtv.com/songs/60046840.mkv +SNH48-呜吒,http://em.21dtv.com/songs/60104729.mkv +芊芳-我真想你呢,http://em.21dtv.com/songs/60135657.mkv +郑源-我在想念你,http://em.21dtv.com/songs/60103623.mkv +刘德华-我只想你好,http://em.21dtv.com/songs/60046894.mkv +成龙-我只想你懂(无原唱),http://em.21dtv.com/songs/60046893.mkv +糖兄妹-我只想快乐,http://em.21dtv.com/songs/60084108.mkv +那英-我只喜欢你,http://em.21dtv.com/songs/60046889.mkv +MAKIYO-我只想到你,http://em.21dtv.com/songs/60046891.mkv +张学友-我只想唱歌,http://em.21dtv.com/songs/60109303.mkv +张学友-我只想唱歌,http://em.21dtv.com/songs/60106826.mkv +杨哲-我只为你活,http://em.21dtv.com/songs/60118706.mkv +李威-我只为你乖,http://em.21dtv.com/songs/60046888.mkv +孙少华-武则天自叹,http://em.21dtv.com/songs/60047757.mkv +丸子-丸子特功队,http://em.21dtv.com/songs/60090485.mkv +丸子-丸子特攻队,http://em.21dtv.com/songs/60043094.mkv +ZIA+何东均-我总是这样,http://em.21dtv.com/songs/60062186.mkv +苏唯-我只是影子,http://em.21dtv.com/songs/60120879.mkv +佚名-我再说一遍,http://em.21dtv.com/songs/60046765.mkv +李度-我只是需要,http://em.21dtv.com/songs/60046886.mkv +陈伟联-我只是想要,http://em.21dtv.com/songs/60046884.mkv +佚名-为着十万元,http://em.21dtv.com/songs/60044142.mkv +妞妞姐妹-为着十万元,http://em.21dtv.com/songs/60044141.mkv +卓依婷-我在思念你,http://em.21dtv.com/songs/60087464.mkv +苏芮-我只是个人,http://em.21dtv.com/songs/60112172.mkv +邓丽君-我怎舍得你,http://em.21dtv.com/songs/60046825.mkv +叶玉卿-我总舍不得,http://em.21dtv.com/songs/60046981.mkv +林忆莲-我最亲爱的,http://em.21dtv.com/songs/60132616.mkv +秦博-我最亲爱的,http://em.21dtv.com/songs/60119854.mkv +李代沫-我最亲爱的,http://em.21dtv.com/songs/60112743.mkv +品冠-我最亲爱的(HD),http://em.21dtv.com/songs/10012750.mkv +李致贤-我最亲爱的,http://em.21dtv.com/songs/60103373.mkv +苏打绿-我最亲爱的,http://em.21dtv.com/songs/60101486.mkv +品冠-我最亲爱的,http://em.21dtv.com/songs/60099165.mkv +张惠妹-我最亲爱的,http://em.21dtv.com/songs/60081438.mkv +王子月-我最亲爱的,http://em.21dtv.com/songs/60078428.mkv +苏打绿-我最亲爱的(演唱会),http://em.21dtv.com/songs/60078427.mkv +李代沫-我最亲爱的,http://em.21dtv.com/songs/60072575.mkv +青山+孔兰薰+吕珊-我在你左右(演唱会),http://em.21dtv.com/songs/60084100.mkv +余天-我在你左右,http://em.21dtv.com/songs/60046792.mkv +青山-我在你左右,http://em.21dtv.com/songs/60046791.mkv +费玉清-我在你左右,http://em.21dtv.com/songs/60046790.mkv +陈松伶-挽着你双手,http://em.21dtv.com/songs/60043204.mkv +罗美玲-我在你身旁,http://em.21dtv.com/songs/60100383.mkv +苏路-我置你身边,http://em.21dtv.com/songs/60104383.mkv +陈少华-我在你身边,http://em.21dtv.com/songs/60046787.mkv +陈黎明-我知女人心,http://em.21dtv.com/songs/60069999.mkv +吴淑敏-无知你好无,http://em.21dtv.com/songs/60047592.mkv +杨梓-吻住你的眼,http://em.21dtv.com/songs/60105177.mkv +玛丽-吻住你的眼,http://em.21dtv.com/songs/60098658.mkv +雷佳-握住你的手,http://em.21dtv.com/songs/60047028.mkv +图腾-我在那边唱,http://em.21dtv.com/songs/60046784.mkv +彭青-我只能爱你,http://em.21dtv.com/songs/60101350.mkv +许茹芸-我只能爱你,http://em.21dtv.com/songs/60046881.mkv +苗苗-我赞美中国,http://em.21dtv.com/songs/60072568.mkv +卓文萱-我怎么知道,http://em.21dtv.com/songs/60046819.mkv +冷漠-乌毡帽情缘,http://em.21dtv.com/songs/60117568.mkv +田维英-我怎么哭了,http://em.21dtv.com/songs/60118805.mkv +八三夭-我怎么哭了,http://em.21dtv.com/songs/60106612.mkv +林淑蓉-我怎么哭了,http://em.21dtv.com/songs/60046813.mkv +费翔-我怎么哭了,http://em.21dtv.com/songs/60046812.mkv +七郎+邱芸子-无醉吗会茫,http://em.21dtv.com/songs/60047607.mkv +梁咏琪-我住7楼a(演唱会),http://em.21dtv.com/songs/60046971.mkv +群星-万众抗震灾,http://em.21dtv.com/songs/60078029.mkv +金波-我住集装箱,http://em.21dtv.com/songs/60068801.mkv +汤潮-为自己疗伤,http://em.21dtv.com/songs/60044147.mkv +荆涛-为自己加油,http://em.21dtv.com/songs/60129546.mkv +杨谨+沙滩宝贝-为自己加油,http://em.21dtv.com/songs/60125762.mkv +王如华-为自己加油,http://em.21dtv.com/songs/60122991.mkv +布朗-为自己加油,http://em.21dtv.com/songs/60065023.mkv +任贤齐-为自己骄傲,http://em.21dtv.com/songs/60044146.mkv +舒米恩-为自己喝彩,http://em.21dtv.com/songs/60126093.mkv +舒米恩-为自己喝彩,http://em.21dtv.com/songs/60097513.mkv +王昊-为自己喝彩,http://em.21dtv.com/songs/60071220.mkv +锐印组合-为自己鼓掌,http://em.21dtv.com/songs/60118987.mkv +群星-为自己鼓掌,http://em.21dtv.com/songs/60044145.mkv +Connie吕莘-无止尽的路,http://em.21dtv.com/songs/60107401.mkv +吕莘-无止尽的路,http://em.21dtv.com/songs/60106676.mkv +童安格-我在黑夜里,http://em.21dtv.com/songs/60110443.mkv +章鹏-我在黑夜里,http://em.21dtv.com/songs/60089432.mkv +孙中亮-我只会爱你,http://em.21dtv.com/songs/60070000.mkv +大庆小芳-为中国争光,http://em.21dtv.com/songs/60126739.mkv +王莹-为祖国祝福,http://em.21dtv.com/songs/60044152.mkv +刘和刚-为祖国祝福,http://em.21dtv.com/songs/60044151.mkv +赵娜-为祖国喝彩,http://em.21dtv.com/songs/60082047.mkv +陈茗加-为祖国喝彩,http://em.21dtv.com/songs/60065024.mkv +蓝星-为祖国喝彩,http://em.21dtv.com/songs/60044150.mkv +刘和刚-为祖国干杯,http://em.21dtv.com/songs/60072504.mkv +王霞-为祖国干杯,http://em.21dtv.com/songs/60044149.mkv +群星-为祖国干杯(演唱会),http://em.21dtv.com/songs/60044148.mkv +刘晶-为祖国点赞,http://em.21dtv.com/songs/60109182.mkv +蔡秋凤-无醉分袂开,http://em.21dtv.com/songs/60047606.mkv +郑元畅-王子复仇记,http://em.21dtv.com/songs/60043371.mkv +光头老韩-我真的醉了,http://em.21dtv.com/songs/60114397.mkv +莫旭秋-我找到自己(演唱会),http://em.21dtv.com/songs/60078413.mkv +齐秦-我找到自己,http://em.21dtv.com/songs/60046834.mkv +刘家昌-我找到自己,http://em.21dtv.com/songs/60046833.mkv +黄勇-我真的在乎,http://em.21dtv.com/songs/60089033.mkv +张信哲-我真的愿意,http://em.21dtv.com/songs/60089851.mkv +李雅微-我值得拥有,http://em.21dtv.com/songs/60084106.mkv +佚名-我真的愿意,http://em.21dtv.com/songs/60046876.mkv +张栋梁-我真的以为,http://em.21dtv.com/songs/60046875.mkv +蔡淳佳-未知的以后,http://em.21dtv.com/songs/60044300.mkv +赵霏儿-未知的选择,http://em.21dtv.com/songs/60116269.mkv +萧敬腾-王子的新衣,http://em.21dtv.com/songs/60126127.mkv +萧敬腾+王呈章-王子的新衣,http://em.21dtv.com/songs/60112925.mkv +萧敬腾-王子的新衣,http://em.21dtv.com/songs/60043370.mkv +粗大Band-未知的星球,http://em.21dtv.com/songs/60121990.mkv +神木与瞳-武装的蔷薇,http://em.21dtv.com/songs/60047759.mkv +黄乙玲-无字的情批,http://em.21dtv.com/songs/60047602.mkv +广智-我真的没醉,http://em.21dtv.com/songs/60046863.mkv +心瑶-无字的墓碑,http://em.21dtv.com/songs/60118586.mkv +刚辉-我真的累了,http://em.21dtv.com/songs/60046862.mkv +郑中基-我真的可以,http://em.21dtv.com/songs/60046860.mkv +高峰-我真的哭了,http://em.21dtv.com/songs/60088996.mkv +郑中基-我真的哭过,http://em.21dtv.com/songs/60046861.mkv +孙燕姿-未知的精采,http://em.21dtv.com/songs/60090930.mkv +孙燕姿-未知的精彩,http://em.21dtv.com/songs/60044299.mkv +李赵鹏-我真的好累,http://em.21dtv.com/songs/60129245.mkv +初晨-我真的好累,http://em.21dtv.com/songs/60120376.mkv +王迪-我真的好累,http://em.21dtv.com/songs/60065135.mkv +郝婉彤-完整的残缺,http://em.21dtv.com/songs/60114132.mkv +刘嘉亮-伪装的成全,http://em.21dtv.com/songs/60067529.mkv +时金钰-无助的痴情,http://em.21dtv.com/songs/60047598.mkv +唐冰冰-我真的爱你,http://em.21dtv.com/songs/60117627.mkv +黄仲昆-我真的爱你,http://em.21dtv.com/songs/60046851.mkv +陈洁仪-我真的爱错,http://em.21dtv.com/songs/60046850.mkv +严爵-吾在场证明,http://em.21dtv.com/songs/60071292.mkv +佚名-我住长江头,http://em.21dtv.com/songs/60046972.mkv +徐若瑄-王子变青蛙,http://em.21dtv.com/songs/60043369.mkv +徐新军-我最爱的人,http://em.21dtv.com/songs/60108519.mkv +曹雷-我最爱的人,http://em.21dtv.com/songs/60105949.mkv +吴松发-我最爱的人,http://em.21dtv.com/songs/60084111.mkv +青青凉-我最爱的人,http://em.21dtv.com/songs/60061718.mkv +林姗-我最爱的人,http://em.21dtv.com/songs/60046990.mkv +阿华-我最爱的人,http://em.21dtv.com/songs/60046989.mkv +F.I.R-我最爱的人(演唱会),http://em.21dtv.com/songs/60046988.mkv +李小璐-我最爱的你,http://em.21dtv.com/songs/60112753.mkv +小玉玉-我最爱的家,http://em.21dtv.com/songs/60127922.mkv +佚名-无缘做鸳鸯,http://em.21dtv.com/songs/60047583.mkv +马郁-我一直以为,http://em.21dtv.com/songs/60046634.mkv +闫莉-我要这样唱,http://em.21dtv.com/songs/60118120.mkv +不辣-我一直往前,http://em.21dtv.com/songs/60128725.mkv +佚名-我要走天涯,http://em.21dtv.com/songs/60046605.mkv +林子祥-我要走天涯(演唱会),http://em.21dtv.com/songs/60046604.mkv +林子祥+叶倩文-我要走天涯(演唱会),http://em.21dtv.com/songs/60046603.mkv +詹雅雯-无缘做你去(无原唱),http://em.21dtv.com/songs/60047582.mkv +丁汀-我要找老婆,http://em.21dtv.com/songs/60046599.mkv +禹黎朔-我要做好子(无原唱),http://em.21dtv.com/songs/60046608.mkv +茅小勇-我也在乎你,http://em.21dtv.com/songs/60102670.mkv +孙健康-我一直都在,http://em.21dtv.com/songs/60133558.mkv +余志祥-我一直都在,http://em.21dtv.com/songs/60108303.mkv +林稷安+程于伦-我一直都在,http://em.21dtv.com/songs/60078394.mkv +苏永康-我一直都在,http://em.21dtv.com/songs/60046632.mkv +丁浩然-我一直都在,http://em.21dtv.com/songs/60046631.mkv +Mamamoo-我眼中的你,http://em.21dtv.com/songs/60109100.mkv +侯强-我一直等你,http://em.21dtv.com/songs/60046630.mkv +陈明-我要找到你,http://em.21dtv.com/songs/60046597.mkv +曾心梅-无缘做爱人,http://em.21dtv.com/songs/60047581.mkv +纪炎炎-我要找爱情,http://em.21dtv.com/songs/60046596.mkv +沙宝亮-我愿意为你,http://em.21dtv.com/songs/60091605.mkv +周华健-我愿意去等,http://em.21dtv.com/songs/60046758.mkv +尤雅-我有一颗心,http://em.21dtv.com/songs/60046717.mkv +罗时丰-我有一句话,http://em.21dtv.com/songs/60130652.mkv +佚名-我有一句话,http://em.21dtv.com/songs/60046715.mkv +杨宗宪-我有一句话,http://em.21dtv.com/songs/60046714.mkv +文夏-我有一句话,http://em.21dtv.com/songs/60046713.mkv +办桌二人组-我有一句话,http://em.21dtv.com/songs/60046712.mkv +许茹芸-我永远记得,http://em.21dtv.com/songs/60092078.mkv +于宏+常虹+安红丽-为友谊喝彩,http://em.21dtv.com/songs/60061662.mkv +林妙可-我有一个家,http://em.21dtv.com/songs/60046709.mkv +何耀珊-我永远都在,http://em.21dtv.com/songs/60046673.mkv +钟明秋-我有一段情,http://em.21dtv.com/songs/60126320.mkv +苗苗-我有一段情,http://em.21dtv.com/songs/60085940.mkv +童丽-我有一段情,http://em.21dtv.com/songs/60078400.mkv +卓依婷-我有一段情,http://em.21dtv.com/songs/60046708.mkv +尤雅-我有一段情,http://em.21dtv.com/songs/60046707.mkv +佚名-我有一段情,http://em.21dtv.com/songs/60046706.mkv +叶丽仪-我有一段情(演唱会),http://em.21dtv.com/songs/60046705.mkv +吴莺音-我有一段情(演唱会),http://em.21dtv.com/songs/60046704.mkv +蔡琴-我有一段情(演唱会),http://em.21dtv.com/songs/60046703.mkv +吴淑敏-无药医的爱,http://em.21dtv.com/songs/60047543.mkv +刘凤屏+向华-我愿月常圆,http://em.21dtv.com/songs/60046760.mkv +庞龙-我要拥抱你,http://em.21dtv.com/songs/60046589.mkv +陈思安+办桌阿杰-我犹原爱你,http://em.21dtv.com/songs/60095995.mkv +办桌阿杰+陈思安-我犹原爱你,http://em.21dtv.com/songs/60095480.mkv +潘秀琼-我永远爱你,http://em.21dtv.com/songs/60046671.mkv +群星-我要秀自己,http://em.21dtv.com/songs/60046587.mkv +吴杨雨-我要谢谢你,http://em.21dtv.com/songs/60081415.mkv +陈小春-我要新生活,http://em.21dtv.com/songs/60046586.mkv +解伟苓-我又想起你,http://em.21dtv.com/songs/60107998.mkv +江美琪-我又想起你,http://em.21dtv.com/songs/60046723.mkv +李栋伟-我又想你了,http://em.21dtv.com/songs/60135367.mkv +方顺吉-为伊心茫茫,http://em.21dtv.com/songs/60044140.mkv +张政雄+薛佩洁-无鱼虾嘛好,http://em.21dtv.com/songs/60047548.mkv +祁哲西-我要喜欢你,http://em.21dtv.com/songs/60084095.mkv +张智霖-我也喜欢你,http://em.21dtv.com/songs/60046617.mkv +潘映竹-我要幸福了,http://em.21dtv.com/songs/60105225.mkv +林翠萍-无缘偕白首,http://em.21dtv.com/songs/60091492.mkv +卓依婷-望月想爱人,http://em.21dtv.com/songs/60043731.mkv +佚名-望月想爱人,http://em.21dtv.com/songs/60043730.mkv +洪荣宏-望月想爱人,http://em.21dtv.com/songs/60043729.mkv +小贱-我以为我能,http://em.21dtv.com/songs/60101073.mkv +林良欢-望月问天星,http://em.21dtv.com/songs/60061650.mkv +张暄祺-我有我态度,http://em.21dtv.com/songs/60066431.mkv +彭羚-我有我天地,http://em.21dtv.com/songs/60046702.mkv +丁祎文-我愿为僧尼,http://em.21dtv.com/songs/60065128.mkv +赵传-问一问青天,http://em.21dtv.com/songs/60044508.mkv +黄安-我愿为你错,http://em.21dtv.com/songs/60046740.mkv +欧阳泽兰-我有我梦想,http://em.21dtv.com/songs/60085939.mkv +群星-我有我梦想,http://em.21dtv.com/songs/60084096.mkv +成龙-我有我路向,http://em.21dtv.com/songs/60102273.mkv +臧恰-我要忘记他,http://em.21dtv.com/songs/60129515.mkv +[Group] +groupName=十六万歌曲MV等 - 79 +臧恰-我要忘记他,http://em.21dtv.com/songs/60124387.mkv +KAVANA-will you wait for me,http://em.21dtv.com/songs/60082400.mkv +飞轮海-我有我的young,http://em.21dtv.com/songs/60046700.mkv +任贤齐-我用我的心,http://em.21dtv.com/songs/60090556.mkv +黎瑞恩-我要忘掉你(演唱会),http://em.21dtv.com/songs/60046575.mkv +佚名-无语问苍天,http://em.21dtv.com/songs/60047554.mkv +邓丽君-无语问苍天,http://em.21dtv.com/songs/60047553.mkv +BEYOND-无语问苍天,http://em.21dtv.com/songs/60047552.mkv +鼓涛-我要五百万,http://em.21dtv.com/songs/60046584.mkv +佚名-午夜吻别前,http://em.21dtv.com/songs/60047739.mkv +佚名-忘也忘不了,http://em.21dtv.com/songs/60043645.mkv +洪辰-误以为爱情,http://em.21dtv.com/songs/60071294.mkv +陈奕迅-我有我爱你(演唱会),http://em.21dtv.com/songs/60046699.mkv +杨荣辉-无缘天注定,http://em.21dtv.com/songs/60116951.mkv +吴素卿-无缘天注定(无原唱),http://em.21dtv.com/songs/60013406.mkv +姚天成-我也是醉了,http://em.21dtv.com/songs/60122644.mkv +周占超-我也是醉了,http://em.21dtv.com/songs/60114452.mkv +东来东往-我也是醉了,http://em.21dtv.com/songs/60105546.mkv +敏雅-我也是女人,http://em.21dtv.com/songs/60110233.mkv +苏慧伦-我有时会想,http://em.21dtv.com/songs/60046697.mkv +汤宝如-无颜色的梦,http://em.21dtv.com/songs/60047539.mkv +陈升-我要上春晚,http://em.21dtv.com/songs/60097575.mkv +蒙克-我要上春晚(演唱会),http://em.21dtv.com/songs/60071274.mkv +涓子-我一让再让,http://em.21dtv.com/songs/60130552.mkv +陈慧琳-喂有人在吗,http://em.21dtv.com/songs/60090293.mkv +吴瑕-我依然是我,http://em.21dtv.com/songs/60135016.mkv +鲍国-我依然爱她,http://em.21dtv.com/songs/60046645.mkv +刘雷+瑶瑶-我依然爱你,http://em.21dtv.com/songs/60099816.mkv +许茹芸-我依然爱你,http://em.21dtv.com/songs/60046644.mkv +顾建华-我依然爱你,http://em.21dtv.com/songs/60046643.mkv +许茹芸-我依然爱你(演唱会),http://em.21dtv.com/songs/60046642.mkv +李金臻-我依然爱你,http://em.21dtv.com/songs/60045319.mkv +大民原创-我要去赚钱,http://em.21dtv.com/songs/60072564.mkv +殷紫嫣-我要去远方,http://em.21dtv.com/songs/60066429.mkv +李龙-我要去延安,http://em.21dtv.com/songs/60078388.mkv +乌兰托娅-我要去西藏,http://em.21dtv.com/songs/60046570.mkv +白玛多吉-我要去西藏,http://em.21dtv.com/songs/60046569.mkv +云龙-我要去新疆,http://em.21dtv.com/songs/60078387.mkv +DJ舞曲-我要去西藏(DJ版),http://em.21dtv.com/songs/30000577.mkv +乌兰托亚-我要去西藏,http://em.21dtv.com/songs/60089107.mkv +徐海琴-我要去烧香(舞曲版),http://em.21dtv.com/songs/60046568.mkv +千叶美加-午夜情人梦(无原唱),http://em.21dtv.com/songs/60047735.mkv +潘越云-我要去旅行,http://em.21dtv.com/songs/60046567.mkv +凌加峻-我要去旅行,http://em.21dtv.com/songs/60080642.mkv +李维真-我要去红河,http://em.21dtv.com/songs/60072563.mkv +董冬-我要去红河,http://em.21dtv.com/songs/60067590.mkv +张计划-我要去迪拜,http://em.21dtv.com/songs/60120524.mkv +涛子-我要去澳门,http://em.21dtv.com/songs/60065121.mkv +韩宝仪-望月怕团圆,http://em.21dtv.com/songs/60043727.mkv +任德勇-我要拍电影,http://em.21dtv.com/songs/60068793.mkv +林子祥-我以你自豪,http://em.21dtv.com/songs/60046657.mkv +郑伊健-我愿你知道,http://em.21dtv.com/songs/60046735.mkv +言野-我要你相信,http://em.21dtv.com/songs/60100462.mkv +宏亮-我要你幸福,http://em.21dtv.com/songs/60105769.mkv +盛噶仁波切-我要你幸福,http://em.21dtv.com/songs/60046561.mkv +邓丽君-我要你为偶(演唱会),http://em.21dtv.com/songs/60046560.mkv +张萌-我要你快乐,http://em.21dtv.com/songs/60080358.mkv +姜华-我要你快乐(无原唱),http://em.21dtv.com/songs/60046556.mkv +SAYA-我要你看见,http://em.21dtv.com/songs/60046555.mkv +钱红-我要你回家,http://em.21dtv.com/songs/60124598.mkv +原子霏-我要你的爱,http://em.21dtv.com/songs/60130158.mkv +黄小琥-我要你的爱,http://em.21dtv.com/songs/60114911.mkv +杨光-我要你的爱,http://em.21dtv.com/songs/60113657.mkv +黄小琥-我要你的爱,http://em.21dtv.com/songs/60089041.mkv +刘雅丽-我要你的爱(演唱会),http://em.21dtv.com/songs/60084093.mkv +赵可-我要你的爱,http://em.21dtv.com/songs/60069989.mkv +周蕙-我要你的爱,http://em.21dtv.com/songs/60046552.mkv +罗百吉-我要你的爱,http://em.21dtv.com/songs/60046551.mkv +陈慧珊-我要你的爱(演唱会),http://em.21dtv.com/songs/60046550.mkv +TOKYO D.-我要你的爱(无原唱),http://em.21dtv.com/songs/60046549.mkv +任韵淇-我要你爱我,http://em.21dtv.com/songs/60118322.mkv +阿华-我要你爱我,http://em.21dtv.com/songs/60046546.mkv +喜公公-我要你爱人,http://em.21dtv.com/songs/60113360.mkv +骆容溶-无烟每一天,http://em.21dtv.com/songs/60068810.mkv +陈瑞-午夜梦醒时,http://em.21dtv.com/songs/60099583.mkv +庄学忠-午夜梦回时,http://em.21dtv.com/songs/60084135.mkv +余天-午夜梦回时,http://em.21dtv.com/songs/60047726.mkv +谢雷-午夜梦回时,http://em.21dtv.com/songs/60047725.mkv +韩宝仪-午夜梦回时,http://em.21dtv.com/songs/60047724.mkv +WESTLIFE-when youre looking like that,http://em.21dtv.com/songs/60006273.mkv +黄猛-我要离开你,http://em.21dtv.com/songs/60065120.mkv +刘捷-五月来看花,http://em.21dtv.com/songs/60065153.mkv +渡边+JZN-win your love for me,http://em.21dtv.com/songs/60074149.mkv +小斯韵-我眼里的爱,http://em.21dtv.com/songs/60046493.mkv +扬哲-无缘空笑梦,http://em.21dtv.com/songs/60065149.mkv +侯湘婷-我要看热闹,http://em.21dtv.com/songs/60090625.mkv +王又萱-午夜咖啡香,http://em.21dtv.com/songs/60131640.mkv +孙悦-我要看得见,http://em.21dtv.com/songs/60090899.mkv +陈慧琳-我要看出戏(演唱会),http://em.21dtv.com/songs/60046538.mkv +张小觉-我要见上帝,http://em.21dtv.com/songs/60063400.mkv +曾心梅-我已经累了,http://em.21dtv.com/songs/60046655.mkv +段红-我要嫁给你,http://em.21dtv.com/songs/60066428.mkv +佚名-with you im born again,http://em.21dtv.com/songs/60006377.mkv +周华健+李宗盛-我有话要说,http://em.21dtv.com/songs/60046690.mkv +孙燕姿-我也很想他,http://em.21dtv.com/songs/60046615.mkv +叶倩文-我要活下去(演唱会),http://em.21dtv.com/songs/60046536.mkv +苏微-我要很幸福,http://em.21dtv.com/songs/60124403.mkv +雪村-我要回唐山,http://em.21dtv.com/songs/60046535.mkv +洪启-乌鸦和麻雀,http://em.21dtv.com/songs/60121870.mkv +余天-我要喝咖啡,http://em.21dtv.com/songs/60046530.mkv +钱淑真-乌鸦和狐狸(儿歌),http://em.21dtv.com/songs/60090274.mkv +群星-我应该这样,http://em.21dtv.com/songs/60046669.mkv +左安安-我愿跟随你,http://em.21dtv.com/songs/60046734.mkv +苏慧伦-我一个人住,http://em.21dtv.com/songs/60046624.mkv +李度-我一个人哭,http://em.21dtv.com/songs/60046622.mkv +高胜美-我有个秘密,http://em.21dtv.com/songs/60110709.mkv +钟舒漫-我应该可以,http://em.21dtv.com/songs/60102844.mkv +丁汀-我应该快乐,http://em.21dtv.com/songs/60089580.mkv +洛天依-我要挂科了,http://em.21dtv.com/songs/60084091.mkv +郑秀文-我应该得到,http://em.21dtv.com/songs/60046668.mkv +艾莉莎-我要给的爱,http://em.21dtv.com/songs/60065118.mkv +左小祖咒-我要发横财,http://em.21dtv.com/songs/60131377.mkv +王建杰-无缘份的爱,http://em.21dtv.com/songs/60047577.mkv +刘小慧-would you ever walk away,http://em.21dtv.com/songs/60006422.mkv +陈振云-五月二十日,http://em.21dtv.com/songs/60047685.mkv +BRITNEY SPEARS-when your eyes say it,http://em.21dtv.com/songs/60006270.mkv +唐俪-无月的中秋,http://em.21dtv.com/songs/60047591.mkv +邱芸子-无缘的祝福,http://em.21dtv.com/songs/60065147.mkv +张蓉蓉+李明洋-无言的眼泪,http://em.21dtv.com/songs/60065144.mkv +李炜-唯一的选择,http://em.21dtv.com/songs/60083968.mkv +蔡依林-我要的选择,http://em.21dtv.com/songs/60046515.mkv +罗宾-午夜的心情,http://em.21dtv.com/songs/60091831.mkv +孙悦-无言的寻求,http://em.21dtv.com/songs/60047527.mkv +张涵雅-无影的相片,http://em.21dtv.com/songs/60084132.mkv +抱抱-唯一的新娘,http://em.21dtv.com/songs/60113536.mkv +蔡小虎-无缘的新娘,http://em.21dtv.com/songs/60047576.mkv +童安格-我有多想你,http://em.21dtv.com/songs/60046686.mkv +陈羑-午夜的旋律,http://em.21dtv.com/songs/60099588.mkv +佚名-五月的鲜花,http://em.21dtv.com/songs/60047683.mkv +宋伶俐-五月的鲜花,http://em.21dtv.com/songs/60047682.mkv +张瑶-我要的幸福,http://em.21dtv.com/songs/60078380.mkv +李江鸿-我要的幸福,http://em.21dtv.com/songs/60078379.mkv +孙燕姿-我要的幸福,http://em.21dtv.com/songs/60046514.mkv +傅振辉-无缘的下车,http://em.21dtv.com/songs/60097501.mkv +韩宝仪-无言的温柔,http://em.21dtv.com/songs/60047526.mkv +邓丽君-无言的温柔,http://em.21dtv.com/songs/60047525.mkv +苏路-无月的晚暝,http://em.21dtv.com/songs/60047590.mkv +王婧-我要的未来,http://em.21dtv.com/songs/60046513.mkv +高原-我要的天空,http://em.21dtv.com/songs/60109042.mkv +詹雅雯-无缘的手指,http://em.21dtv.com/songs/60080049.mkv +中国娃娃-我演的是我,http://em.21dtv.com/songs/60046494.mkv +额尔古纳乐队-无言的诉说,http://em.21dtv.com/songs/60047524.mkv +黄品源-无言的山丘,http://em.21dtv.com/songs/60047523.mkv +沈昊飞-无言的思念,http://em.21dtv.com/songs/60107865.mkv +潇潇-无语的送你,http://em.21dtv.com/songs/60047551.mkv +陈慧琳-我要的是你,http://em.21dtv.com/songs/60046512.mkv +萧亚轩-我要的世界,http://em.21dtv.com/songs/60135685.mkv +陈思安-无缘的手戒,http://em.21dtv.com/songs/60095998.mkv +萧亚轩-我要的世界,http://em.21dtv.com/songs/60091987.mkv +王传一-我要的世界,http://em.21dtv.com/songs/60046511.mkv +林琳-我要的生活,http://em.21dtv.com/songs/60125793.mkv +暴林-无缘的情人,http://em.21dtv.com/songs/60135326.mkv +李明洋-无缘的情人,http://em.21dtv.com/songs/60047572.mkv +罗钟寅-唯一的奇迹,http://em.21dtv.com/songs/60088444.mkv +陈雷-无缘的牵挂,http://em.21dtv.com/songs/60047571.mkv +周秉钧-无怨的青春,http://em.21dtv.com/songs/60089746.mkv +佚名-无怨的青春,http://em.21dtv.com/songs/60047584.mkv +佚名-无缘的朋友,http://em.21dtv.com/songs/60047570.mkv +邓丽君-我要对你说,http://em.21dtv.com/songs/60046520.mkv +勃鲁斯-我要对你说,http://em.21dtv.com/songs/60046519.mkv +曹永廉-唯一的女神,http://em.21dtv.com/songs/60044187.mkv +佚名-无言的呐喊,http://em.21dtv.com/songs/60047522.mkv +孟飞-我要带你飞,http://em.21dtv.com/songs/60128978.mkv +詹雅雯-无缘的美梦,http://em.21dtv.com/songs/60047567.mkv +洪荣宏-无缘的玫瑰,http://em.21dtv.com/songs/60130542.mkv +布衣乐队-唯一的理由,http://em.21dtv.com/songs/60102173.mkv +郑中基-唯一的理由,http://em.21dtv.com/songs/60044185.mkv +冯绍峰-唯一的恋人,http://em.21dtv.com/songs/60065026.mkv +洪百慧-无缘的恋梦,http://em.21dtv.com/songs/60135499.mkv +七郎-午夜的恋歌,http://em.21dtv.com/songs/60047704.mkv +秋果-我要当老板,http://em.21dtv.com/songs/60068792.mkv +李宏卓-唯一的渴慕,http://em.21dtv.com/songs/60130418.mkv +洪荣宏-午夜的咖啡,http://em.21dtv.com/songs/60135510.mkv +柯以敏-唯一的记忆,http://em.21dtv.com/songs/60044184.mkv +老五-午夜的街头,http://em.21dtv.com/songs/60047703.mkv +凤飞飞-午夜的街头,http://em.21dtv.com/songs/60047702.mkv +林玉英-午夜的街头(无原唱),http://em.21dtv.com/songs/60047701.mkv +罗时丰+张秀卿-无缘的结局(无原唱),http://em.21dtv.com/songs/60095848.mkv +孙琳+黄子俊-无言的结局,http://em.21dtv.com/songs/60089797.mkv +苏珊+李龙基-无言的结局,http://em.21dtv.com/songs/60089458.mkv +李茂山+林淑容-无缘的结局,http://em.21dtv.com/songs/60047566.mkv +卓依婷-无言的结局,http://em.21dtv.com/songs/60047521.mkv +罗时丰+林淑蓉-无言的结局,http://em.21dtv.com/songs/60047520.mkv +李茂山-无言的结局,http://em.21dtv.com/songs/60047519.mkv +李茂山+林淑容-无言的结局,http://em.21dtv.com/songs/60047518.mkv +叶倩文-无言的结局(演唱会),http://em.21dtv.com/songs/60047517.mkv +容祖儿+张信哲-无言的结局(演唱会),http://em.21dtv.com/songs/60047516.mkv +佚名-无言的结局(快三),http://em.21dtv.com/songs/60047515.mkv +吴松发-午夜的回忆,http://em.21dtv.com/songs/60072586.mkv +庞龙+于大伟-我一定会来,http://em.21dtv.com/songs/60046620.mkv +黑龙-我要的感觉(演唱会),http://em.21dtv.com/songs/60046510.mkv +许飞-我要的飞翔,http://em.21dtv.com/songs/60046509.mkv +赵咏华-我愿赌服输,http://em.21dtv.com/songs/60126228.mkv +陆永-我要打多支,http://em.21dtv.com/songs/60046505.mkv +佚名-雾夜的灯塔,http://em.21dtv.com/songs/60047854.mkv +许强-无言的等待,http://em.21dtv.com/songs/60047513.mkv +关牧村-五月的草原,http://em.21dtv.com/songs/60047674.mkv +陈淑桦-无言的表示,http://em.21dtv.com/songs/60047512.mkv +音萌萌-违约的不弃,http://em.21dtv.com/songs/60133096.mkv +约瑟翰 庞麦郎-我要打败你,http://em.21dtv.com/songs/60106184.mkv +佚名-我要的不多,http://em.21dtv.com/songs/60046507.mkv +欢子-我要的不多,http://em.21dtv.com/songs/60046506.mkv +尹寒-唯一的宝贝,http://em.21dtv.com/songs/60094074.mkv +马健涛-唯一的安慰,http://em.21dtv.com/songs/60078109.mkv +贾富营-我要闯天涯,http://em.21dtv.com/songs/60129631.mkv +赵佳霖-我要穿秋裤,http://em.21dtv.com/songs/60104451.mkv +姜玉阳-午夜唱情歌,http://em.21dtv.com/songs/60085968.mkv +五月天-我又初恋了,http://em.21dtv.com/songs/60046722.mkv +李丽霞+乔宝宝+GUESTS-我要唱k歌(演唱会),http://em.21dtv.com/songs/60068791.mkv +庞龙-我要抱着你,http://em.21dtv.com/songs/60046501.mkv +汪苏泷-我也不知道,http://em.21dtv.com/songs/60061708.mkv +陈娟儿-我也不舍得,http://em.21dtv.com/songs/60078390.mkv +张平-我已爱上你,http://em.21dtv.com/songs/60130309.mkv +黑涩会美眉-我要爱的好,http://em.21dtv.com/songs/60046500.mkv +张学友-我醒着做梦,http://em.21dtv.com/songs/60108497.mkv +张学友-我醒着做梦,http://em.21dtv.com/songs/60106828.mkv +谭圳+邱茹贞-我心只有你,http://em.21dtv.com/songs/60078372.mkv +许志安-我心中有你,http://em.21dtv.com/songs/60046470.mkv +庄心妍-我选择原谅,http://em.21dtv.com/songs/60110174.mkv +西单女孩-微笑着坚强,http://em.21dtv.com/songs/60063127.mkv +杨乃文-微笑着挥手,http://em.21dtv.com/songs/60043789.mkv +林晓培-我现在很好,http://em.21dtv.com/songs/60046360.mkv +许绍洋-我想追赶你,http://em.21dtv.com/songs/60046426.mkv +斯琴巴图-我心中的佛,http://em.21dtv.com/songs/60113545.mkv +卢军-我想要知道,http://em.21dtv.com/songs/60104864.mkv +小安-我想要做爱,http://em.21dtv.com/songs/60090990.mkv +王馨-微信摇一摇,http://em.21dtv.com/songs/60128247.mkv +张国荣-无需要太多(演唱会),http://em.21dtv.com/songs/60047511.mkv +佚名-我像一片云,http://em.21dtv.com/songs/60046436.mkv +江惠仪-无想欲离开,http://em.21dtv.com/songs/60116093.mkv +高书磊-我想有个人,http://em.21dtv.com/songs/60094352.mkv +张柏芝-我想一个人,http://em.21dtv.com/songs/60046420.mkv +郝祺-我想有个家,http://em.21dtv.com/songs/60120027.mkv +吴子安+庄前-我想有个家,http://em.21dtv.com/songs/60111755.mkv +赵鑫+干露露-我想有个家,http://em.21dtv.com/songs/60094702.mkv +羽泉-我想有个家,http://em.21dtv.com/songs/60078366.mkv +紫龙-我想有个家,http://em.21dtv.com/songs/60046424.mkv +潘美辰-我想有个家,http://em.21dtv.com/songs/60046423.mkv +群星-我想有个家(无原唱),http://em.21dtv.com/songs/60046422.mkv +一单上达-为相遇干杯,http://em.21dtv.com/songs/60099051.mkv +叶瑷菱-我心已打洋,http://em.21dtv.com/songs/60087520.mkv +叶瑷菱-我心已打烊,http://em.21dtv.com/songs/60046460.mkv +王麟-我想要的爱,http://em.21dtv.com/songs/60129424.mkv +陈奕迅-温馨已不再,http://em.21dtv.com/songs/60093402.mkv +庄学忠-我需要安慰,http://em.21dtv.com/songs/60046478.mkv +余天-我需要安慰,http://em.21dtv.com/songs/60046477.mkv +李茂山-我需要安慰,http://em.21dtv.com/songs/60046476.mkv +张婷-微笑新生活,http://em.21dtv.com/songs/60043787.mkv +杨小艳-我想我值得,http://em.21dtv.com/songs/60112791.mkv +黄磊-我想我是海,http://em.21dtv.com/songs/60046409.mkv +屠洪纲-我心为谁动,http://em.21dtv.com/songs/60065114.mkv +尤雅-我想忘了你,http://em.21dtv.com/songs/60046404.mkv +佚名-我想忘了你,http://em.21dtv.com/songs/60046403.mkv +蔡旻佑-我想我可以,http://em.21dtv.com/songs/60118027.mkv +郑秀文-我想我可以,http://em.21dtv.com/songs/60046408.mkv +佚名-我想我不能,http://em.21dtv.com/songs/60046407.mkv +苏小花-我想谈恋爱,http://em.21dtv.com/songs/60069983.mkv +田芯儿-我想谈恋爱,http://em.21dtv.com/songs/60046401.mkv +高玉玫-微笑说再见,http://em.21dtv.com/songs/60085832.mkv +范玮琪-微笑说再见,http://em.21dtv.com/songs/60083965.mkv +佚名-我心属于你,http://em.21dtv.com/songs/60046456.mkv +单色凌-微笑说晚安,http://em.21dtv.com/songs/60083964.mkv +王海玲-我心似清泉(无原唱),http://em.21dtv.com/songs/60046454.mkv +何润东+徐若瑄-微笑说你好,http://em.21dtv.com/songs/60043786.mkv +马旭东-微笑说离开,http://em.21dtv.com/songs/60086906.mkv +蔡琴-我心是海洋,http://em.21dtv.com/songs/60046455.mkv +江美琪-我心似海洋,http://em.21dtv.com/songs/60046453.mkv +梦龙-无心伤害你,http://em.21dtv.com/songs/60086965.mkv +曲姆措-我心上的人,http://em.21dtv.com/songs/60069985.mkv +韩宝仪-我心若玫瑰,http://em.21dtv.com/songs/60046450.mkv +张可儿-微信惹的祸,http://em.21dtv.com/songs/60099226.mkv +张可儿-微信惹得祸,http://em.21dtv.com/songs/60078066.mkv +郑羽玲-无心人的爱(无原唱),http://em.21dtv.com/songs/60047497.mkv +林沛涌-我想去印度,http://em.21dtv.com/songs/60120671.mkv +冷漠-我想去台湾,http://em.21dtv.com/songs/60068789.mkv +咪依鲁江-微信情妹妹,http://em.21dtv.com/songs/60072493.mkv +韩晓-我想去桂林,http://em.21dtv.com/songs/60046397.mkv +贾富营-我想去草原,http://em.21dtv.com/songs/60128419.mkv +山子华-我想你中国,http://em.21dtv.com/songs/60120486.mkv +杨响华+韦小天-我行你也行,http://em.21dtv.com/songs/60107813.mkv +赵咏华-我想那是你(演唱会),http://em.21dtv.com/songs/60046391.mkv +丁国琳-危险女人香,http://em.21dtv.com/songs/60067518.mkv +罗家英-我向你求婚(演唱会),http://em.21dtv.com/songs/60046432.mkv +张暄祺-我想念你的,http://em.21dtv.com/songs/60066426.mkv +陈淑芳-我系你介人(无原唱),http://em.21dtv.com/songs/60046359.mkv +哓Z-我想念的她,http://em.21dtv.com/songs/60098207.mkv +佚名-晚霞满渔船,http://em.21dtv.com/songs/60043248.mkv +佚名-文夏流浪记,http://em.21dtv.com/songs/60044390.mkv +乐一-微笑离开你,http://em.21dtv.com/songs/60099067.mkv +余天-我心留给你(无原唱),http://em.21dtv.com/songs/60046447.mkv +樱花姐妹-无信赖的爱,http://em.21dtv.com/songs/60047506.mkv +龙千玉-微笑看世界,http://em.21dtv.com/songs/60133146.mkv +蔡淳佳-我想快乐些,http://em.21dtv.com/songs/60046390.mkv +张小觉-我想见上帝,http://em.21dtv.com/songs/60078360.mkv +群星-五星级迫爆,http://em.21dtv.com/songs/60047670.mkv +群星-我想和你唱,http://em.21dtv.com/songs/60124359.mkv +泽旺多吉-我想回拉萨,http://em.21dtv.com/songs/60131606.mkv +许志安-我想高兴啲,http://em.21dtv.com/songs/60093158.mkv +罗志祥-我秀故我再,http://em.21dtv.com/songs/60088437.mkv +罗志祥-我秀故我在(演唱会),http://em.21dtv.com/songs/60046475.mkv +梁咏琪-我想给你爱,http://em.21dtv.com/songs/60046382.mkv +潘玮柏+苏芮-我想更懂你,http://em.21dtv.com/songs/60046383.mkv +孙悦-为幸福歌唱(演唱会),http://em.21dtv.com/songs/60078106.mkv +佚名-王小二拜年,http://em.21dtv.com/songs/60043360.mkv +邓福如-无限度自由,http://em.21dtv.com/songs/60085962.mkv +赵薇-微笑等着我,http://em.21dtv.com/songs/60043782.mkv +刘玉婉-温馨的祝福,http://em.21dtv.com/songs/60089172.mkv +潘翔小豆-微笑的眼泪,http://em.21dtv.com/songs/60065013.mkv +萧亚轩-微笑的预感,http://em.21dtv.com/songs/60091985.mkv +李宣榕-微笑的约定,http://em.21dtv.com/songs/60043781.mkv +蔡妍-危险的演出,http://em.21dtv.com/songs/60043740.mkv +丁思忖-我想的是你,http://em.21dtv.com/songs/60084084.mkv +袁小迪-无限的日期,http://em.21dtv.com/songs/60131800.mkv +金泽-无限的奇迹,http://em.21dtv.com/songs/60068809.mkv +唐古-违心的情话,http://em.21dtv.com/songs/60121518.mkv +蒋婴-我想对你说,http://em.21dtv.com/songs/60134186.mkv +SNH48-我想对你说,http://em.21dtv.com/songs/60127675.mkv +郎凯亦-我想对你说,http://em.21dtv.com/songs/60114819.mkv +天芯-无心的男人,http://em.21dtv.com/songs/60126755.mkv +张德兰-武侠帝女花,http://em.21dtv.com/songs/60047752.mkv +佚名-武侠帝女花,http://em.21dtv.com/songs/60047751.mkv +张智霖+许秋怡-温馨的目光,http://em.21dtv.com/songs/60044383.mkv +汤潮-微笑的力量,http://em.21dtv.com/songs/60043778.mkv +陈夏莲-望乡的列车,http://em.21dtv.com/songs/60135906.mkv +刘梦迪-微笑的记号,http://em.21dtv.com/songs/60131214.mkv +刘浩龙-我信的故事,http://em.21dtv.com/songs/60078376.mkv +陈小霞-温馨的广陵,http://em.21dtv.com/songs/60086911.mkv +詹曼铃-无心的错误,http://em.21dtv.com/songs/60115377.mkv +DEAL-我想打比你,http://em.21dtv.com/songs/60067589.mkv +HOTCHA-我想打比你,http://em.21dtv.com/songs/60066425.mkv +赵薇-微小的部分,http://em.21dtv.com/songs/60043768.mkv +胡东清-我向草原走,http://em.21dtv.com/songs/60061706.mkv +梧桐雨组合+蔡献华+王丽+王薪博-我想成个家,http://em.21dtv.com/songs/60122923.mkv +林家小妹-我想抱着你,http://em.21dtv.com/songs/60046376.mkv +南建雄-微笑吧中国,http://em.21dtv.com/songs/60072492.mkv +罗文聪-无心别牵拖,http://em.21dtv.com/songs/60047485.mkv +新街口组合-微信不能信,http://em.21dtv.com/songs/60067520.mkv +COZY DIARY-我想变成我,http://em.21dtv.com/songs/60117441.mkv +卫兰-我想爱就爱,http://em.21dtv.com/songs/60046374.mkv +张蓉蓉-我心爱的人,http://em.21dtv.com/songs/60046440.mkv +沈建豪-我唔知影啦,http://em.21dtv.com/songs/60086945.mkv +杜德伟-为我照顾她,http://em.21dtv.com/songs/60044137.mkv +佚名-which way you going billy(无原唱),http://em.21dtv.com/songs/60006302.mkv +佚名-我唯一的爱,http://em.21dtv.com/songs/60046324.mkv +詹雅雯-我无想要哮,http://em.21dtv.com/songs/60046337.mkv +明福侠-我唔系死蠢,http://em.21dtv.com/songs/60128051.mkv +王玉玺-巍巍兴隆塔,http://em.21dtv.com/songs/60112850.mkv +阿牛-无尾熊抱抱,http://em.21dtv.com/songs/60047467.mkv +李蕙敏-我为我生存,http://em.21dtv.com/songs/60046320.mkv +陶喆-勿忘我+Hey Jude,http://em.21dtv.com/songs/60093794.mkv +杨采妮-毋忘我的爱,http://em.21dtv.com/songs/60047611.mkv +杨采妮-毋忘我的爱(演唱会),http://em.21dtv.com/songs/60047610.mkv +佚名-袜问阮的名,http://em.21dtv.com/songs/60095441.mkv +佚名-勿问阮的名,http://em.21dtv.com/songs/60047824.mkv +李嘉-为我剖心肝,http://em.21dtv.com/songs/60044132.mkv +任贤齐-我为你祝福,http://em.21dtv.com/songs/60090554.mkv +七郎-我为你心动,http://em.21dtv.com/songs/60046315.mkv +苏永康-我为你伤心,http://em.21dtv.com/songs/60046314.mkv +李翊君-我为你伤心(演唱会),http://em.21dtv.com/songs/60046313.mkv +郑福强-我为你泪流,http://em.21dtv.com/songs/60078356.mkv +万心-我为你泪流,http://em.21dtv.com/songs/60046312.mkv +LENKA-we will not grow old,http://em.21dtv.com/songs/60084770.mkv +刘亚芹-我为您高歌,http://em.21dtv.com/songs/60101611.mkv +曲婉婷-我为你歌唱,http://em.21dtv.com/songs/60081676.mkv +吴娜-我为你歌唱,http://em.21dtv.com/songs/60046309.mkv +伦永亮-我为你而生,http://em.21dtv.com/songs/60046308.mkv +黎明-我为你而来,http://em.21dtv.com/songs/60046307.mkv +朱咪咪-我为你痴迷(演唱会),http://em.21dtv.com/songs/60046306.mkv +吴娜-我为你唱歌,http://em.21dtv.com/songs/60087555.mkv +佚名-望无梦中人,http://em.21dtv.com/songs/60043707.mkv +白冰冰-望无梦中人,http://em.21dtv.com/songs/60043706.mkv +陈小春-万万没想到,http://em.21dtv.com/songs/60088863.mkv +白客+叫兽易小星-万万没想到,http://em.21dtv.com/songs/60085818.mkv +JOHNNY MATHIS-what will my mary say,http://em.21dtv.com/songs/60006212.mkv +MANDY MOORE-when will my life begin,http://em.21dtv.com/songs/60074125.mkv +任娟-为我们喝彩,http://em.21dtv.com/songs/60120293.mkv +OMG-为我们喝彩,http://em.21dtv.com/songs/60085849.mkv +邓芳丽+雍鉴君-为我们喝彩,http://em.21dtv.com/songs/60083985.mkv +谢岑+罗佳翔-为文明点赞,http://em.21dtv.com/songs/60124489.mkv +李国祥-为未来疗伤,http://em.21dtv.com/songs/60044120.mkv +张冬玲-我无路可退,http://em.21dtv.com/songs/60063361.mkv +陈一郎-为我来关怀,http://em.21dtv.com/songs/60044130.mkv +蓝奕邦-晚晚礼拜六,http://em.21dtv.com/songs/60065000.mkv +郑秀文-娃娃看天下,http://em.21dtv.com/songs/60043051.mkv +王杰-我无讲粗口,http://em.21dtv.com/songs/60092983.mkv +王杰-我唔讲粗口(演唱会),http://em.21dtv.com/songs/60046343.mkv +THE EVERLY BROTHERS-when will i be loved,http://em.21dtv.com/songs/60006258.mkv +吕继宏-我为黄河来,http://em.21dtv.com/songs/60046303.mkv +韩雨芹-为我好好的,http://em.21dtv.com/songs/60098929.mkv +王子鸣-为我归来吧,http://em.21dtv.com/songs/60044124.mkv +追风-勿忘父母恩,http://em.21dtv.com/songs/60123217.mkv +孙浩-巍巍大中华,http://em.21dtv.com/songs/60043791.mkv +李冰冰-吻我的样子,http://em.21dtv.com/songs/60044425.mkv +吕方-弯弯的月亮,http://em.21dtv.com/songs/60127815.mkv +杨坤+人声兄弟-弯弯的月亮,http://em.21dtv.com/songs/60112007.mkv +张江-弯弯的月亮,http://em.21dtv.com/songs/60091128.mkv +屠洪纲-弯弯的月亮,http://em.21dtv.com/songs/60089825.mkv +温岚-弯弯的月亮,http://em.21dtv.com/songs/60081194.mkv +莫旭秋-弯弯的月亮(演唱会),http://em.21dtv.com/songs/60078000.mkv +袁娅维-弯弯的月亮,http://em.21dtv.com/songs/60069891.mkv +李嘉石-弯弯的月亮,http://em.21dtv.com/songs/60066355.mkv +吕方-弯弯的月亮,http://em.21dtv.com/songs/60043092.mkv +江涛-弯弯的月亮,http://em.21dtv.com/songs/60043091.mkv +毛宁-弯弯的月亮(演唱会),http://em.21dtv.com/songs/60043090.mkv +吕方-弯弯的月亮(演唱会),http://em.21dtv.com/songs/60043089.mkv +刘欢-弯弯的月亮(演唱会),http://em.21dtv.com/songs/60043088.mkv +蔡琴-弯弯的月亮(演唱会),http://em.21dtv.com/songs/60043087.mkv +彭羚-未完的小说,http://em.21dtv.com/songs/60044289.mkv +刘玉婉-弯弯的小路,http://em.21dtv.com/songs/60089171.mkv +ZAYIN-未完的旋律,http://em.21dtv.com/songs/60044290.mkv +王茜麟-稳稳的幸福,http://em.21dtv.com/songs/60131671.mkv +陈奕迅-稳稳的幸福,http://em.21dtv.com/songs/60122228.mkv +孙俪+张译-稳稳的幸福,http://em.21dtv.com/songs/60081390.mkv +陈奕迅-稳稳的幸福,http://em.21dtv.com/songs/60078127.mkv +那英-未完的童年,http://em.21dtv.com/songs/60044288.mkv +蔡小虎+王瑞霞-温温的酒杯,http://em.21dtv.com/songs/60044379.mkv +蔡幸娟-袜萎的花蕊(无原唱),http://em.21dtv.com/songs/60043065.mkv +佚名-娃娃的故事(无原唱),http://em.21dtv.com/songs/60043048.mkv +旺姆-万物的等待,http://em.21dtv.com/songs/60072482.mkv +佚名-无稳定的爱,http://em.21dtv.com/songs/60047474.mkv +黄乙玲-无稳定的爱,http://em.21dtv.com/songs/60047473.mkv +罗志祥-未完的承诺,http://em.21dtv.com/songs/60095033.mkv +姚成骏-我为草原来,http://em.21dtv.com/songs/60063259.mkv +钟sir-我未曾习惯,http://em.21dtv.com/songs/60116316.mkv +佚名-未完成的梦,http://em.21dtv.com/songs/60044285.mkv +薛之谦-未完成的歌,http://em.21dtv.com/songs/60044282.mkv +萧闳仁-未完成的爱,http://em.21dtv.com/songs/60044281.mkv +MAD AUGUST-喂我不知道,http://em.21dtv.com/songs/60083990.mkv +莫旭秋-whatever will be will be(演唱会),http://em.21dtv.com/songs/60074118.mkv +佚名-whatever will be will be,http://em.21dtv.com/songs/60006219.mkv +郑超-我忘不了你,http://em.21dtv.com/songs/60046296.mkv +戴佩妮-未完不待续,http://em.21dtv.com/songs/60123985.mkv +林晓培-娃娃爱天下,http://em.21dtv.com/songs/60043047.mkv +容祖儿-娃娃爱天下(演唱会),http://em.21dtv.com/songs/60043046.mkv +佚名-晚头仔水蛙,http://em.21dtv.com/songs/60043242.mkv +黄西田+樱桃姐妹-晚头仔水蛙,http://em.21dtv.com/songs/60043241.mkv +王建杰-望天再安排,http://em.21dtv.com/songs/60099403.mkv +来吧!焙焙!-问题与回答,http://em.21dtv.com/songs/60068746.mkv +FLORENCE-what the water gave me,http://em.21dtv.com/songs/60063794.mkv +沈世爱-维特式主角,http://em.21dtv.com/songs/60107023.mkv +黎明-我太傻了吗,http://em.21dtv.com/songs/60046273.mkv +蓝色和弦-舞台上的你,http://em.21dtv.com/songs/60114027.mkv +云鸽李霞-舞台上的你,http://em.21dtv.com/songs/60072588.mkv +袁成杰+戚薇-外滩十八号,http://em.21dtv.com/songs/60043083.mkv +佚名-我踏浪而来,http://em.21dtv.com/songs/60046269.mkv +梁静茹-无条件为你,http://em.21dtv.com/songs/60047460.mkv +李震-我听见的爱,http://em.21dtv.com/songs/60080441.mkv +佚名-无条件的爱,http://em.21dtv.com/songs/60047458.mkv +佚名-when the going gets tough,http://em.21dtv.com/songs/60006254.mkv +萧敬腾-无痛的痛苦,http://em.21dtv.com/songs/60124428.mkv +王宏伟-我听到了爱,http://em.21dtv.com/songs/60129387.mkv +杨乐-无糖的咖啡,http://em.21dtv.com/songs/60117828.mkv +杨子姗-微甜的回忆,http://em.21dtv.com/songs/60108604.mkv +况明法-我停不下来,http://em.21dtv.com/songs/60046288.mkv +龙军-武神赵子龙,http://em.21dtv.com/songs/60123418.mkv +宇海文-我是造型师,http://em.21dtv.com/songs/60046214.mkv +鱼儿-我是主小孩,http://em.21dtv.com/songs/60085926.mkv +程瑾-我试着忘记,http://em.21dtv.com/songs/60079889.mkv +许恒-我是怎么了,http://em.21dtv.com/songs/60080789.mkv +谭维维-我是怎么了,http://em.21dtv.com/songs/60067585.mkv +乔洋-我是怎么了,http://em.21dtv.com/songs/60046215.mkv +周华健-我试着假装,http://em.21dtv.com/songs/60046067.mkv +周阿惠-我是湛江人,http://em.21dtv.com/songs/60123773.mkv +笑天歌-我是中国人,http://em.21dtv.com/songs/60124330.mkv +梁剑东-我是中国人,http://em.21dtv.com/songs/60119723.mkv +意玲-我是中国人,http://em.21dtv.com/songs/60111921.mkv +凤飞飞-我是中国人,http://em.21dtv.com/songs/60078350.mkv +罗桦-我是中国人(演唱会),http://em.21dtv.com/songs/60078349.mkv +张迈-我是中国人,http://em.21dtv.com/songs/60067587.mkv +张明敏-我是中国人,http://em.21dtv.com/songs/60046246.mkv +佚名-我是中国人,http://em.21dtv.com/songs/60046245.mkv +张伟文-我是中国人(演唱会),http://em.21dtv.com/songs/60046244.mkv +吕方-我是中国人(演唱会),http://em.21dtv.com/songs/60046243.mkv +李克勤-我是中国人(演唱会),http://em.21dtv.com/songs/60046242.mkv +姚雨鑫-我是中国龙,http://em.21dtv.com/songs/60099187.mkv +晓晓-网上这段缘,http://em.21dtv.com/songs/60117777.mkv +曹尔真-我是猪八戒,http://em.21dtv.com/songs/60065105.mkv +佚名-我始终爱你,http://em.21dtv.com/songs/60046066.mkv +陈耀川-我始终爱你,http://em.21dtv.com/songs/60046065.mkv +李健-我始终爱你(演唱会),http://em.21dtv.com/songs/60046064.mkv +刘子璇-我是一只羊,http://em.21dtv.com/songs/60112536.mkv +任贤齐-我是一只鱼,http://em.21dtv.com/songs/60046211.mkv +侯湘婷-我是一只鱼,http://em.21dtv.com/songs/60046210.mkv +杜德伟-我是一只鸟,http://em.21dtv.com/songs/60046204.mkv +花泽冰-我是一只猫,http://em.21dtv.com/songs/60046203.mkv +西单女孩-我是一只虎,http://em.21dtv.com/songs/60063129.mkv +彭丽媛-我属于中国,http://em.21dtv.com/songs/60046252.mkv +彭丽媛-我属于中国(演唱会),http://em.21dtv.com/songs/60046251.mkv +龙奔-我是益阳人,http://em.21dtv.com/songs/60069979.mkv +网络歌手-网上有首歌,http://em.21dtv.com/songs/60098686.mkv +伍佰-往事欲如何,http://em.21dtv.com/songs/60043453.mkv +任贤齐-我是有钱人,http://em.21dtv.com/songs/60046212.mkv +齐秦-我是一片云,http://em.21dtv.com/songs/60046197.mkv +黄耀明-我是一片云,http://em.21dtv.com/songs/60046196.mkv +凤飞飞-我是一片云,http://em.21dtv.com/songs/60046195.mkv +叶良辰-我是叶良辰,http://em.21dtv.com/songs/60116616.mkv +陈慧琳-我是阳光的,http://em.21dtv.com/songs/60046186.mkv +张大伟-我是一个兵,http://em.21dtv.com/songs/60061702.mkv +祝友-我是一个兵,http://em.21dtv.com/songs/60046190.mkv +佚名-我是一个兵,http://em.21dtv.com/songs/60046189.mkv +林忆莲-往事已尘封,http://em.21dtv.com/songs/60091450.mkv +蓝漪-我是向阳花,http://em.21dtv.com/songs/60086943.mkv +徐佳莹-我所需要的,http://em.21dtv.com/songs/60122762.mkv +李克-万事孝为先,http://em.21dtv.com/songs/60130410.mkv +胡文明-巫山小三峡,http://em.21dtv.com/songs/60070005.mkv +古品-我是小人物,http://em.21dtv.com/songs/60066424.mkv +王恩丛-我是洗脚妹,http://em.21dtv.com/songs/60065101.mkv +禇桐羽-我是小花蕾,http://em.21dtv.com/songs/60121981.mkv +伍语涵-我是小公主,http://em.21dtv.com/songs/60130072.mkv +郑玉华-为啥像浮萍,http://em.21dtv.com/songs/60134305.mkv +石梅+圆圆-我是幸福的(动画),http://em.21dtv.com/songs/60102580.mkv +圆圆+石梅-我是幸福的,http://em.21dtv.com/songs/60100806.mkv +蔡黄汝-我是幸福的,http://em.21dtv.com/songs/60065102.mkv +梁静茹-我是幸福的,http://em.21dtv.com/songs/60046185.mkv +罗时丰-我是行船人,http://em.21dtv.com/songs/60134091.mkv +佚名-我是行船人,http://em.21dtv.com/songs/60046117.mkv +刘志丹-我是西北人,http://em.21dtv.com/songs/60107525.mkv +张争-我是小保安(演唱会),http://em.21dtv.com/songs/60084080.mkv +CLOWN-我是外星人,http://em.21dtv.com/songs/60061990.mkv +512-我是外星人,http://em.21dtv.com/songs/60046176.mkv +黄立成+MACHI-我是为你活,http://em.21dtv.com/songs/60046179.mkv +佚名-我是为你好,http://em.21dtv.com/songs/60046178.mkv +陈雷-我是为你好,http://em.21dtv.com/songs/60046177.mkv +徐紫淇-往事无漏勾,http://em.21dtv.com/songs/60121705.mkv +刘嘉亮-我说我爱你,http://em.21dtv.com/songs/60046258.mkv +菜鸟+董へ-我是推销员,http://em.21dtv.com/songs/60046175.mkv +张蓉蓉-往事痛心肝,http://em.21dtv.com/songs/60043452.mkv +王瑞霞-无啥通无采(无原唱),http://em.21dtv.com/songs/60047408.mkv +佚名-我是太空人(无原唱),http://em.21dtv.com/songs/60046173.mkv +葛笑-往事锁心中,http://em.21dtv.com/songs/60128361.mkv +孙耀威-五 十 十五 com,http://em.21dtv.com/songs/60047625.mkv +卓依婷-万事胜胜意,http://em.21dtv.com/songs/60043307.mkv +刘若英-我深深期待,http://em.21dtv.com/songs/60046055.mkv +小亮-我是神经病,http://em.21dtv.com/songs/60130266.mkv +张惠妹-五四三二一,http://em.21dtv.com/songs/60047666.mkv +谢金燕-五四三二一,http://em.21dtv.com/songs/60047665.mkv +藏獒组合-我是谁的谁,http://em.21dtv.com/songs/60066423.mkv +黄征-我是谁的谁,http://em.21dtv.com/songs/60046171.mkv +郑超-我是山东人,http://em.21dtv.com/songs/60046166.mkv +曹方-我是认真的,http://em.21dtv.com/songs/60046162.mkv +潘秀琼-未识绮罗香,http://em.21dtv.com/songs/60044276.mkv +蔡琴-未识绮罗香,http://em.21dtv.com/songs/60044275.mkv +蔡琴-未识绮罗香(演唱会),http://em.21dtv.com/songs/60044274.mkv +丁永毅-我失去了你,http://em.21dtv.com/songs/60085921.mkv +冉青霞-我说亲爱的,http://em.21dtv.com/songs/60116565.mkv +王艺-我说亲爱的,http://em.21dtv.com/songs/60061703.mkv +彭小龙-我是彭小龙,http://em.21dtv.com/songs/60115938.mkv +邓丽君-我是你知音,http://em.21dtv.com/songs/60046157.mkv +佚名-往事难追忆,http://em.21dtv.com/songs/60043446.mkv +龙飘飘-往事难追忆,http://em.21dtv.com/songs/60043445.mkv +李蕙敏-我是女主角,http://em.21dtv.com/songs/60046160.mkv +李清坡-我是男子汉,http://em.21dtv.com/songs/60085922.mkv +东南-我是你最坏,http://em.21dtv.com/songs/60072558.mkv +糯米-我是男子汉,http://em.21dtv.com/songs/60046134.mkv +洪荣宏-我是男子汉,http://em.21dtv.com/songs/60046133.mkv +张志家-我是男子汉(无原唱),http://em.21dtv.com/songs/60046132.mkv +郑伊健-我是你未来,http://em.21dtv.com/songs/60046156.mkv +郑伊健-我是你未来(演唱会),http://em.21dtv.com/songs/60046155.mkv +ASOS-我是女菩萨,http://em.21dtv.com/songs/60046158.mkv +金贤重-我是你男人,http://em.21dtv.com/songs/60084076.mkv +周子轩-我是农民工,http://em.21dtv.com/songs/60126714.mkv +风信子组合+彝组合-我是宁蒗人,http://em.21dtv.com/songs/60084077.mkv +杨臣刚-我是你老公,http://em.21dtv.com/songs/60046153.mkv +猪哥亮-我是恁老爸(演唱会),http://em.21dtv.com/songs/60072559.mkv +苏小花-我是女汉子,http://em.21dtv.com/songs/60113999.mkv +Fatty 飞踢胖-我是你哥哥,http://em.21dtv.com/songs/60126524.mkv +李德永-我是你的眼,http://em.21dtv.com/songs/60116910.mkv +潘越云-吻上你的心,http://em.21dtv.com/songs/60044422.mkv +邱贤桂-我是你的天,http://em.21dtv.com/songs/60123225.mkv +群星-我是你的谁,http://em.21dtv.com/songs/60106200.mkv +胡梦舟-我是你的谁,http://em.21dtv.com/songs/60097576.mkv +张振宇-我是你的谁,http://em.21dtv.com/songs/60046148.mkv +黄立行-我是你的谁,http://em.21dtv.com/songs/60046147.mkv +陈慧琳-我是你的谁,http://em.21dtv.com/songs/60046146.mkv +曹雅雯-我是你的人,http://em.21dtv.com/songs/60130388.mkv +格西亚-我是你的人,http://em.21dtv.com/songs/60124156.mkv +顾晓宇-我是你的人,http://em.21dtv.com/songs/60046145.mkv +顾峰-我是你的人,http://em.21dtv.com/songs/60046144.mkv +陈明-我是你的梦(演唱会),http://em.21dtv.com/songs/60046140.mkv +张海-我是你的海,http://em.21dtv.com/songs/60072556.mkv +阿吉仔-我是你的伴,http://em.21dtv.com/songs/60093729.mkv +小曾-我是你的兵,http://em.21dtv.com/songs/60046138.mkv +乌兰齐齐格-我思念草原,http://em.21dtv.com/songs/60086087.mkv +田跃君-我是你爸爸,http://em.21dtv.com/songs/60129432.mkv +林晏如-我是你爱过,http://em.21dtv.com/songs/60046135.mkv +周艳泓-万岁毛主席,http://em.21dtv.com/songs/60043321.mkv +女声-万岁毛主席,http://em.21dtv.com/songs/60043320.mkv +男声-万岁毛主席,http://em.21dtv.com/songs/60043319.mkv +朴朱熙-为什么要走,http://em.21dtv.com/songs/60131492.mkv +佚名-为什么想你,http://em.21dtv.com/songs/60044100.mkv +R+J-为什么喜欢,http://em.21dtv.com/songs/60068734.mkv +梅艳芳-为什么是你,http://em.21dtv.com/songs/60044087.mkv +陈升-五十米深蓝,http://em.21dtv.com/songs/60047661.mkv +邓小伟-为什么离开,http://em.21dtv.com/songs/60080945.mkv +严龙-往事没荒野,http://em.21dtv.com/songs/60072485.mkv +周逸涵-我是棉花糖,http://em.21dtv.com/songs/60066422.mkv +韩红+羽泉-为生命喝彩,http://em.21dtv.com/songs/60044109.mkv +杨宗宪-无什么代志,http://em.21dtv.com/songs/60047409.mkv +邓健泓-卫斯理之恋,http://em.21dtv.com/songs/60044222.mkv +杜德伟+周华健-为失恋饮胜,http://em.21dtv.com/songs/60044110.mkv +麦德罗+方丽盈-问谁领风骚(演唱会),http://em.21dtv.com/songs/60078129.mkv +林一峰+AT7-问谁领风骚(演唱会),http://em.21dtv.com/songs/60065030.mkv +朱咪咪+黎耀祥-问谁领风骚(演唱会),http://em.21dtv.com/songs/60044479.mkv +甄妮+罗文-问谁领风骚(演唱会),http://em.21dtv.com/songs/60044478.mkv +林一峰+AT17-问谁领风骚(演唱会),http://em.21dtv.com/songs/60044477.mkv +降央卓玛-乌苏里船歌,http://em.21dtv.com/songs/60100607.mkv +子祺-乌苏里船歌,http://em.21dtv.com/songs/60063495.mkv +庄学忠-乌苏里船歌,http://em.21dtv.com/songs/60047045.mkv +王炎-乌苏里船歌,http://em.21dtv.com/songs/60047044.mkv +蒋大为-乌苏里船歌,http://em.21dtv.com/songs/60047043.mkv +郭颂-乌苏里船歌,http://em.21dtv.com/songs/60047042.mkv +廖晓林-乌苏里船歌(演唱会),http://em.21dtv.com/songs/60047041.mkv +侯旭-乌苏里船歌(演唱会),http://em.21dtv.com/songs/60047040.mkv +三娃子-我是开心果,http://em.21dtv.com/songs/60115658.mkv +钟彩媚-我是客家妹,http://em.21dtv.com/songs/60108086.mkv +SNH48-万圣节之夜,http://em.21dtv.com/songs/60115632.mkv +小白哥-我是江小白,http://em.21dtv.com/songs/60109279.mkv +刘璇-往事剪接手,http://em.21dtv.com/songs/60043442.mkv +佚名-well sing in the sunshine,http://em.21dtv.com/songs/60006165.mkv +B.O.B+T.I.-we still in this bitch,http://em.21dtv.com/songs/60074102.mkv +S.H.E-我是火星人,http://em.21dtv.com/songs/60089571.mkv +戴向前-我是河南人,http://em.21dtv.com/songs/60114560.mkv +戴向前-我是河南人,http://em.21dtv.com/songs/60086942.mkv +陈百潭-我是好男儿,http://em.21dtv.com/songs/60046118.mkv +文夏-我是行船人,http://em.21dtv.com/songs/60080054.mkv +李芊慧-往事何必想(无原唱),http://em.21dtv.com/songs/60043440.mkv +张凯伦-我是好阿兄,http://em.21dtv.com/songs/60058639.mkv +Io乐团-我思故我在,http://em.21dtv.com/songs/60118263.mkv +林逸欣-我是个骗子,http://em.21dtv.com/songs/60069976.mkv +家家-五十个或许,http://em.21dtv.com/songs/60097502.mkv +谢霆锋-无声仿有声,http://em.21dtv.com/songs/60047426.mkv +谢霆锋-无声仿有声(演唱会),http://em.21dtv.com/songs/60047425.mkv +合唱-我是福建人,http://em.21dtv.com/songs/60095494.mkv +佚名-我是福建人,http://em.21dtv.com/songs/60046109.mkv +吴淑敏-无声的祝福,http://em.21dtv.com/songs/60047423.mkv +刘德华-无声的一晚,http://em.21dtv.com/songs/60047421.mkv +才娜旺姆-晚上的阳光,http://em.21dtv.com/songs/60119588.mkv +才娜旺姆-晚上的阳光,http://em.21dtv.com/songs/60106888.mkv +周斌华-无时的想念,http://em.21dtv.com/songs/60097497.mkv +谭咏麟-无声的信笺(演唱会),http://em.21dtv.com/songs/60047419.mkv +龙千玉-无声的相辞,http://em.21dtv.com/songs/60047418.mkv +董事长乐团-往事的往事,http://em.21dtv.com/songs/60108871.mkv +张清芳-瓦上的舞蹈,http://em.21dtv.com/songs/60043056.mkv +林强-无声的所在,http://em.21dtv.com/songs/60047417.mkv +伍佰-无声的所在(演唱会),http://em.21dtv.com/songs/60047416.mkv +葛本军-无声的岁月,http://em.21dtv.com/songs/60070009.mkv +汪雨轩-无声的守护,http://em.21dtv.com/songs/60130532.mkv +启明星-万事都如意,http://em.21dtv.com/songs/60110074.mkv +孙淑媚-无声的情歌,http://em.21dtv.com/songs/60095508.mkv +佚名-无声的批信(无原唱),http://em.21dtv.com/songs/60047415.mkv +张雨生-我是多么想,http://em.21dtv.com/songs/60046099.mkv +周华健-我上大名府,http://em.21dtv.com/songs/60096218.mkv +罗文-纹身的猎人(演唱会),http://em.21dtv.com/songs/60044396.mkv +郭婷筠-无声的抗议,http://em.21dtv.com/songs/60135820.mkv +龙飘飘-万事都吉祥,http://em.21dtv.com/songs/60065003.mkv +张学友-无声的吉他,http://em.21dtv.com/songs/60047414.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-万事都亨通,http://em.21dtv.com/songs/60078026.mkv +轮回乐队-往事的河流,http://em.21dtv.com/songs/60043439.mkv +额尔古纳乐队-往生的湖泊,http://em.21dtv.com/songs/60078035.mkv +古天乐-无声的告别,http://em.21dtv.com/songs/60047413.mkv +叶世荣-无声的告别(演唱会),http://em.21dtv.com/songs/60047412.mkv +BEYOND-无声的告别(演唱会),http://em.21dtv.com/songs/60047411.mkv +交通国+邓耀邦-为食到佛山,http://em.21dtv.com/songs/60101248.mkv +六水-我是登封人,http://em.21dtv.com/songs/60105612.mkv +达坡阿玻-我是东方龙,http://em.21dtv.com/songs/60078328.mkv +伍佰-顽石的飞行,http://em.21dtv.com/songs/60090593.mkv +范月明-吴山点点幽,http://em.21dtv.com/songs/60097559.mkv +陈俊华-无声的春雨,http://em.21dtv.com/songs/60088848.mkv +史俊鹏-无水的彩笔,http://em.21dtv.com/songs/60047439.mkv +李创-我是东北人,http://em.21dtv.com/songs/60086941.mkv +晶迪-我是东北人,http://em.21dtv.com/songs/60072554.mkv +黎明-无事常相见,http://em.21dtv.com/songs/60047430.mkv +余帝-往事存苦味(无原唱),http://em.21dtv.com/songs/60043438.mkv +何龙雨-往事不再提,http://em.21dtv.com/songs/60114998.mkv +陈美安-往事甭提起,http://em.21dtv.com/songs/60068722.mkv +张秀卿-往事甭提起,http://em.21dtv.com/songs/60043435.mkv +佚名-往事甭提起,http://em.21dtv.com/songs/60043434.mkv +叶启田-往事甭提起,http://em.21dtv.com/songs/60043433.mkv +蔡小虎-往事甭提起,http://em.21dtv.com/songs/60043432.mkv +王为念-我是笨男人,http://em.21dtv.com/songs/60111259.mkv +王铁-我受不了了,http://em.21dtv.com/songs/60078352.mkv +冉青霞-我舍不得你,http://em.21dtv.com/songs/60114403.mkv +张清芳-我说不出来,http://em.21dtv.com/songs/60089863.mkv +阿牛-我是阿牛哥,http://em.21dtv.com/songs/60118131.mkv +佚名-我所爱的人,http://em.21dtv.com/songs/60046265.mkv +吴旻欣-无人证现场,http://em.21dtv.com/songs/60135013.mkv +HELLO VENUS-whatre you doing today,http://em.21dtv.com/songs/60074119.mkv +杭娇-温柔与霸道,http://em.21dtv.com/songs/60044376.mkv +甲子蕙-温柔小女人(无原唱),http://em.21dtv.com/songs/60044373.mkv +KESHA-we r who we r,http://em.21dtv.com/songs/60006148.mkv +MR-what r we fighting 4,http://em.21dtv.com/songs/60074115.mkv +河图-我若是游子,http://em.21dtv.com/songs/60128167.mkv +皇甫-我仍然美丽,http://em.21dtv.com/songs/60046042.mkv +潘玮柏-我让你走了,http://em.21dtv.com/songs/60046037.mkv +徐晶晶-为人民幸福,http://em.21dtv.com/songs/60094109.mkv +乔军-为人民服务(演唱会),http://em.21dtv.com/songs/60078096.mkv +王艺清-为人民服务,http://em.21dtv.com/songs/60072503.mkv +耿为华-为人民服务,http://em.21dtv.com/songs/60072502.mkv +陈少华-为人民服务,http://em.21dtv.com/songs/60044047.mkv +林姗+翁立友-无人来作伴,http://em.21dtv.com/songs/60047396.mkv +郑锦昌-往日旧情调,http://em.21dtv.com/songs/60043423.mkv +柯受良-温柔坏男人,http://em.21dtv.com/songs/60044369.mkv +林俊彦-无人关心我(无原唱),http://em.21dtv.com/songs/60095653.mkv +妞妞姐妹-无人关心我,http://em.21dtv.com/songs/60047392.mkv +吕晓-温柔犯的罪,http://em.21dtv.com/songs/60062735.mkv +黄家强-无人的演奏,http://em.21dtv.com/songs/60047389.mkv +石雪峰-温柔的一刀,http://em.21dtv.com/songs/60128265.mkv +龙啸-温柔的一刀,http://em.21dtv.com/songs/60066383.mkv +施志兴-温柔的陷阱,http://em.21dtv.com/songs/60096312.mkv +黄妃-温柔的外衫,http://em.21dtv.com/songs/60102966.mkv +周渝民-温柔的晚安,http://em.21dtv.com/songs/60044367.mkv +周渝民-温柔的晚安(演唱会),http://em.21dtv.com/songs/60044366.mkv +周华健-温柔的瞬息,http://em.21dtv.com/songs/60090835.mkv +孙彭飞-温柔的伤害,http://em.21dtv.com/songs/60062958.mkv +吴涤清-温柔的倾诉(演唱会),http://em.21dtv.com/songs/60068743.mkv +吴涤清-温柔的倾诉,http://em.21dtv.com/songs/60066382.mkv +佚名-温柔的倾诉,http://em.21dtv.com/songs/60044365.mkv +陆毅-温柔的冒犯,http://em.21dtv.com/songs/60044361.mkv +元气乐团-温柔的力量,http://em.21dtv.com/songs/60044360.mkv +NO NAME-温柔的力量,http://em.21dtv.com/songs/60044359.mkv +靳海涛-温柔的冷酷,http://em.21dtv.com/songs/60099604.mkv +青山-往日的旧梦(演唱会),http://em.21dtv.com/songs/60083954.mkv +佚名-往日的旧梦,http://em.21dtv.com/songs/60043422.mkv +谢雷-往日的旧梦,http://em.21dtv.com/songs/60043421.mkv +林志炫-温柔的拒绝,http://em.21dtv.com/songs/60044358.mkv +康智炜+歪小九-温柔的回眸,http://em.21dtv.com/songs/60083994.mkv +佚名-往日的痕迹,http://em.21dtv.com/songs/60043420.mkv +黄仲昆-无人的海边,http://em.21dtv.com/songs/60047388.mkv +陈盛宇-温柔的鼓励,http://em.21dtv.com/songs/60108989.mkv +阿黑-温柔的歹子(无原唱),http://em.21dtv.com/songs/60044357.mkv +孙露-温柔的慈悲,http://em.21dtv.com/songs/60115832.mkv +南方二重唱-温柔的慈悲,http://em.21dtv.com/songs/60097683.mkv +孙露-温柔的慈悲,http://em.21dtv.com/songs/60078121.mkv +佚名-温柔的慈悲,http://em.21dtv.com/songs/60044356.mkv +林良乐-温柔的慈悲,http://em.21dtv.com/songs/60044355.mkv +阿桑-温柔的慈悲,http://em.21dtv.com/songs/60044354.mkv +曾明莉-无人拆会散(无原唱),http://em.21dtv.com/songs/60095594.mkv +王瑞霞-无人拆会散(无原唱),http://em.21dtv.com/songs/60070708.mkv +佚名-无人拆会散(无原唱),http://em.21dtv.com/songs/60047386.mkv +王凯琪-我如此爱你,http://em.21dtv.com/songs/60105243.mkv +汪峰-我如此爱你,http://em.21dtv.com/songs/60066420.mkv +陈雷-我若变好额,http://em.21dtv.com/songs/60046044.mkv +黄思婷-无情只有你,http://em.21dtv.com/songs/60066440.mkv +孙淑媚+王识贤-无情鸳鸯梦,http://em.21dtv.com/songs/60047380.mkv +伍天宇-我情愿认输,http://em.21dtv.com/songs/60046035.mkv +蔡小虎-无情夜玫瑰,http://em.21dtv.com/songs/60095903.mkv +许冠杰-无情夜冷风,http://em.21dtv.com/songs/60047378.mkv +许冠英-无情夜冷风(演唱会),http://em.21dtv.com/songs/60047376.mkv +杨宗宪-为情误一生(无原唱),http://em.21dtv.com/songs/60044044.mkv +庄学忠-委曲为了你,http://em.21dtv.com/songs/60087751.mkv +谢采妘-委屈为了你,http://em.21dtv.com/songs/60044218.mkv +杰子-问钱为何物,http://em.21dtv.com/songs/60129289.mkv +冷漠-问情为何物,http://em.21dtv.com/songs/60093997.mkv +陆思恒+王钰威-忘情森巴舞,http://em.21dtv.com/songs/60117318.mkv +张靓颖-忘情森巴舞,http://em.21dtv.com/songs/60108511.mkv +草蜢-忘情森巴舞,http://em.21dtv.com/songs/60043636.mkv +草蜢-忘情森巴舞(演唱会),http://em.21dtv.com/songs/60043635.mkv +E-KIDS-忘情森巴舞(演唱会),http://em.21dtv.com/songs/60043634.mkv +草蜢-忘情桑巴舞,http://em.21dtv.com/songs/60043633.mkv +王识贤-我欠你最多,http://em.21dtv.com/songs/60046022.mkv +韩信-我请你吃饭,http://em.21dtv.com/songs/60121114.mkv +尤雅-温情满人间,http://em.21dtv.com/songs/60044343.mkv +邓丽君-温情满人间,http://em.21dtv.com/songs/60044342.mkv +潘长江-五千零一夜,http://em.21dtv.com/songs/60090072.mkv +张学友-忘情冷雨夜(演唱会),http://em.21dtv.com/songs/60043632.mkv +朴树-我去两千年,http://em.21dtv.com/songs/60091296.mkv +唐飞-为情块举枷,http://em.21dtv.com/songs/60078095.mkv +唐飞-为钱块打拼,http://em.21dtv.com/songs/60078094.mkv +庄淑君-无钱假大方(无原唱),http://em.21dtv.com/songs/60047306.mkv +杨哲-无情过路人,http://em.21dtv.com/songs/60118708.mkv +杨哲-无情风雨天,http://em.21dtv.com/songs/60118709.mkv +尤雅-无情放袜记,http://em.21dtv.com/songs/60047348.mkv +陈盈洁-无情放祙记,http://em.21dtv.com/songs/60096028.mkv +曾心梅-无情放袂记,http://em.21dtv.com/songs/60095587.mkv +陈美凤-无情放抹记,http://em.21dtv.com/songs/60047347.mkv +吴淑敏-无情放乎开,http://em.21dtv.com/songs/60047346.mkv +叶胜钦-无情的再会,http://em.21dtv.com/songs/60047345.mkv +BEYOND-完全的拥有(演唱会),http://em.21dtv.com/songs/60043144.mkv +孙艳-无情的选择,http://em.21dtv.com/songs/60099929.mkv +温岚-我全都相信,http://em.21dtv.com/songs/60046036.mkv +李翊君-为钱赌性命,http://em.21dtv.com/songs/60044033.mkv +郑源-无情的温柔,http://em.21dtv.com/songs/60047337.mkv +佚名-无情的误会,http://em.21dtv.com/songs/60047338.mkv +荒山亮-无情的坦白,http://em.21dtv.com/songs/60047336.mkv +兰天-无期的思念,http://em.21dtv.com/songs/60097500.mkv +龙千玉-为钱赌生命(无原唱),http://em.21dtv.com/songs/60044032.mkv +尔萨-无情的伤害,http://em.21dtv.com/songs/60047334.mkv +张杰+王思远-无情的情书,http://em.21dtv.com/songs/60111885.mkv +孙楠+李沅帮+丛浩楠-无情的情书(最美和声)(现场版),http://em.21dtv.com/songs/60100837.mkv +张杰-无情的情书,http://em.21dtv.com/songs/60097499.mkv +谭咏麟+杜丽莎-无情的情书,http://em.21dtv.com/songs/60068805.mkv +动力火车-无情的情书,http://em.21dtv.com/songs/60047332.mkv +孙露-无情的情人,http://em.21dtv.com/songs/60115825.mkv +孙露-无情的情人,http://em.21dtv.com/songs/60078456.mkv +张芯-无情的情人,http://em.21dtv.com/songs/60047331.mkv +林孟宗-无情的情批,http://em.21dtv.com/songs/60128124.mkv +丁紫-无情的情歌,http://em.21dtv.com/songs/60109917.mkv +秋裤大叔-无情的情歌,http://em.21dtv.com/songs/60108765.mkv +赵小兵-无情的情歌,http://em.21dtv.com/songs/60084126.mkv +佚名-无情的男儿,http://em.21dtv.com/songs/60047330.mkv +刘依纯+洪荣宏-无情的玫瑰,http://em.21dtv.com/songs/60047328.mkv +朱紫娆-委曲的剧本,http://em.21dtv.com/songs/60125685.mkv +庄学忠-无情的谎言,http://em.21dtv.com/songs/60047325.mkv +童唱-无情的火车,http://em.21dtv.com/songs/60047327.mkv +张秀卿-无情的火车(无原唱),http://em.21dtv.com/songs/60047326.mkv +林子娟-无情的电影,http://em.21dtv.com/songs/60086962.mkv +高向鹏-无情的车站,http://em.21dtv.com/songs/60047318.mkv +方顺吉-无情的城市,http://em.21dtv.com/songs/60126950.mkv +庞龙-无情的背叛,http://em.21dtv.com/songs/60047317.mkv +卓依婷-无情的班机,http://em.21dtv.com/songs/60047316.mkv +佚名-无情的爱人,http://em.21dtv.com/songs/60047315.mkv +翁立友-无情的爱人,http://em.21dtv.com/songs/60047314.mkv +阿吉仔-无情的爱人,http://em.21dtv.com/songs/60047313.mkv +BEYOND-完全地爱吧,http://em.21dtv.com/songs/60043145.mkv +阿杜-为青春喝彩,http://em.21dtv.com/songs/60095232.mkv +高义泰-为青春欢唱,http://em.21dtv.com/songs/60044035.mkv +芭比-为青春干杯,http://em.21dtv.com/songs/60044034.mkv +樊芳斌-为青春点赞,http://em.21dtv.com/songs/60130505.mkv +岩光渤-我亲爱的人,http://em.21dtv.com/songs/60124792.mkv +王慧美-我亲爱的人,http://em.21dtv.com/songs/60086940.mkv +王婉晨-我亲爱的你,http://em.21dtv.com/songs/60088286.mkv +王梓旭-我亲爱的驴,http://em.21dtv.com/songs/60046030.mkv +小磊-为朋友歌唱,http://em.21dtv.com/songs/60078093.mkv +金花-为朋友干杯,http://em.21dtv.com/songs/60118979.mkv +藤兮-我陪你去疯,http://em.21dtv.com/songs/60078320.mkv +陈希郡-我陪你唱歌,http://em.21dtv.com/songs/60108126.mkv +陈奕迅-我怕你不肯,http://em.21dtv.com/songs/60110620.mkv +沈建豪-无拼抹出名,http://em.21dtv.com/songs/60047303.mkv +星弟-我骗了自己,http://em.21dtv.com/songs/60111132.mkv +心瑶-巫婆的预言,http://em.21dtv.com/songs/60098386.mkv +王源+王祖蓝+宋茜-王牌对王牌,http://em.21dtv.com/songs/60132736.mkv +夏天ALEX-我配不上你,http://em.21dtv.com/songs/60099904.mkv +江宏恩-为你醉一暝,http://em.21dtv.com/songs/60078092.mkv +蔡枫华-无奈只有恨(演唱会),http://em.21dtv.com/songs/60061722.mkv +蔡枫华-无奈只有恨,http://em.21dtv.com/songs/60047282.mkv +镜熹-为你醉一回,http://em.21dtv.com/songs/60044029.mkv +龙影云-为你做片云,http://em.21dtv.com/songs/60133150.mkv +曹越-为你着了迷,http://em.21dtv.com/songs/60078091.mkv +方顺吉-望你再回头,http://em.21dtv.com/songs/60043696.mkv +方瑞娥-望你再回头,http://em.21dtv.com/songs/60043695.mkv +谢有才-为你再干杯,http://em.21dtv.com/songs/60085844.mkv +刘国强-为你祝福新,http://em.21dtv.com/songs/60108334.mkv +谢东-为你再等候,http://em.21dtv.com/songs/60044012.mkv +尤雅-无你雨袜停,http://em.21dtv.com/songs/60047302.mkv +佚名-无你雨袜停,http://em.21dtv.com/songs/60047301.mkv +杨宗宪-无你雨袜停,http://em.21dtv.com/songs/60047300.mkv +傅振辉-无你雨袜停,http://em.21dtv.com/songs/60047299.mkv +孙美娜-问你一声好,http://em.21dtv.com/songs/60044467.mkv +杨宗宪-无你雨袂停,http://em.21dtv.com/songs/60084125.mkv +阮以伟-为你写首歌,http://em.21dtv.com/songs/60113036.mkv +满江-为你写首歌(演唱会),http://em.21dtv.com/songs/60044004.mkv +罗志祥-为你写首歌(演唱会),http://em.21dtv.com/songs/60044003.mkv +詹曼铃-为你心袂清,http://em.21dtv.com/songs/60044006.mkv +孟飞-为你写的歌,http://em.21dtv.com/songs/60118510.mkv +吴钇道-为你写的歌,http://em.21dtv.com/songs/60063104.mkv +希婕-为你写的歌,http://em.21dtv.com/songs/60043999.mkv +方大同-为你写的歌,http://em.21dtv.com/songs/60043998.mkv +谢雨欣-为你我愿意,http://em.21dtv.com/songs/60043993.mkv +江蕙-无你我无望,http://em.21dtv.com/songs/60047296.mkv +张蓉蓉-无你我无嫁,http://em.21dtv.com/songs/60047295.mkv +慕钰华-无你我抹活(无原唱),http://em.21dtv.com/songs/60047294.mkv +翁立友-无你我会死,http://em.21dtv.com/songs/60034467.mkv +张秀卿-望你疼惜阮,http://em.21dtv.com/songs/60043692.mkv +翁立友+谢金晶-为你贴心肝,http://em.21dtv.com/songs/60132807.mkv +黄乙玲-望你听我劝,http://em.21dtv.com/songs/60043694.mkv +洪荣宏-望你听我劝,http://em.21dtv.com/songs/60043693.mkv +王建杰-望你守着爱,http://em.21dtv.com/songs/60107070.mkv +吴杰鸣-维纳丝腰带,http://em.21dtv.com/songs/60125293.mkv +佚名-舞女伤心泪,http://em.21dtv.com/songs/60047802.mkv +李翊君-忘年生死恋,http://em.21dtv.com/songs/60043629.mkv +陈慧娴-无奈是女人,http://em.21dtv.com/songs/60093441.mkv +许慧欣-威尼斯迷路,http://em.21dtv.com/songs/60043750.mkv +柯以敏-温暖是红色,http://em.21dtv.com/songs/60044341.mkv +腾格尔-温暖是故乡,http://em.21dtv.com/songs/60044340.mkv +陈杰瑞-为你湿的泪,http://em.21dtv.com/songs/60043990.mkv +永邦-威尼斯的泪,http://em.21dtv.com/songs/60043749.mkv +王杰-为你生堆火,http://em.21dtv.com/songs/60043989.mkv +曾春年+丽菲-为你傻到底,http://em.21dtv.com/songs/60112730.mkv +洪荣宏-为你拼一生,http://em.21dtv.com/songs/60122951.mkv +洪荣宏-为你拼一生,http://em.21dtv.com/songs/60112069.mkv +欧阳娜娜-温暖你的冬,http://em.21dtv.com/songs/60122928.mkv +李龙-我那么爱你,http://em.21dtv.com/songs/60097569.mkv +佚名-望你来牵成,http://em.21dtv.com/songs/60043688.mkv +江蕙-望你来关怀,http://em.21dtv.com/songs/60043687.mkv +侯湘婷-为你流的泪,http://em.21dtv.com/songs/60043980.mkv +润土-我哪里不好,http://em.21dtv.com/songs/60078318.mkv +龙千玉-无你卡自由,http://em.21dtv.com/songs/60047292.mkv +邹宜璇-舞娘+卡门,http://em.21dtv.com/songs/60097692.mkv +詹雅雯-无你卡快活,http://em.21dtv.com/songs/60047291.mkv +洪荣宏-无你就无我,http://em.21dtv.com/songs/60047290.mkv +任贤齐-无你就无我(无原唱),http://em.21dtv.com/songs/60047289.mkv +陈盈洁-我哪会在这,http://em.21dtv.com/songs/60045998.mkv +荒山亮-为你活下去,http://em.21dtv.com/songs/60118014.mkv +黎瑞恩-为你活下去,http://em.21dtv.com/songs/60043978.mkv +陈思安-为你活落去(无原唱),http://em.21dtv.com/songs/60043977.mkv +豪记大对唱-无奈搁无奈,http://em.21dtv.com/songs/60047276.mkv +蔡小虎+龙千玉-无奈搁无奈,http://em.21dtv.com/songs/60047275.mkv +EMMA BUNTON-were not gonna sleep tonight,http://em.21dtv.com/songs/60006168.mkv +任贤齐-为你而祝福,http://em.21dtv.com/songs/60090542.mkv +万乘齐-无奈的执着,http://em.21dtv.com/songs/60115657.mkv +龙千玉-温暖的祝福,http://em.21dtv.com/songs/60136055.mkv +黄乙玲-无奈的祝福,http://em.21dtv.com/songs/60047274.mkv +陈雷-无奈的注定,http://em.21dtv.com/songs/60047273.mkv +何龙雨-无奈的选择,http://em.21dtv.com/songs/60078455.mkv +杨哲-无奈的心声,http://em.21dtv.com/songs/60118707.mkv +佚名-无奈的相思,http://em.21dtv.com/songs/60047271.mkv +曾心梅-无奈的相思,http://em.21dtv.com/songs/60047270.mkv +余帝-无奈的相思(无原唱),http://em.21dtv.com/songs/60047269.mkv +黄克林-无奈的笑容(无原唱),http://em.21dtv.com/songs/60047272.mkv +汪苏泷-唯你懂我心,http://em.21dtv.com/songs/60044174.mkv +范小蛙-唯你懂我心,http://em.21dtv.com/songs/60044173.mkv +SILENCE-唯你懂我心,http://em.21dtv.com/songs/60044172.mkv +伍乐吉-无奈的叹息,http://em.21dtv.com/songs/60122479.mkv +崔博涵-温暖的天堂,http://em.21dtv.com/songs/60129023.mkv +袁小迪-无你的所在,http://em.21dtv.com/songs/60070008.mkv +办桌二人组-无你的所在,http://em.21dtv.com/songs/60047288.mkv +韩宝仪-无奈的思绪,http://em.21dtv.com/songs/60047268.mkv +洪荣宏-温暖的山雪,http://em.21dtv.com/songs/60044338.mkv +金木-无奈的守望,http://em.21dtv.com/songs/60109666.mkv +蔡雯君-无奈的守望,http://em.21dtv.com/songs/60109614.mkv +黄思婷-温暖的双手,http://em.21dtv.com/songs/60044339.mkv +囚鸟-无奈的伤悲,http://em.21dtv.com/songs/60090861.mkv +马常宝-温暖的秋天,http://em.21dtv.com/songs/60130898.mkv +李华-温暖的秋天,http://em.21dtv.com/songs/60100881.mkv +姜育恒-温暖的秋天,http://em.21dtv.com/songs/60044337.mkv +香玲-无奈的牵挂,http://em.21dtv.com/songs/60116383.mkv +红蔷薇-无奈的牵挂,http://em.21dtv.com/songs/60112877.mkv +余天龙-望恁斗牵成,http://em.21dtv.com/songs/60118340.mkv +晓飞-为你动了心,http://em.21dtv.com/songs/60133759.mkv +广杰-为你动了心,http://em.21dtv.com/songs/60133629.mkv +小龙女-为你动了心,http://em.21dtv.com/songs/60116747.mkv +崔健-无能的力量,http://em.21dtv.com/songs/60091007.mkv +BEYOND-温暖的家乡,http://em.21dtv.com/songs/60044334.mkv +龙梅子+闫旭-无奈的结局,http://em.21dtv.com/songs/60078454.mkv +张斯斯-温暖的寒意,http://em.21dtv.com/songs/60083992.mkv +洪百慧-无你的寒夜,http://em.21dtv.com/songs/60067605.mkv +行走寒武纪-无奈的红尘,http://em.21dtv.com/songs/60063191.mkv +李姳-无奈的红尘,http://em.21dtv.com/songs/60062602.mkv +晓依+苏富权-温暖的怀抱,http://em.21dtv.com/songs/60067533.mkv +腾格尔-温暖的故乡,http://em.21dtv.com/songs/60044332.mkv +佚名-无奈的歌声,http://em.21dtv.com/songs/60047267.mkv +萧磊-无奈的放手,http://em.21dtv.com/songs/60107166.mkv +林依轮-蜗牛的独舞,http://em.21dtv.com/songs/60091429.mkv +林依伦-蜗牛的独舞,http://em.21dtv.com/songs/60088086.mkv +袁小迪-温暖的冬天,http://em.21dtv.com/songs/60066381.mkv +李明洋-无你的城市,http://em.21dtv.com/songs/60047287.mkv +李明洋+邱芸子-无你的城市,http://em.21dtv.com/songs/60047286.mkv +王中平-温暖的厝内,http://em.21dtv.com/songs/60115285.mkv +黄伟霖-无你的暗暝,http://em.21dtv.com/songs/60123389.mkv +吴沙-无奈的爱恋,http://em.21dtv.com/songs/60120407.mkv +任然-唯你才知道,http://em.21dtv.com/songs/60072505.mkv +布衣乐队-为你唱首歌,http://em.21dtv.com/songs/60102172.mkv +大刚-为你唱首歌(演唱会),http://em.21dtv.com/songs/60078081.mkv +汪苏泷-为你唱首歌,http://em.21dtv.com/songs/60065019.mkv +痛仰乐队-为你唱首歌(演唱会),http://em.21dtv.com/songs/60043948.mkv +钟子炫-为你唱情歌,http://em.21dtv.com/songs/60081270.mkv +蔡献华+湘佛莲-为你唱情歌,http://em.21dtv.com/songs/60069911.mkv +素妍+安英民-为你唱的歌,http://em.21dtv.com/songs/60062939.mkv +俞灏明-为你唱的歌(演唱会),http://em.21dtv.com/songs/60043947.mkv +高峰-为你病相思(无原唱),http://em.21dtv.com/songs/60043945.mkv +群星-完美这一天,http://em.21dtv.com/songs/60130658.mkv +何洁-我们在一起,http://em.21dtv.com/songs/60128780.mkv +张天龙-我们在一起,http://em.21dtv.com/songs/60105028.mkv +刘琪-我们在一起,http://em.21dtv.com/songs/60103939.mkv +群星-我们在一起,http://em.21dtv.com/songs/60094249.mkv +胡世明-我们在一起(演唱会),http://em.21dtv.com/songs/60072550.mkv +和妤婕+林松茂-我们在一起,http://em.21dtv.com/songs/60071262.mkv +苏醒-我们在一起,http://em.21dtv.com/songs/60045970.mkv +金波-我们在一起,http://em.21dtv.com/songs/60045968.mkv +张靓颖-我们在一起(演唱会),http://em.21dtv.com/songs/60045967.mkv +刘家昌-我们在一起(演唱会),http://em.21dtv.com/songs/60045966.mkv +梁佑嘉-我们这一家,http://em.21dtv.com/songs/60066418.mkv +秦勇-我们这一代,http://em.21dtv.com/songs/60080685.mkv +黑豹乐队-我们这一代(演唱会),http://em.21dtv.com/songs/60045974.mkv +王佑贵-我们这一辈,http://em.21dtv.com/songs/60134525.mkv +王佑贵-我们这一辈(演唱会),http://em.21dtv.com/songs/60069967.mkv +王佑贵-我们这一辈,http://em.21dtv.com/songs/60063047.mkv +毅光年组合+张欣奕-我们正年轻,http://em.21dtv.com/songs/60093808.mkv +郑源+郑东-我们正年轻(演唱会),http://em.21dtv.com/songs/60078313.mkv +袁树雄-我们怎么了,http://em.21dtv.com/songs/60072551.mkv +S.H.E-我们怎么了,http://em.21dtv.com/songs/60045971.mkv +林思彤-完美治疗者,http://em.21dtv.com/songs/60110305.mkv +李雪莱-我们在路上,http://em.21dtv.com/songs/60127060.mkv +李姗殷-我们在路上,http://em.21dtv.com/songs/60121769.mkv +陈中-无某真艰苦,http://em.21dtv.com/songs/60135891.mkv +群星-我们中国人,http://em.21dtv.com/songs/60045983.mkv +魏晨-我们在改变,http://em.21dtv.com/songs/60128620.mkv +魏晨-我们在改变,http://em.21dtv.com/songs/60072549.mkv +陈咏+陈娇-我们做夫妻,http://em.21dtv.com/songs/60117329.mkv +枫舞-我梦中的人,http://em.21dtv.com/songs/60080498.mkv +枫舞-我梦中的人(舞曲版),http://em.21dtv.com/songs/60072552.mkv +周杰伦-我们在成长,http://em.21dtv.com/songs/60099156.mkv +黄悦声-我们曾爱过,http://em.21dtv.com/songs/60084068.mkv +丑丑-我没有远方,http://em.21dtv.com/songs/60045757.mkv +罗琦-我没有远方(演唱会),http://em.21dtv.com/songs/60045756.mkv +袁野-我没有忘记,http://em.21dtv.com/songs/60100459.mkv +吴国敬-我没有忘记,http://em.21dtv.com/songs/60045755.mkv +陈慧琳-我没有忘记,http://em.21dtv.com/songs/60045754.mkv +欧弟-我们有武功,http://em.21dtv.com/songs/60066417.mkv +吴若希-我没有伤心,http://em.21dtv.com/songs/60078281.mkv +TWINS-我们要睡觉,http://em.21dtv.com/songs/60045952.mkv +俞灏明+徐真英-我们一起走,http://em.21dtv.com/songs/60099756.mkv +叶晓红-我们一起走,http://em.21dtv.com/songs/60084067.mkv +谭圳+姚胜-我们一起走,http://em.21dtv.com/songs/60078310.mkv +方子璇+张智亮-我们一起逃,http://em.21dtv.com/songs/60045959.mkv +张雷-我们一起来,http://em.21dtv.com/songs/60111899.mkv +邵静然-我们一起来,http://em.21dtv.com/songs/60085917.mkv +郑中基-我们一起过(演唱会),http://em.21dtv.com/songs/60045958.mkv +阿里郎-我们一起飞,http://em.21dtv.com/songs/60078308.mkv +西单女孩-我们一起飞,http://em.21dtv.com/songs/60063128.mkv +牧兰+贡布-我们一起爱,http://em.21dtv.com/songs/60119792.mkv +冷漠+邓丽君-我没有骗你,http://em.21dtv.com/songs/60119280.mkv +庄学忠-我没有骗你,http://em.21dtv.com/songs/60103255.mkv +陈浩德-我没有骗你(演唱会),http://em.21dtv.com/songs/60078280.mkv +邓丽君-我没有骗你,http://em.21dtv.com/songs/60045750.mkv +包娜娜-我没有骗你,http://em.21dtv.com/songs/60045749.mkv +杨燕-我没有骗你(演唱会),http://em.21dtv.com/songs/60045748.mkv +古天乐-我没有女友,http://em.21dtv.com/songs/60045747.mkv +ANDY GIBSON-wanna make you love me,http://em.21dtv.com/songs/60065723.mkv +伍咏薇-我没有哭过,http://em.21dtv.com/songs/60045745.mkv +林忆莲+白嘉倩-我没有恨谁,http://em.21dtv.com/songs/60045744.mkv +左佳-我们约会吧,http://em.21dtv.com/songs/60045964.mkv +程欢+程璇-我们一个家,http://em.21dtv.com/songs/60135618.mkv +张宇-我没有感觉,http://em.21dtv.com/songs/60087806.mkv +雪狼-我没有犯错,http://em.21dtv.com/songs/60045743.mkv +黎明-我没有爱错,http://em.21dtv.com/songs/60045739.mkv +林俊杰-完美新世界,http://em.21dtv.com/songs/60043140.mkv +TANK-我们小时候,http://em.21dtv.com/songs/60045948.mkv +容中尔甲-为梦想领跑,http://em.21dtv.com/songs/60085840.mkv +侯旭-为梦想歌唱(演唱会),http://em.21dtv.com/songs/60043932.mkv +郭应龙-为梦想而飞,http://em.21dtv.com/songs/60043931.mkv +满文军-我们相爱了,http://em.21dtv.com/songs/60091640.mkv +满文军+赵咏华-我们相爱了,http://em.21dtv.com/songs/60091635.mkv +贺敬轩-我们相爱吧,http://em.21dtv.com/songs/60111412.mkv +The One-我们相爱吧,http://em.21dtv.com/songs/60109899.mkv +李圣杰-我们相爱吧,http://em.21dtv.com/songs/60105972.mkv +吴宪-我没忘了你,http://em.21dtv.com/songs/60061689.mkv +丁晓红+罗宁娜+郁钧剑-我们握紧手(演唱会),http://em.21dtv.com/songs/60045946.mkv +聂建华-我们是战友(演唱会),http://em.21dtv.com/songs/60068779.mkv +蒙鹂君-我们是瑶族,http://em.21dtv.com/songs/60084065.mkv +翼友会群星-我们是翼友,http://em.21dtv.com/songs/60112890.mkv +张艺-我们是一家,http://em.21dtv.com/songs/60121672.mkv +西域胡杨-我们是兄弟,http://em.21dtv.com/songs/60123156.mkv +朱明-我们是兄弟,http://em.21dtv.com/songs/60080115.mkv +刘嘉亮-我们是兄弟,http://em.21dtv.com/songs/60068778.mkv +京晋Jucie-我们是未来,http://em.21dtv.com/songs/60105575.mkv +筷子兄弟-我们是太阳,http://em.21dtv.com/songs/60131718.mkv +庄莹-我们是天使,http://em.21dtv.com/songs/60045939.mkv +陈建年-我们是同胞,http://em.21dtv.com/songs/60045940.mkv +许嵩-我们傻傻的,http://em.21dtv.com/songs/60114055.mkv +曹海波-我们是情人,http://em.21dtv.com/songs/60078300.mkv +曹格-我们是朋友,http://em.21dtv.com/songs/60120586.mkv +红蔷薇-我们是朋友,http://em.21dtv.com/songs/60072548.mkv +满江-我们是朋友,http://em.21dtv.com/songs/60045937.mkv +郭峰-我们是朋友,http://em.21dtv.com/songs/60045936.mkv +顾海滨+金波-我们是朋友,http://em.21dtv.com/songs/60045935.mkv +宋念宇-我们说好了,http://em.21dtv.com/songs/60102149.mkv +小宇-我们说好了,http://em.21dtv.com/songs/60099966.mkv +张靓颖-我们说好的,http://em.21dtv.com/songs/60135252.mkv +王馨-我们说好的,http://em.21dtv.com/songs/60120785.mkv +徐健淇-我们说好的,http://em.21dtv.com/songs/60067577.mkv +张靓颖-我们说好的,http://em.21dtv.com/songs/60045944.mkv +弥藏乐队-我们是冠军,http://em.21dtv.com/songs/60125547.mkv +余波-我们是的哥,http://em.21dtv.com/songs/60045923.mkv +陈思思-我们去远航,http://em.21dtv.com/songs/60045917.mkv +水木年华-我们去远方,http://em.21dtv.com/songs/60045916.mkv +谢霆锋-完美启示录,http://em.21dtv.com/songs/60043129.mkv +讴洋-我们去极地,http://em.21dtv.com/songs/60115390.mkv +潘辰-为母亲喝彩,http://em.21dtv.com/songs/60083976.mkv +黄清元-我没抛弃你,http://em.21dtv.com/songs/60090355.mkv +黄予然-我们那首歌,http://em.21dtv.com/songs/60129830.mkv +罗震环-我们能不能,http://em.21dtv.com/songs/60126039.mkv +罗震环-我们能不能,http://em.21dtv.com/songs/60124354.mkv +陈翔-问妈妈好吗,http://em.21dtv.com/songs/60071224.mkv +董文华-文明礼貌歌,http://em.21dtv.com/songs/60044388.mkv +小乔-我们恋爱吧,http://em.21dtv.com/songs/60104075.mkv +李慧琳-我们恋爱吧,http://em.21dtv.com/songs/60045908.mkv +慧琳-我们恋爱吧,http://em.21dtv.com/songs/60045907.mkv +马旭东-我们结束了,http://em.21dtv.com/songs/60120143.mkv +海生-我们结婚了,http://em.21dtv.com/songs/60121877.mkv +吉吉+刘冲-我们结婚啦,http://em.21dtv.com/songs/60119340.mkv +于新娜-我们结婚啦,http://em.21dtv.com/songs/60103065.mkv +范萱蔚+叶文辉-我们结婚了,http://em.21dtv.com/songs/60045901.mkv +于清龙-我们结婚吧,http://em.21dtv.com/songs/60109128.mkv +彭清-我们结婚吧,http://em.21dtv.com/songs/60103298.mkv +何洁-我们结婚吧,http://em.21dtv.com/songs/60081635.mkv +付辛博-我们结婚吧,http://em.21dtv.com/songs/60080507.mkv +金志文-我们结婚吧,http://em.21dtv.com/songs/60078297.mkv +胡量-我们结婚吧,http://em.21dtv.com/songs/60071261.mkv +金莎+刘佳-我们结婚吧,http://em.21dtv.com/songs/60067576.mkv +夏后-我们就到这,http://em.21dtv.com/songs/60085914.mkv +梁静茹-我们就到这,http://em.21dtv.com/songs/60045902.mkv +梁文音-我们会再见,http://em.21dtv.com/songs/60106038.mkv +海生-我们还有梦,http://em.21dtv.com/songs/60097566.mkv +刘波-我们还年轻,http://em.21dtv.com/songs/60108345.mkv +成林江措+嘉央曲珍-我们好好爱,http://em.21dtv.com/songs/60045897.mkv +胡夏-我们会不会,http://em.21dtv.com/songs/60080556.mkv +莫文蔚-while my guitar gently weeps,http://em.21dtv.com/songs/60071689.mkv +关心妍-我们都自私(演唱会),http://em.21dtv.com/songs/60078296.mkv +SUPER JUNIOR-M-完美的再见,http://em.21dtv.com/songs/60078003.mkv +任贤齐+梁汉文-我们的最后,http://em.21dtv.com/songs/60130070.mkv +艾怡良-我们的总和,http://em.21dtv.com/songs/60123104.mkv +艾怡良-我们的总和,http://em.21dtv.com/songs/60122049.mkv +冉六尔-我们的战斗,http://em.21dtv.com/songs/60106620.mkv +魔幻力量-我们的主场,http://em.21dtv.com/songs/60117397.mkv +石裕博-我们的影子,http://em.21dtv.com/songs/60045849.mkv +陈学冬-我们都一样,http://em.21dtv.com/songs/60114860.mkv +张杰+吴汶芳-我们都一样,http://em.21dtv.com/songs/60111878.mkv +张艺于-我们都一样,http://em.21dtv.com/songs/60098363.mkv +水木年华-我们都一样,http://em.21dtv.com/songs/60062919.mkv +张杰-我们都一样,http://em.21dtv.com/songs/60045891.mkv +佚名-我们都一样,http://em.21dtv.com/songs/60045890.mkv +棉花糖-我们都一样,http://em.21dtv.com/songs/60045889.mkv +陈慧琳-我们都一样,http://em.21dtv.com/songs/60045888.mkv +蔡孟臻-我们都一样,http://em.21dtv.com/songs/60045887.mkv +张杰-我们都一样(演唱会),http://em.21dtv.com/songs/60045886.mkv +梁咏琪-我们的永远,http://em.21dtv.com/songs/60045851.mkv +梁咏琪-我们的永远(演唱会),http://em.21dtv.com/songs/60045850.mkv +吴俊宏-无名的英雄,http://em.21dtv.com/songs/60065142.mkv +孙燕姿-完美的一天,http://em.21dtv.com/songs/60043113.mkv +古巨基-完美的一天,http://em.21dtv.com/songs/60043112.mkv +曾宝仪-我们的颜色,http://em.21dtv.com/songs/60045848.mkv +贾富营-无眠的夜里,http://em.21dtv.com/songs/60127432.mkv +陈胜屿-完美的演技,http://em.21dtv.com/songs/60069893.mkv +龙俊祺-我们的约定,http://em.21dtv.com/songs/60066413.mkv +蹇红-我们都要安,http://em.21dtv.com/songs/60081001.mkv +李玉波-我们的心愿,http://em.21dtv.com/songs/60093635.mkv +AT17-我们的序幕(演唱会),http://em.21dtv.com/songs/60045847.mkv +FM102.9-我们的星光,http://em.21dtv.com/songs/60109818.mkv +STAR-我们的星光,http://em.21dtv.com/songs/60103039.mkv +潘玉梅+张燕霞-完美的幸福,http://em.21dtv.com/songs/60132694.mkv +杨钰莹-我们的幸福,http://em.21dtv.com/songs/60125763.mkv +张家源-我们的舞台,http://em.21dtv.com/songs/60078292.mkv +山野-我们的无奈,http://em.21dtv.com/songs/60045840.mkv +汤旭-我们的未来,http://em.21dtv.com/songs/60045839.mkv +徐靖博-完美的误会,http://em.21dtv.com/songs/60043111.mkv +余枫-我们的挑战,http://em.21dtv.com/songs/60128784.mkv +张金利-我们的田野,http://em.21dtv.com/songs/60130338.mkv +群星-我们的田野,http://em.21dtv.com/songs/60112144.mkv +童声合唱-我们的田野,http://em.21dtv.com/songs/60045837.mkv +汤灿+陈思思-我们的田野,http://em.21dtv.com/songs/60045836.mkv +李紫君-我们的田野,http://em.21dtv.com/songs/60045835.mkv +戴爱玲-我们的天堂,http://em.21dtv.com/songs/60080474.mkv +小F4-我们的天堂,http://em.21dtv.com/songs/60045834.mkv +BAD-我没对他说,http://em.21dtv.com/songs/60087178.mkv +B.A.D-我没对她说,http://em.21dtv.com/songs/60045733.mkv +言武士-唯美的天空,http://em.21dtv.com/songs/60128390.mkv +孙艺程-雾霾的天空,http://em.21dtv.com/songs/60103203.mkv +黄忆明-我们的天空,http://em.21dtv.com/songs/60045833.mkv +小手-我们的童话,http://em.21dtv.com/songs/60065089.mkv +曾宝仪-我们的童话,http://em.21dtv.com/songs/60045838.mkv +三百整+罗中旭-我们的声音,http://em.21dtv.com/songs/60078291.mkv +罗中旭+三百整-我们的声音,http://em.21dtv.com/songs/60072544.mkv +周柏豪-我们的使命,http://em.21dtv.com/songs/60045830.mkv +玛婷-完美的时刻,http://em.21dtv.com/songs/60043110.mkv +沙漠讯号-我们的世界,http://em.21dtv.com/songs/60130539.mkv +陈卿-我们的世界,http://em.21dtv.com/songs/60109691.mkv +郑心慈+胡慧仪-外面的世界,http://em.21dtv.com/songs/60104486.mkv +齐秦+齐豫-外面的世界,http://em.21dtv.com/songs/60098963.mkv +胡海泉+刘绿叶-外面的世界,http://em.21dtv.com/songs/60095051.mkv +莫旭秋-外面的世界(演唱会),http://em.21dtv.com/songs/60077997.mkv +超人特工队-外面的世界,http://em.21dtv.com/songs/60064991.mkv +薛之谦-我们的世界,http://em.21dtv.com/songs/60063227.mkv +麦田守望者-我们的世界,http://em.21dtv.com/songs/60045832.mkv +齐秦-外面的世界,http://em.21dtv.com/songs/60043074.mkv +莫文蔚-外面的世界,http://em.21dtv.com/songs/60043073.mkv +罗永娟-外面的世界,http://em.21dtv.com/songs/60043072.mkv +力量之声组合-我们的上海,http://em.21dtv.com/songs/60131220.mkv +吴若希-完美的生活,http://em.21dtv.com/songs/60121499.mkv +金克成+董阳-我们的时代,http://em.21dtv.com/songs/60133003.mkv +金克成-我们的时代,http://em.21dtv.com/songs/60133002.mkv +董阳+金克成-我们的时代,http://em.21dtv.com/songs/60131780.mkv +H2K-我们的时代,http://em.21dtv.com/songs/60118257.mkv +华语群星-我们的时代,http://em.21dtv.com/songs/60103129.mkv +师鹏-我们的时代(演唱会),http://em.21dtv.com/songs/60065088.mkv +泼猴-我们的世代,http://em.21dtv.com/songs/60045831.mkv +任贤齐-完美的奇迹,http://em.21dtv.com/songs/60085813.mkv +李华-我们的情歌,http://em.21dtv.com/songs/60132526.mkv +张震岳-无名的情歌,http://em.21dtv.com/songs/60118571.mkv +高娅媛+潘恩蓓-我们的情歌,http://em.21dtv.com/songs/60099625.mkv +MABEL美宝-我们的情歌,http://em.21dtv.com/songs/60098041.mkv +张震岳-无名的情歌,http://em.21dtv.com/songs/60094904.mkv +潘玮柏-我们都怕痛,http://em.21dtv.com/songs/60045865.mkv +零点乐队-我们的命运,http://em.21dtv.com/songs/60045820.mkv +陈雪君+33班-我们的梦想,http://em.21dtv.com/songs/60135950.mkv +三多+四多-我们的梦想,http://em.21dtv.com/songs/60086934.mkv +张娜拉-我们的梦想,http://em.21dtv.com/songs/60045818.mkv +廖昌永+张娜拉-我们的梦想,http://em.21dtv.com/songs/60045817.mkv +杨子姗-我们的明天,http://em.21dtv.com/songs/60107814.mkv +鹿晗-我们的明天,http://em.21dtv.com/songs/60107373.mkv +徐艺嘉-我们的秘密,http://em.21dtv.com/songs/60130350.mkv +吴雨霏+邢迪-我们的秘密,http://em.21dtv.com/songs/60090815.mkv +陈翔-我们都没错,http://em.21dtv.com/songs/60113071.mkv +刘品言-我们都没错,http://em.21dtv.com/songs/60110015.mkv +郑源-我们都老了,http://em.21dtv.com/songs/60118964.mkv +林依霖-完美的离开,http://em.21dtv.com/songs/60043109.mkv +梅艳芳-我们都哭了,http://em.21dtv.com/songs/60045864.mkv +孔朝+李璇-我们的空间,http://em.21dtv.com/songs/60071258.mkv +吕斌-我们的纪念,http://em.21dtv.com/songs/60119344.mkv +冷漠-我们的纪念,http://em.21dtv.com/songs/60101934.mkv +[Group] +groupName=十六万歌曲MV等 - 78 +李雅微-我们的纪念,http://em.21dtv.com/songs/60045808.mkv +向洋-我们都寂寞,http://em.21dtv.com/songs/60125274.mkv +黄丽玲-我们都寂寞,http://em.21dtv.com/songs/60121177.mkv +曹格-我们都寂寞,http://em.21dtv.com/songs/60113574.mkv +容祖儿-我们都寂寞,http://em.21dtv.com/songs/60104952.mkv +许茹芸-我们都寂寞,http://em.21dtv.com/songs/60045863.mkv +陈奕迅-我们都寂寞,http://em.21dtv.com/songs/60045862.mkv +陈奕迅-我们都寂寞(演唱会),http://em.21dtv.com/songs/60045861.mkv +萧亚轩-我们的寂寞,http://em.21dtv.com/songs/60045812.mkv +汤宝如-我们的近况,http://em.21dtv.com/songs/60045814.mkv +SHELLY佳-我们的结局,http://em.21dtv.com/songs/60068775.mkv +李明宇-我们的结果,http://em.21dtv.com/songs/60104203.mkv +董冬-我们的精彩,http://em.21dtv.com/songs/60068776.mkv +汪东城-我们的剧本,http://em.21dtv.com/songs/60071257.mkv +卢笛-我们的骄傲,http://em.21dtv.com/songs/60118414.mkv +JS-完美的谎言,http://em.21dtv.com/songs/60090411.mkv +婧-我们的回忆,http://em.21dtv.com/songs/60078289.mkv +林泰燊-我们的回忆,http://em.21dtv.com/songs/60069962.mkv +张宥伦-我们都很忙,http://em.21dtv.com/songs/60131396.mkv +陈娟儿-我们都很忙,http://em.21dtv.com/songs/60129733.mkv +彭钧+崔天琪-我们都很剑,http://em.21dtv.com/songs/60125558.mkv +王力宏+FEAT.RAIN-完美的互动,http://em.21dtv.com/songs/60043108.mkv +潘玮柏-我们都会错,http://em.21dtv.com/songs/60045860.mkv +张玮伽-我们的歌谣,http://em.21dtv.com/songs/60133680.mkv +凤凰传奇-我们的歌谣,http://em.21dtv.com/songs/60061691.mkv +许晋杭-我们的过往,http://em.21dtv.com/songs/60085913.mkv +王瑞淇-我们的故事,http://em.21dtv.com/songs/60125935.mkv +齐浚羽-我们的故事,http://em.21dtv.com/songs/60124763.mkv +柳岩-我们的故事,http://em.21dtv.com/songs/60122915.mkv +罗艺达-我们的故事,http://em.21dtv.com/songs/60117970.mkv +徐子崴-我们的故事,http://em.21dtv.com/songs/60111912.mkv +许鹤缤-我们的故事,http://em.21dtv.com/songs/60100963.mkv +卫兰-我们的故事,http://em.21dtv.com/songs/60072543.mkv +光良-我们的故事,http://em.21dtv.com/songs/60071256.mkv +张涛+张妍-我们的故事,http://em.21dtv.com/songs/60067572.mkv +赵咏华-我们的故事,http://em.21dtv.com/songs/60045806.mkv +谢东-我们的故事,http://em.21dtv.com/songs/60045805.mkv +陶喆-我们的故事,http://em.21dtv.com/songs/60045804.mkv +黄崇旭-我们的故事,http://em.21dtv.com/songs/60045803.mkv +戴佩妮-我们的故事,http://em.21dtv.com/songs/60045802.mkv +安德尊-我们的故事,http://em.21dtv.com/songs/60045801.mkv +陈崴-我们的故事(无原唱),http://em.21dtv.com/songs/60045800.mkv +马骏杰-我们的k歌,http://em.21dtv.com/songs/60045784.mkv +JS-我们都孤单,http://em.21dtv.com/songs/60067574.mkv +糖果酒-完美的感动,http://em.21dtv.com/songs/60061641.mkv +李瑞龙-我们的风筝,http://em.21dtv.com/songs/60078288.mkv +何耀珊-我们的冬天,http://em.21dtv.com/songs/60045795.mkv +杨千嬅-我们的答案,http://em.21dtv.com/songs/60045793.mkv +黄莺莺-我们都错了(无原唱),http://em.21dtv.com/songs/60045858.mkv +庞龙-我们的初恋,http://em.21dtv.com/songs/60045792.mkv +京维-我们的出口,http://em.21dtv.com/songs/60072542.mkv +徐浩峻-完美的错觉,http://em.21dtv.com/songs/60109364.mkv +徐健淇-完美的错觉,http://em.21dtv.com/songs/60086896.mkv +古巨基-我们的彩虹,http://em.21dtv.com/songs/60045791.mkv +古巨基+桑兰-我们的彩虹,http://em.21dtv.com/songs/60045790.mkv +汪思妍-我们的翅膀,http://em.21dtv.com/songs/60100262.mkv +王尧-完美的表演,http://em.21dtv.com/songs/60043107.mkv +鳕熊-我们都变了,http://em.21dtv.com/songs/60122293.mkv +李心洁-我们都变了,http://em.21dtv.com/songs/60071259.mkv +佚名-我们当兵乐,http://em.21dtv.com/songs/60045783.mkv +梁文音-我们都别哭,http://em.21dtv.com/songs/60045857.mkv +乔任梁-我们都不坏,http://em.21dtv.com/songs/60115671.mkv +鄢青-我们的爱情,http://em.21dtv.com/songs/60131896.mkv +许霖+陈诗妮-我们的爱情,http://em.21dtv.com/songs/60129613.mkv +鸿飞-我们的爱情,http://em.21dtv.com/songs/60113109.mkv +张建波-我们的爱情,http://em.21dtv.com/songs/60084063.mkv +刘朋+萧熙-完美的爱情,http://em.21dtv.com/songs/60078002.mkv +汪峰-我们的爱情,http://em.21dtv.com/songs/60065085.mkv +沈凌-我们的爱情,http://em.21dtv.com/songs/60045788.mkv +陈慧琳-我们都爱你(演唱会),http://em.21dtv.com/songs/60045856.mkv +栾军-我们都爱过,http://em.21dtv.com/songs/60122917.mkv +郁可唯-我们都爱过,http://em.21dtv.com/songs/60108922.mkv +崔秀丽-我们出发了,http://em.21dtv.com/songs/60132414.mkv +弭恺-我们长大了,http://em.21dtv.com/songs/60116820.mkv +袁攀-我们曾爱过,http://em.21dtv.com/songs/60068781.mkv +C BLOCK-我们毕业了,http://em.21dtv.com/songs/60122355.mkv +艾尼瓦尔江-我们毕业了,http://em.21dtv.com/songs/60118000.mkv +罗嘉良-未明白女人,http://em.21dtv.com/songs/60044270.mkv +闻美茜-我们不合适,http://em.21dtv.com/songs/60100535.mkv +张菲-walking my baby back home(演唱会),http://em.21dtv.com/songs/60006110.mkv +黄莺莺-我们啊我们,http://em.21dtv.com/songs/60045774.mkv +THE HEAVY-what makes a good man,http://em.21dtv.com/songs/60074114.mkv +陆正信-我来自壮乡,http://em.21dtv.com/songs/60100556.mkv +王铮亮-为了这一天,http://em.21dtv.com/songs/60066374.mkv +孙悦-为了这一天,http://em.21dtv.com/songs/60043930.mkv +刘家昌-我俩在一起,http://em.21dtv.com/songs/60045726.mkv +刘家昌-我俩在一起(演唱会),http://em.21dtv.com/songs/60045725.mkv +刘家昌-我两在一起,http://em.21dtv.com/songs/60045720.mkv +佚名-乌来追想曲,http://em.21dtv.com/songs/60047032.mkv +孙楠-未来在手中,http://em.21dtv.com/songs/60044262.mkv +刘锡明-无论再十年,http://em.21dtv.com/songs/60047231.mkv +张艳奕-我来自南方,http://em.21dtv.com/songs/60097570.mkv +谢军-我来自南方,http://em.21dtv.com/songs/60045708.mkv +何刚-为了这面旗,http://em.21dtv.com/songs/60104780.mkv +东来东往-忘了怎么哭,http://em.21dtv.com/songs/60043625.mkv +阿生-忘了怎么哭,http://em.21dtv.com/songs/60043624.mkv +阿生-网络综合症,http://em.21dtv.com/songs/60043391.mkv +王菀之-我来自火星,http://em.21dtv.com/songs/60045707.mkv +佚名-我来自广州,http://em.21dtv.com/songs/60045706.mkv +叶振棠-我来自潮洲,http://em.21dtv.com/songs/60092436.mkv +叶振棠-我来自潮州,http://em.21dtv.com/songs/60045705.mkv +黎明-我来自北京,http://em.21dtv.com/songs/60045704.mkv +黎明-我来自北京(演唱会),http://em.21dtv.com/songs/60045703.mkv +小山-我来自安徽,http://em.21dtv.com/songs/60045702.mkv +张海松-网络有真情(舞曲版),http://em.21dtv.com/songs/60063369.mkv +千童-网络有真情,http://em.21dtv.com/songs/60062822.mkv +罗文裕-未来一直来,http://em.21dtv.com/songs/60097514.mkv +安东阳-网络一线牵,http://em.21dtv.com/songs/60078033.mkv +于瑛楠-无聊忧伤夜,http://em.21dtv.com/songs/60097498.mkv +小丫-忘了又如何,http://em.21dtv.com/songs/60078054.mkv +薛之谦-为了遇见你,http://em.21dtv.com/songs/60086907.mkv +戚薇+杨宗纬-为了遇见你,http://em.21dtv.com/songs/60072499.mkv +胡瑶-为了遇见你,http://em.21dtv.com/songs/60043929.mkv +马海生+马璐-为了遇见你(演唱会),http://em.21dtv.com/songs/60043928.mkv +张震岳-无路用的人,http://em.21dtv.com/songs/60047226.mkv +阿文-网络新情缘,http://em.21dtv.com/songs/60109683.mkv +佚名-为了小秋香,http://em.21dtv.com/songs/60043926.mkv +马常宝+王雅娴-忘了我是谁,http://em.21dtv.com/songs/60096560.mkv +李丽蕊-忘了我是谁(演唱会),http://em.21dtv.com/songs/60083960.mkv +塔斯肯-忘了我是谁,http://em.21dtv.com/songs/60081549.mkv +蟑螂乐队-忘了我是谁,http://em.21dtv.com/songs/60043618.mkv +佚名-忘了我是谁,http://em.21dtv.com/songs/60043617.mkv +谢言-忘了我是谁,http://em.21dtv.com/songs/60043616.mkv +王海玲-忘了我是谁,http://em.21dtv.com/songs/60043615.mkv +黄耀明-忘了我是谁(演唱会),http://em.21dtv.com/songs/60043614.mkv +尹光-王老五生女(演唱会),http://em.21dtv.com/songs/60061645.mkv +陈庆聪-为了我哭过,http://em.21dtv.com/songs/60069910.mkv +张柏芝-忘了忘不了,http://em.21dtv.com/songs/60043608.mkv +许志安-忘了忘不了,http://em.21dtv.com/songs/60043607.mkv +张柏芝-忘了忘不了(演唱会),http://em.21dtv.com/songs/60043606.mkv +佚名-忘了说再见,http://em.21dtv.com/songs/60043601.mkv +童唱-望庐山瀑布,http://em.21dtv.com/songs/60043683.mkv +蔡依林-为了什么我,http://em.21dtv.com/songs/60043920.mkv +刘锡明-无论是错对,http://em.21dtv.com/songs/60047229.mkv +原子霏-忘了说爱我,http://em.21dtv.com/songs/60130156.mkv +戚薇-忘了去记得,http://em.21dtv.com/songs/60120574.mkv +徐怀钰-五六七八 going,http://em.21dtv.com/songs/60047650.mkv +迪克牛仔-无力去爱谁(演唱会),http://em.21dtv.com/songs/60047199.mkv +韩超-忘了你以后,http://em.21dtv.com/songs/60043597.mkv +管维嘉-忘了你太难,http://em.21dtv.com/songs/60043593.mkv +孟杨-忘了你是谁,http://em.21dtv.com/songs/60101625.mkv +梦然-忘了你是谁,http://em.21dtv.com/songs/60078051.mkv +许志安-忘了你是谁,http://em.21dtv.com/songs/60043592.mkv +后来者-为了你魂飞,http://em.21dtv.com/songs/60133457.mkv +童立安-忘了你的美,http://em.21dtv.com/songs/60126008.mkv +晓依-忘了你的脸,http://em.21dtv.com/songs/60098416.mkv +于浩宸-网络陌生人,http://em.21dtv.com/songs/60067509.mkv +W.K-未来还有梦,http://em.21dtv.com/songs/60096160.mkv +葛小虎-未来还有梦,http://em.21dtv.com/songs/60085854.mkv +罗力威-未来还未来,http://em.21dtv.com/songs/60113937.mkv +周传雄-忘了坏情人,http://em.21dtv.com/songs/60043588.mkv +白冰冰-我咧憨八摆,http://em.21dtv.com/songs/60045727.mkv +石小琳-忘了该忘的,http://em.21dtv.com/songs/60119846.mkv +石小琳-忘了该忘的,http://em.21dtv.com/songs/60105277.mkv +枫桥-乌伦古情书,http://em.21dtv.com/songs/60109464.mkv +李西-未来更精彩,http://em.21dtv.com/songs/60044256.mkv +陈彦妃-微凉的指尖(HD),http://em.21dtv.com/songs/10012822.mkv +陈彦妃-微凉的指尖,http://em.21dtv.com/songs/60097688.mkv +韩宝仪-无聊的游戏,http://em.21dtv.com/songs/60047215.mkv +BEYOND-无泪的遗憾,http://em.21dtv.com/songs/60047197.mkv +黄家强+SOLER-无泪的遗憾(演唱会),http://em.21dtv.com/songs/60047196.mkv +乌兰托娅-我来到西藏,http://em.21dtv.com/songs/60071251.mkv +许艺娜-雾里的小花,http://em.21dtv.com/songs/60080792.mkv +洪百慧-无聊的晚暝,http://em.21dtv.com/songs/60047213.mkv +萧亚轩-未来的未来,http://em.21dtv.com/songs/60044253.mkv +满文军-未来的未来,http://em.21dtv.com/songs/60044252.mkv +Rill-无聊的生活,http://em.21dtv.com/songs/60093940.mkv +罗百吉-无聊的时候,http://em.21dtv.com/songs/60047212.mkv +佚名-无聊的人生,http://em.21dtv.com/songs/60047211.mkv +高山峰-无聊的人生,http://em.21dtv.com/songs/60047210.mkv +吴念真-无聊的人生(演唱会),http://em.21dtv.com/songs/60047209.mkv +佚名-无聊的男性,http://em.21dtv.com/songs/60047208.mkv +佚名-我俩多美好,http://em.21dtv.com/songs/60045723.mkv +余天-我俩多美好(无原唱),http://em.21dtv.com/songs/60045722.mkv +小刀乐团-无聊的快乐,http://em.21dtv.com/songs/60047207.mkv +周传雄-微凉的记忆,http://em.21dtv.com/songs/60043765.mkv +黄舒骏-未来的街头(无原唱),http://em.21dtv.com/songs/60044250.mkv +新秀团队-挽留的借口,http://em.21dtv.com/songs/60083949.mkv +沈芳如-无聊的借口,http://em.21dtv.com/songs/60047206.mkv +TFBOYS-未来的进击,http://em.21dtv.com/songs/60123544.mkv +胡东清-蔚蓝的故乡,http://em.21dtv.com/songs/60067532.mkv +胡东清-蔚蓝的故乡(舞曲版),http://em.21dtv.com/songs/60067531.mkv +刘若英-未来的关系,http://em.21dtv.com/songs/60044249.mkv +佚名-我俩的故事,http://em.21dtv.com/songs/60045721.mkv +张圳-无聊的告白,http://em.21dtv.com/songs/60047204.mkv +姜般若-未来的祷告,http://em.21dtv.com/songs/60130237.mkv +朱海君-望露的春花,http://em.21dtv.com/songs/60125681.mkv +朱海君-望露的春花,http://em.21dtv.com/songs/60124048.mkv +红蔷薇-我俩的爱情,http://em.21dtv.com/songs/60066408.mkv +曹雷-我俩的爱情,http://em.21dtv.com/songs/60066407.mkv +王瑞霞-无聊的爱情,http://em.21dtv.com/songs/60047202.mkv +四贱客-无聊的暗暝(无原唱),http://em.21dtv.com/songs/60095497.mkv +HIROCK乐团-无聊的暗暝(无原唱),http://em.21dtv.com/songs/60047203.mkv +草原兄妹-乌兰察布风,http://em.21dtv.com/songs/60123110.mkv +红蔷薇-网络不了情,http://em.21dtv.com/songs/60117117.mkv +燕羽-我离不开你,http://em.21dtv.com/songs/60078278.mkv +CALVIN HARRIS+EXAMPL-well be coming back,http://em.21dtv.com/songs/60070415.mkv +田芯儿-为恋爱充电,http://em.21dtv.com/songs/60061657.mkv +徐婕儿-我可以忍受,http://em.21dtv.com/songs/60045689.mkv +俞思远-我可以离开,http://em.21dtv.com/songs/60089131.mkv +樱花姊妹-无可能的梦,http://em.21dtv.com/songs/60068767.mkv +樱花姐妹-无可能的梦(无原唱),http://em.21dtv.com/songs/60047183.mkv +李宏伟-我看见了你,http://em.21dtv.com/songs/60078275.mkv +李波-我就在这里,http://em.21dtv.com/songs/60078274.mkv +陈柔希-我就在这里,http://em.21dtv.com/songs/60078273.mkv +宁可-我家在中华,http://em.21dtv.com/songs/60078267.mkv +那仁格日勒-我家在中国,http://em.21dtv.com/songs/60090247.mkv +祖海-我家在中国,http://em.21dtv.com/songs/60045636.mkv +豫剧-我家住山东,http://em.21dtv.com/songs/60134572.mkv +豫剧-我家住山东,http://em.21dtv.com/songs/60089483.mkv +姜育恒-我家在哪里,http://em.21dtv.com/songs/60087638.mkv +李国祥-我家在那里(演唱会),http://em.21dtv.com/songs/60084053.mkv +张德兰-我家在那里,http://em.21dtv.com/songs/60078266.mkv +刘家昌-我家在那里,http://em.21dtv.com/songs/60045635.mkv +李茂山-我家在那里,http://em.21dtv.com/songs/60045634.mkv +甄妮-我家在那里(演唱会),http://em.21dtv.com/songs/60045633.mkv +刘家昌+甄妮-我家在那里(演唱会),http://em.21dtv.com/songs/60045632.mkv +姜育恒-我家在那里(演唱会),http://em.21dtv.com/songs/60045631.mkv +钟彩媚-我家在河源,http://em.21dtv.com/songs/60129685.mkv +林翠萍-望君早回航(无原唱),http://em.21dtv.com/songs/60043678.mkv +詹雅雯-无价值的爱,http://em.21dtv.com/songs/60079860.mkv +风萧萧-我家在崇阳,http://em.21dtv.com/songs/60129792.mkv +王梓轩-玩具也流泪,http://em.21dtv.com/songs/60061643.mkv +佚名-为军营喝彩,http://em.21dtv.com/songs/60043895.mkv +蒋修蓉-忘记一个人(无原唱),http://em.21dtv.com/songs/60043566.mkv +佚名-忘记一个你,http://em.21dtv.com/songs/60043565.mkv +黄耀明-忘尽心中情(演唱会),http://em.21dtv.com/songs/60065006.mkv +叶振棠-忘尽心中情,http://em.21dtv.com/songs/60043571.mkv +郑少秋-忘尽心中情(演唱会),http://em.21dtv.com/songs/60043570.mkv +叶丽仪-忘尽心中情(演唱会),http://em.21dtv.com/songs/60043569.mkv +谢有才-我叫谢有才,http://em.21dtv.com/songs/60063180.mkv +小沈阳-我叫小沈阳(演唱会),http://em.21dtv.com/songs/60045641.mkv +晓月-无尽相思泪,http://em.21dtv.com/songs/60065140.mkv +燕妮-我就喜欢你,http://em.21dtv.com/songs/60045666.mkv +代理仁-我叫魏淑芬,http://em.21dtv.com/songs/60131152.mkv +柴强-武家湾秋韵,http://em.21dtv.com/songs/60117859.mkv +姜育恒+李寿全-握紧我的手,http://em.21dtv.com/songs/60116691.mkv +杨坤-握紧我的手,http://em.21dtv.com/songs/60047024.mkv +吴丹妮-忘记忘不记,http://em.21dtv.com/songs/60135008.mkv +达明一派-忘记他是她(演唱会),http://em.21dtv.com/songs/60043562.mkv +庄振凯-我甲天借胆,http://em.21dtv.com/songs/60085904.mkv +林萍+中国力量-为今天喝彩(演唱会),http://em.21dtv.com/songs/60043893.mkv +黄贯中-我就是这样的,http://em.21dtv.com/songs/60078270.mkv +范玮琪+胡维纳-我就是这样,http://em.21dtv.com/songs/60095079.mkv +刘若英-我就是这样,http://em.21dtv.com/songs/60090726.mkv +希亚-我就是这样,http://em.21dtv.com/songs/60045663.mkv +刘力扬+TANK-我就是这样,http://em.21dtv.com/songs/60045662.mkv +范玮琪-我就是这样,http://em.21dtv.com/songs/60045661.mkv +雷琛瑜-我就是主角,http://em.21dtv.com/songs/60080611.mkv +刘和刚-我就是中国,http://em.21dtv.com/songs/60108332.mkv +慧子-我就是要爱,http://em.21dtv.com/songs/60125593.mkv +强歌-我就是小强,http://em.21dtv.com/songs/60117746.mkv +杨子锋-我就是想你,http://em.21dtv.com/songs/60101390.mkv +大通-我就是土豪,http://em.21dtv.com/songs/60128942.mkv +吉吉-我就是天才,http://em.21dtv.com/songs/60065079.mkv +阚杰-我就是傻瓜,http://em.21dtv.com/songs/60045652.mkv +曹越-我就是炮哥,http://em.21dtv.com/songs/60111946.mkv +大张雨-我就是大哥,http://em.21dtv.com/songs/60106742.mkv +黎瑞恩-无尽是大地,http://em.21dtv.com/songs/60090364.mkv +萧敬腾-我就是爱你,http://em.21dtv.com/songs/60106242.mkv +萧敬腾-我就是爱你,http://em.21dtv.com/songs/60100437.mkv +小宝-我就是爱你,http://em.21dtv.com/songs/60087714.mkv +史啸吟-我就是爱你,http://em.21dtv.com/songs/60045648.mkv +洪玮-我就是爱你(无原唱),http://em.21dtv.com/songs/60045647.mkv +音萌萌-忘记容易吗,http://em.21dtv.com/songs/60133091.mkv +路华-为军人干杯,http://em.21dtv.com/songs/60106315.mkv +邓丽君-我敬你一杯,http://em.21dtv.com/songs/60045646.mkv +阿里郎-忘记你太难(演唱会),http://em.21dtv.com/songs/60043546.mkv +孙耀威-我教你分手,http://em.21dtv.com/songs/60045642.mkv +刘德华-握紧你的手,http://em.21dtv.com/songs/60047022.mkv +杨丝怡-忘记你的脸,http://em.21dtv.com/songs/60043543.mkv +萧宝钟-忘记你的脸,http://em.21dtv.com/songs/60043542.mkv +范萱蔚+高皓正-为寂寞拍拖,http://em.21dtv.com/songs/60043892.mkv +张崇基+张崇德-我渐明白你,http://em.21dtv.com/songs/60092598.mkv +姚志强+曾慧-望江楼饯别(戏曲),http://em.21dtv.com/songs/60092498.mkv +苏仨-我叫纠结伦,http://em.21dtv.com/songs/60072538.mkv +林玉英-无结局的爱,http://em.21dtv.com/songs/60047156.mkv +爱乐团-我即将成名,http://em.21dtv.com/songs/60045622.mkv +谢晓燕+高宇+汪海娟+黄罡-我家好有福,http://em.21dtv.com/songs/60108009.mkv +航宇-我叫呼韩邪,http://em.21dtv.com/songs/60117992.mkv +干露露-我叫干露露,http://em.21dtv.com/songs/60096261.mkv +张学友-忘记的长廊,http://em.21dtv.com/songs/60091067.mkv +TWINS-我决定走了,http://em.21dtv.com/songs/60045673.mkv +童唱-玩具的音乐,http://em.21dtv.com/songs/60043166.mkv +许志安-无尽的烟火,http://em.21dtv.com/songs/60100961.mkv +林俊杰-无尽的思念,http://em.21dtv.com/songs/60047166.mkv +郑欣宜-忘记的理由,http://em.21dtv.com/songs/60083958.mkv +兰天-我家的花儿,http://em.21dtv.com/songs/60071250.mkv +枫舞-无尽的挂牵,http://em.21dtv.com/songs/60113727.mkv +殷正洋-无尽的港口,http://em.21dtv.com/songs/60047164.mkv +王振涵-我叫大长脸,http://em.21dtv.com/songs/60117035.mkv +唐美华-无尽的别离,http://em.21dtv.com/songs/60107615.mkv +任飞扬-我叫草泥马,http://em.21dtv.com/songs/60118329.mkv +雷安娜+林利-忘记不忘记(演唱会),http://em.21dtv.com/songs/60043528.mkv +杨天宁-我绝不会输,http://em.21dtv.com/songs/60061688.mkv +张牧阅-忘记爱过你,http://em.21dtv.com/songs/60043524.mkv +BRUNO MARS-when i was your man,http://em.21dtv.com/songs/60082395.mkv +JANET JACKSON-when i think of you,http://em.21dtv.com/songs/60006246.mkv +Grizzly-Withu,http://em.21dtv.com/songs/60109094.mkv +GRETCHEN WILSON-when i think about cheatin,http://em.21dtv.com/songs/60006245.mkv +BAD ENGLISH-when i see you smile(无原唱),http://em.21dtv.com/songs/60006244.mkv +TRASH-when i sing the song,http://em.21dtv.com/songs/60071687.mkv +Madilyn Bailey-Wiser,http://em.21dtv.com/songs/60131077.mkv +Delta Goodrem-Wings,http://em.21dtv.com/songs/60119125.mkv +Hair Short-WINGS,http://em.21dtv.com/songs/60098999.mkv +佚名-when i looked at him(无原唱),http://em.21dtv.com/songs/60006241.mkv +FOXY-why is it like this,http://em.21dtv.com/songs/60006325.mkv +FAITH HILL-whats in it for me,http://em.21dtv.com/songs/60006221.mkv +张芯瑜-when i have a dream,http://em.21dtv.com/songs/60006240.mkv +张菲-when i fall in love,http://em.21dtv.com/songs/60006239.mkv +CELINE DION+PEABO BRYSON-when i fall in love,http://em.21dtv.com/songs/60006238.mkv +CELINE DION+CLIVE GRIFFIN-when i fall in love,http://em.21dtv.com/songs/60006237.mkv +CARPENTERS-when i fall in love,http://em.21dtv.com/songs/60006236.mkv +尹钟信+ZICO-Wi Fi,http://em.21dtv.com/songs/60133606.mkv +NS 允智+MC梦-Wifey,http://em.21dtv.com/songs/60109860.mkv +佚名-whenever i call you friend,http://em.21dtv.com/songs/60006276.mkv +LEIGHTON MEESTER-words i couldnt say(演唱会),http://em.21dtv.com/songs/60074161.mkv +SE7EN-when i cant sing,http://em.21dtv.com/songs/60066755.mkv +SHARPEY+RYAN-what ive been looking for,http://em.21dtv.com/songs/60006203.mkv +张芸京-我还在找你,http://em.21dtv.com/songs/60126899.mkv +罗中旭-我会在这里,http://em.21dtv.com/songs/60091828.mkv +BEYOND-无悔这一生,http://em.21dtv.com/songs/60047143.mkv +陈芳语-我会再想你,http://em.21dtv.com/songs/60108138.mkv +陈芳语-我会再想你,http://em.21dtv.com/songs/60097567.mkv +颖宝儿+宋马超-我还在期待,http://em.21dtv.com/songs/60098931.mkv +阿吉仔-为何这款命(无原唱),http://em.21dtv.com/songs/60043891.mkv +姚贝娜-我会再回来,http://em.21dtv.com/songs/60082034.mkv +王江发-我会祝福你,http://em.21dtv.com/songs/60018603.mkv +林志颖-我还在等你,http://em.21dtv.com/songs/60045495.mkv +YELLOW-唔红有原因,http://em.21dtv.com/songs/60134825.mkv +齐萧-为何要伤害,http://em.21dtv.com/songs/60068729.mkv +蔡秋凤-为何袂觉醒,http://em.21dtv.com/songs/60067523.mkv +佚名-为何心糟糟,http://em.21dtv.com/songs/60043888.mkv +光前-我很想知道,http://em.21dtv.com/songs/60109161.mkv +何韵诗-我会选择c,http://em.21dtv.com/songs/60045616.mkv +杨千桦+梁朝伟-我很需要你,http://em.21dtv.com/songs/60092827.mkv +梁朝伟+杨千嬅-我很需要你,http://em.21dtv.com/songs/60091522.mkv +徐莹-我还想要爱,http://em.21dtv.com/songs/60069957.mkv +黄玠-我很想念你,http://em.21dtv.com/songs/60124750.mkv +莫莫-我好想念你,http://em.21dtv.com/songs/60117169.mkv +毕书尽-我还想念你,http://em.21dtv.com/songs/60107860.mkv +毕书尽-我还想念你,http://em.21dtv.com/songs/60107012.mkv +张震岳-我会想念你,http://em.21dtv.com/songs/60045614.mkv +肖宝-我好喜欢你,http://em.21dtv.com/songs/60112893.mkv +宋孟君-我好喜欢你,http://em.21dtv.com/songs/60099954.mkv +彩月团-我很喜欢你,http://em.21dtv.com/songs/60045573.mkv +六哲-我好喜欢你,http://em.21dtv.com/songs/60045505.mkv +TWINS-我很想爱他(演唱会),http://em.21dtv.com/songs/60065075.mkv +林俊杰-我很想爱他,http://em.21dtv.com/songs/60045575.mkv +TWINS-我很想爱他,http://em.21dtv.com/songs/60045574.mkv +容祖儿-为何未去睡,http://em.21dtv.com/songs/60043887.mkv +陈宝欣-我会忘了你,http://em.21dtv.com/songs/60106391.mkv +陈宝欣-我会忘了你,http://em.21dtv.com/songs/60072536.mkv +刘德华-我恨我痴心(1)(HD),http://em.21dtv.com/songs/10012649.mkv +刘德华-我恨我痴心(HD),http://em.21dtv.com/songs/10012648.mkv +吴遥-我恨我痴心,http://em.21dtv.com/songs/60105701.mkv +家明-我恨我痴心(演唱会),http://em.21dtv.com/songs/60078255.mkv +李丽霞-我恨我痴心(演唱会),http://em.21dtv.com/songs/60068768.mkv +刘德华-我恨我痴心,http://em.21dtv.com/songs/60045582.mkv +刘德华-我恨我痴心(演唱会),http://em.21dtv.com/songs/60045581.mkv +孙楠-我和我不同,http://em.21dtv.com/songs/60098234.mkv +徐紫淇-我恨我爱你,http://em.21dtv.com/songs/60126916.mkv +徐紫淇-我恨我爱你,http://em.21dtv.com/songs/60125573.mkv +基地小虎-我恨我爱你,http://em.21dtv.com/songs/60099901.mkv +路童-我恨我爱你,http://em.21dtv.com/songs/60078254.mkv +蔡依林-我恨我爱你(演唱会),http://em.21dtv.com/songs/60062242.mkv +张惠妹-我恨我爱你,http://em.21dtv.com/songs/60045580.mkv +佚名-维护团结歌,http://em.21dtv.com/songs/60044196.mkv +丁当-我还是一样,http://em.21dtv.com/songs/60068770.mkv +周华健-我还是一样,http://em.21dtv.com/songs/60045485.mkv +关楚耀-我还是什么,http://em.21dtv.com/songs/60066405.mkv +古巨基-我还是你的,http://em.21dtv.com/songs/60045479.mkv +赵薇-我和上官燕,http://em.21dtv.com/songs/60045538.mkv +齐霖-我还是单身,http://em.21dtv.com/songs/60124766.mkv +艾菲-我还是不懂,http://em.21dtv.com/songs/60080893.mkv +A-LIN-我还是不懂,http://em.21dtv.com/songs/60045476.mkv +郭勇-我还是爱你,http://em.21dtv.com/songs/60045474.mkv +陈慧娴-为何仍是你,http://em.21dtv.com/songs/60043883.mkv +猪头皮-外好汝甘知,http://em.21dtv.com/songs/60043069.mkv +佚名-外好汝甘知,http://em.21dtv.com/songs/60043068.mkv +袁小迪-为何欺骗我,http://em.21dtv.com/songs/60043881.mkv +林胜天-为何你要走,http://em.21dtv.com/songs/60078074.mkv +刘欢+莎拉布莱曼-我和你星文,http://em.21dtv.com/songs/60089169.mkv +曹沁芳-我和你同在,http://em.21dtv.com/songs/60065073.mkv +甲子蕙-挽回你的心,http://em.21dtv.com/songs/60064997.mkv +卫兰-我怀念的你,http://em.21dtv.com/songs/60067566.mkv +F4+周渝民-为何你不来,http://em.21dtv.com/songs/60090397.mkv +张冬玲-我恨你爱她,http://em.21dtv.com/songs/60105015.mkv +许志安-我还能爱谁,http://em.21dtv.com/songs/60045467.mkv +网络歌手-我和MM的故事,http://em.21dtv.com/songs/60091823.mkv +佚名-为何梦见他,http://em.21dtv.com/songs/60043871.mkv +金智娟-为何梦见他,http://em.21dtv.com/songs/60043870.mkv +丽菲-我还没放弃,http://em.21dtv.com/songs/60103057.mkv +黄乙玲-为何来相瞒(无原唱),http://em.21dtv.com/songs/60043868.mkv +马蕊-我和林妹妹,http://em.21dtv.com/songs/60045523.mkv +杨紫+霍建华-我会记得你,http://em.21dtv.com/songs/60099337.mkv +萧亚轩-我还记得你,http://em.21dtv.com/songs/60045464.mkv +CNBLUE-WHITE,http://em.21dtv.com/songs/60110753.mkv +言承旭-我会很想你,http://em.21dtv.com/songs/60045607.mkv +李砚琴-我会很快乐,http://em.21dtv.com/songs/60066406.mkv +明道-我会好好过,http://em.21dtv.com/songs/60097568.mkv +李玖哲-我会好好过,http://em.21dtv.com/songs/60045604.mkv +蔡若妍-我会好好的,http://em.21dtv.com/songs/60130731.mkv +印子月-我会好好的,http://em.21dtv.com/songs/60119331.mkv +伍佰-我会好好的,http://em.21dtv.com/songs/60078263.mkv +王心凌-我会好好的,http://em.21dtv.com/songs/60045603.mkv +佚名-无后悔的爱,http://em.21dtv.com/songs/60047128.mkv +星弟-我会很诚实,http://em.21dtv.com/songs/60045606.mkv +言承旭-我会很爱你,http://em.21dtv.com/songs/60045605.mkv +陈慧琳-我会挂念你,http://em.21dtv.com/songs/60045601.mkv +陈慧琳-我会挂念你(演唱会),http://em.21dtv.com/songs/60045600.mkv +PIXIE LOTT-When You Were My Man,http://em.21dtv.com/songs/60100747.mkv +李志邦-我会当真的,http://em.21dtv.com/songs/60122855.mkv +戴玉强-无悔的选择,http://em.21dtv.com/songs/60108528.mkv +刘德华-为何带他走,http://em.21dtv.com/songs/60043864.mkv +赵维琦-无悔的岁月,http://em.21dtv.com/songs/60120980.mkv +朱海君-无痕的情字,http://em.21dtv.com/songs/60132517.mkv +小山-无悔的诺言,http://em.21dtv.com/songs/60047138.mkv +江蕙-未婚的女人,http://em.21dtv.com/songs/60095740.mkv +晨熙-玩火的女人,http://em.21dtv.com/songs/60085815.mkv +奥迪-玩火的女人,http://em.21dtv.com/songs/60072477.mkv +佚名-午后的雷雨,http://em.21dtv.com/songs/60047695.mkv +刘奇梅-为华诞而歌,http://em.21dtv.com/songs/60062671.mkv +谢宜君-我会等待你,http://em.21dtv.com/songs/60085902.mkv +苏永康-无悔的曾经,http://em.21dtv.com/songs/60091941.mkv +李玟-为何缠着我,http://em.21dtv.com/songs/60043863.mkv +许志安+陈慧琳+雷颂德-唔好畀我停,http://em.21dtv.com/songs/60047618.mkv +伊能静-为何不是我,http://em.21dtv.com/songs/60083973.mkv +罗志强-我还爱着她,http://em.21dtv.com/songs/60068769.mkv +零点乐队-我还爱着你,http://em.21dtv.com/songs/60127576.mkv +雷婷-我还爱着你,http://em.21dtv.com/songs/60110661.mkv +MIC男团-我还爱着你,http://em.21dtv.com/songs/60080407.mkv +冷漠-我还爱着你,http://em.21dtv.com/songs/60045461.mkv +余天-为何爱着你,http://em.21dtv.com/songs/60043860.mkv +蔡小虎-为何爱着你,http://em.21dtv.com/songs/60043859.mkv +吴松发-无悔爱一场,http://em.21dtv.com/songs/60094435.mkv +刘德华-为何爱上你,http://em.21dtv.com/songs/60090687.mkv +林玉英-我该怎么做,http://em.21dtv.com/songs/60104244.mkv +张洪波-我该怎么做,http://em.21dtv.com/songs/60045438.mkv +刘德华-我该怎么做,http://em.21dtv.com/songs/60045437.mkv +欢子-我该怎么做,http://em.21dtv.com/songs/60045436.mkv +高胜美-我该怎么做,http://em.21dtv.com/songs/60045435.mkv +冷漠-我该怎么办,http://em.21dtv.com/songs/60081650.mkv +中国娃娃-我该怎么办,http://em.21dtv.com/songs/60045434.mkv +林淑娟-我该怎么办,http://em.21dtv.com/songs/60045433.mkv +唐磊-我该走了吗,http://em.21dtv.com/songs/60045439.mkv +余佳伦-网购小宇宙,http://em.21dtv.com/songs/60078031.mkv +小刚-为过去喝彩,http://em.21dtv.com/songs/60090980.mkv +刘德华-我给你快乐,http://em.21dtv.com/songs/60090698.mkv +天意-我给你的伤,http://em.21dtv.com/songs/60078244.mkv +陈义正-我给你的爱,http://em.21dtv.com/songs/60128515.mkv +红正-我给你的爱,http://em.21dtv.com/songs/60102616.mkv +曹龙-我给你的爱,http://em.21dtv.com/songs/60080440.mkv +零点乐队-玩够了没有(演唱会),http://em.21dtv.com/songs/60043162.mkv +GLORIA ESTEFAN-words get in the way,http://em.21dtv.com/songs/60006408.mkv +MAROON 5-wont go home without you,http://em.21dtv.com/songs/60006402.mkv +苏玮-无果花儿开,http://em.21dtv.com/songs/60108841.mkv +谢安琪-我歌故我在,http://em.21dtv.com/songs/60045450.mkv +谢安琪-我歌故我在(HD演唱会),http://em.21dtv.com/songs/60045449.mkv +童安格-晚归的丈夫,http://em.21dtv.com/songs/60043232.mkv +王杰-我感到疲倦,http://em.21dtv.com/songs/60045446.mkv +陶晶莹-晚归的男人,http://em.21dtv.com/songs/60043231.mkv +庄心妍-我过的很好,http://em.21dtv.com/songs/60118545.mkv +陈明-我过得很好,http://em.21dtv.com/songs/60045459.mkv +周慧敏-无根的感觉,http://em.21dtv.com/songs/60092478.mkv +佚名-无根的感觉,http://em.21dtv.com/songs/60047122.mkv +叶复台-舞棍大帝国,http://em.21dtv.com/songs/60067610.mkv +王识贤-袜搁爱别人,http://em.21dtv.com/songs/60043063.mkv +林子娟-五分钟的爱,http://em.21dtv.com/songs/60047635.mkv +潘晓峰-无法忘记你,http://em.21dtv.com/songs/60047109.mkv +旭日阳刚-无法忘记的,http://em.21dtv.com/songs/60072581.mkv +金玲-枉费我爱你(无原唱),http://em.21dtv.com/songs/60043403.mkv +许志安+苏永康-我发誓以后(演唱会),http://em.21dtv.com/songs/60045419.mkv +苏永康-我发誓以后(演唱会),http://em.21dtv.com/songs/60045418.mkv +贾晓晨-望夫石+难忘,http://em.21dtv.com/songs/60043666.mkv +沈昌珉-无法说爱你,http://em.21dtv.com/songs/60105212.mkv +黄一飞-无烦恼的人,http://em.21dtv.com/songs/60047116.mkv +维塔斯-万福玛丽亚(演唱会),http://em.21dtv.com/songs/60078018.mkv +黄耀明+关淑怡-万福玛利亚,http://em.21dtv.com/songs/60043268.mkv +黄耀明-万福玛利亚(演唱会),http://em.21dtv.com/songs/60043267.mkv +林俊杰+张靓颖-我飞故我在,http://em.21dtv.com/songs/60045422.mkv +达明一派-无风的秋季(演唱会),http://em.21dtv.com/songs/60047118.mkv +小青岛-旺夫的女人,http://em.21dtv.com/songs/60106797.mkv +WHY NOT-无法度按捺(无原唱),http://em.21dtv.com/songs/60047092.mkv +陈浩德-万恶淫为首(演唱会),http://em.21dtv.com/songs/60078017.mkv +邓志驹+蒋文端-万恶淫为首,http://em.21dtv.com/songs/60043263.mkv +尹光-万恶淫为首(演唱会),http://em.21dtv.com/songs/60043262.mkv +大AL-万恶淫为首(演唱会),http://em.21dtv.com/songs/60043261.mkv +杨斌-我唔识拍拖,http://em.21dtv.com/songs/60092846.mkv +赵晓波-王二姐思夫,http://em.21dtv.com/songs/60097491.mkv +郭颂-王二姐思夫,http://em.21dtv.com/songs/60043351.mkv +田震-玩儿个痛快,http://em.21dtv.com/songs/60083945.mkv +Ravi+郑容和-我独自在家,http://em.21dtv.com/songs/60131100.mkv +吴淑敏-我的真心话,http://em.21dtv.com/songs/60045349.mkv +江语晨-我的主题曲,http://em.21dtv.com/songs/60045357.mkv +王宏健-我的正能量,http://em.21dtv.com/songs/60107063.mkv +OK先生-我的正能量,http://em.21dtv.com/songs/60093936.mkv +雷佳-我的张家港,http://em.21dtv.com/songs/60085896.mkv +张明敏-我的中国心,http://em.21dtv.com/songs/60045354.mkv +张明敏-我的中国心(演唱会),http://em.21dtv.com/songs/60045353.mkv +张明敏-我的中国梦,http://em.21dtv.com/songs/60129086.mkv +张明敏-我的中国梦,http://em.21dtv.com/songs/60110198.mkv +雷艳-我的中国梦,http://em.21dtv.com/songs/60107345.mkv +廖芊芊-我的中国梦,http://em.21dtv.com/songs/60105011.mkv +姬长乐-伟大中国梦,http://em.21dtv.com/songs/60104916.mkv +马丽-我的中国梦,http://em.21dtv.com/songs/60100646.mkv +张明敏-我的中国梦,http://em.21dtv.com/songs/60096275.mkv +王宏健-我的中国梦,http://em.21dtv.com/songs/60094223.mkv +刘子琪-我的中国节,http://em.21dtv.com/songs/60132236.mkv +张佳彤-我的猪哥哥,http://em.21dtv.com/songs/60135192.mkv +林正豪-我的主打歌,http://em.21dtv.com/songs/60045356.mkv +刘容嘉-我的自卑感,http://em.21dtv.com/songs/60110023.mkv +许景淳-我的圆舞曲,http://em.21dtv.com/songs/60092062.mkv +邬祯琳-why do you say goodbye,http://em.21dtv.com/songs/60082398.mkv +邢菲-我的一年级,http://em.21dtv.com/songs/60118955.mkv +崔萍-我的一颗心,http://em.21dtv.com/songs/60045332.mkv +陈随意-我赌一口气,http://em.21dtv.com/songs/60067563.mkv +佚名-where did your heart go,http://em.21dtv.com/songs/60006284.mkv +那英-我的心中星,http://em.21dtv.com/songs/60045307.mkv +办桌二人组-我的心置痛,http://em.21dtv.com/songs/60078228.mkv +周旋-我的心在飞,http://em.21dtv.com/songs/60110086.mkv +董文华-我的小太阳,http://em.21dtv.com/songs/60045258.mkv +周传雄-我的心太乱,http://em.21dtv.com/songs/60045295.mkv +周传雄-我的心太乱(演唱会),http://em.21dtv.com/songs/60045294.mkv +刘凤屏-我的心太痴,http://em.21dtv.com/songs/60045293.mkv +陈瑞-吻到心伤透,http://em.21dtv.com/songs/60126397.mkv +欧阳菲菲-吻到心伤透,http://em.21dtv.com/songs/60044413.mkv +高佳-我的心上人,http://em.21dtv.com/songs/60108161.mkv +谭小静-我的心上人,http://em.21dtv.com/songs/60084041.mkv +佚名-我的心上人,http://em.21dtv.com/songs/60045287.mkv +成林江措-我的心上人,http://em.21dtv.com/songs/60045286.mkv +杨萍-我的相思河,http://em.21dtv.com/songs/60121810.mkv +贺东-我的小时候,http://em.21dtv.com/songs/60108899.mkv +朱俐静-我的小生活,http://em.21dtv.com/songs/60106916.mkv +豆子民-我的小情郎,http://em.21dtv.com/songs/60104441.mkv +秧瑞鸿-我的小情歌,http://em.21dtv.com/songs/60078223.mkv +陈玉建-我的小女人,http://em.21dtv.com/songs/60113066.mkv +刘建军-我的小奴隶,http://em.21dtv.com/songs/60067559.mkv +蔡小虎+龙千玉-我的心内话,http://em.21dtv.com/songs/60101501.mkv +李娇-我的小梦想,http://em.21dtv.com/songs/60135356.mkv +贾璨璨-我的小面包,http://em.21dtv.com/songs/60101516.mkv +尼尕多杰-我的雪莲花,http://em.21dtv.com/songs/60045317.mkv +樱花姊妹-我的心块哭,http://em.21dtv.com/songs/60067215.mkv +童唱-我多想看看,http://em.21dtv.com/songs/60045416.mkv +樱花姐妹-我的心块哭(无原唱),http://em.21dtv.com/songs/60045269.mkv +MC马可-我的小可爱,http://em.21dtv.com/songs/60133245.mkv +贾真-我的心好痛,http://em.21dtv.com/songs/60068765.mkv +刘佳-我的心好冷,http://em.21dtv.com/songs/60068764.mkv +赵传-我的心好乱,http://em.21dtv.com/songs/60045266.mkv +SARA-我的心好冷,http://em.21dtv.com/songs/60045265.mkv +周艳泓-我的心好累,http://em.21dtv.com/songs/60045264.mkv +王磊-我的小伙伴,http://em.21dtv.com/songs/60120774.mkv +李猛-我的小姑娘,http://em.21dtv.com/songs/60045256.mkv +张玮伽-我的小乖乖,http://em.21dtv.com/songs/60072529.mkv +大眼炮+李魏西-为当下而活,http://em.21dtv.com/songs/60119389.mkv +T-CRASH-为当下而活,http://em.21dtv.com/songs/60083972.mkv +田一龙-我的小村庄,http://em.21dtv.com/songs/60061680.mkv +王泽奇-我的小村落,http://em.21dtv.com/songs/60100318.mkv +罗汉-我的小村落,http://em.21dtv.com/songs/60084040.mkv +许晓杰-我的小白杨,http://em.21dtv.com/songs/60097571.mkv +朱跃明-我的小白杨,http://em.21dtv.com/songs/60086919.mkv +沈丹丹+郑源-我的小宝气,http://em.21dtv.com/songs/60084039.mkv +紫琴-我的小宝贝,http://em.21dtv.com/songs/60085893.mkv +腾格尔-我的兴安岭,http://em.21dtv.com/songs/60088505.mkv +王诗安-我的我自己,http://em.21dtv.com/songs/60081702.mkv +吴欢-我的外婆家,http://em.21dtv.com/songs/60045240.mkv +郭采洁-我的未来式,http://em.21dtv.com/songs/60045249.mkv +潘玮柏-我对天空说,http://em.21dtv.com/songs/60045404.mkv +王博文-我的他加她,http://em.21dtv.com/songs/60112096.mkv +何嘉文-无敌铁金刚(无原唱),http://em.21dtv.com/songs/60089610.mkv +刺客合唱团-无敌铁金刚,http://em.21dtv.com/songs/60089175.mkv +刺客合唱团-无敌铁金钢,http://em.21dtv.com/songs/60047088.mkv +何嘉文-无敌铁金钢(无原唱),http://em.21dtv.com/songs/60047087.mkv +张玮-吻得太逼真,http://em.21dtv.com/songs/60114546.mkv +张敬轩-吻得太逼真,http://em.21dtv.com/songs/60044415.mkv +刘德华-未到伤心处,http://em.21dtv.com/songs/60044236.mkv +王冠-我的上上签,http://em.21dtv.com/songs/60125900.mkv +吴姵文-我的说明档,http://em.21dtv.com/songs/60045219.mkv +宋健+孙晓溪+王庥祺+赵鹏飞-我的青春我,http://em.21dtv.com/songs/60110152.mkv +余洋-我的朋友圈,http://em.21dtv.com/songs/60110842.mkv +李翊君-我的男主角,http://em.21dtv.com/songs/60045172.mkv +司文-我的那一夜,http://em.21dtv.com/songs/60045170.mkv +郑秀文-唯独你一个,http://em.21dtv.com/songs/60044171.mkv +北原山猫-我的女朋友(无原唱),http://em.21dtv.com/songs/60045173.mkv +萧亚轩-我的男朋友,http://em.21dtv.com/songs/60045171.mkv +李让-我等你回家,http://em.21dtv.com/songs/60100887.mkv +张清芳-我带你回家(演唱会),http://em.21dtv.com/songs/60044965.mkv +凌志辉-忘掉你的美,http://em.21dtv.com/songs/60110008.mkv +陈明顺+珈佳-我对你的爱,http://em.21dtv.com/songs/60071245.mkv +潘玮柏-我的麦克风,http://em.21dtv.com/songs/60045155.mkv +何洁-我多么怀念,http://em.21dtv.com/songs/60065070.mkv +苏勒亚其其格-我的蒙古舞,http://em.21dtv.com/songs/60108831.mkv +苏勒亚其其格-我的蒙古王(演唱会),http://em.21dtv.com/songs/60078213.mkv +乌兰图雅-我的蒙古马,http://em.21dtv.com/songs/60116513.mkv +乌兰图雅-我的蒙古马,http://em.21dtv.com/songs/60093955.mkv +古巨基-我对门匙说,http://em.21dtv.com/songs/60045398.mkv +古巨基-我对门匙说(演唱会),http://em.21dtv.com/songs/60045397.mkv +4 IN LOVE-忘掉了自己,http://em.21dtv.com/songs/60090369.mkv +黄鑫-我的另一半,http://em.21dtv.com/songs/60045150.mkv +曹越-我的老情人,http://em.21dtv.com/songs/60121737.mkv +杨五琴-我的老妈妈,http://em.21dtv.com/songs/60119685.mkv +天骏-我的老妈妈,http://em.21dtv.com/songs/60069943.mkv +顾凯-我的老领导,http://em.21dtv.com/songs/60108153.mkv +小曾-我的绿军装,http://em.21dtv.com/songs/60084030.mkv +尤步乾-我的老父亲,http://em.21dtv.com/songs/60101333.mkv +王子鸣-我的林黛玉,http://em.21dtv.com/songs/60084028.mkv +普诗淇-我的澜沧江,http://em.21dtv.com/songs/60094523.mkv +小曾-我的老班长,http://em.21dtv.com/songs/60045142.mkv +吴松发-我的老爸爸,http://em.21dtv.com/songs/60094434.mkv +陈晓东-无敌开心果,http://em.21dtv.com/songs/60100593.mkv +包青山-我的科尔沁,http://em.21dtv.com/songs/60110054.mkv +蒋荣宗-我的交响曲,http://em.21dtv.com/songs/60045118.mkv +莫艳琳-我的黑眼圈,http://em.21dtv.com/songs/60045095.mkv +马可谦-我的回忆里,http://em.21dtv.com/songs/60116385.mkv +小王子-我的好心情,http://em.21dtv.com/songs/60045091.mkv +苏有朋-我的好心情,http://em.21dtv.com/songs/60045090.mkv +胡杰夕+陈彩萍-我的好心情,http://em.21dtv.com/songs/60045089.mkv +苏有朋-我的好心情(演唱会),http://em.21dtv.com/songs/60045088.mkv +胡杰夕+陈彩萍-我的好心情(舞曲版),http://em.21dtv.com/songs/60045087.mkv +大乐团-我的好兄弟,http://em.21dtv.com/songs/60128939.mkv +赤龙-我的好兄弟,http://em.21dtv.com/songs/60120972.mkv +洪立-我的好兄弟,http://em.21dtv.com/songs/60118743.mkv +高斌-我的好兄弟,http://em.21dtv.com/songs/60113100.mkv +邓小龙-我的好兄弟,http://em.21dtv.com/songs/60099518.mkv +高进+小沈阳-我的好兄弟(演唱会),http://em.21dtv.com/songs/60045092.mkv +陈天红-我的好朋友,http://em.21dtv.com/songs/60069939.mkv +雷乐队-我的好朋友,http://em.21dtv.com/songs/60045086.mkv +刘沛洋-我的好妹妹,http://em.21dtv.com/songs/60127775.mkv +小琢+猎人-我的好妹妹,http://em.21dtv.com/songs/60118524.mkv +雪十郎-我的好妈妈,http://em.21dtv.com/songs/60117361.mkv +少儿歌曲-我的好妈妈,http://em.21dtv.com/songs/60102156.mkv +雷佳-我的好妈妈,http://em.21dtv.com/songs/60078206.mkv +韩哲-我的好老婆,http://em.21dtv.com/songs/60101703.mkv +张津涤-我的灰姑娘,http://em.21dtv.com/songs/60110202.mkv +大庆小芳-我的好姑娘,http://em.21dtv.com/songs/60078205.mkv +黎明-我的灰姑娘(演唱会),http://em.21dtv.com/songs/60045101.mkv +阿玻-我的好姑娘,http://em.21dtv.com/songs/60045085.mkv +悠悠-我的憨哥哥,http://em.21dtv.com/songs/60045084.mkv +刘大成-我的好父母,http://em.21dtv.com/songs/60097573.mkv +刘大成-我的好父母(演唱会),http://em.21dtv.com/songs/60085883.mkv +薛丹-我的哈尔滨,http://em.21dtv.com/songs/60069938.mkv +汤灿-我的哈尔滨,http://em.21dtv.com/songs/60062985.mkv +刘子毅+曹龙-我的好大哥,http://em.21dtv.com/songs/60068758.mkv +沈梦辰-我的滑板鞋,http://em.21dtv.com/songs/60111232.mkv +约瑟翰 庞麦郎-我的滑板鞋,http://em.21dtv.com/songs/60106183.mkv +约瑟翰+庞麦郎-我的滑板鞋,http://em.21dtv.com/songs/60105291.mkv +李宇春-我的黑白色,http://em.21dtv.com/songs/60045094.mkv +李宇春-我的黑白色(演唱会),http://em.21dtv.com/songs/60045093.mkv +梁汉文-我的歌声里,http://em.21dtv.com/songs/60106040.mkv +陈以桐-我的歌声里,http://em.21dtv.com/songs/60102868.mkv +张智霖-我的歌声里,http://em.21dtv.com/songs/60097574.mkv +丁炜-我的歌声里,http://em.21dtv.com/songs/60084022.mkv +黄小琥-我的歌声里,http://em.21dtv.com/songs/60081640.mkv +回音哥-我的歌声里,http://em.21dtv.com/songs/60078204.mkv +曲婉婷+李代沫-我的歌声里,http://em.21dtv.com/songs/60078203.mkv +李代沫-我的歌声里,http://em.21dtv.com/songs/60069936.mkv +曲婉婷-我的歌声里,http://em.21dtv.com/songs/60061676.mkv +鲁文嘉措-我的格桑花,http://em.21dtv.com/songs/60108171.mkv +佚名-袜冻搁回头,http://em.21dtv.com/songs/60043061.mkv +林强-勿当放未记,http://em.21dtv.com/songs/60047817.mkv +佚名-未当放未记,http://em.21dtv.com/songs/60044235.mkv +童彤-我的凡特西,http://em.21dtv.com/songs/60045060.mkv +刘俐婷-未冻放你走,http://em.21dtv.com/songs/60044237.mkv +刘俐婷-袜冻放你走,http://em.21dtv.com/songs/60043060.mkv +陈一农-我的方程式,http://em.21dtv.com/songs/60097572.mkv +陈百强-我得到什么,http://em.21dtv.com/songs/60044972.mkv +萧磊+冯晓荣-无敌大乞丐,http://em.21dtv.com/songs/60107170.mkv +王建杰-伟大的妈妈,http://em.21dtv.com/songs/60080276.mkv +李泰-屋顶的蓝天,http://em.21dtv.com/songs/60120635.mkv +叶熏-我的都教授,http://em.21dtv.com/songs/60107565.mkv +何瑶-伟大的肩膀,http://em.21dtv.com/songs/60110841.mkv +熊立红-我的大黄河,http://em.21dtv.com/songs/60078199.mkv +孟庭苇+南方二重唱+张或-我淡淡的蓝,http://em.21dtv.com/songs/60071235.mkv +乌兰图雅-我的大草原,http://em.21dtv.com/songs/60084021.mkv +德乾旺姆-舞动的草原,http://em.21dtv.com/songs/60047771.mkv +德德玛-我的大草原,http://em.21dtv.com/songs/60045055.mkv +吴雁泽-伟大的北京,http://em.21dtv.com/songs/60044201.mkv +谭英-我的当兵哥,http://em.21dtv.com/songs/60069935.mkv +彭伟家-我等春天来,http://em.21dtv.com/songs/60103295.mkv +宋孟君-我的初恋呀,http://em.21dtv.com/songs/60094469.mkv +吕宏伟-我的长白山,http://em.21dtv.com/songs/60116630.mkv +田馥甄-我对不起我,http://em.21dtv.com/songs/60067564.mkv +邓海-我的白马井,http://em.21dtv.com/songs/60122158.mkv +WHITNEYHOUSTON-where do broken hearts go,http://em.21dtv.com/songs/60006285.mkv +摩天人-我等不到你,http://em.21dtv.com/songs/60045374.mkv +黎明-我等不到你,http://em.21dtv.com/songs/60045373.mkv +苏玮-我的布达拉,http://em.21dtv.com/songs/60108839.mkv +凌飞-我的爱有罪,http://em.21dtv.com/songs/60045029.mkv +蓝雨-我的爱依然,http://em.21dtv.com/songs/60045026.mkv +蓝雨-我的爱依旧,http://em.21dtv.com/songs/60088591.mkv +薛之谦-我的阿西娜,http://em.21dtv.com/songs/60044994.mkv +王语心-我的爱是缘,http://em.21dtv.com/songs/60112122.mkv +熊七梅-我的爱碎了,http://em.21dtv.com/songs/60106086.mkv +黄妃-我的阿娜达,http://em.21dtv.com/songs/60044993.mkv +办桌二人组-我的阿娜达,http://em.21dtv.com/songs/60044992.mkv +张伯宏-我的爱丽丝,http://em.21dtv.com/songs/60045004.mkv +谢容儿-我的爱还在,http://em.21dtv.com/songs/60078188.mkv +兄弟联-我的爱很小,http://em.21dtv.com/songs/60090651.mkv +曹越-我的爱很累,http://em.21dtv.com/songs/60109403.mkv +严当当-我的爱给你,http://em.21dtv.com/songs/60110822.mkv +严当当-我的爱给你,http://em.21dtv.com/songs/60095255.mkv +傅钧+蔡谨全-袜当爱的人,http://em.21dtv.com/songs/60043059.mkv +陈亚兰+施文彬-袜当爱的人,http://em.21dtv.com/songs/60043058.mkv +LMF-屋村仔part 1(演唱会),http://em.21dtv.com/songs/60047052.mkv +蔡晓-我错在哪里,http://em.21dtv.com/songs/60069932.mkv +蔡健东-我错在哪里,http://em.21dtv.com/songs/60067551.mkv +蔡建东-我错在哪里,http://em.21dtv.com/songs/60065053.mkv +PITBULL-我错在哪里,http://em.21dtv.com/songs/60062129.mkv +王中平+蔡佩芬-完成咱的梦(无原唱),http://em.21dtv.com/songs/60081362.mkv +李成-未曾真爱我,http://em.21dtv.com/songs/60102340.mkv +次真降措-我从亚丁来,http://em.21dtv.com/songs/60044961.mkv +雪山朗玛组合-我从雪山来,http://em.21dtv.com/songs/60044960.mkv +王宏伟-我从新疆来,http://em.21dtv.com/songs/60044959.mkv +多杰-我从西藏来,http://em.21dtv.com/songs/60125341.mkv +佚名-we can work it out(演唱会),http://em.21dtv.com/songs/60006140.mkv +金龙-我从未改变,http://em.21dtv.com/songs/60068755.mkv +陈雷-无采我的爱,http://em.21dtv.com/songs/60047064.mkv +尤雅-无彩我爱你(无原唱),http://em.21dtv.com/songs/60081966.mkv +俞隆华-无彩我爱你,http://em.21dtv.com/songs/60047067.mkv +佚名-无彩我爱你,http://em.21dtv.com/songs/60047066.mkv +西域胡杨-我从天山来,http://em.21dtv.com/songs/60065052.mkv +胡承忠-我从三峡来,http://em.21dtv.com/songs/60091900.mkv +1314-我从陕北来,http://em.21dtv.com/songs/60120181.mkv +苏芮-我曾深爱过,http://em.21dtv.com/songs/60044947.mkv +陈零九-我曾亲爱的,http://em.21dtv.com/songs/60120102.mkv +失控-未成年主张(演唱会),http://em.21dtv.com/songs/60044234.mkv +黄思婷-无差你一人,http://em.21dtv.com/songs/60063741.mkv +金池-我从哪里来,http://em.21dtv.com/songs/60124583.mkv +尼格买提-我从哪里来,http://em.21dtv.com/songs/60123860.mkv +马上又-我从哪里来,http://em.21dtv.com/songs/60122273.mkv +A.OSMOND+W.OSMOND+M.-we can make it together,http://em.21dtv.com/songs/60006138.mkv +音乐走廊+十一妹-我唱浏阳河,http://em.21dtv.com/songs/60109740.mkv +李宇春-我唱啦啦啦,http://em.21dtv.com/songs/60044952.mkv +甄秀珍-我曾经来过,http://em.21dtv.com/songs/60089425.mkv +童安格-我曾经爱过,http://em.21dtv.com/songs/60044943.mkv +MEN AT WORK-who can it be now,http://em.21dtv.com/songs/60074138.mkv +佚名-who can it be now,http://em.21dtv.com/songs/60006311.mkv +AEROSMITH-what could have been love,http://em.21dtv.com/songs/60074109.mkv +雨禾-我从高原来,http://em.21dtv.com/songs/60066396.mkv +吉克隽逸-我唱故我在,http://em.21dtv.com/songs/60097577.mkv +王建杰-无彩工的爱(无原唱),http://em.21dtv.com/songs/60047065.mkv +赵仰瑞-尉村鼓车歌,http://em.21dtv.com/songs/60072506.mkv +江美丽-望春的心情,http://em.21dtv.com/songs/60043660.mkv +品冠-未拆的礼物,http://em.21dtv.com/songs/60065027.mkv +卓玛拉初-五彩的哈达,http://em.21dtv.com/songs/60089702.mkv +佳佳-我从草原来,http://em.21dtv.com/songs/60133372.mkv +凤凰传奇-我从草原来,http://em.21dtv.com/songs/60044958.mkv +德德玛-我从草原来,http://em.21dtv.com/songs/60044957.mkv +德德玛-我从草原来(演唱会),http://em.21dtv.com/songs/60044956.mkv +胡歌-我不做英雄,http://em.21dtv.com/songs/60062469.mkv +林峯-我不再相信,http://em.21dtv.com/songs/60124129.mkv +邓丽君-我不再迷惘,http://em.21dtv.com/songs/60044919.mkv +萧潇-握不住的他,http://em.21dtv.com/songs/60047019.mkv +林俊杰-握不住的他,http://em.21dtv.com/songs/60047018.mkv +解晓东-我不知道风,http://em.21dtv.com/songs/60044933.mkv +黎亚-我不在巴黎,http://em.21dtv.com/songs/60089065.mkv +李萧杰-我不愿再醉,http://em.21dtv.com/songs/60067547.mkv +吴建豪-我不要自由,http://em.21dtv.com/songs/60065049.mkv +郑劲松-我不要醒来,http://em.21dtv.com/songs/60108043.mkv +于浩威-我不要听见,http://em.21dtv.com/songs/60044907.mkv +张紫瑶-我不要离开,http://em.21dtv.com/songs/60125532.mkv +TF家族-我不要改变,http://em.21dtv.com/songs/60078182.mkv +李猛-我不要承诺,http://em.21dtv.com/songs/60044904.mkv +任贤齐-我不要沉默,http://em.21dtv.com/songs/60090553.mkv +刘爽-我不想再醉,http://em.21dtv.com/songs/60105642.mkv +杨辉-我不想再哭,http://em.21dtv.com/songs/60111190.mkv +薛凯琪-我不需要 tiffany,http://em.21dtv.com/songs/60044899.mkv +淼淼-我不想相亲,http://em.21dtv.com/songs/60117901.mkv +中国娃娃-我不想想你,http://em.21dtv.com/songs/60044888.mkv +阿悄-我不想写歌,http://em.21dtv.com/songs/60119000.mkv +晓枫-我不想过年,http://em.21dtv.com/songs/60108543.mkv +江映蓉-我不是装傻,http://em.21dtv.com/songs/60078181.mkv +后舍男生-我不是宅男,http://em.21dtv.com/songs/60103969.mkv +吴建豪-我不是自己,http://em.21dtv.com/songs/60044865.mkv +陈宇凡-我不是英雄,http://em.21dtv.com/songs/60044863.mkv +冯雪刚-我不是徐峥,http://em.21dtv.com/songs/60131196.mkv +淳子-我不是小三,http://em.21dtv.com/songs/60069929.mkv +江伊涵-我不是小三,http://em.21dtv.com/songs/60065045.mkv +郎军-我不是小丑,http://em.21dtv.com/songs/60067546.mkv +陈小春-我不是伟人,http://em.21dtv.com/songs/60044855.mkv +那英-我不是天使,http://em.21dtv.com/songs/60044854.mkv +伍佰-我不是天使(演唱会),http://em.21dtv.com/songs/60044853.mkv +关喆-我不是圣人,http://em.21dtv.com/songs/60044848.mkv +叶小凯-我不是偶吧,http://em.21dtv.com/songs/60106671.mkv +张亮+张悦轩-我不是男神,http://em.21dtv.com/songs/60096066.mkv +闽北阿牛-我不是明星,http://em.21dtv.com/songs/60129704.mkv +王蓉-我不是美女,http://em.21dtv.com/songs/60044838.mkv +陈依然-我不是孟非,http://em.21dtv.com/songs/60110606.mkv +陈依然-我不是孟非,http://em.21dtv.com/songs/60062291.mkv +覃浩-我不是垃圾,http://em.21dtv.com/songs/60117211.mkv +王蓉-我不是黄蓉,http://em.21dtv.com/songs/60044835.mkv +童唱-我不是黄蓉,http://em.21dtv.com/songs/60044834.mkv +龚月-我不是黄蓉,http://em.21dtv.com/songs/60044833.mkv +王蓉-我不是黄蓉(演唱会),http://em.21dtv.com/songs/60044832.mkv +侧田-我不是好人,http://em.21dtv.com/songs/60044827.mkv +侧田-我不是好人(演唱会),http://em.21dtv.com/songs/60044826.mkv +王璐岢-我不是花瓶,http://em.21dtv.com/songs/60080001.mkv +朱雅-我不适合你,http://em.21dtv.com/songs/60080870.mkv +刘牧-我不是黄渤,http://em.21dtv.com/songs/60126655.mkv +关颖-我不是公主,http://em.21dtv.com/songs/60044823.mkv +凤凰传奇-我不是公主,http://em.21dtv.com/songs/60044822.mkv +张雷-我不是歌手,http://em.21dtv.com/songs/60085874.mkv +谭耀文-我不是反派,http://em.21dtv.com/songs/60119985.mkv +谭耀文-我不是反派,http://em.21dtv.com/songs/60097564.mkv +周渝民-我不是f4,http://em.21dtv.com/songs/60044812.mkv +黄圣依-我不入地狱,http://em.21dtv.com/songs/60134493.mkv +张惠妹-我不求未来,http://em.21dtv.com/songs/60091091.mkv +金钰儿-我不漂亮吗,http://em.21dtv.com/songs/60124588.mkv +张启靓-我不怕寂寞,http://em.21dtv.com/songs/60044803.mkv +陈瑞-五百年情缘,http://em.21dtv.com/songs/60134411.mkv +陈瑞-五百年情缘,http://em.21dtv.com/songs/60047628.mkv +陈明-忘不了的雪,http://em.21dtv.com/songs/60089525.mkv +江枫-忘不了的人,http://em.21dtv.com/songs/60065004.mkv +赵真-忘不了的情,http://em.21dtv.com/songs/60078042.mkv +刘雅丽+谭锡禧-忘不了的你(演唱会),http://em.21dtv.com/songs/60083956.mkv +杨洋-忘不了的你,http://em.21dtv.com/songs/60081238.mkv +崔琰-忘不了的你,http://em.21dtv.com/songs/60080927.mkv +吕珊+张伟文-忘不了的你(演唱会),http://em.21dtv.com/songs/60078041.mkv +吕珊+苏姗-忘不了的你(演唱会),http://em.21dtv.com/songs/60078040.mkv +任贤齐-忘不了的你,http://em.21dtv.com/songs/60043498.mkv +庞龙-忘不了的你,http://em.21dtv.com/songs/60043497.mkv +李逸-忘不了的你,http://em.21dtv.com/songs/60043496.mkv +黄耀明-忘不了的你,http://em.21dtv.com/songs/60043495.mkv +张伟文-忘不了的你(演唱会),http://em.21dtv.com/songs/60043494.mkv +苏珊-忘不了的你(演唱会),http://em.21dtv.com/songs/60043493.mkv +青山-忘不了的你(演唱会),http://em.21dtv.com/songs/60043492.mkv +木杰-万般皆是空,http://em.21dtv.com/songs/60104187.mkv +黄名伟+甄俐-我比较爱你(无原唱),http://em.21dtv.com/songs/60044727.mkv +阮以伟-我不会忘记,http://em.21dtv.com/songs/60066393.mkv +赵薇-我不会偷哭,http://em.21dtv.com/songs/60044781.mkv +任然-我不会假装,http://em.21dtv.com/songs/60104775.mkv +王俊熙-我不会回头,http://em.21dtv.com/songs/60133975.mkv +朱俐静-我不会胡闹,http://em.21dtv.com/songs/60084013.mkv +郑欣宜-我不会后悔,http://em.21dtv.com/songs/60097563.mkv +孙伯纶-我背后的你,http://em.21dtv.com/songs/60130241.mkv +李克勤-我不会唱歌,http://em.21dtv.com/songs/60120606.mkv +周定纬-我不会唱歌,http://em.21dtv.com/songs/60044779.mkv +罗志祥-我不会唱歌,http://em.21dtv.com/songs/60044778.mkv +李克勤-我不会唱歌,http://em.21dtv.com/songs/60044777.mkv +关淑怡-我不会唱歌,http://em.21dtv.com/songs/60044776.mkv +谭咏麟+李克勤-我不会唱歌(演唱会),http://em.21dtv.com/songs/60044775.mkv +李克勤-我不会唱歌(演唱会),http://em.21dtv.com/songs/60044774.mkv +李克勤+容祖儿-我不会唱歌(演唱会),http://em.21dtv.com/songs/60044773.mkv +潘玮柏-我不够成熟,http://em.21dtv.com/songs/60091658.mkv +安涛-我不该错过,http://em.21dtv.com/songs/60072518.mkv +温升豪-我不够爱你,http://em.21dtv.com/songs/60112840.mkv +刘德华-我不够爱你,http://em.21dtv.com/songs/60044758.mkv +刘德华+陈慧琳-我不够爱你,http://em.21dtv.com/songs/60044757.mkv +陈慧琳-我不够爱你(演唱会),http://em.21dtv.com/songs/60044756.mkv +邓丽君-我不该爱你,http://em.21dtv.com/songs/60044753.mkv +陈奂仁-微博分手记,http://em.21dtv.com/songs/60083963.mkv +单晓亮-我不放弃你,http://em.21dtv.com/songs/60103953.mkv +李克勤-吻别的位置,http://em.21dtv.com/songs/60044412.mkv +李克勤-吻别的位置(演唱会),http://em.21dtv.com/songs/60044411.mkv +谭咏麟-无边的思忆(演唱会),http://em.21dtv.com/songs/60047061.mkv +谭咏麟+李克勤-无边的思忆(演唱会),http://em.21dtv.com/songs/60047060.mkv +陈一玲-我不等你了,http://em.21dtv.com/songs/60108115.mkv +葛本军-无边的寂寞,http://em.21dtv.com/songs/60061721.mkv +包胡尔查+李玲玉-无边的孤单,http://em.21dtv.com/songs/60047059.mkv +安熠格-忘不掉的痛,http://em.21dtv.com/songs/60119436.mkv +姜玉阳-忘不掉的伤,http://em.21dtv.com/songs/60043478.mkv +樊凡-忘不掉的海,http://em.21dtv.com/songs/60066364.mkv +JERRY+MERRY-我不懂得爱,http://em.21dtv.com/songs/60044748.mkv +林芸-我不懂爱情,http://em.21dtv.com/songs/60044747.mkv +常石磊-我不懂爱情,http://em.21dtv.com/songs/60044746.mkv +佚名-我伴彩云飞,http://em.21dtv.com/songs/60044717.mkv +陈思函-我变成了我,http://em.21dtv.com/songs/60128528.mkv +田跃君-五百次回眸,http://em.21dtv.com/songs/60062999.mkv +龙千玉-舞伴不是你,http://em.21dtv.com/songs/60136062.mkv +龙千玉-舞伴不是你,http://em.21dtv.com/songs/60002605.mkv +野人-我不爱你了,http://em.21dtv.com/songs/60097565.mkv +张芸京-我不爱你了,http://em.21dtv.com/songs/60044739.mkv +张宇-我被爱打败,http://em.21dtv.com/songs/60044720.mkv +叶俊华-我爱这支笔,http://em.21dtv.com/songs/60117600.mkv +王莹-我爱这支笔,http://em.21dtv.com/songs/60117046.mkv +荣联合-为爱醉一回,http://em.21dtv.com/songs/60062872.mkv +麻吉弟弟-我爱周星星,http://em.21dtv.com/songs/60089016.mkv +MACHI-我爱周星星,http://em.21dtv.com/songs/60044701.mkv +于林真-为爱走天涯,http://em.21dtv.com/songs/60043849.mkv +佚名-为爱走天涯,http://em.21dtv.com/songs/60043848.mkv +廖昌永-我爱这土地,http://em.21dtv.com/songs/60099220.mkv +向蕙玲-为爱走千里,http://em.21dtv.com/songs/60134998.mkv +杨东鑫-我爱中国话,http://em.21dtv.com/songs/60085869.mkv +张拉拉-我爱猪八戒,http://em.21dtv.com/songs/60044702.mkv +S.H.E-我爱雨夜花,http://em.21dtv.com/songs/60044696.mkv +吴娜-为奥运喝彩,http://em.21dtv.com/songs/60078073.mkv +DAWN-what are you doing sunday,http://em.21dtv.com/songs/60006185.mkv +邹静-我爱夏日长,http://em.21dtv.com/songs/60044689.mkv +迪克牛仔-为爱向前跑,http://em.21dtv.com/songs/60085839.mkv +邓小伟-为爱向前冲,http://em.21dtv.com/songs/60080944.mkv +江美琪-我爱夏卡尔,http://em.21dtv.com/songs/60044688.mkv +BOY'Z-我爱香港仔,http://em.21dtv.com/songs/60092152.mkv +甜妹紫烟-我爱小菜园,http://em.21dtv.com/songs/60113896.mkv +曹海波-我爱我自由,http://em.21dtv.com/songs/60085867.mkv +刘有名-为爱无尊严,http://em.21dtv.com/songs/60085838.mkv +正华-为爱我在漂,http://em.21dtv.com/songs/60116985.mkv +袁咏琳-我爱我自己,http://em.21dtv.com/songs/60123148.mkv +袁咏琳-我爱我自己,http://em.21dtv.com/songs/60122098.mkv +龙梅子-我爱我中华,http://em.21dtv.com/songs/60095173.mkv +佚名-为爱误一生(无原唱),http://em.21dtv.com/songs/60043842.mkv +老何-我爱我星瑞,http://em.21dtv.com/songs/60120858.mkv +林隆璇-为爱往前飞,http://em.21dtv.com/songs/60043840.mkv +何为国-我爱我家乡,http://em.21dtv.com/songs/60096188.mkv +佚名-when a womans fed up,http://em.21dtv.com/songs/60006234.mkv +王彦坤-我爱我的家,http://em.21dtv.com/songs/60130585.mkv +陈心蕊-我爱我的家,http://em.21dtv.com/songs/60120078.mkv +白雪-晚安我的爱,http://em.21dtv.com/songs/60043216.mkv +刘德华-为爱瘦一次,http://em.21dtv.com/songs/60043831.mkv +刘倧洲-我爱孙悟空,http://em.21dtv.com/songs/60114419.mkv +王雪晶+小妮妮-我爱少年家,http://em.21dtv.com/songs/60017763.mkv +罗逻圣-我爱上了你,http://em.21dtv.com/songs/60129485.mkv +赛娅-我爱上了你,http://em.21dtv.com/songs/60061672.mkv +乩童秩序-我爱世纪末(无原唱),http://em.21dtv.com/songs/60044675.mkv +群星-我爱世界杯,http://em.21dtv.com/songs/60091856.mkv +孙楠-为爱说抱歉,http://em.21dtv.com/songs/60043833.mkv +孙楠-为爱说抱歉(演唱会),http://em.21dtv.com/songs/60043832.mkv +佚名-我爱人民币,http://em.21dtv.com/songs/60044669.mkv +王晨铭-为爱求支签,http://em.21dtv.com/songs/60043827.mkv +周华健-为爱情受伤(演唱会),http://em.21dtv.com/songs/60043826.mkv +韩红+李春波-为爱牵起手,http://em.21dtv.com/songs/60043824.mkv +李国祥-为爱情疗伤,http://em.21dtv.com/songs/60043825.mkv +张萱妍-我爱全放价,http://em.21dtv.com/songs/60125535.mkv +游美灵-我爱朋友圈,http://em.21dtv.com/songs/60112841.mkv +郑中基-我爱平底锅,http://em.21dtv.com/songs/60044664.mkv +朴树-我爱你再见,http://em.21dtv.com/songs/60044650.mkv +王传越-我爱你中华,http://em.21dtv.com/songs/60116134.mkv +李潮-我爱你中华,http://em.21dtv.com/songs/60106947.mkv +荒山亮-我爱你再会,http://em.21dtv.com/songs/60044649.mkv +李潮-我爱你中国,http://em.21dtv.com/songs/60133810.mkv +智慧爸爸+智慧女孩-我爱你中国,http://em.21dtv.com/songs/60132504.mkv +李书伟-我爱你中国,http://em.21dtv.com/songs/60120597.mkv +好声音全体学员-我爱你中国,http://em.21dtv.com/songs/60115083.mkv +廖昌永-我爱你中国,http://em.21dtv.com/songs/60108473.mkv +卓依婷-我爱你中国,http://em.21dtv.com/songs/60103950.mkv +韩磊-我爱你中国,http://em.21dtv.com/songs/60098705.mkv +殷秀梅-我爱你中国,http://em.21dtv.com/songs/60098543.mkv +汪峰-我爱你中国,http://em.21dtv.com/songs/60096384.mkv +叶佩英-我爱你中国,http://em.21dtv.com/songs/60087516.mkv +梁博-我爱你中国,http://em.21dtv.com/songs/60078157.mkv +黄英+平安-我爱你中国,http://em.21dtv.com/songs/60078156.mkv +金婷婷-我爱你中国(演唱会),http://em.21dtv.com/songs/60078155.mkv +韩磊-我爱你中国(演唱会),http://em.21dtv.com/songs/60078154.mkv +平安-我爱你中国,http://em.21dtv.com/songs/60069925.mkv +佚名-我爱你中国,http://em.21dtv.com/songs/60044661.mkv +叶英-我爱你中国,http://em.21dtv.com/songs/60044660.mkv +谭晶-我爱你中国,http://em.21dtv.com/songs/60044659.mkv +李谷一-我爱你中国,http://em.21dtv.com/songs/60044658.mkv +常石磊-我爱你中国,http://em.21dtv.com/songs/60044657.mkv +因果兄弟-我爱你中国(演唱会),http://em.21dtv.com/songs/60044656.mkv +王秀芬-我爱你中国(演唱会),http://em.21dtv.com/songs/60044655.mkv +顾莉雅-我爱你中国(演唱会),http://em.21dtv.com/songs/60044654.mkv +袁攀+夕落-惟爱你许嵩,http://em.21dtv.com/songs/60078111.mkv +熊七梅-我爱你三沙,http://em.21dtv.com/songs/60122975.mkv +陈盈洁-我爱你什咪,http://em.21dtv.com/songs/60044644.mkv +汪峰-我爱你生活,http://em.21dtv.com/songs/60101415.mkv +支译晨-我爱你妈妈,http://em.21dtv.com/songs/60128031.mkv +卓依婷-我爱那鲁湾,http://em.21dtv.com/songs/60044593.mkv +李传永-我爱你兰花,http://em.21dtv.com/songs/60065036.mkv +黄乙玲-我爱你何苦,http://em.21dtv.com/songs/60050478.mkv +朱紫娆-我爱你很多,http://em.21dtv.com/songs/60044633.mkv +CHLOE CHU-我爱你很多,http://em.21dtv.com/songs/60044632.mkv +谢流宣-我爱你姑娘,http://em.21dtv.com/songs/60072516.mkv +LINDA-我爱你的坏,http://em.21dtv.com/songs/60044631.mkv +佚名-我爱梅园梅,http://em.21dtv.com/songs/60044591.mkv +纳兰-我爱梅兰芳,http://em.21dtv.com/songs/60061669.mkv +张学友-我爱玫瑰园(演唱会),http://em.21dtv.com/songs/60044590.mkv +张也-我爱李时珍,http://em.21dtv.com/songs/60099221.mkv +办桌阿杰+王瑞霞-为爱潦落去,http://em.21dtv.com/songs/60095475.mkv +李文华-我爱绿军装,http://em.21dtv.com/songs/60132535.mkv +王杰-为爱流过泪,http://em.21dtv.com/songs/60043815.mkv +詹曼铃+沈建豪-望爱了对时,http://em.21dtv.com/songs/60086904.mkv +王中平-为爱苦一生,http://em.21dtv.com/songs/60043814.mkv +轲然-为爱哭一次,http://em.21dtv.com/songs/60098793.mkv +乔幼-无爱卡快活,http://em.21dtv.com/songs/60130048.mkv +李玟-我爱看电影,http://em.21dtv.com/songs/60044585.mkv +李天平+陈星羽-我爱金香玉,http://em.21dtv.com/songs/60044584.mkv +陈升-我爱贾苏切,http://em.21dtv.com/songs/60044582.mkv +蔡秋凤-无爱就离开,http://em.21dtv.com/songs/60047057.mkv +NORAH JONES-what am i to you,http://em.21dtv.com/songs/60074107.mkv +FUN.-why am i the one,http://em.21dtv.com/songs/60074141.mkv +A.SA 乐团-为爱活一遍,http://em.21dtv.com/songs/60101719.mkv +孙淑媚-为爱活下去,http://em.21dtv.com/songs/60043813.mkv +黑涩会美眉-我爱黑涩会,http://em.21dtv.com/songs/60044578.mkv +苗苗-我爱格桑花,http://em.21dtv.com/songs/60096462.mkv +望海高歌-我爱广场舞,http://em.21dtv.com/songs/60105123.mkv +陈慧琳-为爱放心上,http://em.21dtv.com/songs/60089524.mkv +李度-为爱犯了罪,http://em.21dtv.com/songs/60043808.mkv +伦永亮+梅艳芳-我爱风光好,http://em.21dtv.com/songs/60044571.mkv +周子寒-为爱付代价(无原唱),http://em.21dtv.com/songs/60043812.mkv +徐仁国-为爱而心痛,http://em.21dtv.com/songs/60078070.mkv +赵薇-为爱而等待,http://em.21dtv.com/songs/60043803.mkv +谭咏麟-我爱大自然,http://em.21dtv.com/songs/60093211.mkv +侯旭+云朵-我爱大中国,http://em.21dtv.com/songs/60128789.mkv +阎维文-我爱的中国,http://em.21dtv.com/songs/60102847.mkv +候旭-我爱大中国(演唱会),http://em.21dtv.com/songs/60084002.mkv +郭术军-我爱大星山,http://em.21dtv.com/songs/60106334.mkv +李玟-我爱的是你,http://em.21dtv.com/songs/60044567.mkv +五月天-晚安地球人,http://em.21dtv.com/songs/60043210.mkv +五月天-晚安 地球人(演唱会),http://em.21dtv.com/songs/60043205.mkv +姚贝娜-我爱的男人,http://em.21dtv.com/songs/60110970.mkv +温兆伦-我爱的女人,http://em.21dtv.com/songs/60044553.mkv +黑龙-我爱的女人,http://em.21dtv.com/songs/60044552.mkv +张冬玲-我爱的男人(演唱会),http://em.21dtv.com/songs/60044548.mkv +吴依琳-我爱大红包,http://em.21dtv.com/songs/60078136.mkv +阳光天使-我爱大红包,http://em.21dtv.com/songs/60072514.mkv +李贵府-我爱的姑娘,http://em.21dtv.com/songs/60061667.mkv +苏泉-我爱的姑娘,http://em.21dtv.com/songs/60044546.mkv +网络歌手-我爱斗地主,http://em.21dtv.com/songs/60088414.mkv +雷龙-我爱大草原,http://em.21dtv.com/songs/60123344.mkv +雷龙-我爱大草原,http://em.21dtv.com/songs/60066384.mkv +天籁回音-为爱闯天涯,http://em.21dtv.com/songs/60083970.mkv +天籁同音-为爱闯天涯,http://em.21dtv.com/songs/60078069.mkv +马健涛-为爱闯天涯,http://em.21dtv.com/songs/60078068.mkv +庞梅-为爱唱情歌,http://em.21dtv.com/songs/60083969.mkv +佚名-when a child is born,http://em.21dtv.com/songs/60006230.mkv +JOHNNY MATHIS-when a child is born,http://em.21dtv.com/songs/60006229.mkv +佚名-when a child is born(演唱会),http://em.21dtv.com/songs/60006228.mkv +刘凤屏-我爱春的梦,http://em.21dtv.com/songs/60044544.mkv +谢安琪-我爱茶餐厅,http://em.21dtv.com/songs/60044542.mkv +谢安琪-我爱茶餐厅(HD演唱会),http://em.21dtv.com/songs/60044541.mkv +AI-VOICE,http://em.21dtv.com/songs/60134633.mkv +金润雅-Voice,http://em.21dtv.com/songs/60133010.mkv +黄义达-voice of 512,http://em.21dtv.com/songs/60006069.mkv +Owl City+Aloe Blacc-Verge,http://em.21dtv.com/songs/60112453.mkv +VAV-VENUS,http://em.21dtv.com/songs/60132146.mkv +谢依霖+张碧晨-VENUS,http://em.21dtv.com/songs/60127400.mkv +张苡澄-Venus,http://em.21dtv.com/songs/60105867.mkv +佚名-until the time is through,http://em.21dtv.com/songs/60006023.mkv +佚名-under the moon of love,http://em.21dtv.com/songs/60006008.mkv +Coldplay-Up&Up,http://em.21dtv.com/songs/60122361.mkv +Kanye West+Vic Mensa-U Mad,http://em.21dtv.com/songs/60114342.mkv +魏晨-u know i need u,http://em.21dtv.com/songs/60086376.mkv +金承熙(Rlain Kim)-U HOO,http://em.21dtv.com/songs/60114145.mkv +潘裕文-躺着也中枪,http://em.21dtv.com/songs/60077835.mkv +黎毅-听这一首歌,http://em.21dtv.com/songs/60098961.mkv +孙艳-听这一首歌,http://em.21dtv.com/songs/60098246.mkv +吴长英-童真与梦想,http://em.21dtv.com/songs/60106690.mkv +陈思思-同在阳光下,http://em.21dtv.com/songs/60064981.mkv +梁奕伦+车颐-陶造新生命,http://em.21dtv.com/songs/60092897.mkv +黄西田+樱桃姐妹-田庄小姑娘,http://em.21dtv.com/songs/60042349.mkv +朴树-她在睡梦中(演唱会),http://em.21dtv.com/songs/60041174.mkv +崔子格-天字女一号,http://em.21dtv.com/songs/60067723.mkv +翁航融-听着你的歌,http://em.21dtv.com/songs/60113961.mkv +王盛智-同志们的歌,http://em.21dtv.com/songs/60088307.mkv +李琦-挑战了不起,http://em.21dtv.com/songs/60116017.mkv +阎维文-土族敬酒歌,http://em.21dtv.com/songs/60042957.mkv +吉娃斯杜岚-舔自己的伤(无原唱),http://em.21dtv.com/songs/60042415.mkv +陈建玮-透早就出门,http://em.21dtv.com/songs/60122231.mkv +闪亮三姐妹-天真坏小孩,http://em.21dtv.com/songs/60042315.mkv +陈明憙-童装高跟鞋,http://em.21dtv.com/songs/60129745.mkv +陈明喜-童装高跟鞋,http://em.21dtv.com/songs/60129743.mkv +陈明憙-童装高跟鞋,http://em.21dtv.com/songs/60128538.mkv +詹小栎-天真的预言,http://em.21dtv.com/songs/60134212.mkv +动力火车-天真的双眼,http://em.21dtv.com/songs/60042314.mkv +罗友生-停滞的时光,http://em.21dtv.com/songs/60077955.mkv +谢安琪-停转的木马,http://em.21dtv.com/songs/60100966.mkv +TOGY-天真的浪漫,http://em.21dtv.com/songs/60077920.mkv +白龙-天真的白羊,http://em.21dtv.com/songs/60067490.mkv +高耀太-停止的爱情,http://em.21dtv.com/songs/60112392.mkv +姚光庭-停止吧时间,http://em.21dtv.com/songs/60072468.mkv +王磊-团支部书记,http://em.21dtv.com/songs/60042973.mkv +林建亨-太阳自由我(无原唱),http://em.21dtv.com/songs/60041401.mkv +郭桂彬-天涯再相会,http://em.21dtv.com/songs/60042268.mkv +汤灿-团圆中国年,http://em.21dtv.com/songs/60042972.mkv +徐子崴+彭立-同圆中国梦,http://em.21dtv.com/songs/60101640.mkv +周杰伦-同一种调调,http://em.21dtv.com/songs/60042714.mkv +高胜美-太阳骤成雨,http://em.21dtv.com/songs/60041400.mkv +佚名-天涯找爱人,http://em.21dtv.com/songs/60042270.mkv +曾心梅-天涯找爱人,http://em.21dtv.com/songs/60042269.mkv +阿文-天涯游子心,http://em.21dtv.com/songs/60109681.mkv +高贵强-天涯游子情,http://em.21dtv.com/songs/60064972.mkv +佚名-天涯鸳鸯梦,http://em.21dtv.com/songs/60042267.mkv +陈雅森-太阳与月亮,http://em.21dtv.com/songs/60106424.mkv +哈琳-天韵摇篮曲,http://em.21dtv.com/songs/60135058.mkv +哈琳-天韵摇篮曲,http://em.21dtv.com/songs/60097496.mkv +慢慢说乐团-讨厌下雨天,http://em.21dtv.com/songs/60122769.mkv +王莹-天一雪山鹰,http://em.21dtv.com/songs/60106128.mkv +珍美儿-桃园小情歌,http://em.21dtv.com/songs/60134017.mkv +郭富城-讨厌喜欢你,http://em.21dtv.com/songs/60041631.mkv +鲁恩滨-太阳下的梦,http://em.21dtv.com/songs/60077821.mkv +Anly-太阳に笑え,http://em.21dtv.com/songs/60117432.mkv +陈泽华-天佑我中华,http://em.21dtv.com/songs/60117346.mkv +郑吟秋-天涯我独行,http://em.21dtv.com/songs/60042265.mkv +新声一班-太阳天空照,http://em.21dtv.com/songs/60105090.mkv +佚名-探狱思君怨,http://em.21dtv.com/songs/60041481.mkv +杨千桦-体验入学1,http://em.21dtv.com/songs/60092831.mkv +大合唱-同一片天空,http://em.21dtv.com/songs/60042707.mkv +AL STEWART-the year of the cat,http://em.21dtv.com/songs/60005732.mkv +赵之璧-她有你要的,http://em.21dtv.com/songs/60041173.mkv +钟汉良-天涯明月刀,http://em.21dtv.com/songs/60077915.mkv +高喻-天涯明月刀,http://em.21dtv.com/songs/60077914.mkv +佚名-天涯浪星泪,http://em.21dtv.com/songs/60095408.mkv +卓依婷-天涯流星泪,http://em.21dtv.com/songs/60087455.mkv +梅花三姐妹-天涯流星泪(演唱会),http://em.21dtv.com/songs/60042262.mkv +佚名-天涯流浪儿,http://em.21dtv.com/songs/60042261.mkv +LAURYN HILL+BOB MARL-turn your lights down low,http://em.21dtv.com/songs/60005961.mkv +CELINE DION-then you look at me,http://em.21dtv.com/songs/60005737.mkv +罗心洁-他已经走了,http://em.21dtv.com/songs/60064937.mkv +佚名-田野静悄悄,http://em.21dtv.com/songs/60042338.mkv +北原山猫-泰雅结婚歌(无原唱),http://em.21dtv.com/songs/60089689.mkv +陈雅森-太阳和月亮,http://em.21dtv.com/songs/60107338.mkv +徐晶晶-太阳和月亮,http://em.21dtv.com/songs/60094111.mkv +陶喆-讨厌红楼梦,http://em.21dtv.com/songs/60041630.mkv +纪佳松+潘玮柏-同一个遗憾,http://em.21dtv.com/songs/60042704.mkv +曾春年+孟杨-同一个心愿,http://em.21dtv.com/songs/60117786.mkv +5566-同一个世界,http://em.21dtv.com/songs/60042702.mkv +黄耀明-同一个世界(演唱会),http://em.21dtv.com/songs/60042701.mkv +王莹-天一阁抒怀,http://em.21dtv.com/songs/60106127.mkv +师鹏-同一个梦想,http://em.21dtv.com/songs/60042699.mkv +马世斌-坦洋工夫茶,http://em.21dtv.com/songs/60077824.mkv +Hush-同一个答案,http://em.21dtv.com/songs/60116456.mkv +丁于-天涯共此时,http://em.21dtv.com/songs/60103838.mkv +李宇春+林俊杰+莫文蔚+阿信-天涯共此时,http://em.21dtv.com/songs/60042248.mkv +ABBA-thank you for the music,http://em.21dtv.com/songs/60005513.mkv +BON JOVI-thank you for loving me(无原唱),http://em.21dtv.com/songs/60005512.mkv +李宇春-thank you for hearing me(演唱会),http://em.21dtv.com/songs/60005511.mkv +周璇-讨厌的早晨,http://em.21dtv.com/songs/60041628.mkv +马健南+Shirley+Jiang-太阳的后裔,http://em.21dtv.com/songs/60121147.mkv +张贤赫-太阳的后裔,http://em.21dtv.com/songs/60120529.mkv +方大人-偷一段浮生,http://em.21dtv.com/songs/60129169.mkv +廖昌永-太阳的儿子,http://em.21dtv.com/songs/60091026.mkv +CHRIS BROWN-take you down chris brown,http://em.21dtv.com/songs/60060919.mkv +徐洪刚-同样的爱情,http://em.21dtv.com/songs/60081217.mkv +龙千玉-天涯痴情梦,http://em.21dtv.com/songs/60042229.mkv +安琪-讨厌唱情歌,http://em.21dtv.com/songs/60041627.mkv +孟庭苇-太阳出来了,http://em.21dtv.com/songs/60081123.mkv +郑伊健-太阳出来了,http://em.21dtv.com/songs/60041375.mkv +童唱-太阳出来了,http://em.21dtv.com/songs/60041374.mkv +郑伊健+周柏豪-太阳出来了(演唱会),http://em.21dtv.com/songs/60041373.mkv +童唱-太阳出来了(无原唱),http://em.21dtv.com/songs/60041372.mkv +上明+简美雀-同心走天涯,http://em.21dtv.com/songs/60104762.mkv +张子丰-推销员之死,http://em.21dtv.com/songs/60127971.mkv +奥迪-推销员之死,http://em.21dtv.com/songs/60080079.mkv +谭圳-天下岳阳楼,http://em.21dtv.com/songs/60072457.mkv +李嘉-疼惜一世人,http://em.21dtv.com/songs/60095609.mkv +周华健+齐豫-天下有情人,http://em.21dtv.com/songs/60042208.mkv +郁可唯+魏晨-天下有情人,http://em.21dtv.com/songs/60042207.mkv +许志安-天下有情人,http://em.21dtv.com/songs/60042206.mkv +阿吉仔-同心行同路,http://em.21dtv.com/songs/60061634.mkv +关淑怡-提醒我伤心,http://em.21dtv.com/songs/60090665.mkv +林晏如-疼惜我的吻,http://em.21dtv.com/songs/60041670.mkv +林晏如+叶佳修-疼惜我的吻,http://em.21dtv.com/songs/60041669.mkv +何雁诗-太想讨好你,http://em.21dtv.com/songs/60132203.mkv +童唱-童心是小鸟(演唱会),http://em.21dtv.com/songs/60042766.mkv +洪荣宏-他乡思妻儿,http://em.21dtv.com/songs/60041117.mkv +向蕙玲-疼惜阮的心,http://em.21dtv.com/songs/60108374.mkv +周慧敏-台下女主角(演唱会),http://em.21dtv.com/songs/60041285.mkv +朱海君-疼惜女人心,http://em.21dtv.com/songs/60113605.mkv +贺金-同学你好吗,http://em.21dtv.com/songs/60115415.mkv +苏打绿-他下了夏天,http://em.21dtv.com/songs/60088530.mkv +苏打绿-他夏了夏天,http://em.21dtv.com/songs/60041110.mkv +叶启田-他乡流浪儿(无原唱),http://em.21dtv.com/songs/60041115.mkv +张崇基+张崇德-偷闲加油站(演唱会),http://em.21dtv.com/songs/60064987.mkv +张学友-偷闲加油站,http://em.21dtv.com/songs/60042858.mkv +张学友-偷闲加油站(演唱会),http://em.21dtv.com/songs/60042857.mkv +泳儿-偷闲加油站(演唱会),http://em.21dtv.com/songs/60042856.mkv +群星-偷闲加油站(演唱会),http://em.21dtv.com/songs/60042855.mkv +晨露-同学会之歌,http://em.21dtv.com/songs/60116867.mkv +佚名-她像个孩子,http://em.21dtv.com/songs/60041168.mkv +凤凰传奇-兔侠功夫操,http://em.21dtv.com/songs/60107517.mkv +谭晶+杨坤-天下父母心,http://em.21dtv.com/songs/60042189.mkv +七郎-天下父母心,http://em.21dtv.com/songs/60042188.mkv +苗嫣妮-天下第一鲜,http://em.21dtv.com/songs/60130691.mkv +办桌二人组-天下第一味,http://em.21dtv.com/songs/60077907.mkv +于文华-天下第一情,http://em.21dtv.com/songs/60123604.mkv +吴陌川-天下第一媒,http://em.21dtv.com/songs/60135034.mkv +百灵-天下第一面,http://em.21dtv.com/songs/60134035.mkv +吴炜-天下第一媒,http://em.21dtv.com/songs/60042186.mkv +张学友-天下第一流,http://em.21dtv.com/songs/60042185.mkv +顾凯-天下第一家,http://em.21dtv.com/songs/60080527.mkv +陈兴瑜-偷心的小子(演唱会),http://em.21dtv.com/songs/60083935.mkv +陈兴瑜-偷心的小子,http://em.21dtv.com/songs/60062288.mkv +何静-太小的鞋子,http://em.21dtv.com/songs/60041366.mkv +韩言-痛心的温柔,http://em.21dtv.com/songs/60121132.mkv +韩言-痛心的温柔,http://em.21dtv.com/songs/60100635.mkv +凤凰传奇+徐千雅-天下的女人,http://em.21dtv.com/songs/60083903.mkv +李帅威-痛心的领悟,http://em.21dtv.com/songs/60119657.mkv +凤凰传奇+徐千雅-天下的姐妹,http://em.21dtv.com/songs/60077906.mkv +妞妞-痛心的决定,http://em.21dtv.com/songs/60077973.mkv +谢馨仪(苏打绿)-偷闲的翅膀,http://em.21dtv.com/songs/60082020.mkv +音萌萌-痛心的爱情,http://em.21dtv.com/songs/60133095.mkv +白冰冰+上明-天星伴月光,http://em.21dtv.com/songs/60042220.mkv +罗时丰-天星伴天涯,http://em.21dtv.com/songs/60134085.mkv +叶启田-天星伴天涯,http://em.21dtv.com/songs/60042219.mkv +王馨悦-她,http://em.21dtv.com/songs/60103478.mkv +乃木坂46-他の星から,http://em.21dtv.com/songs/60113230.mkv +声音乐团-替我珍惜她,http://em.21dtv.com/songs/60086870.mkv +胡夏-替我照顾她,http://em.21dtv.com/songs/60110474.mkv +万芳-她往月亮走,http://em.21dtv.com/songs/60041166.mkv +FALTH HILL-the way you love me,http://em.21dtv.com/songs/60005719.mkv +MICHAEL LEARNS TO ROCK-thats way you go away,http://em.21dtv.com/songs/60005532.mkv +佚名-the winter takes it all,http://em.21dtv.com/songs/60005729.mkv +久登-听我说情话,http://em.21dtv.com/songs/60042601.mkv +RICHARD MARX-the way she loves me,http://em.21dtv.com/songs/60005714.mkv +七郎+丽君+一绫+佳虹-台湾圈一辗,http://em.21dtv.com/songs/60041276.mkv +群星-听我悄悄说,http://em.21dtv.com/songs/60100385.mkv +AMY GRANT-thats what love is for,http://em.21dtv.com/songs/60005536.mkv +OK男女合唱团-台湾进行曲,http://em.21dtv.com/songs/60041275.mkv +佚名-the world is getting smaller,http://em.21dtv.com/songs/60005730.mkv +李嘉-跳舞乎你看,http://em.21dtv.com/songs/60087993.mkv +[Group] +groupName=十六万歌曲MV等 - 77 +马博+汪茜-天王盖地虎,http://em.21dtv.com/songs/60124707.mkv +佚名-thats what friends are for,http://em.21dtv.com/songs/60005534.mkv +DIONNE FRIENDS-thats what friends are for,http://em.21dtv.com/songs/60005533.mkv +江蕙-跳舞到天光,http://em.21dtv.com/songs/60042445.mkv +钟汉良-贪玩的情人,http://em.21dtv.com/songs/60041424.mkv +牛奶咖啡+功夫-听我对你说,http://em.21dtv.com/songs/60042599.mkv +关牧村-台湾当归谣,http://em.21dtv.com/songs/60041267.mkv +青春美少女-跳舞的城堡(演唱会),http://em.21dtv.com/songs/60042446.mkv +吴灿涛-听我唱首歌,http://em.21dtv.com/songs/60106680.mkv +陈娟儿-听我唱首歌,http://em.21dtv.com/songs/60099579.mkv +FAITH HILL-there will come a day,http://em.21dtv.com/songs/60005741.mkv +金波-退伍兵之歌,http://em.21dtv.com/songs/60042988.mkv +佚名-the wind beneath my wings,http://em.21dtv.com/songs/60005728.mkv +达卡闹-图腾在哭泣,http://em.21dtv.com/songs/60104466.mkv +苏芮-抬头一吓看,http://em.21dtv.com/songs/60041292.mkv +陈予新-天堂与地狱,http://em.21dtv.com/songs/60042119.mkv +黄舒骏-天堂与地狱(演唱会),http://em.21dtv.com/songs/60042118.mkv +白云-天天想着你,http://em.21dtv.com/songs/60072455.mkv +金海心-天天洗头歌,http://em.21dtv.com/songs/60042152.mkv +常艾非-天天想你它,http://em.21dtv.com/songs/60106810.mkv +S.I.N.G女团-偷偷喜欢你,http://em.21dtv.com/songs/60120237.mkv +郭经纬+谢晶-偷偷喜欢你,http://em.21dtv.com/songs/60108931.mkv +李国祥-同途万里人(演唱会),http://em.21dtv.com/songs/60083930.mkv +郑少秋-同途万里人(演唱会),http://em.21dtv.com/songs/60077963.mkv +佚名-同途万里人,http://em.21dtv.com/songs/60042686.mkv +叶丽仪-同途万里人(演唱会),http://em.21dtv.com/songs/60042685.mkv +JANET JACKSON-thats the way love goes,http://em.21dtv.com/songs/60005530.mkv +CELINE DION-thats the way it is,http://em.21dtv.com/songs/60005529.mkv +昊麟-听听我的心,http://em.21dtv.com/songs/60113561.mkv +徐熙媛-听听我的心,http://em.21dtv.com/songs/60091203.mkv +天良-听听我的心,http://em.21dtv.com/songs/60042594.mkv +韩信-听听我的心,http://em.21dtv.com/songs/60042593.mkv +黎明-提提我的错,http://em.21dtv.com/songs/60093565.mkv +黄勇-天天天想你,http://em.21dtv.com/songs/60109056.mkv +RUBBERBAND-逃脱+沙滩,http://em.21dtv.com/songs/60092187.mkv +MAKIYO-天天说爱我,http://em.21dtv.com/songs/60042145.mkv +陈势安-天天情人节,http://em.21dtv.com/songs/60129726.mkv +武艺+付梦妮-天天情人节,http://em.21dtv.com/songs/60077902.mkv +佚名-滔滔千里心,http://em.21dtv.com/songs/60041535.mkv +佚名-the top of the world,http://em.21dtv.com/songs/60005702.mkv +佚名-the temple of the king,http://em.21dtv.com/songs/60005698.mkv +吴淑敏+周韦杰-体贴你心肝,http://em.21dtv.com/songs/60041705.mkv +刘德华-偷听女孩心,http://em.21dtv.com/songs/60042838.mkv +SAVAGE GARDEN-to the moon and back,http://em.21dtv.com/songs/60005837.mkv +云菲菲-天堂里的爱,http://em.21dtv.com/songs/60077896.mkv +阿杜-天天看到你,http://em.21dtv.com/songs/60042142.mkv +高向鹏-堂堂好丈夫,http://em.21dtv.com/songs/60030871.mkv +刘一祯-天天好心情,http://em.21dtv.com/songs/60042140.mkv +汤灿-天天好时光,http://em.21dtv.com/songs/60042139.mkv +佚名-天天二九暝,http://em.21dtv.com/songs/60042137.mkv +杨阳-堂堂大中国,http://em.21dtv.com/songs/60096098.mkv +庞晓宇-天堂的祝福,http://em.21dtv.com/songs/60087772.mkv +向阳-天台的月光,http://em.21dtv.com/songs/60126685.mkv +郑毅-天台的月光,http://em.21dtv.com/songs/60085789.mkv +周杰伦-天台的月光,http://em.21dtv.com/songs/60083897.mkv +靓舞精灵-天天都要过,http://em.21dtv.com/songs/60042135.mkv +杨培安-天天都想你,http://em.21dtv.com/songs/60042134.mkv +陈雅森-甜甜的小妹,http://em.21dtv.com/songs/60067492.mkv +叶德娴-天天都相见,http://em.21dtv.com/songs/60042132.mkv +JKAI-忐忑的无聊,http://em.21dtv.com/songs/60072441.mkv +罗时丰+陈小云-太太的生日,http://em.21dtv.com/songs/60077816.mkv +陈思思-甜甜的山歌,http://em.21dtv.com/songs/60042403.mkv +吴勇滨-堂堂的男儿,http://em.21dtv.com/songs/60041505.mkv +杨松-天堂的妈妈,http://em.21dtv.com/songs/60071187.mkv +徐良+刘丹萌-天堂岛乐园(演唱会),http://em.21dtv.com/songs/60077894.mkv +林晓勇-天堂的来信,http://em.21dtv.com/songs/60119708.mkv +于文华-甜甜的莲雾,http://em.21dtv.com/songs/60087256.mkv +宋祖英-甜甜大家园,http://em.21dtv.com/songs/60087692.mkv +高丽-忐忑的季节,http://em.21dtv.com/songs/60085764.mkv +罗敏庄+谭伟权-天堂的风筝(演唱会),http://em.21dtv.com/songs/60077895.mkv +冷漠-天堂的爱情,http://em.21dtv.com/songs/60101931.mkv +胡红艳-天天把歌唱,http://em.21dtv.com/songs/60077901.mkv +李嘉石-天天把歌唱,http://em.21dtv.com/songs/60066345.mkv +杨宗宪-偷偷爱着你,http://em.21dtv.com/songs/60042842.mkv +陈中-偷偷爱着你,http://em.21dtv.com/songs/60042841.mkv +唐雅明-偷偷爱上你,http://em.21dtv.com/songs/60042840.mkv +郑丽君-天使在身旁,http://em.21dtv.com/songs/60042075.mkv +林依晨-天使走过身边,http://em.21dtv.com/songs/60062659.mkv +慕容晓晓-天使在人间,http://em.21dtv.com/songs/60086876.mkv +平安-天使在欧洲,http://em.21dtv.com/songs/60097494.mkv +S.H.E-天使在唱歌,http://em.21dtv.com/songs/60042073.mkv +兔子舞-泰山与珍妮,http://em.21dtv.com/songs/60114398.mkv +任贤齐-天使也一样,http://em.21dtv.com/songs/60042069.mkv +刘爽-唐僧也有爱,http://em.21dtv.com/songs/60109188.mkv +小乔-天上有星星,http://em.21dtv.com/songs/60104068.mkv +孙兴-天使与王子,http://em.21dtv.com/songs/60042072.mkv +后弦-唐宋元明清,http://em.21dtv.com/songs/60041501.mkv +孙艳-天使与魔鬼,http://em.21dtv.com/songs/60102132.mkv +蔡华君-天使也累了,http://em.21dtv.com/songs/60077893.mkv +季小璐-天使也寂寞,http://em.21dtv.com/songs/60097493.mkv +田跃君-天使也寂寞,http://em.21dtv.com/songs/60062997.mkv +梁咏琪-天使与海豚,http://em.21dtv.com/songs/60042071.mkv +欢子-天使也会哭,http://em.21dtv.com/songs/60066344.mkv +秋裤大叔-唐僧也疯狂,http://em.21dtv.com/songs/60108755.mkv +李菲菲-天使与恶魔,http://em.21dtv.com/songs/60042070.mkv +潘小芬-偷洒一滴泪(法),http://em.21dtv.com/songs/60067497.mkv +张书瑶-她是有多好,http://em.21dtv.com/songs/60122705.mkv +杜德伟-天生喜欢您(演唱会),http://em.21dtv.com/songs/60042011.mkv +佚名-天生喜欢你,http://em.21dtv.com/songs/60042010.mkv +尹春吉-天生我有才,http://em.21dtv.com/songs/60077890.mkv +王梓旭-唐山我爱你,http://em.21dtv.com/songs/60077830.mkv +安室奈美恵-TSUKI,http://em.21dtv.com/songs/60098263.mkv +王建荣-太傻太愚蠢,http://em.21dtv.com/songs/60120762.mkv +黎明-听身体唱歌,http://em.21dtv.com/songs/60042565.mkv +黎明-听身体唱歌(演唱会),http://em.21dtv.com/songs/60042564.mkv +万颖-天生是女人,http://em.21dtv.com/songs/60042006.mkv +邵杰-她是什么妖,http://em.21dtv.com/songs/60132980.mkv +李佩莆-唐诗三百首,http://em.21dtv.com/songs/60041500.mkv +R.PLANT+J.PAGE-the song remains the same(无原唱),http://em.21dtv.com/songs/60005690.mkv +李春波+陆剑萍-天上飘着雨,http://em.21dtv.com/songs/60041985.mkv +佚名-the shadow of your smile,http://em.21dtv.com/songs/60005684.mkv +OASIS-the shock of the lightning,http://em.21dtv.com/songs/60063774.mkv +张也-同是你我他(演唱会),http://em.21dtv.com/songs/60042682.mkv +李克勤-听说你失恋(无原唱),http://em.21dtv.com/songs/60042584.mkv +丁当+MAGIC POWER-他说你没用,http://em.21dtv.com/songs/60041106.mkv +吴琼-她是你的谁,http://em.21dtv.com/songs/60041162.mkv +吴琼-他是你的谁,http://em.21dtv.com/songs/60041102.mkv +林美-她是你的爱,http://em.21dtv.com/songs/60041161.mkv +林美+吴淑敏-他是你的爱(无原唱),http://em.21dtv.com/songs/60041101.mkv +梁汉文-听说你爱我,http://em.21dtv.com/songs/60042580.mkv +梁汉文-听说你爱我(演唱会),http://em.21dtv.com/songs/60042579.mkv +陆君-天山玛丽亚,http://em.21dtv.com/songs/60041970.mkv +赵自强-天使魔鬼狗(无原唱),http://em.21dtv.com/songs/60042066.mkv +佚名-to say my angel cry,http://em.21dtv.com/songs/60005835.mkv +赵薇-天使旅行箱,http://em.21dtv.com/songs/60042063.mkv +陈慧琳-天生恋爱狂,http://em.21dtv.com/songs/60042004.mkv +卓依婷-天使快醒来,http://em.21dtv.com/songs/60042059.mkv +赵一霖-天使喀秋莎,http://em.21dtv.com/songs/60132912.mkv +吕方-同是寂寞人,http://em.21dtv.com/songs/60042681.mkv +吕方-同是寂寞人(演唱会),http://em.21dtv.com/songs/60042680.mkv +蔡佳麟-天色渐渐光,http://em.21dtv.com/songs/60041964.mkv +高乾赫-踏上江湖路,http://em.21dtv.com/songs/60101576.mkv +关牧村-天山红玫瑰,http://em.21dtv.com/songs/60041969.mkv +魏雪漫-天使的咒语,http://em.21dtv.com/songs/60042052.mkv +孙燕姿-天使的指纹,http://em.21dtv.com/songs/60097495.mkv +黄莺莺-天使的指纹(无原唱),http://em.21dtv.com/songs/60042051.mkv +阿东-天上的卓玛,http://em.21dtv.com/songs/60101190.mkv +天爱-天上的月亮,http://em.21dtv.com/songs/60130219.mkv +袁洁琼-天使的眼泪,http://em.21dtv.com/songs/60107202.mkv +纵贯线-天使的眼泪,http://em.21dtv.com/songs/60042050.mkv +李金泽-天使的眼泪,http://em.21dtv.com/songs/60042049.mkv +陆锋-天使的眼睛,http://em.21dtv.com/songs/60077892.mkv +云朵-天上的云儿,http://em.21dtv.com/songs/60072452.mkv +泽仁伍波-天上的亚丁,http://em.21dtv.com/songs/60121865.mkv +蔡丽津+兆邦-天生的一对(无原唱),http://em.21dtv.com/songs/60095886.mkv +高韩-天使的约定,http://em.21dtv.com/songs/60067482.mkv +马天宇-天使的选择,http://em.21dtv.com/songs/60097698.mkv +米线-天上的西藏,http://em.21dtv.com/songs/60083894.mkv +尼玛拉毛-天上的西藏,http://em.21dtv.com/songs/60041975.mkv +金珠卓玛-天上的西藏,http://em.21dtv.com/songs/60041974.mkv +阿斯根-天上的西藏,http://em.21dtv.com/songs/60041973.mkv +刘春云-天上的星星,http://em.21dtv.com/songs/60041978.mkv +郭颂-天上的星星,http://em.21dtv.com/songs/60041977.mkv +刘春云-天上的星星(演唱会),http://em.21dtv.com/songs/60041976.mkv +唐飞-台商的心声,http://em.21dtv.com/songs/60083864.mkv +黄西田-退色的相片,http://em.21dtv.com/songs/60081686.mkv +寂悸-听说的幸福,http://em.21dtv.com/songs/60135130.mkv +达尔吉-天上的西藏,http://em.21dtv.com/songs/60100489.mkv +晟瑶-天上的西藏,http://em.21dtv.com/songs/60085783.mkv +刘程伊-天使的微笑,http://em.21dtv.com/songs/60113301.mkv +翁虹-天使的微笑,http://em.21dtv.com/songs/60042048.mkv +阿军-天使的声音,http://em.21dtv.com/songs/60109674.mkv +玉米提-天山的思念,http://em.21dtv.com/songs/60118760.mkv +胡杰夕-天使的使命,http://em.21dtv.com/songs/60042047.mkv +张卫健-天使的手臂,http://em.21dtv.com/songs/60085786.mkv +群星-天使的手臂,http://em.21dtv.com/songs/60083896.mkv +向蕙玲-替身的情人,http://em.21dtv.com/songs/60041717.mkv +大隶+高恺蔚-天使的祈祷,http://em.21dtv.com/songs/60123804.mkv +王心凌-天使的偏执,http://em.21dtv.com/songs/60103445.mkv +美眉-天使的模样,http://em.21dtv.com/songs/60091842.mkv +秦艺天-天使的梦想,http://em.21dtv.com/songs/60094241.mkv +糖糖乐团-天使多美丽,http://em.21dtv.com/songs/60105286.mkv +彭学斌+四个彭友-天使的蜡烛(无原唱),http://em.21dtv.com/songs/60042042.mkv +金子嫣-天上的流云(无原唱),http://em.21dtv.com/songs/60041972.mkv +张敬轩-天使的礼物(演唱会),http://em.21dtv.com/songs/60042045.mkv +陈奕迅-天使的礼物(演唱会),http://em.21dtv.com/songs/60042044.mkv +江蕙-褪色的恋情,http://em.21dtv.com/songs/60043000.mkv +曾心梅-褪色的恋情,http://em.21dtv.com/songs/60042999.mkv +F.I.R.-天使都哭了,http://em.21dtv.com/songs/60098993.mkv +潘劲东-褪色的记忆(演唱会),http://em.21dtv.com/songs/60042998.mkv +乌兰齐齐格-天上的街市,http://em.21dtv.com/songs/60077886.mkv +东城卫-天使的距离,http://em.21dtv.com/songs/60042040.mkv +泳儿-天使的决定,http://em.21dtv.com/songs/60042041.mkv +王瑞霞+伍浩哲-褪色的感情,http://em.21dtv.com/songs/60042997.mkv +热们泽-天上的村庄,http://em.21dtv.com/songs/60128191.mkv +刘妍-天使的翅膀,http://em.21dtv.com/songs/60101048.mkv +孙露-天使的翅膀,http://em.21dtv.com/songs/60098258.mkv +范玮琪-天使的翅膀,http://em.21dtv.com/songs/60085784.mkv +徐健淇-天使的翅膀,http://em.21dtv.com/songs/60067481.mkv +安琥-天使的翅膀(演唱会),http://em.21dtv.com/songs/60061630.mkv +蔡小虎-褪色的彩笔,http://em.21dtv.com/songs/60042996.mkv +徐誉滕-天使的翅膀,http://em.21dtv.com/songs/60042039.mkv +安琥-天使的翅膀,http://em.21dtv.com/songs/60042038.mkv +李大海-天使的安排,http://em.21dtv.com/songs/60087996.mkv +李大海+闫婕-天使的安排,http://em.21dtv.com/songs/60087995.mkv +徐小凤-踏上成功路(无原唱),http://em.21dtv.com/songs/60041204.mkv +郑玉华-天使不折翼,http://em.21dtv.com/songs/60134307.mkv +蔡琴+王柏森-天使不夜城,http://em.21dtv.com/songs/60042036.mkv +那英+萱萱-天生不完美,http://em.21dtv.com/songs/60081588.mkv +张智霖-天生爱情狂,http://em.21dtv.com/songs/60069875.mkv +汤宝如-天生爱情狂,http://em.21dtv.com/songs/60041996.mkv +蔡秋凤-听人在风声,http://em.21dtv.com/songs/60042563.mkv +张悬-讨人厌的字,http://em.21dtv.com/songs/60087813.mkv +洪杰-突然想起你,http://em.21dtv.com/songs/60120712.mkv +林宥嘉-突然想起你,http://em.21dtv.com/songs/60077979.mkv +萧亚轩-突然想起你,http://em.21dtv.com/songs/60042937.mkv +萧亚轩-突然想起你(演唱会),http://em.21dtv.com/songs/60042936.mkv +韩红-突然想流泪,http://em.21dtv.com/songs/60042935.mkv +张杰-突然想爱你,http://em.21dtv.com/songs/60133674.mkv +容祖儿-突然想爱你,http://em.21dtv.com/songs/60120468.mkv +孙楠-突然想爱你,http://em.21dtv.com/songs/60108424.mkv +张杰-突然想爱你(演唱会),http://em.21dtv.com/songs/60083938.mkv +叶一茜-突然想爱你(演唱会),http://em.21dtv.com/songs/60072474.mkv +许茹芸-突然想爱你,http://em.21dtv.com/songs/60042934.mkv +丁当+周华健-突然想爱你,http://em.21dtv.com/songs/60042933.mkv +佚名-the river of no return,http://em.21dtv.com/songs/60005675.mkv +叶倩文+刘德华-投入每份爱,http://em.21dtv.com/songs/60042900.mkv +徐良-天然淋浴器,http://em.21dtv.com/songs/60125575.mkv +MICHAEL JACKSON-铁人历史4,http://em.21dtv.com/songs/60042487.mkv +MICHAEL JACKSON-铁人历史3,http://em.21dtv.com/songs/60042486.mkv +MICHAEL JACKSON-铁人历史2,http://em.21dtv.com/songs/60042485.mkv +MICHAEL JACKSON-铁人历史1,http://em.21dtv.com/songs/60042484.mkv +LEANN RIMES-the right kind of wrong,http://em.21dtv.com/songs/60005672.mkv +JEREMY JORDAN-the right kind of love,http://em.21dtv.com/songs/60005671.mkv +徐佳莹-突然好想你,http://em.21dtv.com/songs/60112701.mkv +古巨基-突然好想你,http://em.21dtv.com/songs/60108366.mkv +五月天-突然好想你,http://em.21dtv.com/songs/60042930.mkv +高夫-突然好想哭,http://em.21dtv.com/songs/60129815.mkv +林凡-突然很幸福,http://em.21dtv.com/songs/60077977.mkv +一青窈+SOIL&PIMPSESSIONS-他人の关系,http://em.21dtv.com/songs/60108258.mkv +伍佰-突然的自我(演唱会),http://em.21dtv.com/songs/60042927.mkv +黄小琥-突然的自我(演唱会),http://em.21dtv.com/songs/60042926.mkv +卢广仲-天然的最好,http://em.21dtv.com/songs/60107558.mkv +徐方-突然的想念,http://em.21dtv.com/songs/60086891.mkv +谭艳-突然的幸福,http://em.21dtv.com/songs/60115404.mkv +向蕙玲-天然的尚好,http://em.21dtv.com/songs/60064964.mkv +贡维特-突然的爱情,http://em.21dtv.com/songs/60106293.mkv +李祥祥-天气这么热,http://em.21dtv.com/songs/60086871.mkv +张学友-天气这么热,http://em.21dtv.com/songs/60041953.mkv +周张弛-同庆新年来,http://em.21dtv.com/songs/60077962.mkv +八大巨星-同庆新年好,http://em.21dtv.com/songs/60089145.mkv +余润泽-谈钱伤感情,http://em.21dtv.com/songs/60064944.mkv +希琪-跆拳道之恋,http://em.21dtv.com/songs/60115136.mkv +庞龙-踢球的孩子,http://em.21dtv.com/songs/60041683.mkv +陈诗慧-天桥不见了,http://em.21dtv.com/songs/60041955.mkv +叶幼琪-太平山抒怀(戏曲),http://em.21dtv.com/songs/60092418.mkv +佚名-the power of the dream,http://em.21dtv.com/songs/60005664.mkv +佚名-突破封锁线,http://em.21dtv.com/songs/60042923.mkv +郝云-逃跑的木偶,http://em.21dtv.com/songs/60077841.mkv +Pia Mia-Touch,http://em.21dtv.com/songs/60117482.mkv +Shift K3y-Touch,http://em.21dtv.com/songs/60110794.mkv +AIR SUPPLY-the one that you love(演唱会),http://em.21dtv.com/songs/60005654.mkv +JAKE OWEN-the one that got away,http://em.21dtv.com/songs/60071675.mkv +KATY PERRY-the one that got away,http://em.21dtv.com/songs/60063771.mkv +张然聍-TO ME,http://em.21dtv.com/songs/60123937.mkv +ROD STEWART-this old heart of mine,http://em.21dtv.com/songs/60005765.mkv +MCBRIDE+MARTINA-this ones for the girls,http://em.21dtv.com/songs/60005767.mkv +金秀炫-the one and only you,http://em.21dtv.com/songs/60074018.mkv +张嘉秀-痛你,http://em.21dtv.com/songs/60063376.mkv +兄弟联-疼你一辈子,http://em.21dtv.com/songs/60041664.mkv +TIZZY BAC-田纳西恰恰,http://em.21dtv.com/songs/60042337.mkv +戴军+雪村-听那些歌曲(演唱会),http://em.21dtv.com/songs/60042554.mkv +林志炫-the night we say goodbye,http://em.21dtv.com/songs/60005650.mkv +佚名-the next time i fall(无原唱),http://em.21dtv.com/songs/60005646.mkv +郑世豪-听你说愿意,http://em.21dtv.com/songs/60134297.mkv +郑世豪-听你说愿意,http://em.21dtv.com/songs/60131880.mkv +黄立行-鸵鸟式沉默,http://em.21dtv.com/songs/60043032.mkv +黄立行-驼鸟式沉默,http://em.21dtv.com/songs/60043030.mkv +蔡小虎-疼你若生命,http://em.21dtv.com/songs/60041663.mkv +ABBA-the name of the game,http://em.21dtv.com/songs/60005645.mkv +佚名-童年乐趣多,http://em.21dtv.com/songs/60042760.mkv +萧杰-童年海盗船,http://em.21dtv.com/songs/60114748.mkv +香菲-疼你归万年(无原唱),http://em.21dtv.com/songs/60041660.mkv +黄品冠-疼你的责任,http://em.21dtv.com/songs/60041659.mkv +张宇-疼你到最后,http://em.21dtv.com/songs/60091082.mkv +之妙董凯与点乐团-童年的星星,http://em.21dtv.com/songs/60121339.mkv +夏川-童年的时光,http://em.21dtv.com/songs/60119375.mkv +李晨-童年的时光,http://em.21dtv.com/songs/60113634.mkv +吴介贤-童年的时光,http://em.21dtv.com/songs/60064982.mkv +诺恩吉压组合-童年的家园,http://em.21dtv.com/songs/60069886.mkv +崔子格-童年的机场,http://em.21dtv.com/songs/60111035.mkv +李文华-童年的伙伴,http://em.21dtv.com/songs/60132537.mkv +马雨贤-童年的村庄,http://em.21dtv.com/songs/60042756.mkv +高枫+辛欣-天那边的爱,http://em.21dtv.com/songs/60081879.mkv +陈雷-头毛嘴须白(无原唱),http://em.21dtv.com/songs/60004240.mkv +杨亚林-痛埋在秋天,http://em.21dtv.com/songs/60042811.mkv +亦心-甜蜜在梦里,http://em.21dtv.com/songs/60121355.mkv +MAKE UP-天马座幻想,http://em.21dtv.com/songs/60083893.mkv +佚名-头毛嘴发白,http://em.21dtv.com/songs/60042886.mkv +胡丹丹-甜蜜协奏曲,http://em.21dtv.com/songs/60067491.mkv +崔恕-她们修正版,http://em.21dtv.com/songs/60087737.mkv +佚名-tell me what you dream,http://em.21dtv.com/songs/60005485.mkv +TERRY SKINNER-touch me when were dancing,http://em.21dtv.com/songs/60005897.mkv +KATHY TROCCOLI-tell me where it hurts,http://em.21dtv.com/songs/60005486.mkv +MICHAEL LEARNS TO ROCK-take me to your heart,http://em.21dtv.com/songs/60005446.mkv +林军-Take Me To The Star,http://em.21dtv.com/songs/60080638.mkv +阿信-take me to the star,http://em.21dtv.com/songs/60005445.mkv +A.GREEN+M.HODGES-take me to the river(无原唱),http://em.21dtv.com/songs/60005444.mkv +吕方-甜蜜十六岁,http://em.21dtv.com/songs/60042391.mkv +吕方-甜蜜十六岁(演唱会),http://em.21dtv.com/songs/60042390.mkv +佚名-甜蜜十六岁(无原唱),http://em.21dtv.com/songs/60042389.mkv +梅艳芳-童梦失魂夜,http://em.21dtv.com/songs/60092940.mkv +刘美君-甜蜜如软糖,http://em.21dtv.com/songs/60069880.mkv +张卫健-甜蜜如软糖(演唱会),http://em.21dtv.com/songs/60042388.mkv +金子乔-甜蜜巧克力,http://em.21dtv.com/songs/60062532.mkv +周杰伦-听妈妈的话(HD),http://em.21dtv.com/songs/60133487.mkv +周杰伦-听妈妈的话,http://em.21dtv.com/songs/60042551.mkv +雅立-treat me like a lady,http://em.21dtv.com/songs/60005924.mkv +S.I.N.G女团-甜蜜具现式,http://em.21dtv.com/songs/60119181.mkv +佚名-touch me in the morning,http://em.21dtv.com/songs/60005896.mkv +佚名-the more i see you,http://em.21dtv.com/songs/60005633.mkv +AUDIO PUSH-teach me how to jerk,http://em.21dtv.com/songs/60073980.mkv +中国好声音第二季-Take Me Hom Country Roads(塔斯肯),http://em.21dtv.com/songs/60081521.mkv +JOHN DENVER-take me home country roads,http://em.21dtv.com/songs/60005443.mkv +ジョン.デンバー-take me home country roads(无原唱),http://em.21dtv.com/songs/60005442.mkv +蔡佳麟+丁姵均-甜蜜的责任,http://em.21dtv.com/songs/60117190.mkv +徐若瑄-甜蜜的折磨,http://em.21dtv.com/songs/60042376.mkv +强辩乐团-甜蜜的愿望,http://em.21dtv.com/songs/60042375.mkv +邓丽君-甜蜜的小雨,http://em.21dtv.com/songs/60042374.mkv +红蔷薇-甜蜜的邂逅,http://em.21dtv.com/songs/60105289.mkv +陈冠霖-他们多幸福,http://em.21dtv.com/songs/60061613.mkv +佚名-甜蜜的往事,http://em.21dtv.com/songs/60042373.mkv +许冠杰-甜蜜的往事,http://em.21dtv.com/songs/60042372.mkv +李千娜-甜美的绳索,http://em.21dtv.com/songs/60121767.mkv +山野-甜蜜的伤口,http://em.21dtv.com/songs/60042370.mkv +江蕙-甜蜜的世界,http://em.21dtv.com/songs/60042371.mkv +陈思安-甜蜜的情歌,http://em.21dtv.com/songs/60042369.mkv +春妹-甜美的秘密,http://em.21dtv.com/songs/60042355.mkv +约瑟翰 庞麦郎-他们的力量,http://em.21dtv.com/songs/60106182.mkv +张国荣-甜蜜的禁果(无原唱),http://em.21dtv.com/songs/60042366.mkv +草蜢-甜蜜的回忆,http://em.21dtv.com/songs/60042364.mkv +阿拉泰-甜蜜的故乡,http://em.21dtv.com/songs/60115478.mkv +许茹芸-他们的故事,http://em.21dtv.com/songs/60041092.mkv +沈建豪-甜蜜的负担,http://em.21dtv.com/songs/60086882.mkv +陈伟-他们都猜错,http://em.21dtv.com/songs/60041093.mkv +张清芳-他们的爱情,http://em.21dtv.com/songs/60041091.mkv +天心-甜蜜白皮书(无原唱),http://em.21dtv.com/songs/60042361.mkv +林姗-甜蜜变苦味,http://em.21dtv.com/songs/60042362.mkv +费翔+朱桦-天亮再回去,http://em.21dtv.com/songs/60041924.mkv +刘德华-铁了心爱你,http://em.21dtv.com/songs/60042478.mkv +金歌-天路通拉萨,http://em.21dtv.com/songs/60041932.mkv +蓝又时-天亮说晚安,http://em.21dtv.com/songs/60131790.mkv +蓝又时-天亮说晚安,http://em.21dtv.com/songs/60130720.mkv +陈晓东-天亮说晚安,http://em.21dtv.com/songs/60041919.mkv +佚名-太姥山童谣(演唱会),http://em.21dtv.com/songs/60041336.mkv +范巧惠-太姥山母爱,http://em.21dtv.com/songs/60041335.mkv +阿华-天亮说分手,http://em.21dtv.com/songs/60077879.mkv +潘秀琼-褪了色的梦(演唱会),http://em.21dtv.com/songs/60077990.mkv +胡苏-天亮前消失,http://em.21dtv.com/songs/60061629.mkv +吕方-天老情未老,http://em.21dtv.com/songs/60041904.mkv +袁宝川-听老婆的话,http://em.21dtv.com/songs/60124461.mkv +佚名-塔里木之歌,http://em.21dtv.com/songs/60041186.mkv +周鹏-塔里木姑娘,http://em.21dtv.com/songs/60041184.mkv +佚名-提篮假烧金,http://em.21dtv.com/songs/60095417.mkv +陈洁仪-天冷就回来,http://em.21dtv.com/songs/60041905.mkv +邱锋泽-天亮就分开,http://em.21dtv.com/songs/60102789.mkv +谭锡禧-tell laura i love her(演唱会),http://em.21dtv.com/songs/60082354.mkv +莫旭秋-tell laura i love her(演唱会),http://em.21dtv.com/songs/60073983.mkv +RAY PETERSON-tell laura i love her,http://em.21dtv.com/songs/60005482.mkv +TONY BENNETT+LADY GAGA-the lady is a tramp,http://em.21dtv.com/songs/60074011.mkv +李泽坚-痛了还想爱,http://em.21dtv.com/songs/60099313.mkv +卓依婷-天亮好开船,http://em.21dtv.com/songs/60089178.mkv +于文华+尹相杰-天亮好开船,http://em.21dtv.com/songs/60041911.mkv +银临-天凉好个秋,http://em.21dtv.com/songs/60083889.mkv +锦绣二重唱-天凉好个秋,http://em.21dtv.com/songs/60041908.mkv +佚名-太鲁阁之恋,http://em.21dtv.com/songs/60041337.mkv +张艳君-吐鲁番风情,http://em.21dtv.com/songs/60121668.mkv +李腾-托莱多小镇(演唱会),http://em.21dtv.com/songs/60043002.mkv +许富凯-偷泪的小偷,http://em.21dtv.com/songs/60130742.mkv +藤兮-停留的瞬间,http://em.21dtv.com/songs/60077953.mkv +KATE MILLER HEIDKE-the last day on earth,http://em.21dtv.com/songs/60074013.mkv +蔡琴-塔里的女人,http://em.21dtv.com/songs/60041183.mkv +叶瑗菱-塔里的女人(无原唱),http://em.21dtv.com/songs/60041182.mkv +陈升-塔里的男孩(无原唱),http://em.21dtv.com/songs/60041181.mkv +于文华-土楼的春天,http://em.21dtv.com/songs/60125084.mkv +张长绫-塔里的爱情(无原唱),http://em.21dtv.com/songs/60041180.mkv +张燕清+洪百慧-天冷才知情,http://em.21dtv.com/songs/60069870.mkv +佚名-同款这条路(无原唱),http://em.21dtv.com/songs/60042672.mkv +雷佳-推开这扇门,http://em.21dtv.com/songs/60135967.mkv +谢霆锋-天空这么大,http://em.21dtv.com/songs/60041890.mkv +吴彤-天空一片蓝,http://em.21dtv.com/songs/60041888.mkv +罗国礼-天空又落水,http://em.21dtv.com/songs/60095840.mkv +李小鹿-天空下着雨,http://em.21dtv.com/songs/60088011.mkv +邱永传-痛苦算什么,http://em.21dtv.com/songs/60072473.mkv +甲子慧-同款女人心,http://em.21dtv.com/songs/60112127.mkv +叶启田-痛苦女人心,http://em.21dtv.com/songs/60042803.mkv +蔡秋凤-天块流目屎,http://em.21dtv.com/songs/60041893.mkv +殷正洋-天空蓝蓝的(演唱会),http://em.21dtv.com/songs/60041884.mkv +徐立-掏空了快乐,http://em.21dtv.com/songs/60077838.mkv +蔡文晶-天空里的云,http://em.21dtv.com/songs/60085780.mkv +张皓宇-痛快哭一场(舞曲版),http://em.21dtv.com/songs/60077972.mkv +张皓宇-痛快哭一场,http://em.21dtv.com/songs/60064985.mkv +超泉RZ组合-天空会下雨,http://em.21dtv.com/songs/60085779.mkv +超泉RZ组合-天空会下雨(舞曲版),http://em.21dtv.com/songs/60085778.mkv +万清泉-天空会下雨,http://em.21dtv.com/songs/60067478.mkv +蒙恩使女-天空的座位,http://em.21dtv.com/songs/60041882.mkv +JS-天空的颜色,http://em.21dtv.com/songs/60041881.mkv +伍佰+China Blue-仝款的月娘,http://em.21dtv.com/songs/60132194.mkv +彭莉-同款的月光(无原唱),http://em.21dtv.com/songs/60042671.mkv +香香-痛苦的网恋,http://em.21dtv.com/songs/60100644.mkv +佚名-偷哭的日子,http://em.21dtv.com/songs/60042827.mkv +桑紫菲-天空的泪水,http://em.21dtv.com/songs/60110317.mkv +佚名-痛苦的呼唤,http://em.21dtv.com/songs/60042801.mkv +高韩-痛苦的等候,http://em.21dtv.com/songs/60067495.mkv +苏打绿-痛快的哀艳,http://em.21dtv.com/songs/60116221.mkv +佚名-天块创治人,http://em.21dtv.com/songs/60041892.mkv +詹雅雯-头壳抱咧烧,http://em.21dtv.com/songs/60110512.mkv +李思雅-太空爱漫游,http://em.21dtv.com/songs/60041331.mkv +叶振棠-太极张三丰(演唱会),http://em.21dtv.com/songs/60041327.mkv +张鹤-天津邀请你,http://em.21dtv.com/songs/60105880.mkv +冷漠-贪就一个字,http://em.21dtv.com/songs/60087367.mkv +孙彭飞-天净沙思念,http://em.21dtv.com/songs/60077874.mkv +阿杜-听见牛在哭,http://em.21dtv.com/songs/60042549.mkv +刘恺威-偷进你的梦,http://em.21dtv.com/songs/60092363.mkv +王中平-痛就哭出声,http://em.21dtv.com/songs/60115287.mkv +黄西田-头家甲辛劳,http://em.21dtv.com/songs/60042882.mkv +白致瑶-土家摆手舞,http://em.21dtv.com/songs/60117072.mkv +容祖儿-途经北海道,http://em.21dtv.com/songs/60103215.mkv +容祖儿-途径北海道,http://em.21dtv.com/songs/60071195.mkv +熊宝贝乐团-this is what i want,http://em.21dtv.com/songs/60074040.mkv +熊宝贝乐团-thts is what i want,http://em.21dtv.com/songs/60071677.mkv +孙燕姿-that i would be good,http://em.21dtv.com/songs/60005521.mkv +Meghan Trainor-Title,http://em.21dtv.com/songs/60124946.mkv +G.RICHRATH-take it on the run(无原唱),http://em.21dtv.com/songs/60005440.mkv +佚名-time is on my side,http://em.21dtv.com/songs/60005806.mkv +佚名-try it on my own,http://em.21dtv.com/songs/60005947.mkv +林育群-tonight i m not alone,http://em.21dtv.com/songs/60074054.mkv +林育群-tonight im not alone,http://em.21dtv.com/songs/60063776.mkv +FABOLOUS+THE DREAM-throw it in the bag,http://em.21dtv.com/songs/60074045.mkv +MICHELLE BRANCH-till i get over you,http://em.21dtv.com/songs/60005801.mkv +苏丁琦-Tiger,http://em.21dtv.com/songs/60127327.mkv +袁娅维-T.I.A,http://em.21dtv.com/songs/60126166.mkv +高向鹏+许巧盈-讨海捉渔人,http://em.21dtv.com/songs/60041618.mkv +刘德华-偷回忆的人,http://em.21dtv.com/songs/60042826.mkv +耿乐-土豪也懂爱,http://em.21dtv.com/songs/60099450.mkv +郭富城-童话小公主,http://em.21dtv.com/songs/60042743.mkv +刘海波-桃花为谁红,http://em.21dtv.com/songs/60041587.mkv +大刚-桃花为你开,http://em.21dtv.com/songs/60077843.mkv +方瑞娥-桃花望春期,http://em.21dtv.com/songs/60125619.mkv +花儿乐队-童话生死恋,http://em.21dtv.com/songs/60042740.mkv +S.H.E-他还是不懂,http://em.21dtv.com/songs/60041081.mkv +佚名-桃花泣血记,http://em.21dtv.com/songs/60041585.mkv +陆虎-天黑请闭眼,http://em.21dtv.com/songs/60080234.mkv +罗乐-桃花满天红,http://em.21dtv.com/songs/60041584.mkv +牛马丁+郑仪-讨海掠渔人,http://em.21dtv.com/songs/60041617.mkv +施星伊-童话里奔跑,http://em.21dtv.com/songs/60077967.mkv +徐海星-treat her like a lady,http://em.21dtv.com/songs/60074060.mkv +佚名-treat her like a lady,http://em.21dtv.com/songs/60005923.mkv +CELINE DION-treat her like a lady,http://em.21dtv.com/songs/60005922.mkv +张伊慧-土豪结婚吧,http://em.21dtv.com/songs/60105813.mkv +林渃晗-天黑还很远,http://em.21dtv.com/songs/60112798.mkv +张可儿-土豪点秋香,http://em.21dtv.com/songs/60098337.mkv +张可儿+小楠-土豪点秋香,http://em.21dtv.com/songs/60097483.mkv +张铠潼-听谎的女人,http://em.21dtv.com/songs/60042544.mkv +徐丽萩莎-童话大梦王,http://em.21dtv.com/songs/60042735.mkv +何龙雨-土豪大咖秀,http://em.21dtv.com/songs/60113256.mkv +丫蛋+汤潮-桃花朵朵开[二人转版],http://em.21dtv.com/songs/60101243.mkv +于童-桃花朵朵开,http://em.21dtv.com/songs/60090510.mkv +含笑-桃花朵朵开,http://em.21dtv.com/songs/60089732.mkv +阿牛-桃花朵朵开,http://em.21dtv.com/songs/60041566.mkv +李琳-天河藏布江,http://em.21dtv.com/songs/60133824.mkv +周慧敏-天荒爱未老,http://em.21dtv.com/songs/60041864.mkv +王爱奉+张伟-童话啊童话,http://em.21dtv.com/songs/60106120.mkv +袁冰-桃花阿妹频,http://em.21dtv.com/songs/60100457.mkv +杨宗宪-天甘有在看,http://em.21dtv.com/songs/60041814.mkv +童唱-探戈小黑猫,http://em.21dtv.com/songs/60041476.mkv +群星-涛哥我爱你,http://em.21dtv.com/songs/60088464.mkv +雪村-涛哥我爱你,http://em.21dtv.com/songs/60041527.mkv +洪榮宏-天公疼憨子,http://em.21dtv.com/songs/60095770.mkv +佚名-天公疼憨人,http://em.21dtv.com/songs/60041828.mkv +黄西田-天公疼憨人,http://em.21dtv.com/songs/60041827.mkv +曾心梅-天公疼憨人,http://em.21dtv.com/songs/60041826.mkv +成于申-天高任你飞,http://em.21dtv.com/songs/60118592.mkv +佚名-the green leaves of summer,http://em.21dtv.com/songs/60005603.mkv +佚名-the greatest love of all,http://em.21dtv.com/songs/60005602.mkv +苏珊-the greatest love of all(演唱会),http://em.21dtv.com/songs/60005601.mkv +图桠格-腾格里大漠,http://em.21dtv.com/songs/60064953.mkv +王建杰-听歌讲故事,http://em.21dtv.com/songs/60042533.mkv +MARIAH CAREY+98 DEGREES-thank god i found you,http://em.21dtv.com/songs/60005509.mkv +张秀卿-听歌的心晟,http://em.21dtv.com/songs/60042532.mkv +薛凯琪-天国的微笑,http://em.21dtv.com/songs/60041836.mkv +刘忻+DL-糖果的味道,http://em.21dtv.com/songs/60077833.mkv +邓凌-天国的记忆,http://em.21dtv.com/songs/60041835.mkv +泽仁伍波-听歌的姑娘,http://em.21dtv.com/songs/60120702.mkv +丁艳-腾飞中国梦,http://em.21dtv.com/songs/60125060.mkv +熊七梅-腾飞中国龙,http://em.21dtv.com/songs/60077857.mkv +JOHN LENNON-the fool on the hill,http://em.21dtv.com/songs/60005591.mkv +HIGH CONTRAST+TIESTO+UNDERWORL-the first note is silent,http://em.21dtv.com/songs/60074006.mkv +TWINS-the farmer in the dell,http://em.21dtv.com/songs/60005583.mkv +李直-腾飞防城港,http://em.21dtv.com/songs/60067473.mkv +唐飞-唐飞的心声(无原唱),http://em.21dtv.com/songs/60041490.mkv +米卫强-腾飞的南岭,http://em.21dtv.com/songs/60061624.mkv +王珺-腾飞的巨龙,http://em.21dtv.com/songs/60061623.mkv +蒋蒋-颓废的孤独,http://em.21dtv.com/songs/60106257.mkv +张俊-腾飞的翅膀,http://em.21dtv.com/songs/60085772.mkv +侯南宇-腾飞吧猎塔,http://em.21dtv.com/songs/60041675.mkv +庄秋玉-腾飞吧海口,http://em.21dtv.com/songs/60126851.mkv +彭浩-屠夫爱上猪,http://em.21dtv.com/songs/60125555.mkv +彭浩-屠夫爱上猪,http://em.21dtv.com/songs/60117749.mkv +张菲-theme from a summer place,http://em.21dtv.com/songs/60005734.mkv +柯羽-土耳其之恋,http://em.21dtv.com/songs/60121828.mkv +女声-the end of the world,http://em.21dtv.com/songs/60005578.mkv +男声-the end of the world,http://em.21dtv.com/songs/60005577.mkv +KENT DEE-the end of the world,http://em.21dtv.com/songs/60005576.mkv +BONNIE TYLER-total eclipse of the heart,http://em.21dtv.com/songs/60066743.mkv +佚名-total eclipse of the heart,http://em.21dtv.com/songs/60005894.mkv +吉克隽逸+刘欢-天地在我心,http://em.21dtv.com/songs/60069599.mkv +刘欢-天地在我心,http://em.21dtv.com/songs/60041799.mkv +刘欢+孙楠-天地在我心(演唱会),http://em.21dtv.com/songs/60041798.mkv +吴亚玲-头戴一枝花,http://em.21dtv.com/songs/60042870.mkv +M2M-the day you went away,http://em.21dtv.com/songs/60005571.mkv +许富凯-天地一声笑,http://em.21dtv.com/songs/60123166.mkv +苏有朋-天地一沙鸥(演唱会),http://em.21dtv.com/songs/60041795.mkv +马浚伟-头顶一片天,http://em.21dtv.com/songs/60112390.mkv +华音群星-同顶一片天,http://em.21dtv.com/songs/60105670.mkv +黄一飞-天顶一粒星,http://em.21dtv.com/songs/60041808.mkv +彭丽媛-天地喜洋洋(演唱会),http://em.21dtv.com/songs/60041792.mkv +迪克牛仔-听到我心碎,http://em.21dtv.com/songs/60093234.mkv +许志豪+林良欢-天地问相思,http://em.21dtv.com/songs/60041790.mkv +小贱-她对我说谎,http://em.21dtv.com/songs/60103242.mkv +谢金晶-天地无目睭,http://em.21dtv.com/songs/60105376.mkv +品冠-他对我很好,http://em.21dtv.com/songs/60120415.mkv +林夏-她的他的她,http://em.21dtv.com/songs/60109457.mkv +林沫辰-她的他的她,http://em.21dtv.com/songs/60102397.mkv +张寒-天地任我行,http://em.21dtv.com/songs/60126874.mkv +任承浩-天地任我行,http://em.21dtv.com/songs/60071178.mkv +佚名-the dock of the bay,http://em.21dtv.com/songs/60005574.mkv +MICHAEL BOLTON-the dock of the bay,http://em.21dtv.com/songs/60005573.mkv +张凯伦-天顶满天星,http://em.21dtv.com/songs/60058271.mkv +唐飞-天顶落红雨,http://em.21dtv.com/songs/60077868.mkv +桂莹莹-她的空房间,http://em.21dtv.com/songs/60132630.mkv +SHANIA TWAIN-that dont impress me much,http://em.21dtv.com/songs/60005519.mkv +曲雨桐-挑到花了眼,http://em.21dtv.com/songs/60103329.mkv +火风-土豆花儿开(演唱会),http://em.21dtv.com/songs/60085810.mkv +陈雅伦-贪多个夜晚,http://em.21dtv.com/songs/60041417.mkv +潘越云-天顶的月娘,http://em.21dtv.com/songs/60041805.mkv +曾春年+丽菲-天大的幸福,http://em.21dtv.com/songs/60109404.mkv +罗汉-天顶的流星,http://em.21dtv.com/songs/60041803.mkv +丁冠森-头大的爱情,http://em.21dtv.com/songs/60121322.mkv +满文军-天地苍茫时,http://em.21dtv.com/songs/60091638.mkv +佚名-汤岛白梅记,http://em.21dtv.com/songs/60041483.mkv +钱红-痛到不会哭,http://em.21dtv.com/songs/60072472.mkv +容祖儿+吴浩康-他都不爱我,http://em.21dtv.com/songs/60041079.mkv +龙军-同唱一首歌,http://em.21dtv.com/songs/60042654.mkv +林乙琴-提出勇气歌(无原唱),http://em.21dtv.com/songs/60041686.mkv +董赫男-同抽一根烟,http://em.21dtv.com/songs/60088579.mkv +李泉-天才与尘埃,http://em.21dtv.com/songs/60115226.mkv +李泉-天才与尘埃,http://em.21dtv.com/songs/60083880.mkv +佚名-天才与白痴,http://em.21dtv.com/songs/60041764.mkv +许冠杰-天才与白痴,http://em.21dtv.com/songs/60041763.mkv +古巨基-天才与白痴,http://em.21dtv.com/songs/60041762.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-同唱幸福年,http://em.21dtv.com/songs/60077959.mkv +林玉英-同床无同梦,http://em.21dtv.com/songs/60042659.mkv +赤道2-天才碰麻瓜,http://em.21dtv.com/songs/60083879.mkv +华语群星-天才碰麻瓜,http://em.21dtv.com/songs/60080991.mkv +LAUREN CHRISTY-the colour of the night,http://em.21dtv.com/songs/60005567.mkv +CHRISTY LAUREN-the color of the night,http://em.21dtv.com/songs/60005565.mkv +CELINE DION-the colour of my love,http://em.21dtv.com/songs/60005566.mkv +郭娅丽-天赐蒙古包,http://em.21dtv.com/songs/60068707.mkv +曾辉彬-同创客家歌,http://em.21dtv.com/songs/60042662.mkv +郭桂彬-脱赤脚的阮(无原唱),http://em.21dtv.com/songs/60043013.mkv +佚名-three coins in the fountain,http://em.21dtv.com/songs/60005781.mkv +男声-three coins in the fountain,http://em.21dtv.com/songs/60005780.mkv +刘德华-踢出个未来,http://em.21dtv.com/songs/60041679.mkv +刘德华-踢出个未来(演唱会),http://em.21dtv.com/songs/60041678.mkv +李金泽-天翅的眼泪,http://em.21dtv.com/songs/60041769.mkv +林玉英-同床不同梦,http://em.21dtv.com/songs/60095688.mkv +许冠杰-天才白痴梦,http://em.21dtv.com/songs/60093137.mkv +苏妙玲-天才白痴梦,http://em.21dtv.com/songs/60072446.mkv +陈百强-天才白痴梦,http://em.21dtv.com/songs/60041756.mkv +张惠妹-天才白痴梦(演唱会),http://em.21dtv.com/songs/60041755.mkv +许志安-天才白痴梦(演唱会),http://em.21dtv.com/songs/60041754.mkv +任贤齐+周华健-天才白痴梦(演唱会),http://em.21dtv.com/songs/60041753.mkv +SOLER-天才白痴梦(演唱会),http://em.21dtv.com/songs/60041752.mkv +SHINEDOWN-the crow and the butterfly,http://em.21dtv.com/songs/60005568.mkv +谢霆锋-挞出爱火花,http://em.21dtv.com/songs/60041189.mkv +李英宏-台北直直撞,http://em.21dtv.com/songs/60124091.mkv +詹雅雯-台北追想曲,http://em.21dtv.com/songs/60041258.mkv +余天-台北追想曲(无原唱),http://em.21dtv.com/songs/60041257.mkv +陈盈洁-台北追想曲(无原唱),http://em.21dtv.com/songs/60041256.mkv +赵之涵-痛不再心动,http://em.21dtv.com/songs/60104449.mkv +STEPHY+COOKIES-他不准我哭,http://em.21dtv.com/songs/60041063.mkv +邓丽欣-他不准我哭(演唱会),http://em.21dtv.com/songs/60041062.mkv +佚名-天边一只雁,http://em.21dtv.com/songs/60041739.mkv +谭咏麟-天边一只雁(演唱会),http://em.21dtv.com/songs/60041738.mkv +洪荣宏-台北雨夜情,http://em.21dtv.com/songs/60041255.mkv +林展逸-头摆又头摆,http://em.21dtv.com/songs/60042868.mkv +陈思思-天边有个你,http://em.21dtv.com/songs/60067475.mkv +佚名-台北迎城隍,http://em.21dtv.com/songs/60041253.mkv +罗时丰-台北迎城隍,http://em.21dtv.com/songs/60041252.mkv +李行亮-特别想念你,http://em.21dtv.com/songs/60119671.mkv +陈星-特别想念你,http://em.21dtv.com/songs/60041643.mkv +徐若瑄-台北下了雪,http://em.21dtv.com/songs/60041250.mkv +陈水扁-台北新故乡(无原唱),http://em.21dtv.com/songs/60096003.mkv +佚名-台北新故乡(无原唱),http://em.21dtv.com/songs/60041251.mkv +张露+黄源尹-谈不完的爱,http://em.21dtv.com/songs/60041432.mkv +帅儿-淘宝淘老公,http://em.21dtv.com/songs/60118531.mkv +陈升-她不是我的,http://em.21dtv.com/songs/60041142.mkv +陈洁仪-他不适合你,http://em.21dtv.com/songs/60041060.mkv +王若琳-the bug窃听虫,http://em.21dtv.com/songs/60074002.mkv +秀兰玛雅-台北青红灯,http://em.21dtv.com/songs/60041239.mkv +张柏芝-他不配爱我,http://em.21dtv.com/songs/60092625.mkv +THE FUTUREHEADS-the beginning of the twist,http://em.21dtv.com/songs/60005546.mkv +佚名-the battle of new orleans,http://em.21dtv.com/songs/60005544.mkv +久登-台北冷清清,http://em.21dtv.com/songs/60077804.mkv +佚名-停不了的爱,http://em.21dtv.com/songs/60042624.mkv +叶瑷菱-停不了的爱,http://em.21dtv.com/songs/60042623.mkv +苏永康+杨千嬅-停不了的爱,http://em.21dtv.com/songs/60042622.mkv +雷安娜+胡渭康-停不了的爱(演唱会),http://em.21dtv.com/songs/60042621.mkv +齐秦-痛并快乐着,http://em.21dtv.com/songs/60117419.mkv +魏然-痛并快乐着,http://em.21dtv.com/songs/60104681.mkv +齐秦-痛并快乐着,http://em.21dtv.com/songs/60042785.mkv +HOMME-听不见的话,http://em.21dtv.com/songs/60071191.mkv +王欢-天边花正香,http://em.21dtv.com/songs/60064956.mkv +叶瑷菱-台北红玫瑰,http://em.21dtv.com/songs/60041232.mkv +罗大佑-台北红玫瑰,http://em.21dtv.com/songs/60041231.mkv +黄瑗菱-台北红玫瑰,http://em.21dtv.com/songs/60041230.mkv +何静-天边格桑花,http://em.21dtv.com/songs/60068706.mkv +王谨轩-他不该你爱,http://em.21dtv.com/songs/60085758.mkv +卫兰-他不惯被爱,http://em.21dtv.com/songs/60072435.mkv +辛龙-听不到自己,http://em.21dtv.com/songs/60042517.mkv +琼雪卓玛-天边的西藏,http://em.21dtv.com/songs/60062841.mkv +王芷蕾-台北的天空,http://em.21dtv.com/songs/60041223.mkv +蔡献华+天外飞仙-天边的思念,http://em.21dtv.com/songs/60041736.mkv +叶一茜-特别的时光,http://em.21dtv.com/songs/60108367.mkv +叶一茜-特别的时光,http://em.21dtv.com/songs/60106669.mkv +冰雪姐妹-天边的玛沁,http://em.21dtv.com/songs/60041734.mkv +罗海英-天边的骆驼,http://em.21dtv.com/songs/60112142.mkv +呼斯楞-天边的骆驼,http://em.21dtv.com/songs/60106720.mkv +蒋大为-天边的骆驼,http://em.21dtv.com/songs/60041733.mkv +央金兰泽-天边的浪漫,http://em.21dtv.com/songs/60068705.mkv +布仁巴雅尔-天边的家乡,http://em.21dtv.com/songs/60101338.mkv +郎尼阿彬-天边的金马,http://em.21dtv.com/songs/60041731.mkv +周传雄-台北的寂寞,http://em.21dtv.com/songs/60041222.mkv +金莎-天边的眷恋,http://em.21dtv.com/songs/60041732.mkv +温兆伦-台北的机场,http://em.21dtv.com/songs/60041221.mkv +陈诗妮-蜕变的蝴蝶,http://em.21dtv.com/songs/60118169.mkv +韩冰-天边的故乡,http://em.21dtv.com/songs/60114882.mkv +蔡枫华-突爆的光芒(演唱会),http://em.21dtv.com/songs/60061637.mkv +黄舒骏-听不懂的话,http://em.21dtv.com/songs/60042518.mkv +乌兰托娅-天边的爱人,http://em.21dtv.com/songs/60104767.mkv +追风组合-天边的阿妈,http://em.21dtv.com/songs/60120987.mkv +北原山猫-台北的暗暝(无原唱),http://em.21dtv.com/songs/60041220.mkv +炎亚纶-台北沉睡了,http://em.21dtv.com/songs/60081423.mkv +汪定中-听爸爸的话,http://em.21dtv.com/songs/60125854.mkv +周杰伦-听爸爸的话,http://em.21dtv.com/songs/60109226.mkv +周杰伦-听爸爸的话,http://em.21dtv.com/songs/60107595.mkv +汪定中-听爸爸的话,http://em.21dtv.com/songs/60107020.mkv +周杰伦-听爸爸的话,http://em.21dtv.com/songs/60106702.mkv +敖令-她不爱我了,http://em.21dtv.com/songs/60062216.mkv +童唱-铁臂阿童木,http://em.21dtv.com/songs/60042467.mkv +解晓东-铁臂阿童木(演唱会),http://em.21dtv.com/songs/60042466.mkv +H.NEWMAN-the birds and the bees(无原唱),http://em.21dtv.com/songs/60005553.mkv +张玉华-听爱情走过,http://em.21dtv.com/songs/60042506.mkv +黄子韬-T.A.O,http://em.21dtv.com/songs/60114297.mkv +张芸瑞-疼爱你的人,http://em.21dtv.com/songs/60064951.mkv +CARPENTERS-theres a kind of hush,http://em.21dtv.com/songs/60005744.mkv +洪颜-同安好所在,http://em.21dtv.com/songs/60042647.mkv +群星-thank abba for the music,http://em.21dtv.com/songs/60005508.mkv +涓子-痛爱的滋味,http://em.21dtv.com/songs/60105221.mkv +ABBA-take a chance on me,http://em.21dtv.com/songs/60005435.mkv +吉杰-疼 啊博博,http://em.21dtv.com/songs/60081910.mkv +刘文正-谁在眨眼睛,http://em.21dtv.com/songs/60040164.mkv +赵明-狮子座情话,http://em.21dtv.com/songs/60090225.mkv +吴沙-守住这份情,http://em.21dtv.com/songs/60127833.mkv +郭术军-嫂子祝福你,http://em.21dtv.com/songs/60095107.mkv +女F4-实在真歹势,http://em.21dtv.com/songs/60039172.mkv +白冰冰-实在有影枪,http://em.21dtv.com/songs/60039171.mkv +洪荣宏-实在有影美,http://em.21dtv.com/songs/60039170.mkv +谭咏麟-是这一个家,http://em.21dtv.com/songs/60039538.mkv +焰烽-神舟焰烽号,http://em.21dtv.com/songs/60072385.mkv +张崇基+张崇德-始终相信爱(演唱会),http://em.21dtv.com/songs/60064880.mkv +田田-谁在想念我,http://em.21dtv.com/songs/60123030.mkv +陈思思-山寨新故事,http://em.21dtv.com/songs/60037697.mkv +宋祖英-深圳湾情歌,http://em.21dtv.com/songs/60090961.mkv +丁思忖-谁在听情歌,http://em.21dtv.com/songs/60118291.mkv +龙千玉-随在天欢喜,http://em.21dtv.com/songs/60040959.mkv +侃侃-山楂树之恋,http://em.21dtv.com/songs/60083751.mkv +冷漠-山楂树之恋,http://em.21dtv.com/songs/60083750.mkv +徐千雅-山楂树之恋,http://em.21dtv.com/songs/60077500.mkv +谢妤-山楂树之恋,http://em.21dtv.com/songs/60037695.mkv +东来东往-山楂树之恋,http://em.21dtv.com/songs/60037694.mkv +林少珊-书中情意深,http://em.21dtv.com/songs/60039738.mkv +陈雅森-试着去接受,http://em.21dtv.com/songs/60122251.mkv +黑龙-射中丘比特,http://em.21dtv.com/songs/60038239.mkv +罗文-始终你最好,http://em.21dtv.com/songs/60039193.mkv +凌志辉-始终难舍你,http://em.21dtv.com/songs/60066317.mkv +林慧省-谁知女人心,http://em.21dtv.com/songs/60135432.mkv +何洁-睡在你怀中,http://em.21dtv.com/songs/60040297.mkv +洪荣宏-手中玫瑰花,http://em.21dtv.com/songs/60135514.mkv +金莎-手指另一端,http://em.21dtv.com/songs/60069831.mkv +黎明-说再见以前(无原唱),http://em.21dtv.com/songs/60040437.mkv +佚名-双座脚踏车,http://em.21dtv.com/songs/60039914.mkv +Supper moment-说再见了吧,http://em.21dtv.com/songs/60134805.mkv +SOLER-神州99号,http://em.21dtv.com/songs/60099702.mkv +SOLER-神州99号(演唱会),http://em.21dtv.com/songs/60064858.mkv +韦萱-十周嫁出去,http://em.21dtv.com/songs/60115521.mkv +王佳佳-苏州河之恋,http://em.21dtv.com/songs/60120748.mkv +群星-深圳欢迎您,http://em.21dtv.com/songs/60061574.mkv +张国荣-始终会行运,http://em.21dtv.com/songs/60039192.mkv +郭富城-是最好人生,http://em.21dtv.com/songs/60039540.mkv +朱虹-苏州好风光,http://em.21dtv.com/songs/60102316.mkv +刀郎-沙枣花儿香(演唱会),http://em.21dtv.com/songs/60037482.mkv +王莉-神州共举杯,http://em.21dtv.com/songs/60038515.mkv +罗汉-谁在感动我,http://em.21dtv.com/songs/60072421.mkv +安琥+苗帅锋-上阵父子兵,http://em.21dtv.com/songs/60038067.mkv +伊人佳人组合-深圳的早晨(女声版),http://em.21dtv.com/songs/60083782.mkv +伊人佳人组合-深圳的早晨(男声版),http://em.21dtv.com/songs/60083781.mkv +李享-深圳的早晨,http://em.21dtv.com/songs/60069801.mkv +迪克牛仔-傻子的约定,http://em.21dtv.com/songs/60037564.mkv +周思琼-谁真的痛了,http://em.21dtv.com/songs/60102048.mkv +徐经伦.阿逗-神州东方红,http://em.21dtv.com/songs/60094119.mkv +杨千嬅-水中的都市,http://em.21dtv.com/songs/60040264.mkv +陈百潭-水中的爱情,http://em.21dtv.com/songs/60128549.mkv +陈百潭-水中的爱情,http://em.21dtv.com/songs/60040263.mkv +朴树-傻子才悲伤,http://em.21dtv.com/songs/60037563.mkv +迟志强-实在不应该,http://em.21dtv.com/songs/60039169.mkv +JUZZYORANGE-始终爱着她,http://em.21dtv.com/songs/60083803.mkv +汁橙音乐-始终爱着她,http://em.21dtv.com/songs/60077631.mkv +赵雨航-死也在一起,http://em.21dtv.com/songs/60040645.mkv +伍佰-是一种青春,http://em.21dtv.com/songs/60039525.mkv +歪小九-双鱼座女孩,http://em.21dtv.com/songs/60071135.mkv +黄英-失忆中等你,http://em.21dtv.com/songs/60106509.mkv +林凡-岁月这把刀,http://em.21dtv.com/songs/60100199.mkv +陈思安-是雨亦是泪,http://em.21dtv.com/songs/60116341.mkv +黄妃-是缘也是错(无原唱),http://em.21dtv.com/songs/60039535.mkv +王菲-深夜一个人,http://em.21dtv.com/songs/60093002.mkv +佑璇-十一月的雨(无原唱),http://em.21dtv.com/songs/60039042.mkv +薛凯琪-所有下雨天,http://em.21dtv.com/songs/60112221.mkv +高畅-岁月像条河,http://em.21dtv.com/songs/60071165.mkv +佚名-三元相思曲,http://em.21dtv.com/songs/60037358.mkv +张惠妹-所以我愿意(演唱会),http://em.21dtv.com/songs/60041026.mkv +李牧遥-谁与我同行,http://em.21dtv.com/songs/60088027.mkv +周予天-所以我离开,http://em.21dtv.com/songs/60116648.mkv +童丽-三月桃花雨,http://em.21dtv.com/songs/60098682.mkv +张德力-四月天的伤,http://em.21dtv.com/songs/60119518.mkv +佚名-说一声再见,http://em.21dtv.com/songs/60040432.mkv +邓丽君-说一声再见,http://em.21dtv.com/songs/60040431.mkv +刘承俊-说一声感谢,http://em.21dtv.com/songs/60090712.mkv +童唱-山腰上的家,http://em.21dtv.com/songs/60037689.mkv +李萌-十元人民币,http://em.21dtv.com/songs/60105162.mkv +RUBBERBAND-誓要入刀山,http://em.21dtv.com/songs/60097691.mkv +郑少秋-誓要入刀山,http://em.21dtv.com/songs/60039582.mkv +郑少秋-誓要入刀山(演唱会),http://em.21dtv.com/songs/60039581.mkv +佚名-石油人的歌,http://em.21dtv.com/songs/60039079.mkv +佚名-谁又欠了谁,http://em.21dtv.com/songs/60040155.mkv +徐小凤-谁又欠了谁,http://em.21dtv.com/songs/60040154.mkv +李心洁+DEARMOM-谁要你赞乖,http://em.21dtv.com/songs/60040143.mkv +柴超-嵩阳那些年,http://em.21dtv.com/songs/60127121.mkv +谢采妘-谁要你理睬,http://em.21dtv.com/songs/60040142.mkv +梁雁翎-谁也没有赢,http://em.21dtv.com/songs/60040152.mkv +郑枝-十一郎-法场,http://em.21dtv.com/songs/60039039.mkv +韦唯-谁也离不了,http://em.21dtv.com/songs/60040150.mkv +佚名-是要靠谁人,http://em.21dtv.com/songs/60039524.mkv +佚名-save your kisses for me,http://em.21dtv.com/songs/60004823.mkv +男声-save your kisses for me,http://em.21dtv.com/songs/60004822.mkv +陈小春-神呀救救我(演唱会),http://em.21dtv.com/songs/60038510.mkv +戊道子-圣羊欢迎你,http://em.21dtv.com/songs/60103309.mkv +蔡幸娟-是雨还是你(无原唱),http://em.21dtv.com/songs/60039529.mkv +灭火器乐团-石垣好朋友,http://em.21dtv.com/songs/60120734.mkv +郑秀文-谁又会可怜,http://em.21dtv.com/songs/60040153.mkv +吴峙轩-誓言和谎言,http://em.21dtv.com/songs/60039579.mkv +高山峰-save your heart for me,http://em.21dtv.com/songs/60004821.mkv +杜树志-失忆号地铁,http://em.21dtv.com/songs/60086825.mkv +秦立新-守一份执着,http://em.21dtv.com/songs/60113921.mkv +黄征-少一分想你,http://em.21dtv.com/songs/60080181.mkv +黄品源-双鱼的责任,http://em.21dtv.com/songs/60039909.mkv +讦谯龙-失业当自强,http://em.21dtv.com/songs/60038842.mkv +陶喆-sula与lampa的寓言,http://em.21dtv.com/songs/60005324.mkv +张也-十月第一天,http://em.21dtv.com/songs/60108477.mkv +满文军-岁月的眼泪,http://em.21dtv.com/songs/60040971.mkv +陶钰玉-深夜地下铁,http://em.21dtv.com/songs/60038374.mkv +佚名-所有的往事,http://em.21dtv.com/songs/60041029.mkv +李玲玉-三月的温柔,http://em.21dtv.com/songs/60109428.mkv +小5-所有的忘记,http://em.21dtv.com/songs/60077794.mkv +罗嘉良-岁月的童话,http://em.21dtv.com/songs/60040970.mkv +黎瑞恩-岁月的童话,http://em.21dtv.com/songs/60040969.mkv +罗嘉良-岁月的童话(演唱会),http://em.21dtv.com/songs/60040968.mkv +孙盛希-少一点天份,http://em.21dtv.com/songs/60108430.mkv +赵姝-树叶的梦想,http://em.21dtv.com/songs/60101176.mkv +伊能静-三月的秘密,http://em.21dtv.com/songs/60037362.mkv +陈瑞-深夜的咖啡,http://em.21dtv.com/songs/60085695.mkv +杨丞琳-失忆的金鱼,http://em.21dtv.com/songs/60106964.mkv +新子-四月的记忆,http://em.21dtv.com/songs/60099260.mkv +子华-善意的谎言,http://em.21dtv.com/songs/60128954.mkv +司徒兰芳-善意的谎言,http://em.21dtv.com/songs/60077507.mkv +佚名-善意的谎言,http://em.21dtv.com/songs/60037759.mkv +张瑶-誓言的幻境,http://em.21dtv.com/songs/60039578.mkv +李泽坚-上瘾的毒药,http://em.21dtv.com/songs/60099309.mkv +赵薇-树叶的崇拜,http://em.21dtv.com/songs/60039793.mkv +罗逻圣-岁月催人老,http://em.21dtv.com/songs/60122009.mkv +郑秀文-上一次流泪,http://em.21dtv.com/songs/60038061.mkv +杨钰莹-谁也不知道,http://em.21dtv.com/songs/60040149.mkv +蓝雨-是雨不是泪(演唱会),http://em.21dtv.com/songs/60039528.mkv +朱妍-谁也不欠谁,http://em.21dtv.com/songs/60040148.mkv +黑雨-谁也不欠谁,http://em.21dtv.com/songs/60040147.mkv +和文军-三月百花开,http://em.21dtv.com/songs/60090854.mkv +佚名-沈阳啊沈阳,http://em.21dtv.com/songs/60038518.mkv +黄妃-see you阿罗哈,http://em.21dtv.com/songs/60004880.mkv +ハナエ-神様お愿い,http://em.21dtv.com/songs/60120259.mkv +伍天宇-伤心只为你,http://em.21dtv.com/songs/60037985.mkv +彭羚-深宵至破晓,http://em.21dtv.com/songs/60038370.mkv +陈奕迅-伤心证明书,http://em.21dtv.com/songs/60072375.mkv +李娜-是心做佛祖,http://em.21dtv.com/songs/60120617.mkv +吕雯-伤心一整夜,http://em.21dtv.com/songs/60037976.mkv +陈百强-神仙也移民,http://em.21dtv.com/songs/60038507.mkv +蔡小虎-伤心雨那落(无原唱),http://em.21dtv.com/songs/60095896.mkv +魏海珊-伤心又奈何(无原唱),http://em.21dtv.com/songs/60037978.mkv +蔡健雅-生锈游乐场,http://em.21dtv.com/songs/60077567.mkv +佚名-伤心夜港边,http://em.21dtv.com/songs/60037973.mkv +陈盈洁-伤心夜港边,http://em.21dtv.com/songs/60037972.mkv +孙淑媚-伤心夜都市,http://em.21dtv.com/songs/60037971.mkv +景岗山-伤心一百天,http://em.21dtv.com/songs/60037975.mkv +黄乙玲-伤心新机场,http://em.21dtv.com/songs/60037967.mkv +梁咏琪-伤心寻回犬,http://em.21dtv.com/songs/60037968.mkv +吴克群-数星星的人,http://em.21dtv.com/songs/60112568.mkv +蔡佳麟-伤心无尾巷,http://em.21dtv.com/songs/60037960.mkv +邬兆邦-伤心无人管,http://em.21dtv.com/songs/60086811.mkv +一东-盛夏晚晴天,http://em.21dtv.com/songs/60085709.mkv +刘超华-上下五千年,http://em.21dtv.com/songs/60121454.mkv +刘超华-上下五千年(演唱会),http://em.21dtv.com/songs/60077533.mkv +童丽-三笑未留情,http://em.21dtv.com/songs/60077469.mkv +胡章飞-双溪桃源情,http://em.21dtv.com/songs/60099454.mkv +汪东城-伤心太平洋,http://em.21dtv.com/songs/60135482.mkv +任贤齐-伤心太平洋,http://em.21dtv.com/songs/60037954.mkv +洪百慧-伤心啥滋味,http://em.21dtv.com/songs/60037943.mkv +孙淑媚-伤心伤一半,http://em.21dtv.com/songs/60037946.mkv +吴淑敏-伤心是谁的,http://em.21dtv.com/songs/60037948.mkv +天云-伤心人的泪(舞曲版),http://em.21dtv.com/songs/60064841.mkv +夹子太硬啦-伤心牛角尖,http://em.21dtv.com/songs/60037933.mkv +谢霆锋-伤心没什么,http://em.21dtv.com/songs/60092104.mkv +陈柏圻-伤心乐伤心,http://em.21dtv.com/songs/60037922.mkv +萧煌奇-死心了没有,http://em.21dtv.com/songs/60120914.mkv +JOYCE-伤心流浪汉,http://em.21dtv.com/songs/60037926.mkv +雨天-手心里的海,http://em.21dtv.com/songs/60039645.mkv +马郁+刘嘉亮-手心里的爱,http://em.21dtv.com/songs/60062749.mkv +奇哥+自然卷-身心灵不全,http://em.21dtv.com/songs/60130230.mkv +杨哲-伤心看酒杯,http://em.21dtv.com/songs/60118705.mkv +蔡秋凤-伤心俱乐部,http://em.21dtv.com/songs/60037921.mkv +叶胜钦-伤心吉鲁巴,http://em.21dtv.com/songs/60037910.mkv +荒山亮-伤心酒吧街,http://em.21dtv.com/songs/60037916.mkv +双星-双星贺新年,http://em.21dtv.com/songs/60077690.mkv +SNH48-盛夏好声音,http://em.21dtv.com/songs/60110795.mkv +黄乙玲-是熊或是虎(无原唱),http://em.21dtv.com/songs/60039523.mkv +张智成-伤心换日线,http://em.21dtv.com/songs/60092619.mkv +孟杨-伤心火玫瑰,http://em.21dtv.com/songs/60077520.mkv +吴淑敏-伤心海岸线,http://em.21dtv.com/songs/60064839.mkv +王江发-伤心固定人,http://em.21dtv.com/songs/60116153.mkv +陈星-双星佛天凯,http://em.21dtv.com/songs/60088888.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-四小福送福,http://em.21dtv.com/songs/60077765.mkv +林姗-伤心的住址,http://em.21dtv.com/songs/60037895.mkv +闫稣-伤心的滋味,http://em.21dtv.com/songs/60126338.mkv +安东阳-伤心的站台,http://em.21dtv.com/songs/60077519.mkv +孙淑媚+施文彬-伤心的字条,http://em.21dtv.com/songs/60037896.mkv +曾宝仪-傻笑的照片,http://em.21dtv.com/songs/60037555.mkv +吴俊宏-伤心的帐单,http://em.21dtv.com/songs/60037894.mkv +带泪的鱼-手心的余温,http://em.21dtv.com/songs/60127942.mkv +范龙-伤心的一天,http://em.21dtv.com/songs/60127342.mkv +刘德华-伤心的颜色,http://em.21dtv.com/songs/60090690.mkv +孟杨-伤心代言人,http://em.21dtv.com/songs/60062768.mkv +孟杨-伤心代言人(舞曲版),http://em.21dtv.com/songs/60061562.mkv +好妹妹乐队-熟悉的拥抱,http://em.21dtv.com/songs/60099917.mkv +王识贤-伤心的喜酒,http://em.21dtv.com/songs/60037890.mkv +泳儿-剩下的幸福,http://em.21dtv.com/songs/60061580.mkv +霍建华-伞下的幸福,http://em.21dtv.com/songs/60037379.mkv +周渝民-熟悉的温柔,http://em.21dtv.com/songs/60039769.mkv +囚鸟-伤心的网恋,http://em.21dtv.com/songs/60109245.mkv +囚鸟-伤心的网恋,http://em.21dtv.com/songs/60037885.mkv +叶圣涛-熟悉的味道,http://em.21dtv.com/songs/60133451.mkv +金大喜-手心的温度,http://em.21dtv.com/songs/60120038.mkv +沈建豪-伤心的舞步,http://em.21dtv.com/songs/60112056.mkv +欧姐-伤心地铁站,http://em.21dtv.com/songs/60132653.mkv +欧姐-伤心地铁站,http://em.21dtv.com/songs/60129318.mkv +张韶涵-手心的太阳,http://em.21dtv.com/songs/60039644.mkv +刘恺威-盛夏的天空,http://em.21dtv.com/songs/60077577.mkv +安又琪-伞下的天空,http://em.21dtv.com/songs/60072364.mkv +洪荣宏-伤心的探戈,http://em.21dtv.com/songs/60122954.mkv +洪荣宏-伤心的探戈,http://em.21dtv.com/songs/60111237.mkv +张蓉蓉-伤心的探戈,http://em.21dtv.com/songs/60037884.mkv +姬长乐-睡醒的狮子,http://em.21dtv.com/songs/60104917.mkv +曾心梅-伤心的所在,http://em.21dtv.com/songs/60037883.mkv +江蕙-伤心的所在(无原唱),http://em.21dtv.com/songs/60037882.mkv +TFBOYS+嘻游记-剩下的盛夏,http://em.21dtv.com/songs/60114362.mkv +黄乙玲-伤心第四台,http://em.21dtv.com/songs/60037901.mkv +赵静-三峡的思恋,http://em.21dtv.com/songs/60100483.mkv +蔡振南-伤心到深更,http://em.21dtv.com/songs/60037852.mkv +段千寻-伤心的日子,http://em.21dtv.com/songs/60037880.mkv +佚名-三笑-点秋香,http://em.21dtv.com/songs/60037348.mkv +林俊杰+邓紫棋-手心的蔷薇,http://em.21dtv.com/songs/60108616.mkv +梁朝伟-伤心的情人,http://em.21dtv.com/songs/60037872.mkv +贺一航-伤心的情歌,http://em.21dtv.com/songs/60077518.mkv +林子娟-伤心的情歌,http://em.21dtv.com/songs/60037871.mkv +孙艺-伤心的诺言,http://em.21dtv.com/songs/60119430.mkv +田娟-伤心的女人,http://em.21dtv.com/songs/60127225.mkv +熊七梅-撕心的呐喊,http://em.21dtv.com/songs/60077753.mkv +佚名-思乡的男儿,http://em.21dtv.com/songs/60040585.mkv +林沐桦-伤心的名字(无原唱),http://em.21dtv.com/songs/60037869.mkv +PEG组合-手心的梦想,http://em.21dtv.com/songs/60120233.mkv +乔嘉-伤心的陌陌,http://em.21dtv.com/songs/60111677.mkv +乔嘉-伤心的陌陌,http://em.21dtv.com/songs/60086889.mkv +丁童-伤心的玫瑰,http://em.21dtv.com/songs/60080129.mkv +宇桐非-伤心的理由,http://em.21dtv.com/songs/60097536.mkv +蔡小虎-伤心的理由,http://em.21dtv.com/songs/60085685.mkv +F.I.R-死心的理由(演唱会),http://em.21dtv.com/songs/60040631.mkv +焱彬-熟悉的路口,http://em.21dtv.com/songs/60093699.mkv +张津涤-伤心的快乐,http://em.21dtv.com/songs/60135212.mkv +汤非-伤心的记忆,http://em.21dtv.com/songs/60128160.mkv +阿华-三峡的记忆,http://em.21dtv.com/songs/60072362.mkv +任贤齐-伤心的尽头,http://em.21dtv.com/songs/60090543.mkv +佚名-伤心的街路,http://em.21dtv.com/songs/60037866.mkv +陈亮吟-伤心的借口,http://em.21dtv.com/songs/60037865.mkv +小凤凤-伤心的酒店,http://em.21dtv.com/songs/60037868.mkv +超仁-碎心电话亭,http://em.21dtv.com/songs/60041001.mkv +黄品源-伤心的婚纱,http://em.21dtv.com/songs/60083763.mkv +江蕙+施文彬-伤心到何时,http://em.21dtv.com/songs/60037851.mkv +黄品源-伤心的婚妙,http://em.21dtv.com/songs/60037864.mkv +龙千玉-伤心的海岸,http://em.21dtv.com/songs/60133145.mkv +王建芳-伤心的过往,http://em.21dtv.com/songs/60102519.mkv +辉星-伤心的故事,http://em.21dtv.com/songs/60061563.mkv +莫文蔚-盛夏的果实,http://em.21dtv.com/songs/60038701.mkv +七郎-伤心的港口,http://em.21dtv.com/songs/60037858.mkv +曾淑勤-伤心的港口,http://em.21dtv.com/songs/60037857.mkv +余天龙-伤心的代志,http://em.21dtv.com/songs/60122484.mkv +光良-伤心的地狱,http://em.21dtv.com/songs/60087348.mkv +闫伟伟-碎心的等待,http://em.21dtv.com/songs/60041000.mkv +黄乙玲-伤心的车站,http://em.21dtv.com/songs/60037855.mkv +冷漠-伤心的城市,http://em.21dtv.com/songs/60101269.mkv +方怡萍-伤心的城市(无原唱),http://em.21dtv.com/songs/60037856.mkv +周杰伦-手写的从前,http://em.21dtv.com/songs/60108396.mkv +周杰伦-手写的从前,http://em.21dtv.com/songs/60107598.mkv +周杰伦-手写的从前,http://em.21dtv.com/songs/60106705.mkv +徐新军-伤心的宝贝,http://em.21dtv.com/songs/60109355.mkv +崎君-伤心的宝贝,http://em.21dtv.com/songs/60037854.mkv +东方依依-伤心的爱情,http://em.21dtv.com/songs/60118296.mkv +蔡义德-双喜差一字,http://em.21dtv.com/songs/60066326.mkv +詹雅文-思乡悲恋梦,http://em.21dtv.com/songs/60076907.mkv +十三狼-陕西八大怪,http://em.21dtv.com/songs/60105664.mkv +陈涵予-上学别迟到,http://em.21dtv.com/songs/60110645.mkv +邱权-伤心爱情(舞曲版),http://em.21dtv.com/songs/60077517.mkv +罗百吉+宝贝-苏伟在哪里,http://em.21dtv.com/songs/60062737.mkv +阿悄-神武雨霖铃,http://em.21dtv.com/songs/60072384.mkv +黄海永-剩我一个人,http://em.21dtv.com/songs/60069808.mkv +泳儿-送我一个家(演唱会),http://em.21dtv.com/songs/60040797.mkv +赵自强-送我一分钟,http://em.21dtv.com/songs/60040796.mkv +小鱼-十五亿分贝(加我)(演唱会),http://em.21dtv.com/songs/60039032.mkv +新宝岛康乐队+赵咏华-水尾邮遍车,http://em.21dtv.com/songs/60125611.mkv +胡夏-是我先开口,http://em.21dtv.com/songs/60077649.mkv +韦萱-神武笑春风,http://em.21dtv.com/songs/60038505.mkv +孙露-谁为我停留,http://em.21dtv.com/songs/60110998.mkv +田震-谁为我停留,http://em.21dtv.com/songs/60040136.mkv +田震-谁为我停留(演唱会),http://em.21dtv.com/songs/60040135.mkv +晨熙-谁为我疗伤,http://em.21dtv.com/songs/60040134.mkv +王瑞霞-是我太软心,http://em.21dtv.com/songs/60039519.mkv +晨悠组合-神武三世桥,http://em.21dtv.com/songs/60125647.mkv +张祥洪-谁为谁难过,http://em.21dtv.com/songs/60083832.mkv +佚名-试问谁没错,http://em.21dtv.com/songs/60039372.mkv +陈百强-试问谁没错,http://em.21dtv.com/songs/60039371.mkv +云菲菲-谁为谁流泪,http://em.21dtv.com/songs/60063340.mkv +潘芸-散文式纪念,http://em.21dtv.com/songs/60112089.mkv +吴奇隆-是我惹的祸,http://em.21dtv.com/songs/60039517.mkv +张莹-谁问你与我,http://em.21dtv.com/songs/60040137.mkv +胡海建-是我没有用,http://em.21dtv.com/songs/60098708.mkv +谢金晶-送我玫瑰花,http://em.21dtv.com/songs/60135748.mkv +程科-神武乐逍遥,http://em.21dtv.com/songs/60067419.mkv +梁文希-食物链相聚,http://em.21dtv.com/songs/60122920.mkv +庄振凯-是我甲你宠,http://em.21dtv.com/songs/60085725.mkv +Super Junior M-SWING,http://em.21dtv.com/songs/60099042.mkv +张佑钱-说我很爱你,http://em.21dtv.com/songs/60106820.mkv +MOVIN-十万个如果,http://em.21dtv.com/songs/60123512.mkv +何维健-十五的月亮,http://em.21dtv.com/songs/60118337.mkv +卓依婷-十五的月亮,http://em.21dtv.com/songs/60039029.mkv +庄学忠-十五的月亮,http://em.21dtv.com/songs/60039028.mkv +佚名-十五的月亮,http://em.21dtv.com/songs/60039027.mkv +马亚丽-十五的月亮,http://em.21dtv.com/songs/60039026.mkv +龚月-十五的月亮,http://em.21dtv.com/songs/60039025.mkv +董文华-十五的月亮,http://em.21dtv.com/songs/60039024.mkv +芭比-是我的无奈,http://em.21dtv.com/songs/60039511.mkv +张圣全-所谓的理由,http://em.21dtv.com/songs/60041024.mkv +邓岚-是我错了吗,http://em.21dtv.com/songs/60039509.mkv +CLAY WALKER-she wont be lonely long,http://em.21dtv.com/songs/60004964.mkv +弦子-是我不可爱,http://em.21dtv.com/songs/60039506.mkv +李毓芬-是我不够好,http://em.21dtv.com/songs/60121778.mkv +李泉+B6-SUNNY,http://em.21dtv.com/songs/60124086.mkv +Editors-Sugar,http://em.21dtv.com/songs/60124868.mkv +Maroon 5-Sugar,http://em.21dtv.com/songs/60108233.mkv +ORIANTHI-shut up and kiss me,http://em.21dtv.com/songs/60063738.mkv +汪峰+贝贝-石头在歌唱,http://em.21dtv.com/songs/60115257.mkv +谭维维+范政-石头在歌唱,http://em.21dtv.com/songs/60112255.mkv +谭维维+汪峰-石头在歌唱,http://em.21dtv.com/songs/60088679.mkv +谭维维+汪峰-石头在唱歌,http://em.21dtv.com/songs/60039076.mkv +陶晶莹-十天又三天,http://em.21dtv.com/songs/60039021.mkv +Taylor swift-Style,http://em.21dtv.com/songs/60109115.mkv +刘嘉亮-伤透我的心,http://em.21dtv.com/songs/60037834.mkv +张郎-谁痛谁知道,http://em.21dtv.com/songs/60081260.mkv +Lunar-沙塔斯月光,http://em.21dtv.com/songs/60124938.mkv +严艺丹+何炅-手贴手约定,http://em.21dtv.com/songs/60077658.mkv +相声小品-神童培训班,http://em.21dtv.com/songs/60038503.mkv +朴信惠-Story(故事情节),http://em.21dtv.com/songs/60098432.mkv +KELIS-4th of july,http://em.21dtv.com/songs/60000025.mkv +ROBERTA FLACK+MAXI P-set the night to music,http://em.21dtv.com/songs/60004900.mkv +徐小清-桑塔露琪亚,http://em.21dtv.com/songs/60111099.mkv +佚名-桑塔露琪亚,http://em.21dtv.com/songs/60037397.mkv +王真-桑塔露琪亚,http://em.21dtv.com/songs/60037396.mkv +廖昌永-桑塔露齐亚(演唱会),http://em.21dtv.com/songs/60037395.mkv +廖昌永-桑塔露齐亚,http://em.21dtv.com/songs/60037394.mkv +佚名-桑塔露琪亚(慢三),http://em.21dtv.com/songs/60037393.mkv +佚名-散塔露琪亚,http://em.21dtv.com/songs/60037390.mkv +潘建义-水甜景如歌,http://em.21dtv.com/songs/60085744.mkv +陈艺鹏-石头剪刀布,http://em.21dtv.com/songs/60039072.mkv +Stellar-Sting,http://em.21dtv.com/songs/60118277.mkv +倪安东-sorry that i loved you,http://em.21dtv.com/songs/60005196.mkv +吴建豪-身体会唱歌(演唱会),http://em.21dtv.com/songs/60038260.mkv +温超-史提芬周记,http://em.21dtv.com/songs/60125879.mkv +李泰民-Steps,http://em.21dtv.com/songs/60099308.mkv +金子嫣-伤痛的心灵(无原唱),http://em.21dtv.com/songs/60037832.mkv +张镐哲-伤痛的邂逅,http://em.21dtv.com/songs/60037831.mkv +魏佳庆-石头的外衣,http://em.21dtv.com/songs/60039069.mkv +谢莉婷-石头丢落水,http://em.21dtv.com/songs/60086827.mkv +JANET JACKSON-someone to call my love,http://em.21dtv.com/songs/60005149.mkv +凌琳-沙滩白日梦(无原唱),http://em.21dtv.com/songs/60037477.mkv +林欣彤-save the best for last(演唱会),http://em.21dtv.com/songs/60063728.mkv +佚名-save the best for last,http://em.21dtv.com/songs/60004817.mkv +钟木清-汕头啊汕头,http://em.21dtv.com/songs/60102839.mkv +ERIHIRO-Stars,http://em.21dtv.com/songs/60115578.mkv +谢采妘-谁是知音人,http://em.21dtv.com/songs/60040110.mkv +邓海-生死在一起,http://em.21dtv.com/songs/60112996.mkv +陈慧琳-深思这一秒,http://em.21dtv.com/songs/60093464.mkv +邵大伦-三声再无奈,http://em.21dtv.com/songs/60123227.mkv +邵大伦-三声再无奈,http://em.21dtv.com/songs/60115445.mkv +宫心-十三之沙山,http://em.21dtv.com/songs/60108450.mkv +刘涛+梁咏琪+林心如-山水中国美,http://em.21dtv.com/songs/60119306.mkv +庾澄庆-是谁在改变(无原唱),http://em.21dtv.com/songs/60039496.mkv +马常宝-谁是真的爱,http://em.21dtv.com/songs/60127595.mkv +苏永康-山水有相逢,http://em.21dtv.com/songs/60037679.mkv +苏永康-山水有相逢(演唱会),http://em.21dtv.com/songs/60037678.mkv +钟嘉欣-生死也为爱,http://em.21dtv.com/songs/60038641.mkv +杜德伟-酸酸又甜甜,http://em.21dtv.com/songs/60091387.mkv +张清芳-深遂与甜蜜,http://em.21dtv.com/songs/60087828.mkv +张清芳-深邃与甜蜜,http://em.21dtv.com/songs/60038369.mkv +潘秀琼-谁是有情郎,http://em.21dtv.com/songs/60040109.mkv +陈瑞+刚辉-书生与白狐,http://em.21dtv.com/songs/60039736.mkv +蔡幸娟-生死永不分,http://em.21dtv.com/songs/60038642.mkv +小虫-烧烧a心脏,http://em.21dtv.com/songs/60038101.mkv +刘冲+冲击力乐队-说声谢谢你,http://em.21dtv.com/songs/60128817.mkv +谢采妘-谁是心上人,http://em.21dtv.com/songs/60040107.mkv +群星-十三五之歌,http://em.21dtv.com/songs/60116198.mkv +崔允太-谁说无所谓,http://em.21dtv.com/songs/60101336.mkv +关菊英-事事未满足(演唱会),http://em.21dtv.com/songs/60039365.mkv +杨梓-谁是我的郎,http://em.21dtv.com/songs/60069837.mkv +弘岩-谁是我的菜,http://em.21dtv.com/songs/60072420.mkv +郭富城-说声我爱你,http://em.21dtv.com/songs/60089507.mkv +佚名-山水天地间,http://em.21dtv.com/songs/60037675.mkv +吴雨霏-生生世世爱,http://em.21dtv.com/songs/60038628.mkv +宋祖英-山水是朋友,http://em.21dtv.com/songs/60090953.mkv +孙露-谁是谁的谁,http://em.21dtv.com/songs/60115849.mkv +孙露-谁是谁的谁,http://em.21dtv.com/songs/60077704.mkv +吴欢-谁是谁的谁,http://em.21dtv.com/songs/60040100.mkv +牛朝阳-谁是谁的谁,http://em.21dtv.com/songs/60040099.mkv +艾莉莎-谁是谁的谁,http://em.21dtv.com/songs/60040098.mkv +与欧-谁是谁的菜,http://em.21dtv.com/songs/60125069.mkv +闫凤梅-谁是谁的菜,http://em.21dtv.com/songs/60108107.mkv +西子-谁是谁滴菜,http://em.21dtv.com/songs/60086847.mkv +萧亚轩-散散惹人爱,http://em.21dtv.com/songs/60088567.mkv +萧亚轩-闪闪惹人爱,http://em.21dtv.com/songs/60037739.mkv +任栩麟-屌丝生日歌,http://em.21dtv.com/songs/60109139.mkv +张峥-十世情缘,http://em.21dtv.com/songs/60105831.mkv +TWINS-双失情人节,http://em.21dtv.com/songs/60039874.mkv +阿兰-上师祈祷文,http://em.21dtv.com/songs/60133025.mkv +阿兰-上师祈祷文,http://em.21dtv.com/songs/60129707.mkv +赵晨宇-三十七度伴,http://em.21dtv.com/songs/60130773.mkv +苏爱伦-三十七度半(无原唱),http://em.21dtv.com/songs/60037319.mkv +李清-刷刷朋友圈,http://em.21dtv.com/songs/60130426.mkv +陈诺-爽食莆仙斋,http://em.21dtv.com/songs/60131960.mkv +蒋志光-谁是你知音,http://em.21dtv.com/songs/60040097.mkv +童唱-世事难预料,http://em.21dtv.com/songs/60039326.mkv +萧煌奇-谁说你可以,http://em.21dtv.com/songs/60083831.mkv +周杰伦+羽田-算什么男人,http://em.21dtv.com/songs/60127854.mkv +向洋+潘嘉丽-算什么男人,http://em.21dtv.com/songs/60128881.mkv +周杰伦-算什么男人,http://em.21dtv.com/songs/60107599.mkv +周杰伦-算什么男人,http://em.21dtv.com/songs/60106707.mkv +洛天依-松鼠魔法祭,http://em.21dtv.com/songs/60128173.mkv +陈小春-三十六世纪,http://em.21dtv.com/songs/60037318.mkv +LUHICA-手锁の月,http://em.21dtv.com/songs/60099012.mkv +Boxing-山上拉钉人,http://em.21dtv.com/songs/60106523.mkv +TAIO CRUZ-shes like a star,http://em.21dtv.com/songs/60063735.mkv +日京江羽人-谁杀了阿春,http://em.21dtv.com/songs/60117773.mkv +陈雷-声声叫著你,http://em.21dtv.com/songs/60003985.mkv +吴恩琪-三十九度c(无原唱),http://em.21dtv.com/songs/60037313.mkv +莫小浪-啥是好兄弟,http://em.21dtv.com/songs/60128355.mkv +MC HOTDOG-十三号天使,http://em.21dtv.com/songs/60039012.mkv +范逸臣-是时候启程,http://em.21dtv.com/songs/60077648.mkv +詹雅雯-双手乎你岸,http://em.21dtv.com/songs/60135726.mkv +祁隆-谁伤害了谁,http://em.21dtv.com/songs/60083829.mkv +杨昭+孙佳-十送红军,http://em.21dtv.com/songs/60093889.mkv +张卫健-谁是个小丑(演唱会),http://em.21dtv.com/songs/60083830.mkv +张卫健-谁是个小丑,http://em.21dtv.com/songs/60040093.mkv +柳影虹-似时故人来(演唱会),http://em.21dtv.com/songs/60077767.mkv +梅艳芳-似是故人来,http://em.21dtv.com/songs/60039347.mkv +梅艳芳-似是故人来(演唱会),http://em.21dtv.com/songs/60039346.mkv +李贤+胜研-三十分钟前,http://em.21dtv.com/songs/60037312.mkv +云开-是谁犯的错,http://em.21dtv.com/songs/60039486.mkv +春妹-双双飞比翼,http://em.21dtv.com/songs/60039889.mkv +萧煌奇-三十二封信,http://em.21dtv.com/songs/60112197.mkv +黑龙-盛世大中国,http://em.21dtv.com/songs/60038698.mkv +杨培安-沈睡的野兽,http://em.21dtv.com/songs/60096351.mkv +杨子楱-傻傻的勇气,http://em.21dtv.com/songs/60091399.mkv +齐航-时尚大赢家,http://em.21dtv.com/songs/60120176.mkv +游鸿明-受伤的小孩,http://em.21dtv.com/songs/60039724.mkv +永邦-双手的温柔,http://em.21dtv.com/songs/60039880.mkv +江美琪-双手的温柔,http://em.21dtv.com/songs/60039879.mkv +未来脚踏车-随手的未来,http://em.21dtv.com/songs/60040943.mkv +叶瑷菱-闪烁的天星,http://em.21dtv.com/songs/60037740.mkv +付首勇-受伤的伤口,http://em.21dtv.com/songs/60068667.mkv +黎丹-受伤的女人,http://em.21dtv.com/songs/60121188.mkv +蓝若兮-傻傻的女人,http://em.21dtv.com/songs/60107981.mkv +罗天宇-受伤的男人,http://em.21dtv.com/songs/60077670.mkv +朱天毅-受伤的男人,http://em.21dtv.com/songs/60069832.mkv +卓依婷-伸手等你牵,http://em.21dtv.com/songs/60038245.mkv +翁立友-水水的目睭,http://em.21dtv.com/songs/60040227.mkv +小乔-失散的恋人,http://em.21dtv.com/songs/60103222.mkv +方瑞娥-深深的恋情,http://em.21dtv.com/songs/60095553.mkv +陈水林-深深的恋情,http://em.21dtv.com/songs/60085694.mkv +佚名-深深的恋情,http://em.21dtv.com/songs/60038360.mkv +梁心颐-舒适的牢笼,http://em.21dtv.com/songs/60071133.mkv +方瑞娥+高向鹏-尚深的记忆,http://em.21dtv.com/songs/60038076.mkv +洪及响-石狮的精彩,http://em.21dtv.com/songs/60116112.mkv +史小龙-失散的孩子,http://em.21dtv.com/songs/60038839.mkv +童唱-山上的孩子,http://em.21dtv.com/songs/60037670.mkv +佚名-深深的海洋,http://em.21dtv.com/songs/60038359.mkv +苏小明+张暴默-深深的海洋(演唱会),http://em.21dtv.com/songs/60038358.mkv +孙楠-爽爽的贵阳,http://em.21dtv.com/songs/60119419.mkv +紫梦格格-傻傻的哥哥,http://em.21dtv.com/songs/60099444.mkv +蒋小涵-哨所的风铃,http://em.21dtv.com/songs/60090192.mkv +王秀琪-深深等待你,http://em.21dtv.com/songs/60124276.mkv +彤杰-傻傻的等候,http://em.21dtv.com/songs/60085675.mkv +孙浩雨-神圣的地方,http://em.21dtv.com/songs/60110990.mkv +覃浩-撕碎的承诺,http://em.21dtv.com/songs/60117212.mkv +阮以伟-受伤的翅膀,http://em.21dtv.com/songs/60064895.mkv +阿毛-说声对不起,http://em.21dtv.com/songs/60077734.mkv +KELLY ROWLAND-说声对不起,http://em.21dtv.com/songs/60062082.mkv +韩宝仪-说声对不起,http://em.21dtv.com/songs/60040417.mkv +凤飞飞-说声对不起,http://em.21dtv.com/songs/60040416.mkv +卓依婷-受伤的爱情,http://em.21dtv.com/songs/60039723.mkv +王艺霖-傻傻的爱你,http://em.21dtv.com/songs/60037547.mkv +陈星安-傻傻的爱你,http://em.21dtv.com/songs/60037546.mkv +张震岳-双手插口袋,http://em.21dtv.com/songs/60039878.mkv +刘德华-谁说不可以,http://em.21dtv.com/songs/60040116.mkv +宋沛江-水是冰的泪,http://em.21dtv.com/songs/60111017.mkv +邱贤桂-深深爱着你,http://em.21dtv.com/songs/60124554.mkv +容儿-深深爱着你,http://em.21dtv.com/songs/60038353.mkv +张克帆-深深爱着你(无原唱),http://em.21dtv.com/songs/60038352.mkv +罗钢-谁说爱没错,http://em.21dtv.com/songs/60040113.mkv +熊照华-深深爱过你,http://em.21dtv.com/songs/60120738.mkv +薛之谦-深深爱过你,http://em.21dtv.com/songs/60038350.mkv +FYFE DANGERFIELD-shes always a woman,http://em.21dtv.com/songs/60073865.mkv +糖果枪-时速240,http://em.21dtv.com/songs/60039159.mkv +吴文煜-生日最快乐,http://em.21dtv.com/songs/60038623.mkv +龙劭华-随人着保重(无原唱),http://em.21dtv.com/songs/60040935.mkv +龙千玉-谁人心袜痛,http://em.21dtv.com/songs/60040081.mkv +邱淑君-谁人心袜痛(无原唱),http://em.21dtv.com/songs/60040080.mkv +白冰冰-谁人无心事,http://em.21dtv.com/songs/60040079.mkv +佚名-谁让我流泪,http://em.21dtv.com/songs/60040055.mkv +潘美辰-谁让我流泪(无原唱),http://em.21dtv.com/songs/60040054.mkv +佚名-谁人无将来,http://em.21dtv.com/songs/60040078.mkv +甲子慧-谁人疼惜我,http://em.21dtv.com/songs/60093758.mkv +孙淑媚-谁人替阮想,http://em.21dtv.com/songs/60040077.mkv +男声-谁人陪伴我,http://em.21dtv.com/songs/60040076.mkv +李小飞-谁人陪伴我,http://em.21dtv.com/songs/60040075.mkv +合唱-谁人陪伴我,http://em.21dtv.com/songs/60040074.mkv +吴建豪-谁让你流泪,http://em.21dtv.com/songs/60040049.mkv +吴建豪-谁让你流泪(演唱会),http://em.21dtv.com/songs/60040048.mkv +佚名-谁人来痛惜,http://em.21dtv.com/songs/60040070.mkv +陈一郎-谁人了解我,http://em.21dtv.com/songs/60040072.mkv +蔡秋凤-谁人了解我,http://em.21dtv.com/songs/60040071.mkv +刘孟哲-生日快乐歌(演唱会),http://em.21dtv.com/songs/60086822.mkv +陈美安-谁人甲我比,http://em.21dtv.com/songs/60068674.mkv +杨宗宪-谁人甲我比,http://em.21dtv.com/songs/60040067.mkv +王建杰-谁人甲我比,http://em.21dtv.com/songs/60040066.mkv +黄乙玲-谁人甲我比,http://em.21dtv.com/songs/60040065.mkv +陈中-谁人甲我比,http://em.21dtv.com/songs/60040064.mkv +唐俪-谁人甲阮惜,http://em.21dtv.com/songs/60130205.mkv +邱芸子+叶诺帆-谁人甲阮疼,http://em.21dtv.com/songs/60120997.mkv +庄学忠-谁人会了解,http://em.21dtv.com/songs/60040063.mkv +余天-谁人会了解,http://em.21dtv.com/songs/60040062.mkv +佚名-谁人会了解,http://em.21dtv.com/songs/60040061.mkv +谢和弦-虽然很芭乐,http://em.21dtv.com/songs/60040909.mkv +刘小娜-生日的祝福,http://em.21dtv.com/songs/60038601.mkv +张可儿-诗人的眼泪,http://em.21dtv.com/songs/60126866.mkv +游鸿明-诗人的眼泪,http://em.21dtv.com/songs/60038874.mkv +翁立友-双人的舞步,http://em.21dtv.com/songs/60039861.mkv +江宏恩+林子娟-三人的世界,http://em.21dtv.com/songs/60066287.mkv +陈羑-生日的暮棰,http://em.21dtv.com/songs/60099589.mkv +佚名-输人不输阵,http://em.21dtv.com/songs/60039758.mkv +龙千玉-输人不输阵,http://em.21dtv.com/songs/60039757.mkv +张艾文-生日不快乐,http://em.21dtv.com/songs/60038599.mkv +林展逸-生趣真生趣,http://em.21dtv.com/songs/60038596.mkv +李卓庭-手枪与玫瑰,http://em.21dtv.com/songs/60039627.mkv +春妹-深情永绸缪,http://em.21dtv.com/songs/60038336.mkv +S.H.E-深情永不变,http://em.21dtv.com/songs/60090433.mkv +ADMAN-抒情心摇滚,http://em.21dtv.com/songs/60039741.mkv +[Group] +groupName=十六万歌曲MV等 - 76 +范大海-双庆堂之歌,http://em.21dtv.com/songs/60093591.mkv +罗时丰-伤情伤心歌(无原唱),http://em.21dtv.com/songs/60037825.mkv +马忠伟-失去全世界,http://em.21dtv.com/songs/60129800.mkv +陶靖-失去你之后,http://em.21dtv.com/songs/60126416.mkv +梁汉文-三千年开花(演唱会),http://em.21dtv.com/songs/60037290.mkv +孟庭苇-拭去你的泪,http://em.21dtv.com/songs/60039379.mkv +萧敬腾-殭尸全明星,http://em.21dtv.com/songs/60112184.mkv +孙燕姿-失去了意义,http://em.21dtv.com/songs/60090928.mkv +李克勤-三千零一夜,http://em.21dtv.com/songs/60037286.mkv +李克勤-三千零一夜(演唱会),http://em.21dtv.com/songs/60037285.mkv +TWINS-神奇两女侠(演唱会),http://em.21dtv.com/songs/60038485.mkv +黄凯芹-深秋立楼头,http://em.21dtv.com/songs/60129834.mkv +徐小凤-深秋立楼头,http://em.21dtv.com/songs/60038344.mkv +徐小凤-深秋立楼头(演唱会),http://em.21dtv.com/songs/60038343.mkv +梁静茹-失去了方向,http://em.21dtv.com/songs/60038825.mkv +佚名-深情看世界,http://em.21dtv.com/songs/60038323.mkv +林良乐-深情井已冷(无原唱),http://em.21dtv.com/songs/60038322.mkv +陈奕迅-神奇化妆师,http://em.21dtv.com/songs/60064857.mkv +施文彬-十七号公路,http://em.21dtv.com/songs/60118617.mkv +容中尔甲-三千个祝愿,http://em.21dtv.com/songs/60037284.mkv +姜鹏-抒情歌最美,http://em.21dtv.com/songs/60119404.mkv +陈雷-伤情过路人,http://em.21dtv.com/songs/60037822.mkv +曹格-三七二十一,http://em.21dtv.com/songs/60037280.mkv +王洪迪-三七二零一,http://em.21dtv.com/songs/60085671.mkv +刘祖栋-失去的战场,http://em.21dtv.com/songs/60101982.mkv +徐羽泽-失去的真爱,http://em.21dtv.com/songs/60072394.mkv +侯志坚-深情到永远,http://em.21dtv.com/songs/60038315.mkv +谭晶-神奇的阳美,http://em.21dtv.com/songs/60038484.mkv +林爽-伤情的月亮,http://em.21dtv.com/songs/60083761.mkv +陈晓东-深情的眼睛,http://em.21dtv.com/songs/60038318.mkv +姚敏男-失去的约定(无原唱),http://em.21dtv.com/songs/60038823.mkv +小琢-深秋的香梦,http://em.21dtv.com/songs/60111027.mkv +布仁巴雅尔-神奇的小河,http://em.21dtv.com/songs/60101339.mkv +红孩儿-神奇的旋风(无原唱),http://em.21dtv.com/songs/60038483.mkv +次仁桑珠-神奇的西藏,http://em.21dtv.com/songs/60115251.mkv +百灵鸟-深秋的西藏,http://em.21dtv.com/songs/60107089.mkv +刘溪-失去的味道,http://em.21dtv.com/songs/60120367.mkv +曾梦翎-失去的天空,http://em.21dtv.com/songs/60117787.mkv +凤凰传奇-神奇的松原,http://em.21dtv.com/songs/60038482.mkv +黄凯芹-逝去的诗篇(演唱会),http://em.21dtv.com/songs/60039554.mkv +潘林峰-逝去的时光,http://em.21dtv.com/songs/60077653.mkv +佚名-逝去的日子,http://em.21dtv.com/songs/60039553.mkv +英伦希-逝去的青春,http://em.21dtv.com/songs/60080336.mkv +盖鸣晖-逝去的诺言(演唱会),http://em.21dtv.com/songs/60083809.mkv +张伟文-逝去的诺言(演唱会),http://em.21dtv.com/songs/60039552.mkv +陈慧娴-逝去的诺言(演唱会),http://em.21dtv.com/songs/60039551.mkv +吉杰-失去的年华,http://em.21dtv.com/songs/60081908.mkv +郎尼阿彬-神奇的理塘,http://em.21dtv.com/songs/60038479.mkv +黎明-深秋的黎明,http://em.21dtv.com/songs/60038341.mkv +黎明-深秋的黎明(演唱会),http://em.21dtv.com/songs/60038340.mkv +容中尔甲-神奇的九寨(HD),http://em.21dtv.com/songs/60133586.mkv +梦之旅-神奇的九寨,http://em.21dtv.com/songs/60085700.mkv +容中尔甲-神奇的九寨,http://em.21dtv.com/songs/60038478.mkv +王爱华-拾起的记忆,http://em.21dtv.com/songs/60115302.mkv +谢娜+黄靖雅-神奇的孩子,http://em.21dtv.com/songs/60134228.mkv +姜佑泽-逝去的回忆,http://em.21dtv.com/songs/60071129.mkv +隆隆-逝去的回忆,http://em.21dtv.com/songs/60062722.mkv +蒋大为-神奇的地方,http://em.21dtv.com/songs/60069804.mkv +亚东-深情的弟弟,http://em.21dtv.com/songs/60038316.mkv +朱海龙-神奇的草原,http://em.21dtv.com/songs/60038476.mkv +关淑怡-逝去的传奇,http://em.21dtv.com/songs/60039550.mkv +胡佳琛-拾起的布偶,http://em.21dtv.com/songs/60039179.mkv +若言-逝去的爱情,http://em.21dtv.com/songs/60093655.mkv +陈妃-深秋的暗暝,http://em.21dtv.com/songs/60038339.mkv +林楚麒-深情比酒浓(无原唱),http://em.21dtv.com/songs/60038313.mkv +陈丽媛-沙坡头之恋,http://em.21dtv.com/songs/60122222.mkv +佚名-safe place from the storm,http://em.21dtv.com/songs/60004787.mkv +EDITORS-smokers outside the hospital d,http://em.21dtv.com/songs/60005088.mkv +S.TYLER-J.PERRY-same old song and dance(无原唱),http://em.21dtv.com/songs/60004799.mkv +BEYONCE-SORRY,http://em.21dtv.com/songs/60129893.mkv +Rick Ross+Chris Brown-Sorry,http://em.21dtv.com/songs/60116471.mkv +Justin Bieber-Sorry,http://em.21dtv.com/songs/60115605.mkv +张学友-something only love can do,http://em.21dtv.com/songs/60005159.mkv +Bigbang-SOBER,http://em.21dtv.com/songs/60112421.mkv +DUSTY SPRINGFIELD-son of a preacher man,http://em.21dtv.com/songs/60005184.mkv +杨卿俪-送你走天涯,http://em.21dtv.com/songs/60108600.mkv +枫桥+流苏-思念在梦里,http://em.21dtv.com/songs/60071156.mkv +黄呈成-少年中国梦,http://em.21dtv.com/songs/60085689.mkv +逍遥香香-思念中等待,http://em.21dtv.com/songs/60132962.mkv +张伟文-送你一首歌(演唱会),http://em.21dtv.com/songs/60040786.mkv +韩雪-是那夜的风,http://em.21dtv.com/songs/60088961.mkv +候孝贤-少年耶安啦,http://em.21dtv.com/songs/60095454.mkv +伍佰-少年吔安啦,http://em.21dtv.com/songs/60038143.mkv +候孝贤-少年也安啦,http://em.21dtv.com/songs/60038142.mkv +安宇-思念像在烧,http://em.21dtv.com/songs/60040566.mkv +南拳妈妈-说你需要我,http://em.21dtv.com/songs/60067452.mkv +胡丹丹-说你喜欢我,http://em.21dtv.com/songs/60131740.mkv +阿当-思念像火烧,http://em.21dtv.com/songs/60068686.mkv +张蓉蓉-思念无药医,http://em.21dtv.com/songs/60040563.mkv +小斯韵-送你五千万,http://em.21dtv.com/songs/60040775.mkv +林薇琪-是你温暖我,http://em.21dtv.com/songs/60125794.mkv +黄艺明-谁能忘掉你,http://em.21dtv.com/songs/60106507.mkv +刘育绫-是你违背我,http://em.21dtv.com/songs/60039475.mkv +黄洛冰-少年 少年,http://em.21dtv.com/songs/60122306.mkv +瑞雪-谁能说明白,http://em.21dtv.com/songs/60064903.mkv +陈赫-少年三国志,http://em.21dtv.com/songs/60113074.mkv +林姗+翁立友-送你送到这,http://em.21dtv.com/songs/60131547.mkv +翁立友+林姗-送你送到这,http://em.21dtv.com/songs/60130664.mkv +陈升-思念人之屋,http://em.21dtv.com/songs/60040555.mkv +许飞-少年去游荡,http://em.21dtv.com/songs/60130749.mkv +佚名-三年前的我,http://em.21dtv.com/songs/60037275.mkv +叶启田-三年前的我,http://em.21dtv.com/songs/60037274.mkv +金玲-思念你一人(无原唱),http://em.21dtv.com/songs/60040553.mkv +谢金晶-思念你的心,http://em.21dtv.com/songs/60105377.mkv +许志皇-思念你的歌(无原唱),http://em.21dtv.com/songs/60081818.mkv +孙淑媚-思念你的歌,http://em.21dtv.com/songs/60040548.mkv +林俊彦-思念你的歌(无原唱),http://em.21dtv.com/songs/60040547.mkv +詹曼铃-思念你的爱,http://em.21dtv.com/songs/60040546.mkv +谢安琪-少女玛利亚,http://em.21dtv.com/songs/60064845.mkv +沈芳如-思念梦决醒,http://em.21dtv.com/songs/60040539.mkv +罗敏庄-谁能明白我(演唱会),http://em.21dtv.com/songs/60077702.mkv +林子祥-谁能明白我,http://em.21dtv.com/songs/60040040.mkv +林子祥-谁能明白我(演唱会),http://em.21dtv.com/songs/60040039.mkv +江惠仪-思念来敲门,http://em.21dtv.com/songs/60116092.mkv +周嘉丽-谁能了解我(无原唱),http://em.21dtv.com/songs/60040038.mkv +黄舒骏-少年狂想曲,http://em.21dtv.com/songs/60038129.mkv +张蓉蓉-是你亏欠我,http://em.21dtv.com/songs/60039466.mkv +黄舒骏-思念进行曲,http://em.21dtv.com/songs/60040537.mkv +办桌二人组-思念寄乎你(无原唱),http://em.21dtv.com/songs/60040533.mkv +SNH48-少女进化论,http://em.21dtv.com/songs/60127673.mkv +蔡秋凤-是你乎我痛(无原唱),http://em.21dtv.com/songs/60039461.mkv +SNH48-SNH驾临(演),http://em.21dtv.com/songs/60099028.mkv +薛凯琪-十年后的我,http://em.21dtv.com/songs/60130734.mkv +薛凯琪-十年后的我,http://em.21dtv.com/songs/60127372.mkv +佚名-三年后的我,http://em.21dtv.com/songs/60037271.mkv +邓健泓-十年后的你,http://em.21dtv.com/songs/60038987.mkv +李娜-是你给我爱,http://em.21dtv.com/songs/60039459.mkv +李春波-谁能告诉我,http://em.21dtv.com/songs/60040033.mkv +佚名-思念过秋冬(无原唱),http://em.21dtv.com/songs/60040532.mkv +龙千玉-是你辜负我,http://em.21dtv.com/songs/60039460.mkv +袁小迪-是你反背我,http://em.21dtv.com/songs/60039458.mkv +黄思婷-思念的滋味,http://em.21dtv.com/songs/60040523.mkv +高维那-剩女的诱惑,http://em.21dtv.com/songs/60081306.mkv +波拉-思念的雨滴,http://em.21dtv.com/songs/60040522.mkv +佚名-刹那的拥抱(无原唱),http://em.21dtv.com/songs/60012235.mkv +陈慧娴-傻女的新衣,http://em.21dtv.com/songs/60037536.mkv +吴淑敏-少女的心声,http://em.21dtv.com/songs/60038171.mkv +林姗-少女的心声,http://em.21dtv.com/songs/60038170.mkv +徐诣帆-思念的汪洋,http://em.21dtv.com/songs/60116839.mkv +王键-思念的晚上,http://em.21dtv.com/songs/60077743.mkv +蒋寅-思念的午后,http://em.21dtv.com/songs/60104403.mkv +洪百慧-思念的天线(无原唱),http://em.21dtv.com/songs/60040520.mkv +吴国敬-谁能代替你,http://em.21dtv.com/songs/60131252.mkv +郭富城-谁能代替你,http://em.21dtv.com/songs/60040032.mkv +郭富城-谁能代替你(演唱会),http://em.21dtv.com/songs/60040031.mkv +王瑞霞-思念到天光,http://em.21dtv.com/songs/60040509.mkv +江语晨-胜女的时代,http://em.21dtv.com/songs/60081330.mkv +汤媛媛-思念的日记,http://em.21dtv.com/songs/60064918.mkv +张纹嘉-少女的球鞋,http://em.21dtv.com/songs/60133685.mkv +宋逸民-思念的气味,http://em.21dtv.com/songs/60071150.mkv +王心凌-少女的祈祷,http://em.21dtv.com/songs/60117033.mkv +张敬轩-少女的祈祷,http://em.21dtv.com/songs/60077536.mkv +李逸朗+蒋雅文-少女的祈祷,http://em.21dtv.com/songs/60038167.mkv +张智霖-少女的祈祷(演唱会),http://em.21dtv.com/songs/60038166.mkv +杨千嬅-少女的祈祷(演唱会),http://em.21dtv.com/songs/60038165.mkv +汪明荃-少女的祈祷(演唱会),http://em.21dtv.com/songs/60038164.mkv +中坚份子-送你到门口,http://em.21dtv.com/songs/60040771.mkv +卓依婷-少女的恋梦,http://em.21dtv.com/songs/60038163.mkv +陈雷-思念的列车,http://em.21dtv.com/songs/60040517.mkv +薛金显-思念的苦味,http://em.21dtv.com/songs/60126158.mkv +薛金显-思念的苦味,http://em.21dtv.com/songs/60124452.mkv +翁立友-思念的咖啡,http://em.21dtv.com/songs/60040516.mkv +江宏恩-思念的咖啡,http://em.21dtv.com/songs/60040515.mkv +信乐团-思念的极限,http://em.21dtv.com/songs/60077742.mkv +洪荣宏-三年的旧情(无原唱),http://em.21dtv.com/songs/60095781.mkv +佚名-三年的旧情(无原唱),http://em.21dtv.com/songs/60037269.mkv +吴淑敏-三年的旧情,http://em.21dtv.com/songs/60005315.mkv +何炅-思念的距离,http://em.21dtv.com/songs/60040514.mkv +谢金晶-思念的海涌,http://em.21dtv.com/songs/60117236.mkv +乔幼-思念的海岸,http://em.21dtv.com/songs/60118302.mkv +阿丽玛-思念的故乡,http://em.21dtv.com/songs/60040513.mkv +王瑞霞-十年的感情,http://em.21dtv.com/songs/60038986.mkv +白冰冰-十年的感情(无原唱),http://em.21dtv.com/songs/60038985.mkv +红笛-思念的姑娘,http://em.21dtv.com/songs/60077741.mkv +玖月奇迹-思念的方向,http://em.21dtv.com/songs/60110415.mkv +玖月奇迹-思念的方向,http://em.21dtv.com/songs/60086854.mkv +许嵩-送你的独白,http://em.21dtv.com/songs/60040772.mkv +邱芸子-思念的城市,http://em.21dtv.com/songs/60040510.mkv +周蕙-思念的翅膀,http://em.21dtv.com/songs/60040511.mkv +红蔷薇-思念的别离,http://em.21dtv.com/songs/60107104.mkv +陈雷-三年的爱情,http://em.21dtv.com/songs/60037268.mkv +无印良品-是你变了吗,http://em.21dtv.com/songs/60039453.mkv +光良-是你变了吗,http://em.21dtv.com/songs/60039452.mkv +江凯文-是你不会错,http://em.21dtv.com/songs/60039454.mkv +陈慧琳-说你不爱我,http://em.21dtv.com/songs/60040406.mkv +THE DRIFTERS-saturday night at the movies,http://em.21dtv.com/songs/60004812.mkv +邓丽君-少年爱姑娘,http://em.21dtv.com/songs/60038122.mkv +崔平选-生命中有你,http://em.21dtv.com/songs/60132408.mkv +东方圣剑乐团-生命在于爱,http://em.21dtv.com/songs/60109926.mkv +易桀齐-三秒钟天堂(演唱会),http://em.21dtv.com/songs/60037257.mkv +吕雯-什么最流行,http://em.21dtv.com/songs/60072399.mkv +雨露-水墨醉江南,http://em.21dtv.com/songs/60115515.mkv +王振楠-生命中的歌,http://em.21dtv.com/songs/60129396.mkv +肖琬露-生命中的爱,http://em.21dtv.com/songs/60077562.mkv +佚名-射门英雄传,http://em.21dtv.com/songs/60077543.mkv +关心-生命圆舞曲,http://em.21dtv.com/songs/60038582.mkv +方怡萍-是梦亦是真(无原唱),http://em.21dtv.com/songs/60039442.mkv +军嫂组合-三门邀您来,http://em.21dtv.com/songs/60099766.mkv +WITNESS+FEAT.AGOTA-生命要继续,http://em.21dtv.com/songs/60038577.mkv +陈奕迅-生命有几好,http://em.21dtv.com/songs/60110627.mkv +NINE MUSES-失眠又饥饿,http://em.21dtv.com/songs/60116466.mkv +凤飞飞-什么样的你(无原唱),http://em.21dtv.com/songs/60038430.mkv +赵洪涛-什么样的爱,http://em.21dtv.com/songs/60072398.mkv +费翔-什么样的爱,http://em.21dtv.com/songs/60038428.mkv +蔡依林-什么样的爱,http://em.21dtv.com/songs/60038427.mkv +龚月-什么也不说,http://em.21dtv.com/songs/60093639.mkv +郁钧剑-什么也不说,http://em.21dtv.com/songs/60038431.mkv +佚名-shower me with your love,http://em.21dtv.com/songs/60005014.mkv +佚名-谁命我名字,http://em.21dtv.com/songs/60040030.mkv +旺福乐团-水蜜桃挽歌,http://em.21dtv.com/songs/60040208.mkv +朱安禹-水蜜桃声明,http://em.21dtv.com/songs/60040207.mkv +黄耀明-什么是缘份(演唱会),http://em.21dtv.com/songs/60064875.mkv +林志美-什么是缘份,http://em.21dtv.com/songs/60038422.mkv +庄红虎-什么是兄弟,http://em.21dtv.com/songs/60123894.mkv +张洪涛-什么是兄弟,http://em.21dtv.com/songs/60107721.mkv +李英宏+蛋堡-什么时候她,http://em.21dtv.com/songs/60127050.mkv +佚名-生命守护神,http://em.21dtv.com/songs/60077559.mkv +杜春梅-生命守护神,http://em.21dtv.com/songs/60077558.mkv +林泽丰-谁没受过伤,http://em.21dtv.com/songs/60106022.mkv +陈伟霆+种欣桐-什么是潮流,http://em.21dtv.com/songs/60038421.mkv +徐苑-什么是爱情,http://em.21dtv.com/songs/60105080.mkv +佚名-什么是爱情,http://em.21dtv.com/songs/60095393.mkv +冯冬-生命如莲花,http://em.21dtv.com/songs/60133391.mkv +青山-生命如花篮,http://em.21dtv.com/songs/60038569.mkv +李茂山-生命如花蓝,http://em.21dtv.com/songs/60038568.mkv +凤飞飞-生命如花环,http://em.21dtv.com/songs/60089158.mkv +新街口组合-谁没年轻过,http://em.21dtv.com/songs/60105098.mkv +张信哲-生命每一刻,http://em.21dtv.com/songs/60038565.mkv +卫兰-谁明浪子心,http://em.21dtv.com/songs/60112557.mkv +佚名-谁明浪子心,http://em.21dtv.com/songs/60040029.mkv +王杰-谁明浪子心(演唱会),http://em.21dtv.com/songs/60040028.mkv +王杰+赵学而-谁明浪子心(演唱会),http://em.21dtv.com/songs/60040027.mkv +高佳-沙漠流星雨,http://em.21dtv.com/songs/60111534.mkv +关心妍-三毛流浪记,http://em.21dtv.com/songs/60037253.mkv +蓝雨-沙漠里的花,http://em.21dtv.com/songs/60037462.mkv +乌兰托娅-上马酒之歌,http://em.21dtv.com/songs/60071103.mkv +邹治平-什么叫做爱,http://em.21dtv.com/songs/60077613.mkv +天孪兄弟-什么叫做爱,http://em.21dtv.com/songs/60066314.mkv +佚名-什么叫做爱,http://em.21dtv.com/songs/60038409.mkv +关心妍-smile,http://em.21dtv.com/songs/60125150.mkv +佚名-什么号做爱,http://em.21dtv.com/songs/60038406.mkv +李卓庭-失眠幻想曲,http://em.21dtv.com/songs/60038810.mkv +春妹-神秘谷之声,http://em.21dtv.com/songs/60038466.mkv +全国少儿歌曲-司马光砸缸(演唱会),http://em.21dtv.com/songs/60071147.mkv +张学友-什么改变我,http://em.21dtv.com/songs/60038405.mkv +4_IN_LOVE-什么都在意,http://em.21dtv.com/songs/60090375.mkv +水木年华-生命的尊严,http://em.21dtv.com/songs/60088188.mkv +佚名-失眠的早晨,http://em.21dtv.com/songs/60038809.mkv +水木年华-生命的意义,http://em.21dtv.com/songs/60038559.mkv +李季-生命的远行,http://em.21dtv.com/songs/60122849.mkv +刘德华-神秘的游戏,http://em.21dtv.com/songs/60092358.mkv +代悦-水墨的音色,http://em.21dtv.com/songs/60077714.mkv +安心亚-什么都依你,http://em.21dtv.com/songs/60064874.mkv +陈月-生命的阳光,http://em.21dtv.com/songs/60123301.mkv +佚名-思慕的形影,http://em.21dtv.com/songs/60040490.mkv +叶启田-思慕的形影,http://em.21dtv.com/songs/60040489.mkv +陈慧娴-什么都想要,http://em.21dtv.com/songs/60038404.mkv +李翊君-生命的温泉(无原唱),http://em.21dtv.com/songs/60038556.mkv +水木年华-生命的挑战,http://em.21dtv.com/songs/60112821.mkv +龙千玉-生命的太阳,http://em.21dtv.com/songs/60136057.mkv +云菲菲-生命的太阳,http://em.21dtv.com/songs/60061576.mkv +蔡振南-生命的太阳,http://em.21dtv.com/songs/60038555.mkv +夏川-生命的诉说,http://em.21dtv.com/songs/60099173.mkv +童唱-神秘的森林,http://em.21dtv.com/songs/60038464.mkv +苏富权-生命的曙光,http://em.21dtv.com/songs/60083787.mkv +戴佩妮-什么都舍得,http://em.21dtv.com/songs/60038403.mkv +叶胜钦-生命的情歌,http://em.21dtv.com/songs/60038554.mkv +蔡义德-生命的情歌,http://em.21dtv.com/songs/60038553.mkv +简迷离-什么都没有,http://em.21dtv.com/songs/60124332.mkv +潘秀琼-神秘的魔力,http://em.21dtv.com/songs/60038463.mkv +王利+张文博-生命的乐园,http://em.21dtv.com/songs/60085704.mkv +洪荣宏-神秘的恋情,http://em.21dtv.com/songs/60038462.mkv +王瑞霞+袁小迪-生命的恋歌,http://em.21dtv.com/songs/60038552.mkv +杨哲-生命的炉丹,http://em.21dtv.com/songs/60118710.mkv +黄晓明-什么都可以,http://em.21dtv.com/songs/60038401.mkv +葛本军-生命的交错,http://em.21dtv.com/songs/60038551.mkv +于文华-生命的红烛,http://em.21dtv.com/songs/60038549.mkv +尹玉成功-什么都会有,http://em.21dtv.com/songs/60115884.mkv +凤飞飞-生命的花环,http://em.21dtv.com/songs/60038550.mkv +陈晓东-什么都会变,http://em.21dtv.com/songs/60038400.mkv +刘思思-神马都给力,http://em.21dtv.com/songs/60103927.mkv +萧全-神马都给力(舞曲版),http://em.21dtv.com/songs/60067418.mkv +萧全-神马都给力,http://em.21dtv.com/songs/60038460.mkv +焯皓-生命的过客,http://em.21dtv.com/songs/60117018.mkv +黎俊麟-生命的飞翔,http://em.21dtv.com/songs/60121189.mkv +陈雷+杨瀞-上美的春天,http://em.21dtv.com/songs/60038047.mkv +张学友-生命的插曲,http://em.21dtv.com/songs/60038548.mkv +张学友-生命的插曲(演唱会),http://em.21dtv.com/songs/60038547.mkv +王爱华-生命的彩虹,http://em.21dtv.com/songs/60110406.mkv +邰正宵-生命的长河,http://em.21dtv.com/songs/60038560.mkv +林俊杰-十秒的冲动,http://em.21dtv.com/songs/60077602.mkv +俞静-什么都不要,http://em.21dtv.com/songs/60038399.mkv +蔡幸娟-什么都别说,http://em.21dtv.com/songs/60038393.mkv +杨千嬅-什么都不怕,http://em.21dtv.com/songs/60038398.mkv +佚名-什么都不留,http://em.21dtv.com/songs/60038397.mkv +蔡幸娟-什么都不留,http://em.21dtv.com/songs/60038396.mkv +五分之一-什么都不管,http://em.21dtv.com/songs/60090515.mkv +关心妍-什么都不爱,http://em.21dtv.com/songs/60038394.mkv +任贤齐-神魔不信邪,http://em.21dtv.com/songs/60064855.mkv +北原山猫-少来这一套,http://em.21dtv.com/songs/60038110.mkv +郑可为-胜利再闪耀,http://em.21dtv.com/songs/60126273.mkv +佚名-胜利在前头,http://em.21dtv.com/songs/60038690.mkv +杨竣-死了怎么爱,http://em.21dtv.com/songs/60040624.mkv +关淑怡-失恋演奏家(演唱会),http://em.21dtv.com/songs/60038771.mkv +翼势力-失恋圆舞曲,http://em.21dtv.com/songs/60038775.mkv +闪亮三姐妹-闪亮一颗星,http://em.21dtv.com/songs/60037736.mkv +张柏芝-失落于街头,http://em.21dtv.com/songs/60092631.mkv +彭佳慧-失恋一个月,http://em.21dtv.com/songs/60102257.mkv +S.H.E-少了一个人,http://em.21dtv.com/songs/60087212.mkv +io-少了一个你,http://em.21dtv.com/songs/60120217.mkv +郑秀文-失恋有根据,http://em.21dtv.com/songs/60038772.mkv +沙宝亮-扫落叶的人,http://em.21dtv.com/songs/60037405.mkv +孔朝-伤了一点点,http://em.21dtv.com/songs/60037819.mkv +任贤齐-谁来拥抱我,http://em.21dtv.com/songs/60090568.mkv +Under Lover-失恋一百次,http://em.21dtv.com/songs/60116482.mkv +少女时代-闪亮新世界,http://em.21dtv.com/songs/60037735.mkv +郑嘉颖-失恋心情o-a-o,http://em.21dtv.com/songs/60038767.mkv +赵颂茹-失恋心情好,http://em.21dtv.com/songs/60038768.mkv +韩冰-伤了我自己,http://em.21dtv.com/songs/60083760.mkv +孙艳-算了忘了吧,http://em.21dtv.com/songs/60119429.mkv +孙露-伤了我的心,http://em.21dtv.com/songs/60077512.mkv +张信哲-伤了我的心,http://em.21dtv.com/songs/60037815.mkv +易欣-伤了我的心,http://em.21dtv.com/songs/60037814.mkv +魏文超-伤了我的心,http://em.21dtv.com/songs/60037813.mkv +司文-杀了我的爱,http://em.21dtv.com/songs/60077474.mkv +张敬轩-室乐团指挥,http://em.21dtv.com/songs/60133662.mkv +林志斌-失恋特效药(无原唱),http://em.21dtv.com/songs/60038760.mkv +六哲+贺敬轩-失恋听情歌,http://em.21dtv.com/songs/60130096.mkv +张惠妹-水蓝色眼泪,http://em.21dtv.com/songs/60119520.mkv +张真-失恋十四行,http://em.21dtv.com/songs/60038758.mkv +后羿+淳子-失恋33天,http://em.21dtv.com/songs/60064863.mkv +叶振棠-胜利双手创,http://em.21dtv.com/songs/60038689.mkv +丸子-上流速力霸,http://em.21dtv.com/songs/60038045.mkv +李福山-十六岁花季,http://em.21dtv.com/songs/60038978.mkv +梁汉文-伤了三个心,http://em.21dtv.com/songs/60037812.mkv +梁汉文-伤了三个心(演唱会),http://em.21dtv.com/songs/60037811.mkv +余天-深蓝色的酒,http://em.21dtv.com/songs/60038305.mkv +廖日红-山路十八弯,http://em.21dtv.com/songs/60133639.mkv +阿鲁阿卓+程琳-山路十八弯,http://em.21dtv.com/songs/60098840.mkv +卓依婷-山路十八弯,http://em.21dtv.com/songs/60037660.mkv +李琼-山路十八弯,http://em.21dtv.com/songs/60037659.mkv +李琼-山路十八弯(演唱会),http://em.21dtv.com/songs/60037658.mkv +郝丹丹-三利情相依,http://em.21dtv.com/songs/60111451.mkv +欢子-失恋排行榜,http://em.21dtv.com/songs/60062483.mkv +金池-失恋派对它,http://em.21dtv.com/songs/60100519.mkv +吕雨澄+伊登-S.LOT,http://em.21dtv.com/songs/60135007.mkv +仓木麻衣-silent love open my heart,http://em.21dtv.com/songs/60005033.mkv +黄凯芹-少了你一个,http://em.21dtv.com/songs/60038114.mkv +高林生-少了你一个,http://em.21dtv.com/songs/60038113.mkv +张国荣+陈洁灵-谁令你心痴,http://em.21dtv.com/songs/60040025.mkv +佚名-谁令你心痴,http://em.21dtv.com/songs/60040024.mkv +卫诗+应昌佑-谁令你心痴(HD演唱会),http://em.21dtv.com/songs/60040023.mkv +金门王+李炳辉-so la你咧叼(无原唱),http://em.21dtv.com/songs/60005106.mkv +高雅娜-撕了那封信,http://em.21dtv.com/songs/60083842.mkv +高维那-撕了那封信,http://em.21dtv.com/songs/60077751.mkv +薛凯琪-撕了那封信,http://em.21dtv.com/songs/60068687.mkv +王心凌-上了你的瘾,http://em.21dtv.com/songs/60077531.mkv +张啸-上了你的船,http://em.21dtv.com/songs/60038043.mkv +陈慧琳-闪亮每一天,http://em.21dtv.com/songs/60037732.mkv +郑钧-塑料玫瑰花,http://em.21dtv.com/songs/60040862.mkv +佚名-sha la la la la,http://em.21dtv.com/songs/60004916.mkv +邓超予-水灵灵的她,http://em.21dtv.com/songs/60108916.mkv +林木-上了几千回,http://em.21dtv.com/songs/60088109.mkv +林木-伤了几千回,http://em.21dtv.com/songs/60037806.mkv +尹恩惠+张东健-沙拉纪念日,http://em.21dtv.com/songs/60037451.mkv +陶琪-双烈记夸夫,http://em.21dtv.com/songs/60085733.mkv +王鹤铮-谁来救救我,http://em.21dtv.com/songs/60061598.mkv +孙燕姿-sometimes love just aint enough,http://em.21dtv.com/songs/60005168.mkv +潘秀琼-梭罗河之恋,http://em.21dtv.com/songs/60041022.mkv +潘成-失恋后遗症,http://em.21dtv.com/songs/60077579.mkv +欧得洋-失落海平线,http://em.21dtv.com/songs/60038794.mkv +外国民歌-苏罗河流水,http://em.21dtv.com/songs/60089755.mkv +童唱-梭罗河流水,http://em.21dtv.com/songs/60041020.mkv +童唱-苏罗河流水,http://em.21dtv.com/songs/60040818.mkv +容祖儿-十六号爱人,http://em.21dtv.com/songs/60038975.mkv +容祖儿-十六号爱人(演唱会),http://em.21dtv.com/songs/60038974.mkv +王心凌-失恋歌迷党,http://em.21dtv.com/songs/60038750.mkv +庄心妍-失恋副作用,http://em.21dtv.com/songs/60135183.mkv +深蓝乐团-四零二二三,http://em.21dtv.com/songs/60040697.mkv +郭易-失恋28天,http://em.21dtv.com/songs/60066308.mkv +卫兰-失恋的意义,http://em.21dtv.com/songs/60127794.mkv +卫兰-失恋的意义,http://em.21dtv.com/songs/60125248.mkv +李智-森林的颜色,http://em.21dtv.com/songs/60077473.mkv +夏国星-闪亮的月亮,http://em.21dtv.com/songs/60037730.mkv +詹雅雯-失恋的药方(无原唱),http://em.21dtv.com/songs/60038745.mkv +郑秀文-失恋多一次,http://em.21dtv.com/songs/60038747.mkv +李佳薇-死了都要爱,http://em.21dtv.com/songs/60102325.mkv +沙宝亮-死了都要爱,http://em.21dtv.com/songs/60077755.mkv +信乐团-死了都要爱,http://em.21dtv.com/songs/60040622.mkv +阿信+小沈阳-死了都要爱,http://em.21dtv.com/songs/60040621.mkv +谢宏-死了都要爱,http://em.21dtv.com/songs/60040620.mkv +佚名-胜利的笑容,http://em.21dtv.com/songs/60038688.mkv +胖大海-失落的雪花,http://em.21dtv.com/songs/60062810.mkv +秋裤大叔+楼宏章-失恋的兄弟,http://em.21dtv.com/songs/60108787.mkv +楼宏章-失恋的兄弟,http://em.21dtv.com/songs/60083791.mkv +闪亮三姐妹-闪亮的舞步,http://em.21dtv.com/songs/60099561.mkv +叶胜钦-失恋的探戈,http://em.21dtv.com/songs/60038744.mkv +许巍-闪亮的瞬间,http://em.21dtv.com/songs/60037727.mkv +川北-山里的日子,http://em.21dtv.com/songs/60099213.mkv +艾怡良+陈一玲+刘瑞琦+秦妮+张薪瑞+吴申梅+黄夕倍-闪亮的日子,http://em.21dtv.com/songs/60083753.mkv +佚名-闪亮的日子,http://em.21dtv.com/songs/60037725.mkv +罗大佑-闪亮的日子,http://em.21dtv.com/songs/60037724.mkv +胡彦斌-闪亮的日子,http://em.21dtv.com/songs/60037723.mkv +孟庭苇-闪亮的日子(演唱会),http://em.21dtv.com/songs/60037722.mkv +邓丽君-失落的情歌,http://em.21dtv.com/songs/60038791.mkv +司钦馨-闪亮的青春,http://em.21dtv.com/songs/60127804.mkv +黄思婷-失落地平线,http://em.21dtv.com/songs/60038793.mkv +吴倩莲-失恋的女人,http://em.21dtv.com/songs/60038742.mkv +罗百吉-闪亮的女孩,http://em.21dtv.com/songs/60109569.mkv +群星-闪亮的明欣,http://em.21dtv.com/songs/60132802.mkv +葳宣+葳安-闪亮的梦想,http://em.21dtv.com/songs/60108874.mkv +高歌-山里的妈妈,http://em.21dtv.com/songs/60077496.mkv +周雅芳-失落的恋梦(无原唱),http://em.21dtv.com/songs/60038788.mkv +阿吉仔-失恋的节奏,http://em.21dtv.com/songs/60038739.mkv +闪亮三姐妹-闪亮的节奏,http://em.21dtv.com/songs/60037721.mkv +黄乙玲-失恋的解药,http://em.21dtv.com/songs/60038740.mkv +徐怀钰-闪亮的回忆,http://em.21dtv.com/songs/60091197.mkv +王欢-送郎当红军,http://em.21dtv.com/songs/60111275.mkv +马蕊-送郎当红军,http://em.21dtv.com/songs/60100653.mkv +马玉涛-送郎当红军,http://em.21dtv.com/songs/60100652.mkv +西部牛仔-生灵的呼唤,http://em.21dtv.com/songs/60072388.mkv +王中平-失落的黄昏(无原唱),http://em.21dtv.com/songs/60038787.mkv +北原山猫-山林的呼唤,http://em.21dtv.com/songs/60037656.mkv +龙千玉-失落的过去,http://em.21dtv.com/songs/60038786.mkv +叶俊华-山里的姑娘,http://em.21dtv.com/songs/60105677.mkv +覃春江-善良的姑娘,http://em.21dtv.com/songs/60100461.mkv +谢有才-失落的感觉,http://em.21dtv.com/songs/60077582.mkv +郭公芳-山里的哥哥,http://em.21dtv.com/songs/60037651.mkv +好妹妹乐队-松林的低语,http://em.21dtv.com/songs/60104907.mkv +佚名-松林的低语,http://em.21dtv.com/songs/60040727.mkv +张启辉-失恋的冬天,http://em.21dtv.com/songs/60038738.mkv +AMY-死了都不卖,http://em.21dtv.com/songs/60040619.mkv +群星-闪亮的爸爸,http://em.21dtv.com/songs/60117125.mkv +潘玮柏+黄子韬+陈一冰+高云翔-闪亮的爸爸,http://em.21dtv.com/songs/60117012.mkv +韩宝仪-失落的爱情,http://em.21dtv.com/songs/60038784.mkv +李若枫-失落的爱频,http://em.21dtv.com/songs/60100160.mkv +吴进法-失落的暗暝,http://em.21dtv.com/songs/60126705.mkv +余文乐-失恋博物馆,http://em.21dtv.com/songs/60038734.mkv +许志安-顺路不顺路(演唱会),http://em.21dtv.com/songs/60040308.mkv +邱芸子-失落彼段情,http://em.21dtv.com/songs/60095938.mkv +邱云子-失落彼段请,http://em.21dtv.com/songs/60095933.mkv +泽旺拉姆-索朗啊卓拉,http://em.21dtv.com/songs/60088219.mkv +孙楠-谁来安慰我,http://em.21dtv.com/songs/60040018.mkv +BLISS-失落奥斯卡,http://em.21dtv.com/songs/60038780.mkv +佚名-时刻准备着,http://em.21dtv.com/songs/60039147.mkv +BOBO-时刻准备着,http://em.21dtv.com/songs/60039146.mkv +刘育绫-爽快饮一杯,http://em.21dtv.com/songs/60095470.mkv +陈一郎-爽快干一杯,http://em.21dtv.com/songs/60039921.mkv +金巧巧-盛开的希望,http://em.21dtv.com/songs/60038696.mkv +范晓萱-失控的胖子,http://em.21dtv.com/songs/60091952.mkv +何耀珊-盛开的梦想,http://em.21dtv.com/songs/60038694.mkv +王莹-盛开的牡丹,http://em.21dtv.com/songs/60118795.mkv +宋祖英-盛开的牡丹,http://em.21dtv.com/songs/60038695.mkv +冷漠-盛开的寂寞,http://em.21dtv.com/songs/60122510.mkv +许强-盛开的红莲,http://em.21dtv.com/songs/60072391.mkv +闫旭-失控的爱情,http://em.21dtv.com/songs/60067422.mkv +龙千玉-时机造英雄,http://em.21dtv.com/songs/60039116.mkv +李克勤+容祖儿-世界真细小,http://em.21dtv.com/songs/60112746.mkv +佚名-世界真细小,http://em.21dtv.com/songs/60039304.mkv +童唱-世界真细小,http://em.21dtv.com/songs/60039303.mkv +扎西顿珠-时间指向爱,http://em.21dtv.com/songs/60123988.mkv +朱安禹-世界真奇妙,http://em.21dtv.com/songs/60039302.mkv +水蜜桃-世界真奇妙,http://em.21dtv.com/songs/60039301.mkv +陈盈洁-送君在码头,http://em.21dtv.com/songs/60040764.mkv +SIGMA-世界这么乱,http://em.21dtv.com/songs/60039300.mkv +凤飞飞-送君珠泪滴,http://em.21dtv.com/songs/60040766.mkv +蔡幸娟-送君珠泪滴,http://em.21dtv.com/songs/60040765.mkv +张信哲-世界这分钟,http://em.21dtv.com/songs/60039299.mkv +张皓然+周晋进+厉敏-世界准备好,http://em.21dtv.com/songs/60117741.mkv +郭蘅祈-瞬间与永远,http://em.21dtv.com/songs/60101690.mkv +吕珊-世界语言medley(演唱会),http://em.21dtv.com/songs/60077638.mkv +叶振棠-世界由我造,http://em.21dtv.com/songs/60039296.mkv +莉莉-是酒也是泪(无原唱),http://em.21dtv.com/songs/60039438.mkv +妖扬+卡修Rui-霜降 雁归,http://em.21dtv.com/songs/60131314.mkv +ONE DRAFT-ダイヤモンド~世界で一番固いイシ~,http://em.21dtv.com/songs/60100744.mkv +亮亮-时间有多远,http://em.21dtv.com/songs/60099077.mkv +童唱-世界小小小,http://em.21dtv.com/songs/60039293.mkv +huasee-送君心绵绵,http://em.21dtv.com/songs/60095372.mkv +瓯子-说句心里话,http://em.21dtv.com/songs/60077732.mkv +刘一祯+刘和刚-说句心里话(演唱会),http://em.21dtv.com/songs/60077731.mkv +郁钧剑-说句心里话,http://em.21dtv.com/songs/60040395.mkv +阎维文-说句心里话,http://em.21dtv.com/songs/60040394.mkv +阿雅-世界无限大,http://em.21dtv.com/songs/60039290.mkv +周杰伦-世界未末日,http://em.21dtv.com/songs/60064885.mkv +谭维维-世界我来了,http://em.21dtv.com/songs/60039288.mkv +姜育恒-时间无地等,http://em.21dtv.com/songs/60090880.mkv +游鸿明-世界太冷漠,http://em.21dtv.com/songs/60039285.mkv +陈盈洁-烧酒透咖啡,http://em.21dtv.com/songs/60038094.mkv +宁新兵-手机太疯狂,http://em.21dtv.com/songs/60133571.mkv +张希晨-世界太安静,http://em.21dtv.com/songs/60105837.mkv +茅小勇-时间说的话,http://em.21dtv.com/songs/60102671.mkv +方婉真-三讲四不对,http://em.21dtv.com/songs/60037236.mkv +谢宜君-世间人的心,http://em.21dtv.com/songs/60102742.mkv +宋靖宇-时间惹的祸,http://em.21dtv.com/songs/60131355.mkv +杨哲-烧酒乾一杯,http://em.21dtv.com/songs/60135392.mkv +廖丽娜-烧酒配目屎(无原唱),http://em.21dtv.com/songs/60038093.mkv +周韦杰-烧酒配歌声,http://em.21dtv.com/songs/60063463.mkv +汉洋-睡觉那么难,http://em.21dtv.com/songs/60040289.mkv +孙子涵+黄美珍-世界那么大,http://em.21dtv.com/songs/60118495.mkv +吴洁伟-世界那么大,http://em.21dtv.com/songs/60116642.mkv +李李仁-世界那么大(无原唱),http://em.21dtv.com/songs/60039277.mkv +爱的大未来-世纪末之诗,http://em.21dtv.com/songs/60088269.mkv +许志安+梁汉文-世纪末烟花(演唱会),http://em.21dtv.com/songs/60083805.mkv +易桀齐-世纪末烟火,http://em.21dtv.com/songs/60039220.mkv +许志安-世纪末烟花,http://em.21dtv.com/songs/60039219.mkv +许志安-世纪末烟花(演唱会),http://em.21dtv.com/songs/60039218.mkv +许志安-世记末烟花,http://em.21dtv.com/songs/60039212.mkv +唐雅明-时间美术馆,http://em.21dtv.com/songs/60039138.mkv +萧全-世界末日前,http://em.21dtv.com/songs/60064883.mkv +皓天-释迦牟尼说,http://em.21dtv.com/songs/60113903.mkv +周杰伦-世界末末日,http://em.21dtv.com/songs/60064882.mkv +阿吉仔-爽就免歹势,http://em.21dtv.com/songs/60039919.mkv +魏雪漫-时间里的花,http://em.21dtv.com/songs/60106477.mkv +晓月-手渐渐松开,http://em.21dtv.com/songs/60071131.mkv +郭斯炫-世界晋江人,http://em.21dtv.com/songs/60085721.mkv +陈钰芸-瞬间救地球,http://em.21dtv.com/songs/60061603.mkv +群星-世界好气氛,http://em.21dtv.com/songs/60134121.mkv +七郎-世间活菩萨,http://em.21dtv.com/songs/60039232.mkv +高向鹏-烧酒扞来开(无原唱),http://em.21dtv.com/songs/60038085.mkv +翟寭立-四季花儿开,http://em.21dtv.com/songs/60040689.mkv +佚名-尚界关心你,http://em.21dtv.com/songs/60038074.mkv +郭富城-神经 故事篇,http://em.21dtv.com/songs/60038455.mkv +郑少秋-书剑恩仇录,http://em.21dtv.com/songs/60039734.mkv +郑少秋-书剑恩仇录(演唱会),http://em.21dtv.com/songs/60039733.mkv +汪明荃-书剑恩仇录(演唱会),http://em.21dtv.com/songs/60039732.mkv +张清芳-时间的滋味(演唱会),http://em.21dtv.com/songs/60039131.mkv +蔡义德-闪酒大丈夫,http://em.21dtv.com/songs/60104412.mkv +陈诗莉-世界都知道,http://em.21dtv.com/songs/60077633.mkv +满文军-圣洁的真爱,http://em.21dtv.com/songs/60091637.mkv +吴蕙君-世界第一勇,http://em.21dtv.com/songs/60135018.mkv +袁惟仁-四季的眼泪(演唱会),http://em.21dtv.com/songs/60040677.mkv +荒山亮-时间的眼泪,http://em.21dtv.com/songs/60039130.mkv +刘德华-世界第一等,http://em.21dtv.com/songs/60039261.mkv +伍佰-世界第一等(演唱会),http://em.21dtv.com/songs/60039260.mkv +刘德华-世界第一等(演唱会),http://em.21dtv.com/songs/60039259.mkv +初斯基-圣洁的心愿,http://em.21dtv.com/songs/60123695.mkv +樊凡-时间的漩涡,http://em.21dtv.com/songs/60101658.mkv +任重-时间的漩涡,http://em.21dtv.com/songs/60080688.mkv +机动现场-时间的小偷,http://em.21dtv.com/songs/60069821.mkv +扎西尼玛-圣洁的心绳,http://em.21dtv.com/songs/60038682.mkv +格桑拉姆-圣洁的雪莲,http://em.21dtv.com/songs/60121831.mkv +巴桑拉姆-圣洁的西藏,http://em.21dtv.com/songs/60107696.mkv +蔡小虎+张秀卿-世间的舞台,http://em.21dtv.com/songs/60064881.mkv +周冰倩-世纪的握手,http://em.21dtv.com/songs/60090832.mkv +宇伦-时间的味道,http://em.21dtv.com/songs/60083800.mkv +林志炫-时间的味道,http://em.21dtv.com/songs/60039129.mkv +夏韶声-说句动听话(演唱会),http://em.21dtv.com/songs/60040393.mkv +周雅芳-世间的男人,http://em.21dtv.com/songs/60039231.mkv +雷光夏-时间的密语,http://em.21dtv.com/songs/60039128.mkv +许茹芸-时间的秘密,http://em.21dtv.com/songs/60039127.mkv +邓丽君-世界多美丽(演唱会),http://em.21dtv.com/songs/60039263.mkv +卢庚戌-时间的玫瑰,http://em.21dtv.com/songs/60131232.mkv +张萱妍-时间丢了我,http://em.21dtv.com/songs/60039133.mkv +尚雯婕-时间的力量,http://em.21dtv.com/songs/60130274.mkv +尚雯婕-时间的力量,http://em.21dtv.com/songs/60115881.mkv +佚名-世界多可爱,http://em.21dtv.com/songs/60039262.mkv +任重-世界的尽头,http://em.21dtv.com/songs/60112498.mkv +孙淑媚-十九登机门(无原唱),http://em.21dtv.com/songs/60038968.mkv +许绍洋-时间的距离,http://em.21dtv.com/songs/60039126.mkv +陈柏宇-上集大结局,http://em.21dtv.com/songs/60123307.mkv +兰卡布尺-圣洁的哈达,http://em.21dtv.com/songs/60089646.mkv +藏獒组合-圣洁的高原,http://em.21dtv.com/songs/60077572.mkv +亚东-圣洁的观音,http://em.21dtv.com/songs/60038679.mkv +梁咏琪-四季的故事,http://em.21dtv.com/songs/60040676.mkv +徐伟贤-十架的冠冕,http://em.21dtv.com/songs/60038966.mkv +陈惠婷-时间的孤岛,http://em.21dtv.com/songs/60103684.mkv +彭丽媛-世纪的春雨,http://em.21dtv.com/songs/60087863.mkv +李清坡-圣洁的藏女,http://em.21dtv.com/songs/60113639.mkv +蓝乔锋-时间的差距,http://em.21dtv.com/songs/60107188.mkv +B2-世纪超时空,http://em.21dtv.com/songs/60092138.mkv +欧霖-三借芭蕉扇,http://em.21dtv.com/songs/60124171.mkv +陈洁丽-世界不可怕(HD),http://em.21dtv.com/songs/10012823.mkv +陈洁丽-世界不可怕,http://em.21dtv.com/songs/60071124.mkv +陈一郎-烧酒伴孤灯,http://em.21dtv.com/songs/60095968.mkv +胡杏儿-时间不等我,http://em.21dtv.com/songs/60039122.mkv +Gary Barlow-Since I Saw You Last,http://em.21dtv.com/songs/60098997.mkv +左东川-说好在一起,http://em.21dtv.com/songs/60121620.mkv +孙健康-说好在一起,http://em.21dtv.com/songs/60112620.mkv +佚名-社会主义好,http://em.21dtv.com/songs/60038237.mkv +钟欣桐-生活在他方,http://em.21dtv.com/songs/60038543.mkv +家蔚-生活在宁波,http://em.21dtv.com/songs/60102152.mkv +零点乐队-谁还在乎谁,http://em.21dtv.com/songs/60039986.mkv +谢天笑-生活在地下,http://em.21dtv.com/songs/60110535.mkv +蔡秋凤-生活影印机(无原唱),http://em.21dtv.com/songs/60038542.mkv +崎君-神话英雄mj,http://em.21dtv.com/songs/60038448.mkv +苏爱伦-生活要快乐(无原唱),http://em.21dtv.com/songs/60038541.mkv +果然哥-生活小神曲,http://em.21dtv.com/songs/60114627.mkv +梁咏琪-深呼吸飞行,http://em.21dtv.com/songs/60038301.mkv +古巨基-深呼吸飞行,http://em.21dtv.com/songs/60038300.mkv +李日进-谁和我一样,http://em.21dtv.com/songs/60135360.mkv +忢訫-谁和我同醉,http://em.21dtv.com/songs/60119578.mkv +罗雨-上海我的爱,http://em.21dtv.com/songs/60122017.mkv +沈玉-上海天长人,http://em.21dtv.com/songs/60117884.mkv +林忆莲-伤痕(双语种),http://em.21dtv.com/songs/60037796.mkv +丸子-上海速霸力,http://em.21dtv.com/songs/60090484.mkv +王烁巽-尚豪人之歌,http://em.21dtv.com/songs/60102539.mkv +林子娟-伤害阮的心(无原唱),http://em.21dtv.com/songs/60037782.mkv +次仁拉宗-说好去看花,http://em.21dtv.com/songs/60071146.mkv +李玉玺-Shout,http://em.21dtv.com/songs/60113642.mkv +尹红-商海女英赞,http://em.21dtv.com/songs/60118526.mkv +SNH48-SHN驾临,http://em.21dtv.com/songs/60113189.mkv +刘依纯-收回你的心,http://em.21dtv.com/songs/60039591.mkv +林玉英-伤痕抹未平,http://em.21dtv.com/songs/60037795.mkv +廖大森-尚好麦天光,http://em.21dtv.com/songs/60038073.mkv +洛天依-山海默示录,http://em.21dtv.com/songs/60131611.mkv +张敬轩-伤痕+没结果(演唱会),http://em.21dtv.com/songs/60037788.mkv +台风-撒哈拉沙漠,http://em.21dtv.com/songs/60037142.mkv +金志文-撒哈拉的花,http://em.21dtv.com/songs/60130810.mkv +李玟-撒哈拉冰室(演唱会),http://em.21dtv.com/songs/60037140.mkv +孙艳+邹芳武-说好了不哭,http://em.21dtv.com/songs/60040375.mkv +弦子-说好就算了,http://em.21dtv.com/songs/60080774.mkv +洪翔-谁会甲你讲,http://em.21dtv.com/songs/60039989.mkv +郭富城-谁会记得我,http://em.21dtv.com/songs/60039988.mkv +Jemaine Clement-Shiny,http://em.21dtv.com/songs/60131071.mkv +Years&Years-Shine,http://em.21dtv.com/songs/60113204.mkv +LADY GAGA-so happy i could die,http://em.21dtv.com/songs/60073898.mkv +陈盈洁-伤好痕原在(无原唱),http://em.21dtv.com/songs/60037785.mkv +林育群-上海的月亮,http://em.21dtv.com/songs/60099343.mkv +任军太-说谎的眼泪,http://em.21dtv.com/songs/60094395.mkv +津亭-说谎的眼泪,http://em.21dtv.com/songs/60040391.mkv +任贤齐-说谎的眼睛,http://em.21dtv.com/songs/60040390.mkv +芭比-说谎的眼睛(无原唱),http://em.21dtv.com/songs/60040389.mkv +江湖乐队-束河的阳光,http://em.21dtv.com/songs/60102435.mkv +许艺娜-说好的约定,http://em.21dtv.com/songs/60112959.mkv +廖昌永-说好的幸福,http://em.21dtv.com/songs/60133642.mkv +丁毅-说好的幸福,http://em.21dtv.com/songs/60118293.mkv +孟利-守候的温柔,http://em.21dtv.com/songs/60068666.mkv +魏雨薇-说好的未来,http://em.21dtv.com/songs/60102950.mkv +轻乐队-生活的味儿,http://em.21dtv.com/songs/60126245.mkv +李玟-守候的痛楚,http://em.21dtv.com/songs/60039671.mkv +王力宏-说话大坦白,http://em.21dtv.com/songs/60040379.mkv +孙燕姿-尚好的青春,http://em.21dtv.com/songs/60097597.mkv +辛晓琪-说谎的女人,http://em.21dtv.com/songs/60040387.mkv +何龙雨-说谎的女人,http://em.21dtv.com/songs/60040386.mkv +何超仪-说谎的女人,http://em.21dtv.com/songs/60040385.mkv +江蕙-失婚的女人,http://em.21dtv.com/songs/60038713.mkv +沈志仲-伤害的理由,http://em.21dtv.com/songs/60124196.mkv +郑源-说谎的流星,http://em.21dtv.com/songs/60077730.mkv +林淑蓉-尚好的换帖,http://em.21dtv.com/songs/60038072.mkv +李慧珍-深海的孤单,http://em.21dtv.com/songs/60038290.mkv +欢子-说谎的爱人[演唱会],http://em.21dtv.com/songs/60128148.mkv +舒心翼语-说谎的爱人,http://em.21dtv.com/songs/60080496.mkv +王杰-说谎的爱人(演唱会),http://em.21dtv.com/songs/60040384.mkv +熊七梅-说好不准哭,http://em.21dtv.com/songs/60098615.mkv +张皓然-说好不想你,http://em.21dtv.com/songs/60071145.mkv +邓力川+盛希-说好不许哭,http://em.21dtv.com/songs/60132966.mkv +盛希+邓力川-说好不许哭,http://em.21dtv.com/songs/60131702.mkv +夏后-说好不难过,http://em.21dtv.com/songs/60125334.mkv +龙啸-社会不好混,http://em.21dtv.com/songs/60077542.mkv +金海心-说好不后悔,http://em.21dtv.com/songs/60040372.mkv +张丹锋-说好不分手,http://em.21dtv.com/songs/60113450.mkv +杨洺-说好不分手,http://em.21dtv.com/songs/60111188.mkv +杨洺-说好不分手,http://em.21dtv.com/songs/60108608.mkv +唐煜航-说好不放手,http://em.21dtv.com/songs/60069845.mkv +蔡葵-说好不分手,http://em.21dtv.com/songs/60040371.mkv +Frank秋枫-生活必备曲,http://em.21dtv.com/songs/60106534.mkv +杨乐-Shana,http://em.21dtv.com/songs/60116931.mkv +霍勇-曙光在前头,http://em.21dtv.com/songs/60119044.mkv +靓舞精灵-傻瓜真好笑,http://em.21dtv.com/songs/60037521.mkv +陈文媛+李茏怡-时光中飞舞,http://em.21dtv.com/songs/60039113.mkv +张宇-傻瓜与野ㄚ头,http://em.21dtv.com/songs/60087805.mkv +侯歌-傻瓜也有爱,http://em.21dtv.com/songs/60037515.mkv +李悦-上官燕的诗,http://em.21dtv.com/songs/60038022.mkv +刘秋仪-谁敢相信你,http://em.21dtv.com/songs/60087417.mkv +张津涤-时光像流水,http://em.21dtv.com/songs/60126890.mkv +李婷宜-伤过心的人,http://em.21dtv.com/songs/60037780.mkv +田一龙-谁给谁幸福,http://em.21dtv.com/songs/60039981.mkv +佚名-sally go round the roses(无原唱),http://em.21dtv.com/songs/60004796.mkv +王菀之-三个人的错,http://em.21dtv.com/songs/60082003.mkv +陈梓沫-帅哥去哪儿,http://em.21dtv.com/songs/60102893.mkv +钟应龙-伤感排行榜,http://em.21dtv.com/songs/60114156.mkv +唐古-说给男人听,http://em.21dtv.com/songs/60105711.mkv +彭如珺-说给男人听,http://em.21dtv.com/songs/60040367.mkv +泽朗多吉-四姑娘恋曲,http://em.21dtv.com/songs/60040663.mkv +区小丽-送给你的歌,http://em.21dtv.com/songs/60040749.mkv +翟惠民-十跪母重恩,http://em.21dtv.com/songs/60038965.mkv +爱朵女孩-水果魔法棒,http://em.21dtv.com/songs/60077709.mkv +刘伟德-谁关了阳光,http://em.21dtv.com/songs/60099794.mkv +姜青涛-输给了寂寞,http://em.21dtv.com/songs/60077673.mkv +董伟-输给了距离,http://em.21dtv.com/songs/60106245.mkv +林依伦-时光进行曲,http://em.21dtv.com/songs/60039108.mkv +王雪娥-傻瓜就是我,http://em.21dtv.com/songs/60037514.mkv +莫旭秋-smoke gets in your eyes(演唱会),http://em.21dtv.com/songs/60073897.mkv +THE PLATTERS-smoke gets in your eyes,http://em.21dtv.com/songs/60005087.mkv +张菲-smoke gets in your eyes(演唱会),http://em.21dtv.com/songs/60005086.mkv +佚名-somethings gotten hold of my,http://em.21dtv.com/songs/60005166.mkv +宇桐非-谁辜负了谁,http://em.21dtv.com/songs/60039983.mkv +拾参乐团-傻瓜的转角,http://em.21dtv.com/songs/60105085.mkv +谢子歌-傻瓜都知道,http://em.21dtv.com/songs/60037513.mkv +STRINGS组合-傻瓜都一样,http://em.21dtv.com/songs/60037512.mkv +王旭-时光的氧气,http://em.21dtv.com/songs/60064878.mkv +丁克森-傻瓜的信仰,http://em.21dtv.com/songs/60117520.mkv +姜潮-时光的夏天,http://em.21dtv.com/songs/60135099.mkv +何静-时光的邂逅,http://em.21dtv.com/songs/60087322.mkv +雷诺儿-傻瓜的问候,http://em.21dtv.com/songs/60098905.mkv +曹潇续-时光的牵挂,http://em.21dtv.com/songs/60099280.mkv +信-傻瓜的冒险,http://em.21dtv.com/songs/60109154.mkv +黄凯芹-伤感的恋人,http://em.21dtv.com/songs/60037772.mkv +李克勤+黄凯芹-伤感的恋人(演唱会),http://em.21dtv.com/songs/60037771.mkv +黄凯芹-伤感的恋人(演唱会),http://em.21dtv.com/songs/60037770.mkv +裕美-水果大联盟,http://em.21dtv.com/songs/60040188.mkv +白思雪-闪光的肩章,http://em.21dtv.com/songs/60121970.mkv +宗庸卓玛-山谷的回声,http://em.21dtv.com/songs/60037644.mkv +苏小明-山谷的歌声,http://em.21dtv.com/songs/60037643.mkv +佚名-伤感的电影(伦巴),http://em.21dtv.com/songs/60037769.mkv +赵泳鑫-说过的不算,http://em.21dtv.com/songs/60126234.mkv +TWINS-涉谷车站见,http://em.21dtv.com/songs/60092220.mkv +邓丽君-时光不再来,http://em.21dtv.com/songs/60039097.mkv +萧亚轩-super girl爱无畏,http://em.21dtv.com/songs/60071670.mkv +易桀齐-三分钟天堂,http://em.21dtv.com/songs/60037202.mkv +张文绮-三分钟热度,http://em.21dtv.com/songs/60085667.mkv +脱拉库乐团-三分钟情歌,http://em.21dtv.com/songs/60113986.mkv +张学友-是否在恋爱(演唱会),http://em.21dtv.com/songs/60039431.mkv +宰更-是否在乎我,http://em.21dtv.com/songs/60124783.mkv +草蜢-三分钟放纵,http://em.21dtv.com/songs/60037198.mkv +草蜢-三分钟放纵(演唱会),http://em.21dtv.com/songs/60037197.mkv +黄莺莺-是否真爱我,http://em.21dtv.com/songs/60039433.mkv +杜坤-师父谢谢你,http://em.21dtv.com/songs/60132575.mkv +艾怡良-Set Fire To The Rain,http://em.21dtv.com/songs/60080418.mkv +ADELE-set fire to the rain,http://em.21dtv.com/songs/60061942.mkv +宋念宇-说分手之后,http://em.21dtv.com/songs/60040366.mkv +罗桦-十分十二时(演唱会),http://em.21dtv.com/songs/60077601.mkv +林子祥+陈奕迅-十分十二吋,http://em.21dtv.com/songs/60092853.mkv +群星-十分十二寸(演唱会),http://em.21dtv.com/songs/60077600.mkv +乃木坂46-三番目の风,http://em.21dtv.com/songs/60133328.mkv +陈建玮-生份的情歌,http://em.21dtv.com/songs/60121076.mkv +罗中旭-随风的方向,http://em.21dtv.com/songs/60089439.mkv +孙楠-是否爱过我,http://em.21dtv.com/songs/60107654.mkv +梦成-是否爱过我,http://em.21dtv.com/songs/60069825.mkv +孙楠-是否爱过我,http://em.21dtv.com/songs/60039419.mkv +方梦诚-是否爱过我,http://em.21dtv.com/songs/60039418.mkv +孙楠-是否爱过我(演唱会),http://em.21dtv.com/songs/60039417.mkv +王舒-十二种颜色,http://em.21dtv.com/songs/60064871.mkv +陈琳-十二种颜色,http://em.21dtv.com/songs/60038949.mkv +陈宇恒-十二月战役,http://em.21dtv.com/songs/60108125.mkv +黄乙玲-十二月情批,http://em.21dtv.com/songs/60038946.mkv +曾桂英-十二月古人,http://em.21dtv.com/songs/60038945.mkv +佚名-十二月古人(无原唱),http://em.21dtv.com/songs/60038944.mkv +谢安琪-十二月二十,http://em.21dtv.com/songs/60064870.mkv +李彩桦-十二月的雨,http://em.21dtv.com/songs/60038943.mkv +汪峰-十二月的泪,http://em.21dtv.com/songs/60038942.mkv +刘敬雯-SEEMS LIKE SO FAR AWAY,http://em.21dtv.com/songs/60127770.mkv +谢霆锋-十二道锋味,http://em.21dtv.com/songs/60102746.mkv +孙莞-甩掉游泳圈,http://em.21dtv.com/songs/60105759.mkv +洪荣宏-水底鸳鸯梦(无原唱),http://em.21dtv.com/songs/60040184.mkv +陈慧珊-撒旦与天使,http://em.21dtv.com/songs/60037137.mkv +佚名-上帝也哭泣,http://em.21dtv.com/songs/60038016.mkv +王杰-上帝也哭泣,http://em.21dtv.com/songs/60038015.mkv +五月天-圣诞夜惊魂,http://em.21dtv.com/songs/60038672.mkv +佚名-省都一封信,http://em.21dtv.com/songs/60038657.mkv +群星-松的衣池濑(演唱会),http://em.21dtv.com/songs/60040720.mkv +I LOVE YOU BOYZ-松的衣池濑(演唱会),http://em.21dtv.com/songs/60040719.mkv +王建杰-谁的心最痛(无原唱),http://em.21dtv.com/songs/60039962.mkv +李玟-谁的香水味,http://em.21dtv.com/songs/60039958.mkv +群星-圣诞新年family,http://em.21dtv.com/songs/60038670.mkv +佚名-山地小姑娘,http://em.21dtv.com/songs/60037605.mkv +张韶涵-谁的乌托邦,http://em.21dtv.com/songs/60039957.mkv +佚名-四点五十五,http://em.21dtv.com/songs/60040656.mkv +孙伟-谁带我回家,http://em.21dtv.com/songs/60061595.mkv +ASHER ROTH & KERI HILSON-she dont wanna man,http://em.21dtv.com/songs/60073863.mkv +谭佩妮-甩掉水桶腰,http://em.21dtv.com/songs/60123183.mkv +薛凯琪-上帝是男孩,http://em.21dtv.com/songs/60093124.mkv +田梓呈-圣诞思恋礼,http://em.21dtv.com/songs/60038669.mkv +LUNAR-圣诞十二点,http://em.21dtv.com/songs/60097522.mkv +平安-山顶上的海,http://em.21dtv.com/songs/60097488.mkv +胡夏-数到三不哭,http://em.21dtv.com/songs/60077679.mkv +歌武传奇-帅都去哪了,http://em.21dtv.com/songs/60132661.mkv +闻梵-山的那一边,http://em.21dtv.com/songs/60131919.mkv +朱咪咪-送到你身边,http://em.21dtv.com/songs/60092769.mkv +陈明-谁懂女人心,http://em.21dtv.com/songs/60127553.mkv +陈瑞-谁懂女人花,http://em.21dtv.com/songs/60115509.mkv +陈娟儿-谁都没有错,http://em.21dtv.com/songs/60129734.mkv +张雷-屌丝的梦想,http://em.21dtv.com/songs/60115168.mkv +春妹-山地门迈雅,http://em.21dtv.com/songs/60037601.mkv +TOM PETTY+STEVIE NIC-stop dragginmy heart around,http://em.21dtv.com/songs/60005275.mkv +群星-圣诞联欢会,http://em.21dtv.com/songs/60077569.mkv +任贤齐-圣诞快来了,http://em.21dtv.com/songs/60085706.mkv +佚名-圣诞快乐歌,http://em.21dtv.com/songs/60094404.mkv +童唱-圣诞快乐歌,http://em.21dtv.com/songs/60038663.mkv +草蜢+软硬天师-山顶既朋友,http://em.21dtv.com/songs/60077492.mkv +陈慧琳-山顶既朋友,http://em.21dtv.com/songs/60037610.mkv +陈慧琳-杀掉旧名单,http://em.21dtv.com/songs/60037428.mkv +伍佰-上帝救救我,http://em.21dtv.com/songs/60038012.mkv +洪荣宏-山顶锯柴夫,http://em.21dtv.com/songs/60037611.mkv +许绍洋-傻的好幸福,http://em.21dtv.com/songs/60037501.mkv +庾澄庆-山顶黑狗兄,http://em.21dtv.com/songs/60037609.mkv +林隆璇+张中立-山顶黑狗兄(无原唱),http://em.21dtv.com/songs/60037608.mkv +胖大海-输的很彻底,http://em.21dtv.com/songs/60069833.mkv +吴克群-圣诞分手节,http://em.21dtv.com/songs/60038658.mkv +佚名-山地风光曲,http://em.21dtv.com/songs/60037600.mkv +张英席+王莉-时代的勇气,http://em.21dtv.com/songs/60109337.mkv +张英席+王莉-时代的勇气,http://em.21dtv.com/songs/60108505.mkv +梁正-上帝的微笑,http://em.21dtv.com/songs/60112038.mkv +崔健-时代的晚上,http://em.21dtv.com/songs/60091008.mkv +徐佳莹-树洞的声音,http://em.21dtv.com/songs/60125560.mkv +黑龙-骚动的青春,http://em.21dtv.com/songs/60083743.mkv +蓝米组合-时代的力量,http://em.21dtv.com/songs/60116233.mkv +葛镇狄-时代的春天,http://em.21dtv.com/songs/60131777.mkv +乔幼+陈随意-山顶的春天,http://em.21dtv.com/songs/60108273.mkv +江美琪-上帝的帮助,http://em.21dtv.com/songs/60038011.mkv +任贤齐-睡到12点,http://em.21dtv.com/songs/60040287.mkv +春妹-山地痴情梦,http://em.21dtv.com/songs/60037599.mkv +雪村-山东出好汉,http://em.21dtv.com/songs/60037613.mkv +陈雅森-谁都别安慰,http://em.21dtv.com/songs/60133059.mkv +吴文煜-说唱中国红,http://em.21dtv.com/songs/60085042.mkv +少女时代-说出愿望吧,http://em.21dtv.com/songs/60040359.mkv +陆翊-四次元爱情,http://em.21dtv.com/songs/60112340.mkv +徐若瑄-四次我爱你,http://em.21dtv.com/songs/60040651.mkv +COMZ-伸出你的手,http://em.21dtv.com/songs/60104659.mkv +彭浩-三朝泪化曲,http://em.21dtv.com/songs/60111093.mkv +崔子格-蔬菜里的花,http://em.21dtv.com/songs/60106800.mkv +康小白-手残吉他手,http://em.21dtv.com/songs/60097509.mkv +曹格-supermarket超级市场,http://em.21dtv.com/songs/60005376.mkv +感恩奋进-四川欢迎你,http://em.21dtv.com/songs/60077759.mkv +熊立红-四川更美丽,http://em.21dtv.com/songs/60085752.mkv +洛天依-上乘功夫面,http://em.21dtv.com/songs/60131609.mkv +倪安东-散场的拥抱,http://em.21dtv.com/songs/60037384.mkv +王晶-失宠的娃娃,http://em.21dtv.com/songs/60038712.mkv +上官晓懿-谁唱的情歌,http://em.21dtv.com/songs/60104760.mkv +翁立友-散场的空虚,http://em.21dtv.com/songs/60037383.mkv +Louie+陆星材-四车道公路,http://em.21dtv.com/songs/60134746.mkv +李鸿达-奢侈的爱你,http://em.21dtv.com/songs/60093836.mkv +罗文聪+曾心梅-散步在云顶,http://em.21dtv.com/songs/60083742.mkv +那仁格日勒-山不转水转,http://em.21dtv.com/songs/60090246.mkv +卓依婷-山不转水转,http://em.21dtv.com/songs/60037587.mkv +那英-山不转水转(演唱会),http://em.21dtv.com/songs/60037586.mkv +阿牛-上辈子欠你,http://em.21dtv.com/songs/60088841.mkv +金海心-睡不着的海,http://em.21dtv.com/songs/60040286.mkv +阿维-守不住的爱,http://em.21dtv.com/songs/60134383.mkv +庄学忠-十八相送之,http://em.21dtv.com/songs/60087750.mkv +刘愉愉-谁把我拯救,http://em.21dtv.com/songs/60085736.mkv +佚名-睡吧我的爱,http://em.21dtv.com/songs/60040285.mkv +许景淳-睡吧我的爱(无原唱),http://em.21dtv.com/songs/60040284.mkv +许云上-谁伴我闯荡,http://em.21dtv.com/songs/60123163.mkv +BEYOND-谁伴我闯荡(演唱会),http://em.21dtv.com/songs/60039940.mkv +佚名-是不是这样,http://em.21dtv.com/songs/60039400.mkv +韩晓辉-水兵思乡情,http://em.21dtv.com/songs/60116369.mkv +张寒-谁比谁伤心,http://em.21dtv.com/songs/60039942.mkv +周子寒-算不算可惜,http://em.21dtv.com/songs/60071164.mkv +陈淑桦-算不算可惜,http://em.21dtv.com/songs/60040883.mkv +杨子-谁比谁更累,http://em.21dtv.com/songs/60101115.mkv +王佳东-十八岁不哭,http://em.21dtv.com/songs/60072395.mkv +闪亮三姐妹-是不是爱我,http://em.21dtv.com/songs/60039391.mkv +何洁-是不是爱情,http://em.21dtv.com/songs/60062443.mkv +刘中省-刷爆朋友圈,http://em.21dtv.com/songs/60123666.mkv +冯晓荣-陕北女娃娃,http://em.21dtv.com/songs/60109170.mkv +徐子涵-说吧你说吧,http://em.21dtv.com/songs/60040343.mkv +白家绮-闪爆你的心,http://em.21dtv.com/songs/60130623.mkv +姚小龙-谁把你代替,http://em.21dtv.com/songs/60039938.mkv +韩春-身边没人陪,http://em.21dtv.com/songs/60038250.mkv +段婷婷+李楼-十八里相送,http://em.21dtv.com/songs/60069814.mkv +吉娃斯杜岚-上不了天堂(无原唱),http://em.21dtv.com/songs/60038003.mkv +佚名-森巴嘉年华,http://em.21dtv.com/songs/60037420.mkv +温碧霞-森巴嘉年华,http://em.21dtv.com/songs/60037419.mkv +王觉-谁绑架了谁,http://em.21dtv.com/songs/60129421.mkv +波拉-说变就变了,http://em.21dtv.com/songs/60102472.mkv +AKON-sorry blame it on me,http://em.21dtv.com/songs/60005190.mkv +尤国通-士兵好兄弟,http://em.21dtv.com/songs/60068661.mkv +江俐奇-谁不会流泪,http://em.21dtv.com/songs/60039947.mkv +佚名-收不回的爱,http://em.21dtv.com/songs/60039584.mkv +黄乙玲-收不回的爱,http://em.21dtv.com/songs/60039583.mkv +佚名-送别归乡歌(无原唱),http://em.21dtv.com/songs/60040736.mkv +吕继宏-水兵的祝福,http://em.21dtv.com/songs/60040174.mkv +五月天+陈绮贞-私奔到月球,http://em.21dtv.com/songs/60040465.mkv +颜楚杉-身边的幸福,http://em.21dtv.com/songs/60127591.mkv +万梓良-身边的幸福(无原唱),http://em.21dtv.com/songs/60038249.mkv +武艺-舍不得忘记,http://em.21dtv.com/songs/60085692.mkv +许志安-善变的柔情,http://em.21dtv.com/songs/60037753.mkv +王建芳-舍不得你走,http://em.21dtv.com/songs/60102522.mkv +焦庆军-舍不得你走,http://em.21dtv.com/songs/60062518.mkv +陈军委-舍不得你走,http://em.21dtv.com/songs/60061571.mkv +满江-舍不得你走,http://em.21dtv.com/songs/60038222.mkv +姜鹏-舍不得你走,http://em.21dtv.com/songs/60038221.mkv +陈星-舍不得你走,http://em.21dtv.com/songs/60038220.mkv +陈小涛-舍不得你走,http://em.21dtv.com/songs/60038219.mkv +周传雄-舍不得你走(演唱会),http://em.21dtv.com/songs/60038218.mkv +佚名-舍不得你走(无原唱),http://em.21dtv.com/songs/60038217.mkv +梁丽荣-舍不得你走(无原唱),http://em.21dtv.com/songs/60038216.mkv +刘锡明-舍不得你痛,http://em.21dtv.com/songs/60038214.mkv +佚名-善变的女人,http://em.21dtv.com/songs/60037752.mkv +小龙-身边的妈妈,http://em.21dtv.com/songs/60038248.mkv +覃沐曦-舍不得离开,http://em.21dtv.com/songs/60098760.mkv +SARA-舍不得离开,http://em.21dtv.com/songs/60086815.mkv +蒋大为-士兵的渴望,http://em.21dtv.com/songs/60039203.mkv +张芸京-失败的高歌,http://em.21dtv.com/songs/60126898.mkv +蔡国庆-士兵的桂冠,http://em.21dtv.com/songs/60068660.mkv +倪安东-失败的分手,http://em.21dtv.com/songs/60066307.mkv +唐禹哲-舍不得放手,http://em.21dtv.com/songs/60038203.mkv +佚名-舍不得分开,http://em.21dtv.com/songs/60038206.mkv +曲佑良-舍不得分开,http://em.21dtv.com/songs/60038205.mkv +罗时丰-善变的爱情,http://em.21dtv.com/songs/60037750.mkv +王爵ALSTON-说不出再见,http://em.21dtv.com/songs/60086852.mkv +罗百吉-说不出的爱,http://em.21dtv.com/songs/60040345.mkv +寒武纪-十八般武艺,http://em.21dtv.com/songs/60116736.mkv +王力宏-十八般武艺(演唱会),http://em.21dtv.com/songs/60038896.mkv +杨子姗-十八般舞功,http://em.21dtv.com/songs/60038897.mkv +许志安-森巴爱恰恰,http://em.21dtv.com/songs/60037416.mkv +糖糖乐团-谁把爱出卖,http://em.21dtv.com/songs/60039936.mkv +翼势力-十八爱不爱,http://em.21dtv.com/songs/60038895.mkv +陈美凤+蔡小虎-尚爱也是你,http://em.21dtv.com/songs/60038071.mkv +江志丰-是爱亦是恨,http://em.21dtv.com/songs/60132670.mkv +泽野弘之+Aimer-s AVE,http://em.21dtv.com/songs/60117006.mkv +江蕙-思啊思想起,http://em.21dtv.com/songs/60091588.mkv +佚名-思啊思想起,http://em.21dtv.com/songs/60040473.mkv +佚名-sing a song of freedom,http://em.21dtv.com/songs/60005046.mkv +刘俐婷-尚爱你一人,http://em.21dtv.com/songs/60038070.mkv +闫寒-深爱你的猪,http://em.21dtv.com/songs/60038276.mkv +张学友-smile again玛莉亚,http://em.21dtv.com/songs/60005081.mkv +张学友-smile again玛莉亚(演唱会),http://em.21dtv.com/songs/60005080.mkv +陈小春-神啊救救我,http://em.21dtv.com/songs/60038433.mkv +佚名-softly as i leave you,http://em.21dtv.com/songs/60005122.mkv +LMFAO-sexy and i know it,http://em.21dtv.com/songs/60073856.mkv +尹啸-深爱的中华,http://em.21dtv.com/songs/60129016.mkv +上官晓懿+常闻迪-伤爱的理由,http://em.21dtv.com/songs/60086807.mkv +陶喆-上爱唱的歌,http://em.21dtv.com/songs/60080271.mkv +HKT48-タブーの色,http://em.21dtv.com/songs/60134696.mkv +郭瑞+杨小弈-人争一口气,http://em.21dtv.com/songs/60100983.mkv +蔡义德-认真一定红,http://em.21dtv.com/songs/60077373.mkv +郭嘉俊-人在心不在,http://em.21dtv.com/songs/60108064.mkv +芭比-绕着我打转,http://em.21dtv.com/songs/60036219.mkv +黄宝欣-让昨天再见,http://em.21dtv.com/songs/60036217.mkv +黄宝欣-让昨天再见(演唱会),http://em.21dtv.com/songs/60036216.mkv +彭恰恰-阮只是无甘,http://em.21dtv.com/songs/60095528.mkv +庞龙-人在世上飘,http://em.21dtv.com/songs/60036495.mkv +澎恰恰-阮只是呒甘,http://em.21dtv.com/songs/60037086.mkv +杨紫-若只如初见,http://em.21dtv.com/songs/60130465.mkv +刘欢+那英-人在青山在,http://em.21dtv.com/songs/60036494.mkv +群星-人在青山在(演唱会),http://em.21dtv.com/songs/60036493.mkv +紫蘅-人醉秋风里,http://em.21dtv.com/songs/60077369.mkv +八三夭-认真就输了,http://em.21dtv.com/songs/60123640.mkv +杜德伟-让自己快乐(演唱会),http://em.21dtv.com/songs/60036215.mkv +应子栋-让自己精彩,http://em.21dtv.com/songs/60077337.mkv +王键-人在江湖走,http://em.21dtv.com/songs/60036485.mkv +常青-人在江湖漂,http://em.21dtv.com/songs/60127945.mkv +赵斌-人在江湖漂,http://em.21dtv.com/songs/60123195.mkv +小沉阳-人在江湖漂,http://em.21dtv.com/songs/60077366.mkv +曹尔真-人在江湖漂,http://em.21dtv.com/songs/60064798.mkv +宇桐非-人在江湖漂,http://em.21dtv.com/songs/60036484.mkv +红色浆果乐队-让自己崇拜,http://em.21dtv.com/songs/60104361.mkv +张琛-日子好好过,http://em.21dtv.com/songs/60119536.mkv +吕薇-人在和风中,http://em.21dtv.com/songs/60036480.mkv +王杰-人在风雨中(演唱会),http://em.21dtv.com/songs/60036479.mkv +张清芳-认真的眼睛,http://em.21dtv.com/songs/60036555.mkv +马锡龙-认真的伤痕,http://em.21dtv.com/songs/60124718.mkv +Connie(吕莘)-绕着地球转,http://em.21dtv.com/songs/60134659.mkv +何东-认真的谎言,http://em.21dtv.com/songs/60069760.mkv +心然-如忆玉儿曲,http://em.21dtv.com/songs/60068635.mkv +张艾莉(凤娘)-阮犹原爱你,http://em.21dtv.com/songs/60133691.mkv +邰正宵-任意幸福门,http://em.21dtv.com/songs/60088748.mkv +佚名-日月算抹合(无原唱),http://em.21dtv.com/songs/60095421.mkv +李明洋+张蓉蓉-日月若相逢,http://em.21dtv.com/songs/60036679.mkv +吴若希-若要人不知,http://em.21dtv.com/songs/60105700.mkv +吴若希-若要人不知,http://em.21dtv.com/songs/60077441.mkv +王杰-若要人不知,http://em.21dtv.com/songs/60037123.mkv +群星-闰月闰爱情,http://em.21dtv.com/songs/60037096.mkv +高少华-让一切随风,http://em.21dtv.com/songs/60124722.mkv +杨子-让一切随风,http://em.21dtv.com/songs/60101114.mkv +陈慧娴-让一切随风,http://em.21dtv.com/songs/60100587.mkv +罗敏庄+杜雯惠-让一切随风(演唱会),http://em.21dtv.com/songs/60077335.mkv +钟镇涛-让一切随风,http://em.21dtv.com/songs/60036212.mkv +钟镇涛-让一切随风(演唱会),http://em.21dtv.com/songs/60036211.mkv +林翠萍-日夜盼郎归,http://em.21dtv.com/songs/60088120.mkv +涓子-让音乐飘香,http://em.21dtv.com/songs/60119777.mkv +BEE GEES-rest your love on me,http://em.21dtv.com/songs/60004656.mkv +林于雯-如烟介往事,http://em.21dtv.com/songs/60095642.mkv +童丽-人约黄昏后,http://em.21dtv.com/songs/60077365.mkv +邓丽君-人约黄昏后,http://em.21dtv.com/songs/60036476.mkv +陈雷-阮欲返来去,http://em.21dtv.com/songs/60037085.mkv +郑知文-人妖的忠诚,http://em.21dtv.com/songs/60126281.mkv +柯有伦+黄义达-荣耀的一天,http://em.21dtv.com/songs/60036684.mkv +南拳妈妈-人鱼的眼泪,http://em.21dtv.com/songs/60036472.mkv +林俊杰-人鱼的眼泪,http://em.21dtv.com/songs/60036471.mkv +高凌风-入夜的台北(无原唱),http://em.21dtv.com/songs/60037048.mkv +MILKY BUNNY-ナミダソラ,http://em.21dtv.com/songs/60074249.mkv +ステレオポニー-ありがとう,http://em.21dtv.com/songs/60074217.mkv +JUJU-ありがとう,http://em.21dtv.com/songs/60074216.mkv +関ジャニ∞-あおっぱな,http://em.21dtv.com/songs/60074213.mkv +EVERY LITTLE THING-アイガアル,http://em.21dtv.com/songs/60074211.mkv +阿权-瑞雪兆丰年,http://em.21dtv.com/songs/60119001.mkv +向上-瑞雪兆丰年,http://em.21dtv.com/songs/60064815.mkv +群星-让心勇敢飞,http://em.21dtv.com/songs/60036209.mkv +刘欢-人心无穷大,http://em.21dtv.com/songs/60089170.mkv +胡小宝-让心死一回,http://em.21dtv.com/songs/60036208.mkv +杨丽-热线你和我,http://em.21dtv.com/songs/60085640.mkv +钟伟-热线你和我,http://em.21dtv.com/songs/60036289.mkv +芭比-热线你和我,http://em.21dtv.com/songs/60036288.mkv +刘文正-热线你和我(无原唱),http://em.21dtv.com/songs/60036287.mkv +赵倍誉-日想瞑也想(无原唱),http://em.21dtv.com/songs/60036666.mkv +MP魔幻力量-让我罩着你,http://em.21dtv.com/songs/60061533.mkv +林淑蓉-让我自己走,http://em.21dtv.com/songs/60036201.mkv +宋岳庭-让我自己飞,http://em.21dtv.com/songs/60036200.mkv +张芸京-让我照顾你,http://em.21dtv.com/songs/60036197.mkv +五月天-让我照顾你,http://em.21dtv.com/songs/60036196.mkv +谭晶+范竞马-让我拥有你,http://em.21dtv.com/songs/60036187.mkv +JESSE MCCARTNEY-right where you want me,http://em.21dtv.com/songs/60004684.mkv +陈绮贞-让我想一想,http://em.21dtv.com/songs/60036180.mkv +吴炜-让我相信爱,http://em.21dtv.com/songs/60036179.mkv +许志安-容我欣赏你(演唱会),http://em.21dtv.com/songs/60036691.mkv +2个女生-让我忘了你,http://em.21dtv.com/songs/60036176.mkv +陈亮吟-让我忘记我(无原唱),http://em.21dtv.com/songs/60036175.mkv +钟镇涛-让我坦荡荡,http://em.21dtv.com/songs/60036172.mkv +金波-让我说爱你,http://em.21dtv.com/songs/60120042.mkv +邵振锋-让我去死心,http://em.21dtv.com/songs/60064786.mkv +洪敬尧-让我陪着你,http://em.21dtv.com/songs/60124206.mkv +赵敬一-让我陪着你,http://em.21dtv.com/songs/60086779.mkv +罗力威-让我暖一些(演唱会),http://em.21dtv.com/songs/60077331.mkv +苏永康-让我暖一些,http://em.21dtv.com/songs/60036163.mkv +苏永康-让我暖一些(演唱会),http://em.21dtv.com/songs/60036162.mkv +范玮琪-让我们自由,http://em.21dtv.com/songs/60036158.mkv +SG Wanna Be-让我们相爱,http://em.21dtv.com/songs/60120238.mkv +张清芳-让我们相爱,http://em.21dtv.com/songs/60036157.mkv +张启辉+梁紫丹-让我们相爱(演唱会),http://em.21dtv.com/songs/60036156.mkv +佚名-让我们坚强,http://em.21dtv.com/songs/60036152.mkv +刘嘉亮-让我们坚强,http://em.21dtv.com/songs/60036151.mkv +叶蓓-让我看着你,http://em.21dtv.com/songs/60036144.mkv +汉洋-让我紧抱你(无原唱),http://em.21dtv.com/songs/60036142.mkv +孙霄磊-让我告诉你,http://em.21dtv.com/songs/60128970.mkv +维民声乐中心-让我告诉你,http://em.21dtv.com/songs/60085637.mkv +黑妹-让我跟你走(演唱会),http://em.21dtv.com/songs/60077325.mkv +彭羚-让我跟你走,http://em.21dtv.com/songs/60036131.mkv +张德豪-让我感动你,http://em.21dtv.com/songs/60036130.mkv +吴建豪-让我更爱我,http://em.21dtv.com/songs/60080764.mkv +肖亮-让我抱着你,http://em.21dtv.com/songs/60066268.mkv +陈洁仪-让我爱下去,http://em.21dtv.com/songs/60036117.mkv +邓福如-让我爱上我,http://em.21dtv.com/songs/60072335.mkv +古巨基-任天堂流泪,http://em.21dtv.com/songs/60036562.mkv +温翠屏-日头若落山(无原唱),http://em.21dtv.com/songs/60036663.mkv +佚名-日头若见天,http://em.21dtv.com/songs/60036662.mkv +JENNIFER WARNES-right time of the night(无原唱),http://em.21dtv.com/songs/60004683.mkv +郭桂彬-日头赤炎炎,http://em.21dtv.com/songs/60036660.mkv +GIRL NEXT-ready to be a lady,http://em.21dtv.com/songs/60004619.mkv +张燕清+洪百慧-人生这条路,http://em.21dtv.com/songs/60069758.mkv +王喜-仍是这首歌,http://em.21dtv.com/songs/60036601.mkv +容儿-人生走马灯(无原唱),http://em.21dtv.com/songs/60036462.mkv +小黑-阮是一阵风,http://em.21dtv.com/songs/60045051.mkv +贺金-人生有相逢,http://em.21dtv.com/songs/60112264.mkv +张祥洪-人生一条路,http://em.21dtv.com/songs/60083710.mkv +庞龙-人生一条路,http://em.21dtv.com/songs/60036454.mkv +黄清源-人生一条路,http://em.21dtv.com/songs/60036453.mkv +邓丽君-人生一条路,http://em.21dtv.com/songs/60036452.mkv +张清芳-燃烧一瞬间,http://em.21dtv.com/songs/60036010.mkv +王美雪-燃烧一瞬间,http://em.21dtv.com/songs/60036009.mkv +罗时丰+江志丰-人生一首歌,http://em.21dtv.com/songs/60069757.mkv +安心亚-人生要漂亮,http://em.21dtv.com/songs/60130253.mkv +安心亚-人生要漂亮,http://em.21dtv.com/songs/60128983.mkv +陈百潭-人生要乐观(无原唱),http://em.21dtv.com/songs/60036450.mkv +谭咏麟-人生影画戏(演唱会),http://em.21dtv.com/songs/60036455.mkv +翁立友-人生一出戏,http://em.21dtv.com/songs/60113951.mkv +翁立友-人生一出戏,http://em.21dtv.com/songs/60110465.mkv +孙子涵+小5-人生下站见,http://em.21dtv.com/songs/60068624.mkv +黄克林-人生喜相逢,http://em.21dtv.com/songs/60036446.mkv +吴宗宪-人生咸酸甜,http://em.21dtv.com/songs/60036448.mkv +杨宗宪+徐嘉良-人生咸酸甜(无原唱),http://em.21dtv.com/songs/60036447.mkv +张立基-燃烧我的梦,http://em.21dtv.com/songs/60036008.mkv +佚名-若是听人讲,http://em.21dtv.com/songs/60037113.mkv +李茂山-人生数十年(无原唱),http://em.21dtv.com/songs/60036441.mkv +黄清元-人生是苦杯,http://em.21dtv.com/songs/60090353.mkv +温兆伦-仍是深爱你,http://em.21dtv.com/songs/60120731.mkv +江蕙-人生情路梦,http://em.21dtv.com/songs/60036434.mkv +陈奕夫-认识你真好,http://em.21dtv.com/songs/60107312.mkv +钟天富-认识你真好,http://em.21dtv.com/songs/60096521.mkv +枫桥-认识你真好,http://em.21dtv.com/songs/60083714.mkv +李传永-认识你真好,http://em.21dtv.com/songs/60066273.mkv +孙耀威-认识你真好,http://em.21dtv.com/songs/60036539.mkv +凌志辉-认识你以后,http://em.21dtv.com/songs/60077371.mkv +中国力量+杨光-让生命延续,http://em.21dtv.com/songs/60036099.mkv +吕珊-人生满希望(演唱会),http://em.21dtv.com/songs/60077357.mkv +徐小凤-人生满希望(演唱会),http://em.21dtv.com/songs/60036428.mkv +TAE-人生马戏团,http://em.21dtv.com/songs/60090439.mkv +池珍熙-人生蒙太奇,http://em.21dtv.com/songs/60036430.mkv +陈奕迅-人生马拉松,http://em.21dtv.com/songs/60115486.mkv +黄凯芹-若生命等候(演唱会),http://em.21dtv.com/songs/60037108.mkv +童安格-让生命等候,http://em.21dtv.com/songs/60036098.mkv +柯以敏-让生命重来,http://em.21dtv.com/songs/60077319.mkv +邝美云-人生漫长路(无原唱),http://em.21dtv.com/songs/60036429.mkv +赫拉含青-人生路漫漫,http://em.21dtv.com/songs/60112981.mkv +李克勤-仍是老地方(演唱会),http://em.21dtv.com/songs/60036597.mkv +叶启田-人生看头前,http://em.21dtv.com/songs/60134988.mkv +阿兰-让世界听见,http://em.21dtv.com/songs/60104522.mkv +苏晴-让世界听到,http://em.21dtv.com/songs/60083700.mkv +佚名-人生就是戏,http://em.21dtv.com/songs/60036419.mkv +古巨基-让时间说爱,http://em.21dtv.com/songs/60117599.mkv +蔡龄龄-人生嘉年华,http://em.21dtv.com/songs/60036415.mkv +张智成-让时间开口(演唱会),http://em.21dtv.com/songs/60036101.mkv +王菲-仍是旧句子,http://em.21dtv.com/songs/60036596.mkv +佚名-人生剪接机,http://em.21dtv.com/songs/60036416.mkv +林宥嘉-让世界毁灭,http://em.21dtv.com/songs/60130481.mkv +林宥嘉-让世界毁灭,http://em.21dtv.com/songs/60129298.mkv +佚名-red sails in the sunset,http://em.21dtv.com/songs/60004639.mkv +黄克林-人生福禄寿,http://em.21dtv.com/songs/60036409.mkv +五谷子-人生二十年,http://em.21dtv.com/songs/60117539.mkv +蔡佳麟+郭婷筠-人生的滋味,http://em.21dtv.com/songs/60069756.mkv +庞龙-人生第一次(演唱会),http://em.21dtv.com/songs/60077356.mkv +刘欢-人生第一次,http://em.21dtv.com/songs/60036407.mkv +佚名-人生第一步,http://em.21dtv.com/songs/60036406.mkv +洪荣宏-人生的选择,http://em.21dtv.com/songs/60100912.mkv +陈雷-染色的头鬃,http://em.21dtv.com/songs/60036012.mkv +邵大伦-人生的太阳,http://em.21dtv.com/songs/60105419.mkv +孙淑媚-人生的探戈,http://em.21dtv.com/songs/60036405.mkv +薛佩洁+张政雄-人生的岁月,http://em.21dtv.com/songs/60064796.mkv +吴超-如水的思念,http://em.21dtv.com/songs/60085661.mkv +敏敏-如水的思念,http://em.21dtv.com/songs/60085660.mkv +高向鹏-人生的锁链(无原唱),http://em.21dtv.com/songs/60036404.mkv +十三狼-人生大实话,http://em.21dtv.com/songs/60127786.mkv +柳丁-燃烧的蔬菜,http://em.21dtv.com/songs/60097697.mkv +温亚伦-人生的朋友,http://em.21dtv.com/songs/60130553.mkv +许冠杰-人生多么好,http://em.21dtv.com/songs/60036408.mkv +佚名-燃烧的激情,http://em.21dtv.com/songs/60036004.mkv +洪荣宏-人生的剧本,http://em.21dtv.com/songs/60135508.mkv +沈建豪-人生的剧本,http://em.21dtv.com/songs/60099363.mkv +佚名-人生的脚步,http://em.21dtv.com/songs/60036403.mkv +CLOVER-认识的哥哥,http://em.21dtv.com/songs/60061982.mkv +樊凡-燃烧的翅膀,http://em.21dtv.com/songs/60096365.mkv +王瑞霞-人生的波浪(无原唱),http://em.21dtv.com/songs/60036399.mkv +吴克群+莫安琪-人生超幽默,http://em.21dtv.com/songs/60131250.mkv +吴克群+莫安琪-人生超幽默,http://em.21dtv.com/songs/60130181.mkv +王南-人生不完美,http://em.21dtv.com/songs/60109525.mkv +群星-燃烧吧蔬菜,http://em.21dtv.com/songs/60108813.mkv +白凯南-燃烧吧蔬菜,http://em.21dtv.com/songs/60105273.mkv +刘建东-人生不容易,http://em.21dtv.com/songs/60125179.mkv +何洁-燃烧吧青春,http://em.21dtv.com/songs/60112502.mkv +高向鹏-人生甭计较(无原唱),http://em.21dtv.com/songs/60036396.mkv +高凌风-燃烧吧火鸟,http://em.21dtv.com/songs/60036001.mkv +袁小迪-人生啊人生,http://em.21dtv.com/songs/60036394.mkv +白冰冰+群星-人生按个赞,http://em.21dtv.com/songs/60118811.mkv +大合唱-人生按个赞,http://em.21dtv.com/songs/60118478.mkv +吴依琳-人人笑颜开,http://em.21dtv.com/songs/60077353.mkv +丁嘉林-人人笑颜开,http://em.21dtv.com/songs/60077352.mkv +王雪晶+庄群诗-人人笑开颜,http://em.21dtv.com/songs/60088328.mkv +林凡-仍然喜欢我,http://em.21dtv.com/songs/60036591.mkv +林凡-仍然喜欢我(演唱会),http://em.21dtv.com/songs/60036590.mkv +孙耀威-仍然喜欢你,http://em.21dtv.com/songs/60036589.mkv +钟镇涛-日日是好日(演唱会),http://em.21dtv.com/songs/60036653.mkv +TWINS-row row row your boat,http://em.21dtv.com/songs/60004738.mkv +王宏伟-荣辱记心间,http://em.21dtv.com/songs/60036683.mkv +佚名-rose rose i love you,http://em.21dtv.com/songs/60004734.mkv +李玉刚-日日红上海(现场版),http://em.21dtv.com/songs/60098483.mkv +陈小涛-忍辱待明天,http://em.21dtv.com/songs/60088868.mkv +陈小涛-忍辱待明朝,http://em.21dtv.com/songs/60036513.mkv +谢金燕-热情夜快车,http://em.21dtv.com/songs/60036282.mkv +李初建-柔情小夜曲,http://em.21dtv.com/songs/60036713.mkv +孔繁涛-人去心未去,http://em.21dtv.com/songs/60064795.mkv +尹光-任腔三小曲,http://em.21dtv.com/songs/60087725.mkv +张学友-让奇妙飞翔,http://em.21dtv.com/songs/60036095.mkv +草蜢-热情交给我,http://em.21dtv.com/songs/60036277.mkv +汪子琳-热情红玫瑰(无原唱),http://em.21dtv.com/songs/60036274.mkv +佚名-热情的祝福,http://em.21dtv.com/songs/60036272.mkv +费玉清-热情的夏季,http://em.21dtv.com/songs/60036271.mkv +傅振辉+邓咏家-柔情的温度,http://em.21dtv.com/songs/60134905.mkv +高峰-热情的太阳(无原唱),http://em.21dtv.com/songs/60036269.mkv +七郎+佳虹-热情的探戈,http://em.21dtv.com/songs/60036270.mkv +梦然-热情的沙漠,http://em.21dtv.com/songs/60100244.mkv +古巨基+李泉-热情的沙漠,http://em.21dtv.com/songs/60098177.mkv +苏永康-热情的沙漠,http://em.21dtv.com/songs/60088539.mkv +张靓颖-热情的沙漠,http://em.21dtv.com/songs/60087855.mkv +庾澄庆组学员-热情的沙漠,http://em.21dtv.com/songs/60081431.mkv +王栎鑫+俞灏明-热情的沙漠(演唱会),http://em.21dtv.com/songs/60077341.mkv +麦德罗-热情的沙漠(演唱会),http://em.21dtv.com/songs/60077340.mkv +羽泉-热情的沙漠,http://em.21dtv.com/songs/60077339.mkv +庾澄庆+吴莫愁+金池+王韵壹-热情的沙漠,http://em.21dtv.com/songs/60071078.mkv +樊奕敏-热情的沙漠(演唱会),http://em.21dtv.com/songs/60064791.mkv +钟雅颂-热情的沙漠(演唱会),http://em.21dtv.com/songs/60063455.mkv +庾澄庆-热情的沙漠,http://em.21dtv.com/songs/60036267.mkv +欧阳菲菲-热情的沙漠,http://em.21dtv.com/songs/60036266.mkv +朱咪咪-热情的沙漠(演唱会),http://em.21dtv.com/songs/60036265.mkv +甄妮-热情的沙漠(演唱会),http://em.21dtv.com/songs/60036264.mkv +张国荣-热情的沙漠(演唱会),http://em.21dtv.com/songs/60036263.mkv +徐小凤-热情的沙漠(演唱会),http://em.21dtv.com/songs/60036262.mkv +谢雷-热情的沙漠(演唱会),http://em.21dtv.com/songs/60036261.mkv +动力火车-热情的沙漠(演唱会),http://em.21dtv.com/songs/60036260.mkv +郑璐-让青春激扬(演),http://em.21dtv.com/songs/60099540.mkv +GFRIEND-Rough,http://em.21dtv.com/songs/60119145.mkv +The Chainsmokers-Roses,http://em.21dtv.com/songs/60120248.mkv +佚名-reach out ill be there,http://em.21dtv.com/songs/60004612.mkv +王菲-若你真爱我,http://em.21dtv.com/songs/60037107.mkv +JKAI-若你是我的,http://em.21dtv.com/songs/60115601.mkv +蔡健雅-若你碰到他,http://em.21dtv.com/songs/60037106.mkv +AKON-right now na na na,http://em.21dtv.com/songs/60004680.mkv +冯圣雅-让你跟她走,http://em.21dtv.com/songs/60072332.mkv +P.G.S.T-让你不讨厌(无原唱),http://em.21dtv.com/songs/60036070.mkv +佚名-认明真道歌(无原唱),http://em.21dtv.com/songs/60036534.mkv +刘斌-人民子弟兵,http://em.21dtv.com/songs/60036366.mkv +熊七梅-让梦想去飞,http://em.21dtv.com/songs/60063194.mkv +侯丽娟-人民共和国,http://em.21dtv.com/songs/60131176.mkv +张鹤-人民共和国,http://em.21dtv.com/songs/60105879.mkv +王丽达-人民共和国,http://em.21dtv.com/songs/60080283.mkv +谭圳-人民的公仆,http://em.21dtv.com/songs/60062981.mkv +李高扬-人民的儿子,http://em.21dtv.com/songs/60108589.mkv +关淑怡-仍流着眼泪,http://em.21dtv.com/songs/60036578.mkv +韦唯+戴玉强-人类是一家,http://em.21dtv.com/songs/60036353.mkv +江蕙-入来阮梦中,http://em.21dtv.com/songs/60037041.mkv +阿福-热辣关东人,http://em.21dtv.com/songs/60036244.mkv +佚名-日落北京城,http://em.21dtv.com/songs/60036637.mkv +伍佰-热泪暗班车,http://em.21dtv.com/songs/60131155.mkv +城市姐妹-人客的要求(演唱会),http://em.21dtv.com/songs/60068620.mkv +文夏-人客的要求,http://em.21dtv.com/songs/60036348.mkv +梅花三姐妹-人客的要求,http://em.21dtv.com/songs/60036347.mkv +罗时丰-人客的要求,http://em.21dtv.com/songs/60036346.mkv +韩磊-人间四月天,http://em.21dtv.com/songs/60036339.mkv +黄西田+樱桃姐妹-阮就是你的,http://em.21dtv.com/songs/60037074.mkv +[Group] +groupName=十六万歌曲MV等 - 75 +本兮-让寂寞别走,http://em.21dtv.com/songs/60077313.mkv +白冰冰-日久见人心,http://em.21dtv.com/songs/60036634.mkv +阎维文-人间第一情(演唱会),http://em.21dtv.com/songs/60083706.mkv +龚月-人间第一情,http://em.21dtv.com/songs/60077350.mkv +卓依婷-人间第一情,http://em.21dtv.com/songs/60064794.mkv +吴春燕-人间第一情(演唱会),http://em.21dtv.com/songs/60063092.mkv +张也-人间第一情,http://em.21dtv.com/songs/60036333.mkv +阎维文-人间第一情,http://em.21dtv.com/songs/60036332.mkv +汤浩平-如今的从前,http://em.21dtv.com/songs/60069775.mkv +Royz-R.I.P,http://em.21dtv.com/songs/60132124.mkv +草蜢-仍幻想爱你,http://em.21dtv.com/songs/60036576.mkv +刘宗-如何忘记你,http://em.21dtv.com/songs/60062687.mkv +刘若英-如何让你懂,http://em.21dtv.com/songs/60037010.mkv +李行亮-如何你才肯,http://em.21dtv.com/songs/60100164.mkv +关心妍-如何离开你,http://em.21dtv.com/songs/60037008.mkv +佚名-如何解释爱,http://em.21dtv.com/songs/60037003.mkv +陈冠蒨-如何解释爱,http://em.21dtv.com/songs/60037002.mkv +林依伦-人活二十多,http://em.21dtv.com/songs/60036325.mkv +郑秀文-如何掉眼泪,http://em.21dtv.com/songs/60037001.mkv +卓依婷-人海的苍桑,http://em.21dtv.com/songs/60089177.mkv +卓依婷-人海的沧桑,http://em.21dtv.com/songs/60036320.mkv +卓依婷-人海的沧桑(演唱会),http://em.21dtv.com/songs/60036319.mkv +孙晓雨-融化的爱意,http://em.21dtv.com/songs/60077392.mkv +林忆莲-如何爱下去,http://em.21dtv.com/songs/60036995.mkv +苑紫盈-如果早知道,http://em.21dtv.com/songs/60119919.mkv +刘嘉亮-如果早知道,http://em.21dtv.com/songs/60110879.mkv +罗艺-如果再遇见,http://em.21dtv.com/songs/60077428.mkv +黄凯芹-如果这是情,http://em.21dtv.com/songs/60106492.mkv +王菀之-如果这是情(演唱会),http://em.21dtv.com/songs/60105258.mkv +胡琳-如果这是情,http://em.21dtv.com/songs/60097544.mkv +王菀之-如果这是情,http://em.21dtv.com/songs/60080002.mkv +黎明-如果这是情,http://em.21dtv.com/songs/60036986.mkv +黎明-如果这是情(演唱会),http://em.21dtv.com/songs/60036985.mkv +马旭东-如果这是命,http://em.21dtv.com/songs/60113092.mkv +阿悄-如果这是爱,http://em.21dtv.com/songs/60077429.mkv +谭维维+张旻华-如果云知道,http://em.21dtv.com/songs/60111407.mkv +陈永馨+刘珂-如果云知道,http://em.21dtv.com/songs/60104566.mkv +刘洋-如果云知道,http://em.21dtv.com/songs/60099810.mkv +黄洋-如果云知道,http://em.21dtv.com/songs/60097541.mkv +郁可唯-如果云知道,http://em.21dtv.com/songs/60036978.mkv +许茹芸-如果云知道,http://em.21dtv.com/songs/60036977.mkv +孙晓亮-如果云知道,http://em.21dtv.com/songs/60036976.mkv +齐秦-如果云知道,http://em.21dtv.com/songs/60036975.mkv +麦子杰-如果云知道,http://em.21dtv.com/songs/60036974.mkv +许茹芸-如果云知道(演唱会),http://em.21dtv.com/songs/60036973.mkv +付春霞-如果有一天,http://em.21dtv.com/songs/60130065.mkv +张智勇-如果有一天,http://em.21dtv.com/songs/60126883.mkv +张可-如果有一天,http://em.21dtv.com/songs/60122712.mkv +肖雨蒙-如果有一天,http://em.21dtv.com/songs/60118853.mkv +高利虹-如果有一天,http://em.21dtv.com/songs/60114273.mkv +舒晓龙-如果有一天,http://em.21dtv.com/songs/60110482.mkv +罗艺-如果有一天,http://em.21dtv.com/songs/60104370.mkv +舒方-如果有一天,http://em.21dtv.com/songs/60066282.mkv +冰封-如果有一天,http://em.21dtv.com/songs/60062233.mkv +许茹芸-如果有一天,http://em.21dtv.com/songs/60036972.mkv +刘德华-如果有一天,http://em.21dtv.com/songs/60036971.mkv +梁静茹-如果有一天,http://em.21dtv.com/songs/60036970.mkv +刘德华-如果有一天(演唱会),http://em.21dtv.com/songs/60036969.mkv +梁静茹-如果有一天(演唱会),http://em.21dtv.com/songs/60036968.mkv +潘东亮-如果有如果,http://em.21dtv.com/songs/60077425.mkv +高昊-如果有如果,http://em.21dtv.com/songs/60036964.mkv +邓福如-如果有如果,http://em.21dtv.com/songs/60036963.mkv +胡杰夕-如果有那天,http://em.21dtv.com/songs/60077424.mkv +萧敬腾-如果有来生,http://em.21dtv.com/songs/60131770.mkv +黄泓博-如果有来生,http://em.21dtv.com/songs/60123404.mkv +王小升+上官承诺-如果有来生,http://em.21dtv.com/songs/60121905.mkv +蒲悦-如果有来生,http://em.21dtv.com/songs/60114024.mkv +谭维维-如果有来生,http://em.21dtv.com/songs/60110540.mkv +网络歌手+英泽-如果有来生,http://em.21dtv.com/songs/60091818.mkv +陈浩-如果有来世,http://em.21dtv.com/songs/60036960.mkv +谭维维-如果有来生,http://em.21dtv.com/songs/60036959.mkv +陈翔-如果遇见你,http://em.21dtv.com/songs/60064812.mkv +陈辰-如果下一秒,http://em.21dtv.com/songs/60036950.mkv +林佳仪-如果星星问(无原唱),http://em.21dtv.com/songs/60036952.mkv +方皓玟-如果想我哭,http://em.21dtv.com/songs/60036951.mkv +郭富城-如果下半生,http://em.21dtv.com/songs/60036948.mkv +郭富城-如果下半生(演唱会),http://em.21dtv.com/songs/60036947.mkv +刘德华-如果我有事,http://em.21dtv.com/songs/60036942.mkv +刘德华-如果我有事(演唱会),http://em.21dtv.com/songs/60036941.mkv +权施文-如果我有钱,http://em.21dtv.com/songs/60096339.mkv +周华健-如果我现在,http://em.21dtv.com/songs/60036940.mkv +森美-如果我先死,http://em.21dtv.com/songs/60092947.mkv +龙飞-如果我想你,http://em.21dtv.com/songs/60061546.mkv +郑秀文-如果我是你,http://em.21dtv.com/songs/60036935.mkv +舜文齐-如果我死了,http://em.21dtv.com/songs/60036938.mkv +荆涛-如果我离去,http://em.21dtv.com/songs/60129548.mkv +汪贤祖-如果我离开,http://em.21dtv.com/songs/60083730.mkv +许茹芸-如果我离开,http://em.21dtv.com/songs/60036921.mkv +小宋佳+朱雨辰-如果我离开,http://em.21dtv.com/songs/60036920.mkv +裕美-如果我可以,http://em.21dtv.com/songs/60063304.mkv +安小天-如果忘记你,http://em.21dtv.com/songs/60083729.mkv +林家小妹-如果我降临,http://em.21dtv.com/songs/60077419.mkv +TWINS-如果她愿意,http://em.21dtv.com/songs/60090446.mkv +刘德华-如果天有情,http://em.21dtv.com/songs/60036915.mkv +李圣杰-如果他爱你,http://em.21dtv.com/songs/60089951.mkv +黎明-日光苏醒时(演唱会),http://em.21dtv.com/songs/60036629.mkv +阿悄-如果说离别,http://em.21dtv.com/songs/60066280.mkv +威廉布莱恩-人狗情未了,http://em.21dtv.com/songs/60126775.mkv +毛宁-人鬼情未了(演唱会),http://em.21dtv.com/songs/60036317.mkv +张可儿-如果能再见,http://em.21dtv.com/songs/60119503.mkv +刘伟男-如果能再见,http://em.21dtv.com/songs/60116575.mkv +曹雷-如果你愿意,http://em.21dtv.com/songs/60083727.mkv +张信哲-如果你愿意,http://em.21dtv.com/songs/60036887.mkv +光良-如果你愿意,http://em.21dtv.com/songs/60036886.mkv +高利虹-如果那一天,http://em.21dtv.com/songs/60114903.mkv +湘唯一-如果哪一天,http://em.21dtv.com/songs/60094582.mkv +郑秀文-如果你有事(演唱会),http://em.21dtv.com/songs/60036885.mkv +郑源-如果你幸福,http://em.21dtv.com/songs/60102799.mkv +何宗龙-如果你是我,http://em.21dtv.com/songs/60077416.mkv +何宗龙-如果你是我(舞曲版),http://em.21dtv.com/songs/60067381.mkv +范玮琪+周华健-如果你是我,http://em.21dtv.com/songs/60036869.mkv +丛浩楠-如果你说不,http://em.21dtv.com/songs/60099713.mkv +张信哲-如果你快乐,http://em.21dtv.com/songs/60036862.mkv +王慧美-如果你还在,http://em.21dtv.com/songs/60093875.mkv +帅霖+韩晶-如果你不爱,http://em.21dtv.com/songs/60081147.mkv +蔡俊涛-如果你不爱,http://em.21dtv.com/songs/60069772.mkv +吴皓卿-如果你爱我,http://em.21dtv.com/songs/60130186.mkv +贺世哲-如果你爱我,http://em.21dtv.com/songs/60105387.mkv +郑棋元-如果你爱我,http://em.21dtv.com/songs/60077415.mkv +艾怡良-如果你爱我,http://em.21dtv.com/songs/60071085.mkv +曹轩宾-如果你爱我,http://em.21dtv.com/songs/60067378.mkv +黄耀明-如果你爱我,http://em.21dtv.com/songs/60036851.mkv +蔡健雅-如果你爱我,http://em.21dtv.com/songs/60036850.mkv +AT17-如果你爱我(演唱会),http://em.21dtv.com/songs/60036849.mkv +吴宪-如果你爱他,http://em.21dtv.com/songs/60061541.mkv +李圣杰-如果你爱他,http://em.21dtv.com/songs/60036848.mkv +陈石-如果没有我,http://em.21dtv.com/songs/60114871.mkv +陈瑞-如果没有她,http://em.21dtv.com/songs/60128547.mkv +孙露-如果没有你,http://em.21dtv.com/songs/60115813.mkv +龙影云-如果没有你,http://em.21dtv.com/songs/60114313.mkv +舞思爱·羔露-如果没有你,http://em.21dtv.com/songs/60113988.mkv +舞思爱·羔露-如果没有你,http://em.21dtv.com/songs/60112906.mkv +龙飘飘-如果没有你,http://em.21dtv.com/songs/60103739.mkv +林天爱-如果没有你,http://em.21dtv.com/songs/60100203.mkv +邓紫棋-如果没有你,http://em.21dtv.com/songs/60097545.mkv +李昊翰-如果没有你,http://em.21dtv.com/songs/60094540.mkv +李豪-如果没有你,http://em.21dtv.com/songs/60086788.mkv +翁立友-如果没有你,http://em.21dtv.com/songs/60083724.mkv +郑虹+李代沫-如果没有你,http://em.21dtv.com/songs/60081450.mkv +孙露-如果没有你,http://em.21dtv.com/songs/60077411.mkv +赖雅妍-如果没有你,http://em.21dtv.com/songs/60077410.mkv +金桢勋-如果没有你,http://em.21dtv.com/songs/60077409.mkv +李代沫-如果没有你,http://em.21dtv.com/songs/60070228.mkv +郑红+李代沫-如果没有你,http://em.21dtv.com/songs/60069771.mkv +李昊瀚-如果没有你,http://em.21dtv.com/songs/60069770.mkv +许志豪-如果没有你,http://em.21dtv.com/songs/60067376.mkv +贡尕达哇-如果没有你,http://em.21dtv.com/songs/60064806.mkv +萧敬腾-如果没有你,http://em.21dtv.com/songs/60063142.mkv +莫文蔚-如果没有你,http://em.21dtv.com/songs/60036830.mkv +邓丽君-如果没有你,http://em.21dtv.com/songs/60036829.mkv +白光-如果没有你,http://em.21dtv.com/songs/60036828.mkv +周蕙-如果没有你(演唱会),http://em.21dtv.com/songs/60036826.mkv +叶德娴-如果没有你(演唱会),http://em.21dtv.com/songs/60036825.mkv +任贤齐-如果没有你(演唱会),http://em.21dtv.com/songs/60036824.mkv +潘秀琼-如果没有你(演唱会),http://em.21dtv.com/songs/60036823.mkv +江映蓉-如果没有你(演唱会),http://em.21dtv.com/songs/60036822.mkv +樊凡-如果没以后,http://em.21dtv.com/songs/60122925.mkv +张曼玉-如果没了你,http://em.21dtv.com/songs/60113471.mkv +丁一-如果可以逃,http://em.21dtv.com/songs/60123579.mkv +郑晓填-如果寂寞了,http://em.21dtv.com/songs/60100506.mkv +胡连凯-如果还有梦,http://em.21dtv.com/songs/60129513.mkv +阿Ken+林琳-如果还有爱,http://em.21dtv.com/songs/60099562.mkv +东来东往-如果还可以,http://em.21dtv.com/songs/60036796.mkv +季欣霈-如果或可是,http://em.21dtv.com/songs/60061539.mkv +OT乐团-如果还爱我,http://em.21dtv.com/songs/60097543.mkv +侯玉斌-如果的事情,http://em.21dtv.com/songs/60118349.mkv +大勇-如皋等你来,http://em.21dtv.com/songs/60125343.mkv +王宏伟-日光城之恋,http://em.21dtv.com/songs/60077382.mkv +瑶瑶-如果不在意,http://em.21dtv.com/songs/60110420.mkv +Singer-如果不在意,http://em.21dtv.com/songs/60109870.mkv +蔡依林-如果不想要,http://em.21dtv.com/songs/60036782.mkv +朱榀少+张玮琪-如果不是你,http://em.21dtv.com/songs/60110261.mkv +黎冰冰-如果不是你,http://em.21dtv.com/songs/60085654.mkv +至上励合-如果不是你,http://em.21dtv.com/songs/60077403.mkv +游艺湉-如果不是你,http://em.21dtv.com/songs/60069767.mkv +办桌二人组-如果不是爱,http://em.21dtv.com/songs/60097542.mkv +杨守卫-如果不爱我,http://em.21dtv.com/songs/60108605.mkv +张学友-如果不爱你,http://em.21dtv.com/songs/60036776.mkv +万金龙-如果不爱了,http://em.21dtv.com/songs/60093949.mkv +张靓颖-如果爱下去,http://em.21dtv.com/songs/60036772.mkv +戚薇-如果爱忘了,http://em.21dtv.com/songs/60062816.mkv +乐天乐团-如果爱死了,http://em.21dtv.com/songs/60077401.mkv +杨幂+刘恺威-如果爱老了,http://em.21dtv.com/songs/60077397.mkv +曹潇续-如果爱轮回,http://em.21dtv.com/songs/60099279.mkv +罗百吉-如果爱个人,http://em.21dtv.com/songs/60110455.mkv +林依轮-如果爱搁浅,http://em.21dtv.com/songs/60036751.mkv +Tiger JK+真实-Reset,http://em.21dtv.com/songs/60111657.mkv +安心亚-人儿何处归,http://em.21dtv.com/songs/60062214.mkv +尤雅-人儿不能留,http://em.21dtv.com/songs/60036313.mkv +韩宝仪-人儿不能留,http://em.21dtv.com/songs/60036312.mkv +S Club 7-Reach,http://em.21dtv.com/songs/60104716.mkv +陈奕迅-热岛小夜曲(演唱会),http://em.21dtv.com/songs/60036238.mkv +江涛-入党申请书,http://em.21dtv.com/songs/60037040.mkv +陈百潭-热度三分钟,http://em.21dtv.com/songs/60036240.mkv +吕珊-柔道龙虎榜(演唱会),http://em.21dtv.com/songs/60036707.mkv +罗时丰-阮的感情线,http://em.21dtv.com/songs/60037056.mkv +田蕊妮-热荡的宇宙,http://em.21dtv.com/songs/60093017.mkv +傅振辉-人吃一点气,http://em.21dtv.com/songs/60071079.mkv +ALAN-red cliff心·战,http://em.21dtv.com/songs/60004633.mkv +刘德华-仍唱我的歌,http://em.21dtv.com/songs/60036572.mkv +刘爽-热场甩卖歌,http://em.21dtv.com/songs/60115026.mkv +赖伟锋-忍出个未来,http://em.21dtv.com/songs/60114094.mkv +麦卉-日出东畔红,http://em.21dtv.com/songs/60036620.mkv +车晓菲-荣成等你来,http://em.21dtv.com/songs/60118946.mkv +阿兰-忍不住眼泪,http://em.21dtv.com/songs/60102851.mkv +温岚-忍不住原谅,http://em.21dtv.com/songs/60066272.mkv +华少翌-忍不住眼泪,http://em.21dtv.com/songs/60036511.mkv +权施文-忍不住想他,http://em.21dtv.com/songs/60096340.mkv +刘恩铄-忍不住想你,http://em.21dtv.com/songs/60103929.mkv +李佳薇-忍不住想念,http://em.21dtv.com/songs/60100116.mkv +朱孝天-忍不住泪水,http://em.21dtv.com/songs/60091288.mkv +F4+朱孝天-忍不住泪水,http://em.21dtv.com/songs/60090398.mkv +周子龙-忍不住流泪,http://em.21dtv.com/songs/60116650.mkv +子龙-忍不住流泪,http://em.21dtv.com/songs/60112614.mkv +王秀如-忍不住回头,http://em.21dtv.com/songs/60036510.mkv +刘德华-忍不住的心,http://em.21dtv.com/songs/60090693.mkv +张秀卿-阮不是故意,http://em.21dtv.com/songs/60037052.mkv +蔡小虎-阮不是故意,http://em.21dtv.com/songs/60037051.mkv +葡桃-日本你听着,http://em.21dtv.com/songs/60077378.mkv +螺丝钉-日不落王国,http://em.21dtv.com/songs/60036610.mkv +徐溢-人比黄花瘦,http://em.21dtv.com/songs/60113526.mkv +赵明+麦玮婷-让爱住我家,http://em.21dtv.com/songs/60036042.mkv +赵明+麦玮婷-让爱住我家(演唱会),http://em.21dtv.com/songs/60036041.mkv +马岚-让爱醉千年,http://em.21dtv.com/songs/60109025.mkv +钟镇涛-日安我的爱,http://em.21dtv.com/songs/60036605.mkv +童唱-ring around the music box,http://em.21dtv.com/songs/60004685.mkv +王杰-仍爱听谎话,http://em.21dtv.com/songs/60036570.mkv +佚名-rockin around the christmas tree,http://em.21dtv.com/songs/60004720.mkv +吕继宏-热爱人民歌,http://em.21dtv.com/songs/60116635.mkv +萧亚轩-让爱飞起来,http://em.21dtv.com/songs/60036022.mkv +黄文星-Radio,http://em.21dtv.com/songs/60123402.mkv +孙燕姿-Radio,http://em.21dtv.com/songs/60109269.mkv +蔡诗芸-RADAR,http://em.21dtv.com/songs/60129590.mkv +童声合唱-让爱传出去(演唱会),http://em.21dtv.com/songs/60083694.mkv +黑子-让爱抱紧我,http://em.21dtv.com/songs/60128640.mkv +阿信-run2008,http://em.21dtv.com/songs/60004761.mkv +郭津彤-情在粥之源,http://em.21dtv.com/songs/60114831.mkv +潘越云-情字这条路,http://em.21dtv.com/songs/60035476.mkv +黄乙玲-情字这条路,http://em.21dtv.com/songs/60035475.mkv +陈小云-情字这条路,http://em.21dtv.com/songs/60035474.mkv +徐经伦+阿逗-妻子辛苦了,http://em.21dtv.com/songs/60094120.mkv +于乃久-妻子辛苦了,http://em.21dtv.com/songs/60061494.mkv +佟铁鑫-妻子辛苦了,http://em.21dtv.com/songs/60033816.mkv +傅滢滢-泉州小姑娘(演唱会),http://em.21dtv.com/songs/60066261.mkv +温清松-泉州我首富,http://em.21dtv.com/songs/60121886.mkv +杨洋+熊天平-请在我身边,http://em.21dtv.com/songs/60035616.mkv +卜学亮-骑着我的梦,http://em.21dtv.com/songs/60097670.mkv +黄妃-牵着他的手,http://em.21dtv.com/songs/60034260.mkv +纪敏佳+李翊君+温岚-请走人行道,http://em.21dtv.com/songs/60083678.mkv +丑丑-请走人行道,http://em.21dtv.com/songs/60035619.mkv +指南针乐队-请走人行道(演唱会),http://em.21dtv.com/songs/60035618.mkv +满馨蔚-情醉日光城,http://em.21dtv.com/songs/60128183.mkv +达坡玛吉-情醉女儿国,http://em.21dtv.com/songs/60077262.mkv +段莉莉-牵着你的手,http://em.21dtv.com/songs/60133908.mkv +段莉莉-牵着你的手,http://em.21dtv.com/songs/60131585.mkv +于洋-牵着你的手,http://em.21dtv.com/songs/60127719.mkv +丁春秀-牵着你的手,http://em.21dtv.com/songs/60114364.mkv +宋孟君-牵着你的手,http://em.21dtv.com/songs/60094474.mkv +阿香-牵着你的手,http://em.21dtv.com/songs/60086761.mkv +叶俊华+宋健-牵着你的手,http://em.21dtv.com/songs/60077147.mkv +阿茹娜+乌日格-牵着你的手,http://em.21dtv.com/songs/60077146.mkv +红宇-牵着你的手,http://em.21dtv.com/songs/60066230.mkv +佚名-牵着你的手,http://em.21dtv.com/songs/60034259.mkv +秀兰玛雅-牵着你的手,http://em.21dtv.com/songs/60034258.mkv +尹啸+曾湘玲-牵住你的爱,http://em.21dtv.com/songs/60129017.mkv +陶建阿成-情醉咪依噜,http://em.21dtv.com/songs/60135955.mkv +陈洪-群主么么哒,http://em.21dtv.com/songs/60123311.mkv +金久哲-气质迷倒人,http://em.21dtv.com/songs/60122187.mkv +王亚平-情醉浏阳河,http://em.21dtv.com/songs/60067350.mkv +菁菁-情醉汉源湖,http://em.21dtv.com/songs/60102676.mkv +昊麟+吴侨-泉州好兄弟,http://em.21dtv.com/songs/60126952.mkv +李明洋-情字恨少年,http://em.21dtv.com/songs/60035473.mkv +中国人民解放军合唱团-请祖国检阅,http://em.21dtv.com/songs/60108267.mkv +孙维良-请祖国检阅,http://em.21dtv.com/songs/60035620.mkv +林翠萍-泣在风雨中,http://em.21dtv.com/songs/60091493.mkv +TWINS-全自动星空,http://em.21dtv.com/songs/60090445.mkv +雅丽-妻子的双手,http://em.21dtv.com/songs/60096537.mkv +登格尔-情醉大草原,http://em.21dtv.com/songs/60068605.mkv +东方红艳+赵真-情在草原飞,http://em.21dtv.com/songs/60107462.mkv +花世纪-穷追不舍梦,http://em.21dtv.com/songs/60072326.mkv +张羽伟-情字按准讲(无原唱),http://em.21dtv.com/songs/60035472.mkv +刘德华+吴婉芳-秋意中等我,http://em.21dtv.com/songs/60035757.mkv +枫舞+相容-秋雨倚帘珑,http://em.21dtv.com/songs/60116972.mkv +孙耀威-情愿一个人,http://em.21dtv.com/songs/60035455.mkv +陈淑芳-秋夜想爷娘,http://em.21dtv.com/songs/60035751.mkv +陈秀雯+叶振棠-情缘万世长,http://em.21dtv.com/songs/60035442.mkv +叶振棠+陈秀雯-情缘万世长(演唱会),http://em.21dtv.com/songs/60035441.mkv +云鸽李霞-请与我共鸣,http://em.21dtv.com/songs/60077276.mkv +洛天依-桥驿听雨落,http://em.21dtv.com/songs/60128174.mkv +陈淑桦-秋意上心头,http://em.21dtv.com/songs/60035756.mkv +CLOWN-潜意识失忆,http://em.21dtv.com/songs/60061502.mkv +周晋进-情谊似酒浓,http://em.21dtv.com/songs/60080386.mkv +沈世爱-轻易伤害我,http://em.21dtv.com/songs/60034825.mkv +GJ蒋卓嘉-潜意识沉默,http://em.21dtv.com/songs/60103323.mkv +LENA PARK-祈り~you raise me up,http://em.21dtv.com/songs/60077123.mkv +许慧欣-七月七日晴,http://em.21dtv.com/songs/60033806.mkv +宇桐非-七月七日记,http://em.21dtv.com/songs/60087675.mkv +卡拉OK-七月七的桥,http://em.21dtv.com/songs/60089187.mkv +陈少华-七月七的桥(演唱会),http://em.21dtv.com/songs/60033805.mkv +邱永传-七月七的花,http://em.21dtv.com/songs/60069703.mkv +张洪波-七月七爱恋,http://em.21dtv.com/songs/60105854.mkv +张洪波-七月七爱恋,http://em.21dtv.com/songs/60033804.mkv +佚名-情愿你爱他(无原唱),http://em.21dtv.com/songs/60035451.mkv +谭咏麟-情义两心知,http://em.21dtv.com/songs/60093209.mkv +谭咏麟-情义俩心知,http://em.21dtv.com/songs/60035410.mkv +钟明秋-情义俩心坚,http://em.21dtv.com/songs/60126317.mkv +张德兰-情意两心坚,http://em.21dtv.com/songs/60092605.mkv +刘德华-情义俩心坚(无原唱),http://em.21dtv.com/songs/60092353.mkv +古巨基+容祖儿-情意两心坚(演唱会),http://em.21dtv.com/songs/60035416.mkv +刘德华-情义两心坚,http://em.21dtv.com/songs/60035409.mkv +张德兰-情义两心坚(演唱会),http://em.21dtv.com/songs/60035408.mkv +容祖儿+古巨基-情义两心坚(演唱会),http://em.21dtv.com/songs/60035407.mkv +林一峰-情义两心坚(演唱会),http://em.21dtv.com/songs/60035406.mkv +梁玉嵘-七月落薇花(戏曲),http://em.21dtv.com/songs/60092911.mkv +张德力-情缘两茫茫,http://em.21dtv.com/songs/60110193.mkv +杨钰莹-情意两朦胧,http://em.21dtv.com/songs/60088083.mkv +杨钰莹-情义两朦胧,http://em.21dtv.com/songs/60035405.mkv +陈亚兰-情雨乱乱飞,http://em.21dtv.com/songs/60035428.mkv +陈玉建+木子-情义好兄弟,http://em.21dtv.com/songs/60135931.mkv +望海高歌-情缘何所求,http://em.21dtv.com/songs/60116876.mkv +山鹰组合-七月火把节(演唱会),http://em.21dtv.com/songs/60067315.mkv +林子祥-千忆个夜晚,http://em.21dtv.com/songs/60092855.mkv +林子祥-千亿个夜晚,http://em.21dtv.com/songs/60034181.mkv +林子祥-千亿个夜晚(演唱会),http://em.21dtv.com/songs/60034180.mkv +侧田-千亿个夜晚(演唱会),http://em.21dtv.com/songs/60034179.mkv +大豪(黄昱豪)-欠一个拥抱,http://em.21dtv.com/songs/60135089.mkv +简弘亦-情义盖过天,http://em.21dtv.com/songs/60119866.mkv +孟庭苇-强欲放快记,http://em.21dtv.com/songs/60095517.mkv +厉娜-七月的一天,http://em.21dtv.com/songs/60033798.mkv +东方骏-七月的约定,http://em.21dtv.com/songs/60125074.mkv +安仕伟-秋夜的思念,http://em.21dtv.com/songs/60108443.mkv +罗耀-七月的等待,http://em.21dtv.com/songs/60117969.mkv +王莹-七月的草原,http://em.21dtv.com/songs/60077108.mkv +乌兰托亚-七月的草原,http://em.21dtv.com/songs/60033797.mkv +尹玉成功-沁园春近平,http://em.21dtv.com/songs/60115885.mkv +刘一祯-沁园春长沙,http://em.21dtv.com/songs/60077192.mkv +殷秀梅-沁园春·雪,http://em.21dtv.com/songs/60034638.mkv +陈熙然-沁园春·雪,http://em.21dtv.com/songs/60034637.mkv +王杰-情愿不自由,http://em.21dtv.com/songs/60035448.mkv +江蕙-秋雨彼一瞑,http://em.21dtv.com/songs/60035761.mkv +伍思凯+江蕙-秋雨彼一暝,http://em.21dtv.com/songs/60035760.mkv +谭咏麟-情缘巴士站,http://em.21dtv.com/songs/60035438.mkv +王小荣-七月不是秋,http://em.21dtv.com/songs/60125914.mkv +陈依然-缺一半的爱,http://em.21dtv.com/songs/60035972.mkv +景甜-巧遇安徒生,http://em.21dtv.com/songs/60034444.mkv +黎明-情像雨漂泊,http://em.21dtv.com/songs/60093563.mkv +黎明-情像雨飘泊,http://em.21dtv.com/songs/60035397.mkv +林佳君-亲像一场梦(无原唱),http://em.21dtv.com/songs/60095648.mkv +李艺明-情系武功山,http://em.21dtv.com/songs/60104225.mkv +张艳君+郭峰-情系五峰山,http://em.21dtv.com/songs/60111088.mkv +陈美凤-敲醒我的心,http://em.21dtv.com/songs/60034426.mkv +杨佶霖-且行且珍惜,http://em.21dtv.com/songs/60127079.mkv +樊海峰-且行且珍惜,http://em.21dtv.com/songs/60117877.mkv +孟文豪-且行且珍惜,http://em.21dtv.com/songs/60102143.mkv +张信哲-且行且珍惜,http://em.21dtv.com/songs/60034460.mkv +郑宇文-七夕情人节,http://em.21dtv.com/songs/60033783.mkv +佚名-七仙女散花,http://em.21dtv.com/songs/60033786.mkv +苏儿真-七夕没下雨,http://em.21dtv.com/songs/60033781.mkv +刘惠鸣+张惠兰-秋香骂新郎,http://em.21dtv.com/songs/60035737.mkv +韩传芳-情系美人松,http://em.21dtv.com/songs/60115523.mkv +刘惠鸣+李池湘-琴心怜剑胆,http://em.21dtv.com/songs/60034631.mkv +刘德华-全心来跟我,http://em.21dtv.com/songs/60092348.mkv +常思思-情系老百姓,http://em.21dtv.com/songs/60102178.mkv +刘德华-全心来爱我,http://em.21dtv.com/songs/60035926.mkv +温拿乐队-齐心就事成,http://em.21dtv.com/songs/60033865.mkv +温拿乐队-齐心就事成(演唱会),http://em.21dtv.com/songs/60033864.mkv +梁玉嵘+郭凤女-情殉劫后花(戏曲),http://em.21dtv.com/songs/60092910.mkv +纳兰珠儿-情系华城门,http://em.21dtv.com/songs/60102619.mkv +嘉布洛绒-情系高原红,http://em.21dtv.com/songs/60077260.mkv +张雨生-去香港看看(无原唱),http://em.21dtv.com/songs/60035855.mkv +孙小宝-情系二人转,http://em.21dtv.com/songs/60090890.mkv +佚名-全新的自己(无原唱),http://em.21dtv.com/songs/60035933.mkv +周凤兰-欠下的幸福,http://em.21dtv.com/songs/60126712.mkv +大嘴巴-牵心的朋友,http://em.21dtv.com/songs/60034250.mkv +廖昌永-清晰的记忆,http://em.21dtv.com/songs/60034901.mkv +李东+王小宝-情系大东北,http://em.21dtv.com/songs/60112742.mkv +何龙雨-情系大草原,http://em.21dtv.com/songs/60035389.mkv +CHINESE FOOTBALL-清醒白日梦,http://em.21dtv.com/songs/60133182.mkv +BOY'Z-情陷百老汇,http://em.21dtv.com/songs/60035392.mkv +容中尔甲-青蛙与少年,http://em.21dtv.com/songs/60062886.mkv +刘惜君-蔷薇映画馆,http://em.21dtv.com/songs/60061505.mkv +民雄-请为我加油,http://em.21dtv.com/songs/60091566.mkv +津亭-去问我的狗,http://em.21dtv.com/songs/60035854.mkv +韩磊-秦王扫六合,http://em.21dtv.com/songs/60121128.mkv +吴俊宏-情位让人坐,http://em.21dtv.com/songs/60064753.mkv +谢霆锋+汪明荃-千王群英会(演唱会),http://em.21dtv.com/songs/60034166.mkv +汪明荃-千王群英会(演唱会),http://em.21dtv.com/songs/60034165.mkv +范玉阳-请问丘比特,http://em.21dtv.com/songs/60130699.mkv +红蔷薇-蔷薇花儿开,http://em.21dtv.com/songs/60094628.mkv +鲍安可-青蛙会唱歌,http://em.21dtv.com/songs/60121171.mkv +张启辉-千万个借口,http://em.21dtv.com/songs/60119508.mkv +张启辉-千万个借口,http://em.21dtv.com/songs/60085587.mkv +莫文蔚-欠我的时光(演唱会),http://em.21dtv.com/songs/60034353.mkv +苏打绿-墙外的风景,http://em.21dtv.com/songs/60117161.mkv +刘欢-千万次的问,http://em.21dtv.com/songs/60116594.mkv +吉克隽逸-千万次地问,http://em.21dtv.com/songs/60097489.mkv +姚贝娜-千万次的问,http://em.21dtv.com/songs/60077137.mkv +刘欢-千万次地问(演唱会),http://em.21dtv.com/songs/60034163.mkv +刘欢-千万次的问,http://em.21dtv.com/songs/60034162.mkv +佚名-蔷薇处处开,http://em.21dtv.com/songs/60034390.mkv +History-Queen,http://em.21dtv.com/songs/60121249.mkv +林宇中-七天追到你,http://em.21dtv.com/songs/60033773.mkv +李明洋-欠天一滴泪,http://em.21dtv.com/songs/60081064.mkv +歌浴森-敲痛我的心,http://em.21dtv.com/songs/60071052.mkv +佚名-敲痛我的心,http://em.21dtv.com/songs/60034425.mkv +陈雷-迄逃算袜合,http://em.21dtv.com/songs/60034032.mkv +扬哲-七逃人的爱,http://em.21dtv.com/songs/60071038.mkv +李天华-七天七世纪,http://em.21dtv.com/songs/60033772.mkv +陈军委-青田你好吗,http://em.21dtv.com/songs/60061514.mkv +郭慧敏-晴天里的雨,http://em.21dtv.com/songs/60104500.mkv +满文军-青天何时有,http://em.21dtv.com/songs/60091644.mkv +方皓玟-全天后爱上,http://em.21dtv.com/songs/60035922.mkv +枫舞+相容-秋天的依恋,http://em.21dtv.com/songs/60115242.mkv +孟庭苇-秋天的眼泪,http://em.21dtv.com/songs/60035734.mkv +陈幸子-秋天的月光,http://em.21dtv.com/songs/60064769.mkv +张鹏-秋天的邂逅,http://em.21dtv.com/songs/60077291.mkv +彭婼兰-秋天的舞会,http://em.21dtv.com/songs/60116824.mkv +张杰-秋天的童话,http://em.21dtv.com/songs/60064768.mkv +爱乐团-秋天的童话,http://em.21dtv.com/songs/60035733.mkv +董文华-秋天的诉说,http://em.21dtv.com/songs/60035732.mkv +忢訫-秋天的思念,http://em.21dtv.com/songs/60115950.mkv +琪琪格-秋天的思念,http://em.21dtv.com/songs/60099423.mkv +琪琪格-秋天的思念(舞曲版),http://em.21dtv.com/songs/60064767.mkv +江美丽-秋天的思念,http://em.21dtv.com/songs/60035731.mkv +于文华-秋天的诺言,http://em.21dtv.com/songs/60035729.mkv +于文华-秋天的诺言(演唱会),http://em.21dtv.com/songs/60035728.mkv +孙美娜-秋天的女人,http://em.21dtv.com/songs/60035730.mkv +张蕾-秋天的玫瑰(演唱会),http://em.21dtv.com/songs/60064766.mkv +陈瑞-秋天的玫瑰,http://em.21dtv.com/songs/60035727.mkv +张蔷-秋天的玫瑰(演唱会),http://em.21dtv.com/songs/60035726.mkv +张江-秋天的记忆,http://em.21dtv.com/songs/60035725.mkv +欧育齐-秋天的尽头,http://em.21dtv.com/songs/60077290.mkv +王文浩-秋天的湖畔,http://em.21dtv.com/songs/60132729.mkv +王爱华-秋天的枫叶,http://em.21dtv.com/songs/60106116.mkv +屈玲琳-秋天的烦恼,http://em.21dtv.com/songs/60135155.mkv +邱泽-秋天的地图,http://em.21dtv.com/songs/60035721.mkv +陈敏镐-秋天的大海,http://em.21dtv.com/songs/60077289.mkv +胡松-去他的脆弱,http://em.21dtv.com/songs/60132816.mkv +高佳+阿如那-去趟草原吧,http://em.21dtv.com/songs/60111535.mkv +叶启田-启田纯情曲(无原唱),http://em.21dtv.com/songs/60034000.mkv +黄圣依-秋天不回来,http://em.21dtv.com/songs/60077288.mkv +王强-秋天不回来,http://em.21dtv.com/songs/60035720.mkv +CT GIRLS-秋天不回来,http://em.21dtv.com/songs/60035719.mkv +蔡小虎+龙千玉-牵手做阵行,http://em.21dtv.com/songs/60034248.mkv +SAYA-其实早知道(演唱会),http://em.21dtv.com/songs/60033927.mkv +陈茂源-牵手走世界,http://em.21dtv.com/songs/60113073.mkv +陈奕迅-情深怎么办,http://em.21dtv.com/songs/60118149.mkv +吴紫涵-牵手走高原,http://em.21dtv.com/songs/60034247.mkv +谭咏麟-情思中独困,http://em.21dtv.com/songs/60066251.mkv +林子祥-情深再别提,http://em.21dtv.com/songs/60035332.mkv +S.H.E-清爽由自已,http://em.21dtv.com/songs/60090434.mkv +龙飞+云菲菲-前世有梦今生圆,http://em.21dtv.com/songs/60114315.mkv +潘秀琼-缺少一根绳(演唱会),http://em.21dtv.com/songs/60064773.mkv +谢采妘-缺少一根绳,http://em.21dtv.com/songs/60035963.mkv +袁凤仪-情深义更深,http://em.21dtv.com/songs/60035317.mkv +晓依-牵手一辈子,http://em.21dtv.com/songs/60131476.mkv +黄乙玲-情深无怨言,http://em.21dtv.com/songs/60035314.mkv +林昕阳-其实我也怕,http://em.21dtv.com/songs/60112796.mkv +林昕阳-其实我也怕,http://em.21dtv.com/songs/60112024.mkv +徐彪-其实我想醉,http://em.21dtv.com/songs/60125565.mkv +古巨基-其实我 我 我MEDLEY,http://em.21dtv.com/songs/60092397.mkv +古巨基-其实我我我,http://em.21dtv.com/songs/60033917.mkv +古巨基-其实我我我(演唱会),http://em.21dtv.com/songs/60033916.mkv +黎明-情是我所有(演唱会),http://em.21dtv.com/songs/60035340.mkv +费玉清-千丝万缕情,http://em.21dtv.com/songs/60034158.mkv +小雪+汉洋-其实我介意,http://em.21dtv.com/songs/60033906.mkv +陈奕迅+杨千嬅-其实我记得,http://em.21dtv.com/songs/60033905.mkv +臧文-其实我很好,http://em.21dtv.com/songs/60130676.mkv +俞灏明-其实我还好,http://em.21dtv.com/songs/60072288.mkv +刘沛洋-其实我不赖,http://em.21dtv.com/songs/60103932.mkv +King star-其实我不懂,http://em.21dtv.com/songs/60114345.mkv +江惠仪-其实我爱你,http://em.21dtv.com/songs/60097592.mkv +悠悠朵儿-情随桃花醉,http://em.21dtv.com/songs/60099255.mkv +佚名-秋收起义歌,http://em.21dtv.com/songs/60035703.mkv +大合唱-秋收起义歌,http://em.21dtv.com/songs/60035702.mkv +泳儿-情书+情网,http://em.21dtv.com/songs/60092963.mkv +泳儿-情书_情网,http://em.21dtv.com/songs/60088218.mkv +彭月春-情丝牵两地,http://em.21dtv.com/songs/60035355.mkv +陈文清-秋思情更浓,http://em.21dtv.com/songs/60131945.mkv +陈文清-秋思情更浓,http://em.21dtv.com/songs/60110639.mkv +赵学而-其实怕选择,http://em.21dtv.com/songs/60126230.mkv +七郎+小璇-情沙黏袜合,http://em.21dtv.com/songs/60083669.mkv +刘德华-情是那么笨,http://em.21dtv.com/songs/60035339.mkv +赖伟锋-其实你还在,http://em.21dtv.com/songs/60124509.mkv +王馨平-情深难回首,http://em.21dtv.com/songs/60091749.mkv +MC HOTDOG+关彦淳-轻熟女27,http://em.21dtv.com/songs/60071062.mkv +陈乔恩-其实你懂我,http://em.21dtv.com/songs/60033881.mkv +高贵强+天籁之音-牵手你的爱,http://em.21dtv.com/songs/60133113.mkv +佚名-牵手来走路(无原唱),http://em.21dtv.com/songs/60034242.mkv +卓依婷-情深路迢迢(演唱会),http://em.21dtv.com/songs/60035292.mkv +庄子轩-牵手看日落,http://em.21dtv.com/songs/60116769.mkv +蒲紫微-清水江上月,http://em.21dtv.com/songs/60068595.mkv +沈志仲-前世今生情,http://em.21dtv.com/songs/60108676.mkv +陈奕迅-全世界失眠,http://em.21dtv.com/songs/60035907.mkv +范玮琪-全世界失眠(演唱会),http://em.21dtv.com/songs/60035906.mkv +梁雨恩-全世界失恋,http://em.21dtv.com/songs/60035905.mkv +安小顿-全世界的冷,http://em.21dtv.com/songs/60113411.mkv +周华健-全世界的爱(演唱会),http://em.21dtv.com/songs/60035901.mkv +王聃崴-其实很想你,http://em.21dtv.com/songs/60105255.mkv +于桂香-其实很想你,http://em.21dtv.com/songs/60083599.mkv +欢子-其实很寂寞,http://em.21dtv.com/songs/60033874.mkv +陈沁扬-其实很简单,http://em.21dtv.com/songs/60127560.mkv +月星海-其实很简单,http://em.21dtv.com/songs/60085576.mkv +黎姿-情深海更深,http://em.21dtv.com/songs/60093553.mkv +陈玲玉-情深恨更深,http://em.21dtv.com/songs/60093485.mkv +周子寒-情深海更深,http://em.21dtv.com/songs/60092473.mkv +张韶涵-其实很爱你,http://em.21dtv.com/songs/60033873.mkv +阿沁-其实还爱你,http://em.21dtv.com/songs/60033872.mkv +童唱-七色光之歌,http://em.21dtv.com/songs/60033763.mkv +许志豪-牵手过一生,http://em.21dtv.com/songs/60034241.mkv +许志豪+林良欢-牵手过一生,http://em.21dtv.com/songs/60034240.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-齐声恭喜你,http://em.21dtv.com/songs/60077116.mkv +林姗-情深甘是错,http://em.21dtv.com/songs/60035289.mkv +萧泽伦-牵手过日子,http://em.21dtv.com/songs/60077145.mkv +雪村-全是高科技,http://em.21dtv.com/songs/60035919.mkv +陈小云-钱是公家的(无原唱),http://em.21dtv.com/songs/60034322.mkv +郑源-齐声恭贺你,http://em.21dtv.com/songs/60033862.mkv +风采轮-千山风云过,http://em.21dtv.com/songs/60083611.mkv +阿吉仔+吴映臻-牵手斗阵行,http://em.21dtv.com/songs/60034237.mkv +张家辉-情深的一句,http://em.21dtv.com/songs/60035288.mkv +刘德华-情深的一句,http://em.21dtv.com/songs/60035287.mkv +刘德华-情深的一句(演唱会),http://em.21dtv.com/songs/60035286.mkv +谭咏麟-墙上的肖像(演唱会),http://em.21dtv.com/songs/60034384.mkv +张国荣-全身都是爱,http://em.21dtv.com/songs/60035897.mkv +娄艺潇-枪神的荣耀,http://em.21dtv.com/songs/60077158.mkv +黄致列-庆尚道男人,http://em.21dtv.com/songs/60122309.mkv +杨宗纬-其实都没有,http://em.21dtv.com/songs/60077117.mkv +佚名-青色的马路,http://em.21dtv.com/songs/60034779.mkv +刘玥-其实都明白,http://em.21dtv.com/songs/60133414.mkv +陈丽媛-泉水叮咚响,http://em.21dtv.com/songs/60122223.mkv +千荷-泉水叮咚响,http://em.21dtv.com/songs/60089694.mkv +民歌-泉水叮咚响,http://em.21dtv.com/songs/60088184.mkv +卞小贞-泉水叮咚响(演唱会),http://em.21dtv.com/songs/60035944.mkv +寒月-青涩的爱情,http://em.21dtv.com/songs/60083645.mkv +傅振辉+陈惠莲-牵手出头天,http://em.21dtv.com/songs/60034235.mkv +陈美凤-牵手出头天,http://em.21dtv.com/songs/60034234.mkv +欧豪-其实不想走,http://em.21dtv.com/songs/60100248.mkv +周华健-其实不想走,http://em.21dtv.com/songs/60033870.mkv +王旭鹏-其实不想懂,http://em.21dtv.com/songs/60121910.mkv +方怡萍+高向鹏-情深比天老,http://em.21dtv.com/songs/60067346.mkv +岳夏-其实不快乐,http://em.21dtv.com/songs/60033869.mkv +周思琼-去死吧分手,http://em.21dtv.com/songs/60102047.mkv +陈茂丰-情深彼当时,http://em.21dtv.com/songs/60035283.mkv +后弦-情书不包邮,http://em.21dtv.com/songs/60099137.mkv +林葳-欠阮一世人,http://em.21dtv.com/songs/60117850.mkv +秋裤大叔-情人也是人,http://em.21dtv.com/songs/60108758.mkv +赵小兵-情人也是人,http://em.21dtv.com/songs/60077255.mkv +司徒兰芳-情人也是人,http://em.21dtv.com/songs/60068601.mkv +冷漠-穷人也是人,http://em.21dtv.com/songs/60066256.mkv +王鹏-情人与爱人,http://em.21dtv.com/songs/60128253.mkv +梁宝强-请让我爱你,http://em.21dtv.com/songs/60112037.mkv +孙楠-请让我爱你(演唱会),http://em.21dtv.com/songs/60035603.mkv +黄湘怡-潜入深海里,http://em.21dtv.com/songs/60034332.mkv +MATZKA-情人流浪记(演唱会),http://em.21dtv.com/songs/60064747.mkv +太极乐队-全人类高歌,http://em.21dtv.com/songs/60035893.mkv +太极乐队-全人类高歌(演唱会),http://em.21dtv.com/songs/60035892.mkv +晨熙-情人靠不住,http://em.21dtv.com/songs/60085618.mkv +陈杰洲-情人节早上(无原唱),http://em.21dtv.com/songs/60035228.mkv +SHELLY佳-琴染江山语,http://em.21dtv.com/songs/60085598.mkv +A+乐团-情人节日记,http://em.21dtv.com/songs/60094787.mkv +华梓-情人节那天,http://em.21dtv.com/songs/60035225.mkv +盛大为-情人节恋曲,http://em.21dtv.com/songs/60064746.mkv +张振宇-情人节快乐,http://em.21dtv.com/songs/60035223.mkv +易欣-情人节快乐,http://em.21dtv.com/songs/60035222.mkv +李维-情人节快乐,http://em.21dtv.com/songs/60035221.mkv +曹格-情人节快乐,http://em.21dtv.com/songs/60035220.mkv +苏醒-情人节故事,http://em.21dtv.com/songs/60083664.mkv +顾建华-情人节的吻,http://em.21dtv.com/songs/60035218.mkv +晓月-情人节的风,http://em.21dtv.com/songs/60100088.mkv +叶贝文-情人鹤顶红,http://em.21dtv.com/songs/60096044.mkv +阿权-穷人富贵梦,http://em.21dtv.com/songs/60100550.mkv +钟明秋-情人的眼泪,http://em.21dtv.com/songs/60126318.mkv +金志文-情人的眼泪,http://em.21dtv.com/songs/60117293.mkv +马吟吟+舞思爱·羔露-情人的眼泪,http://em.21dtv.com/songs/60114892.mkv +肖家永-情人的眼泪,http://em.21dtv.com/songs/60101158.mkv +薛祺-情人的眼泪,http://em.21dtv.com/songs/60090206.mkv +潘秀琼-情人的眼泪,http://em.21dtv.com/songs/60089410.mkv +艾怡良-情人的眼泪,http://em.21dtv.com/songs/60083663.mkv +陈明-情人的眼泪(演唱会),http://em.21dtv.com/songs/60077247.mkv +王韵壹-情人的眼泪,http://em.21dtv.com/songs/60071066.mkv +林宝-情人的眼泪,http://em.21dtv.com/songs/60066247.mkv +莫旭秋-情人的眼泪(演唱会),http://em.21dtv.com/songs/60064744.mkv +麦子杰-情人的眼泪,http://em.21dtv.com/songs/60035204.mkv +吕珊+张伟文-情人的眼泪,http://em.21dtv.com/songs/60035203.mkv +林忆莲-情人的眼泪,http://em.21dtv.com/songs/60035202.mkv +陈静允-情人的眼泪,http://em.21dtv.com/songs/60035201.mkv +蔡琴-情人的眼泪,http://em.21dtv.com/songs/60035200.mkv +周蕙-情人的眼泪(演唱会),http://em.21dtv.com/songs/60035199.mkv +叶丽仪-情人的眼泪(演唱会),http://em.21dtv.com/songs/60035198.mkv +王天丽-情人的眼泪(演唱会),http://em.21dtv.com/songs/60035197.mkv +罗大佑-情人的眼泪(演唱会),http://em.21dtv.com/songs/60035196.mkv +林忆莲-情人的眼泪(演唱会),http://em.21dtv.com/songs/60035195.mkv +范晓萱-情人的眼泪(演唱会),http://em.21dtv.com/songs/60035194.mkv +蔡琴-情人的眼泪(演唱会),http://em.21dtv.com/songs/60035193.mkv +佚名-情人的眼泪(无原唱),http://em.21dtv.com/songs/60035192.mkv +钟镇涛+章蓉舫-情人的眼睛,http://em.21dtv.com/songs/60035191.mkv +邓丽君-情人的阳光,http://em.21dtv.com/songs/60035206.mkv +马浚伟-情人的小说,http://em.21dtv.com/songs/60035190.mkv +奥迪-情人的情人,http://em.21dtv.com/songs/60079866.mkv +于晓龙-亲人的牵挂,http://em.21dtv.com/songs/60133339.mkv +李克勤-情人的婚纱,http://em.21dtv.com/songs/60111156.mkv +阿茹+良一-情人的海港,http://em.21dtv.com/songs/60085616.mkv +邓丽君-情人的关怀,http://em.21dtv.com/songs/60035185.mkv +女声-情人不要哭,http://em.21dtv.com/songs/60035184.mkv +男声-情人不要哭,http://em.21dtv.com/songs/60035183.mkv +向蕙玲-情人变朋友,http://em.21dtv.com/songs/60035179.mkv +南台湾小姑娘-情人变朋友,http://em.21dtv.com/songs/60035178.mkv +广智-情人不可靠,http://em.21dtv.com/songs/60085615.mkv +刘德强-情人不可靠,http://em.21dtv.com/songs/60035182.mkv +AT17-曲奇自助餐,http://em.21dtv.com/songs/60035820.mkv +满文军-轻轻走近你,http://em.21dtv.com/songs/60034816.mkv +江志丰-轻轻一句话,http://em.21dtv.com/songs/60108666.mkv +刘一祯-青青油菜花,http://em.21dtv.com/songs/60106629.mkv +刘一祯-青青油菜花,http://em.21dtv.com/songs/60071061.mkv +何慧儿-亲亲小兔子,http://em.21dtv.com/songs/60062442.mkv +阿宝-亲亲小妹子,http://em.21dtv.com/songs/60067328.mkv +潘倩-亲亲熙和湾,http://em.21dtv.com/songs/60132690.mkv +李利依-青青小河边(演唱会),http://em.21dtv.com/songs/60064734.mkv +关淑怡-缱绻星光下,http://em.21dtv.com/songs/60034341.mkv +李克勤-缱绻星光下(演唱会),http://em.21dtv.com/songs/60034340.mkv +关淑怡-缱绻星光下(演唱会),http://em.21dtv.com/songs/60034339.mkv +方琦-轻轻问一句,http://em.21dtv.com/songs/60124006.mkv +邓妙华-轻启我心灵(无原唱),http://em.21dtv.com/songs/60034801.mkv +儿歌-齐齐望过去,http://em.21dtv.com/songs/60089641.mkv +彭佳慧-敲敲我的头,http://em.21dtv.com/songs/60034424.mkv +IU-牵起我的手,http://em.21dtv.com/songs/60064710.mkv +邝美云-轻轻吻别时,http://em.21dtv.com/songs/60034814.mkv +COOKIES-曲奇圣诞歌,http://em.21dtv.com/songs/60094370.mkv +蔡小虎+黄思婷-情牵七千年,http://em.21dtv.com/songs/60035156.mkv +廖昌永-青青菩提树,http://em.21dtv.com/songs/60123909.mkv +杨洋-青青菩提树,http://em.21dtv.com/songs/60113683.mkv +凌云-青青菩提树,http://em.21dtv.com/songs/60098135.mkv +廖昌永-青青菩提树,http://em.21dtv.com/songs/60085602.mkv +谭建军-青青菩提树,http://em.21dtv.com/songs/60077216.mkv +龚月-青青菩提树,http://em.21dtv.com/songs/60077215.mkv +潘建义-清清楠溪江,http://em.21dtv.com/songs/60085606.mkv +潘媛媛-清清楠溪江,http://em.21dtv.com/songs/60081133.mkv +蒙克-亲亲男人香,http://em.21dtv.com/songs/60122086.mkv +李思琳-亲亲美人鱼,http://em.21dtv.com/songs/60034589.mkv +甘萍-亲亲美人鱼,http://em.21dtv.com/songs/60034588.mkv +李丹阳-亲亲茉莉花,http://em.21dtv.com/songs/60087977.mkv +董文华-亲亲茉莉花,http://em.21dtv.com/songs/60034590.mkv +韩阳子-求求老天爷,http://em.21dtv.com/songs/60035800.mkv +尤国通-亲亲老百姓(演唱会),http://em.21dtv.com/songs/60069728.mkv +紫龄-轻轻叫一声(无原唱),http://em.21dtv.com/songs/60034809.mkv +刘尊+邢梅-轻轻叫声哥,http://em.21dtv.com/songs/60034808.mkv +田震+小柯-千秋家国梦,http://em.21dtv.com/songs/60034153.mkv +陈美凤-轻轻叫出声,http://em.21dtv.com/songs/60034807.mkv +双星-齐齐贺下你,http://em.21dtv.com/songs/60077115.mkv +廖小璇-齐齐贺赫你,http://em.21dtv.com/songs/60092555.mkv +李茂山-轻轻呼唤你,http://em.21dtv.com/songs/60088048.mkv +兰旗儿-亲亲红盖头,http://em.21dtv.com/songs/60067327.mkv +卓依婷-青青河边草,http://em.21dtv.com/songs/60034774.mkv +佚名-青青河边草,http://em.21dtv.com/songs/60034773.mkv +合唱-青青河边草,http://em.21dtv.com/songs/60034772.mkv +高胜美-青青河边草,http://em.21dtv.com/songs/60034771.mkv +南拳妈妈-悄悄告诉她,http://em.21dtv.com/songs/60034416.mkv +范玮琪-悄悄告诉你,http://em.21dtv.com/songs/60085595.mkv +佚名-齐齐共拜年,http://em.21dtv.com/songs/60033861.mkv +万莉-亲亲富水湖,http://em.21dtv.com/songs/60121328.mkv +袁冰-亲亲的祖国,http://em.21dtv.com/songs/60098757.mkv +陈雅琪-琪琪的问题,http://em.21dtv.com/songs/60085582.mkv +杨小曼-悄悄地离开,http://em.21dtv.com/songs/60068584.mkv +阿鹏+阿鲁阿卓-亲亲的两岸,http://em.21dtv.com/songs/60034584.mkv +阿英-亲情的呼唤,http://em.21dtv.com/songs/60077187.mkv +鲍国-敲起大红鼓,http://em.21dtv.com/songs/60071051.mkv +小柯-轻轻的放下,http://em.21dtv.com/songs/60104959.mkv +乌兰图雅-亲亲的草原(HD),http://em.21dtv.com/songs/60133334.mkv +四郎-青青的草原,http://em.21dtv.com/songs/60087616.mkv +乌兰图雅-亲亲的草原,http://em.21dtv.com/songs/60083635.mkv +久久-青青的草原,http://em.21dtv.com/songs/60077214.mkv +冉燃-亲亲的草原,http://em.21dtv.com/songs/60064725.mkv +熊英-青青大草原,http://em.21dtv.com/songs/60034770.mkv +宋思思-悄悄的悲伤,http://em.21dtv.com/songs/60034415.mkv +张英席-青青草原上,http://em.21dtv.com/songs/60108504.mkv +许冠杰-齐齐唱首歌,http://em.21dtv.com/songs/60033860.mkv +唐禹哲-请全部留下,http://em.21dtv.com/songs/60118464.mkv +佚名-亲情比海深(无原唱),http://em.21dtv.com/songs/60034607.mkv +风香水醇+王风举-悄悄爱上你,http://em.21dtv.com/songs/60134457.mkv +阿悄-悄悄爱上你,http://em.21dtv.com/songs/60118999.mkv +戴妮+怕黑-悄悄爱上你,http://em.21dtv.com/songs/60101091.mkv +谢金燕-恰恰阿哥哥,http://em.21dtv.com/songs/60034042.mkv +苗伟-牵起爱的手,http://em.21dtv.com/songs/60100419.mkv +卓依婷-欺骗我的心,http://em.21dtv.com/songs/60087475.mkv +陈鹰-情批无底寄(无原唱),http://em.21dtv.com/songs/60035152.mkv +佚名-期盼我的爱(无原唱),http://em.21dtv.com/songs/60033850.mkv +佚名-欺骗你的心,http://em.21dtv.com/songs/60033854.mkv +黄致列-青苹果乐园,http://em.21dtv.com/songs/60121183.mkv +小虎队-青苹果乐园,http://em.21dtv.com/songs/60115122.mkv +谭维维+赵哲-青苹果乐园,http://em.21dtv.com/songs/60112260.mkv +周笔畅-青苹果乐园,http://em.21dtv.com/songs/60096225.mkv +小虎队-青频果乐园,http://em.21dtv.com/songs/60090993.mkv +儿歌-青苹果乐园,http://em.21dtv.com/songs/60089639.mkv +九九+苏梦玫-青苹果乐园,http://em.21dtv.com/songs/60081540.mkv +MATZKA-青苹果乐园(演唱会),http://em.21dtv.com/songs/60064733.mkv +佚名-青苹果乐园,http://em.21dtv.com/songs/60034769.mkv +群星-青苹果乐园(演唱会),http://em.21dtv.com/songs/60034768.mkv +小虎队-青苹果乐园(无原唱),http://em.21dtv.com/songs/60034767.mkv +蔡小虎-欺骗的诅咒,http://em.21dtv.com/songs/60100954.mkv +摇滚女王-旗袍的诱惑,http://em.21dtv.com/songs/60133742.mkv +刘蕊绮-旗袍的诱惑,http://em.21dtv.com/songs/60110046.mkv +张秀卿-欺骗的伦巴,http://em.21dtv.com/songs/60033853.mkv +龙剑笙-俏潘安店遇,http://em.21dtv.com/songs/60077166.mkv +尹光-俏潘安--店遇,http://em.21dtv.com/songs/60034449.mkv +蔡立儿-欠你这一世,http://em.21dtv.com/songs/60034350.mkv +腾格尔-千年走一回,http://em.21dtv.com/songs/60090125.mkv +黄乙玲-请你着谅解(无原唱),http://em.21dtv.com/songs/60035598.mkv +龙千玉+傅振辉-请你着放弃,http://em.21dtv.com/songs/60035597.mkv +陈雷-请你着等待,http://em.21dtv.com/songs/60035596.mkv +天骏-请你走草原,http://em.21dtv.com/songs/60121554.mkv +白冰冰-请你著保重(无原唱),http://em.21dtv.com/songs/60095826.mkv +佚名-请你着保重,http://em.21dtv.com/songs/60035595.mkv +佚名-求你再爱我,http://em.21dtv.com/songs/60035797.mkv +梁咏琪-青柠一片天,http://em.21dtv.com/songs/60034763.mkv +张晓明-请你原谅我,http://em.21dtv.com/songs/60100021.mkv +姜育恒-欠你一滴泪,http://em.21dtv.com/songs/60090881.mkv +韩磊+黄晓明-千年一般若,http://em.21dtv.com/songs/60121129.mkv +徐海琴-请你相信我,http://em.21dtv.com/songs/60087883.mkv +黄品冠-请你相信我,http://em.21dtv.com/songs/60035590.mkv +金玲-请你相信我(无原唱),http://em.21dtv.com/songs/60035589.mkv +佚名-请你信赖我,http://em.21dtv.com/songs/60035592.mkv +曾心梅-请你信赖我,http://em.21dtv.com/songs/60035591.mkv +何建清-请你忘了我,http://em.21dtv.com/songs/60132200.mkv +何建清-请你忘了我,http://em.21dtv.com/songs/60130075.mkv +冰与火组合-请你忘了我,http://em.21dtv.com/songs/60035588.mkv +杨枫-请你忘了他,http://em.21dtv.com/songs/60082030.mkv +詹雅雯-请你听我讲,http://em.21dtv.com/songs/60035587.mkv +佚名-请你听我讲,http://em.21dtv.com/songs/60035586.mkv +蔡秋凤+蔡义德-请你听我讲,http://em.21dtv.com/songs/60035585.mkv +洛天依-千年食谱颂,http://em.21dtv.com/songs/60083606.mkv +易欣-请你说爱我,http://em.21dtv.com/songs/60035584.mkv +佚名-请你让我走,http://em.21dtv.com/songs/60035581.mkv +阿东-求你饶了我,http://em.21dtv.com/songs/60118994.mkv +郑源+可昕-请你陪我走,http://em.21dtv.com/songs/60035579.mkv +甲子慧-请你摸心肝,http://em.21dtv.com/songs/60095811.mkv +郭一男+高丽秋-请你默默听(无原唱),http://em.21dtv.com/songs/60035578.mkv +陈浩屏-请你麦袂记(无原唱),http://em.21dtv.com/songs/60035577.mkv +佚名-请你免挂心,http://em.21dtv.com/songs/60095444.mkv +张蓉蓉-请你麦搁卡,http://em.21dtv.com/songs/60035576.mkv +黄乙玲-请你麦搁卡,http://em.21dtv.com/songs/60035575.mkv +曹菲儿-请你来新疆,http://em.21dtv.com/songs/60116870.mkv +向蕙玲-请你拢收回,http://em.21dtv.com/songs/60125277.mkv +佚名-求你离开我(无原唱),http://em.21dtv.com/songs/60035796.mkv +西域胡杨-请你来喀什,http://em.21dtv.com/songs/60130739.mkv +王绎龙-请你讲中文,http://em.21dtv.com/songs/60066255.mkv +黄凯芹-请你记住我,http://em.21dtv.com/songs/60035567.mkv +吕方-求你讲清楚,http://em.21dtv.com/songs/60035795.mkv +吕方-求你讲清楚(演唱会),http://em.21dtv.com/songs/60035794.mkv +罗时丰-请你讲清楚,http://em.21dtv.com/songs/60035570.mkv +陈雷-请你嫁乎我,http://em.21dtv.com/songs/60035569.mkv +明圣凯-请你嫁给我,http://em.21dtv.com/songs/60035568.mkv +曹迅-情浓恨更浓,http://em.21dtv.com/songs/60035146.mkv +何冰冰-牵牛花的爱,http://em.21dtv.com/songs/60062440.mkv +吕方-请你跟我走,http://em.21dtv.com/songs/60035561.mkv +张伦辉-请你告诉我,http://em.21dtv.com/songs/60063386.mkv +艳阳天-请你放了我,http://em.21dtv.com/songs/60035557.mkv +佚名-请你放开我,http://em.21dtv.com/songs/60035556.mkv +肖洒胡+胡海泉-千年等一回,http://em.21dtv.com/songs/60094650.mkv +卓依婷-千年等一回,http://em.21dtv.com/songs/60034121.mkv +高胜美-千年等一回,http://em.21dtv.com/songs/60034120.mkv +高胜美-千年等一回(演唱会),http://em.21dtv.com/songs/60034119.mkv +佚名-千年等一回(快四),http://em.21dtv.com/songs/60034118.mkv +陈诗慧-欠你的幸福,http://em.21dtv.com/songs/60034347.mkv +宋宁-欠你的微笑,http://em.21dtv.com/songs/60081860.mkv +吴宗宪-欠你的温柔,http://em.21dtv.com/songs/60034346.mkv +小贱-欠你的太多,http://em.21dtv.com/songs/60034345.mkv +王瑞霞-千年的思念,http://em.21dtv.com/songs/60096407.mkv +戚剑强-千年的伤感,http://em.21dtv.com/songs/60072293.mkv +乔杨+倪雅丰-千年等你回,http://em.21dtv.com/songs/60077134.mkv +BBF-去你的旅行,http://em.21dtv.com/songs/60132045.mkv +李紫涵-千年的狐仙,http://em.21dtv.com/songs/60083605.mkv +卢巧音-去你的婚礼,http://em.21dtv.com/songs/60035846.mkv +张蓉蓉-请你多搁卡,http://em.21dtv.com/songs/60075753.mkv +陈建-千年的风沙,http://em.21dtv.com/songs/60062255.mkv +冷漠-请你等等我,http://em.21dtv.com/songs/60035554.mkv +杨宗宪-请你惦惦听(无原唱),http://em.21dtv.com/songs/60035555.mkv +阿木古楞-千年的草原,http://em.21dtv.com/songs/60134379.mkv +常安-青鸟的翅膀,http://em.21dtv.com/songs/60034761.mkv +陈小义-去你的爱情,http://em.21dtv.com/songs/60104553.mkv +舒心翼语-请你别再说,http://em.21dtv.com/songs/60035543.mkv +何遇程-请你不要走,http://em.21dtv.com/songs/60112512.mkv +程罕华-请你不要走,http://em.21dtv.com/songs/60064758.mkv +佚名-求你不要走(无原唱),http://em.21dtv.com/songs/60035792.mkv +杨臣刚-请你不要走,http://em.21dtv.com/songs/60035551.mkv +林玉英-请你不要走(无原唱),http://em.21dtv.com/songs/60035550.mkv +李蕙敏-请你不要哭,http://em.21dtv.com/songs/60035547.mkv +张祥洪-请你别忘记,http://em.21dtv.com/songs/60085624.mkv +高胜美-请你别忘记,http://em.21dtv.com/songs/60035542.mkv +佚名-劝你不通醉,http://em.21dtv.com/songs/60095401.mkv +韩磊-千年北盘江,http://em.21dtv.com/songs/60096545.mkv +毛泓艳-请你抱紧我,http://em.21dtv.com/songs/60091549.mkv +毛富珍-请你抱紧我,http://em.21dtv.com/songs/60035540.mkv +隆隆-请你抱紧我,http://em.21dtv.com/songs/60035539.mkv +张扬-七秒钟记忆,http://em.21dtv.com/songs/60131399.mkv +徐良+孙羽幽-七秒钟记忆,http://em.21dtv.com/songs/60072283.mkv +许秋怡-情没有十分,http://em.21dtv.com/songs/60035091.mkv +王识贤-牵袂条的手,http://em.21dtv.com/songs/60034210.mkv +曾轶可-骑摩托的人,http://em.21dtv.com/songs/60081850.mkv +龙奔-全民社会摇,http://em.21dtv.com/songs/60129866.mkv +慢摇舞曲-全民社会摇 (DJ),http://em.21dtv.com/songs/30000601.mkv +张曼-清明上河图,http://em.21dtv.com/songs/60106850.mkv +孙维良-清明上河图(现场),http://em.21dtv.com/songs/60096245.mkv +马丽-清明上河图,http://em.21dtv.com/songs/60083948.mkv +孙维良-清明上河图(演唱会),http://em.21dtv.com/songs/60067333.mkv +汤灿-清明上河图,http://em.21dtv.com/songs/60064737.mkv +鲍乐乐-清明上河图,http://em.21dtv.com/songs/60064736.mkv +李玉刚-清明上河图,http://em.21dtv.com/songs/60034888.mkv +谭咏麟+李克勤-球迷奇遇记(演唱会),http://em.21dtv.com/songs/60035811.mkv +李克勤-球迷奇遇记(演唱会),http://em.21dtv.com/songs/60035810.mkv +陈粒-奇妙能力歌,http://em.21dtv.com/songs/60112363.mkv +秀兰玛雅-情梦梦一生,http://em.21dtv.com/songs/60035096.mkv +邓福如+小宇-前面路口停,http://em.21dtv.com/songs/60114815.mkv +邓福如+宋念宇-前面路口停,http://em.21dtv.com/songs/60112997.mkv +罗蓉-情满华蓥山,http://em.21dtv.com/songs/60101675.mkv +吕珊-奇妙的约会(演唱会),http://em.21dtv.com/songs/60033955.mkv +冼佩瑾-亲密的疏离,http://em.21dtv.com/songs/60116572.mkv +西单女孩-奇妙的旅行,http://em.21dtv.com/songs/60063121.mkv +胡耀华-奇妙的旅程,http://em.21dtv.com/songs/60103527.mkv +杨叶卿-七秒的记忆,http://em.21dtv.com/songs/60099333.mkv +尚芸菲-七秒的记忆,http://em.21dtv.com/songs/60033755.mkv +陈瑞-凄美的回忆,http://em.21dtv.com/songs/60131952.mkv +刘宏杰-凄美的谎言,http://em.21dtv.com/songs/60087389.mkv +张明敏-奇妙的感觉,http://em.21dtv.com/songs/60033954.mkv +王啸坤-琴麻岛的海,http://em.21dtv.com/songs/60034625.mkv +王西-凄美的城市,http://em.21dtv.com/songs/60114694.mkv +许强-凄美的传说,http://em.21dtv.com/songs/60086757.mkv +游丽红-情梦本是空,http://em.21dtv.com/songs/60109498.mkv +龙千玉-情梦啊情网,http://em.21dtv.com/songs/60035094.mkv +苏永康-情来自有方,http://em.21dtv.com/songs/60035057.mkv +苏永康-情来自有方(演唱会),http://em.21dtv.com/songs/60035056.mkv +梁海洋-千里祝平安,http://em.21dtv.com/songs/60112808.mkv +佚名-情路这呢窄,http://em.21dtv.com/songs/60035080.mkv +孙淑媚-情路这呢长(无原唱),http://em.21dtv.com/songs/60035081.mkv +周雅芳+余帝-情路咱来行,http://em.21dtv.com/songs/60035078.mkv +罗文聪-情路作流氓,http://em.21dtv.com/songs/60035083.mkv +林俊吉-情路走到这,http://em.21dtv.com/songs/60072313.mkv +方怡萍-情路这歹走(无原唱),http://em.21dtv.com/songs/60035079.mkv +谭晶-千里走单骑,http://em.21dtv.com/songs/60034111.mkv +凤娘-情浪淹心肝,http://em.21dtv.com/songs/60061519.mkv +南征北战-权力与荣耀,http://em.21dtv.com/songs/60134961.mkv +南征北战-权力与荣耀,http://em.21dtv.com/songs/60133432.mkv +萧煌奇-情路无尾巷,http://em.21dtv.com/songs/60077243.mkv +杨静-情路同心圆,http://em.21dtv.com/songs/60077242.mkv +柳岩-情路透春光,http://em.21dtv.com/songs/60106034.mkv +TWINS-齐来手牵手,http://em.21dtv.com/songs/60092229.mkv +佚名-千里送京娘,http://em.21dtv.com/songs/60034100.mkv +朱玲-千里送花香,http://em.21dtv.com/songs/60089945.mkv +李水英-千里思故乡,http://em.21dtv.com/songs/60115225.mkv +吕晓-牵了谁的手,http://em.21dtv.com/songs/60062734.mkv +佚名-秋凉如我心,http://em.21dtv.com/songs/60035688.mkv +蔡幸娟-秋凉如我心,http://em.21dtv.com/songs/60035687.mkv +叶幼琪-情泪染桃花(戏曲),http://em.21dtv.com/songs/60092420.mkv +韩宝仪-钱来去匆匆,http://em.21dtv.com/songs/60034316.mkv +韩宝仪-钱!来去匆匆,http://em.21dtv.com/songs/60034311.mkv +戴梅君-情路你甲我,http://em.21dtv.com/songs/60035075.mkv +陈冠希-欠了你的爱,http://em.21dtv.com/songs/60034343.mkv +上明-情路流浪儿,http://em.21dtv.com/songs/60107459.mkv +黄克林-千里寄相思,http://em.21dtv.com/songs/60034098.mkv +佚名-情侣贺新年,http://em.21dtv.com/songs/60035084.mkv +三强-情落花满天,http://em.21dtv.com/songs/60064742.mkv +上明-情路滑洌洌,http://em.21dtv.com/songs/60077241.mkv +朱妍-千里共缠绵,http://em.21dtv.com/songs/60087968.mkv +张燕-千里共婵娟,http://em.21dtv.com/songs/60105047.mkv +朱妍-千里共婵娟,http://em.21dtv.com/songs/60034097.mkv +王建杰-牵连的真心,http://em.21dtv.com/songs/60099405.mkv +杨洪基-七律-答友人,http://em.21dtv.com/songs/60033750.mkv +孙淑媚-情路惦惦走,http://em.21dtv.com/songs/60035071.mkv +盘欣蕾-情恋大草原,http://em.21dtv.com/songs/60117099.mkv +徐子洺-情恋大草原,http://em.21dtv.com/songs/60113518.mkv +李佳倩-情郎啊情郎,http://em.21dtv.com/songs/60098455.mkv +何龙雨+敬婷-情空心也空,http://em.21dtv.com/songs/60125126.mkv +冯乐永+曹秀琴-情困薛丁山(戏曲),http://em.21dtv.com/songs/60092334.mkv +崔京浩-情困我一生,http://em.21dtv.com/songs/60035055.mkv +谭耀文-全靠我没有,http://em.21dtv.com/songs/60035882.mkv +许哲佩-巧克力之吻,http://em.21dtv.com/songs/60061506.mkv +赵默-巧克力女孩,http://em.21dtv.com/songs/60034443.mkv +童星-巧克力女孩,http://em.21dtv.com/songs/60034442.mkv +赵默-巧克力女孩(演唱会),http://em.21dtv.com/songs/60034441.mkv +陈雷-旗津小姑娘,http://em.21dtv.com/songs/60086758.mkv +BEYOND-请将手放开,http://em.21dtv.com/songs/60035529.mkv +谢安琪-请将手放开(演唱会),http://em.21dtv.com/songs/60035528.mkv +黄贯中-请将手放开(演唱会),http://em.21dtv.com/songs/60035527.mkv +黄勇深-琴键上的泪,http://em.21dtv.com/songs/60066237.mkv +佚名-翘脚髯嘴须,http://em.21dtv.com/songs/60034452.mkv +方顺吉+方婉真+萧玉芬-翘脚髯嘴须(演唱会),http://em.21dtv.com/songs/60034451.mkv +卓依婷-勤俭卡有底,http://em.21dtv.com/songs/60058594.mkv +许椿苗-清净快乐歌,http://em.21dtv.com/songs/60127393.mkv +小龙女-七九九七九,http://em.21dtv.com/songs/60033745.mkv +甲子蕙-千金换真心,http://em.21dtv.com/songs/60034091.mkv +佚名-清净法身佛,http://em.21dtv.com/songs/60034883.mkv +卢海潮-巧结凤凰寿,http://em.21dtv.com/songs/60034440.mkv +泽仁娜措-琼杰的朋友(藏),http://em.21dtv.com/songs/60069740.mkv +李治廷-奇迹等不到,http://em.21dtv.com/songs/60066224.mkv +黄宗泽-全角度爱你(演唱会),http://em.21dtv.com/songs/60035881.mkv +王铮亮-千金不换爱,http://em.21dtv.com/songs/60111292.mkv +甄妮-七级半地震(演唱会),http://em.21dtv.com/songs/60033743.mkv +陈一郎-情海一条龙(无原唱),http://em.21dtv.com/songs/60095966.mkv +容祖儿-去火星恋爱(演唱会),http://em.21dtv.com/songs/60035841.mkv +江蕙-情海网中人,http://em.21dtv.com/songs/60095735.mkv +干露露-情花为谁开,http://em.21dtv.com/songs/60114518.mkv +王不火-且活且珍惜,http://em.21dtv.com/songs/60132708.mkv +王不火-且活且珍惜,http://em.21dtv.com/songs/60128213.mkv +冯欣-且行且珍惜,http://em.21dtv.com/songs/60101046.mkv +云菲菲-且行且珍惜,http://em.21dtv.com/songs/60099735.mkv +黄征-情话全天候(演唱会),http://em.21dtv.com/songs/60035041.mkv +李嘉-情海沐沐泅,http://em.21dtv.com/songs/60035028.mkv +Under Lover-求婚进行曲,http://em.21dtv.com/songs/60116483.mkv +许冠杰-钱会继续来,http://em.21dtv.com/songs/60093143.mkv +许哲佩-奇幻精品店,http://em.21dtv.com/songs/60064703.mkv +刘嘉亮-青海的天空,http://em.21dtv.com/songs/60134927.mkv +魏楚沅-奇幻的旅程,http://em.21dtv.com/songs/60097595.mkv +BEYOND-漆黑的空间,http://em.21dtv.com/songs/60077112.mkv +顺子-恰好的寂寞(演唱会),http://em.21dtv.com/songs/60034041.mkv +江美琪-恰好的寂寞(演唱会),http://em.21dtv.com/songs/60034040.mkv +陈洁仪-7号登机口,http://em.21dtv.com/songs/60124643.mkv +覃浩-情花遍地开,http://em.21dtv.com/songs/60072312.mkv +王可儿-情歌怎么唱,http://em.21dtv.com/songs/60115291.mkv +马雨梵-情歌在草原,http://em.21dtv.com/songs/60122283.mkv +菲儿-情歌已无情,http://em.21dtv.com/songs/60132844.mkv +晨熙-情歌一起唱,http://em.21dtv.com/songs/60118638.mkv +黑撒乐队-气管炎男人,http://em.21dtv.com/songs/60102533.mkv +黑撒-气管炎男人,http://em.21dtv.com/songs/60089075.mkv +王晟轩-情歌写太多,http://em.21dtv.com/songs/60104311.mkv +索南扎西-情歌为你唱,http://em.21dtv.com/songs/60035007.mkv +李易峰-请跟我联络,http://em.21dtv.com/songs/60116913.mkv +李佳丹-情歌天下唱,http://em.21dtv.com/songs/60099296.mkv +凤凰传奇-情歌天下唱,http://em.21dtv.com/songs/60079894.mkv +梅朵-情歌似烈火,http://em.21dtv.com/songs/60133897.mkv +唐古-情歌如何唱,http://em.21dtv.com/songs/60106723.mkv +陈思思-情哥去南方,http://em.21dtv.com/songs/60034983.mkv +林志颖-牵挂你的我,http://em.21dtv.com/songs/60034207.mkv +惠子-情感面对面,http://em.21dtv.com/songs/60116843.mkv +斯琴高丽+顾峰-七个隆咚锵,http://em.21dtv.com/songs/60069701.mkv +蓝心湄+脱拉库-情歌卡拉ok,http://em.21dtv.com/songs/60035003.mkv +龙梅子+冷漠-情歌继续唱,http://em.21dtv.com/songs/60102515.mkv +叶洁章-情归九连山,http://em.21dtv.com/songs/60085613.mkv +贲小伟-娶个好媳妇,http://em.21dtv.com/songs/60106299.mkv +陈思思-情哥回家乡,http://em.21dtv.com/songs/60034982.mkv +张萍-全国都在跳,http://em.21dtv.com/songs/60114550.mkv +林欣彤-情歌的意义,http://em.21dtv.com/songs/60103392.mkv +林忆莲-情感的无助,http://em.21dtv.com/songs/60034978.mkv +佚名-情感的水手,http://em.21dtv.com/songs/60034977.mkv +巫启贤-情感的水手,http://em.21dtv.com/songs/60034976.mkv +乌兰托娅+赵洪涛-情歌大声唱,http://em.21dtv.com/songs/60118300.mkv +容祖儿-情歌的情歌,http://em.21dtv.com/songs/60035001.mkv +容祖儿-情歌的情歌(演唱会),http://em.21dtv.com/songs/60035000.mkv +刘德华-情感的禁区(HD),http://em.21dtv.com/songs/10012645.mkv +刘德华-情感的禁区(演唱会),http://em.21dtv.com/songs/60034975.mkv +徐子曼-奇怪的东西,http://em.21dtv.com/songs/60033933.mkv +冷漠-情歌唱起来,http://em.21dtv.com/songs/60120346.mkv +甲子蕙-情歌掺苦酒,http://em.21dtv.com/songs/60072310.mkv +乌兰托娅+石焱-情歌唱到老,http://em.21dtv.com/songs/60069734.mkv +张玮-情歌唱不完,http://em.21dtv.com/songs/60105859.mkv +赵小南-情歌唱不停,http://em.21dtv.com/songs/60103589.mkv +费玉清-情歌不再唱,http://em.21dtv.com/songs/60034998.mkv +刘依纯-情歌不好听,http://em.21dtv.com/songs/60034997.mkv +王曼芝-情关啊情关,http://em.21dtv.com/songs/60124261.mkv +徐怀钰-千分之一秒,http://em.21dtv.com/songs/60091193.mkv +刘平芳-秋风又吹来,http://em.21dtv.com/songs/60035679.mkv +蔡方萌-秋风下的沙,http://em.21dtv.com/songs/60100452.mkv +佚名-秋风无了时,http://em.21dtv.com/songs/60035676.mkv +陈盈洁-秋风无了时,http://em.21dtv.com/songs/60035675.mkv +航宇-秋风扫落叶,http://em.21dtv.com/songs/60117993.mkv +卓依婷-秋风扫落叶,http://em.21dtv.com/songs/60066841.mkv +佚名-秋风女人心,http://em.21dtv.com/songs/60035671.mkv +江美丽-秋风女人心,http://em.21dtv.com/songs/60035670.mkv +叶玉卿-卿抚你的心,http://em.21dtv.com/songs/60034860.mkv +张学友-轻抚你的脸(演唱会),http://em.21dtv.com/songs/60034797.mkv +于淼-秋风寄相思,http://em.21dtv.com/songs/60069741.mkv +李大卫-秋风的诉说,http://em.21dtv.com/songs/60106936.mkv +YHBOYS-前方的世界,http://em.21dtv.com/songs/60132152.mkv +陈勇-前方的前方,http://em.21dtv.com/songs/60077150.mkv +潘辰-起风的季节,http://em.21dtv.com/songs/60034012.mkv +罗中旭-起风的黄昏,http://em.21dtv.com/songs/60081944.mkv +洪荣宏-秋风吹的时,http://em.21dtv.com/songs/60130546.mkv +施文彬-秋风彼一暝,http://em.21dtv.com/songs/60095572.mkv +暴林-穷二代心声,http://em.21dtv.com/songs/60083679.mkv +宋雪莱+姜婷婷-期待这一刻,http://em.21dtv.com/songs/60033849.mkv +AT17-穷得只有爱,http://em.21dtv.com/songs/60092133.mkv +杨谨+张智成-穷的只有爱,http://em.21dtv.com/songs/60068607.mkv +王建杰-期待再相会,http://em.21dtv.com/songs/60033848.mkv +陈盈洁-期待再相会,http://em.21dtv.com/songs/60033847.mkv +詹雅雯-期待再相逢,http://em.21dtv.com/songs/60033846.mkv +洪荣宏-期待再相逢,http://em.21dtv.com/songs/60033845.mkv +樱花姐妹-情到这为止,http://em.21dtv.com/songs/60072027.mkv +樱花姐妹-情到这为止(无原唱),http://em.21dtv.com/songs/60034951.mkv +何易峰-期待再团圆,http://em.21dtv.com/songs/60033844.mkv +佚名-期待再期待,http://em.21dtv.com/songs/60033843.mkv +钟镇涛-情敌这么多,http://em.21dtv.com/songs/60034955.mkv +许怀造-千岛游子梦,http://em.21dtv.com/songs/60109624.mkv +许怀造-千岛游子梦,http://em.21dtv.com/songs/60108004.mkv +罗文聪-期待有人爱,http://em.21dtv.com/songs/60033841.mkv +施文彬-情定小琉球,http://em.21dtv.com/songs/60095568.mkv +张可儿-情断誓言滩,http://em.21dtv.com/songs/60085608.mkv +罗时丰-期待三年后(无原唱),http://em.21dtv.com/songs/60095857.mkv +黄海-情定380,http://em.21dtv.com/songs/60062487.mkv +张洪量-情定日落桥,http://em.21dtv.com/songs/60034956.mkv +李敏华-情动沁芳桥(戏曲),http://em.21dtv.com/songs/60092806.mkv +唐美华-黔东南醉美,http://em.21dtv.com/songs/60121520.mkv +佚名-祈祷你平安,http://em.21dtv.com/songs/60033968.mkv +陈盈洁-祈祷你平安,http://em.21dtv.com/songs/60033967.mkv +林俊杰-期待你的爱,http://em.21dtv.com/songs/60033840.mkv +耀畅组合-请到泸州来,http://em.21dtv.com/songs/60085623.mkv +民歌-情动柳叶湖,http://em.21dtv.com/songs/60091556.mkv +甲子蕙-期待甲阮疼,http://em.21dtv.com/songs/60072285.mkv +甲子慧-情断飞机场,http://em.21dtv.com/songs/60093757.mkv +王建杰-期待的秋暝(无原唱),http://em.21dtv.com/songs/60033835.mkv +SUPER 7-期待的恋爱,http://em.21dtv.com/songs/60085575.mkv +龙梅-期待的歌谣,http://em.21dtv.com/songs/60108198.mkv +绿野清风组合-请到草原来,http://em.21dtv.com/songs/60110449.mkv +呼斯楞-请到草原来,http://em.21dtv.com/songs/60035515.mkv +时嘉+龙庚-七朵百合花,http://em.21dtv.com/songs/60081145.mkv +王力宏-情敌贝多芬,http://em.21dtv.com/songs/60034954.mkv +袁小迪+邓玉贤-期待变悲哀,http://em.21dtv.com/songs/60033834.mkv +龙梅子+老猫-群畅赚赚赚,http://em.21dtv.com/songs/60130954.mkv +黄思婷-青春作阵行,http://em.21dtv.com/songs/60034735.mkv +群星-清晨真伟大,http://em.21dtv.com/songs/60034874.mkv +麻辣鲜师-青春真伟大,http://em.21dtv.com/songs/60034734.mkv +彭立-青春一首歌,http://em.21dtv.com/songs/60034731.mkv +伍佰+CHINA BLUE-青春与爱情[消伴],http://em.21dtv.com/songs/60101251.mkv +陈沛轩+归潇栋-青春小战友,http://em.21dtv.com/songs/60126391.mkv +王芷蕾-秋潮向晚天,http://em.21dtv.com/songs/60035645.mkv +七仙女-齐唱幸福年,http://em.21dtv.com/songs/60033856.mkv +于台烟-青春无块回,http://em.21dtv.com/songs/60034718.mkv +于台烟-青春无愧过,http://em.21dtv.com/songs/60009243.mkv +杜元竣-青春问答卷,http://em.21dtv.com/songs/60081625.mkv +群星-青春同路人,http://em.21dtv.com/songs/60090116.mkv +蔡枫华-青春三重奏(演唱会),http://em.21dtv.com/songs/60061510.mkv +冷漠-情场如战场,http://em.21dtv.com/songs/60068596.mkv +凤飞飞-牵成阮的爱,http://em.21dtv.com/songs/60034194.mkv +郑智化-青春启示录,http://em.21dtv.com/songs/60034707.mkv +高夫-青春去哪了,http://em.21dtv.com/songs/60136011.mkv +白冰冰-青春梦茫茫,http://em.21dtv.com/songs/60034700.mkv +梁雁翎-情长路更长,http://em.21dtv.com/songs/60035465.mkv +陈淑萍-青春来纺见,http://em.21dtv.com/songs/60130850.mkv +黄妃-青春困袜去(无原唱),http://em.21dtv.com/songs/60059437.mkv +向蕙玲+江宏恩-青春开始美,http://em.21dtv.com/songs/60034689.mkv +伊妹儿-青春纪念册,http://em.21dtv.com/songs/60034686.mkv +可米小子-青春纪念册,http://em.21dtv.com/songs/60034685.mkv +罗文-千愁记旧情,http://em.21dtv.com/songs/60034065.mkv +刘倧洲-青春集结号,http://em.21dtv.com/songs/60115021.mkv +陈琳-青菜鸡蛋面,http://em.21dtv.com/songs/60034639.mkv +BEJ48-青春肩并肩,http://em.21dtv.com/songs/60128668.mkv +蔡小虎-青春花再开,http://em.21dtv.com/songs/60034683.mkv +梁山山-青春悔过书,http://em.21dtv.com/songs/60119733.mkv +王鹤铮-七彩花儿开,http://em.21dtv.com/songs/60067311.mkv +陈力-秋窗风雨夕,http://em.21dtv.com/songs/60035646.mkv +张艾莉-青春的症头,http://em.21dtv.com/songs/60135232.mkv +蔡国庆-青春的中国,http://em.21dtv.com/songs/60034676.mkv +王识贤-青春的烟火,http://em.21dtv.com/songs/60034675.mkv +陶庆友-倾城的月光,http://em.21dtv.com/songs/60083646.mkv +兰花指-倾城的月光,http://em.21dtv.com/songs/60077222.mkv +张蓉蓉-青春赌缘份,http://em.21dtv.com/songs/60034679.mkv +SNH48-青春的约定,http://em.21dtv.com/songs/60109888.mkv +洪百慧-青春赌一把,http://em.21dtv.com/songs/60095778.mkv +洪百慧-青春赌一摆(无原唱),http://em.21dtv.com/songs/60034678.mkv +许浩-青春的向往,http://em.21dtv.com/songs/60092064.mkv +罗美玲-青春的香味,http://em.21dtv.com/songs/60034672.mkv +青春美少女-青春的誓言(演唱会),http://em.21dtv.com/songs/60071059.mkv +梁振宇-憔悴的男儿,http://em.21dtv.com/songs/60095713.mkv +良一-憔悴的男儿(无原唱),http://em.21dtv.com/songs/60034433.mkv +王开煜-青春的马桶,http://em.21dtv.com/songs/60102524.mkv +弦子-青春的默契,http://em.21dtv.com/songs/60133703.mkv +文夏-青春的马车,http://em.21dtv.com/songs/60079358.mkv +阿斯满-骑车到拉萨,http://em.21dtv.com/songs/60062201.mkv +费玉清-清晨的露水,http://em.21dtv.com/songs/60034866.mkv +曹越-清唱的留恋,http://em.21dtv.com/songs/60116871.mkv +幻眼乐队-青春的老酒(HD),http://em.21dtv.com/songs/10012778.mkv +幻眼乐队-青春的老酒,http://em.21dtv.com/songs/60097585.mkv +SNH48-青春的花瓣,http://em.21dtv.com/songs/60117493.mkv +FREEZE-情场大后备,http://em.21dtv.com/songs/60034946.mkv +S.I.N.G女团-青春的告白,http://em.21dtv.com/songs/60115627.mkv +张峥-青春的翅膀,http://em.21dtv.com/songs/60105835.mkv +孙逊-青春的边缘,http://em.21dtv.com/songs/60077199.mkv +黄城城-青春不走样,http://em.21dtv.com/songs/60114907.mkv +阿吉仔-青春不再回,http://em.21dtv.com/songs/60034667.mkv +佚名-青春悲喜曲,http://em.21dtv.com/songs/60034664.mkv +杨贵媚-青春悲喜曲,http://em.21dtv.com/songs/60034663.mkv +解晓东-青春备忘录,http://em.21dtv.com/songs/60092044.mkv +李文乐-青春不停留,http://em.21dtv.com/songs/60064729.mkv +钱幽兰-青春不失真(无原唱),http://em.21dtv.com/songs/60034665.mkv +许焕松-青春不散场,http://em.21dtv.com/songs/60117228.mkv +群星-青春不散场,http://em.21dtv.com/songs/60110463.mkv +杨程钧-青春白日梦,http://em.21dtv.com/songs/60102374.mkv +E+KIDS-青春变魔术,http://em.21dtv.com/songs/60092167.mkv +李思霖-青春不落幕,http://em.21dtv.com/songs/60124068.mkv +韩梦雨-青春不毕业,http://em.21dtv.com/songs/60128580.mkv +棒棒堂-七彩棒棒堂,http://em.21dtv.com/songs/60033733.mkv +TIMEZ-青春爱最大,http://em.21dtv.com/songs/60097586.mkv +佚名-青春啊青春,http://em.21dtv.com/songs/60034662.mkv +修二と彰-青春アミーゴ,http://em.21dtv.com/songs/60034660.mkv +洛嘉-汽车吥吥吥,http://em.21dtv.com/songs/60128171.mkv +朱佳希-请别再想我,http://em.21dtv.com/songs/60111952.mkv +锦绣二重唱-情比姊妹深,http://em.21dtv.com/songs/60090275.mkv +锦绣二重唱-情比姐妹深,http://em.21dtv.com/songs/60034932.mkv +巫启贤-前辈子的债,http://em.21dtv.com/songs/60034265.mkv +何洁-请别再爱我,http://em.21dtv.com/songs/60035503.mkv +K.WILL-请不要这样,http://em.21dtv.com/songs/60077268.mkv +刘明扬-枪毙娱乐圈,http://em.21dtv.com/songs/60034369.mkv +洪荣宏-全部献乎你,http://em.21dtv.com/songs/60112072.mkv +孟庭苇-去吧我的爱,http://em.21dtv.com/songs/60035837.mkv +柯震东-请比我爱她,http://em.21dtv.com/songs/60064757.mkv +陈慧琳-邱比特笑了,http://em.21dtv.com/songs/60035639.mkv +张道儒-请别说爱你,http://em.21dtv.com/songs/60035502.mkv +佚名-千百年的爱,http://em.21dtv.com/songs/60034058.mkv +黑龙-请别离开我,http://em.21dtv.com/songs/60035501.mkv +甲子蕙+林美-情比姐妹深,http://em.21dtv.com/songs/60034926.mkv +田震-千百回期待(演唱会),http://em.21dtv.com/songs/60034057.mkv +奕心-情比花还瘦,http://em.21dtv.com/songs/60083653.mkv +卓依婷-情比海更深,http://em.21dtv.com/songs/60034925.mkv +吴克群+钟欣桐-全部都给你,http://em.21dtv.com/songs/60068609.mkv +王馨平-请不必再等,http://em.21dtv.com/songs/60035505.mkv +中国娃娃-求爱响尾蛇,http://em.21dtv.com/songs/60035781.mkv +陈小春-求爱瞎拼摸,http://em.21dtv.com/songs/60035780.mkv +粉红教父小甜甜-求爱特攻队(无原唱),http://em.21dtv.com/songs/60035779.mkv +张冬玲-且爱且珍惜,http://em.21dtv.com/songs/60099223.mkv +丁当-亲爱陌生人,http://em.21dtv.com/songs/60034564.mkv +阳一-求爱进行曲,http://em.21dtv.com/songs/60035778.mkv +关正杰-情爱几多哀,http://em.21dtv.com/songs/60034922.mkv +曹磊-求爱敢死队,http://em.21dtv.com/songs/60035775.mkv +小凤凤-情爱放水流,http://em.21dtv.com/songs/60034920.mkv +可米小子-求爱复刻版,http://em.21dtv.com/songs/60035774.mkv +高尚征-亲爱的战友,http://em.21dtv.com/songs/60114904.mkv +徐向立-亲爱的自己,http://em.21dtv.com/songs/60121700.mkv +李小影-亲爱的自己,http://em.21dtv.com/songs/60069726.mkv +戴佩妮-亲爱的再见,http://em.21dtv.com/songs/60064720.mkv +CANCEARNINE-亲爱的再见,http://em.21dtv.com/songs/60034557.mkv +关牧村-亲爱的祖国,http://em.21dtv.com/songs/60034562.mkv +潘晓峰-亲爱的走吧,http://em.21dtv.com/songs/60034561.mkv +戴晓君-亲爱的月亮,http://em.21dtv.com/songs/60125602.mkv +胡苏-亲爱的小妹,http://em.21dtv.com/songs/60131745.mkv +宋茜-亲爱的小孩,http://em.21dtv.com/songs/60132379.mkv +张信哲-亲爱的小孩,http://em.21dtv.com/songs/60119496.mkv +张赫宣-亲爱的小孩,http://em.21dtv.com/songs/60106865.mkv +华晨宇-亲爱的小孩,http://em.21dtv.com/songs/60105668.mkv +赵薇+黄渤+佟大为+郝蕾+张译-亲爱的小孩,http://em.21dtv.com/songs/60104458.mkv +李炜+江映蓉-亲爱的小孩,http://em.21dtv.com/songs/60098474.mkv +俞灏明-亲爱的小孩,http://em.21dtv.com/songs/60098115.mkv +邰正宵-亲爱的小孩,http://em.21dtv.com/songs/60097616.mkv +辛晓琪-亲爱的小孩,http://em.21dtv.com/songs/60077183.mkv +萧敬腾-亲爱的小孩,http://em.21dtv.com/songs/60072303.mkv +权振东-亲爱的小孩,http://em.21dtv.com/songs/60071055.mkv +刘心-亲爱的小孩(演唱会),http://em.21dtv.com/songs/60071054.mkv +刘德华-亲爱的小孩,http://em.21dtv.com/songs/60069725.mkv +张靓颖+权振东-亲爱的小孩,http://em.21dtv.com/songs/60069469.mkv +杨培安-亲爱的小孩,http://em.21dtv.com/songs/60034555.mkv +苏芮-亲爱的小孩,http://em.21dtv.com/songs/60034554.mkv +刘惜君-亲爱的小孩,http://em.21dtv.com/songs/60034553.mkv +望海高歌-亲爱的兄弟,http://em.21dtv.com/songs/60128067.mkv +樱桃帮-亲爱的王子,http://em.21dtv.com/songs/60034542.mkv +Better Man组合-亲爱的晚安,http://em.21dtv.com/songs/60126516.mkv +许云龙+阿娟-亲爱的晚安,http://em.21dtv.com/songs/60117218.mkv +文夏-求爱的条件,http://em.21dtv.com/songs/60078569.mkv +佚名-求爱的条件,http://em.21dtv.com/songs/60035773.mkv +梁文音-亲爱的是我,http://em.21dtv.com/songs/60034541.mkv +于文华-情爱第三人,http://em.21dtv.com/songs/60087255.mkv +S.H.E-亲爱的树洞,http://em.21dtv.com/songs/60077178.mkv +孙江枫-亲爱的朋友,http://em.21dtv.com/songs/60119421.mkv +马志锋-亲爱的朋友,http://em.21dtv.com/songs/60064719.mkv +孙江枫-亲爱的朋友,http://em.21dtv.com/songs/60034536.mkv +邱泽+何润东-亲爱的朋友,http://em.21dtv.com/songs/60034535.mkv +胡灵-亲爱的女孩,http://em.21dtv.com/songs/60069722.mkv +王不火-亲爱的妈妈,http://em.21dtv.com/songs/60118761.mkv +王宇京-亲爱的妈妈,http://em.21dtv.com/songs/60100311.mkv +湘东雨-亲爱的妈妈,http://em.21dtv.com/songs/60083628.mkv +刘一祯-亲爱的妈妈,http://em.21dtv.com/songs/60034508.mkv +刘德华-亲爱的妈妈,http://em.21dtv.com/songs/60034507.mkv +阿悄-亲爱的理由,http://em.21dtv.com/songs/60086765.mkv +刘若英-亲爱的路人,http://em.21dtv.com/songs/60077175.mkv +吴周胜-亲爱的老婆,http://em.21dtv.com/songs/60133470.mkv +张坤-亲爱的老婆,http://em.21dtv.com/songs/60130303.mkv +刘航-亲爱的老婆,http://em.21dtv.com/songs/60122533.mkv +刘洋-亲爱的老婆,http://em.21dtv.com/songs/60077174.mkv +海浪-亲爱的老婆,http://em.21dtv.com/songs/60077173.mkv +木杰-亲爱的回来,http://em.21dtv.com/songs/60106914.mkv +颜丙燕-亲爱的伙伴,http://em.21dtv.com/songs/60112385.mkv +志王-亲爱的姑娘,http://em.21dtv.com/songs/60131436.mkv +侯旭-亲爱的姑娘,http://em.21dtv.com/songs/60126608.mkv +宋晓峰-亲爱的姑娘,http://em.21dtv.com/songs/60107663.mkv +刘浩-亲爱的姑娘,http://em.21dtv.com/songs/60097617.mkv +陈咏-亲爱的姑娘,http://em.21dtv.com/songs/60034504.mkv +陈咏-亲爱的姑娘(舞曲版),http://em.21dtv.com/songs/60034503.mkv +竹子-亲爱的哥哥,http://em.21dtv.com/songs/60069719.mkv +叶晓红-亲爱的父亲,http://em.21dtv.com/songs/60083627.mkv +秋裤大叔-亲爱的大叔,http://em.21dtv.com/songs/60108753.mkv +赵小兵-亲爱的大叔,http://em.21dtv.com/songs/60077170.mkv +云菲菲-亲爱的草原,http://em.21dtv.com/songs/60083625.mkv +陈柏宇-亲爱的仇人,http://em.21dtv.com/songs/60113057.mkv +胡雯-亲爱的别走,http://em.21dtv.com/songs/60034494.mkv +朱潮勇-亲爱的爸妈,http://em.21dtv.com/songs/60135347.mkv +杨廷廷-亲爱的别哭,http://em.21dtv.com/songs/60072301.mkv +吕琪-亲爱的别哭,http://em.21dtv.com/songs/60034493.mkv +杜德伟-亲爱的别哭,http://em.21dtv.com/songs/60034492.mkv +大张凡-亲爱的宝贝,http://em.21dtv.com/songs/60110962.mkv +王键-亲爱的宝贝,http://em.21dtv.com/songs/60106145.mkv +王宇京-亲爱的爸爸,http://em.21dtv.com/songs/60100312.mkv +王宏恩-亲爱的宝贝,http://em.21dtv.com/songs/60034491.mkv +李维-亲爱的宝贝,http://em.21dtv.com/songs/60034490.mkv +李登威-亲爱的宝贝(无原唱),http://em.21dtv.com/songs/60034489.mkv +黄靖宏-亲爱的爱人,http://em.21dtv.com/songs/60034483.mkv +[Group] +groupName=十六万歌曲MV等 - 74 +阳光天使-炮竹震天响,http://em.21dtv.com/songs/60072270.mkv +陈好-跑在最前头,http://em.21dtv.com/songs/60033208.mkv +双星-炮竹喜迎春,http://em.21dtv.com/songs/60077049.mkv +佚名-陪着我流浪(无原唱),http://em.21dtv.com/songs/60033280.mkv +子安圣皓-陪着我离开,http://em.21dtv.com/songs/60077063.mkv +萧亚轩-陪在你左右,http://em.21dtv.com/songs/60033273.mkv +津亭-陪在你左右,http://em.21dtv.com/songs/60033272.mkv +杨帆-陪在你身边,http://em.21dtv.com/songs/60132587.mkv +化学猴子-陪在你身边,http://em.21dtv.com/songs/60066214.mkv +七郎-盼仔假兄弟,http://em.21dtv.com/songs/60033171.mkv +尤国通-陪祖国过年,http://em.21dtv.com/songs/60104979.mkv +聂建华-陪祖国过年,http://em.21dtv.com/songs/60033284.mkv +伍浩哲-拼咱的运命,http://em.21dtv.com/songs/60068561.mkv +张玮琪-胖子唱情歌,http://em.21dtv.com/songs/60132462.mkv +张玮琪-胖子唱情歌,http://em.21dtv.com/songs/60127989.mkv +翁立友-朋友只有你,http://em.21dtv.com/songs/60126075.mkv +胡尧峰-朋友一起唱,http://em.21dtv.com/songs/60086750.mkv +俞隆华-朋友要互相(无原唱),http://em.21dtv.com/songs/60033359.mkv +彭傲星-朋友谢谢你,http://em.21dtv.com/songs/60103297.mkv +罗文聪-朋友我挺你,http://em.21dtv.com/songs/60033355.mkv +纪晓斌-朋友为你醉,http://em.21dtv.com/songs/60111345.mkv +唐志星+邓云霞-朋友听我说,http://em.21dtv.com/songs/60123784.mkv +高向鹏+傅振辉-朋友听我说,http://em.21dtv.com/songs/60033354.mkv +陈超-莆阳踏歌行,http://em.21dtv.com/songs/60134422.mkv +光良-朋友首日封,http://em.21dtv.com/songs/60033350.mkv +辛子奇-朋友三两个,http://em.21dtv.com/songs/60033349.mkv +魏嘉榆+戴梅君-朋友尚可贵,http://em.21dtv.com/songs/60130910.mkv +纪晓斌-朋友陪你醉,http://em.21dtv.com/songs/60116190.mkv +MC筱东-朋友陪你醉,http://em.21dtv.com/songs/50000121.mkv +纪晓斌-朋友陪你醉,http://em.21dtv.com/songs/60085568.mkv +赵本水-朋友你好吗,http://em.21dtv.com/songs/60064687.mkv +罗文-朋友你好吗,http://em.21dtv.com/songs/60033343.mkv +佚名-朋友你好吗(无原唱),http://em.21dtv.com/songs/60033342.mkv +李克-品玉满堂红,http://em.21dtv.com/songs/60110266.mkv +李森-朋友忙不忙,http://em.21dtv.com/songs/60116915.mkv +李森-朋友忙不忙,http://em.21dtv.com/songs/60088022.mkv +马德龙-朋友就是天,http://em.21dtv.com/songs/60128602.mkv +志鹏-朋友还好吗,http://em.21dtv.com/songs/60118588.mkv +叶倩文-凭一个信念,http://em.21dtv.com/songs/60061488.mkv +阿吉仔-朋友斗支持,http://em.21dtv.com/songs/60033332.mkv +赵真-朋友的心啊,http://em.21dtv.com/songs/60088700.mkv +张也-朋友的问候,http://em.21dtv.com/songs/60033327.mkv +郑立影+郑通礼-飘雨的日子,http://em.21dtv.com/songs/60116294.mkv +江美琪-朋友的朋友,http://em.21dtv.com/songs/60033325.mkv +檀欢-飘扬的美丽,http://em.21dtv.com/songs/60088156.mkv +新社联会员-朋友的力量,http://em.21dtv.com/songs/60129166.mkv +杨子扬-朋友的肩膀,http://em.21dtv.com/songs/60127086.mkv +郑永波-朋友的肩膀,http://em.21dtv.com/songs/60123236.mkv +林立-朋友的电话,http://em.21dtv.com/songs/60033324.mkv +马智宇+刘嘉亮-朋友啊朋友,http://em.21dtv.com/songs/60110704.mkv +巫启贤+马智宇+武明-朋友啊朋友,http://em.21dtv.com/songs/60110171.mkv +龙千玉-剖心肝的爱,http://em.21dtv.com/songs/60075951.mkv +宋伶俐-飘香的月光,http://em.21dtv.com/songs/60072279.mkv +媛媛-飘香的江南,http://em.21dtv.com/songs/60099189.mkv +雷蕾-飘雪的故乡,http://em.21dtv.com/songs/60120121.mkv +季忠平-陪我作作伴(无原唱),http://em.21dtv.com/songs/60033270.mkv +苏有朋-陪我一起走,http://em.21dtv.com/songs/60091937.mkv +子安圣皓-陪我我离开,http://em.21dtv.com/songs/60064683.mkv +郑国锋-陪我去宇宙,http://em.21dtv.com/songs/60077060.mkv +CLOWN-陪我去宇宙,http://em.21dtv.com/songs/60061986.mkv +阿悄-陪我去流浪,http://em.21dtv.com/songs/60067307.mkv +回音哥-陪我看日出,http://em.21dtv.com/songs/60081905.mkv +蔡淳佳-陪我看日出,http://em.21dtv.com/songs/60033263.mkv +张智成+陈佳薪-陪我好不好,http://em.21dtv.com/songs/60064682.mkv +李菓-陪我到最后,http://em.21dtv.com/songs/60121788.mkv +潘嘉丽-陪我到最后,http://em.21dtv.com/songs/60064681.mkv +王心凌+罗志祥-陪我到以后,http://em.21dtv.com/songs/60061482.mkv +草蜢-盼望的缘份(演唱会),http://em.21dtv.com/songs/60077047.mkv +陈百强-盼望的缘份,http://em.21dtv.com/songs/60033167.mkv +张宇-怕我的脆弱,http://em.21dtv.com/songs/60033106.mkv +FTISLAND-PUPPY,http://em.21dtv.com/songs/60114334.mkv +沙宝亮-陪天使飞行,http://em.21dtv.com/songs/60091607.mkv +BEE GEES-paying the price of love,http://em.21dtv.com/songs/60004440.mkv +BOW WOW+SEAN KINGSTO-put that on my hood,http://em.21dtv.com/songs/60004560.mkv +冯允谦-葡萄酿的泪,http://em.21dtv.com/songs/60121401.mkv +陈奕迅-葡萄成熟时,http://em.21dtv.com/songs/60033702.mkv +勃鲁斯-葡萄成熟时,http://em.21dtv.com/songs/60033701.mkv +陈奕迅-葡萄成熟时(HD演唱会),http://em.21dtv.com/songs/60033700.mkv +徐清原-菩提本无树,http://em.21dtv.com/songs/60113525.mkv +CLIFF RICHARD-power to all our friends,http://em.21dtv.com/songs/60004516.mkv +陈诺-莆商壮志扬,http://em.21dtv.com/songs/60080096.mkv +孙露-怕什么孤单,http://em.21dtv.com/songs/60113408.mkv +潘莎-凭什么爱你,http://em.21dtv.com/songs/60033633.mkv +洪卓立-凭什么爱你,http://em.21dtv.com/songs/60033632.mkv +SUPPER MOMENT-p s i love you,http://em.21dtv.com/songs/60070383.mkv +颜振豪-朴素的愿望,http://em.21dtv.com/songs/60134453.mkv +周渝民-破碎的眼泪,http://em.21dtv.com/songs/60033671.mkv +任承浩-菩萨的笑容,http://em.21dtv.com/songs/60114986.mkv +和尚兄弟-菩萨的笑容,http://em.21dtv.com/songs/60068565.mkv +星弟-飘散的温馨,http://em.21dtv.com/songs/60087940.mkv +舞真-平山等你来,http://em.21dtv.com/songs/60120873.mkv +秋水-飘散的美丽,http://em.21dtv.com/songs/60107097.mkv +阚杰-破碎的花瓶,http://em.21dtv.com/songs/60033669.mkv +汪峰-破碎的歌谣,http://em.21dtv.com/songs/60102461.mkv +傲艺-破碎的芬芳,http://em.21dtv.com/songs/60071035.mkv +顾凯-菩萨不会老,http://em.21dtv.com/songs/60080525.mkv +陈敏郎-帕七仔十步(无原唱),http://em.21dtv.com/songs/60033085.mkv +沐奕杉-贫穷线女神,http://em.21dtv.com/songs/60125864.mkv +CELINE DION-pour que tu maimes encore,http://em.21dtv.com/songs/60004514.mkv +蔡济文-抛弃梦里人,http://em.21dtv.com/songs/60033194.mkv +花生队长-贫穷贵公子(无原唱),http://em.21dtv.com/songs/60033568.mkv +张一诺-贫穷富爸爸,http://em.21dtv.com/songs/60129058.mkv +中国交响乐团合唱团-品牌中国龙,http://em.21dtv.com/songs/60094383.mkv +高维那-婆婆也是妈,http://em.21dtv.com/songs/60068564.mkv +高娜-婆婆也是妈,http://em.21dtv.com/songs/60033654.mkv +艾歌-偏偏遇见你,http://em.21dtv.com/songs/60085569.mkv +何龙雨+艾歌-偏偏遇见你,http://em.21dtv.com/songs/60083577.mkv +尖耳朵的阿凡达妹妹+不和陌生人说话的狐狸爸爸-偏偏喜欢你,http://em.21dtv.com/songs/60127927.mkv +张伟文-偏偏喜欢你,http://em.21dtv.com/songs/60092559.mkv +于童-偏偏喜欢你,http://em.21dtv.com/songs/60092240.mkv +柳影虹-偏偏喜欢你(演唱会),http://em.21dtv.com/songs/60062698.mkv +赵学而-偏偏喜欢你,http://em.21dtv.com/songs/60033421.mkv +陈百强-偏偏喜欢你,http://em.21dtv.com/songs/60033420.mkv +谢雷-偏偏喜欢你(演唱会),http://em.21dtv.com/songs/60033419.mkv +林一峰-偏偏喜欢你(演唱会),http://em.21dtv.com/songs/60033418.mkv +童唱-polly put the kettle on,http://em.21dtv.com/songs/60004502.mkv +李宇春-潘帕斯之舞,http://em.21dtv.com/songs/60033137.mkv +李炎-片片秋叶情,http://em.21dtv.com/songs/60098471.mkv +佚名-偏偏来想你,http://em.21dtv.com/songs/60033416.mkv +孙晓涵-片片梨花开,http://em.21dtv.com/songs/60106770.mkv +李玟-碰碰看爱情,http://em.21dtv.com/songs/60033379.mkv +谭晶-婆婆就是妈,http://em.21dtv.com/songs/60111403.mkv +张智霖+许秋怡-片片枫叶情,http://em.21dtv.com/songs/60033437.mkv +张智霖+许秋怡-片片枫叶情(演唱会),http://em.21dtv.com/songs/60033436.mkv +李家发+伍婉琛-片片枫叶情(演唱会),http://em.21dtv.com/songs/60033435.mkv +郭宗佑-偏偏不流泪,http://em.21dtv.com/songs/60130799.mkv +鸿飞-偏偏爱上你,http://em.21dtv.com/songs/60122297.mkv +吴建飞-偏偏爱上你,http://em.21dtv.com/songs/60033415.mkv +童安格-陪你走一程,http://em.21dtv.com/songs/60033257.mkv +冷漠-陪你走一程,http://em.21dtv.com/songs/60033256.mkv +晓依+起点-陪你在心里,http://em.21dtv.com/songs/60125639.mkv +鞠佳航-陪你走天涯,http://em.21dtv.com/songs/60099607.mkv +悠悠-陪你走天涯,http://em.21dtv.com/songs/60033255.mkv +佚名-陪你走天涯,http://em.21dtv.com/songs/60033254.mkv +赖嘉嘉-陪你走天涯,http://em.21dtv.com/songs/60033253.mkv +曹维-陪你走天涯,http://em.21dtv.com/songs/60033252.mkv +张靓颖-陪你走到底,http://em.21dtv.com/songs/60099246.mkv +品冠-陪你一起老,http://em.21dtv.com/songs/60102059.mkv +黄品冠-陪你一起老,http://em.21dtv.com/songs/60033248.mkv +望海高歌-陪你一起嗨,http://em.21dtv.com/songs/60124038.mkv +凤凰传奇-陪你一辈子,http://em.21dtv.com/songs/60134920.mkv +凤凰传奇-陪你一辈子,http://em.21dtv.com/songs/60101944.mkv +李娜-凭那些日子,http://em.21dtv.com/songs/60087998.mkv +方瑞娥+李明洋-陪你同齐老,http://em.21dtv.com/songs/60112718.mkv +美眉-陪你说再见,http://em.21dtv.com/songs/60091844.mkv +扎西华旦-陪你去拉萨,http://em.21dtv.com/songs/60131459.mkv +西部牛仔-陪你去拉萨,http://em.21dtv.com/songs/60072272.mkv +CORINNE BAILEY RAE-paris nights-new york mornings,http://em.21dtv.com/songs/60073735.mkv +陈思安-陪你讲归暝,http://em.21dtv.com/songs/60033241.mkv +王莱+吴仪君-陪你到最后,http://em.21dtv.com/songs/60083573.mkv +易杰齐-陪你到最后,http://em.21dtv.com/songs/60064680.mkv +罗志祥-陪你到最后,http://em.21dtv.com/songs/60033236.mkv +孙子涵+陆瑶-陪你到终点,http://em.21dtv.com/songs/60083572.mkv +何广才-陪你到永远,http://em.21dtv.com/songs/60085566.mkv +黄安-陪你到天涯,http://em.21dtv.com/songs/60033235.mkv +誓言-陪你到天亮,http://em.21dtv.com/songs/60072271.mkv +许慧欣+潘玮柏-陪你等天亮,http://em.21dtv.com/songs/60033237.mkv +童安格-陪你到天亮,http://em.21dtv.com/songs/60033234.mkv +明圣凯-陪你到天亮,http://em.21dtv.com/songs/60033233.mkv +贡布才让-陪你唱情歌,http://em.21dtv.com/songs/60077056.mkv +柯以敏-怕你不了解,http://em.21dtv.com/songs/60033099.mkv +闪亮三姐妹-泡沫珍珠茶,http://em.21dtv.com/songs/60033216.mkv +何念庭-泡沫珍珠茶,http://em.21dtv.com/songs/60033215.mkv +拥江帆-跑马山情思,http://em.21dtv.com/songs/60085565.mkv +王利-跑马山情思,http://em.21dtv.com/songs/60085564.mkv +Back Number-仆の名前を,http://em.21dtv.com/songs/60122342.mkv +徐熙媛-泡沫美人鱼,http://em.21dtv.com/songs/60033214.mkv +李泉+蔡妍-泡面的幸福,http://em.21dtv.com/songs/60097604.mkv +何慕男-泡面的幸福,http://em.21dtv.com/songs/60033211.mkv +牛马丁-平卖大家来,http://em.21dtv.com/songs/60095804.mkv +徐环-拼命的回忆,http://em.21dtv.com/songs/60129144.mkv +CHRISTINA AGUILERA-pero me acuerdo de ti,http://em.21dtv.com/songs/60004456.mkv +大合唱-彭浪屿之波,http://em.21dtv.com/songs/60033364.mkv +佚名-漂浪行船人(无原唱),http://em.21dtv.com/songs/60033469.mkv +佚名-漂亮你一人,http://em.21dtv.com/songs/60033481.mkv +叶启田-漂浪行船人(无原唱),http://em.21dtv.com/songs/60076142.mkv +洪百慧-漂浪的心情(无原唱),http://em.21dtv.com/songs/60033468.mkv +融儿-飘零的日子,http://em.21dtv.com/songs/60107199.mkv +董朋-漂流的青春,http://em.21dtv.com/songs/60072275.mkv +熊七梅-漂亮的妹妹,http://em.21dtv.com/songs/60113830.mkv +邵大伦-飘浪的灵魂,http://em.21dtv.com/songs/60083580.mkv +邵大伦-漂浪的灵魂,http://em.21dtv.com/songs/60069695.mkv +佚名-飘零的落花,http://em.21dtv.com/songs/60033526.mkv +詹雅雯-漂浪的海沙,http://em.21dtv.com/songs/60033467.mkv +任飞扬-漂亮的姑娘,http://em.21dtv.com/songs/60119251.mkv +深海-漂亮的姑娘,http://em.21dtv.com/songs/60112838.mkv +灿烂阿龙-漂亮的姑娘,http://em.21dtv.com/songs/60033473.mkv +张皖-漂流的方向,http://em.21dtv.com/songs/60129107.mkv +蔡秋凤-飘浪的爱情,http://em.21dtv.com/songs/60033518.mkv +镜五郎-片恋しぐれ,http://em.21dtv.com/songs/60033433.mkv +高峰-碰卡拉恰恰(无原唱),http://em.21dtv.com/songs/60033377.mkv +谭咏麟-片刻的无题(演唱会),http://em.21dtv.com/songs/60033432.mkv +梁汉文-pg家长指引,http://em.21dtv.com/songs/60004458.mkv +梁雁翎-盼继续爱我,http://em.21dtv.com/songs/60033151.mkv +佚名-破镜难重圆,http://em.21dtv.com/songs/60033662.mkv +萧蔓萱-破镜难重圆(无原唱),http://em.21dtv.com/songs/60033661.mkv +文千岁-潘金莲戏叔(戏曲),http://em.21dtv.com/songs/60092746.mkv +佚名-怕记旧日情,http://em.21dtv.com/songs/60033095.mkv +夏韶声-偏激的借口,http://em.21dtv.com/songs/60033412.mkv +周俊伟-疲倦到极点,http://em.21dtv.com/songs/60033396.mkv +Oohyo-PIZZA,http://em.21dtv.com/songs/60133259.mkv +葛仲珊-Pizza,http://em.21dtv.com/songs/60132847.mkv +葛仲珊-Pizza,http://em.21dtv.com/songs/60131771.mkv +2EYES-PIPPI,http://em.21dtv.com/songs/60114316.mkv +金烔完+C Jamm-PIECE,http://em.21dtv.com/songs/60116312.mkv +洪荣宏-拼乎自己看,http://em.21dtv.com/songs/60100279.mkv +伍佰-徘徊夜都市(演唱会),http://em.21dtv.com/songs/60033126.mkv +林翠萍-徘徊十字路,http://em.21dtv.com/songs/60088119.mkv +毛泓艳-平衡的人生,http://em.21dtv.com/songs/60033613.mkv +田震-怕黑的女人,http://em.21dtv.com/songs/60033094.mkv +曾淑勤-怕黑的孩子(无原唱),http://em.21dtv.com/songs/60033093.mkv +庄妮-扑火的飞蛾,http://em.21dtv.com/songs/60087745.mkv +廖铃惜-怕黑的超人,http://em.21dtv.com/songs/60121642.mkv +杜雨薇-蒲公英之路,http://em.21dtv.com/songs/60135390.mkv +涂议嘉-蒲公英在飞,http://em.21dtv.com/songs/60080869.mkv +陆航-盘古开天歌,http://em.21dtv.com/songs/60033140.mkv +BILLY CURRINGTON-pretty good at drinkinbeer,http://em.21dtv.com/songs/60061963.mkv +王菲-平凡最浪漫,http://em.21dtv.com/songs/60033607.mkv +艳阳天-平凡亦是好,http://em.21dtv.com/songs/60033605.mkv +杨宗华-平凡也荣光,http://em.21dtv.com/songs/60083582.mkv +何炅-平凡心点晴,http://em.21dtv.com/songs/60089124.mkv +伍咏薇-仿佛仍是醉,http://em.21dtv.com/songs/60092247.mkv +周慧敏-平凡人的梦,http://em.21dtv.com/songs/60033602.mkv +林玉英-平凡就是福(无原唱),http://em.21dtv.com/songs/60033600.mkv +纪晓斌-平凡的幸福,http://em.21dtv.com/songs/60081329.mkv +华语群星-平凡的梦想,http://em.21dtv.com/songs/60131224.mkv +宇桐非-平凡的梦想,http://em.21dtv.com/songs/60127908.mkv +JPM-平凡的美丽,http://em.21dtv.com/songs/60062067.mkv +方大同+袁娅维-PEACE,http://em.21dtv.com/songs/60102279.mkv +迷子-平底鞋女生,http://em.21dtv.com/songs/60033595.mkv +HUH GAK-please dont forget me,http://em.21dtv.com/songs/60062046.mkv +沈文程-漂的七鼗人,http://em.21dtv.com/songs/60033462.mkv +印能法师-潘多拉星球,http://em.21dtv.com/songs/60099840.mkv +孙淑媚-破洞的雨衣,http://em.21dtv.com/songs/60033658.mkv +张健-盆地的回音,http://em.21dtv.com/songs/60033292.mkv +彭丽媛-飘动的篝火(演唱会),http://em.21dtv.com/songs/60083579.mkv +张震岳-跑车与坦克,http://em.21dtv.com/songs/60080048.mkv +群星-跑出一片天,http://em.21dtv.com/songs/60067305.mkv +张玮-破窗黑咖啡,http://em.21dtv.com/songs/60132459.mkv +佚名-please come home for christmas,http://em.21dtv.com/songs/60004483.mkv +芦伟-拍出个未来,http://em.21dtv.com/songs/60129528.mkv +周普逸-平常的爱情,http://em.21dtv.com/songs/60090839.mkv +王力宏-please come back to me,http://em.21dtv.com/songs/60004482.mkv +阿丽玛-拼搏永不败,http://em.21dtv.com/songs/60033550.mkv +黄乙玲+吴宗宪-陪伴阮身边,http://em.21dtv.com/songs/60033224.mkv +郭桂彬-漂泊迄逃人,http://em.21dtv.com/songs/60033461.mkv +李明洋-陪伴你一生,http://em.21dtv.com/songs/60069691.mkv +罗时丰+林淑蓉-陪伴你到老,http://em.21dtv.com/songs/60077053.mkv +阿雅-刨冰进行曲,http://em.21dtv.com/songs/60033197.mkv +阿吉仔-漂泊的笑容,http://em.21dtv.com/songs/60033460.mkv +郭桂彬-漂泊的笑容(无原唱),http://em.21dtv.com/songs/60033459.mkv +林志炫-漂泊的心情,http://em.21dtv.com/songs/60091469.mkv +庄振凯-漂泊的人生,http://em.21dtv.com/songs/60077075.mkv +王宏恩-瀑布的恋爱,http://em.21dtv.com/songs/60033722.mkv +群星-飘泊的风度,http://em.21dtv.com/songs/60091866.mkv +高向鹏-飘泊的风度(无原唱),http://em.21dtv.com/songs/60034268.mkv +豪记大对唱-飘泊的风度(无原唱),http://em.21dtv.com/songs/60033512.mkv +豪记大对唱-漂泊的风度,http://em.21dtv.com/songs/60033457.mkv +方瑞娥+高向鹏-漂泊的风度,http://em.21dtv.com/songs/60033456.mkv +费玉清-偏爱水中月,http://em.21dtv.com/songs/60033411.mkv +徐玉珊-Party,http://em.21dtv.com/songs/60133719.mkv +Chris Brown+Gucci Mane+Usher-Party,http://em.21dtv.com/songs/60131044.mkv +少女时代-PARTY,http://em.21dtv.com/songs/60113429.mkv +Beyonce+J. Cole-Party,http://em.21dtv.com/songs/60098014.mkv +The Chainsmokers+Emily Warren-Paris,http://em.21dtv.com/songs/60131112.mkv +Desiigner-Panda,http://em.21dtv.com/songs/60123456.mkv +张家成-平安就是福,http://em.21dtv.com/songs/60129075.mkv +七郎-平安就是福,http://em.21dtv.com/songs/60033578.mkv +佚名-平安的风景,http://em.21dtv.com/songs/60033574.mkv +KAT.TUN-仆らの街で,http://em.21dtv.com/songs/60033710.mkv +毛宁-欧洲特快车,http://em.21dtv.com/songs/60033052.mkv +后舍男生-哦咦哦咦啊,http://em.21dtv.com/songs/60033046.mkv +TIMEZ-偶像万万岁,http://em.21dtv.com/songs/60071021.mkv +TRAX-哦我的女神,http://em.21dtv.com/songs/60033044.mkv +吴胜根-哦!我的爱,http://em.21dtv.com/songs/60102039.mkv +童唱-on the way to school,http://em.21dtv.com/songs/60004272.mkv +TWINS-on the way to school,http://em.21dtv.com/songs/60004271.mkv +佚名-on the wings of love,http://em.21dtv.com/songs/60004273.mkv +佚名-one time in your life(无原唱),http://em.21dtv.com/songs/60004310.mkv +BILLY JOEL-only the good die young,http://em.21dtv.com/songs/60004337.mkv +梅瑞东-欧诗漫之歌,http://em.21dtv.com/songs/60130502.mkv +可苦可乐-噢 圣诞节,http://em.21dtv.com/songs/60094427.mkv +JORDIN SPARKS-one step at a time,http://em.21dtv.com/songs/60004305.mkv +陈绮贞-偶然与巧合,http://em.21dtv.com/songs/60108136.mkv +米津玄师-orion,http://em.21dtv.com/songs/60132783.mkv +邓丽君-偶然的相遇,http://em.21dtv.com/songs/60131862.mkv +LOCO+Yoo Joo-偶然的春天,http://em.21dtv.com/songs/60110777.mkv +任贤齐-ok ok rap组曲(演唱会),http://em.21dtv.com/songs/60004243.mkv +芭比-one night 就会stand,http://em.21dtv.com/songs/60004300.mkv +天爱-哦那就是你,http://em.21dtv.com/songs/60121542.mkv +罗百吉-one night in 台北,http://em.21dtv.com/songs/60004299.mkv +华语群星-One Night In 塞外,http://em.21dtv.com/songs/60080990.mkv +信乐团-one night in 北京,http://em.21dtv.com/songs/60004298.mkv +信乐团-one night in 北京(演唱会),http://em.21dtv.com/songs/60004297.mkv +TWINS-old macdonald had a farm,http://em.21dtv.com/songs/60004253.mkv +卢广仲-欧拉拉呼呼,http://em.21dtv.com/songs/60071020.mkv +才娜旺姆-OK OK,http://em.21dtv.com/songs/60119583.mkv +才娜旺姆-Ok Ok,http://em.21dtv.com/songs/60107752.mkv +BRITNEY SPEARS-oops i did it again,http://em.21dtv.com/songs/60004346.mkv +S.DEES-one in a million you(无原唱),http://em.21dtv.com/songs/60004281.mkv +佚名-out here on my own,http://em.21dtv.com/songs/60004369.mkv +陈洁灵-out here on my own,http://em.21dtv.com/songs/60004368.mkv +佚名-out here on my own(无原唱),http://em.21dtv.com/songs/60004367.mkv +徐怀钰-OH MY,http://em.21dtv.com/songs/60123976.mkv +RIHANNA-only girl in the world,http://em.21dtv.com/songs/60004325.mkv +The Weeknd-Often,http://em.21dtv.com/songs/60125022.mkv +军哥-偶尔想起你,http://em.21dtv.com/songs/60120342.mkv +MICHAEL-one day in your life,http://em.21dtv.com/songs/60004275.mkv +ANASTACIA-one day in your life,http://em.21dtv.com/songs/60004274.mkv +阿克江 阿依丁-OCEAN,http://em.21dtv.com/songs/60135871.mkv +佚名-o come all ye faithful,http://em.21dtv.com/songs/60004198.mkv +THE FRATELLISE-ole black nbleu eyes,http://em.21dtv.com/songs/60004257.mkv +Crush+Zico-Oasis,http://em.21dtv.com/songs/60119117.mkv +雷龙-ok 100,http://em.21dtv.com/songs/60084751.mkv +曾春年-你只在乎他,http://em.21dtv.com/songs/60076989.mkv +黄克林-你着要原谅,http://em.21dtv.com/songs/60058149.mkv +王开城-你在伊身边(无原唱),http://em.21dtv.com/songs/60032483.mkv +黄克林+洪玉琴-你着原谅我,http://em.21dtv.com/songs/60032523.mkv +张国荣-你这样恨我,http://em.21dtv.com/songs/60032517.mkv +郭如碧-你这一辈子,http://em.21dtv.com/songs/60135818.mkv +大飞-你真有办法,http://em.21dtv.com/songs/60133533.mkv +林心如-你这样爱我,http://em.21dtv.com/songs/60032516.mkv +王菲-你在我心中,http://em.21dtv.com/songs/60032479.mkv +邓丽君-你在我心中,http://em.21dtv.com/songs/60032478.mkv +邓丽君-你在我心中(演唱会),http://em.21dtv.com/songs/60032477.mkv +黄晓明-你在我心上,http://em.21dtv.com/songs/60032476.mkv +李玟-你在我心上(演唱会),http://em.21dtv.com/songs/60032475.mkv +瑞雪-你在我梦里,http://em.21dtv.com/songs/60064660.mkv +刘嘉亮-你只是路过,http://em.21dtv.com/songs/60123672.mkv +汪峰-你走你的路(演唱会),http://em.21dtv.com/songs/60128161.mkv +佚名-你走你的路,http://em.21dtv.com/songs/60032578.mkv +高胜美-你走你的路,http://em.21dtv.com/songs/60032577.mkv +陈淑桦+李宗盛-你走你的路,http://em.21dtv.com/songs/60032576.mkv +吴建豪-你怎么知道,http://em.21dtv.com/songs/60080763.mkv +阿悄-你怎么能够,http://em.21dtv.com/songs/60099569.mkv +曾静玟-你怎么看我,http://em.21dtv.com/songs/60076984.mkv +苏永康-你走了之后,http://em.21dtv.com/songs/60032575.mkv +潇锋-你走了以后,http://em.21dtv.com/songs/60032574.mkv +张惠妹-你在看我吗,http://em.21dtv.com/songs/60032460.mkv +邓丽君-你真叫人迷,http://em.21dtv.com/songs/60032530.mkv +京剧-娘子军连歌,http://em.21dtv.com/songs/60090527.mkv +佚名-娘子军连歌,http://em.21dtv.com/songs/60032668.mkv +恭硕良-你着几号鞋,http://em.21dtv.com/songs/60032520.mkv +雨宗林-你最近好吗,http://em.21dtv.com/songs/60133062.mkv +陈鹰-男子汉的梦(无原唱),http://em.21dtv.com/songs/60031075.mkv +卓依婷+林正桦-男子汉的爱,http://em.21dtv.com/songs/60031074.mkv +叶启田-男子汉的爱,http://em.21dtv.com/songs/60031073.mkv +陈慧琳-你这个男人,http://em.21dtv.com/songs/60032514.mkv +陈慧琳-你这个男人(演唱会),http://em.21dtv.com/songs/60032513.mkv +陈丽媛-南中国海咯(HD),http://em.21dtv.com/songs/10012821.mkv +小贱-你真的走了,http://em.21dtv.com/songs/60083542.mkv +冰淇-你真的走了,http://em.21dtv.com/songs/60032528.mkv +曾航生-你真的最好,http://em.21dtv.com/songs/60032529.mkv +阿火-你真的要走,http://em.21dtv.com/songs/60112336.mkv +湘唯一-你真的要走,http://em.21dtv.com/songs/60094578.mkv +汪东城-你在等什么,http://em.21dtv.com/songs/60068548.mkv +刘宇-你走的时候,http://em.21dtv.com/songs/60071009.mkv +SG WANNABE+金钟旭-逆转的命运,http://em.21dtv.com/songs/60032611.mkv +南天+谢珊-你知不知道,http://em.21dtv.com/songs/60093651.mkv +张一筑-你知不知道,http://em.21dtv.com/songs/60032541.mkv +张学友-你知不知道,http://em.21dtv.com/songs/60032540.mkv +潘美辰-你知不知道,http://em.21dtv.com/songs/60032539.mkv +莫文蔚-你最爱的歌,http://em.21dtv.com/songs/60091962.mkv +陈小云-你着爱保重(无原唱),http://em.21dtv.com/songs/60095985.mkv +洪荣宏-你着爱保重,http://em.21dtv.com/songs/60032518.mkv +渡边麻友-女の子なら,http://em.21dtv.com/songs/60113820.mkv +陈升+陈绮贞-你一直在玩,http://em.21dtv.com/songs/60032408.mkv +蓝又时-那又怎样呢,http://em.21dtv.com/songs/60076811.mkv +阿宝+山花乐队-农业重金属,http://em.21dtv.com/songs/60100539.mkv +杨培安+萧煌奇-你一直都在,http://em.21dtv.com/songs/60032407.mkv +杜德伟-你有罪的心,http://em.21dtv.com/songs/60091381.mkv +郭静-你眼中的我,http://em.21dtv.com/songs/60081313.mkv +Ailee-你也一样吗,http://em.21dtv.com/songs/60114318.mkv +苏有朋-宁愿一个人,http://em.21dtv.com/songs/60032705.mkv +陈星-宁愿一个人,http://em.21dtv.com/songs/60032704.mkv +陈志明-难有一封信(无原唱),http://em.21dtv.com/songs/60031299.mkv +六折真人-那夜有点疼,http://em.21dtv.com/songs/60106617.mkv +陈兴瑜-你永远不懂,http://em.21dtv.com/songs/60062287.mkv +庄学忠-你要相信我,http://em.21dtv.com/songs/60032399.mkv +佚名-你有想我无,http://em.21dtv.com/songs/60095399.mkv +张秀卿-你有想我无(无原唱),http://em.21dtv.com/songs/60032443.mkv +软硬天师-你要唔要我(演唱会),http://em.21dtv.com/songs/60032398.mkv +郑秀文-你要我勇敢,http://em.21dtv.com/songs/60032397.mkv +方宏亮-你要我微笑,http://em.21dtv.com/songs/60115191.mkv +刘德华-宁愿我伤心,http://em.21dtv.com/songs/60032701.mkv +张伟文-你有我就够(演唱会),http://em.21dtv.com/songs/60032442.mkv +陈威全-你有我的快,http://em.21dtv.com/songs/60068546.mkv +新裤子乐队-你要跳舞吗,http://em.21dtv.com/songs/60123995.mkv +张伟-南岳三柱香,http://em.21dtv.com/songs/60089848.mkv +崔天琪-你眼神悲伤,http://em.21dtv.com/songs/60133621.mkv +梁帅-那云那时光,http://em.21dtv.com/songs/60118729.mkv +阿清-宁愿你恨我,http://em.21dtv.com/songs/60066206.mkv +梁春光-那一年的你,http://em.21dtv.com/songs/60129314.mkv +林俊杰-你有没有过,http://em.21dtv.com/songs/60113691.mkv +赵咏华-宁愿没爱过(无原唱),http://em.21dtv.com/songs/60032698.mkv +彭莉-你有看到没(无原唱),http://em.21dtv.com/songs/60095529.mkv +卓君阳-你已经离开,http://em.21dtv.com/songs/60068544.mkv +李彩桦-你要记得我(演唱会),http://em.21dtv.com/songs/60032392.mkv +李彩桦-你要记得我(无原唱),http://em.21dtv.com/songs/60032391.mkv +海弦月-你眼角的泪,http://em.21dtv.com/songs/60129351.mkv +胜屿-你已经不在,http://em.21dtv.com/songs/60128321.mkv +麦霸阿杜-你要好好过,http://em.21dtv.com/songs/60062751.mkv +1931组合-你要好好的,http://em.21dtv.com/songs/60123421.mkv +焦庆军-你要好好的,http://em.21dtv.com/songs/60032390.mkv +TORO-你应该知道(演唱会),http://em.21dtv.com/songs/60032422.mkv +张信哲-你应该飞的,http://em.21dtv.com/songs/60032421.mkv +邱芸子-湳雨的心情,http://em.21dtv.com/songs/60031300.mkv +李小薇-你要的幸福,http://em.21dtv.com/songs/60111969.mkv +李慧珍-你要的幸福,http://em.21dtv.com/songs/60085542.mkv +雅锋-你要的幸福,http://em.21dtv.com/songs/60032385.mkv +郭经纬+郝嘉昕-难言的温柔,http://em.21dtv.com/songs/60105436.mkv +冷漠-你要的未来,http://em.21dtv.com/songs/60085541.mkv +李克勤-你要的未来,http://em.21dtv.com/songs/60064657.mkv +孙伯纶-你要的天堂,http://em.21dtv.com/songs/60122653.mkv +罗中旭-那一定是我,http://em.21dtv.com/songs/60030809.mkv +刘刚-能有多少天,http://em.21dtv.com/songs/60031348.mkv +光良-那一段日子,http://em.21dtv.com/songs/60132217.mkv +佚名-那一段日子,http://em.21dtv.com/songs/60030811.mkv +伊琳-那一段日子,http://em.21dtv.com/songs/60030810.mkv +巩新亮-内衣的秘密,http://em.21dtv.com/songs/60081900.mkv +李玟-你应懂得我,http://em.21dtv.com/songs/60032420.mkv +蒋雪儿-纽约的冬天,http://em.21dtv.com/songs/60077013.mkv +蒋雪儿-纽约的冬天(演唱会),http://em.21dtv.com/songs/60072257.mkv +办桌阿杰+苏路-你一定爱我,http://em.21dtv.com/songs/60095478.mkv +李俊旭-那一次邂逅,http://em.21dtv.com/songs/60062596.mkv +阿美-那一场离殇,http://em.21dtv.com/songs/60121055.mkv +曹格-你愿不愿意,http://em.21dtv.com/songs/60124025.mkv +烟雨憾-宁愿不想你,http://em.21dtv.com/songs/60106085.mkv +林隆璇-你已不像你,http://em.21dtv.com/songs/60032415.mkv +YIYO-你又不是我,http://em.21dtv.com/songs/60032448.mkv +周传雄-你已不是你,http://em.21dtv.com/songs/60032414.mkv +李翊君-你已不是你,http://em.21dtv.com/songs/60032413.mkv +缘声-南岳啊寿岳,http://em.21dtv.com/songs/60091814.mkv +林道华-你现在哪里,http://em.21dtv.com/songs/60106023.mkv +黄勇-你想怎么说,http://em.21dtv.com/songs/60032367.mkv +江波+太阳花-你想怎么爱,http://em.21dtv.com/songs/60110327.mkv +望海高歌-你想怎么爱,http://em.21dtv.com/songs/60110251.mkv +达坡玛吉-纳西祝酒歌,http://em.21dtv.com/songs/60030858.mkv +PCHY-你现在好吗,http://em.21dtv.com/songs/60099692.mkv +潘柯夫-你现在好吗,http://em.21dtv.com/songs/60069675.mkv +佚名-你现在好吗,http://em.21dtv.com/songs/60032359.mkv +傅斯彦-你现在好吗,http://em.21dtv.com/songs/60032358.mkv +陈亮吟-你现在好吗,http://em.21dtv.com/songs/60032357.mkv +风雷-你像一朵花,http://em.21dtv.com/songs/60116379.mkv +韩晓辉-你向我走来,http://em.21dtv.com/songs/60116363.mkv +君子-你行我也行,http://em.21dtv.com/songs/60061467.mkv +天孪兄弟-你行我也行,http://em.21dtv.com/songs/60031759.mkv +枕云听月-你向我笑过,http://em.21dtv.com/songs/60108612.mkv +佚名-你想跳舞吗(无原唱),http://em.21dtv.com/songs/60032362.mkv +窦智孔+BOBBY DOU-你想听的话,http://em.21dtv.com/songs/60032363.mkv +和文军-纳西三部曲,http://em.21dtv.com/songs/60115062.mkv +潘建义-楠溪江恋歌,http://em.21dtv.com/songs/60085505.mkv +伦永亮-那些好日子,http://em.21dtv.com/songs/60030790.mkv +杜德伟-那些好日子,http://em.21dtv.com/songs/60030789.mkv +张惠妹-你想干什么,http://em.21dtv.com/songs/60111070.mkv +丁炜-那些歌声里,http://em.21dtv.com/songs/60076805.mkv +和文军-纳西姑娘美,http://em.21dtv.com/songs/60090856.mkv +李宗盛-你像个孩子(演唱会),http://em.21dtv.com/songs/60032368.mkv +炎亚纶-你幸福就好,http://em.21dtv.com/songs/60114671.mkv +薛金显-男性的志气,http://em.21dtv.com/songs/60126160.mkv +薛金显-男性的志气,http://em.21dtv.com/songs/60124454.mkv +谢雷-男性的勇气,http://em.21dtv.com/songs/60135752.mkv +一绫-内心的笑容,http://em.21dtv.com/songs/60085487.mkv +罗时丰-男性的气魄,http://em.21dtv.com/songs/60031062.mkv +佚名-男性的气慨,http://em.21dtv.com/songs/60031061.mkv +罗时丰-男性的气概,http://em.21dtv.com/songs/60095862.mkv +杨鸣-男性的命运,http://em.21dtv.com/songs/60063179.mkv +叶启田-男性的苦恋,http://em.21dtv.com/songs/60031060.mkv +陈一郎-男性的苦恋,http://em.21dtv.com/songs/60031059.mkv +翁立友-男性的坚持,http://em.21dtv.com/songs/60031058.mkv +陈盈洁-女性的纯情(无原唱),http://em.21dtv.com/songs/60096025.mkv +王玲-女性的纯情(无原唱),http://em.21dtv.com/songs/60033018.mkv +陈俞秀-女性的纯情(无原唱),http://em.21dtv.com/songs/60033017.mkv +洪荣宏-男性的纯情,http://em.21dtv.com/songs/60031057.mkv +陈雷-男性的纯情,http://em.21dtv.com/songs/60031056.mkv +罗时丰-男性的本领,http://em.21dtv.com/songs/60076830.mkv +卓依婷+林正桦-男性的本领,http://em.21dtv.com/songs/60031055.mkv +叶启田-男性的本领,http://em.21dtv.com/songs/60031054.mkv +蔡凤凰-女性的哀怨,http://em.21dtv.com/songs/60033016.mkv +余天-男性纯情梦,http://em.21dtv.com/songs/60031053.mkv +宋孟君+童可可-逆袭吧少年,http://em.21dtv.com/songs/60103208.mkv +媛媛-纳西啊哩哩,http://em.21dtv.com/songs/60076815.mkv +孙博-难忘这份情,http://em.21dtv.com/songs/60050443.mkv +佚名-难忘也是你,http://em.21dtv.com/songs/60095450.mkv +李茂山+林淑蓉-难忘一段情,http://em.21dtv.com/songs/60076852.mkv +阮以伟-你唯一的郎,http://em.21dtv.com/songs/60085538.mkv +桑吉卓玛-难忘心上人,http://em.21dtv.com/songs/60031283.mkv +群星-你我相欠债(无原唱),http://em.21dtv.com/songs/60032335.mkv +吴森丰+杨菲菲-你我心连心,http://em.21dtv.com/songs/60128890.mkv +良一-难忘梧栖港,http://em.21dtv.com/songs/60082234.mkv +詹雅雯-你问我爱啥,http://em.21dtv.com/songs/60095216.mkv +李艺明-难忘同学情,http://em.21dtv.com/songs/60132567.mkv +张蓉蓉-难忘台西港,http://em.21dtv.com/songs/60123955.mkv +秀兰玛雅-你无替阮想,http://em.21dtv.com/songs/60032344.mkv +俞静-难忘太姥山,http://em.21dtv.com/songs/60031281.mkv +RICKY MARTIN+CHRISTI-nobody wants to be lonely,http://em.21dtv.com/songs/60004152.mkv +暴林-你为谁隐身,http://em.21dtv.com/songs/60105945.mkv +凡间精灵-你为谁隐身,http://em.21dtv.com/songs/60032306.mkv +大佛-你我是兄弟,http://em.21dtv.com/songs/60133527.mkv +阿权-你我是兄弟,http://em.21dtv.com/songs/60116329.mkv +阿权+华羽-你我是兄弟,http://em.21dtv.com/songs/60114851.mkv +华羽-你我是兄弟,http://em.21dtv.com/songs/60114432.mkv +STAY-你我是傻瓜,http://em.21dtv.com/songs/60032325.mkv +慕容婕柃+林茪灯-你我双双飞,http://em.21dtv.com/songs/60131447.mkv +王力宏-你为谁流泪,http://em.21dtv.com/songs/60032305.mkv +李雨-你为谁而来,http://em.21dtv.com/songs/60128098.mkv +佚名-你无情无义(无原唱),http://em.21dtv.com/songs/60032343.mkv +李丹阳-难忘青杠坡,http://em.21dtv.com/songs/60106928.mkv +詹雅雯-难忘朴子桥(无原唱),http://em.21dtv.com/songs/60031280.mkv +练创文-你温暖着我,http://em.21dtv.com/songs/60076971.mkv +佟娜-难忘那一天,http://em.21dtv.com/songs/60117551.mkv +高隆-难忘你的脸,http://em.21dtv.com/songs/60031276.mkv +雷佳-难忘茉莉花,http://em.21dtv.com/songs/60127577.mkv +刘玉翠-你为了爱情,http://em.21dtv.com/songs/60032300.mkv +刘雅丽-你为了爱情,http://em.21dtv.com/songs/60032299.mkv +群星-你为了爱情(演唱会),http://em.21dtv.com/songs/60032298.mkv +郯城小朱-你我好兄弟,http://em.21dtv.com/songs/60118978.mkv +邓丽君-你为何不说,http://em.21dtv.com/songs/60032295.mkv +佚名-难忘的一吻,http://em.21dtv.com/songs/60031270.mkv +迪玛希-难忘的一天,http://em.21dtv.com/songs/60134282.mkv +许巍-难忘的一天,http://em.21dtv.com/songs/60031269.mkv +邓丽君-难忘的一天,http://em.21dtv.com/songs/60031268.mkv +张秀卿+李明洋-你我的一生,http://em.21dtv.com/songs/60067289.mkv +傅秋英-难忘的缘份,http://em.21dtv.com/songs/60031271.mkv +赵传-你我的约定,http://em.21dtv.com/songs/60032319.mkv +易欣+孙莺-你我的选择,http://em.21dtv.com/songs/60032318.mkv +王旭-你我的未来,http://em.21dtv.com/songs/60064656.mkv +曾静玟-女王的条件,http://em.21dtv.com/songs/60113581.mkv +伍佰-挪威的森林,http://em.21dtv.com/songs/60032811.mkv +伍佰-挪威的森林(演唱会),http://em.21dtv.com/songs/60032810.mkv +徐海琴-你我的世界,http://em.21dtv.com/songs/60087882.mkv +NU'EST-女王的骑士,http://em.21dtv.com/songs/60134777.mkv +林翠萍-难忘的情人,http://em.21dtv.com/songs/60088123.mkv +李明洋-你我的恰恰,http://em.21dtv.com/songs/60118675.mkv +佚名-难忘的情歌,http://em.21dtv.com/songs/60031259.mkv +黄乙玲-难忘的情歌,http://em.21dtv.com/songs/60031258.mkv +广杰-难忘的恋曲,http://em.21dtv.com/songs/60133631.mkv +广杰-难忘的恋曲,http://em.21dtv.com/songs/60132421.mkv +一梦(肖娟)-难忘的恋曲,http://em.21dtv.com/songs/60132153.mkv +蔡柱-难忘的记忆,http://em.21dtv.com/songs/60068519.mkv +佚名-你我的脚印(无原唱),http://em.21dtv.com/songs/60032315.mkv +龙千玉-难忘的旧情,http://em.21dtv.com/songs/60031256.mkv +佚名-难忘的机场,http://em.21dtv.com/songs/60031255.mkv +佚名-难忘的故乡,http://em.21dtv.com/songs/60031253.mkv +杨欣桦-难忘的过去,http://em.21dtv.com/songs/60135413.mkv +梁志群-难忘的初恋,http://em.21dtv.com/songs/60125814.mkv +邓丽君-难忘的爱人,http://em.21dtv.com/songs/60031245.mkv +陈一郎-难忘的爱人,http://em.21dtv.com/songs/60031244.mkv +陈思安-难忘的爱人,http://em.21dtv.com/songs/60031243.mkv +蔡幸娟-难忘的爱人,http://em.21dtv.com/songs/60031242.mkv +邓丽君-难忘的爱人(演唱会),http://em.21dtv.com/songs/60031241.mkv +风语-你我的爱情,http://em.21dtv.com/songs/60124704.mkv +李彩桦-你唔爱我啦,http://em.21dtv.com/songs/60032345.mkv +区瑞强-那天再重聚,http://em.21dtv.com/songs/60030783.mkv +胖大海-你太有才了,http://em.21dtv.com/songs/60062809.mkv +陈慧琳-那天心死过,http://em.21dtv.com/songs/60093469.mkv +徐英恩-你太完美了,http://em.21dtv.com/songs/60076966.mkv +林子娟-哪通无靠岸(无原唱),http://em.21dtv.com/songs/60030673.mkv +张雷-你摊上事了,http://em.21dtv.com/songs/60076967.mkv +杨千桦-女探俏娇娃,http://em.21dtv.com/songs/60092834.mkv +小辣椒-你头壳坏坏(无原唱),http://em.21dtv.com/songs/60095282.mkv +杨子锋-你听见了吗,http://em.21dtv.com/songs/60101652.mkv +何耀珊-你听见了吗,http://em.21dtv.com/songs/60032288.mkv +阎维文-南通好家园,http://em.21dtv.com/songs/60031148.mkv +TWINS-那天很爱笑,http://em.21dtv.com/songs/60030779.mkv +TAE-拿他跟我比,http://em.21dtv.com/songs/60089575.mkv +黄长俊-你听到了吗,http://em.21dtv.com/songs/60136032.mkv +黄维德-那天爱离开,http://em.21dtv.com/songs/60030778.mkv +黎小田-你是最清楚,http://em.21dtv.com/songs/60093555.mkv +洪子晴-你是最清楚,http://em.21dtv.com/songs/60091616.mkv +洪子晴+孙耀威-你是最清楚,http://em.21dtv.com/songs/60032237.mkv +陈雷-你是这呢美(无原唱),http://em.21dtv.com/songs/60032230.mkv +徐子谦-你说走就走,http://em.21dtv.com/songs/60115944.mkv +马蹄帮-你是最好的,http://em.21dtv.com/songs/60120147.mkv +刘德华-你是最好的,http://em.21dtv.com/songs/60032235.mkv +陈小春+夏晓晴-你是最好的,http://em.21dtv.com/songs/60032234.mkv +苏志威+葛民辉-你食左饭未,http://em.21dtv.com/songs/60076935.mkv +樊凡-你是真不同,http://em.21dtv.com/songs/60109469.mkv +潘辰-念是一种病,http://em.21dtv.com/songs/60091667.mkv +王莹-霓裳羽衣曲,http://em.21dtv.com/songs/60112121.mkv +陈慧琳-你伸一伸手,http://em.21dtv.com/songs/60093451.mkv +周燕君-你是一片天,http://em.21dtv.com/songs/60071004.mkv +戴玉强+王莹-你是一颗树,http://em.21dtv.com/songs/60032226.mkv +孙嘉敏-你是一个谜,http://em.21dtv.com/songs/60087654.mkv +孙嘉敏-你是一个迷,http://em.21dtv.com/songs/60032224.mkv +郭一橙-女神也烦恼,http://em.21dtv.com/songs/60132995.mkv +群星-女生向前走,http://em.21dtv.com/songs/60033006.mkv +佚名-你是我最爱,http://em.21dtv.com/songs/60032205.mkv +李如麟-你是我最爱(无原唱),http://em.21dtv.com/songs/60032204.mkv +王心凌-你是我一切,http://em.21dtv.com/songs/60091693.mkv +陈予新-你是外星人,http://em.21dtv.com/songs/60032065.mkv +姚成骏-你是我兄弟,http://em.21dtv.com/songs/60063258.mkv +傅振辉+高向鹏-你是我兄弟,http://em.21dtv.com/songs/60032180.mkv +王薇茜-你是我王子,http://em.21dtv.com/songs/60032164.mkv +肖亮-你是我唯一,http://em.21dtv.com/songs/60111356.mkv +唐杰-你是我唯一,http://em.21dtv.com/songs/60110094.mkv +余文乐-你说我太帅,http://em.21dtv.com/songs/60106600.mkv +佚名-你伤我太深,http://em.21dtv.com/songs/60095397.mkv +刘德华-你是我所有,http://em.21dtv.com/songs/60032161.mkv +任贤齐-你是我老婆,http://em.21dtv.com/songs/60032150.mkv +杨臣刚-你是我老公,http://em.21dtv.com/songs/60088080.mkv +王昆-那是我家乡,http://em.21dtv.com/songs/60116151.mkv +刘德华-你是我惊喜,http://em.21dtv.com/songs/60032149.mkv +佚名-那是我家乡,http://em.21dtv.com/songs/60030769.mkv +雪十郎-你是我的猪(舞曲版),http://em.21dtv.com/songs/60085530.mkv +雪十郎+冬冬-你是我的猪,http://em.21dtv.com/songs/60081225.mkv +进击的女帝-你是我的眼,http://em.21dtv.com/songs/60128443.mkv +杨梓文祺-你是我的盐,http://em.21dtv.com/songs/60135404.mkv +海心-你是我的鱼,http://em.21dtv.com/songs/60114656.mkv +杨光-你是我的眼,http://em.21dtv.com/songs/60113653.mkv +萧煌奇-你是我的眼,http://em.21dtv.com/songs/60109604.mkv +李琦-你是我的眼,http://em.21dtv.com/songs/60099317.mkv +萧煌奇+杨培安-你是我的眼,http://em.21dtv.com/songs/60098730.mkv +萧煌奇-你是我的眼,http://em.21dtv.com/songs/60088573.mkv +龙飞+郭玲-你是我的缘,http://em.21dtv.com/songs/60081357.mkv +张玉霞-你是我的眼,http://em.21dtv.com/songs/60069672.mkv +杨光-你是我的眼(演唱会),http://em.21dtv.com/songs/60063248.mkv +毛宁-你是我的眼(演唱会),http://em.21dtv.com/songs/60062759.mkv +林宥嘉-你是我的眼,http://em.21dtv.com/songs/60032125.mkv +动力火车-你是我的眼,http://em.21dtv.com/songs/60032124.mkv +凤娘-你是我的vitamin,http://em.21dtv.com/songs/60032079.mkv +TWINS-你是我的ufo,http://em.21dtv.com/songs/60032078.mkv +朱业晋-你是我的天,http://em.21dtv.com/songs/60115988.mkv +佳灏-你是我的天,http://em.21dtv.com/songs/60115007.mkv +万心-你是我的痛,http://em.21dtv.com/songs/60106569.mkv +金莎-你是我的糖,http://em.21dtv.com/songs/60106347.mkv +王蓦骞-你是我的神,http://em.21dtv.com/songs/60115311.mkv +余润泽+徐铵-你是我的山,http://em.21dtv.com/songs/60112514.mkv +李东学-你是我的谁,http://em.21dtv.com/songs/60111960.mkv +艾怡良-你是我的Superman,http://em.21dtv.com/songs/60081289.mkv +余曼妮-你是我的superman(演唱会),http://em.21dtv.com/songs/60072243.mkv +王源-你是我的神,http://em.21dtv.com/songs/60068540.mkv +李玟-你是我的superman(演唱会),http://em.21dtv.com/songs/60032077.mkv +豪记大对唱-你是我的人,http://em.21dtv.com/songs/60032104.mkv +佚名-你是我的人(无原唱),http://em.21dtv.com/songs/60032103.mkv +马伟营-你是我的妻,http://em.21dtv.com/songs/60106456.mkv +老猫-你是我的妞,http://em.21dtv.com/songs/60103523.mkv +陈柏睿-你是我的美,http://em.21dtv.com/songs/60122238.mkv +江志丰+杨静-你是我的命,http://em.21dtv.com/songs/60083522.mkv +宇桐非-你是我的命,http://em.21dtv.com/songs/60076944.mkv +杨程凯+雪莲儿-你是我的梦,http://em.21dtv.com/songs/60032094.mkv +刘德华-你是我的梦,http://em.21dtv.com/songs/60032093.mkv +刘德华-你是我的梦(演唱会),http://em.21dtv.com/songs/60032092.mkv +4MEN-你是我的家,http://em.21dtv.com/songs/60111570.mkv +念白+张薇-你是我的家,http://em.21dtv.com/songs/60066193.mkv +张大伟-你是我的海(演唱会),http://em.21dtv.com/songs/60085526.mkv +胡梅-你是我的歌,http://em.21dtv.com/songs/60107959.mkv +李刚+余润泽-你是我大哥,http://em.21dtv.com/songs/60103353.mkv +余润泽+李刚-你是我大哥,http://em.21dtv.com/songs/60097580.mkv +晏雨冰-你是我的毒,http://em.21dtv.com/songs/60069671.mkv +姜涛-你是我的毒,http://em.21dtv.com/songs/60069670.mkv +周汤豪-你是我的菜,http://em.21dtv.com/songs/60128903.mkv +王可-你是我的菜,http://em.21dtv.com/songs/60125902.mkv +王麟-你是我的菜,http://em.21dtv.com/songs/60066191.mkv +韩信-你是我的菜,http://em.21dtv.com/songs/60032083.mkv +唐小宝-你是我的宝,http://em.21dtv.com/songs/60127867.mkv +阿牛+谢娜-你是我的宝,http://em.21dtv.com/songs/60032081.mkv +陈依然-女神我的爱,http://em.21dtv.com/songs/60106382.mkv +曾春年-女神我爱你,http://em.21dtv.com/songs/60107767.mkv +佚名-nobodys suppose to be here,http://em.21dtv.com/songs/60004159.mkv +李艳杰-女神受了伤,http://em.21dtv.com/songs/60086748.mkv +牛朝阳-你是谁的谁,http://em.21dtv.com/songs/60032057.mkv +龙千玉-你是阮唯一,http://em.21dtv.com/songs/60032046.mkv +REBECCA FERGUSON-nothings real but love,http://em.21dtv.com/songs/60065661.mkv +陈小云-你是七仔魁(无原唱),http://em.21dtv.com/songs/60032040.mkv +王梓轩-你是哪种人,http://em.21dtv.com/songs/60061458.mkv +陈炫-女神你在哪,http://em.21dtv.com/songs/60135930.mkv +陈炫-女神你在哪,http://em.21dtv.com/songs/60129753.mkv +浅蓝+徐真真-你是哪一种,http://em.21dtv.com/songs/60120720.mkv +高明骏-你说你想我,http://em.21dtv.com/songs/60032267.mkv +童波-男神女神摇,http://em.21dtv.com/songs/60112869.mkv +许志安+林凡-男生女生配,http://em.21dtv.com/songs/60031044.mkv +2MORO+KRUSTY-男生女生配,http://em.21dtv.com/songs/60031043.mkv +徐向东-你说你没醉,http://em.21dtv.com/songs/60132475.mkv +张轩铭-你是那么美,http://em.21dtv.com/songs/60125538.mkv +孙洁-你说你爱我,http://em.21dtv.com/songs/60087660.mkv +马佳伟-你说你爱我,http://em.21dtv.com/songs/60032263.mkv +张可儿-男神你爱谁,http://em.21dtv.com/songs/60100014.mkv +舜文齐-拿什么去爱,http://em.21dtv.com/songs/60030655.mkv +王倩一-拿什么可能,http://em.21dtv.com/songs/60113850.mkv +樊凡-拿什么可能,http://em.21dtv.com/songs/60113755.mkv +张靓颖-鸟苏里船歌,http://em.21dtv.com/songs/60087857.mkv +MISS LIKE-女神幻想曲,http://em.21dtv.com/songs/60123507.mkv +范婷-你是坏天气,http://em.21dtv.com/songs/60032024.mkv +傅颖-你是灰色的,http://em.21dtv.com/songs/60032025.mkv +龙飘飘-你是好朋友,http://em.21dtv.com/songs/60032022.mkv +张小觉-你是坏孩子,http://em.21dtv.com/songs/60063398.mkv +刘惜君-那时候的我,http://em.21dtv.com/songs/60076795.mkv +S.H.E-那时候的树,http://em.21dtv.com/songs/60076794.mkv +蔡明+黄洋-那时候的你,http://em.21dtv.com/songs/60119951.mkv +钟镇涛-你是个男人,http://em.21dtv.com/songs/60068539.mkv +郑欣宜-你瘦够了吗,http://em.21dtv.com/songs/60109659.mkv +BII-逆时光的浪,http://em.21dtv.com/songs/60114934.mkv +言承旭-男生该独立,http://em.21dtv.com/songs/60088633.mkv +F4+言承旭-男生该独立,http://em.21dtv.com/songs/60087190.mkv +陈兴瑜+宇桐非-你说过爱我一万年,http://em.21dtv.com/songs/60062280.mkv +田田-你是否知道,http://em.21dtv.com/songs/60123027.mkv +李佳乐-你是否知道,http://em.21dtv.com/songs/60119648.mkv +张伦硕-你是否一样,http://em.21dtv.com/songs/60127960.mkv +青山-你是负心人,http://em.21dtv.com/songs/60032021.mkv +韩红-你随风散去,http://em.21dtv.com/songs/60032278.mkv +英姆草-你说的永远,http://em.21dtv.com/songs/60076961.mkv +张芯-那时的月儿,http://em.21dtv.com/songs/60105865.mkv +N GIRLS-女生的夏天,http://em.21dtv.com/songs/60123514.mkv +董洁-那时的我们,http://em.21dtv.com/songs/60070967.mkv +王艺-那时的我们,http://em.21dtv.com/songs/60030757.mkv +苏妙玲-女生的说话,http://em.21dtv.com/songs/60069688.mkv +朱雨轩-年少的漂泊,http://em.21dtv.com/songs/60086743.mkv +飘零的雨-年少的漂泊,http://em.21dtv.com/songs/60086742.mkv +糖糖乐团-那时的你我,http://em.21dtv.com/songs/60076793.mkv +傅振辉-你送的吉他,http://em.21dtv.com/songs/60128796.mkv +叶启田-内山的姑娘,http://em.21dtv.com/songs/60031318.mkv +张韶涵-女生的烦恼,http://em.21dtv.com/songs/60091166.mkv +Take-那时 春天,http://em.21dtv.com/songs/60110799.mkv +潘秀琼-你是春日风(演唱会),http://em.21dtv.com/songs/60064642.mkv +张凤凤-你是春日风,http://em.21dtv.com/songs/60032008.mkv +佚名-你是春日风,http://em.21dtv.com/songs/60032007.mkv +潘秀琼-你是春日风,http://em.21dtv.com/songs/60032006.mkv +蔡琴-你是春日风(演唱会),http://em.21dtv.com/songs/60032005.mkv +冯允谦-那是纯粹的,http://em.21dtv.com/songs/60076797.mkv +佚名-你是杯中酒,http://em.21dtv.com/songs/60031998.mkv +拖鞋+呆问-女神不说话,http://em.21dtv.com/songs/60119595.mkv +Dewen和拖鞋-女神不说话,http://em.21dtv.com/songs/60094372.mkv +侯旭-你塞北的雪(演唱会),http://em.21dtv.com/songs/60062455.mkv +关喆-你是爱我的,http://em.21dtv.com/songs/60118364.mkv +尚芸菲-你是爱我的,http://em.21dtv.com/songs/60102158.mkv +张惠妹-你是爱我的,http://em.21dtv.com/songs/60031994.mkv +李玟-你是爱我的,http://em.21dtv.com/songs/60031993.mkv +江美琪-你是爱我的,http://em.21dtv.com/songs/60031992.mkv +张学友-你是爱我的(演唱会),http://em.21dtv.com/songs/60031991.mkv +伊龙-男人真是难,http://em.21dtv.com/songs/60122478.mkv +曹龙-女人肿么了,http://em.21dtv.com/songs/60080900.mkv +迪克牛仔-男人真命苦(演唱会),http://em.21dtv.com/songs/60031035.mkv +干露露-男人这东西,http://em.21dtv.com/songs/60079896.mkv +张柏芝+高雪岚-男人这东西(演唱会),http://em.21dtv.com/songs/60031033.mkv +珍美儿-女人最痴情,http://em.21dtv.com/songs/60097490.mkv +路童-男人最痴情,http://em.21dtv.com/songs/60066175.mkv +佚名-男人这本书,http://em.21dtv.com/songs/60031032.mkv +那英-男人这本书,http://em.21dtv.com/songs/60031031.mkv +胡小宝-男人要战斗,http://em.21dtv.com/songs/60113975.mkv +洪杰-男人要小心,http://em.21dtv.com/songs/60068512.mkv +齐豫-女人与小孩(无原唱),http://em.21dtv.com/songs/60032985.mkv +梁汉文-女人用水做,http://em.21dtv.com/songs/60032984.mkv +赵小兵-男人也是人,http://em.21dtv.com/songs/60066173.mkv +大来-男人要坚强,http://em.21dtv.com/songs/60119387.mkv +霍正奇-男人也会痛(无原唱),http://em.21dtv.com/songs/60031024.mkv +汪正正-男人也很傻(演唱会),http://em.21dtv.com/songs/60070971.mkv +李清-男人也会累,http://em.21dtv.com/songs/60130428.mkv +陈小春-男人与公狗,http://em.21dtv.com/songs/60031029.mkv +阿妹妹-男人要干脆,http://em.21dtv.com/songs/60031021.mkv +舒方-男人也脆弱,http://em.21dtv.com/songs/60067262.mkv +孙浩博-男人下下签,http://em.21dtv.com/songs/60064602.mkv +泳儿+关淑怡+陈逸璇-女人想什么,http://em.21dtv.com/songs/60032966.mkv +卫兰+JW-男人信什么,http://em.21dtv.com/songs/60031020.mkv +大庆小芳-女人像个球,http://em.21dtv.com/songs/60133531.mkv +李琼-女人歇不得,http://em.21dtv.com/songs/60032967.mkv +韦唯-你让我心醉,http://em.21dtv.com/songs/60066189.mkv +S.H.E-你让我想爱,http://em.21dtv.com/songs/60090417.mkv +朱明-男人万万岁,http://em.21dtv.com/songs/60080154.mkv +陈冠希-你让我失眠,http://em.21dtv.com/songs/60031963.mkv +迪克牛仔-你让我难过,http://em.21dtv.com/songs/60031962.mkv +苗苗-你让我感动,http://em.21dtv.com/songs/60081128.mkv +陈思思-你让我感动,http://em.21dtv.com/songs/60031960.mkv +草蜢-你让我感动,http://em.21dtv.com/songs/60031959.mkv +草蜢+黎瑞恩-你让我感动,http://em.21dtv.com/songs/60031958.mkv +陈思思-你让我感动(演唱会),http://em.21dtv.com/songs/60031957.mkv +王强-你让我动心,http://em.21dtv.com/songs/60069664.mkv +魏如萱-女人痛经时,http://em.21dtv.com/songs/60089013.mkv +赵仰瑞-男人三十六,http://em.21dtv.com/songs/60131843.mkv +李娜-女人是老虎,http://em.21dtv.com/songs/60032956.mkv +秋裤大叔-男人算个球,http://em.21dtv.com/songs/60108773.mkv +赵小兵-男人算个球,http://em.21dtv.com/songs/60068511.mkv +飘飘-女人是个宝,http://em.21dtv.com/songs/60131985.mkv +周晓磊-男人容易吗,http://em.21dtv.com/songs/60114454.mkv +陈思安+方宁-女人青春梦,http://em.21dtv.com/songs/60106402.mkv +网络歌手-男人怕老婆,http://em.21dtv.com/songs/60088420.mkv +咪依鲁江-女人你太坏,http://em.21dtv.com/songs/60072264.mkv +王建荣+司徒兰芳-女人没有错,http://em.21dtv.com/songs/60120764.mkv +童阿梅-男人没烦恼,http://em.21dtv.com/songs/60030996.mkv +林雨-男人靠自己,http://em.21dtv.com/songs/60069637.mkv +好弟-男人靠得住,http://em.21dtv.com/songs/60070969.mkv +司文-男人就要狠,http://em.21dtv.com/songs/60030986.mkv +魏如萱-女人经痛时,http://em.21dtv.com/songs/60032940.mkv +陈玉建-男人就是累,http://em.21dtv.com/songs/60030985.mkv +周巍-女人就是家,http://em.21dtv.com/songs/60130191.mkv +黄妃-女人俱乐部,http://em.21dtv.com/songs/60079914.mkv +许飞-你如今好吗,http://em.21dtv.com/songs/60031969.mkv +吴炜-男人狠一点,http://em.21dtv.com/songs/60030982.mkv +张信哲-你如何失恋,http://em.21dtv.com/songs/60031968.mkv +舒方-男人很脆弱,http://em.21dtv.com/songs/60066172.mkv +金学峰-男人的自责,http://em.21dtv.com/songs/60089508.mkv +蓝波-男人的尊严,http://em.21dtv.com/songs/60107980.mkv +林玉英-女人的志气,http://em.21dtv.com/songs/60122902.mkv +周玉芳+周华安-南日岛之恋,http://em.21dtv.com/songs/60117622.mkv +陈淑芳-男人大丈夫,http://em.21dtv.com/songs/60030946.mkv +群星-男人的一生,http://em.21dtv.com/songs/60134128.mkv +姜欣欣-男人的一生,http://em.21dtv.com/songs/60132348.mkv +乔幼-女人的一生,http://em.21dtv.com/songs/60131140.mkv +乔幼-女人的一生,http://em.21dtv.com/songs/60130045.mkv +郭桂彬-女人的一生,http://em.21dtv.com/songs/60032931.mkv +邓丽君-女人的勇气,http://em.21dtv.com/songs/60101184.mkv +陈瑞-女人的眼泪,http://em.21dtv.com/songs/60069687.mkv +叶倩文-女人的眼泪(演唱会),http://em.21dtv.com/songs/60032930.mkv +叶倩文+陈奕迅-女人的眼泪(演唱会),http://em.21dtv.com/songs/60032929.mkv +佚名-女人的眼泪(慢三),http://em.21dtv.com/songs/60032928.mkv +余天-男人的眼泪,http://em.21dtv.com/songs/60030976.mkv +龙啸-男人的眼泪,http://em.21dtv.com/songs/60030975.mkv +流氓阿德-男人的眼泪,http://em.21dtv.com/songs/60030974.mkv +刘嘉亮-男人的眼泪,http://em.21dtv.com/songs/60030973.mkv +刘德华-男人的眼泪,http://em.21dtv.com/songs/60030972.mkv +费玉清-男人的眼泪,http://em.21dtv.com/songs/60030971.mkv +许志安-男人的遗憾,http://em.21dtv.com/songs/60030977.mkv +沙宝亮-女人的选择,http://em.21dtv.com/songs/60077027.mkv +姜育恒-女人的选择,http://em.21dtv.com/songs/60032927.mkv +蓝心湄-男人的新衣,http://em.21dtv.com/songs/60092011.mkv +林姗-女人的心声,http://em.21dtv.com/songs/60120663.mkv +夏冰-男人的心思,http://em.21dtv.com/songs/60103997.mkv +佚名-女人的心情,http://em.21dtv.com/songs/60032925.mkv +江蕙-女人的心情,http://em.21dtv.com/songs/60032924.mkv +一绫-女人的温柔,http://em.21dtv.com/songs/60134833.mkv +暴林-男人的无奈,http://em.21dtv.com/songs/60067259.mkv +成成-男人的伤悲,http://em.21dtv.com/songs/60112708.mkv +许婉琳-女人的伤悲,http://em.21dtv.com/songs/60083566.mkv +崔伟亮-男人的伤悲,http://em.21dtv.com/songs/60069635.mkv +枫舞-男人的伤悲,http://em.21dtv.com/songs/60067258.mkv +叶倩文-女人的弱点,http://em.21dtv.com/songs/60032918.mkv +叶倩文-女人的弱点(演唱会),http://em.21dtv.com/songs/60032917.mkv +邓建明-女人的弱点(演唱会),http://em.21dtv.com/songs/60032916.mkv +马闯-男人的情歌,http://em.21dtv.com/songs/60067257.mkv +李慧珍-女人的情歌,http://em.21dtv.com/songs/60032915.mkv +孙楠-恼人的秋风,http://em.21dtv.com/songs/60118498.mkv +沙宝亮+黄绮珊-恼人的秋风,http://em.21dtv.com/songs/60098572.mkv +艾菲-恼人的秋风,http://em.21dtv.com/songs/60086726.mkv +费翔-恼人的秋风,http://em.21dtv.com/songs/60031303.mkv +佚名-恼人的秋风(迪斯科),http://em.21dtv.com/songs/60031302.mkv +刘若英-男人的皮衣,http://em.21dtv.com/songs/60030963.mkv +金钟国-男人都那样,http://em.21dtv.com/songs/60101541.mkv +小山-男人的诺言,http://em.21dtv.com/songs/60030962.mkv +周华健-女人的名字,http://em.21dtv.com/songs/60032914.mkv +曾轶可-女人的秘密,http://em.21dtv.com/songs/60080354.mkv +余天-男人的苦闷(无原唱),http://em.21dtv.com/songs/60030958.mkv +柴俊-男人的坚强,http://em.21dtv.com/songs/60116059.mkv +张圳-男人的寂寞,http://em.21dtv.com/songs/60030957.mkv +糖糖乐团-男人的借口,http://em.21dtv.com/songs/60083473.mkv +陈随意-男人的肩胛,http://em.21dtv.com/songs/60076822.mkv +蔡小虎-男人的坚持,http://em.21dtv.com/songs/60083472.mkv +六哲+蔡晓-男人的剧本,http://em.21dtv.com/songs/60103089.mkv +辛龙-男人的海边,http://em.21dtv.com/songs/60030953.mkv +江蕙-女人的故事,http://em.21dtv.com/songs/60032910.mkv +许志安-男人的感慨,http://em.21dtv.com/songs/60030951.mkv +赖剑亮-男人的告白,http://em.21dtv.com/songs/60076821.mkv +风采轮-女人的风筝,http://em.21dtv.com/songs/60106454.mkv +张卫健-男人的烦恼,http://em.21dtv.com/songs/60030950.mkv +伤感一哥-男人的承诺,http://em.21dtv.com/songs/60118332.mkv +曹智-男人的悲伤,http://em.21dtv.com/songs/60115204.mkv +刘依纯-女人的悲哀,http://em.21dtv.com/songs/60032909.mkv +果然哥-女人才最累,http://em.21dtv.com/songs/60116052.mkv +门丽-女人不要哭,http://em.21dtv.com/songs/60133020.mkv +司徒兰芳-女人不是妖,http://em.21dtv.com/songs/60071015.mkv +奥迪-男人不是神,http://em.21dtv.com/songs/60076820.mkv +方皓玟-女人不是猫,http://em.21dtv.com/songs/60077024.mkv +吴周胜-男人不容易,http://em.21dtv.com/songs/60133473.mkv +王强-男人不容易,http://em.21dtv.com/songs/60124258.mkv +浩天-男人不容易,http://em.21dtv.com/songs/60118748.mkv +王伟-男人不能惯,http://em.21dtv.com/songs/60106097.mkv +赵奕欢-男人不能惯,http://em.21dtv.com/songs/60083471.mkv +金霖-男人不流泪,http://em.21dtv.com/songs/60083470.mkv +郑少秋-难忍别离泪,http://em.21dtv.com/songs/60031225.mkv +金久哲-男人不好当,http://em.21dtv.com/songs/60101188.mkv +陈好-女人爱自己,http://em.21dtv.com/songs/60032895.mkv +冯晓菲-女人啊女人,http://em.21dtv.com/songs/60099774.mkv +哈琪-男人啊男人,http://em.21dtv.com/songs/60097560.mkv +蔡秋凤-女人啊女人,http://em.21dtv.com/songs/60032893.mkv +余文乐+陈奂仁-男人爱麻烦,http://em.21dtv.com/songs/60061445.mkv +佚名-女人爱变卦,http://em.21dtv.com/songs/60032894.mkv +孙燕姿-年轻无极限,http://em.21dtv.com/songs/60032649.mkv +晓晓-你去了哪里,http://em.21dtv.com/songs/60115195.mkv +明月微风-你去了哪里,http://em.21dtv.com/songs/60115193.mkv +冷风-你去了何方,http://em.21dtv.com/songs/60107516.mkv +周华健-浓情化不开,http://em.21dtv.com/songs/60032770.mkv +毛方圆+张飞飞+钟凯-年轻的战场,http://em.21dtv.com/songs/60091548.mkv +马天宇-年轻的战场,http://em.21dtv.com/songs/60088981.mkv +张杰-年轻的战场(演唱会),http://em.21dtv.com/songs/60083549.mkv +好男儿-年轻的战场,http://em.21dtv.com/songs/60032645.mkv +Lunar-年轻到永远,http://em.21dtv.com/songs/60133232.mkv +小虎队-年轻的英雄,http://em.21dtv.com/songs/60115113.mkv +小虎队-年轻的英雄,http://em.21dtv.com/songs/60077003.mkv +谭晶-年轻的士兵(演唱会),http://em.21dtv.com/songs/60032641.mkv +林志炫-年轻的日子,http://em.21dtv.com/songs/60032640.mkv +费翔-年轻的诺言,http://em.21dtv.com/songs/60088691.mkv +高明骏-年轻的喝采,http://em.21dtv.com/songs/60032636.mkv +张恒远-年轻不服输,http://em.21dtv.com/songs/60113463.mkv +容祖儿-男朋友与歌,http://em.21dtv.com/songs/60092530.mkv +杨培安-哪怕我很小,http://em.21dtv.com/songs/60117830.mkv +陈佳乐-你陪我长大,http://em.21dtv.com/songs/60129724.mkv +力维-那片土地上,http://em.21dtv.com/songs/60105651.mkv +山楂妹-那片山楂花,http://em.21dtv.com/songs/60131372.mkv +周旭风-拿破仑式爱,http://em.21dtv.com/songs/60083447.mkv +吕莹晶-那片海海海,http://em.21dtv.com/songs/60096214.mkv +佚名-no one to cry to,http://em.21dtv.com/songs/60004126.mkv +JENNIFER HUDSON-no one gonna love you,http://em.21dtv.com/songs/60060882.mkv +SpeXial-暖男制造机,http://em.21dtv.com/songs/60115636.mkv +韩琳-年年走红运,http://em.21dtv.com/songs/60066204.mkv +麦穗-年年有今日(演唱会),http://em.21dtv.com/songs/60061473.mkv +古巨基-年年有今日,http://em.21dtv.com/songs/60032633.mkv +古巨基-年年有今日(演唱会),http://em.21dtv.com/songs/60032632.mkv +古巨基+侧田-年年有今日(演唱会),http://em.21dtv.com/songs/60032631.mkv +王心凌-那年夏宁静,http://em.21dtv.com/songs/60088291.mkv +白冰冰-娜奴湾恰恰,http://em.21dtv.com/songs/60095815.mkv +高胜美-娜努娃情歌,http://em.21dtv.com/songs/60030863.mkv +尤雅-娜奴娃情歌,http://em.21dtv.com/songs/60030862.mkv +邓丽君-哪奴娃情歌,http://em.21dtv.com/songs/60030671.mkv +林玉英-那奴湾名字,http://em.21dtv.com/songs/60100213.mkv +邓超-娘娘我错了,http://em.21dtv.com/songs/60116284.mkv +邓超-娘娘我错了,http://em.21dtv.com/songs/60115439.mkv +钟彩媚-奶奶我爱你,http://em.21dtv.com/songs/60108082.mkv +郭美美-你能听见吗,http://em.21dtv.com/songs/60134335.mkv +童可可-你能听见吗,http://em.21dtv.com/songs/60104352.mkv +何润东-那年十七岁,http://em.21dtv.com/songs/60030742.mkv +童唱-牛奶三明治,http://em.21dtv.com/songs/60032734.mkv +唐古+何鹏-你牛什么牛,http://em.21dtv.com/songs/60113354.mkv +唐古-你牛什么牛,http://em.21dtv.com/songs/60107610.mkv +双星-年年庆有余,http://em.21dtv.com/songs/60077002.mkv +罗时丰-那年去看山,http://em.21dtv.com/songs/60030741.mkv +贾万-牛奶泡饼干,http://em.21dtv.com/songs/60064668.mkv +阿翁-那年你十八,http://em.21dtv.com/songs/60030740.mkv +林隆璇+李圣杰-你那么爱她,http://em.21dtv.com/songs/60031936.mkv +李翊君-你那么爱她,http://em.21dtv.com/songs/60031935.mkv +李圣杰-你那么爱他,http://em.21dtv.com/songs/60031934.mkv +许志安-你哪里有错,http://em.21dtv.com/songs/60031922.mkv +刘虹桦-你那里几点,http://em.21dtv.com/songs/60031931.mkv +南宁柒仔-南宁抗日歌,http://em.21dtv.com/songs/60031131.mkv +南宁柒仔-南宁江南style,http://em.21dtv.com/songs/60070974.mkv +曹格+曹三丰+曹华恩-牛奶健康歌,http://em.21dtv.com/songs/60111944.mkv +徐誉滕-那女孩是谁,http://em.21dtv.com/songs/60030752.mkv +阿力木-那女孩可爱,http://em.21dtv.com/songs/60108957.mkv +杨千嬅-男女关系科(演唱会),http://em.21dtv.com/songs/60030917.mkv +郑劲松-那年二十三,http://em.21dtv.com/songs/60108050.mkv +王力-那年的一月,http://em.21dtv.com/songs/60030738.mkv +好妹妹乐队-那年的愿望,http://em.21dtv.com/songs/60107639.mkv +王涛+刘峰-那年的烟花,http://em.21dtv.com/songs/60094997.mkv +顾又铭+麻辣女生-那年的夏天,http://em.21dtv.com/songs/60126444.mkv +林昕阳-那年的夏天,http://em.21dtv.com/songs/60102395.mkv +江美琪-那年的情书,http://em.21dtv.com/songs/60030737.mkv +陈魁-那年的故事,http://em.21dtv.com/songs/60085490.mkv +郑璐-浓浓百姓情,http://em.21dtv.com/songs/60099537.mkv +刘虹桦-你那边几点,http://em.21dtv.com/songs/60031925.mkv +吴浩康-你那边几点(演唱会),http://em.21dtv.com/songs/60031924.mkv +陈笠笠-年年步步高,http://em.21dtv.com/songs/60062266.mkv +张瀚元-你命中缺我,http://em.21dtv.com/songs/60109322.mkv +张煜枫-你没有听错,http://em.21dtv.com/songs/60126892.mkv +李圣杰-你们要快乐,http://em.21dtv.com/songs/60031916.mkv +何维健-柠檬甜甜的,http://em.21dtv.com/songs/60115686.mkv +何维健-柠檬甜甜的,http://em.21dtv.com/songs/60114997.mkv +王识贤-你免同情我,http://em.21dtv.com/songs/60031917.mkv +老狼-那么那么地,http://em.21dtv.com/songs/60030734.mkv +阿朵-那么那么爱,http://em.21dtv.com/songs/60030733.mkv +潘美辰-你明明知道,http://em.21dtv.com/songs/60031920.mkv +李泉-你慢慢走吧,http://em.21dtv.com/songs/60091324.mkv +刘沁-你明明爱我,http://em.21dtv.com/songs/60031919.mkv +孟文豪+朱之文-农民老大哥,http://em.21dtv.com/songs/60098260.mkv +朱之文-农民老大哥,http://em.21dtv.com/songs/60081621.mkv +张学友-你每句说话,http://em.21dtv.com/songs/60031909.mkv +ANNIE LENNOX-no more i love yous,http://em.21dtv.com/songs/60004116.mkv +卫润普-农民工小孩,http://em.21dtv.com/songs/60108362.mkv +李嘉-哪呒跟你行,http://em.21dtv.com/songs/60095604.mkv +MC谢小宇-内蒙古黑怕,http://em.21dtv.com/songs/50000122.mkv +老轩慕-内蒙古高原,http://em.21dtv.com/songs/60031316.mkv +赵仰瑞-农民的自豪(演唱会),http://em.21dtv.com/songs/60072260.mkv +丁维伟-难眠的雨夜,http://em.21dtv.com/songs/60086725.mkv +赵仰瑞-农民的幸福,http://em.21dtv.com/songs/60072258.mkv +谢安琪-你们的幸福,http://em.21dtv.com/songs/60064637.mkv +吴鑫桐-柠檬的味道,http://em.21dtv.com/songs/60085548.mkv +杨丞琳+王心凌-匿名的朋友,http://em.21dtv.com/songs/60109446.mkv +杨丞琳+王心凌-匿名的好友,http://em.21dtv.com/songs/60107810.mkv +杨丞琳-匿名的好友,http://em.21dtv.com/songs/60032613.mkv +杨西成-农民的儿子,http://em.21dtv.com/songs/60077014.mkv +琦峰-你们的城市,http://em.21dtv.com/songs/60106153.mkv +黄义达-匿名的宝贝,http://em.21dtv.com/songs/60032612.mkv +王心凌-匿名的安慰,http://em.21dtv.com/songs/60072254.mkv +旺姆-纳木错情歌,http://em.21dtv.com/songs/60118623.mkv +赞拉龙儿-纳木措情歌,http://em.21dtv.com/songs/60098786.mkv +巴桑拉姆-纳木措恋人,http://em.21dtv.com/songs/60081841.mkv +周逸涵-柠檬草戒指,http://em.21dtv.com/songs/60066207.mkv +吉狄康帅-农民伯伯说,http://em.21dtv.com/songs/60032756.mkv +施文彬-你嘛帮帮忙,http://em.21dtv.com/songs/60031905.mkv +BY2-你没爱过我,http://em.21dtv.com/songs/60114326.mkv +佚名-鸟来追想曲,http://em.21dtv.com/songs/60032675.mkv +卓依婷-牛郎织女情,http://em.21dtv.com/songs/60089183.mkv +尹相杰-牛郎织女情,http://em.21dtv.com/songs/60032728.mkv +丁维伟-努力再努力,http://em.21dtv.com/songs/60086744.mkv +张迈-你来自何方,http://em.21dtv.com/songs/60070991.mkv +许景淳-你来自何方,http://em.21dtv.com/songs/60031881.mkv +张华-牛郎想织女(演唱会),http://em.21dtv.com/songs/60032726.mkv +梅艳芳-你留我在此,http://em.21dtv.com/songs/60031903.mkv +黄凯芹-你留我在此(演唱会),http://em.21dtv.com/songs/60031902.mkv +林忆莲-你令我性感(演唱会),http://em.21dtv.com/songs/60031901.mkv +茸芭莘那-娜鲁湾情歌,http://em.21dtv.com/songs/60111377.mkv +阿鲁阿卓+程琳-娜鲁湾情歌,http://em.21dtv.com/songs/60098839.mkv +张行-娜鲁湾情歌,http://em.21dtv.com/songs/60091154.mkv +黄英-娜鲁湾情歌,http://em.21dtv.com/songs/60089058.mkv +群星-娜鲁湾情歌(演唱会),http://em.21dtv.com/songs/60030860.mkv +黄英-娜鲁弯情歌,http://em.21dtv.com/songs/60030859.mkv +卓依婷-那鲁湾情歌,http://em.21dtv.com/songs/60030724.mkv +许冠杰-那里是吾家,http://em.21dtv.com/songs/60030722.mkv +韩东根-那里是哪里,http://em.21dtv.com/songs/60130876.mkv +LEANN RIMES-nothin bout love makes sense,http://em.21dtv.com/songs/60004168.mkv +康康-你老母卡好,http://em.21dtv.com/songs/60031884.mkv +杨林-尼罗河女儿,http://em.21dtv.com/songs/60031352.mkv +雷一鸣+苏莹惠-你来花就开,http://em.21dtv.com/songs/60120118.mkv +陈雅森-你来过这里,http://em.21dtv.com/songs/60127567.mkv +布仁巴雅尔-努力格日玛,http://em.21dtv.com/songs/60091014.mkv +新街口组合-你来过北京,http://em.21dtv.com/songs/60105096.mkv +张学友-你冷得像风,http://em.21dtv.com/songs/60031888.mkv +周杰伦-哪里都是你,http://em.21dtv.com/songs/60076773.mkv +王熹蛮-你弄丢了我,http://em.21dtv.com/songs/60103455.mkv +郑中基-那里出了错(演唱会),http://em.21dtv.com/songs/60030720.mkv +杨东伟-你可知珍贵,http://em.21dtv.com/songs/60131520.mkv +邓卓轩-宁可信其有,http://em.21dtv.com/songs/60130784.mkv +谢霆锋-你看我看你,http://em.21dtv.com/songs/60031851.mkv +谢霆锋-你看我看你(演唱会),http://em.21dtv.com/songs/60031850.mkv +张雨生-宁可让我苦,http://em.21dtv.com/songs/60032690.mkv +司徒兰芳-你快乐就好,http://em.21dtv.com/songs/60116619.mkv +冷漠-你快乐就好,http://em.21dtv.com/songs/60115017.mkv +钟欣桐-你看得见吗,http://em.21dtv.com/songs/60031847.mkv +莫文蔚-那可不一定,http://em.21dtv.com/songs/60030718.mkv +苏有朋-你快不快乐,http://em.21dtv.com/songs/60031864.mkv +苏有朋-你快不快乐(演唱会),http://em.21dtv.com/songs/60031863.mkv +刘雨潼+杨承熹+赵谨俨+朱晨辰-那就这样吧,http://em.21dtv.com/songs/60085489.mkv +动力火车-那就这样吧,http://em.21dtv.com/songs/60030716.mkv +CLOSER-你就在身边,http://em.21dtv.com/songs/60070989.mkv +李娜-你家在哪里,http://em.21dtv.com/songs/60031815.mkv +李娜-你家在哪里(演唱会),http://em.21dtv.com/songs/60031814.mkv +黄乙玲-你就要幸福,http://em.21dtv.com/songs/60031842.mkv +许志安-你教我两度(演唱会),http://em.21dtv.com/songs/60031823.mkv +沉菁-南京我爱你,http://em.21dtv.com/songs/60076834.mkv +叶倩文-你今天要走,http://em.21dtv.com/songs/60031825.mkv +叶倩文-你今天要走(演唱会),http://em.21dtv.com/songs/60031824.mkv +苹果姐姐-南极特快车(无原唱),http://em.21dtv.com/songs/60031117.mkv +谭晶-你就是英雄,http://em.21dtv.com/songs/60076923.mkv +金波-你就是英雄(演唱会),http://em.21dtv.com/songs/60031840.mkv +张镐哲-你就是阳光,http://em.21dtv.com/songs/60031839.mkv +七朵花+K ONE-你就是唯一,http://em.21dtv.com/songs/60083514.mkv +吴莫愁+Gala-你就是梦想,http://em.21dtv.com/songs/60111759.mkv +寒月-那就算了吧,http://em.21dtv.com/songs/60076782.mkv +梁咏琪-你救哪一个,http://em.21dtv.com/songs/60031830.mkv +梁咏琪-你救哪一个(演唱会),http://em.21dtv.com/songs/60031829.mkv +TWINS-你讲你爱我,http://em.21dtv.com/songs/60031818.mkv +TWINS+AT17-你讲你爱我(演唱会),http://em.21dtv.com/songs/60031817.mkv +郑晓填-你拒绝了我,http://em.21dtv.com/songs/60135814.mkv +辉星-那家伙来了,http://em.21dtv.com/songs/60066166.mkv +蔡义德-你讲好不好,http://em.21dtv.com/songs/60095887.mkv +费翔-宁静的夜晚,http://em.21dtv.com/songs/60032687.mkv +许志安-你决定就好,http://em.21dtv.com/songs/60031843.mkv +村根-怒江的回声,http://em.21dtv.com/songs/60093795.mkv +胡斌-那家的姑娘,http://em.21dtv.com/songs/60076779.mkv +傲艺-你还在心上,http://em.21dtv.com/songs/60112518.mkv +TAE-男孩追女孩,http://em.21dtv.com/songs/60090443.mkv +安又琪-你好周杰伦,http://em.21dtv.com/songs/60031778.mkv +阿生-你好周杰伦,http://em.21dtv.com/songs/60031777.mkv +戚薇-你好 再见,http://em.21dtv.com/songs/60122776.mkv +再见,http://em.21dtv.com/songs/60108527.mkv +安心亚-女孩站出来,http://em.21dtv.com/songs/60104053.mkv +梁静茹-你还在不在,http://em.21dtv.com/songs/60031754.mkv +王筝-你还要什么,http://em.21dtv.com/songs/60121941.mkv +洪辰-女孩学摇滚,http://em.21dtv.com/songs/60071013.mkv +阿毛-你会想我吗,http://em.21dtv.com/songs/60062198.mkv +李琳-你会幸福的,http://em.21dtv.com/songs/60031809.mkv +李绪杰-你好我正好,http://em.21dtv.com/songs/60121781.mkv +动力火车-你和我一样,http://em.21dtv.com/songs/60090738.mkv +钱澄-你乎我心碎,http://em.21dtv.com/songs/60062827.mkv +信-你好我就好,http://em.21dtv.com/songs/60083511.mkv +大大朋-你和我的爱,http://em.21dtv.com/songs/60031782.mkv +苏来-你还是走吧(无原唱),http://em.21dtv.com/songs/60031750.mkv +叶振棠-南海十三郎,http://em.21dtv.com/songs/60092434.mkv +紫薇-你还是没变(演唱会),http://em.21dtv.com/songs/60068536.mkv +刘伟仁-你还是乱说(无原唱),http://em.21dtv.com/songs/60031747.mkv +郭峰-你还是爱我,http://em.21dtv.com/songs/60090268.mkv +乐缤灵+韦小天-那画面太美,http://em.21dtv.com/songs/60105552.mkv +江思静+李晟-你好历史君,http://em.21dtv.com/songs/60122942.mkv +欧阳辉-你好刘若英,http://em.21dtv.com/songs/60061453.mkv +VaVa-你很Low,http://em.21dtv.com/songs/60106562.mkv +H2K-你好00后,http://em.21dtv.com/songs/60116454.mkv +曹芙嘉-南湖菱花开,http://em.21dtv.com/songs/60102296.mkv +张卫华-你好 近平,http://em.21dtv.com/songs/60109300.mkv +庄心妍-你好久没来,http://em.21dtv.com/songs/60133634.mkv +庄心妍-你好久没来,http://em.21dtv.com/songs/60118543.mkv +刘雅丽-你会渐明白,http://em.21dtv.com/songs/60031808.mkv +毛宁-你回家了吗(演唱会),http://em.21dtv.com/songs/60031796.mkv +海华-你好杰克逊,http://em.21dtv.com/songs/60106075.mkv +唐越-女孩救救我,http://em.21dtv.com/songs/60032867.mkv +权振东-你还记得吗,http://em.21dtv.com/songs/60103347.mkv +金润吉-你还记得吗,http://em.21dtv.com/songs/60100525.mkv +时悦宸-你还记得吗,http://em.21dtv.com/songs/60076920.mkv +谭鹏飞-你还记得吗,http://em.21dtv.com/songs/60066185.mkv +徐怀钰-你还记得吗,http://em.21dtv.com/songs/60031740.mkv +东来东往-你会恨我吗,http://em.21dtv.com/songs/60090474.mkv +东东-你会恨我吗,http://em.21dtv.com/songs/60089583.mkv +王巧-你好花木兰,http://em.21dtv.com/songs/60103442.mkv +孔雀哥哥-你会回来吗,http://em.21dtv.com/songs/60106759.mkv +胡夏-你好灰姑娘,http://em.21dtv.com/songs/60131742.mkv +S.H.E-你还好不好,http://em.21dtv.com/songs/60031738.mkv +S.H.E-女孩当自强,http://em.21dtv.com/songs/60032862.mkv +姜洋-你画的彩虹,http://em.21dtv.com/songs/60031795.mkv +余天-怒吼的爱情,http://em.21dtv.com/songs/60032791.mkv +朱小磊-你好陈水扁,http://em.21dtv.com/songs/60076916.mkv +江美琪-你会不会变,http://em.21dtv.com/songs/60031802.mkv +袁惜君-你还爱着她,http://em.21dtv.com/songs/60107201.mkv +乔洋-你还爱着他,http://em.21dtv.com/songs/60031736.mkv +蔡秋凤-哪会爱着你(无原唱),http://em.21dtv.com/songs/60030661.mkv +姜玉阳-你还爱我吗,http://em.21dtv.com/songs/60102100.mkv +海威-你还爱我吗,http://em.21dtv.com/songs/60098585.mkv +樊凡-你还爱我吗,http://em.21dtv.com/songs/60085518.mkv +SARA-你还爱我吗,http://em.21dtv.com/songs/60076918.mkv +姚剑-你会爱我吗,http://em.21dtv.com/songs/60061455.mkv +王冠-你还爱我吗,http://em.21dtv.com/songs/60031735.mkv +蔡依林-你还爱我吗,http://em.21dtv.com/songs/60031734.mkv +杨千嬅-你还爱我吗(演唱会),http://em.21dtv.com/songs/60031733.mkv +黄耀明+容祖儿-你还爱我吗(演唱会),http://em.21dtv.com/songs/60031732.mkv +达明一派-你还爱我吗(演唱会),http://em.21dtv.com/songs/60031731.mkv +张琼瑶-你还爱我吗(无原唱),http://em.21dtv.com/songs/60031730.mkv +卡拉OK-你会爱上它,http://em.21dtv.com/songs/60090769.mkv +汪子琳-哪会爱别人(无原唱),http://em.21dtv.com/songs/60030660.mkv +S.H.E-你该怎么办,http://em.21dtv.com/songs/60090418.mkv +邱淑君-你甘有想我,http://em.21dtv.com/songs/60031706.mkv +办桌二人组-你甘有听见,http://em.21dtv.com/songs/60070986.mkv +罗时丰-你咁有块听,http://em.21dtv.com/songs/60031756.mkv +罗时丰-你甘有块听,http://em.21dtv.com/songs/60031705.mkv +陈建颖-你给我自信,http://em.21dtv.com/songs/60031726.mkv +张碧晨-你给我听好,http://em.21dtv.com/songs/60135229.mkv +陈奕迅-你给我听好[替换],http://em.21dtv.com/songs/60101193.mkv +陈奕迅-你给我听好,http://em.21dtv.com/songs/60100570.mkv +江若琳-你给我力量,http://em.21dtv.com/songs/60066184.mkv +群星-你给我记住,http://em.21dtv.com/songs/60031724.mkv +李佳薇-你敢我就敢,http://em.21dtv.com/songs/60124057.mkv +李佳薇-你敢我就敢,http://em.21dtv.com/songs/60122832.mkv +乐桐-你给我的爱,http://em.21dtv.com/songs/60085515.mkv +毕书尽-你给我的爱,http://em.21dtv.com/songs/60080087.mkv +EVER-Never Give Up Our Dream,http://em.21dtv.com/songs/60080884.mkv +王博文-那个他是我,http://em.21dtv.com/songs/60105244.mkv +解小伟-那根藤缠树,http://em.21dtv.com/songs/60108002.mkv +佚名-nothings gonna stop us now,http://em.21dtv.com/songs/60004186.mkv +罗忆诗-那个人是你,http://em.21dtv.com/songs/60113939.mkv +佚名-never gonna let you go,http://em.21dtv.com/songs/60004067.mkv +赖伟锋-闹够了没有,http://em.21dtv.com/songs/60076854.mkv +詹雅雯-你过了好否(无原唱),http://em.21dtv.com/songs/60031729.mkv +蔡小虎-你搁卡无情,http://em.21dtv.com/songs/60031711.mkv +林淑鹃-那个就是我,http://em.21dtv.com/songs/60091487.mkv +江志丰-你甘会知影,http://em.21dtv.com/songs/60069657.mkv +江蕙-你甘会想阮,http://em.21dtv.com/songs/60083508.mkv +RICK ASTLEY-never gonna give you up(无原唱),http://em.21dtv.com/songs/60004066.mkv +翁立友-念歌给你听,http://em.21dtv.com/songs/60122024.mkv +媚焱森森-你给的拥抱,http://em.21dtv.com/songs/60031717.mkv +王馨-你给的幸福,http://em.21dtv.com/songs/60119835.mkv +赵颖-你给的温柔,http://em.21dtv.com/songs/60117263.mkv +小陆-你给的伤痕,http://em.21dtv.com/songs/60110165.mkv +宋孟君-你给的伤悲,http://em.21dtv.com/songs/60135124.mkv +晓月-凝固的伤悲,http://em.21dtv.com/songs/60100086.mkv +苗圃-你给的坚强,http://em.21dtv.com/songs/60031715.mkv +张悬-南国的孩子,http://em.21dtv.com/songs/60031100.mkv +歪小九-你过得好吗,http://em.21dtv.com/songs/60070987.mkv +薛之谦-你过得好吗,http://em.21dtv.com/songs/60031728.mkv +何嘉深-你给的故事,http://em.21dtv.com/songs/60131162.mkv +小刚-你给的答案,http://em.21dtv.com/songs/60090981.mkv +周传雄-你给的答案,http://em.21dtv.com/songs/60090823.mkv +佚名-nothings gonna change my love,http://em.21dtv.com/songs/60004185.mkv +佚名-nothing gonna change my love,http://em.21dtv.com/songs/60004176.mkv +门丽+阿郎-那个不眠夜,http://em.21dtv.com/songs/60070964.mkv +华娃-哪个不多情(演唱会),http://em.21dtv.com/songs/60083448.mkv +蔡幸娟-那个不多情,http://em.21dtv.com/songs/60030692.mkv +费玉清-那个不多情(演唱会),http://em.21dtv.com/songs/60030691.mkv +姚莉-哪个不多情,http://em.21dtv.com/songs/60030659.mkv +费玉清-哪个不多情,http://em.21dtv.com/songs/60030658.mkv +高娅媛-能够爱多久,http://em.21dtv.com/songs/60031347.mkv +姜育恒-难付也难收,http://em.21dtv.com/songs/60031218.mkv +马兆骏-奶粉与便当,http://em.21dtv.com/songs/60030868.mkv +崔天琪+彭泓鸣-你飞哪去啦,http://em.21dtv.com/songs/60099210.mkv +萧敬腾+肖懿航-怒放的生命,http://em.21dtv.com/songs/60094672.mkv +沈根龙-怒放的生命,http://em.21dtv.com/songs/60083557.mkv +汪峰-怒放的生命,http://em.21dtv.com/songs/60032788.mkv +汪峰-怒放的生命(演唱会),http://em.21dtv.com/songs/60032787.mkv +弦子-逆风的蔷薇,http://em.21dtv.com/songs/60064664.mkv +小刚-南风北极雪,http://em.21dtv.com/songs/60087705.mkv +龙影云-男儿要自强,http://em.21dtv.com/songs/60110467.mkv +MAROON 5-Never Gonna Leave This Bed,http://em.21dtv.com/songs/60100737.mkv +许志安-男儿当自强,http://em.21dtv.com/songs/60118907.mkv +吴子安-男儿当自强,http://em.21dtv.com/songs/60110925.mkv +佚名-男儿的志气,http://em.21dtv.com/songs/60030897.mkv +沈文程-男儿的志气,http://em.21dtv.com/songs/60030896.mkv +张真-男儿当自强,http://em.21dtv.com/songs/60030890.mkv +林子祥-男儿当自强,http://em.21dtv.com/songs/60030889.mkv +郑中基-男儿当自强(演唱会),http://em.21dtv.com/songs/60030888.mkv +林子祥-男儿当自强(演唱会),http://em.21dtv.com/songs/60030887.mkv +成龙-男儿当自强(演唱会),http://em.21dtv.com/songs/60030886.mkv +何超与海胆仔-哪儿都一样,http://em.21dtv.com/songs/60106597.mkv +沈文程-男儿的心声,http://em.21dtv.com/songs/60030895.mkv +陈雷-男儿的心声,http://em.21dtv.com/songs/60030894.mkv +佚名-男儿的心情,http://em.21dtv.com/songs/60030893.mkv +叶启田-男儿的心情,http://em.21dtv.com/songs/60030892.mkv +叶民志-男儿当娶某,http://em.21dtv.com/songs/60078652.mkv +[Group] +groupName=十六万歌曲MV等 - 73 +蔡丽津-女儿的牵挂,http://em.21dtv.com/songs/60124435.mkv +陈一郎-男儿的苦衷,http://em.21dtv.com/songs/60030891.mkv +老狼-鸟儿的幻想,http://em.21dtv.com/songs/60032673.mkv +杨柳-女儿的呼唤,http://em.21dtv.com/songs/60088075.mkv +黄品源-你都在身边,http://em.21dtv.com/songs/60031692.mkv +张智霖+许秋怡-难得有情人,http://em.21dtv.com/songs/60109310.mkv +摇滚高天-难得有情人,http://em.21dtv.com/songs/60101355.mkv +郑融-难得有情人,http://em.21dtv.com/songs/60093328.mkv +草蜢-难得有情人(演唱会),http://em.21dtv.com/songs/60076846.mkv +张茵-难得有情人,http://em.21dtv.com/songs/60031208.mkv +关淑怡-难得有情人,http://em.21dtv.com/songs/60031207.mkv +朱咪咪-难得有情人(演唱会),http://em.21dtv.com/songs/60031206.mkv +关淑怡-难得有情人(演唱会),http://em.21dtv.com/songs/60031205.mkv +陈少华-难得有朋友,http://em.21dtv.com/songs/60076845.mkv +张若玉-你导演的戏,http://em.21dtv.com/songs/60076881.mkv +龙梅子+老猫-女大要出嫁,http://em.21dtv.com/songs/60083558.mkv +曾春年-你的心太野,http://em.21dtv.com/songs/60111140.mkv +范萱蔚-你的小天使,http://em.21dtv.com/songs/60031627.mkv +大哲-你的心太狠,http://em.21dtv.com/songs/60031642.mkv +伊雪-你的香水味,http://em.21dtv.com/songs/60114991.mkv +关楚耀-你当我甚么,http://em.21dtv.com/songs/60092314.mkv +关楚耀-你当我什么,http://em.21dtv.com/songs/60031526.mkv +关楚耀-你当我什么(演唱会),http://em.21dtv.com/songs/60031525.mkv +武艺-你懂我就好,http://em.21dtv.com/songs/60120685.mkv +褚桐羽-你对我的好,http://em.21dtv.com/songs/60135723.mkv +禇桐羽-你对我的好,http://em.21dtv.com/songs/60121977.mkv +伊能静-你对我的好,http://em.21dtv.com/songs/60031696.mkv +孙楠-你对我的好(演唱会),http://em.21dtv.com/songs/60031695.mkv +章子怡+黎明-你懂我的爱,http://em.21dtv.com/songs/60031689.mkv +蔡旻佑+天心-女大田力小,http://em.21dtv.com/songs/60077016.mkv +金志轩-你对他的好,http://em.21dtv.com/songs/60072234.mkv +苏永康-你对他的好,http://em.21dtv.com/songs/60031693.mkv +杨丹-你都听不到,http://em.21dtv.com/songs/60118698.mkv +范伟+赵本山-牛大叔提干,http://em.21dtv.com/songs/60090184.mkv +叶倩文-难得是今晚,http://em.21dtv.com/songs/60031202.mkv +吴瑶-女大十八变,http://em.21dtv.com/songs/60105698.mkv +郑秀文-你的前半生,http://em.21dtv.com/songs/60093300.mkv +邰正宵-男懂女人心,http://em.21dtv.com/songs/60083468.mkv +张心杰-难道你不懂,http://em.21dtv.com/songs/60089859.mkv +爱朵女孩-你的烂借口,http://em.21dtv.com/songs/60076892.mkv +乔洋-你的烂借口,http://em.21dtv.com/songs/60031572.mkv +许茹芸-难得好天气,http://em.21dtv.com/songs/60031195.mkv +罗桦-你到底爱谁(演唱会),http://em.21dtv.com/songs/60076882.mkv +小蜻蜓-你到底爱谁,http://em.21dtv.com/songs/60031531.mkv +刘嘉亮-你到底爱谁,http://em.21dtv.com/songs/60031530.mkv +十二星宿风之少年-脑洞超级大,http://em.21dtv.com/songs/60134950.mkv +黎明-你都不爱我,http://em.21dtv.com/songs/60031690.mkv +佚名-难得啊相逢,http://em.21dtv.com/songs/60031194.mkv +张虎-你的爱太贵,http://em.21dtv.com/songs/60094900.mkv +郭欢-你从未走远,http://em.21dtv.com/songs/60118104.mkv +白挺-你从未离去,http://em.21dtv.com/songs/60109553.mkv +那英-你从未离开,http://em.21dtv.com/songs/60031519.mkv +肖洋+王栎鑫+董子健-你曾是少年,http://em.21dtv.com/songs/60126079.mkv +S.H.E-你曾是少年,http://em.21dtv.com/songs/60110793.mkv +好妹妹乐队-你曾是少年,http://em.21dtv.com/songs/60094040.mkv +陈大天-暖场男朋友,http://em.21dtv.com/songs/60127544.mkv +陈大天-暖场男朋友,http://em.21dtv.com/songs/60126375.mkv +都市苍狼-你从哪里来,http://em.21dtv.com/songs/60111456.mkv +黄征-你从哪里来,http://em.21dtv.com/songs/60080583.mkv +爱乐团-拿出你的爱(演唱会),http://em.21dtv.com/songs/60030651.mkv +堂娜-你从来不懂,http://em.21dtv.com/songs/60031517.mkv +宋孟君+宝蓝-你曾对我说,http://em.21dtv.com/songs/60104948.mkv +老狼-弄错的车站,http://em.21dtv.com/songs/60032775.mkv +龙梅子+老猫-牛叉本命年,http://em.21dtv.com/songs/60108199.mkv +王紫璇-你曾爱的人,http://em.21dtv.com/songs/60129413.mkv +高安-你抱着我哭,http://em.21dtv.com/songs/60083491.mkv +胡丹丹-你不在身边,http://em.21dtv.com/songs/60076878.mkv +董贞-你不在秋天,http://em.21dtv.com/songs/60076877.mkv +杜德伟-你不再孤单,http://em.21dtv.com/songs/60085512.mkv +舒心翼语-你不在的夜,http://em.21dtv.com/songs/60031505.mkv +寒武纪-你不知道我,http://em.21dtv.com/songs/60116734.mkv +亦帆-你不准爱我,http://em.21dtv.com/songs/60125091.mkv +亦帆-你不准爱我,http://em.21dtv.com/songs/60117541.mkv +蔡妍-你不再爱我,http://em.21dtv.com/songs/60080434.mkv +陈百强-南北一家亲(演唱会),http://em.21dtv.com/songs/60031082.mkv +威仔-你不用多说,http://em.21dtv.com/songs/60128951.mkv +吴奇隆-你不惜爱我,http://em.21dtv.com/songs/60031498.mkv +大海-你把我忘记,http://em.21dtv.com/songs/60131306.mkv +佚名-你比我清楚(无原唱),http://em.21dtv.com/songs/60031438.mkv +不和陌生人说话的狐狸爸爸-你把我灌醉,http://em.21dtv.com/songs/60127696.mkv +郭宴-你把我灌醉,http://em.21dtv.com/songs/60135823.mkv +黄大炜-你把我灌醉,http://em.21dtv.com/songs/60134494.mkv +沙宝亮+黄绮珊-你把我灌醉,http://em.21dtv.com/songs/60098570.mkv +尹熙水-你把我灌醉,http://em.21dtv.com/songs/60083489.mkv +谭锡禧-你把我灌醉(演唱会),http://em.21dtv.com/songs/60083488.mkv +许明明-你把我灌醉,http://em.21dtv.com/songs/60081221.mkv +李泉-你把我灌醉,http://em.21dtv.com/songs/60080626.mkv +邓紫棋-你把我灌醉,http://em.21dtv.com/songs/60080488.mkv +黄大炜+张赫宣-你把我灌醉,http://em.21dtv.com/songs/60076867.mkv +关喆-你把我灌醉,http://em.21dtv.com/songs/60076866.mkv +罗力威-你把我灌醉(演唱会),http://em.21dtv.com/songs/60076865.mkv +沙宝亮-你把我灌醉,http://em.21dtv.com/songs/60076864.mkv +张赫宣-你把我灌醉,http://em.21dtv.com/songs/60069648.mkv +王杰-你把我灌醉,http://em.21dtv.com/songs/60031430.mkv +梅艳芳-你把我灌醉,http://em.21dtv.com/songs/60031429.mkv +刘德华-你把我灌醉,http://em.21dtv.com/songs/60031428.mkv +黄小琥-你把我灌醉,http://em.21dtv.com/songs/60031427.mkv +黄大炜-你把我灌醉,http://em.21dtv.com/songs/60031426.mkv +陈奕迅-你把我灌醉(HD演唱会),http://em.21dtv.com/songs/60031425.mkv +山野-你把我逼疯,http://em.21dtv.com/songs/60031421.mkv +朱雅+小焦-你不是王子,http://em.21dtv.com/songs/60070982.mkv +王秀琪-你不是唯一,http://em.21dtv.com/songs/60124272.mkv +胡兵-你不是我的,http://em.21dtv.com/songs/60031489.mkv +赵芬妮-你不是天使(无原唱),http://em.21dtv.com/songs/60031487.mkv +吴易轩-你不认识我,http://em.21dtv.com/songs/60031483.mkv +张平-你背叛了我,http://em.21dtv.com/songs/60130308.mkv +吴琼-你背叛了我,http://em.21dtv.com/songs/60099143.mkv +小宋佳-能不能幸福,http://em.21dtv.com/songs/60087713.mkv +克丽丝叮-你不能了解,http://em.21dtv.com/songs/60105609.mkv +牛奶咖啡-你不能爱我,http://em.21dtv.com/songs/60070981.mkv +韩磊+刘婕-你变了没有,http://em.21dtv.com/songs/60031442.mkv +张然聍-你不了解我,http://em.21dtv.com/songs/60106858.mkv +Kent王健-你不了解我,http://em.21dtv.com/songs/60097578.mkv +韩雪-你不会知道,http://em.21dtv.com/songs/60031478.mkv +张煜枫-你不会了解,http://em.21dtv.com/songs/60133677.mkv +谢霆锋-你不会了解,http://em.21dtv.com/songs/60031477.mkv +韩红-你不会回来,http://em.21dtv.com/songs/60031476.mkv +韩红-你不会回来(演唱会),http://em.21dtv.com/songs/60031475.mkv +黎明-你不会孤单,http://em.21dtv.com/songs/60031474.mkv +孙苗苗-你不会懂得,http://em.21dtv.com/songs/60097579.mkv +佚名-你不会不懂(无原唱),http://em.21dtv.com/songs/60031471.mkv +罗映庭-你不会不懂(无原唱),http://em.21dtv.com/songs/60031470.mkv +CELINE DION-nothing broken but my heart,http://em.21dtv.com/songs/60004171.mkv +东来东往-你帮不了我,http://em.21dtv.com/songs/60076869.mkv +张斯斯-你不必回头,http://em.21dtv.com/songs/60072226.mkv +林峰-你并不孤单,http://em.21dtv.com/songs/60076872.mkv +BY2-你并不懂我,http://em.21dtv.com/songs/60068526.mkv +郭斯炫-你不必多说,http://em.21dtv.com/songs/60085510.mkv +方炯镔-你不必爱我,http://em.21dtv.com/songs/60031452.mkv +袁咏琳-你不爱我了,http://em.21dtv.com/songs/60031451.mkv +朱铭捷-你把爱搁浅,http://em.21dtv.com/songs/60076861.mkv +洪荣宏-你爱相信我,http://em.21dtv.com/songs/60031412.mkv +张卫健-你爱我像谁(演唱会),http://em.21dtv.com/songs/60083487.mkv +张卫健-你爱我像谁,http://em.21dtv.com/songs/60031411.mkv +叶全-你爱我像谁,http://em.21dtv.com/songs/60031410.mkv +黎瑞恩-你爱我什么,http://em.21dtv.com/songs/60031409.mkv +许志安-你爱我几多,http://em.21dtv.com/songs/60031400.mkv +张俊天-你爱他更多,http://em.21dtv.com/songs/60113452.mkv +张义杰-你爱上了谁,http://em.21dtv.com/songs/60067268.mkv +张智成-你爱上的我(演唱会),http://em.21dtv.com/songs/60064614.mkv +周柏豪-拿爱情给我,http://em.21dtv.com/songs/60076770.mkv +熊照华-你爱哪一个,http://em.21dtv.com/songs/60124229.mkv +Christopher-Naked,http://em.21dtv.com/songs/60134656.mkv +王雪-你爱过我吗,http://em.21dtv.com/songs/60031386.mkv +姜华-你爱过我吗,http://em.21dtv.com/songs/60031385.mkv +王力宏-你爱过没有(演唱会),http://em.21dtv.com/songs/60031384.mkv +佚名-你爱不爱我,http://em.21dtv.com/songs/60031374.mkv +Pixie Lott-Nasty,http://em.21dtv.com/songs/60103702.mkv +庄振凯+戴梅君-梦中再相会,http://em.21dtv.com/songs/60076697.mkv +刘佳轩-梦中再相会,http://em.21dtv.com/songs/60029833.mkv +张惠妹+阿密特-梦中做憨人,http://em.21dtv.com/songs/60064978.mkv +张惠妹-梦中作憨人,http://em.21dtv.com/songs/60029837.mkv +丁之文-梦在杨柳岸,http://em.21dtv.com/songs/60099711.mkv +阿吉仔-梦中也爱你(无原唱),http://em.21dtv.com/songs/60029830.mkv +门丽-梦中想着你,http://em.21dtv.com/songs/60069612.mkv +MC HOTDOG-马祖小夜曲(演唱会),http://em.21dtv.com/songs/60076562.mkv +张雷-毛主席语录,http://em.21dtv.com/songs/60106872.mkv +张冬玲-毛主席语录,http://em.21dtv.com/songs/60061400.mkv +冷漠-毛主席语录,http://em.21dtv.com/songs/60028687.mkv +周艳泓-毛主席万岁,http://em.21dtv.com/songs/60090849.mkv +榭霖-梦中香巴拉,http://em.21dtv.com/songs/60106047.mkv +龚芝怡-明知我爱你,http://em.21dtv.com/songs/60067242.mkv +颜力妃-忙着说再见,http://em.21dtv.com/songs/60130893.mkv +梅朵-梦醉三千年,http://em.21dtv.com/songs/60117875.mkv +凤凰传奇-瞄着你就爱,http://em.21dtv.com/songs/60134919.mkv +陈小云-梦在你怀中,http://em.21dtv.com/songs/60029753.mkv +陈冠希-mr sandman造梦先生,http://em.21dtv.com/songs/60003930.mkv +于小磊-妹子美美哒,http://em.21dtv.com/songs/60125082.mkv +马晨光-梦中蓝月亮,http://em.21dtv.com/songs/60029798.mkv +文奎+斯琴高丽-摸着良心说,http://em.21dtv.com/songs/60087908.mkv +陈盈洁-母子俩姐妹(无原唱),http://em.21dtv.com/songs/60096029.mkv +刘宇轩-麦哲伦船长,http://em.21dtv.com/songs/60123674.mkv +龙千玉+翁立友-梦中来安慰,http://em.21dtv.com/songs/60029797.mkv +大巴山民歌团-美在九重山,http://em.21dtv.com/songs/60132328.mkv +林俊吉+李依婷-梦中解心苦(无原唱),http://em.21dtv.com/songs/60029796.mkv +王莱-梦中讲情话,http://em.21dtv.com/songs/60104316.mkv +孙淑媚-目睭金金看,http://em.21dtv.com/songs/60030598.mkv +新浪秀才哥-梦中还有你,http://em.21dtv.com/songs/60085467.mkv +洛桑尖措-梦中的卓玛,http://em.21dtv.com/songs/60066152.mkv +周桐同-梦中的卓玛,http://em.21dtv.com/songs/60029792.mkv +储兰兰-妈祖的祝福(演唱会),http://em.21dtv.com/songs/60076545.mkv +谢莉婷-梦中的形影,http://em.21dtv.com/songs/60029791.mkv +佚名-梦中的小屋,http://em.21dtv.com/songs/60029790.mkv +陈美凤-梦中的相思,http://em.21dtv.com/songs/60029788.mkv +林俊吉-梦中的新娘,http://em.21dtv.com/songs/60127098.mkv +陈淑萍-梦中的新娘,http://em.21dtv.com/songs/60083406.mkv +牛妞-梦中的天堂,http://em.21dtv.com/songs/60113834.mkv +朱文-梦中的天堂,http://em.21dtv.com/songs/60029786.mkv +蔡小虎-梦中的探戈,http://em.21dtv.com/songs/60029785.mkv +蒋婴+王觉-梦中的情缘,http://em.21dtv.com/songs/60128370.mkv +黄乙玲-梦中的情网,http://em.21dtv.com/songs/60029783.mkv +龙千玉+蔡小虎-梦中的情人,http://em.21dtv.com/songs/60029782.mkv +江蕙+阿杜-梦中的情话,http://em.21dtv.com/songs/60029781.mkv +徐承邦-妈祖的囝仔,http://em.21dtv.com/songs/60135284.mkv +蒋婴-梦中的男神,http://em.21dtv.com/songs/60114757.mkv +佚名-梦中的女孩,http://em.21dtv.com/songs/60029780.mkv +韩磊-梦中的母亲,http://em.21dtv.com/songs/60134445.mkv +黑子-梦中的妈妈,http://em.21dtv.com/songs/60129860.mkv +谭凌风-梦中的妈妈(演唱会),http://em.21dtv.com/songs/60083404.mkv +甄妮+MELODY-梦中的妈妈(演唱会),http://em.21dtv.com/songs/60029774.mkv +央金兰泽-梦中的绿洲,http://em.21dtv.com/songs/60123808.mkv +谭维维-梦中的绿洲,http://em.21dtv.com/songs/60095346.mkv +亚东-梦中的绿洲,http://em.21dtv.com/songs/60029773.mkv +瓦扎阿散-梦中的拉萨,http://em.21dtv.com/songs/60098660.mkv +王中平-梦找到了家,http://em.21dtv.com/songs/60091685.mkv +阿江-梦中的家园,http://em.21dtv.com/songs/60127533.mkv +孙榕-梦中的家园,http://em.21dtv.com/songs/60070935.mkv +蔡义德-买醉的借口,http://em.21dtv.com/songs/60069587.mkv +袁小迪-买醉的借口,http://em.21dtv.com/songs/60063309.mkv +苏勒亚其其格-梦中的胡杨,http://em.21dtv.com/songs/60085464.mkv +甲子蕙-梦中的红颜,http://em.21dtv.com/songs/60072200.mkv +刘欢-梦中的海湾,http://em.21dtv.com/songs/60076692.mkv +胡彦斌-梦中的婚礼,http://em.21dtv.com/songs/60102642.mkv +SARA-梦中的婚礼,http://em.21dtv.com/songs/60099697.mkv +江志丰+吴申梅-梦中的蝴蝶,http://em.21dtv.com/songs/60119751.mkv +刁寒-梦中的蝴蝶,http://em.21dtv.com/songs/60029772.mkv +唐冰冰-梦中的高原,http://em.21dtv.com/songs/60076691.mkv +邵大伦-梦中的故乡,http://em.21dtv.com/songs/60123231.mkv +邵大伦-梦中的故乡,http://em.21dtv.com/songs/60115448.mkv +金磊鑫-梦中的故乡,http://em.21dtv.com/songs/60081014.mkv +那仁朝格-梦中的姑娘,http://em.21dtv.com/songs/60111432.mkv +小壮-梦中的姑娘,http://em.21dtv.com/songs/60064555.mkv +荣联合-梦中的姑娘,http://em.21dtv.com/songs/60062870.mkv +余天助-命中的过客,http://em.21dtv.com/songs/60125130.mkv +朱虹-梦中的风铃,http://em.21dtv.com/songs/60029770.mkv +韩晓辉-梦中的风景,http://em.21dtv.com/songs/60117371.mkv +于全莉-梦中的风景,http://em.21dtv.com/songs/60116527.mkv +乌兰图雅-梦中的额吉,http://em.21dtv.com/songs/60134852.mkv +云飞-梦中的额吉,http://em.21dtv.com/songs/60111683.mkv +于海燕-梦中的额吉,http://em.21dtv.com/songs/60111679.mkv +巴特尔道尔吉-梦中的额吉,http://em.21dtv.com/songs/60087741.mkv +乌达木-梦中的额吉(演唱会),http://em.21dtv.com/songs/60061426.mkv +金悦-梦中的额吉,http://em.21dtv.com/songs/60029769.mkv +佚名-梦中的代志(无原唱),http://em.21dtv.com/songs/60029768.mkv +吴凡-梦中的地方,http://em.21dtv.com/songs/60131251.mkv +韩雷-梦中的草原,http://em.21dtv.com/songs/60126441.mkv +周鼎棋-梦中的草原,http://em.21dtv.com/songs/60122609.mkv +周鼎棋-梦中的草原,http://em.21dtv.com/songs/60103983.mkv +于海燕-梦中的草原,http://em.21dtv.com/songs/60070934.mkv +红蔷薇-梦中的窗台,http://em.21dtv.com/songs/60112139.mkv +洪荣宏+曹雅雯-梦中的爱人,http://em.21dtv.com/songs/60122957.mkv +洪荣宏+曹雅雯-梦中的爱人,http://em.21dtv.com/songs/60112075.mkv +洪荣宏-梦中的爱人,http://em.21dtv.com/songs/60111238.mkv +陈美安+陈建华-梦中的爱人,http://em.21dtv.com/songs/60029766.mkv +佚名-梦中的爱人(无原唱),http://em.21dtv.com/songs/60029765.mkv +世艺杨-梦中的爱情,http://em.21dtv.com/songs/60070933.mkv +佚名-梦中的爱情,http://em.21dtv.com/songs/60029764.mkv +黄乙玲+郑君威-麦做痴情人,http://em.21dtv.com/songs/60028449.mkv +金豆豆-明知不可以,http://em.21dtv.com/songs/60126306.mkv +欧阳袁源-梦醉爱情河,http://em.21dtv.com/songs/60072202.mkv +后弦-没有这首歌,http://em.21dtv.com/songs/60064516.mkv +王爱华-明月照秋还,http://em.21dtv.com/songs/60094603.mkv +林心如-每一种男生,http://em.21dtv.com/songs/60029106.mkv +佚名-明月照母心,http://em.21dtv.com/songs/60030254.mkv +黄凯芹-弥月醉巴黎(演唱会),http://em.21dtv.com/songs/60029851.mkv +小刚-没有一首歌,http://em.21dtv.com/songs/60087707.mkv +刘德华-木鱼与金鱼,http://em.21dtv.com/songs/60030583.mkv +刘德华-木鱼与金鱼(演唱会),http://em.21dtv.com/songs/60030582.mkv +乌兰托娅army-明月印草原,http://em.21dtv.com/songs/60109940.mkv +陈永龙-没有徐志摩,http://em.21dtv.com/songs/60114216.mkv +张茵+MC LORRY-乜野系恋爱,http://em.21dtv.com/songs/60032682.mkv +良山-梦游仙公庙,http://em.21dtv.com/songs/60029743.mkv +杨小萍-命运相创治(无原唱),http://em.21dtv.com/songs/60030308.mkv +谢霆锋-没有外套的ANGELLNA,http://em.21dtv.com/songs/60093193.mkv +周永恒-没有为你哭,http://em.21dtv.com/songs/60092484.mkv +思小妞-没有忘掉他,http://em.21dtv.com/songs/60091221.mkv +叶倩文-命运我操纵,http://em.21dtv.com/songs/60030307.mkv +叶倩文-命运我操纵(演唱会),http://em.21dtv.com/songs/60030306.mkv +什乐-每一天走过,http://em.21dtv.com/songs/60029103.mkv +张学友-没有童话时,http://em.21dtv.com/songs/60028889.mkv +张学友-没有童话时(演唱会),http://em.21dtv.com/songs/60028888.mkv +林姗-命运天安排,http://em.21dtv.com/songs/60131542.mkv +孙耀威-没有说再见,http://em.21dtv.com/songs/60061411.mkv +崔来宾-民以食为天,http://em.21dtv.com/songs/60129031.mkv +BEYOND-命运是你家(演唱会),http://em.21dtv.com/songs/60030305.mkv +刘博庆-没有人知道,http://em.21dtv.com/songs/60117577.mkv +佚名-没有人知道,http://em.21dtv.com/songs/60028879.mkv +李宗盛-没有人知道,http://em.21dtv.com/songs/60028878.mkv +张峰-没有人心疼,http://em.21dtv.com/songs/60028703.mkv +梁静茹-没有人像你,http://em.21dtv.com/songs/60076589.mkv +HEY ROMEO-maybe you remember me now,http://em.21dtv.com/songs/60073587.mkv +苏慧伦-没有人理我,http://em.21dtv.com/songs/60028875.mkv +林忆莲-没有人抽烟,http://em.21dtv.com/songs/60028866.mkv +佚名-mama yo quiero un novio,http://em.21dtv.com/songs/60003726.mkv +王宏健-没有权利爱,http://em.21dtv.com/songs/60107064.mkv +佚名2-命运青红灯,http://em.21dtv.com/songs/60030301.mkv +佚名1-命运青红灯,http://em.21dtv.com/songs/60030300.mkv +大支+MC HOTDOG-命运青红灯,http://em.21dtv.com/songs/60030299.mkv +罗钢-没有钱不行,http://em.21dtv.com/songs/60028848.mkv +卓依婷-牧羊女之恋,http://em.21dtv.com/songs/60087481.mkv +温兆伦-没有你之后,http://em.21dtv.com/songs/60028847.mkv +吴雨霏-没有那一天,http://em.21dtv.com/songs/60090816.mkv +PING-没有那一天,http://em.21dtv.com/songs/60090414.mkv +李浪-没有你以后,http://em.21dtv.com/songs/60086694.mkv +任和-没有你以后,http://em.21dtv.com/songs/60076587.mkv +马博-没有你以后,http://em.21dtv.com/songs/60028842.mkv +佚名-没有你伤心,http://em.21dtv.com/songs/60028837.mkv +俞灏明-没有那么帅,http://em.21dtv.com/songs/60028801.mkv +王安磊-没有你的夜,http://em.21dtv.com/songs/60135543.mkv +信乐团-没有你的夜,http://em.21dtv.com/songs/60083364.mkv +江风-没有你的夜,http://em.21dtv.com/songs/60080589.mkv +林佳仪-没有你的我,http://em.21dtv.com/songs/60028826.mkv +冯铭潮-没有你的天,http://em.21dtv.com/songs/60028825.mkv +詹采妮-没有你的memory(无原唱),http://em.21dtv.com/songs/60028810.mkv +郭富城-没有你的爱,http://em.21dtv.com/songs/60028811.mkv +羽泉-没有你不行,http://em.21dtv.com/songs/60091874.mkv +王菲-miss you night and day,http://em.21dtv.com/songs/60003841.mkv +阿吉仔-命运莫怨天,http://em.21dtv.com/songs/60030297.mkv +陶喆-每一面都美,http://em.21dtv.com/songs/60029097.mkv +左立-每一颗星辰,http://em.21dtv.com/songs/60103251.mkv +华语群星-每一颗星辰,http://em.21dtv.com/songs/60102000.mkv +婷婷-miss you就跳舞,http://em.21dtv.com/songs/60003844.mkv +林展逸-命运介输赢,http://em.21dtv.com/songs/60030296.mkv +潘秀琼-明月几时有,http://em.21dtv.com/songs/60030245.mkv +小雪-每一句说话,http://em.21dtv.com/songs/60029096.mkv +太极乐队-每一句说话,http://em.21dtv.com/songs/60029095.mkv +刘德华-每一句说话,http://em.21dtv.com/songs/60029094.mkv +邓建明-每一句说话(演唱会),http://em.21dtv.com/songs/60029093.mkv +佚名-没有家的人,http://em.21dtv.com/songs/60028792.mkv +中四舞曲-木鱼和金鱼,http://em.21dtv.com/songs/60090478.mkv +小宇-没有很会唱,http://em.21dtv.com/songs/60028788.mkv +佚名-每一个早上,http://em.21dtv.com/songs/60029092.mkv +伦永亮-每一个早上,http://em.21dtv.com/songs/60029091.mkv +佚名-某一个终点,http://em.21dtv.com/songs/60030504.mkv +林忆莲-某一个终点,http://em.21dtv.com/songs/60030503.mkv +谭锡禧-每一个晚上(演唱会),http://em.21dtv.com/songs/60083372.mkv +林子祥-每一个晚上,http://em.21dtv.com/songs/60029090.mkv +刘德华+林子祥-每一个晚上(演唱会),http://em.21dtv.com/songs/60029089.mkv +林子祥-每一个晚上(演唱会),http://em.21dtv.com/songs/60029088.mkv +黄凯芹-每一个晚上(演唱会),http://em.21dtv.com/songs/60029087.mkv +曹颖-每一个女人,http://em.21dtv.com/songs/60029084.mkv +陈奕迅-每一个明天,http://em.21dtv.com/songs/60029082.mkv +陈奕迅-每一个明天(演唱会),http://em.21dtv.com/songs/60029081.mkv +罗桦-每一个段落(演唱会),http://em.21dtv.com/songs/60064519.mkv +毛阿敏-没有根的花,http://em.21dtv.com/songs/60028784.mkv +ADELE-make you feel my love,http://em.21dtv.com/songs/60084745.mkv +ADELE-make you feel my love(演唱会),http://em.21dtv.com/songs/60067940.mkv +高峰-没有帆的船,http://em.21dtv.com/songs/60088997.mkv +JS-命运的重逢,http://em.21dtv.com/songs/60090410.mkv +胡鸿钧-命运的意外,http://em.21dtv.com/songs/60123095.mkv +童唱-母鸭带小鸭,http://em.21dtv.com/songs/60030545.mkv +芭比-谜样的笑容,http://em.21dtv.com/songs/60029948.mkv +王杨-蚂蚁的幸福,http://em.21dtv.com/songs/60072176.mkv +齐秦-命运的深渊,http://em.21dtv.com/songs/60030293.mkv +佚名-命运的锁链,http://em.21dtv.com/songs/60030294.mkv +大喇叭组合-马云的女人,http://em.21dtv.com/songs/60117637.mkv +红蚂蚁-魔样的女孩(无原唱),http://em.21dtv.com/songs/60030368.mkv +阿吉仔-命运的吉他,http://em.21dtv.com/songs/60030290.mkv +阿吉仔-命运的脚步(演唱会),http://em.21dtv.com/songs/60030291.mkv +陈晓东-没有灯火的X,http://em.21dtv.com/songs/60088891.mkv +陈俊华-牧羊的姑娘,http://em.21dtv.com/songs/60089514.mkv +佚名-卖烟的姑娘,http://em.21dtv.com/songs/60028488.mkv +葛本军-命运的方向,http://em.21dtv.com/songs/60061431.mkv +曹震豪-没有大不了,http://em.21dtv.com/songs/60061406.mkv +何韵诗-美艳到不行,http://em.21dtv.com/songs/60092283.mkv +宇桐非-每一次想起,http://em.21dtv.com/songs/60029075.mkv +李玟-每一次想你,http://em.21dtv.com/songs/60029074.mkv +白雪-每一次幸福,http://em.21dtv.com/songs/60088365.mkv +顺子-没有丑女人,http://em.21dtv.com/songs/60028777.mkv +梁文音-每一次恋爱,http://em.21dtv.com/songs/60104258.mkv +无印良品-每一次喊你,http://em.21dtv.com/songs/60029073.mkv +崔子格-没有错的人,http://em.21dtv.com/songs/60121616.mkv +佚名-每夜唱不停,http://em.21dtv.com/songs/60029069.mkv +林子祥-每夜唱不停,http://em.21dtv.com/songs/60029068.mkv +排骨教主-明月本无心,http://em.21dtv.com/songs/60133739.mkv +许孟哲-没有不可能,http://em.21dtv.com/songs/60028772.mkv +童唱-蚂蚁爱做工,http://em.21dtv.com/songs/60028408.mkv +张谦卑-没有爱的人,http://em.21dtv.com/songs/60076584.mkv +李克-梦想在远方,http://em.21dtv.com/songs/60110267.mkv +刘宇轩-梦想最闪亮,http://em.21dtv.com/songs/60120358.mkv +洪百慧-梦醒终是空,http://em.21dtv.com/songs/60095776.mkv +洪百慧-梦醒总是空,http://em.21dtv.com/songs/60029733.mkv +张蓉蓉-梦醒在三更,http://em.21dtv.com/songs/60029732.mkv +蔡小虎+张秀卿-梦醒在三更,http://em.21dtv.com/songs/60029731.mkv +舒晓龙-梦想在前方,http://em.21dtv.com/songs/60110483.mkv +肥狼-梦想在前方,http://em.21dtv.com/songs/60076686.mkv +卓依婷-梦想在前方,http://em.21dtv.com/songs/60064553.mkv +群星-梦想在哪里,http://em.21dtv.com/songs/60099449.mkv +梦想者联盟-梦想者联盟,http://em.21dtv.com/songs/60116077.mkv +李行亮-梦想自行车,http://em.21dtv.com/songs/60100165.mkv +群星-梦想在飞翔,http://em.21dtv.com/songs/60117979.mkv +秀兰玛雅-梦醒又一回,http://em.21dtv.com/songs/60123052.mkv +雨木-梦想与少年,http://em.21dtv.com/songs/60107341.mkv +胡月-莫嫌夜色浓,http://em.21dtv.com/songs/60030443.mkv +吴文景-梦想一起来,http://em.21dtv.com/songs/60029691.mkv +刘辉兵-梦想与明天,http://em.21dtv.com/songs/60122536.mkv +沈靖怡-梦想游乐园,http://em.21dtv.com/songs/60130537.mkv +王巧-梦想游乐场,http://em.21dtv.com/songs/60125918.mkv +孙淑媚-梦醒心也醒,http://em.21dtv.com/songs/60029729.mkv +梅艳芳-迈向新一天,http://em.21dtv.com/songs/60028433.mkv +刘育绫-梦醒心也碎,http://em.21dtv.com/songs/60029728.mkv +吴雨霏-马戏团之恋(演唱会),http://em.21dtv.com/songs/60028388.mkv +麋先生-马戏团运动,http://em.21dtv.com/songs/60083338.mkv +黄立行-马戏团猴子,http://em.21dtv.com/songs/60028387.mkv +棉花糖-马戏团公约,http://em.21dtv.com/songs/60028386.mkv +林志颖-梦想实现家,http://em.21dtv.com/songs/60029687.mkv +冷漠-墨写你的美,http://em.21dtv.com/songs/60114406.mkv +崔子格-梦想明月曲,http://em.21dtv.com/songs/60123866.mkv +蔡秋凤+林庆宗-梦醒拢是空,http://em.21dtv.com/songs/60029715.mkv +刘美麟-梦想扩音机,http://em.21dtv.com/songs/60083399.mkv +洪荣宏-觅想卡未气(无原唱),http://em.21dtv.com/songs/60029954.mkv +陈一郎-唛想卡袜凝(无原唱),http://em.21dtv.com/songs/60028500.mkv +郁可唯-梦想纪念日,http://em.21dtv.com/songs/60029686.mkv +TWINS-梦想黄金屋,http://em.21dtv.com/songs/60029685.mkv +刘杰洛-梦想的宇宙,http://em.21dtv.com/songs/60107535.mkv +吴德华-梦想的舞台,http://em.21dtv.com/songs/60092454.mkv +南合文斗-梦想的舞台,http://em.21dtv.com/songs/60029679.mkv +莫少聪-梦想的天空,http://em.21dtv.com/songs/60068488.mkv +成龙+李秀英-梦想的天际,http://em.21dtv.com/songs/60029678.mkv +许哲佩-卖笑的傻瓜,http://em.21dtv.com/songs/60064507.mkv +张美晨-梦想的时代,http://em.21dtv.com/songs/60127997.mkv +群星-梦想动起来(HD),http://em.21dtv.com/songs/10012806.mkv +华语群星-梦想动起来,http://em.21dtv.com/songs/60097656.mkv +吾尊-梦想的力量,http://em.21dtv.com/songs/60122592.mkv +杨皓天-梦想的力量,http://em.21dtv.com/songs/60110300.mkv +罗嘉俊-梦想的力量,http://em.21dtv.com/songs/60105293.mkv +含瑞-梦想的旅程,http://em.21dtv.com/songs/60107569.mkv +何润东-梦想的开始,http://em.21dtv.com/songs/60029677.mkv +景岗山+李湘-梦想的家园,http://em.21dtv.com/songs/60091273.mkv +胡小宝-明星的火种,http://em.21dtv.com/songs/60069618.mkv +汪峰-梦想的光芒,http://em.21dtv.com/songs/60029676.mkv +阿木-梦想的方向,http://em.21dtv.com/songs/60029675.mkv +刘伟-梦想的符号,http://em.21dtv.com/songs/60068487.mkv +司徒昌磊-没雪的冬天,http://em.21dtv.com/songs/60080696.mkv +群星-梦想的翅膀,http://em.21dtv.com/songs/60029672.mkv +周笔畅+柳博-梦想大不同,http://em.21dtv.com/songs/60076681.mkv +韩广英-梦想成真版,http://em.21dtv.com/songs/60110668.mkv +青梅竹马组合-明星不如你,http://em.21dtv.com/songs/60030240.mkv +尤雅-梦醒不了情,http://em.21dtv.com/songs/60029706.mkv +佚名-梦醒不了情,http://em.21dtv.com/songs/60029705.mkv +杨小萍-梦醒不了情(演唱会),http://em.21dtv.com/songs/60029704.mkv +王力宏-梦想被冷冻(演唱会),http://em.21dtv.com/songs/60029668.mkv +苏晴-梦想不会痒,http://em.21dtv.com/songs/60083397.mkv +方怡萍-梦醒变成空,http://em.21dtv.com/songs/60029703.mkv +谭咏麟-梦醒爱更深,http://em.21dtv.com/songs/60029701.mkv +傅薇-迷雾中共舞,http://em.21dtv.com/songs/60029938.mkv +邓颖芝-魔王与少女,http://em.21dtv.com/songs/60030366.mkv +SNH48-马尾与发圈,http://em.21dtv.com/songs/60080889.mkv +朱雅-妈我想你了,http://em.21dtv.com/songs/60070904.mkv +于朦胧-梦未完待续,http://em.21dtv.com/songs/60130056.mkv +KENT王健+星弟+小贱-没问题之歌,http://em.21dtv.com/songs/60083358.mkv +童唱-莫忘今宵情,http://em.21dtv.com/songs/60030438.mkv +李可亮-妈我回来了,http://em.21dtv.com/songs/60076544.mkv +李可亮-妈 我回来了,http://em.21dtv.com/songs/60066136.mkv +MOVES LIKE JAGGER-maroon 5 featuring christina aguilera,http://em.21dtv.com/songs/60073585.mkv +唐禹哲-美味的想念,http://em.21dtv.com/songs/60076637.mkv +伍桓霆-美味的世界,http://em.21dtv.com/songs/60127728.mkv +邓紫棋-mysecret 我的秘密(演唱会),http://em.21dtv.com/songs/60073649.mkv +张柏芝-门外的凉鞋,http://em.21dtv.com/songs/60029413.mkv +蔡幸娟-袂萎的花蕊,http://em.21dtv.com/songs/60029398.mkv +幕小柒-没完成的路,http://em.21dtv.com/songs/60100857.mkv +玖壹壹-明天再搁来,http://em.21dtv.com/songs/60118798.mkv +李全伟-满天烟花雨,http://em.21dtv.com/songs/60100128.mkv +萧敬腾-每天一点新,http://em.21dtv.com/songs/60095084.mkv +F.I.R-猫头鹰的梦,http://em.21dtv.com/songs/60028645.mkv +笑天-漫天相思雨,http://em.21dtv.com/songs/60121988.mkv +杨千桦-明天我望他,http://em.21dtv.com/songs/60092837.mkv +杨千桦-明天我望你,http://em.21dtv.com/songs/60092838.mkv +ANDY WILLIAMS-music to watch girls by,http://em.21dtv.com/songs/60003947.mkv +JS-明天是晴天(演唱会),http://em.21dtv.com/songs/60030209.mkv +额尔古纳乐队-马头琴恋曲,http://em.21dtv.com/songs/60076560.mkv +庾澄庆-明天去爱谁,http://em.21dtv.com/songs/60030207.mkv +TFBOYS-明天 你好,http://em.21dtv.com/songs/60112463.mkv +迪克牛仔-明天你爱谁,http://em.21dtv.com/songs/60076730.mkv +李易峰-摩天轮晚安,http://em.21dtv.com/songs/60030330.mkv +王觉-明天就回家,http://em.21dtv.com/songs/60123019.mkv +佚名-more than i cun say,http://em.21dtv.com/songs/60003889.mkv +佚名-more than i can say,http://em.21dtv.com/songs/60003888.mkv +绅士合唱团-more than i can say,http://em.21dtv.com/songs/60003887.mkv +刘恺威-明天会怎样,http://em.21dtv.com/songs/60076729.mkv +谭咏麟+陈奕迅-明天何其多,http://em.21dtv.com/songs/60132895.mkv +群星-明天会更美,http://em.21dtv.com/songs/60106201.mkv +宋祖英-明天会更好,http://em.21dtv.com/songs/60120460.mkv +宋祖英-明天会更好,http://em.21dtv.com/songs/60117674.mkv +群星-明天会更好,http://em.21dtv.com/songs/60112146.mkv +陈思思-明天会更好,http://em.21dtv.com/songs/60076728.mkv +卓依婷-明天会更好,http://em.21dtv.com/songs/60030193.mkv +甄妮-明天会更好,http://em.21dtv.com/songs/60030192.mkv +佚名-明天会更好,http://em.21dtv.com/songs/60030191.mkv +仙来居合唱团-明天会更好,http://em.21dtv.com/songs/60030190.mkv +群星-明天会更好,http://em.21dtv.com/songs/60030189.mkv +TERRY+LEO+RANDY-明天会更好,http://em.21dtv.com/songs/60030188.mkv +阿悄-梦,http://em.21dtv.com/songs/60094733.mkv +庄心妍-没谈过恋爱,http://em.21dtv.com/songs/60098331.mkv +毛宁+杨钰莹-明天更辉煌,http://em.21dtv.com/songs/60030180.mkv +王建杰-呒通放抹记,http://em.21dtv.com/songs/60030508.mkv +叶复台-呒通放袂记,http://em.21dtv.com/songs/60030507.mkv +冷漠+冯晓荣-明天的自己,http://em.21dtv.com/songs/60105626.mkv +雅希-明天的自己,http://em.21dtv.com/songs/60100615.mkv +S.H.E-明天的自己,http://em.21dtv.com/songs/60076727.mkv +欧得洋-明天的幸福,http://em.21dtv.com/songs/60030179.mkv +丁一-明天的微笑,http://em.21dtv.com/songs/60076725.mkv +梁静茹-明天的微笑,http://em.21dtv.com/songs/60030178.mkv +陈一玲-明天的太阳,http://em.21dtv.com/songs/60104538.mkv +黄韵玲-明天的太阳(演唱会),http://em.21dtv.com/songs/60030177.mkv +徐佳莹-明天的事情,http://em.21dtv.com/songs/60101639.mkv +佚名-没头的生活,http://em.21dtv.com/songs/60028760.mkv +黄义达-每天的每夜,http://em.21dtv.com/songs/60029058.mkv +范玮琪-每天的每天,http://em.21dtv.com/songs/60029057.mkv +孙燕姿-明天的记忆,http://em.21dtv.com/songs/60061430.mkv +斯琴高丽+顾峰-每天都精彩,http://em.21dtv.com/songs/60069597.mkv +林志炫-明天的方向,http://em.21dtv.com/songs/60091468.mkv +五月天-摩托车日记,http://em.21dtv.com/songs/60030333.mkv +谢帝-明天不上班,http://em.21dtv.com/songs/60081293.mkv +周昌翠-苗山郁金香,http://em.21dtv.com/songs/60110937.mkv +郭瑞-马上有爱情,http://em.21dtv.com/songs/60100982.mkv +醉美-蓦山溪匆匆,http://em.21dtv.com/songs/60124581.mkv +陈雅森-没啥伤不起,http://em.21dtv.com/songs/60076583.mkv +崔伟亮-没啥伤不起,http://em.21dtv.com/songs/60069592.mkv +佚名-morning side of the mountain,http://em.21dtv.com/songs/60003904.mkv +周慧敏-美少女战士(演唱会),http://em.21dtv.com/songs/60029348.mkv +容祖儿-美少女之变,http://em.21dtv.com/songs/60092532.mkv +丁文琪-美少女团体,http://em.21dtv.com/songs/60029347.mkv +SNH48-美少女时代,http://em.21dtv.com/songs/60122421.mkv +陈琳-没收你的爱(演唱会),http://em.21dtv.com/songs/60028759.mkv +阿杜-没什么好怕,http://em.21dtv.com/songs/60028751.mkv +陈瑞-没什么不好,http://em.21dtv.com/songs/60113069.mkv +林俊杰-陌生老朋友,http://em.21dtv.com/songs/60106018.mkv +林俊杰-陌生老朋友,http://em.21dtv.com/songs/60076749.mkv +张胜淼-迷失了方向,http://em.21dtv.com/songs/60100033.mkv +乔毓明-马赛克世界,http://em.21dtv.com/songs/60076559.mkv +孔太-没时间去老(演唱会),http://em.21dtv.com/songs/60028757.mkv +吕俊哲-没时间后悔,http://em.21dtv.com/songs/60126686.mkv +吕俊哲-没时间后悔,http://em.21dtv.com/songs/60125278.mkv +满文军-陌生而熟悉,http://em.21dtv.com/songs/60030407.mkv +ALAN-迷失的祝福,http://em.21dtv.com/songs/60029923.mkv +刘媛-迷失的忧伤,http://em.21dtv.com/songs/60097621.mkv +夜小泪-陌生的缘分,http://em.21dtv.com/songs/60110954.mkv +暴林-迷失的女人,http://em.21dtv.com/songs/60062230.mkv +郑嘉颖-迷失的女孩,http://em.21dtv.com/songs/60029922.mkv +程琳+崔健-迷失的季节,http://em.21dtv.com/songs/60134052.mkv +GIP中韩男团-陌生的国度,http://em.21dtv.com/songs/60087195.mkv +陈彦允-陌生的地方,http://em.21dtv.com/songs/60114209.mkv +张祥洪-迷失的纯真,http://em.21dtv.com/songs/60029921.mkv +金城-迷失的纯真,http://em.21dtv.com/songs/60029920.mkv +朱浩-没啥大不了,http://em.21dtv.com/songs/60106921.mkv +刘传彬-迷失的爱情,http://em.21dtv.com/songs/60098140.mkv +罗时丰-目屎擦乎干,http://em.21dtv.com/songs/60030593.mkv +姜昆+唐杰忠+陆世伟-名师出高徒,http://em.21dtv.com/songs/60089781.mkv +MANN-music sounds better with u,http://em.21dtv.com/songs/60065655.mkv +佚名-目屎拨袜离,http://em.21dtv.com/songs/60030592.mkv +方瑞娥-目屎拨抹离,http://em.21dtv.com/songs/60095554.mkv +王菀之-迷失表参道,http://em.21dtv.com/songs/60080739.mkv +张敬轩-迷失表参道(演唱会),http://em.21dtv.com/songs/60029919.mkv +段红-没说不爱你,http://em.21dtv.com/songs/60109478.mkv +石梅+何龙雨-没说不爱你,http://em.21dtv.com/songs/60085420.mkv +女声-明日又天涯,http://em.21dtv.com/songs/60030155.mkv +男声-明日又天涯,http://em.21dtv.com/songs/60030154.mkv +江蕙-明日又天涯,http://em.21dtv.com/songs/60030153.mkv +陈慧娴-明日有明天,http://em.21dtv.com/songs/60030152.mkv +陈慧娴-明日有明天(演唱会),http://em.21dtv.com/songs/60030151.mkv +谢霆锋-每日一禁果(演唱会),http://em.21dtv.com/songs/60029046.mkv +达明一派-每日一禁果(演唱会),http://em.21dtv.com/songs/60029045.mkv +方伊琪-明日有会期,http://em.21dtv.com/songs/60030150.mkv +郭斯炫-美人鱼传说,http://em.21dtv.com/songs/60076636.mkv +徐羽泽-蓦然想起你,http://em.21dtv.com/songs/60122767.mkv +含紫烟-蓦然想起你,http://em.21dtv.com/songs/60122573.mkv +王杰-明日我是谁(无原唱),http://em.21dtv.com/songs/60092984.mkv +小凤凤-美人无美命,http://em.21dtv.com/songs/60029670.mkv +陈思思-梦入桃花源,http://em.21dtv.com/songs/60029636.mkv +谭咏麟-梦仍是一样,http://em.21dtv.com/songs/60029635.mkv +谭咏麟+李克勤-梦仍是一样(演唱会),http://em.21dtv.com/songs/60029634.mkv +中岛美嘉-明日世界が绚わるなら,http://em.21dtv.com/songs/60076722.mkv +许茹芸-没人能管你,http://em.21dtv.com/songs/60092080.mkv +徐小凤-每日怀念你(演唱会),http://em.21dtv.com/songs/60029044.mkv +吕珊-明日话今天,http://em.21dtv.com/songs/60092445.mkv +佚名-明日话今天,http://em.21dtv.com/songs/60030136.mkv +甄妮-明日话今天(演唱会),http://em.21dtv.com/songs/60030135.mkv +张德兰-明日话今天(演唱会),http://em.21dtv.com/songs/60030134.mkv +颜福伟-明日话今天(演唱会),http://em.21dtv.com/songs/60030133.mkv +张峥-迷人的眼神,http://em.21dtv.com/songs/60105834.mkv +DanceFlow-迷人的危险,http://em.21dtv.com/songs/60087186.mkv +张芯-牧人的天堂,http://em.21dtv.com/songs/60076768.mkv +李双江-牧人的童年,http://em.21dtv.com/songs/60030619.mkv +詹曼铃-迷人的探戈,http://em.21dtv.com/songs/60029915.mkv +奇力格尔-牧人的情怀,http://em.21dtv.com/songs/60030618.mkv +金玲-迷人的目睭(无原唱),http://em.21dtv.com/songs/60029914.mkv +王丽兰-牧人的乐园,http://em.21dtv.com/songs/60106095.mkv +AMI-每日的离别,http://em.21dtv.com/songs/60076602.mkv +布仁巴雅尔-迷人的杭盖,http://em.21dtv.com/songs/60091015.mkv +孙更俊-盲人的歌,http://em.21dtv.com/songs/60070908.mkv +嘉布洛绒-牧人的儿子,http://em.21dtv.com/songs/60064587.mkv +詹曼玲-每日等待你(无原唱),http://em.21dtv.com/songs/60029043.mkv +乌兰娜-牧人的本色,http://em.21dtv.com/songs/60127707.mkv +李代沫+陈浩轩-末日不孤单,http://em.21dtv.com/songs/60087978.mkv +岚-明日の记忆,http://em.21dtv.com/songs/60076721.mkv +高歌-没钱也潇洒(演唱会),http://em.21dtv.com/songs/60028744.mkv +徐海涛-没钱也快乐,http://em.21dtv.com/songs/60076582.mkv +王梦麟-母亲我爱您,http://em.21dtv.com/songs/60030540.mkv +佚名-麻雀提意见,http://em.21dtv.com/songs/60097667.mkv +儿歌-麻雀提意见,http://em.21dtv.com/songs/60085411.mkv +王莉+金婷婷+汤非+周澎-母亲是中华,http://em.21dtv.com/songs/60132740.mkv +金莎-梦千年之恋,http://em.21dtv.com/songs/60076674.mkv +羽哲-没钱没人爱,http://em.21dtv.com/songs/60117983.mkv +权施文-没钱没人爱,http://em.21dtv.com/songs/60096341.mkv +马丽-母亲 妈妈,http://em.21dtv.com/songs/60102941.mkv +曾辉彬-没钱没感情,http://em.21dtv.com/songs/60028743.mkv +孙艳-母亲的眼泪,http://em.21dtv.com/songs/60076759.mkv +苏峰-母亲的眼泪,http://em.21dtv.com/songs/60070955.mkv +宋祖英-母亲的眼睛(演唱会),http://em.21dtv.com/songs/60076758.mkv +媚儿菲菲-母亲的心声,http://em.21dtv.com/songs/60126777.mkv +Q熊妹妹-门前的老树,http://em.21dtv.com/songs/60062131.mkv +佚名-庙前的恋情,http://em.21dtv.com/songs/60030058.mkv +萧丽珠-庙前的恋情,http://em.21dtv.com/songs/60030057.mkv +微风-母亲的呼唤,http://em.21dtv.com/songs/60076757.mkv +杨晓微-母亲的炊烟,http://em.21dtv.com/songs/60125749.mkv +葛小虎-母亲的草原,http://em.21dtv.com/songs/60119937.mkv +侯强+尹力-母亲的草原,http://em.21dtv.com/songs/60030525.mkv +麻吉弟弟-麻劈哩啪啦,http://em.21dtv.com/songs/60089018.mkv +郭富城-木偶袭地球,http://em.21dtv.com/songs/60030577.mkv +郭富城-木偶袭地球(演唱会),http://em.21dtv.com/songs/60030576.mkv +BTOB-MOVIE,http://em.21dtv.com/songs/60134651.mkv +BTOB-MOVIE,http://em.21dtv.com/songs/60133176.mkv +杨千嬅-木偶奇遇记,http://em.21dtv.com/songs/60030575.mkv +WAX-Money,http://em.21dtv.com/songs/60112470.mkv +黄子韬-M.O.M,http://em.21dtv.com/songs/60114296.mkv +蔡小虎-梦你在三更,http://em.21dtv.com/songs/60115362.mkv +李小薇-没你在身边,http://em.21dtv.com/songs/60118669.mkv +田馥甄+井柏然-美女与野兽,http://em.21dtv.com/songs/60135587.mkv +田馥甄+井柏然-美女与野兽,http://em.21dtv.com/songs/60134029.mkv +田馥甄+井柏然-美女与野兽,http://em.21dtv.com/songs/60132761.mkv +徐海星+陈斌-美女与野兽,http://em.21dtv.com/songs/60081419.mkv +陈斌+徐海星-美女与野兽,http://em.21dtv.com/songs/60070923.mkv +郑中基-美女与野兽,http://em.21dtv.com/songs/60029329.mkv +乌兰图雅-玛纳斯之恋,http://em.21dtv.com/songs/60127705.mkv +丸子-美女十八招(演唱会),http://em.21dtv.com/songs/60029327.mkv +艺林歌哥+莉苹姐姐-蒙牛人之歌,http://em.21dtv.com/songs/60096115.mkv +晓依-梦你千万次,http://em.21dtv.com/songs/60129182.mkv +丁当+何润东-明年情人节,http://em.21dtv.com/songs/60064565.mkv +程响-没那么坚强,http://em.21dtv.com/songs/60061403.mkv +梦苇-没那么简单,http://em.21dtv.com/songs/60125824.mkv +胡彦斌-没那么简单,http://em.21dtv.com/songs/60094652.mkv +马闯-没那么简单,http://em.21dtv.com/songs/60076579.mkv +金志文-没那么简单,http://em.21dtv.com/songs/60070909.mkv +袁媛-没那么简单(演唱会),http://em.21dtv.com/songs/60063323.mkv +黄小琥-没那么简单,http://em.21dtv.com/songs/60028730.mkv +钟镇涛-没那么简单(演唱会),http://em.21dtv.com/songs/60028729.mkv +洪荣宏-梦你梦到醒,http://em.21dtv.com/songs/60120717.mkv +宇桐非-没那么爱我,http://em.21dtv.com/songs/60100850.mkv +江美琪-没那么爱她,http://em.21dtv.com/songs/60028728.mkv +徐婕儿-没那么爱他,http://em.21dtv.com/songs/60028727.mkv +范玮琪-没那么爱他,http://em.21dtv.com/songs/60028726.mkv +张雯婷-美女救英雄,http://em.21dtv.com/songs/60029326.mkv +陈志明-美浓好风光,http://em.21dtv.com/songs/60029323.mkv +詹瑞文+杜汶泽+狄易达-猛男滚死队,http://em.21dtv.com/songs/60061421.mkv +江波-没你的夜晚,http://em.21dtv.com/songs/60116095.mkv +LILY-美女斗秀场,http://em.21dtv.com/songs/60097618.mkv +叶俊华-麦娘的守望,http://em.21dtv.com/songs/60110065.mkv +无印良品-没你的日子,http://em.21dtv.com/songs/60103317.mkv +光良-没你的日子,http://em.21dtv.com/songs/60028739.mkv +光良-没你的日子(演唱会),http://em.21dtv.com/songs/60028738.mkv +吴宗宪-没你的城市,http://em.21dtv.com/songs/60028737.mkv +马句-闽南查某人,http://em.21dtv.com/songs/60106458.mkv +安宇-美女不要走,http://em.21dtv.com/songs/60064531.mkv +王麟-妈妈在这儿,http://em.21dtv.com/songs/60097547.mkv +林姗-茫茫在想你,http://em.21dtv.com/songs/60028627.mkv +高夫-萌萌在哪里,http://em.21dtv.com/songs/60131998.mkv +斯琴高丽-妈妈在哪里,http://em.21dtv.com/songs/60114566.mkv +卓依婷-妈妈在那里,http://em.21dtv.com/songs/60028310.mkv +阿斯根-妈妈卓玛啦,http://em.21dtv.com/songs/60028314.mkv +林葳+陈冠霖-明明这甲意,http://em.21dtv.com/songs/60117852.mkv +高洪章+李怀福-妹妹找哥哥(演唱会),http://em.21dtv.com/songs/60061420.mkv +清源-妹妹找哥哥,http://em.21dtv.com/songs/60029383.mkv +张燕燕-妈妈祝福我,http://em.21dtv.com/songs/60028312.mkv +梁佳玉-默默祝福你,http://em.21dtv.com/songs/60112036.mkv +方伊琪-默默祝福你(演唱会),http://em.21dtv.com/songs/60076754.mkv +吕珊-默默祝福你(演唱会),http://em.21dtv.com/songs/60062732.mkv +女声-默默祝福你,http://em.21dtv.com/songs/60030472.mkv +男声-默默祝福你,http://em.21dtv.com/songs/60030471.mkv +林淑蓉-默默祝福你,http://em.21dtv.com/songs/60030470.mkv +金志文+刘心-妈妈做的面,http://em.21dtv.com/songs/60134351.mkv +刘尊-妹妹一身红,http://em.21dtv.com/songs/60029382.mkv +曹格-妹妹要快乐,http://em.21dtv.com/songs/60029381.mkv +林良欢-眉毛也爱笑,http://em.21dtv.com/songs/60076598.mkv +谭凌风-妈妈下雪了(演唱会),http://em.21dtv.com/songs/60083331.mkv +谭凌风-妈妈下雪了,http://em.21dtv.com/songs/60080718.mkv +刘艺淼-妈妈歇歇吧,http://em.21dtv.com/songs/60122535.mkv +张国荣-默默向上游,http://em.21dtv.com/songs/60030469.mkv +杨天经-默默向上游(演唱会),http://em.21dtv.com/songs/60030468.mkv +任娟-美美小日子,http://em.21dtv.com/songs/60109959.mkv +任娟-美美小日子,http://em.21dtv.com/songs/60072192.mkv +陈雅森-明明喜欢我,http://em.21dtv.com/songs/60130862.mkv +杨天+马明-妹妹像朵花,http://em.21dtv.com/songs/60116939.mkv +阿茹-绵绵五月雪,http://em.21dtv.com/songs/60135888.mkv +阿文-妹妹我想你,http://em.21dtv.com/songs/60115479.mkv +汤潮-妈妈我想你,http://em.21dtv.com/songs/60110329.mkv +汤潮-妈妈我想你,http://em.21dtv.com/songs/60028305.mkv +金城-妈妈我想你,http://em.21dtv.com/songs/60028304.mkv +巩新亮-妈妈我很好,http://em.21dtv.com/songs/60028301.mkv +安以轩-妈妈我很好,http://em.21dtv.com/songs/60028300.mkv +岳太阳-妈妈我爱你,http://em.21dtv.com/songs/60119465.mkv +任军太-妈妈我爱你,http://em.21dtv.com/songs/60094392.mkv +谢世超-妹妹我爱你,http://em.21dtv.com/songs/60085443.mkv +晓华-妹妹我爱你(演唱会),http://em.21dtv.com/songs/60083388.mkv +张伟文-妹妹我爱你,http://em.21dtv.com/songs/60029380.mkv +黄安-妹妹我爱你,http://em.21dtv.com/songs/60029379.mkv +张含韵-妈妈我爱你,http://em.21dtv.com/songs/60028296.mkv +麦子杰+黎亚-妈妈我爱你,http://em.21dtv.com/songs/60028295.mkv +佚名-茫茫天涯路,http://em.21dtv.com/songs/60028626.mkv +吕雯-妈妈听我说,http://em.21dtv.com/songs/60083334.mkv +赵本水-妹妹听我说,http://em.21dtv.com/songs/60029378.mkv +赵本水-妹妹听我说(演唱会),http://em.21dtv.com/songs/60029377.mkv +梅花三姐妹-妈妈叨位去,http://em.21dtv.com/songs/60028220.mkv +王心凌-木马屠城记,http://em.21dtv.com/songs/60091695.mkv +薛家燕+安德尊+合唱团-喵喵上学去(演唱会),http://em.21dtv.com/songs/60076711.mkv +佩希-明明是唯一,http://em.21dtv.com/songs/60120315.mkv +王瑞霞-茫茫世间情,http://em.21dtv.com/songs/60028625.mkv +伊能静+胡可+马雅舒+包文婧-妈妈是超人,http://em.21dtv.com/songs/60134878.mkv +伊能静+胡可+马雅舒+包文婧-妈妈是超人,http://em.21dtv.com/songs/60133357.mkv +佚名-牧马人之歌,http://em.21dtv.com/songs/60030611.mkv +乐飞扬-漫漫人生路,http://em.21dtv.com/songs/60134854.mkv +谢霆锋+钟镇涛-漫漫人生路,http://em.21dtv.com/songs/60131817.mkv +廖丽娜-茫茫人生路(无原唱),http://em.21dtv.com/songs/60028624.mkv +咪依鲁江-陌陌情哥哥,http://em.21dtv.com/songs/60133493.mkv +咪依鲁江-陌陌情哥哥,http://em.21dtv.com/songs/60130201.mkv +詹雅雯+詹雅云-妈妈请保重,http://em.21dtv.com/songs/60028280.mkv +樱花姐妹-妈妈请保重,http://em.21dtv.com/songs/60028279.mkv +林淑娟-默默盼归期,http://em.21dtv.com/songs/60030466.mkv +DEATH CAB FOR CUTIE-meet mw on the equinox,http://em.21dtv.com/songs/60003783.mkv +纪晓斌-妹妹你真美,http://em.21dtv.com/songs/60102618.mkv +卓依婷-妹妹你真美,http://em.21dtv.com/songs/60029375.mkv +刘尊-妈妈哪去了,http://em.21dtv.com/songs/60028269.mkv +王岩-妈妈你好吗,http://em.21dtv.com/songs/60130581.mkv +梁川宇-妈妈你好吗,http://em.21dtv.com/songs/60121834.mkv +刘超华-妹妹你别走(演唱会),http://em.21dtv.com/songs/60076642.mkv +孤心泪-妹妹你别拽,http://em.21dtv.com/songs/60106775.mkv +郝立勇-妈妈你不老,http://em.21dtv.com/songs/60028271.mkv +楚博仁-陌陌陌生人,http://em.21dtv.com/songs/60076746.mkv +鲸鱼岛乐队-买买买买买,http://em.21dtv.com/songs/60108175.mkv +SNH48-妈咪妈咪轰,http://em.21dtv.com/songs/60127672.mkv +唐尧麟-妈咪妈咪home,http://em.21dtv.com/songs/60028315.mkv +张蓉蓉-茫茫梦都市,http://em.21dtv.com/songs/60085417.mkv +童唱-咪咪流浪记,http://em.21dtv.com/songs/60029844.mkv +刘海辰-妹妹来看我,http://em.21dtv.com/songs/60087411.mkv +猪哥亮-眠梦拢会笑(演唱会),http://em.21dtv.com/songs/60076708.mkv +张蓉蓉-绵绵恋爱梦,http://em.21dtv.com/songs/60029995.mkv +华帝-慢慢靠近我,http://em.21dtv.com/songs/60093832.mkv +佚名-慢慢靠近我,http://em.21dtv.com/songs/60028587.mkv +于文华+尹相杰-妹妹看放排,http://em.21dtv.com/songs/60029372.mkv +陈夏莲-妈妈卡大天,http://em.21dtv.com/songs/60123287.mkv +叶倩文-美梦记心中,http://em.21dtv.com/songs/60029320.mkv +黄华丽-妈妈就是家,http://em.21dtv.com/songs/60121178.mkv +梅花三姐妹-妈妈紧返来,http://em.21dtv.com/songs/60028264.mkv +刘德华-妈妈i love you(妈妈好),http://em.21dtv.com/songs/60028218.mkv +袁一唯-明明还相爱,http://em.21dtv.com/songs/60112949.mkv +ADELE-melt my heart to stone,http://em.21dtv.com/songs/60069110.mkv +邓丽君-妈妈呼唤你,http://em.21dtv.com/songs/60028258.mkv +彭冠英-慢慢会好的,http://em.21dtv.com/songs/60132474.mkv +刘宏杰-漫漫红尘路,http://em.21dtv.com/songs/60087391.mkv +梁静茹+黄品冠-明明很爱你,http://em.21dtv.com/songs/60030113.mkv +詹曼铃-茫茫过一生,http://em.21dtv.com/songs/60028621.mkv +李理-妹妹跟我走,http://em.21dtv.com/songs/60103367.mkv +张健-妹妹跟我来,http://em.21dtv.com/songs/60029370.mkv +童唱-妈妈格桑拉,http://em.21dtv.com/songs/60028254.mkv +陈雷-妈妈的皱纹,http://em.21dtv.com/songs/60070901.mkv +任妙音-妹妹等着你,http://em.21dtv.com/songs/60072194.mkv +苏小明-默默地祝福,http://em.21dtv.com/songs/60030465.mkv +向蕙玲-妈妈的愿望,http://em.21dtv.com/songs/60028249.mkv +吉杰-妈妈的眼泪,http://em.21dtv.com/songs/60097548.mkv +蔡佳麟-妈妈的眼累,http://em.21dtv.com/songs/60028247.mkv +王绍博-妈妈的眼泪,http://em.21dtv.com/songs/60028246.mkv +杜歌-妈妈的眼泪,http://em.21dtv.com/songs/60028245.mkv +小臭臭-妈妈的眼睛,http://em.21dtv.com/songs/60098282.mkv +朱丽婷-妈妈的眼睛,http://em.21dtv.com/songs/60094534.mkv +童唱-妈妈的眼睛,http://em.21dtv.com/songs/60028244.mkv +关牧村-美妙的西藏,http://em.21dtv.com/songs/60029322.mkv +王丽达-妈妈的心愿,http://em.21dtv.com/songs/60106096.mkv +蓓蕾-默默的相思,http://em.21dtv.com/songs/60088587.mkv +沈鸣庭+陈睿涵-妈妈的笑容,http://em.21dtv.com/songs/60132677.mkv +周佳-妈妈的微笑,http://em.21dtv.com/songs/60103156.mkv +周永斌-妈妈的温暖,http://em.21dtv.com/songs/60135052.mkv +纪晓斌-妈妈的味道,http://em.21dtv.com/songs/60129477.mkv +车晓菲-妈妈的味道,http://em.21dtv.com/songs/60123214.mkv +张丹锋-妈妈的舞步,http://em.21dtv.com/songs/60122703.mkv +龙千玉-茫茫的世界,http://em.21dtv.com/songs/60028619.mkv +余天-茫茫到深更,http://em.21dtv.com/songs/60028618.mkv +尤雅-茫茫到深更,http://em.21dtv.com/songs/60028617.mkv +罗时丰-茫茫到深更,http://em.21dtv.com/songs/60028616.mkv +黄乙玲-茫茫到深更(无原唱),http://em.21dtv.com/songs/60028615.mkv +林玉英-茫茫的人生(无原唱),http://em.21dtv.com/songs/60095697.mkv +袁小迪+向蕙玲-秘密的情人,http://em.21dtv.com/songs/60076703.mkv +东方红艳-美美的情歌,http://em.21dtv.com/songs/60120280.mkv +周思佳-妹妹的牵挂,http://em.21dtv.com/songs/60102046.mkv +江珊+ISA-妈妈的女儿,http://em.21dtv.com/songs/60135479.mkv +关颖-秒秒都美丽,http://em.21dtv.com/songs/60030046.mkv +张明远-迷茫的理想,http://em.21dtv.com/songs/60096276.mkv +廖丽娜-妈妈的苦心(无原唱),http://em.21dtv.com/songs/60028230.mkv +杨鲲-妈妈的饺子,http://em.21dtv.com/songs/60076538.mkv +小美Sunny-美妙的降央,http://em.21dtv.com/songs/60118525.mkv +巩汉林+赵丽嫆-妈妈的今天,http://em.21dtv.com/songs/60089833.mkv +Eva-美妙的寂寞,http://em.21dtv.com/songs/60106531.mkv +王旭鹏-妈妈的怀里,http://em.21dtv.com/songs/60115295.mkv +王莹-妹妹的花儿,http://em.21dtv.com/songs/60106131.mkv +吕继宏-妈妈的歌谣,http://em.21dtv.com/songs/60028228.mkv +后弦-妹妹的钢琴,http://em.21dtv.com/songs/60087537.mkv +乌兰图雅-妈妈的恩情,http://em.21dtv.com/songs/60132162.mkv +包青山-妈妈的恩情,http://em.21dtv.com/songs/60110053.mkv +乌兰图雅-妈妈的恩情,http://em.21dtv.com/songs/60094384.mkv +刘玉东-妈妈的恩惠,http://em.21dtv.com/songs/60120372.mkv +陆萍+火风-妹妹等等我,http://em.21dtv.com/songs/60029369.mkv +陈盈洁-妈妈的窗外,http://em.21dtv.com/songs/60028225.mkv +韩晓辉-妈妈的辫子,http://em.21dtv.com/songs/60133070.mkv +于全莉-妈妈的辫子,http://em.21dtv.com/songs/60132173.mkv +翁立友-妈妈的背影,http://em.21dtv.com/songs/60028224.mkv +秋裤大叔-妈妈对不起,http://em.21dtv.com/songs/60118820.mkv +苏富权-妈妈对不起,http://em.21dtv.com/songs/60085409.mkv +赵小兵-妈妈对不起,http://em.21dtv.com/songs/60028250.mkv +李海颖-妈妈的背脊,http://em.21dtv.com/songs/60102349.mkv +朱小山-妈妈的宝贝,http://em.21dtv.com/songs/60028223.mkv +黄清源-盲目的爱情,http://em.21dtv.com/songs/60028610.mkv +余润泽-毛毛虫之恋,http://em.21dtv.com/songs/60083347.mkv +郭健一+萧玉芬-茫茫纯情梦,http://em.21dtv.com/songs/60028614.mkv +阿嫖-明明不是我,http://em.21dtv.com/songs/60112334.mkv +何洁-明明不是angel,http://em.21dtv.com/songs/60030110.mkv +蔡秋凤-妈妈不免惊,http://em.21dtv.com/songs/60129586.mkv +覃诗丽-密码部落格,http://em.21dtv.com/songs/60029977.mkv +任妙音-妹妹比花俏,http://em.21dtv.com/songs/60126593.mkv +詹曼铃-美梦变成空(无原唱),http://em.21dtv.com/songs/60029313.mkv +蒋闻潞-咪咪爱小鱼,http://em.21dtv.com/songs/60029843.mkv +雷龙+百合-猫咪爱上鱼,http://em.21dtv.com/songs/60028642.mkv +黄耀明-美丽在心头(演唱会),http://em.21dtv.com/songs/60029301.mkv +罗雨-美丽中国人,http://em.21dtv.com/songs/60120850.mkv +马智宇-美丽中国梦,http://em.21dtv.com/songs/60110701.mkv +王芳-美丽中国梦,http://em.21dtv.com/songs/60103465.mkv +卢巧音-美丽在唱歌,http://em.21dtv.com/songs/60029298.mkv +林一峰+任贤齐-朦胧夜雨里,http://em.21dtv.com/songs/60092849.mkv +佚名-朦胧夜雨里,http://em.21dtv.com/songs/60029447.mkv +梁朝伟-朦胧夜雨里,http://em.21dtv.com/songs/60029446.mkv +梅艳芳-朦胧夜雨里(演唱会),http://em.21dtv.com/songs/60029445.mkv +AT17+林一峰-朦胧夜雨里(演唱会),http://em.21dtv.com/songs/60029444.mkv +张靓颖+阿弟仔-美丽与勇敢,http://em.21dtv.com/songs/60063379.mkv +叶宇澄-玛丽与伟业,http://em.21dtv.com/songs/60092407.mkv +孙浩英+BIZZY-美丽又讨厌,http://em.21dtv.com/songs/60064529.mkv +BOY'Z-美丽与快乐,http://em.21dtv.com/songs/60029297.mkv +杨林-梦里也缠绵,http://em.21dtv.com/songs/60029607.mkv +陈淑桦-美丽与哀愁,http://em.21dtv.com/songs/60029296.mkv +单紫宁-美丽新一天,http://em.21dtv.com/songs/60029287.mkv +Nicole-美丽新香港,http://em.21dtv.com/songs/60097620.mkv +佟娜-美丽新天地,http://em.21dtv.com/songs/60121385.mkv +祖海-美丽新天地(演唱会),http://em.21dtv.com/songs/60029286.mkv +颜覃程-美丽新世界,http://em.21dtv.com/songs/60133100.mkv +陈惠婷-美丽新世界,http://em.21dtv.com/songs/60122234.mkv +痛仰乐队-美丽新世界,http://em.21dtv.com/songs/60117940.mkv +黄大炜-美丽新世界,http://em.21dtv.com/songs/60029285.mkv +S.H.E-美丽新世界,http://em.21dtv.com/songs/60029284.mkv +伍佰-美丽新世界(演唱会),http://em.21dtv.com/songs/60029283.mkv +黄大炜-美丽新世界(无原唱),http://em.21dtv.com/songs/60029282.mkv +新乐园全体-美丽新乐园(无原唱),http://em.21dtv.com/songs/60029280.mkv +肖飞-麻辣小龙虾,http://em.21dtv.com/songs/60028338.mkv +伍俊华-美丽新加坡,http://em.21dtv.com/songs/60072190.mkv +蔡小虎-玛莉小姑娘,http://em.21dtv.com/songs/60028400.mkv +佚名-没良心的人,http://em.21dtv.com/songs/60028724.mkv +任盈盈-没了心的爱,http://em.21dtv.com/songs/60083357.mkv +香巴拉组合-美丽香巴拉,http://em.21dtv.com/songs/60086701.mkv +莫文蔚-moon 0ver bourbon street,http://em.21dtv.com/songs/60071641.mkv +郑中基-猛龙特警队,http://em.21dtv.com/songs/60029450.mkv +朱咪咪-猛龙特警队(演唱会),http://em.21dtv.com/songs/60029449.mkv +郑中基-猛龙特警队(演唱会),http://em.21dtv.com/songs/60029448.mkv +SNH48-梅洛斯之战,http://em.21dtv.com/songs/60116476.mkv +任卫新-米老鼠之歌(儿歌),http://em.21dtv.com/songs/60090539.mkv +关牧村-马铃声声响,http://em.21dtv.com/songs/60028372.mkv +钟伟-马兰山情歌,http://em.21dtv.com/songs/60028366.mkv +毛俊丽-美丽苏木山,http://em.21dtv.com/songs/60132664.mkv +甲子慧-美丽水姑娘,http://em.21dtv.com/songs/60093756.mkv +王山-梦里秋水长,http://em.21dtv.com/songs/60117031.mkv +乌兰托娅-梦里青草香,http://em.21dtv.com/songs/60097655.mkv +施文彬-麦寮青春梦,http://em.21dtv.com/songs/60118619.mkv +阿茹-美丽屏东城,http://em.21dtv.com/songs/60135889.mkv +佚名-玛丽诺之歌,http://em.21dtv.com/songs/60028394.mkv +乌兰图雅-美丽内蒙古,http://em.21dtv.com/songs/60116515.mkv +张蓉蓉-美丽娜鲁湾,http://em.21dtv.com/songs/60110212.mkv +佚名-梦里没有你(无原唱),http://em.21dtv.com/songs/60029599.mkv +元元+李青-美丽浏阳河,http://em.21dtv.com/songs/60094412.mkv +元元-美丽浏阳河,http://em.21dtv.com/songs/60094411.mkv +胡彦斌-玛丽莲梦露,http://em.21dtv.com/songs/60028393.mkv +红叶组合-苗岭连北京(演唱会),http://em.21dtv.com/songs/60083422.mkv +宋祖英-苗岭连北京,http://em.21dtv.com/songs/60030044.mkv +蔡国权-梦里可是谁,http://em.21dtv.com/songs/60029597.mkv +王爱华-名利皆云烟,http://em.21dtv.com/songs/60098646.mkv +郑志立-玛丽进行曲,http://em.21dtv.com/songs/60094720.mkv +黄亚-美丽嘉年华,http://em.21dtv.com/songs/60029259.mkv +彩贝与海-美榔姐妹塔,http://em.21dtv.com/songs/60109349.mkv +李杨飞-美榔姐妹塔,http://em.21dtv.com/songs/60085434.mkv +雷光夏-明朗俱乐部,http://em.21dtv.com/songs/60115516.mkv +张小觉-魔力减肥咒,http://em.21dtv.com/songs/60063397.mkv +鲍翠薇-梦里几番哀,http://em.21dtv.com/songs/60029596.mkv +郅飞-梦里见到你,http://em.21dtv.com/songs/60118094.mkv +郑玉华-梦里几多回,http://em.21dtv.com/songs/60134311.mkv +佚名-my love is your lvoe,http://em.21dtv.com/songs/60004002.mkv +PAULA ABDUL-my love is for real,http://em.21dtv.com/songs/60073643.mkv +任贤齐-美丽坏女人,http://em.21dtv.com/songs/60029257.mkv +任贤齐-美丽坏女人(演唱会),http://em.21dtv.com/songs/60029256.mkv +易秀成-梦里回故乡,http://em.21dtv.com/songs/60061425.mkv +黄耀明-迷恋荷尔蒙(演唱会),http://em.21dtv.com/songs/60029888.mkv +海威-马兰花儿开,http://em.21dtv.com/songs/60098586.mkv +年才让-美丽的卓玛,http://em.21dtv.com/songs/60133628.mkv +张美晨-美丽大中国(HD),http://em.21dtv.com/songs/10012785.mkv +张美晨-美丽大中国,http://em.21dtv.com/songs/60096288.mkv +李伟-美丽大中国,http://em.21dtv.com/songs/60076610.mkv +钱澄+一绫-美丽的祝福,http://em.21dtv.com/songs/60062826.mkv +王莹-美丽的宜州,http://em.21dtv.com/songs/60109539.mkv +刘璇-美丽的样子,http://em.21dtv.com/songs/60029245.mkv +阿里郎-美丽的岳西,http://em.21dtv.com/songs/60061417.mkv +超级女声+易慧-美丽的一天,http://em.21dtv.com/songs/60088715.mkv +少女部落格-美丽的一天(演唱会),http://em.21dtv.com/songs/60064526.mkv +刘德华-美丽的一天,http://em.21dtv.com/songs/60029247.mkv +杨坤-美丽的一天(演唱会),http://em.21dtv.com/songs/60029246.mkv +不辣-梦里的颜色,http://em.21dtv.com/songs/60128729.mkv +潘佩莉-美丽的邀请,http://em.21dtv.com/songs/60072189.mkv +佚名-明亮的眼晴,http://em.21dtv.com/songs/60030102.mkv +喜波-梦里的月亮,http://em.21dtv.com/songs/60131294.mkv +喜波-梦里的月亮,http://em.21dtv.com/songs/60125328.mkv +蒋大为-美丽的彝良,http://em.21dtv.com/songs/60088580.mkv +卓依婷-梦里的依恋(演唱会),http://em.21dtv.com/songs/60029591.mkv +安东阳+门丽-美丽的遇见,http://em.21dtv.com/songs/60132375.mkv +华峰-美丽的眼睛,http://em.21dtv.com/songs/60086700.mkv +龙帝-美丽的印江,http://em.21dtv.com/songs/60068474.mkv +顶尖拍挡-朦胧的眼睛,http://em.21dtv.com/songs/60029443.mkv +HAYA乐团-迷路的羊羔,http://em.21dtv.com/songs/60097622.mkv +甜美真-美丽的缘分,http://em.21dtv.com/songs/60085436.mkv +徐雯倩-美丽的约定(无原唱),http://em.21dtv.com/songs/60029248.mkv +索南扎西-美丽的西藏,http://em.21dtv.com/songs/60029233.mkv +关牧村-美丽的西藏,http://em.21dtv.com/songs/60029232.mkv +正月十五-美丽的信仰,http://em.21dtv.com/songs/60097619.mkv +修竹-美丽的相遇,http://em.21dtv.com/songs/60093976.mkv +王梓旭-梦里的校园,http://em.21dtv.com/songs/60064548.mkv +湛蓝的海-美丽的心情,http://em.21dtv.com/songs/60070920.mkv +宋祖英-美丽的心情,http://em.21dtv.com/songs/60029240.mkv +梁雁翎-美丽的心情,http://em.21dtv.com/songs/60029239.mkv +陈慧琳-美丽的新娘,http://em.21dtv.com/songs/60029242.mkv +佚名-美丽的心灵,http://em.21dtv.com/songs/60029238.mkv +龙奔-美丽的笑脸,http://em.21dtv.com/songs/60029236.mkv +山子华-美丽的星空,http://em.21dtv.com/songs/60076620.mkv +余华利-美丽的邂逅,http://em.21dtv.com/songs/60103082.mkv +陈升-美丽的邂逅,http://em.21dtv.com/songs/60029237.mkv +佚名-美丽的香港,http://em.21dtv.com/songs/60029235.mkv +袁忠山-美丽大西北,http://em.21dtv.com/songs/60102718.mkv +后来者-美丽的温州,http://em.21dtv.com/songs/60134997.mkv +咪依鲁江-美丽的温柔,http://em.21dtv.com/songs/60076619.mkv +郑秀文-美丽的误会,http://em.21dtv.com/songs/60029229.mkv +罗志祥-美丽的误会,http://em.21dtv.com/songs/60029228.mkv +夹子道-美丽的误会,http://em.21dtv.com/songs/60029227.mkv +正歌-梦里的天堂,http://em.21dtv.com/songs/60094190.mkv +覃春江-梦里的天堂,http://em.21dtv.com/songs/60068486.mkv +张宇轩-美丽的天使,http://em.21dtv.com/songs/60068473.mkv +雨柔-梦里的桃花,http://em.21dtv.com/songs/60067230.mkv +林清国-迷恋的探戈(无原唱),http://em.21dtv.com/songs/60029887.mkv +合唱-美丽的土地(无原唱),http://em.21dtv.com/songs/60095496.mkv +佚名-美丽的土地(无原唱),http://em.21dtv.com/songs/60029226.mkv +随性 Random-美丽的所在,http://em.21dtv.com/songs/60114237.mkv +春城阿海-美丽的深圳,http://em.21dtv.com/songs/60076617.mkv +罗逻圣-美丽的誓言,http://em.21dtv.com/songs/60123079.mkv +张婧-梦里的声音,http://em.21dtv.com/songs/60029589.mkv +高胜海-美丽的三沙,http://em.21dtv.com/songs/60124723.mkv +张玲玲-美丽的上思,http://em.21dtv.com/songs/60105860.mkv +成铭-梦里的思念,http://em.21dtv.com/songs/60096304.mkv +费翔-梦里都是你,http://em.21dtv.com/songs/60029592.mkv +战斧乐队-美丽的世界,http://em.21dtv.com/songs/60130358.mkv +成龙+MIC男团-美丽的神话,http://em.21dtv.com/songs/60131454.mkv +梦苇+郑世勋-美丽的神话,http://em.21dtv.com/songs/60125830.mkv +白冰+胡歌-美丽的神话,http://em.21dtv.com/songs/60113900.mkv +霍尊-美丽的神话,http://em.21dtv.com/songs/60111516.mkv +孙楠+朱婷婷+王逸洁-美丽的神话(HD),http://em.21dtv.com/songs/10012774.mkv +孙楠+王逸洁+朱婷婷-美丽的神话(最美和声)(现场版),http://em.21dtv.com/songs/60100838.mkv +罗中旭+纪敏佳-美丽的神话,http://em.21dtv.com/songs/60083378.mkv +孙楠+韩红-美丽的神话,http://em.21dtv.com/songs/60029223.mkv +成龙+金喜善-美丽的神话,http://em.21dtv.com/songs/60029222.mkv +白冰+胡歌-美丽的神话,http://em.21dtv.com/songs/60029221.mkv +孙楠+韩红-美丽的神话(演唱会),http://em.21dtv.com/songs/60029220.mkv +成龙+金喜善-美丽的神话(hd剧情),http://em.21dtv.com/songs/60029219.mkv +汪明荃-美丽的时光(演唱会),http://em.21dtv.com/songs/60029224.mkv +王心凌-美丽的日子,http://em.21dtv.com/songs/60029218.mkv +丁晓红-美丽的日子,http://em.21dtv.com/songs/60029217.mkv +丁晓红-美丽的日子(演唱会),http://em.21dtv.com/songs/60029216.mkv +于台烟+王灿-美丽的人生,http://em.21dtv.com/songs/60029215.mkv +Better Man组合-美丽的情伤,http://em.21dtv.com/songs/60127646.mkv +小东-迷路的情人,http://em.21dtv.com/songs/60029898.mkv +萧煌奇+曾宝仪-美丽的情歌,http://em.21dtv.com/songs/60064525.mkv +洪荣宏-美丽的情歌,http://em.21dtv.com/songs/60029214.mkv +那英-美丽的朋友,http://em.21dtv.com/songs/60029213.mkv +张信哲-美丽地平线,http://em.21dtv.com/songs/60029250.mkv +前进乐团-迷路的牛仔,http://em.21dtv.com/songs/60083416.mkv +陈珊妮-美丽的女生(演唱会),http://em.21dtv.com/songs/60029212.mkv +迪克牛仔-迷路的男人,http://em.21dtv.com/songs/60029897.mkv +罗百吉-美丽的女孩,http://em.21dtv.com/songs/60070918.mkv +王识贤-美丽的梦中,http://em.21dtv.com/songs/60029210.mkv +宋孟君+黄华-美丽的梦想,http://em.21dtv.com/songs/60094481.mkv +佚名-美丽的梦神,http://em.21dtv.com/songs/60029209.mkv +佚名-美丽的梦神(中三),http://em.21dtv.com/songs/60029208.mkv +云丹久美-美丽的临洮,http://em.21dtv.com/songs/60134864.mkv +改编对唱-美丽的拉毛,http://em.21dtv.com/songs/60105926.mkv +周强-美丽的拉毛,http://em.21dtv.com/songs/60099155.mkv +拉毛王旭-美丽的拉毛(演唱会),http://em.21dtv.com/songs/60061416.mkv +林志玲-美丽的力量,http://em.21dtv.com/songs/60029206.mkv +佚名-美丽的开始,http://em.21dtv.com/songs/60029201.mkv +黎明-美丽的开始,http://em.21dtv.com/songs/60029200.mkv +王建杰-美丽的空梦,http://em.21dtv.com/songs/60029204.mkv +叶倩文-美丽的苦酒(演唱会),http://em.21dtv.com/songs/60029205.mkv +王梓旭-梦里的家园,http://em.21dtv.com/songs/60063054.mkv +李泽坚+李婉彤-美丽的家园,http://em.21dtv.com/songs/60029197.mkv +雪莲三姐妹-美丽的家乡,http://em.21dtv.com/songs/60076614.mkv +游美灵-美丽的家乡,http://em.21dtv.com/songs/60068472.mkv +高向鹏-美丽的家乡,http://em.21dtv.com/songs/60029196.mkv +龙千玉+江志美-美丽的镜头,http://em.21dtv.com/songs/60108196.mkv +麦玮婷-美丽的拒绝,http://em.21dtv.com/songs/60029199.mkv +江蕙-美丽的交换,http://em.21dtv.com/songs/60029198.mkv +格桑旺真-美丽的金川,http://em.21dtv.com/songs/60076615.mkv +郑婷婷-美丽的谎言,http://em.21dtv.com/songs/60121001.mkv +王馨-美丽的谎言,http://em.21dtv.com/songs/60111298.mkv +魏晨-美丽的谎言,http://em.21dtv.com/songs/60108169.mkv +张柏芝-美丽的谎言,http://em.21dtv.com/songs/60092638.mkv +XL特大号乐团-美丽的回忆,http://em.21dtv.com/songs/60029195.mkv +佚名-美丽的谎言,http://em.21dtv.com/songs/60029194.mkv +达明一派-美丽的谎言,http://em.21dtv.com/songs/60029193.mkv +沈志仲-美丽的痕迹,http://em.21dtv.com/songs/60108680.mkv +袁冰-美丽的红河,http://em.21dtv.com/songs/60112950.mkv +梁晓-梦里的呼唤,http://em.21dtv.com/songs/60076667.mkv +蔡济文-美丽的谎话,http://em.21dtv.com/songs/60029192.mkv +许智豪-美丽的海岸,http://em.21dtv.com/songs/60064523.mkv +阿彪-美丽的贵州,http://em.21dtv.com/songs/60101545.mkv +严当当-美丽的歌谣,http://em.21dtv.com/songs/60029177.mkv +吴莺音-美丽的归宿,http://em.21dtv.com/songs/60087568.mkv +肖燕-美丽的广西,http://em.21dtv.com/songs/60029188.mkv +龙千玉-美丽的故乡,http://em.21dtv.com/songs/60029187.mkv +廖文强-美丽的故事,http://em.21dtv.com/songs/60119489.mkv +蔡秋凤-美丽的故事,http://em.21dtv.com/songs/60066147.mkv +中国人-美丽的姑娘,http://em.21dtv.com/songs/60109930.mkv +乐飞扬-美丽的姑娘,http://em.21dtv.com/songs/60099728.mkv +徐健淇-美丽的姑娘,http://em.21dtv.com/songs/60076612.mkv +黄平-美丽的姑娘,http://em.21dtv.com/songs/60069600.mkv +郎军-梦里的姑娘,http://em.21dtv.com/songs/60067229.mkv +张德富-美丽的姑娘,http://em.21dtv.com/songs/60029182.mkv +阎维文-美丽的姑娘,http://em.21dtv.com/songs/60029181.mkv +容中尔甲-美丽的姑娘,http://em.21dtv.com/songs/60029180.mkv +李双江-美丽的姑娘,http://em.21dtv.com/songs/60029179.mkv +阿布-美丽的姑娘,http://em.21dtv.com/songs/60029178.mkv +乌兰图雅-美丽达古拉(演唱会),http://em.21dtv.com/songs/60068470.mkv +格桑梅朵-美丽的贡布,http://em.21dtv.com/songs/60091510.mkv +寒风-美丽的额吉,http://em.21dtv.com/songs/60101326.mkv +张赫宣-米兰的大雨,http://em.21dtv.com/songs/60113496.mkv +李玟-美丽的大雨,http://em.21dtv.com/songs/60029170.mkv +文千岁-美丽的都市(戏曲),http://em.21dtv.com/songs/60092747.mkv +杨洪基-美丽的大海,http://em.21dtv.com/songs/60029169.mkv +高胜美-朦胧的灯光,http://em.21dtv.com/songs/60029442.mkv +蒋雪儿-美丽的地方,http://em.21dtv.com/songs/60029172.mkv +杭娇-美丽的地方,http://em.21dtv.com/songs/60029171.mkv +凤娘+林信延-美丽的等待,http://em.21dtv.com/songs/60076611.mkv +梅花三姐妹-母泪滴滴爱,http://em.21dtv.com/songs/60030513.mkv +吕薇-美丽的村庄,http://em.21dtv.com/songs/60102025.mkv +张冬玲-美丽大草原,http://em.21dtv.com/songs/60083375.mkv +乌兰托娅-美丽的草原,http://em.21dtv.com/songs/60070917.mkv +张蓉蓉-美丽的错误,http://em.21dtv.com/songs/60075559.mkv +龙千玉+蔡小虎-美丽的错误,http://em.21dtv.com/songs/60029168.mkv +傅天颖-美丽的错误,http://em.21dtv.com/songs/60029167.mkv +萧亚轩-美丽的插曲,http://em.21dtv.com/songs/60029165.mkv +兰鸽-美丽的错觉,http://em.21dtv.com/songs/60062558.mkv +路嘉欣-美丽的冲动(无原唱),http://em.21dtv.com/songs/60029166.mkv +孙晓雨-梦里的背影,http://em.21dtv.com/songs/60111807.mkv +王金成-梦里的背影,http://em.21dtv.com/songs/60081783.mkv +佚名-美丽的宝岛,http://em.21dtv.com/songs/60029152.mkv +李彩桦-美丽的爱情,http://em.21dtv.com/songs/60029151.mkv +望海高歌-梦里常相伴,http://em.21dtv.com/songs/60113592.mkv +余飞-美丽笨女人,http://em.21dtv.com/songs/60112515.mkv +吴莫愁-美丽笨女人,http://em.21dtv.com/songs/60070915.mkv +李玟-美丽笨女人,http://em.21dtv.com/songs/60029145.mkv +陈奕迅-玛利奥派对(HD演唱会),http://em.21dtv.com/songs/60028396.mkv +陈奕迅-马利奥派对(演唱会),http://em.21dtv.com/songs/60028368.mkv +张柏芝-迷恋爱剧场,http://em.21dtv.com/songs/60029885.mkv +卢凯彤-卖空气的人,http://em.21dtv.com/songs/60130142.mkv +罗志祥-麦克疯之王,http://em.21dtv.com/songs/60097550.mkv +大芭-袂堪的思念,http://em.21dtv.com/songs/60029396.mkv +晓夏-摩羯座女孩,http://em.21dtv.com/songs/60113566.mkv +小老鹰乐团-梦见有一天,http://em.21dtv.com/songs/60107686.mkv +佚名-面具与化妆(无原唱),http://em.21dtv.com/songs/60030035.mkv +张惠妹-梦见铁达尼,http://em.21dtv.com/songs/60029570.mkv +陈盈洁-免讲你吗知(无原唱),http://em.21dtv.com/songs/60030008.mkv +王洪迪-梦见你会来,http://em.21dtv.com/songs/60121927.mkv +郭富城-梦见你回来(演唱会),http://em.21dtv.com/songs/60029569.mkv +关琍菱-袂记你的名(无原唱),http://em.21dtv.com/songs/60029394.mkv +谢娜-麻将进行曲,http://em.21dtv.com/songs/60028332.mkv +金志文-美酒加咖啡,http://em.21dtv.com/songs/60121029.mkv +刘清沨-美酒加咖啡,http://em.21dtv.com/songs/60115025.mkv +舒雅颂-美酒加咖啡(演唱会),http://em.21dtv.com/songs/60076607.mkv +卓依婷-美酒加咖啡,http://em.21dtv.com/songs/60029134.mkv +余天-美酒加咖啡,http://em.21dtv.com/songs/60029133.mkv +谢雷-美酒加咖啡,http://em.21dtv.com/songs/60029132.mkv +龙飘飘-美酒加咖啡,http://em.21dtv.com/songs/60029131.mkv +邓丽君-美酒加咖啡,http://em.21dtv.com/songs/60029130.mkv +谢雷-美酒加咖啡(演唱会),http://em.21dtv.com/songs/60029129.mkv +傅振辉+高向鹏-麻吉ㄟ好兄弟,http://em.21dtv.com/songs/60097666.mkv +奔奔-摩羯的爱情,http://em.21dtv.com/songs/60090872.mkv +GOSSIP-move in the right direction,http://em.21dtv.com/songs/60073619.mkv +秦杨-made in taiwan恰恰,http://em.21dtv.com/songs/60003694.mkv +REGIMA BELLE-make it like it was,http://em.21dtv.com/songs/60003715.mkv +谢雷-MIC开声,http://em.21dtv.com/songs/60098774.mkv +金岩-美好在人间,http://em.21dtv.com/songs/60085433.mkv +戏曲-梅花仙之一,http://em.21dtv.com/songs/60092732.mkv +刘罡-梦幻小夜曲,http://em.21dtv.com/songs/60101987.mkv +杨子-梦回外婆桥,http://em.21dtv.com/songs/60101108.mkv +吴卓羲+胡杏儿-咪话唔就你,http://em.21dtv.com/songs/60029842.mkv +朱桦-my heart will go on,http://em.21dtv.com/songs/60082271.mkv +TERESA CARPIO-my heart will go on,http://em.21dtv.com/songs/60003994.mkv +CELINE DION-my heart will go on,http://em.21dtv.com/songs/60003993.mkv +叶丽仪-my heart will go on(演唱会),http://em.21dtv.com/songs/60003992.mkv +田华+杜磊-米黄色衬衫,http://em.21dtv.com/songs/60029950.mkv +郝云-买还私奔的,http://em.21dtv.com/songs/60100508.mkv +叶启田-免喝人先醉,http://em.21dtv.com/songs/60030006.mkv +莫翰-梦回千山路,http://em.21dtv.com/songs/60096117.mkv +药小云-梦回乾坤湾,http://em.21dtv.com/songs/60114011.mkv +凌加峻-马后炮先生,http://em.21dtv.com/songs/60087370.mkv +王秀如-卖花女之恋,http://em.21dtv.com/songs/60076444.mkv +黄克林-庙会男子汉(无原唱),http://em.21dtv.com/songs/60030056.mkv +潘建义-梦回楠溪江,http://em.21dtv.com/songs/60085455.mkv +刘超华-梅花腊月开,http://em.21dtv.com/songs/60028980.mkv +马博-梅花弄弄弄,http://em.21dtv.com/songs/60136000.mkv +苏玮-梦回嘉峪关,http://em.21dtv.com/songs/60130686.mkv +LOREEN-my heart is refusing me,http://em.21dtv.com/songs/60073640.mkv +钟芹-梦回杭州湾,http://em.21dtv.com/songs/60029554.mkv +由美-猛虎和蔷薇,http://em.21dtv.com/songs/60108742.mkv +胡夏-美好的昨天,http://em.21dtv.com/songs/60111361.mkv +金钟大+金俊勉-美好的意外,http://em.21dtv.com/songs/60124587.mkv +鹿角乐团-美好的夜晚,http://em.21dtv.com/songs/60064521.mkv +林嘉欣-美好的原点(无原唱),http://em.21dtv.com/songs/60029122.mkv +佚名-梦幻的拥抱,http://em.21dtv.com/songs/60029540.mkv +梅艳芳-梦幻的拥抱,http://em.21dtv.com/songs/60029539.mkv +谭咏麟-梦幻的笑容,http://em.21dtv.com/songs/60029538.mkv +谭咏麟-梦幻的笑容(演唱会),http://em.21dtv.com/songs/60029537.mkv +伊人佳人组合-美好的瞬间,http://em.21dtv.com/songs/60068469.mkv +望海高歌-美好的守候,http://em.21dtv.com/songs/60135345.mkv +高斌-美好的生活,http://em.21dtv.com/songs/60127604.mkv +吴若希-美好的时光,http://em.21dtv.com/songs/60111757.mkv +EVER乐队-美好的时光,http://em.21dtv.com/songs/60067223.mkv +东方圣剑乐团-梦回到秋天,http://em.21dtv.com/songs/60085453.mkv +林依晨-美好的旅行,http://em.21dtv.com/songs/60029121.mkv +刘欢-梦回的家乡,http://em.21dtv.com/songs/60029553.mkv +胡松华-美好的家乡,http://em.21dtv.com/songs/60029120.mkv +马睿瑄-梦幻的国度,http://em.21dtv.com/songs/60120145.mkv +苏勒亚其其格-梦回大草原,http://em.21dtv.com/songs/60076661.mkv +谢军-美好的爱情,http://em.21dtv.com/songs/60029119.mkv +佚名-my heart belongs to me,http://em.21dtv.com/songs/60003990.mkv +佚名-mary had a little lamb,http://em.21dtv.com/songs/60003758.mkv +TWINS-mary had a little lamb,http://em.21dtv.com/songs/60003757.mkv +刘德华-魔鬼在恋爱(演唱会),http://em.21dtv.com/songs/60030346.mkv +周深-玫瑰与小鹿,http://em.21dtv.com/songs/60114456.mkv +陈健-玫瑰也伤心,http://em.21dtv.com/songs/60028963.mkv +郭新林-玫瑰与露水,http://em.21dtv.com/songs/60085431.mkv +远方-玫瑰已枯萎,http://em.21dtv.com/songs/60028964.mkv +孔莹-穆桂英挂帅,http://em.21dtv.com/songs/60087647.mkv +杨春霞-穆桂英挂帅,http://em.21dtv.com/songs/60030647.mkv +沈文程-唛搁想按怎,http://em.21dtv.com/songs/60028496.mkv +佚名-玫瑰我爱你,http://em.21dtv.com/songs/60028958.mkv +AILEE-my grown up christmas list,http://em.21dtv.com/songs/60073638.mkv +张悬-玫瑰色的你,http://em.21dtv.com/songs/60068467.mkv +冯允谦-每个人都会,http://em.21dtv.com/songs/60083371.mkv +冯允谦-每个人都会(演唱会),http://em.21dtv.com/songs/60083370.mkv +冯玉玺-每个人都会(演唱会),http://em.21dtv.com/songs/60062354.mkv +方大同-每个人都会(演唱会),http://em.21dtv.com/songs/60029038.mkv +木棉-玫瑰情人节,http://em.21dtv.com/songs/60028951.mkv +甲子蕙-敏感女人心,http://em.21dtv.com/songs/60030077.mkv +SHINE-曼谷玛利亚,http://em.21dtv.com/songs/60092189.mkv +梁汉文-曼谷玛利亚(演唱会),http://em.21dtv.com/songs/60028550.mkv +SHINE-曼谷玛得亚,http://em.21dtv.com/songs/60028549.mkv +陈瑞-玫瑰花又开,http://em.21dtv.com/songs/60028938.mkv +吴胜根-玫瑰花一朵,http://em.21dtv.com/songs/60099873.mkv +火山-玫瑰好妹妹,http://em.21dtv.com/songs/60129361.mkv +火山-玫瑰好妹妹,http://em.21dtv.com/songs/60121892.mkv +马浚伟-玫瑰和家明,http://em.21dtv.com/songs/60028931.mkv +云丹久美-玫瑰花儿香,http://em.21dtv.com/songs/60076593.mkv +男人唐潮-玫瑰花儿开(演唱会),http://em.21dtv.com/songs/60072188.mkv +谢霆锋-魔鬼的主意(演唱会),http://em.21dtv.com/songs/60030344.mkv +任盈盈-玫瑰的眼泪,http://em.21dtv.com/songs/60083349.mkv +永邦-魔鬼的眼泪,http://em.21dtv.com/songs/60030342.mkv +余炳轩-曼谷的雨季,http://em.21dtv.com/songs/60028548.mkv +叶玉卿-魔鬼的诱惑,http://em.21dtv.com/songs/60030343.mkv +金久哲-民工的向往,http://em.21dtv.com/songs/60080188.mkv +马丽-玫瑰的心事,http://em.21dtv.com/songs/60119060.mkv +钟镇涛-魔鬼的情诗,http://em.21dtv.com/songs/60030341.mkv +永邦-魔鬼的交易,http://em.21dtv.com/songs/60030340.mkv +童安格-玫瑰的谎言,http://em.21dtv.com/songs/60028927.mkv +陈子玄-蜜蜂与蜂蜜,http://em.21dtv.com/songs/60076706.mkv +台湾女孩-蜜蜂与蜂蜜,http://em.21dtv.com/songs/60072205.mkv +A-LIN-麻烦下一位,http://em.21dtv.com/songs/60028324.mkv +彭家丽-没法忘记他,http://em.21dtv.com/songs/60028713.mkv +黎瑞莲-没法失去你,http://em.21dtv.com/songs/60093576.mkv +黄烈传-my friend please come back,http://em.21dtv.com/songs/60003976.mkv +许绍洋-麻烦告诉她,http://em.21dtv.com/songs/60028320.mkv +萧玉芬-抹粉点胭脂,http://em.21dtv.com/songs/60030376.mkv +郑冰冰-魔法的秘密,http://em.21dtv.com/songs/60083431.mkv +Shawn Mendes-Mercy,http://em.21dtv.com/songs/60129988.mkv +Shawn Mendes-Mercy,http://em.21dtv.com/songs/60128698.mkv +陈小宇-Mercy,http://em.21dtv.com/songs/60119012.mkv +陈小宇-Mercy,http://em.21dtv.com/songs/60118153.mkv +中国好声音第二季-mercy(张目),http://em.21dtv.com/songs/60081468.mkv +彝人传奇-慕俄格往事,http://em.21dtv.com/songs/60120543.mkv +DJ舞曲-Mecha-Help Won‘t Come(Original Mix),http://em.21dtv.com/songs/30000576.mkv +杨坤-梦断紫禁城,http://em.21dtv.com/songs/60091395.mkv +太极乐队-梦到这故事,http://em.21dtv.com/songs/60029490.mkv +冯巩+牛振华-面的与皇冠,http://em.21dtv.com/songs/60089654.mkv +纪晓斌-面对现实吧,http://em.21dtv.com/songs/60120847.mkv +纪晓斌-面对现实吧,http://em.21dtv.com/songs/60114722.mkv +[Group] +groupName=十六万歌曲MV等 - 72 +赤龙-梦的新起点,http://em.21dtv.com/songs/60120973.mkv +吴淑敏-迷到无药医,http://em.21dtv.com/songs/60029858.mkv +高进-梦带我旅行,http://em.21dtv.com/songs/60029487.mkv +LIONEL RICHIE-my destiny uk single version,http://em.21dtv.com/songs/60003967.mkv +佚名-摩的叨位去,http://em.21dtv.com/songs/60083429.mkv +李克勤-牡丹亭惊梦(演唱会),http://em.21dtv.com/songs/60030552.mkv +陈宝珠+尹飞燕-牡丹亭惊梦(演唱会),http://em.21dtv.com/songs/60030551.mkv +薛凯琪-麦当娜一吻,http://em.21dtv.com/songs/60028436.mkv +许志安-每当你流泪,http://em.21dtv.com/songs/60029024.mkv +姜木-马德里美女,http://em.21dtv.com/songs/60076554.mkv +庄振凯-袂冻将你留,http://em.21dtv.com/songs/60125483.mkv +洪百慧+林俊吉-袂冻讲的爱,http://em.21dtv.com/songs/60135507.mkv +办桌二人组-抹冻搁回头,http://em.21dtv.com/songs/60095471.mkv +杨宗宪-袂冻搁回头,http://em.21dtv.com/songs/60029390.mkv +冯博娟-每当风起时,http://em.21dtv.com/songs/60029022.mkv +高雅如-抹冻到最后(无原唱),http://em.21dtv.com/songs/60030374.mkv +隋超-梦的第一章,http://em.21dtv.com/songs/60076657.mkv +万芳-michelle的第一天,http://em.21dtv.com/songs/60070374.mkv +李玟-矛盾的心理,http://em.21dtv.com/songs/60028692.mkv +澎恰恰-懵懂的年代,http://em.21dtv.com/songs/60029454.mkv +陈柏宇-矛盾大对决(HD),http://em.21dtv.com/songs/60097523.mkv +约瑟翰 庞麦郎-摩的大飚客,http://em.21dtv.com/songs/60106185.mkv +洛天依-摩的大飚客(打吊针),http://em.21dtv.com/songs/60083427.mkv +杨千桦-每当变换时,http://em.21dtv.com/songs/60092840.mkv +黄凯芹-每当变幻时,http://em.21dtv.com/songs/60066145.mkv +周小君-每当变幻时,http://em.21dtv.com/songs/60063466.mkv +杨千嬅-每当变幻时,http://em.21dtv.com/songs/60029021.mkv +薰妮-每当变幻时,http://em.21dtv.com/songs/60029020.mkv +张伟文-每当变幻时(演唱会),http://em.21dtv.com/songs/60029019.mkv +温拿乐队-每当变幻时(演唱会),http://em.21dtv.com/songs/60029018.mkv +蔡佳麟-袂冻爱的人,http://em.21dtv.com/songs/60117188.mkv +罗时丰-袂冻爱的人,http://em.21dtv.com/songs/60029389.mkv +张信哲-Mdada,http://em.21dtv.com/songs/60125489.mkv +何润东-每次想到你,http://em.21dtv.com/songs/60029014.mkv +闪灵乐团-暮沉武德殿,http://em.21dtv.com/songs/60108947.mkv +闪灵乐团-暮沉武德殿,http://em.21dtv.com/songs/60086712.mkv +詹曼铃-没词ㄟ恋歌,http://em.21dtv.com/songs/60115378.mkv +日笠阳子-美しき残酷な世界,http://em.21dtv.com/songs/60083373.mkv +张学友-merry christmas i love you,http://em.21dtv.com/songs/60003799.mkv +佚名-马车夫之恋,http://em.21dtv.com/songs/60028351.mkv +童唱-马车夫之恋,http://em.21dtv.com/songs/60028350.mkv +蒋大为-马车夫之歌,http://em.21dtv.com/songs/60067217.mkv +兄弟联-漫长的约会,http://em.21dtv.com/songs/60028575.mkv +德德玛-牧村的黄昏,http://em.21dtv.com/songs/60030602.mkv +李恕权-漫长的告别,http://em.21dtv.com/songs/60028574.mkv +夏国星+孙佩林-卖茶的阿公,http://em.21dtv.com/songs/60028456.mkv +夏国星+孙佩林-卖菜的阿公,http://em.21dtv.com/songs/60028454.mkv +佚名-莫愁啊莫愁,http://em.21dtv.com/songs/60030418.mkv +苏红-莫愁啊莫愁,http://em.21dtv.com/songs/60030417.mkv +龚月-莫愁啊莫愁,http://em.21dtv.com/songs/60030416.mkv +佚名-莫愁啊莫愁(恰恰恰),http://em.21dtv.com/songs/60030415.mkv +佚名-每次爱过后,http://em.21dtv.com/songs/60029009.mkv +李美凤-每次爱过后,http://em.21dtv.com/songs/60029008.mkv +盛云龙-梦不在远方,http://em.21dtv.com/songs/60094239.mkv +蔡明顺-梦不在远方,http://em.21dtv.com/songs/60085448.mkv +洪禄云+陈水林-漫步月色中,http://em.21dtv.com/songs/60085415.mkv +红蔷薇-莫把心弄丢,http://em.21dtv.com/songs/60096425.mkv +吴奇隆-梦不完的你,http://em.21dtv.com/songs/60029485.mkv +黎明-明白我的爱,http://em.21dtv.com/songs/60104883.mkv +游美灵-马背上汉子,http://em.21dtv.com/songs/60076550.mkv +徐林-曼波人生路,http://em.21dtv.com/songs/60135288.mkv +钟明秋-漫步人生路,http://em.21dtv.com/songs/60126322.mkv +黄红英-漫步人生路,http://em.21dtv.com/songs/60093541.mkv +雷安娜-漫步人生路,http://em.21dtv.com/songs/60093503.mkv +张靓颖-漫步人生路,http://em.21dtv.com/songs/60092653.mkv +吴香伦-漫步人生路(演唱会),http://em.21dtv.com/songs/60076570.mkv +刘惜君-漫步人生路,http://em.21dtv.com/songs/60070907.mkv +刘德华-漫步人生路,http://em.21dtv.com/songs/60070906.mkv +黄日华+戚美珍-漫步人生路,http://em.21dtv.com/songs/60068459.mkv +邓丽君-漫步人生路,http://em.21dtv.com/songs/60028564.mkv +张伟文-漫步人生路(演唱会),http://em.21dtv.com/songs/60028563.mkv +龙飘飘-明白你的心,http://em.21dtv.com/songs/60030097.mkv +蔡旻佑-梦不落帝国,http://em.21dtv.com/songs/60029484.mkv +SNH48-面包和奶油,http://em.21dtv.com/songs/60125002.mkv +谭学胜-美不过成都,http://em.21dtv.com/songs/60081154.mkv +林依晨-面包的滋味,http://em.21dtv.com/songs/60061428.mkv +范晓萱+刘维-面包的故事,http://em.21dtv.com/songs/60130692.mkv +张久新-马背的风景,http://em.21dtv.com/songs/60086690.mkv +周慧敏-没爱一身轻,http://em.21dtv.com/songs/60028704.mkv +康茜-猫爱上老鼠,http://em.21dtv.com/songs/60068462.mkv +乌兰齐齐格-马鞍上的花,http://em.21dtv.com/songs/60076547.mkv +宁桓宇-Mango,http://em.21dtv.com/songs/60114488.mkv +AAA-MAGIC,http://em.21dtv.com/songs/60132038.mkv +仓木麻衣-梦が咲く春,http://em.21dtv.com/songs/60029473.mkv +绚香-梦を味方に,http://em.21dtv.com/songs/60029475.mkv +松たか子-梦のしずく,http://em.21dtv.com/songs/60029474.mkv +蒋姗倍-六字真言诵,http://em.21dtv.com/songs/60070889.mkv +萧洋-临走这一刻,http://em.21dtv.com/songs/60108865.mkv +佚名-留住这一刻,http://em.21dtv.com/songs/60027599.mkv +佚名-浪子走天涯,http://em.21dtv.com/songs/60026308.mkv +罗时丰-浪子走天涯,http://em.21dtv.com/songs/60026307.mkv +陈一郎-浪子走天涯,http://em.21dtv.com/songs/60026306.mkv +张学友-留住这时光,http://em.21dtv.com/songs/60027598.mkv +王盼盼-乐章之慢摇,http://em.21dtv.com/songs/60090087.mkv +5566乐队-留住这感觉,http://em.21dtv.com/songs/60090387.mkv +郑秀文-理智与感情,http://em.21dtv.com/songs/60132992.mkv +陈柏宇+杨丞琳-理智与爱情,http://em.21dtv.com/songs/60026900.mkv +艾尼瓦尔江-两只小山羊,http://em.21dtv.com/songs/60117996.mkv +斯琴格日乐-两只小山羊,http://em.21dtv.com/songs/60109392.mkv +高向鹏-浪子心声泪(无原唱),http://em.21dtv.com/songs/60026305.mkv +李晓杰-两只小蜜蜂,http://em.21dtv.com/songs/60027321.mkv +迟玉昊-留在我身边,http://em.21dtv.com/songs/60080924.mkv +张敬轩-两座位跑车(演唱会),http://em.21dtv.com/songs/60027323.mkv +书云-拉着我的手,http://em.21dtv.com/songs/60110829.mkv +王莹-林芝桃花香,http://em.21dtv.com/songs/60109537.mkv +陈小云-旅姿三人男,http://em.21dtv.com/songs/60028149.mkv +陈慧娴-梁祝+碎花,http://em.21dtv.com/songs/60093444.mkv +许书豪-路转人不转,http://em.21dtv.com/songs/60118035.mkv +陈慧琳-临走前吻我,http://em.21dtv.com/songs/60027404.mkv +前进乐团-留在你身边,http://em.21dtv.com/songs/60076485.mkv +顾峰-留在你身边,http://em.21dtv.com/songs/60067209.mkv +梅艳芳-留住你今晚(演唱会),http://em.21dtv.com/songs/60027592.mkv +童彤-赖在你怀里,http://em.21dtv.com/songs/60026025.mkv +李家发+伍婉琛-留住你的心,http://em.21dtv.com/songs/60092802.mkv +谢东-拉着你的手,http://em.21dtv.com/songs/60025918.mkv +韩磊-拉着你的手,http://em.21dtv.com/songs/60025917.mkv +刘天助-留住你多好,http://em.21dtv.com/songs/60101613.mkv +黄少峰-陆垚知马俐,http://em.21dtv.com/songs/60126473.mkv +火星电台-陆垚知马俐,http://em.21dtv.com/songs/60124226.mkv +于瀚-落在回忆里,http://em.21dtv.com/songs/60085406.mkv +张露-露珠和蔷薇,http://em.21dtv.com/songs/60027981.mkv +徐子洺-梁祝化蝶飞,http://em.21dtv.com/songs/60117755.mkv +宋雪莱-浪子何处归,http://em.21dtv.com/songs/60026277.mkv +麦家瑜+陈诗慧+MR+邓健泓+李克勤-励志歌曲medley(演唱会),http://em.21dtv.com/songs/60076404.mkv +七郎+黄汉杰-浪子的真情,http://em.21dtv.com/songs/60110813.mkv +庄学忠-浪子的眼泪,http://em.21dtv.com/songs/60087761.mkv +陈百潭-浪子的心声,http://em.21dtv.com/songs/60096018.mkv +罗时丰-浪子的心情,http://em.21dtv.com/songs/60076326.mkv +卓依婷+林正桦-浪子的心情,http://em.21dtv.com/songs/60026275.mkv +叶启田-浪子的心情,http://em.21dtv.com/songs/60026274.mkv +雨宗林-励志的小明,http://em.21dtv.com/songs/60135962.mkv +杨钰莹-林中的小路,http://em.21dtv.com/songs/60080545.mkv +朱桦-林中的小路,http://em.21dtv.com/songs/60027393.mkv +佚名-林中的小路,http://em.21dtv.com/songs/60027392.mkv +梁静茹-恋着多喜欢,http://em.21dtv.com/songs/60027155.mkv +七郎-浪子的乡愁,http://em.21dtv.com/songs/60026273.mkv +林飞翔-浪子的探戈(无原唱),http://em.21dtv.com/songs/60026272.mkv +佚名-临走的誓言,http://em.21dtv.com/songs/60027403.mkv +罗时丰-浪子的锁链,http://em.21dtv.com/songs/60134102.mkv +陈小云-浪子的锁鍊,http://em.21dtv.com/songs/60095989.mkv +罗时丰-浪子的锁链,http://em.21dtv.com/songs/60095859.mkv +俞隆华-浪子的锁链,http://em.21dtv.com/songs/60049336.mkv +林姗-浪子的锁链,http://em.21dtv.com/songs/60026271.mkv +黄克林-浪子的情泪(无原唱),http://em.21dtv.com/songs/60026269.mkv +七郎-浪子的祈祷,http://em.21dtv.com/songs/60026268.mkv +刘清沨-六字大明咒,http://em.21dtv.com/songs/60126654.mkv +吴宇凯-浪子的命运(无原唱),http://em.21dtv.com/songs/60026267.mkv +佚名-郎仔的脚步,http://em.21dtv.com/songs/60026189.mkv +陈一郎-郎仔的脚步,http://em.21dtv.com/songs/60026188.mkv +陈小云-浪子的忏悔,http://em.21dtv.com/songs/60026266.mkv +阿吉仔-浪子的忏悔,http://em.21dtv.com/songs/60026265.mkv +翁立友-浪子变英雄,http://em.21dtv.com/songs/60083260.mkv +苏小艾-另一种永远,http://em.21dtv.com/songs/60111374.mkv +童唱-老鹰捉小鸡,http://em.21dtv.com/songs/60026448.mkv +童唱-老鹰抓小鸡,http://em.21dtv.com/songs/60026447.mkv +沈芯羽-老鹰抓小鸡,http://em.21dtv.com/songs/60026446.mkv +余天-另一种乡愁,http://em.21dtv.com/songs/60027496.mkv +佚名-另一种乡愁,http://em.21dtv.com/songs/60027495.mkv +韩宝仪-另一种乡愁,http://em.21dtv.com/songs/60027494.mkv +姜佑泽-另一种温柔,http://em.21dtv.com/songs/60085389.mkv +隆隆-另一种温柔,http://em.21dtv.com/songs/60027493.mkv +石康钧-另一种温暖,http://em.21dtv.com/songs/60027492.mkv +马常宝-老椰子树下,http://em.21dtv.com/songs/60081111.mkv +赵伟胜-路遥知马力,http://em.21dtv.com/songs/60126226.mkv +臧天朔-另一种美丽,http://em.21dtv.com/songs/60027491.mkv +秀兰玛雅-路要自己走,http://em.21dtv.com/songs/60107096.mkv +陈奕迅-路一直都在,http://em.21dtv.com/songs/60027960.mkv +叶胜钦-老芋仔的歌,http://em.21dtv.com/songs/60026454.mkv +李佑晨-另一种伴侣,http://em.21dtv.com/songs/60133786.mkv +张韶涵-淋雨一直走,http://em.21dtv.com/songs/60076448.mkv +张津涤-陆游与唐婉,http://em.21dtv.com/songs/60100864.mkv +大台风乐团-老爷与水某,http://em.21dtv.com/songs/60125347.mkv +杨梓-落叶一片片,http://em.21dtv.com/songs/60067214.mkv +佚名-落叶相思情,http://em.21dtv.com/songs/60028119.mkv +方志耀-留一些空间(无原唱),http://em.21dtv.com/songs/60027581.mkv +刘正淳-路遥无人语,http://em.21dtv.com/songs/60093646.mkv +颜悦-六月他和她,http://em.21dtv.com/songs/60027800.mkv +张磊-轮椅上的爱,http://em.21dtv.com/songs/60093897.mkv +莫文蔚-恋一世的爱,http://em.21dtv.com/songs/60027153.mkv +关淑怡-恋一世的爱(演唱会),http://em.21dtv.com/songs/60027152.mkv +杨坤+人声兄弟-里约热内卢,http://em.21dtv.com/songs/60113670.mkv +杨坤-里约热内路,http://em.21dtv.com/songs/60026880.mkv +杨坤-里约热内卢(演唱会),http://em.21dtv.com/songs/60026879.mkv +邓丽欣-零与零之间,http://em.21dtv.com/songs/60027472.mkv +PALOMA FAITH-let your love walk in(演唱会),http://em.21dtv.com/songs/60082230.mkv +ERIC CHURCH-love your love the most,http://em.21dtv.com/songs/60060867.mkv +小乔-捞月亮的人,http://em.21dtv.com/songs/60103226.mkv +杨千嬅-捞月亮的人(演唱会),http://em.21dtv.com/songs/60026309.mkv +蔡丽津+廖伟志-冷眼看人生,http://em.21dtv.com/songs/60135710.mkv +罗琳-浏阳河之恋,http://em.21dtv.com/songs/60128311.mkv +麦洁文-莱茵河之恋(演唱会),http://em.21dtv.com/songs/60026023.mkv +何炅-另一个自己,http://em.21dtv.com/songs/60112503.mkv +胡彦斌+邓丽欣-另一个自己,http://em.21dtv.com/songs/60027489.mkv +王雪晶+庄群诗-腊月过小年,http://em.21dtv.com/songs/60088340.mkv +关心妍-另一个舞台,http://em.21dtv.com/songs/60027488.mkv +王力宏+张靓颖-另一个天堂,http://em.21dtv.com/songs/60027487.mkv +吴俊宏+林姗-冷月挂伤痕,http://em.21dtv.com/songs/60064466.mkv +陈宝怡-另一个结尾,http://em.21dtv.com/songs/60129735.mkv +林淑蓉-另一个结局,http://em.21dtv.com/songs/60027486.mkv +S.H.E-六一二星球(演唱会),http://em.21dtv.com/songs/60027787.mkv +七郎-淋雨的滋味,http://em.21dtv.com/songs/60095380.mkv +罗志强-落叶的优伤,http://em.21dtv.com/songs/60062746.mkv +廖晓林-勒优的思念(演唱会),http://em.21dtv.com/songs/60026481.mkv +吴陌川-落叶的季节,http://em.21dtv.com/songs/60135043.mkv +崔苗-拦羊的哥哥,http://em.21dtv.com/songs/60123872.mkv +詹雅雯-落雨的车站,http://em.21dtv.com/songs/60028126.mkv +佚名-落雨的暗暝,http://em.21dtv.com/songs/60028125.mkv +邱芸子-落雨的暗暝,http://em.21dtv.com/songs/60028124.mkv +江蕙-落雨的暗暝,http://em.21dtv.com/songs/60028123.mkv +王瑞霞-落雨彼一夜,http://em.21dtv.com/songs/60028121.mkv +忆如-良夜不能留,http://em.21dtv.com/songs/60089890.mkv +佚名-良夜不能留,http://em.21dtv.com/songs/60027175.mkv +费玉清-良夜不能留,http://em.21dtv.com/songs/60027174.mkv +莫旭秋-良夜不能留(演唱会),http://em.21dtv.com/songs/60027173.mkv +周传雄-泪也不敢流,http://em.21dtv.com/songs/60026553.mkv +梅艳芳-落叶不归根,http://em.21dtv.com/songs/60028108.mkv +叶倩文-理想中的人,http://em.21dtv.com/songs/60026894.mkv +许冠文-流下眼泪前(演唱会),http://em.21dtv.com/songs/60027720.mkv +徐小凤-流下眼泪前(演唱会),http://em.21dtv.com/songs/60027719.mkv +谭咏麟-理想与和平(演唱会),http://em.21dtv.com/songs/60026893.mkv +谭咏麟+李克勤-理想与和平(演唱会),http://em.21dtv.com/songs/60026892.mkv +林一峰+杜丽莎-理性与感性,http://em.21dtv.com/songs/60125764.mkv +侯牧人-留下油灯光,http://em.21dtv.com/songs/60027571.mkv +马晓晨-留下一点爱,http://em.21dtv.com/songs/60134464.mkv +陈升-流星小夜曲,http://em.21dtv.com/songs/60027736.mkv +高向鹏-老兄行酒楼(演唱会),http://em.21dtv.com/songs/60026442.mkv +张学友+许慧欣-流星下的愿(演唱会),http://em.21dtv.com/songs/60027735.mkv +佚名-流星我问你,http://em.21dtv.com/songs/60027734.mkv +沈文程-流星我问你,http://em.21dtv.com/songs/60027733.mkv +甄妮-留下我美梦,http://em.21dtv.com/songs/60093013.mkv +影视歌曲-留下我美梦,http://em.21dtv.com/songs/60092705.mkv +佚名-留下我美梦,http://em.21dtv.com/songs/60027570.mkv +佚名-离乡十万里(无原唱),http://em.21dtv.com/songs/60026796.mkv +艳阳天-零下三十度,http://em.21dtv.com/songs/60069574.mkv +康然-零下三十度,http://em.21dtv.com/songs/60062542.mkv +陈晓东-流星森林雨(演唱会),http://em.21dtv.com/songs/60027732.mkv +蔡立儿-留下你一会,http://em.21dtv.com/songs/60027568.mkv +任贤齐-留下你的美,http://em.21dtv.com/songs/60090563.mkv +叶胜钦-流星来作伴,http://em.21dtv.com/songs/60027731.mkv +欢子-留下来好吗,http://em.21dtv.com/songs/60118732.mkv +孙耀威-留下来好吗,http://em.21dtv.com/songs/60027564.mkv +旭日阳刚-老乡见老乡,http://em.21dtv.com/songs/60076356.mkv +孙浩-老乡见老乡(演唱会),http://em.21dtv.com/songs/60026441.mkv +杨林-零下几度c,http://em.21dtv.com/songs/60027470.mkv +余天-留下恨悠悠,http://em.21dtv.com/songs/60027561.mkv +佚名-留下恨悠悠,http://em.21dtv.com/songs/60027560.mkv +亥儿乐队-良宵花弄月,http://em.21dtv.com/songs/60027168.mkv +SLAP-理想2.0,http://em.21dtv.com/songs/60122418.mkv +TENSION-另想挡住我,http://em.21dtv.com/songs/60087224.mkv +李泉-旅行的意义,http://em.21dtv.com/songs/60113636.mkv +徐佳莹-旅行的意义,http://em.21dtv.com/songs/60085404.mkv +徐佳莹-旅行的意义(演唱会),http://em.21dtv.com/songs/60076514.mkv +刘若英+玛莎-旅行的意义(演唱会),http://em.21dtv.com/songs/60076513.mkv +佚名-旅行的意义,http://em.21dtv.com/songs/60028143.mkv +陈绮贞-旅行的意义,http://em.21dtv.com/songs/60028142.mkv +姜佑泽-流星的愿望,http://em.21dtv.com/songs/60085393.mkv +薛之谦-流星的眼泪,http://em.21dtv.com/songs/60027729.mkv +李俊熙-流星的眼泪,http://em.21dtv.com/songs/60027728.mkv +黄克林-离乡的心情,http://em.21dtv.com/songs/60026793.mkv +佚名-俩兄弟-洗菜,http://em.21dtv.com/songs/60027336.mkv +沈文程-离乡的男儿(无原唱),http://em.21dtv.com/songs/60095760.mkv +佚名-离乡的男儿(无原唱),http://em.21dtv.com/songs/60026791.mkv +梁永泰-楼下的房客,http://em.21dtv.com/songs/60125815.mkv +洪卓立-留下的房客,http://em.21dtv.com/songs/60076483.mkv +徐镇东-流星的传说,http://em.21dtv.com/songs/60027727.mkv +王冰洋-流血的承诺,http://em.21dtv.com/songs/60027742.mkv +陈明真-恋心的翅膀,http://em.21dtv.com/songs/60088881.mkv +杨青倩-练习不想他,http://em.21dtv.com/songs/60066116.mkv +詹宇琦-练习不害怕,http://em.21dtv.com/songs/60085378.mkv +黄品冠-离我远一点,http://em.21dtv.com/songs/60026788.mkv +罗敏庄+黄日华-两忘烟水里(演唱会),http://em.21dtv.com/songs/60076435.mkv +林子祥+谢安琪-俩忘烟水里(演唱会),http://em.21dtv.com/songs/60076405.mkv +尹光+吕有慧-俩忘烟水里(演唱会),http://em.21dtv.com/songs/60061366.mkv +佚名-俩忘烟水里,http://em.21dtv.com/songs/60027332.mkv +关正杰+关菊英-俩忘烟水里,http://em.21dtv.com/songs/60027331.mkv +朱咪咪-俩忘烟水里(演唱会),http://em.21dtv.com/songs/60027330.mkv +朱咪咪+叶振棠-俩忘烟水里(演唱会),http://em.21dtv.com/songs/60027329.mkv +关正杰+关菊英-两忘烟水里,http://em.21dtv.com/songs/60027304.mkv +叶振棠+关菊英-两忘烟水里(演唱会),http://em.21dtv.com/songs/60027303.mkv +伊雪-留我一个人,http://em.21dtv.com/songs/60027559.mkv +汪佩蓉-另外一个你,http://em.21dtv.com/songs/60027482.mkv +ONE DIRECTION-live while were young,http://em.21dtv.com/songs/60071632.mkv +KENNY ROGERS-love will turn you around,http://em.21dtv.com/songs/60003616.mkv +佚名-芦苇疗养院,http://em.21dtv.com/songs/60027896.mkv +佚名-love will lead you back,http://em.21dtv.com/songs/60003613.mkv +佚名-lonely wont leave me alone,http://em.21dtv.com/songs/60003466.mkv +PATTY SMYTH-look what love has done,http://em.21dtv.com/songs/60003486.mkv +佚名-love will keep us together,http://em.21dtv.com/songs/60003612.mkv +李宇春-love will keep us alive,http://em.21dtv.com/songs/60003611.mkv +佚名-love will keep us alive(无原唱),http://em.21dtv.com/songs/60003610.mkv +蒙面哥-老王很伤心,http://em.21dtv.com/songs/60127363.mkv +PABLO CRUISE-love will find a way,http://em.21dtv.com/songs/60003609.mkv +BTOB-L.u.v,http://em.21dtv.com/songs/60129900.mkv +佚名-理天自由行(无原唱),http://em.21dtv.com/songs/60026881.mkv +古巨基-蓝天与白云,http://em.21dtv.com/songs/60026130.mkv +古巨基-蓝天与白云(演唱会),http://em.21dtv.com/songs/60026129.mkv +林展逸-龙潭乡之歌,http://em.21dtv.com/songs/60027839.mkv +孟庭苇-蓝天小星星,http://em.21dtv.com/songs/60026128.mkv +许冠杰-蓝天消失了,http://em.21dtv.com/songs/60026127.mkv +陈以桐-love the way you lie,http://em.21dtv.com/songs/60084741.mkv +JASON CHEN-love the way you lie,http://em.21dtv.com/songs/60082244.mkv +RIHANNA-love the way you lie,http://em.21dtv.com/songs/60003603.mkv +BOYZONE-last thing on my mind,http://em.21dtv.com/songs/60003284.mkv +盖鸣晖+吴美英-楼台会-哭别,http://em.21dtv.com/songs/60027886.mkv +郁冬-露天电影院,http://em.21dtv.com/songs/60027974.mkv +傅仕伦+董一明-骆驼的眼睛,http://em.21dtv.com/songs/60028050.mkv +邢高瑗-龙腾大湖湾,http://em.21dtv.com/songs/60112293.mkv +洪荣宏-老土地的话(无原唱),http://em.21dtv.com/songs/60026434.mkv +安静-来生在一起,http://em.21dtv.com/songs/60062210.mkv +毛泽少-来生再续缘,http://em.21dtv.com/songs/60116088.mkv +王杰-来生再续缘,http://em.21dtv.com/songs/60026003.mkv +刘洪云-绿色在人间,http://em.21dtv.com/songs/60061384.mkv +德乾旺姆-拉萨祝福你,http://em.21dtv.com/songs/60025913.mkv +欢子-来生再爱你,http://em.21dtv.com/songs/60102425.mkv +赵仰瑞-龙澍峪之歌,http://em.21dtv.com/songs/60131844.mkv +魏金栋+于文华-拉手又松手,http://em.21dtv.com/songs/60118201.mkv +琼雷卓玛-拉萨夜色美,http://em.21dtv.com/songs/60091752.mkv +高安-来生一起走,http://em.21dtv.com/songs/60111540.mkv +高安-来生一起走,http://em.21dtv.com/songs/60095361.mkv +SOLER-蓝色摇篮曲,http://em.21dtv.com/songs/60061346.mkv +胡睿-离石游击队,http://em.21dtv.com/songs/60115342.mkv +游鸿明-恋上一个人,http://em.21dtv.com/songs/60027143.mkv +屠洪纲-梁山小英雄,http://em.21dtv.com/songs/60091001.mkv +I.N.G-lucky star幸运星,http://em.21dtv.com/songs/60003673.mkv +陈平进-老师辛苦了,http://em.21dtv.com/songs/60015468.mkv +春妹-梨山小姑娘,http://em.21dtv.com/songs/60026820.mkv +秀兰玛雅-拢是为着爱,http://em.21dtv.com/songs/60085402.mkv +佚名-拢是为着爱,http://em.21dtv.com/songs/60027867.mkv +张智霖-恋上外星人,http://em.21dtv.com/songs/60061370.mkv +王莹-老师我想你,http://em.21dtv.com/songs/60026407.mkv +群星-老师我想你(演唱会),http://em.21dtv.com/songs/60026406.mkv +孙淑媚-拢是无情人,http://em.21dtv.com/songs/60027870.mkv +高向鹏-拢是为你啦,http://em.21dtv.com/songs/60027866.mkv +海冰冰-恋上网的鱼,http://em.21dtv.com/songs/60083297.mkv +BONNIE RAITT-love sneakinup on you,http://em.21dtv.com/songs/60003589.mkv +拾叁乐团-蓝色天花板(无原唱),http://em.21dtv.com/songs/60026106.mkv +周传雄-蓝色土耳其,http://em.21dtv.com/songs/60026109.mkv +梁汉文-零时十一分,http://em.21dtv.com/songs/60027467.mkv +李慧敏-蓝色伞下等,http://em.21dtv.com/songs/60062591.mkv +李蕙敏-蓝色伞下等,http://em.21dtv.com/songs/60026103.mkv +周杰伦-疗伤烧肉粽,http://em.21dtv.com/songs/60064481.mkv +李国祥-蓝色sha la la,http://em.21dtv.com/songs/60026070.mkv +路飞老湿-乱世三国杀,http://em.21dtv.com/songs/60118080.mkv +徐若瑄-蓝色圣诞节,http://em.21dtv.com/songs/60106881.mkv +佚名-蓝色蔷薇雨(无原唱),http://em.21dtv.com/songs/60026102.mkv +办桌二人组-来世牵手行(无原唱),http://em.21dtv.com/songs/60026004.mkv +谢娜-蓝色巧克力,http://em.21dtv.com/songs/60076319.mkv +陈奕迅-蓝色频闪灯,http://em.21dtv.com/songs/60076318.mkv +黄韵玲-蓝色啤酒海,http://em.21dtv.com/songs/60026101.mkv +于文华-老师你好吗,http://em.21dtv.com/songs/60114380.mkv +于文华-老师你好吗,http://em.21dtv.com/songs/60026405.mkv +彭伟家-恋上你的美,http://em.21dtv.com/songs/60118575.mkv +彭伟家-恋上你的美,http://em.21dtv.com/songs/60086678.mkv +张杉弟-恋上你的泪,http://em.21dtv.com/songs/60125509.mkv +于洋-恋上那朵莲,http://em.21dtv.com/songs/60072148.mkv +郑秀文-恋上你的床,http://em.21dtv.com/songs/60027141.mkv +远方-恋上你的床,http://em.21dtv.com/songs/60027139.mkv +梁落施-恋上你的blog,http://em.21dtv.com/songs/60027138.mkv +孙楠-留什么给你,http://em.21dtv.com/songs/60116702.mkv +孙楠-留什么给你,http://em.21dtv.com/songs/60027557.mkv +李克勤-留什么给你,http://em.21dtv.com/songs/60027556.mkv +浅蓝-蓝色狂想曲,http://em.21dtv.com/songs/60124208.mkv +童安格-留声机恋曲,http://em.21dtv.com/songs/60027558.mkv +DEAR JANE-lets just do it,http://em.21dtv.com/songs/60067930.mkv +黄品源-蓝色计程车,http://em.21dtv.com/songs/60026095.mkv +陈淑芳-懒司介爱人,http://em.21dtv.com/songs/60026163.mkv +潘攀+刘君-来生还继续,http://em.21dtv.com/songs/60076309.mkv +同级生-老实告诉你,http://em.21dtv.com/songs/60026408.mkv +尚雯婕-lets get it started,http://em.21dtv.com/songs/60071628.mkv +王莹-绿色的祝愿,http://em.21dtv.com/songs/60123014.mkv +爱晴-泪水的重量,http://em.21dtv.com/songs/60103430.mkv +群星-绿色的祖国,http://em.21dtv.com/songs/60028182.mkv +佚名-蓝色的忧郁,http://em.21dtv.com/songs/60026090.mkv +谢雷-蓝色的忧郁,http://em.21dtv.com/songs/60026089.mkv +周子博-拉萨的月亮,http://em.21dtv.com/songs/60121504.mkv +古天乐-蓝色的缘分,http://em.21dtv.com/songs/60061343.mkv +韩红-蓝色的雪山,http://em.21dtv.com/songs/60088958.mkv +陈洁丽-绿色的旋律(演唱会),http://em.21dtv.com/songs/60028181.mkv +林良乐-蓝色的午夜(无原唱),http://em.21dtv.com/songs/60026088.mkv +韩磊-历史的天空,http://em.21dtv.com/songs/60099612.mkv +龚月-历史的天空,http://em.21dtv.com/songs/60076402.mkv +毛阿敏-历史的天空,http://em.21dtv.com/songs/60026907.mkv +苏唯+海哲明-蓝色的思念,http://em.21dtv.com/songs/60122054.mkv +胥兰英-蓝色的思念,http://em.21dtv.com/songs/60026087.mkv +豹小子-绿色的水滴,http://em.21dtv.com/songs/60028180.mkv +姚秀龄+丘采桦-绿色的日子,http://em.21dtv.com/songs/60028179.mkv +佚名-流逝的容颜(无原唱),http://em.21dtv.com/songs/60027713.mkv +小杜-绿色的青春,http://em.21dtv.com/songs/60076518.mkv +黎明花-流逝的青春,http://em.21dtv.com/songs/60066127.mkv +J.A.M-蓝色地平线,http://em.21dtv.com/songs/60026092.mkv +蓝奕邦-蓝色多瑙河,http://em.21dtv.com/songs/60105334.mkv +田震-流逝的年华,http://em.21dtv.com/songs/60091772.mkv +舞曲-蓝色多瑙河,http://em.21dtv.com/songs/60088512.mkv +佚名-蓝色多瑙河,http://em.21dtv.com/songs/60026093.mkv +霓裳-老师的目光,http://em.21dtv.com/songs/60026402.mkv +林姗-蓝色的玫瑰,http://em.21dtv.com/songs/60026079.mkv +崔来宾-绿色的家园,http://em.21dtv.com/songs/60115890.mkv +许慧欣-泪水的尽头,http://em.21dtv.com/songs/60072138.mkv +晓月-蓝色的回忆,http://em.21dtv.com/songs/60113570.mkv +王鹤铮-留守的呼唤,http://em.21dtv.com/songs/60120805.mkv +接厚芳-绿色的呼唤,http://em.21dtv.com/songs/60086686.mkv +陈小涛-绿色的呼唤,http://em.21dtv.com/songs/60028176.mkv +乌兰图雅-蓝色的故乡,http://em.21dtv.com/songs/60116519.mkv +罗海英-蓝色的故乡,http://em.21dtv.com/songs/60113941.mkv +李娜-蓝色的故乡,http://em.21dtv.com/songs/60113620.mkv +姜丽娜-蓝色的故乡,http://em.21dtv.com/songs/60113390.mkv +乌兰图雅-蓝色的故乡(演唱会),http://em.21dtv.com/songs/60068412.mkv +洛桑尖措-洛桑的故乡,http://em.21dtv.com/songs/60066135.mkv +腾格尔-蓝色的故乡,http://em.21dtv.com/songs/60026078.mkv +李娜-蓝色的故乡,http://em.21dtv.com/songs/60026077.mkv +晓依+枫舞-泪水的故事,http://em.21dtv.com/songs/60072137.mkv +佚名-蓝色的姑娘,http://em.21dtv.com/songs/60026076.mkv +陈军委-绿色的风采,http://em.21dtv.com/songs/60061382.mkv +中国红-流失的传说,http://em.21dtv.com/songs/60027710.mkv +那顺-绿色的草地,http://em.21dtv.com/songs/60028175.mkv +SHE-另说对不起,http://em.21dtv.com/songs/60087215.mkv +白虹-郎是春日风,http://em.21dtv.com/songs/60026185.mkv +谢雷-梨山痴情花(演唱会),http://em.21dtv.com/songs/60076379.mkv +潘秀琼-梨山痴情花(演唱会),http://em.21dtv.com/songs/60076378.mkv +动力火车-梨山痴情花,http://em.21dtv.com/songs/60026819.mkv +张德兰-梨山痴情花(演唱会),http://em.21dtv.com/songs/60026818.mkv +马海生+金瑞璘-来世不相爱,http://em.21dtv.com/songs/60104605.mkv +佚名-绿水伴青山,http://em.21dtv.com/songs/60028189.mkv +范思威-来生不分手,http://em.21dtv.com/songs/60025992.mkv +杨臣刚+藏古西+阿正-老鼠爱玉米,http://em.21dtv.com/songs/60026422.mkv +李潮-蓝色爱情海,http://em.21dtv.com/songs/60106948.mkv +王莉-蓝色爱琴海,http://em.21dtv.com/songs/60095331.mkv +王莉-蓝色爱情海,http://em.21dtv.com/songs/60091727.mkv +王莹-蓝色爱情海(演唱会),http://em.21dtv.com/songs/60076315.mkv +刘牧-泪洒爱情海(演唱会),http://em.21dtv.com/songs/60066110.mkv +汤岛白梅-泪洒爱河桥(无原唱),http://em.21dtv.com/songs/60074513.mkv +龙飘飘-泪洒爱河桥,http://em.21dtv.com/songs/60026550.mkv +余天-泪洒爱河桥(无原唱),http://em.21dtv.com/songs/60026549.mkv +桂莹莹-老鼠爱大米,http://em.21dtv.com/songs/60132638.mkv +杨臣刚-老鼠爱大米,http://em.21dtv.com/songs/60026421.mkv +香香-老鼠爱大米,http://em.21dtv.com/songs/60026420.mkv +王启文-老鼠爱大米,http://em.21dtv.com/songs/60026418.mkv +童星-老鼠爱大米,http://em.21dtv.com/songs/60026417.mkv +刘尊+郭彤-老鼠爱大米,http://em.21dtv.com/songs/60026416.mkv +关燕萍-老鼠爱大米,http://em.21dtv.com/songs/60026415.mkv +TWINS-老鼠爱大米,http://em.21dtv.com/songs/60026414.mkv +CHiCO with HoneyWorks-恋色に咲け,http://em.21dtv.com/songs/60121230.mkv +北方狼-离人烟雨楼,http://em.21dtv.com/songs/60118404.mkv +BOXING乐团-猎人与凶手,http://em.21dtv.com/songs/60133175.mkv +林展逸-俩人同心连,http://em.21dtv.com/songs/60027328.mkv +久保田利伸-love rain ~恋の雨~,http://em.21dtv.com/songs/60003583.mkv +佚名-猎人进行曲,http://em.21dtv.com/songs/60027378.mkv +张美玲-老人家的话,http://em.21dtv.com/songs/60072038.mkv +醉美-龙人好领袖,http://em.21dtv.com/songs/60122183.mkv +游鸿明-恋人的直觉,http://em.21dtv.com/songs/60027131.mkv +梁一贞-恋人的祝福,http://em.21dtv.com/songs/60062626.mkv +龙千玉+俞隆华-落日的夕阳,http://em.21dtv.com/songs/60028096.mkv +吴宗宪-两人的画像,http://em.21dtv.com/songs/60027288.mkv +周传雄-恋人创世纪,http://em.21dtv.com/songs/60027128.mkv +佚名-郎如春日风,http://em.21dtv.com/songs/60026184.mkv +谢采妘-郎如春日风,http://em.21dtv.com/songs/60026183.mkv +何润东-恋人唱的歌,http://em.21dtv.com/songs/60027127.mkv +李炳辉-老人阿哥哥,http://em.21dtv.com/songs/60095621.mkv +金门王-老人阿哥哥,http://em.21dtv.com/songs/60026393.mkv +杨子-了却一辈子,http://em.21dtv.com/songs/60101100.mkv +李炳辉+伍佰-来去夏威夷,http://em.21dtv.com/songs/60097557.mkv +丸子-来去夏威夷,http://em.21dtv.com/songs/60025991.mkv +金门王+李炳辉-来去夏威夷,http://em.21dtv.com/songs/60025990.mkv +八三夭-来去夏威夷,http://em.21dtv.com/songs/60025989.mkv +无印良品-来去夏威夷(演唱会),http://em.21dtv.com/songs/60025988.mkv +李昱和-乐清湾之恋,http://em.21dtv.com/songs/60127032.mkv +周慧敏-恋曲sha la la,http://em.21dtv.com/songs/60027119.mkv +周慧敏-恋曲sha la la(演唱会),http://em.21dtv.com/songs/60027118.mkv +蔡小虎-离情千万步,http://em.21dtv.com/songs/60095906.mkv +闪亮三姐妹-来去帕一下,http://em.21dtv.com/songs/60025983.mkv +超级女声-龙拳劲舞秀,http://em.21dtv.com/songs/60088727.mkv +酒吧伤心人-琉球的眼泪,http://em.21dtv.com/songs/60076486.mkv +李娅莎-来去阿里山,http://em.21dtv.com/songs/60100883.mkv +望海高歌-老婆有交待,http://em.21dtv.com/songs/60116878.mkv +卓依婷-老婆有交代,http://em.21dtv.com/songs/60089699.mkv +梁辉-老婆有交代,http://em.21dtv.com/songs/60026384.mkv +满江-老朋友的歌(演唱会),http://em.21dtv.com/songs/60026371.mkv +赵鑫-老婆辛苦了,http://em.21dtv.com/songs/60129645.mkv +赵真-老婆我想你,http://em.21dtv.com/songs/60069556.mkv +胡力-老婆万万岁,http://em.21dtv.com/songs/60026381.mkv +林雨-老婆我能行,http://em.21dtv.com/songs/60112031.mkv +郑观松-老婆我爱你,http://em.21dtv.com/songs/60107275.mkv +徐海涛-老婆我爱你,http://em.21dtv.com/songs/60076355.mkv +张鹏-老婆说了算,http://em.21dtv.com/songs/60123966.mkv +李建强-老婆你真傻,http://em.21dtv.com/songs/60120623.mkv +孙铭泽-老婆你最美,http://em.21dtv.com/songs/60116714.mkv +张吉-老婆你真美,http://em.21dtv.com/songs/60083266.mkv +王瑛淇-老婆你真好,http://em.21dtv.com/songs/60072132.mkv +阿吉仔-落魄免怨叹,http://em.21dtv.com/songs/60095956.mkv +佚名-路魄免怨叹(无原唱),http://em.21dtv.com/songs/60095446.mkv +阿吉仔-落迫免怨叹,http://em.21dtv.com/songs/60028094.mkv +赵伟胜-老婆美美哒,http://em.21dtv.com/songs/60127438.mkv +华少陈-老婆美哒哒,http://em.21dtv.com/songs/60133429.mkv +王建荣-老婆 老婆,http://em.21dtv.com/songs/60125921.mkv +刘思伟-老婆和老妈,http://em.21dtv.com/songs/60026378.mkv +廖峻-落魄的心情(无原唱),http://em.21dtv.com/songs/60028095.mkv +王立荐-老婆别整容,http://em.21dtv.com/songs/60121940.mkv +旋转保龄-老婆不在家,http://em.21dtv.com/songs/60122786.mkv +EMINEM+RIHANNA-Love The Way You Lie,http://em.21dtv.com/songs/60100718.mkv +冯博+莫安琪-Lover,http://em.21dtv.com/songs/60130104.mkv +冯博-Lover,http://em.21dtv.com/songs/60130103.mkv +AAA-LOVER,http://em.21dtv.com/songs/60113123.mkv +禤歌王-LOVE爱,http://em.21dtv.com/songs/60108750.mkv +EXO-Lotto,http://em.21dtv.com/songs/60126523.mkv +万万小宇宙-LOSER,http://em.21dtv.com/songs/60123583.mkv +Bigbang-Loser,http://em.21dtv.com/songs/60110749.mkv +LINKIN PARK-leave out all the rest,http://em.21dtv.com/songs/60003309.mkv +JOHN DENVER-leaving on a jet plane,http://em.21dtv.com/songs/60003317.mkv +JOHN DENVER-leaving on a jet plane(演唱会),http://em.21dtv.com/songs/60003316.mkv +王玲-冷暖人生路(无原唱),http://em.21dtv.com/songs/60019172.mkv +范宏伟-老男人的爱,http://em.21dtv.com/songs/60097527.mkv +陈浩德+舒雅颂-郎你莫忘情(演唱会),http://em.21dtv.com/songs/60076323.mkv +佚名-郎你莫忘情,http://em.21dtv.com/songs/60026182.mkv +尤雅-留你留袜着,http://em.21dtv.com/songs/60027555.mkv +佚名-留你留袜着,http://em.21dtv.com/songs/60027554.mkv +杨宗宪-留你留袜着,http://em.21dtv.com/songs/60027553.mkv +缒臆-两年的约定,http://em.21dtv.com/songs/60064480.mkv +SMOKIE-living next door to alice,http://em.21dtv.com/songs/60003450.mkv +王震辛-两年的时光,http://em.21dtv.com/songs/60108734.mkv +黄乙玲-冷暖的人生,http://em.21dtv.com/songs/60026608.mkv +一绫-揽你惦梦中,http://em.21dtv.com/songs/60134835.mkv +MARSHA AMBROSIUS-late nights and early mornings,http://em.21dtv.com/songs/60060851.mkv +佚名-冷漠与温柔(无原唱),http://em.21dtv.com/songs/60026607.mkv +光良-连梦也没有(演唱会),http://em.21dtv.com/songs/60026940.mkv +佚名-love me with your heart,http://em.21dtv.com/songs/60003570.mkv +IDA CORR+FEDDE LE GR-let me think about it,http://em.21dtv.com/songs/60003345.mkv +佚名-浪漫手牵手,http://em.21dtv.com/songs/60026246.mkv +林隆璇-落寞情人街,http://em.21dtv.com/songs/60028087.mkv +明圣凯-黎明前的梦,http://em.21dtv.com/songs/60026839.mkv +林志颖-黎明破晓前,http://em.21dtv.com/songs/60026838.mkv +LADG SOUEREIGN-love me or hate me,http://em.21dtv.com/songs/60073556.mkv +白冰冰-浪漫女人心,http://em.21dtv.com/songs/60026242.mkv +索朗扎西-老妹你好吗,http://em.21dtv.com/songs/60114718.mkv +黄凯芹-浪漫咖啡店,http://em.21dtv.com/songs/60026241.mkv +李春波-浪漫红尘中,http://em.21dtv.com/songs/60026239.mkv +BOYZONE-love me for a reason,http://em.21dtv.com/songs/60003562.mkv +陈岩-浪漫的夏天(故事情节),http://em.21dtv.com/songs/60098876.mkv +陈岩-浪漫的夏天,http://em.21dtv.com/songs/60097653.mkv +凤飞飞-落幕的时候,http://em.21dtv.com/songs/60028091.mkv +佚名-黎明的时候,http://em.21dtv.com/songs/60026837.mkv +何瑶-黎明的曙光,http://em.21dtv.com/songs/60069563.mkv +许强-落幕的情爱[原伴],http://em.21dtv.com/songs/60101505.mkv +晓月-落幕的情爱,http://em.21dtv.com/songs/60064501.mkv +陆虎-浪漫的梦想,http://em.21dtv.com/songs/60080232.mkv +罗逻圣-黎明的梅花,http://em.21dtv.com/songs/60107117.mkv +陈乃荣-怜悯的快乐,http://em.21dtv.com/songs/60104539.mkv +西子-冷漠的谎言,http://em.21dtv.com/songs/60076369.mkv +郑智化-老么的故事,http://em.21dtv.com/songs/60026360.mkv +孙子涵-两秒的对望,http://em.21dtv.com/songs/60076432.mkv +陈福庭-浪漫电单车,http://em.21dtv.com/songs/60072128.mkv +赵曦鹏-浪漫的草原,http://em.21dtv.com/songs/60094308.mkv +许绍洋-浪漫的爱情,http://em.21dtv.com/songs/60092068.mkv +SPIN DOCTORS-little miss cant be wrong,http://em.21dtv.com/songs/60003440.mkv +林心如-浪漫不再有,http://em.21dtv.com/songs/60091446.mkv +佚名-let me blow ya mind,http://em.21dtv.com/songs/60003339.mkv +叶倩文-黎明不要来,http://em.21dtv.com/songs/60026835.mkv +罗文-黎明不要来,http://em.21dtv.com/songs/60026834.mkv +徐小凤-黎明不要来(演唱会),http://em.21dtv.com/songs/60026833.mkv +陈洁灵-黎明不要来(演唱会),http://em.21dtv.com/songs/60026832.mkv +陈慧娴-黎明不要来(演唱会),http://em.21dtv.com/songs/60026831.mkv +伊藤利惠子-let me be with you,http://em.21dtv.com/songs/60003337.mkv +L.MARTINEE-let me be the one(无原唱),http://em.21dtv.com/songs/60003335.mkv +1976-流浪者之路,http://em.21dtv.com/songs/60027685.mkv +丁薇-流浪者之歌,http://em.21dtv.com/songs/60123582.mkv +陈绮贞-流浪者之歌,http://em.21dtv.com/songs/60097652.mkv +F.I.R-流浪者之歌(演唱会),http://em.21dtv.com/songs/60027684.mkv +梅花三姐妹-流浪走天涯(演唱会),http://em.21dtv.com/songs/60027690.mkv +佚名-流浪找头路,http://em.21dtv.com/songs/60027682.mkv +叶启田-流浪找头路,http://em.21dtv.com/songs/60027681.mkv +蒋姗倍+潘龙江-流浪主题歌,http://em.21dtv.com/songs/60068444.mkv +吴玉玲-流浪姐妹花,http://em.21dtv.com/songs/60027689.mkv +童立安-老了怎么办,http://em.21dtv.com/songs/60111341.mkv +DREAM GIRLS-流泪也要美,http://em.21dtv.com/songs/60027697.mkv +杨子-冷冷又清清,http://em.21dtv.com/songs/60101101.mkv +杨丽-来来一起来,http://em.21dtv.com/songs/60094162.mkv +戴辛尉-泪流一千遍,http://em.21dtv.com/songs/60026545.mkv +詹雅雯-留恋无希望,http://em.21dtv.com/songs/60094962.mkv +BARRY MANILOW-looks like we made it,http://em.21dtv.com/songs/60003493.mkv +R.KERR+W.JENNINGS-looks like we made it(无原唱),http://em.21dtv.com/songs/60003492.mkv +张津涤-泪流太平洋,http://em.21dtv.com/songs/60129099.mkv +王江发-恋恋台北城,http://em.21dtv.com/songs/60093798.mkv +冼佩瑾-萝莉塔标本,http://em.21dtv.com/songs/60121419.mkv +佚名-流浪三兄妹,http://em.21dtv.com/songs/60027673.mkv +洪第七-流浪三兄妹,http://em.21dtv.com/songs/60027672.mkv +冷漠+赵小兵-劳力士男人,http://em.21dtv.com/songs/60076329.mkv +张北北-流泪时买醉,http://em.21dtv.com/songs/60119501.mkv +蔡小虎-恋恋沙伦站,http://em.21dtv.com/songs/60085382.mkv +蔡义德-恋恋沙仑站,http://em.21dtv.com/songs/60083296.mkv +翁立友-恋恋沙伦站,http://em.21dtv.com/songs/60027102.mkv +朱海君-恋恋沙仑站,http://em.21dtv.com/songs/60027101.mkv +罗时丰-留恋什路用,http://em.21dtv.com/songs/60134107.mkv +佚名-留恋什路用,http://em.21dtv.com/songs/60027549.mkv +罗时丰-留恋什路用,http://em.21dtv.com/songs/60027548.mkv +陈一郎-留恋啥路用,http://em.21dtv.com/songs/60027547.mkv +顾峰-恋恋女人香,http://em.21dtv.com/songs/60097648.mkv +韩真真-恋恋女人香(演唱会),http://em.21dtv.com/songs/60027098.mkv +李娜-辘轳女人井,http://em.21dtv.com/songs/60027967.mkv +张蓉蓉-恋恋那卡西,http://em.21dtv.com/songs/60129122.mkv +张蓉蓉-恋恋那卡西,http://em.21dtv.com/songs/60068439.mkv +微胖女神-萝莉女汉子,http://em.21dtv.com/songs/60097654.mkv +佚名-let love lead the way,http://em.21dtv.com/songs/60003334.mkv +SPICE GIRLS-let lone lead the way,http://em.21dtv.com/songs/60003332.mkv +珍美儿-啦啦啦情歌,http://em.21dtv.com/songs/60025930.mkv +苏永康-la la la love song(演唱会),http://em.21dtv.com/songs/60003233.mkv +陈升-啦啦啦啦啦,http://em.21dtv.com/songs/60025929.mkv +杨千嬅-啦啦夸啦啦,http://em.21dtv.com/songs/60025923.mkv +农夫-粒粒皆辛苦,http://em.21dtv.com/songs/60026929.mkv +农夫-粒粒皆辛苦(演唱会),http://em.21dtv.com/songs/60026928.mkv +宗义博-老了就回家,http://em.21dtv.com/songs/60132380.mkv +寒武纪-累了就放手,http://em.21dtv.com/songs/60072139.mkv +PAT BOONE-love letters in the sand,http://em.21dtv.com/songs/60003543.mkv +佚名-love letter in the sand,http://em.21dtv.com/songs/60003542.mkv +王建杰-流浪黑狗兄(无原唱),http://em.21dtv.com/songs/60079895.mkv +蒙面哥-恋恋红尘梦,http://em.21dtv.com/songs/60102705.mkv +阿吉仔+黄凤仪+郑武郎-来鹿港七逃,http://em.21dtv.com/songs/60135878.mkv +阿吉仔-来鹿港七逃,http://em.21dtv.com/songs/60135874.mkv +泳儿-露+流非飞,http://em.21dtv.com/songs/60092967.mkv +刘旭阳-流浪的子弹,http://em.21dtv.com/songs/60133410.mkv +艾敬-流浪的燕子,http://em.21dtv.com/songs/60027654.mkv +郑智化-落泪的戏子,http://em.21dtv.com/songs/60028084.mkv +丁浩然-六楼的夏天,http://em.21dtv.com/songs/60027782.mkv +蔡秋凤-冷冷的相思,http://em.21dtv.com/songs/60026603.mkv +卓依婷-流浪的心情,http://em.21dtv.com/songs/60027652.mkv +伊能静-流浪的小孩,http://em.21dtv.com/songs/60027647.mkv +唯嘉-流浪的温柔,http://em.21dtv.com/songs/60082009.mkv +胡记成-流泪到天明,http://em.21dtv.com/songs/60068445.mkv +林玉英-流浪的探戈,http://em.21dtv.com/songs/60095695.mkv +佚名-流浪到台北,http://em.21dtv.com/songs/60027625.mkv +杨鸣-流浪到台北,http://em.21dtv.com/songs/60027624.mkv +黄西田+樱桃姐妹-流浪到台北,http://em.21dtv.com/songs/60027623.mkv +陈雷-流浪到台北,http://em.21dtv.com/songs/60027622.mkv +亮亮-泪流的洒脱,http://em.21dtv.com/songs/60085363.mkv +林玉英-流浪的人生,http://em.21dtv.com/songs/60027646.mkv +张冬玲-流泪的情人,http://em.21dtv.com/songs/60100008.mkv +奥迪-流浪的情人,http://em.21dtv.com/songs/60079864.mkv +莫文蔚-溜溜的情歌(演唱会),http://em.21dtv.com/songs/60076463.mkv +高保利-溜溜的情歌,http://em.21dtv.com/songs/60027500.mkv +凤凰传奇-溜溜的情歌,http://em.21dtv.com/songs/60027499.mkv +陈建年+纪家盈-蓝蓝的念珠(无原唱),http://em.21dtv.com/songs/60026053.mkv +A+乐团-流浪的梦想,http://em.21dtv.com/songs/60083898.mkv +琳琳-萝莉的魔力,http://em.21dtv.com/songs/60080641.mkv +冷酷-流泪的玫瑰,http://em.21dtv.com/songs/60110866.mkv +望海高歌-流泪的玫瑰,http://em.21dtv.com/songs/60099284.mkv +天籁天-落泪的玫瑰,http://em.21dtv.com/songs/60028083.mkv +童唱-流浪的马车,http://em.21dtv.com/songs/60027641.mkv +梅花三姐妹-流浪的马车,http://em.21dtv.com/songs/60027640.mkv +林美惠-流浪的马车,http://em.21dtv.com/songs/60027639.mkv +吴玉玲-流浪的马车,http://em.21dtv.com/songs/60010469.mkv +张秀卿-冷冷的棉被,http://em.21dtv.com/songs/60026599.mkv +佚名-流浪的乐师,http://em.21dtv.com/songs/60095425.mkv +文夏-流浪的乐师,http://em.21dtv.com/songs/60078715.mkv +许志豪-流浪的恋情,http://em.21dtv.com/songs/60067207.mkv +沈文程-流浪的吉他,http://em.21dtv.com/songs/60027638.mkv +陈雅森-流泪的决定,http://em.21dtv.com/songs/60135948.mkv +祁隆+阿斯满-流泪的红烛,http://em.21dtv.com/songs/60134039.mkv +火红-流浪的孩子,http://em.21dtv.com/songs/60076468.mkv +吕飞-流浪的孩子,http://em.21dtv.com/songs/60027633.mkv +单色凌-凌乱的华丽,http://em.21dtv.com/songs/60076451.mkv +叶子枫-流浪的孩儿,http://em.21dtv.com/songs/60098181.mkv +七郎+简美雀-恋恋东海岸,http://em.21dtv.com/songs/60112484.mkv +七郎+乔幼-恋恋东海岸,http://em.21dtv.com/songs/60111669.mkv +佚名-流浪的歌声,http://em.21dtv.com/songs/60027632.mkv +林姗-流浪的歌声,http://em.21dtv.com/songs/60027631.mkv +陈百强+陈盈洁-流浪的歌声,http://em.21dtv.com/songs/60027630.mkv +张秀卿-流浪的感情,http://em.21dtv.com/songs/60027629.mkv +吴陌川-冷冷的告白,http://em.21dtv.com/songs/60135031.mkv +金门王+李炳辉-流浪到淡水,http://em.21dtv.com/songs/60027621.mkv +黄乙玲-流浪到淡水,http://em.21dtv.com/songs/60027620.mkv +张博-流浪的船长,http://em.21dtv.com/songs/60027627.mkv +正月十五-恋恋大草原,http://em.21dtv.com/songs/60083295.mkv +詹雅雯-冷冷的城市,http://em.21dtv.com/songs/60026598.mkv +李玟-亮亮的承诺,http://em.21dtv.com/songs/60027344.mkv +草蜢-流泪的背影(演唱会),http://em.21dtv.com/songs/60027692.mkv +李国志-冷冷的被窝,http://em.21dtv.com/songs/60067191.mkv +佚名-冷冷的爱人(无原唱),http://em.21dtv.com/songs/60026597.mkv +何广才-流浪的爱情,http://em.21dtv.com/songs/60085391.mkv +黄西田+樱桃姐妹-留恋的暗暝,http://em.21dtv.com/songs/60027546.mkv +ROBBIE WILLIAMS-let love be your energy,http://em.21dtv.com/songs/60003333.mkv +SUMMER GRACE-流泪不流泪,http://em.21dtv.com/songs/60027691.mkv +余天龙-留恋北海岸,http://em.21dtv.com/songs/60064488.mkv +司空雷-萝莉爱大叔,http://em.21dtv.com/songs/60104872.mkv +牛奶咖啡-离开+再见,http://em.21dtv.com/songs/60104296.mkv +麦浚龙+周国贤-雷克雅未克,http://em.21dtv.com/songs/60117405.mkv +佚名-两颗小星星,http://em.21dtv.com/songs/60027279.mkv +刀郎-离开我以后,http://em.21dtv.com/songs/60090680.mkv +郭保成-兰考我的家,http://em.21dtv.com/songs/60117281.mkv +关淑怡-离开请关灯,http://em.21dtv.com/songs/60026755.mkv +罗密欧-离开你真好(无原唱),http://em.21dtv.com/songs/60026751.mkv +郑一帆+张本煜-李柯男之歌,http://em.21dtv.com/songs/60105423.mkv +王钧赫-离开你以后,http://em.21dtv.com/songs/60099418.mkv +陈文清-离开你以后,http://em.21dtv.com/songs/60069562.mkv +刘德华-离开你以后,http://em.21dtv.com/songs/60026750.mkv +张学友-离开你七天,http://em.21dtv.com/songs/60026748.mkv +江明学-离开你了后,http://em.21dtv.com/songs/60095719.mkv +吴佩珊-离开你的我,http://em.21dtv.com/songs/60026747.mkv +龙千玉-离开你的梦,http://em.21dtv.com/songs/60026744.mkv +WESTLIFE-loneliness knows me by name,http://em.21dtv.com/songs/60003460.mkv +周晓鸥-离开即归来,http://em.21dtv.com/songs/60126720.mkv +岳夏-离开海的鱼,http://em.21dtv.com/songs/60026731.mkv +尚雯婕-连卡佛小姐,http://em.21dtv.com/songs/60026938.mkv +颜爵-离开的眼泪,http://em.21dtv.com/songs/60088967.mkv +杨丞琳-离开动物园(演唱会),http://em.21dtv.com/songs/60083288.mkv +任和-离开的瞬间,http://em.21dtv.com/songs/60080248.mkv +金子嫣-离开的时候(无原唱),http://em.21dtv.com/songs/60026725.mkv +牛奶咖啡-离开的理由,http://em.21dtv.com/songs/60061361.mkv +钟旎菱-掠狂的交通,http://em.21dtv.com/songs/60028005.mkv +降央卓玛-辽阔的草原,http://em.21dtv.com/songs/60068441.mkv +德德玛-辽阔的草原,http://em.21dtv.com/songs/60027348.mkv +吴淑敏-离开爱的人,http://em.21dtv.com/songs/60026721.mkv +罗文聪-离开爱的人,http://em.21dtv.com/songs/60026720.mkv +江蕙-离开爱的人,http://em.21dtv.com/songs/60026719.mkv +段乐-连接在一起(无原唱),http://em.21dtv.com/songs/60026937.mkv +左成-丽江怎么样,http://em.21dtv.com/songs/60135168.mkv +杨柳+高歌-绿军装的梦,http://em.21dtv.com/songs/60028174.mkv +小曾+阮杨慧-绿军装的梦,http://em.21dtv.com/songs/60028173.mkv +潘美辰-离家已好远,http://em.21dtv.com/songs/60026709.mkv +平湖秋月-邻家小丫丫,http://em.21dtv.com/songs/60121633.mkv +望海高歌-邻家小丫丫,http://em.21dtv.com/songs/60113600.mkv +蒋婴-邻家小丫丫,http://em.21dtv.com/songs/60112208.mkv +童唱-老鸡说小鸡,http://em.21dtv.com/songs/60026346.mkv +项玉-老家是山东,http://em.21dtv.com/songs/60128587.mkv +路华-老家你好吗,http://em.21dtv.com/songs/60106316.mkv +贾璨璨-蓝精灵之歌,http://em.21dtv.com/songs/60101518.mkv +童唱-蓝精灵之歌,http://em.21dtv.com/songs/60026051.mkv +孙小宝-老家拉拉屯,http://em.21dtv.com/songs/60090891.mkv +老虎欧巴-老就老了吧,http://em.21dtv.com/songs/60109578.mkv +儿歌-老鸡和小鸡,http://em.21dtv.com/songs/60090645.mkv +张卫华-龙津风雨桥,http://em.21dtv.com/songs/60105823.mkv +张斌-龙津风雨桥,http://em.21dtv.com/songs/60105045.mkv +黄雅莉-廉价的眼泪,http://em.21dtv.com/songs/60070877.mkv +杨美莲-老家的温馨(无原唱),http://em.21dtv.com/songs/60026350.mkv +段苏珊-老家的味道,http://em.21dtv.com/songs/60121849.mkv +云飞-老家的味道,http://em.21dtv.com/songs/60119246.mkv +刘和刚-离家的时候,http://em.21dtv.com/songs/60094830.mkv +栾薇-老家的妈妈,http://em.21dtv.com/songs/60103394.mkv +卓依婷-离家的孩子,http://em.21dtv.com/songs/60026703.mkv +佚名-离家的孩子,http://em.21dtv.com/songs/60026702.mkv +胡力-离家的孩子,http://em.21dtv.com/songs/60026701.mkv +陈星+吕飞-离家的孩子,http://em.21dtv.com/songs/60026700.mkv +陈星+吕飞-离家的孩子(演唱会),http://em.21dtv.com/songs/60026699.mkv +陈星-离家的羔羊,http://em.21dtv.com/songs/60070873.mkv +柯以敏-邻居的耳朵,http://em.21dtv.com/songs/60027383.mkv +陈升-丽江的春天,http://em.21dtv.com/songs/60026916.mkv +黑龙-廉价的爱情,http://em.21dtv.com/songs/60026962.mkv +佚名-love in the first degree,http://em.21dtv.com/songs/60003527.mkv +GOOD CHARLOTTE-like its her birthday,http://em.21dtv.com/songs/60060856.mkv +邪恶少年EB-life is still a struggle,http://em.21dtv.com/songs/60084736.mkv +幸田来未-Lippy,http://em.21dtv.com/songs/60135180.mkv +佟大为-Linda,http://em.21dtv.com/songs/60128788.mkv +张学友-life is like a dream,http://em.21dtv.com/songs/60003399.mkv +RIE FU-life is like a boat,http://em.21dtv.com/songs/60082233.mkv +EXID-L.I.E,http://em.21dtv.com/songs/60122374.mkv +佚名-love is all that matters,http://em.21dtv.com/songs/60003531.mkv +周子龙-泪痕中无奈,http://em.21dtv.com/songs/60121506.mkv +袁娅维-旅行中忘记,http://em.21dtv.com/songs/60097649.mkv +龙剑笙-李后主私会,http://em.21dtv.com/songs/60076399.mkv +陈梓清-梨花又开放,http://em.21dtv.com/songs/60127555.mkv +蒲悦-梨花又开放,http://em.21dtv.com/songs/60114025.mkv +韩红-梨花又开放,http://em.21dtv.com/songs/60108150.mkv +李延亮-梨花又开放,http://em.21dtv.com/songs/60026817.mkv +刘玉琬-兰花与蝴蝶,http://em.21dtv.com/songs/60026039.mkv +郑秀文-浪花一朵朵,http://em.21dtv.com/songs/60026222.mkv +任贤齐+阿牛+光良-浪花一朵朵,http://em.21dtv.com/songs/60026221.mkv +李霄云-浪花一朵朵,http://em.21dtv.com/songs/60026220.mkv +黄品源+任贤齐-浪花一朵朵(演唱会),http://em.21dtv.com/songs/60026219.mkv +李佐-刘海戏金蟾(花鼓戏),http://em.21dtv.com/songs/60091299.mkv +卓依婷-留乎天安排,http://em.21dtv.com/songs/60065251.mkv +钟欣桐-浪花上的人,http://em.21dtv.com/songs/60026218.mkv +郭婷筠-留乎人探听,http://em.21dtv.com/songs/60076482.mkv +王瑞霞-留乎你的歌,http://em.21dtv.com/songs/60027541.mkv +周艳泓-梨花漫天开,http://em.21dtv.com/songs/60061360.mkv +周艳泓-梨花满天开,http://em.21dtv.com/songs/60026814.mkv +周彦宏-梨花满天开,http://em.21dtv.com/songs/60026813.mkv +陈盈洁-灵魂乱乱飞,http://em.21dtv.com/songs/60027417.mkv +龙梅子+老猫-厉害厉害了,http://em.21dtv.com/songs/60136067.mkv +陈绮雯-轮候急症室,http://em.21dtv.com/songs/60111493.mkv +余润泽+徐铵+张明-赖孩和孬哥,http://em.21dtv.com/songs/60103085.mkv +张惠妹-灵魂的重量(演唱会),http://em.21dtv.com/songs/60027416.mkv +陈坤-轮回的天使,http://em.21dtv.com/songs/60028014.mkv +周璇-龙华的桃花,http://em.21dtv.com/songs/60027827.mkv +闫强-厉害的角色,http://em.21dtv.com/songs/60109671.mkv +林俊杰-灵魂的共鸣,http://em.21dtv.com/songs/60064483.mkv +唐磊-落花的窗台,http://em.21dtv.com/songs/60028068.mkv +Rap大军-灵魂摆渡人,http://em.21dtv.com/songs/60129978.mkv +黄星羱+张汉盛+封迪+尚雯婕-绿光,http://em.21dtv.com/songs/60104631.mkv +谢云+朱克+邬立强+郭桓宇+邹军-老鬼心不死,http://em.21dtv.com/songs/60130754.mkv +游美灵-老公我爱你,http://em.21dtv.com/songs/60076346.mkv +陈随意-鹿港思带路,http://em.21dtv.com/songs/60128555.mkv +HOTCHA-两个人心动,http://em.21dtv.com/songs/60027260.mkv +1983-两个人乐心,http://em.21dtv.com/songs/60087170.mkv +王蓉-两个人的罪,http://em.21dtv.com/songs/60027259.mkv +刘钇彤-两个人的夜,http://em.21dtv.com/songs/60027257.mkv +李代沫-两个人的事,http://em.21dtv.com/songs/60097555.mkv +HOTCHA-两个人的梦,http://em.21dtv.com/songs/60076426.mkv +林忆莲-两个人的路(无原唱),http://em.21dtv.com/songs/60027245.mkv +付薇薇-两个人的爱,http://em.21dtv.com/songs/60027237.mkv +旺福乐团-两个恰恰好,http://em.21dtv.com/songs/60027228.mkv +天籁同音-老公你很累,http://em.21dtv.com/songs/60076344.mkv +伍思凯-留给你的窗,http://em.21dtv.com/songs/60027531.mkv +冯巩+牛群-两个弄潮儿,http://em.21dtv.com/songs/60089655.mkv +佚名-love gets me every time,http://em.21dtv.com/songs/60003521.mkv +杨臣刚-老公pk老婆,http://em.21dtv.com/songs/60026340.mkv +邵雨涵+杨臣刚-老公pk老婆,http://em.21dtv.com/songs/60026339.mkv +SHINE-两个龙卷风,http://em.21dtv.com/songs/60027222.mkv +鹏泊-啷个哩个啷,http://em.21dtv.com/songs/60134489.mkv +MC轩颜-啷个哩个啷,http://em.21dtv.com/songs/60134763.mkv +鹏泊-啷个哩个啷,http://em.21dtv.com/songs/60132008.mkv +刘洲-朗格里格朗,http://em.21dtv.com/songs/60062684.mkv +郑丽欣-铃鼓咖啡屋,http://em.21dtv.com/songs/60093262.mkv +邓丽欣-铃鼓咖啡店,http://em.21dtv.com/songs/60027433.mkv +邓丽欣-铃鼓咖啡店(演唱会),http://em.21dtv.com/songs/60027432.mkv +风信子组合-泸沽湖之夜,http://em.21dtv.com/songs/60084677.mkv +沙林-泸沽湖之恋,http://em.21dtv.com/songs/60084676.mkv +格绒格西+兰卡布尺-泸沽湖情歌,http://em.21dtv.com/songs/60091512.mkv +兰卡布尺+格绒格西-泸古湖情歌,http://em.21dtv.com/songs/60090659.mkv +王利-泸沽湖的美,http://em.21dtv.com/songs/60076505.mkv +张冬玲-路过的忧伤,http://em.21dtv.com/songs/60111061.mkv +韩春雨-路过的雨滴,http://em.21dtv.com/songs/60130881.mkv +林宇中-路过的新娘,http://em.21dtv.com/songs/60027941.mkv +任贤齐-路过的幸福,http://em.21dtv.com/songs/60087280.mkv +訾娟-恋歌大山包,http://em.21dtv.com/songs/60088634.mkv +高菲-留个电话吧,http://em.21dtv.com/songs/60027530.mkv +訾娟-恋歌大包山,http://em.21dtv.com/songs/60027083.mkv +区瑞强-靓歌伴星河,http://em.21dtv.com/songs/60092380.mkv +陈天红-老哥爱小妹,http://em.21dtv.com/songs/60099576.mkv +马玉涛-老房东查铺,http://em.21dtv.com/songs/60026335.mkv +景仪-老房东查铺,http://em.21dtv.com/songs/60026334.mkv +孔先斌-离分的爱人,http://em.21dtv.com/songs/60113399.mkv +陈雨霈-老二要出头,http://em.21dtv.com/songs/60026333.mkv +S.I.N.G-灵儿想叮当,http://em.21dtv.com/songs/60117484.mkv +佚名-铃儿响叮当,http://em.21dtv.com/songs/60094406.mkv +佚名-铃儿响叮咚,http://em.21dtv.com/songs/60027431.mkv +王雪晶-铃儿响叮当,http://em.21dtv.com/songs/60027429.mkv +童唱-铃儿响叮当,http://em.21dtv.com/songs/60027428.mkv +佚名-铃儿响叮当(吉特巴),http://em.21dtv.com/songs/60027427.mkv +宝佩如+田蕊妮-脸儿甜如蜜,http://em.21dtv.com/songs/60026968.mkv +童唱-铃儿叮当响,http://em.21dtv.com/songs/60027426.mkv +蔡诗芸-LEAVE,http://em.21dtv.com/songs/60129589.mkv +思小妞-泪滴在琴上,http://em.21dtv.com/songs/60067190.mkv +许秋怡-懒得再恋爱(无原唱),http://em.21dtv.com/songs/60026158.mkv +童唱-劳动最光荣,http://em.21dtv.com/songs/60026310.mkv +李克勤-留多一分钟,http://em.21dtv.com/songs/60027529.mkv +张秀卿-落大雨彼日,http://em.21dtv.com/songs/60028056.mkv +小娟+山谷里的居民-绿岛小夜曲,http://em.21dtv.com/songs/60098278.mkv +谢雷-绿岛小夜曲,http://em.21dtv.com/songs/60092100.mkv +林淑蓉-绿岛小夜曲,http://em.21dtv.com/songs/60089369.mkv +姚乙-绿岛小夜曲,http://em.21dtv.com/songs/60087633.mkv +紫薇-绿岛小夜曲,http://em.21dtv.com/songs/60028163.mkv +罗时丰-绿岛小夜曲,http://em.21dtv.com/songs/60028162.mkv +林承光-绿岛小夜曲,http://em.21dtv.com/songs/60028161.mkv +李茂山-绿岛小夜曲,http://em.21dtv.com/songs/60028160.mkv +费玉清-绿岛小夜曲,http://em.21dtv.com/songs/60028159.mkv +甄妮-绿岛小夜曲(演唱会),http://em.21dtv.com/songs/60028156.mkv +刘若英-绿岛小夜曲(演唱会),http://em.21dtv.com/songs/60028155.mkv +佚名-绿岛小夜曲(慢四),http://em.21dtv.com/songs/60028154.mkv +蔡琴-绿岛小夜曲(HD演唱会),http://em.21dtv.com/songs/60028153.mkv +方雄英+粟亚熙-陆岛相思曲,http://em.21dtv.com/songs/60027907.mkv +李宇春-零点五英里(演唱会),http://em.21dtv.com/songs/60027451.mkv +陈俊华-龙灯舞起来,http://em.21dtv.com/songs/60088849.mkv +卓依婷-龙灯舞起来,http://em.21dtv.com/songs/60087494.mkv +李宇春-零点五公里,http://em.21dtv.com/songs/60027450.mkv +邓丽君-来电是有缘,http://em.21dtv.com/songs/60103604.mkv +反光镜-来到你身边,http://em.21dtv.com/songs/60125257.mkv +印能法师-绿度母心咒,http://em.21dtv.com/songs/60099844.mkv +MADONNA-love dont live have anymore,http://em.21dtv.com/songs/60003518.mkv +DREAM GIRLS-来得及爱你,http://em.21dtv.com/songs/60097558.mkv +佚名-love doesnt have to hurt,http://em.21dtv.com/songs/60003515.mkv +何杰+冯锦雄+辛永光+罗定群英-罗定会更好,http://em.21dtv.com/songs/60126603.mkv +苏阳-劳动和爱情,http://em.21dtv.com/songs/60067184.mkv +孔令奇-赖得跟你说,http://em.21dtv.com/songs/60090888.mkv +孔令奇-懒的跟你拼,http://em.21dtv.com/songs/60026159.mkv +陈瑞-老地方的雨,http://em.21dtv.com/songs/60106416.mkv +陈瑞-老地方的雨,http://em.21dtv.com/songs/60026329.mkv +米亮-老地方等你,http://em.21dtv.com/songs/60026330.mkv +刘福助-两地二个家(无原唱),http://em.21dtv.com/songs/60095467.mkv +敖令-律动的心跳,http://em.21dtv.com/songs/60064499.mkv +佚名-路顶的小姐,http://em.21dtv.com/songs/60027938.mkv +林俊杰-零度的亲吻,http://em.21dtv.com/songs/60076455.mkv +庄心妍-落单的恋人,http://em.21dtv.com/songs/60106813.mkv +香香-落单的恋人,http://em.21dtv.com/songs/60070898.mkv +佚名-冷淡的接吻,http://em.21dtv.com/songs/60026575.mkv +游鸿明-落单的候鸟,http://em.21dtv.com/songs/60028059.mkv +办桌二人组-冷淡的都市,http://em.21dtv.com/songs/60026574.mkv +ALAN-落单的翅膀,http://em.21dtv.com/songs/60028058.mkv +蓝又时-伦敦的爱情,http://em.21dtv.com/songs/60088588.mkv +张真菲-落单的爱情,http://em.21dtv.com/songs/60063429.mkv +JENNIFER LOPEZ-love dont cost a thing,http://em.21dtv.com/songs/60003516.mkv +方小菲-来到布达拉,http://em.21dtv.com/songs/60067177.mkv +王建杰-莲池潭之恋,http://em.21dtv.com/songs/60079808.mkv +佚名-涟池潭之恋,http://em.21dtv.com/songs/60026954.mkv +张智成-凌晨三点钟,http://em.21dtv.com/songs/60027437.mkv +A-DAY-凌晨三点三,http://em.21dtv.com/songs/60027436.mkv +锁曼丽-凌晨三点半,http://em.21dtv.com/songs/60081689.mkv +刘惠鸣+李池湘-离愁牵去雁,http://em.21dtv.com/songs/60026686.mkv +佚名-路长情更长,http://em.21dtv.com/songs/60027963.mkv +许景淳-路长情更长,http://em.21dtv.com/songs/60027962.mkv +姚瑶-郎才配女貌,http://em.21dtv.com/songs/60135098.mkv +潘广益-凌晨两点半,http://em.21dtv.com/songs/60124219.mkv +郭力凡-凌晨两点半,http://em.21dtv.com/songs/60094316.mkv +颜亚涛-凌晨两点半,http://em.21dtv.com/songs/60083308.mkv +陈胜屿-凌晨分界线,http://em.21dtv.com/songs/60076450.mkv +谈欣-凌晨的眼泪,http://em.21dtv.com/songs/60088655.mkv +小琢-理财的微笑,http://em.21dtv.com/songs/60099973.mkv +瑞奇.马丁-la copa de la vida,http://em.21dtv.com/songs/60003229.mkv +女孩与机器人-两寸半舞曲,http://em.21dtv.com/songs/60027213.mkv +群星-love can build a bridge,http://em.21dtv.com/songs/60003510.mkv +张津涤-留不住斜阳,http://em.21dtv.com/songs/60102234.mkv +韩宝仪-留不住斜阳,http://em.21dtv.com/songs/60027527.mkv +张伟文-离别再叮咛(演唱会),http://em.21dtv.com/songs/60026667.mkv +黄品源-路边一枝草,http://em.21dtv.com/songs/60027932.mkv +许志豪-离别夜快车,http://em.21dtv.com/songs/60067194.mkv +陈思诚-来吧 兄弟,http://em.21dtv.com/songs/60105486.mkv +黄宝欣-来吧西班牙,http://em.21dtv.com/songs/60025951.mkv +黄宝欣-来吧西班牙(演唱会),http://em.21dtv.com/songs/60025950.mkv +佚名-浪不完的泪,http://em.21dtv.com/songs/60026208.mkv +蒋颖-泪不停在流,http://em.21dtv.com/songs/60026510.mkv +刘家昌-临别时再见,http://em.21dtv.com/songs/60027394.mkv +小曾-老兵你要走,http://em.21dtv.com/songs/60026323.mkv +秦天-老兵你要走,http://em.21dtv.com/songs/60026322.mkv +金霖-老爸你好吗,http://em.21dtv.com/songs/60118112.mkv +韩岚+薛晓枫-来杯莫吉托,http://em.21dtv.com/songs/60117367.mkv +苏莹惠-来吧来跳舞,http://em.21dtv.com/songs/60117163.mkv +天孪兄弟-来吧快来吧,http://em.21dtv.com/songs/60025947.mkv +易欣-离不开寂寞,http://em.21dtv.com/songs/60026679.mkv +孙行者-离不开寂寞,http://em.21dtv.com/songs/60026678.mkv +谭咏麟-离不开的心,http://em.21dtv.com/songs/60026677.mkv +胡月亮-离不开的人,http://em.21dtv.com/songs/60085368.mkv +林吉玲+姚汕龙-来不及清醒(无原唱),http://em.21dtv.com/songs/60025963.mkv +罗小虎-来不及牵手,http://em.21dtv.com/songs/60120849.mkv +佚名-来不及变心(无原唱),http://em.21dtv.com/songs/60025958.mkv +江淑娜-来不及变心(无原唱),http://em.21dtv.com/songs/60025957.mkv +庄妮-来不及爱你,http://em.21dtv.com/songs/60109291.mkv +TWINS-london bridge is falling down,http://em.21dtv.com/songs/60003459.mkv +童唱-londn bridge is falling down,http://em.21dtv.com/songs/60003457.mkv +羽泉-离别会伤心,http://em.21dtv.com/songs/60026657.mkv +彭齐-老爸和老妈,http://em.21dtv.com/songs/60133713.mkv +郑锦昌-泪别花开时,http://em.21dtv.com/songs/60026509.mkv +李长红-老板回家吧,http://em.21dtv.com/songs/60118691.mkv +蘑菇兄弟-来吧灰姑娘,http://em.21dtv.com/songs/60120935.mkv +陈嘉桦+贾乃亮-来吧!冠军,http://em.21dtv.com/songs/60121067.mkv +凯莉-离别的站口,http://em.21dtv.com/songs/60076382.mkv +秋裤大叔-老板的心声,http://em.21dtv.com/songs/60108774.mkv +赵小兵-老板的心声,http://em.21dtv.com/songs/60076334.mkv +孙露-离别的秋天,http://em.21dtv.com/songs/60068432.mkv +高航-离别的秋天,http://em.21dtv.com/songs/60026650.mkv +淡然-离别的秋季,http://em.21dtv.com/songs/60129355.mkv +单小发+吴爽-离别的青春,http://em.21dtv.com/songs/60118411.mkv +樱花姐妹-离别的苦酒,http://em.21dtv.com/songs/60026649.mkv +詹雅雯-离别的机场,http://em.21dtv.com/songs/60026646.mkv +洪禄云+陈水林-离别的海岸,http://em.21dtv.com/songs/60083279.mkv +办桌二人组-离别的歌声,http://em.21dtv.com/songs/60026644.mkv +龙霞-老板订个房,http://em.21dtv.com/songs/60126507.mkv +谭炳文+李香琴-离别的叮咛(演唱会),http://em.21dtv.com/songs/60026642.mkv +安东阳-离别的车站,http://em.21dtv.com/songs/60106777.mkv +孙露-离别的车站,http://em.21dtv.com/songs/60076381.mkv +陈瑞-离别的车站,http://em.21dtv.com/songs/60062267.mkv +赵薇-离别的车站,http://em.21dtv.com/songs/60026641.mkv +荆涛-老板的承担,http://em.21dtv.com/songs/60129550.mkv +孙建伟-离别的表白,http://em.21dtv.com/songs/60080255.mkv +王识贤-离别的暗暝,http://em.21dtv.com/songs/60026639.mkv +汤宝如-来吧123,http://em.21dtv.com/songs/60025942.mkv +陈雷-恋爱追追追,http://em.21dtv.com/songs/60027069.mkv +何润东-恋爱这样怪,http://em.21dtv.com/songs/60092257.mkv +SNH48-恋爱捉迷藏,http://em.21dtv.com/songs/60109876.mkv +筷子姐妹-恋爱症候群(无原唱),http://em.21dtv.com/songs/60095833.mkv +黄舒骏-恋爱症候群(演唱会),http://em.21dtv.com/songs/60027063.mkv +关智斌-恋爱最初回,http://em.21dtv.com/songs/60027070.mkv +草蜢-恋爱预兆mario,http://em.21dtv.com/songs/60027062.mkv +安心亚-恋爱应援团,http://em.21dtv.com/songs/60061368.mkv +POPU LADY-恋爱元气弹,http://em.21dtv.com/songs/60085380.mkv +师鹏+彭立-两岸一家亲,http://em.21dtv.com/songs/60076423.mkv +岳夏-恋爱小宇宙,http://em.21dtv.com/songs/60027054.mkv +陈慧娴-恋爱新时代,http://em.21dtv.com/songs/60093439.mkv +DANCE FLOW-恋爱小动作,http://em.21dtv.com/songs/60027052.mkv +小峰峰+谭欣懿-恋爱无效期,http://em.21dtv.com/songs/60129002.mkv +李克勤+aga-恋爱为何物,http://em.21dtv.com/songs/60114594.mkv +IMADE家族-恋爱试用期,http://em.21dtv.com/songs/60076413.mkv +FUN4-恋爱实验课,http://em.21dtv.com/songs/60080397.mkv +朱雅-恋爱说明书,http://em.21dtv.com/songs/60106923.mkv +蔡文静-恋爱世界杯,http://em.21dtv.com/songs/60027045.mkv +王喜-恋爱是个海,http://em.21dtv.com/songs/60027047.mkv +陈柔希-恋爱圣诞节,http://em.21dtv.com/songs/60068437.mkv +莫露露+王绎龙-恋爱起步价,http://em.21dtv.com/songs/60100429.mkv +罗维帅-恋爱那点事,http://em.21dtv.com/songs/60113943.mkv +至上励合-恋爱666,http://em.21dtv.com/songs/60124388.mkv +至上励合-恋爱666,http://em.21dtv.com/songs/60123099.mkv +南台湾小姑娘-恋爱狂想曲(无原唱),http://em.21dtv.com/songs/60027020.mkv +黄雅莉-恋爱绝句选,http://em.21dtv.com/songs/60027019.mkv +谭维维+刘鹏远-恋爱ing,http://em.21dtv.com/songs/60111405.mkv +金志文-离爱很遥远,http://em.21dtv.com/songs/60102830.mkv +黄雅莉-恋爱烘焙中,http://em.21dtv.com/songs/60107380.mkv +吴迪-恋爱感动曲,http://em.21dtv.com/songs/60076411.mkv +董冬-恋爱的滋味,http://em.21dtv.com/songs/60070879.mkv +叶启田-恋爱的滋味,http://em.21dtv.com/songs/60027006.mkv +陈国宁-恋爱的季节,http://em.21dtv.com/songs/60027003.mkv +谭咏麟-冷傲的化妆(演唱会),http://em.21dtv.com/songs/60026572.mkv +方怡萍-恋爱的花蕊,http://em.21dtv.com/songs/60027002.mkv +刘美君-恋爱大过天,http://em.21dtv.com/songs/60069565.mkv +TWINS-恋爱大过天,http://em.21dtv.com/songs/60027000.mkv +李克勤+梁荣忠-恋爱大过天(演唱会),http://em.21dtv.com/songs/60026999.mkv +TWINS-恋爱大过天(演唱会),http://em.21dtv.com/songs/60026998.mkv +ZIP-恋爱的感觉,http://em.21dtv.com/songs/60089579.mkv +ZIP发射乐团-恋爱的感觉(无原唱),http://em.21dtv.com/songs/60027001.mkv +段丽阳-恋爱的触电,http://em.21dtv.com/songs/60125839.mkv +杨坤+尚雯婕-恋爱超娱乐,http://em.21dtv.com/songs/60026996.mkv +林柔均-恋爱毕业生,http://em.21dtv.com/songs/60066118.mkv +大刚-恋爱保守党(演唱会),http://em.21dtv.com/songs/60026994.mkv +NMB48(红组)-恋爱被害届け,http://em.21dtv.com/songs/60076410.mkv +蔡依林-恋爱百分百,http://em.21dtv.com/songs/60129579.mkv +夏川りみ-涙そうそう,http://em.21dtv.com/songs/60026562.mkv +ALAN-涙そうそう(演唱会),http://em.21dtv.com/songs/60026561.mkv +GARY麟-lamour2000(无原唱),http://em.21dtv.com/songs/60003270.mkv +郑允武-抗灾英雄梦,http://em.21dtv.com/songs/60113010.mkv +梁雁翎-可知我想他,http://em.21dtv.com/songs/60025360.mkv +周慧敏-可知我想他(演唱会),http://em.21dtv.com/songs/60025359.mkv +李泉-靠在我身边(演唱会),http://em.21dtv.com/songs/60025211.mkv +周慧敏-看着我的眼,http://em.21dtv.com/songs/60025153.mkv +ZIA+4men-哭着 闹着,http://em.21dtv.com/songs/60104750.mkv +Sentimental Robot+Kim Na Young-看着你离开,http://em.21dtv.com/songs/60104721.mkv +BEYOND-抗战二十年,http://em.21dtv.com/songs/60092142.mkv +梁奕伦+徐伟贤-抗战二十年(演唱会),http://em.21dtv.com/songs/60025176.mkv +黄家强-抗战二十年(演唱会),http://em.21dtv.com/songs/60025175.mkv +熊七梅-空竹抖起来,http://em.21dtv.com/songs/60122976.mkv +HUSH-空中的恋人,http://em.21dtv.com/songs/60097607.mkv +张灵敏-可以这样爱,http://em.21dtv.com/songs/60072109.mkv +佚名-旷野中的人(无原唱),http://em.21dtv.com/songs/60025854.mkv +小小-可以原谅吗,http://em.21dtv.com/songs/60085330.mkv +马常宝-可以原谅吗,http://em.21dtv.com/songs/60085329.mkv +马常宝+小娟-可以原谅吗,http://em.21dtv.com/songs/60085328.mkv +群星-跨越新世界,http://em.21dtv.com/songs/60061339.mkv +刘嘉亮-哭有什么用,http://em.21dtv.com/songs/60025586.mkv +谢霆锋-可以可以吗,http://em.21dtv.com/songs/60025353.mkv +THE GEORGIA SATELLIT-keep your hands to yourself,http://em.21dtv.com/songs/60003142.mkv +老五-可以不流泪,http://em.21dtv.com/songs/60076262.mkv +迪克牛仔-可以不流泪,http://em.21dtv.com/songs/60025351.mkv +姚贝娜-可以不可以,http://em.21dtv.com/songs/60107642.mkv +林子祥-可以不可以,http://em.21dtv.com/songs/60025350.mkv +丁当-可以不可以,http://em.21dtv.com/songs/60025349.mkv +梁文音-可以不爱了,http://em.21dtv.com/songs/60025348.mkv +张韶涵-可以爱很久,http://em.21dtv.com/songs/60091165.mkv +韩小薰-可惜总是你,http://em.21dtv.com/songs/60103707.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-开心又一年,http://em.21dtv.com/songs/60076234.mkv +卓依婷-开心又一年,http://em.21dtv.com/songs/60025039.mkv +罗时丰-卡想也是你,http://em.21dtv.com/songs/60069536.mkv +陈伟-开心小警察,http://em.21dtv.com/songs/60069538.mkv +何嘉文-科学小飞侠(无原唱),http://em.21dtv.com/songs/60025218.mkv +合唱-开心幸福年,http://em.21dtv.com/songs/60087530.mkv +佚名-开心rock and roll,http://em.21dtv.com/songs/60076230.mkv +戴爱玲-可惜你不在(演唱会),http://em.21dtv.com/songs/60025340.mkv +猫黛丽赫本-可惜没如果,http://em.21dtv.com/songs/60128203.mkv +林俊杰-可惜没如果,http://em.21dtv.com/songs/60119699.mkv +林俊杰-可惜没如果,http://em.21dtv.com/songs/60107823.mkv +林俊杰-可惜没如果,http://em.21dtv.com/songs/60106978.mkv +高姗-开学恐惧症,http://em.21dtv.com/songs/60076235.mkv +薛家燕+BOB+思敏-开心家天下(演唱会),http://em.21dtv.com/songs/60076232.mkv +王熙然-空虚寂寞冷,http://em.21dtv.com/songs/60100927.mkv +徐子珊-开心的战斗,http://em.21dtv.com/songs/60076231.mkv +TFBOYS-开学第一课,http://em.21dtv.com/songs/60103827.mkv +王妮娜-开心的日子,http://em.21dtv.com/songs/60119799.mkv +刘德华-开心的马骝(HD),http://em.21dtv.com/songs/10012638.mkv +刘德华-开心的马骝,http://em.21dtv.com/songs/60025030.mkv +刘德华-开心的马骝(演唱会),http://em.21dtv.com/songs/60025029.mkv +韩雪-狂想的旅程,http://em.21dtv.com/songs/60025844.mkv +徐梦晗-开心的化妆,http://em.21dtv.com/songs/60118583.mkv +张子瑄-可惜不是我,http://em.21dtv.com/songs/60100017.mkv +王麟-可惜不是我,http://em.21dtv.com/songs/60076261.mkv +李克勤-可惜不是你,http://em.21dtv.com/songs/60119651.mkv +张杰+鄞雅茹-可惜不是你,http://em.21dtv.com/songs/60111078.mkv +丁泽强+陈羽凡-可惜不是你,http://em.21dtv.com/songs/60094797.mkv +尚雯婕-可惜不是你,http://em.21dtv.com/songs/60076260.mkv +张翰廉-可惜不是你,http://em.21dtv.com/songs/60069542.mkv +袁媛-可惜不是你(演唱会),http://em.21dtv.com/songs/60063322.mkv +曹轩宾-可惜不是你,http://em.21dtv.com/songs/60062248.mkv +梁静茹-可惜不是你,http://em.21dtv.com/songs/60025339.mkv +李维-可惜不是你,http://em.21dtv.com/songs/60025338.mkv +热斑乐队-开心不起来,http://em.21dtv.com/songs/60131623.mkv +寂悸-看屋檐滴雨,http://em.21dtv.com/songs/60103217.mkv +满江-开往幸福岛,http://em.21dtv.com/songs/60091647.mkv +艾伦+李玉刚-看我72变,http://em.21dtv.com/songs/60135653.mkv +李玉刚+艾伦-看我72变,http://em.21dtv.com/songs/60133821.mkv +郭琬-渴望你的爱,http://em.21dtv.com/songs/60025372.mkv +代小波-看我的眼睛,http://em.21dtv.com/songs/60025133.mkv +吴陌川-枯萎的玫瑰,http://em.21dtv.com/songs/60135037.mkv +思豪-枯萎的玫瑰,http://em.21dtv.com/songs/60072115.mkv +于金胜-枯萎的玫瑰,http://em.21dtv.com/songs/60066100.mkv +王爱华-枯萎的玫瑰,http://em.21dtv.com/songs/60066099.mkv +SO WHAT-狂舞吧勇气,http://em.21dtv.com/songs/60025843.mkv +赵学而-看我别回头,http://em.21dtv.com/songs/60025131.mkv +肖洒+王琪玮-看我72变,http://em.21dtv.com/songs/60094648.mkv +陶喆-看我72变,http://em.21dtv.com/songs/60086649.mkv +胡梦周+王洪迪-看我72变,http://em.21dtv.com/songs/60085323.mkv +翁立友-看透你的心,http://em.21dtv.com/songs/60101476.mkv +彭子瀛-卡丝耀你美,http://em.21dtv.com/songs/60107733.mkv +樊凡-开始下雨了,http://em.21dtv.com/songs/60080955.mkv +孙淑媚-苦是无块换,http://em.21dtv.com/songs/60025645.mkv +董冬-看上去很美,http://em.21dtv.com/songs/60068400.mkv +佚名-看谁能战斗,http://em.21dtv.com/songs/60025122.mkv +九九-快说你愿意,http://em.21dtv.com/songs/60118305.mkv +心跳男孩-看谁能不败,http://em.21dtv.com/songs/60025121.mkv +卢广仲-口水流下来,http://em.21dtv.com/songs/60072114.mkv +陆瑶-开始了寂寞,http://em.21dtv.com/songs/60070836.mkv +袁泉-开始连接吧,http://em.21dtv.com/songs/60088620.mkv +袁泉-开始链接吧,http://em.21dtv.com/songs/60025018.mkv +张蓉蓉-苦涩黑咖啡,http://em.21dtv.com/songs/60135239.mkv +赵薇-开水或爱情,http://em.21dtv.com/songs/60025019.mkv +SWING-开始到最后(无原唱),http://em.21dtv.com/songs/60092196.mkv +张萌萌-咳嗽的夜鸟,http://em.21dtv.com/songs/60068403.mkv +罗文聪+洪瑞襄-可伤的身魂,http://em.21dtv.com/songs/60095843.mkv +洪瑞襄+罗文聪-可伤的身魂,http://em.21dtv.com/songs/60095774.mkv +罗文聪+洪瑞襄-克伤的身魂,http://em.21dtv.com/songs/60025378.mkv +江波-苦涩的记忆,http://em.21dtv.com/songs/60100259.mkv +成铭-苦涩的回忆,http://em.21dtv.com/songs/60128023.mkv +刘宗健-苦涩的回忆,http://em.21dtv.com/songs/60116584.mkv +郑志立-可是对不起,http://em.21dtv.com/songs/60094715.mkv +佚名-苦水变美酒,http://em.21dtv.com/songs/60025646.mkv +佚名-卡萨布兰卡,http://em.21dtv.com/songs/60024971.mkv +陆家俊-狂热情炸弹,http://em.21dtv.com/songs/60025840.mkv +Pitbull+lil Jon-Krazy,http://em.21dtv.com/songs/60133264.mkv +许美静-空气中的迷,http://em.21dtv.com/songs/60092072.mkv +SOLER-孔雀与飞鹰(演唱会),http://em.21dtv.com/songs/60025505.mkv +梦幻想-快请我跳舞,http://em.21dtv.com/songs/60088151.mkv +FANTASY-快请我跳舞,http://em.21dtv.com/songs/60025816.mkv +许冠杰-哭泣风雨间,http://em.21dtv.com/songs/60025573.mkv +刘晓-哭泣的小鱼,http://em.21dtv.com/songs/60086654.mkv +陈瑞-哭泣的童话,http://em.21dtv.com/songs/60100598.mkv +汪峰-哭泣的拳头,http://em.21dtv.com/songs/60025571.mkv +冷漠-哭泣的情人,http://em.21dtv.com/songs/60064439.mkv +鬼仔-哭泣的男人,http://em.21dtv.com/songs/60113105.mkv +张雷-哭泣的女孩,http://em.21dtv.com/songs/60072117.mkv +王又萱-孔雀东南飞,http://em.21dtv.com/songs/60135535.mkv +天籁天-孔雀东南飞,http://em.21dtv.com/songs/60121545.mkv +毛一涵-孔雀东南飞,http://em.21dtv.com/songs/60112818.mkv +宋孟君-孔雀东南飞,http://em.21dtv.com/songs/60094467.mkv +彭炽权+蒋文端-孔雀东南飞(二)(戏曲),http://em.21dtv.com/songs/60092680.mkv +佚名-孔雀东南飞,http://em.21dtv.com/songs/60025497.mkv +吴伟豪+关群英-孔雀东南飞,http://em.21dtv.com/songs/60025496.mkv +屠洪纲-孔雀东南飞,http://em.21dtv.com/songs/60025495.mkv +李涵-孔雀东南飞,http://em.21dtv.com/songs/60025494.mkv +曹秀琴+梁耀安-孔雀东南飞,http://em.21dtv.com/songs/60025493.mkv +音乐猫-哭泣的玫瑰,http://em.21dtv.com/songs/60025570.mkv +邢美美-哭泣的玫瑰,http://em.21dtv.com/songs/60025569.mkv +齐豫-哭泣的骆驼,http://em.21dtv.com/songs/60025568.mkv +田跃君-哭泣的咖啡,http://em.21dtv.com/songs/60062995.mkv +陈瑞-哭泣的红颜,http://em.21dtv.com/songs/60070852.mkv +葛本军-哭泣的红颜,http://em.21dtv.com/songs/60025567.mkv +张惠妹-哭泣的耳语,http://em.21dtv.com/songs/60091089.mkv +高安-哭泣的爱情,http://em.21dtv.com/songs/60095360.mkv +甄妮-肯去承担爱,http://em.21dtv.com/songs/60025414.mkv +陈伟霆-酷跑 Run For More,http://em.21dtv.com/songs/60128516.mkv +沈文程-看破你一人,http://em.21dtv.com/songs/60025111.mkv +暖乐团-堪培拉的风,http://em.21dtv.com/songs/60025049.mkv +罗时丰-看破爱别人,http://em.21dtv.com/songs/60134109.mkv +佚名-看破爱别人,http://em.21dtv.com/songs/60025107.mkv +罗时丰-看破爱别人,http://em.21dtv.com/songs/60025106.mkv +卢冠廷-knock on heavens door(演唱会),http://em.21dtv.com/songs/60073468.mkv +于文华-康乃馨的爱,http://em.21dtv.com/songs/60090503.mkv +贾乃亮+张继科+孙杨+徐海乔-看你往哪跑,http://em.21dtv.com/songs/60129628.mkv +蔡小虎-靠你活落去,http://em.21dtv.com/songs/60025208.mkv +罗中旭-卡农的幻想,http://em.21dtv.com/songs/60132791.mkv +陈茂丰-苦恼的感情,http://em.21dtv.com/songs/60111502.mkv +黄乙玲-困难的背后,http://em.21dtv.com/songs/60025874.mkv +崔子格+郁欢-可念不可说,http://em.21dtv.com/songs/60129028.mkv +崔子格+盛一伦-可念不可说,http://em.21dtv.com/songs/60119474.mkv +崔子格-可念不可说,http://em.21dtv.com/songs/60117696.mkv +郑秀文-可能不可能,http://em.21dtv.com/songs/60025331.mkv +方瑞娥-看你不够重,http://em.21dtv.com/songs/60025099.mkv +方力申-可能爱上你,http://em.21dtv.com/songs/60025330.mkv +邱芸子-看袂着的爱,http://em.21dtv.com/songs/60109654.mkv +阿权-坑蒙拐骗偷,http://em.21dtv.com/songs/60128505.mkv +阿权-坑蒙拐骗偷,http://em.21dtv.com/songs/60100548.mkv +戴玉强-可门港畅想,http://em.21dtv.com/songs/60025328.mkv +潘玮柏-kiss me 123,http://em.21dtv.com/songs/60003166.mkv +玉环小美哥-快乐最重要,http://em.21dtv.com/songs/60106092.mkv +曾心梅+蔡嘉馨-卡拉作阵k(无原唱),http://em.21dtv.com/songs/60024962.mkv +SUNDAY GIRLS-快乐在一起(无原唱),http://em.21dtv.com/songs/60025806.mkv +晨熙-快来找你妹,http://em.21dtv.com/songs/60086657.mkv +王轶-快乐在哪里,http://em.21dtv.com/songs/60132742.mkv +莫文蔚-快乐在哪里,http://em.21dtv.com/songs/60091966.mkv +张文绮-快乐作憨人,http://em.21dtv.com/songs/60118562.mkv +张文绮-快乐作憨人,http://em.21dtv.com/songs/60072120.mkv +张振宇-快乐中国人(演唱会),http://em.21dtv.com/songs/60025813.mkv +江美琪-快乐在唱歌,http://em.21dtv.com/songs/60091583.mkv +谭咏麟-卡拉永远ok,http://em.21dtv.com/songs/60024961.mkv +谭咏麟-卡拉永远ok(演唱会),http://em.21dtv.com/songs/60024960.mkv +浩轩-哭了一万遍,http://em.21dtv.com/songs/60113812.mkv +张也-苦乐一起说,http://em.21dtv.com/songs/60025625.mkv +董文华-苦乐一起说,http://em.21dtv.com/songs/60025624.mkv +杨千桦-快乐与哀愁,http://em.21dtv.com/songs/60092835.mkv +群星-快乐小舞台,http://em.21dtv.com/songs/60117978.mkv +儿歌-快乐小天使(无原唱),http://em.21dtv.com/songs/60089628.mkv +圈圈-快乐向前走,http://em.21dtv.com/songs/60076289.mkv +童唱-快乐向前走,http://em.21dtv.com/songs/60025799.mkv +童唱-快乐向前走(无原唱),http://em.21dtv.com/songs/60025798.mkv +李志洲-快乐向前冲,http://em.21dtv.com/songs/60062616.mkv +七郎-快乐小吃部,http://em.21dtv.com/songs/60101237.mkv +张书瑶-快乐妄想症,http://em.21dtv.com/songs/60129060.mkv +凤凰传奇-快乐无极限,http://em.21dtv.com/songs/60103918.mkv +王玲-快乐无地比(无原唱),http://em.21dtv.com/songs/60044728.mkv +M GIRLS-快乐十五天,http://em.21dtv.com/songs/60133237.mkv +赵传-快乐似神仙,http://em.21dtv.com/songs/60025785.mkv +[Group] +groupName=十六万歌曲MV等 - 71 +赵传-快乐似神仙(演唱会),http://em.21dtv.com/songs/60025784.mkv +蒋荣宗+216臭脸娃娃-快乐鼠来宝,http://em.21dtv.com/songs/60025787.mkv +易欣-快乐情人节,http://em.21dtv.com/songs/60025773.mkv +依稀-快乐情人节,http://em.21dtv.com/songs/60025772.mkv +青春美少女-快乐恰恰恰,http://em.21dtv.com/songs/60025770.mkv +刘刚+赤雪-快乐拍手歌,http://em.21dtv.com/songs/60025768.mkv +乌兰托娅-看了你一眼,http://em.21dtv.com/songs/60070837.mkv +乌兰托娅-看了你一眼(演唱会),http://em.21dtv.com/songs/60025096.mkv +康康-快乐鸟日子,http://em.21dtv.com/songs/60025765.mkv +樱花姊妹-快乐农家女,http://em.21dtv.com/songs/60066183.mkv +谭晶-昆仑女儿歌,http://em.21dtv.com/songs/60076299.mkv +快乐家族-快乐你懂的,http://em.21dtv.com/songs/60025764.mkv +梦幻想-快乐每一天,http://em.21dtv.com/songs/60091532.mkv +李之蕊-快乐每一天,http://em.21dtv.com/songs/60025756.mkv +欧阳玲玲-可怜没人爱,http://em.21dtv.com/songs/60076258.mkv +沈文程-快乐免开钱,http://em.21dtv.com/songs/60025761.mkv +陈雷-快乐免开钱,http://em.21dtv.com/songs/60025760.mkv +丁丁-快乐练习曲,http://em.21dtv.com/songs/60081866.mkv +周传雄-快乐练习曲,http://em.21dtv.com/songs/60025755.mkv +佚名-快乐老实人,http://em.21dtv.com/songs/60025754.mkv +霍勇-快乐老海岛,http://em.21dtv.com/songs/60083237.mkv +许慧欣-快乐靠自己,http://em.21dtv.com/songs/60025750.mkv +杜德伟-快乐快烧坏,http://em.21dtv.com/songs/60025751.mkv +陈依桐+陈俊亦-快乐酷笔娃,http://em.21dtv.com/songs/60085338.mkv +BOK和平组合-快乐进行式,http://em.21dtv.com/songs/60025748.mkv +林姗-可怜酒家女,http://em.21dtv.com/songs/60095656.mkv +佚名-可怜酒家女,http://em.21dtv.com/songs/60025323.mkv +西卿-可怜酒家女,http://em.21dtv.com/songs/60025322.mkv +AT17-快乐很我们,http://em.21dtv.com/songs/60025745.mkv +HOPE+曾一鸣+刘明辉+墨绿森林-快乐很伟大,http://em.21dtv.com/songs/60085337.mkv +五月天-快乐很伟大,http://em.21dtv.com/songs/60025744.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-快乐过新年,http://em.21dtv.com/songs/60076288.mkv +杨鸣+蔡凤凰-快乐过新年,http://em.21dtv.com/songs/60025743.mkv +黄乙玲-快乐过新年,http://em.21dtv.com/songs/60025742.mkv +毛泽少-快乐功夫茶,http://em.21dtv.com/songs/60124183.mkv +林子祥-快乐的真相,http://em.21dtv.com/songs/60025739.mkv +黄克林-可怜的鸳鸯,http://em.21dtv.com/songs/60025321.mkv +成学迅+米颖+袁宝-快乐的一家,http://em.21dtv.com/songs/60076287.mkv +童唱-快乐的小鱼,http://em.21dtv.com/songs/60025738.mkv +朱跃明-快乐的新年,http://em.21dtv.com/songs/60119641.mkv +群星-快乐的新年,http://em.21dtv.com/songs/60088457.mkv +童唱-快乐的小鸟,http://em.21dtv.com/songs/60025737.mkv +赵青岳-快乐的新郎,http://em.21dtv.com/songs/60132932.mkv +范小倩-开落的幸福,http://em.21dtv.com/songs/60120899.mkv +张艳君-快来窦王岭,http://em.21dtv.com/songs/60129116.mkv +张蓉蓉-快乐的舞池,http://em.21dtv.com/songs/60123949.mkv +薛凯琪-快乐到天亮(演唱会),http://em.21dtv.com/songs/60025708.mkv +李芊慧-快乐的司机(无原唱),http://em.21dtv.com/songs/60025732.mkv +高月珍-快乐的司机(无原唱),http://em.21dtv.com/songs/60025731.mkv +谭杰希-快乐的时光,http://em.21dtv.com/songs/60081991.mkv +闪亮三姐妹-快乐的日子,http://em.21dtv.com/songs/60108943.mkv +孙思怡-快乐的日子,http://em.21dtv.com/songs/60100834.mkv +傅秋英-快乐的人生,http://em.21dtv.com/songs/60025728.mkv +彭丽媛-可怜的秋香,http://em.21dtv.com/songs/60025316.mkv +三木科-快乐的骑手,http://em.21dtv.com/songs/60090466.mkv +伍凌枫-快乐的胖子,http://em.21dtv.com/songs/60107484.mkv +蔡凤凰-快乐的农家,http://em.21dtv.com/songs/60025725.mkv +陈小云-快乐的马车,http://em.21dtv.com/songs/60095986.mkv +罗时丰-快乐的马车,http://em.21dtv.com/songs/60076286.mkv +佚名-快乐的牧场,http://em.21dtv.com/songs/60025724.mkv +林姗-快乐的马车,http://em.21dtv.com/songs/60025723.mkv +蔡诗雨-快乐的六一,http://em.21dtv.com/songs/60123138.mkv +佚名-快乐的罗嗦,http://em.21dtv.com/songs/60025722.mkv +金学峰-快乐的罗嗦,http://em.21dtv.com/songs/60025721.mkv +童唱-快乐的节日,http://em.21dtv.com/songs/60025720.mkv +动画-快乐的节日,http://em.21dtv.com/songs/60025719.mkv +儿歌-快乐的猴子,http://em.21dtv.com/songs/60090633.mkv +黄乙玲-可怜的花蕊,http://em.21dtv.com/songs/60025309.mkv +杨鸣-快乐的工人,http://em.21dtv.com/songs/60025716.mkv +江美丽-快乐的过去,http://em.21dtv.com/songs/60025717.mkv +罗时丰-快乐的出航,http://em.21dtv.com/songs/60076285.mkv +佚名-快乐的出帆,http://em.21dtv.com/songs/60025712.mkv +邓丽君-快乐的出帆,http://em.21dtv.com/songs/60025711.mkv +蔡幸娟-快乐的出帆,http://em.21dtv.com/songs/60025710.mkv +LOTTE GIRLS-快乐不思议,http://em.21dtv.com/songs/60025703.mkv +郑秀文-快乐不快乐,http://em.21dtv.com/songs/60025702.mkv +郑秀文-快乐不快乐(演唱会),http://em.21dtv.com/songs/60025701.mkv +袁成杰-快乐不过是,http://em.21dtv.com/songs/60067170.mkv +邵雨涵-快乐阿拉蕾,http://em.21dtv.com/songs/60025695.mkv +牛马丁+许桂荧-可怜阿伯大,http://em.21dtv.com/songs/60025307.mkv +520女子演唱组-快乐520,http://em.21dtv.com/songs/60025692.mkv +沙莎-快快走进你,http://em.21dtv.com/songs/60064442.mkv +龙千玉-卡苦也着放,http://em.21dtv.com/songs/60136045.mkv +江涛-苦苦寻觅你,http://em.21dtv.com/songs/60130524.mkv +李佳薇-快快说爱我,http://em.21dtv.com/songs/60100117.mkv +赵采儿-开口说爱你,http://em.21dtv.com/songs/60123205.mkv +金大喜-开口留住爱,http://em.21dtv.com/songs/60121023.mkv +雪村-开开开出租,http://em.21dtv.com/songs/60024991.mkv +彭弘泽-K.K.K,http://em.21dtv.com/songs/60126908.mkv +小白杨-快快减肥吧,http://em.21dtv.com/songs/60135141.mkv +腾格尔-苦苦的思恋,http://em.21dtv.com/songs/60025620.mkv +丁文琪-ki kiまって,http://em.21dtv.com/songs/60003146.mkv +郑进一-困甲自然醒,http://em.21dtv.com/songs/60025883.mkv +孙楠-客家足迹行,http://em.21dtv.com/songs/60079986.mkv +白冰冰-苦酒饮袜煞,http://em.21dtv.com/songs/60025615.mkv +陈思思-客家迎客来(演唱会),http://em.21dtv.com/songs/60064437.mkv +林依晨-靠近一点点,http://em.21dtv.com/songs/60025207.mkv +曾辉彬-客家围龙屋,http://em.21dtv.com/songs/60025402.mkv +杨培安-看见全世界,http://em.21dtv.com/songs/60025087.mkv +宇宙少女-靠近你的心,http://em.21dtv.com/songs/60131345.mkv +佚名-看见了新娘,http://em.21dtv.com/songs/60025082.mkv +邱淑君-框金的招牌(无原唱),http://em.21dtv.com/songs/60025856.mkv +江蕙-苦酒的探戈,http://em.21dtv.com/songs/60025608.mkv +傅薇-苦酒的探戈,http://em.21dtv.com/songs/60025607.mkv +曾心梅-苦酒的探戈,http://em.21dtv.com/songs/60025606.mkv +王力宏-可敬的对手,http://em.21dtv.com/songs/60025300.mkv +李明洋-框金的爱情(无原唱),http://em.21dtv.com/songs/60025855.mkv +AESOP ROCK-KIRBY,http://em.21dtv.com/songs/60129877.mkv +朱宇-Kimmy,http://em.21dtv.com/songs/60111956.mkv +李佑诚-Ki Ga,http://em.21dtv.com/songs/60108557.mkv +自由发挥-Kiang,http://em.21dtv.com/songs/60116214.mkv +许慧欣-口红指甲油(演唱会),http://em.21dtv.com/songs/60025527.mkv +梁玉嵘-抗婚月夜逃(戏曲),http://em.21dtv.com/songs/60092916.mkv +伍浩哲-苦海有情人,http://em.21dtv.com/songs/60096186.mkv +王建杰-可恨又可爱(无原唱),http://em.21dtv.com/songs/60094339.mkv +高枫-葵花向太阳,http://em.21dtv.com/songs/60089006.mkv +江蕙-苦海女神龙,http://em.21dtv.com/songs/60097593.mkv +李翊君-苦海女神龙,http://em.21dtv.com/songs/60025600.mkv +韩晓-葵花点穴手,http://em.21dtv.com/songs/60025861.mkv +彭立+唐铭良-可恨的爱人,http://em.21dtv.com/songs/60025296.mkv +黄乙玲-可恨的爱人,http://em.21dtv.com/songs/60025295.mkv +蔡秋凤-可恨的爱人,http://em.21dtv.com/songs/60025294.mkv +黄乙玲-可恨的爱人(演唱会),http://em.21dtv.com/songs/60025293.mkv +欢子-开花不结果,http://em.21dtv.com/songs/60127134.mkv +梁文音-哭过就好了,http://em.21dtv.com/songs/60025554.mkv +姜玉阳-刻骨的温柔,http://em.21dtv.com/songs/60025382.mkv +郭燕-刻骨的温柔,http://em.21dtv.com/songs/60025381.mkv +苏慧伦-哭过的天空(演唱会),http://em.21dtv.com/songs/60025553.mkv +苦鬼乐队-苦鬼的礼物,http://em.21dtv.com/songs/60131761.mkv +徐良+小凌-客官不可以,http://em.21dtv.com/songs/60025392.mkv +胡雯-狂放着感动,http://em.21dtv.com/songs/60076294.mkv +Dear Jane-咖啡因眼泪,http://em.21dtv.com/songs/60111597.mkv +何静-咖啡与眼泪,http://em.21dtv.com/songs/60090610.mkv +叶蕴仪-可否想起我,http://em.21dtv.com/songs/60025289.mkv +A Lin+信-狂风里拥抱,http://em.21dtv.com/songs/60109793.mkv +信+ALIN-狂风里拥抱,http://em.21dtv.com/songs/60068409.mkv +欧阳尚尚-咖啡里的泪,http://em.21dtv.com/songs/60076221.mkv +华强-咖啡里的泪,http://em.21dtv.com/songs/60024945.mkv +萧亚轩-咖啡加伴侣,http://em.21dtv.com/songs/60091981.mkv +王菲-可否抱紧我,http://em.21dtv.com/songs/60025287.mkv +张秀卿-咖啡变滚水,http://em.21dtv.com/songs/60024940.mkv +赛希-科尔沁新娘,http://em.21dtv.com/songs/60025215.mkv +蒙克-科尔沁姑娘,http://em.21dtv.com/songs/60062761.mkv +凤凰传奇-科尔沁哥哥,http://em.21dtv.com/songs/60087375.mkv +吴发松-科尔沁草原,http://em.21dtv.com/songs/60099138.mkv +萧敬腾+许鹤缤-Kelly,http://em.21dtv.com/songs/60112194.mkv +萧敬腾-Kelly,http://em.21dtv.com/songs/60102686.mkv +丢火车乐队-卡尔加里路,http://em.21dtv.com/songs/60120283.mkv +苏有朋-空荡一个人,http://em.21dtv.com/songs/60091935.mkv +赵又廷-哭得像小孩,http://em.21dtv.com/songs/60067169.mkv +孙兴-可达心里面,http://em.21dtv.com/songs/60025285.mkv +威利-快到我面前(演唱会),http://em.21dtv.com/songs/60025675.mkv +陈瑞-空等日月长,http://em.21dtv.com/songs/60135935.mkv +高人杰-看到你流泪,http://em.21dtv.com/songs/60025066.mkv +光良-看到你的脸,http://em.21dtv.com/songs/60090655.mkv +赵紫龙-昆都仑之恋,http://em.21dtv.com/songs/60129642.mkv +容中尔甲-康定溜溜城(演唱会),http://em.21dtv.com/songs/60025162.mkv +GFriend+Pika Friends-口袋里的信,http://em.21dtv.com/songs/60129939.mkv +李玖哲-快点来爱我,http://em.21dtv.com/songs/60025678.mkv +许慧欣-肯定就是你(演唱会),http://em.21dtv.com/songs/60025413.mkv +陈羽凡+贾剑龙-坎大哈黎明,http://em.21dtv.com/songs/60095144.mkv +羽泉-坎大哈黎明(演唱会),http://em.21dtv.com/songs/60025050.mkv +水木年华-垮掉的一代,http://em.21dtv.com/songs/60025659.mkv +田馥甄-口袋的温度,http://em.21dtv.com/songs/60095015.mkv +张韶涵-口袋的天空,http://em.21dtv.com/songs/60025522.mkv +周明辉-空等的承诺,http://em.21dtv.com/songs/60072111.mkv +杨紫-开的比花香,http://em.21dtv.com/songs/60121807.mkv +MC天佑-咔嚓指甲刀,http://em.21dtv.com/songs/60134759.mkv +五色石南叶-客从远方来,http://em.21dtv.com/songs/60134868.mkv +佚名-康城赛马歌,http://em.21dtv.com/songs/60025160.mkv +童唱-康城赛马歌,http://em.21dtv.com/songs/60025159.mkv +童唱-康城赛马歌(无原唱),http://em.21dtv.com/songs/60025158.mkv +田娟-快餐式恋爱,http://em.21dtv.com/songs/60127226.mkv +王爱华-空巢老妈妈,http://em.21dtv.com/songs/60135558.mkv +陈慧娴-可曾记起爱(无原唱),http://em.21dtv.com/songs/60093438.mkv +佚名-可曾记起爱(无原唱),http://em.21dtv.com/songs/60025284.mkv +光头福星-开车不喝酒,http://em.21dtv.com/songs/60126615.mkv +刘继业-开车别喝酒,http://em.21dtv.com/songs/60125215.mkv +无悔-开车别喝酒,http://em.21dtv.com/songs/60119604.mkv +赵本山-开车不喝酒,http://em.21dtv.com/songs/60024981.mkv +马旭东+贯诗钦-看不清的爱,http://em.21dtv.com/songs/60083212.mkv +佚名-空白录音带,http://em.21dtv.com/songs/60025429.mkv +贺一航-看不了你哭,http://em.21dtv.com/songs/60067155.mkv +何炅-可不可以爱,http://em.21dtv.com/songs/60025277.mkv +卓依婷-看不见温柔,http://em.21dtv.com/songs/60087483.mkv +黄启铭-看不见的爱,http://em.21dtv.com/songs/60104624.mkv +罗嘉良-狂奔过时间,http://em.21dtv.com/songs/60072122.mkv +柳重言-空白的缘分,http://em.21dtv.com/songs/60096361.mkv +李炜-狂奔的天空,http://em.21dtv.com/songs/60105985.mkv +费翔-空白的时候(无原唱),http://em.21dtv.com/songs/60025427.mkv +佚名-空白的日子,http://em.21dtv.com/songs/60025426.mkv +王建杰-可爱又可恨,http://em.21dtv.com/songs/60025271.mkv +林玉英-可爱心上人(无原唱),http://em.21dtv.com/songs/60025269.mkv +廖昌永-可爱的中华,http://em.21dtv.com/songs/60091025.mkv +张可-可爱的祖国,http://em.21dtv.com/songs/60076252.mkv +欧阳铭芮-可爱的中国,http://em.21dtv.com/songs/60025262.mkv +周璇-可爱的早晨,http://em.21dtv.com/songs/60025261.mkv +佚名-可爱的阳光,http://em.21dtv.com/songs/60025256.mkv +彭建新-可爱的笑容(演唱会),http://em.21dtv.com/songs/60025253.mkv +佚名-可爱的新娘,http://em.21dtv.com/songs/60025255.mkv +栾添翔-可爱的新娘,http://em.21dtv.com/songs/60025254.mkv +办桌阿龙+苏又榕-可爱的舞伴,http://em.21dtv.com/songs/60025252.mkv +罗桦-可爱的人生(演唱会),http://em.21dtv.com/songs/60076250.mkv +青山-可爱的人生,http://em.21dtv.com/songs/60025250.mkv +韩宝仪-可爱的人生,http://em.21dtv.com/songs/60025249.mkv +谢雷-可爱的人生(演唱会),http://em.21dtv.com/songs/60025248.mkv +万飞-可爱的人生(演唱会),http://em.21dtv.com/songs/60025247.mkv +佚名-可爱的蔷薇,http://em.21dtv.com/songs/60095405.mkv +麦子杰-可爱的男人,http://em.21dtv.com/songs/60097515.mkv +刘柏延-可爱的男人,http://em.21dtv.com/songs/60064433.mkv +张迎丹-可爱的男孩(舞曲版),http://em.21dtv.com/songs/60069540.mkv +新宝岛康乐队-可爱的马子,http://em.21dtv.com/songs/60105091.mkv +阿幼朵-可爱的苗乡,http://em.21dtv.com/songs/60025243.mkv +办桌二人组-可爱的美眉,http://em.21dtv.com/songs/60025241.mkv +杨燕-可爱的茉莉,http://em.21dtv.com/songs/60025244.mkv +郑璐-可爱的家乡,http://em.21dtv.com/songs/60099532.mkv +达坡玛吉-可爱的家乡,http://em.21dtv.com/songs/60025235.mkv +江蕙-可爱的花蕊(无原唱),http://em.21dtv.com/songs/60095728.mkv +陈雷-可爱的花蕊,http://em.21dtv.com/songs/60025233.mkv +黄乙玲-可爱的花蕊(无原唱),http://em.21dtv.com/songs/60025232.mkv +脱拉库-可爱的姑娘,http://em.21dtv.com/songs/60025231.mkv +彭莉-可爱的姑娘,http://em.21dtv.com/songs/60025230.mkv +张宇-可爱的查某,http://em.21dtv.com/songs/60025227.mkv +群星-可爱的白鸽,http://em.21dtv.com/songs/60091847.mkv +伊能静-可爱的宝贝[替换],http://em.21dtv.com/songs/60100763.mkv +伊能静-可爱的宝贝,http://em.21dtv.com/songs/60080816.mkv +佚名-可爱的爸爸,http://em.21dtv.com/songs/60025226.mkv +郭金发-可爱彼个人,http://em.21dtv.com/songs/60025225.mkv +办桌二人组-可爱の美眉,http://em.21dtv.com/songs/60025223.mkv +宋念宇-就站在这里,http://em.21dtv.com/songs/60024675.mkv +韦唯-记住这一天,http://em.21dtv.com/songs/60090309.mkv +群星-就在这一刻,http://em.21dtv.com/songs/60024674.mkv +高进-就在这一刻,http://em.21dtv.com/songs/60024673.mkv +李丽芬-就这样约定,http://em.21dtv.com/songs/60024686.mkv +蔡琴-就这样约定(演唱会),http://em.21dtv.com/songs/60024685.mkv +张靓颖-就这样好了,http://em.21dtv.com/songs/60135250.mkv +张靓颖-就这样好了,http://em.21dtv.com/songs/60024680.mkv +林翠萍-就这样分手,http://em.21dtv.com/songs/60088118.mkv +苏有朋-君子要动手,http://em.21dtv.com/songs/60024933.mkv +郭向华-就这样爱你,http://em.21dtv.com/songs/60131888.mkv +梁川宇-就这样爱你,http://em.21dtv.com/songs/60119734.mkv +吴蔚-就这样爱了,http://em.21dtv.com/songs/60076192.mkv +代小波-就这样爱吧,http://em.21dtv.com/songs/60024678.mkv +于文华-家在心里头,http://em.21dtv.com/songs/60090502.mkv +江明娟-家在心里面,http://em.21dtv.com/songs/60023048.mkv +阿娜丹-家在我心上,http://em.21dtv.com/songs/60088831.mkv +邓颖芝-决战万人迷,http://em.21dtv.com/songs/60024800.mkv +许廷铿-记住忘记我,http://em.21dtv.com/songs/60118905.mkv +张霖-假装我很好,http://em.21dtv.com/songs/60085269.mkv +若思-记住我的心,http://em.21dtv.com/songs/60070788.mkv +佚名-家在山那边,http://em.21dtv.com/songs/60023045.mkv +佚名-坚贞气节歌,http://em.21dtv.com/songs/60023210.mkv +BEYOND-交织千个心,http://em.21dtv.com/songs/60023461.mkv +萧全-假装男朋友,http://em.21dtv.com/songs/60102680.mkv +吴俊宏-叫着你名字,http://em.21dtv.com/songs/60114443.mkv +陈志朋-记住你的香,http://em.21dtv.com/songs/60022730.mkv +施文彬-叫着你的名,http://em.21dtv.com/songs/60023528.mkv +王岩-记着你的好,http://em.21dtv.com/songs/60070789.mkv +柳絮-就这么一说,http://em.21dtv.com/songs/60131561.mkv +江美琪-镜子联想曲,http://em.21dtv.com/songs/60024290.mkv +许晓杰-军中腊梅花,http://em.21dtv.com/songs/60111399.mkv +彭佳慧-镜子里的我,http://em.21dtv.com/songs/60081134.mkv +高斌-镜子里的你,http://em.21dtv.com/songs/60114280.mkv +林志颖-驾照看一下,http://em.21dtv.com/songs/60023154.mkv +陈思颐-靓仔看过来,http://em.21dtv.com/songs/60076163.mkv +李宛书-紧张介约会,http://em.21dtv.com/songs/60024126.mkv +刘德华-将自己给你,http://em.21dtv.com/songs/60023405.mkv +韦刚-假装很坚强,http://em.21dtv.com/songs/60076025.mkv +王宏伟-家住黄河口,http://em.21dtv.com/songs/60113855.mkv +文欣-军中好儿男,http://em.21dtv.com/songs/60024916.mkv +林姗-酒醉后的心,http://em.21dtv.com/songs/60024493.mkv +余天+陈盈洁-酒醉黑白话,http://em.21dtv.com/songs/60024492.mkv +佚名-酒醉敢有罪(无原唱),http://em.21dtv.com/songs/60024488.mkv +王绎龙+VaVa-就这个调调,http://em.21dtv.com/songs/60107081.mkv +七郎-酒醉固定人,http://em.21dtv.com/songs/60024490.mkv +白冰冰-酒醉固定人(无原唱),http://em.21dtv.com/songs/60024489.mkv +侧田-决战二世祖,http://em.21dtv.com/songs/60024796.mkv +侧田-决战二世祖(演唱会),http://em.21dtv.com/songs/60024795.mkv +侧田-决战二人组,http://em.21dtv.com/songs/60090623.mkv +佚名-酒醉的滋味,http://em.21dtv.com/songs/60024486.mkv +蔡秋凤-酒醉的滋味,http://em.21dtv.com/songs/60024485.mkv +刘强-决战钓鱼岛,http://em.21dtv.com/songs/60083203.mkv +翁立友-酒醉的晚暝,http://em.21dtv.com/songs/60101481.mkv +杨小萍-酒醉的探戈,http://em.21dtv.com/songs/60089983.mkv +刘颖-酒醉的探戈,http://em.21dtv.com/songs/60089684.mkv +韩宝仪-酒醉的探戈,http://em.21dtv.com/songs/60024483.mkv +动力火车-酒醉的探戈,http://em.21dtv.com/songs/60024482.mkv +邓丽君-酒醉的探戈,http://em.21dtv.com/songs/60024481.mkv +动力火车-酒醉的探戈(演唱会),http://em.21dtv.com/songs/60024480.mkv +江蕙-记治的所在,http://em.21dtv.com/songs/60022728.mkv +酒井法子-镜中的裙子,http://em.21dtv.com/songs/60024285.mkv +王识贤-酒醉的恰恰,http://em.21dtv.com/songs/60024478.mkv +杨彬+张新民-九寨的情怀,http://em.21dtv.com/songs/60114617.mkv +高向鹏-酒醉的情话(无原唱),http://em.21dtv.com/songs/60033828.mkv +李晓兵-酒醉的男人,http://em.21dtv.com/songs/60066083.mkv +万芳-就值得了爱,http://em.21dtv.com/songs/60024688.mkv +曹震豪-静止的记忆,http://em.21dtv.com/songs/60024279.mkv +丁铃-酒醉的歌声(无原唱),http://em.21dtv.com/songs/60095373.mkv +谢雷-酒醉的港边,http://em.21dtv.com/songs/60024475.mkv +蔡阿嘎-脚趾都发烫,http://em.21dtv.com/songs/60109613.mkv +白冰冰-酒醉的春风,http://em.21dtv.com/songs/60117943.mkv +斯琴巴图-家在草原上,http://em.21dtv.com/songs/60113543.mkv +陶建阿成-家在彩云南,http://em.21dtv.com/songs/60135954.mkv +陈妤-假装不在意,http://em.21dtv.com/songs/60023149.mkv +周慧敏-尽在不言中,http://em.21dtv.com/songs/60024148.mkv +越剧-尽在不言中,http://em.21dtv.com/songs/60024147.mkv +田震-尽在不言中,http://em.21dtv.com/songs/60024146.mkv +费玉清-尽在不言中,http://em.21dtv.com/songs/60024145.mkv +东南-假装不认识,http://em.21dtv.com/songs/60072067.mkv +陈升+郁可唯-家在北极村,http://em.21dtv.com/songs/60076004.mkv +孙铭宇-记忆中忘记,http://em.21dtv.com/songs/60022727.mkv +俞思远-加油中国人,http://em.21dtv.com/songs/60089130.mkv +俞思远+B.I.Z乐团-加油中国人,http://em.21dtv.com/songs/60022979.mkv +NINE MUSES-2017/9/17,http://em.21dtv.com/songs/60114351.mkv +澎恰恰-今夜月亮圆,http://em.21dtv.com/songs/60024031.mkv +青山+杨小萍-今夜雨蒙蒙(演唱会),http://em.21dtv.com/songs/60024028.mkv +杨小萍-今夜雨蒙蒙,http://em.21dtv.com/songs/60024027.mkv +夜郎金鑫-金鱼跃龙门,http://em.21dtv.com/songs/60107631.mkv +陈威-今夜月光光,http://em.21dtv.com/songs/60024029.mkv +PMC给力团+黄馨仪-加油!雅安,http://em.21dtv.com/songs/60093577.mkv +李翊君-今夜想起你,http://em.21dtv.com/songs/60083177.mkv +邓丽君-今夜想起你,http://em.21dtv.com/songs/60024012.mkv +咖啡因乐队-加油小毛虫,http://em.21dtv.com/songs/60022977.mkv +耀乐团-加油小坏蛋,http://em.21dtv.com/songs/60135634.mkv +夏宇童-就要幸福了,http://em.21dtv.com/songs/60024666.mkv +媛媛-今夜我只想,http://em.21dtv.com/songs/60128953.mkv +刘亦菲-就要我滋味,http://em.21dtv.com/songs/60024665.mkv +佚名-今夜我要醉,http://em.21dtv.com/songs/60024004.mkv +张冬玲+荣联合-今夜午起来,http://em.21dtv.com/songs/60083176.mkv +张冬玲-今夜舞起来,http://em.21dtv.com/songs/60076133.mkv +张冬玲-今夜舞起来(舞曲版),http://em.21dtv.com/songs/60072085.mkv +施文彬+陈亚兰-今夜我陪你,http://em.21dtv.com/songs/60024000.mkv +龚红燕-今夜为你醉,http://em.21dtv.com/songs/60104711.mkv +佚名-今夜我敬你(无原唱),http://em.21dtv.com/songs/60023999.mkv +曹尔真-今夜我喝醉,http://em.21dtv.com/songs/60070820.mkv +曾辉彬-嫁涯唔会差,http://em.21dtv.com/songs/60023175.mkv +杨欣桦+王中平-今夜跳伦巴,http://em.21dtv.com/songs/60135414.mkv +袁小迪+曾心梅-今夜台北城,http://em.21dtv.com/songs/60023994.mkv +阿烁+沐婷-今夜谁知己,http://em.21dtv.com/songs/60112338.mkv +安东阳-静夜思乡曲,http://em.21dtv.com/songs/60111004.mkv +郁钧剑-军营四季歌,http://em.21dtv.com/songs/60024913.mkv +宝少-叫一声爸妈,http://em.21dtv.com/songs/60086629.mkv +宋祖英-叫一声爸妈(演唱会),http://em.21dtv.com/songs/60076073.mkv +面具-金庸群侠传,http://em.21dtv.com/songs/60098918.mkv +谭咏麟-今夜情为证(演唱会),http://em.21dtv.com/songs/60023989.mkv +郁均剑-军营男子汉,http://em.21dtv.com/songs/60089504.mkv +宁林-军营男子汉,http://em.21dtv.com/songs/60024912.mkv +魏晨+ALAN-加油 你有me,http://em.21dtv.com/songs/60022971.mkv +魏晨-加油!你有me!,http://em.21dtv.com/songs/60022973.mkv +刘德华-今夜梦还暖,http://em.21dtv.com/songs/60023977.mkv +王进-家有老照片,http://em.21dtv.com/songs/60132744.mkv +罗时丰-九月九的酒,http://em.21dtv.com/songs/60083188.mkv +卓依婷-九月九的酒,http://em.21dtv.com/songs/60024360.mkv +余天-九月九的酒,http://em.21dtv.com/songs/60024359.mkv +陈少华-九月九的酒,http://em.21dtv.com/songs/60024358.mkv +MARIA CORDERO-九月九的酒(演唱会),http://em.21dtv.com/songs/60024357.mkv +贾堂霞-金银花之歌,http://em.21dtv.com/songs/60104446.mkv +熊峰-聚阳欢迎你,http://em.21dtv.com/songs/60068398.mkv +陈军委-军营好兄弟,http://em.21dtv.com/songs/60061327.mkv +佚名-今夜乎我梦(无原唱),http://em.21dtv.com/songs/60023969.mkv +陈慧琳-今夜很宁静,http://em.21dtv.com/songs/60023968.mkv +陈慧琳-今夜很宁静(演唱会),http://em.21dtv.com/songs/60023967.mkv +花儿乐队-加油!好男儿,http://em.21dtv.com/songs/60022972.mkv +江蕙-今夜好眠梦,http://em.21dtv.com/songs/60023966.mkv +望海高歌-今夜好寂寞,http://em.21dtv.com/songs/60132509.mkv +王爱华-今夜好寂寞,http://em.21dtv.com/songs/60127200.mkv +李景儿-戒烟好爸爸,http://em.21dtv.com/songs/60064399.mkv +蔡秋凤-今夜放心醉,http://em.21dtv.com/songs/60023963.mkv +刘依纯-将伊放抹记,http://em.21dtv.com/songs/60023403.mkv +杨坤-今夜二十岁,http://em.21dtv.com/songs/60105171.mkv +王菲儿-姐要的在乎,http://em.21dtv.com/songs/60098651.mkv +少女部落格-记忆的颜色,http://em.21dtv.com/songs/60064360.mkv +龙千玉-今夜的月娘,http://em.21dtv.com/songs/60023962.mkv +纪佳松-金鱼的眼泪,http://em.21dtv.com/songs/60024092.mkv +佚名-今夜的月光,http://em.21dtv.com/songs/60095395.mkv +陈盈洁-今夜的月光,http://em.21dtv.com/songs/60023961.mkv +陈雷-今夜的月光,http://em.21dtv.com/songs/60023960.mkv +阿福-记忆的天空,http://em.21dtv.com/songs/60022720.mkv +张扬-今夜的探戈(无原唱),http://em.21dtv.com/songs/60066240.mkv +陈永强-记忆的碎片,http://em.21dtv.com/songs/60116346.mkv +张秀卿-今夜的烧酒,http://em.21dtv.com/songs/60023957.mkv +王识贤-今夜的烧酒(无原唱),http://em.21dtv.com/songs/60023956.mkv +蔡秋凤-今夜的烧酒(无原唱),http://em.21dtv.com/songs/60023955.mkv +金海心-记忆的伤悲,http://em.21dtv.com/songs/60022719.mkv +红蔷薇-九月的秋雨,http://em.21dtv.com/songs/60099445.mkv +邓丽君-寄语多情人,http://em.21dtv.com/songs/60102771.mkv +孙江枫-记忆的泪滴,http://em.21dtv.com/songs/60022718.mkv +于佐依-记忆的街角,http://em.21dtv.com/songs/60097519.mkv +佚名-今夜的酒杯,http://em.21dtv.com/songs/60023953.mkv +白冰冰-今夜的酒杯,http://em.21dtv.com/songs/60023952.mkv +王菲-静夜单簧管(演唱会),http://em.21dtv.com/songs/60024273.mkv +邓丽君-九月的故事,http://em.21dtv.com/songs/60024354.mkv +欧霖-今夜的地铁,http://em.21dtv.com/songs/60119742.mkv +乌兰托亚-今夜的草原,http://em.21dtv.com/songs/60023950.mkv +佚名-九月的爱情,http://em.21dtv.com/songs/60024352.mkv +许志安-讲也不要讲,http://em.21dtv.com/songs/60093165.mkv +镐东+许鹤缤-加油吧兄弟,http://em.21dtv.com/songs/60114164.mkv +咖啡糖组合-今夜不分手,http://em.21dtv.com/songs/60104892.mkv +蔡凤凰-今夜八点半,http://em.21dtv.com/songs/60023945.mkv +祁隆-街,http://em.21dtv.com/songs/60113912.mkv +李小薇-姐要爱一场,http://em.21dtv.com/songs/60116006.mkv +苏慧伦-就要爱了吗,http://em.21dtv.com/songs/60024662.mkv +佚名-就要爱了吗(伦巴),http://em.21dtv.com/songs/60024661.mkv +佚名-今夜爱离开(无原唱),http://em.21dtv.com/songs/60023943.mkv +郭品超-借用爱的人,http://em.21dtv.com/songs/60076104.mkv +刘冲-就要爱到底,http://em.21dtv.com/songs/60081661.mkv +降央卓玛-吉祥藏历年,http://em.21dtv.com/songs/60072057.mkv +王建国-叫醒这地方,http://em.21dtv.com/songs/60133983.mkv +林子祥-将心意尽诉,http://em.21dtv.com/songs/60023401.mkv +罗志祥+欧汉声-锦绣阳关道,http://em.21dtv.com/songs/60091835.mkv +赖子健-继续向前走,http://em.21dtv.com/songs/60066050.mkv +灭火器乐团-继续向前行,http://em.21dtv.com/songs/60121894.mkv +群星-继续向前行,http://em.21dtv.com/songs/60022783.mkv +红旗-吉祥太阳谷,http://em.21dtv.com/songs/60091808.mkv +姜潮-九星天辰诀,http://em.21dtv.com/songs/60110127.mkv +曾庆瑜-今夕是何夕,http://em.21dtv.com/songs/60089941.mkv +林帆-今夕是何夕,http://em.21dtv.com/songs/60089363.mkv +李克勤-今夕是何年,http://em.21dtv.com/songs/60023918.mkv +李克勤-今夕是何年(演唱会),http://em.21dtv.com/songs/60023917.mkv +龙千玉-将心送别人,http://em.21dtv.com/songs/60023400.mkv +林姗-叫醒阮的梦,http://em.21dtv.com/songs/60076072.mkv +苏珊-今宵请你留,http://em.21dtv.com/songs/60023937.mkv +蔡小虎-酒醒情袂醒,http://em.21dtv.com/songs/60024464.mkv +青山-酒醒梦已残,http://em.21dtv.com/songs/60024463.mkv +龙飘飘-酒醒梦已残,http://em.21dtv.com/songs/60024462.mkv +言承旭-就想赖着你,http://em.21dtv.com/songs/60088632.mkv +Hello Nico-接下来如何,http://em.21dtv.com/songs/60111612.mkv +阿权-纪晓岚戒烟,http://em.21dtv.com/songs/60115480.mkv +阿权-纪晓岚戒烟,http://em.21dtv.com/songs/60114177.mkv +富博洋-吉祥六鼎山,http://em.21dtv.com/songs/60083100.mkv +洛桑尖措-吉祥六鼎山,http://em.21dtv.com/songs/60072058.mkv +陈俊廷-坚心来等待(无原唱),http://em.21dtv.com/songs/60023209.mkv +薛松-浚县 浚县,http://em.21dtv.com/songs/60123142.mkv +项玉-吉祥花儿开,http://em.21dtv.com/songs/60128586.mkv +李咏梅-就想告诉你,http://em.21dtv.com/songs/60107782.mkv +汤灿-今宵共举杯,http://em.21dtv.com/songs/60023932.mkv +陈一郎-决心搁出帆,http://em.21dtv.com/songs/60024793.mkv +叶启田-决心放抹记,http://em.21dtv.com/songs/60024792.mkv +王若琳-今宵多珍重,http://em.21dtv.com/songs/60106123.mkv +王若琳-今宵多珍重,http://em.21dtv.com/songs/60099415.mkv +汪明荃-今宵多珍重(演唱会),http://em.21dtv.com/songs/60076130.mkv +石修-今宵多珍重(演唱会),http://em.21dtv.com/songs/60076129.mkv +谭咏麟+杜丽莎-今宵多珍重(演唱会),http://em.21dtv.com/songs/60070818.mkv +周蕙-今宵多珍重,http://em.21dtv.com/songs/60023931.mkv +徐小凤-今宵多珍重,http://em.21dtv.com/songs/60023930.mkv +苏霈-今宵多珍重,http://em.21dtv.com/songs/60023929.mkv +姜育恒-今宵多珍重,http://em.21dtv.com/songs/60023928.mkv +叶丽仪-今宵多珍重(演唱会),http://em.21dtv.com/songs/60023927.mkv +谢雷+杨燕-今宵多珍重(演唱会),http://em.21dtv.com/songs/60023926.mkv +梅艳芳-今宵多珍重(演唱会),http://em.21dtv.com/songs/60023925.mkv +雷安娜-今宵多珍重(演唱会),http://em.21dtv.com/songs/60023924.mkv +崔萍-今宵多珍重(演唱会),http://em.21dtv.com/songs/60023923.mkv +陈百强-今宵多珍重(演唱会),http://em.21dtv.com/songs/60023922.mkv +蔡琴-今宵多珍重(HD演唱会),http://em.21dtv.com/songs/60023921.mkv +孔子雯-家乡的月亮,http://em.21dtv.com/songs/60067109.mkv +宋雪莱-家乡的月亮,http://em.21dtv.com/songs/60023026.mkv +李琼-吉祥的云彩,http://em.21dtv.com/songs/60022577.mkv +佚名-家乡的小溪,http://em.21dtv.com/songs/60023025.mkv +朱永飞-家乡的小河,http://em.21dtv.com/songs/60116886.mkv +朱永飞-家乡的小河,http://em.21dtv.com/songs/60076001.mkv +那顺-家乡的小河,http://em.21dtv.com/songs/60023024.mkv +陈威-家乡的小河,http://em.21dtv.com/songs/60023023.mkv +孝天-吉祥的西藏,http://em.21dtv.com/songs/60094062.mkv +张琳+王娜-吉祥大舞台,http://em.21dtv.com/songs/60135226.mkv +张琳+王娜-吉祥大舞台,http://em.21dtv.com/songs/60097525.mkv +雷艳-家乡的味道,http://em.21dtv.com/songs/60069499.mkv +扎扎-家乡的情人,http://em.21dtv.com/songs/60107753.mkv +格格-家乡的蒙泉,http://em.21dtv.com/songs/60023022.mkv +常颖-家乡的米酒,http://em.21dtv.com/songs/60093585.mkv +蓝琪儿-家乡的牧场,http://em.21dtv.com/songs/60068364.mkv +张静-吉祥的马鞭,http://em.21dtv.com/songs/60120535.mkv +Hope组合-吉祥蹲马步,http://em.21dtv.com/songs/60097526.mkv +汤灿-家乡的酃酒,http://em.21dtv.com/songs/60068363.mkv +红旗-吉祥的酒歌,http://em.21dtv.com/songs/60091809.mkv +白冰冰+猎户座-酒仙点红花,http://em.21dtv.com/songs/60024461.mkv +尼玛拉毛-吉祥的哈达,http://em.21dtv.com/songs/60022575.mkv +拉毛王旭-吉祥的高原,http://em.21dtv.com/songs/60111121.mkv +拉毛王旭-吉祥的高原(演唱会),http://em.21dtv.com/songs/60075954.mkv +索朗扎西-家乡的姑娘,http://em.21dtv.com/songs/60072064.mkv +雷佳-家乡步步高(演唱会),http://em.21dtv.com/songs/60023020.mkv +巫启贤-继续爱下去,http://em.21dtv.com/songs/60022768.mkv +谢莉婷+叶诺帆-甲我作阵行,http://em.21dtv.com/songs/60124496.mkv +张文绮+曹雅雯-甲我作阵来,http://em.21dtv.com/songs/60085266.mkv +洪百慧-叫我怎样甘(无原唱),http://em.21dtv.com/songs/60023523.mkv +五月天-借问众神明,http://em.21dtv.com/songs/60023729.mkv +吴淑敏-叫我在如何,http://em.21dtv.com/songs/60007127.mkv +张可儿-今晚怎么买,http://em.21dtv.com/songs/60101344.mkv +BACKSTREET BOYS-just want you to know,http://em.21dtv.com/songs/60003123.mkv +吴俊宏-今晚要开趴,http://em.21dtv.com/songs/60126689.mkv +张学友-今晚要尽情(演唱会),http://em.21dtv.com/songs/60023908.mkv +佚名-教我一点点(无原唱),http://em.21dtv.com/songs/60023552.mkv +童安格-借我一点爱,http://em.21dtv.com/songs/60023731.mkv +含笑-借我一点爱,http://em.21dtv.com/songs/60023730.mkv +曹格-借我一辈子,http://em.21dtv.com/songs/60101092.mkv +刘秋仪-教我忘不了,http://em.21dtv.com/songs/60087414.mkv +陈志明-今晚随在你,http://em.21dtv.com/songs/60023904.mkv +佚名-教我认识你,http://em.21dtv.com/songs/60023541.mkv +佚名-教我认识你(无原唱),http://em.21dtv.com/songs/60023540.mkv +许嘉文+杜春雷-紧握你的手,http://em.21dtv.com/songs/60126178.mkv +JULIE-借我你的手,http://em.21dtv.com/songs/60064401.mkv +鱼仔-叫我目眶红,http://em.21dtv.com/songs/60023520.mkv +刘德华-今晚没借口,http://em.21dtv.com/songs/60023901.mkv +刘德华-今晚没借口(演唱会),http://em.21dtv.com/songs/60023900.mkv +佚名-just walking in the rain,http://em.21dtv.com/songs/60003122.mkv +董文华-今晚好明月,http://em.21dtv.com/songs/60023899.mkv +孙淑媚-将我放心肝,http://em.21dtv.com/songs/60023394.mkv +佚名-叫我第一名,http://em.21dtv.com/songs/60023517.mkv +五月天-叫我第一名(演唱会),http://em.21dtv.com/songs/60023516.mkv +陈美凤+伍浩哲-叫我第一名(无原唱),http://em.21dtv.com/songs/60006923.mkv +董文华-今晚的月光(演唱会),http://em.21dtv.com/songs/60023898.mkv +刘德华-绝望的笑容,http://em.21dtv.com/songs/60024873.mkv +邝含笑+苏少明-久违的清纯,http://em.21dtv.com/songs/60066082.mkv +佚名-劲舞的女孩,http://em.21dtv.com/songs/60024178.mkv +不辣-绝望的离开,http://em.21dtv.com/songs/60128732.mkv +余天-久违的哥们,http://em.21dtv.com/songs/60024379.mkv +宋雪莱-久违的哥们,http://em.21dtv.com/songs/60024378.mkv +颜羽-绝望的等候,http://em.21dtv.com/songs/60086647.mkv +李克勤-今晚唱劲歌,http://em.21dtv.com/songs/60023897.mkv +郑秀文-今晚不可以,http://em.21dtv.com/songs/60093298.mkv +焦庆军-今天再相见,http://em.21dtv.com/songs/60083174.mkv +白智英-今天也爱你,http://em.21dtv.com/songs/60062220.mkv +陈一凡-解脱,http://em.21dtv.com/songs/60105468.mkv +莫文蔚-今天星期几,http://em.21dtv.com/songs/60091961.mkv +周迅-今天星期几(演唱会),http://em.21dtv.com/songs/60023883.mkv +泳儿-今天想懒惰,http://em.21dtv.com/songs/60023882.mkv +张杰-Just The Way You Are,http://em.21dtv.com/songs/60099231.mkv +刘雨潼-Just The Way You Are,http://em.21dtv.com/songs/60081356.mkv +邓紫棋-just the way you are(演唱会),http://em.21dtv.com/songs/60073457.mkv +BRUNO MARS-just the way you are,http://em.21dtv.com/songs/60003120.mkv +BILLY JOEL-just the way you are,http://em.21dtv.com/songs/60003119.mkv +老钱-今天我疯了,http://em.21dtv.com/songs/60098700.mkv +陈冠希-今天我等你(无原唱),http://em.21dtv.com/songs/60023876.mkv +DAVICHI-just the two of us,http://em.21dtv.com/songs/60073456.mkv +梁静茹-今天情人节,http://em.21dtv.com/songs/60023862.mkv +温博-今天你要走,http://em.21dtv.com/songs/60069521.mkv +金波-今天你要走(演唱会),http://em.21dtv.com/songs/60023858.mkv +谢霆锋-今天你生日,http://em.21dtv.com/songs/60023854.mkv +甲子蕙-今天你好吗(无原唱),http://em.21dtv.com/songs/60023853.mkv +詹雅雯-惊听你的名,http://em.21dtv.com/songs/60024207.mkv +陶喆-今天没回家,http://em.21dtv.com/songs/60023851.mkv +陶喆-今天没回家(演唱会),http://em.21dtv.com/songs/60023850.mkv +王冰洋-脚踏两只船,http://em.21dtv.com/songs/60023495.mkv +罗时丰-进退拢为难(无原唱),http://em.21dtv.com/songs/60024162.mkv +林俊吉+戴梅君-甲天借时间,http://em.21dtv.com/songs/60072066.mkv +萧正楠-吉他和提琴,http://em.21dtv.com/songs/60022564.mkv +雷佳-今天的中国,http://em.21dtv.com/songs/60023844.mkv +李玟-今天到永远,http://em.21dtv.com/songs/60023833.mkv +林子祥-今天的一切,http://em.21dtv.com/songs/60023843.mkv +何炅+林浩-今天的我们,http://em.21dtv.com/songs/60067132.mkv +陈奕迅-今天等我来,http://em.21dtv.com/songs/60023847.mkv +陈奕迅-今天等我来(演唱会),http://em.21dtv.com/songs/60023846.mkv +许美静-今天的太阳,http://em.21dtv.com/songs/60023838.mkv +夏韶声-结他低泣时,http://em.21dtv.com/songs/60023633.mkv +佚名-吉他低泣时,http://em.21dtv.com/songs/60022563.mkv +夏韶声-吉他低泣时(演唱会),http://em.21dtv.com/songs/60022562.mkv +黄品冠-教堂的处吻,http://em.21dtv.com/songs/60023537.mkv +刺桐花开-脚踏车之恋,http://em.21dtv.com/songs/60066067.mkv +JW-今天不见人,http://em.21dtv.com/songs/60023832.mkv +柳影虹-今天不回家,http://em.21dtv.com/songs/60088132.mkv +李翊君-今天不回家,http://em.21dtv.com/songs/60023831.mkv +豹小子-今天不回家,http://em.21dtv.com/songs/60023830.mkv +甄妮-今天不回家(演唱会),http://em.21dtv.com/songs/60023829.mkv +方伊琪-今天不回家(演唱会),http://em.21dtv.com/songs/60023828.mkv +简恺乐-今天爱了没,http://em.21dtv.com/songs/60128292.mkv +简恺乐-今天爱了没,http://em.21dtv.com/songs/60127263.mkv +林志颖-就是这一天,http://em.21dtv.com/songs/60024641.mkv +佚名-就是这一天(无原唱),http://em.21dtv.com/songs/60024640.mkv +陈随意+唐俪-今生只为你,http://em.21dtv.com/songs/60023814.mkv +大张凡-就是这双手,http://em.21dtv.com/songs/60110963.mkv +康艾威-就是这双手,http://em.21dtv.com/songs/60083197.mkv +乔洋-就是这么乔,http://em.21dtv.com/songs/60024636.mkv +BBF-就是这么酷,http://em.21dtv.com/songs/60132048.mkv +庄学忠-几时再回头,http://em.21dtv.com/songs/60089254.mkv +佚名-几时再回头,http://em.21dtv.com/songs/60022663.mkv +李茂山-几时再回头,http://em.21dtv.com/songs/60022662.mkv +谢雷-几时再回头(演唱会),http://em.21dtv.com/songs/60022661.mkv +余天-几时再回头(无原唱),http://em.21dtv.com/songs/60022660.mkv +郭欢+庞龙-今生足够了(演唱会),http://em.21dtv.com/songs/60070815.mkv +李蕙敏-假使这分钟,http://em.21dtv.com/songs/60023127.mkv +郑仲-今生只爱你,http://em.21dtv.com/songs/60122168.mkv +翁立友-今生最爱你,http://em.21dtv.com/songs/60083361.mkv +蔡义德-今生最爱你,http://em.21dtv.com/songs/60066074.mkv +新街口组合-颈上胭脂红,http://em.21dtv.com/songs/60085305.mkv +孙悦+解小东-金梭与银梭,http://em.21dtv.com/songs/60090893.mkv +尚雯婕-今生永相伴,http://em.21dtv.com/songs/60122686.mkv +伍佰-就是因为爱(HD),http://em.21dtv.com/songs/10012702.mkv +伍佰-就是因为爱,http://em.21dtv.com/songs/60096180.mkv +郭心-就是因为爱,http://em.21dtv.com/songs/60083196.mkv +大炜-今生一起走,http://em.21dtv.com/songs/60135086.mkv +祁隆+任妙音-今生遇见你,http://em.21dtv.com/songs/60128269.mkv +周璇-襟上一朵花,http://em.21dtv.com/songs/60024113.mkv +谢采妘-襟上一朵花,http://em.21dtv.com/songs/60024112.mkv +邱永传-就是想着你,http://em.21dtv.com/songs/60081376.mkv +办桌二人组-甲伤心作伴,http://em.21dtv.com/songs/60023069.mkv +谢金燕-甲伤心同居,http://em.21dtv.com/songs/60023068.mkv +郑希怡-技术性击倒,http://em.21dtv.com/songs/60093292.mkv +四个朋友-就是喜欢你,http://em.21dtv.com/songs/60111789.mkv +戴一晨-就是喜欢你,http://em.21dtv.com/songs/60104161.mkv +张震岳-就是喜欢你,http://em.21dtv.com/songs/60024631.mkv +佚名-江水向东流,http://em.21dtv.com/songs/60023362.mkv +黄仲昆-江水向东流(演唱会),http://em.21dtv.com/songs/60023361.mkv +潘美辰+JOANNA MOON-就是想爱你,http://em.21dtv.com/songs/60062802.mkv +陈慧珊-就算我做错,http://em.21dtv.com/songs/60024655.mkv +张惠妹-就是我想你,http://em.21dtv.com/songs/60024630.mkv +董贞-君生我未生,http://em.21dtv.com/songs/60024927.mkv +关心妍-假使我漂亮,http://em.21dtv.com/songs/60023124.mkv +关心妍-假使我漂亮(演唱会),http://em.21dtv.com/songs/60023123.mkv +龙千玉-今生未了情,http://em.21dtv.com/songs/60108193.mkv +音乐走廊+歌一生-今生我等你,http://em.21dtv.com/songs/60121133.mkv +佚名-接受我的爱,http://em.21dtv.com/songs/60023571.mkv +蒋钰华-今生我爱你,http://em.21dtv.com/songs/60127361.mkv +海生+蒋钰华-今生我爱你,http://em.21dtv.com/songs/60124212.mkv +高斌-今生太执着,http://em.21dtv.com/songs/60108165.mkv +郭新龙-季山头之歌,http://em.21dtv.com/songs/60075973.mkv +二龙湖浩哥-今生是兄弟,http://em.21dtv.com/songs/60107472.mkv +郭富城-就是孙悟空,http://em.21dtv.com/songs/60118971.mkv +郭富城-就算是情人,http://em.21dtv.com/songs/60024652.mkv +佚名-旧事随梦去,http://em.21dtv.com/songs/60024569.mkv +徐良+MELODIA-即使说抱歉,http://em.21dtv.com/songs/60022611.mkv +张秀卿-今生阮的爱(无原唱),http://em.21dtv.com/songs/60069197.mkv +林志豪-今生情不变,http://em.21dtv.com/songs/60023795.mkv +华少-几十平国王,http://em.21dtv.com/songs/60080571.mkv +陈慧琳-今生你作伴,http://em.21dtv.com/songs/60023794.mkv +佚名-今生没有缘(无原唱),http://em.21dtv.com/songs/60023792.mkv +安崇艺-就算没有她,http://em.21dtv.com/songs/60114490.mkv +郑容和-即使没有你,http://em.21dtv.com/songs/60110577.mkv +张柏芝-即使没法讲,http://em.21dtv.com/songs/60022609.mkv +佚名-今生来注定,http://em.21dtv.com/songs/60023791.mkv +陈美凤-今生来注定,http://em.21dtv.com/songs/60023790.mkv +李碧华-聚散俩依依,http://em.21dtv.com/songs/60024752.mkv +许茹芸-聚散俩依依(演唱会),http://em.21dtv.com/songs/60024751.mkv +王杰-聚少离别多,http://em.21dtv.com/songs/60024753.mkv +佚名-金梭和银梭,http://em.21dtv.com/songs/60024086.mkv +马亚丽-金梭和银梭,http://em.21dtv.com/songs/60024085.mkv +朱逢博-金梭和银梭(演唱会),http://em.21dtv.com/songs/60024084.mkv +赵斌+冯光-今生好兄弟,http://em.21dtv.com/songs/60116263.mkv +谭咏麟-旧生会派队,http://em.21dtv.com/songs/60067141.mkv +谭咏麟-旧生会派对,http://em.21dtv.com/songs/60066085.mkv +刘梦涵-姐是很美貌,http://em.21dtv.com/songs/60120364.mkv +SHINE-旧生会旅行,http://em.21dtv.com/songs/60024566.mkv +李君-今生跟着你,http://em.21dtv.com/songs/60133793.mkv +王韵壹-今生感谢你,http://em.21dtv.com/songs/60125961.mkv +谢霆锋-今生共相伴(演唱会),http://em.21dtv.com/songs/60023779.mkv +秀兰玛雅+王识贤-今生共明月(无原唱),http://em.21dtv.com/songs/60023778.mkv +杨语莲-姐是个传说,http://em.21dtv.com/songs/60076094.mkv +徐子崴-今生共白头,http://em.21dtv.com/songs/60023777.mkv +AEROSMITH-janies got a gun,http://em.21dtv.com/songs/60073450.mkv +曹雅雯+许富凯-今生的愿望,http://em.21dtv.com/songs/60112727.mkv +张啸-今生的兄弟,http://em.21dtv.com/songs/60086635.mkv +安东阳+东方红艳-今生的唯一,http://em.21dtv.com/songs/60123837.mkv +陈小卿-今生的唯一,http://em.21dtv.com/songs/60107314.mkv +田野-金色的田野,http://em.21dtv.com/songs/60105271.mkv +林禾-金色的深秋,http://em.21dtv.com/songs/60132624.mkv +黄铠晴-金山豆日青,http://em.21dtv.com/songs/60024076.mkv +洪百慧-今生的情债,http://em.21dtv.com/songs/60067130.mkv +王江发+云曼-今生的牵挂,http://em.21dtv.com/songs/60116154.mkv +陈随意+谢宜君-今生的诺言,http://em.21dtv.com/songs/60083168.mkv +王丽达-金色的梦想,http://em.21dtv.com/songs/60120744.mkv +王莹-金色的梦想,http://em.21dtv.com/songs/60102544.mkv +乌兰托娅-金色的牧场,http://em.21dtv.com/songs/60068387.mkv +庞龙-金色的胡杨,http://em.21dtv.com/songs/60024070.mkv +司徒昌磊-金色的辉煌,http://em.21dtv.com/songs/60080695.mkv +才让当知-金色的故乡,http://em.21dtv.com/songs/60091249.mkv +红蔷薇-今生的过客,http://em.21dtv.com/songs/60117114.mkv +宋祖英-金色的凤凰,http://em.21dtv.com/songs/60024069.mkv +王铮亮-肩上的翅膀,http://em.21dtv.com/songs/60023215.mkv +庄妮-江山春好处(演唱会),http://em.21dtv.com/songs/60076055.mkv +赵小南-酒是穿肠药,http://em.21dtv.com/songs/60134263.mkv +佚名-就是不一样(无原唱),http://em.21dtv.com/songs/60024619.mkv +向蕙玲-结束彼一幕,http://em.21dtv.com/songs/60064396.mkv +李贤-就算闭上眼,http://em.21dtv.com/songs/60120645.mkv +周国贤-今生不回家,http://em.21dtv.com/songs/60127844.mkv +周国贤-今生不回家,http://em.21dtv.com/songs/60123754.mkv +汪明荃-今生不负爱,http://em.21dtv.com/songs/60023771.mkv +陈舒创-今生不别离,http://em.21dtv.com/songs/60108992.mkv +刘清沨-今生不别离,http://em.21dtv.com/songs/60107538.mkv +孙楠+艾雨-今生爱走远,http://em.21dtv.com/songs/60023769.mkv +高安-今生爱上你,http://em.21dtv.com/songs/60080511.mkv +张震岳-就让这首歌,http://em.21dtv.com/songs/60024613.mkv +黄品源-就让这过去,http://em.21dtv.com/songs/60024612.mkv +小野惠令奈-君があの日笑っていた意味を,http://em.21dtv.com/songs/60076217.mkv +董事长乐团-就让我远走(无原唱),http://em.21dtv.com/songs/60024609.mkv +阿鲁阿卓-假如我是你,http://em.21dtv.com/songs/60064379.mkv +王羽泽-竟然为你哭,http://em.21dtv.com/songs/60024243.mkv +糯米-就让我离开,http://em.21dtv.com/songs/60024608.mkv +刘丹萌-假如我可以,http://em.21dtv.com/songs/60097665.mkv +微微-就让我喝醉,http://em.21dtv.com/songs/60076186.mkv +张寒-就让我爱你,http://em.21dtv.com/songs/60076185.mkv +杜丽莎-假如 是否,http://em.21dtv.com/songs/60135388.mkv +吕方-假如你要走,http://em.21dtv.com/songs/60023109.mkv +黄义达-既然你问我,http://em.21dtv.com/songs/60104623.mkv +花世纪-就让你开心,http://em.21dtv.com/songs/60085307.mkv +才娜旺姆-嘉绒墨尔多,http://em.21dtv.com/songs/60119587.mkv +尤雅-甲阮来作伴,http://em.21dtv.com/songs/60023067.mkv +李嘉-将阮来打醒,http://em.21dtv.com/songs/60095606.mkv +成龙-佳人欢迎我,http://em.21dtv.com/songs/60091225.mkv +佚名-今日好风光,http://em.21dtv.com/songs/60023763.mkv +张蓉蓉-将阮放袂记,http://em.21dtv.com/songs/60023390.mkv +黄家强+叶世荣-旧日的足迹(演唱会),http://em.21dtv.com/songs/60024557.mkv +BEYOND-旧日的足迹(演唱会),http://em.21dtv.com/songs/60024556.mkv +许晓杰-军人的荣耀,http://em.21dtv.com/songs/60097540.mkv +呼斯楞-军人的情怀,http://em.21dtv.com/songs/60118459.mkv +韩婷-军人的情怀,http://em.21dtv.com/songs/60109005.mkv +文博-军人的妈妈,http://em.21dtv.com/songs/60076214.mkv +龙绍洁-军人的抉择,http://em.21dtv.com/songs/60120180.mkv +林宥嘉-巨人的肩膀,http://em.21dtv.com/songs/60132612.mkv +陈慧娴-今日不一样,http://em.21dtv.com/songs/60093437.mkv +洪百慧-将阮爱一半,http://em.21dtv.com/songs/60083143.mkv +鸿飞-举起这杯酒,http://em.21dtv.com/songs/60103723.mkv +阿权-金钱与真爱,http://em.21dtv.com/songs/60117313.mkv +邵大伦+张文绮-旧情也难忘,http://em.21dtv.com/songs/60069533.mkv +吴淑敏-旧情又绵绵,http://em.21dtv.com/songs/60061319.mkv +余天-旧情也绵绵,http://em.21dtv.com/songs/60024552.mkv +沈文程+张瀛仁-旧情也绵绵,http://em.21dtv.com/songs/60024551.mkv +江蕙-旧情也绵绵,http://em.21dtv.com/songs/60024550.mkv +曾心梅+陈中-旧情也绵绵,http://em.21dtv.com/songs/60024549.mkv +蓝雨-金钱与爱情,http://em.21dtv.com/songs/60069525.mkv +杨宗宪-绝情无回头,http://em.21dtv.com/songs/60024864.mkv +晨熙-绝情死了心,http://em.21dtv.com/songs/60133761.mkv +杨千嬅-坚强女人心,http://em.21dtv.com/songs/60083131.mkv +王建杰-旧情难了断,http://em.21dtv.com/songs/60024537.mkv +赵姝-激情马洛卡,http://em.21dtv.com/songs/60101177.mkv +群星-金曲巨星串,http://em.21dtv.com/songs/60024064.mkv +尹光-九七分飞燕,http://em.21dtv.com/songs/60024336.mkv +群星-金曲25年MEDLEY,http://em.21dtv.com/songs/60093052.mkv +旭日阳刚-坚强的信仰,http://em.21dtv.com/songs/60072068.mkv +陈岩-绝情的邂逅,http://em.21dtv.com/songs/60135915.mkv +石头-坚强的石头,http://em.21dtv.com/songs/60068372.mkv +BOK和平组合-绝情的恰恰,http://em.21dtv.com/songs/60024854.mkv +谢莉婷-坚强的女性,http://em.21dtv.com/songs/60070795.mkv +妙音兄弟-绝情的女人,http://em.21dtv.com/songs/60126764.mkv +谢宜君-坚强的女人,http://em.21dtv.com/songs/60102743.mkv +李明洋-坚强的男人,http://em.21dtv.com/songs/60068371.mkv +杨千嬅-金曲当年情(演唱会),http://em.21dtv.com/songs/60024063.mkv +周渝民-倔强的蚂蚁,http://em.21dtv.com/songs/60094856.mkv +音魔团-倔强的梦想,http://em.21dtv.com/songs/60107353.mkv +李行亮-倔强的梦想,http://em.21dtv.com/songs/60097631.mkv +旭日阳刚-坚强的理由,http://em.21dtv.com/songs/60124015.mkv +潘峰-坚强的理由,http://em.21dtv.com/songs/60102499.mkv +王旭-坚强的理由,http://em.21dtv.com/songs/60085270.mkv +莫文蔚+伍佰-坚强的理由,http://em.21dtv.com/songs/60023205.mkv +任贤齐+莫文蔚-坚强的理由(演唱会),http://em.21dtv.com/songs/60023204.mkv +荒山亮-倔强的戆人,http://em.21dtv.com/songs/60118016.mkv +飞翔-尽情的歌唱,http://em.21dtv.com/songs/60107356.mkv +阿吉仔-坚强的斗志,http://em.21dtv.com/songs/60135872.mkv +李翊君-激情的代价,http://em.21dtv.com/songs/60022540.mkv +郭欢-倔强的背影,http://em.21dtv.com/songs/60107280.mkv +张皓强-崛起吧渭南,http://em.21dtv.com/songs/60127992.mkv +詹雅雯-旧情甭提起,http://em.21dtv.com/songs/60086165.mkv +多亮+于莎莎-极品星座论,http://em.21dtv.com/songs/60083103.mkv +周传雄-吉普赛情人,http://em.21dtv.com/songs/60090827.mkv +佚名-吉普赛情人,http://em.21dtv.com/songs/60022555.mkv +周传雄-吉普塞情人,http://em.21dtv.com/songs/60022553.mkv +林志颖-吉普赛男孩(演唱会)(无原唱),http://em.21dtv.com/songs/60022554.mkv +刘福助-鸡婆三零一,http://em.21dtv.com/songs/60022520.mkv +潘七魁-键盘上的爱,http://em.21dtv.com/songs/60116120.mkv +张翠萍-键盘上的爱,http://em.21dtv.com/songs/60113491.mkv +林海峰-金牌经理人,http://em.21dtv.com/songs/60092882.mkv +陈法拉-绝配的一对,http://em.21dtv.com/songs/60024849.mkv +石雪峰-极品屌丝哥,http://em.21dtv.com/songs/60097553.mkv +董事长乐团-假漂泊的人(演唱会),http://em.21dtv.com/songs/60023085.mkv +星星团-Joker,http://em.21dtv.com/songs/60111937.mkv +Dal★shabet-Joker,http://em.21dtv.com/songs/60111596.mkv +办桌二人组-甲你在一起,http://em.21dtv.com/songs/60023063.mkv +群星-今年最特别,http://em.21dtv.com/songs/60076111.mkv +白智英-就那样再见,http://em.21dtv.com/songs/60120815.mkv +王宏伟-江南一枝花,http://em.21dtv.com/songs/60081178.mkv +孙宇-江南烟雨时,http://em.21dtv.com/songs/60102114.mkv +毕程漉-江南烟雨里,http://em.21dtv.com/songs/60128152.mkv +陈慧琳-借你一双手,http://em.21dtv.com/songs/60093452.mkv +杨子-江南夜色浓,http://em.21dtv.com/songs/60101109.mkv +孟文豪-敬你一杯酒(故事情节),http://em.21dtv.com/songs/60101321.mkv +刘缘-敬你一杯酒,http://em.21dtv.com/songs/60076161.mkv +谢金晶+翁立友-甲你惜命命,http://em.21dtv.com/songs/60117239.mkv +林俊吉-将你惜命命,http://em.21dtv.com/songs/60072072.mkv +纪晓斌-鸡年行大运,http://em.21dtv.com/songs/60131724.mkv +孙晓云-江南雾中雨,http://em.21dtv.com/songs/60023346.mkv +黄圣依-今年我最红,http://em.21dtv.com/songs/60023753.mkv +方炯嘉-教你弹吉他,http://em.21dtv.com/songs/60105103.mkv +陆正信-教你说壮语,http://em.21dtv.com/songs/60076074.mkv +佚名-今年胜往年,http://em.21dtv.com/songs/60023752.mkv +徐若瑄-姐你睡了吗,http://em.21dtv.com/songs/60023660.mkv +江映蓉-姐 你睡了吗,http://em.21dtv.com/songs/60023635.mkv +张德兰+区瑞强-今年胜旧年,http://em.21dtv.com/songs/60023751.mkv +李池湘-今年胜旧年,http://em.21dtv.com/songs/60023750.mkv +秋水-叫你声哥哥,http://em.21dtv.com/songs/60070806.mkv +许志安-今年没圣诞,http://em.21dtv.com/songs/60093150.mkv +江蕙-甲你懒牢牢,http://em.21dtv.com/songs/60095745.mkv +江蕙-甲你揽牢牢,http://em.21dtv.com/songs/60023060.mkv +刘维-鸡年吉吉操,http://em.21dtv.com/songs/60132253.mkv +双星-今年好运气,http://em.21dtv.com/songs/60076110.mkv +张卫-济宁坏孩子,http://em.21dtv.com/songs/60102204.mkv +黄淑辉-将你放袜记,http://em.21dtv.com/songs/60094531.mkv +曹雅雯-将你放袂记,http://em.21dtv.com/songs/60130385.mkv +林子娟-将你放抹记,http://em.21dtv.com/songs/60023389.mkv +甲子惠-将你放抹记(无原唱),http://em.21dtv.com/songs/60023388.mkv +龙千玉-将你放袂记,http://em.21dtv.com/songs/60023387.mkv +双星-今年发大财,http://em.21dtv.com/songs/60076109.mkv +七郎-甲你当做宝,http://em.21dtv.com/songs/60023059.mkv +何龙雨-江南第一家,http://em.21dtv.com/songs/60113259.mkv +朱丹萍-江南第一家,http://em.21dtv.com/songs/60106915.mkv +郭富城+吴倩莲-聚暖的缘份,http://em.21dtv.com/songs/60024750.mkv +萧蔓萱-酒女的心声(无原唱),http://em.21dtv.com/songs/60024446.mkv +叶瑷菱-叫你的名字,http://em.21dtv.com/songs/60023508.mkv +杨添-九诺的力量,http://em.21dtv.com/songs/60070828.mkv +黄西田-叫你不免惊,http://em.21dtv.com/songs/60023504.mkv +Better Man-见面再说吧,http://em.21dtv.com/songs/60126515.mkv +陈奕迅-寂寞奏鸣曲,http://em.21dtv.com/songs/60102879.mkv +赵默-寂寞在唱歌,http://em.21dtv.com/songs/60022950.mkv +阿桑-寂寞在唱歌,http://em.21dtv.com/songs/60022949.mkv +李克勤-寂寞烟雨天,http://em.21dtv.com/songs/60022939.mkv +刘恺威-寂寞夜未眠(无原唱),http://em.21dtv.com/songs/60022945.mkv +童丽-军民鱼水情,http://em.21dtv.com/songs/60076213.mkv +佚名-军民鱼水情,http://em.21dtv.com/songs/60024901.mkv +汪洋-寂寞夜如香,http://em.21dtv.com/songs/60022942.mkv +郁钧剑-警民一家亲,http://em.21dtv.com/songs/60024241.mkv +马条-寂寞有多长,http://em.21dtv.com/songs/60088983.mkv +吴桥-寂寞夜都市,http://em.21dtv.com/songs/60022941.mkv +苏立生-寂寞有多长(演唱会),http://em.21dtv.com/songs/60128346.mkv +苏立生-寂寞有多长,http://em.21dtv.com/songs/60124406.mkv +GIRL FRIENDS-寂寞心脏病,http://em.21dtv.com/songs/60022936.mkv +罗时丰-酒茫心也茫(无原唱),http://em.21dtv.com/songs/60024442.mkv +孙晓雨+刘雷-寂寞小神仙,http://em.21dtv.com/songs/60111808.mkv +曹敏-寂寞相思浓,http://em.21dtv.com/songs/60121734.mkv +风之翼-寂寞星期天,http://em.21dtv.com/songs/60022937.mkv +张瑶-寂寞我就跳,http://em.21dtv.com/songs/60022934.mkv +民歌-姐妹踏歌来,http://em.21dtv.com/songs/60091554.mkv +孙露-寂寞沙洲冷,http://em.21dtv.com/songs/60115815.mkv +孙露-寂寞沙洲冷,http://em.21dtv.com/songs/60075983.mkv +周传雄-寂寞沙洲冷,http://em.21dtv.com/songs/60022921.mkv +张祥洪-寂寞数烟圈,http://em.21dtv.com/songs/60083112.mkv +陈惠婷-寂寞守望者,http://em.21dtv.com/songs/60117340.mkv +动力火车-寂寞是思念,http://em.21dtv.com/songs/60090742.mkv +樊凡-寂寞守护者,http://em.21dtv.com/songs/60085262.mkv +徐立-金木水火土,http://em.21dtv.com/songs/60024056.mkv +金志文-寂寞三个人,http://em.21dtv.com/songs/60094318.mkv +罗时丰-见面三分情,http://em.21dtv.com/songs/60076039.mkv +佚名-见面三分情,http://em.21dtv.com/songs/60023291.mkv +王识贤-见面三分情,http://em.21dtv.com/songs/60023290.mkv +高向鹏-见面三分情,http://em.21dtv.com/songs/60023289.mkv +阿吉仔-见面三分情,http://em.21dtv.com/songs/60023288.mkv +糯米-寂寞时的痛,http://em.21dtv.com/songs/60062793.mkv +许桂荧+张凯瑜-今暝三点半,http://em.21dtv.com/songs/60023740.mkv +韦嘉-寂寞人行道,http://em.21dtv.com/songs/60022920.mkv +胡尧峰-军民融合情,http://em.21dtv.com/songs/60124375.mkv +闪亮三姐妹-寂寞惹的祸,http://em.21dtv.com/songs/60022919.mkv +林隆旋-寂寞情人街,http://em.21dtv.com/songs/60022916.mkv +杨丞琳-芥末巧克力,http://em.21dtv.com/songs/60023713.mkv +莫文蔚-寂寞蒲公英,http://em.21dtv.com/songs/60022913.mkv +张栋梁-寂寞那么多,http://em.21dtv.com/songs/60022907.mkv +林忆莲-寂寞流星群,http://em.21dtv.com/songs/60022902.mkv +张敬轩-寂寞流星群(演唱会),http://em.21dtv.com/songs/60022901.mkv +林忆莲-寂寞流星群(演唱会),http://em.21dtv.com/songs/60022900.mkv +陈慧琳-寂寞流星群(演唱会),http://em.21dtv.com/songs/60022899.mkv +刘小钰-寂寞啦啦啦,http://em.21dtv.com/songs/60022894.mkv +七郎-寂寞流浪儿,http://em.21dtv.com/songs/60022898.mkv +巧千金-金马仑高原,http://em.21dtv.com/songs/60097603.mkv +刘蕊绮-寂寞空虚冷,http://em.21dtv.com/songs/60115033.mkv +刘蕊绮-寂寞空虚冷,http://em.21dtv.com/songs/60110045.mkv +火星熊-寂寞咖啡杯,http://em.21dtv.com/songs/60068357.mkv +萧敬腾-寂寞还是你(演唱会),http://em.21dtv.com/songs/60063141.mkv +司文-寂寞黑金鱼,http://em.21dtv.com/songs/60087526.mkv +方伊琪-旧梦何处寻(演唱会),http://em.21dtv.com/songs/60076180.mkv +刘荣-寂寞钢琴手,http://em.21dtv.com/songs/60110042.mkv +正歌-寂寞刚刚好,http://em.21dtv.com/songs/60094188.mkv +雷婷-寂寞犯的错,http://em.21dtv.com/songs/60081335.mkv +代小波-寂寞犯的错,http://em.21dtv.com/songs/60022876.mkv +纪如璟-寂寞的自由,http://em.21dtv.com/songs/60022873.mkv +汤骏业-寂寞的总和,http://em.21dtv.com/songs/60130528.mkv +汤骏业-寂寞的总和,http://em.21dtv.com/songs/60124190.mkv +刘小慧-寂寞都有罪(演唱会),http://em.21dtv.com/songs/60022875.mkv +MELODIA.K-寂寞的影院,http://em.21dtv.com/songs/60083110.mkv +本多RURU-寂寞的游戏,http://em.21dtv.com/songs/60089943.mkv +杨宗宪-寂寞的英雄,http://em.21dtv.com/songs/60022872.mkv +谯帆-寂寞的月亮,http://em.21dtv.com/songs/60117246.mkv +石琦-寂寞的烟火,http://em.21dtv.com/songs/60117948.mkv +乌兰托娅-寂寞的雪莲,http://em.21dtv.com/songs/60122463.mkv +江蕙-寂寞的小路(无原唱),http://em.21dtv.com/songs/60022868.mkv +吕莘-寂寞动物园,http://em.21dtv.com/songs/60108375.mkv +誓言-寂寞的玩偶,http://em.21dtv.com/songs/60128391.mkv +包伟铭-寂寞的温度,http://em.21dtv.com/songs/60123706.mkv +张可儿-寂寞的双手,http://em.21dtv.com/songs/60075981.mkv +杨峻荣-寂寞的时候(无原唱),http://em.21dtv.com/songs/60022866.mkv +佚名-军民大生产,http://em.21dtv.com/songs/60024899.mkv +司文+蜡笔小馨-寂寞的人儿,http://em.21dtv.com/songs/60022862.mkv +孙淑媚-寂寞的气味,http://em.21dtv.com/songs/60022858.mkv +何静-姐妹的情人,http://em.21dtv.com/songs/60090613.mkv +刘东桦-寂寞的情歌,http://em.21dtv.com/songs/60022859.mkv +罗钧满-寂寞的男人,http://em.21dtv.com/songs/60086619.mkv +张学友-寂寞的男人(演唱会),http://em.21dtv.com/songs/60022857.mkv +蔡小虎-寂寞的蜡烛,http://em.21dtv.com/songs/60022851.mkv +佚名-寂寞的旅途,http://em.21dtv.com/songs/60022855.mkv +邱芸子-寂寞的恋情,http://em.21dtv.com/songs/60022853.mkv +甜美真-寂寞的流泪,http://em.21dtv.com/songs/60075980.mkv +陈一郎-寂寞的恋歌,http://em.21dtv.com/songs/60022852.mkv +龙千玉-寂寞的路灯,http://em.21dtv.com/songs/60076083.mkv +黄乙玲-寂寞的看板,http://em.21dtv.com/songs/60022850.mkv +杨钰莹-寂寞的解药(演唱会),http://em.21dtv.com/songs/60022848.mkv +郭宴-寂寞的季节,http://em.21dtv.com/songs/60127478.mkv +陶喆-寂寞的季节,http://em.21dtv.com/songs/60022846.mkv +陶喆-寂寞的季节(演唱会),http://em.21dtv.com/songs/60022845.mkv +赵传-寂寞的骄傲,http://em.21dtv.com/songs/60132915.mkv +刘雷-寂寞的黄昏,http://em.21dtv.com/songs/60093640.mkv +王森-寂寞的羔羊,http://em.21dtv.com/songs/60022842.mkv +徐莹+果果-姐妹大过天,http://em.21dtv.com/songs/60100056.mkv +上明-寂寞的歌声,http://em.21dtv.com/songs/60022843.mkv +扬哲-寂寞等归暝,http://em.21dtv.com/songs/60077050.mkv +陈百强-寂寞的感觉(演唱会),http://em.21dtv.com/songs/60022841.mkv +蔡依林-假面的告白,http://em.21dtv.com/songs/60023084.mkv +王宏恩-寂寞的飞鼠,http://em.21dtv.com/songs/60022839.mkv +子枫-寂寞的飞鸟,http://em.21dtv.com/songs/60066052.mkv +林葳-寂寞的等待,http://em.21dtv.com/songs/60117849.mkv +林依伦-寂寞的独白,http://em.21dtv.com/songs/60022838.mkv +波拉-寂寞的刺猬,http://em.21dtv.com/songs/60061222.mkv +张秀卿+蔡小虎-寂寞的城市,http://em.21dtv.com/songs/60068525.mkv +杨宗宪-寂寞的城市,http://em.21dtv.com/songs/60027140.mkv +佚名-寂寞的城市,http://em.21dtv.com/songs/60022836.mkv +谢金燕-寂寞的城市,http://em.21dtv.com/songs/60022835.mkv +张媛媛-寂寞稻草人,http://em.21dtv.com/songs/60097668.mkv +张学友-寂寞的包围,http://em.21dtv.com/songs/60092587.mkv +伊雪-寂寞的暗暝,http://em.21dtv.com/songs/60075979.mkv +张秀卿-寂寞的暗暝,http://em.21dtv.com/songs/60022834.mkv +大顺-寂寞的暗暝,http://em.21dtv.com/songs/60022833.mkv +龙千玉-寂寞的暗暝(无原唱),http://em.21dtv.com/songs/60022832.mkv +张丹锋-寂寞才说爱,http://em.21dtv.com/songs/60111054.mkv +孙露-寂寞才说爱,http://em.21dtv.com/songs/60075978.mkv +景心妍-寂寞才说爱,http://em.21dtv.com/songs/60075977.mkv +刘可-寂寞才说爱,http://em.21dtv.com/songs/60022827.mkv +冯圣雅-寂寞唱情歌,http://em.21dtv.com/songs/60072061.mkv +王识贤-寄袂出的批,http://em.21dtv.com/songs/60022801.mkv +佚名-旧梦不须记,http://em.21dtv.com/songs/60024520.mkv +罗文-旧梦不须记,http://em.21dtv.com/songs/60024519.mkv +张德兰-旧梦不须记(演唱会),http://em.21dtv.com/songs/60024518.mkv +雷安娜-旧梦不须记(演唱会),http://em.21dtv.com/songs/60024517.mkv +张惠妹-寂寞保龄球,http://em.21dtv.com/songs/60022823.mkv +何洁-寂寞保龄球(演唱会),http://em.21dtv.com/songs/60022822.mkv +青鸟飞鱼-寂寞暴风雨,http://em.21dtv.com/songs/60062836.mkv +叶熙祺-寂寞爱情海,http://em.21dtv.com/songs/60061284.mkv +张静+华阴老腔-就恋这把土,http://em.21dtv.com/songs/60123960.mkv +佚名-就恋这把土,http://em.21dtv.com/songs/60024603.mkv +邓健泓-惊栗原声碟,http://em.21dtv.com/songs/60093240.mkv +韩博-just let you get away,http://em.21dtv.com/songs/60065625.mkv +陈思安-酒楼小夜曲,http://em.21dtv.com/songs/60024439.mkv +岳佳-金陵文枢醉,http://em.21dtv.com/songs/60104087.mkv +佚名-基隆山之恋,http://em.21dtv.com/songs/60022525.mkv +叶启田-基隆山之恋,http://em.21dtv.com/songs/60022524.mkv +罗建章+秀兰玛雅-基隆山之恋,http://em.21dtv.com/songs/60022523.mkv +顺利+任然-金陵十三钗,http://em.21dtv.com/songs/60124700.mkv +郭富城-降龙十八掌,http://em.21dtv.com/songs/60093367.mkv +罗永娟-加林赛部落,http://em.21dtv.com/songs/60022965.mkv +黄明志-吉隆坡下雪,http://em.21dtv.com/songs/60067100.mkv +南天-借了你一夜,http://em.21dtv.com/songs/60064400.mkv +陈健-金莲落难记,http://em.21dtv.com/songs/60088850.mkv +华少瑞明-金莲开开门,http://em.21dtv.com/songs/60130133.mkv +李蕴-九零后天空(演唱会),http://em.21dtv.com/songs/60061317.mkv +李蕴-九零后天空,http://em.21dtv.com/songs/60024329.mkv +王艺霖-九零后女孩,http://em.21dtv.com/songs/60024328.mkv +军嫂组合-90后的兵DJ,http://em.21dtv.com/songs/60099765.mkv +花儿乐队-将来的主人,http://em.21dtv.com/songs/60023385.mkv +周觅-距离的拥抱,http://em.21dtv.com/songs/60085312.mkv +陈浩德-借来的美梦(演唱会),http://em.21dtv.com/songs/60083165.mkv +彭建新-借来的美梦(演唱会),http://em.21dtv.com/songs/60023726.mkv +许飞-吉林到北京,http://em.21dtv.com/songs/60022552.mkv +范小倩-借来的爱情,http://em.21dtv.com/songs/60135678.mkv +日京江羽人-几颗小星星,http://em.21dtv.com/songs/60100080.mkv +井柏然+张艺兴-健康动起来,http://em.21dtv.com/songs/60132181.mkv +乱弹阿翔-绝口不再提,http://em.21dtv.com/songs/60024843.mkv +陈百祥-即刻变富豪(演唱会),http://em.21dtv.com/songs/60075958.mkv +王二妮+斯琴格日乐-九九艳阳天,http://em.21dtv.com/songs/60098628.mkv +于文华+尹相杰-九九艳阳天,http://em.21dtv.com/songs/60087251.mkv +刀郎-九九艳阳天,http://em.21dtv.com/songs/60083186.mkv +玖月奇迹-九九艳阳天(演唱会),http://em.21dtv.com/songs/60083185.mkv +刀郎+黄灿-九九艳阳天,http://em.21dtv.com/songs/60069529.mkv +蒋大为-九九艳阳天,http://em.21dtv.com/songs/60067137.mkv +佚名-九九艳阳天,http://em.21dtv.com/songs/60024324.mkv +叶茅+寥莎-九九艳阳天,http://em.21dtv.com/songs/60024323.mkv +宋祖英+吕继宏-九九艳阳天,http://em.21dtv.com/songs/60024322.mkv +尹相杰+于文华-九九艳阳天(演唱会),http://em.21dtv.com/songs/60024321.mkv +阎维文+谭晶-九九艳阳天(演唱会),http://em.21dtv.com/songs/60024320.mkv +佚名-姐姐要出嫁,http://em.21dtv.com/songs/60023645.mkv +陈芬兰-姐姐要出嫁,http://em.21dtv.com/songs/60023644.mkv +伊能静-紧紧拥抱我(无原唱),http://em.21dtv.com/songs/60024125.mkv +黄思婷-紧紧拥抱你,http://em.21dtv.com/songs/60024124.mkv +徐栋-姐姐我知道,http://em.21dtv.com/songs/60120568.mkv +谢雷-惊惊袜着顶(无原唱),http://em.21dtv.com/songs/60079974.mkv +JELLYBEAN-姐姐我喜欢,http://em.21dtv.com/songs/60023643.mkv +黄品冠-就叫我孩子,http://em.21dtv.com/songs/60024601.mkv +刘沛洋-姐姐我爱你,http://em.21dtv.com/songs/60108344.mkv +吴雨霏-句句我爱你,http://em.21dtv.com/songs/60024729.mkv +黎明诗-将今天送上,http://em.21dtv.com/songs/60093572.mkv +宋亦阳-经济适用男,http://em.21dtv.com/songs/60070824.mkv +罗文聪-结局谁人赢,http://em.21dtv.com/songs/60095845.mkv +大雨-究竟谁的错(HD),http://em.21dtv.com/songs/10012756.mkv +杜德伟-拒绝你捆绑(演唱会),http://em.21dtv.com/songs/60024732.mkv +张智霖-借借你肩膀,http://em.21dtv.com/songs/60092621.mkv +陈晓东-借借你肩膊,http://em.21dtv.com/songs/60023721.mkv +陈少华-九九女儿红,http://em.21dtv.com/songs/60024318.mkv +施文彬-间间来泡茶,http://em.21dtv.com/songs/60095577.mkv +FIR-荆棘里的花,http://em.21dtv.com/songs/60024200.mkv +陈伟-嫁就嫁了吧,http://em.21dtv.com/songs/60117321.mkv +夏后-99号弄堂(故事情节),http://em.21dtv.com/songs/60101311.mkv +约书亚乐团-紧紧跟随你,http://em.21dtv.com/songs/60024123.mkv +任盈盈-鸡鸡复鸡鸡,http://em.21dtv.com/songs/60131154.mkv +张杰-街角的祝福,http://em.21dtv.com/songs/60072074.mkv +戴佩妮-街角的祝福,http://em.21dtv.com/songs/60023585.mkv +王铮亮-静静的夜晚,http://em.21dtv.com/songs/60024266.mkv +梁咏琪-紧急的眼泪,http://em.21dtv.com/songs/60024121.mkv +萧敬腾-决绝的信仰,http://em.21dtv.com/songs/60131769.mkv +HAYA乐团-寂静的天空,http://em.21dtv.com/songs/60097669.mkv +佚名-坚决打胜仗,http://em.21dtv.com/songs/60023193.mkv +陈绮贞-静静的生活,http://em.21dtv.com/songs/60024264.mkv +伍佰-街角的蔷薇,http://em.21dtv.com/songs/60023583.mkv +范逸臣-街角的情歌,http://em.21dtv.com/songs/60023584.mkv +佚名-将旧的皮箱(无原唱),http://em.21dtv.com/songs/60023380.mkv +萧亚轩-静静的看你,http://em.21dtv.com/songs/60024263.mkv +萧萧-倔强的坚强,http://em.21dtv.com/songs/60024884.mkv +美黛-静静的黑夜(无原唱),http://em.21dtv.com/songs/60024262.mkv +孙渔-季节的呼唤,http://em.21dtv.com/songs/60121570.mkv +谢采云-静静的河边,http://em.21dtv.com/songs/60088664.mkv +小凤凤-经济大风暴,http://em.21dtv.com/songs/60080709.mkv +明明-寂静的春天,http://em.21dtv.com/songs/60006912.mkv +许慧欣-倔强的背后,http://em.21dtv.com/songs/60024882.mkv +KBShinya-九九八十一,http://em.21dtv.com/songs/60133222.mkv +乐正绫-九九八十一,http://em.21dtv.com/songs/60122464.mkv +西瓜Kune-九九八十一,http://em.21dtv.com/songs/60122103.mkv +刘爽-姐姐不好惹,http://em.21dtv.com/songs/60108351.mkv +刘爽-姐姐不好惹,http://em.21dtv.com/songs/60098149.mkv +薛凯琪-拒绝毕彼特,http://em.21dtv.com/songs/60093127.mkv +储兰兰-京剧宝宝,http://em.21dtv.com/songs/60076153.mkv +黄乙玲+林慧萍-讲乎自己听,http://em.21dtv.com/songs/60023417.mkv +邰枫-讲乎伊知影(无原唱),http://em.21dtv.com/songs/60023416.mkv +媚儿菲菲+后来者-金猴迎新春,http://em.21dtv.com/songs/60119411.mkv +肖飞-解回忆的毒,http://em.21dtv.com/songs/60023665.mkv +南风-江湖兄弟情,http://em.21dtv.com/songs/60087501.mkv +张强-家和万事兴,http://em.21dtv.com/songs/60126880.mkv +云鸽李霞-家和万事兴,http://em.21dtv.com/songs/60109132.mkv +汤浩平-家和万事兴,http://em.21dtv.com/songs/60069498.mkv +苏泉-家和万事兴,http://em.21dtv.com/songs/60068362.mkv +郁钧剑-家和万事兴,http://em.21dtv.com/songs/60023004.mkv +叶胜钦-家和万事兴,http://em.21dtv.com/songs/60023003.mkv +孙悦+郭东林-家和万事兴,http://em.21dtv.com/songs/60023002.mkv +郁钧剑+张也-家和万事兴(演唱会),http://em.21dtv.com/songs/60023001.mkv +方伊琪-家和万事兴(演唱会),http://em.21dtv.com/songs/60023000.mkv +廖昌永-江河万古流,http://em.21dtv.com/songs/60091030.mkv +谭咏麟-酒后吐真言,http://em.21dtv.com/songs/60024430.mkv +蔡小虎+龙千玉-酒后吐真言,http://em.21dtv.com/songs/60024429.mkv +韦唯-金话筒世界,http://em.21dtv.com/songs/60024049.mkv +杜尧-镜花水月情,http://em.21dtv.com/songs/60127072.mkv +邓妙华-讲乎谁来听,http://em.21dtv.com/songs/60066064.mkv +谭咏麟-酒红色的心,http://em.21dtv.com/songs/60024422.mkv +谭咏麟-酒红色的心(演唱会),http://em.21dtv.com/songs/60024421.mkv +谭咏麟-酒红色的心(HD演唱会),http://em.21dtv.com/songs/60024420.mkv +于文华+尹相杰-金猴闹新春,http://em.21dtv.com/songs/60024048.mkv +彭炽权+黎佩仪-劫后梦梅魂(戏曲),http://em.21dtv.com/songs/60092690.mkv +方瑞娥-江湖卖唱生,http://em.21dtv.com/songs/60023335.mkv +王雯-结婚狂想曲,http://em.21dtv.com/songs/60067125.mkv +林志颖-结婚进行曲,http://em.21dtv.com/songs/60076085.mkv +刘德华-结婚进行曲,http://em.21dtv.com/songs/60023620.mkv +4X4-结婚好不好,http://em.21dtv.com/songs/60076084.mkv +4?-结婚好不好,http://em.21dtv.com/songs/60072075.mkv +晨熙-酒后更想你,http://em.21dtv.com/songs/60124021.mkv +晓晓-酒后更想你,http://em.21dtv.com/songs/60102286.mkv +倪尔萍-酒后更想你,http://em.21dtv.com/songs/60068394.mkv +九江天空-酒红的眼泪,http://em.21dtv.com/songs/60105555.mkv +庄学忠-酒后的心声,http://em.21dtv.com/songs/60024426.mkv +王建杰-酒后的心声,http://em.21dtv.com/songs/60024425.mkv +江蕙-酒后的心声,http://em.21dtv.com/songs/60024424.mkv +佚名-江湖的兄弟(探戈),http://em.21dtv.com/songs/60023328.mkv +My Little Airport-菊花的味道,http://em.21dtv.com/songs/60119168.mkv +甄洋-菊花大馒头,http://em.21dtv.com/songs/60102568.mkv +徐若瑄-结婚对不对,http://em.21dtv.com/songs/60091206.mkv +马博-菊花爆满山,http://em.21dtv.com/songs/60108156.mkv +天堂飘雪-菊花爆满山,http://em.21dtv.com/songs/60104900.mkv +马博-菊花爆满山,http://em.21dtv.com/songs/60076195.mkv +赵本水-酒后别驾车,http://em.21dtv.com/songs/60024423.mkv +韩炜+刘惜君-嘉华爱永远,http://em.21dtv.com/songs/60023051.mkv +巫启贤-几乎爱上你,http://em.21dtv.com/songs/60022657.mkv +小沈阳-江湖啊江湖,http://em.21dtv.com/songs/60023327.mkv +余震东-激光中@Downtown Funk,http://em.21dtv.com/songs/60127740.mkv +宿雨涵-金龟子畅想,http://em.21dtv.com/songs/60083166.mkv +欧阳明琪-嫁给有钱人,http://em.21dtv.com/songs/60023169.mkv +佚名-经过一年后,http://em.21dtv.com/songs/60024197.mkv +王涛-嫁给我好吗,http://em.21dtv.com/songs/60068370.mkv +Y.I.Y.O-嫁给我好吗,http://em.21dtv.com/songs/60023166.mkv +程琳-酒干倘卖无,http://em.21dtv.com/songs/60134051.mkv +孙露-酒干倘卖无,http://em.21dtv.com/songs/60119431.mkv +陈迪雅-酒干倘卖无,http://em.21dtv.com/songs/60126408.mkv +汤晶锦-酒干倘卖无,http://em.21dtv.com/songs/60116101.mkv +阿鲁阿卓+程琳-酒干倘卖无,http://em.21dtv.com/songs/60098842.mkv +动力火车-酒干倘卖无,http://em.21dtv.com/songs/60098165.mkv +南方二重唱-酒干倘卖无,http://em.21dtv.com/songs/60097650.mkv +苏芮-酒干淌卖无,http://em.21dtv.com/songs/60091947.mkv +苏珊-酒干倘卖无,http://em.21dtv.com/songs/60088542.mkv +谭锡禧-酒干倘卖无(演唱会),http://em.21dtv.com/songs/60083189.mkv +彭佳慧+顺子-酒干倘卖无,http://em.21dtv.com/songs/60076173.mkv +那英-酒干倘卖无(演唱会),http://em.21dtv.com/songs/60069531.mkv +李丽霞-酒干倘卖无(演唱会),http://em.21dtv.com/songs/60068393.mkv +叶倩文-酒干倘卖无,http://em.21dtv.com/songs/60024407.mkv +苏芮-酒干倘卖无,http://em.21dtv.com/songs/60024406.mkv +女声-酒干倘卖无,http://em.21dtv.com/songs/60024405.mkv +男声-酒干倘卖无,http://em.21dtv.com/songs/60024404.mkv +甄妮-酒干倘卖无(演唱会),http://em.21dtv.com/songs/60024403.mkv +苏芮-酒干倘卖无(演唱会),http://em.21dtv.com/songs/60024402.mkv +迪克牛仔-酒干倘卖无(演唱会),http://em.21dtv.com/songs/60024401.mkv +CT GIRLS-酒干倘卖无(舞曲版),http://em.21dtv.com/songs/60024400.mkv +庾澄庆-酒矸倘卖无,http://em.21dtv.com/songs/60024398.mkv +海峰-嫁给他的钱,http://em.21dtv.com/songs/60076027.mkv +郑进一+安迪+唐从圣-救国神经病,http://em.21dtv.com/songs/60024577.mkv +柳影虹-酒干俏卖无(演唱会),http://em.21dtv.com/songs/60076172.mkv +薛佩洁+张政雄-鸡公弄鸡母,http://em.21dtv.com/songs/60022514.mkv +PINK+NATE RUESS-just give me a reason,http://em.21dtv.com/songs/60073453.mkv +董事长乐团-just give me a chance,http://em.21dtv.com/songs/60003108.mkv +谢雷-酒国好男儿,http://em.21dtv.com/songs/60024413.mkv +河静静+刘冲-嫁个好老公,http://em.21dtv.com/songs/60100270.mkv +河静静-嫁个好老公,http://em.21dtv.com/songs/60086624.mkv +李丽霞+李龙基-金刚飞天钻,http://em.21dtv.com/songs/60092781.mkv +沙莎-嫁给大西北(演唱会),http://em.21dtv.com/songs/60064382.mkv +郑璐-井冈杜鹃红,http://em.21dtv.com/songs/60099531.mkv +李涵-家国春秋路,http://em.21dtv.com/songs/60022998.mkv +林慧萍-结发一辈子,http://em.21dtv.com/songs/60023609.mkv +于海燕-接风洗尘歌(演唱会),http://em.21dtv.com/songs/60070809.mkv +合唱-解放区的天(军旅),http://em.21dtv.com/songs/60090798.mkv +佚名-解放区的天,http://em.21dtv.com/songs/60023664.mkv +张羽伟+焦炭乐团-九份好去玩,http://em.21dtv.com/songs/60024304.mkv +罗文-疾风的岁月,http://em.21dtv.com/songs/60022622.mkv +解晓东-今儿真高兴,http://em.21dtv.com/songs/60088629.mkv +解晓东-今儿个高兴,http://em.21dtv.com/songs/60023739.mkv +原始林合唱团-饥饿的灵魂,http://em.21dtv.com/songs/60089198.mkv +古璇-记得昨日情,http://em.21dtv.com/songs/60022705.mkv +刘德华-绝对在乎你(HD),http://em.21dtv.com/songs/10012637.mkv +刘德华-绝对在乎你,http://em.21dtv.com/songs/60092360.mkv +刘德华-绝对在乎您,http://em.21dtv.com/songs/60024838.mkv +刘德华-绝对在乎您(演唱会),http://em.21dtv.com/songs/60024837.mkv +望海高歌-记得咱的家,http://em.21dtv.com/songs/60133777.mkv +寒武纪-几度烟雨浓,http://em.21dtv.com/songs/60116735.mkv +安俐娜-记得要幸福,http://em.21dtv.com/songs/60106778.mkv +陈虎-记得有我在,http://em.21dtv.com/songs/60080456.mkv +S.H.E-记得要忘记,http://em.21dtv.com/songs/60022704.mkv +高胜美-几度又几度,http://em.21dtv.com/songs/60022642.mkv +谢安琪-鸡蛋与羔羊,http://em.21dtv.com/songs/60104436.mkv +陈大天-决定一个人,http://em.21dtv.com/songs/60130834.mkv +陈大天-决定一个人,http://em.21dtv.com/songs/60129728.mkv +陈文浩-静等一份缘,http://em.21dtv.com/songs/60024259.mkv +中国娃娃-加多一点点,http://em.21dtv.com/songs/60022957.mkv +刘韵-加多一点点(演唱会),http://em.21dtv.com/songs/60022956.mkv +袁小迪+吴淑敏-决定欲爱你(无原唱),http://em.21dtv.com/songs/60024780.mkv +庾澄庆-决定要爱你,http://em.21dtv.com/songs/60024779.mkv +叶振棠-几度夕阳红,http://em.21dtv.com/songs/60092433.mkv +青山+吕珊-几度夕阳红(演唱会),http://em.21dtv.com/songs/60083106.mkv +陈浩德-几度夕阳红(演唱会),http://em.21dtv.com/songs/60075965.mkv +佚名-几度夕阳红,http://em.21dtv.com/songs/60022640.mkv +青山-几度夕阳红(演唱会),http://em.21dtv.com/songs/60022639.mkv +佚名-几度夕阳红(无原唱),http://em.21dtv.com/songs/60022638.mkv +潘越云-几度夕阳红(无原唱),http://em.21dtv.com/songs/60022637.mkv +禁毒宣传片-禁毒宣传片,http://em.21dtv.com/songs/60090102.mkv +罗相宜-简单 我喜欢,http://em.21dtv.com/songs/60076036.mkv +罗相宜-简单我喜欢,http://em.21dtv.com/songs/60066060.mkv +王子月-决定忘记你,http://em.21dtv.com/songs/60103439.mkv +由美+颖义-记得我的爱,http://em.21dtv.com/songs/60101144.mkv +邬祯琳-记得我爱你,http://em.21dtv.com/songs/60075967.mkv +周渝民-记得我爱你,http://em.21dtv.com/songs/60022698.mkv +光良-记得我爱你,http://em.21dtv.com/songs/60022697.mkv +刘若英-决定(双语种),http://em.21dtv.com/songs/60024778.mkv +风雷-剪刀石头布,http://em.21dtv.com/songs/60115530.mkv +方小菲-剪刀石头布,http://em.21dtv.com/songs/60068373.mkv +郭美美-剪刀石头布,http://em.21dtv.com/songs/60023237.mkv +杜奕衡-剪刀石头布,http://em.21dtv.com/songs/60023236.mkv +520女子演唱组-剪刀石头布,http://em.21dtv.com/songs/60023235.mkv +汤宝如-绝对是个梦,http://em.21dtv.com/songs/60024835.mkv +卢巧音-静待你影踪(无原唱),http://em.21dtv.com/songs/60092390.mkv +童安格+周治平-记得那首歌,http://em.21dtv.com/songs/60022691.mkv +马力+常艾菲-就等你来爱,http://em.21dtv.com/songs/60076184.mkv +新宝岛康乐队+赵咏华-惊到没代志,http://em.21dtv.com/songs/60126947.mkv +阿毛-决定离开你,http://em.21dtv.com/songs/60083202.mkv +龙智祥+吕雅芬-姐弟恋很好,http://em.21dtv.com/songs/60097610.mkv +龙智祥-姐弟恋很好,http://em.21dtv.com/songs/60086631.mkv +张道儒-记得离别前,http://em.21dtv.com/songs/60097520.mkv +卢胜林-祭奠快乐轨,http://em.21dtv.com/songs/60121473.mkv +苏慧伦-记得记住我,http://em.21dtv.com/songs/60022687.mkv +关正杰-近代豪侠传,http://em.21dtv.com/songs/60024165.mkv +彭炽权+曾慧-几度悔情悭(戏曲),http://em.21dtv.com/songs/60092664.mkv +韩宝仪-几度花落时,http://em.21dtv.com/songs/60097481.mkv +青山-几度花落时,http://em.21dtv.com/songs/60022636.mkv +林玉英-几度花落时,http://em.21dtv.com/songs/60022635.mkv +谭炳文-几度花落时(演唱会),http://em.21dtv.com/songs/60022634.mkv +黄智博-记得发如雪,http://em.21dtv.com/songs/60067104.mkv +郭富城-家的发热纲,http://em.21dtv.com/songs/60022995.mkv +AKB48-君の第二章,http://em.21dtv.com/songs/60111576.mkv +侧田-决斗二世祖,http://em.21dtv.com/songs/60092290.mkv +SHINE-简单而隆重,http://em.21dtv.com/songs/60023260.mkv +保剑锋+李智楠-简单的一天,http://em.21dtv.com/songs/60023259.mkv +佚名-激动的心情,http://em.21dtv.com/songs/60022529.mkv +陈百潭-激动的心情,http://em.21dtv.com/songs/60022528.mkv +沈志仲-简单的幸福,http://em.21dtv.com/songs/60115262.mkv +邱琦雯-简单的幸福(无原唱),http://em.21dtv.com/songs/60023258.mkv +钟明艺-简单的微笑,http://em.21dtv.com/songs/60106352.mkv +江志丰-简单的情歌,http://em.21dtv.com/songs/60108665.mkv +守夜人 Night Keepers-间谍的名字,http://em.21dtv.com/songs/60131347.mkv +苍茫+许歌-简单的浪漫(演唱会),http://em.21dtv.com/songs/60023255.mkv +萧亚轩-简单的恋爱,http://em.21dtv.com/songs/60023256.mkv +[Group] +groupName=十六万歌曲MV等 - 70 +萧煌奇-简单的快乐,http://em.21dtv.com/songs/60072069.mkv +简丹-简单的快乐,http://em.21dtv.com/songs/60023254.mkv +赤い公园-绝对的な关系,http://em.21dtv.com/songs/60099507.mkv +范英楠-简单的感觉,http://em.21dtv.com/songs/60088557.mkv +萧磊-简单的爱情,http://em.21dtv.com/songs/60107169.mkv +尚芸菲-决堤的爱情,http://em.21dtv.com/songs/60099207.mkv +林一峰-简单不简单,http://em.21dtv.com/songs/60076038.mkv +吴雨霏-鸡蛋爱石头,http://em.21dtv.com/songs/60022513.mkv +张胜淼+熊小龙-坚持走下去,http://em.21dtv.com/songs/60117743.mkv +林玉英-酒场烟花泪,http://em.21dtv.com/songs/60095699.mkv +佚名-酒场烟花泪(无原唱),http://em.21dtv.com/songs/60024393.mkv +雷雨哥-就差一点点,http://em.21dtv.com/songs/60121109.mkv +佚名-纠缠一辈子,http://em.21dtv.com/songs/60024292.mkv +陈小春+蔡安荞-机车与芭乐,http://em.21dtv.com/songs/60022506.mkv +佚名-交出我的心,http://em.21dtv.com/songs/60023445.mkv +罗文-交出我的心,http://em.21dtv.com/songs/60023444.mkv +THE BLACK EYED PEAS-just cant get enough,http://em.21dtv.com/songs/60073452.mkv +MICHAEL JACKSON+SIEDH GARRETT-just cant stop loving you,http://em.21dtv.com/songs/60003101.mkv +陈淑萍-叫出你的名(无原唱),http://em.21dtv.com/songs/60023501.mkv +王洪迪-交出你的爱,http://em.21dtv.com/songs/60121925.mkv +凤飞飞-就从今夜起,http://em.21dtv.com/songs/60024597.mkv +王觉-基层公仆情,http://em.21dtv.com/songs/60106143.mkv +张瀛仁-坚持到最后,http://em.21dtv.com/songs/60023189.mkv +荞菲-酒场的心声(无原唱),http://em.21dtv.com/songs/60095880.mkv +孙艳-仅存的温柔,http://em.21dtv.com/songs/60024118.mkv +阎维文-警察的情怀,http://em.21dtv.com/songs/60088824.mkv +张曼-今朝多美好,http://em.21dtv.com/songs/60096278.mkv +金玲-吉春的故事,http://em.21dtv.com/songs/60108071.mkv +崔京浩-警察的承诺,http://em.21dtv.com/songs/60091006.mkv +姚瑶-姐不做小三,http://em.21dtv.com/songs/60094866.mkv +谢天笑-脚步在靠近(演唱会),http://em.21dtv.com/songs/60076068.mkv +花世纪-就不要再说,http://em.21dtv.com/songs/60111370.mkv +叶民志-举杯邀明月,http://em.21dtv.com/songs/60090792.mkv +廖峻-脚步踏乎定(无原唱),http://em.21dtv.com/songs/60023491.mkv +酒吧伤心人-酒吧伤心人,http://em.21dtv.com/songs/60064416.mkv +袁凤仪-吉卜赛情人,http://em.21dtv.com/songs/60093131.mkv +二人转+闫学晶+董宝贵-江北送情郎,http://em.21dtv.com/songs/60070800.mkv +梅艳芳-将冰山劈开(演唱会),http://em.21dtv.com/songs/60023373.mkv +许志安+何韵诗-将冰山劈开(HD演唱会),http://em.21dtv.com/songs/60023372.mkv +苏小花-姐不是传说,http://em.21dtv.com/songs/60069514.mkv +李姝漫-决不让你走,http://em.21dtv.com/songs/60108566.mkv +尹光-酒杯敲你头,http://em.21dtv.com/songs/60090999.mkv +佚名-酒杯敲钢琴,http://em.21dtv.com/songs/60024385.mkv +杨千嬅+黄耀明-酒杯敲钢琴(演唱会),http://em.21dtv.com/songs/60024384.mkv +胡海泉-经不起的爱,http://em.21dtv.com/songs/60108824.mkv +江海泉-经不起的爱,http://em.21dtv.com/songs/60101127.mkv +施文彬-酒杯来作伴,http://em.21dtv.com/songs/60095575.mkv +红蔷薇-酒杯里的泪,http://em.21dtv.com/songs/60121996.mkv +承利-绝版囧加加,http://em.21dtv.com/songs/60126943.mkv +谭咏麟-讲不会清楚,http://em.21dtv.com/songs/60023413.mkv +许志安-救不回的爱,http://em.21dtv.com/songs/60024575.mkv +六折真人-街边的烟头,http://em.21dtv.com/songs/60023577.mkv +徐若瑄-假扮的天使,http://em.21dtv.com/songs/60023076.mkv +伍佰+徐若瑄-假扮的天使(演唱会),http://em.21dtv.com/songs/60023075.mkv +DJ舞曲-劲爆的士高,http://em.21dtv.com/songs/50000149.mkv +曾星瑜-戒不掉难受,http://em.21dtv.com/songs/60126969.mkv +齐旦布+次仁桑珠+索朗扎西+雪莲三姐-洁白的哈达,http://em.21dtv.com/songs/60128643.mkv +陶然-剪不断的线,http://em.21dtv.com/songs/60120111.mkv +陶然-剪不断的线,http://em.21dtv.com/songs/60023234.mkv +梦想年代-戒不掉的爱,http://em.21dtv.com/songs/60068378.mkv +孙楠-讲不出再见,http://em.21dtv.com/songs/60109265.mkv +谭咏麟-讲不出再见(演唱会),http://em.21dtv.com/songs/60023412.mkv +李潮-举杯吧朋友,http://em.21dtv.com/songs/60076199.mkv +阎维文-举杯吧朋友,http://em.21dtv.com/songs/60024712.mkv +曹格-剪爱^听海,http://em.21dtv.com/songs/60100097.mkv +陈升-旧爱七条通,http://em.21dtv.com/songs/60024499.mkv +李玟-就爱看电影,http://em.21dtv.com/songs/60091335.mkv +林俊吉-将爱还乎你,http://em.21dtv.com/songs/60064390.mkv +大庆小芳-就爱广场舞,http://em.21dtv.com/songs/60127882.mkv +熊天平-就爱到这里,http://em.21dtv.com/songs/60024591.mkv +群星-骄傲的信仰,http://em.21dtv.com/songs/60069511.mkv +高能少年团-骄傲的少年,http://em.21dtv.com/songs/60136013.mkv +男人唐潮-骄傲的男人(演唱会),http://em.21dtv.com/songs/60076066.mkv +庾澄庆-骄傲的理由,http://em.21dtv.com/songs/60023474.mkv +李春波-骄傲的骆驼,http://em.21dtv.com/songs/60088017.mkv +仇泽-骄傲的狼狈,http://em.21dtv.com/songs/60069510.mkv +童话演唱团-骄傲的海盗,http://em.21dtv.com/songs/60023473.mkv +任静+付笛生-讲爱的地方,http://em.21dtv.com/songs/60126596.mkv +刘贤维-骄傲的沉默,http://em.21dtv.com/songs/60093643.mkv +中岛美嘉-见いない星,http://em.21dtv.com/songs/60023277.mkv +酒井法子-镜のドレス,http://em.21dtv.com/songs/60024280.mkv +河西智美-今さらさら,http://em.21dtv.com/songs/60106065.mkv +AKB48-君について,http://em.21dtv.com/songs/60059364.mkv +黄立成+MACHI-jump 2003,http://em.21dtv.com/songs/60003090.mkv +顺子-if you want my love,http://em.21dtv.com/songs/60002807.mkv +佚名-if you wanna be happy,http://em.21dtv.com/songs/60002803.mkv +佚名-if you really love me,http://em.21dtv.com/songs/60002801.mkv +佚名-if youre not the one,http://em.21dtv.com/songs/60002808.mkv +方大同-if you leave me now,http://em.21dtv.com/songs/60082212.mkv +佚名-if you had my love,http://em.21dtv.com/songs/60002797.mkv +THE SCRIPT-if you ever come back,http://em.21dtv.com/songs/60062169.mkv +AK-if you come to me,http://em.21dtv.com/songs/60002792.mkv +CELINE DION-if you asked me to,http://em.21dtv.com/songs/60002790.mkv +张娜拉-if you ask me to,http://em.21dtv.com/songs/60002789.mkv +佚名-i went to your wedding,http://em.21dtv.com/songs/60002714.mkv +JASON MRAZ-i wont give up,http://em.21dtv.com/songs/60066662.mkv +PETER CETERA+CRYSTAL BERNARD-i wanna take forever tonight(无原唱),http://em.21dtv.com/songs/60002694.mkv +佚名-i want to break free,http://em.21dtv.com/songs/60002699.mkv +林景滢-i wanna make you mine,http://em.21dtv.com/songs/60002693.mkv +SHANIA TWAIN-i wont leave you lonely,http://em.21dtv.com/songs/60002739.mkv +JESSICA SIMPSON-i wanna love you forever,http://em.21dtv.com/songs/60002691.mkv +BACKSTREET BOYS-i want it that way,http://em.21dtv.com/songs/60002696.mkv +陈钰芸-i wanna hold your heart,http://em.21dtv.com/songs/60069095.mkv +THE BEATLES-i wanna hold your hand,http://em.21dtv.com/songs/60002689.mkv +郭富城-i wanna hold you forever,http://em.21dtv.com/songs/60002688.mkv +S.LUKATHER-i wont hold you back(无原唱),http://em.21dtv.com/songs/60002737.mkv +NATASHA BEDINGFIELD-i wanna have your babies,http://em.21dtv.com/songs/60002687.mkv +JAMES HORNER-if we hold on together(无原唱),http://em.21dtv.com/songs/60002785.mkv +佚名-i wanna dance with somebody,http://em.21dtv.com/songs/60002685.mkv +佚名-i wanna dance with somebody(无原唱),http://em.21dtv.com/songs/60002684.mkv +JANN ARDEN-i would die for you,http://em.21dtv.com/songs/60002740.mkv +佚名-i will come to you,http://em.21dtv.com/songs/60002722.mkv +徐婕儿-i wanna be with you,http://em.21dtv.com/songs/60002682.mkv +BACKSTREET BOYS-i wanna be with you,http://em.21dtv.com/songs/60002681.mkv +李珍贤-i wanna be with you(无原唱),http://em.21dtv.com/songs/60002680.mkv +黄绮珊-i will always love you(演唱会),http://em.21dtv.com/songs/60073404.mkv +纪敏佳-i will always love you(演唱会),http://em.21dtv.com/songs/60071612.mkv +黄绮珊-i will always love you,http://em.21dtv.com/songs/60071611.mkv +韩红-i will always love you,http://em.21dtv.com/songs/60002717.mkv +WHITNEY HOUSTON-i will always love you,http://em.21dtv.com/songs/60002716.mkv +佚名-if there was a way(无原唱),http://em.21dtv.com/songs/60002782.mkv +GIRLS ALOUD-i think were alone now,http://em.21dtv.com/songs/60002674.mkv +SHAYNE WARD-if thats ok with you,http://em.21dtv.com/songs/60002780.mkv +黄贯中-in the name of rock,http://em.21dtv.com/songs/60002928.mkv +THE FEELING-i thought it was over,http://em.21dtv.com/songs/60082203.mkv +小男孩乐团-IT IS UP TO YOU,http://em.21dtv.com/songs/60127923.mkv +KACI-i think i love you,http://em.21dtv.com/songs/60002669.mkv +JAMES BLUNT-if time is all i have,http://em.21dtv.com/songs/60062050.mkv +佚名-ive told every little star,http://em.21dtv.com/songs/60003046.mkv +佚名-if the boy only knew,http://em.21dtv.com/songs/60002781.mkv +汪妤凌-its time to go,http://em.21dtv.com/songs/60069098.mkv +佚名-i sing the body electrc,http://em.21dtv.com/songs/60002656.mkv +JONATHAN BUTLER-i stand on your word,http://em.21dtv.com/songs/60073398.mkv +3 DOORS DOWN-its not my time,http://em.21dtv.com/songs/60060842.mkv +ROBIN THICKE-its in the morning,http://em.21dtv.com/songs/60062139.mkv +佚名-i saw him standing there,http://em.21dtv.com/songs/60002640.mkv +THE BEATLES-i saw her standing there,http://em.21dtv.com/songs/60002639.mkv +THE BEATLES-i should have known better,http://em.21dtv.com/songs/60002655.mkv +NSYNC-its gonna be me,http://em.21dtv.com/songs/60071618.mkv +JEREMIH-imma star (everywhere we are),http://em.21dtv.com/songs/60073433.mkv +KYLIE MINOGUE-i should be so lucky,http://em.21dtv.com/songs/60002654.mkv +梁静茹-i should be so lucky(演唱会),http://em.21dtv.com/songs/60002653.mkv +佚名-i still believe in you,http://em.21dtv.com/songs/60002660.mkv +佚名-i say a little prayer,http://em.21dtv.com/songs/60002647.mkv +叶德娴-i say a little prayer,http://em.21dtv.com/songs/60002646.mkv +ARETHA FRANKLIN-i say a little prayer,http://em.21dtv.com/songs/60002645.mkv +MICHAEL BUBLE-its a beautiful day,http://em.21dtv.com/songs/60073445.mkv +陈慧琳-its all about timing,http://em.21dtv.com/songs/60073446.mkv +佚名-it only takes a miunte,http://em.21dtv.com/songs/60002979.mkv +佚名-its only a paper moon,http://em.21dtv.com/songs/60003014.mkv +韦礼安-Intro,http://em.21dtv.com/songs/60126430.mkv +韦礼安-INTRO,http://em.21dtv.com/songs/60126429.mkv +THE CORRS-i never loved you anyway,http://em.21dtv.com/songs/60002631.mkv +EXPOSE-ill never get over you,http://em.21dtv.com/songs/60002841.mkv +佚名-ill never find another you,http://em.21dtv.com/songs/60002840.mkv +BACKSTREET BOYS-ill never break your heart,http://em.21dtv.com/songs/60002836.mkv +周慧敏-ive never been to me,http://em.21dtv.com/songs/60003045.mkv +S.H.E-ive never been to me(演唱会),http://em.21dtv.com/songs/60003044.mkv +佚名-i miss you like crazy,http://em.21dtv.com/songs/60002615.mkv +连诗雅-im still loving you,http://em.21dtv.com/songs/60063640.mkv +Joy+李玹雨-Im OK,http://em.21dtv.com/songs/60134715.mkv +罗中旭-Im OK,http://em.21dtv.com/songs/60130645.mkv +THE LONELY ISLAND-im on a boat,http://em.21dtv.com/songs/60060832.mkv +RICK ROSS-im not a star,http://em.21dtv.com/songs/60062137.mkv +BOYZ LL MEN-ill make love to you,http://em.21dtv.com/songs/60002834.mkv +佚名-it must have been love,http://em.21dtv.com/songs/60002977.mkv +PER GESSLE-it must have been love(无原唱),http://em.21dtv.com/songs/60002976.mkv +BRAD PAISLEY-im gonna miss her,http://em.21dtv.com/songs/60073426.mkv +CHRISTINA AGUILERA-im a good girl,http://em.21dtv.com/songs/60067917.mkv +Scandal-Image,http://em.21dtv.com/songs/60109869.mkv +五月天-i love you无望(演唱会),http://em.21dtv.com/songs/60002609.mkv +SCOTTY MCCREERY-i love you this big,http://em.21dtv.com/songs/60062145.mkv +王捷-i love you love me,http://em.21dtv.com/songs/60084722.mkv +孙楠-i love you bei jing(演唱会),http://em.21dtv.com/songs/60002588.mkv +佚名-i love you always forever,http://em.21dtv.com/songs/60002587.mkv +GAVIN DEGRAW-in love with a girl,http://em.21dtv.com/songs/60002910.mkv +李彩桦-i love u my baby,http://em.21dtv.com/songs/60002586.mkv +GIRLS ALOUD-ill stand by you,http://em.21dtv.com/songs/60063638.mkv +JOAN JETT+THE BLACKHEARTS-i love rock n roll,http://em.21dtv.com/songs/60002580.mkv +HOT CHELLE RAE-i like it like that,http://em.21dtv.com/songs/60063631.mkv +PITBULL-i like how it feels,http://em.21dtv.com/songs/60065617.mkv +WHITNEY HOUSTON-i learned from the best(无原唱),http://em.21dtv.com/songs/60002568.mkv +B.STEVENS+E.RABBITT-i love a rainy night(无原唱),http://em.21dtv.com/songs/60002576.mkv +HITT-ill always love you,http://em.21dtv.com/songs/60063635.mkv +ARETHA FRANKLIN+GEORGE MICHAEL-i knew you were waiting,http://em.21dtv.com/songs/60002561.mkv +TAYLOR SWIFT-i knew you were trouble,http://em.21dtv.com/songs/60073386.mkv +FINGER ELEVEN-ill keep your memory vague,http://em.21dtv.com/songs/60002831.mkv +BING CROSBY-i kiss youre hand madame(无原唱),http://em.21dtv.com/songs/60002557.mkv +佚名-i knew i loved you,http://em.21dtv.com/songs/60002560.mkv +SAVAGE GARDEN-i knew i love you,http://em.21dtv.com/songs/60002559.mkv +佚名-i know him so well,http://em.21dtv.com/songs/60002563.mkv +STEPS-i know him so well,http://em.21dtv.com/songs/60002562.mkv +李玟-I Just Wanna Marry You,http://em.21dtv.com/songs/60080205.mkv +孙协志-i just play my guitar,http://em.21dtv.com/songs/60002555.mkv +佚名-i just cant help believing,http://em.21dtv.com/songs/60002551.mkv +RUFF ENDZ-if i was the one,http://em.21dtv.com/songs/60073415.mkv +佚名-if i were a richman,http://em.21dtv.com/songs/60002774.mkv +洪辰-if i were a boy,http://em.21dtv.com/songs/60073417.mkv +BEYONCE KNOWLES-if i were a boy,http://em.21dtv.com/songs/60002773.mkv +WHITNEY HOUSTON+GEOR-if i told you that,http://em.21dtv.com/songs/60002772.mkv +佚名-if i only had time,http://em.21dtv.com/songs/60002771.mkv +谷村奈南-if im not the one,http://em.21dtv.com/songs/60002775.mkv +SHERYL CROW-if it makes you happy(无原唱),http://em.21dtv.com/songs/60002777.mkv +BACKSTREET BOYS-if i dont have you,http://em.21dtv.com/songs/60002765.mkv +潘玮柏-if i cant have you(演唱会),http://em.21dtv.com/songs/60002762.mkv +ALICIA KEYS-if i aint got you,http://em.21dtv.com/songs/60002761.mkv +吴雨霏-if i aint got you(演唱会),http://em.21dtv.com/songs/60002760.mkv +FAT JOE-if it aint about money,http://em.21dtv.com/songs/60002776.mkv +SHANIA TWAIN-im holdinon to love,http://em.21dtv.com/songs/60002867.mkv +REBA MCENTIRE-im gonna take that mountain,http://em.21dtv.com/songs/60002866.mkv +李宇春-i gotta that boom boom(演唱会),http://em.21dtv.com/songs/60002534.mkv +陶莉萍-i gotta let you know,http://em.21dtv.com/songs/60002533.mkv +邓紫棋-If I Were A Boy(我是歌手第二期),http://em.21dtv.com/songs/60096504.mkv +吉克隽逸-If I Ain't Got You,http://em.21dtv.com/songs/60101618.mkv +陈伟-i dont want to know,http://em.21dtv.com/songs/60002503.mkv +GAVIN DE GRAW-i dont want to be,http://em.21dtv.com/songs/60002502.mkv +连诗雅-i dont wanna be lonely,http://em.21dtv.com/songs/60002495.mkv +KELLY CLARKSON-i do not hook up,http://em.21dtv.com/songs/60067915.mkv +佚名-i do it for you,http://em.21dtv.com/songs/60002476.mkv +BRYAN ADAMS-i do it for you,http://em.21dtv.com/songs/60002475.mkv +JAMES LNGRAM-i dont have the heart,http://em.21dtv.com/songs/60002488.mkv +JIM STELNMAN-id do anything for love,http://em.21dtv.com/songs/60002750.mkv +佚名-i cant tell you why,http://em.21dtv.com/songs/60002465.mkv +佚名-i cant tell you why(无原唱),http://em.21dtv.com/songs/60002464.mkv +SISTAR-i choose to love you,http://em.21dtv.com/songs/60066655.mkv +T.I.+ROCKO-i cant help it,http://em.21dtv.com/songs/60063625.mkv +佚名-i cant stop loving you,http://em.21dtv.com/songs/60002462.mkv +J.CLIFF+J.NASH-i can see clearly now,http://em.21dtv.com/songs/60002448.mkv +童唱-i can hear the bell,http://em.21dtv.com/songs/60002444.mkv +BRITNEY SPEARS-i cant get no satisfaction,http://em.21dtv.com/songs/60002453.mkv +SELENA-i could fall in love,http://em.21dtv.com/songs/60002468.mkv +佚名-i can dream about you,http://em.21dtv.com/songs/60002441.mkv +佚名-ill come back to you,http://em.21dtv.com/songs/60002829.mkv +AVICII+NICKY ROMERO-i could be the one,http://em.21dtv.com/songs/60073371.mkv +GLEN TEMPLETON-i could be the one,http://em.21dtv.com/songs/60065615.mkv +DONNA LEWIS-i could be the one,http://em.21dtv.com/songs/60002467.mkv +群星-I CAN,http://em.21dtv.com/songs/60116196.mkv +钟嘉欣-il be weiting fof you,http://em.21dtv.com/songs/60060835.mkv +佚名-ill be there for you,http://em.21dtv.com/songs/60002818.mkv +佚名-ive been thinking about you(无原唱),http://em.21dtv.com/songs/60003036.mkv +佚名-ill be loving you forever,http://em.21dtv.com/songs/60002813.mkv +金贵晟-i believe i can fly,http://em.21dtv.com/songs/60082194.mkv +邓鼓-I Believe I Can Fly,http://em.21dtv.com/songs/60081773.mkv +R.KELLY-i believe i can fly,http://em.21dtv.com/songs/60002418.mkv +杜丽莎-i believe i can fly(演唱会),http://em.21dtv.com/songs/60002417.mkv +侧田-i believe i can fly(演唱会),http://em.21dtv.com/songs/60002416.mkv +Ciara-I Bet,http://em.21dtv.com/songs/60109804.mkv +佚名-ive been away too long,http://em.21dtv.com/songs/60003034.mkv +光良-i am who i am,http://em.21dtv.com/songs/60002410.mkv +BRITNEY SPEARS-im a slave 4 u,http://em.21dtv.com/songs/60002851.mkv +NAVI+GEEKS-i aint going home tonight,http://em.21dtv.com/songs/60086346.mkv +JOHN DENVER-in a far away land(演唱会),http://em.21dtv.com/songs/60002905.mkv +佚名-im always dreaming of you,http://em.21dtv.com/songs/60002854.mkv +童唱-i am a little teapot,http://em.21dtv.com/songs/60002404.mkv +童唱-i am a fine musician,http://em.21dtv.com/songs/60002403.mkv +SNH48-化作樱花树(舞蹈版),http://em.21dtv.com/songs/60081288.mkv +焰烽-花摘夜孤城,http://em.21dtv.com/songs/60072019.mkv +辰亦儒-还在夏天呢,http://em.21dtv.com/songs/60105407.mkv +金波-孩子我来了,http://em.21dtv.com/songs/60126296.mkv +张天甫-孩子听我说,http://em.21dtv.com/songs/60108492.mkv +陈健锋-孩子让我爱,http://em.21dtv.com/songs/60093382.mkv +姬楚楚-活在朋友圈,http://em.21dtv.com/songs/60125374.mkv +LISA-会在你身旁,http://em.21dtv.com/songs/60022299.mkv +刘力豪-还在你身后,http://em.21dtv.com/songs/60109176.mkv +林呗呗-哼着你和我,http://em.21dtv.com/songs/60083035.mkv +高霞-孩子你好吗,http://em.21dtv.com/songs/60124724.mkv +TRY-hold住你的心,http://em.21dtv.com/songs/60073346.mkv +田维英-和自己跳舞,http://em.21dtv.com/songs/60123034.mkv +田维英-和自己跳舞,http://em.21dtv.com/songs/60106156.mkv +陈芷盈-活着就是祭,http://em.21dtv.com/songs/60093497.mkv +钟镇涛-活在记念中(无原唱),http://em.21dtv.com/songs/60093376.mkv +佚名-活在记念中(无原唱),http://em.21dtv.com/songs/60022383.mkv +唐艺昕-和自己旅行,http://em.21dtv.com/songs/60127868.mkv +楼兰-和自己竞赛,http://em.21dtv.com/songs/60121839.mkv +郭劲-杭州 杭州,http://em.21dtv.com/songs/60097594.mkv +萧敬腾-活在故事里(演唱会),http://em.21dtv.com/songs/60072052.mkv +张靓颖-孩子的眼睛,http://em.21dtv.com/songs/60019676.mkv +群星-孩子的天堂,http://em.21dtv.com/songs/60110460.mkv +C AllStar+Supper Moment-孩子的天空,http://em.21dtv.com/songs/60121225.mkv +F.I.R-孩子的天空,http://em.21dtv.com/songs/60095246.mkv +王亚平-画中的妈妈,http://em.21dtv.com/songs/60063042.mkv +叶玉卿-活着多快活,http://em.21dtv.com/songs/60022395.mkv +动力火车-厚重的记忆,http://em.21dtv.com/songs/60021123.mkv +林恩德-孩子的祷告(无原唱),http://em.21dtv.com/songs/60019675.mkv +杨子军-孩子对不起,http://em.21dtv.com/songs/60112784.mkv +BEYOND-活着便精彩,http://em.21dtv.com/songs/60022393.mkv +BEYOND-活着便精彩(演唱会),http://em.21dtv.com/songs/60022392.mkv +王菲儿-耗子爱上猫,http://em.21dtv.com/songs/60098652.mkv +六仔-耗子爱上猫,http://em.21dtv.com/songs/60098121.mkv +秀兰玛雅-喝一嘴相思,http://em.21dtv.com/songs/60020297.mkv +动力火车-还隐隐作痛,http://em.21dtv.com/songs/60019653.mkv +棒棒堂-还要一起冲,http://em.21dtv.com/songs/60064339.mkv +苗梓枫-好运要来到,http://em.21dtv.com/songs/60124411.mkv +羽泉-还有一个她,http://em.21dtv.com/songs/60019666.mkv +胡海泉+周奇奇-还有一个他,http://em.21dtv.com/songs/60019665.mkv +张勇-还有一个你,http://em.21dtv.com/songs/60075890.mkv +黎明-火一样的爱,http://em.21dtv.com/songs/60022480.mkv +巧千金-欢迎新年到,http://em.21dtv.com/songs/60021801.mkv +七仙女-欢迎新年到,http://em.21dtv.com/songs/60021800.mkv +李宇春-还有我疼你,http://em.21dtv.com/songs/60019663.mkv +佚名-还以为是你,http://em.21dtv.com/songs/60019652.mkv +谭晶-红颜为谁红,http://em.21dtv.com/songs/60075795.mkv +林雨-红颜为谁红,http://em.21dtv.com/songs/60075794.mkv +张学友-红叶舞秋山,http://em.21dtv.com/songs/60089271.mkv +周璇-黄叶舞秋风,http://em.21dtv.com/songs/60022002.mkv +费玉清-黄叶舞秋风,http://em.21dtv.com/songs/60022001.mkv +群星-黄叶舞秋风(演唱会),http://em.21dtv.com/songs/60022000.mkv +梁静茹-好夜晚good night,http://em.21dtv.com/songs/60020249.mkv +何炅-还有我点晴,http://em.21dtv.com/songs/60089127.mkv +陈奕夫-还有我爱你,http://em.21dtv.com/songs/60103678.mkv +许慧欣-谎言太甜蜜,http://em.21dtv.com/songs/60022015.mkv +王菲-哗一声之后,http://em.21dtv.com/songs/60091738.mkv +黄晓明-何以笙箫默,http://em.21dtv.com/songs/60111552.mkv +付晓婷-喊一声青藏,http://em.21dtv.com/songs/60068308.mkv +谭晶-喊一声妈妈,http://em.21dtv.com/songs/60120949.mkv +翦蕤-唤一声江南,http://em.21dtv.com/songs/60021847.mkv +郭洪-喊一声汴梁,http://em.21dtv.com/songs/60064276.mkv +任军太-会有那一天(演唱会),http://em.21dtv.com/songs/60022296.mkv +华少陈-好运年年到,http://em.21dtv.com/songs/60133427.mkv +木杰-好运年年到,http://em.21dtv.com/songs/60132513.mkv +潘辰-环游你的心,http://em.21dtv.com/songs/60021803.mkv +JOHN FARRAR-have you never been mellow,http://em.21dtv.com/songs/60002129.mkv +OLIVIA NEWTON+JOHN-have you never been mellow(无原唱),http://em.21dtv.com/songs/60002128.mkv +张迈-花雨满香江,http://em.21dtv.com/songs/60021540.mkv +ROBBIE WILLIAMS-have you met miss jones,http://em.21dtv.com/songs/60002127.mkv +高枫-还有路要走,http://em.21dtv.com/songs/60081885.mkv +熏正杰-欢迎来泡茶,http://em.21dtv.com/songs/60021797.mkv +王孝辉-回忆里的吻,http://em.21dtv.com/songs/60075925.mkv +姜玉阳-回忆里的你,http://em.21dtv.com/songs/60064354.mkv +张靓颖-黑夜里的光,http://em.21dtv.com/songs/60100043.mkv +丁维伟-回忆里的爱,http://em.21dtv.com/songs/60086614.mkv +S.H.E-花又开好了,http://em.21dtv.com/songs/60079854.mkv +李佳-红颜空成灰,http://em.21dtv.com/songs/60085197.mkv +蓝雨-谎言嘉年华,http://em.21dtv.com/songs/60022014.mkv +CV王胖子-霍元甲不假,http://em.21dtv.com/songs/60134663.mkv +巧千金-贺呀贺新年,http://em.21dtv.com/songs/60108468.mkv +巧千金-贺呀贺新年,http://em.21dtv.com/songs/60075730.mkv +陈瑶梓+程梓淳+黄熙儿-贺呀贺新年,http://em.21dtv.com/songs/60075729.mkv +蒙面哥+彭清+妲己-好运猴急来,http://em.21dtv.com/songs/60118884.mkv +新生-汉源花儿红,http://em.21dtv.com/songs/60102277.mkv +周杰伦+吴建豪-黑夜和白天,http://em.21dtv.com/songs/60020593.mkv +SPEXIAL伟晋-换一个心动,http://em.21dtv.com/songs/60104735.mkv +童星-好运跟我来,http://em.21dtv.com/songs/60089433.mkv +吴依琳-好运跟我来,http://em.21dtv.com/songs/60075701.mkv +马智宇-好运跟我来(演唱会),http://em.21dtv.com/songs/60067064.mkv +牛欣欣-好运跟我来,http://em.21dtv.com/songs/60020266.mkv +庾澄庆-欢迎光临disco,http://em.21dtv.com/songs/60021796.mkv +Pop Corn+洪敬尧-还要更快乐,http://em.21dtv.com/songs/60099024.mkv +佚名-have you ever been mellow,http://em.21dtv.com/songs/60002123.mkv +佚名-have you ever been lonely,http://em.21dtv.com/songs/60002122.mkv +陈岩-回忆的滋味,http://em.21dtv.com/songs/60083087.mkv +盛云龙-浩宇当自强,http://em.21dtv.com/songs/60132769.mkv +金子嫣-黑夜的烛光(无原唱),http://em.21dtv.com/songs/60020591.mkv +凤飞飞-回忆的夏季,http://em.21dtv.com/songs/60022247.mkv +潘秀琼-寒雨打梧桐,http://em.21dtv.com/songs/60019912.mkv +邓紫棋-回忆的沙漏,http://em.21dtv.com/songs/60022246.mkv +海洋-海洋的士高,http://em.21dtv.com/songs/60122962.mkv +萧煌奇-好运的男人(演唱会),http://em.21dtv.com/songs/60020265.mkv +周璇-花样的年华,http://em.21dtv.com/songs/60021525.mkv +郭静-回忆的阁楼,http://em.21dtv.com/songs/60072047.mkv +佚名-好野大哥成,http://em.21dtv.com/songs/60020248.mkv +苏青山-还要等多久,http://em.21dtv.com/songs/60120890.mkv +卫东-还要等多久,http://em.21dtv.com/songs/60105675.mkv +王璘枫-回忆的点滴,http://em.21dtv.com/songs/60105252.mkv +萧亚轩-画一道彩虹,http://em.21dtv.com/songs/60091996.mkv +双星-欢迎财神到,http://em.21dtv.com/songs/60075884.mkv +李乐诗-hey youv captured my heart,http://em.21dtv.com/songs/60002254.mkv +SNH48-好友创可贴,http://em.21dtv.com/songs/60133283.mkv +陈奕迅-黑夜不再来,http://em.21dtv.com/songs/60020588.mkv +苏永康-黑夜不再来(演唱会),http://em.21dtv.com/songs/60020587.mkv +容祖儿-黑夜不再来(演唱会),http://em.21dtv.com/songs/60020586.mkv +梁汉文-黑夜不再来(演唱会),http://em.21dtv.com/songs/60020585.mkv +陈奕迅-还要不要走,http://em.21dtv.com/songs/60064338.mkv +阿烁-回忆彼坛酒,http://em.21dtv.com/songs/60106377.mkv +VEGA-黑夜不探戈,http://em.21dtv.com/songs/60092231.mkv +杨千嬅-花与爱丽斯,http://em.21dtv.com/songs/60021533.mkv +陈中-欢喜做阵来,http://em.21dtv.com/songs/60095981.mkv +朱晓琳-花仙子之歌,http://em.21dtv.com/songs/60021500.mkv +佚名-欢喜再相逢,http://em.21dtv.com/songs/60021788.mkv +高枫-好戏在后头,http://em.21dtv.com/songs/60089545.mkv +草蜢-好戏在后头,http://em.21dtv.com/songs/60020179.mkv +草蜢-好戏在后头(演唱会),http://em.21dtv.com/songs/60020178.mkv +孙江枫-喝下这杯酒,http://em.21dtv.com/songs/60070733.mkv +艾歌-好想再爱你,http://em.21dtv.com/songs/60112908.mkv +潘广益-好想再爱你,http://em.21dtv.com/songs/60110356.mkv +颜亚涛-好想再爱你,http://em.21dtv.com/songs/60075697.mkv +郑伊健-呼吸与心跳,http://em.21dtv.com/songs/60099524.mkv +常思思-和谐圆舞曲,http://em.21dtv.com/songs/60111836.mkv +胡美仪-霍小玉诉情,http://em.21dtv.com/songs/60064357.mkv +佚名-寒星与流云,http://em.21dtv.com/songs/60019911.mkv +冯曦妤-火星原居民,http://em.21dtv.com/songs/60022471.mkv +卢广仲-好想要挥霍,http://em.21dtv.com/songs/60020214.mkv +孙艺琪-好想有个他,http://em.21dtv.com/songs/60131334.mkv +王丽达-海峡月光曲[演],http://em.21dtv.com/songs/60101671.mkv +陈振云-好想有个家,http://em.21dtv.com/songs/60068315.mkv +谢雨欣-火星有点烫,http://em.21dtv.com/songs/60092099.mkv +李丹阳-和谐新大陆,http://em.21dtv.com/songs/60108556.mkv +神木与瞳-好想为你哭,http://em.21dtv.com/songs/60020213.mkv +吴奇隆-好想忘了爱,http://em.21dtv.com/songs/60020212.mkv +李夏薇-很想讨厌你(HD),http://em.21dtv.com/songs/10012794.mkv +林夏薇-很想讨厌你,http://em.21dtv.com/songs/60097615.mkv +王瑞霞-欢喜跳恰恰(无原唱),http://em.21dtv.com/songs/60021786.mkv +许佳慧-好想谈恋爱,http://em.21dtv.com/songs/60110515.mkv +邵雨涵-好想谈恋爱,http://em.21dtv.com/songs/60075695.mkv +邵雨涵+王绎龙-好想谈恋爱,http://em.21dtv.com/songs/60066019.mkv +范晓萱-好想谈恋爱,http://em.21dtv.com/songs/60020211.mkv +周华健-花心(双语种),http://em.21dtv.com/songs/60021517.mkv +刘祥杰-和谐是一家,http://em.21dtv.com/songs/60064292.mkv +洪歌-或许是明天,http://em.21dtv.com/songs/60133939.mkv +马山虎-狠心说出口,http://em.21dtv.com/songs/60103715.mkv +祁隆-好想说爱你,http://em.21dtv.com/songs/60020209.mkv +薛之谦-火星人来过,http://em.21dtv.com/songs/60132864.mkv +薛之谦-火星人来过,http://em.21dtv.com/songs/60130733.mkv +熊七梅-画仙入蝶魂,http://em.21dtv.com/songs/60063193.mkv +邝文珣-好想去恨你,http://em.21dtv.com/songs/60020208.mkv +华晨宇-火星情报局,http://em.21dtv.com/songs/60120383.mkv +郁可唯-好想你也在,http://em.21dtv.com/songs/60071996.mkv +佚名-欢笑末世纪,http://em.21dtv.com/songs/60021789.mkv +叶诺帆+凤娘-欢喜来做伙,http://em.21dtv.com/songs/60122564.mkv +凤娘+黄芭乐-欢喜来做伙,http://em.21dtv.com/songs/60083073.mkv +凤娘+黄芭乐-欢喜来作伙,http://em.21dtv.com/songs/60067085.mkv +张清芳-欢喜来相会(无原唱),http://em.21dtv.com/songs/60021785.mkv +乔幼+杨哲-欢喜来斗阵,http://em.21dtv.com/songs/60118304.mkv +吴贞-花心萝卜菜,http://em.21dtv.com/songs/60075855.mkv +戴爱玲-好想看星星,http://em.21dtv.com/songs/60083014.mkv +何静-呼吸看世界,http://em.21dtv.com/songs/60090609.mkv +风信子组合-和谐家园美,http://em.21dtv.com/songs/60083022.mkv +蒋卓嘉-呼吸就想你,http://em.21dtv.com/songs/60114755.mkv +罗永娟-好想嫁给他,http://em.21dtv.com/songs/60020199.mkv +SUNDAY GIRLS-好想嫁给他,http://em.21dtv.com/songs/60020198.mkv +谢震廷-很想很想你,http://em.21dtv.com/songs/60118916.mkv +九九-好想好想你,http://em.21dtv.com/songs/60109944.mkv +张傲-呼吸和想你,http://em.21dtv.com/songs/60021174.mkv +梁静茹-会吸呼的痛,http://em.21dtv.com/songs/60022289.mkv +陈雷-欢喜过一生,http://em.21dtv.com/songs/60021781.mkv +叶启田-欢喜干一杯(无原唱),http://em.21dtv.com/songs/60075550.mkv +陈雷-欢喜干一杯,http://em.21dtv.com/songs/60021778.mkv +佚名-欢喜干一杯(无原唱),http://em.21dtv.com/songs/60021777.mkv +卓依婷-欢喜过新年,http://em.21dtv.com/songs/60021780.mkv +蔡凤凰+杨鸣-欢喜过新年,http://em.21dtv.com/songs/60021779.mkv +王羽臣-好想告诉你,http://em.21dtv.com/songs/60075694.mkv +洪煜祺+方靖苡-好想告诉你,http://em.21dtv.com/songs/60068313.mkv +金钟国-恨幸福来过,http://em.21dtv.com/songs/60127518.mkv +MONMON-嘿幸福快乐,http://em.21dtv.com/songs/60020628.mkv +张华-欢喜斗阵走,http://em.21dtv.com/songs/60021776.mkv +丁爽-会笑的昨天,http://em.21dtv.com/songs/60022290.mkv +郭修彧-幻想的作品,http://em.21dtv.com/songs/60131886.mkv +蒋大为-和谐大中国,http://em.21dtv.com/songs/60081002.mkv +许琴-和谐大中国(演唱会),http://em.21dtv.com/songs/60020440.mkv +金莎-彗星的眼泪,http://em.21dtv.com/songs/60022301.mkv +刘德华-狠心的一课,http://em.21dtv.com/songs/60020686.mkv +刘铭-海星的约定,http://em.21dtv.com/songs/60121459.mkv +杨梓-狠心丢下我,http://em.21dtv.com/songs/60101392.mkv +阿毛-狠心丢下我,http://em.21dtv.com/songs/60067070.mkv +桑紫菲-或许的幸福,http://em.21dtv.com/songs/60110319.mkv +佚名-欢喜大团圆,http://em.21dtv.com/songs/60021774.mkv +马兆骏-害羞的太阳,http://em.21dtv.com/songs/60019853.mkv +炎亚纶-好想对他说,http://em.21dtv.com/songs/60102509.mkv +林强-花心大少爷,http://em.21dtv.com/songs/60021513.mkv +连天-海星的诉说,http://em.21dtv.com/songs/60118083.mkv +王宏伟-欢笑的日子,http://em.21dtv.com/songs/60104305.mkv +王程程+赵嘉伟-很想带你走,http://em.21dtv.com/songs/60135564.mkv +七郎-回乡的囡仔(无原唱),http://em.21dtv.com/songs/60022206.mkv +陈雅森-很想对你说,http://em.21dtv.com/songs/60134426.mkv +梁建成-好想对你说,http://em.21dtv.com/songs/60075693.mkv +陈兴瑜-好想对你说,http://em.21dtv.com/songs/60062285.mkv +萧敬腾-好想对你说,http://em.21dtv.com/songs/60061233.mkv +何润东+张娜拉-好想对你说,http://em.21dtv.com/songs/60020187.mkv +FUSION-好想对你说,http://em.21dtv.com/songs/60020186.mkv +阿赖-狠心的女人,http://em.21dtv.com/songs/60114191.mkv +苏小花-花心的男人,http://em.21dtv.com/songs/60099458.mkv +中国娃娃-害羞的男孩,http://em.21dtv.com/songs/60019852.mkv +卢巧音-很想当妈妈,http://em.21dtv.com/songs/60020658.mkv +卢巧音-很想当妈妈(演唱会),http://em.21dtv.com/songs/60020657.mkv +邓小伟-花心大萝卜,http://em.21dtv.com/songs/60085209.mkv +张梅梅-花心大萝卜,http://em.21dtv.com/songs/60072018.mkv +黑鸭子演唱组-和谐的家园,http://em.21dtv.com/songs/60020441.mkv +王丽达-和谐大家庭,http://em.21dtv.com/songs/60069455.mkv +东方传奇-好兄弟姐妹,http://em.21dtv.com/songs/60110818.mkv +龙泽雨-会笑的孩子,http://em.21dtv.com/songs/60114926.mkv +五月天-恒星的恒心,http://em.21dtv.com/songs/60020734.mkv +五月天-恒星的恒心(演唱会),http://em.21dtv.com/songs/60020733.mkv +殷秀梅-华夏的故事,http://em.21dtv.com/songs/60021580.mkv +熊立红-和谐的春天,http://em.21dtv.com/songs/60088257.mkv +林子娟-花谢的暗暝(无原唱),http://em.21dtv.com/songs/60021506.mkv +张蓉蓉-欢喜才通醉,http://em.21dtv.com/songs/60075882.mkv +陶晶莹-湖心草深长,http://em.21dtv.com/songs/60021231.mkv +冯晓飞-华夏春满园,http://em.21dtv.com/songs/60021579.mkv +江蕙-欢喜唱归暝,http://em.21dtv.com/songs/60021773.mkv +吴松发-好想成个家,http://em.21dtv.com/songs/60071994.mkv +陈伟霆-好想抱着你,http://em.21dtv.com/songs/60113047.mkv +黎明-呼吸不说谎,http://em.21dtv.com/songs/60021173.mkv +黎明-呼吸不说谎(演唱会),http://em.21dtv.com/songs/60021172.mkv +POPU LADY-好想变苹果,http://em.21dtv.com/songs/60075692.mkv +周磊-花心波罗蜜,http://em.21dtv.com/songs/60087591.mkv +周磊-花心菠萝蜜,http://em.21dtv.com/songs/60021512.mkv +黄雅莉-火星爱月亮,http://em.21dtv.com/songs/60022470.mkv +张智尧-还想爱下去(无原唱),http://em.21dtv.com/songs/60019647.mkv +芭比-航向204,http://em.21dtv.com/songs/60019960.mkv +卢凯彤-荒无中起舞,http://em.21dtv.com/songs/60062727.mkv +卢凯彤-荒芜中起舞,http://em.21dtv.com/songs/60061266.mkv +倪尔萍-鹤舞醉浮萍,http://em.21dtv.com/songs/60126611.mkv +五月天-嘿!我要走了,http://em.21dtv.com/songs/60020618.mkv +五月天-嘿!我要走了(演唱会),http://em.21dtv.com/songs/60020617.mkv +谢雨欣-和我一起飞,http://em.21dtv.com/songs/60092095.mkv +侯旭-和我一起唱,http://em.21dtv.com/songs/60122493.mkv +王力宏+李寿全-喊我一千遍,http://em.21dtv.com/songs/60019922.mkv +佚名-海外一封信,http://em.21dtv.com/songs/60019816.mkv +刘若英-换我先吻你,http://em.21dtv.com/songs/60090728.mkv +柴超-回望少年路,http://em.21dtv.com/songs/60127120.mkv +王蓉-害我受了伤,http://em.21dtv.com/songs/60019849.mkv +戴玉强-和往事干杯,http://em.21dtv.com/songs/60091243.mkv +群星-和未来有约,http://em.21dtv.com/songs/60020436.mkv +DIA-和我交往吗,http://em.21dtv.com/songs/60134666.mkv +许富凯-换我甲你疼,http://em.21dtv.com/songs/60104422.mkv +周阿惠-和我回湛江,http://em.21dtv.com/songs/60097600.mkv +冯德伦-恨我还想你,http://em.21dtv.com/songs/60020721.mkv +赫拉含青-海外华人颂,http://em.21dtv.com/songs/60124512.mkv +黄盛典-韩文公冻雪,http://em.21dtv.com/songs/60019894.mkv +羽泉-荒芜的故事,http://em.21dtv.com/songs/60091878.mkv +Rag'n'Bone Man-Human,http://em.21dtv.com/songs/60133268.mkv +Rag N Bone Man-Human,http://em.21dtv.com/songs/60133267.mkv +草蜢-伙头仔昆布,http://em.21dtv.com/songs/60022487.mkv +草蜢-伙头仔昆布(演唱会),http://em.21dtv.com/songs/60022486.mkv +黄小琥-回头最寂寞,http://em.21dtv.com/songs/60080175.mkv +小Y-航天员之歌,http://em.21dtv.com/songs/60019959.mkv +张雨生-和天一样高,http://em.21dtv.com/songs/60020435.mkv +孙更俊-荷塘月色,http://em.21dtv.com/songs/60070735.mkv +巧千金-航天员来啦,http://em.21dtv.com/songs/60019958.mkv +许云上-海豚湾故事(演),http://em.21dtv.com/songs/60099487.mkv +胡红艳-回头望草原,http://em.21dtv.com/songs/60067093.mkv +佚名-hard to say im sorry,http://em.21dtv.com/songs/60002106.mkv +覃艺琳-喝糖水的人,http://em.21dtv.com/songs/60128389.mkv +农三妹+王烁巽-红毯上的你,http://em.21dtv.com/songs/60114404.mkv +卓依婷-回头情难了,http://em.21dtv.com/songs/60022186.mkv +韩晓辉-黄土坡汉子,http://em.21dtv.com/songs/60133072.mkv +黄思婷-糊涂女人心(无原唱),http://em.21dtv.com/songs/60021281.mkv +AVRIL LAVIGNE-heres to never growing up,http://em.21dtv.com/songs/60082178.mkv +尤雅-糊涂浪子心,http://em.21dtv.com/songs/60021280.mkv +佚名-糊涂浪子心,http://em.21dtv.com/songs/60021279.mkv +袁小迪-糊涂浪子心(无原唱),http://em.21dtv.com/songs/60021278.mkv +袁小迪-湖涂浪子心(无原唱),http://em.21dtv.com/songs/60021230.mkv +网络歌手-灰太狼之歌,http://em.21dtv.com/songs/60088417.mkv +陈盈洁-回头拢是梦,http://em.21dtv.com/songs/60022183.mkv +佚名-hark the herald angels sing,http://em.21dtv.com/songs/60002108.mkv +关牧村-黄土地之恋,http://em.21dtv.com/songs/60075905.mkv +闫凤梅-黑土地之爱,http://em.21dtv.com/songs/60106361.mkv +伍佰-荒唐的欲望,http://em.21dtv.com/songs/60021866.mkv +苏琪繁-会痛的石头,http://em.21dtv.com/songs/60103535.mkv +萧敬腾-会痛的石头,http://em.21dtv.com/songs/60022288.mkv +晓月-海棠的凝望,http://em.21dtv.com/songs/60085165.mkv +木子欣-海天的尽头,http://em.21dtv.com/songs/60075653.mkv +祈合-合体打飞机,http://em.21dtv.com/songs/60097538.mkv +阿勇泽让-欢腾的草原,http://em.21dtv.com/songs/60021770.mkv +李琛-回头不是岸,http://em.21dtv.com/songs/60091345.mkv +扬哲-恨天不公平,http://em.21dtv.com/songs/60020719.mkv +MARINA+THE DIAMONDS-how to be a heartbreaker,http://em.21dtv.com/songs/60071607.mkv +佚名-here there and every where,http://em.21dtv.com/songs/60002211.mkv +周冰倩-还是最想你,http://em.21dtv.com/songs/60019638.mkv +沈文程-何时再相会,http://em.21dtv.com/songs/60095753.mkv +曾心梅-何时再相会,http://em.21dtv.com/songs/60095581.mkv +佚名-何时再相会,http://em.21dtv.com/songs/60020400.mkv +洪荣宏-何时再相逢(无原唱),http://em.21dtv.com/songs/60095782.mkv +佚名-何时再相逢(无原唱),http://em.21dtv.com/songs/60020399.mkv +曾春年-还是做朋友,http://em.21dtv.com/songs/60122807.mkv +孟杨-还是做朋友,http://em.21dtv.com/songs/60122668.mkv +阎维文-红十字方队,http://em.21dtv.com/songs/60020966.mkv +卓依婷-好事样样来,http://em.21dtv.com/songs/60087456.mkv +吴依琳-好事样样来,http://em.21dtv.com/songs/60075689.mkv +魏依曼-好事样样来,http://em.21dtv.com/songs/60020166.mkv +剪影姐-还是要幸福,http://em.21dtv.com/songs/60110051.mkv +田馥甄-还是要幸福,http://em.21dtv.com/songs/60062990.mkv +郑国江-火烧圆明园,http://em.21dtv.com/songs/60022459.mkv +拉毛王旭-还是有妈好,http://em.21dtv.com/songs/60070773.mkv +咪依鲁江-婚纱与袈裟,http://em.21dtv.com/songs/60075935.mkv +那英-还是要见面,http://em.21dtv.com/songs/60019633.mkv +锦绣二重唱-还是一个人,http://em.21dtv.com/songs/60019636.mkv +关芝琳-还是要孤单,http://em.21dtv.com/songs/60019632.mkv +林于雯-后生要打拼,http://em.21dtv.com/songs/60095641.mkv +魏海珊-后生要打拼,http://em.21dtv.com/songs/60021116.mkv +蒋冰-挥洒一滴泪,http://em.21dtv.com/songs/60064346.mkv +佚名-还是一场梦,http://em.21dtv.com/songs/60019635.mkv +黄文星-还是想着你,http://em.21dtv.com/songs/60109781.mkv +SOWHAT-灰色西亚图,http://em.21dtv.com/songs/60087219.mkv +SO WHAT-灰色西雅图,http://em.21dtv.com/songs/60022045.mkv +苏慧伦+羽泉-还剩下什么,http://em.21dtv.com/songs/60019597.mkv +罗美玲-红色向日葵,http://em.21dtv.com/songs/60020964.mkv +陈佳-黑色星期天,http://em.21dtv.com/songs/60122225.mkv +徐怀钰-黑色星期天,http://em.21dtv.com/songs/60020558.mkv +吴娜-换上新军装,http://em.21dtv.com/songs/60075895.mkv +SWEETY-还是喜欢你,http://em.21dtv.com/songs/60019631.mkv +周国贤-灰色小飞侠,http://em.21dtv.com/songs/60022046.mkv +李明洋+朱海君-活是为着你,http://em.21dtv.com/songs/60022377.mkv +林淑蓉-还是忘了吧,http://em.21dtv.com/songs/60019629.mkv +刘欢-还是我的爱,http://em.21dtv.com/songs/60087409.mkv +EVER-还是忘不了,http://em.21dtv.com/songs/60113153.mkv +月光畅想-还是她最美,http://em.21dtv.com/songs/60133772.mkv +SAYA-红色水晶球,http://em.21dtv.com/songs/60020962.mkv +王识贤-花虱虱的人,http://em.21dtv.com/songs/60021479.mkv +周丽淇-还是让你走,http://em.21dtv.com/songs/60019628.mkv +卓依婷-回首情难了,http://em.21dtv.com/songs/60022180.mkv +陈浩民-还是你最好,http://em.21dtv.com/songs/60107329.mkv +佚名-还是你最好,http://em.21dtv.com/songs/60019625.mkv +陈琳-还是你最好,http://em.21dtv.com/songs/60019624.mkv +王杰-回首梦已远,http://em.21dtv.com/songs/60075921.mkv +雪域格桑-还生命笑脸,http://em.21dtv.com/songs/60103696.mkv +白客_叫兽易小星-还是没想到,http://em.21dtv.com/songs/60094621.mkv +张寒-黑色曼陀罗,http://em.21dtv.com/songs/60126877.mkv +娅琪朵-黑色曼陀罗,http://em.21dtv.com/songs/60104923.mkv +林冠吟-红色木乃伊,http://em.21dtv.com/songs/60020955.mkv +秦浩-还是没回来,http://em.21dtv.com/songs/60129455.mkv +王宏伟-红树林之歌,http://em.21dtv.com/songs/60070750.mkv +朱晓红-话说老沈阳,http://em.21dtv.com/songs/60021629.mkv +林子祥-回首来时路,http://em.21dtv.com/songs/60022179.mkv +龙千玉-何时来离开,http://em.21dtv.com/songs/60020395.mkv +TWINS-head shoulders knees and toes,http://em.21dtv.com/songs/60002138.mkv +戴娆-还是家乡好,http://em.21dtv.com/songs/60019616.mkv +耿为华-还是家温暖(演唱会),http://em.21dtv.com/songs/60075888.mkv +刘艾迪-红色警戒区,http://em.21dtv.com/songs/60099121.mkv +焰烽-红丝恨月老,http://em.21dtv.com/songs/60072009.mkv +花儿乐队-胡说胡有理,http://em.21dtv.com/songs/60021211.mkv +何耀珊-还是会想他,http://em.21dtv.com/songs/60019614.mkv +原子邦妮-还是会想你,http://em.21dtv.com/songs/60130148.mkv +王立荐-还是会想念,http://em.21dtv.com/songs/60107080.mkv +车子-还是会想你,http://em.21dtv.com/songs/60104465.mkv +宋孟君-很傻很天真,http://em.21dtv.com/songs/60127911.mkv +王麟-很傻很天真,http://em.21dtv.com/songs/60088347.mkv +佚名-还是好朋友,http://em.21dtv.com/songs/60019611.mkv +王心凌-还是好朋友,http://em.21dtv.com/songs/60019610.mkv +古巨基+梁静茹-还是好朋友,http://em.21dtv.com/songs/60019609.mkv +崔健-浑水湖漫步,http://em.21dtv.com/songs/60133619.mkv +群星-贺岁贺吉祥,http://em.21dtv.com/songs/60129499.mkv +SELINA-还是会寂寞,http://em.21dtv.com/songs/60086073.mkv +陈绮贞-还是会寂寞,http://em.21dtv.com/songs/60019613.mkv +陈绮贞-还是会寂寞(演唱会),http://em.21dtv.com/songs/60019612.mkv +谢雷-唤水会结冻,http://em.21dtv.com/songs/60135750.mkv +吕雅芬-海上花儿开,http://em.21dtv.com/songs/60110071.mkv +蔡献华+朱险峰-红薯花儿开,http://em.21dtv.com/songs/60064307.mkv +太阳部落-和时光赛跑,http://em.21dtv.com/songs/60097599.mkv +闪亮三姐妹-红色高跟鞋,http://em.21dtv.com/songs/60020952.mkv +蔡健雅-红色高跟鞋,http://em.21dtv.com/songs/60020951.mkv +陈慧娴-还是告别吧,http://em.21dtv.com/songs/60019608.mkv +欢子-还是放不下,http://em.21dtv.com/songs/60127141.mkv +倪安东-汗水的重量,http://em.21dtv.com/songs/60075666.mkv +张国荣-侯斯顿之恋,http://em.21dtv.com/songs/60021070.mkv +叶晓红-红色的中国,http://em.21dtv.com/songs/60083047.mkv +潘秀琼-河上的月色,http://em.21dtv.com/songs/60090056.mkv +佚名-黑色的眼眸,http://em.21dtv.com/songs/60020541.mkv +李宇春-海上的月亮,http://em.21dtv.com/songs/60082997.mkv +李宇春-海上的月亮(演唱会),http://em.21dtv.com/songs/60066013.mkv +TWINS-黑色的喜剧,http://em.21dtv.com/songs/60087228.mkv +阿赖-灰色的舞台,http://em.21dtv.com/songs/60114190.mkv +林忆莲-灰色的逃脱,http://em.21dtv.com/songs/60091453.mkv +佚名-灰色的逃脱(无原唱),http://em.21dtv.com/songs/60022039.mkv +龙泽雨-灰色的天空,http://em.21dtv.com/songs/60114927.mkv +金子嫣-灰色的诉说(无原唱),http://em.21dtv.com/songs/60022038.mkv +CD.VOICE-灰色的盼望,http://em.21dtv.com/songs/60022037.mkv +李贞贤-患傻的女人,http://em.21dtv.com/songs/60089969.mkv +佚名-海上的男儿(布鲁斯),http://em.21dtv.com/songs/60019790.mkv +佚名-黄色的玫瑰,http://em.21dtv.com/songs/60021985.mkv +蔡秋凤-红色的玫瑰(无原唱),http://em.21dtv.com/songs/60020949.mkv +杨宝心-火烧的寂寞,http://em.21dtv.com/songs/60104231.mkv +徐剑秋-火烧的寂寞,http://em.21dtv.com/songs/60104152.mkv +何洁-火烧的寂寞,http://em.21dtv.com/songs/60097512.mkv +曾一鸣-火烧的寂寞,http://em.21dtv.com/songs/60085249.mkv +阿信-火烧的寂寞,http://em.21dtv.com/songs/60022457.mkv +张祥洪-灰色的街角,http://em.21dtv.com/songs/60022036.mkv +程勃森-黑色的花心,http://em.21dtv.com/songs/60075737.mkv +刘福助-海上的风泳,http://em.21dtv.com/songs/60095468.mkv +白冰冰-黑色的风吹(无原唱),http://em.21dtv.com/songs/60095827.mkv +丁汀-寒酸的承诺,http://em.21dtv.com/songs/60019906.mkv +范玮琪-灰色的彩虹,http://em.21dtv.com/songs/60022035.mkv +许美静-挥手道别离,http://em.21dtv.com/songs/60022064.mkv +常石磊-回首才知道,http://em.21dtv.com/songs/60118533.mkv +常石磊-回首才知道,http://em.21dtv.com/songs/60022177.mkv +杜德伟-还是唱下去,http://em.21dtv.com/songs/60019605.mkv +杜德伟-还是唱下去(演唱会),http://em.21dtv.com/songs/60019604.mkv +佚名-何时才相会,http://em.21dtv.com/songs/60020391.mkv +阿吉仔-何时出头天,http://em.21dtv.com/songs/60020392.mkv +萧煌奇-黑色比基尼,http://em.21dtv.com/songs/60020538.mkv +伊雪-还是爱着你,http://em.21dtv.com/songs/60114993.mkv +韦礼安-还是爱着你,http://em.21dtv.com/songs/60075887.mkv +许茹芸-红色爱情海,http://em.21dtv.com/songs/60020948.mkv +张德兰-何日再相见,http://em.21dtv.com/songs/60020389.mkv +许冠杰-何日再相逢,http://em.21dtv.com/songs/60102725.mkv +崔苔菁-何日再吻君,http://em.21dtv.com/songs/60087738.mkv +刘秋仪-何日再问君,http://em.21dtv.com/songs/60087413.mkv +李茂山-何日再吻君,http://em.21dtv.com/songs/60020388.mkv +凤娘-憨人有水命,http://em.21dtv.com/songs/60019867.mkv +易丹-好人与坏人,http://em.21dtv.com/songs/60087935.mkv +S.H.E-好人有好抱,http://em.21dtv.com/songs/60020149.mkv +洪文斌+黄小青-花蕊也悲伤,http://em.21dtv.com/songs/60021468.mkv +秦威-忽然想起你,http://em.21dtv.com/songs/60129450.mkv +蔡琴-忽然想起你,http://em.21dtv.com/songs/60021190.mkv +佚名-花蕊望早春,http://em.21dtv.com/songs/60021467.mkv +谭锡禧-红日我爱你(演唱会),http://em.21dtv.com/songs/60075782.mkv +林子祥-红日我爱你,http://em.21dtv.com/songs/60020944.mkv +铁文太-怀柔请你来,http://em.21dtv.com/songs/60129698.mkv +梅艳芳-何日+李兰香(演唱会),http://em.21dtv.com/songs/60020365.mkv +伊雪莉-忽然看见了,http://em.21dtv.com/songs/60021186.mkv +郭宴-何日君再来,http://em.21dtv.com/songs/60127477.mkv +黄琦雯-何日君再来,http://em.21dtv.com/songs/60122307.mkv +叶丽仪-何日君再来(演唱会),http://em.21dtv.com/songs/60083025.mkv +吕珊-何日君再来(演唱会),http://em.21dtv.com/songs/60083024.mkv +郭静-何日君再来,http://em.21dtv.com/songs/60075712.mkv +刘惜君-何日君再来,http://em.21dtv.com/songs/60070734.mkv +周璇-何日君再来,http://em.21dtv.com/songs/60020384.mkv +于立成-何日君再来,http://em.21dtv.com/songs/60020383.mkv +谢采妘-何日君再来,http://em.21dtv.com/songs/60020382.mkv +江蕙-何日君再来,http://em.21dtv.com/songs/60020381.mkv +简美妍-何日君再来,http://em.21dtv.com/songs/60020380.mkv +黄妃-何日君再来,http://em.21dtv.com/songs/60020379.mkv +韩宝仪-何日君再来,http://em.21dtv.com/songs/60020378.mkv +费玉清-何日君再来,http://em.21dtv.com/songs/60020377.mkv +陈美凤-何日君再来,http://em.21dtv.com/songs/60020376.mkv +谢雷-何日君再来(演唱会),http://em.21dtv.com/songs/60020375.mkv +刘家妏-何日君再来(演唱会),http://em.21dtv.com/songs/60020374.mkv +邓丽君-何日君再来(演唱会),http://em.21dtv.com/songs/60020373.mkv +佚名-何日君再来(无原唱),http://em.21dtv.com/songs/60020372.mkv +蔡琴-何日君再来(HD演唱会),http://em.21dtv.com/songs/60020371.mkv +于立成-何日君回来,http://em.21dtv.com/songs/60020369.mkv +唐古-忽然好想念,http://em.21dtv.com/songs/60119364.mkv +许慧欣-忽然很想你,http://em.21dtv.com/songs/60021184.mkv +马蕊-忽然好想你,http://em.21dtv.com/songs/60021183.mkv +陈雅森-忽然的心跳,http://em.21dtv.com/songs/60118171.mkv +陈雅森-忽然的心跳,http://em.21dtv.com/songs/60116352.mkv +王新鹏-火热的新疆,http://em.21dtv.com/songs/60132730.mkv +雪无影-坏人都是我,http://em.21dtv.com/songs/60107344.mkv +郭富城+郑秀文+许志安+梁汉文-火热动感lalala,http://em.21dtv.com/songs/60022454.mkv +西域胡杨-火热的巴楚,http://em.21dtv.com/songs/60117209.mkv +王洁实+谢莉斯-何日彩云归,http://em.21dtv.com/songs/60020367.mkv +佚名-何日才相会,http://em.21dtv.com/songs/60020366.mkv +翁立友-憨人唱情歌,http://em.21dtv.com/songs/60113953.mkv +周鹏-豪情在心中,http://em.21dtv.com/songs/60019964.mkv +佚名-缋绻星光下,http://em.21dtv.com/songs/60095437.mkv +可米小子-好奇无上限,http://em.21dtv.com/songs/60020129.mkv +杜春梅-红旗万年飘,http://em.21dtv.com/songs/60070749.mkv +佚名-红蜻蜓的梦,http://em.21dtv.com/songs/60020936.mkv +周岚-红旗飘呀飘,http://em.21dtv.com/songs/60075779.mkv +杨冠成-红旗飘啊飘,http://em.21dtv.com/songs/60128108.mkv +林梦萍-红裙记-寻夫,http://em.21dtv.com/songs/60020937.mkv +宋佳-好奇害死猫,http://em.21dtv.com/songs/60020128.mkv +李克勤-婚前的女人,http://em.21dtv.com/songs/60022317.mkv +李克勤-婚前的女人(演唱会),http://em.21dtv.com/songs/60022316.mkv +豪图-豪情大草原,http://em.21dtv.com/songs/60099499.mkv +杜磊+田华-害怕有来生,http://em.21dtv.com/songs/60019847.mkv +梦凯-害怕失去你,http://em.21dtv.com/songs/60061232.mkv +谭晶-和平进行曲(演唱会),http://em.21dtv.com/songs/60069454.mkv +冉青霞-红苹果全新,http://em.21dtv.com/songs/60112523.mkv +Apple5-红苹果乐园,http://em.21dtv.com/songs/60090391.mkv +红苹果组合-红苹果乐园,http://em.21dtv.com/songs/60090106.mkv +杭天琪-红苹果的脸,http://em.21dtv.com/songs/60091418.mkv +潘越云-害怕唱情歌,http://em.21dtv.com/songs/60019844.mkv +佚名-害怕爱一回,http://em.21dtv.com/songs/60019842.mkv +谭维维-害怕爱上你,http://em.21dtv.com/songs/60061231.mkv +陈琳-害怕爱上你,http://em.21dtv.com/songs/60019841.mkv +甄秀珍-海鸥在飞翔,http://em.21dtv.com/songs/60088354.mkv +DRAKE-hold on were going home,http://em.21dtv.com/songs/60084719.mkv +RICHARD MARX-hold on to the nights,http://em.21dtv.com/songs/60002293.mkv +谭锡禧-house of the rising sun(演唱会),http://em.21dtv.com/songs/60082185.mkv +谭咏麟-house of the rising sun(演唱会),http://em.21dtv.com/songs/60002350.mkv +黄致列-Honey,http://em.21dtv.com/songs/60120165.mkv +周笔畅+方大同-Honey,http://em.21dtv.com/songs/60116661.mkv +方季惟-海欧飞呀飞,http://em.21dtv.com/songs/60087916.mkv +方季惟-海鸥飞呀飞,http://em.21dtv.com/songs/60019784.mkv +佚名-holding out for a hero,http://em.21dtv.com/songs/60002299.mkv +DIERKS BENTLEY-heart of a lonely girl,http://em.21dtv.com/songs/60071604.mkv +李志-和你在一起,http://em.21dtv.com/songs/60127009.mkv +王二妮-和你在一起,http://em.21dtv.com/songs/60118771.mkv +孙悦+关喆-和你在一起,http://em.21dtv.com/songs/60104926.mkv +陈佳-和你在一起,http://em.21dtv.com/songs/60098849.mkv +李志-和你在一起(演唱会),http://em.21dtv.com/songs/60075719.mkv +晓依-和你在一起,http://em.21dtv.com/songs/60069453.mkv +易帆-和你在一起,http://em.21dtv.com/songs/60064290.mkv +对月听风-和你在一起,http://em.21dtv.com/songs/60064289.mkv +乔任梁-和你在一起,http://em.21dtv.com/songs/60020419.mkv +陈绮贞-和你在一起,http://em.21dtv.com/songs/60020418.mkv +佚名-honey你置叨位,http://em.21dtv.com/songs/60002330.mkv +北原山猫-还能怎么办(无原唱),http://em.21dtv.com/songs/60019589.mkv +甜美真-候鸟与留鸟,http://em.21dtv.com/songs/60064314.mkv +蔡小虎-乎你水当当,http://em.21dtv.com/songs/60021136.mkv +佚名-怀念你一人,http://em.21dtv.com/songs/60021665.mkv +陈雷-怀念你妈妈,http://em.21dtv.com/songs/60120107.mkv +叶俊亨-化浓浓的妆,http://em.21dtv.com/songs/60103139.mkv +阿清-患难见真情,http://em.21dtv.com/songs/60066036.mkv +关淑怡-患难建真情,http://em.21dtv.com/songs/60021855.mkv +关淑怡-患难建真情(演唱会),http://em.21dtv.com/songs/60021854.mkv +阿清+红布条+邓宁-患难见真情,http://em.21dtv.com/songs/60021853.mkv +田丰+凌霜-海南欢迎你,http://em.21dtv.com/songs/60085164.mkv +梁晓宇-患难好兄弟,http://em.21dtv.com/songs/60083077.mkv +李鑫-嘿 你好吗,http://em.21dtv.com/songs/60129246.mkv +黄思婷-怀念华尔滋(无原唱),http://em.21dtv.com/songs/60021662.mkv +佚名-恨你恨到死,http://em.21dtv.com/songs/60020711.mkv +庄学忠-恨你恨到底,http://em.21dtv.com/songs/60087754.mkv +李德筠-海尼根情歌,http://em.21dtv.com/songs/60118671.mkv +凤娘-恨你的勇气,http://em.21dtv.com/songs/60075756.mkv +罗嘉豪+AJ+澳门群星-猴年大运到,http://em.21dtv.com/songs/60118841.mkv +江铭-怀念的笑容(无原唱),http://em.21dtv.com/songs/60021659.mkv +佚名-怀念的探戈,http://em.21dtv.com/songs/60021657.mkv +依刚-怀念的日子,http://em.21dtv.com/songs/60106607.mkv +陈盈洁-怀念的年代(无原唱),http://em.21dtv.com/songs/60021652.mkv +唐飞-怀念的酒啊,http://em.21dtv.com/songs/60075867.mkv +吴进法-怀念的故乡,http://em.21dtv.com/songs/60070768.mkv +董文华-海南的故事,http://em.21dtv.com/songs/60019770.mkv +杨娟-怀念的港口,http://em.21dtv.com/songs/60124107.mkv +佚名-恨你不回头,http://em.21dtv.com/songs/60020709.mkv +韩宝仪-恨你不回头,http://em.21dtv.com/songs/60020708.mkv +童唱-黑面祖师公(无原唱),http://em.21dtv.com/songs/60020534.mkv +纪晓川-和梦做朋友,http://em.21dtv.com/songs/60124338.mkv +张俊-好梦醉平江,http://em.21dtv.com/songs/60020088.mkv +刘德华+韩红-和梦一起飞,http://em.21dtv.com/songs/60020410.mkv +关牧村-红棉摇篮曲,http://em.21dtv.com/songs/60090668.mkv +赖伟锋-和梦想飞翔,http://em.21dtv.com/songs/60097601.mkv +蔡旻佑-还没往下想,http://em.21dtv.com/songs/60118028.mkv +歌浴森-还没说的话,http://em.21dtv.com/songs/60107854.mkv +彭炽权+蒋文端-魂梦绕山河(二)(戏曲),http://em.21dtv.com/songs/60092685.mkv +彭炽权+蒋文端-魂梦绕山河(一)(戏曲),http://em.21dtv.com/songs/60092684.mkv +佚名-hasta manana情莫变,http://em.21dtv.com/songs/60002114.mkv +林飞翔-恨命莫怨天(无原唱),http://em.21dtv.com/songs/60020706.mkv +佚名-hold me in your arms,http://em.21dtv.com/songs/60002286.mkv +佚名-红梅花儿开,http://em.21dtv.com/songs/60020909.mkv +佚名-红莓花儿开,http://em.21dtv.com/songs/60020907.mkv +佚名-红莓花儿开(中四),http://em.21dtv.com/songs/60020906.mkv +郑智化-幻灭的女神,http://em.21dtv.com/songs/60088764.mkv +魏如萱-黑猫的计谋,http://em.21dtv.com/songs/60112394.mkv +袁双洋-好美的古蔺,http://em.21dtv.com/songs/60083009.mkv +张海-幻灭的承诺,http://em.21dtv.com/songs/60072031.mkv +许志安-荒谬的爱情(无原唱),http://em.21dtv.com/songs/60093164.mkv +周慧敏-豪门插班生,http://em.21dtv.com/songs/60092480.mkv +云之泣-红梅白雪知,http://em.21dtv.com/songs/60127722.mkv +贾晓晨-花猫变身豹,http://em.21dtv.com/songs/60021455.mkv +郑海燕-花猫爱小鱼,http://em.21dtv.com/songs/60129668.mkv +佚名-花落知秋风,http://em.21dtv.com/songs/60021451.mkv +陈玉建-含泪做朋友,http://em.21dtv.com/songs/60075659.mkv +佚名-欢乐在今宵,http://em.21dtv.com/songs/60021765.mkv +蒋大为-婚礼祝酒歌,http://em.21dtv.com/songs/60022314.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-欢乐中国年,http://em.21dtv.com/songs/60075880.mkv +孙悦-欢乐中国年,http://em.21dtv.com/songs/60021767.mkv +群星-欢乐中国年,http://em.21dtv.com/songs/60021766.mkv +蓝心湄-喝了一点酒,http://em.21dtv.com/songs/60090200.mkv +张涛-欢乐喜相逢(演唱会),http://em.21dtv.com/songs/60067084.mkv +杨子-还留下什么,http://em.21dtv.com/songs/60101116.mkv +刘海辰-狐狸下的毒,http://em.21dtv.com/songs/60083057.mkv +仇文静-何利伟相会,http://em.21dtv.com/songs/60110836.mkv +玖壹壹-回来我身边,http://em.21dtv.com/songs/60121960.mkv +郑秀文-回来我身边,http://em.21dtv.com/songs/60022158.mkv +吕方-回来我身边,http://em.21dtv.com/songs/60022157.mkv +郑秀文-回来我身边(演唱会),http://em.21dtv.com/songs/60022156.mkv +罗逻圣-回来我的爱,http://em.21dtv.com/songs/60122006.mkv +谢珊-回来我的爱,http://em.21dtv.com/songs/60118048.mkv +风雷-回来我的爱,http://em.21dtv.com/songs/60104594.mkv +阳一-回来我的爱,http://em.21dtv.com/songs/60022155.mkv +徐靖博-回来我的爱,http://em.21dtv.com/songs/60022154.mkv +谢金燕-含泪跳恰恰,http://em.21dtv.com/songs/60019882.mkv +陈淑萍-含泪跳恰恰,http://em.21dtv.com/songs/60019881.mkv +阿香-含泪说再见,http://em.21dtv.com/songs/60120063.mkv +三宝-含泪说再见,http://em.21dtv.com/songs/60119225.mkv +关牧村-海蓝色的梦,http://em.21dtv.com/songs/60019761.mkv +刘一祯-婚礼上的歌,http://em.21dtv.com/songs/60022311.mkv +李利依-欢乐庆团圆(演唱会),http://em.21dtv.com/songs/60068339.mkv +杨树林+蔡国庆-欢乐欧若拉,http://em.21dtv.com/songs/60133850.mkv +张磊-后来你好吗,http://em.21dtv.com/songs/60120519.mkv +阿兰-后来你好吗,http://em.21dtv.com/songs/60085198.mkv +苏醒-后来你好吗,http://em.21dtv.com/songs/60021111.mkv +桂纶镁-哈啰麦克风,http://em.21dtv.com/songs/60088138.mkv +桂纶镁-哈罗麦克风,http://em.21dtv.com/songs/60019558.mkv +群星-欢乐满春天,http://em.21dtv.com/songs/60075878.mkv +巧千金-欢乐满春天,http://em.21dtv.com/songs/60075877.mkv +韩培娟-海里来的沙,http://em.21dtv.com/songs/60019767.mkv +望海高歌-火辣辣的爱,http://em.21dtv.com/songs/60113594.mkv +郭玲-火辣辣的爱,http://em.21dtv.com/songs/60086617.mkv +杜雪峰-欢乐客家人,http://em.21dtv.com/songs/60083072.mkv +潘玮柏-华丽进行曲,http://em.21dtv.com/songs/60069478.mkv +佚名-婚礼进行曲,http://em.21dtv.com/songs/60022310.mkv +胡彦斌-婚礼进行曲,http://em.21dtv.com/songs/60022309.mkv +艺林歌哥-婚礼敬酒歌,http://em.21dtv.com/songs/60096110.mkv +约翰逊淮-喝了酒的歌,http://em.21dtv.com/songs/60130643.mkv +红蔷薇-花落红叶飞,http://em.21dtv.com/songs/60107108.mkv +王蓉-火了火了火,http://em.21dtv.com/songs/60068352.mkv +郭薪仪-狐狸和大虾(儿歌),http://em.21dtv.com/songs/60090271.mkv +香巴拉组合-海螺沟之恋,http://em.21dtv.com/songs/60075648.mkv +施文彬-烘炉地之恋,http://em.21dtv.com/songs/60064300.mkv +解伟苓-婚礼的祝福,http://em.21dtv.com/songs/60107997.mkv +钟丽燕-欢乐的帐房,http://em.21dtv.com/songs/60085216.mkv +冷漠-含泪的祝福,http://em.21dtv.com/songs/60067055.mkv +陈奕迅-婚礼的祝福,http://em.21dtv.com/songs/60022308.mkv +彝人制造-欢乐的夜晚,http://em.21dtv.com/songs/60089876.mkv +王莹-画里的仙游,http://em.21dtv.com/songs/60075861.mkv +蔡琴-华丽的笑脸,http://em.21dtv.com/songs/60092029.mkv +余天-含泪的微笑,http://em.21dtv.com/songs/60019878.mkv +龙飘飘-含泪的微笑,http://em.21dtv.com/songs/60019877.mkv +林佳音-后来的我们,http://em.21dtv.com/songs/60125767.mkv +五月天-后来的我们,http://em.21dtv.com/songs/60125089.mkv +黄品冠-后来的我们,http://em.21dtv.com/songs/60021110.mkv +贺敬轩-后来的你我,http://em.21dtv.com/songs/60128415.mkv +陈绮贞-华丽的冒险,http://em.21dtv.com/songs/60021568.mkv +汁橙音乐+RPG+巧克力-嘿来点乐子,http://em.21dtv.com/songs/60075745.mkv +雷应婕-华丽的牢笼,http://em.21dtv.com/songs/60101568.mkv +韩宝仪-含泪的离别,http://em.21dtv.com/songs/60019876.mkv +扎西尼玛-欢乐的海洋,http://em.21dtv.com/songs/60021741.mkv +王小婉-后来的后来,http://em.21dtv.com/songs/60124255.mkv +李茂山-含泪的分手,http://em.21dtv.com/songs/60019875.mkv +高胜美-含泪的分手,http://em.21dtv.com/songs/60019874.mkv +SUPER JUNIOR-华丽的独秀,http://em.21dtv.com/songs/60075858.mkv +宋孟君-活力大冲关,http://em.21dtv.com/songs/60094473.mkv +韩宝仪-含泪的别离,http://em.21dtv.com/songs/60019873.mkv +张智成-后来才知道,http://em.21dtv.com/songs/60021108.mkv +程崇胜-后来才知道,http://em.21dtv.com/songs/60021107.mkv +马智宇-婚礼串烧歌,http://em.21dtv.com/songs/60110692.mkv +1931组合-欢乐冲击波,http://em.21dtv.com/songs/60128659.mkv +庄心妍-后来才发现,http://em.21dtv.com/songs/60111045.mkv +黄西田+樱桃姐妹-红了不着时,http://em.21dtv.com/songs/60020883.mkv +余洋-回来吧蓝天,http://em.21dtv.com/songs/60118341.mkv +佚名-回来吧好吗,http://em.21dtv.com/songs/60022147.mkv +刘德华-回来吧好吗,http://em.21dtv.com/songs/60022146.mkv +黑骏马组合-呼伦贝尔人,http://em.21dtv.com/songs/60122312.mkv +乌日塔-呼伦贝尔人,http://em.21dtv.com/songs/60090492.mkv +玛希-呼伦贝尔美,http://em.21dtv.com/songs/60083052.mkv +许晋杭-海蛎爱上鱼,http://em.21dtv.com/songs/60093694.mkv +胡力-狐狸爱上熊,http://em.21dtv.com/songs/60021197.mkv +胡力-狐狸爱上熊(演唱会),http://em.21dtv.com/songs/60021196.mkv +韩磊-花开在眼前,http://em.21dtv.com/songs/60128583.mkv +陈雷-何苦再留恋,http://em.21dtv.com/songs/60020357.mkv +叶胜钦-何苦又何苦,http://em.21dtv.com/songs/60118419.mkv +阿才-花开心也开,http://em.21dtv.com/songs/60104529.mkv +白雪莉-花开幸福来,http://em.21dtv.com/songs/60134034.mkv +龙世杰-后卡式时代,http://em.21dtv.com/songs/60124767.mkv +谭晶-花开千万朵,http://em.21dtv.com/songs/60106292.mkv +红蔷薇-花开情更浓,http://em.21dtv.com/songs/60101154.mkv +张震岳-花开了没有(无原唱),http://em.21dtv.com/songs/60021435.mkv +Frank秋枫-很开很开心,http://em.21dtv.com/songs/60114940.mkv +彭羚-花哭花瓣飞,http://em.21dtv.com/songs/60021438.mkv +言承旭-黑咖啡日记,http://em.21dtv.com/songs/60020521.mkv +新疆民歌-欢快的玩吧,http://em.21dtv.com/songs/60089915.mkv +苏玮-花开的声音,http://em.21dtv.com/songs/60122059.mkv +潘小芬-花开的声音,http://em.21dtv.com/songs/60067077.mkv +张靓颖-花开的声音,http://em.21dtv.com/songs/60021421.mkv +容祖儿-花开的时候,http://em.21dtv.com/songs/60125417.mkv +吴莺音-花开等你采,http://em.21dtv.com/songs/60087569.mkv +陈赫-会哭的礼物,http://em.21dtv.com/songs/60131961.mkv +陈赫-会哭的礼物,http://em.21dtv.com/songs/60075931.mkv +顺子-花开的季节,http://em.21dtv.com/songs/60109021.mkv +严当当-花开的季节,http://em.21dtv.com/songs/60021420.mkv +庄心妍-花开等花谢,http://em.21dtv.com/songs/60125476.mkv +庄心妍-花开等花谢,http://em.21dtv.com/songs/60123892.mkv +龙千玉-花开等后冬,http://em.21dtv.com/songs/60021422.mkv +黄磊-花开的地方,http://em.21dtv.com/songs/60021419.mkv +斯兰-花开不等待,http://em.21dtv.com/songs/60110235.mkv +阿玻-欢聚在一起,http://em.21dtv.com/songs/60021740.mkv +巧千金-火鸡真美丽,http://em.21dtv.com/songs/60022438.mkv +陶燕青-回家异乡人,http://em.21dtv.com/songs/60118177.mkv +谭雪-花就要开了,http://em.21dtv.com/songs/60075841.mkv +毛阿敏-海角未归人,http://em.21dtv.com/songs/60019742.mkv +蔡丽津+李明洋-海角天涯泪,http://em.21dtv.com/songs/60120929.mkv +天籁天-海角石之恋,http://em.21dtv.com/songs/60122638.mkv +欧倩怡-皇家双妹唛,http://em.21dtv.com/songs/60021887.mkv +林子祥-花街七十号,http://em.21dtv.com/songs/60092861.mkv +林一峰-花街七十号(演唱会),http://em.21dtv.com/songs/60021413.mkv +王羽泽-回家陪爸妈,http://em.21dtv.com/songs/60088314.mkv +六折真人-和寂寞有染,http://em.21dtv.com/songs/60069452.mkv +符琼音-很久没哭了,http://em.21dtv.com/songs/60020643.mkv +陈坤-好久没回家,http://em.21dtv.com/songs/60064280.mkv +徐子崴-好久没回家,http://em.21dtv.com/songs/60020065.mkv +徐子岁-好久没回家(演唱会),http://em.21dtv.com/songs/60020064.mkv +颜羽+贺世哲-海鶄落之歌,http://em.21dtv.com/songs/60102937.mkv +王小娟-红军老妈妈,http://em.21dtv.com/songs/60131654.mkv +梁耀安+倪惠英-幻觉离恨天,http://em.21dtv.com/songs/60021814.mkv +斯日其玛-弘吉剌姑娘,http://em.21dtv.com/songs/60068320.mkv +郭娅丽-回家看妈妈,http://em.21dtv.com/songs/60068349.mkv +杨鸿-回家看爸妈,http://em.21dtv.com/songs/60100196.mkv +徐梦晗-红酒和香水,http://em.21dtv.com/songs/60115948.mkv +黄文星-好酒好兄弟,http://em.21dtv.com/songs/60126477.mkv +MAYA-回家好不好(无原唱),http://em.21dtv.com/songs/60022126.mkv +林子祥-花街70号(演唱会),http://em.21dtv.com/songs/60021412.mkv +群星-回家过年吧,http://em.21dtv.com/songs/60108811.mkv +大冢爱-火箭帆布鞋,http://em.21dtv.com/songs/60022440.mkv +那日松-回家的欲望,http://em.21dtv.com/songs/60064351.mkv +林良欢-红酒的眼泪,http://em.21dtv.com/songs/60130486.mkv +张克帆-还记得我吗,http://em.21dtv.com/songs/60019580.mkv +刘德华-还记得我吗,http://em.21dtv.com/songs/60019579.mkv +周华健-回家的时候,http://em.21dtv.com/songs/60090834.mkv +李进-喝酒的朋友,http://em.21dtv.com/songs/60020293.mkv +少杰-还记得那年,http://em.21dtv.com/songs/60114508.mkv +朱桦-花间的露珠,http://em.21dtv.com/songs/60091290.mkv +林志炫-回家断了线,http://em.21dtv.com/songs/60075915.mkv +张挥-回家的路上,http://em.21dtv.com/songs/60105037.mkv +何耀珊-很久的很久,http://em.21dtv.com/songs/60020641.mkv +龙千玉-豪记大会串,http://em.21dtv.com/songs/60002606.mkv +赫拉含青-黄桷大佛颂,http://em.21dtv.com/songs/60134256.mkv +周显-喝酒不开车,http://em.21dtv.com/songs/60127849.mkv +张瀚元-喝酒别开车,http://em.21dtv.com/songs/60075706.mkv +办桌二人组-喝酒甭开车(无原唱),http://em.21dtv.com/songs/60020292.mkv +郭峰-好久不见面,http://em.21dtv.com/songs/60118972.mkv +吴兢-火箭兵的梦,http://em.21dtv.com/songs/60022439.mkv +龙宽-Hi有我在,http://em.21dtv.com/songs/60109786.mkv +张信哲-have i told you lately,http://em.21dtv.com/songs/60002120.mkv +VAN MORRISON-have i told you lately,http://em.21dtv.com/songs/60002119.mkv +ROD STEWART-have i told you lately,http://em.21dtv.com/songs/60002118.mkv +恭硕良-help is on the way,http://em.21dtv.com/songs/60067905.mkv +50 CENT-hate it or love it,http://em.21dtv.com/songs/60002116.mkv +THIRDEYEDBLIND-hows it going to be,http://em.21dtv.com/songs/60002381.mkv +掠琼-High曲,http://em.21dtv.com/songs/60113537.mkv +任承浩-好好在一起,http://em.21dtv.com/songs/60070729.mkv +张琼-红红中国情,http://em.21dtv.com/songs/60097549.mkv +任军太-火火中国梦,http://em.21dtv.com/songs/60107479.mkv +常思思-辉煌中国梦,http://em.21dtv.com/songs/60094080.mkv +多元神话-火火中国风,http://em.21dtv.com/songs/60085248.mkv +刘小娜-花好月圆圆,http://em.21dtv.com/songs/60021375.mkv +杨千嬅+任贤齐-花好月圆夜,http://em.21dtv.com/songs/60021374.mkv +任贤齐-花好月圆夜(演唱会),http://em.21dtv.com/songs/60021372.mkv +小肥-黄昏音乐会,http://em.21dtv.com/songs/60066037.mkv +杭天琪-黄河摇月光,http://em.21dtv.com/songs/60021911.mkv +胜屿-和回忆生活,http://em.21dtv.com/songs/60081385.mkv +至上励合-还好有你在,http://em.21dtv.com/songs/60080366.mkv +李宇春-皇后与梦想(演唱会),http://em.21dtv.com/songs/60021884.mkv +PCHY-还好遇见你,http://em.21dtv.com/songs/60097556.mkv +宇翔-好还要更好,http://em.21dtv.com/songs/60125403.mkv +吴雨霏-狠狠(演唱会),http://em.21dtv.com/songs/60075754.mkv +彭海桐-好好想想你,http://em.21dtv.com/songs/60020038.mkv +龙千玉-黄昏相思曲,http://em.21dtv.com/songs/60021961.mkv +邓丽君-嘿嘿小可爱,http://em.21dtv.com/songs/60020621.mkv +佚名-浣花洗剑录,http://em.21dtv.com/songs/60021850.mkv +李龙基-浣花洗剑录(演唱会),http://em.21dtv.com/songs/60021849.mkv +曹寅-会呼吸的痛,http://em.21dtv.com/songs/60069483.mkv +徐健淇-会呼吸的痛,http://em.21dtv.com/songs/60063200.mkv +梁静茹-会呼吸的痛,http://em.21dtv.com/songs/60022280.mkv +孙淑媚-憨憨为你等,http://em.21dtv.com/songs/60019862.mkv +山大+天城-好好谈恋爱,http://em.21dtv.com/songs/60126813.mkv +陶喆+关诗敏-好好说再见,http://em.21dtv.com/songs/60083007.mkv +陶喆-好好说再见,http://em.21dtv.com/songs/60080270.mkv +元嘉-狠狠失去你,http://em.21dtv.com/songs/60020682.mkv +阎维文-黄河水长流,http://em.21dtv.com/songs/60021906.mkv +戴爱玲-坏坏惹人爱,http://em.21dtv.com/songs/60021697.mkv +小琢-荷花情未了,http://em.21dtv.com/songs/60121599.mkv +郑琇月-嘿!好朋友啊(无原唱),http://em.21dtv.com/songs/60020614.mkv +佚名-恒河那一端,http://em.21dtv.com/songs/60020728.mkv +周韦杰-会好袂完全,http://em.21dtv.com/songs/60075930.mkv +英皇群星-和华丽有约,http://em.21dtv.com/songs/60112174.mkv +华语群星-和华丽有约,http://em.21dtv.com/songs/60110057.mkv +海哲明-黄昏练习曲,http://em.21dtv.com/songs/60106077.mkv +刘小钰-红黄蓝白紫(演唱会),http://em.21dtv.com/songs/60020871.mkv +曾羽飞-后悔来不及,http://em.21dtv.com/songs/60122811.mkv +牛燕-黄河口儿女,http://em.21dtv.com/songs/60117022.mkv +雷佳-槐花几时开,http://em.21dtv.com/songs/60083068.mkv +刘玉婉-槐花几时开,http://em.21dtv.com/songs/60021683.mkv +谢采妘-红花襟上插,http://em.21dtv.com/songs/60020862.mkv +郑嘉阳-嗨还记得吗,http://em.21dtv.com/songs/60063445.mkv +SUPER GEAR-哈哈镜兵团,http://em.21dtv.com/songs/60070722.mkv +乔冬宇+刘芳-红红好中国,http://em.21dtv.com/songs/60120287.mkv +奇力格尔+阿丽玛-呼和浩特情,http://em.21dtv.com/songs/60115082.mkv +吴官辉-火火火起来,http://em.21dtv.com/songs/60132291.mkv +张真-红红好姑娘,http://em.21dtv.com/songs/60020853.mkv +马智宇-好好喝顿酒(演唱会),http://em.21dtv.com/songs/60075675.mkv +山野-很恨很爱你,http://em.21dtv.com/songs/60020640.mkv +林姗-黄昏高雄港,http://em.21dtv.com/songs/60131546.mkv +小骆驼+海荣-好好过日子,http://em.21dtv.com/songs/60075674.mkv +范海荣+小骆驼-好好过日子(演唱会),http://em.21dtv.com/songs/60071990.mkv +梦鸽-好好过日子,http://em.21dtv.com/songs/60020028.mkv +李亮超+渔圈-还会等着你,http://em.21dtv.com/songs/60085221.mkv +程楚煜-辉煌的足迹,http://em.21dtv.com/songs/60099437.mkv +刘晶-火红的中国,http://em.21dtv.com/songs/60101050.mkv +刘晶-火火的中国,http://em.21dtv.com/songs/60080644.mkv +曾敏-火火的中国,http://em.21dtv.com/songs/60022437.mkv +陶建阿成-火红的彝乡,http://em.21dtv.com/songs/60135957.mkv +涂紫凝-好好的忘记,http://em.21dtv.com/songs/60020025.mkv +田野-后海的晚风,http://em.21dtv.com/songs/60124301.mkv +苏勒亚其其格-火红的太阳,http://em.21dtv.com/songs/60072053.mkv +江蕙-黄昏的台北,http://em.21dtv.com/songs/60021947.mkv +佚名-黄昏的所在,http://em.21dtv.com/songs/60021946.mkv +于林真-黄昏的所在(无原唱),http://em.21dtv.com/songs/60021945.mkv +草蜢-黄昏都市人(演唱会),http://em.21dtv.com/songs/60021950.mkv +刘伟-花海的世界,http://em.21dtv.com/songs/60094415.mkv +罗文-花花的世界(演唱会),http://em.21dtv.com/songs/60021384.mkv +郭丽霞-火火的时代,http://em.21dtv.com/songs/60108062.mkv +火红-火红的日子,http://em.21dtv.com/songs/60075943.mkv +汤灿-红红的日子,http://em.21dtv.com/songs/60020849.mkv +东方红艳+赵真-火火的情郎,http://em.21dtv.com/songs/60107463.mkv +丹金懋-火火的情歌,http://em.21dtv.com/songs/60125078.mkv +赵真+东方红艳-火火的情歌,http://em.21dtv.com/songs/60114102.mkv +大无限乐团-黄昏_DO_AS_INFINITY,http://em.21dtv.com/songs/60087627.mkv +阿吉仔-后悔的目屎,http://em.21dtv.com/songs/60126347.mkv +阿吉仔-后悔的目屎,http://em.21dtv.com/songs/60021091.mkv +肖亮-火红的妹妹,http://em.21dtv.com/songs/60120867.mkv +林沛涌-红红的玫瑰,http://em.21dtv.com/songs/60106983.mkv +佚名-黄昏的马车,http://em.21dtv.com/songs/60021943.mkv +美黛-黄昏的街头,http://em.21dtv.com/songs/60021942.mkv +张信哲-后悔的借口,http://em.21dtv.com/songs/60111856.mkv +张信哲-后悔的借口,http://em.21dtv.com/songs/60087793.mkv +张信哲-后悔的藉口,http://em.21dtv.com/songs/60021090.mkv +郑少秋-黄河的呼唤(演唱会),http://em.21dtv.com/songs/60021899.mkv +张启靓-火红的花儿,http://em.21dtv.com/songs/60022425.mkv +张真-黄河大合唱,http://em.21dtv.com/songs/60021898.mkv +孙伟-红红的火把,http://em.21dtv.com/songs/60075771.mkv +林依轮-火火的歌谣,http://em.21dtv.com/songs/60022436.mkv +文夏-黄昏的故乡(无原唱),http://em.21dtv.com/songs/60079603.mkv +罗时丰-黄昏的故乡,http://em.21dtv.com/songs/60075900.mkv +余天-黄昏的故乡,http://em.21dtv.com/songs/60021940.mkv +秀兰玛雅-黄昏的故乡,http://em.21dtv.com/songs/60021939.mkv +龙劭华-黄昏的故乡,http://em.21dtv.com/songs/60021938.mkv +蔡振南-黄昏的故乡,http://em.21dtv.com/songs/60021937.mkv +东方红艳+赵真-火火的姑娘(HD),http://em.21dtv.com/songs/60133324.mkv +东方红艳-火火的姑娘,http://em.21dtv.com/songs/60083094.mkv +夏韶声-黄昏的过客,http://em.21dtv.com/songs/60021941.mkv +赵咏华-好好的过吧,http://em.21dtv.com/songs/60020024.mkv +马忠伟-红蝴蝶飞了,http://em.21dtv.com/songs/60122279.mkv +关牧村-黄昏的等待,http://em.21dtv.com/songs/60021936.mkv +罗大佑-皇后大道东,http://em.21dtv.com/songs/60021881.mkv +罗大佑+蒋志光-皇后大道东(演唱会),http://em.21dtv.com/songs/60021880.mkv +巴郎百川-黄昏的炊烟,http://em.21dtv.com/songs/60021935.mkv +阿斯根-火红的畅想,http://em.21dtv.com/songs/60022424.mkv +庄红虎-辉煌的春天,http://em.21dtv.com/songs/60123897.mkv +解晓东-火火的北京,http://em.21dtv.com/songs/60022435.mkv +龚琳娜-黄河船夫曲,http://em.21dtv.com/songs/60094786.mkv +佚名-黄河船夫曲,http://em.21dtv.com/songs/60021897.mkv +文欣-荷花别样红,http://em.21dtv.com/songs/60020464.mkv +张学友-和好不如初(演唱会),http://em.21dtv.com/songs/60020408.mkv +余天-红黑勃鲁斯,http://em.21dtv.com/songs/60015971.mkv +刘浩龙-火花不等人,http://em.21dtv.com/songs/60022434.mkv +阿华-好花不常在,http://em.21dtv.com/songs/60020045.mkv +佚名-好花不常开,http://em.21dtv.com/songs/60020044.mkv +辛夷-好花不常开(无原唱),http://em.21dtv.com/songs/60020043.mkv +莫文蔚-好好爱自己,http://em.21dtv.com/songs/60091964.mkv +李碧华-好好爱一场,http://em.21dtv.com/songs/60020020.mkv +刘家昌-好好爱我吧,http://em.21dtv.com/songs/60097546.mkv +杨愿明-狠狠爱死你,http://em.21dtv.com/songs/60111187.mkv +杨小萍-后悔爱上你,http://em.21dtv.com/songs/60089982.mkv +龙飘飘-后悔爱上你,http://em.21dtv.com/songs/60021088.mkv +林淑蓉-后悔爱上你,http://em.21dtv.com/songs/60021087.mkv +邓丽君-后悔爱上你,http://em.21dtv.com/songs/60021086.mkv +铁木隆-好好爱父母,http://em.21dtv.com/songs/60068311.mkv +ALAN JACKSON-hard hat and a hammer,http://em.21dtv.com/songs/60002104.mkv +丁晓红-红歌中国行(演唱会),http://em.21dtv.com/songs/60062326.mkv +潘劲东+何静-回归新世纪,http://em.21dtv.com/songs/60088238.mkv +陈奕迅-好歌献给你,http://em.21dtv.com/songs/60093398.mkv +陈展鹏-好歌献给你(演唱会),http://em.21dtv.com/songs/60075672.mkv +沈殿霞-好歌献给你(演唱会),http://em.21dtv.com/songs/60020003.mkv +罗文-好歌献给你(演唱会),http://em.21dtv.com/songs/60020002.mkv +雪枫-还给我幸福,http://em.21dtv.com/songs/60067087.mkv +东来东往-活该我认真,http://em.21dtv.com/songs/60110820.mkv +王叙然-还给我的钱,http://em.21dtv.com/songs/60019577.mkv +戴荃-湖光水色调,http://em.21dtv.com/songs/60126929.mkv +赵翊民-灰姑娘的屋,http://em.21dtv.com/songs/60022028.mkv +宿雨涵-灰姑娘的梦,http://em.21dtv.com/songs/60022027.mkv +丁楠皓-好姑娘不多,http://em.21dtv.com/songs/60086478.mkv +王二妮+红都组合-红高粱组曲,http://em.21dtv.com/songs/60110372.mkv +红哥-红歌继续唱,http://em.21dtv.com/songs/60100373.mkv +JLS-hottest girl in the world,http://em.21dtv.com/songs/60073354.mkv +陈娇-猴哥回来了,http://em.21dtv.com/songs/60122229.mkv +谢军-憨哥哥的歌,http://em.21dtv.com/songs/60019858.mkv +枫桥-嘿光腚娃娃,http://em.21dtv.com/songs/60106025.mkv +王飞跃-划过的流星,http://em.21dtv.com/songs/60085496.mkv +孔子雯-好歌大家唱,http://em.21dtv.com/songs/60067058.mkv +黄雅莉-换个地方住,http://em.21dtv.com/songs/60070775.mkv +佚名-护法遵纪歌,http://em.21dtv.com/songs/60021298.mkv +甘国卫+胡美仪-花放有情天,http://em.21dtv.com/songs/60021361.mkv +柳影虹-好风为你吹(演唱会),http://em.21dtv.com/songs/60075671.mkv +刘栋升+李娜-合肥我爱你,http://em.21dtv.com/songs/60104830.mkv +董伟-海风轻轻吹,http://em.21dtv.com/songs/60106244.mkv +任剑辉+红线女-红拂女私奔,http://em.21dtv.com/songs/60020836.mkv +飘乐队-合肥好大事,http://em.21dtv.com/songs/60088969.mkv +秀兰玛雅-寒风的珠泪,http://em.21dtv.com/songs/60019902.mkv +吉克隽逸-会飞的野马,http://em.21dtv.com/songs/60116625.mkv +陈松伶-会飞的温柔,http://em.21dtv.com/songs/60022274.mkv +许志安-荒废的乐园,http://em.21dtv.com/songs/60021860.mkv +尤雅-海风吹心肝(无原唱),http://em.21dtv.com/songs/60079967.mkv +佚名-海风吹心肝(无原唱),http://em.21dtv.com/songs/60019721.mkv +马忠伟-花儿与少年,http://em.21dtv.com/songs/60129807.mkv +景仪-花儿与少年,http://em.21dtv.com/songs/60089935.mkv +女子十二乐坊-花儿与少年,http://em.21dtv.com/songs/60089775.mkv +张也-花儿与少年,http://em.21dtv.com/songs/60021358.mkv +王苏芬-花儿与少年,http://em.21dtv.com/songs/60021357.mkv +谭晶-花儿与少年,http://em.21dtv.com/songs/60021356.mkv +黄灿-花儿与少年,http://em.21dtv.com/songs/60021355.mkv +陈男优+焦梦依-Hey青春,http://em.21dtv.com/songs/60106422.mkv +佚名-好额与穷赤,http://em.21dtv.com/songs/60095409.mkv +彝人制造-花儿为你开,http://em.21dtv.com/songs/60089877.mkv +蓓蕾-花儿头上插(演唱会),http://em.21dtv.com/songs/60021341.mkv +防弹少年团-荷尔蒙战争,http://em.21dtv.com/songs/60118124.mkv +郑容和+鲜于贞雅-Hello,http://em.21dtv.com/songs/60135812.mkv +麋先生-Hello,http://em.21dtv.com/songs/60133119.mkv +SunBee-Hello,http://em.21dtv.com/songs/60129993.mkv +泳儿-Hello,http://em.21dtv.com/songs/60113801.mkv +Boys Republic-Hello,http://em.21dtv.com/songs/60111590.mkv +刘承宇-Hello,http://em.21dtv.com/songs/60099112.mkv +DRAGONETTE+MARTIN SOLVEIG-HELLO,http://em.21dtv.com/songs/60098019.mkv +薛之谦-花儿和少年,http://em.21dtv.com/songs/60132865.mkv +薛之谦-花儿和少年,http://em.21dtv.com/songs/60127369.mkv +陈雷-好额和穷赤(无原唱),http://em.21dtv.com/songs/60019996.mkv +张文娟-花儿虹朵朵,http://em.21dtv.com/songs/60109307.mkv +张文娟-花儿虹朵朵,http://em.21dtv.com/songs/60108500.mkv +常思思-哈尔滨之夏,http://em.21dtv.com/songs/60064271.mkv +朱明-哈尔滨姑娘,http://em.21dtv.com/songs/60075636.mkv +常来-哈尔滨姑娘,http://em.21dtv.com/songs/60071977.mkv +LINKIN PARK+Kiiara-Heavy,http://em.21dtv.com/songs/60132097.mkv +黄永平-红豆醉相思,http://em.21dtv.com/songs/60072007.mkv +张岩峰-化蝶永相随,http://em.21dtv.com/songs/60067081.mkv +张靓颖-好大一棵树,http://em.21dtv.com/songs/60087851.mkv +田震-好大一棵树,http://em.21dtv.com/songs/60019983.mkv +那英-好大一棵树,http://em.21dtv.com/songs/60019982.mkv +光良-回到一个人,http://em.21dtv.com/songs/60022097.mkv +[Group] +groupName=十六万歌曲MV等 - 69 +TWINS-hello how do you do,http://em.21dtv.com/songs/60002189.mkv +林宇中-活到一百岁,http://em.21dtv.com/songs/60022354.mkv +黄蓉-惠东迎宾曲,http://em.21dtv.com/songs/60095169.mkv +黄容-惠东迎宾曲,http://em.21dtv.com/songs/60093621.mkv +甘国卫+胡美仪-花蝶喜相逢,http://em.21dtv.com/songs/60021327.mkv +胡佳琛-回到小时候,http://em.21dtv.com/songs/60022096.mkv +高枫-活得像个人,http://em.21dtv.com/songs/60081888.mkv +高枫-活得像个人(演唱会),http://em.21dtv.com/songs/60022360.mkv +峻一杰-回到我身边,http://em.21dtv.com/songs/60061269.mkv +东来东往-回到我身边,http://em.21dtv.com/songs/60022094.mkv +戴辛尉-回到我身边,http://em.21dtv.com/songs/60022093.mkv +AT17-魂断威尼斯,http://em.21dtv.com/songs/60092135.mkv +佚名-回到我梦里(无原唱),http://em.21dtv.com/songs/60022092.mkv +孙楠-蝴蝶吻花山,http://em.21dtv.com/songs/60087659.mkv +韩宝仪-寒冬望春风,http://em.21dtv.com/songs/60019901.mkv +王菲-红豆(双语种),http://em.21dtv.com/songs/60020829.mkv +孟杨-回到十年前,http://em.21dtv.com/songs/60122666.mkv +童丽-红豆生南国,http://em.21dtv.com/songs/60085189.mkv +冷酷-化蝶随你飞,http://em.21dtv.com/songs/60110003.mkv +彭炽权+曾慧-魂断水绘园(戏曲),http://em.21dtv.com/songs/60092667.mkv +方伊琪+王憓+郭慧诗-换到千般恨(演唱会),http://em.21dtv.com/songs/60075893.mkv +柳影虹-换到千般恨(演唱会),http://em.21dtv.com/songs/60062694.mkv +柳影虹-换到千般恨,http://em.21dtv.com/songs/60021830.mkv +张伟文-换到千般恨(演唱会),http://em.21dtv.com/songs/60021829.mkv +袁丽嫦-换到千般恨(演唱会),http://em.21dtv.com/songs/60021828.mkv +方伊琪-换到千般恨(演唱会),http://em.21dtv.com/songs/60021827.mkv +柳影红-换到千般爱,http://em.21dtv.com/songs/60092887.mkv +司文+司徒兰芳-蝴蝶翩翩飞,http://em.21dtv.com/songs/60075827.mkv +佚名-蝴蝶黏着花(无原唱),http://em.21dtv.com/songs/60021262.mkv +宋琦林-回到那一天,http://em.21dtv.com/songs/60112640.mkv +郝云-回到那一天,http://em.21dtv.com/songs/60064350.mkv +许佳慧-回到那时候,http://em.21dtv.com/songs/60097535.mkv +刘德华-回到你身边(演唱会),http://em.21dtv.com/songs/60022089.mkv +林晓勇-回到你面前,http://em.21dtv.com/songs/60119707.mkv +赖仪雯-好胆你就来,http://em.21dtv.com/songs/60104448.mkv +中国好声音第二季-好胆你就来(叶玮庭),http://em.21dtv.com/songs/60081485.mkv +那英-好胆你就来(演唱会),http://em.21dtv.com/songs/60069446.mkv +张惠妹-好胆你就来,http://em.21dtv.com/songs/60019986.mkv +欧凯明+郭凤女-魂断马嵬坡(戏曲),http://em.21dtv.com/songs/60092950.mkv +莫智钦+赵曼-坏得没人爱,http://em.21dtv.com/songs/60106236.mkv +赵曼+莫智钦-坏的没人爱,http://em.21dtv.com/songs/60105393.mkv +李芳-海底两万米,http://em.21dtv.com/songs/60019715.mkv +罗时丰-好歹拢是命,http://em.21dtv.com/songs/60019985.mkv +阿吉仔-好歹拢是命,http://em.21dtv.com/songs/60019984.mkv +吴莺音-红灯绿酒夜,http://em.21dtv.com/songs/60020805.mkv +林子娟-蝴蝶恋花香,http://em.21dtv.com/songs/60116962.mkv +侯旭-回到老地方(演唱会),http://em.21dtv.com/songs/60022088.mkv +糖兄妹-花都开好了(演唱会),http://em.21dtv.com/songs/60069474.mkv +S.H.E-花都开好了,http://em.21dtv.com/songs/60021328.mkv +格子兮+潘成-皇帝叫外卖,http://em.21dtv.com/songs/60118727.mkv +佚名-how deep is your love,http://em.21dtv.com/songs/60002366.mkv +群星-how deep is your love,http://em.21dtv.com/songs/60002365.mkv +YUKI-how deep is your love,http://em.21dtv.com/songs/60002364.mkv +BEE GEES-how deep is your love(演唱会),http://em.21dtv.com/songs/60002363.mkv +佚名-how deep is your love(无原唱),http://em.21dtv.com/songs/60002362.mkv +童安格-how do i reverse time,http://em.21dtv.com/songs/60002371.mkv +飞轮海-活得更像我,http://em.21dtv.com/songs/60022356.mkv +佚名-蝴蝶飞远了(无原唱),http://em.21dtv.com/songs/60021249.mkv +徐鑫+金鹏-红灯二十秒,http://em.21dtv.com/songs/60102269.mkv +伍佰-荒诞的欲望,http://em.21dtv.com/songs/60089608.mkv +张振宇-蝴蝶的眼泪,http://em.21dtv.com/songs/60021244.mkv +沈芯羽-皇帝的新装,http://em.21dtv.com/songs/60021876.mkv +摩登咖啡-皇帝的新衣,http://em.21dtv.com/songs/60068346.mkv +刘浩楠-狠毒的女人,http://em.21dtv.com/songs/60081085.mkv +张志政-狠毒的女人,http://em.21dtv.com/songs/60020678.mkv +徐子涵-蝴蝶的歌唱,http://em.21dtv.com/songs/60087878.mkv +TWINS+草蜢-红当当飞吻,http://em.21dtv.com/songs/60020790.mkv +秋裤大叔+冷漠-皇帝的烦恼,http://em.21dtv.com/songs/60108781.mkv +赵小兵+冷漠-皇帝的烦恼,http://em.21dtv.com/songs/60075898.mkv +团梅-回到大草原,http://em.21dtv.com/songs/60022082.mkv +LF兄弟-海盗大船长,http://em.21dtv.com/songs/60113170.mkv +谭维维-蝴蝶的翅膀,http://em.21dtv.com/songs/60021243.mkv +孟文豪-蝴蝶的爱情,http://em.21dtv.com/songs/60083055.mkv +易灵汐-浩荡草原风,http://em.21dtv.com/songs/60071998.mkv +李蕙敏-活得比你好,http://em.21dtv.com/songs/60022355.mkv +上明+简美雀-寒冬变春天,http://em.21dtv.com/songs/60130032.mkv +王成勇-蝴蝶爱上花,http://em.21dtv.com/songs/60063014.mkv +M.AGER+J.YELLEN-happy days are here again(无原唱),http://em.21dtv.com/songs/60002078.mkv +成林江措-红尘中有你,http://em.21dtv.com/songs/60111924.mkv +陆锋-霍城走天涯,http://em.21dtv.com/songs/60094326.mkv +龙旭-红尘中等你,http://em.21dtv.com/songs/60119079.mkv +冷漠+司徒兰芳-红尘永相伴,http://em.21dtv.com/songs/60069461.mkv +陈瑞-红尘永相伴,http://em.21dtv.com/songs/60020779.mkv +City魅-还差一公里,http://em.21dtv.com/songs/60113142.mkv +沈芳如-红尘一场梦,http://em.21dtv.com/songs/60020778.mkv +吕薇-红船向未来,http://em.21dtv.com/songs/60020784.mkv +西子-红尘相思情,http://em.21dtv.com/songs/60086597.mkv +阿桑古卡-何处寻爱人(藏语),http://em.21dtv.com/songs/60088837.mkv +尚雯婕-画出我世界,http://em.21dtv.com/songs/60081142.mkv +叶瑗菱-和春天作伙(无原唱),http://em.21dtv.com/songs/60020406.mkv +黄勇-和从前一样,http://em.21dtv.com/songs/60101009.mkv +洪敬尧-火车情人梦,http://em.21dtv.com/songs/60125871.mkv +彭伟华-豁出去的爱(无原唱),http://em.21dtv.com/songs/60022346.mkv +陆虎-花吃泡面男,http://em.21dtv.com/songs/60079962.mkv +伍卫国-何处觅知音(演唱会),http://em.21dtv.com/songs/60020343.mkv +杨浩龙-红尘梦一场,http://em.21dtv.com/songs/60109449.mkv +中国龙-红尘陌上花,http://em.21dtv.com/songs/60113227.mkv +邓建明-何处觅蓬莱,http://em.21dtv.com/songs/60020342.mkv +冷漠+云菲菲-红尘里的花,http://em.21dtv.com/songs/60110001.mkv +蔡卓妍-火车瓹山窿,http://em.21dtv.com/songs/60075941.mkv +赵传-何处见青天,http://em.21dtv.com/songs/60020341.mkv +邓建明-何处见蓬莱,http://em.21dtv.com/songs/60093244.mkv +许冠杰-何处见蓬来,http://em.21dtv.com/songs/60093134.mkv +JAY LIVINGSTON-how can i tell her,http://em.21dtv.com/songs/60002356.mkv +佚名-how can i be sure,http://em.21dtv.com/songs/60002353.mkv +王馨-活出好滋味,http://em.21dtv.com/songs/60120787.mkv +邹文正+AOA-红茶或咖啡,http://em.21dtv.com/songs/60070744.mkv +敖犬-很纯很暧昧,http://em.21dtv.com/songs/60132489.mkv +陆虎-很扯的雨天,http://em.21dtv.com/songs/60108114.mkv +陆虎-很扯的雨天,http://em.21dtv.com/songs/60080231.mkv +周杰伦-火车叼位去,http://em.21dtv.com/songs/60022412.mkv +冷漠-红尘的你我,http://em.21dtv.com/songs/60131198.mkv +冷漠-红尘的你我,http://em.21dtv.com/songs/60125166.mkv +周国贤-汉城沉没了,http://em.21dtv.com/songs/60019923.mkv +杨静-红尘啊红尘,http://em.21dtv.com/songs/60130475.mkv +张杰-何必在一起,http://em.21dtv.com/songs/60020338.mkv +谢娜+张杰-何必在一起,http://em.21dtv.com/songs/60020337.mkv +温兆伦-何必这样忙,http://em.21dtv.com/songs/60020339.mkv +蔡枫华-何必曾相识(演唱会),http://em.21dtv.com/songs/60061237.mkv +龙千玉-何必再想你,http://em.21dtv.com/songs/60020336.mkv +蒙面哥-hold不住的爱,http://em.21dtv.com/songs/60062762.mkv +J.A.M-海边一日游,http://em.21dtv.com/songs/60019700.mkv +于子洋-环保小卫士,http://em.21dtv.com/songs/60099072.mkv +七郎-何必心肝凝,http://em.21dtv.com/songs/60020334.mkv +佚名-何必为着伊,http://em.21dtv.com/songs/60131174.mkv +佚名-何必为着伊,http://em.21dtv.com/songs/60020331.mkv +张希晨-何必太在意,http://em.21dtv.com/songs/60105838.mkv +王雪晶+庄群诗-红包特别多,http://em.21dtv.com/songs/60088339.mkv +宋熙铭-画板上的梦,http://em.21dtv.com/songs/60075859.mkv +张伟文+华娃-何必去烧香,http://em.21dtv.com/songs/60020327.mkv +陈美娥-何必去烧香,http://em.21dtv.com/songs/60020326.mkv +萧亚轩-回不去了吗,http://em.21dtv.com/songs/60064348.mkv +佚名-还不清的债,http://em.21dtv.com/songs/60019574.mkv +喜公公-好吧你赢了,http://em.21dtv.com/songs/60113359.mkv +康康-红包拿过来,http://em.21dtv.com/songs/60129053.mkv +郑智化-挥别你的泪,http://em.21dtv.com/songs/60088765.mkv +陈一郎-何必来牺牲,http://em.21dtv.com/songs/60095962.mkv +佚名-何必来牺牲(无原唱),http://em.21dtv.com/songs/60020323.mkv +赵仰瑞-还不了的爱,http://em.21dtv.com/songs/60072025.mkv +曹磊-回不来的爱,http://em.21dtv.com/songs/60022075.mkv +马旭东-化不开的痛,http://em.21dtv.com/songs/60111529.mkv +金岩-火把节之夜,http://em.21dtv.com/songs/60104511.mkv +郑锦昌-话俾家乡知,http://em.21dtv.com/songs/60021622.mkv +奇易安-黑白键交错,http://em.21dtv.com/songs/60075733.mkv +尹光-何必讲粗口(演唱会),http://em.21dtv.com/songs/60020321.mkv +陈淑桦-湖边含羞草,http://em.21dtv.com/songs/60021224.mkv +田田-换不回的爱,http://em.21dtv.com/songs/60067089.mkv +SNH48-黑白格子裙,http://em.21dtv.com/songs/60099040.mkv +佚名-胡不归-哭坟,http://em.21dtv.com/songs/60021205.mkv +刘德华-黑蝙蝠中队,http://em.21dtv.com/songs/60020506.mkv +拉毛王旭-回报父母恩,http://em.21dtv.com/songs/60061268.mkv +温亚伦-回不到昨天,http://em.21dtv.com/songs/60121884.mkv +闻美茜-回不到最初,http://em.21dtv.com/songs/60100534.mkv +童星-红包的诱惑,http://em.21dtv.com/songs/60088388.mkv +牛欣欣-红包的诱惑,http://em.21dtv.com/songs/60020747.mkv +陈盈洁-黑白的探戈,http://em.21dtv.com/songs/60020491.mkv +刘斌-华北大平原,http://em.21dtv.com/songs/60021567.mkv +佚名-河边对口曲,http://em.21dtv.com/songs/60020455.mkv +方怡萍-河边的花蕊(无原唱),http://em.21dtv.com/songs/60020454.mkv +洪荣宏-海边的歌声(无原唱),http://em.21dtv.com/songs/60019696.mkv +程海峰-黑白的过去,http://em.21dtv.com/songs/60117957.mkv +陈瑞+长江-回不到从前,http://em.21dtv.com/songs/60100602.mkv +笑天-何必唱情歌,http://em.21dtv.com/songs/60063161.mkv +郭东坡-黑暗中燃烧,http://em.21dtv.com/songs/60132997.mkv +陈奕迅-黑暗中漫舞(演唱会),http://em.21dtv.com/songs/60020487.mkv +王梓轩-HAVEN,http://em.21dtv.com/songs/60124262.mkv +郑妮可-HAPPY,http://em.21dtv.com/songs/60135810.mkv +赵小熙-Happy,http://em.21dtv.com/songs/60127439.mkv +白举纲-Happy,http://em.21dtv.com/songs/60112128.mkv +Pharrell Williams-Happy,http://em.21dtv.com/songs/60106552.mkv +孙羽希-很爱很爱你,http://em.21dtv.com/songs/60108432.mkv +刘若英-很爱很爱你,http://em.21dtv.com/songs/60020635.mkv +刘若英-很爱很爱你(演唱会),http://em.21dtv.com/songs/60020634.mkv +李行亮-很爱很爱的,http://em.21dtv.com/songs/60116020.mkv +齐秦-黑暗的沉思,http://em.21dtv.com/songs/60020484.mkv +信-恨爱不成钢,http://em.21dtv.com/songs/60075755.mkv +松隆子-花のように,http://em.21dtv.com/songs/60021307.mkv +黎明-happy2000,http://em.21dtv.com/songs/60002101.mkv +黎明-happy 2000,http://em.21dtv.com/songs/60002062.mkv +许志安+陈慧琳+ON LIN-happy 2000(演唱会),http://em.21dtv.com/songs/60002060.mkv +庄秋玉+刘伟龙-共筑中国梦,http://em.21dtv.com/songs/60126853.mkv +戴玉强+殷秀梅-共筑中国梦,http://em.21dtv.com/songs/60113533.mkv +廖昌永+殷秀梅-共筑中国梦,http://em.21dtv.com/songs/60109295.mkv +廖昌永+殷秀梅-共筑中国梦,http://em.21dtv.com/songs/60108475.mkv +戴玉强+王莉-共筑中国梦,http://em.21dtv.com/songs/60097529.mkv +BABY-跟着影子走,http://em.21dtv.com/songs/60018663.mkv +杨谨+沙滩宝贝-公主也发威,http://em.21dtv.com/songs/60100191.mkv +王璐岢-跟着我狂欢,http://em.21dtv.com/songs/60093669.mkv +佚名-跟着我飞翔,http://em.21dtv.com/songs/60018660.mkv +棒棒堂-跟着我的tempo(演唱会),http://em.21dtv.com/songs/60018659.mkv +谢世超-贵州我的家,http://em.21dtv.com/songs/60097613.mkv +徐浩+朱元冰-跟着太阳走,http://em.21dtv.com/songs/60100051.mkv +林萍-跟着太阳走,http://em.21dtv.com/songs/60018656.mkv +乐瞳-改造人之恋,http://em.21dtv.com/songs/60017854.mkv +Snh48-格子裙妖精,http://em.21dtv.com/songs/60107440.mkv +黄心懋-孤枕难入梦(无原唱),http://em.21dtv.com/songs/60018933.mkv +沈建豪-搁做恁的子,http://em.21dtv.com/songs/60113788.mkv +物乐团-公仔面之歌,http://em.21dtv.com/songs/60018698.mkv +TWINS-光之美少女,http://em.21dtv.com/songs/60019327.mkv +梁咏琪-该怎么爱你,http://em.21dtv.com/songs/60017824.mkv +佚名-关仔岭之恋,http://em.21dtv.com/songs/60019237.mkv +黄乙玲-关仔岭之恋,http://em.21dtv.com/songs/60019236.mkv +李代沫-骨子里的我,http://em.21dtv.com/songs/60080199.mkv +动力火车-跟自己合唱,http://em.21dtv.com/songs/60130131.mkv +容祖兒+鍾舒漫-給自己的信,http://em.21dtv.com/songs/60092536.mkv +柳影虹-给自己的信(演唱会),http://em.21dtv.com/songs/60075520.mkv +C ALLSTAR-给自己的信(演唱会),http://em.21dtv.com/songs/60075519.mkv +钟舒漫+容祖儿-给自己的信,http://em.21dtv.com/songs/60018609.mkv +钟舒漫-给自己的信(演唱会),http://em.21dtv.com/songs/60018608.mkv +郑秀文-给自己的信(演唱会),http://em.21dtv.com/songs/60018607.mkv +李宗盛-给自己的歌,http://em.21dtv.com/songs/60113622.mkv +卓义峰-给自己的歌,http://em.21dtv.com/songs/60097625.mkv +夏雨-给自己的歌,http://em.21dtv.com/songs/60082955.mkv +江一燕-给自己的歌,http://em.21dtv.com/songs/60018602.mkv +李宗盛-给自己的歌(演唱会),http://em.21dtv.com/songs/60018601.mkv +梁静茹-给自己的爱,http://em.21dtv.com/songs/60018600.mkv +吴天成-贵州欢迎您,http://em.21dtv.com/songs/60120403.mkv +梦苇-跟着感觉走,http://em.21dtv.com/songs/60125829.mkv +袁娅维-跟着感觉走,http://em.21dtv.com/songs/60118032.mkv +袁娅维-跟着感觉走,http://em.21dtv.com/songs/60117207.mkv +杨坤+谭维维+张杰+萧敬腾-跟着感觉走,http://em.21dtv.com/songs/60111183.mkv +朱振铭-跟着感觉走,http://em.21dtv.com/songs/60111150.mkv +A Lin-跟着感觉走,http://em.21dtv.com/songs/60098977.mkv +李秋泽-跟着感觉走,http://em.21dtv.com/songs/60081484.mkv +胡海泉+丁于-跟着感觉走,http://em.21dtv.com/songs/60080983.mkv +邓小坤-跟着感觉走,http://em.21dtv.com/songs/60080941.mkv +金志文-跟着感觉走,http://em.21dtv.com/songs/60075525.mkv +黄绮珊-跟着感觉走,http://em.21dtv.com/songs/60075524.mkv +佚名-跟着感觉走,http://em.21dtv.com/songs/60018654.mkv +苏芮-跟着感觉走,http://em.21dtv.com/songs/60018653.mkv +佚名-跟着感觉走(中四),http://em.21dtv.com/songs/60018652.mkv +苏芮-跟着感觉走(演唱会),http://em.21dtv.com/songs/60018651.mkv +刘美君-各自各精彩(演唱会),http://em.21dtv.com/songs/60018457.mkv +李蕙敏-公主复仇记,http://em.21dtv.com/songs/60018708.mkv +陈好-公主复仇记,http://em.21dtv.com/songs/60018707.mkv +徐杉-公主的诱惑,http://em.21dtv.com/songs/60075529.mkv +王祝海-该走的时候,http://em.21dtv.com/songs/60121938.mkv +刘德华-该走的时候,http://em.21dtv.com/songs/60017828.mkv +心瑶-公主的魔咒,http://em.21dtv.com/songs/60071956.mkv +阿信-公主的迷信,http://em.21dtv.com/songs/60018705.mkv +韦绮姗-跪在大门后(演唱会),http://em.21dtv.com/songs/60019426.mkv +詹雅雯-过站的旧情(无原唱),http://em.21dtv.com/songs/60019543.mkv +郑进一-古早的故乡,http://em.21dtv.com/songs/60018996.mkv +王羚柔-鸽子的悲伤,http://em.21dtv.com/songs/60018336.mkv +袁成杰+戚薇-公主不许哭,http://em.21dtv.com/songs/60018703.mkv +游喧-公主表白记,http://em.21dtv.com/songs/60018701.mkv +苏路-搁再爱一摆,http://em.21dtv.com/songs/60018346.mkv +中坚份子-跟影子赛跑,http://em.21dtv.com/songs/60018649.mkv +陈宏庆-哥要找老婆,http://em.21dtv.com/songs/60088861.mkv +文章-古月照今尘,http://em.21dtv.com/songs/60018995.mkv +慕容婕柃-甘愿做憨人,http://em.21dtv.com/songs/60131444.mkv +王莹-共圆中国梦,http://em.21dtv.com/songs/60131676.mkv +侯丽娟-共圆中国梦,http://em.21dtv.com/songs/60120321.mkv +孙晓雨-共圆中国梦,http://em.21dtv.com/songs/60117655.mkv +刘晶+阎维文-共圆中国梦(HD),http://em.21dtv.com/songs/10012709.mkv +檀欢-共圆中国梦,http://em.21dtv.com/songs/60108646.mkv +刘晶+阎维文-共圆中国梦,http://em.21dtv.com/songs/60101967.mkv +王丽达-共圆中国梦,http://em.21dtv.com/songs/60099395.mkv +杨丽-甘愿为着你,http://em.21dtv.com/songs/60094165.mkv +张秀卿-甘愿无人知,http://em.21dtv.com/songs/60017895.mkv +李茂山-甘愿为你等(无原唱),http://em.21dtv.com/songs/60017894.mkv +小峰峰-故意忘记你,http://em.21dtv.com/songs/60019130.mkv +萧正楠-故意忘记了,http://em.21dtv.com/songs/60092000.mkv +罗文裕+transition-关于我和你,http://em.21dtv.com/songs/60118844.mkv +李菓-该遗忘的人(演唱会),http://em.21dtv.com/songs/60086556.mkv +李菓-该遗忘的人,http://em.21dtv.com/songs/60081039.mkv +群星-甘岩玩得埋,http://em.21dtv.com/songs/60093044.mkv +尹光-甘岩玩得埋,http://em.21dtv.com/songs/60092548.mkv +张悬-关于我爱你,http://em.21dtv.com/songs/60019231.mkv +晏羚-甘愿伤心搁(无原唱)一摆,http://em.21dtv.com/songs/60017893.mkv +金灿-观音菩萨赞,http://em.21dtv.com/songs/60135854.mkv +白玛多吉-观音菩萨偈,http://em.21dtv.com/songs/60106163.mkv +印能法师-观音菩萨偈,http://em.21dtv.com/songs/60099848.mkv +阿悄+庄心妍-关于那件事,http://em.21dtv.com/songs/60094736.mkv +王思远-关于你的我,http://em.21dtv.com/songs/60113860.mkv +许飞-关于你的好,http://em.21dtv.com/songs/60075591.mkv +李圣杰-关于你的歌,http://em.21dtv.com/songs/60019224.mkv +李芊慧-观音灵感歌(无原唱),http://em.21dtv.com/songs/60019245.mkv +秦博-狗眼看人低,http://em.21dtv.com/songs/60127249.mkv +龙奔-狗眼看人低,http://em.21dtv.com/songs/60102559.mkv +佚名-girl you know its true,http://em.21dtv.com/songs/60001881.mkv +王子鸣-古运河之恋,http://em.21dtv.com/songs/60071966.mkv +WILL+EMMA-give your heart a break,http://em.21dtv.com/songs/60073254.mkv +JOSELYN RIVERA-give your heart a break(演唱会),http://em.21dtv.com/songs/60073253.mkv +DEMI LOVATO-give your heart a break,http://em.21dtv.com/songs/60067892.mkv +阿伊米拉-恭呀恭喜你,http://em.21dtv.com/songs/60115469.mkv +郭静-各有各屋詹,http://em.21dtv.com/songs/60093370.mkv +-共一个世界,http://em.21dtv.com/songs/60090381.mkv +王心凌-敢要敢不要,http://em.21dtv.com/songs/60118778.mkv +林子祥-故园风雪后,http://em.21dtv.com/songs/60092856.mkv +刀郎-关于二道桥,http://em.21dtv.com/songs/60019221.mkv +小龙-过夜的眼泪,http://em.21dtv.com/songs/60019540.mkv +央金拉姆-高原的阳光,http://em.21dtv.com/songs/60090870.mkv +沈志仲-孤夜的期待,http://em.21dtv.com/songs/60018930.mkv +胡鸿钧-公义的抉择,http://em.21dtv.com/songs/60127313.mkv +韦唯+刘欢-共有的家园,http://em.21dtv.com/songs/60018791.mkv +黄晓明+邓超+佟大为-光阴的故事,http://em.21dtv.com/songs/60082982.mkv +蘑菇兄弟-光阴的故事,http://em.21dtv.com/songs/60081575.mkv +黄晓明-光阴的故事,http://em.21dtv.com/songs/60080177.mkv +田维英-光阴的故事,http://em.21dtv.com/songs/60075604.mkv +张艾嘉-光阴的故事,http://em.21dtv.com/songs/60019324.mkv +佚名-光阴的故事,http://em.21dtv.com/songs/60019323.mkv +合唱-光阴的故事,http://em.21dtv.com/songs/60019322.mkv +罗大佑-光阴的故事(演唱会),http://em.21dtv.com/songs/60019321.mkv +田培良-哥要闯一闯,http://em.21dtv.com/songs/60112125.mkv +刘惜君-故意不爱你,http://em.21dtv.com/songs/60132244.mkv +何润东-故意不爱你,http://em.21dtv.com/songs/60087315.mkv +李嘉-甘有爱过我(无原唱),http://em.21dtv.com/songs/60017878.mkv +陈宏庆-哥想找老婆,http://em.21dtv.com/songs/60018328.mkv +王月华-故乡在丹江,http://em.21dtv.com/songs/60065999.mkv +陈升-关心永远在,http://em.21dtv.com/songs/60019216.mkv +李池湘-恭喜有情人,http://em.21dtv.com/songs/60091318.mkv +玖月奇迹-恭喜呀恭喜,http://em.21dtv.com/songs/60109548.mkv +洪荣宏-故乡一朵花,http://em.21dtv.com/songs/60095789.mkv +詹雅雯-故乡限时批(无原唱),http://em.21dtv.com/songs/60019123.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-恭喜新年好,http://em.21dtv.com/songs/60075540.mkv +罗时丰+林姗-感谢我有你,http://em.21dtv.com/songs/60075463.mkv +佚名-感谢无情人,http://em.21dtv.com/songs/60018100.mkv +黄乙玲-感谢无情人,http://em.21dtv.com/songs/60018099.mkv +郑伊健-甘心替代你,http://em.21dtv.com/songs/60017876.mkv +郑伊健-甘心替代你(演唱会),http://em.21dtv.com/songs/60017875.mkv +王中龙-故乡是闽南(演唱会),http://em.21dtv.com/songs/60075577.mkv +胡东清-故乡是草原,http://em.21dtv.com/songs/60061221.mkv +汤媛媛-故乡是潮汕,http://em.21dtv.com/songs/60064257.mkv +祝友-过雪山草地,http://em.21dtv.com/songs/60019536.mkv +佚名-过雪山草地,http://em.21dtv.com/songs/60019535.mkv +彭宝泽-故乡是北京,http://em.21dtv.com/songs/60130344.mkv +舒浩炀+程晨-故乡是北京,http://em.21dtv.com/songs/60112163.mkv +王喆-故乡是北京,http://em.21dtv.com/songs/60106103.mkv +改编对唱-故乡是北京,http://em.21dtv.com/songs/60105087.mkv +殷秀梅-故乡是北京,http://em.21dtv.com/songs/60019122.mkv +李谷一-故乡是北京,http://em.21dtv.com/songs/60019121.mkv +林家小妹-给心情放假,http://em.21dtv.com/songs/60018598.mkv +纪晓君-故乡普悠玛,http://em.21dtv.com/songs/60019112.mkv +黄志强-关心你一人,http://em.21dtv.com/songs/60019213.mkv +詹雅雯-感谢你无情,http://em.21dtv.com/songs/60018094.mkv +陈一郎-故乡南台湾,http://em.21dtv.com/songs/60019111.mkv +岳菲-感谢你深圳,http://em.21dtv.com/songs/60085110.mkv +刘国强-感谢你双轨,http://em.21dtv.com/songs/60108337.mkv +孟杨-感谢你陪伴,http://em.21dtv.com/songs/60117666.mkv +双子组合-感谢你妈妈(演唱会),http://em.21dtv.com/songs/60018092.mkv +双子组合-感谢你+妈妈,http://em.21dtv.com/songs/60018085.mkv +小凤凤-感谢你的爱,http://em.21dtv.com/songs/60018090.mkv +林垂立+彭莉-感谢你的爱,http://em.21dtv.com/songs/60018089.mkv +萧煌奇-感谢你爱我,http://em.21dtv.com/songs/60100951.mkv +七郎-故乡块叫我,http://em.21dtv.com/songs/60095378.mkv +少女部落格-恭喜好运来,http://em.21dtv.com/songs/60082957.mkv +牛欣欣+张翘+刘姝辰-恭喜好运来,http://em.21dtv.com/songs/60064243.mkv +汤潮-故乡黑龙江,http://em.21dtv.com/songs/60019108.mkv +孙淑媚-高雄港之恋,http://em.21dtv.com/songs/60018239.mkv +杨千嬅-给香港小姐,http://em.21dtv.com/songs/60018596.mkv +罗时丰-感心感谢伴,http://em.21dtv.com/songs/60018103.mkv +至上励合-恭喜发大财,http://em.21dtv.com/songs/60108828.mkv +侧田-gong xi fa cai song(演唱会),http://em.21dtv.com/songs/60001942.mkv +卜学亮-恭喜发财歌,http://em.21dtv.com/songs/60018744.mkv +关关+张挥-高兴的颜色,http://em.21dtv.com/songs/60104800.mkv +郑志勇-故乡的月娘,http://em.21dtv.com/songs/60127463.mkv +叶启田-故乡的月娘,http://em.21dtv.com/songs/60019101.mkv +陈兴瑜-个性的一面,http://em.21dtv.com/songs/60018450.mkv +盛希-故乡的月光,http://em.21dtv.com/songs/60131700.mkv +关牧村-故乡的小巷,http://em.21dtv.com/songs/60019093.mkv +张也-故乡的小屋(演唱会),http://em.21dtv.com/songs/60019092.mkv +金玲-故乡的兄姐(无原唱),http://em.21dtv.com/songs/60019094.mkv +潘美辰-个性的舞动,http://em.21dtv.com/songs/60018449.mkv +叶枫华-感谢咁多位,http://em.21dtv.com/songs/60121479.mkv +谈芳兵-故乡的太阳,http://em.21dtv.com/songs/60019088.mkv +许舞-故乡的少年,http://em.21dtv.com/songs/60118911.mkv +钟彩媚-故乡的山歌,http://em.21dtv.com/songs/60129686.mkv +黎岩-故乡的亲人,http://em.21dtv.com/songs/60019087.mkv +李明洋-故乡的期待,http://em.21dtv.com/songs/60135364.mkv +费玉清-故乡的女孩(无原唱),http://em.21dtv.com/songs/60019086.mkv +孟根-故乡的奶茶,http://em.21dtv.com/songs/60123833.mkv +林清国-故乡的明月(无原唱),http://em.21dtv.com/songs/60019085.mkv +喜公公-故乡的老屋,http://em.21dtv.com/songs/60113361.mkv +童唱-故乡的老家,http://em.21dtv.com/songs/60019082.mkv +城市姐妹-故乡的列车(演唱会),http://em.21dtv.com/songs/60068283.mkv +佚名-故乡的列车,http://em.21dtv.com/songs/60019084.mkv +佚名-故乡的列车(恰恰),http://em.21dtv.com/songs/60019083.mkv +白冰冰-故乡的景致,http://em.21dtv.com/songs/60117941.mkv +蒋婴-故乡的眷恋,http://em.21dtv.com/songs/60127358.mkv +宋昕宁-故乡的骄傲,http://em.21dtv.com/songs/60019081.mkv +方瑞娥-故乡的黄昏(无原唱),http://em.21dtv.com/songs/60095551.mkv +佚名-故乡的黄昏,http://em.21dtv.com/songs/60095418.mkv +宗庸卓玛-故乡的哈达,http://em.21dtv.com/songs/60019080.mkv +宗庸卓玛-故乡的哈达(演唱会),http://em.21dtv.com/songs/60019079.mkv +降央卓玛-故乡的歌谣,http://em.21dtv.com/songs/60129767.mkv +七郎-故乡的故事,http://em.21dtv.com/songs/60019078.mkv +佚名-恭喜大发财,http://em.21dtv.com/songs/60018734.mkv +张蓉蓉-故乡的地图,http://em.21dtv.com/songs/60019072.mkv +蔡小虎-故乡的地图,http://em.21dtv.com/songs/60019071.mkv +陈一郎-故乡的等待(无原唱),http://em.21dtv.com/songs/60019070.mkv +格桑志玛-故乡的炊烟,http://em.21dtv.com/songs/60019069.mkv +陈文姝-故乡的春天,http://em.21dtv.com/songs/60084123.mkv +萧玉芬+高瑞屏-故乡的草埔(无原唱),http://em.21dtv.com/songs/60079913.mkv +高瑞屏+萧玉芬-故乡的草埔(无原唱),http://em.21dtv.com/songs/60034865.mkv +陈百潭-故乡的爱人,http://em.21dtv.com/songs/60019068.mkv +佚名-故乡的阿母,http://em.21dtv.com/songs/60019066.mkv +叶启田-故乡的阿母,http://em.21dtv.com/songs/60019065.mkv +洪荣宏-故乡彼首歌,http://em.21dtv.com/songs/60019063.mkv +江惠仪-感谢彼个人,http://em.21dtv.com/songs/60062504.mkv +阿茹-感谢阿母啊,http://em.21dtv.com/songs/60135886.mkv +张洪涛-故乡啊故乡,http://em.21dtv.com/songs/60122736.mkv +黄乙玲-给心爱的人,http://em.21dtv.com/songs/60018597.mkv +陈奕迅-跟我走好吗,http://em.21dtv.com/songs/60110630.mkv +任珅-给我一支烟,http://em.21dtv.com/songs/60064239.mkv +姜宇清-给我一支烟,http://em.21dtv.com/songs/60018592.mkv +任玙-给我 一支烟,http://em.21dtv.com/songs/60018529.mkv +阎维文-公务员之歌,http://em.21dtv.com/songs/60018694.mkv +朱丹-给我一首歌,http://em.21dtv.com/songs/60075514.mkv +超月组合-跟我一起跳,http://em.21dtv.com/songs/60126243.mkv +华晨宇+杨宗纬-国王与乞丐,http://em.21dtv.com/songs/60112553.mkv +神木与瞳-跟我一起怪(演唱会),http://em.21dtv.com/songs/60018641.mkv +英姆草-跟我一起飞,http://em.21dtv.com/songs/60095217.mkv +何洁-跟我一起疯,http://em.21dtv.com/songs/60087313.mkv +张惠妹-跟我一起疯(无原唱),http://em.21dtv.com/songs/60018640.mkv +刘德华-跟我一起飞(演唱会),http://em.21dtv.com/songs/60018639.mkv +格格-跟我约会吧,http://em.21dtv.com/songs/60112805.mkv +万妮达-给我一个吻,http://em.21dtv.com/songs/60127694.mkv +囚鸟-给我一个吻,http://em.21dtv.com/songs/60128929.mkv +邓丽君-给我一个吻,http://em.21dtv.com/songs/60109644.mkv +张露-给我一个吻,http://em.21dtv.com/songs/60089292.mkv +汪明荃-给我一个吻(演唱会),http://em.21dtv.com/songs/60075513.mkv +张俐敏-给我一个吻,http://em.21dtv.com/songs/60018585.mkv +ECHO-给我一个吻,http://em.21dtv.com/songs/60018584.mkv +周蕙-给我一个吻(演唱会),http://em.21dtv.com/songs/60018583.mkv +叶丽仪-给我一个吻(演唱会),http://em.21dtv.com/songs/60018582.mkv +蔡琴-给我一个吻(HD演唱会),http://em.21dtv.com/songs/60018581.mkv +邓广福-给我一点爱,http://em.21dtv.com/songs/60018568.mkv +任贤齐-给我一杯酒,http://em.21dtv.com/songs/60090566.mkv +黄志坚-给我写封信(演唱会),http://em.21dtv.com/songs/60018561.mkv +陈盈洁+黄瑞田-给我吻一下,http://em.21dtv.com/songs/60018560.mkv +佚名-给我温情吧,http://em.21dtv.com/songs/60018558.mkv +张靓颖-敢为天下先,http://em.21dtv.com/songs/60107726.mkv +舞真-跟我跳起来,http://em.21dtv.com/songs/60115345.mkv +零点乐队-跟我跳起来(演唱会),http://em.21dtv.com/songs/60018637.mkv +蔡依林-怪我太年轻,http://em.21dtv.com/songs/60019185.mkv +蔡依林-怪我太年轻(演唱会),http://em.21dtv.com/songs/60019184.mkv +杨臣刚-跟我谈恋爱,http://em.21dtv.com/songs/60018636.mkv +CHRISTINA AGUILERA-guy what takes his time,http://em.21dtv.com/songs/60073297.mkv +张学友-给我说真话,http://em.21dtv.com/songs/60018557.mkv +孟鹏+塔斯肯-跟往事乾杯,http://em.21dtv.com/songs/60081530.mkv +秦妮-跟往事干杯,http://em.21dtv.com/songs/60085134.mkv +王杰-跟往事干杯,http://em.21dtv.com/songs/60018628.mkv +罗时丰-跟往事干杯,http://em.21dtv.com/songs/60018627.mkv +姜育恒-跟往事干杯,http://em.21dtv.com/songs/60018626.mkv +谭艺萱-给我双翅膀,http://em.21dtv.com/songs/60062977.mkv +姜育恒-跟我说爱我,http://em.21dtv.com/songs/60018635.mkv +蔡琴-跟我说爱我,http://em.21dtv.com/songs/60018634.mkv +蔡琴-跟我说爱我(演唱会),http://em.21dtv.com/songs/60018633.mkv +四个朋友-跟我去旅行,http://em.21dtv.com/songs/60106732.mkv +佚名-给我亲爱的,http://em.21dtv.com/songs/60018555.mkv +弦子-给我你的手,http://em.21dtv.com/songs/60018553.mkv +原子霏+冷中易-给我你的爱,http://em.21dtv.com/songs/60130167.mkv +林宥嘉+张杰-给我你的爱(演唱会),http://em.21dtv.com/songs/60075511.mkv +TANK-给我你的爱,http://em.21dtv.com/songs/60018552.mkv +贺东-给我麦克风,http://em.21dtv.com/songs/60110549.mkv +潘晓峰-跟我没关系,http://em.21dtv.com/songs/60018631.mkv +汪德能-跟我来仙居,http://em.21dtv.com/songs/60122946.mkv +陈贝贝-给未来的我,http://em.21dtv.com/songs/60130856.mkv +刘德华-跟我两辈子,http://em.21dtv.com/songs/60090708.mkv +闪亮三姐妹-给我几秒种,http://em.21dtv.com/songs/60018550.mkv +王芷蕾-给我换颗心(无原唱),http://em.21dtv.com/songs/60076951.mkv +佚名-给我换颗心(无原唱),http://em.21dtv.com/songs/60018548.mkv +郑娟-给我个理由,http://em.21dtv.com/songs/60127458.mkv +六哲-给我个理由,http://em.21dtv.com/songs/60101918.mkv +刘明辉-给我个理由,http://em.21dtv.com/songs/60081092.mkv +SEXY GIRL-尬舞发烧星,http://em.21dtv.com/songs/60017802.mkv +王聃葳-给我的永远,http://em.21dtv.com/songs/60110410.mkv +S.H.E-给我多一点,http://em.21dtv.com/songs/60018545.mkv +徐婕儿-国王的新衣,http://em.21dtv.com/songs/60019457.mkv +徐千雅-跟我到新疆,http://em.21dtv.com/songs/60064240.mkv +郭富城-国王的新歌,http://em.21dtv.com/songs/60093351.mkv +游鸿明-国王的流行,http://em.21dtv.com/songs/60019456.mkv +郭富城-国王的流行,http://em.21dtv.com/songs/60019455.mkv +郭富城-国王的流行(演唱会),http://em.21dtv.com/songs/60019454.mkv +萧煌奇-过我的生活,http://em.21dtv.com/songs/60075631.mkv +郭静-该忘的日子,http://em.21dtv.com/songs/60131894.mkv +郭静-该忘的日子,http://em.21dtv.com/songs/60130803.mkv +张啸-给我点面子,http://em.21dtv.com/songs/60018544.mkv +胡夏-给我的快乐,http://em.21dtv.com/songs/60113971.mkv +董映言-给我的弟弟,http://em.21dtv.com/songs/60018542.mkv +佚名-给我的不够,http://em.21dtv.com/songs/60018541.mkv +薛之谦-给我的爱人,http://em.21dtv.com/songs/60063226.mkv +阎琰-敢为爱情死,http://em.21dtv.com/songs/60063233.mkv +王若希-给我爱的你,http://em.21dtv.com/songs/60085131.mkv +群星-给它一个家,http://em.21dtv.com/songs/60126062.mkv +阿庆+胡亚暄-哥特式吻别,http://em.21dtv.com/songs/60097630.mkv +阿庆-哥特式吻别,http://em.21dtv.com/songs/60085121.mkv +张静-管他谁是谁,http://em.21dtv.com/songs/60122754.mkv +张也-高天上流云,http://em.21dtv.com/songs/60018230.mkv +郑毅-哥特式寂寞,http://em.21dtv.com/songs/60018327.mkv +迪克牛仔-管他谁爱谁,http://em.21dtv.com/songs/60088740.mkv +阮泰瑞-钢铁人going down,http://em.21dtv.com/songs/60075467.mkv +四分卫-跟他拚了吧,http://em.21dtv.com/songs/60128931.mkv +丁春秀-甘棠湖之夜,http://em.21dtv.com/songs/60086557.mkv +袁小迪-高铁的月台,http://em.21dtv.com/songs/60018232.mkv +佚名-共同的未来,http://em.21dtv.com/songs/60018785.mkv +安冬-故土的太阳,http://em.21dtv.com/songs/60019048.mkv +米线+包伍-甘甜的美酒,http://em.21dtv.com/songs/60070697.mkv +杨培安-共同的记忆,http://em.21dtv.com/songs/60097528.mkv +易欣-共同的家园,http://em.21dtv.com/songs/60080818.mkv +祖海-共同的家园,http://em.21dtv.com/songs/60018784.mkv +佚名-got to believe in magic,http://em.21dtv.com/songs/60002003.mkv +陈赫-给特别的你,http://em.21dtv.com/songs/60099592.mkv +梅艳芳-孤身走我路(演唱会),http://em.21dtv.com/songs/60018920.mkv +陈俞静-感受中国梦,http://em.21dtv.com/songs/60110608.mkv +洪荣宏-敢是伊知影,http://em.21dtv.com/songs/60017929.mkv +常石磊-歌声与微笑,http://em.21dtv.com/songs/60116761.mkv +群星-歌声与微笑,http://em.21dtv.com/songs/60112147.mkv +佚名-歌声与微笑,http://em.21dtv.com/songs/60018396.mkv +蒋小涵-歌声与微笑,http://em.21dtv.com/songs/60018395.mkv +合唱-歌声与微笑,http://em.21dtv.com/songs/60018394.mkv +蔡琴-歌声与微笑(演唱会),http://em.21dtv.com/songs/60018393.mkv +周艳泓-观世音菩萨,http://em.21dtv.com/songs/60066003.mkv +陈星-观世音菩萨,http://em.21dtv.com/songs/60019244.mkv +徐千雅-高山有好水,http://em.21dtv.com/songs/60018223.mkv +李琛-更上一层楼,http://em.21dtv.com/songs/60101710.mkv +殷秀梅-更上一层楼,http://em.21dtv.com/songs/60091542.mkv +阿帕队-歌声像杀猪(无原唱),http://em.21dtv.com/songs/60095957.mkv +佚名-歌声像杀猪(无原唱),http://em.21dtv.com/songs/60018391.mkv +江蕙-孤守相思月,http://em.21dtv.com/songs/60018921.mkv +格桑英妮-故事像朵花,http://em.21dtv.com/songs/60100238.mkv +郭俊辰-告诉我未来,http://em.21dtv.com/songs/60118102.mkv +杨培安+刘虹翎-故事未完成,http://em.21dtv.com/songs/60019046.mkv +马志锋-感受我的爱,http://em.21dtv.com/songs/60064218.mkv +王建杰-甘剩阮一人,http://em.21dtv.com/songs/60017866.mkv +于金胜-哥是穷光蛋,http://em.21dtv.com/songs/60119241.mkv +于金胜-哥是穷光蛋(舞曲版),http://em.21dtv.com/songs/60069415.mkv +于金胜-哥是穷光蛋,http://em.21dtv.com/songs/60067030.mkv +徐小凤-歌声暖我心,http://em.21dtv.com/songs/60018390.mkv +黄乙玲-甘是你无情,http://em.21dtv.com/songs/60017867.mkv +大军-哥是农民工,http://em.21dtv.com/songs/60067029.mkv +何永俊-哥是农民工,http://em.21dtv.com/songs/60018326.mkv +郑源-感受你的伤,http://em.21dtv.com/songs/60075459.mkv +郭经纬-高三那段路,http://em.21dtv.com/songs/60105435.mkv +程璧-给少年的歌,http://em.21dtv.com/songs/60110440.mkv +王海玲-歌声满行囊,http://em.21dtv.com/songs/60018388.mkv +江蕙-歌声满天下,http://em.21dtv.com/songs/60018389.mkv +TENSION-goodbye是明天的hello(演唱会),http://em.21dtv.com/songs/60001993.mkv +赵紫龙-关山牧马还,http://em.21dtv.com/songs/60127444.mkv +戴娆-故事里的事,http://em.21dtv.com/songs/60019041.mkv +刘慧湘-故事里的你,http://em.21dtv.com/songs/60075570.mkv +佚名-哥萨克之歌,http://em.21dtv.com/songs/60018325.mkv +苏慧伦-给四季预算,http://em.21dtv.com/songs/60018522.mkv +祖海-赶上好时候,http://em.21dtv.com/songs/60017915.mkv +凤凰传奇-高山槐花开,http://em.21dtv.com/songs/60018214.mkv +乐桐-格桑花儿开,http://em.21dtv.com/songs/60062575.mkv +文千岁-歌颂好春天(戏曲),http://em.21dtv.com/songs/60092745.mkv +邓志驹-歌颂好春天,http://em.21dtv.com/songs/60018401.mkv +阚杰-哥是光棍光,http://em.21dtv.com/songs/60069414.mkv +佚名-故事的真象,http://em.21dtv.com/songs/60019038.mkv +黄仲昆+杨林-故事的真象,http://em.21dtv.com/songs/60019037.mkv +佚名-故事的真相,http://em.21dtv.com/songs/60019036.mkv +袁东方-故事都一样,http://em.21dtv.com/songs/60114762.mkv +欧恒-该死的温柔,http://em.21dtv.com/songs/60069402.mkv +任震浩-该死的温柔,http://em.21dtv.com/songs/60017819.mkv +马天宇-该死的温柔,http://em.21dtv.com/songs/60017818.mkv +雷婷-该死的温柔,http://em.21dtv.com/songs/60017817.mkv +阎维文-故事的启迪,http://em.21dtv.com/songs/60019035.mkv +胜屿-该死的懦弱,http://em.21dtv.com/songs/60120870.mkv +胜屿-该死的懦弱,http://em.21dtv.com/songs/60103525.mkv +陈胜屿-该死的懦弱,http://em.21dtv.com/songs/60101563.mkv +张振宇-过时的恋曲,http://em.21dtv.com/songs/60019529.mkv +王菀之-该死的快乐,http://em.21dtv.com/songs/60128239.mkv +王菀之-该死的快乐,http://em.21dtv.com/songs/60125951.mkv +王杰-故事的角色,http://em.21dtv.com/songs/60019034.mkv +王杰-故事的角色(演唱会),http://em.21dtv.com/songs/60019033.mkv +向银莹-该死的爱情,http://em.21dtv.com/songs/60116628.mkv +JKAI+DIXON-该死的爱情,http://em.21dtv.com/songs/60071939.mkv +阿权-哥是纯爷们,http://em.21dtv.com/songs/60111476.mkv +华少瑞明-哥是爱你的,http://em.21dtv.com/songs/60132265.mkv +总政歌舞团-光荣与梦想,http://em.21dtv.com/songs/60096299.mkv +汤灿-光荣与梦想,http://em.21dtv.com/songs/60088201.mkv +毛阿敏-光荣与梦想(演唱会),http://em.21dtv.com/songs/60019312.mkv +佚名-甘让你不知,http://em.21dtv.com/songs/60095433.mkv +罗勤颖+杨洪-格瑞林之歌,http://em.21dtv.com/songs/60116192.mkv +JENNY YANG-该如何快乐,http://em.21dtv.com/songs/60017813.mkv +轻晨电乐队-GREEN,http://em.21dtv.com/songs/60124532.mkv +宋祖英-光荣的士兵,http://em.21dtv.com/songs/60019309.mkv +佚名-滚热的咖啡,http://em.21dtv.com/songs/60019436.mkv +王姿懿+戴玉强-国旗在诉说,http://em.21dtv.com/songs/60064268.mkv +佚名-跟渠做个friend,http://em.21dtv.com/songs/60018622.mkv +小5-感情追悼会,http://em.21dtv.com/songs/60069408.mkv +傅振辉-感情用真重,http://em.21dtv.com/songs/60018058.mkv +万梓良-感情用真重(无原唱),http://em.21dtv.com/songs/60018057.mkv +曾心梅-感情用一半,http://em.21dtv.com/songs/60018056.mkv +刘育绫-感情行无步,http://em.21dtv.com/songs/60018019.mkv +阿吉仔-感情下尚重(无原唱),http://em.21dtv.com/songs/60018044.mkv +秀兰玛雅-感情无退路,http://em.21dtv.com/songs/60018043.mkv +尤姿涵-感情无块寄,http://em.21dtv.com/songs/60018042.mkv +夏韶声-过去是昨天(演唱会),http://em.21dtv.com/songs/60019525.mkv +刘佳轩-甘请是无份,http://em.21dtv.com/songs/60095462.mkv +陈亚兰-感情谁人赢,http://em.21dtv.com/songs/60018041.mkv +佚名-过去是过去,http://em.21dtv.com/songs/60019524.mkv +李明洋-感情亲像风,http://em.21dtv.com/songs/60018036.mkv +刘俐婷-感情难收回,http://em.21dtv.com/songs/60018034.mkv +王建杰-过去啦!干杯(无原唱),http://em.21dtv.com/songs/60019522.mkv +陈淑萍-感情靠无岸,http://em.21dtv.com/songs/60018026.mkv +王中平+甲子蕙-感情坎坷路,http://em.21dtv.com/songs/60018025.mkv +龙千玉+蔡一红-感情看乎开,http://em.21dtv.com/songs/60075018.mkv +赵照-过期荷尔蒙,http://em.21dtv.com/songs/60130777.mkv +佚名-钢琴后的人,http://em.21dtv.com/songs/60018150.mkv +伦永亮-钢琴后的人,http://em.21dtv.com/songs/60018148.mkv +陈思安-感情黑白话,http://em.21dtv.com/songs/60018021.mkv +上明-感情规碗捧,http://em.21dtv.com/songs/60130030.mkv +猛虎巧克力-给奇怪的你,http://em.21dtv.com/songs/60115281.mkv +江湖哥-过去过不去,http://em.21dtv.com/songs/60135478.mkv +王力宏-感情副作用,http://em.21dtv.com/songs/60018018.mkv +江蕙-感情放一边,http://em.21dtv.com/songs/60018016.mkv +曾心梅-感情放一边,http://em.21dtv.com/songs/60018015.mkv +陈盈洁-感情放袜记,http://em.21dtv.com/songs/60018014.mkv +甲子慧-感情放水流,http://em.21dtv.com/songs/60111309.mkv +蔡丽津-感情放水流,http://em.21dtv.com/songs/60018013.mkv +洪荣宏-感情分开住,http://em.21dtv.com/songs/60018017.mkv +陈美凤+伍浩哲-感情放乎散(无原唱),http://em.21dtv.com/songs/60018012.mkv +白小白-过去的照片,http://em.21dtv.com/songs/60117067.mkv +罗时丰-感情到最后,http://em.21dtv.com/songs/60018001.mkv +林沐桦-感情到最后(无原唱),http://em.21dtv.com/songs/60018000.mkv +孙莞-过期的依靠,http://em.21dtv.com/songs/60098251.mkv +信乐团-感情的形状,http://em.21dtv.com/songs/60068266.mkv +飘洒的心雨-感情的漩涡,http://em.21dtv.com/songs/60065984.mkv +陈雷-感情的线路(无原唱),http://em.21dtv.com/songs/60018010.mkv +孙淑媚-感情的玩物,http://em.21dtv.com/songs/60018009.mkv +蔡小虎-过去的温柔,http://em.21dtv.com/songs/60019519.mkv +凌志辉-过期的温柔,http://em.21dtv.com/songs/60019510.mkv +唐俪-感情倒头栽,http://em.21dtv.com/songs/60098210.mkv +Betty Jong-感情的世界,http://em.21dtv.com/songs/60113129.mkv +郑源-过期的情书,http://em.21dtv.com/songs/60019509.mkv +桂莹莹-过气的情人,http://em.21dtv.com/songs/60131568.mkv +王馨平-感情的片段,http://em.21dtv.com/songs/60018008.mkv +酷奇-感情的傀儡,http://em.21dtv.com/songs/60101187.mkv +王建杰-感情的吉他,http://em.21dtv.com/songs/60079957.mkv +佚名-感情的吉他,http://em.21dtv.com/songs/60018005.mkv +周慧敏-感情的分礼,http://em.21dtv.com/songs/60018004.mkv +杨烈-过去的代志,http://em.21dtv.com/songs/60096096.mkv +佚名-过去的代志(无原唱),http://em.21dtv.com/songs/60019516.mkv +甲子蕙-感情的代志,http://em.21dtv.com/songs/60018002.mkv +林志美-感情的段落,http://em.21dtv.com/songs/60018003.mkv +佚名-过去的春梦,http://em.21dtv.com/songs/60019515.mkv +雨宗林-过期的爱情,http://em.21dtv.com/songs/60094341.mkv +陈百潭-感情拆袜散,http://em.21dtv.com/songs/60017997.mkv +陈百潭-感情拆抹散,http://em.21dtv.com/songs/60096015.mkv +阿吉仔-感情甭相欠,http://em.21dtv.com/songs/60017992.mkv +孙淑媚-感情变负担,http://em.21dtv.com/songs/60017993.mkv +张栋梁-给朋友的话,http://em.21dtv.com/songs/60064238.mkv +詹雅雯+曹俊鸿-搁拼三五年,http://em.21dtv.com/songs/60018340.mkv +苏平生-歌飘山水间,http://em.21dtv.com/songs/60126103.mkv +岳菲-高坪山水画,http://em.21dtv.com/songs/60085112.mkv +林子娟-get out of my life,http://em.21dtv.com/songs/60001854.mkv +佚名-goinout of my head,http://em.21dtv.com/songs/60001936.mkv +欧汉声-GOOD爱,http://em.21dtv.com/songs/60094184.mkv +郑玉华-姑娘总要嫁,http://em.21dtv.com/songs/60134308.mkv +尹相杰+于文华-跟你走天涯,http://em.21dtv.com/songs/60102163.mkv +雨柔+李国辉-姑娘醉了我,http://em.21dtv.com/songs/60118179.mkv +方婉真-姑娘一蕊花,http://em.21dtv.com/songs/60018966.mkv +佚名-给你一片天,http://em.21dtv.com/songs/60018511.mkv +张政+李砚琴-给你一个吻,http://em.21dtv.com/songs/60075507.mkv +冈林-姑娘呀姑娘,http://em.21dtv.com/songs/60061217.mkv +孙楠+徐千雅-跟你一辈子,http://em.21dtv.com/songs/60065994.mkv +袁哲-姑娘想嫁人,http://em.21dtv.com/songs/60068281.mkv +谢采妘-姑娘羞答答,http://em.21dtv.com/songs/60018965.mkv +江央扎西-姑娘我等你,http://em.21dtv.com/songs/60133920.mkv +兄弟联-给你我的爱,http://em.21dtv.com/songs/60075505.mkv +包伍+米线-姑娘我爱你,http://em.21dtv.com/songs/60113308.mkv +降央卓玛-姑娘我爱你,http://em.21dtv.com/songs/60100608.mkv +易丹-姑娘我爱你,http://em.21dtv.com/songs/60018962.mkv +王羽泽-姑娘我爱你,http://em.21dtv.com/songs/60018961.mkv +索郎扎西-姑娘我爱你,http://em.21dtv.com/songs/60018960.mkv +独脚神鹰-姑娘我爱你,http://em.21dtv.com/songs/60018959.mkv +童唱-good night to you all,http://em.21dtv.com/songs/60001957.mkv +佚名-共你伤心过,http://em.21dtv.com/songs/60018781.mkv +方瑞娥-姑娘水当当,http://em.21dtv.com/songs/60065997.mkv +登格尔-姑娘亲亲嘴,http://em.21dtv.com/songs/60065996.mkv +黄乙玲-跟你趴趴走,http://em.21dtv.com/songs/60018617.mkv +佚名-给你骗不知,http://em.21dtv.com/songs/60018506.mkv +红笛-姑娘你真美,http://em.21dtv.com/songs/60068280.mkv +佚名-姑娘你真美,http://em.21dtv.com/songs/60018949.mkv +谢霆锋-挂念你是我,http://em.21dtv.com/songs/60019150.mkv +尤文斌-姑娘你漂亮(舞曲版),http://em.21dtv.com/songs/60085143.mkv +郝祺-给你们的歌,http://em.21dtv.com/songs/60122177.mkv +肥猫大队长-姑娘90后,http://em.21dtv.com/songs/60071961.mkv +郭蓉-过年就回家,http://em.21dtv.com/songs/60110589.mkv +郭斯炫-姑娘嫁给我,http://em.21dtv.com/songs/60085141.mkv +动力火车-管你嫁给谁,http://em.21dtv.com/songs/60090755.mkv +帅霖-姑娘好美丽,http://em.21dtv.com/songs/60121623.mkv +张师羽-姑娘 姑娘,http://em.21dtv.com/songs/60126878.mkv +泉鑫-姑娘给点爱,http://em.21dtv.com/songs/60085139.mkv +泽仁伍波-姑娘的装饰,http://em.21dtv.com/songs/60121866.mkv +罗时丰-孤女的愿望,http://em.21dtv.com/songs/60075563.mkv +佚名-孤女的愿望,http://em.21dtv.com/songs/60018918.mkv +黄乙玲-孤女的愿望,http://em.21dtv.com/songs/60018917.mkv +陈小云-孤女的愿望,http://em.21dtv.com/songs/60018916.mkv +王野-该你的幸福,http://em.21dtv.com/songs/60075438.mkv +凯璐凯玥-过年的日子,http://em.21dtv.com/songs/60019504.mkv +孔雀哥哥-给你的情书,http://em.21dtv.com/songs/60104033.mkv +徐誉滕-给你的年纪,http://em.21dtv.com/songs/60018498.mkv +动力火车-姑娘的酒窝(演唱会),http://em.21dtv.com/songs/60018942.mkv +佚名-姑娘的酒窝(无原唱),http://em.21dtv.com/songs/60018941.mkv +许冠杰-共你常为伴,http://em.21dtv.com/songs/60018780.mkv +高安-姑娘不要走,http://em.21dtv.com/songs/60067035.mkv +登越顿珠-姑娘贝玛措,http://em.21dtv.com/songs/60075549.mkv +慕容晓晓-姑娘爱情郎,http://em.21dtv.com/songs/60018938.mkv +佟丽娅-管你爱不爱,http://em.21dtv.com/songs/60109978.mkv +SISTAR 19-gone not around any longer,http://em.21dtv.com/songs/60073270.mkv +冯光-哥没有喝多,http://em.21dtv.com/songs/60123653.mkv +赵斌-哥没有喝多,http://em.21dtv.com/songs/60117259.mkv +童唱-蛤蟆跳下水,http://em.21dtv.com/songs/60019570.mkv +鸿飞-哥们听我说,http://em.21dtv.com/songs/60110722.mkv +罗愉+晓晓-哥妹桃花恋,http://em.21dtv.com/songs/60127277.mkv +CRAIG MORGAN-god must really love me,http://em.21dtv.com/songs/60073265.mkv +张家晟-哥们请干杯,http://em.21dtv.com/songs/60119513.mkv +光头阿兴-干嘛那么累,http://em.21dtv.com/songs/60110852.mkv +杜歌-哥们你累吗,http://em.21dtv.com/songs/60075486.mkv +杜彦军-哥们你累吗,http://em.21dtv.com/songs/60018324.mkv +Freak Sam-闺蜜美美哒,http://em.21dtv.com/songs/60133200.mkv +徐誉滕-给某某的信,http://em.21dtv.com/songs/60075503.mkv +马浚伟-给妈妈的倦,http://em.21dtv.com/songs/60079963.mkv +赵咏华-给妈妈的话,http://em.21dtv.com/songs/60080051.mkv +郑志立-给妈妈的歌,http://em.21dtv.com/songs/60104490.mkv +倪惠英+梁耀安-共觅好春光,http://em.21dtv.com/songs/60018779.mkv +蟑螂乐队-good morning good afternoon go,http://em.21dtv.com/songs/60001954.mkv +办桌阿杰+苏路-归暝的雨水,http://em.21dtv.com/songs/60019371.mkv +瑶瑶-闺蜜大爆炸,http://em.21dtv.com/songs/60117057.mkv +涂先农-光明的彼岸,http://em.21dtv.com/songs/60068291.mkv +MADONNA FEAT. NICKI MINAJ+ M.I.A.-give me all your luvin,http://em.21dtv.com/songs/60082166.mkv +杨帆-蛤蟆爱天鹅,http://em.21dtv.com/songs/60019569.mkv +卢星灿-干了这一杯,http://em.21dtv.com/songs/60110905.mkv +李泓滢-仡佬族酒歌,http://em.21dtv.com/songs/60054133.mkv +高夫-干了这杯酒,http://em.21dtv.com/songs/60130907.mkv +常生-干了这杯酒,http://em.21dtv.com/songs/60126833.mkv +杜歌-干了这杯酒,http://em.21dtv.com/songs/60118694.mkv +杜歌+二龙湖浩哥-干了这杯酒,http://em.21dtv.com/songs/60109444.mkv +张寒-干了这杯酒,http://em.21dtv.com/songs/60075445.mkv +张暴默-鼓浪屿之歌,http://em.21dtv.com/songs/60091116.mkv +王琳玲-鼓浪屿之波,http://em.21dtv.com/songs/60108727.mkv +龚月-鼓浪屿之波,http://em.21dtv.com/songs/60102526.mkv +殷秀梅-鼓浪屿之波,http://em.21dtv.com/songs/60095313.mkv +郑绪岚-鼓浪屿之波,http://em.21dtv.com/songs/60090261.mkv +千荷-鼓浪屿之波,http://em.21dtv.com/songs/60089697.mkv +佚名-鼓浪屿之波,http://em.21dtv.com/songs/60019009.mkv +张暴默-鼓浪屿之波(演唱会),http://em.21dtv.com/songs/60019008.mkv +程琳-鼓浪屿之波(演唱会),http://em.21dtv.com/songs/60019007.mkv +新疆民歌-古丽娅茹1,http://em.21dtv.com/songs/60089900.mkv +新疆民歌-古丽娅茹5,http://em.21dtv.com/songs/60089908.mkv +新疆民歌-古丽娅茹4,http://em.21dtv.com/songs/60089907.mkv +新疆民歌-古丽娅茹3,http://em.21dtv.com/songs/60089906.mkv +新疆民歌-古丽娅茹7,http://em.21dtv.com/songs/60089910.mkv +新疆民歌-古丽娅茹6,http://em.21dtv.com/songs/60089909.mkv +新疆民歌-古丽娅茹9,http://em.21dtv.com/songs/60089911.mkv +新疆民歌-古丽娅茹2,http://em.21dtv.com/songs/60089905.mkv +阿正-给力(演唱会),http://em.21dtv.com/songs/60070709.mkv +刘浩-干了三杯酒,http://em.21dtv.com/songs/60097482.mkv +张洪量-格陵兰情书,http://em.21dtv.com/songs/60122737.mkv +沈芳如-过了卡快活,http://em.21dtv.com/songs/60112062.mkv +小娟+山谷里的居民-归来的燕子,http://em.21dtv.com/songs/60082984.mkv +格格-赶路的月光(演唱会),http://em.21dtv.com/songs/60017911.mkv +廖昌永-归来的星光,http://em.21dtv.com/songs/60115895.mkv +廖昌永-归来的星光,http://em.21dtv.com/songs/60091028.mkv +骆超勇-古老的誓言,http://em.21dtv.com/songs/60018985.mkv +陈升-狗脸的岁月,http://em.21dtv.com/songs/60018800.mkv +陈红-古老的故事,http://em.21dtv.com/songs/60018984.mkv +大娇娇-高冷的范儿,http://em.21dtv.com/songs/60121536.mkv +李圣杰-古老的大钟,http://em.21dtv.com/songs/60018983.mkv +宋孟君-高冷的爱情,http://em.21dtv.com/songs/60127912.mkv +朱婧汐-公路冰淇淋,http://em.21dtv.com/songs/60122822.mkv +陈星-归来吧爱人,http://em.21dtv.com/songs/60019368.mkv +新疆民歌-古力阿伊木,http://em.21dtv.com/songs/60089912.mkv +佚名-给恋爱喝彩,http://em.21dtv.com/songs/60018485.mkv +徐新军-给快乐加油,http://em.21dtv.com/songs/60109358.mkv +曹尔真-哥就这么唱,http://em.21dtv.com/songs/60070704.mkv +胡杏儿+黄宗泽-感激遇到你,http://em.21dtv.com/songs/60017969.mkv +叶贝文-感觉叶贝文,http://em.21dtv.com/songs/60061203.mkv +郑伊健-感激我遇见,http://em.21dtv.com/songs/60017968.mkv +郑伊健-感激我遇见(演唱会),http://em.21dtv.com/songs/60017967.mkv +CYNDI LAUPER-girls just wanna have fun,http://em.21dtv.com/songs/60001892.mkv +刘佳轩-甘讲是无份,http://em.21dtv.com/songs/60017862.mkv +王丽达-给家捎个话,http://em.21dtv.com/songs/60085128.mkv +王喆-给家捎个话(演唱会),http://em.21dtv.com/songs/60068274.mkv +曾擎-给家捎个话,http://em.21dtv.com/songs/60065993.mkv +刘俊-感觉三分钟,http://em.21dtv.com/songs/60017980.mkv +林子娟-甘讲阮孤单,http://em.21dtv.com/songs/60017861.mkv +黄乙玲-甘讲你无知,http://em.21dtv.com/songs/60017860.mkv +方怡萍+高向鹏-甘讲你不知,http://em.21dtv.com/songs/60067014.mkv +佚名-甘讲你不知,http://em.21dtv.com/songs/60017859.mkv +游鸿明-告解的男人,http://em.21dtv.com/songs/60018286.mkv +陈慧琳-感觉多么美,http://em.21dtv.com/songs/60017976.mkv +小苹果-国际超模版,http://em.21dtv.com/songs/60116745.mkv +陈晓东-感觉不一样,http://em.21dtv.com/songs/60062277.mkv +羽泉-感觉不到你,http://em.21dtv.com/songs/60017975.mkv +野孩子-感觉不到你,http://em.21dtv.com/songs/60017974.mkv +羽泉-感觉不到你(演唱会),http://em.21dtv.com/songs/60017973.mkv +施文彬-赶紧爱别人,http://em.21dtv.com/songs/60017905.mkv +The 1975-Girls,http://em.21dtv.com/songs/60125017.mkv +佚名-goodbye is just another word,http://em.21dtv.com/songs/60001970.mkv +佚名-girl im gonna miss you,http://em.21dtv.com/songs/60001877.mkv +李国祥-给孩子的话,http://em.21dtv.com/songs/60126997.mkv +JKAI-歌还做不做,http://em.21dtv.com/songs/60107412.mkv +呼斯楞-篝火圆舞曲,http://em.21dtv.com/songs/60111778.mkv +曲肖冰-刚好遇见你,http://em.21dtv.com/songs/60135327.mkv +黑崎-刚好遇见你,http://em.21dtv.com/songs/60134510.mkv +李玉刚-刚好遇见你,http://em.21dtv.com/songs/60132559.mkv +李玉刚-刚好遇见你,http://em.21dtv.com/songs/60131505.mkv +景心妍-桂花树之恋,http://em.21dtv.com/songs/60066007.mkv +佚名-桂花树之恋,http://em.21dtv.com/songs/60019412.mkv +许罡-该和谁打听,http://em.21dtv.com/songs/60114774.mkv +Ella Henderson-Ghost,http://em.21dtv.com/songs/60104667.mkv +Ailee-管好你自己,http://em.21dtv.com/songs/60115563.mkv +李潮-共和国之恋,http://em.21dtv.com/songs/60133807.mkv +廖昌永-共和国之恋,http://em.21dtv.com/songs/60109294.mkv +彭丽媛+吕继宏-共和国之恋,http://em.21dtv.com/songs/60075543.mkv +佚名-共和国之恋,http://em.21dtv.com/songs/60018778.mkv +黄卓-共和国礼赞,http://em.21dtv.com/songs/60018775.mkv +刘雪婧+曾敏杰+郑迦文+李瑞轩-更好的自己,http://em.21dtv.com/songs/60128845.mkv +雨宗林-更好的以后,http://em.21dtv.com/songs/60130867.mkv +佚名-关怀的心声,http://em.21dtv.com/songs/60019207.mkv +张栋梁-刚好的幸福,http://em.21dtv.com/songs/60075466.mkv +黄艺明-光辉的璀璨,http://em.21dtv.com/songs/60106503.mkv +殷悦-刚好的不够,http://em.21dtv.com/songs/60018146.mkv +郭富城-个个赞你乖,http://em.21dtv.com/songs/60018444.mkv +郭富城-个个赞你乖(演唱会),http://em.21dtv.com/songs/60018443.mkv +杨洪基-滚滚长江水,http://em.21dtv.com/songs/60091409.mkv +阿文-光棍也要爱,http://em.21dtv.com/songs/60112335.mkv +曾心梅-敢搁有必要(无原唱),http://em.21dtv.com/songs/60017928.mkv +王蓉-高跟鞋先生,http://em.21dtv.com/songs/60118796.mkv +天亮-高高兴安岭,http://em.21dtv.com/songs/60101058.mkv +玉面天使-哥哥我爱你,http://em.21dtv.com/songs/60081183.mkv +刘斌-高高太子山,http://em.21dtv.com/songs/60018202.mkv +Tahiti-哥哥是我的,http://em.21dtv.com/songs/60101829.mkv +周杰伦-公公偏头痛,http://em.21dtv.com/songs/60071955.mkv +龙梅子-哥哥你真帅,http://em.21dtv.com/songs/60018320.mkv +旺福乐团-肝功能衰竭,http://em.21dtv.com/songs/60017900.mkv +八大巨星-过个快乐年,http://em.21dtv.com/songs/60075624.mkv +范晓萱-狗狗减肥操,http://em.21dtv.com/songs/60018799.mkv +大平-哥哥很不错,http://em.21dtv.com/songs/60081708.mkv +TOM JONES-green green grass of home,http://em.21dtv.com/songs/60002025.mkv +逍遥不败-高高飞向天(无原唱),http://em.21dtv.com/songs/60018201.mkv +亚东-高高二郎山,http://em.21dtv.com/songs/60090522.mkv +宋熙铭-高个儿姑娘,http://em.21dtv.com/songs/60075471.mkv +许嘉文-孤孤单的走,http://em.21dtv.com/songs/60075561.mkv +胡艾彤-哥哥必须帅,http://em.21dtv.com/songs/60122044.mkv +翁立友-辜负你的爱,http://em.21dtv.com/songs/60018976.mkv +孙淑媚-辜负你的爱,http://em.21dtv.com/songs/60018975.mkv +西野カナ-go for it!!,http://em.21dtv.com/songs/60082168.mkv +陈俊华-歌飞大西部,http://em.21dtv.com/songs/60018378.mkv +天籁天-孤飞的候鸟,http://em.21dtv.com/songs/60075560.mkv +张志家-高飞的孤独,http://em.21dtv.com/songs/60018197.mkv +周华健-寡妇村传奇,http://em.21dtv.com/songs/60019139.mkv +水鸿-孤芳不自赏,http://em.21dtv.com/songs/60131589.mkv +霍尊-孤芳不自赏,http://em.21dtv.com/songs/60130874.mkv +苏阳-官封弼马温(演唱会),http://em.21dtv.com/songs/60067042.mkv +杨臣刚+香香-共赴奥运梦,http://em.21dtv.com/songs/60018773.mkv +陈咏谦-给儿子的信,http://em.21dtv.com/songs/60131932.mkv +许椿苗-感恩你的爱,http://em.21dtv.com/songs/60132883.mkv +福山雅治-girl 2012,http://em.21dtv.com/songs/60071602.mkv +曹龙-感恩佛菩萨,http://em.21dtv.com/songs/60132506.mkv +向蕙玲-感恩的滋味,http://em.21dtv.com/songs/60133461.mkv +小俊-感恩的吟唱,http://em.21dtv.com/songs/60085107.mkv +何易峰-感恩的目汁,http://em.21dtv.com/songs/60017952.mkv +詹雅雯-感恩的花蕊,http://em.21dtv.com/songs/60017951.mkv +陈雷-感恩的歌声,http://em.21dtv.com/songs/60097685.mkv +黄思婷-孤单一个人,http://em.21dtv.com/songs/60018871.mkv +林锋-孤单情人节,http://em.21dtv.com/songs/60018867.mkv +佚名-关达娜美拉,http://em.21dtv.com/songs/60019197.mkv +傅佩嘉-干掉你的胃,http://em.21dtv.com/songs/60018129.mkv +于文华-感动你的美,http://em.21dtv.com/songs/60017942.mkv +林俊杰+阿杜+孙燕姿+蔡健雅-感动每一刻,http://em.21dtv.com/songs/60017941.mkv +飞轮海-孤单摩天轮,http://em.21dtv.com/songs/60018865.mkv +军嫂组合-感动就行动,http://em.21dtv.com/songs/60099768.mkv +范玮琪-感动就不远,http://em.21dtv.com/songs/60064217.mkv +林子萱-过度活跃症,http://em.21dtv.com/songs/60092862.mkv +林子宣-过渡活跃症,http://em.21dtv.com/songs/60019473.mkv +陈思思-共度好时光,http://em.21dtv.com/songs/60018772.mkv +陈思思-共度好时光(演唱会),http://em.21dtv.com/songs/60018771.mkv +刘德华-孤独会软弱,http://em.21dtv.com/songs/60018891.mkv +郭金发-港都好男儿(无原唱),http://em.21dtv.com/songs/60018176.mkv +王绍博-孤单的自由,http://em.21dtv.com/songs/60018853.mkv +吴汶芳-孤独的总和,http://em.21dtv.com/songs/60114450.mkv +吴汶芳-孤独的总和,http://em.21dtv.com/songs/60108381.mkv +迪克牛仔-孤独的夜晚,http://em.21dtv.com/songs/60088738.mkv +刘依纯-孤单的月娘,http://em.21dtv.com/songs/60018852.mkv +冰芳雪-孤单的勇敢,http://em.21dtv.com/songs/60099102.mkv +周慧敏-孤单的心痛,http://em.21dtv.com/songs/60018848.mkv +周慧敏-孤单的心痛(演唱会),http://em.21dtv.com/songs/60018847.mkv +沈文程-孤单的心情(无原唱),http://em.21dtv.com/songs/60018846.mkv +小刚-孤单的习惯,http://em.21dtv.com/songs/60082961.mkv +一加一组合-孤单的习惯,http://em.21dtv.com/songs/60075555.mkv +张祥洪-孤单的幸福,http://em.21dtv.com/songs/60018849.mkv +陈直-更大的天空,http://em.21dtv.com/songs/60124648.mkv +毕夏+张恒远-更大的天空,http://em.21dtv.com/songs/60097554.mkv +周宝军-孤单的探戈,http://em.21dtv.com/songs/60018844.mkv +陈芳-孤独的生活,http://em.21dtv.com/songs/60135941.mkv +依栏听雪-孤独的时候,http://em.21dtv.com/songs/60127741.mkv +林志颖-感动的生活,http://em.21dtv.com/songs/60088104.mkv +徐良-关灯的时候,http://em.21dtv.com/songs/60019199.mkv +何润东+张娜拉-孤独的缺口,http://em.21dtv.com/songs/60018889.mkv +沈旭升-孤独的男人,http://em.21dtv.com/songs/60129340.mkv +香香童彤-孤独的女人,http://em.21dtv.com/songs/60018888.mkv +陈杰龙-孤独的男人,http://em.21dtv.com/songs/60018887.mkv +朱贝贝-孤单的木偶,http://em.21dtv.com/songs/60114588.mkv +赵荣-孤单的快乐,http://em.21dtv.com/songs/60114103.mkv +黄栋-孤独的吉他,http://em.21dtv.com/songs/60018883.mkv +李进-孤独的街灯,http://em.21dtv.com/songs/60018884.mkv +于洋-孤独的回忆,http://em.21dtv.com/songs/60018882.mkv +萧煌奇-孤独的和弦,http://em.21dtv.com/songs/60018880.mkv +袁泉-孤独的花朵,http://em.21dtv.com/songs/60018881.mkv +苏小艾-孤独的歌者,http://em.21dtv.com/songs/60119913.mkv +江洋-孤独的国王,http://em.21dtv.com/songs/60117882.mkv +李天平-孤独的感觉,http://em.21dtv.com/songs/60064250.mkv +刚辉-孤单的感觉,http://em.21dtv.com/songs/60018839.mkv +任贤齐-孤独的灯火,http://em.21dtv.com/songs/60090551.mkv +涓子-孤独的等候,http://em.21dtv.com/songs/60064249.mkv +曹磊-孤单的等候,http://em.21dtv.com/songs/60018838.mkv +向蕙玲-孤单的城市,http://em.21dtv.com/songs/60135002.mkv +李明翰-孤单的城市,http://em.21dtv.com/songs/60121777.mkv +于娜-孤单的冲动,http://em.21dtv.com/songs/60018837.mkv +安又琪-孤独的半音,http://em.21dtv.com/songs/60071965.mkv +米贝-孤单的爱人,http://em.21dtv.com/songs/60075554.mkv +Jessi-过度的爱情,http://em.21dtv.com/songs/60134709.mkv +郑志勇-孤单的暗暝,http://em.21dtv.com/songs/60127462.mkv +周国贤-怪诞城之夜,http://em.21dtv.com/songs/60092469.mkv +翁立友-孤单才知痛,http://em.21dtv.com/songs/60018834.mkv +林玉英-孤单伴月圆,http://em.21dtv.com/songs/60095692.mkv +JW-孤单不要怕,http://em.21dtv.com/songs/60018833.mkv +群星-过的比我好,http://em.21dtv.com/songs/60075621.mkv +何炅+邓丽欣-过得比我好,http://em.21dtv.com/songs/60067045.mkv +深白色2人组-过得比你好,http://em.21dtv.com/songs/60019468.mkv +王禹锡-孤独不寂寞,http://em.21dtv.com/songs/60070717.mkv +范扬景-孤单不孤单,http://em.21dtv.com/songs/60097609.mkv +梁静茹-孤单北半球,http://em.21dtv.com/songs/60107001.mkv +欧得洋-孤单北半球,http://em.21dtv.com/songs/60018830.mkv +林依晨-孤单北半球,http://em.21dtv.com/songs/60018829.mkv +阿生-孤单北半球,http://em.21dtv.com/songs/60018828.mkv +黄品源-孤单爱情海,http://em.21dtv.com/songs/60018826.mkv +韩琳-歌从心中来,http://em.21dtv.com/songs/60065990.mkv +张黎玲-歌从雪山来(演唱会),http://em.21dtv.com/songs/60018376.mkv +龙飘飘-歌唱幸福年,http://em.21dtv.com/songs/60064230.mkv +赵传-给出我自己,http://em.21dtv.com/songs/60018476.mkv +郁钧剑-歌唱王二小,http://em.21dtv.com/songs/60018368.mkv +阿牛-给从前的爱,http://em.21dtv.com/songs/60097624.mkv +梁静茹-给从前的爱,http://em.21dtv.com/songs/60018477.mkv +秦杨-公车牌之恋,http://em.21dtv.com/songs/60018682.mkv +张挥-歌唱你潜江,http://em.21dtv.com/songs/60075493.mkv +冷漠-敢唱你就红,http://em.21dtv.com/songs/60108324.mkv +佚名-歌唱毛泽东,http://em.21dtv.com/songs/60018366.mkv +张信哲+黄婉秋+邓紫棋-歌从漓江来,http://em.21dtv.com/songs/60132433.mkv +佚名-歌唱井冈山,http://em.21dtv.com/songs/60018365.mkv +大家唱合唱团-歌唱井冈山,http://em.21dtv.com/songs/60018364.mkv +阎维文-歌唱二郎山,http://em.21dtv.com/songs/60018362.mkv +李双江-歌唱二郎山,http://em.21dtv.com/songs/60018361.mkv +张雪琴+陈冠锋-矜持的伪装,http://em.21dtv.com/songs/60072087.mkv +梅子-光彩第二街,http://em.21dtv.com/songs/60019273.mkv +金波-工程兵之歌,http://em.21dtv.com/songs/60018677.mkv +佚名-管不住自己,http://em.21dtv.com/songs/60019254.mkv +贺世哲-够不着的吻,http://em.21dtv.com/songs/60061215.mkv +许秋怡+林汉扬-管不住的痴(无原唱),http://em.21dtv.com/songs/60019253.mkv +孙更俊-告别雨季,http://em.21dtv.com/songs/60070703.mkv +宋祖英-官兵友爱歌(演唱会),http://em.21dtv.com/songs/60019249.mkv +谭咏麟+李克勤-告别校园时(演唱会),http://em.21dtv.com/songs/60018282.mkv +李克勤-告别校园时(演唱会),http://em.21dtv.com/songs/60018281.mkv +佚名-港边相思曲,http://em.21dtv.com/songs/60018173.mkv +王俊宇-哥不想寂寞,http://em.21dtv.com/songs/60018312.mkv +潘美辰-改变我的心,http://em.21dtv.com/songs/60088251.mkv +吴松发-哥不是帅哥,http://em.21dtv.com/songs/60082944.mkv +樊凡-给悲伤机会,http://em.21dtv.com/songs/60085126.mkv +周传雄-关不上的窗,http://em.21dtv.com/songs/60019194.mkv +王铮亮-给不起的爱(演唱会),http://em.21dtv.com/songs/60018474.mkv +潘晓峰-干杯老朋友,http://em.21dtv.com/songs/60075444.mkv +花哥-给不了承诺,http://em.21dtv.com/songs/60080564.mkv +徐晓杰-隔壁家老王,http://em.21dtv.com/songs/60111102.mkv +蒙面哥-隔壁很伤心,http://em.21dtv.com/songs/60126144.mkv +袁攀+夕落-该不该走开,http://em.21dtv.com/songs/60082933.mkv +刘美麟-该不该长大,http://em.21dtv.com/songs/60080649.mkv +孟瑶-该不该爱你,http://em.21dtv.com/songs/60064213.mkv +郭富城-改变的使命,http://em.21dtv.com/songs/60017841.mkv +宋祖英+那英-告别的时刻(演唱会),http://em.21dtv.com/songs/60067027.mkv +佚名-广播道神话,http://em.21dtv.com/songs/60019331.mkv +信-告别的时代,http://em.21dtv.com/songs/60117558.mkv +谭轩辕-告别的时代,http://em.21dtv.com/songs/60114801.mkv +信-告别的时代,http://em.21dtv.com/songs/60094408.mkv +陈一玲-告别的时代,http://em.21dtv.com/songs/60082942.mkv +阿信-告别的时代,http://em.21dtv.com/songs/60018275.mkv +谢军-隔壁的女孩,http://em.21dtv.com/songs/60064234.mkv +罗大佑-告别的年代,http://em.21dtv.com/songs/60088427.mkv +佚名-告别的年代(无原唱),http://em.21dtv.com/songs/60018274.mkv +胡亚捷+王为念+管彤-隔壁大老王,http://em.21dtv.com/songs/60124373.mkv +SNH48-告白趁现在,http://em.21dtv.com/songs/60109872.mkv +林子祥-改变常改变,http://em.21dtv.com/songs/60017840.mkv +张挥-给爸爸妈妈,http://em.21dtv.com/songs/60069418.mkv +金莎-告别爱的夏,http://em.21dtv.com/songs/60065988.mkv +吴浩康-给爱惜的人,http://em.21dtv.com/songs/60018468.mkv +大左-怪爱太天真,http://em.21dtv.com/songs/60095190.mkv +周杰伦-给安娜的信,http://em.21dtv.com/songs/60018469.mkv +江蕙-敢爱嘸敢恨,http://em.21dtv.com/songs/60095738.mkv +江蕙-敢爱呒敢爱,http://em.21dtv.com/songs/60017925.mkv +陈思安-勾啊勾手指,http://em.21dtv.com/songs/60129736.mkv +叶恒秀-给爱点个赞,http://em.21dtv.com/songs/60104866.mkv +岚-果てない空,http://em.21dtv.com/songs/60019462.mkv +RAINBOW-ガナガナgo!,http://em.21dtv.com/songs/60066765.mkv +曾心梅-风醉雨也醉,http://em.21dtv.com/songs/60017527.mkv +江蕙-风醉雨也醉(无原唱),http://em.21dtv.com/songs/60017526.mkv +吴淑敏-风中一句话,http://em.21dtv.com/songs/60017518.mkv +宋孟君-风筝与彩虹,http://em.21dtv.com/songs/60094477.mkv +丁思忖+茶茶-反正我最好,http://em.21dtv.com/songs/60127692.mkv +佚名-放在我心上,http://em.21dtv.com/songs/60016749.mkv +信-反正我信了,http://em.21dtv.com/songs/60109155.mkv +刘春爱+童祀杰-风走情未丢,http://em.21dtv.com/songs/60100777.mkv +佚名-放纵你的心(无原唱),http://em.21dtv.com/songs/60016760.mkv +况明洁-放逐你的心,http://em.21dtv.com/songs/60016757.mkv +办桌二人组-风筝乃啊乃,http://em.21dtv.com/songs/60017470.mkv +赛娅+胡小宝-非主流初恋,http://em.21dtv.com/songs/60065961.mkv +任妙音-风中花雨楼,http://em.21dtv.com/songs/60125103.mkv +瑞雪+祁隆-风中花雨楼,http://em.21dtv.com/songs/60100332.mkv +瑞雪-风中花雨楼,http://em.21dtv.com/songs/60071935.mkv +瑞雪-风中花语楼,http://em.21dtv.com/songs/60068259.mkv +李依瑾-翻转坏未来,http://em.21dtv.com/songs/60066984.mkv +许冠杰-风中赶路人,http://em.21dtv.com/songs/60107210.mkv +许冠杰-风中赶路人,http://em.21dtv.com/songs/60017508.mkv +夏天ALEX-反正分开了,http://em.21dtv.com/songs/60081205.mkv +夏天-反正分开了,http://em.21dtv.com/songs/60075296.mkv +马宜中-风中的早晨,http://em.21dtv.com/songs/60097511.mkv +佚名-风中的早晨,http://em.21dtv.com/songs/60017506.mkv +费玉清-风中的早晨,http://em.21dtv.com/songs/60017505.mkv +郑华娟-风中的早晨(无原唱),http://em.21dtv.com/songs/60017504.mkv +杨培安-风中的羽翼,http://em.21dtv.com/songs/60017503.mkv +樊凡-风中的英雄(演唱会),http://em.21dtv.com/songs/60065968.mkv +嘉布洛绒-风中的依靠,http://em.21dtv.com/songs/60075396.mkv +江涛-风中的眼睛,http://em.21dtv.com/songs/60017500.mkv +雨天-风中的遗憾,http://em.21dtv.com/songs/60017502.mkv +王力宏-风中的遗憾,http://em.21dtv.com/songs/60017501.mkv +王菲-放纵的舞步,http://em.21dtv.com/songs/60093001.mkv +孙淑媚-风中的誓言,http://em.21dtv.com/songs/60017496.mkv +马宁-反正都是我,http://em.21dtv.com/songs/60126449.mkv +阿福-风中的水瓶,http://em.21dtv.com/songs/60017497.mkv +孙淑媚-风中的思念,http://em.21dtv.com/songs/60017498.mkv +黄思婷-风中的迷雾,http://em.21dtv.com/songs/60017495.mkv +巴图-风中的妈妈,http://em.21dtv.com/songs/60081766.mkv +龙千玉-风中的玫瑰,http://em.21dtv.com/songs/60136064.mkv +张蓉蓉-风中的玫瑰,http://em.21dtv.com/songs/60017492.mkv +龙千玉-风中的玫瑰,http://em.21dtv.com/songs/60017491.mkv +江蕙-风中的蜡烛,http://em.21dtv.com/songs/60017489.mkv +郑源-风筝断了线,http://em.21dtv.com/songs/60103627.mkv +杨采妮-风中的蝴蝶,http://em.21dtv.com/songs/60017487.mkv +哈琳-风中的额吉,http://em.21dtv.com/songs/60120416.mkv +呼斯楞-风中的额吉(演唱会),http://em.21dtv.com/songs/60085095.mkv +蔡秋凤-风中的等待(无原唱),http://em.21dtv.com/songs/60017485.mkv +琼雪卓玛-风中的草原,http://em.21dtv.com/songs/60017480.mkv +李翊君-风中的承诺,http://em.21dtv.com/songs/60080629.mkv +卓依婷-风中的承诺,http://em.21dtv.com/songs/60017484.mkv +李昕-风中的承诺,http://em.21dtv.com/songs/60017482.mkv +佚名-风中的沉默,http://em.21dtv.com/songs/60017481.mkv +小莹儿-敷衍怎么演,http://em.21dtv.com/songs/60082925.mkv +陈雅森-风雨中的爱,http://em.21dtv.com/songs/60128557.mkv +张博+邢佳栋+李健+张宁江-风一样自由,http://em.21dtv.com/songs/60095297.mkv +崔苗-凤英一十三,http://em.21dtv.com/songs/60123871.mkv +李克勤-风雨夜归人(无原唱),http://em.21dtv.com/songs/60017431.mkv +程欣-疯一样的活,http://em.21dtv.com/songs/60129461.mkv +宋娜-风雨为情殇,http://em.21dtv.com/songs/60064201.mkv +陈益强-风雨无情人,http://em.21dtv.com/songs/60006903.mkv +佚名-飞越万里情,http://em.21dtv.com/songs/60016901.mkv +佚名-风雨生信心(无原唱),http://em.21dtv.com/songs/60017419.mkv +尹光-费瘾士传奇,http://em.21dtv.com/songs/60016974.mkv +暴林+南风-风雨人生路,http://em.21dtv.com/songs/60122798.mkv +王鹏-风雨人生路,http://em.21dtv.com/songs/60017417.mkv +草蜢-飞跃千个梦(演唱会),http://em.21dtv.com/songs/60016894.mkv +雨露-风雨两依依,http://em.21dtv.com/songs/60131972.mkv +景广云-风雨黄鹤楼,http://em.21dtv.com/songs/60125648.mkv +邓灵-风摇风铃响,http://em.21dtv.com/songs/60115435.mkv +陶信-阜阳的月光,http://em.21dtv.com/songs/60106429.mkv +阿吉仔-风雨的人生(无原唱),http://em.21dtv.com/songs/60017406.mkv +佚名-飞越大渡河,http://em.21dtv.com/songs/60016898.mkv +轲然-敷衍的承诺,http://em.21dtv.com/songs/60075411.mkv +白玛多吉-梵音大悲咒,http://em.21dtv.com/songs/60106162.mkv +黎明-非一般晚上,http://em.21dtv.com/songs/60016948.mkv +何静+朱笑冬-风雨不了情,http://em.21dtv.com/songs/60017402.mkv +郑秀文-非一般爱火,http://em.21dtv.com/songs/60016947.mkv +许志安+郑秀文-非一般爱火,http://em.21dtv.com/songs/60016946.mkv +林玉英-风雨爱情路,http://em.21dtv.com/songs/60100214.mkv +戴梅君-放心做你走,http://em.21dtv.com/songs/60016743.mkv +GALA-飞行员之歌,http://em.21dtv.com/songs/60061181.mkv +彭炽权+李池湘-风雪月下情(戏曲),http://em.21dtv.com/songs/60092670.mkv +小老头-负心又负义,http://em.21dtv.com/songs/60101071.mkv +黑鸭子演唱组-奉献一份爱,http://em.21dtv.com/songs/60017622.mkv +曾轶可-复习小情歌,http://em.21dtv.com/songs/60017778.mkv +沐尔-放下全世界,http://em.21dtv.com/songs/60016733.mkv +关心帅-发现你喜欢,http://em.21dtv.com/songs/60110859.mkv +夜叉乐队-放下你的枪,http://em.21dtv.com/songs/60105725.mkv +游美灵-奉献你的爱,http://em.21dtv.com/songs/60105223.mkv +黎瑞恩-放下了心事,http://em.21dtv.com/songs/60016732.mkv +吕微-抚仙湖恋歌,http://em.21dtv.com/songs/60061196.mkv +张争-飞向更远方,http://em.21dtv.com/songs/60131392.mkv +苏雅-飞向更远方,http://em.21dtv.com/songs/60118008.mkv +王迪-飞向更远方,http://em.21dtv.com/songs/60082897.mkv +王蓉-非想非非想,http://em.21dtv.com/songs/60016945.mkv +林爽-飞翔的勇气,http://em.21dtv.com/songs/60075336.mkv +浩轩-负心的女人,http://em.21dtv.com/songs/60103419.mkv +爱相随-负心的女人,http://em.21dtv.com/songs/60071938.mkv +周慧敏-放下的力量,http://em.21dtv.com/songs/60061179.mkv +于乃久-飞翔的地方,http://em.21dtv.com/songs/60090498.mkv +群星-飞翔的翅膀,http://em.21dtv.com/songs/60115337.mkv +李玉波-飞翔201,http://em.21dtv.com/songs/60102352.mkv +蝴蝶组合+刘倞-福娃一起来,http://em.21dtv.com/songs/60017701.mkv +吴宗宪-放我一个人,http://em.21dtv.com/songs/60016729.mkv +佚名-for whom the bell tolls,http://em.21dtv.com/songs/60001751.mkv +对唱-服务是天职,http://em.21dtv.com/songs/60102154.mkv +紫琴-放我去旅行,http://em.21dtv.com/songs/60082894.mkv +才文颖-飞往梦之家,http://em.21dtv.com/songs/60122777.mkv +黄凤仪-飞天小神兽,http://em.21dtv.com/songs/60016855.mkv +舞曲-飞天+伙伴(快四),http://em.21dtv.com/songs/60090141.mkv +赵龙啸-沸腾的诱惑(无原唱),http://em.21dtv.com/songs/60016973.mkv +施丽君-飞天的琵琶,http://em.21dtv.com/songs/60121724.mkv +BABYFACE-for the cool in you,http://em.21dtv.com/songs/60001745.mkv +付春霞-飞天 嫦娥,http://em.21dtv.com/songs/60126589.mkv +语录-分手在雨夜,http://em.21dtv.com/songs/60106278.mkv +张启靓-分手这些天,http://em.21dtv.com/songs/60063391.mkv +李龙基-佛山赞先生(演唱会),http://em.21dtv.com/songs/60017628.mkv +李泽坚-分手最痛快,http://em.21dtv.com/songs/60105146.mkv +韩超-分手在秋天,http://em.21dtv.com/songs/60017127.mkv +星弟-分手做朋友,http://em.21dtv.com/songs/60070682.mkv +庄振凯-分手在今夜,http://em.21dtv.com/songs/60100859.mkv +曾羽飞-分手这杯酒,http://em.21dtv.com/songs/60122810.mkv +新街口组合-分手在北京,http://em.21dtv.com/songs/60075366.mkv +零点乐队-分手一周年(演唱会),http://em.21dtv.com/songs/60017114.mkv +崔广杰-分手又如何,http://em.21dtv.com/songs/60105791.mkv +群星-放肆音乐通(无原唱),http://em.21dtv.com/songs/60016724.mkv +BEAUTY.4-分手要健康,http://em.21dtv.com/songs/60017113.mkv +小5-分手以后呢,http://em.21dtv.com/songs/60069390.mkv +江映蓉-发生秀fashion show,http://em.21dtv.com/songs/60075290.mkv +王杰-封锁我一生,http://em.21dtv.com/songs/60017542.mkv +王杰-封锁我一生(演唱会),http://em.21dtv.com/songs/60017541.mkv +摇滚女王-分手万万岁,http://em.21dtv.com/songs/60135306.mkv +印能法师-佛说万物生,http://em.21dtv.com/songs/60099834.mkv +陶莉萍-分手五十天,http://em.21dtv.com/songs/60090301.mkv +陈浩德-浮世无绝望,http://em.21dtv.com/songs/60017678.mkv +伍华-分手无纪念,http://em.21dtv.com/songs/60068252.mkv +赵小南-放手我的爱,http://em.21dtv.com/songs/60075323.mkv +罗永娟-封杀我的爱,http://em.21dtv.com/songs/60017539.mkv +钟盛忠-发生什么事,http://em.21dtv.com/songs/60016439.mkv +余红萍-分手是解脱,http://em.21dtv.com/songs/60101608.mkv +九江天空-分手是解脱,http://em.21dtv.com/songs/60093625.mkv +邓颖芝-粉碎三角琴,http://em.21dtv.com/songs/60017184.mkv +陈芳语-分手说爱你,http://em.21dtv.com/songs/60096536.mkv +阿悄+王麟-分手说爱你,http://em.21dtv.com/songs/60094737.mkv +王晓敏-放手让你走,http://em.21dtv.com/songs/60121921.mkv +何遇程-放手让你走,http://em.21dtv.com/songs/60112508.mkv +李志洲-放手让你走,http://em.21dtv.com/songs/60016716.mkv +牙牙乐-分手日快乐,http://em.21dtv.com/songs/60107055.mkv +晓月-放手让爱走,http://em.21dtv.com/songs/60075322.mkv +杨宗纬-浮生千山路,http://em.21dtv.com/songs/60097651.mkv +潘越云-浮生千山路,http://em.21dtv.com/songs/60017673.mkv +海威-分手那一夜,http://em.21dtv.com/songs/60120723.mkv +许兴刚-分手那一天,http://em.21dtv.com/songs/60017105.mkv +刚辉-分手那一天,http://em.21dtv.com/songs/60017104.mkv +段千寻-分手那一天,http://em.21dtv.com/songs/60017103.mkv +丁锐-分手那一天,http://em.21dtv.com/songs/60017102.mkv +龙飘飘-风说你要来(无原唱),http://em.21dtv.com/songs/60017376.mkv +望海高歌-放手你的爱,http://em.21dtv.com/songs/60103339.mkv +吴松发-分手了以后,http://em.21dtv.com/songs/60080940.mkv +梁立昂-放手 let it go,http://em.21dtv.com/songs/60085076.mkv +刘文安-分手了不哭,http://em.21dtv.com/songs/60105637.mkv +蔡丽津-分手纪念日,http://em.21dtv.com/songs/60130727.mkv +曾心梅-分手纪念日,http://em.21dtv.com/songs/60017081.mkv +小山-分手就分手,http://em.21dtv.com/songs/60064185.mkv +阿翁-分手就分手,http://em.21dtv.com/songs/60017084.mkv +拾参乐团-扶桑花女孩,http://em.21dtv.com/songs/60100064.mkv +陈好-分手后的夜,http://em.21dtv.com/songs/60017071.mkv +苏唯-分手后的事,http://em.21dtv.com/songs/60114738.mkv +冷漠-分手后的伤,http://em.21dtv.com/songs/60094823.mkv +张卫健-飞砂风中转,http://em.21dtv.com/songs/60016848.mkv +RTA-放肆的勇气,http://em.21dtv.com/songs/60080409.mkv +刘欣-放手的勇气,http://em.21dtv.com/songs/60065959.mkv +金城武-分手的夜里,http://em.21dtv.com/songs/60017064.mkv +青蛙乐队-分手的拥抱,http://em.21dtv.com/songs/60088939.mkv +六哲-分手的邂逅,http://em.21dtv.com/songs/60017063.mkv +李锦-分手的邂逅,http://em.21dtv.com/songs/60017062.mkv +冷漠-放手的幸福,http://em.21dtv.com/songs/60082892.mkv +黄乙玲-风声的幸福,http://em.21dtv.com/songs/60017366.mkv +丁琪媛-粉色的沙滩,http://em.21dtv.com/songs/60101232.mkv +吴蕙君-放手的思念,http://em.21dtv.com/songs/60125305.mkv +林少纬-分手的时候,http://em.21dtv.com/songs/60113701.mkv +轶翔-分手的时候,http://em.21dtv.com/songs/60105406.mkv +杨庆-分手的时候,http://em.21dtv.com/songs/60091400.mkv +ZEA-分手的日子,http://em.21dtv.com/songs/60075357.mkv +黄湘怡-分手第七天,http://em.21dtv.com/songs/60017066.mkv +邓丽欣-分手的情书,http://em.21dtv.com/songs/60114115.mkv +苏有朋-分手的情书,http://em.21dtv.com/songs/60091926.mkv +苏路-分手的情诗,http://em.21dtv.com/songs/60064183.mkv +陈伟联-分手的情书,http://em.21dtv.com/songs/60017061.mkv +孙莞-放手的权利,http://em.21dtv.com/songs/60098250.mkv +曹磊-分手的那天,http://em.21dtv.com/songs/60017059.mkv +陈飞彤-分手的理由,http://em.21dtv.com/songs/60017058.mkv +曾辉彬-分手的理由,http://em.21dtv.com/songs/60017057.mkv +安东阳-分手的理由,http://em.21dtv.com/songs/60017056.mkv +安迪-分手的理由,http://em.21dtv.com/songs/60017055.mkv +风语-分手的礼物,http://em.21dtv.com/songs/60134456.mkv +曲调悠扬-分手的礼物,http://em.21dtv.com/songs/60133765.mkv +林淑蓉-分手的泪水,http://em.21dtv.com/songs/60075355.mkv +苏醒+胡灵-分手的恋爱,http://em.21dtv.com/songs/60071922.mkv +孙淑媚-分手的咖啡,http://em.21dtv.com/songs/60017054.mkv +李魏西-分手的距离,http://em.21dtv.com/songs/60094548.mkv +李玥铭-分手的距离,http://em.21dtv.com/songs/60065962.mkv +[Group] +groupName=十六万歌曲MV等 - 68 +刘小慧-分手的借口,http://em.21dtv.com/songs/60017053.mkv +老猫-分手的季节,http://em.21dtv.com/songs/60017052.mkv +陈久霖-分手的黑夜,http://em.21dtv.com/songs/60017049.mkv +张小觉-发烧的感觉,http://em.21dtv.com/songs/60063394.mkv +黄思婷-放手的风筝,http://em.21dtv.com/songs/60082891.mkv +汤加丽-分手的对白,http://em.21dtv.com/songs/60085225.mkv +丁新-放手的惩罚,http://em.21dtv.com/songs/60082890.mkv +MiHo-粉碎的爱情,http://em.21dtv.com/songs/60101802.mkv +蔡丽津-放手才是爱,http://em.21dtv.com/songs/60135704.mkv +黄耀明-风霜伴我行(演唱会),http://em.21dtv.com/songs/60064200.mkv +黄红英-风霜伴我行,http://em.21dtv.com/songs/60017375.mkv +邓丽君-风霜伴我行,http://em.21dtv.com/songs/60017374.mkv +李俊杰-分手不回头,http://em.21dtv.com/songs/60100124.mkv +张天野-分手不分手,http://em.21dtv.com/songs/60118556.mkv +王浩信-分手不分开,http://em.21dtv.com/songs/60017042.mkv +李娅莎-放阮自由飞,http://em.21dtv.com/songs/60113619.mkv +SUPPER MOMENT-烦扰中起舞,http://em.21dtv.com/songs/60123543.mkv +汪子琳-放阮作你去(无原唱),http://em.21dtv.com/songs/60016682.mkv +陈亚兰-放阮一个人,http://em.21dtv.com/songs/60016681.mkv +黄妃-飞入你心底,http://em.21dtv.com/songs/60123397.mkv +黄妃-飞入你心底,http://em.21dtv.com/songs/60116411.mkv +黄思婷-飞入你梦里,http://em.21dtv.com/songs/60016847.mkv +佚名-飞入你的窗,http://em.21dtv.com/songs/60016846.mkv +陈盈洁+余天-飞入你的窗,http://em.21dtv.com/songs/60016845.mkv +吴淑敏-飞入你的窗,http://em.21dtv.com/songs/60008620.mkv +凡人-凡人咖啡店,http://em.21dtv.com/songs/60016471.mkv +田馥甄-凡人歌 火,http://em.21dtv.com/songs/60130619.mkv +韩延文-繁荣的中华,http://em.21dtv.com/songs/60016484.mkv +xku小酷-废弃这段情,http://em.21dtv.com/songs/60113203.mkv +邓建明-放弃我天地,http://em.21dtv.com/songs/60016671.mkv +陈楚生-风起时想你,http://em.21dtv.com/songs/60017350.mkv +杜青-放轻松些吧,http://em.21dtv.com/songs/60131517.mkv +大庆小芳-夫妻那些事,http://em.21dtv.com/songs/60075409.mkv +陈林波-父亲节快乐,http://em.21dtv.com/songs/60114867.mkv +遥远-父亲儿想你,http://em.21dtv.com/songs/60086551.mkv +晓依-父亲儿想你,http://em.21dtv.com/songs/60086550.mkv +冷漠-父亲的希望,http://em.21dtv.com/songs/60075426.mkv +吴新宏-父亲的胸怀,http://em.21dtv.com/songs/60080770.mkv +王宏伟-父亲对我说,http://em.21dtv.com/songs/60103440.mkv +佚名-父亲对我说,http://em.21dtv.com/songs/60017734.mkv +吴庆国-父亲的寿诞,http://em.21dtv.com/songs/60122583.mkv +罗大安-风起的日子,http://em.21dtv.com/songs/60109568.mkv +纪炎炎-夫妻的朋友,http://em.21dtv.com/songs/60017633.mkv +六哲-放弃的美丽,http://em.21dtv.com/songs/60075314.mkv +流苏-父亲的目光,http://em.21dtv.com/songs/60099378.mkv +欧姐-放弃的理由,http://em.21dtv.com/songs/60115252.mkv +石梅-飞去的蝴蝶,http://em.21dtv.com/songs/60085079.mkv +云菲菲-飞去的蝴蝶,http://em.21dtv.com/songs/60063339.mkv +许冠杰-父亲的钢琴,http://em.21dtv.com/songs/60017733.mkv +范海荣-父亲的恩情,http://em.21dtv.com/songs/60104390.mkv +劲松-父亲的草原(演唱会),http://em.21dtv.com/songs/60017724.mkv +晨熙-富婆与屌丝,http://em.21dtv.com/songs/60100094.mkv +苏姗-for once in my life(演唱会),http://em.21dtv.com/songs/60073220.mkv +佚名-for once in my life,http://em.21dtv.com/songs/60001740.mkv +Ariana Grande-Focus,http://em.21dtv.com/songs/60115565.mkv +刘依纯-放你自由去,http://em.21dtv.com/songs/60016651.mkv +蔡小虎-放你自由飞,http://em.21dtv.com/songs/60016650.mkv +许美静-放你在心里,http://em.21dtv.com/songs/60016646.mkv +梦然-飞鸟与射手,http://em.21dtv.com/songs/60108645.mkv +岑晓路-飞鸟与射手,http://em.21dtv.com/songs/60103247.mkv +冷漠-飞鸟与射手,http://em.21dtv.com/songs/60016834.mkv +张宇轩-烦恼惹的祸,http://em.21dtv.com/songs/60070663.mkv +刘冬-愤怒的小鸟,http://em.21dtv.com/songs/60065964.mkv +刘嘉亮-愤怒的小鸟,http://em.21dtv.com/songs/60064189.mkv +冷漠-愤怒的小鸟,http://em.21dtv.com/songs/60061191.mkv +汤潮-愤怒的情人,http://em.21dtv.com/songs/60017197.mkv +格格-飞鸟的梦想,http://em.21dtv.com/songs/60112806.mkv +多亮-愤怒的老鸟,http://em.21dtv.com/songs/60075372.mkv +晓华-fly me to the moon(演唱会),http://em.21dtv.com/songs/60082158.mkv +佚名-fly me to the moon,http://em.21dtv.com/songs/60001720.mkv +李宇春-fly me to the moon,http://em.21dtv.com/songs/60001719.mkv +高向鹏-放袂落的爱,http://em.21dtv.com/songs/60088992.mkv +马克-弗美克奇迹,http://em.21dtv.com/songs/60114263.mkv +余天龙-放抹开的手,http://em.21dtv.com/songs/60121374.mkv +TWINS-发梦见到你,http://em.21dtv.com/songs/60016430.mkv +张清芳-父母的心声,http://em.21dtv.com/songs/60017713.mkv +林君羡-放牧的姑娘,http://em.21dtv.com/songs/60104242.mkv +宰耿-父母的恩情,http://em.21dtv.com/songs/60124787.mkv +李悟-父母的恩惠,http://em.21dtv.com/songs/60061197.mkv +佚名-风流做田人,http://em.21dtv.com/songs/60017344.mkv +张敬轩-绯荔榭少年,http://em.21dtv.com/songs/60117727.mkv +李明洋-返来我的爱,http://em.21dtv.com/songs/60081058.mkv +许志豪-返来阮身边,http://em.21dtv.com/songs/60066987.mkv +佚名-返来阮身边,http://em.21dtv.com/songs/60016507.mkv +江蕙-返来阮身边,http://em.21dtv.com/songs/60016506.mkv +曾心梅-返来阮身边,http://em.21dtv.com/songs/60016505.mkv +方怡萍-返来阮身边(无原唱),http://em.21dtv.com/songs/60016504.mkv +谢宜君-返来阮的心,http://em.21dtv.com/songs/60114790.mkv +江蕙+陈随意-返来阮的梦,http://em.21dtv.com/songs/60016503.mkv +董芹-风来了又走,http://em.21dtv.com/songs/60114753.mkv +丁春秀-风来了又走,http://em.21dtv.com/songs/60110809.mkv +根呷-法轮嘉那嘛,http://em.21dtv.com/songs/60016458.mkv +胡奇明+陈乃春-樊梨花斩子(戏曲),http://em.21dtv.com/songs/60095871.mkv +叶欢-风留给春天(演唱会),http://em.21dtv.com/songs/60017326.mkv +周传雄-分离的伤感,http://em.21dtv.com/songs/60017021.mkv +陈盈洁-放浪的青春,http://em.21dtv.com/songs/60016631.mkv +佚名-飞来的花瓣,http://em.21dtv.com/songs/60016821.mkv +张秀卿-分离的感受,http://em.21dtv.com/songs/60017020.mkv +曾路得-风里的缤纷,http://em.21dtv.com/songs/60017315.mkv +金泰妍-疯了般想你(演唱会),http://em.21dtv.com/songs/60082919.mkv +Tinashe-Flame,http://em.21dtv.com/songs/60134810.mkv +杨鸣-风流阿狗兄,http://em.21dtv.com/songs/60065926.mkv +佚名-风流阿狗兄,http://em.21dtv.com/songs/60017332.mkv +萧闳仁-法克这个人,http://em.21dtv.com/songs/60016457.mkv +詹雅雯-分开一站仔,http://em.21dtv.com/songs/60017015.mkv +钟伟-风狂雨又大,http://em.21dtv.com/songs/60017314.mkv +陌小聪+Rill-分开也是爱,http://em.21dtv.com/songs/60099596.mkv +卓依婷-放开一点点,http://em.21dtv.com/songs/60016630.mkv +张家豪-酆魁刑天歌,http://em.21dtv.com/songs/60092595.mkv +姚雨鑫-疯狂寻爱记,http://em.21dtv.com/songs/60115777.mkv +伤心老留-放开我的手,http://em.21dtv.com/songs/60085074.mkv +黄乙玲-放开我的手(无原唱),http://em.21dtv.com/songs/60016629.mkv +王羽泽-分开90天,http://em.21dtv.com/songs/60017005.mkv +正云-疯狂去摇摆,http://em.21dtv.com/songs/60130517.mkv +王力宏-放开你的心(HD),http://em.21dtv.com/songs/10012694.mkv +王力宏-放开你的心,http://em.21dtv.com/songs/60016626.mkv +清源-放开你的痛,http://em.21dtv.com/songs/60075311.mkv +程芳-放开你的手,http://em.21dtv.com/songs/60110441.mkv +谢有才-放开你的手,http://em.21dtv.com/songs/60069382.mkv +朱峰-放开你的手,http://em.21dtv.com/songs/60016623.mkv +孙悦-放开你的手,http://em.21dtv.com/songs/60016622.mkv +李坤雨-放开你的手,http://em.21dtv.com/songs/60016621.mkv +刘超华-分开了以后,http://em.21dtv.com/songs/60017011.mkv +李宗盛-风框来的人,http://em.21dtv.com/songs/60089337.mkv +小乔-分开还是爱,http://em.21dtv.com/songs/60104065.mkv +恰恰姐妹-疯狂的周末,http://em.21dtv.com/songs/60017548.mkv +刘允乐-分开的意思,http://em.21dtv.com/songs/60017009.mkv +李文玉-疯狂的雨点,http://em.21dtv.com/songs/60131501.mkv +邱锋泽-分开的学问,http://em.21dtv.com/songs/60128460.mkv +夜未眠乐团-分开的心情,http://em.21dtv.com/songs/60128938.mkv +雨金-疯狂的旋风,http://em.21dtv.com/songs/60106436.mkv +李强-疯狂的嗓子,http://em.21dtv.com/songs/60116907.mkv +阿雅-疯狂大请客,http://em.21dtv.com/songs/60017547.mkv +吴曼乔-分开的理由,http://em.21dtv.com/songs/60126699.mkv +唐杰-分开的理由,http://em.21dtv.com/songs/60017008.mkv +谷朴-疯狂哆来咪,http://em.21dtv.com/songs/60017549.mkv +钟昀呈-分开的结果,http://em.21dtv.com/songs/60099558.mkv +任贤齐-疯狂的存在,http://em.21dtv.com/songs/60081378.mkv +家家-分开的常理,http://em.21dtv.com/songs/60071920.mkv +郝劭文-疯狂大吃客,http://em.21dtv.com/songs/60017546.mkv +慕容晓晓+办桌二人组-疯狂爱爱爱(演唱会),http://em.21dtv.com/songs/60064204.mkv +肖镒舟-放进心里面,http://em.21dtv.com/songs/60124372.mkv +林建泰-凡间五魔阵(无原唱),http://em.21dtv.com/songs/60095666.mkv +佚名-凡间五魔阵(无原唱),http://em.21dtv.com/songs/60016468.mkv +苗伟-飞机去哪了(沙画版),http://em.21dtv.com/songs/60100421.mkv +任贤齐-飞进你的心,http://em.21dtv.com/songs/60090570.mkv +鲁士郎-番茄狂想曲,http://em.21dtv.com/songs/60107372.mkv +韦礼安+郭静-风景旧曾谙,http://em.21dtv.com/songs/60130875.mkv +孟爱英-犯贱的温柔,http://em.21dtv.com/songs/60016515.mkv +周律-犯贱的誓言,http://em.21dtv.com/songs/60112574.mkv +江志丰-纺见的时间,http://em.21dtv.com/songs/60119750.mkv +郭健一-纺见的锁匙,http://em.21dtv.com/songs/60016556.mkv +will.i.am-FIYAH,http://em.21dtv.com/songs/60134821.mkv +陈盛宇-Fight,http://em.21dtv.com/songs/60126400.mkv +刘昱贤-烽火中的人,http://em.21dtv.com/songs/60127774.mkv +吴彤-烽火扬州路,http://em.21dtv.com/songs/60119350.mkv +佚名-彷徨异乡人,http://em.21dtv.com/songs/60033180.mkv +蓝永潇-凤凰与山客,http://em.21dtv.com/songs/60115359.mkv +朱桦-凤凰与蝴蝶,http://em.21dtv.com/songs/60017602.mkv +陈思安-繁华夜都市,http://em.21dtv.com/songs/60016482.mkv +周思洁-风寒心也寒(无原唱),http://em.21dtv.com/songs/60017302.mkv +詹雅雯-放乎心去痛,http://em.21dtv.com/songs/60135727.mkv +蔡诗芸-粉红太阳花,http://em.21dtv.com/songs/60131794.mkv +蔡秋凤-粉红色腰带,http://em.21dtv.com/songs/60017173.mkv +郑秀文-粉红色天使,http://em.21dtv.com/songs/60088775.mkv +MAKIYO-粉红色乐团,http://em.21dtv.com/songs/60017172.mkv +冷弦-法海没人爱,http://em.21dtv.com/songs/60093989.mkv +江蕙-繁华拢是梦,http://em.21dtv.com/songs/60016480.mkv +陈中+陈淑萍-繁华拢是梦,http://em.21dtv.com/songs/60016479.mkv +陈美凤+伍浩哲-繁华拢是梦,http://em.21dtv.com/songs/60016478.mkv +缪杰-凤凰花又开,http://em.21dtv.com/songs/60062771.mkv +陈楚生-凤凰花儿开,http://em.21dtv.com/songs/60017591.mkv +李承峰-法海很懂爱,http://em.21dtv.com/songs/60075291.mkv +啫哩-复活的灵魂,http://em.21dtv.com/songs/60080830.mkv +晓月-复活的灵魂,http://em.21dtv.com/songs/60017775.mkv +李玲玉-粉红的回忆,http://em.21dtv.com/songs/60069391.mkv +张冬玲-放歌走天下,http://em.21dtv.com/songs/60115900.mkv +童唱-风光无限好,http://em.21dtv.com/songs/60017298.mkv +韦东明-放过我的爱,http://em.21dtv.com/songs/60016603.mkv +孙燕姿-反过来走走(演唱会),http://em.21dtv.com/songs/60016495.mkv +余润泽_徐铵-疯够了没有,http://em.21dtv.com/songs/60101907.mkv +赶马哥-放歌两合岩,http://em.21dtv.com/songs/60098792.mkv +汤小康-法国老画家,http://em.21dtv.com/songs/60098548.mkv +李宗盛-风柜来的人,http://em.21dtv.com/songs/60017299.mkv +麦浚龙-非公开表演,http://em.21dtv.com/songs/60016924.mkv +刘和刚-放歌黑土地,http://em.21dtv.com/songs/60016596.mkv +周燕君-放歌黄鹤楼,http://em.21dtv.com/songs/60116658.mkv +任贤齐-副歌第一句,http://em.21dtv.com/songs/60017783.mkv +张生艳+张艳君-放歌窦王岭,http://em.21dtv.com/songs/60129106.mkv +陈瑞-风干的玫瑰,http://em.21dtv.com/songs/60098889.mkv +蔡旻佑-发光的简讯,http://em.21dtv.com/songs/60016426.mkv +洪卓立-梵高的耳朵,http://em.21dtv.com/songs/60066988.mkv +乌兰托娅-放歌大草原,http://em.21dtv.com/songs/60070668.mkv +乌兰吉雅-放歌草原上,http://em.21dtv.com/songs/60106575.mkv +郑嘉颖-分分钟记起,http://em.21dtv.com/songs/60016997.mkv +周杰伦-反方向的钟,http://em.21dtv.com/songs/60016491.mkv +TWINS-fishes fishes where are you,http://em.21dtv.com/songs/60001695.mkv +阿来+妥云福-仿佛是昨天,http://em.21dtv.com/songs/60086540.mkv +赵传+辛晓琪-彷佛是昨天,http://em.21dtv.com/songs/60033178.mkv +辛晓琪+赵传-仿佛是昨天(演唱会),http://em.21dtv.com/songs/60016549.mkv +彭羚-彷佛是初恋,http://em.21dtv.com/songs/60033177.mkv +彭羚-仿佛是初恋,http://em.21dtv.com/songs/60016548.mkv +彭羚-仿佛是初恋(演唱会),http://em.21dtv.com/songs/60016547.mkv +伍咏薇-彷佛仍是醉,http://em.21dtv.com/songs/60033176.mkv +Bebe Rexha+G Eazy-F.F.F,http://em.21dtv.com/songs/60133173.mkv +胡德夫-芬芳的山谷,http://em.21dtv.com/songs/60113978.mkv +贺一飞-放飞的伤悲,http://em.21dtv.com/songs/60088693.mkv +曾剑雄-放飞的风筝,http://em.21dtv.com/songs/60016586.mkv +贺一飞-放飞的悲伤,http://em.21dtv.com/songs/60016585.mkv +图桠格-风儿在微笑(演唱会),http://em.21dtv.com/songs/60071930.mkv +王思佳-凡尔赛之泪,http://em.21dtv.com/songs/60118781.mkv +任妙音-风儿轻轻吹,http://em.21dtv.com/songs/60071929.mkv +佚名-风儿轻轻吹,http://em.21dtv.com/songs/60017279.mkv +刘文正-风儿轻轻吹,http://em.21dtv.com/songs/60017278.mkv +佚名-发电一千w(无原唱),http://em.21dtv.com/songs/60016423.mkv +阿吉仔-放荡无前途(无原唱),http://em.21dtv.com/songs/60016579.mkv +佚名-风对叨位吹,http://em.21dtv.com/songs/60017276.mkv +孙淑媚-风对叨位吹(无原唱),http://em.21dtv.com/songs/60017275.mkv +杨洋+金彪-福到千万家,http://em.21dtv.com/songs/60017691.mkv +王强-飞到你身边,http://em.21dtv.com/songs/60016793.mkv +佚名-佛渡迷阵人(无原唱),http://em.21dtv.com/songs/60017623.mkv +蔡小虎-放荡浪子心,http://em.21dtv.com/songs/60064167.mkv +陈思安-放荡的人生,http://em.21dtv.com/songs/60016578.mkv +姬长乐-奋斗的力量,http://em.21dtv.com/songs/60103189.mkv +女声-奋斗的歌手,http://em.21dtv.com/songs/60017195.mkv +男声-奋斗的歌手,http://em.21dtv.com/songs/60017194.mkv +乌兰图雅-福从中国来,http://em.21dtv.com/songs/60130039.mkv +王雪晶+庄群诗-发财有兴旺,http://em.21dtv.com/songs/60088330.mkv +丁嘉林+丁楠霓+张翘-发财又兴旺,http://em.21dtv.com/songs/60075289.mkv +陈百潭+李霖-风吹云就飞,http://em.21dtv.com/songs/60104571.mkv +中国娃娃-发财新年歌(无原唱),http://em.21dtv.com/songs/60016419.mkv +赵姝-富春山居图,http://em.21dtv.com/songs/60131847.mkv +杨宗宪-付出阮的爱(无原唱),http://em.21dtv.com/songs/60026413.mkv +佚名-芳草青又青,http://em.21dtv.com/songs/60016534.mkv +江蕾-芳草青又青,http://em.21dtv.com/songs/60016533.mkv +心跳男孩-非常男女生,http://em.21dtv.com/songs/60016911.mkv +莫文蔚-风从那哪里(演唱会),http://em.21dtv.com/songs/60075382.mkv +王琳玲-风从哪里来,http://em.21dtv.com/songs/60108725.mkv +侧田-风从哪里来,http://em.21dtv.com/songs/60082915.mkv +方伊琪-风从那里来(演唱会),http://em.21dtv.com/songs/60075381.mkv +莫旭秋-风从哪里来(演唱会),http://em.21dtv.com/songs/60075380.mkv +尤雅-风从那里来,http://em.21dtv.com/songs/60017256.mkv +尤雅-风从那里来(演唱会),http://em.21dtv.com/songs/60017255.mkv +邓丽君-风从哪里来,http://em.21dtv.com/songs/60017254.mkv +龙飘飘-风从哪里来(演唱会),http://em.21dtv.com/songs/60017253.mkv +陈佳薪-风吹来的沙,http://em.21dtv.com/songs/60064193.mkv +郑嘉颖-飞出恋爱街,http://em.21dtv.com/songs/60016790.mkv +ROD STEWART-firstfirst cut is the deepest,http://em.21dtv.com/songs/60001694.mkv +刘之烁-风吹过竹林,http://em.21dtv.com/songs/60104811.mkv +江蕙+江淑娜-风吹的愿望,http://em.21dtv.com/songs/60017244.mkv +李斌豪+吴彤-讽刺的生活,http://em.21dtv.com/songs/60075403.mkv +秦杨-风吹的命运,http://em.21dtv.com/songs/60017243.mkv +后羿+淳子-犯错的理由,http://em.21dtv.com/songs/60068241.mkv +孙淑媚-风吹的暗暝,http://em.21dtv.com/songs/60017242.mkv +张惠妹-芳草碧连天,http://em.21dtv.com/songs/60075302.mkv +子枫-非常爱选秀,http://em.21dtv.com/songs/60075340.mkv +杨乃文-粉笔做的手,http://em.21dtv.com/songs/60131522.mkv +杨乃文-粉笔做的手,http://em.21dtv.com/songs/60130452.mkv +蔡义德+黄芭乐+周一-放伴洗身躯,http://em.21dtv.com/songs/60082883.mkv +黄西田-放伴洗身躯,http://em.21dtv.com/songs/60016564.mkv +李克勤+潘美辰-放不下感情,http://em.21dtv.com/songs/60016575.mkv +吴康-放不下的痛,http://em.21dtv.com/songs/60108379.mkv +晓月-放不下的你,http://em.21dtv.com/songs/60099270.mkv +杨小奕-放不下的你,http://em.21dtv.com/songs/60016572.mkv +关贵敏-飞吧我的歌,http://em.21dtv.com/songs/60016787.mkv +单色凌+贯诗钦-分不清的伤,http://em.21dtv.com/songs/60075344.mkv +高向鹏-放不落的爱,http://em.21dtv.com/songs/60016569.mkv +魏小麒-放不开的痛,http://em.21dtv.com/songs/60082884.mkv +新秀团队-放不开的痛,http://em.21dtv.com/songs/60075309.mkv +魏佳庆-分不开的手,http://em.21dtv.com/songs/60016983.mkv +曾沛慈-粉笔和涂鸦,http://em.21dtv.com/songs/60112731.mkv +方大同-放不过自己,http://em.21dtv.com/songs/60126948.mkv +李心博-飞吧 飞吧,http://em.21dtv.com/songs/60129228.mkv +臧天朔-分别的时候,http://em.21dtv.com/songs/60016978.mkv +钟洁-泛白的记忆,http://em.21dtv.com/songs/60102841.mkv +陈萧萧-福安我爱你,http://em.21dtv.com/songs/60121095.mkv +许志安-非安全地带,http://em.21dtv.com/songs/60130747.mkv +许志安-非安全地带,http://em.21dtv.com/songs/60127389.mkv +郭蓉-风啊你吹吧,http://em.21dtv.com/songs/60017220.mkv +Alan Walker-Faded,http://em.21dtv.com/songs/60131027.mkv +楼沁-FADED,http://em.21dtv.com/songs/60124166.mkv +Alan Walker+Iselin Solheim-Faded,http://em.21dtv.com/songs/60120187.mkv +仓木麻衣-风のららら,http://em.21dtv.com/songs/60017218.mkv +李正帆-二月三十一,http://em.21dtv.com/songs/60016409.mkv +萧淑慎-二月十四日,http://em.21dtv.com/songs/60016412.mkv +深蓝乐团-二月十四日,http://em.21dtv.com/songs/60016411.mkv +罗心洁-鳄鱼的眼泪,http://em.21dtv.com/songs/60064159.mkv +林志炫-鳄鱼的眼泪,http://em.21dtv.com/songs/60016289.mkv +吴介贤-二小放牛郎(演唱会),http://em.21dtv.com/songs/60071910.mkv +童唱-二小放牛郎,http://em.21dtv.com/songs/60016404.mkv +SO WHAT-而我们继续,http://em.21dtv.com/songs/60016313.mkv +佚名-every woman in the world,http://em.21dtv.com/songs/60001552.mkv +D. HALL-every time you go away,http://em.21dtv.com/songs/60001550.mkv +吴介贤-儿童团之歌(演唱会),http://em.21dtv.com/songs/60075275.mkv +佚名-even the nights are better,http://em.21dtv.com/songs/60001529.mkv +COLDPLAY-every teardrop is a waterfall,http://em.21dtv.com/songs/60060799.mkv +张学友-every time a good time,http://em.21dtv.com/songs/60001549.mkv +徐若瑄-二十一世纪,http://em.21dtv.com/songs/60016399.mkv +游鸿明-二十一个人,http://em.21dtv.com/songs/60016398.mkv +2BIC-二四小时后,http://em.21dtv.com/songs/60075285.mkv +侧田-二十th century boy(演唱会),http://em.21dtv.com/songs/60016381.mkv +王秀琳-二十四小时,http://em.21dtv.com/songs/60016394.mkv +李克勤-二十四城记,http://em.21dtv.com/songs/60016392.mkv +张信哲-二十年以前,http://em.21dtv.com/songs/60118551.mkv +陈升-二十年以前,http://em.21dtv.com/songs/60016387.mkv +潘玮柏-二十四个比利,http://em.21dtv.com/songs/60068240.mkv +雷淑敏-恩施等你来,http://em.21dtv.com/songs/60102913.mkv +马云龙-儿时的伙伴,http://em.21dtv.com/songs/60135993.mkv +梅朵-儿时的村庄,http://em.21dtv.com/songs/60117870.mkv +佚名-二十八字歌,http://em.21dtv.com/songs/60016382.mkv +TWINS-二人世界杯,http://em.21dtv.com/songs/60016379.mkv +TWINS-二人世界杯(演唱会),http://em.21dtv.com/songs/60016378.mkv +POISON-every rose has its thorn,http://em.21dtv.com/songs/60001548.mkv +张祥洪-恩情永不忘,http://em.21dtv.com/songs/60082872.mkv +佚名-恩情深似海,http://em.21dtv.com/songs/60016300.mkv +刘佳轩-恩情亲像山,http://em.21dtv.com/songs/60016299.mkv +范逸臣-恶男宅急电,http://em.21dtv.com/songs/60016279.mkv +陶喆-2night藏爱,http://em.21dtv.com/songs/60000016.mkv +郑锦昌-奀妹去买菜(演唱会),http://em.21dtv.com/songs/60075274.mkv +Olivia O'Brien-Empty,http://em.21dtv.com/songs/60132115.mkv +WINNER-Empty,http://em.21dtv.com/songs/60103835.mkv +Twins-emoji,http://em.21dtv.com/songs/60119205.mkv +Twins-emoji,http://em.21dtv.com/songs/60118283.mkv +张永智-恶魔的新娘,http://em.21dtv.com/songs/60016278.mkv +约瑟翰 庞麦郎+陈潇-恶魔不要啊,http://em.21dtv.com/songs/60111344.mkv +承利-2016嗨,http://em.21dtv.com/songs/60126932.mkv +陈大天-俄罗斯娃娃,http://em.21dtv.com/songs/60106385.mkv +TIZZY BAC-俄罗斯轮盘,http://em.21dtv.com/songs/60061168.mkv +邵兵-二零零四年(演唱会),http://em.21dtv.com/songs/60016347.mkv +群星-二零零零party(无原唱),http://em.21dtv.com/songs/60016345.mkv +严爵-贰零零零年,http://em.21dtv.com/songs/60080797.mkv +乐童音乐家-200%,http://em.21dtv.com/songs/60099726.mkv +中国力量-鄂伦春小调,http://em.21dtv.com/songs/60090481.mkv +天骏-额吉的太阳(演唱会),http://em.21dtv.com/songs/60075272.mkv +BACKSTREET BOYS-everytime i close my eyes,http://em.21dtv.com/songs/60001582.mkv +BABYFACE-everytime i close my eyes,http://em.21dtv.com/songs/60001581.mkv +王一平-额尔古纳河,http://em.21dtv.com/songs/60097695.mkv +乌云其米格-额尔古纳河,http://em.21dtv.com/songs/60016270.mkv +莫文蔚-耳朵要解渴,http://em.21dtv.com/songs/60016319.mkv +佚名-every day i love you,http://em.21dtv.com/songs/60001541.mkv +佚名-el carrillon de la merced,http://em.21dtv.com/songs/60001479.mkv +ROD STEWART-every beat of my heart,http://em.21dtv.com/songs/60001538.mkv +张韶涵-都只因为你,http://em.21dtv.com/songs/60015729.mkv +B.A.D-肚子一圈肉,http://em.21dtv.com/songs/60015876.mkv +粥稀稀-等咱有钱了,http://em.21dtv.com/songs/60094242.mkv +赖铭伟-斗阵摇落去,http://em.21dtv.com/songs/60131837.mkv +黄韵玲-订做一个他,http://em.21dtv.com/songs/60015451.mkv +温兆伦+陈松伶-赌这一份爱,http://em.21dtv.com/songs/60015860.mkv +方顺吉-当作一场梦,http://em.21dtv.com/songs/60014663.mkv +佚名-等着我小河,http://em.21dtv.com/songs/60015064.mkv +刘德华-带走我所有,http://em.21dtv.com/songs/60014292.mkv +云丹久美-等着我来爱,http://em.21dtv.com/songs/60134863.mkv +高胜美-当掌声过后,http://em.21dtv.com/songs/60014651.mkv +阿光-电子十八分,http://em.21dtv.com/songs/60118996.mkv +刘德华-独自去偷欢(HD),http://em.21dtv.com/songs/10012635.mkv +刘德华-独自去偷欢,http://em.21dtv.com/songs/60015825.mkv +谢霆锋-独自去偷欢(演唱会),http://em.21dtv.com/songs/60015824.mkv +刘德华-独自去偷欢(HD演唱会),http://em.21dtv.com/songs/60015823.mkv +大哲-大哲去南方,http://em.21dtv.com/songs/60014234.mkv +刘雅丽-等着你回来(演唱会),http://em.21dtv.com/songs/60082835.mkv +苏珊-等着你回来(演唱会),http://em.21dtv.com/songs/60075166.mkv +佚名-等着你回来,http://em.21dtv.com/songs/60015063.mkv +罗文-等着你回来,http://em.21dtv.com/songs/60015062.mkv +方大同-等着你回来,http://em.21dtv.com/songs/60015061.mkv +周蕙-等着你回来(演唱会),http://em.21dtv.com/songs/60015060.mkv +万芳-带着梦飞翔,http://em.21dtv.com/songs/60014287.mkv +黄雅珉-到这里就好(无原唱),http://em.21dtv.com/songs/60014766.mkv +孙浩雨-对着镜子哭,http://em.21dtv.com/songs/60064154.mkv +许茹芸-对自己说谎,http://em.21dtv.com/songs/60092076.mkv +吴克群-斗阵俱乐部,http://em.21dtv.com/songs/60015750.mkv +罗时丰-斗阵久才知(无原唱),http://em.21dtv.com/songs/60095854.mkv +苗侨伟+谢天华-大丈夫系我,http://em.21dtv.com/songs/60014233.mkv +佚名-大丈夫日记,http://em.21dtv.com/songs/60014232.mkv +薛家燕+合唱团-弟子24孝(演唱会),http://em.21dtv.com/songs/60075176.mkv +臧天朔-都在等着你,http://em.21dtv.com/songs/60015728.mkv +阿吉仔-歹子的心声,http://em.21dtv.com/songs/60014251.mkv +张惠妹-短暂的幸福,http://em.21dtv.com/songs/60015902.mkv +天舞-独自等日出,http://em.21dtv.com/songs/60123805.mkv +林子娟-挡着地球转(无原唱),http://em.21dtv.com/songs/60014673.mkv +杨臣刚-短暂的美好,http://em.21dtv.com/songs/60015901.mkv +詹森淮-都走到了这,http://em.21dtv.com/songs/60129605.mkv +TWINS-德洲的故事,http://em.21dtv.com/songs/60092213.mkv +TWINS-德州的故事,http://em.21dtv.com/songs/60014815.mkv +于台烟-短暂的等待,http://em.21dtv.com/songs/60015900.mkv +庄心妍-独自唱情歌,http://em.21dtv.com/songs/60119488.mkv +阿吉仔-歹竹出好笋,http://em.21dtv.com/songs/60014249.mkv +谢金燕-当做不识你,http://em.21dtv.com/songs/60014664.mkv +阿利-带着爱回家,http://em.21dtv.com/songs/60118997.mkv +SNH48-第一只兔子,http://em.21dtv.com/songs/60110796.mkv +Frank秋枫-大约在冬季,http://em.21dtv.com/songs/60101768.mkv +莫旭秋-大约在冬季(演唱会),http://em.21dtv.com/songs/60064104.mkv +王杰-大约在冬季,http://em.21dtv.com/songs/60014224.mkv +齐秦-大约在冬季,http://em.21dtv.com/songs/60014223.mkv +高胜美-大约在冬季,http://em.21dtv.com/songs/60014222.mkv +蔡琴-大约在冬季,http://em.21dtv.com/songs/60014221.mkv +齐秦-大约在冬季(演唱会),http://em.21dtv.com/songs/60014220.mkv +巫启贤-但愿有情人,http://em.21dtv.com/songs/60014442.mkv +彩月团-对游泳的鱼,http://em.21dtv.com/songs/60016078.mkv +达明一派-大亚湾之恋(演唱会),http://em.21dtv.com/songs/60014192.mkv +黎明-但愿我潇洒,http://em.21dtv.com/songs/60014441.mkv +佚名-do you wanna touch me(无原唱),http://em.21dtv.com/songs/60001287.mkv +木杰-大雨无情下,http://em.21dtv.com/songs/60108551.mkv +李玟-do you want my love,http://em.21dtv.com/songs/60001288.mkv +刘德华-但愿未流泪,http://em.21dtv.com/songs/60014440.mkv +柯以敏-答应我好吗,http://em.21dtv.com/songs/60013738.mkv +吴若希-第一天失恋,http://em.21dtv.com/songs/60066961.mkv +李健-当有天老去,http://em.21dtv.com/songs/60075123.mkv +ROD STEWART-do ya think im sexy,http://em.21dtv.com/songs/60001275.mkv +尹光-大约是同志,http://em.21dtv.com/songs/60090998.mkv +汪苏泷-第一首情歌,http://em.21dtv.com/songs/60075188.mkv +PET SHOP BOYS-did you see me coming,http://em.21dtv.com/songs/60001231.mkv +文恩澄+陈国峰-地狱式恋爱,http://em.21dtv.com/songs/60066959.mkv +金玲-对月诉悲情(无原唱),http://em.21dtv.com/songs/60016081.mkv +芳华十八-但愿人长久,http://em.21dtv.com/songs/60088524.mkv +龚琳娜-但愿人长久,http://em.21dtv.com/songs/60081633.mkv +王菀之-但愿人长久,http://em.21dtv.com/songs/60080737.mkv +ROBYN-do you really want me,http://em.21dtv.com/songs/60001281.mkv +刘子琪-但愿人长久,http://em.21dtv.com/songs/60132232.mkv +苏玮-但愿人长久,http://em.21dtv.com/songs/60122056.mkv +郝萌-但愿人长久,http://em.21dtv.com/songs/60121007.mkv +朱强-但愿人长久,http://em.21dtv.com/songs/60115215.mkv +朱强-但愿人长久,http://em.21dtv.com/songs/60113603.mkv +朱强-但愿人长久,http://em.21dtv.com/songs/60112739.mkv +周安信+唐子宜-但愿人长久,http://em.21dtv.com/songs/60110934.mkv +李伟-但愿人长久,http://em.21dtv.com/songs/60098447.mkv +陈德彰-但愿人长久(演唱会),http://em.21dtv.com/songs/60082800.mkv +孙健-但愿人长久,http://em.21dtv.com/songs/60075104.mkv +子祺-但愿人长久,http://em.21dtv.com/songs/60063486.mkv +陈洁丽-但愿人长久(演唱会),http://em.21dtv.com/songs/60062256.mkv +佚名-但愿人长久,http://em.21dtv.com/songs/60014438.mkv +王菲-但愿人长久,http://em.21dtv.com/songs/60014437.mkv +吕薇-但愿人长久,http://em.21dtv.com/songs/60014436.mkv +卢寇廷-但愿人长久,http://em.21dtv.com/songs/60014435.mkv +胡松华-但愿人长久,http://em.21dtv.com/songs/60014434.mkv +戴娆-但愿人长久,http://em.21dtv.com/songs/60014433.mkv +张学友-但愿人长久(演唱会),http://em.21dtv.com/songs/60014432.mkv +张学友+庾澄庆-但愿人长久(演唱会),http://em.21dtv.com/songs/60014431.mkv +张国荣-但愿人长久(演唱会),http://em.21dtv.com/songs/60014430.mkv +王菲-但愿人长久(演唱会),http://em.21dtv.com/songs/60014429.mkv +谭晶-但愿人长久(演唱会),http://em.21dtv.com/songs/60014428.mkv +邓丽君-但愿人长久(演唱会),http://em.21dtv.com/songs/60014427.mkv +陈慧琳-但愿人长久(演唱会),http://em.21dtv.com/songs/60014426.mkv +谢安琪-但愿人长久(HD演唱会),http://em.21dtv.com/songs/60014425.mkv +张学友-但愿人长久(96新版),http://em.21dtv.com/songs/60014424.mkv +蓝雨-第一千滴泪,http://em.21dtv.com/songs/60015273.mkv +段千寻-第一千滴泪,http://em.21dtv.com/songs/60015272.mkv +中国娃娃-单眼皮女生,http://em.21dtv.com/songs/60014402.mkv +杨采妮-但愿你明白,http://em.21dtv.com/songs/60014422.mkv +施文彬-但愿梦长久,http://em.21dtv.com/songs/60014421.mkv +陈予新-第一类接触(演唱会),http://em.21dtv.com/songs/60015271.mkv +陈奕迅-第一类接触(演唱会),http://em.21dtv.com/songs/60015270.mkv +好妹妹乐队-多一克温暖,http://em.21dtv.com/songs/60130231.mkv +郑东河-第一颗纽扣,http://em.21dtv.com/songs/60082842.mkv +傅颖-第一颗流星,http://em.21dtv.com/songs/60015268.mkv +陈浩德-点样讲你知(演唱会),http://em.21dtv.com/songs/60015323.mkv +谢霆锋-大眼睛姑娘,http://em.21dtv.com/songs/60014198.mkv +龙梅子-大雨还在下,http://em.21dtv.com/songs/60114314.mkv +欧阳尚尚-大雨还在下,http://em.21dtv.com/songs/60069324.mkv +高夫-大雨还在下,http://em.21dtv.com/songs/60014216.mkv +尹光-蝶影红梨记(演唱会),http://em.21dtv.com/songs/60015419.mkv +小沈阳+沈春阳-都要好好的(演唱会),http://em.21dtv.com/songs/60015725.mkv +成龙-但愿花常在,http://em.21dtv.com/songs/60014420.mkv +许慧欣-第一个找你(演唱会),http://em.21dtv.com/songs/60015264.mkv +龙啸-第一个知道,http://em.21dtv.com/songs/60075187.mkv +林奕匡-第一个早晨,http://em.21dtv.com/songs/60132605.mkv +初晨-第一个约定,http://em.21dtv.com/songs/60131219.mkv +佚名-第一个夏天,http://em.21dtv.com/songs/60015262.mkv +孙楠-大秧歌序曲,http://em.21dtv.com/songs/60118497.mkv +蔡淳佳-等一个晴天,http://em.21dtv.com/songs/60015047.mkv +王力宏-第一个清晨,http://em.21dtv.com/songs/60015261.mkv +曹雅雯-对伊搁留恋,http://em.21dtv.com/songs/60016077.mkv +李雯希-等一个怀抱(HD),http://em.21dtv.com/songs/10012799.mkv +李雯希-等一个怀抱,http://em.21dtv.com/songs/60097679.mkv +蔡卓妍-等一个怀抱,http://em.21dtv.com/songs/60085040.mkv +佚名-当一个好兵,http://em.21dtv.com/songs/60014646.mkv +黄湘怡-第一个冬季,http://em.21dtv.com/songs/60015258.mkv +许美静-当阳光变冷,http://em.21dtv.com/songs/60014644.mkv +陈晓东-第一份感情,http://em.21dtv.com/songs/60015256.mkv +钓鱼岛组合-钓鱼岛之歌,http://em.21dtv.com/songs/60069357.mkv +邰正宵-大雨的夜里,http://em.21dtv.com/songs/60097484.mkv +张清芳-大雨的夜里,http://em.21dtv.com/songs/60014215.mkv +汪思妍-躲雨的幸福,http://em.21dtv.com/songs/60080725.mkv +李国祥-多一点温柔,http://em.21dtv.com/songs/60016232.mkv +费玉清-冬夜的思念,http://em.21dtv.com/songs/60015616.mkv +泰歌+小臭臭-多一点时间,http://em.21dtv.com/songs/60099369.mkv +王小雨-多余的期许,http://em.21dtv.com/songs/60132725.mkv +沈丹丹-多雨的秋天,http://em.21dtv.com/songs/60116998.mkv +格杨-多余的理想,http://em.21dtv.com/songs/60075270.mkv +曾轶可-多余的流星(演唱会),http://em.21dtv.com/songs/60016238.mkv +许嵩-多余的解释,http://em.21dtv.com/songs/60016237.mkv +卓依婷-打渔的儿郎,http://em.21dtv.com/songs/60013831.mkv +郑智化-淡呀淡的光,http://em.21dtv.com/songs/60088766.mkv +佚名-淡呀淡的光(无原唱),http://em.21dtv.com/songs/60014463.mkv +段红-董永的传说,http://em.21dtv.com/songs/60109482.mkv +陈瑞-多雨的城市,http://em.21dtv.com/songs/60016239.mkv +叶倩文-躲也躲不了,http://em.21dtv.com/songs/60016255.mkv +李心洁-第一次约会,http://em.21dtv.com/songs/60015252.mkv +狄易达-第一次拥抱,http://em.21dtv.com/songs/60125894.mkv +东城卫-第一次拥抱,http://em.21dtv.com/songs/60101861.mkv +EO2-第一次拥抱(无原唱),http://em.21dtv.com/songs/60015251.mkv +容祖儿-第一次想醉(演唱会),http://em.21dtv.com/songs/60064133.mkv +酒吧伤心人-第一次心碎,http://em.21dtv.com/songs/60066960.mkv +姚乙-但愿长相随,http://em.21dtv.com/songs/60014443.mkv +蔡依林-第一次听见,http://em.21dtv.com/songs/60092022.mkv +关诗敏-第一次失恋,http://em.21dtv.com/songs/60082841.mkv +卓依婷-第一次失恋,http://em.21dtv.com/songs/60015246.mkv +张祥洪-第一痴情人,http://em.21dtv.com/songs/60015230.mkv +蔡琴-第一次青春,http://em.21dtv.com/songs/60015245.mkv +苍茫-第一次离别,http://em.21dtv.com/songs/60015243.mkv +王宇鹏-第一次恋爱,http://em.21dtv.com/songs/60094222.mkv +郑宇文-第一次喝醉,http://em.21dtv.com/songs/60015242.mkv +无印良品-第一次喊你,http://em.21dtv.com/songs/60015241.mkv +雷龙-豆芽菜的爱,http://em.21dtv.com/songs/60015761.mkv +雷龙-豆芽菜的爱(演唱会),http://em.21dtv.com/songs/60015760.mkv +余文乐-第一次爱情,http://em.21dtv.com/songs/60103083.mkv +姜育恒-当拥抱结束,http://em.21dtv.com/songs/60014649.mkv +林俊杰-点一把火炬,http://em.21dtv.com/songs/60015324.mkv +郑中基-答应不爱你,http://em.21dtv.com/songs/60013731.mkv +陈珊妮-Dear You And The Boy(低调人生),http://em.21dtv.com/songs/60080097.mkv +帅无情-胆小者勿听,http://em.21dtv.com/songs/60119479.mkv +赵芬妮-大象与小象,http://em.21dtv.com/songs/60014169.mkv +叶良辰-大侠叶良辰,http://em.21dtv.com/songs/60116615.mkv +萧敬腾-多希望你在,http://em.21dtv.com/songs/60016205.mkv +范雨露-大戏俏河南,http://em.21dtv.com/songs/60082786.mkv +王瑞霞-多谢你的爱,http://em.21dtv.com/songs/60016220.mkv +宋祖英-东西南北中,http://em.21dtv.com/songs/60087687.mkv +宋祖英-东西南北兵,http://em.21dtv.com/songs/60015564.mkv +顾芮宁-多想你爱我,http://em.21dtv.com/songs/60119050.mkv +任妙音-多想留住你,http://em.21dtv.com/songs/60125097.mkv +陈小春-多谢老天爷,http://em.21dtv.com/songs/60016218.mkv +农夫-掂讯夸啦啦,http://em.21dtv.com/songs/60090673.mkv +黄诗荣-丁香花正香,http://em.21dtv.com/songs/60101583.mkv +叶振棠-大侠霍元甲,http://em.21dtv.com/songs/60014160.mkv +叶振棠-大侠霍元甲(演唱会),http://em.21dtv.com/songs/60014159.mkv +豆子民-滴血的祝福,http://em.21dtv.com/songs/60104442.mkv +张蓉蓉-断线的相思,http://em.21dtv.com/songs/60015951.mkv +周笔畅-倒叙的时光,http://em.21dtv.com/songs/60014718.mkv +春天-大喜的日子,http://em.21dtv.com/songs/60086562.mkv +孟刚-大喜的日子,http://em.21dtv.com/songs/60071860.mkv +刘玮-大喜的日子,http://em.21dtv.com/songs/60014152.mkv +雷佳-多想对你说,http://em.21dtv.com/songs/60120119.mkv +网络歌手+武家祥-胆小的男生,http://em.21dtv.com/songs/60091817.mkv +佚名-灯下的姑娘,http://em.21dtv.com/songs/60014828.mkv +邓紫棋-单行的轨道,http://em.21dtv.com/songs/60118089.mkv +苏浩-单行的轨道,http://em.21dtv.com/songs/60114003.mkv +邓紫棋-单行的轨道,http://em.21dtv.com/songs/60110571.mkv +田杰-断线的风筝,http://em.21dtv.com/songs/60112860.mkv +林峰-断线的风筝,http://em.21dtv.com/songs/60100207.mkv +张艾文-断线的风筝,http://em.21dtv.com/songs/60015950.mkv +陈雪玲-断线的风筝,http://em.21dtv.com/songs/60015949.mkv +王铎-多想抱住你,http://em.21dtv.com/songs/60135571.mkv +唐朝乐队-大象不抱怨,http://em.21dtv.com/songs/60097485.mkv +陈粒-当我在这里,http://em.21dtv.com/songs/60129755.mkv +王基飞-等我赚了钱,http://em.21dtv.com/songs/60061149.mkv +尹光-弟王争霸战,http://em.21dtv.com/songs/60015143.mkv +ELLA+TANK-懂我再爱我,http://em.21dtv.com/songs/60066968.mkv +张震岳-等我有一天,http://em.21dtv.com/songs/60091162.mkv +刘德华-当我遇上你,http://em.21dtv.com/songs/60014631.mkv +刘德华-当我遇上你(演唱会),http://em.21dtv.com/songs/60014630.mkv +周华健-等我一秒钟,http://em.21dtv.com/songs/60015037.mkv +李健-等我遇见你,http://em.21dtv.com/songs/60121764.mkv +乔洋-当我遇见你,http://em.21dtv.com/songs/60065931.mkv +林忆莲-但我已给你,http://em.21dtv.com/songs/60014411.mkv +SOUL WORKS-等我一分钟(无原唱),http://em.21dtv.com/songs/60015036.mkv +徐千雅-等我一辈子,http://em.21dtv.com/songs/60075164.mkv +新宝岛康乐队-等无限时批,http://em.21dtv.com/songs/60015045.mkv +冷漠-当我想起你,http://em.21dtv.com/songs/60081032.mkv +张学友-当我想起你,http://em.21dtv.com/songs/60014629.mkv +王思思-当我想起你,http://em.21dtv.com/songs/60014628.mkv +李文亮-当我想起你,http://em.21dtv.com/songs/60014627.mkv +陈百强-当我想起你,http://em.21dtv.com/songs/60014626.mkv +MADONNA-drowned world substitute for love,http://em.21dtv.com/songs/60001449.mkv +张雨生-带我去月球,http://em.21dtv.com/songs/60014282.mkv +佚名-带我去月球,http://em.21dtv.com/songs/60014281.mkv +蔡佳莹-带我去远方,http://em.21dtv.com/songs/60123130.mkv +王啸坤-带我去寻找,http://em.21dtv.com/songs/60014280.mkv +庞龙-带我去西藏,http://em.21dtv.com/songs/60117710.mkv +关淑怡-带我去跳舞(演唱会),http://em.21dtv.com/songs/60014279.mkv +郭嘉璐-带我去飞呀,http://em.21dtv.com/songs/60014278.mkv +呼斯楞-带我去草原,http://em.21dtv.com/songs/60104889.mkv +来国庆-带我去草原,http://em.21dtv.com/songs/60062552.mkv +佚名-等无你一人(无原唱),http://em.21dtv.com/songs/60015040.mkv +陈夏莲-等无你的人,http://em.21dtv.com/songs/60135908.mkv +邱贤桂-等无你的亲,http://em.21dtv.com/songs/60124555.mkv +谢金晶-等无你的爱,http://em.21dtv.com/songs/60132889.mkv +黎明-当我没有你,http://em.21dtv.com/songs/60093561.mkv +紫琴-当我们老去,http://em.21dtv.com/songs/60082805.mkv +GLORIA ESTEFAN-dont wanna lose you now,http://em.21dtv.com/songs/60001388.mkv +潘美辰-当我离开你,http://em.21dtv.com/songs/60014612.mkv +BEE GEES-dont wanna live inside myself,http://em.21dtv.com/songs/60001387.mkv +张智霖-逗我开心吧,http://em.21dtv.com/songs/60015762.mkv +李玖哲+EDWARD+GABE-第五街诱惑,http://em.21dtv.com/songs/60015228.mkv +路嘉欣-当我继续唱,http://em.21dtv.com/songs/60086525.mkv +文雨非-对我好一点,http://em.21dtv.com/songs/60075260.mkv +江美琪-对我好一点,http://em.21dtv.com/songs/60016073.mkv +沈芳如-对我好一点(无原唱),http://em.21dtv.com/songs/60016072.mkv +SOULWORKS-等我1分钟(无原唱),http://em.21dtv.com/songs/60015028.mkv +路绮欧-当我发现你,http://em.21dtv.com/songs/60014604.mkv +龙世杰-带我到月亮,http://em.21dtv.com/songs/60134516.mkv +谭维维+妙音汉子-带我到山顶,http://em.21dtv.com/songs/60112966.mkv +王凯琪-带我到山顶,http://em.21dtv.com/songs/60104301.mkv +太阳部落-带我到山顶,http://em.21dtv.com/songs/60097612.mkv +吉克隽逸-带我带山顶,http://em.21dtv.com/songs/60080997.mkv +吉克隽逸-带我到山顶,http://em.21dtv.com/songs/60071862.mkv +涓子-独舞的枫叶,http://em.21dtv.com/songs/60082857.mkv +卜学亮-动物的悲歌(演唱会),http://em.21dtv.com/songs/60015665.mkv +陈随意-等我出头天,http://em.21dtv.com/songs/60015029.mkv +姜育恒-第五次恋爱,http://em.21dtv.com/songs/60015225.mkv +邱泽-当我不在吧,http://em.21dtv.com/songs/60014601.mkv +日京江羽人-当我八十四,http://em.21dtv.com/songs/60097534.mkv +梁咏琪-当我爱上你,http://em.21dtv.com/songs/60014600.mkv +DELTA GOODREM-dancing with a broken heart,http://em.21dtv.com/songs/60073103.mkv +王君馨-deja vu+crazy in love,http://em.21dtv.com/songs/60086337.mkv +高飞-DUANG,http://em.21dtv.com/songs/60114283.mkv +蒙面哥-DUANG,http://em.21dtv.com/songs/60111386.mkv +罗时丰-大头仔兄弟,http://em.21dtv.com/songs/60014142.mkv +高向鹏+傅振辉-大头仔兄弟,http://em.21dtv.com/songs/60014141.mkv +SWEDISH HOUSE MAFIA+JOHN MARTIN-dont you worrc child,http://em.21dtv.com/songs/60073147.mkv +尹啸-洞庭渔米乡,http://em.21dtv.com/songs/60127930.mkv +何纪光-洞庭鱼米乡,http://em.21dtv.com/songs/60015679.mkv +CHRIS BROWN-dont wake me up,http://em.21dtv.com/songs/60070324.mkv +樊桐舟-地铁五号线,http://em.21dtv.com/songs/60098538.mkv +JASON DERULO-dont wanna go home,http://em.21dtv.com/songs/60062052.mkv +BOYFRIEND-dont touch my girl,http://em.21dtv.com/songs/60073146.mkv +黑眼豆豆-dont stop the party,http://em.21dtv.com/songs/60073144.mkv +PITBULL+TJR-dont stop the party,http://em.21dtv.com/songs/60073143.mkv +邓紫祺-don t stop the music,http://em.21dtv.com/songs/60073132.mkv +DREAM GIRLS-dont stop the music,http://em.21dtv.com/songs/60071590.mkv +邓紫棋-dont stop the music(演唱会),http://em.21dtv.com/songs/60063577.mkv +盖鸣晖+吴美英-洞庭十送-下,http://em.21dtv.com/songs/60015678.mkv +盖鸣晖+吴美英-洞庭十送-上,http://em.21dtv.com/songs/60015677.mkv +李媛希-地图上旅行,http://em.21dtv.com/songs/60015120.mkv +姜木-大提琴老了,http://em.21dtv.com/songs/60075080.mkv +蔡济文-当天梦已变,http://em.21dtv.com/songs/60014597.mkv +TANYA TUCKER-down to my last teardrop,http://em.21dtv.com/songs/60001400.mkv +佚名-down to my last teardrop(无原唱),http://em.21dtv.com/songs/60001399.mkv +叶兆柏-打铜锣之一,http://em.21dtv.com/songs/60013829.mkv +丁汀-丁汀历险记(演唱会),http://em.21dtv.com/songs/60015423.mkv +佚名-do they know its christmas,http://em.21dtv.com/songs/60001273.mkv +艾歌-对她好一些,http://em.21dtv.com/songs/60016066.mkv +NICOLE SCHERZINGER-dont hold your breath,http://em.21dtv.com/songs/60073139.mkv +潘傲峰-冬天的阳光,http://em.21dtv.com/songs/60082851.mkv +香香-冬天的星愿,http://em.21dtv.com/songs/60015602.mkv +张文绮-打铁的心情,http://em.21dtv.com/songs/60130317.mkv +翁立友-冬天的日头,http://em.21dtv.com/songs/60081333.mkv +周传雄-冬天的秘密,http://em.21dtv.com/songs/60015600.mkv +MIKA NEWTON-dont dumb me down,http://em.21dtv.com/songs/60067874.mkv +卓文萱-冬天的桔子,http://em.21dtv.com/songs/60015599.mkv +李娜-冬天的呼唤,http://em.21dtv.com/songs/60015598.mkv +马天宇-冬天的故事,http://em.21dtv.com/songs/60015597.mkv +马淑媛-独特的芬芳,http://em.21dtv.com/songs/60112391.mkv +关喆+张玮琪-dont break my heart,http://em.21dtv.com/songs/60073134.mkv +ARRON NEVILLE-dont take away my heaven,http://em.21dtv.com/songs/60001379.mkv +范宏伟-大叔也有爱,http://em.21dtv.com/songs/60100423.mkv +赵咏华-多说一些话(无原唱),http://em.21dtv.com/songs/60016204.mkv +佚名-都是因为你,http://em.21dtv.com/songs/60015720.mkv +南台湾小姑娘-东时有人疼(无原唱),http://em.21dtv.com/songs/60015562.mkv +佚名-dont say you love me,http://em.21dtv.com/songs/60001369.mkv +大勇-都是一家人,http://em.21dtv.com/songs/60119379.mkv +向蕙玲-但是又何奈,http://em.21dtv.com/songs/60135000.mkv +杨宗纬-但是又何奈,http://em.21dtv.com/songs/60114616.mkv +崔苔菁-但是又何奈(无原唱),http://em.21dtv.com/songs/60014409.mkv +郭宴-都市夜归人,http://em.21dtv.com/songs/60127486.mkv +许美静-都是夜归人,http://em.21dtv.com/songs/60015718.mkv +祖海-都是一个爱,http://em.21dtv.com/songs/60015719.mkv +代小波-打死也不信,http://em.21dtv.com/songs/60013825.mkv +佚名-东山一把青,http://em.21dtv.com/songs/60015560.mkv +王识贤-担是要按怎,http://em.21dtv.com/songs/60014314.mkv +华东兄弟-大叔想出轨,http://em.21dtv.com/songs/60109199.mkv +闫学晶-都市外乡人,http://em.21dtv.com/songs/60070652.mkv +胡琳-第四晚心情,http://em.21dtv.com/songs/60097662.mkv +郭富城-第四晚心情,http://em.21dtv.com/songs/60015223.mkv +郭富城-第四晚心情(演唱会),http://em.21dtv.com/songs/60015222.mkv +刘德华-大胜无限番,http://em.21dtv.com/songs/60092352.mkv +易欣-单身万万岁,http://em.21dtv.com/songs/60014390.mkv +易秒英-都是为了你,http://em.21dtv.com/songs/60015711.mkv +李丹阳-都是为了你,http://em.21dtv.com/songs/60015710.mkv +门丽-都是为了爱,http://em.21dtv.com/songs/60064149.mkv +马德龙-都是我的错,http://em.21dtv.com/songs/60129799.mkv +王建杰-都是我的错,http://em.21dtv.com/songs/60015716.mkv +刘嘉亮-都是我的错,http://em.21dtv.com/songs/60015715.mkv +林玉英-都是我的错(无原唱),http://em.21dtv.com/songs/60015714.mkv +潘玮柏-戴上我的爱,http://em.21dtv.com/songs/60014300.mkv +张皓-都是我不好,http://em.21dtv.com/songs/60015713.mkv +许慧欣-都是我不对,http://em.21dtv.com/songs/60092061.mkv +刘浩龙-第三条跑道,http://em.21dtv.com/songs/60119305.mkv +成龙+藤原纪香-都市桃花源,http://em.21dtv.com/songs/60015697.mkv +周韦杰-第三十三日,http://em.21dtv.com/songs/60085044.mkv +贲小伟-屌丝谁来爱,http://em.21dtv.com/songs/60086529.mkv +孙盛希-单身≠失恋,http://em.21dtv.com/songs/60125394.mkv +黄小琥-第十三个月,http://em.21dtv.com/songs/60015219.mkv +BABE FIRST-倒数三二一,http://em.21dtv.com/songs/60064117.mkv +李韦-第三十二计,http://em.21dtv.com/songs/60015209.mkv +刘依纯-大声说爱我(无原唱),http://em.21dtv.com/songs/60014123.mkv +高瑞欣-大声说爱你,http://em.21dtv.com/songs/60014122.mkv +王凤霞+牧斯-多少情和意,http://em.21dtv.com/songs/60130575.mkv +门丽-搭上你明天,http://em.21dtv.com/songs/60114845.mkv +孙淑媚-到时你就知,http://em.21dtv.com/songs/60095505.mkv +林子祥-当时年纪小,http://em.21dtv.com/songs/60104243.mkv +毕书尽-都是你害的,http://em.21dtv.com/songs/60124181.mkv +毕书尽-都是你害的,http://em.21dtv.com/songs/60122938.mkv +HUSH-都是你害的,http://em.21dtv.com/songs/60097626.mkv +赵云飞-读书那点事,http://em.21dtv.com/songs/60110557.mkv +太极乐队-都是你的错,http://em.21dtv.com/songs/60092494.mkv +雷有辉+邓建明-都是你的错,http://em.21dtv.com/songs/60015708.mkv +陈慧琳-都是你的错,http://em.21dtv.com/songs/60015707.mkv +陈慧琳+郑中基-都是你的错,http://em.21dtv.com/songs/60015706.mkv +雷有辉+邓建明-都是你的错(演唱会),http://em.21dtv.com/songs/60015705.mkv +罗吉镇-当时明月在(无原唱),http://em.21dtv.com/songs/60014592.mkv +许慧欣-大手拉小手,http://em.21dtv.com/songs/60014132.mkv +刘惜君-大手拉小手(演唱会),http://em.21dtv.com/songs/60014131.mkv +巫启贤-都是路弯弯,http://em.21dtv.com/songs/60015702.mkv +袁哲-都市乐翻天(演唱会),http://em.21dtv.com/songs/60015692.mkv +金门王+李炳辉-独身进行曲(无原唱),http://em.21dtv.com/songs/60015806.mkv +潘玮柏-到时候再说,http://em.21dtv.com/songs/60091657.mkv +陈文浩-都是好演员,http://em.21dtv.com/songs/60135925.mkv +草蜢-都市黄昏人(演唱会),http://em.21dtv.com/songs/60015691.mkv +朱贝贝-大圣贺猴年,http://em.21dtv.com/songs/60125686.mkv +朱贝贝-大圣贺猴年,http://em.21dtv.com/songs/60118654.mkv +小文-东四环的雪,http://em.21dtv.com/songs/60015563.mkv +高枫-都市和村庄,http://em.21dtv.com/songs/60081883.mkv +谭杰希+刘心+张阳阳+左立-单身狗之歌,http://em.21dtv.com/songs/60117240.mkv +梁雁翎+蒋志光-多少个夜晚,http://em.21dtv.com/songs/60016192.mkv +庾澄庆-第三个愿望,http://em.21dtv.com/songs/60015206.mkv +徐子崴-单身狗情歌,http://em.21dtv.com/songs/60115943.mkv +庾澄庆-到死都要岁,http://em.21dtv.com/songs/60087780.mkv +周旭风-倒数的幽默,http://em.21dtv.com/songs/60082812.mkv +央吉玛-当时的月亮,http://em.21dtv.com/songs/60117642.mkv +侯磊+丁克森-当时的月亮,http://em.21dtv.com/songs/60081471.mkv +金莎-第三滴眼泪,http://em.21dtv.com/songs/60015204.mkv +王菲-当时的月亮,http://em.21dtv.com/songs/60014591.mkv +詹雅雯-单身的演歌,http://em.21dtv.com/songs/60014365.mkv +王铮亮-当时的约定,http://em.21dtv.com/songs/60014590.mkv +By2-当时的我们,http://em.21dtv.com/songs/60113135.mkv +BY2-当时的我们,http://em.21dtv.com/songs/60112424.mkv +吕洪义-大山的情怀,http://em.21dtv.com/songs/60115042.mkv +任贤齐-大声对你说,http://em.21dtv.com/songs/60090548.mkv +洪煜祺-丢失的梦想,http://em.21dtv.com/songs/60082848.mkv +张雷-屌丝的梦想,http://em.21dtv.com/songs/60075200.mkv +刘一祯-大山的妈妈(演唱会),http://em.21dtv.com/songs/60075077.mkv +何炅-当时的理想,http://em.21dtv.com/songs/60014589.mkv +吕雯-丢失的戒指,http://em.21dtv.com/songs/60015483.mkv +胡雯-丢失的戒指,http://em.21dtv.com/songs/60015482.mkv +孙榕-大山的精神,http://em.21dtv.com/songs/60068205.mkv +王梓旭-大山的孩子,http://em.21dtv.com/songs/60064101.mkv +郑少秋-大时代过客,http://em.21dtv.com/songs/60082785.mkv +刘尊-都市的感觉,http://em.21dtv.com/songs/60015689.mkv +林志炫-单身的感爱,http://em.21dtv.com/songs/60014364.mkv +袁宇-对上帝的爱,http://em.21dtv.com/songs/60110504.mkv +胡艾彤-大叔不要跑,http://em.21dtv.com/songs/60103529.mkv +曾春年-单身不是罪,http://em.21dtv.com/songs/60126972.mkv +单色凌-单色冰淇淋,http://em.21dtv.com/songs/60065925.mkv +陈笑玮-带上爱飞翔,http://em.21dtv.com/songs/60065923.mkv +海燕儿-点燃一支烟,http://em.21dtv.com/songs/60113817.mkv +郑智化-点燃一根烟,http://em.21dtv.com/songs/60071884.mkv +佚名-点燃一根烟,http://em.21dtv.com/songs/60015320.mkv +林玉英-点燃一根烟(无原唱),http://em.21dtv.com/songs/60015319.mkv +张秀卿-带阮行入梦(无原唱),http://em.21dtv.com/songs/60014271.mkv +姚黛玮-多让我一些,http://em.21dtv.com/songs/60016183.mkv +周乐天-点燃我的爱,http://em.21dtv.com/songs/60066962.mkv +陈惠婷-Dr.恋爱,http://em.21dtv.com/songs/60120086.mkv +徐英恩-Dream,http://em.21dtv.com/songs/60133721.mkv +脸红的思春期-Dream,http://em.21dtv.com/songs/60131750.mkv +Area51-DREAM,http://em.21dtv.com/songs/60123438.mkv +秀智+伯贤-Dream,http://em.21dtv.com/songs/60119852.mkv +BY2-大人的世界,http://em.21dtv.com/songs/60014107.mkv +杭娇-动人的传说,http://em.21dtv.com/songs/60081315.mkv +左小祖咒-动人的部分,http://em.21dtv.com/songs/60066969.mkv +9MUSES-Drama,http://em.21dtv.com/songs/60109790.mkv +小龙女-多情追梦女(演唱会),http://em.21dtv.com/songs/60016180.mkv +欧阳尚尚-单亲怎么了,http://em.21dtv.com/songs/60075099.mkv +华强-单亲怎么了,http://em.21dtv.com/songs/60061135.mkv +梁玉嵘-多情燕子归(戏曲),http://em.21dtv.com/songs/60092912.mkv +糖兄妹-地球应援团(演唱会),http://em.21dtv.com/songs/60069351.mkv +赵薇-多情应笑我,http://em.21dtv.com/songs/60016177.mkv +杨子-多情英雄泪,http://em.21dtv.com/songs/60101105.mkv +许冠杰-打雀英雄传,http://em.21dtv.com/songs/60116240.mkv +许冠杰-打雀英雄传,http://em.21dtv.com/songs/60093138.mkv +朱咪咪-打雀英雄传(演唱会),http://em.21dtv.com/songs/60013818.mkv +苏路-多情也是罪,http://em.21dtv.com/songs/60068236.mkv +王若希+Bonnie+Wild-多庆幸有你,http://em.21dtv.com/songs/60118790.mkv +王若希-多庆幸有你,http://em.21dtv.com/songs/60109535.mkv +顾凯-地球孝心村,http://em.21dtv.com/songs/60080521.mkv +金久哲-大庆幸福谣,http://em.21dtv.com/songs/60099547.mkv +何念庭-多情痛心肝,http://em.21dtv.com/songs/60016174.mkv +林姗-多情伤心肝,http://em.21dtv.com/songs/60016171.mkv +高安+司徒兰芳-多情伤离别,http://em.21dtv.com/songs/60071900.mkv +群星-地球你好吗,http://em.21dtv.com/songs/60088451.mkv +黑鸭子-地球你好吗,http://em.21dtv.com/songs/60015108.mkv +棉花糖-地球没有家,http://em.21dtv.com/songs/60106045.mkv +易秒英-多情苗家妹,http://em.21dtv.com/songs/60016166.mkv +洪佩瑜-踮起脚尖爱,http://em.21dtv.com/songs/60075197.mkv +曹越-点情借点爱(舞曲版),http://em.21dtv.com/songs/60085047.mkv +古巨基-地球很危险,http://em.21dtv.com/songs/60015106.mkv +谭晶-党旗更鲜艳,http://em.21dtv.com/songs/60014680.mkv +祁哲西-第七个季节,http://em.21dtv.com/songs/60103494.mkv +陈慧娴-地球大追踪,http://em.21dtv.com/songs/60015103.mkv +王瑞霞-多情多怨叹,http://em.21dtv.com/songs/60016159.mkv +王莱+云曼-多情的月娘,http://em.21dtv.com/songs/60104318.mkv +胡雁-多情的月亮,http://em.21dtv.com/songs/60091903.mkv +叶枫-动情的眼泪,http://em.21dtv.com/songs/60015662.mkv +正月十五-多情的月光(故事情节),http://em.21dtv.com/songs/60101126.mkv +蒋大为-多情的小溪,http://em.21dtv.com/songs/60120920.mkv +耿为华-多情的小溪(演唱会),http://em.21dtv.com/songs/60070659.mkv +龙奔-多情的小偷,http://em.21dtv.com/songs/60089085.mkv +刘德华-地球的心声,http://em.21dtv.com/songs/60015104.mkv +莫华伦+王莹-多情的土地,http://em.21dtv.com/songs/60123113.mkv +廖昌永-多情的土地,http://em.21dtv.com/songs/60112655.mkv +廖昌永-多情的土地,http://em.21dtv.com/songs/60102190.mkv +韩红-多情的土地(演唱会),http://em.21dtv.com/songs/60065951.mkv +佟铁鑫-多情的土地,http://em.21dtv.com/songs/60016152.mkv +关牧村-多情的土地,http://em.21dtv.com/songs/60016151.mkv +乌兰图雅-多情的山丹,http://em.21dtv.com/songs/60128740.mkv +胡杨岚-多情的女孩,http://em.21dtv.com/songs/60068234.mkv +杨诗语-多情的女孩,http://em.21dtv.com/songs/60066977.mkv +陈玉建-丢弃的玫瑰,http://em.21dtv.com/songs/60075209.mkv +邓丽君-多情的玫瑰,http://em.21dtv.com/songs/60016148.mkv +孙淑媚+秀兰玛雅-多情的恋梦,http://em.21dtv.com/songs/60016147.mkv +腾格尔-东去的列车,http://em.21dtv.com/songs/60088504.mkv +张也-多情东江水,http://em.21dtv.com/songs/60016157.mkv +佚名-多情东江水,http://em.21dtv.com/songs/60016156.mkv +梁雁翎-多情多烦恼,http://em.21dtv.com/songs/60016158.mkv +黑龙-多情的打扰,http://em.21dtv.com/songs/60064157.mkv +阳光天使-咚锵咚咚锵,http://em.21dtv.com/songs/60071891.mkv +孙淑媚-多情的城市,http://em.21dtv.com/songs/60016144.mkv +罗家宝+林锦屏-狄青闯三关(一),http://em.21dtv.com/songs/60015081.mkv +林德信-地球保卫者,http://em.21dtv.com/songs/60075172.mkv +张蓉蓉-多情被人欺,http://em.21dtv.com/songs/60075263.mkv +张凯瑜-东畔一粒星,http://em.21dtv.com/songs/60015550.mkv +叶诺帆-打拼一定赢,http://em.21dtv.com/songs/60122560.mkv +叶诺帆-打拼一定赢,http://em.21dtv.com/songs/60112564.mkv +翁立友+林姗-打拼为着你,http://em.21dtv.com/songs/60013812.mkv +黑眼豆豆-dont phunk with my heart,http://em.21dtv.com/songs/60001354.mkv +逍遥不败-打拼的兄弟(无原唱),http://em.21dtv.com/songs/60013811.mkv +黄俊英+卢海潮-大排档小唱,http://em.21dtv.com/songs/60014094.mkv +群星-大牌对王牌,http://em.21dtv.com/songs/60124357.mkv +樱花姐妹-打拼的工人,http://em.21dtv.com/songs/60072187.mkv +樱花姐妹-打拼的工人(无原唱),http://em.21dtv.com/songs/60013810.mkv +叶胜钦-打拼出头天,http://em.21dtv.com/songs/60066939.mkv +久登-打拼出头天,http://em.21dtv.com/songs/60013809.mkv +郭斯炫-打拼从头起,http://em.21dtv.com/songs/60085009.mkv +郭斯炫-打拼重头起,http://em.21dtv.com/songs/60065286.mkv +ANDY WILLIAMS-days of wine and roses(无原唱),http://em.21dtv.com/songs/60001178.mkv +彭佳慧-Don t Break My Heart,http://em.21dtv.com/songs/60100045.mkv +ELYAR FOX-Do It All Over Again,http://em.21dtv.com/songs/60100717.mkv +陈柔希-大女子主义,http://em.21dtv.com/songs/60075072.mkv +MC梦柯+MC王佳-刀怒斩逆徒,http://em.21dtv.com/songs/60134762.mkv +乔洋-大闹中国年,http://em.21dtv.com/songs/60075071.mkv +翁立友+林姗-对你这段情,http://em.21dtv.com/songs/60016060.mkv +阿桑格莱鹏措-等你在草原,http://em.21dtv.com/songs/60075159.mkv +韩婷-等你在敖包,http://em.21dtv.com/songs/60109006.mkv +黄妃-对你用真情(无原唱),http://em.21dtv.com/songs/60016058.mkv +杨钰莹-等你一万年(演唱会),http://em.21dtv.com/songs/60015018.mkv +杨青-等你一千年,http://em.21dtv.com/songs/60086527.mkv +许艺娜-等你一句话,http://em.21dtv.com/songs/60071879.mkv +林良欢-等你一句话,http://em.21dtv.com/songs/60070632.mkv +蓝紫-等你一句话,http://em.21dtv.com/songs/60066954.mkv +林子娟-等你一句话,http://em.21dtv.com/songs/60015015.mkv +江美琪+光良-对你有感觉,http://em.21dtv.com/songs/60016059.mkv +颜楚楚-等你一辈子,http://em.21dtv.com/songs/60015014.mkv +任军太-等你一辈子(演唱会),http://em.21dtv.com/songs/60015013.mkv +TANK-斗牛要不要,http://em.21dtv.com/songs/60015744.mkv +黄品冠+李心洁-当你想着我,http://em.21dtv.com/songs/60014569.mkv +林绫-当你想起我,http://em.21dtv.com/songs/60131552.mkv +尚雯婕-当你想起我,http://em.21dtv.com/songs/60014568.mkv +方顺吉-对你惜命命,http://em.21dtv.com/songs/60125625.mkv +卓依婷-东南西北风,http://em.21dtv.com/songs/60015548.mkv +黄安-东南西北风,http://em.21dtv.com/songs/60015547.mkv +蔡国庆+殷秀梅-东南西北风,http://em.21dtv.com/songs/60015546.mkv +陈慧琳-对你太在乎(HD),http://em.21dtv.com/songs/10012545.mkv +陈慧琳-对你太在乎,http://em.21dtv.com/songs/60016055.mkv +陈慧琳+苏永康-对你太在乎,http://em.21dtv.com/songs/60016053.mkv +陈慧琳-对你太在乎(演唱会),http://em.21dtv.com/songs/60016052.mkv +姚瑶-对你太想念,http://em.21dtv.com/songs/60075257.mkv +胡夏-当你听我说,http://em.21dtv.com/songs/60075114.mkv +佚名-等你疼入心,http://em.21dtv.com/songs/60015011.mkv +修美娜-对你说再见,http://em.21dtv.com/songs/60075255.mkv +佚名-斗牛士之歌,http://em.21dtv.com/songs/60015743.mkv +佟铁鑫-斗牛士之歌,http://em.21dtv.com/songs/60015742.mkv +S.H.E-斗牛士之歌,http://em.21dtv.com/songs/60015741.mkv +赵炳文-当你说要走(无原唱),http://em.21dtv.com/songs/60014565.mkv +蔡依林-对你说声hi,http://em.21dtv.com/songs/60016051.mkv +朱孝天+吴建豪-当你是朋友(演唱会),http://em.21dtv.com/songs/60014562.mkv +沈千依-等你说分手,http://em.21dtv.com/songs/60121859.mkv +林忆莲-等你说爱我,http://em.21dtv.com/songs/60015010.mkv +S.H.E-大女人主义,http://em.21dtv.com/songs/60014093.mkv +梁汉文-大男人情歌,http://em.21dtv.com/songs/60065919.mkv +胡艾莲-带你去重庆,http://em.21dtv.com/songs/60111364.mkv +牧斯-带你去温泉,http://em.21dtv.com/songs/60118756.mkv +陈天红-对你情太深,http://em.21dtv.com/songs/60134398.mkv +夏后-带你去旅行,http://em.21dtv.com/songs/60085022.mkv +扎西多吉-带你去草原,http://em.21dtv.com/songs/60118604.mkv +蒙克-带你去草原,http://em.21dtv.com/songs/60099473.mkv +雪域格桑-等你来小寨,http://em.21dtv.com/songs/60122256.mkv +平安-等你来疼我,http://em.21dtv.com/songs/60097681.mkv +M4M-当你离开我,http://em.21dtv.com/songs/60082803.mkv +刘依纯-当你离开后,http://em.21dtv.com/songs/60103106.mkv +格格-等你来草原,http://em.21dtv.com/songs/60062382.mkv +张怡诺-等你来爱我,http://em.21dtv.com/songs/60135201.mkv +钟镇涛-当你靠着我(演唱会),http://em.21dtv.com/songs/60014557.mkv +吴国敬-带你看风景,http://em.21dtv.com/songs/60014267.mkv +林子娟-等你将阮疼,http://em.21dtv.com/songs/60014999.mkv +罗时丰-等你几落冬,http://em.21dtv.com/songs/60014998.mkv +林晏如-等你脚步声(无原唱),http://em.21dtv.com/songs/60015000.mkv +佚名-多瑙河之波,http://em.21dtv.com/songs/60016132.mkv +龙剑笙-帝女花香夭,http://em.21dtv.com/songs/60075179.mkv +任剑辉+白雪仙-帝女花-香夭,http://em.21dtv.com/songs/60015153.mkv +梁耀安+倪惠英-帝女花-香夭,http://em.21dtv.com/songs/60015152.mkv +佚名-帝女花-相认(无原唱),http://em.21dtv.com/songs/60015151.mkv +任剑辉+白雪仙-帝女花-写表(无原唱),http://em.21dtv.com/songs/60015154.mkv +白雪仙-帝女花-哭父,http://em.21dtv.com/songs/60015150.mkv +晏林-带你回贵州,http://em.21dtv.com/songs/60135320.mkv +任剑辉-帝女花-庵遇,http://em.21dtv.com/songs/60015149.mkv +李逸-等你告诉我,http://em.21dtv.com/songs/60014987.mkv +詹雅雯-对你放袜离,http://em.21dtv.com/songs/60016045.mkv +赵阿光-对你的习惯,http://em.21dtv.com/songs/60070658.mkv +佚名-等你到天光,http://em.21dtv.com/songs/60095436.mkv +沈小勇-对你的思念,http://em.21dtv.com/songs/60111229.mkv +伊雪-懂你的情歌,http://em.21dtv.com/songs/60071892.mkv +罗百吉-动你的屁股,http://em.21dtv.com/songs/60015657.mkv +陈思安-对你的记治,http://em.21dtv.com/songs/60016041.mkv +严艺丹-等你的季节,http://em.21dtv.com/songs/60099065.mkv +吴奇隆+刘诗诗-等你的季节(演唱会),http://em.21dtv.com/songs/60068218.mkv +刘诗诗-等你的季节,http://em.21dtv.com/songs/60062674.mkv +佚名-多年的基础(无原唱),http://em.21dtv.com/songs/60016133.mkv +蒲紫微-等你对歌来,http://em.21dtv.com/songs/60068221.mkv +王识贤-等你倒返来(无原唱),http://em.21dtv.com/songs/60014970.mkv +李建衡-当年的承诺,http://em.21dtv.com/songs/60014572.mkv +巫启贤+彭羚-等你到白头,http://em.21dtv.com/songs/60014971.mkv +田芯儿-对你唱情歌,http://em.21dtv.com/songs/60061165.mkv +谢安琪-到南边走走,http://em.21dtv.com/songs/60100967.mkv +罗时丰-大牛爱小马,http://em.21dtv.com/songs/60064099.mkv +泳儿-对你爱不完,http://em.21dtv.com/songs/60113804.mkv +张杰+徐嘉苇-对你爱不完,http://em.21dtv.com/songs/60111882.mkv +夏恒-对你爱不完,http://em.21dtv.com/songs/60103178.mkv +李炜+江映蓉-对你爱不完,http://em.21dtv.com/songs/60098476.mkv +江映蓉+李炜-对你爱不完,http://em.21dtv.com/songs/60094567.mkv +罗熙杰-对你爱不完,http://em.21dtv.com/songs/60082865.mkv +龙视文艺频道全体主持人-对你爱不完,http://em.21dtv.com/songs/60075254.mkv +魏语诺+金池-对你爱不完,http://em.21dtv.com/songs/60070657.mkv +谢和弦-对你爱不完,http://em.21dtv.com/songs/60016031.mkv +胡彦斌-对你爱不完,http://em.21dtv.com/songs/60016030.mkv +郭富城-对你爱不完,http://em.21dtv.com/songs/60016029.mkv +谢霆锋-对你爱不完(演唱会),http://em.21dtv.com/songs/60016028.mkv +郭富城-对你爱不完(演唱会),http://em.21dtv.com/songs/60016027.mkv +草蜢-对你爱不完(演唱会),http://em.21dtv.com/songs/60016026.mkv +张凌枫-对你爱不够,http://em.21dtv.com/songs/60068232.mkv +易小川-大美珠江源,http://em.21dtv.com/songs/60075068.mkv +达明一派-达明一派对,http://em.21dtv.com/songs/60013716.mkv +达明一派+谢霆锋-达明一派对(演唱会),http://em.21dtv.com/songs/60013715.mkv +林玉英-倒满一杯酒(无原唱),http://em.21dtv.com/songs/60090005.mkv +戴玉强-大漠小夜曲,http://em.21dtv.com/songs/60089313.mkv +戴佩妮-多么想念你,http://em.21dtv.com/songs/60064156.mkv +Tacke竹桑-蝶梦 翩跹,http://em.21dtv.com/songs/60120247.mkv +董永鹏-多米诺骨牌,http://em.21dtv.com/songs/60069372.mkv +岑雨桥-东盟欢迎你,http://em.21dtv.com/songs/60135159.mkv +扎西多杰-打马回草原,http://em.21dtv.com/songs/60116850.mkv +王瑞霞+伍浩哲-等抹到月圆,http://em.21dtv.com/songs/60014952.mkv +毕程漉-呆萌的一天,http://em.21dtv.com/songs/60128150.mkv +周笔畅-多么的想你,http://em.21dtv.com/songs/60016127.mkv +张雨生-多梦的岁月,http://em.21dtv.com/songs/60016131.mkv +邱芸子-赌命的坚持,http://em.21dtv.com/songs/60064153.mkv +流浪天涯三兄妹-呆命阿狗兄(无原唱),http://em.21dtv.com/songs/60095795.mkv +张睿恩-单恋一只猫,http://em.21dtv.com/songs/60014349.mkv +傅薇+黄中原-单恋一支花,http://em.21dtv.com/songs/60090632.mkv +张宇-单恋一枝花,http://em.21dtv.com/songs/60014351.mkv +黄中原+傅薇-单恋一枝花(演唱会),http://em.21dtv.com/songs/60014350.mkv +CRAIG DAVID-dont love you no more,http://em.21dtv.com/songs/60001348.mkv +郭玲-动了我的情,http://em.21dtv.com/songs/60065941.mkv +彭柯-带来我的爱,http://em.21dtv.com/songs/60065922.mkv +OLIVIA ONG-对了我错了,http://em.21dtv.com/songs/60080068.mkv +黄品源-达令我爱你,http://em.21dtv.com/songs/60013714.mkv +德德玛-到留声湖去,http://em.21dtv.com/songs/60014757.mkv +刘秀文-大理山茶花,http://em.21dtv.com/songs/60110890.mkv +张津涤-丢了你以后,http://em.21dtv.com/songs/60132446.mkv +蔡琴-点亮霓虹灯,http://em.21dtv.com/songs/60015315.mkv +蔡琴-点亮霓虹灯(演唱会),http://em.21dtv.com/songs/60015314.mkv +云开-丢了你的我,http://em.21dtv.com/songs/60015478.mkv +TWINS-大浪漫主义,http://em.21dtv.com/songs/60014055.mkv +TWINS-大浪漫主义(演唱会),http://em.21dtv.com/songs/60014054.mkv +PINK-dont let me get me,http://em.21dtv.com/songs/60001340.mkv +B.BENJAMIN-S.MARCUS-dont let me be misunderstood(无原唱),http://em.21dtv.com/songs/60001338.mkv +刀郎-德令哈一夜,http://em.21dtv.com/songs/60014812.mkv +刘一祯-蝶恋花母亲(演唱会),http://em.21dtv.com/songs/60075206.mkv +曹沁芳-蝶恋花春景,http://em.21dtv.com/songs/60119624.mkv +梅艳芳-第六个星期,http://em.21dtv.com/songs/60015195.mkv +张宇-蛋佬的棉袄,http://em.21dtv.com/songs/60014478.mkv +张宇-蛋佬的棉袄(演唱会),http://em.21dtv.com/songs/60014477.mkv +星-断了的关系,http://em.21dtv.com/songs/60111935.mkv +林玉婷-堕落的承诺,http://em.21dtv.com/songs/60016260.mkv +吴炫豪-鼎力创辉煌,http://em.21dtv.com/songs/60130185.mkv +夏天alex-第六次分手,http://em.21dtv.com/songs/60119372.mkv +卓依婷+林正桦-歹路不通行,http://em.21dtv.com/songs/60014245.mkv +洪荣宏-歹路不可行,http://em.21dtv.com/songs/60014244.mkv +常思思-大陆阿里山,http://em.21dtv.com/songs/60064098.mkv +WEATHER GIRLS(天气女孩)-DKR32,http://em.21dtv.com/songs/60123567.mkv +郑伊健-打开你未来,http://em.21dtv.com/songs/60013792.mkv +郑伊健-打开你未来(演唱会),http://em.21dtv.com/songs/60013791.mkv +何念庭-打开你的心,http://em.21dtv.com/songs/60013790.mkv +佚名-打开你的门,http://em.21dtv.com/songs/60013789.mkv +王菀之-低科技之歌,http://em.21dtv.com/songs/60015069.mkv +金城武-多苦都愿意,http://em.21dtv.com/songs/60016123.mkv +金子嫣-渡口的女人(无原唱),http://em.21dtv.com/songs/60015884.mkv +大台风乐团-电甲吱吱叫,http://em.21dtv.com/songs/60119383.mkv +王杰-惦记这一些,http://em.21dtv.com/songs/60015363.mkv +邱泽-惦记这一些(演唱会),http://em.21dtv.com/songs/60015362.mkv +洪卓立-对焦这一秒,http://em.21dtv.com/songs/60079907.mkv +李香琴+吕珊-打金枝小曲(演唱会),http://em.21dtv.com/songs/60061123.mkv +群星-DJ总统舞,http://em.21dtv.com/songs/50000229.mkv +HOYA组合-大家作伙来,http://em.21dtv.com/songs/60133210.mkv +孙悦-大家一起来(演唱会),http://em.21dtv.com/songs/60014028.mkv +刘欢-大家一起来(演唱会),http://em.21dtv.com/songs/60014027.mkv +罗百吉-大家一起叫,http://em.21dtv.com/songs/60014026.mkv +张冬玲-大家一起唱,http://em.21dtv.com/songs/60129071.mkv +张俐敏-多加一点点,http://em.21dtv.com/songs/60087792.mkv +佚名-多加一点点,http://em.21dtv.com/songs/60016120.mkv +棉花糖-东京下雨了,http://em.21dtv.com/songs/60075213.mkv +韦绮姗-点解手牵手(演唱会),http://em.21dtv.com/songs/60082844.mkv +张德兰-点解手牵手(演唱会),http://em.21dtv.com/songs/60075194.mkv +佚名-点解手牵手,http://em.21dtv.com/songs/60015308.mkv +卓依婷-等久是你的,http://em.21dtv.com/songs/60014946.mkv +阮丹青-第九十九夜(演唱会),http://em.21dtv.com/songs/60015188.mkv +林慧萍-当假期结束(无原唱),http://em.21dtv.com/songs/60014535.mkv +欧阳佳彤-大家齐恭喜,http://em.21dtv.com/songs/60075065.mkv +陈慧琳-点解你系甘(演唱会),http://em.21dtv.com/songs/60015307.mkv +童丽-待嫁女儿心,http://em.21dtv.com/songs/60075097.mkv +胡锦-待嫁女儿心(演唱会),http://em.21dtv.com/songs/60075096.mkv +卓依婷-待嫁女儿心,http://em.21dtv.com/songs/60014295.mkv +林淑容-待嫁女儿心,http://em.21dtv.com/songs/60014294.mkv +杨燕-待嫁女儿心(演唱会),http://em.21dtv.com/songs/60014293.mkv +佚名-大家免着惊,http://em.21dtv.com/songs/60014024.mkv +二人转+闫学晶-大将名五更,http://em.21dtv.com/songs/60070616.mkv +M.I.C.男团-第几幕的爱(演唱会),http://em.21dtv.com/songs/60015187.mkv +方瑞娥+高向鹏-大家拢治这,http://em.21dtv.com/songs/60095547.mkv +吴淑敏-大家来做伙,http://em.21dtv.com/songs/60014021.mkv +李易峰-大家来找茶,http://em.21dtv.com/songs/60110277.mkv +陈雷-大家来跳舞,http://em.21dtv.com/songs/60120105.mkv +林依轮-大家来跳舞(演唱会),http://em.21dtv.com/songs/60014016.mkv +方瑞娥+高向鹏-大家拢洽这,http://em.21dtv.com/songs/60014023.mkv +施文彬-大家来起笑(演唱会),http://em.21dtv.com/songs/60014015.mkv +刘若英+徐怀钰+孔令奇-大家来恋爱,http://em.21dtv.com/songs/60014014.mkv +林美美-大家来减肥(无原唱),http://em.21dtv.com/songs/60014013.mkv +施文彬-大家乐欢天(无原唱),http://em.21dtv.com/songs/60014022.mkv +蟑螂乐队-大家来唱歌,http://em.21dtv.com/songs/60014011.mkv +施文彬-电甲金熠熠,http://em.21dtv.com/songs/60082845.mkv +吴国敬-大家静一静,http://em.21dtv.com/songs/60092450.mkv +孙耀威-大家静一静(演唱会),http://em.21dtv.com/songs/60014009.mkv +李国祥-杜鹃花日子,http://em.21dtv.com/songs/60015865.mkv +梁向明-东江红都颂,http://em.21dtv.com/songs/60107835.mkv +唐韦琪+张美妮+刘家聪-大家跟住唱(演唱会),http://em.21dtv.com/songs/60014000.mkv +张翘+丁嘉林+丁楠霓+江怡萱-大家过新年,http://em.21dtv.com/songs/60075063.mkv +吴依琳-大家过新年,http://em.21dtv.com/songs/60075062.mkv +郭富城-大家都知道(演唱会),http://em.21dtv.com/songs/60013999.mkv +佚名-大家都有病,http://em.21dtv.com/songs/60013998.mkv +凤凰传奇-待嫁的新娘,http://em.21dtv.com/songs/60103099.mkv +周传雄-冻结的情绪,http://em.21dtv.com/songs/60090824.mkv +赵小南-待嫁的女人,http://em.21dtv.com/songs/60103588.mkv +张祖诚-打结的毛衣,http://em.21dtv.com/songs/60102237.mkv +邓海-大吉大利了,http://em.21dtv.com/songs/60108034.mkv +卢军-第几次温柔,http://em.21dtv.com/songs/60105673.mkv +阿杜-第九次初恋,http://em.21dtv.com/songs/60075182.mkv +龙奔-东京不太热,http://em.21dtv.com/songs/60127634.mkv +洛天依-东京不太热,http://em.21dtv.com/songs/60113809.mkv +沈文程-大家不计较,http://em.21dtv.com/songs/60095754.mkv +群星-大家不计较(无原唱),http://em.21dtv.com/songs/60013995.mkv +王太利-大家爱起来,http://em.21dtv.com/songs/60082779.mkv +FRANKMUSIK-do it in the am,http://em.21dtv.com/songs/60062030.mkv +玛啡因-DISSO,http://em.21dtv.com/songs/60110417.mkv +佚名-drop it like its hot,http://em.21dtv.com/songs/60001445.mkv +JESSIE J-do it like a dude,http://em.21dtv.com/songs/60001259.mkv +GREG BATES-did it for the girl,http://em.21dtv.com/songs/60073117.mkv +恭硕良-do it all over again,http://em.21dtv.com/songs/60073126.mkv +黄玠-DIANA,http://em.21dtv.com/songs/60104824.mkv +邝美云-等候一个你,http://em.21dtv.com/songs/60014945.mkv +玉荣-东海小王子,http://em.21dtv.com/songs/60015535.mkv +张新海-电话相思情,http://em.21dtv.com/songs/60081753.mkv +洪荣宏+秀兰玛雅-豆花推倒摊,http://em.21dtv.com/songs/60015757.mkv +徐小明-大号是中华,http://em.21dtv.com/songs/60063210.mkv +叶振棠-大号是中华,http://em.21dtv.com/songs/60013966.mkv +段千寻-淡黄色卷发,http://em.21dtv.com/songs/60014451.mkv +杨乃文-懂还是不懂,http://em.21dtv.com/songs/60015634.mkv +阿雅-当哈利遇上HONEY,http://em.21dtv.com/songs/60090282.mkv +朱妍-灯火阑珊处,http://em.21dtv.com/songs/60125670.mkv +苏永康-灯火栏栅处,http://em.21dtv.com/songs/60093085.mkv +佚名-灯火阑珊处,http://em.21dtv.com/songs/60014825.mkv +苏永康-灯火阑珊处,http://em.21dtv.com/songs/60014824.mkv +苏永康-灯火阑珊处(演唱会),http://em.21dtv.com/songs/60014823.mkv +晓枫-电话里的歌,http://em.21dtv.com/songs/60015342.mkv +玖月奇迹-大好河山演(演唱会),http://em.21dtv.com/songs/60085015.mkv +齐浚羽-大海的颜色,http://em.21dtv.com/songs/60121193.mkv +张博-东3环的夜,http://em.21dtv.com/songs/60015487.mkv +群星-大河的星光,http://em.21dtv.com/songs/60013968.mkv +豪图-雕花的马鞍,http://em.21dtv.com/songs/60099501.mkv +降央卓玛-雕花的马鞍(演唱会),http://em.21dtv.com/songs/60071885.mkv +马丹-雕花的马鞍,http://em.21dtv.com/songs/60015370.mkv +德德玛-雕花的马鞍,http://em.21dtv.com/songs/60015369.mkv +吴大维-电话答录机(无原唱),http://em.21dtv.com/songs/60015341.mkv +范琳琳-大海的传说,http://em.21dtv.com/songs/60013958.mkv +凤琴-大海的彼爿,http://em.21dtv.com/songs/60130108.mkv +施文彬-豆花车倒摊,http://em.21dtv.com/songs/60015756.mkv +王又萱-东海岸之恋,http://em.21dtv.com/songs/60131639.mkv +彭于晏-大海爱蓝天,http://em.21dtv.com/songs/60013956.mkv +张金利-大海啊故乡,http://em.21dtv.com/songs/60130337.mkv +程晨-大海啊故乡,http://em.21dtv.com/songs/60118823.mkv +郑绪岚-大海啊故乡,http://em.21dtv.com/songs/60090260.mkv +景仪-大海啊故乡,http://em.21dtv.com/songs/60087946.mkv +刘孟哲-大海啊故乡(演唱会),http://em.21dtv.com/songs/60086512.mkv +佚名-大海啊故乡,http://em.21dtv.com/songs/60013954.mkv +谭晶-大海啊故乡,http://em.21dtv.com/songs/60013953.mkv +董文华-大海啊故乡,http://em.21dtv.com/songs/60013952.mkv +李思琳-大海啊故乡(演唱会),http://em.21dtv.com/songs/60013951.mkv +大冢爱-大好きだよ,http://em.21dtv.com/songs/60013965.mkv +MP4-打工仔心声,http://em.21dtv.com/songs/60013771.mkv +高少华-等哥有钱了,http://em.21dtv.com/songs/60121159.mkv +智涛-等哥有了钱,http://em.21dtv.com/songs/60111943.mkv +智涛-等哥有了钱,http://em.21dtv.com/songs/60075153.mkv +智涛-等哥有了钱(舞曲版),http://em.21dtv.com/songs/60068216.mkv +许哲佩-德国下雪了,http://em.21dtv.com/songs/60014810.mkv +金玲-东港相思曲(无原唱),http://em.21dtv.com/songs/60015534.mkv +阿吉仔-东港未了情,http://em.21dtv.com/songs/60015533.mkv +朱俐静-都给我快乐,http://em.21dtv.com/songs/60106918.mkv +萧亚轩-点给我的歌,http://em.21dtv.com/songs/60091989.mkv +波拉-都怪我不对,http://em.21dtv.com/songs/60115265.mkv +波拉-都怪我不对,http://em.21dtv.com/songs/60015686.mkv +DAVID SOUL-dont give up on us,http://em.21dtv.com/songs/60001326.mkv +郑锦昌+刘君儿-度过太平年(戏曲),http://em.21dtv.com/songs/60093331.mkv +安香-大概是天意,http://em.21dtv.com/songs/60075053.mkv +于江-打工十二月,http://em.21dtv.com/songs/60089113.mkv +周阿惠-打工十二月,http://em.21dtv.com/songs/60071850.mkv +朝阳-打工十二月,http://em.21dtv.com/songs/60013769.mkv +甘萍-大哥你好吗,http://em.21dtv.com/songs/60013936.mkv +王如华-打工梦也圆,http://em.21dtv.com/songs/60122996.mkv +SWEETY-德古拉伯爵,http://em.21dtv.com/songs/60014809.mkv +阿权-打工好男人,http://em.21dtv.com/songs/60127531.mkv +浩林-打工的妹妹,http://em.21dtv.com/songs/60117009.mkv +唐涛-打工的妹妹,http://em.21dtv.com/songs/60100796.mkv +宋雪莱-打工的妹妹(演唱会),http://em.21dtv.com/songs/60013766.mkv +ELTON JOHN+KIKI DEE-dont go breaking my heart,http://em.21dtv.com/songs/60001329.mkv +刘斌-当过兵的人,http://em.21dtv.com/songs/60014530.mkv +郑俊弘-当狗爱上猫,http://em.21dtv.com/songs/60116288.mkv +罗嘉良+胡杏儿-当狗爱上猫,http://em.21dtv.com/songs/60014527.mkv +张嘉旭-当瓜爱上豆,http://em.21dtv.com/songs/60069336.mkv +李贵府-东方中国龙(演唱会),http://em.21dtv.com/songs/60061156.mkv +CARRIE UNDERWOOD-dont forget to remember me,http://em.21dtv.com/songs/60001324.mkv +苏亚-大佛寺悠远,http://em.21dtv.com/songs/60075050.mkv +梁咏琪-帝凡尼早餐,http://em.21dtv.com/songs/60015145.mkv +王爱华-东方第一县,http://em.21dtv.com/songs/60129406.mkv +舒克-单飞的舒克,http://em.21dtv.com/songs/60124390.mkv +訾娟-东方地平线,http://em.21dtv.com/songs/60015504.mkv +黄伟霖-东方的男儿,http://em.21dtv.com/songs/60122299.mkv +戴玉强-东方的魅力,http://em.21dtv.com/songs/60091240.mkv +沈志仲-单飞的蝴蝶,http://em.21dtv.com/songs/60082798.mkv +易展-带佛的姑娘,http://em.21dtv.com/songs/60098410.mkv +刘江+张茜-单飞的风筝,http://em.21dtv.com/songs/60087410.mkv +吕雅芬-东方不夜城,http://em.21dtv.com/songs/60110069.mkv +江美琪-第二眼美女,http://em.21dtv.com/songs/60015181.mkv +圣女天团-dont ever leave me love,http://em.21dtv.com/songs/60001320.mkv +江蕙-第二个春天(无原唱),http://em.21dtv.com/songs/60015175.mkv +佚名-第二的故乡,http://em.21dtv.com/songs/60015174.mkv +杨鸣-第二的故乡,http://em.21dtv.com/songs/60015173.mkv +卓依婷-第二道彩虹,http://em.21dtv.com/songs/60089185.mkv +孟庭苇-第二道彩虹,http://em.21dtv.com/songs/60015172.mkv +正云-第二次相遇,http://em.21dtv.com/songs/60122929.mkv +程诗迦-第二次人生,http://em.21dtv.com/songs/60124324.mkv +Sara-第二次人生,http://em.21dtv.com/songs/60106554.mkv +梁佑嘉-第二次恋人,http://em.21dtv.com/songs/60061151.mkv +许亮宇-第二次机会,http://em.21dtv.com/songs/60124466.mkv +童立安-第二次分手,http://em.21dtv.com/songs/60113929.mkv +郑秀文-第二次分手,http://em.21dtv.com/songs/60015171.mkv +动力火车-第二次分手,http://em.21dtv.com/songs/60015170.mkv +邓宁-第二次分手,http://em.21dtv.com/songs/60015169.mkv +林欣彤-第二次初恋,http://em.21dtv.com/songs/60070636.mkv +洪百慧-点滴在心头,http://em.21dtv.com/songs/60135502.mkv +伍咏薇+巫启贤-等的只是你,http://em.21dtv.com/songs/60014938.mkv +黄西田-歹歹仔时机(无原唱),http://em.21dtv.com/songs/60014243.mkv +影视歌曲-大地早上好,http://em.21dtv.com/songs/60087869.mkv +杨宗宪-等待有情天(无原唱),http://em.21dtv.com/songs/60045969.mkv +黄思婷-等待有情天,http://em.21dtv.com/songs/60014923.mkv +岚馨乐团-等待与期待,http://em.21dtv.com/songs/60064124.mkv +孙燕姿-当冬夜渐暖,http://em.21dtv.com/songs/60014525.mkv +八大巨星-大地又回春,http://em.21dtv.com/songs/60087350.mkv +李嘉-等待一个人,http://em.21dtv.com/songs/60095610.mkv +辛晓琪-当大雨过后,http://em.21dtv.com/songs/60014524.mkv +佚名-等到月儿圆,http://em.21dtv.com/songs/60014935.mkv +S.H.E-到底有多远,http://em.21dtv.com/songs/60090419.mkv +张惠妹-都对也都错,http://em.21dtv.com/songs/60102218.mkv +八大巨星-大地迎春晖,http://em.21dtv.com/songs/60090658.mkv +徐嘉良-到底要按怎,http://em.21dtv.com/songs/60014752.mkv +吴庆国-当代小青年,http://em.21dtv.com/songs/60119349.mkv +王识贤+秀兰玛雅-等待相逢时,http://em.21dtv.com/songs/60014921.mkv +左小祖咒-等待我的船,http://em.21dtv.com/songs/60135166.mkv +江惠仪-得到我的爱,http://em.21dtv.com/songs/60116091.mkv +陈雷-到担我才知,http://em.21dtv.com/songs/60014732.mkv +黄乙玲-到底为按怎,http://em.21dtv.com/songs/60047970.mkv +双HI C组合-等到天已老(演唱会),http://em.21dtv.com/songs/60014932.mkv +庞龙-等到桃花开,http://em.21dtv.com/songs/60075152.mkv +阿任-到底谁玩谁,http://em.21dtv.com/songs/60097596.mkv +江蕙-到底谁是伊,http://em.21dtv.com/songs/60014748.mkv +蓝琪儿-等到山花开,http://em.21dtv.com/songs/60122090.mkv +张振宇-到底输给谁,http://em.21dtv.com/songs/60014747.mkv +[Group] +groupName=十六万歌曲MV等 - 67 +姚可杰-对得起自己,http://em.21dtv.com/songs/60113384.mkv +黎明-对得起自己,http://em.21dtv.com/songs/60016004.mkv +王相周-打的去内蒙,http://em.21dtv.com/songs/60066938.mkv +小刘欢-等到那一天,http://em.21dtv.com/songs/60126797.mkv +梁腾丰-等待那一天,http://em.21dtv.com/songs/60082823.mkv +苏有朋-等到那一天,http://em.21dtv.com/songs/60014929.mkv +斯琴格日乐+臧天朔-等待那一天,http://em.21dtv.com/songs/60014910.mkv +龙千玉+傅振辉-等待你一生,http://em.21dtv.com/songs/60014916.mkv +黄思婷+李明洋-等待你一人,http://em.21dtv.com/songs/60065933.mkv +林良欢-等愛的女人,http://em.21dtv.com/songs/60130485.mkv +马志锋-等到你回来,http://em.21dtv.com/songs/60064125.mkv +无鸣-等待你回航,http://em.21dtv.com/songs/60014915.mkv +谢金晶-等待你返来,http://em.21dtv.com/songs/60117238.mkv +高林生-等待你的心(演唱会),http://em.21dtv.com/songs/60014914.mkv +小野丽莎-等待你出现,http://em.21dtv.com/songs/60123857.mkv +王识贤-惦惦离开你(无原唱),http://em.21dtv.com/songs/60015361.mkv +广播之友合唱团-大刀进行曲,http://em.21dtv.com/songs/60013879.mkv +张宇-登到旧爱人,http://em.21dtv.com/songs/60064604.mkv +宏图-丹顶鹤之恋,http://em.21dtv.com/songs/60123845.mkv +孟文豪-大刀回响曲,http://em.21dtv.com/songs/60114486.mkv +孙子涵-对待坏女孩,http://em.21dtv.com/songs/60068231.mkv +江涛-等到花没开,http://em.21dtv.com/songs/60091582.mkv +薛凯琪-等待的艺术,http://em.21dtv.com/songs/60097682.mkv +钟亚华-大大的拥抱,http://em.21dtv.com/songs/60108076.mkv +ALIN-大大的拥抱,http://em.21dtv.com/songs/60064094.mkv +孙淑媚-等待的心情,http://em.21dtv.com/songs/60014903.mkv +星君-丢掉的幸福,http://em.21dtv.com/songs/60064140.mkv +张雨生-大地的天使,http://em.21dtv.com/songs/60013895.mkv +苏永康-淡淡的甜蜜,http://em.21dtv.com/songs/60091943.mkv +蒋志光+黄宝欣-得到多少暖,http://em.21dtv.com/songs/60014794.mkv +刘育绫-等待的情人,http://em.21dtv.com/songs/60014901.mkv +林志颖-等待的男孩,http://em.21dtv.com/songs/60014900.mkv +林志颖-等待的男孩(演唱会),http://em.21dtv.com/songs/60014899.mkv +大庆小芳-大大的梦想,http://em.21dtv.com/songs/60127881.mkv +悊刚-带毒的玫瑰,http://em.21dtv.com/songs/60113528.mkv +高佳依-滴答的落寞,http://em.21dtv.com/songs/60114270.mkv +梁川宇-等待的季节,http://em.21dtv.com/songs/60116071.mkv +罗大佑-大地的孩子,http://em.21dtv.com/songs/60013893.mkv +佚名-大地的孩子(中三),http://em.21dtv.com/songs/60013892.mkv +董文华-大地的呼唤,http://em.21dtv.com/songs/60013894.mkv +陈亮吟-等待的方向,http://em.21dtv.com/songs/60014898.mkv +怕胖团-嘟嘟嘟嘟嘟,http://em.21dtv.com/songs/60085630.mkv +张媛媛-大大的草原,http://em.21dtv.com/songs/60098341.mkv +常艾非-等待的沉默,http://em.21dtv.com/songs/60075149.mkv +甲子慧-短短的爱情,http://em.21dtv.com/songs/60100931.mkv +李丽霞+刘雅丽-得(不)到的爱情,http://em.21dtv.com/songs/60092776.mkv +童唱-弟弟不听话,http://em.21dtv.com/songs/60015140.mkv +梁咏琪-懂得爱自己,http://em.21dtv.com/songs/60015632.mkv +戴佩妮-到处走一走,http://em.21dtv.com/songs/60075130.mkv +王建杰-打出一片天,http://em.21dtv.com/songs/60099402.mkv +张信哲-单车与跑车,http://em.21dtv.com/songs/60111854.mkv +张信哲+M.C.HOT DOG-单车与跑车,http://em.21dtv.com/songs/60014325.mkv +陈淑庄+MASTAMIC-戴错嘢夫人,http://em.21dtv.com/songs/60082793.mkv +枫舞+何文秀-断肠相思泪,http://em.21dtv.com/songs/60125797.mkv +枫舞-断肠相思泪,http://em.21dtv.com/songs/60115240.mkv +许志安-低处未算低,http://em.21dtv.com/songs/60093152.mkv +刘玮-多彩万绿湖,http://em.21dtv.com/songs/60016109.mkv +中国娃娃-赌臭我的爱,http://em.21dtv.com/songs/60015852.mkv +童唱-到处腾欢笑,http://em.21dtv.com/songs/60014730.mkv +任贤齐-到处是阳光,http://em.21dtv.com/songs/60014729.mkv +吴炜-当初那么傻,http://em.21dtv.com/songs/60014519.mkv +PHANTOM-打穿你的脸,http://em.21dtv.com/songs/60064090.mkv +华娃-当初见到你,http://em.21dtv.com/songs/60087444.mkv +吴莺音-当初见到你(演唱会),http://em.21dtv.com/songs/60014518.mkv +范逸臣-断翅蝴碟飞,http://em.21dtv.com/songs/60089461.mkv +范逸臣-断翅蝴蝶飞,http://em.21dtv.com/songs/60015917.mkv +张靓颖-dont cry for me argenting,http://em.21dtv.com/songs/60001312.mkv +佚名-dont cry for me argentina,http://em.21dtv.com/songs/60001311.mkv +陈慧娴-dont cry for me argentina,http://em.21dtv.com/songs/60001310.mkv +MADONNA-dont cry for me argentian,http://em.21dtv.com/songs/60001309.mkv +周启生-躲藏的眼睛,http://em.21dtv.com/songs/60016251.mkv +张磊-断翅的小鸟,http://em.21dtv.com/songs/60093896.mkv +小乔-单纯的想法,http://em.21dtv.com/songs/60103221.mkv +刘思伟-断翅的天使,http://em.21dtv.com/songs/60069366.mkv +何以奇+窦智孔-单翅的天使,http://em.21dtv.com/songs/60014330.mkv +陈思安+七郎-当初的誓言,http://em.21dtv.com/songs/60082802.mkv +宋孟君-多彩的生活,http://em.21dtv.com/songs/60094466.mkv +苏打绿-独处的时候,http://em.21dtv.com/songs/60079985.mkv +叶雨欣-当初的时光,http://em.21dtv.com/songs/60126679.mkv +萧敬腾-到处都是爱,http://em.21dtv.com/songs/60107972.mkv +苏路-带刺的玫瑰,http://em.21dtv.com/songs/60082794.mkv +张凌枫-带刺的玫瑰,http://em.21dtv.com/songs/60069327.mkv +NOVA-带刺的玫瑰(演唱会),http://em.21dtv.com/songs/60014264.mkv +佚名-单纯的脸孔,http://em.21dtv.com/songs/60014334.mkv +罗蔼轩-当初的花开,http://em.21dtv.com/songs/60061140.mkv +丁薇-断翅的蝴蝶,http://em.21dtv.com/songs/60089102.mkv +央金-多彩的哈达(演唱会),http://em.21dtv.com/songs/60069371.mkv +谭维维-多彩的哈达,http://em.21dtv.com/songs/60016107.mkv +谭维维-多彩的哈达(演唱会),http://em.21dtv.com/songs/60016106.mkv +信乐团-带刺的蝴蝶(演唱会),http://em.21dtv.com/songs/60014263.mkv +澈波卓玛-多彩的服饰,http://em.21dtv.com/songs/60088256.mkv +吉日格勒-多彩的草原,http://em.21dtv.com/songs/60090799.mkv +符丽莉-多彩的春天,http://em.21dtv.com/songs/60085067.mkv +李太行-当初的承诺,http://em.21dtv.com/songs/60061139.mkv +佚名-带刺的蓓蕾(无原唱),http://em.21dtv.com/songs/60014262.mkv +王洋+苏菲娅琦琦-冻成鼻子了,http://em.21dtv.com/songs/60131664.mkv +余波-堵车别堵心,http://em.21dtv.com/songs/60015848.mkv +阎维文-当兵走天涯,http://em.21dtv.com/songs/60014517.mkv +王冰洋-东北亚童话,http://em.21dtv.com/songs/60015497.mkv +阿翁-东北一家人,http://em.21dtv.com/songs/60015498.mkv +杨善波-当兵有多苦,http://em.21dtv.com/songs/60014516.mkv +刘和刚-代表新时代,http://em.21dtv.com/songs/60014252.mkv +枫舞-丢不下的缘,http://em.21dtv.com/songs/60129302.mkv +周强-当兵图个啥,http://em.21dtv.com/songs/60014515.mkv +辰杰-都不算什么,http://em.21dtv.com/songs/60075223.mkv +陈奕迅-对不起谢谢,http://em.21dtv.com/songs/60016001.mkv +陈淑桦-对不起妈妈,http://em.21dtv.com/songs/60088899.mkv +林忆莲+伦永亮-对不起了爱,http://em.21dtv.com/songs/60092869.mkv +成成-等不起的人,http://em.21dtv.com/songs/60122771.mkv +陈雅森-等不起的爱,http://em.21dtv.com/songs/60131964.mkv +小宋佳-大不了是散,http://em.21dtv.com/songs/60087711.mkv +夏后-等不来的你,http://em.21dtv.com/songs/60103176.mkv +梁雁翎-打不开的锁(演唱会),http://em.21dtv.com/songs/60013750.mkv +潘裕文-等不及去爱,http://em.21dtv.com/songs/60075145.mkv +游鸿明-敌不过想念,http://em.21dtv.com/songs/60111245.mkv +王宏天-大悲观世音,http://em.21dtv.com/songs/60108703.mkv +郁钧剑-当兵干什么,http://em.21dtv.com/songs/60014512.mkv +刘和刚-东北二人转,http://em.21dtv.com/songs/60113291.mkv +王小利-东北二人转,http://em.21dtv.com/songs/60110398.mkv +杜磊-当兵的滋味,http://em.21dtv.com/songs/60064112.mkv +郁钧剑-当兵的忠诚,http://em.21dtv.com/songs/60014511.mkv +朱明-东北的爷们,http://em.21dtv.com/songs/60122824.mkv +金波-当兵的兄弟,http://em.21dtv.com/songs/60014510.mkv +阎维文-当兵的天地,http://em.21dtv.com/songs/60014509.mkv +叶德娴-等不到是你(演唱会),http://em.21dtv.com/songs/60014870.mkv +乔紫乔-动不动说爱,http://em.21dtv.com/songs/60128748.mkv +蔡旻佑-打不倒男孩,http://em.21dtv.com/songs/60104414.mkv +朱英-得不到名份,http://em.21dtv.com/songs/60069341.mkv +谭晶-当兵的历史(演唱会),http://em.21dtv.com/songs/60014503.mkv +秦天+高歌-当兵的哥们,http://em.21dtv.com/songs/60014502.mkv +陈慧琳-等不到的人,http://em.21dtv.com/songs/60014868.mkv +郁钧剑-当兵的地方,http://em.21dtv.com/songs/60014501.mkv +王建杰-得不到的爱,http://em.21dtv.com/songs/60107069.mkv +好妹妹乐队-达不到的爱,http://em.21dtv.com/songs/60099918.mkv +易帆-等不到的爱,http://em.21dtv.com/songs/60097680.mkv +王爱华-等不到的爱,http://em.21dtv.com/songs/60080732.mkv +文章-等不到的爱,http://em.21dtv.com/songs/60063072.mkv +樊凡-等不到的爱(演唱会),http://em.21dtv.com/songs/60062342.mkv +樊易-等不到的爱,http://em.21dtv.com/songs/60061147.mkv +梁咏琪-得不到的爱,http://em.21dtv.com/songs/60014788.mkv +孙维良-达坂城夜曲(演唱会),http://em.21dtv.com/songs/60068200.mkv +孙维良-达板城夜曲(演唱会),http://em.21dtv.com/songs/60066937.mkv +优客李林-多帮别人想,http://em.21dtv.com/songs/60016104.mkv +刘若英-当爱在靠近,http://em.21dtv.com/songs/60014500.mkv +姚林辉-党啊祝福你,http://em.21dtv.com/songs/60075124.mkv +海威-当爱已走远,http://em.21dtv.com/songs/60120724.mkv +崔天歌-独爱一枝花,http://em.21dtv.com/songs/60110168.mkv +丁春秀+张杉弟-当爱有倦意,http://em.21dtv.com/songs/60082801.mkv +张学友-多爱一分钟,http://em.21dtv.com/songs/60016101.mkv +杨罡-当爱已不在,http://em.21dtv.com/songs/60080804.mkv +K.Will-Day 1,http://em.21dtv.com/songs/60101780.mkv +ENERGY-多爱我一天,http://em.21dtv.com/songs/60016099.mkv +LADY ANTEBELLUM-dancinaway with my heart,http://em.21dtv.com/songs/60066631.mkv +黎明-当爱受折磨,http://em.21dtv.com/songs/60093562.mkv +易欣-对爱死了心,http://em.21dtv.com/songs/60015966.mkv +伯阳-等爱说出来,http://em.21dtv.com/songs/60014863.mkv +栗锦+李玉娜-到爱情为止,http://em.21dtv.com/songs/60125802.mkv +于台烟-对爱情让步,http://em.21dtv.com/songs/60015965.mkv +王心凌-当爱情来了,http://em.21dtv.com/songs/60014492.mkv +丽菲-带爱去飞翔,http://em.21dtv.com/songs/60103056.mkv +吕方-多爱你一天,http://em.21dtv.com/songs/60127814.mkv +吕方-多爱你一天,http://em.21dtv.com/songs/60016097.mkv +刘丹萌-多爱你一点,http://em.21dtv.com/songs/60101947.mkv +LADY ANTEBELLUM-Dancing Away With My Heart,http://em.21dtv.com/songs/60099671.mkv +周晏伊-DANCE,http://em.21dtv.com/songs/60117619.mkv +葛亮-Dance,http://em.21dtv.com/songs/60104401.mkv +王喆-大爱蓝天下,http://em.21dtv.com/songs/60131649.mkv +张碧晨-当爱来敲门,http://em.21dtv.com/songs/60130329.mkv +龙梅子-当爱离别时(HD),http://em.21dtv.com/songs/10012844.mkv +刘德华-答案就是你,http://em.21dtv.com/songs/60013727.mkv +苏勒亚其其格-等爱的新娘,http://em.21dtv.com/songs/60085034.mkv +安琪-等爱的女人,http://em.21dtv.com/songs/60064122.mkv +叶倩文-等爱的女人,http://em.21dtv.com/songs/60014855.mkv +李志洲-等爱的女人,http://em.21dtv.com/songs/60014854.mkv +江蕙-等爱的女人,http://em.21dtv.com/songs/60014853.mkv +大哲-等爱的男人,http://em.21dtv.com/songs/60014852.mkv +凤凰传奇-等爱的玫瑰,http://em.21dtv.com/songs/60014851.mkv +凤凰传奇-等爱的玫瑰(演唱会),http://em.21dtv.com/songs/60014850.mkv +甜美真-等爱的孩子,http://em.21dtv.com/songs/60098664.mkv +天王星-对岸的婚礼,http://em.21dtv.com/songs/60125353.mkv +杨浩龙-等爱的狐狸,http://em.21dtv.com/songs/60101120.mkv +乌兰托娅-等爱的姑娘,http://em.21dtv.com/songs/60121342.mkv +郭丽霞-等爱的凤凰,http://em.21dtv.com/songs/60108063.mkv +PSY-DADDY,http://em.21dtv.com/songs/60119172.mkv +PSY+CL-DADDY,http://em.21dtv.com/songs/60116470.mkv +李玟-当爱成碎片,http://em.21dtv.com/songs/60014486.mkv +刘嘉玲+黎沸挥-对爱不放心,http://em.21dtv.com/songs/60015962.mkv +谢宇书-当爱不存在,http://em.21dtv.com/songs/60014483.mkv +THE 4 SEASONS-december 1963 (oh what a night),http://em.21dtv.com/songs/60001197.mkv +新宝岛康乐队-船长要抓狂(演唱会),http://em.21dtv.com/songs/60013164.mkv +杜莉萨+林子祥-常在我心中,http://em.21dtv.com/songs/60092823.mkv +佚名-常在我心间,http://em.21dtv.com/songs/60012285.mkv +朱咪咪-常在我心间(演唱会),http://em.21dtv.com/songs/60012284.mkv +朱咪咪+张伟文-常在我心间(演唱会),http://em.21dtv.com/songs/60012283.mkv +伍浩哲-唱着我的歌,http://em.21dtv.com/songs/60096182.mkv +何韵诗-出走太平洋,http://em.21dtv.com/songs/60012986.mkv +何韵诗-出走太平洋(演唱会),http://em.21dtv.com/songs/60012985.mkv +马坡-从昨天到今天,http://em.21dtv.com/songs/60065912.mkv +RUBBERBAND-成长说明书,http://em.21dtv.com/songs/60097533.mkv +苏盈之-超自然现象,http://em.21dtv.com/songs/60118005.mkv +李克勤-常在你左右,http://em.21dtv.com/songs/60012282.mkv +果味VC-超智能足球,http://em.21dtv.com/songs/60012419.mkv +蓝心湄-踩着你的脸,http://em.21dtv.com/songs/60011978.mkv +倪彬-从这里走来,http://em.21dtv.com/songs/60099757.mkv +庄上荣+李念-茨竹欢迎你,http://em.21dtv.com/songs/60104099.mkv +钟洁+苗苗-迟早会分开,http://em.21dtv.com/songs/60128487.mkv +陈小涛-茶籽儿花开,http://em.21dtv.com/songs/60012220.mkv +DJ舞曲-车载低音炮,http://em.21dtv.com/songs/50000188.mkv +爱乐公社-成长的幸福,http://em.21dtv.com/songs/60088264.mkv +佚名-成长的岁月,http://em.21dtv.com/songs/60012582.mkv +龙飘飘-成长的岁月,http://em.21dtv.com/songs/60012581.mkv +梁咏琪-出走地平线,http://em.21dtv.com/songs/60012984.mkv +梁咏琪-出走地平线(演唱会),http://em.21dtv.com/songs/60012983.mkv +林佑威-存在的目的,http://em.21dtv.com/songs/60013623.mkv +朱俐静-存在的力量,http://em.21dtv.com/songs/60071847.mkv +动力火车-沉重的记忆,http://em.21dtv.com/songs/60090750.mkv +乔幼-沉重的脚步,http://em.21dtv.com/songs/60130049.mkv +动力火车-沉重的回忆,http://em.21dtv.com/songs/60090749.mkv +梁咏琪-成长的短发,http://em.21dtv.com/songs/60012579.mkv +刘文娟-车站8:08,http://em.21dtv.com/songs/60012471.mkv +王冠然-创业者之歌,http://em.21dtv.com/songs/60132709.mkv +格格-草原在哪里,http://em.21dtv.com/songs/60012119.mkv +德德玛-草原在哪里,http://em.21dtv.com/songs/60012118.mkv +柳影虹-畅饮在今宵(演唱会),http://em.21dtv.com/songs/60062691.mkv +陈浩德-畅饮在今宵(演唱会),http://em.21dtv.com/songs/60012300.mkv +乐桐-草原中国梦,http://em.21dtv.com/songs/60109125.mkv +德龙+陶格苏-草原在等你,http://em.21dtv.com/songs/60110226.mkv +乌兰图雅-草原一枝花,http://em.21dtv.com/songs/60086152.mkv +廖昌永-草原夜色美,http://em.21dtv.com/songs/60112657.mkv +廖昌永-草原夜色美,http://em.21dtv.com/songs/60108474.mkv +龚月-草原夜色美,http://em.21dtv.com/songs/60074866.mkv +降央卓玛-草原夜色美,http://em.21dtv.com/songs/60068161.mkv +德德玛-草愿夜色美(演唱会),http://em.21dtv.com/songs/60012133.mkv +莫德格-草原夜色美,http://em.21dtv.com/songs/60012113.mkv +德德玛-草原夜色美(演唱会),http://em.21dtv.com/songs/60012112.mkv +汤媛媛-草原呀啦嗦,http://em.21dtv.com/songs/60064042.mkv +ENERGY-穿越一光年,http://em.21dtv.com/songs/60013117.mkv +降央卓玛-草原迎宾曲,http://em.21dtv.com/songs/60068162.mkv +卓依婷-草原迎宾曲(无原唱),http://em.21dtv.com/songs/60012116.mkv +乌兰托娅-草原迎宾歌,http://em.21dtv.com/songs/60012115.mkv +相随-草原相思夜,http://em.21dtv.com/songs/60101148.mkv +奥云格日乐-草原想念你,http://em.21dtv.com/songs/60110120.mkv +常慕歆-草原小姑娘,http://em.21dtv.com/songs/60132417.mkv +贾富营-草原香姑娘,http://em.21dtv.com/songs/60128420.mkv +红陌-草原香姑娘,http://em.21dtv.com/songs/60128299.mkv +德德玛-草原无名河,http://em.21dtv.com/songs/60012109.mkv +林一峰+SILVER-从一吻开始,http://em.21dtv.com/songs/60082762.mkv +李静-草原我的梦,http://em.21dtv.com/songs/60012107.mkv +多哇才吉-草原我的家,http://em.21dtv.com/songs/60068160.mkv +郭宏杰-草原天堂美,http://em.21dtv.com/songs/60100978.mkv +萨日纳-草原随想曲,http://em.21dtv.com/songs/60128360.mkv +儿歌-采一束鲜花,http://em.21dtv.com/songs/60090649.mkv +佚名-can you stop the rain,http://em.21dtv.com/songs/60000800.mkv +宋伶俐-草原是首歌,http://em.21dtv.com/songs/60071819.mkv +黄亮华-唱一首情歌,http://em.21dtv.com/songs/60106489.mkv +陈洪-草原四季美,http://em.21dtv.com/songs/60102898.mkv +谭咏麟-唱一首好歌(演唱会),http://em.21dtv.com/songs/60012356.mkv +追风骏马组合-草原是故乡,http://em.21dtv.com/songs/60117265.mkv +顾莉雅-从一数到十(演唱会),http://em.21dtv.com/songs/60013592.mkv +佚名-草原上的家,http://em.21dtv.com/songs/60012090.mkv +德德玛-草原上的风,http://em.21dtv.com/songs/60087894.mkv +贾孟昕-草原上的爱,http://em.21dtv.com/songs/60127431.mkv +佚名-can you read my mind,http://em.21dtv.com/songs/60000799.mkv +何乌兰-草原秋色美,http://em.21dtv.com/songs/60104779.mkv +蒙克-草原请你来,http://em.21dtv.com/songs/60112942.mkv +蒙克-草原请你来(演唱会),http://em.21dtv.com/songs/60061092.mkv +蒙克-草原请你来,http://em.21dtv.com/songs/60012088.mkv +格格-草原情哥哥,http://em.21dtv.com/songs/60133890.mkv +乌兰图雅-草原情哥哥,http://em.21dtv.com/songs/60065887.mkv +冀贞贞-草原情歌飞,http://em.21dtv.com/songs/60105615.mkv +刘航-财源来来来,http://em.21dtv.com/songs/60119315.mkv +费玉清-春雨恋春风,http://em.21dtv.com/songs/60104444.mkv +齐峰-草原敬酒歌,http://em.21dtv.com/songs/60068156.mkv +泽旺多吉-草原花夜月,http://em.21dtv.com/songs/60127164.mkv +戊道子-草原欢迎你,http://em.21dtv.com/songs/60103310.mkv +李志洲-畅游黄河口,http://em.21dtv.com/songs/60074893.mkv +音乐走廊-草原好姑娘,http://em.21dtv.com/songs/60109739.mkv +鸿雁组合-草原姑娘美,http://em.21dtv.com/songs/60100668.mkv +东方传奇-财源滚滚来,http://em.21dtv.com/songs/60087240.mkv +方大同-can you feel the music(演唱会),http://em.21dtv.com/songs/60073031.mkv +老狼+孙萌-穿越风沙线,http://em.21dtv.com/songs/60091886.mkv +张冬玲-草原飞情歌,http://em.21dtv.com/songs/60113453.mkv +王力宏-can you feel my world,http://em.21dtv.com/songs/60000795.mkv +敖都-草原的祝福,http://em.21dtv.com/songs/60121720.mkv +群星-穿越大英雄,http://em.21dtv.com/songs/60124361.mkv +赵真-草原的月亮(HD),http://em.21dtv.com/songs/10012813.mkv +阿拉泰-草原的月亮,http://em.21dtv.com/songs/60106370.mkv +云飞-草原的月亮,http://em.21dtv.com/songs/60093965.mkv +赵真+昂格丽玛-草原的月亮,http://em.21dtv.com/songs/60066901.mkv +陈奕-诚意的拥抱,http://em.21dtv.com/songs/60012591.mkv +林思彤-初一的心愿,http://em.21dtv.com/songs/60110304.mkv +乌兰托娅-草原的味道,http://em.21dtv.com/songs/60130041.mkv +朱永飞-草原的味道,http://em.21dtv.com/songs/60116891.mkv +任玲-草原的味道,http://em.21dtv.com/songs/60074851.mkv +东方红艳+赵真-才艺德天下,http://em.21dtv.com/songs/60120282.mkv +周璇-初一到十五,http://em.21dtv.com/songs/60013040.mkv +张琍敏-初一到十五,http://em.21dtv.com/songs/60013039.mkv +刘韵-初一到十五,http://em.21dtv.com/songs/60013038.mkv +刘韵-初一到十五(演唱会),http://em.21dtv.com/songs/60013037.mkv +拉毛王旭-草原的思念,http://em.21dtv.com/songs/60065886.mkv +哈琪-草原的人们,http://em.21dtv.com/songs/60065885.mkv +铁文太-草原的秋天,http://em.21dtv.com/songs/60108103.mkv +黄睿铭-抽烟的女人,http://em.21dtv.com/songs/60130935.mkv +刚辉-抽烟的女人,http://em.21dtv.com/songs/60012887.mkv +春雷-草原多么美,http://em.21dtv.com/songs/60070567.mkv +刘德华-长夜多浪漫(演唱会),http://em.21dtv.com/songs/60057621.mkv +林宇中-苍蝇的泪滴,http://em.21dtv.com/songs/60012032.mkv +摩登咖啡-超越的列车,http://em.21dtv.com/songs/60068172.mkv +巴特-草原的孩子,http://em.21dtv.com/songs/60130286.mkv +哈琪-草原的孩子,http://em.21dtv.com/songs/60113350.mkv +哈桑+孙潇-草原的孩子,http://em.21dtv.com/songs/60071816.mkv +哈琪-草原的孩子,http://em.21dtv.com/songs/60065884.mkv +张火-草原的汉子,http://em.21dtv.com/songs/60063372.mkv +斯琴巴图-草原的歌谣,http://em.21dtv.com/songs/60113550.mkv +东方红艳-草原的歌谣,http://em.21dtv.com/songs/60113217.mkv +张火-草原的姑娘,http://em.21dtv.com/songs/60071815.mkv +哈琪-草原的姑娘,http://em.21dtv.com/songs/60065883.mkv +何乌兰-草原的冬季,http://em.21dtv.com/songs/60107489.mkv +唐冰冰-草原的传说,http://em.21dtv.com/songs/60099166.mkv +郑锦昌-诚意创未来,http://em.21dtv.com/songs/60012590.mkv +索南扎西-草原痴情郎,http://em.21dtv.com/songs/60132786.mkv +索南扎西-草原痴情郎,http://em.21dtv.com/songs/60119873.mkv +金志文+费玉清-唱一遍一遍,http://em.21dtv.com/songs/60134353.mkv +费玉清-唱一遍一遍,http://em.21dtv.com/songs/60012353.mkv +佚名-彩云伴海鸥,http://em.21dtv.com/songs/60011959.mkv +高胜美-彩云伴海鸥,http://em.21dtv.com/songs/60011958.mkv +高胜美-彩云伴海鸥(演唱会),http://em.21dtv.com/songs/60011957.mkv +佚名-草原阿里拉,http://em.21dtv.com/songs/60012070.mkv +谭晶-唱响正气歌,http://em.21dtv.com/songs/60012352.mkv +刘凯歌-唱响中国梦,http://em.21dtv.com/songs/60123670.mkv +关淑怡-痴心怎独醉(无原唱),http://em.21dtv.com/songs/60092324.mkv +黄乙玲-存心占便宜(无原唱),http://em.21dtv.com/songs/60013614.mkv +卡拉OK-痴心也是错,http://em.21dtv.com/songs/60089192.mkv +佚名-痴心眼内藏,http://em.21dtv.com/songs/60012772.mkv +杨千嬅-痴心眼内藏(演唱会),http://em.21dtv.com/songs/60012771.mkv +许志豪-痴心月娘情,http://em.21dtv.com/songs/60074951.mkv +许冠英-痴心愿记取,http://em.21dtv.com/songs/60012774.mkv +许冠杰-痴心愿记取,http://em.21dtv.com/songs/60012773.mkv +游鸿明-痴心沈落海,http://em.21dtv.com/songs/60075354.mkv +陈盈洁-痴心阮的爱,http://em.21dtv.com/songs/60003472.mkv +十三狼-从小卖蒸馍,http://em.21dtv.com/songs/60104844.mkv +萧泽伦-诚心来感怀,http://em.21dtv.com/songs/60070589.mkv +张心童-痴心换伤悲,http://em.21dtv.com/songs/60012764.mkv +周慧敏-痴心换情深,http://em.21dtv.com/songs/60012763.mkv +邓丽君-彩霞回来吧,http://em.21dtv.com/songs/60088742.mkv +上明+一绫-痴心换假情,http://em.21dtv.com/songs/60012762.mkv +童星-除夕合家欢,http://em.21dtv.com/songs/60088391.mkv +吴依琳-除夕合家欢,http://em.21dtv.com/songs/60074972.mkv +柳博+魏依曼-除夕合家欢,http://em.21dtv.com/songs/60013058.mkv +七郎-诚心悔不是,http://em.21dtv.com/songs/60012589.mkv +赵子皓-初雪的忧伤,http://em.21dtv.com/songs/60013035.mkv +钟镇涛-痴心的一句,http://em.21dtv.com/songs/60096139.mkv +佚名-痴心的一句(无原唱),http://em.21dtv.com/songs/60012759.mkv +程楚煜-慈祥的阳光,http://em.21dtv.com/songs/60100355.mkv +一晨-初醒的秋天,http://em.21dtv.com/songs/60112479.mkv +一晨-初醒的秋天,http://em.21dtv.com/songs/60097582.mkv +孙淑媚-痴心的情歌,http://em.21dtv.com/songs/60012756.mkv +降央卓玛-慈祥的母亲,http://em.21dtv.com/songs/60013440.mkv +刀妹-慈祥的母亲,http://em.21dtv.com/songs/60013439.mkv +亚东-慈祥的母亲(演唱会),http://em.21dtv.com/songs/60013438.mkv +唐俪-痴心的玫瑰,http://em.21dtv.com/songs/60133497.mkv +谭咏麟-痴心的废墟,http://em.21dtv.com/songs/60012755.mkv +谭咏麟+李克勤-痴心的废墟(演唱会),http://em.21dtv.com/songs/60012754.mkv +万芳-初夏的房间,http://em.21dtv.com/songs/60013032.mkv +许富凯-痴心等待你,http://em.21dtv.com/songs/60082725.mkv +哈琳-慈祥的阿爸,http://em.21dtv.com/songs/60135061.mkv +哈琳-慈祥的阿爸,http://em.21dtv.com/songs/60097690.mkv +曾心梅+陈中-痴心沉入海,http://em.21dtv.com/songs/60012750.mkv +陈美凤+伍浩哲-痴心沉落海,http://em.21dtv.com/songs/60012749.mkv +池希-慈禧不是我,http://em.21dtv.com/songs/60116991.mkv +阿坝州歌舞团-藏文字母歌,http://em.21dtv.com/songs/60088830.mkv +辛子奇-抽完这根烟,http://em.21dtv.com/songs/60012885.mkv +张祥洪-刺猬与玫瑰,http://em.21dtv.com/songs/60013468.mkv +南风-刺猬与玫瑰,http://em.21dtv.com/songs/60013467.mkv +阿牛-纯文艺恋爱,http://em.21dtv.com/songs/60013401.mkv +蔡小虎-出外人的爱,http://em.21dtv.com/songs/60095897.mkv +草蜢-从未欺骗你,http://em.21dtv.com/songs/60013582.mkv +叶启田-出外没赚钱,http://em.21dtv.com/songs/60071682.mkv +佚名-窗外蒙蒙雨,http://em.21dtv.com/songs/60013192.mkv +安心亚-超完美极品,http://em.21dtv.com/songs/60084977.mkv +郭采洁-超完美地狱,http://em.21dtv.com/songs/60068171.mkv +天悦-朝未来出发,http://em.21dtv.com/songs/60074917.mkv +陈浩德-出外靠朋友,http://em.21dtv.com/songs/60012522.mkv +群星-春晚好声音,http://em.21dtv.com/songs/60097611.mkv +荒山亮-趁我还记得,http://em.21dtv.com/songs/60097671.mkv +荒山亮-趁我还会记,http://em.21dtv.com/songs/60098725.mkv +靳海涛-初吻给了谁,http://em.21dtv.com/songs/60099602.mkv +高向鹏-出外的英雄,http://em.21dtv.com/songs/60117385.mkv +王莱-窗外的雨声,http://em.21dtv.com/songs/60121948.mkv +施文彬+秀兰玛雅-窗外的雨声,http://em.21dtv.com/songs/60013191.mkv +袁咏琳-刺猬的拥抱,http://em.21dtv.com/songs/60109616.mkv +吴宏彬-刺猬的拥抱,http://em.21dtv.com/songs/60107572.mkv +杨幂-刺猬的拥抱,http://em.21dtv.com/songs/60064081.mkv +孤山大烧-错误的选择,http://em.21dtv.com/songs/60089244.mkv +小科-错误的选择,http://em.21dtv.com/songs/60013699.mkv +方怡萍-错误的选择(无原唱),http://em.21dtv.com/songs/60013698.mkv +徐婕儿-错误的相遇,http://em.21dtv.com/songs/60091190.mkv +詹曼铃-窗外的小雨,http://em.21dtv.com/songs/60013189.mkv +张雷-错误的相恋,http://em.21dtv.com/songs/60063383.mkv +庄心妍-错误的邂逅,http://em.21dtv.com/songs/60129046.mkv +歌一生+枫舞-错误的网缘,http://em.21dtv.com/songs/60100251.mkv +萧亚轩-窗外的天气,http://em.21dtv.com/songs/60013188.mkv +伍思凯-窗外的天气,http://em.21dtv.com/songs/60013187.mkv +林翠萍-错误的停留,http://em.21dtv.com/songs/60013697.mkv +张惠妹-错误的示范,http://em.21dtv.com/songs/60091098.mkv +晓月-错误的情缘,http://em.21dtv.com/songs/60104174.mkv +张伟燕-错误的情缘,http://em.21dtv.com/songs/60102196.mkv +黄军-错误的情缘,http://em.21dtv.com/songs/60085005.mkv +谭天昂-窗外的霓虹,http://em.21dtv.com/songs/60084992.mkv +蔡义德-出外的浪子,http://em.21dtv.com/songs/60012968.mkv +韩宝仪-错误的恋曲,http://em.21dtv.com/songs/60013696.mkv +詹雅雯-出外的囝仔,http://em.21dtv.com/songs/60012967.mkv +七郎-出外的囝仔,http://em.21dtv.com/songs/60012966.mkv +Honey G-错误的见面,http://em.21dtv.com/songs/60114945.mkv +蔡丽津-错误的代价,http://em.21dtv.com/songs/60135709.mkv +佚名-出外不赚钱(探戈),http://em.21dtv.com/songs/60012965.mkv +佚名-caught up in the rapture,http://em.21dtv.com/songs/60000875.mkv +王美蓉-苍天作弄人,http://em.21dtv.com/songs/60012029.mkv +儿歌-春天在哪里,http://em.21dtv.com/songs/60090640.mkv +尚桐-冲天一声吼,http://em.21dtv.com/songs/60125441.mkv +马希尔-苍天一滴泪,http://em.21dtv.com/songs/60081117.mkv +成于申-苍天笑我狂,http://em.21dtv.com/songs/60105917.mkv +成于申-苍天笑我狂,http://em.21dtv.com/songs/60098392.mkv +唐飞-春天心花开,http://em.21dtv.com/songs/60065206.mkv +晟瑶-春天我等你,http://em.21dtv.com/songs/60068193.mkv +玉面天使-春天跳起来,http://em.21dtv.com/songs/60113841.mkv +刘牧-窗台上的猫(Band版),http://em.21dtv.com/songs/60097684.mkv +PIXIE LOTT-cant make this over,http://em.21dtv.com/songs/60063554.mkv +吴若希-cant let you go,http://em.21dtv.com/songs/60069068.mkv +CIARA+50 CENT-cant leave em alone,http://em.21dtv.com/songs/60063553.mkv +李杨飞-窗台看火车,http://em.21dtv.com/songs/60066924.mkv +朱海君-春天还袂醒,http://em.21dtv.com/songs/60068192.mkv +宿雨涵-春天和孩子,http://em.21dtv.com/songs/60062942.mkv +张敬轩-春天还会来,http://em.21dtv.com/songs/60091105.mkv +李宇春-春天花会开,http://em.21dtv.com/songs/60089954.mkv +任贤齐-春天花会开,http://em.21dtv.com/songs/60013337.mkv +任贤齐-春天花会开(演唱会),http://em.21dtv.com/songs/60013336.mkv +梅艳芳-长藤挂铜铃,http://em.21dtv.com/songs/60057600.mkv +梅艳芳-长藤挂铜铃(演唱会),http://em.21dtv.com/songs/60057599.mkv +潘丽丽+詹宏达-春天个花蕊,http://em.21dtv.com/songs/60013334.mkv +宋祖英-春天的祝福,http://em.21dtv.com/songs/60013332.mkv +宋祖英-春天的雨露,http://em.21dtv.com/songs/60090957.mkv +格登扎西-春天的约会,http://em.21dtv.com/songs/60070605.mkv +殷秀梅+程志-春天的希望,http://em.21dtv.com/songs/60013331.mkv +巧千金-春天的旋律,http://em.21dtv.com/songs/60075000.mkv +何耀珊-春天的微笑,http://em.21dtv.com/songs/60013329.mkv +朱鹏飞-春天的问候,http://em.21dtv.com/songs/60091293.mkv +AI MINI-春天的味道,http://em.21dtv.com/songs/60013330.mkv +大卫-出头的日子,http://em.21dtv.com/songs/60112596.mkv +五月天-春天的呐喊,http://em.21dtv.com/songs/60013328.mkv +杨妃-春天的模样,http://em.21dtv.com/songs/60013327.mkv +卞英花-春天的家乡,http://em.21dtv.com/songs/60117597.mkv +佟娜-春天的家乡,http://em.21dtv.com/songs/60117550.mkv +伊雪-春天的脚步,http://em.21dtv.com/songs/60065911.mkv +童唱-春天的脚步,http://em.21dtv.com/songs/60013326.mkv +姐妹组合-春天的花蕊,http://em.21dtv.com/songs/60095500.mkv +佚名-春天的花蕊,http://em.21dtv.com/songs/60013323.mkv +广智-春天的火车,http://em.21dtv.com/songs/60013325.mkv +清雅-春天的河边,http://em.21dtv.com/songs/60133945.mkv +红蔷薇-春天的歌谣,http://em.21dtv.com/songs/60105288.mkv +景仪-春天的故事,http://em.21dtv.com/songs/60089933.mkv +齐豫-春天的故事,http://em.21dtv.com/songs/60089559.mkv +卓依婷-春天的故事,http://em.21dtv.com/songs/60086498.mkv +二手玫瑰-春天的故事,http://em.21dtv.com/songs/60082748.mkv +董文华-春天的故事,http://em.21dtv.com/songs/60013322.mkv +董文华-春天的故事(演唱会),http://em.21dtv.com/songs/60013321.mkv +李池湘-春天的姑娘,http://em.21dtv.com/songs/60091320.mkv +常思思-春天的芭蕾,http://em.21dtv.com/songs/60117698.mkv +孙建华-春天的芭蕾,http://em.21dtv.com/songs/60111806.mkv +4U乐队-春天爱做梦,http://em.21dtv.com/songs/60079839.mkv +张艳君-常山赵子龙,http://em.21dtv.com/songs/60123946.mkv +张艳君-常山赵子龙,http://em.21dtv.com/songs/60122742.mkv +张梦弘-潮汕姿娘它,http://em.21dtv.com/songs/60106856.mkv +龚月-禅是一枝花,http://em.21dtv.com/songs/60095239.mkv +黄宏+宋丹丹-超生游击队,http://em.21dtv.com/songs/60090344.mkv +DRY-橙色一个天,http://em.21dtv.com/songs/60097696.mkv +朱明-唱首小情歌,http://em.21dtv.com/songs/60125672.mkv +五福星-唱首新年歌,http://em.21dtv.com/songs/60097660.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-唱首新年歌,http://em.21dtv.com/songs/60074904.mkv +任贤齐-彩色西门町,http://em.21dtv.com/songs/60011956.mkv +詹曼玲-拆碎我的心,http://em.21dtv.com/songs/60062231.mkv +佚名-串烧生日歌,http://em.21dtv.com/songs/60013173.mkv +刁寒-春水似年华,http://em.21dtv.com/songs/60013312.mkv +李漫荻-唱首什么歌,http://em.21dtv.com/songs/60093769.mkv +龚云舒-彩色千纸鹤,http://em.21dtv.com/songs/60117425.mkv +黄品源-城市情人梦(演唱会),http://em.21dtv.com/songs/60012633.mkv +阿灯尔里-此生难遗忘,http://em.21dtv.com/songs/60129717.mkv +吴樾+王岗岗-财神么么哒,http://em.21dtv.com/songs/60118448.mkv +薛家燕+安德尊-财神嚟贺你,http://em.21dtv.com/songs/60011896.mkv +TWINS+BOY'Z+Isabell-超时空接触,http://em.21dtv.com/songs/60092200.mkv +李梓菡-超时空的你,http://em.21dtv.com/songs/60081653.mkv +胡彦斌+苏永康-超时空爱情,http://em.21dtv.com/songs/60012406.mkv +E+KIDS-仓鼠俱乐部,http://em.21dtv.com/songs/60092163.mkv +夜郎金鑫-城市黄玫瑰,http://em.21dtv.com/songs/60106739.mkv +双星-财神跟着你,http://em.21dtv.com/songs/60074822.mkv +张震岳-串烧狗男女,http://em.21dtv.com/songs/60013172.mkv +CARRIE UNDERWOOD-cupids got a shotgun(演唱会),http://em.21dtv.com/songs/60073093.mkv +杨培安-沉睡的野兽,http://em.21dtv.com/songs/60097581.mkv +杜歌-城市的夜空,http://em.21dtv.com/songs/60128105.mkv +佚名-诚实的眼睛,http://em.21dtv.com/songs/60012587.mkv +郭彩洁-诚实的想你,http://em.21dtv.com/songs/60088786.mkv +郭采洁-诚实地想你,http://em.21dtv.com/songs/60012588.mkv +佚名-船上的小姐,http://em.21dtv.com/songs/60013161.mkv +叶启田-船上的小姐,http://em.21dtv.com/songs/60013160.mkv +詹雅雯-船上的小姐(无原唱),http://em.21dtv.com/songs/60013159.mkv +李泉-城市的味道(演唱会),http://em.21dtv.com/songs/60012625.mkv +蓝紫-初升的太阳,http://em.21dtv.com/songs/60084988.mkv +张君兰-初升的太阳,http://em.21dtv.com/songs/60082731.mkv +群星-初升的太阳,http://em.21dtv.com/songs/60080687.mkv +薛铭慧-彩色的童年,http://em.21dtv.com/songs/60107198.mkv +翁立友-彩色的世界,http://em.21dtv.com/songs/60066899.mkv +巫启贤-沧桑的情人(演唱会),http://em.21dtv.com/songs/60012041.mkv +张学友-潮水的诺言,http://em.21dtv.com/songs/60012451.mkv +佚名-船上的男儿,http://em.21dtv.com/songs/60013158.mkv +何嘉莉-沉睡的恋人,http://em.21dtv.com/songs/60012519.mkv +张睿+李晟-沧桑的浪漫,http://em.21dtv.com/songs/60061090.mkv +刘德华-城市的两边,http://em.21dtv.com/songs/60012624.mkv +刘沁-城市的节奏,http://em.21dtv.com/songs/60123681.mkv +明骏女孩-彩色的季节,http://em.21dtv.com/songs/60087932.mkv +朱茵-床上的荷花,http://em.21dtv.com/songs/60092771.mkv +唐宁-成熟的孤独,http://em.21dtv.com/songs/60113355.mkv +高枫-城市的烦恼,http://em.21dtv.com/songs/60089004.mkv +于台烟-彩色的风吹,http://em.21dtv.com/songs/60074831.mkv +罗时丰+唐俪-彩色的春天,http://em.21dtv.com/songs/60074830.mkv +吴俊宏+唐俪-彩色的春天,http://em.21dtv.com/songs/60011948.mkv +朱业晋-城市的悲伤,http://em.21dtv.com/songs/60012623.mkv +格让妹-朝圣的阿妈,http://em.21dtv.com/songs/60100239.mkv +李玉琴-穿上彩虹衣(无原唱),http://em.21dtv.com/songs/60013104.mkv +C BLOCK-长沙策长沙,http://em.21dtv.com/songs/60122357.mkv +C BLOCK-长沙策长沙,http://em.21dtv.com/songs/60082708.mkv +三木科-陈述不悔篇,http://em.21dtv.com/songs/60090471.mkv +GLORIA ESTEFAN-cant stay away from you,http://em.21dtv.com/songs/60000838.mkv +辛晓琪-承认+最爱,http://em.21dtv.com/songs/60097608.mkv +郑伦境+郑进一-丑人有丑福,http://em.21dtv.com/songs/60012904.mkv +I.O.I-CRUSH,http://em.21dtv.com/songs/60134699.mkv +I.O.I-Crush,http://em.21dtv.com/songs/60124896.mkv +Foxes-Cruel,http://em.21dtv.com/songs/60122378.mkv +阿超-超人铁金刚,http://em.21dtv.com/songs/60012403.mkv +彩贝与海-春日鼓浪屿,http://em.21dtv.com/songs/60135265.mkv +农夫-超人的主题,http://em.21dtv.com/songs/60087361.mkv +阿悄-残忍的温柔,http://em.21dtv.com/songs/60102856.mkv +贾乃亮-炽热的青春,http://em.21dtv.com/songs/60108900.mkv +雨天-脆弱的男人,http://em.21dtv.com/songs/60013609.mkv +Pop Corn-超人打怪兽,http://em.21dtv.com/songs/60103806.mkv +郑晓飞-脆弱的感情,http://em.21dtv.com/songs/60075016.mkv +刘忻-残忍的缠绵,http://em.21dtv.com/songs/60080654.mkv +周杰伦-超人不会飞,http://em.21dtv.com/songs/60087586.mkv +JKAI-CRAZY,http://em.21dtv.com/songs/60107411.mkv +杨哲+雅芬-痴情真心话,http://em.21dtv.com/songs/60012745.mkv +彭美琪-臣妾做不到,http://em.21dtv.com/songs/60135272.mkv +杨蓉-臣妾做不到,http://em.21dtv.com/songs/60131535.mkv +杨蓉-臣妾做不到,http://em.21dtv.com/songs/60107819.mkv +王凯-从前有座山,http://em.21dtv.com/songs/60131637.mkv +高洪章-从前有座山(演唱会),http://em.21dtv.com/songs/60061118.mkv +梁静茹-纯情艳阳天,http://em.21dtv.com/songs/60090020.mkv +黄乙玲-痴情月娘岛,http://em.21dtv.com/songs/60012744.mkv +群星-从七月开始,http://em.21dtv.com/songs/60134123.mkv +向蕙玲-痴情有憨胆,http://em.21dtv.com/songs/60012742.mkv +李蕙敏-从前有个人,http://em.21dtv.com/songs/60013566.mkv +龙千玉-痴情亦孤单,http://em.21dtv.com/songs/60012739.mkv +杨宗宪+谢金燕-痴情一场空,http://em.21dtv.com/songs/60012738.mkv +洪荣宏-喘气也悲伤,http://em.21dtv.com/songs/60095786.mkv +洪荣宏+蔡丽津-喘气也悲伤,http://em.21dtv.com/songs/60095780.mkv +童安格-此情永不留,http://em.21dtv.com/songs/60013449.mkv +费玉清-此情永不留,http://em.21dtv.com/songs/60013448.mkv +于文华-痴情小妹妹,http://em.21dtv.com/songs/60012737.mkv +余天龙-痴情行船人,http://em.21dtv.com/songs/60074949.mkv +佚名-痴情无值钱,http://em.21dtv.com/songs/60012735.mkv +江志丰-痴情无药医,http://em.21dtv.com/songs/60012734.mkv +蔡义德-痴情误一生,http://em.21dtv.com/songs/60065901.mkv +王江发-痴情乌日站,http://em.21dtv.com/songs/60068177.mkv +佚名-痴情无流行,http://em.21dtv.com/songs/60012733.mkv +佚名-痴情无了时,http://em.21dtv.com/songs/60095434.mkv +韩宝仪-痴情无卡纸(无原唱),http://em.21dtv.com/songs/60017666.mkv +蔡小虎-痴情无后悔,http://em.21dtv.com/songs/60012732.mkv +黄乙玲-成全我的爱,http://em.21dtv.com/songs/60012569.mkv +周俊伟-从前我不会,http://em.21dtv.com/songs/60013561.mkv +唐飞-痴情台西港(无原唱),http://em.21dtv.com/songs/60024814.mkv +龙千玉-痴情谁人知,http://em.21dtv.com/songs/60012729.mkv +黄妃-纯情少年家,http://em.21dtv.com/songs/60013395.mkv +佚名-传奇算你狠,http://em.21dtv.com/songs/60013127.mkv +樱花姐妹-痴情人叨找,http://em.21dtv.com/songs/60012728.mkv +彭炽权+李池湘-痴情若凤鸾(戏曲),http://em.21dtv.com/songs/60092669.mkv +佚名-船去情也断,http://em.21dtv.com/songs/60095438.mkv +群星-纯情青春梦,http://em.21dtv.com/songs/60013393.mkv +洪百慧-痴情女红妆,http://em.21dtv.com/songs/60135504.mkv +苏振华-成全你的爱,http://em.21dtv.com/songs/60062936.mkv +张清芳-串起每一刻(无原唱),http://em.21dtv.com/songs/60013171.mkv +张伯宏-床前明月光,http://em.21dtv.com/songs/60013197.mkv +童唱-床前明月光,http://em.21dtv.com/songs/60013196.mkv +梅艳芳-床前明月光,http://em.21dtv.com/songs/60013195.mkv +梅艳芳-床前明月光(演唱会),http://em.21dtv.com/songs/60013194.mkv +许怀造(阿宝)-传奇闽南人,http://em.21dtv.com/songs/60104429.mkv +Under Lover+玖壹壹-痴情玫瑰花,http://em.21dtv.com/songs/60116485.mkv +钟舒漫-从前流泪光,http://em.21dtv.com/songs/60013559.mkv +孟庭苇-此情可问天,http://em.21dtv.com/songs/60082755.mkv +林子娟-痴情可问天,http://em.21dtv.com/songs/60012718.mkv +甲子慧+王建杰-痴情酷恰恰(无原唱),http://em.21dtv.com/songs/60095808.mkv +孙协志-痴情寄乎你,http://em.21dtv.com/songs/60095503.mkv +施文彬-痴情会心疼,http://em.21dtv.com/songs/60012715.mkv +方怡萍-痴情换无情,http://em.21dtv.com/songs/60074946.mkv +李明洋-痴情换无情,http://em.21dtv.com/songs/60012714.mkv +柳絮-此情何时休,http://em.21dtv.com/songs/60086502.mkv +张宇-纯情憨慢仔(演唱会),http://em.21dtv.com/songs/60013389.mkv +洪百慧-痴情红玫瑰,http://em.21dtv.com/songs/60066916.mkv +袁小迪+向惠玲-纯情红玫瑰,http://em.21dtv.com/songs/60013390.mkv +李芳-痴情换举枷(无原唱),http://em.21dtv.com/songs/60095636.mkv +任贤齐-春秋和冬夏,http://em.21dtv.com/songs/60090559.mkv +陈志伟+陈美华-痴情憨大呆(无原唱),http://em.21dtv.com/songs/60012707.mkv +陈茂丰-痴情跟你走,http://em.21dtv.com/songs/60012706.mkv +洪百慧-痴情孤恋花,http://em.21dtv.com/songs/60066915.mkv +王觉-唱情歌的人,http://em.21dtv.com/songs/60103476.mkv +东来东往-唱情歌的人,http://em.21dtv.com/songs/60012339.mkv +上明-痴情风雨暝,http://em.21dtv.com/songs/60012704.mkv +高信-痴情犯的错,http://em.21dtv.com/songs/60094353.mkv +办桌二人组-痴情第一憨,http://em.21dtv.com/songs/60012702.mkv +动力火车-残缺的完整,http://em.21dtv.com/songs/60082693.mkv +叶瑷菱-残缺的温柔,http://em.21dtv.com/songs/60012008.mkv +张秀卿-纯情的伤悲,http://em.21dtv.com/songs/60013388.mkv +BOK和平组合-纯情的恰恰,http://em.21dtv.com/songs/60013387.mkv +谢金燕-痴情对你讲,http://em.21dtv.com/songs/60012703.mkv +庄振凯-纯情的男儿,http://em.21dtv.com/songs/60125481.mkv +澎恰恰-痴情的男儿(无原唱),http://em.21dtv.com/songs/60095799.mkv +陈雷-痴情的男儿,http://em.21dtv.com/songs/60012698.mkv +带泪的鱼-残缺的墨色,http://em.21dtv.com/songs/60131381.mkv +山野-残缺的美丽,http://em.21dtv.com/songs/60012007.mkv +傅振辉-痴情的灵魂,http://em.21dtv.com/songs/60012696.mkv +郑琇月-痴情的脚步(无原唱),http://em.21dtv.com/songs/60080159.mkv +秀兰玛雅-痴情的憨人(无原唱),http://em.21dtv.com/songs/60012695.mkv +佚名-痴情的海边,http://em.21dtv.com/songs/60012694.mkv +糖糖-长情的告白,http://em.21dtv.com/songs/60128296.mkv +甲子慧-痴情的代价,http://em.21dtv.com/songs/60124305.mkv +一飞-痴情的代价,http://em.21dtv.com/songs/60080812.mkv +佚名-痴情的代价(无原唱),http://em.21dtv.com/songs/60012693.mkv +苏又熔-痴情的等待,http://em.21dtv.com/songs/60095874.mkv +江蕙-痴情的等待,http://em.21dtv.com/songs/60095746.mkv +塔拉吉斯-传奇的草原,http://em.21dtv.com/songs/60068188.mkv +陈淑桦-春去春又回(HD),http://em.21dtv.com/songs/10012824.mkv +陈淑桦-春去春又回,http://em.21dtv.com/songs/60105495.mkv +谢雷-春去春又回,http://em.21dtv.com/songs/60013302.mkv +潘嘉丽-春去春又回,http://em.21dtv.com/songs/60013301.mkv +陈淑萍-痴情不愿醒,http://em.21dtv.com/songs/60130849.mkv +余帝-痴情不甘放(无原唱),http://em.21dtv.com/songs/60012685.mkv +叶胜钦-痴情爱着你,http://em.21dtv.com/songs/60012684.mkv +庞龙-春秋爱美丽,http://em.21dtv.com/songs/60013297.mkv +小歆-唱起阿里郎,http://em.21dtv.com/songs/60111828.mkv +卜学亮-超跑情人梦,http://em.21dtv.com/songs/60080580.mkv +何跃-残破的回忆,http://em.21dtv.com/songs/60012004.mkv +Melody Day-Color,http://em.21dtv.com/songs/60123503.mkv +SNOW+PATROL-called out in the dark,http://em.21dtv.com/songs/60069067.mkv +梦然-沉溺在孤单,http://em.21dtv.com/songs/60121836.mkv +郭建宁-春暖桃花源,http://em.21dtv.com/songs/60086497.mkv +网络歌手-草泥马之歌,http://em.21dtv.com/songs/60088422.mkv +龙飞+张冬玲-春暖花又开,http://em.21dtv.com/songs/60100696.mkv +华晨宇-趁你还年轻,http://em.21dtv.com/songs/60097672.mkv +佚名-趁你还年轻,http://em.21dtv.com/songs/60012532.mkv +戴恩玲-查你的天使,http://em.21dtv.com/songs/60012229.mkv +小琢-蚕娘的憧憬,http://em.21dtv.com/songs/60109278.mkv +林俊吉+李依婷-缠绵中秋夜(无原唱),http://em.21dtv.com/songs/60012265.mkv +小宇-痴妹与王两,http://em.21dtv.com/songs/60012679.mkv +杨清明-沉默也是爱,http://em.21dtv.com/songs/60101654.mkv +BRITNEY SPEARS-cant make you love me,http://em.21dtv.com/songs/60000834.mkv +曹芙嘉-缠绵相思树,http://em.21dtv.com/songs/60012260.mkv +大哲-闯码头续集,http://em.21dtv.com/songs/60074930.mkv +王菲-从明日开始(演唱会),http://em.21dtv.com/songs/60013551.mkv +罗时丰-查某人的心,http://em.21dtv.com/songs/60012227.mkv +高向鹏+龙千玉-查某人的心,http://em.21dtv.com/songs/60012226.mkv +郑志勇-查某人的名,http://em.21dtv.com/songs/60127464.mkv +新宝岛康乐队-查某人的梦,http://em.21dtv.com/songs/60012225.mkv +豪记大对唱-查某囚仔婴,http://em.21dtv.com/songs/60095927.mkv +庞博-从没骗过你,http://em.21dtv.com/songs/60062806.mkv +童唱-草螟弄鸡公,http://em.21dtv.com/songs/60012065.mkv +林强-草螟弄鸡公(无原唱),http://em.21dtv.com/songs/60012064.mkv +小凤凤-草蜢弄鸡公,http://em.21dtv.com/songs/60012063.mkv +新宝岛康乐队-陈明美同学,http://em.21dtv.com/songs/60105094.mkv +黄浩琳-Cause My Music Comes Along,http://em.21dtv.com/songs/60080573.mkv +SKYLAR GREY-cmon let me ride,http://em.21dtv.com/songs/60073057.mkv +张艳君-出门旅个游,http://em.21dtv.com/songs/60122741.mkv +王宝强-出门靠朋友(演唱会),http://em.21dtv.com/songs/60012942.mkv +群星-查某囝仔婴,http://em.21dtv.com/songs/60095870.mkv +东方神起-catch me if you wanna,http://em.21dtv.com/songs/60073038.mkv +陈淑桦-聪明糊涂心,http://em.21dtv.com/songs/60013488.mkv +郑秀文-沉默的纵容,http://em.21dtv.com/songs/60012513.mkv +李翊君-沉默的祝福,http://em.21dtv.com/songs/60012512.mkv +童唱-聪明的一休,http://em.21dtv.com/songs/60013487.mkv +六折真人-沉默等于零,http://em.21dtv.com/songs/60123645.mkv +佚名-沉默的眼睛,http://em.21dtv.com/songs/60012511.mkv +赵传+珍妮弗-聪明的选择,http://em.21dtv.com/songs/60132919.mkv +Jennifer+赵传-聪明的选择,http://em.21dtv.com/songs/60113167.mkv +腾格尔-缠绵的思念,http://em.21dtv.com/songs/60091906.mkv +张栋梁-沉默的瞬间,http://em.21dtv.com/songs/60012509.mkv +金润吉-聪明的傻瓜,http://em.21dtv.com/songs/60100526.mkv +姗姗-缠绵的日记,http://em.21dtv.com/songs/60105737.mkv +李茂山-聪明的女人(无原唱),http://em.21dtv.com/songs/60013486.mkv +苏芮-沉默的母亲,http://em.21dtv.com/songs/60088544.mkv +叶玉卿-沉默的恋人,http://em.21dtv.com/songs/60012508.mkv +安妮朵拉-聪明的寂寞,http://em.21dtv.com/songs/60075015.mkv +佚名-沉默的羔羊,http://em.21dtv.com/songs/60012507.mkv +段千寻-沉默的等候,http://em.21dtv.com/songs/60012506.mkv +袁凤仪-沉默的表示,http://em.21dtv.com/songs/60093132.mkv +罗大佑-沉默的表示,http://em.21dtv.com/songs/60088428.mkv +黄克林-慈母赤子心,http://em.21dtv.com/songs/60013431.mkv +王文瞳-沉默别失落,http://em.21dtv.com/songs/60063034.mkv +佚名-春梦不了情,http://em.21dtv.com/songs/60013291.mkv +胡琳-春眠不觉晓,http://em.21dtv.com/songs/60107138.mkv +王绎龙-春眠不觉晓(演唱会),http://em.21dtv.com/songs/60013292.mkv +萧南英+丁敏-辞郎洲之一,http://em.21dtv.com/songs/60013427.mkv +丁敏+萧南英-辞朗洲之二,http://em.21dtv.com/songs/60090457.mkv +萧南英+丁敏-辞郎洲之二,http://em.21dtv.com/songs/60013426.mkv +龙飘飘-财来自有方,http://em.21dtv.com/songs/60064028.mkv +张蓉蓉-赤崁楼之恋,http://em.21dtv.com/songs/60135240.mkv +佚名-潮流与夹band,http://em.21dtv.com/songs/60012441.mkv +费玉清-楚留香新传,http://em.21dtv.com/songs/60013073.mkv +林久登-初恋西门町,http://em.21dtv.com/songs/60101394.mkv +陈萝莉-初恋薛凯琪,http://em.21dtv.com/songs/60131959.mkv +邱淑贞-赤裸我思绪,http://em.21dtv.com/songs/60012819.mkv +儿歌-丛林望过去,http://em.21dtv.com/songs/60092300.mkv +苏永康-从来未发生,http://em.21dtv.com/songs/60013543.mkv +苏永康-从来未发生(演唱会),http://em.21dtv.com/songs/60013542.mkv +谢珊-彩龙舞东方,http://em.21dtv.com/songs/60118049.mkv +宋祖英-彩龙舞东方,http://em.21dtv.com/songs/60109273.mkv +QUEEN-crazy little thing called love,http://em.21dtv.com/songs/60001064.mkv +陈慧娴-从来是一对,http://em.21dtv.com/songs/60013541.mkv +宋祖英-春来沙家浜(演唱会),http://em.21dtv.com/songs/60065909.mkv +谢采云-春来人不来,http://em.21dtv.com/songs/60088663.mkv +Nick Jonas+Tove Lo-Close,http://em.21dtv.com/songs/60120230.mkv +胜屿-初恋那小事,http://em.21dtv.com/songs/60079981.mkv +王雯-擦亮你的眼,http://em.21dtv.com/songs/60066897.mkv +许廷铿-从来没发生,http://em.21dtv.com/songs/60082760.mkv +王杰-从来没爱过,http://em.21dtv.com/songs/60013537.mkv +南拳妈妈-初恋粉色系,http://em.21dtv.com/songs/60013019.mkv +石雪峰-初恋的滋味,http://em.21dtv.com/songs/60128264.mkv +孙淑媚-初恋的滋味,http://em.21dtv.com/songs/60013018.mkv +倪睿思-初恋的滋味,http://em.21dtv.com/songs/60013017.mkv +佚名-初恋的滋味(演唱会),http://em.21dtv.com/songs/60013016.mkv +吴宏彬-残留的昨天,http://em.21dtv.com/songs/60107573.mkv +萧敬腾-城里的月光,http://em.21dtv.com/songs/60126124.mkv +吕方-城里的月光,http://em.21dtv.com/songs/60082721.mkv +秦妮-城里的月光,http://em.21dtv.com/songs/60082720.mkv +胡海泉+田斯斯-城里的月光,http://em.21dtv.com/songs/60080984.mkv +馨梓-城里的月光,http://em.21dtv.com/songs/60012618.mkv +TANK-城里的月光,http://em.21dtv.com/songs/60012617.mkv +许美静-城里的月光(演唱会),http://em.21dtv.com/songs/60012616.mkv +黄英-灿烂的行走,http://em.21dtv.com/songs/60069286.mkv +沈芳如-初恋的心情,http://em.21dtv.com/songs/60089399.mkv +佚名-初恋的小路(无原唱),http://em.21dtv.com/songs/60013015.mkv +刘旗-村里的小花,http://em.21dtv.com/songs/60082764.mkv +胡小宝-残留的温柔,http://em.21dtv.com/songs/60068152.mkv +李佳乐-初恋的味道,http://em.21dtv.com/songs/60122831.mkv +李李萌-车里的糖果,http://em.21dtv.com/songs/60098467.mkv +佚名-初恋的少女,http://em.21dtv.com/songs/60013014.mkv +邓丽君-初恋的情人,http://em.21dtv.com/songs/60013013.mkv +邱芸子-初恋的情歌(无原唱),http://em.21dtv.com/songs/60013012.mkv +兰旭阳-残留的诺言,http://em.21dtv.com/songs/60106618.mkv +张咪-从来都没有,http://em.21dtv.com/songs/60089853.mkv +佚名-从来都没有,http://em.21dtv.com/songs/60013534.mkv +林义忠-灿烂的明天,http://em.21dtv.com/songs/60012016.mkv +林忆莲-赤裸的秘密(新版),http://em.21dtv.com/songs/60097551.mkv +张敬轩-赤裸的秘密(演唱会),http://em.21dtv.com/songs/60012815.mkv +林忆莲-赤裸的秘密(演唱会),http://em.21dtv.com/songs/60012814.mkv +洪荣宏-灿烂的恋歌(无原唱),http://em.21dtv.com/songs/60012015.mkv +费玉清-常绿的回忆,http://em.21dtv.com/songs/60012278.mkv +祁隆-初恋的姑娘,http://em.21dtv.com/songs/60120833.mkv +佚名-初恋的感觉,http://em.21dtv.com/songs/60013009.mkv +陈燕芬-初恋的港岸(无原唱),http://em.21dtv.com/songs/60096011.mkv +佚名-初恋的港岸(无原唱),http://em.21dtv.com/songs/60013010.mkv +杨钰莹-初恋的地方(现场版),http://em.21dtv.com/songs/60089988.mkv +王菲-初恋的地方,http://em.21dtv.com/songs/60013008.mkv +谭咏麟-迟来的春天,http://em.21dtv.com/songs/60012791.mkv +谭咏麟-迟来的春天(演唱会),http://em.21dtv.com/songs/60012790.mkv +叶启田-初恋的爱人(无原唱),http://em.21dtv.com/songs/60071822.mkv +佚名-初恋的爱人(无原唱),http://em.21dtv.com/songs/60013007.mkv +蔡晓-从来不在乎,http://em.21dtv.com/songs/60103555.mkv +刘美君-赤裸抱月下(演唱会),http://em.21dtv.com/songs/60012813.mkv +王瑞霞-吃亏占便宜,http://em.21dtv.com/songs/60068815.mkv +佚名-吃亏占便宜(演唱会),http://em.21dtv.com/songs/60012662.mkv +郭桂彬-残酷青春梦,http://em.21dtv.com/songs/60011994.mkv +关德辉-敞开你的心,http://em.21dtv.com/songs/60089152.mkv +游鸿明-残酷的夏天,http://em.21dtv.com/songs/60091632.mkv +查可欣-残酷的微笑,http://em.21dtv.com/songs/60074833.mkv +齐秦-残酷的温柔,http://em.21dtv.com/songs/60090366.mkv +黄小琥-残酷的温柔,http://em.21dtv.com/songs/60011993.mkv +满文军-残酷的美好,http://em.21dtv.com/songs/60011992.mkv +方瑞娥-诚恳地关怀,http://em.21dtv.com/songs/60065898.mkv +佚名-吃亏的爱情,http://em.21dtv.com/songs/60012661.mkv +乔洋-超级自恋男,http://em.21dtv.com/songs/60012387.mkv +孙维良-穿军装的人(演唱会),http://em.21dtv.com/songs/60066922.mkv +Mc阿卡兕-曾经拥有你,http://em.21dtv.com/songs/60127659.mkv +张清芳-曾经拥有过(无原唱),http://em.21dtv.com/songs/60012181.mkv +雨宗林-曾经有个人,http://em.21dtv.com/songs/60128569.mkv +麦浚龙-吃鲸鱼的人,http://em.21dtv.com/songs/60012659.mkv +浪花兄弟-曾经小太阳,http://em.21dtv.com/songs/60012175.mkv +黄品源-超级星期天,http://em.21dtv.com/songs/60012386.mkv +陈慧琳-超级小黑咪,http://em.21dtv.com/songs/60093468.mkv +黄榕-超级小黑咪(演唱会),http://em.21dtv.com/songs/60012385.mkv +鸿飞-曾经为了你,http://em.21dtv.com/songs/60106482.mkv +张书瑶-曾经我爱过,http://em.21dtv.com/songs/60129061.mkv +罗力威-曾经太年轻(演唱会),http://em.21dtv.com/songs/60079511.mkv +蓝又时-曾经太年轻,http://em.21dtv.com/songs/60012172.mkv +王建杰-从今天开始(无原唱),http://em.21dtv.com/songs/60013518.mkv +马上又+小宝-曾经是小孩,http://em.21dtv.com/songs/60079510.mkv +杨刚-曾经是回忆,http://em.21dtv.com/songs/60012170.mkv +严辉-曾经深爱过,http://em.21dtv.com/songs/60117528.mkv +金子妈-曾经深爱过,http://em.21dtv.com/songs/60012169.mkv +方顺吉-翅脚髯嘴须,http://em.21dtv.com/songs/60095558.mkv +邓丽君-从今日起你,http://em.21dtv.com/songs/60013517.mkv +薛佩洁+张政雄-吃紧弄破碗,http://em.21dtv.com/songs/60012658.mkv +家家-曾经美丽过,http://em.21dtv.com/songs/60121592.mkv +任和-超级马里奥,http://em.21dtv.com/songs/60082710.mkv +郑家纯-唱寂寞的歌,http://em.21dtv.com/songs/60097661.mkv +许华升-唱尽恋人心,http://em.21dtv.com/songs/60134217.mkv +陈明-曾经快乐过,http://em.21dtv.com/songs/60088876.mkv +五月天-春娇救志明,http://em.21dtv.com/songs/60134866.mkv +陈升+潘越云-春娇和志明,http://em.21dtv.com/songs/60013285.mkv +郑培钦-春江花月夜,http://em.21dtv.com/songs/60112299.mkv +彭丽媛-春江花月夜,http://em.21dtv.com/songs/60102255.mkv +童丽-春江花月夜,http://em.21dtv.com/songs/60074997.mkv +彭丽媛-春江花月夜(演唱会),http://em.21dtv.com/songs/60074996.mkv +李玉刚-春江花月夜,http://em.21dtv.com/songs/60061113.mkv +黄鸿升-超级烦原伴,http://em.21dtv.com/songs/60084974.mkv +林忆莲-长街的一角(演唱会),http://em.21dtv.com/songs/60057588.mkv +张玲-曾经的心跳,http://em.21dtv.com/songs/60109329.mkv +陈灵强-曾经的幸福,http://em.21dtv.com/songs/60080904.mkv +邵杰-曾经的兄弟,http://em.21dtv.com/songs/60120018.mkv +Mc天佑-曾经的王者,http://em.21dtv.com/songs/50000118.mkv +塔宏伟-曾经的唯一,http://em.21dtv.com/songs/60099172.mkv +苏唯-曾经的我们,http://em.21dtv.com/songs/60119911.mkv +Ailee-陈旧的思念,http://em.21dtv.com/songs/60133167.mkv +夏嘉伟-超级大市场,http://em.21dtv.com/songs/60115077.mkv +周慧敏-出嫁的清晨,http://em.21dtv.com/songs/60012923.mkv +孙伟-曾经的你我,http://em.21dtv.com/songs/60079509.mkv +琼雪卓玛-曾经的美丽,http://em.21dtv.com/songs/60012166.mkv +ToNick-春节大禁忌,http://em.21dtv.com/songs/60132143.mkv +哈哈-曾经的感动,http://em.21dtv.com/songs/60067780.mkv +大哲-曾经的大哥,http://em.21dtv.com/songs/60118479.mkv +龙奔-曾经的等待,http://em.21dtv.com/songs/60079508.mkv +李宁宇-曾经的承诺,http://em.21dtv.com/songs/60012165.mkv +柔情-曾经的缠绵,http://em.21dtv.com/songs/60110313.mkv +阿译(A译)-曾经的爱情,http://em.21dtv.com/songs/60107307.mkv +吕继宏-从军报国歌,http://em.21dtv.com/songs/60013525.mkv +香香-初见爱已晚,http://em.21dtv.com/songs/60120132.mkv +孙露-曾经爱过谁,http://em.21dtv.com/songs/60115827.mkv +孙露-曾经爱过谁,http://em.21dtv.com/songs/60079506.mkv +郑源-曾经爱过你,http://em.21dtv.com/songs/60012158.mkv +刘晓枫-曾经爱过你,http://em.21dtv.com/songs/60012157.mkv +FOSTER THE PEOPLE-call it what you want,http://em.21dtv.com/songs/60073025.mkv +MICHAEL BOLTON-can i touch you there,http://em.21dtv.com/songs/60000787.mkv +KARYN WHITE-can i stay with you,http://em.21dtv.com/songs/60000786.mkv +佚名-call in你的心,http://em.21dtv.com/songs/60000775.mkv +TROY+GABRIELLA-can i have this dance,http://em.21dtv.com/songs/60073029.mkv +ANNE MURRAY-could i have this dance,http://em.21dtv.com/songs/60001043.mkv +JANN ARDEN-could i be your girl,http://em.21dtv.com/songs/60001042.mkv +山东-can i be your baby,http://em.21dtv.com/songs/60070313.mkv +萧敬腾+宋宇-沧海一声笑,http://em.21dtv.com/songs/60112187.mkv +萧敬腾-沧海一声笑,http://em.21dtv.com/songs/60096482.mkv +洪辰-沧海一声笑,http://em.21dtv.com/songs/60084956.mkv +郑少秋-沧海一声笑(演唱会),http://em.21dtv.com/songs/60074837.mkv +李丽霞-沧海一声笑(演唱会),http://em.21dtv.com/songs/60068154.mkv +许冠杰-沧海一声笑,http://em.21dtv.com/songs/60012036.mkv +黄沾-沧海一声笑,http://em.21dtv.com/songs/60012035.mkv +迪克牛仔-沧海一声笑,http://em.21dtv.com/songs/60012034.mkv +黄沾-沧海一声笑(演唱会),http://em.21dtv.com/songs/60012033.mkv +罗文+汪明荃-春花万里香,http://em.21dtv.com/songs/60062741.mkv +汪明荃-春花万里香(演唱会),http://em.21dtv.com/songs/60013281.mkv +张秀卿-春花望露水,http://em.21dtv.com/songs/60121665.mkv +李雨纯-彩虹上的光,http://em.21dtv.com/songs/60124096.mkv +赖剑勇-成化石的爱,http://em.21dtv.com/songs/60120959.mkv +阿权-吃喝嫖赌抽,http://em.21dtv.com/songs/60080413.mkv +文章-彩虹那一端,http://em.21dtv.com/songs/60011940.mkv +童可可-吃货进行曲,http://em.21dtv.com/songs/60121986.mkv +葛仲珊-从黑胶起家,http://em.21dtv.com/songs/60134181.mkv +陈红+蔡国庆+张迈+江涛-常回家看看,http://em.21dtv.com/songs/60131956.mkv +景仪-常回家看看,http://em.21dtv.com/songs/60089930.mkv +刘姝辰+牛欣欣-常回家看看,http://em.21dtv.com/songs/60074888.mkv +陈红-常回家看看,http://em.21dtv.com/songs/60012277.mkv +陈红-常回家看看(演唱会),http://em.21dtv.com/songs/60012276.mkv +陈红+蔡国庆+张迈+江涛-常回家看看(演唱会),http://em.21dtv.com/songs/60012275.mkv +龚月-常回家看看(无原唱),http://em.21dtv.com/songs/60012274.mkv +梁咏琪-彩虹交江处,http://em.21dtv.com/songs/60011939.mkv +梁咏琪-彩虹交汇处,http://em.21dtv.com/songs/60092890.mkv +佚名-cant help falling in love,http://em.21dtv.com/songs/60000831.mkv +聂云-cant help falling in love,http://em.21dtv.com/songs/60000830.mkv +F4-cant help falling in love,http://em.21dtv.com/songs/60000829.mkv +F4-cant help falling in love(演唱会),http://em.21dtv.com/songs/60000828.mkv +少女时代-Check,http://em.21dtv.com/songs/60114506.mkv +SWEETY-彩虹的眼泪,http://em.21dtv.com/songs/60087222.mkv +儿童歌曲-彩虹的约定,http://em.21dtv.com/songs/60100767.mkv +儿歌-彩虹的约定,http://em.21dtv.com/songs/60061088.mkv +王心凌-彩虹的微笑,http://em.21dtv.com/songs/60011938.mkv +李蕙敏-迟婚的女人,http://em.21dtv.com/songs/60012782.mkv +邓文昕-彩虹的美丽,http://em.21dtv.com/songs/60069284.mkv +杨培安-彩虹的尽头,http://em.21dtv.com/songs/60011937.mkv +阿正-楚汉传奇,http://em.21dtv.com/songs/60070601.mkv +王亚平-春光圆舞曲,http://em.21dtv.com/songs/60066927.mkv +丁克森-草根与巨人,http://em.21dtv.com/songs/60113206.mkv +王子豪-草根也给力,http://em.21dtv.com/songs/60086481.mkv +谭咏麟+关楚耀-成功需苦干(演唱会),http://em.21dtv.com/songs/60012554.mkv +傅佩嘉-踩钢线 借借,http://em.21dtv.com/songs/60011975.mkv +成铭-唱给兄弟们,http://em.21dtv.com/songs/60133729.mkv +佚名-春光无限好,http://em.21dtv.com/songs/60013261.mkv +太阳部落-唱给未来的,http://em.21dtv.com/songs/60104016.mkv +阿兰-唱给天空听,http://em.21dtv.com/songs/60122211.mkv +张平-成功属于我,http://em.21dtv.com/songs/60108499.mkv +路童-成功属于你,http://em.21dtv.com/songs/60131858.mkv +林翠萍-成功属于你,http://em.21dtv.com/songs/60091491.mkv +庄学忠-成功属于你,http://em.21dtv.com/songs/60087755.mkv +佚名-船过水无痕,http://em.21dtv.com/songs/60013154.mkv +黄乙玲-船过水无痕,http://em.21dtv.com/songs/60013153.mkv +郭桂彬+李翊君-船过水无痕,http://em.21dtv.com/songs/60013152.mkv +李潮-重归苏莲托,http://em.21dtv.com/songs/60079668.mkv +郑锦昌-春归人未归(演唱会),http://em.21dtv.com/songs/60082746.mkv +郑锦昌-春归人未归,http://em.21dtv.com/songs/60013269.mkv +吴碧霞-长鼓敲起来,http://em.21dtv.com/songs/60068167.mkv +黄圣依-唱给男朋友,http://em.21dtv.com/songs/60012329.mkv +贡尕达哇-唱给你姑娘,http://em.21dtv.com/songs/60069297.mkv +周韦杰-错过你的人,http://em.21dtv.com/songs/60085003.mkv +刘牧-唱给你的歌,http://em.21dtv.com/songs/60069296.mkv +王铮亮-唱给你的歌,http://em.21dtv.com/songs/60012330.mkv +刘伟-唱给流浪者,http://em.21dtv.com/songs/60074897.mkv +王菀之-错过了地址,http://em.21dtv.com/songs/60061121.mkv +成成-成功靠自己,http://em.21dtv.com/songs/60130355.mkv +卓依婷-成功靠自己,http://em.21dtv.com/songs/60012553.mkv +刘育绫-成功靠自己,http://em.21dtv.com/songs/60012552.mkv +卓依婷-成功靠自己(演唱会),http://em.21dtv.com/songs/60012551.mkv +林子娟-唱歌甲已听(无原唱),http://em.21dtv.com/songs/60012326.mkv +雨宗林-错过就不再,http://em.21dtv.com/songs/60119040.mkv +萧煌奇-唱歌乎恁听,http://em.21dtv.com/songs/60012325.mkv +腾格尔-唱给黄河听,http://em.21dtv.com/songs/60012328.mkv +辜樱樱-唱歌给谁听,http://em.21dtv.com/songs/60070580.mkv +韩晶-唱歌给谁听,http://em.21dtv.com/songs/60012324.mkv +阿牛-唱歌给你听,http://em.21dtv.com/songs/60012323.mkv +方瑞娥+高向鹏-唱歌的饮酒,http://em.21dtv.com/songs/60012321.mkv +小山-错过的缘分,http://em.21dtv.com/songs/60080780.mkv +六哲-错过的幸福,http://em.21dtv.com/songs/60112520.mkv +苏青-错过的温柔,http://em.21dtv.com/songs/60112913.mkv +喜波-唱歌到天亮,http://em.21dtv.com/songs/60069295.mkv +杨荣辉-成功的条件,http://em.21dtv.com/songs/60132590.mkv +杨荣辉-成功的条件,http://em.21dtv.com/songs/60130467.mkv +佚名-成功的条件,http://em.21dtv.com/songs/60012549.mkv +叶启田-成功的条件,http://em.21dtv.com/songs/60012548.mkv +孙中亮-错过的情缘,http://em.21dtv.com/songs/60123819.mkv +孙中亮-错过的情缘,http://em.21dtv.com/songs/60066933.mkv +古璇-错过的秋天,http://em.21dtv.com/songs/60013670.mkv +陈雅森-错过的牵手,http://em.21dtv.com/songs/60118173.mkv +陈雅森-错过的牵手,http://em.21dtv.com/songs/60110652.mkv +陈雅森-错过的牵手,http://em.21dtv.com/songs/60109709.mkv +冷漠+石梅-错过的情人,http://em.21dtv.com/songs/60121410.mkv +石梅-错过的情人,http://em.21dtv.com/songs/60013669.mkv +张雷-错过的青春,http://em.21dtv.com/songs/60097686.mkv +津亭-唱歌的精灵,http://em.21dtv.com/songs/60012319.mkv +佚名-成功的脚步,http://em.21dtv.com/songs/60012547.mkv +成威-成功的脚步,http://em.21dtv.com/songs/60012546.mkv +庄心妍-错过的花季,http://em.21dtv.com/songs/60072958.mkv +杨梓文祺-错过的过错,http://em.21dtv.com/songs/60124111.mkv +任和-错过的风景,http://em.21dtv.com/songs/60103071.mkv +杨小曼-错过的风景,http://em.21dtv.com/songs/60101119.mkv +阿福-错过的风景,http://em.21dtv.com/songs/60064089.mkv +冷漠-错过的风景,http://em.21dtv.com/songs/60013668.mkv +黄西田+樱桃姐妹-成功的等待,http://em.21dtv.com/songs/60012545.mkv +于洋-错过的爱频,http://em.21dtv.com/songs/60099734.mkv +佚名-成功出头时,http://em.21dtv.com/songs/60012544.mkv +蔡小虎-春风阵阵吹,http://em.21dtv.com/songs/60013252.mkv +叶俊华-春风醉江南,http://em.21dtv.com/songs/60115742.mkv +蒋姗倍-长发为君留,http://em.21dtv.com/songs/60130710.mkv +林予曦-春风偷偷讲,http://em.21dtv.com/songs/60112795.mkv +林强-春风少年兄,http://em.21dtv.com/songs/60013243.mkv +张四十三-查甫人拢会(无原唱),http://em.21dtv.com/songs/60012221.mkv +郑中基-除非你要我(演唱会),http://em.21dtv.com/songs/60013046.mkv +刘爽-错放你的手,http://em.21dtv.com/songs/60105643.mkv +常健鸿-错放你的手,http://em.21dtv.com/songs/60103254.mkv +邓丽君-春风满小城,http://em.21dtv.com/songs/60013239.mkv +余帝-春风花再红,http://em.21dtv.com/songs/60013236.mkv +张文绮+吴勇滨-春风的滋味,http://em.21dtv.com/songs/60122726.mkv +张文绮+吴勇滨-春风的滋味,http://em.21dtv.com/songs/60116795.mkv +汪明荃+罗嘉英-春风得意天(演唱会),http://em.21dtv.com/songs/60013233.mkv +花树-尘封的苦恋,http://em.21dtv.com/songs/60129533.mkv +陈升-春风大酒店,http://em.21dtv.com/songs/60105474.mkv +西风-尘封的画卷,http://em.21dtv.com/songs/60129601.mkv +黄思婷-春风等不来(无原唱),http://em.21dtv.com/songs/60061396.mkv +龙梅子-春风吹又生,http://em.21dtv.com/songs/60129867.mkv +双星-春风吹过来,http://em.21dtv.com/songs/60074992.mkv +胡红艳-春风吹啊吹,http://em.21dtv.com/songs/60066926.mkv +白举纲+宁恒宇-出发吧我们,http://em.21dtv.com/songs/60134032.mkv +黄洋-出发吧爱情,http://em.21dtv.com/songs/60111553.mkv +赵斌-嫦娥有话说,http://em.21dtv.com/songs/60098789.mkv +潘倩-慈恩桥情思,http://em.21dtv.com/songs/60132691.mkv +胡月亮-嫦娥看哥哥,http://em.21dtv.com/songs/60074892.mkv +陈浩德-窗儿隔着纱(演唱会),http://em.21dtv.com/songs/60074986.mkv +梁海洋-传递正能量,http://em.21dtv.com/songs/60120679.mkv +卢茜-赤道与北极,http://em.21dtv.com/songs/60012804.mkv +米靓-唱得幸福来,http://em.21dtv.com/songs/60069294.mkv +爱戴-唱的是寂寞,http://em.21dtv.com/songs/60088265.mkv +赵传-车顶水姑娘(演唱会),http://em.21dtv.com/songs/60012458.mkv +李彩桦+吴展濠-差点说爱你,http://em.21dtv.com/songs/60092803.mkv +袁春雷-长大抢小米,http://em.21dtv.com/songs/60102723.mkv +张希晨-超短裙车模,http://em.21dtv.com/songs/60105839.mkv +秀兰玛雅-车顶美姑娘,http://em.21dtv.com/songs/60012457.mkv +叶启田-草地老阿伯,http://em.21dtv.com/songs/60012057.mkv +宋孟君-长大会孤单,http://em.21dtv.com/songs/60106784.mkv +陈小春-初到贵宝地,http://em.21dtv.com/songs/60012990.mkv +音萌萌+承利-彻底放下了,http://em.21dtv.com/songs/60133098.mkv +范玉阳-迟到的醒悟,http://em.21dtv.com/songs/60130700.mkv +佚名-船顶的小姐,http://em.21dtv.com/songs/60013142.mkv +梁一贞-迟到的幸福,http://em.21dtv.com/songs/60071840.mkv +张津涤-迟到的温柔,http://em.21dtv.com/songs/60109316.mkv +林宥嘉-长大的童话,http://em.21dtv.com/songs/60130482.mkv +张若昀-迟到的誓言,http://em.21dtv.com/songs/60120522.mkv +刘德华-错的都是我,http://em.21dtv.com/songs/60090709.mkv +佚名-颤抖的伤痛,http://em.21dtv.com/songs/60012272.mkv +刀郎-冲动的惩罚,http://em.21dtv.com/songs/60012854.mkv +郭津彤-冲动的错爱,http://em.21dtv.com/songs/60114828.mkv +JOHN RICH-country done come to town,http://em.21dtv.com/songs/60001050.mkv +朱玉明-唱的不是歌,http://em.21dtv.com/songs/60084969.mkv +海生+刘明扬+龙智祥-闯荡北上广,http://em.21dtv.com/songs/60070587.mkv +成铭-此地不留爷,http://em.21dtv.com/songs/60133731.mkv +李亚军-此地不留爷,http://em.21dtv.com/songs/60099294.mkv +赤龙-出彩中国人,http://em.21dtv.com/songs/60120968.mkv +王江发-冲出一片天,http://em.21dtv.com/songs/60068180.mkv +萧孋珠-处处闻啼鸟,http://em.21dtv.com/songs/60090189.mkv +三角COOL-猜猜我是谁,http://em.21dtv.com/songs/60011869.mkv +郑秀文-痴痴为你等,http://em.21dtv.com/songs/60012675.mkv +佚名-唱出我和你(无原唱),http://em.21dtv.com/songs/60012312.mkv +文千岁-惆怅沈园春,http://em.21dtv.com/songs/60012888.mkv +小凤凤-丑丑思相枝,http://em.21dtv.com/songs/60012901.mkv +罗时丰-丑丑思相枝,http://em.21dtv.com/songs/60012900.mkv +张华-唱出阮的名,http://em.21dtv.com/songs/60012310.mkv +陈百强+林姗姗-曾在你怀抱,http://em.21dtv.com/songs/60012192.mkv +章小军-唱出你的爱,http://em.21dtv.com/songs/60012309.mkv +金志文+沈凌-成长进行曲,http://em.21dtv.com/songs/60135847.mkv +张淳淳-淳淳剪肥party,http://em.21dtv.com/songs/60013417.mkv +华少瑞明-闯出个名堂,http://em.21dtv.com/songs/60133424.mkv +洪凯+张莹-虫虫飞呀飞,http://em.21dtv.com/songs/60125868.mkv +佚名-匆匆的走过(无原唱),http://em.21dtv.com/songs/60013483.mkv +范晓萱-处处都有你,http://em.21dtv.com/songs/60013074.mkv +任贤齐-初次的约会,http://em.21dtv.com/songs/60087277.mkv +贺美琦-成长的约定,http://em.21dtv.com/songs/60130769.mkv +吴坤扬+何浩威+谢心羽+罗苑文-成长的梦想,http://em.21dtv.com/songs/60133475.mkv +梁玉嵘-惆怅杜鹃红(戏曲),http://em.21dtv.com/songs/60092915.mkv +陈建-成长的烦恼,http://em.21dtv.com/songs/60130839.mkv +阎维文-赤诚的爱恋,http://em.21dtv.com/songs/60012800.mkv +刘美君-惆怅沧桑夜,http://em.21dtv.com/songs/60092367.mkv +崔伟亮-错错错的人,http://em.21dtv.com/songs/60069317.mkv +风殿子-错错错的人,http://em.21dtv.com/songs/60013650.mkv +谢震东-成败也精彩,http://em.21dtv.com/songs/60135757.mkv +钟舒漫-从不信自己,http://em.21dtv.com/songs/60131913.mkv +杨千嬅-翅膀下的风,http://em.21dtv.com/songs/60036232.mkv +黄清源-唱不完的她,http://em.21dtv.com/songs/60012308.mkv +NO NAME-唱不完的歌,http://em.21dtv.com/songs/60012302.mkv +音乐走廊+歌一生-猜不透的你,http://em.21dtv.com/songs/60121139.mkv +冯鸿源-长白山神韵,http://em.21dtv.com/songs/60068166.mkv +罗敏庄-长伴千世纪(演唱会),http://em.21dtv.com/songs/60074878.mkv +李翊君-冲不破情网,http://em.21dtv.com/songs/60012838.mkv +阿雅-锉冰进行曲,http://em.21dtv.com/songs/60013627.mkv +MC HOTDOG-差不多先生,http://em.21dtv.com/songs/60012241.mkv +EO2-差不多先生(演唱会),http://em.21dtv.com/songs/60012240.mkv +杨瑶-苍白的温柔,http://em.21dtv.com/songs/60133855.mkv +胡杰夕-苍白的诺言,http://em.21dtv.com/songs/60065882.mkv +佚名-苍白的记忆,http://em.21dtv.com/songs/60012020.mkv +伍华-触不到的爱,http://em.21dtv.com/songs/60103073.mkv +美好前程乐队-CARRY,http://em.21dtv.com/songs/60110457.mkv +F4-Can't HELP FALLING IN LOVE,http://em.21dtv.com/songs/60101213.mkv +孟佳-CANDY,http://em.21dtv.com/songs/60135109.mkv +Faky-Candy,http://em.21dtv.com/songs/60134672.mkv +司徒兰芳-尘埃里的诗,http://em.21dtv.com/songs/60116620.mkv +陈瑞-尘埃里的花,http://em.21dtv.com/songs/60012488.mkv +邓养天-错爱的意外,http://em.21dtv.com/songs/60124539.mkv +锦绣二重唱-才爱到一半,http://em.21dtv.com/songs/60011884.mkv +醉楠风-错爱的结果,http://em.21dtv.com/songs/60013641.mkv +郭富城-错爱的呼唤,http://em.21dtv.com/songs/60013640.mkv +郭富城-错爱的呼唤(演唱会),http://em.21dtv.com/songs/60013639.mkv +刘劲升-不再有泪痕,http://em.21dtv.com/songs/60081087.mkv +毕达-不再有关系,http://em.21dtv.com/songs/60071809.mkv +慕容晓晓-不再想着谁,http://em.21dtv.com/songs/60064024.mkv +佚名-别在星期天,http://em.21dtv.com/songs/60010795.mkv +乔幼-八掌溪恋歌,http://em.21dtv.com/songs/60118301.mkv +童唱-八只小瓷猫,http://em.21dtv.com/songs/60009501.mkv +易欣-别再为我哭,http://em.21dtv.com/songs/60010773.mkv +李琳-别再为我哭,http://em.21dtv.com/songs/60010772.mkv +段千寻-别再为我哭,http://em.21dtv.com/songs/60010771.mkv +袁惜君-不在我身边,http://em.21dtv.com/songs/60100957.mkv +童唱-不再玩泥沙,http://em.21dtv.com/songs/60011749.mkv +高艺菲-不再为你改变,http://em.21dtv.com/songs/60020330.mkv +爱嗑瓜子的猫+驯鹿-别找我麻烦,http://em.21dtv.com/songs/60128199.mkv +金志文+高丽雯+千斤组合-别找我麻烦,http://em.21dtv.com/songs/60135851.mkv +王帝-别找我麻烦,http://em.21dtv.com/songs/60113857.mkv +王帝-别找我麻烦,http://em.21dtv.com/songs/60097561.mkv +HOPE-别找我麻烦,http://em.21dtv.com/songs/60082634.mkv +蔡健雅-别找我麻烦,http://em.21dtv.com/songs/60063988.mkv +欢子-别再挽留我,http://em.21dtv.com/songs/60063986.mkv +陈百强-不再问究竟,http://em.21dtv.com/songs/60011756.mkv +陈奕迅-不再问究竟(演唱会),http://em.21dtv.com/songs/60011755.mkv +陈百强-不再问究竟(演唱会),http://em.21dtv.com/songs/60011754.mkv +程鸣-别走我的爱,http://em.21dtv.com/songs/60100362.mkv +林东松-比昨天更爱,http://em.21dtv.com/songs/60010391.mkv +张靓玫-不再说再见,http://em.21dtv.com/songs/60119550.mkv +陈辉权-不再说永远,http://em.21dtv.com/songs/60099593.mkv +云菲菲-不再是误会,http://em.21dtv.com/songs/60011747.mkv +猛虎巧克力-不再是少年,http://em.21dtv.com/songs/60113836.mkv +张睿+莫龙丹-不只是情人,http://em.21dtv.com/songs/60086477.mkv +黄小琥-不只是朋友,http://em.21dtv.com/songs/60089039.mkv +胡兵+瞿颖-不只是朋友,http://em.21dtv.com/songs/60011780.mkv +古巨基-不再是朋友,http://em.21dtv.com/songs/60011746.mkv +易欣-别再伤害我,http://em.21dtv.com/songs/60010764.mkv +刘瑞琦-不再说分手,http://em.21dtv.com/songs/60125212.mkv +小贱-别再说分手,http://em.21dtv.com/songs/60105779.mkv +王菀之-不再说分手,http://em.21dtv.com/songs/60102545.mkv +孙蓝-别再说分手,http://em.21dtv.com/songs/60081149.mkv +戴爱玲-不只十二月(演唱会),http://em.21dtv.com/songs/60065875.mkv +李玖哲-不只是场梦,http://em.21dtv.com/songs/60011779.mkv +张景宇-不再十八岁,http://em.21dtv.com/songs/60106841.mkv +潘广益-别再说爱我,http://em.21dtv.com/songs/60082632.mkv +AYA-别再说爱我,http://em.21dtv.com/songs/60063985.mkv +闫鑫泷-不自然男孩,http://em.21dtv.com/songs/60106362.mkv +潘龙-别再欺骗我,http://em.21dtv.com/songs/60063984.mkv +郎军-不再去爱谁,http://em.21dtv.com/songs/60066894.mkv +雅希-不祝你幸福,http://em.21dtv.com/songs/60119036.mkv +游喧-背着你跳舞,http://em.21dtv.com/songs/60010273.mkv +满文军-不在你身边,http://em.21dtv.com/songs/60011776.mkv +吴淑敏-不知你好呒,http://em.21dtv.com/songs/60011798.mkv +艾米-背转面双轨,http://em.21dtv.com/songs/60113992.mkv +张跃-不知名的花,http://em.21dtv.com/songs/60061082.mkv +周笔畅-被中立拖累,http://em.21dtv.com/songs/60128908.mkv +谢沛恩-别再来梦里,http://em.21dtv.com/songs/60071784.mkv +刘朋-别再离开我,http://em.21dtv.com/songs/60087407.mkv +罗钢-棒子老虎鸡,http://em.21dtv.com/songs/60009942.mkv +520女子演唱组-棒子老虎鸡,http://em.21dtv.com/songs/60009941.mkv +张继聪-把自己掌握,http://em.21dtv.com/songs/60101634.mkv +张清芳-把自己敲醒,http://em.21dtv.com/songs/60009608.mkv +陈诗妮-把自己灌醉,http://em.21dtv.com/songs/60127565.mkv +徐在明-把自己灌醉,http://em.21dtv.com/songs/60113515.mkv +陈戈-把自己灌醉,http://em.21dtv.com/songs/60009607.mkv +刘媛媛-不曾见过你,http://em.21dtv.com/songs/60082683.mkv +杨丞琳-被自己绑架,http://em.21dtv.com/songs/60081729.mkv +王昊-不做花心男,http://em.21dtv.com/songs/60074814.mkv +郭丽霞-不做黄脸婆,http://em.21dtv.com/songs/60108061.mkv +佚名-别再跟着我,http://em.21dtv.com/songs/60010759.mkv +陈小春-不在服务区,http://em.21dtv.com/songs/60011770.mkv +沈芳如-变质的幸福,http://em.21dtv.com/songs/60010530.mkv +周俊伟-不做单身汉,http://em.21dtv.com/songs/60087578.mkv +周俊伟-不作单身汉,http://em.21dtv.com/songs/60011813.mkv +佚名-杯中的目屎(无原唱),http://em.21dtv.com/songs/60010102.mkv +王浩-爆炸的玫瑰,http://em.21dtv.com/songs/60074635.mkv +黄鸿升-变奏的浪漫,http://em.21dtv.com/songs/60080167.mkv +黄义达-变质的感情,http://em.21dtv.com/songs/60010529.mkv +小松拓也-不知道方向(无原唱),http://em.21dtv.com/songs/60011793.mkv +郭采洁-爆炸的沉默,http://em.21dtv.com/songs/60069244.mkv +佚名-编织的爱心,http://em.21dtv.com/songs/60010480.mkv +戴梅君-标准的爱人,http://em.21dtv.com/songs/60095537.mkv +财部有辉-butter-fly振翅高飞(无原唱),http://em.21dtv.com/songs/60000746.mkv +江蕙-半醉半清醒,http://em.21dtv.com/songs/60095726.mkv +龙千玉+高向鹏-半知半了解,http://em.21dtv.com/songs/60009908.mkv +袁凤瑛-不知不觉间,http://em.21dtv.com/songs/60011790.mkv +林子娟-不曾爱过我,http://em.21dtv.com/songs/60086474.mkv +佚名-包着爱的心,http://em.21dtv.com/songs/60009956.mkv +佚名-保重啊爱人(探戈),http://em.21dtv.com/songs/60010035.mkv +蔡国权-不应再犹豫,http://em.21dtv.com/songs/60011691.mkv +陈浩德-不应再犹豫(演唱会),http://em.21dtv.com/songs/60011690.mkv +赵真-不要再想我,http://em.21dtv.com/songs/60011648.mkv +东野-不要再想她,http://em.21dtv.com/songs/60086566.mkv +王可-不要再想你,http://em.21dtv.com/songs/60071803.mkv +李丽珍-不应再想你,http://em.21dtv.com/songs/60011689.mkv +李健-八月照相馆(演唱会),http://em.21dtv.com/songs/60009497.mkv +段千寻-不要再欺骗,http://em.21dtv.com/songs/60011641.mkv +晨熙-不要再骗我,http://em.21dtv.com/songs/60080922.mkv +湘东雨-不要再骗我,http://em.21dtv.com/songs/60074794.mkv +臧天朔-别一种美丽,http://em.21dtv.com/songs/60091910.mkv +烁嘉-不要做离人,http://em.21dtv.com/songs/60074796.mkv +洛天依-百亿兆狂热,http://em.21dtv.com/songs/60128175.mkv +田亚霍-不要再见面,http://em.21dtv.com/songs/60135582.mkv +田亚霍-不要再见面,http://em.21dtv.com/songs/60132750.mkv +田亚霍-不要再见面,http://em.21dtv.com/songs/60131687.mkv +徐佳莹-不要再孤单,http://em.21dtv.com/songs/60125559.mkv +张崇基+张崇德-抱拥这份钟(演唱会),http://em.21dtv.com/songs/60063965.mkv +陈奕迅-抱拥这分钟,http://em.21dtv.com/songs/60010074.mkv +纪佳松+曾沛慈-不要再打了,http://em.21dtv.com/songs/60096426.mkv +张斯斯+李贺-不要再沉默,http://em.21dtv.com/songs/60066891.mkv +储毅-不愿意想起,http://em.21dtv.com/songs/60108312.mkv +陈小春-比永远更远,http://em.21dtv.com/songs/60074665.mkv +满文军-不愿一个人,http://em.21dtv.com/songs/60098604.mkv +六弦+范玮琪-不愿一个人,http://em.21dtv.com/songs/60094817.mkv +苏永康-不愿一个人,http://em.21dtv.com/songs/60093079.mkv +B2-不要一个人,http://em.21dtv.com/songs/60092137.mkv +范玮琪+六弦-不愿一个人,http://em.21dtv.com/songs/60081778.mkv +周华健-不愿一个人,http://em.21dtv.com/songs/60011722.mkv +梁汉文-不愿一个人,http://em.21dtv.com/songs/60011721.mkv +梁汉文-不愿一个人(演唱会),http://em.21dtv.com/songs/60011720.mkv +陈奕迅+杨千嬅+梁汉文-不一样的夏,http://em.21dtv.com/songs/60011680.mkv +李华-不一样的我,http://em.21dtv.com/songs/60132525.mkv +七朵组合-不一样的我,http://em.21dtv.com/songs/60112483.mkv +张柏芝-不一样的我,http://em.21dtv.com/songs/60011679.mkv +陈芷盈-不一样的爱,http://em.21dtv.com/songs/60124652.mkv +罗美玲-不一样的爱,http://em.21dtv.com/songs/60011676.mkv +陈明真-不愿也不甘(无原唱),http://em.21dtv.com/songs/60096000.mkv +陈怡真-不愿也不甘(无原唱),http://em.21dtv.com/songs/60011719.mkv +伍佰-不要想太多,http://em.21dtv.com/songs/60090582.mkv +谭圳-不愿想起你,http://em.21dtv.com/songs/60062978.mkv +佚名-不愿心空虚,http://em.21dtv.com/songs/60095388.mkv +佚名-不愿心空虚(无原唱),http://em.21dtv.com/songs/60011718.mkv +贺一航-抱一下就好,http://em.21dtv.com/songs/60134243.mkv +郑志勇+陈姝娜-不愿醒的梦,http://em.21dtv.com/songs/60127471.mkv +[Group] +groupName=十六万歌曲MV等 - 66 +谢天笑-把夜晚染黑,http://em.21dtv.com/songs/60082571.mkv +潘玮柏-不要忘了我,http://em.21dtv.com/songs/60011626.mkv +唐子晴-不要忘记笑,http://em.21dtv.com/songs/60125324.mkv +纪佳松-不要忘记我,http://em.21dtv.com/songs/60094246.mkv +孟子焱+白露娜-不要忘记我,http://em.21dtv.com/songs/60082677.mkv +张智霖-别要我放弃,http://em.21dtv.com/songs/60010748.mkv +沙宝亮-被遗忘的人,http://em.21dtv.com/songs/60010306.mkv +蒋蒋-被遗忘的街,http://em.21dtv.com/songs/60081004.mkv +关浩-不要太任性,http://em.21dtv.com/songs/60109165.mkv +盖鸣晖+吴美英-拜月亭-哭灵,http://em.21dtv.com/songs/60009826.mkv +沈志豪-拨一通电话,http://em.21dtv.com/songs/60119756.mkv +佚名-不要说再见,http://em.21dtv.com/songs/60011619.mkv +蔡恒-不要说再见,http://em.21dtv.com/songs/60011618.mkv +GOGO+MEME-不要说再见,http://em.21dtv.com/songs/60011617.mkv +王菲-哔一声之后,http://em.21dtv.com/songs/60010433.mkv +严淑明-不要说我坏,http://em.21dtv.com/songs/60011616.mkv +温兆伦-不要失去你,http://em.21dtv.com/songs/60091624.mkv +明阳-不愿失去你,http://em.21dtv.com/songs/60087931.mkv +郑智化-不要说黎明,http://em.21dtv.com/songs/60011614.mkv +汪苏泷-不要睡懒觉,http://em.21dtv.com/songs/60081173.mkv +覃春江-不要说分手,http://em.21dtv.com/songs/60068147.mkv +杨乃文-不要说出去,http://em.21dtv.com/songs/60088060.mkv +佚名-白云山传奇,http://em.21dtv.com/songs/60009759.mkv +陈慧琳-不要说抱歉,http://em.21dtv.com/songs/60011610.mkv +张震岳-不要说爱我,http://em.21dtv.com/songs/60071802.mkv +许楚涵-不要说爱我,http://em.21dtv.com/songs/60011609.mkv +苏慧伦-不要说爱我,http://em.21dtv.com/songs/60011608.mkv +李湘-不用说爱你,http://em.21dtv.com/songs/60011697.mkv +陈慧琳+许志安+雷颂德-不要让我停,http://em.21dtv.com/songs/60011604.mkv +刘牧-不要气身体,http://em.21dtv.com/songs/60069280.mkv +TEEN TOP-不要喷香水,http://em.21dtv.com/songs/60061079.mkv +阿弟+童冰玉-不要骗小孩,http://em.21dtv.com/songs/60011595.mkv +洪禄云+陈水林-不要抛弃我,http://em.21dtv.com/songs/60082676.mkv +青山-不要抛弃我(演唱会),http://em.21dtv.com/songs/60082675.mkv +郑锦昌-不要抛弃我(演唱会),http://em.21dtv.com/songs/60074786.mkv +佚名-不要抛弃我,http://em.21dtv.com/songs/60011591.mkv +刘明珠-不要抛弃我,http://em.21dtv.com/songs/60011590.mkv +刘明珠-不要抛弃我(演唱会),http://em.21dtv.com/songs/60011589.mkv +曾惜-不要你为难,http://em.21dtv.com/songs/60125657.mkv +曾惜-不要你为难,http://em.21dtv.com/songs/60110247.mkv +黄鹤翔-不愿你离去,http://em.21dtv.com/songs/60062488.mkv +刘沁-不要你离去(无原唱),http://em.21dtv.com/songs/60011585.mkv +韩一菲-不要迷恋姐,http://em.21dtv.com/songs/60074785.mkv +张彦子-不要迷恋姐,http://em.21dtv.com/songs/60068146.mkv +张宇-不要来找我,http://em.21dtv.com/songs/60097505.mkv +余帝-不愿两头飞,http://em.21dtv.com/songs/60017231.mkv +李常超-不要离开我,http://em.21dtv.com/songs/60111972.mkv +门丽-不要离开我,http://em.21dtv.com/songs/60094320.mkv +王宏恩-不要离开我,http://em.21dtv.com/songs/60011575.mkv +LITY林天伟-不要离开我,http://em.21dtv.com/songs/60011574.mkv +高山林-不要离开我,http://em.21dtv.com/songs/60011573.mkv +李乐诗-不要看透我,http://em.21dtv.com/songs/60011567.mkv +陈笑风+陈笑风-宝玉哭晴雯(戏曲),http://em.21dtv.com/songs/60093495.mkv +佚名-不愿哭出声(无原唱),http://em.21dtv.com/songs/60011715.mkv +熊志鹏-毕业季之歌,http://em.21dtv.com/songs/60115280.mkv +何静-不要叫我走,http://em.21dtv.com/songs/60011560.mkv +郑超-不要借我钱,http://em.21dtv.com/songs/60011561.mkv +刘广-八一军旗红,http://em.21dtv.com/songs/60106641.mkv +庄淑君-不愿甲你煞(无原唱),http://em.21dtv.com/songs/60071452.mkv +韩伟-毕业纪念日,http://em.21dtv.com/songs/60010422.mkv +City魅-毕业纪念册,http://em.21dtv.com/songs/60101745.mkv +优客李林-毕业纪念册,http://em.21dtv.com/songs/60087296.mkv +林志炫-毕业纪念册,http://em.21dtv.com/songs/60010421.mkv +范玉阳-不韵脚的爱,http://em.21dtv.com/songs/60130694.mkv +柳絮-不要怀疑我,http://em.21dtv.com/songs/60084936.mkv +林玉英-不愿乎你娶,http://em.21dtv.com/songs/60095683.mkv +佚名-不愿乎你娶(无原唱),http://em.21dtv.com/songs/60011713.mkv +苏盈之-不应该勇敢,http://em.21dtv.com/songs/60082679.mkv +大支+EAC-毕业干什么,http://em.21dtv.com/songs/60010418.mkv +佚名-八月桂花香,http://em.21dtv.com/songs/60009495.mkv +马浚伟-不应该发生,http://em.21dtv.com/songs/60011687.mkv +叶倩文-不要关电视,http://em.21dtv.com/songs/60011557.mkv +叶倩文-不要关电视(演唱会),http://em.21dtv.com/songs/60011556.mkv +梁雁翎-不应该的爱,http://em.21dtv.com/songs/60011686.mkv +蔡小虎-不应该爱你,http://em.21dtv.com/songs/60011685.mkv +尹光+胡美义-宝玉访香环,http://em.21dtv.com/songs/60010013.mkv +林军-不要放弃哟Baby,http://em.21dtv.com/songs/60097506.mkv +王宏恩-不用担心我,http://em.21dtv.com/songs/60125912.mkv +易影峰-白云的心情,http://em.21dtv.com/songs/60069238.mkv +程响-不要对我说,http://em.21dtv.com/songs/60107933.mkv +程响-不要对我说,http://em.21dtv.com/songs/60084935.mkv +刘德华-不要带他走,http://em.21dtv.com/songs/60011534.mkv +张信哲-不要对他说,http://em.21dtv.com/songs/60011540.mkv +叶倩文-不要对他说(演唱会),http://em.21dtv.com/songs/60011539.mkv +容祖儿-不要对他说(演唱会),http://em.21dtv.com/songs/60011538.mkv +贺燕-白云的诉说,http://em.21dtv.com/songs/60127430.mkv +关诗敏-不远的情人,http://em.21dtv.com/songs/60115014.mkv +关诗敏-不远的情人,http://em.21dtv.com/songs/60113272.mkv +韦唯-半圆的镜子,http://em.21dtv.com/songs/60009906.mkv +于文华-不要惦记家,http://em.21dtv.com/songs/60011536.mkv +杨洪基-白云的故乡,http://em.21dtv.com/songs/60009756.mkv +李琼-白云的故乡,http://em.21dtv.com/songs/60009755.mkv +陈思思-布依的春天(演唱会),http://em.21dtv.com/songs/60011832.mkv +费玉清-白云长在天,http://em.21dtv.com/songs/60009761.mkv +佚名-不要吵醒他(无原唱),http://em.21dtv.com/songs/60011529.mkv +方炯嘉-不要唱情歌,http://em.21dtv.com/songs/60105101.mkv +许靖韵-不要吃花生,http://em.21dtv.com/songs/60128401.mkv +陈艺搏-不愿错过你,http://em.21dtv.com/songs/60113072.mkv +干露露+魏俫-不要错过爱,http://em.21dtv.com/songs/60094084.mkv +罗心洁+宪明-不要错过爱,http://em.21dtv.com/songs/60061076.mkv +徐小凤-不夜城传奇,http://em.21dtv.com/songs/60063209.mkv +陈国宁-不要不快乐,http://em.21dtv.com/songs/60088856.mkv +崔莲姬-不要不爱我,http://em.21dtv.com/songs/60062303.mkv +温岚-不要爱上我,http://em.21dtv.com/songs/60011519.mkv +李孝利-不要爱上他,http://em.21dtv.com/songs/60011518.mkv +思小妞-不要爱情了,http://em.21dtv.com/songs/60069277.mkv +金海心-把鞋子甩掉(演唱会),http://em.21dtv.com/songs/60009596.mkv +南建雄-奔向最前方,http://em.21dtv.com/songs/60128855.mkv +董小七-不想再流浪,http://em.21dtv.com/songs/60124431.mkv +庄心妍-不想做决定,http://em.21dtv.com/songs/60111840.mkv +甲子蕙-变心找别人,http://em.21dtv.com/songs/60010526.mkv +刘朋-不想再爱你,http://em.21dtv.com/songs/60074774.mkv +杨海彪-不想再爱了(演唱会),http://em.21dtv.com/songs/60011487.mkv +郭静-不想有遗憾,http://em.21dtv.com/songs/60112313.mkv +陈珂冰+陈威全-不需要勇敢,http://em.21dtv.com/songs/60074778.mkv +李思捷+王祖蓝+阮兆祥-爆笑一条龙,http://em.21dtv.com/songs/60063967.mkv +徐若瑄-不需要理由,http://em.21dtv.com/songs/60011507.mkv +黄征-不需要恨你,http://em.21dtv.com/songs/60064016.mkv +王大宇-不想一个人,http://em.21dtv.com/songs/60135541.mkv +潘赢-不想一个人,http://em.21dtv.com/songs/60064013.mkv +大宇-不想一个人,http://em.21dtv.com/songs/60061075.mkv +顺子-不想一个人,http://em.21dtv.com/songs/60011484.mkv +谢霆锋-不需要安慰,http://em.21dtv.com/songs/60011506.mkv +刘德华-不需要爱情,http://em.21dtv.com/songs/60011505.mkv +TWINS-不需要爱情,http://em.21dtv.com/songs/60011504.mkv +刘德华-不需要爱情(演唱会),http://em.21dtv.com/songs/60011503.mkv +巫启贤-不相信自己,http://em.21dtv.com/songs/60011445.mkv +苏慧伦-不想想太多,http://em.21dtv.com/songs/60011482.mkv +李玟-不相信爱情,http://em.21dtv.com/songs/60089961.mkv +李代沫-不相信爱情,http://em.21dtv.com/songs/60082666.mkv +宋晓峰-别笑我光棍,http://em.21dtv.com/songs/60115863.mkv +费玉清-不许他回家,http://em.21dtv.com/songs/60011511.mkv +张伟文-不许他回家(演唱会),http://em.21dtv.com/songs/60011510.mkv +黄品源-不想说再见,http://em.21dtv.com/songs/60117408.mkv +房祖名+郭采洁-不想说再见,http://em.21dtv.com/songs/60081877.mkv +腾格尔-不想说再见,http://em.21dtv.com/songs/60011480.mkv +刘依纯-不想说再见(无原唱),http://em.21dtv.com/songs/60011479.mkv +罗逻圣-不想说太多,http://em.21dtv.com/songs/60107113.mkv +刘愉愉-不想失去你,http://em.21dtv.com/songs/60094005.mkv +张学友-不想失去你,http://em.21dtv.com/songs/60011474.mkv +祁隆-不想说后悔,http://em.21dtv.com/songs/60101457.mkv +郑中基-不许人占有,http://em.21dtv.com/songs/60011509.mkv +李林平-不想让你走,http://em.21dtv.com/songs/60133804.mkv +徐婕儿-不想让你走,http://em.21dtv.com/songs/60011472.mkv +王强-不想让你哭,http://em.21dtv.com/songs/60011470.mkv +金子嫣-把心瞧一瞧(无原唱),http://em.21dtv.com/songs/60009601.mkv +卢广仲-不想去远方,http://em.21dtv.com/songs/60061073.mkv +孙艳-不想去想你,http://em.21dtv.com/songs/60099928.mkv +波拉-不想去想你,http://em.21dtv.com/songs/60086472.mkv +卓依婷-八仙齐拜年,http://em.21dtv.com/songs/60071764.mkv +陈琳-不想骗自己,http://em.21dtv.com/songs/60011469.mkv +陈琳-不想骗自己(演唱会),http://em.21dtv.com/songs/60011468.mkv +周子琪-不想陪你睡,http://em.21dtv.com/songs/60011467.mkv +张清芳-不想你也难,http://em.21dtv.com/songs/60011466.mkv +林采缇-拜心女王(舞蹈版),http://em.21dtv.com/songs/60081790.mkv +杨林-不想恋爱了,http://em.21dtv.com/songs/60011464.mkv +雷佳-百姓记着你(演唱会),http://em.21dtv.com/songs/60074605.mkv +莫华伦+吕薇+中国传媒大学合唱团-把心交给你,http://em.21dtv.com/songs/60109598.mkv +莫华伦+吕薇-把心交给你,http://em.21dtv.com/songs/60109597.mkv +莫华伦+吕薇+中国传媒大学合唱团-把心交给你,http://em.21dtv.com/songs/60108854.mkv +李琛-把心交出来,http://em.21dtv.com/songs/60088036.mkv +潘嘉丽-本小姐不爱,http://em.21dtv.com/songs/60010331.mkv +李亮超+叶钟晴-不想和你吵,http://em.21dtv.com/songs/60081050.mkv +阎琰-把心还给我,http://em.21dtv.com/songs/60066840.mkv +庄心妍-不想管太多,http://em.21dtv.com/songs/60098326.mkv +SKG女团-别像个男孩,http://em.21dtv.com/songs/60097562.mkv +陈势安-不习惯喊痛,http://em.21dtv.com/songs/60064010.mkv +张惠妹-不像个大人(演唱会),http://em.21dtv.com/songs/60011492.mkv +群星-奔向风雨中,http://em.21dtv.com/songs/60081139.mkv +伊龙-不想放弃你,http://em.21dtv.com/songs/60114994.mkv +萧亚轩-把心放进来,http://em.21dtv.com/songs/60009597.mkv +侯旭-把幸福给你,http://em.21dtv.com/songs/60074577.mkv +孙楠-把幸福给你,http://em.21dtv.com/songs/60063952.mkv +蔡健雅-被驯服的象,http://em.21dtv.com/songs/60081844.mkv +TENSION-别想挡住我,http://em.21dtv.com/songs/60010742.mkv +叶蓓-b小调雨后(演唱会),http://em.21dtv.com/songs/60000763.mkv +邬兆邦-变心的心肝,http://em.21dtv.com/songs/60086458.mkv +SNH48-不想多伟大,http://em.21dtv.com/songs/60104728.mkv +冰雪姐妹-冰雪的思念,http://em.21dtv.com/songs/60070538.mkv +方瑞娥-变心的前兆,http://em.21dtv.com/songs/60095549.mkv +乔冠霖-不想戴面具,http://em.21dtv.com/songs/60134855.mkv +崎君-变心的玫瑰,http://em.21dtv.com/songs/60010523.mkv +佚名-必巡的孔嘴,http://em.21dtv.com/songs/60010416.mkv +陈盈洁-必巡的孔嘴,http://em.21dtv.com/songs/60010415.mkv +董文华-不朽的黄河,http://em.21dtv.com/songs/60011502.mkv +陈明真-变心的翅膀,http://em.21dtv.com/songs/60010522.mkv +0086男团-不想错过你,http://em.21dtv.com/songs/60074767.mkv +何鹏-百姓比天大,http://em.21dtv.com/songs/60130084.mkv +何鹏-百姓比天大,http://em.21dtv.com/songs/60117547.mkv +孙建华-兵心伴草原,http://em.21dtv.com/songs/60111805.mkv +S.H.E-不想被猜透,http://em.21dtv.com/songs/60090415.mkv +杨千桦-不信爱有罪,http://em.21dtv.com/songs/60092828.mkv +梅艳芳-不信爱有罪,http://em.21dtv.com/songs/60011499.mkv +昊龙-不想爱与恨,http://em.21dtv.com/songs/60080541.mkv +伍咏薇-不想爱失去,http://em.21dtv.com/songs/60011452.mkv +王祝海-本无意流泪,http://em.21dtv.com/songs/60121935.mkv +宋沛江-抱我一分钟,http://em.21dtv.com/songs/60127913.mkv +宋沛江-抱我一分钟,http://em.21dtv.com/songs/60128995.mkv +胡小宝-别问我是谁,http://em.21dtv.com/songs/60113973.mkv +王馨平-别问我是谁,http://em.21dtv.com/songs/60010734.mkv +郑源-别问我是谁(演唱会),http://em.21dtv.com/songs/60010733.mkv +唐志星-别问我借钱,http://em.21dtv.com/songs/60133510.mkv +刘和刚-别问我军龄,http://em.21dtv.com/songs/60010732.mkv +杨清明-别问我何求,http://em.21dtv.com/songs/60125757.mkv +杨清明-别问我何求,http://em.21dtv.com/songs/60122890.mkv +彭佳慧-别问我爱谁,http://em.21dtv.com/songs/60010730.mkv +NEW BOYZ-better with the lights off,http://em.21dtv.com/songs/60060767.mkv +高洪章-把我送给你(演唱会),http://em.21dtv.com/songs/60061035.mkv +杨宗宪-别问阮的名,http://em.21dtv.com/songs/60026419.mkv +谭咏麟-帮我欺骗我,http://em.21dtv.com/songs/60009939.mkv +江映蓉-把握你的美,http://em.21dtv.com/songs/60088195.mkv +小老头-不忘你的名,http://em.21dtv.com/songs/60086287.mkv +GENTLEMAN-不完美绅士,http://em.21dtv.com/songs/60108223.mkv +周冬雨-不完美女孩,http://em.21dtv.com/songs/60131266.mkv +田野-不忘老百姓,http://em.21dtv.com/songs/60109551.mkv +辛晓琪-别问旧伤口,http://em.21dtv.com/songs/60010728.mkv +黄品源-别忘记联络,http://em.21dtv.com/songs/60010723.mkv +黄品源-别忘记联络(演唱会),http://em.21dtv.com/songs/60010722.mkv +佚名-不忘阶级苦,http://em.21dtv.com/songs/60011434.mkv +曾桂英-把握后生时,http://em.21dtv.com/songs/60009593.mkv +周杰伦-爸我回来了,http://em.21dtv.com/songs/60009639.mkv +孙子涵-把我还给我,http://em.21dtv.com/songs/60080711.mkv +齐鹏-baby我还爱着你,http://em.21dtv.com/songs/60082078.mkv +游小龙-北纬28度,http://em.21dtv.com/songs/60120733.mkv +欧阳尚尚-保卫钓鱼岛,http://em.21dtv.com/songs/60069243.mkv +于浩宸-保卫钓鱼岛,http://em.21dtv.com/songs/60065839.mkv +栗子-保卫钓鱼岛,http://em.21dtv.com/songs/60010029.mkv +张恒远-卑微的荣耀,http://em.21dtv.com/songs/60105843.mkv +张恒远-卑微的荣耀,http://em.21dtv.com/songs/60097602.mkv +火红-变味的咖啡,http://em.21dtv.com/songs/60074678.mkv +小龙-变味的咖啡,http://em.21dtv.com/songs/60010516.mkv +谢朋举+超女-把我带回家,http://em.21dtv.com/songs/60009587.mkv +徐浩-卑微的存在,http://em.21dtv.com/songs/60122765.mkv +乔洋-卑微的承诺,http://em.21dtv.com/songs/60010107.mkv +许茹芸-北纬66度,http://em.21dtv.com/songs/60010233.mkv +李婷婷-把我抱起来,http://em.21dtv.com/songs/60080214.mkv +徐申东-不枉爱一场,http://em.21dtv.com/songs/60097504.mkv +李建衡-别为爱漂流,http://em.21dtv.com/songs/60010725.mkv +佚名-because we are in love,http://em.21dtv.com/songs/60000529.mkv +欣新-把我爱个够,http://em.21dtv.com/songs/60109472.mkv +白安-半调子人生,http://em.21dtv.com/songs/60104333.mkv +卢凯彤-不脱知女生,http://em.21dtv.com/songs/60061071.mkv +尚雯婕-被偷走的爱,http://em.21dtv.com/songs/60010305.mkv +侧田-best that you can do(演唱会),http://em.21dtv.com/songs/60000559.mkv +佚名-不通想抹开,http://em.21dtv.com/songs/60095390.mkv +尤雅-不通想抹开,http://em.21dtv.com/songs/60011419.mkv +的歌老盖-别太小看我,http://em.21dtv.com/songs/60063982.mkv +碧娜-别太晚回家,http://em.21dtv.com/songs/60113907.mkv +TANYA TUCKER-between the two of them,http://em.21dtv.com/songs/60000573.mkv +萧波-不通请爱我,http://em.21dtv.com/songs/60088571.mkv +张学友-别提你的心(演唱会),http://em.21dtv.com/songs/60010720.mkv +BRITNEY SPEARS-born to make you happy,http://em.21dtv.com/songs/60000664.mkv +张杰-半透明的墙,http://em.21dtv.com/songs/60063960.mkv +曹方-比天空还远,http://em.21dtv.com/songs/60087951.mkv +孙淑媚-不通将阮放,http://em.21dtv.com/songs/60011414.mkv +啸波-不通讲爱我,http://em.21dtv.com/songs/60011415.mkv +BEYONCE-best thing i never had,http://em.21dtv.com/songs/60060766.mkv +侧田-best thing in my life(演唱会),http://em.21dtv.com/songs/60000560.mkv +ADAM LAMBERT-better than i know myself,http://em.21dtv.com/songs/60073030.mkv +孟庭苇-把他换作你,http://em.21dtv.com/songs/60009586.mkv +龙剑笙-白兔会相遇,http://em.21dtv.com/songs/60074597.mkv +沙宝亮-比痛更美丽,http://em.21dtv.com/songs/60090043.mkv +林威成-不通搁痴呆(无原唱),http://em.21dtv.com/songs/60095661.mkv +BY2-白兔儿乖乖,http://em.21dtv.com/songs/60074596.mkv +吴淑敏-不同的月娘,http://em.21dtv.com/songs/60011421.mkv +STEPS-better the devil you know,http://em.21dtv.com/songs/60000572.mkv +孟庭苇-白天的星星,http://em.21dtv.com/songs/60009740.mkv +林淑慧-悲叹的筒箫(无原唱),http://em.21dtv.com/songs/60010150.mkv +羽泉-白天的思念,http://em.21dtv.com/songs/60009739.mkv +沈芳如-变调的恋情,http://em.21dtv.com/songs/60112058.mkv +陈雷-不通闯红灯,http://em.21dtv.com/songs/60011412.mkv +张敬轩-不同班同学,http://em.21dtv.com/songs/60133659.mkv +张敬轩-不同班同学,http://em.21dtv.com/songs/60130315.mkv +张敬轩-不同班同学,http://em.21dtv.com/songs/60127977.mkv +天悦-不痛不痛快,http://em.21dtv.com/songs/60074764.mkv +D.CHILD-R.SAMBORA-born to be my baby(无原唱),http://em.21dtv.com/songs/60000661.mkv +朴一泽-拜托别爱我,http://em.21dtv.com/songs/60066847.mkv +周灵燕-卜算子咏梅,http://em.21dtv.com/songs/60089744.mkv +E歌-别说做朋友,http://em.21dtv.com/songs/60010716.mkv +胜屿-悲伤专卖店,http://em.21dtv.com/songs/60079980.mkv +伊能静-悲伤茱丽叶,http://em.21dtv.com/songs/60010149.mkv +苏永康-不说真的好,http://em.21dtv.com/songs/60091939.mkv +Base Ball Bear-不思议な夜,http://em.21dtv.com/songs/60116438.mkv +锁曼丽-悲伤圆舞曲,http://em.21dtv.com/songs/60081687.mkv +叶德娴-不舍也为爱,http://em.21dtv.com/songs/60092424.mkv +张敬轩-不舍也为爱,http://em.21dtv.com/songs/60074753.mkv +黄凯芹-不舍也为爱(演唱会),http://em.21dtv.com/songs/60011353.mkv +MC仁+叶德娴+刘小华-半生缘人物,http://em.21dtv.com/songs/60133244.mkv +莫镇贤-不是有情人,http://em.21dtv.com/songs/60088565.mkv +戴爱玲-闭上眼睛爱,http://em.21dtv.com/songs/60087900.mkv +张婧-不是一个人,http://em.21dtv.com/songs/60061070.mkv +格桑英妮+董阳-把岁月点亮,http://em.21dtv.com/songs/60107834.mkv +雷龙+吕飞+董阳+格桑英妮-把岁月点亮,http://em.21dtv.com/songs/60101702.mkv +合唱-把岁月点亮,http://em.21dtv.com/songs/60099859.mkv +吕彪-不属于的爱,http://em.21dtv.com/songs/60128883.mkv +王瑞霞-悲伤小夜曲(无原唱),http://em.21dtv.com/songs/60010146.mkv +檀欢-百善孝为先,http://em.21dtv.com/songs/60108648.mkv +丁晓红-百善孝为先,http://em.21dtv.com/songs/60104758.mkv +信乐团+动力火车-不死心还在,http://em.21dtv.com/songs/60011403.mkv +袁咏琳-把伤心打碎,http://em.21dtv.com/songs/60063314.mkv +袁洁莹-别说我心碎,http://em.21dtv.com/songs/60010712.mkv +林建予-不爽忘记你,http://em.21dtv.com/songs/60124130.mkv +郑少秋-不是我的错,http://em.21dtv.com/songs/60011386.mkv +姜海龙-不是我不累,http://em.21dtv.com/songs/60133546.mkv +南风-不是我不累,http://em.21dtv.com/songs/60133434.mkv +曾静玟-别说我不懂,http://em.21dtv.com/songs/60074696.mkv +晓晓-不是我不爱,http://em.21dtv.com/songs/60011380.mkv +访玉-不是我不爱,http://em.21dtv.com/songs/60011379.mkv +汤兴路-别说我爱你,http://em.21dtv.com/songs/60094569.mkv +佚名-不松铁拳头,http://em.21dtv.com/songs/60011405.mkv +郭欢-悲伤四十度,http://em.21dtv.com/songs/60110587.mkv +钟明艺-悲伤失落感,http://em.21dtv.com/songs/60114160.mkv +吴迪-悲伤式结束,http://em.21dtv.com/songs/60082600.mkv +王迪-不是说好吗,http://em.21dtv.com/songs/60070547.mkv +夏拉-白色圣诞夜,http://em.21dtv.com/songs/60117635.mkv +洪荣宏-别伤阮的心(无原唱),http://em.21dtv.com/songs/60010686.mkv +石筱群-白色情人梦,http://em.21dtv.com/songs/60117951.mkv +马建涛-白色情人节,http://em.21dtv.com/songs/60074592.mkv +崔伟亮-白色情人节,http://em.21dtv.com/songs/60068094.mkv +PHIL COLLINS-both sides of the story,http://em.21dtv.com/songs/60000666.mkv +林芸-别说你要走,http://em.21dtv.com/songs/60010704.mkv +卓依婷-不是你情人,http://em.21dtv.com/songs/60064009.mkv +姜小曼-不是你的菜,http://em.21dtv.com/songs/60116689.mkv +张卫健-不是你的错,http://em.21dtv.com/songs/60082664.mkv +丁当-不是你的错,http://em.21dtv.com/songs/60066885.mkv +黄可儿-不是你不好,http://em.21dtv.com/songs/60011373.mkv +方季惟-别说你不懂,http://em.21dtv.com/songs/60091260.mkv +叶忆铃-别说你爱我,http://em.21dtv.com/songs/60109209.mkv +王雯萱-别说你爱我,http://em.21dtv.com/songs/60010700.mkv +郭富城-冰山梦美人(无原唱),http://em.21dtv.com/songs/60010838.mkv +韦礼安-别说没爱过,http://em.21dtv.com/songs/60116359.mkv +后弦-白色恋习曲,http://em.21dtv.com/songs/60087540.mkv +赵姝-悲伤轮舞曲,http://em.21dtv.com/songs/60101174.mkv +欧汉声-把世界当掉,http://em.21dtv.com/songs/60088160.mkv +高向鹏+方瑞娥-不是好野人,http://em.21dtv.com/songs/60011367.mkv +代理仁-不是韩文歌,http://em.21dtv.com/songs/60011366.mkv +赵学而-不是坏女孩,http://em.21dtv.com/songs/60011368.mkv +焦靖峰-别伤害妈妈,http://em.21dtv.com/songs/60110359.mkv +尚雯婕-悲伤华尔兹(演唱会),http://em.21dtv.com/songs/60010142.mkv +周占超-别说感情累,http://em.21dtv.com/songs/60113334.mkv +方怡萍-变色风飞沙,http://em.21dtv.com/songs/60068117.mkv +卓定涛-白色帆布鞋,http://em.21dtv.com/songs/60009711.mkv +郑少秋-不死的真爱(演唱会),http://em.21dtv.com/songs/60011401.mkv +陈雷-悲伤的雨水,http://em.21dtv.com/songs/60127568.mkv +阳帆-变色的眼睛,http://em.21dtv.com/songs/60090280.mkv +岳雷-变色的眼睛,http://em.21dtv.com/songs/60089827.mkv +张睿恩-比谁都勇敢,http://em.21dtv.com/songs/60010381.mkv +林欣彤-本身的用处,http://em.21dtv.com/songs/60112797.mkv +枫舞+相容-悲伤的小雨,http://em.21dtv.com/songs/60135447.mkv +萧润邦-背上的肖像,http://em.21dtv.com/songs/60089464.mkv +OSCAR-背上的肖像,http://em.21dtv.com/songs/60010257.mkv +兰馨-悲伤的香味,http://em.21dtv.com/songs/60084890.mkv +林艺锋-悲伤的向往,http://em.21dtv.com/songs/60082598.mkv +傅振辉+金佩珊-白色的围巾(无原唱),http://em.21dtv.com/songs/60009709.mkv +佚名-白色的太阳,http://em.21dtv.com/songs/60009708.mkv +刘立群-别说等太久,http://em.21dtv.com/songs/60099120.mkv +柯以柔-不说的誓言,http://em.21dtv.com/songs/60011399.mkv +崔泽飞-悲伤的神曲,http://em.21dtv.com/songs/60066861.mkv +张信哲-悲伤的嗜好,http://em.21dtv.com/songs/60010140.mkv +金海心-悲伤的秋千,http://em.21dtv.com/songs/60010139.mkv +谭咏麟-别说多情好,http://em.21dtv.com/songs/60010696.mkv +乔嘉-悲伤的情歌,http://em.21dtv.com/songs/60101870.mkv +好妹妹乐队-北上的列车,http://em.21dtv.com/songs/60079902.mkv +徐良-悲伤的李白,http://em.21dtv.com/songs/60081722.mkv +叶玉卿-不散的空虚,http://em.21dtv.com/songs/60011347.mkv +项正贵-悲伤的结局,http://em.21dtv.com/songs/60122270.mkv +甲子蕙-白色的婚纱,http://em.21dtv.com/songs/60009707.mkv +陈雷-悲伤的故事,http://em.21dtv.com/songs/60010137.mkv +边永城-不算大的雪,http://em.21dtv.com/songs/60135784.mkv +肖飞-别说对不起,http://em.21dtv.com/songs/60074695.mkv +ACE小虎-别说对不起,http://em.21dtv.com/songs/60061938.mkv +S.H.E-别说对不起,http://em.21dtv.com/songs/60010695.mkv +朱祝芬-白蛇传-合钵,http://em.21dtv.com/songs/60009730.mkv +周休八日-不擅长的事,http://em.21dtv.com/songs/60082662.mkv +佚名-白蛇传-断桥,http://em.21dtv.com/songs/60009729.mkv +金小曦-不是不愿意,http://em.21dtv.com/songs/60127500.mkv +任唯-不是不想念,http://em.21dtv.com/songs/60118318.mkv +这位太太-不是不想念,http://em.21dtv.com/songs/60011361.mkv +包蔓-不是不想嫁,http://em.21dtv.com/songs/60080082.mkv +赵小帅-白首不离难,http://em.21dtv.com/songs/60134264.mkv +单色凌+小凌-不是不可以,http://em.21dtv.com/songs/60127789.mkv +冯博娟-不是摆花街,http://em.21dtv.com/songs/60011356.mkv +周强-巴山背二哥,http://em.21dtv.com/songs/60009518.mkv +谢沛恩-不是不爱我,http://em.21dtv.com/songs/60071795.mkv +伟豪-不是不爱你,http://em.21dtv.com/songs/60080747.mkv +零点乐队-不是不爱你,http://em.21dtv.com/songs/60011358.mkv +闫寒-不是不爱了,http://em.21dtv.com/songs/60120051.mkv +刘德华+梅艳芳-别说爱情苦,http://em.21dtv.com/songs/60010690.mkv +辛晓琪-不如这样吧,http://em.21dtv.com/songs/60011343.mkv +赵真-不如做红颜,http://em.21dtv.com/songs/60112282.mkv +赵真-不如做红颜,http://em.21dtv.com/songs/60111417.mkv +郭桂彬+陈盈洁-不如一个人,http://em.21dtv.com/songs/60011339.mkv +天空-不忍心放手,http://em.21dtv.com/songs/60011318.mkv +镜喜-别让我再等,http://em.21dtv.com/songs/60113033.mkv +杨克强-别让我知道,http://em.21dtv.com/songs/60010667.mkv +郑中基-别让我心痛,http://em.21dtv.com/songs/60010662.mkv +郑中基-别让我心疼,http://em.21dtv.com/songs/60010661.mkv +郑进一+秀兰玛雅-别让我失望,http://em.21dtv.com/songs/60010659.mkv +任贤齐-别让我任性,http://em.21dtv.com/songs/60092243.mkv +梅南林-别让我难过,http://em.21dtv.com/songs/60065854.mkv +任贤齐-别让我寂寞,http://em.21dtv.com/songs/60010655.mkv +张振宇-别让我喝醉,http://em.21dtv.com/songs/60010653.mkv +陈洁仪-别让我恨你,http://em.21dtv.com/songs/60010654.mkv +猛虎巧克力-别让我孤单,http://em.21dtv.com/songs/60080674.mkv +林嵩-别让我孤独,http://em.21dtv.com/songs/60065853.mkv +高胜美-别让我等候,http://em.21dtv.com/songs/60065852.mkv +卢巧音-不如睡一睡,http://em.21dtv.com/songs/60011334.mkv +范文芳+张信哲-別让情两难,http://em.21dtv.com/songs/60091950.mkv +范文芳-别人情两难,http://em.21dtv.com/songs/60010684.mkv +张信哲+范文芳-别让情两难,http://em.21dtv.com/songs/60010649.mkv +囚鸟-不让你为难,http://em.21dtv.com/songs/60128928.mkv +洪川-不让你流泪,http://em.21dtv.com/songs/60125869.mkv +刘子涵-不让你孤单,http://em.21dtv.com/songs/60130116.mkv +艾夕皓-白日梦想家,http://em.21dtv.com/songs/60120874.mkv +艾夕皓-白日梦相机,http://em.21dtv.com/songs/60119906.mkv +小多-不如嫁给我,http://em.21dtv.com/songs/60063144.mkv +孙淑媚-伴阮过一生,http://em.21dtv.com/songs/60095504.mkv +周俊伟-别人都在传,http://em.21dtv.com/songs/60010683.mkv +孙淑媚-别人的心肝,http://em.21dtv.com/songs/60010681.mkv +董永鹏-别人的生活,http://em.21dtv.com/songs/60120918.mkv +叶倩文-别人的情歌(演唱会),http://em.21dtv.com/songs/60010677.mkv +陈大天-别人的女人,http://em.21dtv.com/songs/60108117.mkv +至上励合-别人的故事,http://em.21dtv.com/songs/60100402.mkv +夹子道-别人的故事,http://em.21dtv.com/songs/60010676.mkv +曾心梅-不如甭相识,http://em.21dtv.com/songs/60095580.mkv +龙千玉-不如甭熟悉,http://em.21dtv.com/songs/60011323.mkv +黄乙玲-不如甭熟识,http://em.21dtv.com/songs/60011322.mkv +陈晓东-般若波罗蜜,http://em.21dtv.com/songs/60009834.mkv +谭晶-八荣八耻歌,http://em.21dtv.com/songs/60009486.mkv +谢霆锋-不如爱自己,http://em.21dtv.com/songs/60092102.mkv +陈键锋-别让爱搁浅,http://em.21dtv.com/songs/60134425.mkv +杨斯壬-别让爱错过,http://em.21dtv.com/songs/60081235.mkv +郭少杰+干露露+干毛毛+干妈妈-把钱赚美了,http://em.21dtv.com/songs/60107279.mkv +郭少杰-把钱赚美了,http://em.21dtv.com/songs/60103628.mkv +程欣-别轻易说爱,http://em.21dtv.com/songs/60129459.mkv +张冬玲-别劝我放手,http://em.21dtv.com/songs/60127965.mkv +吴则文-别妻书-别妻,http://em.21dtv.com/songs/60010640.mkv +丁国琳-败犬美魔女,http://em.21dtv.com/songs/60066846.mkv +佚名-不屈的尊严,http://em.21dtv.com/songs/60011306.mkv +佚名-悲情的运命,http://em.21dtv.com/songs/60010132.mkv +袁小迪-悲情的呼声,http://em.21dtv.com/songs/60010131.mkv +叶俊麟-悲情的城市,http://em.21dtv.com/songs/60070529.mkv +罗时丰-悲情的城市,http://em.21dtv.com/songs/60010130.mkv +佚名-悲情的城市(演唱会),http://em.21dtv.com/songs/60010129.mkv +BERRYZ工房-本气ボンバー,http://em.21dtv.com/songs/60010326.mkv +田园-别怕我伤心,http://em.21dtv.com/songs/60135584.mkv +张信哲+岳云鹏-别怕我伤心,http://em.21dtv.com/songs/60133647.mkv +张信哲-别怕我伤心,http://em.21dtv.com/songs/60010637.mkv +陈小春-别碰我的人,http://em.21dtv.com/songs/60063978.mkv +罗文锦-别怕受伤害,http://em.21dtv.com/songs/60010636.mkv +常艾非-不配说爱我,http://em.21dtv.com/songs/60011295.mkv +韩信-被抛弃的人,http://em.21dtv.com/songs/60010300.mkv +山子华-不怕没人爱,http://em.21dtv.com/songs/60121607.mkv +陈盈洁-不平凡的爱,http://em.21dtv.com/songs/60096021.mkv +赵斐-奔跑的幸福,http://em.21dtv.com/songs/60111414.mkv +马艺航-奔跑的兄弟,http://em.21dtv.com/songs/60116396.mkv +胡建烽-奔跑的蜗牛,http://em.21dtv.com/songs/60129510.mkv +汤宝如-不平等条约,http://em.21dtv.com/songs/60011298.mkv +杨克强-背叛的伤害,http://em.21dtv.com/songs/60118704.mkv +刘原龙-背叛的女人,http://em.21dtv.com/songs/60087385.mkv +李菓-背叛的理由,http://em.21dtv.com/songs/60084898.mkv +张姄-奔跑的泪滴,http://em.21dtv.com/songs/60116785.mkv +贲小伟-背叛的感受,http://em.21dtv.com/songs/60082611.mkv +罗冰-奔跑的彩虹,http://em.21dtv.com/songs/60117119.mkv +王可-奔跑吧兄弟,http://em.21dtv.com/songs/60124247.mkv +秦御峰-奔跑吧兄弟,http://em.21dtv.com/songs/60119855.mkv +筷子兄弟-奔跑吧兄弟,http://em.21dtv.com/songs/60112870.mkv +筷子兄弟-奔跑吧兄弟,http://em.21dtv.com/songs/60108793.mkv +杨朗朗-奔跑吧兄弟,http://em.21dtv.com/songs/60106000.mkv +SNH48-奔跑吧少女,http://em.21dtv.com/songs/60124995.mkv +莫艳琳-奔跑吧青蛙,http://em.21dtv.com/songs/60111378.mkv +莫艳琳-奔跑吧青蛙,http://em.21dtv.com/songs/60108859.mkv +黎美言+MastaMic-B.O.Y,http://em.21dtv.com/songs/60109784.mkv +John Doe+Priscilla-B O B,http://em.21dtv.com/songs/60124912.mkv +佚名-不能这样活,http://em.21dtv.com/songs/60011286.mkv +刘欢-不能这样活,http://em.21dtv.com/songs/60011285.mkv +金韩一-不能做朋友,http://em.21dtv.com/songs/60122201.mkv +陈奕迅-不能再等待,http://em.21dtv.com/songs/60011283.mkv +小男孩乐团-不能再爱你,http://em.21dtv.com/songs/60133599.mkv +小男孩乐团-不能再爱你,http://em.21dtv.com/songs/60131362.mkv +佚名-伴你一生情,http://em.21dtv.com/songs/60009925.mkv +骆超勇-不能忘记你,http://em.21dtv.com/songs/60011279.mkv +龙飘飘-不能忘记你,http://em.21dtv.com/songs/60011278.mkv +高胜美-不能忘记你,http://em.21dtv.com/songs/60011277.mkv +陈娟儿-不能失去你,http://em.21dtv.com/songs/60062264.mkv +玉珠贤-不能说爱你,http://em.21dtv.com/songs/60106093.mkv +赵纲-不能欺骗你,http://em.21dtv.com/songs/60123199.mkv +JKAI-不能没有你,http://em.21dtv.com/songs/60132088.mkv +昊麟-不能没有你,http://em.21dtv.com/songs/60113559.mkv +洪煜祺-不能没有你,http://em.21dtv.com/songs/60068135.mkv +秀兰玛雅+陈冠霖-不能没有你,http://em.21dtv.com/songs/60063197.mkv +那英-不能没有你,http://em.21dtv.com/songs/60011270.mkv +陆创-不能没有你,http://em.21dtv.com/songs/60011269.mkv +刘德华-不能没有你,http://em.21dtv.com/songs/60011268.mkv +韩信-不能没有你,http://em.21dtv.com/songs/60011267.mkv +刘德华-不能没有你(演唱会),http://em.21dtv.com/songs/60011266.mkv +李日詹-别那么骄傲,http://em.21dtv.com/songs/60128089.mkv +达坡玛吉-不能离开你,http://em.21dtv.com/songs/60074748.mkv +孟庭苇-把你换作他,http://em.21dtv.com/songs/60009571.mkv +阿超-比你好的人,http://em.21dtv.com/songs/60010378.mkv +林姗+翁立友-伴你过一生,http://em.21dtv.com/songs/60009922.mkv +佚名-伴你过一生(无原唱),http://em.21dtv.com/songs/60009921.mkv +祁隆-把你放心上,http://em.21dtv.com/songs/60119850.mkv +凤琴+廖大森-伴你的未来,http://em.21dtv.com/songs/60130110.mkv +王皓宁-把你带回家,http://em.21dtv.com/songs/60100322.mkv +陈瑞-把你藏心里,http://em.21dtv.com/songs/60009562.mkv +杜德伟-把你藏起来,http://em.21dtv.com/songs/60009561.mkv +张凌枫-不能错过你,http://em.21dtv.com/songs/60068134.mkv +韩宝仪-不能不想你,http://em.21dtv.com/songs/60099611.mkv +周冰倩-不能不想你,http://em.21dtv.com/songs/60011252.mkv +赵震宇-不能不想你,http://em.21dtv.com/songs/60011251.mkv +李丽翎-不能不想你,http://em.21dtv.com/songs/60011250.mkv +新街口组合-不能不电子,http://em.21dtv.com/songs/60084930.mkv +李琼-不能不爱你,http://em.21dtv.com/songs/60011248.mkv +潇峰-不能爱下去,http://em.21dtv.com/songs/60096103.mkv +蓝萍-薄命姊妹花,http://em.21dtv.com/songs/60095885.mkv +卫诗+San E-被满足的爱,http://em.21dtv.com/songs/60125249.mkv +卫诗+San E-被满足的爱,http://em.21dtv.com/songs/60122552.mkv +小城星电台-斑马与蝴蝶,http://em.21dtv.com/songs/60105770.mkv +大哲-宝马与爱情,http://em.21dtv.com/songs/60074624.mkv +扎西多吉-爸妈辛苦了,http://em.21dtv.com/songs/60119592.mkv +依淼-把梦想点亮,http://em.21dtv.com/songs/60109153.mkv +佚名-伴暝偷我兄,http://em.21dtv.com/songs/60095396.mkv +BOYFRIEND-be my shine~君を离さない~,http://em.21dtv.com/songs/60072930.mkv +云开-被没收的爱,http://em.21dtv.com/songs/60010296.mkv +施文彬-白目情人梦,http://em.21dtv.com/songs/60009698.mkv +Pink-Blow Me One Last Kiss,http://em.21dtv.com/songs/60099021.mkv +储兰兰+张剑锋-白毛女对唱,http://em.21dtv.com/songs/60074588.mkv +甲子慧-不免讲这多,http://em.21dtv.com/songs/60095809.mkv +林沐桦-不免讲这多,http://em.21dtv.com/songs/60011240.mkv +李沁洋-爸妈回来啦,http://em.21dtv.com/songs/60117817.mkv +江惠仪-彼眠红的花,http://em.21dtv.com/songs/60080775.mkv +梁咏琪-B面第一首,http://em.21dtv.com/songs/60125812.mkv +李萌-不灭的尾灯,http://em.21dtv.com/songs/60121789.mkv +JKAI-半米的距离,http://em.21dtv.com/songs/60116459.mkv +陈绮贞-表面的和平,http://em.21dtv.com/songs/60010552.mkv +沙宝亮-斑马 斑马,http://em.21dtv.com/songs/60113795.mkv +郑志勇-白鹭洲之恋,http://em.21dtv.com/songs/60127466.mkv +谢霆锋-别了再改变,http://em.21dtv.com/songs/60010620.mkv +望海高歌-不离也不弃,http://em.21dtv.com/songs/60109407.mkv +小老头-不离也不弃,http://em.21dtv.com/songs/60099974.mkv +陈奕迅-不来也不去,http://em.21dtv.com/songs/60093392.mkv +孙艺程-玻璃心公主,http://em.21dtv.com/songs/60098249.mkv +孙露-变了心的人,http://em.21dtv.com/songs/60115808.mkv +庞晓宁-变了心的人,http://em.21dtv.com/songs/60010501.mkv +郭富城-柏拉图之恋,http://em.21dtv.com/songs/60009804.mkv +秦御峰-柏拉图永恒,http://em.21dtv.com/songs/60101460.mkv +曾心梅-彼领凸纱衫(无原唱),http://em.21dtv.com/songs/60010402.mkv +赵凯-柏拉图广场,http://em.21dtv.com/songs/60009802.mkv +白冰冰-悲恋三线路,http://em.21dtv.com/songs/60010127.mkv +林姗-白鹭鸶的厝,http://em.21dtv.com/songs/60069236.mkv +黄凯芹-伴侣+曲中情(演唱会),http://em.21dtv.com/songs/60009917.mkv +雨宗林-冰冷七月天,http://em.21dtv.com/songs/60071786.mkv +佚名-伴侣那里找,http://em.21dtv.com/songs/60009919.mkv +王杰-不浪漫罪名,http://em.21dtv.com/songs/60011216.mkv +苏小艾-别了马蹄莲,http://em.21dtv.com/songs/60119912.mkv +海鸣威-波吕克赛娜,http://em.21dtv.com/songs/60091621.mkv +海鸣威-波吕克塞娜,http://em.21dtv.com/songs/60010891.mkv +张杰-别来纠缠我,http://em.21dtv.com/songs/60135205.mkv +林燕-别来纠缠我,http://em.21dtv.com/songs/60113713.mkv +林燕-别来纠缠我,http://em.21dtv.com/songs/60112799.mkv +黑豹乐队-别来纠缠我,http://em.21dtv.com/songs/60010608.mkv +崔健-别来纠缠我,http://em.21dtv.com/songs/60010607.mkv +Jung Gi Go-BLIND,http://em.21dtv.com/songs/60111622.mkv +李佑晨+宋辰-巴黎合租屋,http://em.21dtv.com/songs/60135350.mkv +张磊-80还有后,http://em.21dtv.com/songs/60119539.mkv +伍义-八零后情歌,http://em.21dtv.com/songs/60009480.mkv +李嘉乐-八零后女孩,http://em.21dtv.com/songs/60009479.mkv +齐晨-80后酒吧,http://em.21dtv.com/songs/60120170.mkv +雷佳-板蓝花儿开,http://em.21dtv.com/songs/60106440.mkv +小武-八零后的歌,http://em.21dtv.com/songs/60105772.mkv +小武-八零后的歌,http://em.21dtv.com/songs/60104960.mkv +蔡依林-布拉格广场,http://em.21dtv.com/songs/60011826.mkv +梁静茹-布拉格广场(演唱会),http://em.21dtv.com/songs/60011825.mkv +MONMON-部落格冬天,http://em.21dtv.com/songs/60011845.mkv +扎西-布拉达之恋,http://em.21dtv.com/songs/60011824.mkv +范怡文-巴黎的忧郁,http://em.21dtv.com/songs/60009513.mkv +王若琳-霸凌的艺术,http://em.21dtv.com/songs/60130600.mkv +新七小福+周蕙-不老的月亮,http://em.21dtv.com/songs/60011221.mkv +陈兴元-不了的相思,http://em.21dtv.com/songs/60112342.mkv +陈永锋-不落的太阳,http://em.21dtv.com/songs/60074742.mkv +韩宝仪-冰冷的天涯,http://em.21dtv.com/songs/60010830.mkv +徐小凤-不老的情人,http://em.21dtv.com/songs/60011220.mkv +崔来宾-不老的妈妈,http://em.21dtv.com/songs/60121618.mkv +郑秀文-不来的季节(演唱会),http://em.21dtv.com/songs/60011215.mkv +文夏-悲恋的酒杯,http://em.21dtv.com/songs/60010124.mkv +黄乙玲-悲恋的酒杯,http://em.21dtv.com/songs/60010123.mkv +陈小云-悲恋的酒杯,http://em.21dtv.com/songs/60010122.mkv +陈玉健-不老的回忆,http://em.21dtv.com/songs/60133047.mkv +白冰冰-悲恋的公里(无原唱),http://em.21dtv.com/songs/60095816.mkv +佚名-悲恋的公路,http://em.21dtv.com/songs/60010121.mkv +文夏-悲恋的公路,http://em.21dtv.com/songs/60010120.mkv +王识贤-悲恋的公路,http://em.21dtv.com/songs/60010119.mkv +罗时丰-悲恋的公路,http://em.21dtv.com/songs/60010118.mkv +李魏西-冰冷的冬季,http://em.21dtv.com/songs/60097539.mkv +若思-不老的草原,http://em.21dtv.com/songs/60068132.mkv +张学友-不老的传说,http://em.21dtv.com/songs/60011219.mkv +张学友-不老的传说(演唱会),http://em.21dtv.com/songs/60011218.mkv +空气之约-不老的传奇,http://em.21dtv.com/songs/60135620.mkv +朱杰-不老的白发,http://em.21dtv.com/songs/60111151.mkv +林晏如-变脸的爱人,http://em.21dtv.com/songs/60095676.mkv +佚名-槟榔村之恋,http://em.21dtv.com/songs/60010803.mkv +陈慧娴-玻璃窗的爱,http://em.21dtv.com/songs/60010903.mkv +陈慧娴-玻璃窗的爱(演唱会),http://em.21dtv.com/songs/60010902.mkv +赵姝-布拉布拉嘭,http://em.21dtv.com/songs/60101173.mkv +谢娜-菠萝菠萝蜜,http://em.21dtv.com/songs/60010918.mkv +李汉昭-菠萝菠萝蜜,http://em.21dtv.com/songs/60010917.mkv +拾音社-不可再抱你,http://em.21dtv.com/songs/60097503.mkv +温拿乐队-不可以逃避,http://em.21dtv.com/songs/60011208.mkv +钟镇涛-不可以逃避(演唱会),http://em.21dtv.com/songs/60011207.mkv +谭咏麟-不可以逃避(演唱会),http://em.21dtv.com/songs/60011206.mkv +轲然+王甜湾-别哭呀孩子,http://em.21dtv.com/songs/60132942.mkv +张震岳-别哭小女孩,http://em.21dtv.com/songs/60081830.mkv +范逸臣-不可能忘记,http://em.21dtv.com/songs/60011193.mkv +郑宇伶-不可能是我,http://em.21dtv.com/songs/60082651.mkv +符琼音-不可能失眠,http://em.21dtv.com/songs/60120844.mkv +符琼音-不可能失眠,http://em.21dtv.com/songs/60119862.mkv +何洁-不可能的人,http://em.21dtv.com/songs/60099083.mkv +皓天-别哭了宝贝,http://em.21dtv.com/songs/60010601.mkv +范逸臣-不开的玫瑰,http://em.21dtv.com/songs/60011184.mkv +多亮-不宽的肩膀,http://em.21dtv.com/songs/60074739.mkv +六哲-不苦的爱情,http://em.21dtv.com/songs/60103887.mkv +佚名-不可不信缘,http://em.21dtv.com/songs/60011186.mkv +群星-北京祝福你,http://em.21dtv.com/songs/60069249.mkv +曹智贤-被禁止的爱,http://em.21dtv.com/songs/60084900.mkv +群星-宝记正传part 1,http://em.21dtv.com/songs/60082591.mkv +吴炜-北京夜未眠,http://em.21dtv.com/songs/60010224.mkv +林子祥-抱紧眼前人,http://em.21dtv.com/songs/60097587.mkv +陈浩德-抱紧眼前人(演唱会),http://em.21dtv.com/songs/60074629.mkv +梅艳芳-抱紧眼前人,http://em.21dtv.com/songs/60010066.mkv +梅艳芳-抱紧眼前人(演唱会),http://em.21dtv.com/songs/60010065.mkv +姜潮+田晓天-北京雨放晴,http://em.21dtv.com/songs/60102099.mkv +王啸坤-北京下雨了,http://em.21dtv.com/songs/60010221.mkv +COOKIES-绑架心上人,http://em.21dtv.com/songs/60092159.mkv +王滨-北极熊日记,http://em.21dtv.com/songs/60063968.mkv +蓝燕+莫熙儿-北京下起雨,http://em.21dtv.com/songs/60082608.mkv +王彩桦-不惊行情坏,http://em.21dtv.com/songs/60074734.mkv +童唱-北京小歌星,http://em.21dtv.com/songs/60010223.mkv +谭咏鸣-把酒问青天,http://em.21dtv.com/songs/60070514.mkv +陈星-北京我的家,http://em.21dtv.com/songs/60010220.mkv +威仔+初晴-不接我电话,http://em.21dtv.com/songs/60127895.mkv +陈琳-抱紧我别走,http://em.21dtv.com/songs/60010062.mkv +DIVA彩月团-别叫我宝贝,http://em.21dtv.com/songs/60010591.mkv +高向鹏-白金十字链(无原唱),http://em.21dtv.com/songs/60033678.mkv +黄思婷-甭讲伤心话,http://em.21dtv.com/songs/60010356.mkv +高向鹏+方怡萍-甭讲伤心话,http://em.21dtv.com/songs/60010355.mkv +刘德华-把今生忘掉,http://em.21dtv.com/songs/60009556.mkv +萧亚轩-不解释亲吻,http://em.21dtv.com/songs/60102677.mkv +陈洁灵-白金升降落(演唱会),http://em.21dtv.com/songs/60009677.mkv +陈浩德-白金升降机(演唱会),http://em.21dtv.com/songs/60082574.mkv +陈洁灵-白金升降机,http://em.21dtv.com/songs/60009676.mkv +郑琇月-甭惊烧酒厚(无原唱),http://em.21dtv.com/songs/60010358.mkv +孙子涵-半截神经病,http://em.21dtv.com/songs/60107651.mkv +殷秀梅-北京是故乡,http://em.21dtv.com/songs/60088176.mkv +六哲-毕竟深爱过,http://em.21dtv.com/songs/60133385.mkv +孙淑媚-别讲阮无情,http://em.21dtv.com/songs/60010590.mkv +大庆小芳-败家娘们儿,http://em.21dtv.com/songs/60116426.mkv +高夫-不接你电话,http://em.21dtv.com/songs/60117387.mkv +陈明真-比寂寞善良,http://em.21dtv.com/songs/60010375.mkv +方力申-冰极两公里,http://em.21dtv.com/songs/60010826.mkv +容海-北京挤地铁,http://em.21dtv.com/songs/60068105.mkv +于乃久-北京欢迎你,http://em.21dtv.com/songs/60061048.mkv +群星-北京欢迎你,http://em.21dtv.com/songs/60010211.mkv +群星-北京欢颂你,http://em.21dtv.com/songs/60010210.mkv +黑龙-北京呼唤你,http://em.21dtv.com/songs/60010209.mkv +我的蜜瓜分你一半+阿凡达妹妹-贝加尔湖畔,http://em.21dtv.com/songs/60128027.mkv +孙楠+张碧晨-贝加尔湖畔,http://em.21dtv.com/songs/60135104.mkv +郭宴-贝加尔湖畔,http://em.21dtv.com/songs/60127485.mkv +梦苇-贝加尔湖畔,http://em.21dtv.com/songs/60125828.mkv +李健-贝加尔湖畔,http://em.21dtv.com/songs/60108563.mkv +李维+周深-贝加尔湖畔,http://em.21dtv.com/songs/60104220.mkv +李健-贝加尔湖畔,http://em.21dtv.com/songs/60074651.mkv +阿牛-北京的月亮,http://em.21dtv.com/songs/60010204.mkv +羽泉-北京的夏天,http://em.21dtv.com/songs/60091872.mkv +唐彪+安李-北京的微笑(演唱会),http://em.21dtv.com/songs/60010202.mkv +曾轶可-北京到台北,http://em.21dtv.com/songs/60126976.mkv +马闯-北京到沈阳,http://em.21dtv.com/songs/60066862.mkv +岚戈-不倦的情书,http://em.21dtv.com/songs/60108462.mkv +吴奇隆-不羁的女人,http://em.21dtv.com/songs/60011169.mkv +青春组合-北京等你来(演唱会),http://em.21dtv.com/songs/60010205.mkv +陈少华-不解的句点,http://em.21dtv.com/songs/60011181.mkv +许志安-不倦的蝴蝶,http://em.21dtv.com/songs/60093147.mkv +张国彬-并肩的弟兄,http://em.21dtv.com/songs/60129073.mkv +赵雷-北京的冬天,http://em.21dtv.com/songs/60129647.mkv +郭新林-北京的冬天,http://em.21dtv.com/songs/60084894.mkv +老狼-北京的冬天,http://em.21dtv.com/songs/60074648.mkv +汪峰-蹩脚的爱情,http://em.21dtv.com/songs/60095316.mkv +杨伯致-搬家 搬家,http://em.21dtv.com/songs/60132581.mkv +梁博+黄勇-北京 北京,http://em.21dtv.com/songs/60081657.mkv +陈羽凡+萧敬腾-北京 北京,http://em.21dtv.com/songs/60080921.mkv +子枫-北京不好混,http://em.21dtv.com/songs/60068104.mkv +黄征-北京不孤单,http://em.21dtv.com/songs/60082606.mkv +郑少秋+汪明荃-抱紧不放手(演唱会),http://em.21dtv.com/songs/60010057.mkv +佚名-break it to me gently(无原唱),http://em.21dtv.com/songs/60000686.mkv +Coldplay-Birds,http://em.21dtv.com/songs/60118248.mkv +B WITCHED-blame it on the weatherman,http://em.21dtv.com/songs/60000607.mkv +佚名-blame it on the rain,http://em.21dtv.com/songs/60000606.mkv +佚名-baby i need your loving,http://em.21dtv.com/songs/60000401.mkv +SNH48-BINGO,http://em.21dtv.com/songs/60126549.mkv +HWAN HCE-because i missed your heart,http://em.21dtv.com/songs/60072949.mkv +佚名-baby i love your way,http://em.21dtv.com/songs/60000400.mkv +PETER FRAMPTON-baby i love your way,http://em.21dtv.com/songs/60000399.mkv +BY PETER FRAMPTON-baby i love your way,http://em.21dtv.com/songs/60000398.mkv +LunchMoney Lewis-Bills,http://em.21dtv.com/songs/60111628.mkv +李玟-before i fall in love,http://em.21dtv.com/songs/60000535.mkv +NE-YO-bust it baby pt 2,http://em.21dtv.com/songs/60073019.mkv +DAVID GATES-baby im a want you,http://em.21dtv.com/songs/60000402.mkv +KATIE ARMIGER-better in a black dress,http://em.21dtv.com/songs/60072964.mkv +OLIVIA ONG-不化妆舞会,http://em.21dtv.com/songs/60080067.mkv +刘晓春-不会再流泪,http://em.21dtv.com/songs/60011163.mkv +伍佰-不会在乎我,http://em.21dtv.com/songs/60090580.mkv +望海高歌-不会再放弃,http://em.21dtv.com/songs/60115978.mkv +夏天-不会再爱你,http://em.21dtv.com/songs/60101312.mkv +游艾迪-八号洋娃娃,http://em.21dtv.com/songs/60009470.mkv +萧蔷-bella 9号夜曲,http://em.21dtv.com/songs/60000548.mkv +詹曼铃-别恨我无情(无原唱),http://em.21dtv.com/songs/60010586.mkv +苏霈-不坏我不爱,http://em.21dtv.com/songs/60089459.mkv +苏爱伦-不坏我不爱,http://em.21dtv.com/songs/60089457.mkv +张德兰-百花亭之恋,http://em.21dtv.com/songs/60092607.mkv +陈浩德+舒雅颂-百花亭之恋(演唱会),http://em.21dtv.com/songs/60061038.mkv +吕珊-百花亭之恋(演唱会),http://em.21dtv.com/songs/60009786.mkv +吴国华+曹秀琴-百花亭赠剑,http://em.21dtv.com/songs/60009785.mkv +佚名-不回头的人(无原唱),http://em.21dtv.com/songs/60011149.mkv +萧萧-不好听的话,http://em.21dtv.com/songs/60011140.mkv +杨培安-不会说再见,http://em.21dtv.com/songs/60074731.mkv +刘依纯-不会是朋友,http://em.21dtv.com/songs/60103103.mkv +任贤齐-北海任我行,http://em.21dtv.com/songs/60084892.mkv +张瑶-比怀念快乐,http://em.21dtv.com/songs/60074663.mkv +方伊琪-百花开劲草(演唱会),http://em.21dtv.com/songs/60074601.mkv +动力火车-不会哭的人,http://em.21dtv.com/songs/60011158.mkv +陈慧琳+雷颂+许志安-不好叫我停,http://em.21dtv.com/songs/60093447.mkv +孙悦-百合花情思,http://em.21dtv.com/songs/60009779.mkv +陈瑞-不会告诉你,http://em.21dtv.com/songs/60108984.mkv +天籁天-不悔的执着,http://em.21dtv.com/songs/60105736.mkv +许志安-背后的guitar手,http://em.21dtv.com/songs/60010244.mkv +许罡-背后的女人,http://em.21dtv.com/songs/60110526.mkv +德德玛-彪悍的马鞍,http://em.21dtv.com/songs/60010542.mkv +江映蓉-变坏的好人,http://em.21dtv.com/songs/60074676.mkv +许嵩-北海道花季,http://em.21dtv.com/songs/60010179.mkv +誓言-背后的爱人,http://em.21dtv.com/songs/60084897.mkv +周传雄-不会唱情歌,http://em.21dtv.com/songs/60011155.mkv +周柏豪-报告总司令,http://em.21dtv.com/songs/60010043.mkv +阿文-不敢再说爱,http://em.21dtv.com/songs/60107301.mkv +雨宗林-不该遇见你,http://em.21dtv.com/songs/60120113.mkv +张赫宣-不管有多苦,http://em.21dtv.com/songs/60082645.mkv +齐雯-不管有多苦,http://em.21dtv.com/songs/60069269.mkv +那英-不管有多苦,http://em.21dtv.com/songs/60011127.mkv +龙千玉-甭搁想些多,http://em.21dtv.com/songs/60010353.mkv +郭富城-不敢相信爱,http://em.21dtv.com/songs/60093345.mkv +罗时丰-彼个小姑娘,http://em.21dtv.com/songs/60010401.mkv +动力火车-不甘心放手,http://em.21dtv.com/songs/60089176.mkv +蔡秋凤-甭搁想彼多,http://em.21dtv.com/songs/60095921.mkv +奇力格尔-不敢忘记你,http://em.21dtv.com/songs/60011104.mkv +阳逸晨-不敢听情歌,http://em.21dtv.com/songs/60129705.mkv +赖伟锋-不敢听情歌,http://em.21dtv.com/songs/60081027.mkv +孔令奇-不关它的事(演唱会),http://em.21dtv.com/songs/60011121.mkv +佚名-别孤身作战,http://em.21dtv.com/songs/60010580.mkv +阿该-办公室之歌,http://em.21dtv.com/songs/60074609.mkv +李响-办公室之歌,http://em.21dtv.com/songs/60066848.mkv +余宗宪-不该少了你,http://em.21dtv.com/songs/60011079.mkv +帅智轩-不过是分手,http://em.21dtv.com/songs/60126827.mkv +余荃斌-不过圣诞节,http://em.21dtv.com/songs/60123629.mkv +洪百慧-不甘送别你,http://em.21dtv.com/songs/60011096.mkv +黄成艺-不敢说爱你,http://em.21dtv.com/songs/60126474.mkv +宇桐非-不该让你走,http://em.21dtv.com/songs/60011077.mkv +李俊熙-把过去原谅,http://em.21dtv.com/songs/60104192.mkv +井柏然-不过情人节,http://em.21dtv.com/songs/60082647.mkv +卓依婷-不该欺骗我,http://em.21dtv.com/songs/60087449.mkv +陈盈洁-不甘情来放(无原唱),http://em.21dtv.com/songs/60011094.mkv +秦腔-包公赔情中,http://em.21dtv.com/songs/60130990.mkv +秦腔-包公赔情上,http://em.21dtv.com/songs/60130989.mkv +梁咏琪-不跟你走了,http://em.21dtv.com/songs/60082644.mkv +佚名-不甘你心痛(无原唱),http://em.21dtv.com/songs/60011092.mkv +杜德伟-不管你是谁,http://em.21dtv.com/songs/60089973.mkv +刘婕-不管你是谁,http://em.21dtv.com/songs/60087388.mkv +邓丽君-不管你是谁,http://em.21dtv.com/songs/60011126.mkv +海鸣威-别管那么多,http://em.21dtv.com/songs/60112078.mkv +八三夭-不关你的事,http://em.21dtv.com/songs/60132220.mkv +陈慧琳-不关你的事,http://em.21dtv.com/songs/60093448.mkv +蔡小虎+黃思婷-不甘你的人,http://em.21dtv.com/songs/60095894.mkv +张卫健-不管你爱谁,http://em.21dtv.com/songs/60011125.mkv +张蓉蓉-不甘嘛无效,http://em.21dtv.com/songs/60011090.mkv +卓依婷-不该来熟悉,http://em.21dtv.com/songs/60057582.mkv +林珊茹-不甘离开你(无原唱),http://em.21dtv.com/songs/60095702.mkv +何念庭-不甘离开你,http://em.21dtv.com/songs/60011089.mkv +柏文-拔根芦柴花,http://em.21dtv.com/songs/60111202.mkv +李伟+左炜-拔根芦柴花,http://em.21dtv.com/songs/60098445.mkv +黄卓+王宝珍-拔根芦柴花,http://em.21dtv.com/songs/60009526.mkv +姚雨鑫-不敢靠近你,http://em.21dtv.com/songs/60110971.mkv +潘越云-不敢哭出声(无原唱),http://em.21dtv.com/songs/60095797.mkv +苏路-不敢讲再会,http://em.21dtv.com/songs/60104382.mkv +赵奕欢-夯GIRL,http://em.21dtv.com/songs/60124515.mkv +卢海鹏-边个话我傻,http://em.21dtv.com/songs/60010457.mkv +钟丽燕-边关好男儿,http://em.21dtv.com/songs/60068115.mkv +佚名-不敢搁再爱,http://em.21dtv.com/songs/60011102.mkv +沈芳如-不该搁再爱,http://em.21dtv.com/songs/60011069.mkv +吴欣达-不甘放你去(无原唱),http://em.21dtv.com/songs/60003221.mkv +李政飞+王二妮-边关烽火情,http://em.21dtv.com/songs/60111986.mkv +余涟-饼干的味道,http://em.21dtv.com/songs/60106601.mkv +江若琳-布瓜的世界(演唱会),http://em.21dtv.com/songs/60011822.mkv +蒋婴-不该的联络,http://em.21dtv.com/songs/60126141.mkv +何龙雨+艾歌-不该等的人,http://em.21dtv.com/songs/60106599.mkv +杜雯惠-白鸽的传奇,http://em.21dtv.com/songs/60009662.mkv +媛媛-宝贵的北京,http://em.21dtv.com/songs/60102106.mkv +陈雷-不甘拆分开,http://em.21dtv.com/songs/60011085.mkv +余天-不敢把泪流,http://em.21dtv.com/songs/60087327.mkv +佚名-不该爱着你(无原唱),http://em.21dtv.com/songs/60011067.mkv +阿雅-八卦啊呀呀,http://em.21dtv.com/songs/60009468.mkv +黄韵玲-不该爱上你(无原唱),http://em.21dtv.com/songs/60011066.mkv +乐之翼-不该爱你吗,http://em.21dtv.com/songs/60011065.mkv +曾春年-不该爱的人,http://em.21dtv.com/songs/60063345.mkv +阿木-不该爱的人,http://em.21dtv.com/songs/60011062.mkv +安琪-不敢爱的泪,http://em.21dtv.com/songs/60063998.mkv +丁维伟-百分制魔法,http://em.21dtv.com/songs/60086448.mkv +胡斌-北方天空下,http://em.21dtv.com/songs/60074643.mkv +THE MANHATTAN TRANSFER-boy from new york city,http://em.21dtv.com/songs/60000673.mkv +谭咏麟-暴风女神lorelei(演唱会),http://em.21dtv.com/songs/60010085.mkv +群星-暴风女神lorelei(演唱会),http://em.21dtv.com/songs/60010084.mkv +童欣-背负你的爱,http://em.21dtv.com/songs/60010242.mkv +陈淑芳+李宝珍-拨风落大水,http://em.21dtv.com/songs/60010883.mkv +陈魁-冰封的记忆,http://em.21dtv.com/songs/60084914.mkv +谭咏麟+孙耀威-捕风的汉子,http://em.21dtv.com/songs/60093198.mkv +谭咏麟+李克勤-捕风的汉子(演唱会),http://em.21dtv.com/songs/60010943.mkv +谭咏麟-捕风的汉子(HD演唱会),http://em.21dtv.com/songs/60010942.mkv +曾淑勤-奔放的河流(无原唱),http://em.21dtv.com/songs/60010313.mkv +思予-北风吹又吹,http://em.21dtv.com/songs/60132480.mkv +陈龙-百分百的你,http://em.21dtv.com/songs/60009769.mkv +童唱-白鹅学唱歌(无原唱),http://em.21dtv.com/songs/60009654.mkv +郭静-Be Ok,http://em.21dtv.com/songs/60114138.mkv +崔子格-布尔津情歌,http://em.21dtv.com/songs/60112646.mkv +蒙古利亚乐团-巴尔虎姑娘,http://em.21dtv.com/songs/60131788.mkv +金海心-把耳朵叫醒,http://em.21dtv.com/songs/60009551.mkv +SING女团-背对着想念,http://em.21dtv.com/songs/60133282.mkv +SING女团-背对着想念,http://em.21dtv.com/songs/60132132.mkv +黄磊+曾宝仪-冰点与沸点,http://em.21dtv.com/songs/60010818.mkv +小玉+姚天成-不得已的爱,http://em.21dtv.com/songs/60131361.mkv +张杰-北斗星的爱,http://em.21dtv.com/songs/60010158.mkv +张杰-北斗星的爱(演唱会),http://em.21dtv.com/songs/60010157.mkv +刘依纯-别对我想念,http://em.21dtv.com/songs/60114414.mkv +吴是闳-别对我温柔,http://em.21dtv.com/songs/60127832.mkv +周蕙-别对我太好,http://em.21dtv.com/songs/60010574.mkv +黑龙-别对我说谎,http://em.21dtv.com/songs/60136036.mkv +黑龙-别对我说谎,http://em.21dtv.com/songs/60122313.mkv +黑龙-别对我说谎,http://em.21dtv.com/songs/60010573.mkv +郭燕-别对我说爱,http://em.21dtv.com/songs/60010572.mkv +罗志祥-不懂我的心,http://em.21dtv.com/songs/60011054.mkv +徐志豪-别对我崇拜,http://em.21dtv.com/songs/60125567.mkv +雷诺儿-抱的太用力,http://em.21dtv.com/songs/60110664.mkv +龙梅子-遍地是情歌,http://em.21dtv.com/songs/60130952.mkv +佚名-宝岛四季谣,http://em.21dtv.com/songs/60010011.mkv +阿茹-宝岛水姑娘,http://em.21dtv.com/songs/60084886.mkv +吴业坤-被单身的人,http://em.21dtv.com/songs/60127822.mkv +吴业坤-被单身的人,http://em.21dtv.com/songs/60125282.mkv +周华健-摆渡人的歌(演唱会),http://em.21dtv.com/songs/60009806.mkv +苏唯-不懂你的心,http://em.21dtv.com/songs/60119910.mkv +佚名-不懂你的心,http://em.21dtv.com/songs/60011052.mkv +印能法师-白度母心咒,http://em.21dtv.com/songs/60099841.mkv +扎西-布达拉之恋,http://em.21dtv.com/songs/60011821.mkv +糖糖乐团-布达拉之恋,http://em.21dtv.com/songs/60011820.mkv +何耀珊-不凋零的花,http://em.21dtv.com/songs/60011042.mkv +TANK-绷带俱乐部,http://em.21dtv.com/songs/60087223.mkv +GALA-北戴河之歌,http://em.21dtv.com/songs/60069246.mkv +卓依婷-宝岛好男儿,http://em.21dtv.com/songs/60010009.mkv +陈奕迅-贝多芬与我,http://em.21dtv.com/songs/60010236.mkv +伍佰-不懂得幸福,http://em.21dtv.com/songs/60011051.mkv +郑琇月-变调的探戈(无原唱),http://em.21dtv.com/songs/60010514.mkv +周华健-摆渡的岁月,http://em.21dtv.com/songs/60009805.mkv +佚名-冰冻的女人(无原唱),http://em.21dtv.com/songs/60010819.mkv +佚名-半点东方心,http://em.21dtv.com/songs/60009854.mkv +佚名-宝岛的法船(无原唱),http://em.21dtv.com/songs/60010008.mkv +SARA-不得不在乎,http://em.21dtv.com/songs/60011036.mkv +林俊杰-背对背拥抱,http://em.21dtv.com/songs/60088091.mkv +张越-不得不想你,http://em.21dtv.com/songs/60086466.mkv +杜留香-不得不习惯,http://em.21dtv.com/songs/60116929.mkv +杨烨-不得不分开,http://em.21dtv.com/songs/60125759.mkv +袁弘-背对背沉默,http://em.21dtv.com/songs/60110507.mkv +张启靓-不懂爱的猪,http://em.21dtv.com/songs/60011050.mkv +佚名-不懂爱的人,http://em.21dtv.com/songs/60011049.mkv +潘美辰-不懂爱的人,http://em.21dtv.com/songs/60011048.mkv +陆锋-不懂爱的人,http://em.21dtv.com/songs/60011047.mkv +阿悄+乔任梁-不存在的你,http://em.21dtv.com/songs/60118127.mkv +GIRLS ALOUD-beautiful cause you love me,http://em.21dtv.com/songs/60072937.mkv +石雪峰-不曾忘记你,http://em.21dtv.com/songs/60125979.mkv +安宇-不曾忘记你,http://em.21dtv.com/songs/60074804.mkv +蒋婴-不曾说分手,http://em.21dtv.com/songs/60123127.mkv +望海高歌-不曾说分手,http://em.21dtv.com/songs/60117790.mkv +罗时丰-不曾说爱你,http://em.21dtv.com/songs/60095852.mkv +张睿恩-比从前快乐,http://em.21dtv.com/songs/60010372.mkv +樱子-本草女人香,http://em.21dtv.com/songs/60066865.mkv +沈建宏-半成年告白,http://em.21dtv.com/songs/60009851.mkv +王心凌-变成陌生人,http://em.21dtv.com/songs/60070533.mkv +佚名-baby can i hold you,http://em.21dtv.com/songs/60000385.mkv +BOYZONE-baby can i hold you,http://em.21dtv.com/songs/60000384.mkv +李千娜-不曾回来过,http://em.21dtv.com/songs/60135355.mkv +刘和刚-班长告诉我,http://em.21dtv.com/songs/60074608.mkv +伊雪莉-不穿高跟鞋,http://em.21dtv.com/songs/60011029.mkv +SNH48-彼此的未来,http://em.21dtv.com/songs/60133284.mkv +安又琪-悲催的姐妹,http://em.21dtv.com/songs/60074636.mkv +伍佰-不曾在乎我(演唱会),http://em.21dtv.com/songs/60011022.mkv +雀斑Freckles+Leo王-不标准情人,http://em.21dtv.com/songs/60135960.mkv +韩晓辉-爸爸在哪里,http://em.21dtv.com/songs/60135984.mkv +司空雷-爸爸在哪儿,http://em.21dtv.com/songs/60104870.mkv +杺缘-宝宝摇篮曲,http://em.21dtv.com/songs/60099339.mkv +520女子演唱组-baby不要离开,http://em.21dtv.com/songs/60000416.mkv +何耀珊-八八一寂寞,http://em.21dtv.com/songs/60009454.mkv +张含韵+张航睿-北鼻与底儿,http://em.21dtv.com/songs/60010153.mkv +杨廷廷-宝贝呀宝贝,http://em.21dtv.com/songs/60069242.mkv +邓小龙-宝贝呀宝贝,http://em.21dtv.com/songs/60066855.mkv +自明-宝贝想你啦,http://em.21dtv.com/songs/60010003.mkv +徐清波-宝宝心里苦,http://em.21dtv.com/songs/60126915.mkv +路绮欧-宝贝心好痛,http://em.21dtv.com/songs/60010005.mkv +上明-博杯问天意,http://em.21dtv.com/songs/60104761.mkv +贾富营-别把我看透,http://em.21dtv.com/songs/60131831.mkv +陈明真-宝贝我的心,http://em.21dtv.com/songs/60010000.mkv +阿牛-宝贝我的宝,http://em.21dtv.com/songs/60074623.mkv +王力宏-不必问别人,http://em.21dtv.com/songs/60011005.mkv +尤静波+高歌+尤圣斯-爸爸我爱你,http://em.21dtv.com/songs/60125447.mkv +1314组合-宝贝我爱你,http://em.21dtv.com/songs/60109072.mkv +郭力凡-宝贝我爱你,http://em.21dtv.com/songs/60097606.mkv +李嘉-爸爸我爱你(无原唱),http://em.21dtv.com/songs/60095608.mkv +韩光-宝贝我爱你,http://em.21dtv.com/songs/60082590.mkv +钟木清-宝贝我爱你,http://em.21dtv.com/songs/60070523.mkv +游美灵-宝贝我爱你,http://em.21dtv.com/songs/60070522.mkv +苏晴-宝贝我爱你,http://em.21dtv.com/songs/60066854.mkv +MOJO乐团-宝贝我爱你,http://em.21dtv.com/songs/60009999.mkv +佚名-爸爸我爱你(无原唱),http://em.21dtv.com/songs/60009636.mkv +青春美少女-不必太在意,http://em.21dtv.com/songs/60074717.mkv +童安格-不必太在意,http://em.21dtv.com/songs/60011002.mkv +童唱-棒棒糖真棒,http://em.21dtv.com/songs/60009940.mkv +佚名-爸爸叨位去(探戈),http://em.21dtv.com/songs/60009614.mkv +林展逸-本本是英雄,http://em.21dtv.com/songs/60010322.mkv +陈晓东-不必说感谢,http://em.21dtv.com/songs/60011001.mkv +关淑怡-不必说爱我,http://em.21dtv.com/songs/60092319.mkv +佚名-爸爸亲像山,http://em.21dtv.com/songs/60095432.mkv +杨宗宪-爸爸亲像山,http://em.21dtv.com/songs/60041940.mkv +于洋-宝贝亲吻你,http://em.21dtv.com/songs/60127718.mkv +荣联合-宝贝亲亲我,http://em.21dtv.com/songs/60084885.mkv +群星-爸爸去哪儿,http://em.21dtv.com/songs/60129497.mkv +叶圣涛+First Girl-爸爸去哪儿,http://em.21dtv.com/songs/60125264.mkv +华语群星-宝贝去哪儿,http://em.21dtv.com/songs/60097605.mkv +阿摩司-爸爸去哪儿,http://em.21dtv.com/songs/60094325.mkv +群星-爸爸去哪儿,http://em.21dtv.com/songs/60086445.mkv +群星-爸爸去哪儿(天驰),http://em.21dtv.com/songs/60081803.mkv +ASOS-兵变情不变,http://em.21dtv.com/songs/60090392.mkv +S.O.S-兵变情不变(无原唱),http://em.21dtv.com/songs/60010864.mkv +赵小南-宝贝你最美,http://em.21dtv.com/songs/60061043.mkv +张洪涛-宝贝你别哭,http://em.21dtv.com/songs/60114544.mkv +张津涤+香香-宝贝麦西西,http://em.21dtv.com/songs/60109318.mkv +邓丽君-别把眉儿皱,http://em.21dtv.com/songs/60010565.mkv +杨林-别把梦带走,http://em.21dtv.com/songs/60088072.mkv +黄卓-八百里洞庭,http://em.21dtv.com/songs/60009457.mkv +沈世爱-半杯苦咖啡,http://em.21dtv.com/songs/60009844.mkv +纪晓斌-宝贝结婚吧,http://em.21dtv.com/songs/60070521.mkv +那仁格日勒-不白活一回,http://em.21dtv.com/songs/60090244.mkv +毛阿敏-不白活一回,http://em.21dtv.com/songs/60010988.mkv +童唱-爸爸回来了,http://em.21dtv.com/songs/60009621.mkv +群星-宝贝 回家,http://em.21dtv.com/songs/60113947.mkv +大小姐-bling bling 过新年,http://em.21dtv.com/songs/60000614.mkv +佚名-爸爸的祝福,http://em.21dtv.com/songs/60009620.mkv +刘欢-爸爸的祝福,http://em.21dtv.com/songs/60009619.mkv +王绎龙-不变的音乐,http://em.21dtv.com/songs/60065856.mkv +陈利-芭比的眼泪,http://em.21dtv.com/songs/60110611.mkv +刘东桦-扁扁的月亮,http://em.21dtv.com/songs/60010481.mkv +刘萱萱-不别的约定,http://em.21dtv.com/songs/60096204.mkv +柯以敏+黑楠-不变的约定(演唱会),http://em.21dtv.com/songs/60011018.mkv +倪睿思-百变的选择,http://em.21dtv.com/songs/60009766.mkv +腾格尔-不变的乡恋,http://em.21dtv.com/songs/60068129.mkv +林依婷-爸爸的雪花,http://em.21dtv.com/songs/60074578.mkv +张海-不必的问候,http://em.21dtv.com/songs/60068128.mkv +李克勤-不必对我好,http://em.21dtv.com/songs/60010995.mkv +陈岩+青鸟-不变的誓言,http://em.21dtv.com/songs/60074718.mkv +涓子-不变的守候,http://em.21dtv.com/songs/60080600.mkv +正云-不变的情缘,http://em.21dtv.com/songs/60124174.mkv +陈心蕊+龙飞-爸爸的情话,http://em.21dtv.com/songs/60130840.mkv +吕继宏-爸爸的牵挂,http://em.21dtv.com/songs/60102024.mkv +黑龙-不变的情歌,http://em.21dtv.com/songs/60011014.mkv +袁春雷-别把毒品摸,http://em.21dtv.com/songs/60068119.mkv +黄品戬-不变的诺言,http://em.21dtv.com/songs/60069262.mkv +李玟-不变的诺言,http://em.21dtv.com/songs/60011013.mkv +徐若瑄-不败的恋人,http://em.21dtv.com/songs/60010989.mkv +王宏恩-瀑布的恋情,http://em.21dtv.com/songs/60090083.mkv +佚名-不变的浪漫,http://em.21dtv.com/songs/60011012.mkv +李娅莎+阿媚-爸爸的脚印,http://em.21dtv.com/songs/60120616.mkv +王诗龄+Kimi+天天+石头-爸爸的假期,http://em.21dtv.com/songs/60109543.mkv +比比-比比的海洋(无原唱),http://em.21dtv.com/songs/60010370.mkv +小曾+周亮-爸爸的村庄,http://em.21dtv.com/songs/60009617.mkv +佚名-爸爸的草鞋,http://em.21dtv.com/songs/60009616.mkv +叶住修-爸爸的草鞋,http://em.21dtv.com/songs/60009615.mkv +李宥承-不变的承诺,http://em.21dtv.com/songs/60098461.mkv +陈茂丰-爸爸的背影,http://em.21dtv.com/songs/60111501.mkv +圆圆-爸爸的背影,http://em.21dtv.com/songs/60100801.mkv +草蜢-宝贝对不起,http://em.21dtv.com/songs/60009993.mkv +草蜢-宝贝对不起(演唱会),http://em.21dtv.com/songs/60009992.mkv +纪萍-爸爸的宝贝(无原唱),http://em.21dtv.com/songs/60095838.mkv +蓝喆-宝贝的宝贝,http://em.21dtv.com/songs/60009990.mkv +于金胜-不变的爱你,http://em.21dtv.com/songs/60115675.mkv +伟小宝-宝宝唱奥运,http://em.21dtv.com/songs/60009967.mkv +晶迪-宝贝不要走,http://em.21dtv.com/songs/60009989.mkv +伊能静-爸爸不要说,http://em.21dtv.com/songs/60089607.mkv +小俊熙.逞坤-宝贝不要哭,http://em.21dtv.com/songs/60131357.mkv +卜学亮-宝贝不要哭,http://em.21dtv.com/songs/60087502.mkv +萧潇-爸爸别紧张,http://em.21dtv.com/songs/60009613.mkv +霍经伦-不被爱牵绊,http://em.21dtv.com/songs/60010991.mkv +山脚下男孩-爸爸爱妈妈,http://em.21dtv.com/songs/60091005.mkv +苗伟-博爱养心歌,http://em.21dtv.com/songs/60122063.mkv +苏慧伦-被爱是钻石,http://em.21dtv.com/songs/60010287.mkv +郑中基-被爱是幸福,http://em.21dtv.com/songs/60010286.mkv +郑中基-被爱是幸福(演唱会),http://em.21dtv.com/songs/60010285.mkv +金长勋+SUPER JUNIOR-breakups are so like me,http://em.21dtv.com/songs/60073002.mkv +罗中旭-把爱送给你,http://em.21dtv.com/songs/60081940.mkv +羽泉-把爱送给你,http://em.21dtv.com/songs/60009542.mkv +董燕妮-把爱说出来,http://em.21dtv.com/songs/60009541.mkv +侯延彬-不爱请走开,http://em.21dtv.com/songs/60113263.mkv +萧亚轩-不爱请闪开,http://em.21dtv.com/songs/60010971.mkv +机动现场-把爱圈起来,http://em.21dtv.com/songs/60063948.mkv +海生-把爱情打包,http://em.21dtv.com/songs/60074568.mkv +ELECTROBOYZ-Bang Bang十字路口,http://em.21dtv.com/songs/60101210.mkv +王博轼-不爱你非也,http://em.21dtv.com/songs/60132712.mkv +林淑容-别爱陌生人,http://em.21dtv.com/songs/60090003.mkv +JUICY J+LIL WAYNE-bandz a make her dance,http://em.21dtv.com/songs/60072924.mkv +岩宰仑-不爱没关系,http://em.21dtv.com/songs/60124795.mkv +蓝乐-把爱留给你,http://em.21dtv.com/songs/60094280.mkv +卢春如-不爱就走开(无原唱),http://em.21dtv.com/songs/60010960.mkv +陈茗加-把爱寄回家,http://em.21dtv.com/songs/60070513.mkv +摇滚女王-不爱就滚开,http://em.21dtv.com/songs/60132488.mkv +刘蕊绮-不爱就滚开,http://em.21dtv.com/songs/60115032.mkv +刘蕊绮-不爱就滚开,http://em.21dtv.com/songs/60110043.mkv +许仁杰-不安静的夜,http://em.21dtv.com/songs/60010986.mkv +梁汉文-不爱就不爱,http://em.21dtv.com/songs/60092899.mkv +金池-不爱会怎样,http://em.21dtv.com/songs/60084917.mkv +迪克牛仔-把爱还给我,http://em.21dtv.com/songs/60097552.mkv +侯鑫宝-把爱还给你,http://em.21dtv.com/songs/60061034.mkv +陈宝欣-把爱给了你,http://em.21dtv.com/songs/60106392.mkv +陈宝欣-把爱给了你,http://em.21dtv.com/songs/60074566.mkv +陈玉建-把爱给了你,http://em.21dtv.com/songs/60009536.mkv +玉面天使-不爱高富帅,http://em.21dtv.com/songs/60108693.mkv +高维那-不爱高富帅,http://em.21dtv.com/songs/60066873.mkv +羽泉-把爱放心中,http://em.21dtv.com/songs/60089446.mkv +王中平-把爱放下来,http://em.21dtv.com/songs/60091684.mkv +关楚耀-悲哀代言人,http://em.21dtv.com/songs/60010109.mkv +佚名-别爱的太多,http://em.21dtv.com/songs/60010560.mkv +范文芳-被爱的权利,http://em.21dtv.com/songs/60010279.mkv +李玟-被爱的女人,http://em.21dtv.com/songs/60010278.mkv +毛毛-不爱的理由,http://em.21dtv.com/songs/60010957.mkv +沙宝亮-不爱的练习,http://em.21dtv.com/songs/60103416.mkv +江蕙-悲哀的恋梦,http://em.21dtv.com/songs/60095734.mkv +曾心梅-悲哀的恋梦,http://em.21dtv.com/songs/60095585.mkv +周传雄-不安的灵魂,http://em.21dtv.com/songs/60106693.mkv +佚名-不安的快乐,http://em.21dtv.com/songs/60010984.mkv +河莉秀-被爱的机会(演唱会),http://em.21dtv.com/songs/60010277.mkv +刘和刚-把爱带回家,http://em.21dtv.com/songs/60101612.mkv +陈笑玮-把爱带回家,http://em.21dtv.com/songs/60065830.mkv +晓晓-把爱藏心里,http://em.21dtv.com/songs/60098419.mkv +程恢弘-把爱藏起来,http://em.21dtv.com/songs/60113923.mkv +F.I.R-把爱传出来,http://em.21dtv.com/songs/60009531.mkv +孙嘉梵-baby呀,http://em.21dtv.com/songs/60131324.mkv +爱戴-Baby爱,http://em.21dtv.com/songs/60117906.mkv +金池-边爱边学它,http://em.21dtv.com/songs/60100522.mkv +彭美琪-不爱不痛快,http://em.21dtv.com/songs/60135270.mkv +杨守刚-不爱别忽悠,http://em.21dtv.com/songs/60132583.mkv +林采缇-边爱边胡闹,http://em.21dtv.com/songs/60081660.mkv +邓丽欣-不爱不爱理,http://em.21dtv.com/songs/60010956.mkv +DEEP-白いマフラー,http://em.21dtv.com/songs/60009650.mkv +BOA-抱きしめる,http://em.21dtv.com/songs/60010053.mkv +酒井法子-碧いうさぎ,http://em.21dtv.com/songs/60074672.mkv +张洋-爱在这一秒,http://em.21dtv.com/songs/60081266.mkv +钟洁希-爱在转瞬间,http://em.21dtv.com/songs/60071755.mkv +王冠杰-爱总在徘徊,http://em.21dtv.com/songs/60009284.mkv +阿杜-爱字怎么写,http://em.21dtv.com/songs/60009281.mkv +阿杜-爱字怎么写(演唱会),http://em.21dtv.com/songs/60009280.mkv +成于申-爱直至成伤,http://em.21dtv.com/songs/60105915.mkv +成于申-爱直至成伤,http://em.21dtv.com/songs/60085754.mkv +达坡玛吉-爱在云之南,http://em.21dtv.com/songs/60009217.mkv +许绍洋-爱正要起飞,http://em.21dtv.com/songs/60009241.mkv +李翊君-爱在夕阳下,http://em.21dtv.com/songs/60009203.mkv +李茂山-爱在夕阳下,http://em.21dtv.com/songs/60009202.mkv +高胜美-爱在夕阳下,http://em.21dtv.com/songs/60009201.mkv +周杰伦-爱在西元前,http://em.21dtv.com/songs/60009204.mkv +杨玉平-爱在悬崖边,http://em.21dtv.com/songs/60068086.mkv +齐国-爱在小巷里,http://em.21dtv.com/songs/60109785.mkv +郑少秋+李芷玲-爱在心内暖,http://em.21dtv.com/songs/60009211.mkv +郑少秋+李美慧-爱在心内暖(演唱会),http://em.21dtv.com/songs/60009210.mkv +齐秦-爱在星空下,http://em.21dtv.com/songs/60126498.mkv +阿次-爱在香巴拉,http://em.21dtv.com/songs/60009207.mkv +邓丽君-爱在我心中,http://em.21dtv.com/songs/60009198.mkv +吴映洁-爱在我身边,http://em.21dtv.com/songs/60131258.mkv +王瑞霞-爱着无情人,http://em.21dtv.com/songs/60009239.mkv +陈永馨-爱只为你写,http://em.21dtv.com/songs/60127559.mkv +枫舞-爱在网络里,http://em.21dtv.com/songs/60115241.mkv +张文绮-爱着无法度,http://em.21dtv.com/songs/60105848.mkv +谢名-爱在天地间,http://em.21dtv.com/songs/60114784.mkv +降央卓玛-爱在天地间,http://em.21dtv.com/songs/60074537.mkv +祖海-爱在天地间,http://em.21dtv.com/songs/60009195.mkv +朱玉明-爱只是游戏,http://em.21dtv.com/songs/60117801.mkv +邱泽-爱只剩一天,http://em.21dtv.com/songs/60009256.mkv +许茹芸-爱只剩一秒,http://em.21dtv.com/songs/60009255.mkv +李宗盛-阿宗三件事,http://em.21dtv.com/songs/60112752.mkv +陈兴瑜-爱只是传说,http://em.21dtv.com/songs/60062283.mkv +陈兴瑜-爱只是传说(演唱会),http://em.21dtv.com/songs/60062282.mkv +陈兴瑜-爱只是传说(舞曲版),http://em.21dtv.com/songs/60062281.mkv +吴昊-爱在日出前,http://em.21dtv.com/songs/60081202.mkv +子夕-爱在黔东南,http://em.21dtv.com/songs/60080877.mkv +肖淑平+康志雄-爱在普吉岛,http://em.21dtv.com/songs/60097633.mkv +陈瑞-爱着你最好,http://em.21dtv.com/songs/60120096.mkv +任贤齐-爱在你伤口,http://em.21dtv.com/songs/60009177.mkv +群星-爱在你身边,http://em.21dtv.com/songs/60009180.mkv +刘超华-爱在你身边,http://em.21dtv.com/songs/60009179.mkv +罗中旭-爱在你身边(演唱会),http://em.21dtv.com/songs/60009178.mkv +蔡小虎-爱着你的人,http://em.21dtv.com/songs/60009234.mkv +谢霆锋+梅琳-爱在蔓延中,http://em.21dtv.com/songs/60009174.mkv +HIT-5-爱在每一秒,http://em.21dtv.com/songs/60009176.mkv +郭文俊-爱在每一季,http://em.21dtv.com/songs/60071753.mkv +高峰-爱在每一次,http://em.21dtv.com/songs/60094354.mkv +郎军-爱怎么挽留,http://em.21dtv.com/songs/60066833.mkv +汪苏泷-爱怎么会错,http://em.21dtv.com/songs/60116107.mkv +江蕙-爱作梦的鱼,http://em.21dtv.com/songs/60009293.mkv +佚名-爱做梦的人,http://em.21dtv.com/songs/60009295.mkv +萧煌奇-爱作梦的人,http://em.21dtv.com/songs/60009292.mkv +群星-爱转了一圈,http://em.21dtv.com/songs/60009268.mkv +琬婷-爱在离别时,http://em.21dtv.com/songs/60009172.mkv +李咏梅-爱在空气里,http://em.21dtv.com/songs/60086439.mkv +张秀卿-爱着卡惨死(无原唱),http://em.21dtv.com/songs/60071798.mkv +佚名-爱着卡惨死(无原唱),http://em.21dtv.com/songs/60009228.mkv +傅又宣-爱这件事情,http://em.21dtv.com/songs/60106609.mkv +傅又宣-爱这件事情,http://em.21dtv.com/songs/60105599.mkv +赵建林-爱在回忆里,http://em.21dtv.com/songs/60126233.mkv +王晓雪-爱在花水湾,http://em.21dtv.com/songs/60119812.mkv +张也-爱在黑龙江,http://em.21dtv.com/songs/60089847.mkv +沈菁-爱在风雨中,http://em.21dtv.com/songs/60009163.mkv +芊芳-爱着放袂离,http://em.21dtv.com/songs/60135659.mkv +蔡佳麟-阿宅的心声,http://em.21dtv.com/songs/60096491.mkv +约瑟翰庞麦郎-肮脏的恶魔,http://em.21dtv.com/songs/60124337.mkv +歌武传奇-爱在大草原,http://em.21dtv.com/songs/60135470.mkv +李玟-爱之初体验,http://em.21dtv.com/songs/60118684.mkv +陈一玲-爱之初体验,http://em.21dtv.com/songs/60084866.mkv +张柏芝-爱之初体验(演唱会),http://em.21dtv.com/songs/60009245.mkv +黄品源+黄品冠-爱之初体验(演唱会),http://em.21dtv.com/songs/60009244.mkv +张震岳-爱之初体验,http://em.21dtv.com/songs/60006931.mkv +马智宇-爱在春天里,http://em.21dtv.com/songs/60070506.mkv +火雅-爱在八万里,http://em.21dtv.com/songs/60108692.mkv +刘雅丽-爱在别离中,http://em.21dtv.com/songs/60092369.mkv +许志安-爱在布拉格,http://em.21dtv.com/songs/60093163.mkv +央金次卓-爱在布达拉,http://em.21dtv.com/songs/60069223.mkv +戴梅君-爱着爱甘愿,http://em.21dtv.com/songs/60095538.mkv +佚名-爱着爱到死,http://em.21dtv.com/songs/60009265.mkv +李翊君-爱着爱到死,http://em.21dtv.com/songs/60009226.mkv +黄秋田-爱着爱到死,http://em.21dtv.com/songs/60009225.mkv +李玟-爱在85℃,http://em.21dtv.com/songs/60009152.mkv +罗美玲-爱一直闪亮,http://em.21dtv.com/songs/60009066.mkv +郑耿-爱要怎么走,http://em.21dtv.com/songs/60074522.mkv +黄贯中-爱又怎么样,http://em.21dtv.com/songs/60074531.mkv +佚名-爱要怎么说,http://em.21dtv.com/songs/60009022.mkv +伍思凯-爱要怎么说,http://em.21dtv.com/songs/60009021.mkv +张雷-爱要怎么唱,http://em.21dtv.com/songs/60094902.mkv +李利依-奥运中国结(演唱会),http://em.21dtv.com/songs/60068091.mkv +金虎-爱一直都在,http://em.21dtv.com/songs/60098820.mkv +陈明-爱要找到你,http://em.21dtv.com/songs/60009025.mkv +梁文音-爱一直存在,http://em.21dtv.com/songs/60009065.mkv +邱凯伟-爱越远越重,http://em.21dtv.com/songs/60112294.mkv +叶瑷菱-哎咿呀咿呀,http://em.21dtv.com/songs/60090793.mkv +陈慧娴-爱亦要舍弃,http://em.21dtv.com/songs/60009086.mkv +刘德华-爱永远存在,http://em.21dtv.com/songs/60121437.mkv +张瑶-爱要向前进,http://em.21dtv.com/songs/60009018.mkv +刘栋升-爱要向前冲,http://em.21dtv.com/songs/60106646.mkv +阿四龙组合-哎呀小凉山,http://em.21dtv.com/songs/60108958.mkv +王莱+郑乔安-爱伊西块鲁,http://em.21dtv.com/songs/60121949.mkv +张杰-爱伊携带汝(演唱会),http://em.21dtv.com/songs/60009067.mkv +曾辉彬-哎哟我的天,http://em.21dtv.com/songs/60087963.mkv +曾辉彬-哎呦我的天,http://em.21dtv.com/songs/60006890.mkv +高进-哎呀我的神,http://em.21dtv.com/songs/60006872.mkv +蔡秋凤-唉呦我的妈,http://em.21dtv.com/songs/60123133.mkv +丁丁-爱要坦荡荡(演唱会),http://em.21dtv.com/songs/60068079.mkv +萧潇-爱要坦荡荡,http://em.21dtv.com/songs/60009017.mkv +郑秀文-爱有什么用,http://em.21dtv.com/songs/60009109.mkv +MINI-爱有双翅膀,http://em.21dtv.com/songs/60009110.mkv +迪克牛仔-爱依然是爱,http://em.21dtv.com/songs/60089496.mkv +方皓玟-爱要让你知,http://em.21dtv.com/songs/60009014.mkv +伍咏薇-爱依然精彩,http://em.21dtv.com/songs/60009069.mkv +ELTON JOHN-are you ready for love,http://em.21dtv.com/songs/60000326.mkv +黎明-爱要去哪里,http://em.21dtv.com/songs/60009013.mkv +梦然-爱一去不回,http://em.21dtv.com/songs/60124165.mkv +DURAN DURAN-all you need is now,http://em.21dtv.com/songs/60062013.mkv +THE BEATLES-all you need is love,http://em.21dtv.com/songs/60000183.mkv +T-ara-因你而疯,http://em.21dtv.com/songs/60000323.mkv +MARIAH CAREY-anytime you need a friend,http://em.21dtv.com/songs/60000315.mkv +高林生-爱与梦同行,http://em.21dtv.com/songs/60062366.mkv +罗文-爱与梦同行,http://em.21dtv.com/songs/60009129.mkv +李漫荻-爱与梦飞翔,http://em.21dtv.com/songs/60093768.mkv +古巨基-爱与梦飞行,http://em.21dtv.com/songs/60009128.mkv +古巨基-爱与梦飞行(演唱会),http://em.21dtv.com/songs/60009127.mkv +陈晓东-爱有了影踪,http://em.21dtv.com/songs/60009102.mkv +韩宝仪-哎呀留下来,http://em.21dtv.com/songs/60088948.mkv +F.I.R-爱有路可退(演唱会),http://em.21dtv.com/songs/60061027.mkv +雷龙-奥运狂欢夜,http://em.21dtv.com/songs/60009444.mkv +林凡-爱已经受伤,http://em.21dtv.com/songs/60100201.mkv +天孪兄弟-爱已经离开,http://em.21dtv.com/songs/60009077.mkv +李晶涵-爱已经不在,http://em.21dtv.com/songs/60009076.mkv +杜留香-爱已化乌有,http://em.21dtv.com/songs/60124099.mkv +杨丽-爱要火辣辣,http://em.21dtv.com/songs/60080807.mkv +李志刚-爱已化成灰,http://em.21dtv.com/songs/60009075.mkv +[Group] +groupName=十六万歌曲MV等 - 65 +李俊旭-爱已化成灰,http://em.21dtv.com/songs/60009074.mkv +林心如-爱一个快乐,http://em.21dtv.com/songs/60088098.mkv +丁汀-爱应该快乐,http://em.21dtv.com/songs/60009094.mkv +李湘-爱要放轻松,http://em.21dtv.com/songs/60091328.mkv +刚泽斌-爱易放难收,http://em.21dtv.com/songs/60009088.mkv +陈思思-奥运的微笑,http://em.21dtv.com/songs/60009443.mkv +崔天琪-爱要多么烫,http://em.21dtv.com/songs/60107693.mkv +程欣-爱一刀两断,http://em.21dtv.com/songs/60070504.mkv +王旭鹏-爱一定很累,http://em.21dtv.com/songs/60116140.mkv +唐杰-爱已成罪过,http://em.21dtv.com/songs/60110095.mkv +佚名-奥运畅想曲,http://em.21dtv.com/songs/60009441.mkv +吴若希-爱要撑下去,http://em.21dtv.com/songs/60009010.mkv +张津涤-爱已成奢侈,http://em.21dtv.com/songs/60132454.mkv +蔡卓妍-爱赢才会拼,http://em.21dtv.com/songs/60061026.mkv +阿毛-爱一次不够,http://em.21dtv.com/songs/60131922.mkv +草蜢+黎瑞恩-爱一次便够,http://em.21dtv.com/songs/60009031.mkv +苏晴+小拇指-哎呀别再减,http://em.21dtv.com/songs/60066771.mkv +陈杰瑞-爱一百万次,http://em.21dtv.com/songs/60123302.mkv +张华+姜易-奥运china北京,http://em.21dtv.com/songs/60009440.mkv +小虎队-爱,http://em.21dtv.com/songs/60106795.mkv +詹曼铃-爱沅爱一半,http://em.21dtv.com/songs/60009144.mkv +萧闳仁+安心亚-爱要安心呀,http://em.21dtv.com/songs/60096121.mkv +谢金燕-爱要爱的久,http://em.21dtv.com/songs/60009008.mkv +余润泽+徐铵-爱呀爱不够,http://em.21dtv.com/songs/60134891.mkv +余润泽+徐铵-爱呀爱不够,http://em.21dtv.com/songs/60111693.mkv +詹雅雯-爱心一直湠,http://em.21dtv.com/songs/60110513.mkv +何雁诗-爱需要勇气,http://em.21dtv.com/songs/60131166.mkv +王爱华-爱像一条河,http://em.21dtv.com/songs/60084857.mkv +邓丽君-爱像一首歌,http://em.21dtv.com/songs/60008994.mkv +蔡琴-爱像一首歌,http://em.21dtv.com/songs/60008993.mkv +邓丽君-爱像一首歌(演唱会),http://em.21dtv.com/songs/60008992.mkv +刘瑞琪-爱需要练习,http://em.21dtv.com/songs/60132250.mkv +陈明-爱需要练习,http://em.21dtv.com/songs/60118160.mkv +小凤凤-阿香要嫁尫,http://em.21dtv.com/songs/60006833.mkv +彭三-爱像一把刀,http://em.21dtv.com/songs/60129136.mkv +戴恩玲-爱心一百次,http://em.21dtv.com/songs/60009004.mkv +陈一郎-阿霞相思梦,http://em.21dtv.com/songs/60095977.mkv +元若蓝-爱X无限大,http://em.21dtv.com/songs/60115696.mkv +牛马丁-阿兄唐山人,http://em.21dtv.com/songs/60006837.mkv +祁隆-爱像手中沙,http://em.21dtv.com/songs/60107094.mkv +李志洲-爱像手中沙,http://em.21dtv.com/songs/60068077.mkv +吴进法-安溪是我家,http://em.21dtv.com/songs/60070510.mkv +萧亚轩-爱熄灭之前,http://em.21dtv.com/songs/60008971.mkv +袁野-爱心满世界(演唱会),http://em.21dtv.com/songs/60009002.mkv +霍建华-爱像棉花糖,http://em.21dtv.com/songs/60008987.mkv +沈芯羽-阿星老师说,http://em.21dtv.com/songs/60006835.mkv +卢巧音-阿修罗树海,http://em.21dtv.com/songs/60006839.mkv +铁热沁夫-爱像冷风吹,http://em.21dtv.com/songs/60088819.mkv +李鼎-爱笑的眼睛,http://em.21dtv.com/songs/60079940.mkv +徐若瑄-爱笑的眼睛,http://em.21dtv.com/songs/60008998.mkv +林俊杰-爱笑的眼睛,http://em.21dtv.com/songs/60008997.mkv +TWINS-翱翔的小鸟,http://em.21dtv.com/songs/60009428.mkv +大小姐-爱心大无限,http://em.21dtv.com/songs/60080932.mkv +杨洋-安心的温柔,http://em.21dtv.com/songs/60114620.mkv +叶倩文-阿信的故事(演唱会),http://em.21dtv.com/songs/60006834.mkv +纪敏佳-翱翔的翅膀,http://em.21dtv.com/songs/60009427.mkv +星宇-爱无怨无悔,http://em.21dtv.com/songs/60063188.mkv +沈芳如-爱无药通医,http://em.21dtv.com/songs/60112060.mkv +余枫-爱无以复加,http://em.21dtv.com/songs/60130086.mkv +王莱-爱我是真的,http://em.21dtv.com/songs/60125949.mkv +PROCOL HARUM-a whiter shade of pale,http://em.21dtv.com/songs/60000079.mkv +侧田-a whiter shade of pale(演唱会),http://em.21dtv.com/songs/60000078.mkv +佚名-a whiter shade of pale(无原唱),http://em.21dtv.com/songs/60000077.mkv +符琼音-爱我说了算,http://em.21dtv.com/songs/60088396.mkv +江蕙-爱我三分钟,http://em.21dtv.com/songs/60008942.mkv +傅薇-爱我三分钟,http://em.21dtv.com/songs/60008941.mkv +曾心梅-爱我三分钟,http://em.21dtv.com/songs/60008940.mkv +徐海涛-爱我说出来,http://em.21dtv.com/songs/60065815.mkv +杜忻恬-爱无所不在,http://em.21dtv.com/songs/60127074.mkv +杜忻恬-爱无所不在,http://em.21dtv.com/songs/60125729.mkv +群星-爱无所不在,http://em.21dtv.com/songs/60086436.mkv +周传雄-爱无所不在,http://em.21dtv.com/songs/60008964.mkv +王力宏-爱无所不在,http://em.21dtv.com/songs/60008963.mkv +周华健-爱无所不能,http://em.21dtv.com/songs/60008962.mkv +佚名-阿瓦日古丽,http://em.21dtv.com/songs/60007900.mkv +阎维文-阿瓦日古丽,http://em.21dtv.com/songs/60006827.mkv +陈明章-暧问阮的名,http://em.21dtv.com/songs/60009306.mkv +吴若希-爱我请留言(HD),http://em.21dtv.com/songs/10012737.mkv +吴若希-爱我请留言,http://em.21dtv.com/songs/60099874.mkv +郭美美-爱我请打卡,http://em.21dtv.com/songs/60071749.mkv +王爱华-爱为你燃烧,http://em.21dtv.com/songs/60130594.mkv +望海高歌-爱为你燃烧,http://em.21dtv.com/songs/60130393.mkv +董事长乐团-爱我你会死,http://em.21dtv.com/songs/60096485.mkv +冯建宇-爱为你出发,http://em.21dtv.com/songs/60123655.mkv +刘俊-爱我每一天,http://em.21dtv.com/songs/60008932.mkv +慕容晓晓+赵鑫-爱我没有错,http://em.21dtv.com/songs/60082546.mkv +佚名-爱我免送花(无原唱),http://em.21dtv.com/songs/60008933.mkv +童话合唱团-爱我就自首,http://em.21dtv.com/songs/60008931.mkv +李玟-爱我久一点,http://em.21dtv.com/songs/60008920.mkv +蓝奕邦-爱我就吻我,http://em.21dtv.com/songs/60105332.mkv +刘明扬-爱我就吻我,http://em.21dtv.com/songs/60008929.mkv +黎瑞恩-爱我就疼我,http://em.21dtv.com/songs/60008928.mkv +夏天播放-爱我就给我,http://em.21dtv.com/songs/60111793.mkv +赵传-爱我就给我,http://em.21dtv.com/songs/60008925.mkv +陶喆-爱我还是他,http://em.21dtv.com/songs/60128562.mkv +王乃恩+李昊瀚-爱我还是他,http://em.21dtv.com/songs/60081184.mkv +洪卓立-爱我还是他(演唱会),http://em.21dtv.com/songs/60071747.mkv +陶喆-爱我还是他,http://em.21dtv.com/songs/60008914.mkv +陶喆-爱我还是他(演唱会),http://em.21dtv.com/songs/60008913.mkv +高山峰-爱我好不好,http://em.21dtv.com/songs/60088993.mkv +王雅洁-爱无关性别,http://em.21dtv.com/songs/60080741.mkv +逍遥香香-爱无法挽留,http://em.21dtv.com/songs/60107257.mkv +いとうかなこ-a wish for the stars,http://em.21dtv.com/songs/60000081.mkv +云飞-阿瓦尔古丽,http://em.21dtv.com/songs/60103871.mkv +关贵敏-阿瓦尔古丽,http://em.21dtv.com/songs/60090670.mkv +S.H.E-爱我的资格(演唱会),http://em.21dtv.com/songs/60008911.mkv +苏永康-爱我多一天,http://em.21dtv.com/songs/60088540.mkv +赖淞凤-爱我的人收,http://em.21dtv.com/songs/60108020.mkv +张腾-爱我的女孩,http://em.21dtv.com/songs/60008900.mkv +何欢-爱我的理由,http://em.21dtv.com/songs/60074507.mkv +杨克强-爱我的理由,http://em.21dtv.com/songs/60008898.mkv +蓝心湄-爱我到今生,http://em.21dtv.com/songs/60008896.mkv +黄一-爱我的承诺,http://em.21dtv.com/songs/60080578.mkv +李京坤+陈翔瑞-爱无处不在,http://em.21dtv.com/songs/60124053.mkv +蜜蜂-爱无处不在,http://em.21dtv.com/songs/60008947.mkv +希亚-爱我不一样,http://em.21dtv.com/songs/60008895.mkv +张杰-爱我不敢说,http://em.21dtv.com/songs/60074506.mkv +张智霖+付梦妮-爱我不爱我,http://em.21dtv.com/songs/60074505.mkv +许绍洋-爱我不爱我,http://em.21dtv.com/songs/60008893.mkv +佚名-a view to a kill,http://em.21dtv.com/songs/60000076.mkv +BEE GEES-and the sun will shine,http://em.21dtv.com/songs/60000249.mkv +JANG+SHELLY佳-安徒生剧本,http://em.21dtv.com/songs/60074548.mkv +张学友-and then she hit me,http://em.21dtv.com/songs/60000250.mkv +林奕匡-安徒生的错,http://em.21dtv.com/songs/60120661.mkv +林奕匡-安徒生的错,http://em.21dtv.com/songs/60116044.mkv +佚名-after the rain has fallen,http://em.21dtv.com/songs/60000112.mkv +杜德伟+品冠+曹格+阿牛-爱她没得救,http://em.21dtv.com/songs/60084810.mkv +STEPS-after the love has gone,http://em.21dtv.com/songs/60000110.mkv +陈梦晨-爱天空幻想,http://em.21dtv.com/songs/60112356.mkv +杨守刚-爱痛的自我,http://em.21dtv.com/songs/60132584.mkv +陈升-a train到天堂(演唱会),http://em.21dtv.com/songs/60000075.mkv +佚名-暗头的水蛙,http://em.21dtv.com/songs/60009402.mkv +张国荣-a thousand dreams of you,http://em.21dtv.com/songs/60000073.mkv +张国荣-a thousand dream of you(演唱会),http://em.21dtv.com/songs/60000072.mkv +郑晓填-爱他比较多,http://em.21dtv.com/songs/60134303.mkv +麦兜-all things bright and beautiful,http://em.21dtv.com/songs/60082069.mkv +THE PANCAKES-all things bright and beautifu,http://em.21dtv.com/songs/60000179.mkv +董冬-爱上这座城,http://em.21dtv.com/songs/60068071.mkv +钟镇涛+彭建新-爱是这样甜,http://em.21dtv.com/songs/60008826.mkv +谭咏麟-爱是这样甜,http://em.21dtv.com/songs/60008825.mkv +谭咏麟+李克勤-爱是这样甜(演唱会),http://em.21dtv.com/songs/60008824.mkv +七郎-暗爽在心内,http://em.21dtv.com/songs/60009401.mkv +毛阿敏-爱上张无忌,http://em.21dtv.com/songs/60088181.mkv +周渝民-爱上这世界,http://em.21dtv.com/songs/60008734.mkv +黄义达-爱是自私的,http://em.21dtv.com/songs/60008827.mkv +全辉-爱上正能量,http://em.21dtv.com/songs/60101263.mkv +董燕妮-爱说走就走,http://em.21dtv.com/songs/60008836.mkv +星宇-爱是种寂寞(舞曲版),http://em.21dtv.com/songs/60063187.mkv +星宇-爱是种寂寞,http://em.21dtv.com/songs/60061018.mkv +翁立友-爱是咱的歌,http://em.21dtv.com/songs/60080220.mkv +王筝-爱是一种香,http://em.21dtv.com/songs/60008814.mkv +F4+周渝民-爱是一支箭,http://em.21dtv.com/songs/60089098.mkv +朱妮-爱上一座城,http://em.21dtv.com/songs/60120594.mkv +陈瑞-爱上烟雨楼,http://em.21dtv.com/songs/60102900.mkv +沙宝亮-爱上一条鱼,http://em.21dtv.com/songs/60008729.mkv +刘隋山-爱是一首诗,http://em.21dtv.com/songs/60082538.mkv +张可儿+严龙-爱是一首歌,http://em.21dtv.com/songs/60120507.mkv +阿佳组合-爱是一束光,http://em.21dtv.com/songs/60068074.mkv +刘至佳-爱上一片情,http://em.21dtv.com/songs/60128842.mkv +刘至佳-爱上一片海,http://em.21dtv.com/songs/60127780.mkv +晟瑶-爱是一根针,http://em.21dtv.com/songs/60068073.mkv +费玉清-爱是一个圆,http://em.21dtv.com/songs/60088686.mkv +郑秀文-爱上一个人,http://em.21dtv.com/songs/60093313.mkv +杨林-爱上一个人,http://em.21dtv.com/songs/60088073.mkv +AV芭比-爱上一个人,http://em.21dtv.com/songs/60069212.mkv +吴倩莲-爱上一个人,http://em.21dtv.com/songs/60008725.mkv +顾莉雅-爱上一个人,http://em.21dtv.com/songs/60008724.mkv +陈盈洁-爱上一个人,http://em.21dtv.com/songs/60008723.mkv +程响-爱上一个梦,http://em.21dtv.com/songs/60061015.mkv +潘傲峰-爱上杨贵妃,http://em.21dtv.com/songs/60008716.mkv +张庭+钟丽缇+王祖蓝-爱上幼儿园,http://em.21dtv.com/songs/60112667.mkv +钟丽缇+严稚棱-爱上幼儿园,http://em.21dtv.com/songs/60111463.mkv +苏泉-爱上油菜花,http://em.21dtv.com/songs/60053312.mkv +陈奕迅-爱是一本书,http://em.21dtv.com/songs/60008808.mkv +梁咏琪-爱上下雨天,http://em.21dtv.com/songs/60065810.mkv +何洁-爱是喜欢你,http://em.21dtv.com/songs/60008805.mkv +杨小弈-爱是幸福的,http://em.21dtv.com/songs/60008806.mkv +吴宗宪-爱说笑的人,http://em.21dtv.com/songs/60008835.mkv +王识贤-啊伤心的话,http://em.21dtv.com/songs/60006865.mkv +林俊杰-爱上外星人,http://em.21dtv.com/songs/60091436.mkv +谢有才-爱是我所有,http://em.21dtv.com/songs/60081214.mkv +唐俪+吴俊宏-爱是为什么,http://em.21dtv.com/songs/60008794.mkv +马磊-爱是我和你[原伴],http://em.21dtv.com/songs/60101002.mkv +伍佰-爱是无保留,http://em.21dtv.com/songs/60090590.mkv +NAKED EYES-always something there to remi,http://em.21dtv.com/songs/60000204.mkv +TOMMY PAGE-a shoulder to cry on(演唱会),http://em.21dtv.com/songs/60000066.mkv +泳儿-爱上水仙花,http://em.21dtv.com/songs/60091609.mkv +佚名-and she said take me,http://em.21dtv.com/songs/60000247.mkv +冷漠-爱上三清山,http://em.21dtv.com/songs/60074484.mkv +黎明-爱是傻得起,http://em.21dtv.com/songs/60008788.mkv +黄阅-爱是谁的错,http://em.21dtv.com/songs/60008793.mkv +格登扎西-爱随秋叶落,http://em.21dtv.com/songs/60070500.mkv +一绫-爱失去香味,http://em.21dtv.com/songs/60086432.mkv +眉佳-爱是巧克力,http://em.21dtv.com/songs/60008785.mkv +胡琳-爱是全奉献,http://em.21dtv.com/songs/60097642.mkv +郭富城-爱是全奉献(演唱会),http://em.21dtv.com/songs/60008786.mkv +吴嘉亮-爱上潘金莲,http://em.21dtv.com/songs/60008705.mkv +南风-爱随你走远,http://em.21dtv.com/songs/60123715.mkv +陈晓东-爱上你之后,http://em.21dtv.com/songs/60008701.mkv +张津涤-爱随你远走,http://em.21dtv.com/songs/60112682.mkv +南风-爱随你远走,http://em.21dtv.com/songs/60086434.mkv +张娜拉-爱上你全部,http://em.21dtv.com/songs/60091063.mkv +李玟-爱是那么真,http://em.21dtv.com/songs/60091340.mkv +司徒兰芳-爱是那么浪,http://em.21dtv.com/songs/60108368.mkv +王雨馨-俺是你介人,http://em.21dtv.com/songs/60009352.mkv +舜文齐-爱上你很美,http://em.21dtv.com/songs/60008671.mkv +韦小波-爱上你姑娘,http://em.21dtv.com/songs/60123357.mkv +黄美诗-爱上你的网,http://em.21dtv.com/songs/60008663.mkv +胡海泉+丁于-爱上你的美,http://em.21dtv.com/songs/60095047.mkv +中国好声音第二季-爱上你的美(张亿亚+常颖),http://em.21dtv.com/songs/60081524.mkv +雨天-爱上你的美,http://em.21dtv.com/songs/60008662.mkv +羽泉-爱上你的美,http://em.21dtv.com/songs/60008661.mkv +张祥洪-爱上你的谎,http://em.21dtv.com/songs/60082527.mkv +梁佳杰-爱上你的爱,http://em.21dtv.com/songs/60081077.mkv +李逸朗-爱上你的爱,http://em.21dtv.com/songs/60008659.mkv +天芯-爱上你不悔,http://em.21dtv.com/songs/60126756.mkv +浩轩-爱上你不悔(演唱会),http://em.21dtv.com/songs/60070496.mkv +杭娇-爱上民族风,http://em.21dtv.com/songs/60061010.mkv +梅艳芳-爱是没余地(演唱会),http://em.21dtv.com/songs/60008781.mkv +曾敏杰-爱什么稀罕,http://em.21dtv.com/songs/60126966.mkv +石头-爱什么稀罕,http://em.21dtv.com/songs/60120829.mkv +谷嘉诚+伍嘉成-爱什么稀罕,http://em.21dtv.com/songs/60117247.mkv +张杰-爱什么稀罕,http://em.21dtv.com/songs/60098354.mkv +刘雅婷+张欣奕-爱什么稀罕,http://em.21dtv.com/songs/60081525.mkv +石头-爱什么稀罕,http://em.21dtv.com/songs/60074491.mkv +刘振宇-爱什么稀罕,http://em.21dtv.com/songs/60069214.mkv +袁媛-爱什么稀罕(演唱会),http://em.21dtv.com/songs/60063319.mkv +张惠妹-爱什么稀罕,http://em.21dtv.com/songs/60008739.mkv +孟小迪-爱是萌萌哒,http://em.21dtv.com/songs/60115098.mkv +景心妍-爱上没良心,http://em.21dtv.com/songs/60074478.mkv +杨子-爱上玫瑰花,http://em.21dtv.com/songs/60101110.mkv +刘科-爱死了昨天,http://em.21dtv.com/songs/60099811.mkv +李慧珍-爱死了昨天,http://em.21dtv.com/songs/60008841.mkv +聂琳峰-爱伤了自己,http://em.21dtv.com/songs/60008624.mkv +张虎-爱死了算了,http://em.21dtv.com/songs/60008840.mkv +李明翰-爱上了寂寞,http://em.21dtv.com/songs/60008646.mkv +吴陌川-爱上了骄傲,http://em.21dtv.com/songs/60135042.mkv +杭娇-爱说了谎言,http://em.21dtv.com/songs/60102379.mkv +赵学而-爱上两个人,http://em.21dtv.com/songs/60093224.mkv +何凡-爱上狼的羊,http://em.21dtv.com/songs/60116541.mkv +立威廉-爱是流动的,http://em.21dtv.com/songs/60008780.mkv +南风-爱碎了痴心,http://em.21dtv.com/songs/60074500.mkv +谢雨欣-爱是空心菜,http://em.21dtv.com/songs/60008778.mkv +朱宇-爱上矿泉水,http://em.21dtv.com/songs/60121754.mkv +宪明-爱撕寂寞人,http://em.21dtv.com/songs/60008838.mkv +卫兰-爱深过做人,http://em.21dtv.com/songs/60092393.mkv +岩光渤-爱胜过一切,http://em.21dtv.com/songs/60124794.mkv +韦小天-爱是个傻瓜,http://em.21dtv.com/songs/60086433.mkv +黄勇-爱输给了谁,http://em.21dtv.com/songs/60070499.mkv +梅艳芳-爱是个传奇(演唱会),http://em.21dtv.com/songs/60008765.mkv +张星唯-爱是否愿意,http://em.21dtv.com/songs/60129090.mkv +SWEETY-爱神恶作剧,http://em.21dtv.com/songs/60008747.mkv +星君-爱上大眼睛,http://em.21dtv.com/songs/60063916.mkv +许志安-爱是多简单(演唱会),http://em.21dtv.com/songs/60008764.mkv +张秀卿-爱是大家的,http://em.21dtv.com/songs/60008763.mkv +张雷-爱伤的粉碎,http://em.21dtv.com/songs/60061006.mkv +唐冰冰-爱上大草原,http://em.21dtv.com/songs/60084848.mkv +格根珠拉-爱上草原郎,http://em.21dtv.com/songs/60074474.mkv +艾可-爱是冰淇淋(无原唱),http://em.21dtv.com/songs/60008760.mkv +李明翰-爱说不清楚,http://em.21dtv.com/songs/60008834.mkv +王紫-爱谁比较多,http://em.21dtv.com/songs/60132738.mkv +林志美-爱是不保留,http://em.21dtv.com/songs/60113707.mkv +林志美-爱是不保留,http://em.21dtv.com/songs/60008761.mkv +蔡秋凤-爱人在天涯,http://em.21dtv.com/songs/60095920.mkv +张秀卿-爱人仔恰恰,http://em.21dtv.com/songs/60063913.mkv +陈思安-爱人在哪里,http://em.21dtv.com/songs/60008598.mkv +蔡小虎-爱人醉落去,http://em.21dtv.com/songs/60008600.mkv +崔羽明-爱如指间沙,http://em.21dtv.com/songs/60071739.mkv +新宝岛康乐队-爱人在杭州,http://em.21dtv.com/songs/60008597.mkv +江蕙-爱人这薄幸,http://em.21dtv.com/songs/60008599.mkv +巫启贤-爱人原谅我,http://em.21dtv.com/songs/60008594.mkv +卓依婷-爱阮有几分,http://em.21dtv.com/songs/60063178.mkv +林千艳-爱人鱼公主,http://em.21dtv.com/songs/60129297.mkv +陈茂丰-爱阮有多深,http://em.21dtv.com/songs/60111500.mkv +李代沫-黯然销魂掌,http://em.21dtv.com/songs/60130407.mkv +肖飞-黯然销魂掌,http://em.21dtv.com/songs/60088488.mkv +肖飞-黯然肖魂掌,http://em.21dtv.com/songs/60009413.mkv +汪苏泷-爱让我勇敢,http://em.21dtv.com/songs/60127159.mkv +佚名-爱让我疲倦(无原唱),http://em.21dtv.com/songs/60008527.mkv +袁浪-爱让我疲惫,http://em.21dtv.com/songs/60114041.mkv +鲁宏黎-爱让我迷茫,http://em.21dtv.com/songs/60123387.mkv +张伦辉-爱让我明白,http://em.21dtv.com/songs/60008526.mkv +钟芹-爱让我发烧,http://em.21dtv.com/songs/60008523.mkv +姚贝娜-爱如水中月,http://em.21dtv.com/songs/60125373.mkv +龙千玉+高向鹏-爱人是兄弟,http://em.21dtv.com/songs/60008582.mkv +阿弟仔-爱人三角裤(无原唱),http://em.21dtv.com/songs/60008579.mkv +代小波-爱若是个圆,http://em.21dtv.com/songs/60008618.mkv +陶莉萍-爱让人无力,http://em.21dtv.com/songs/60008522.mkv +GACKT-Arrow,http://em.21dtv.com/songs/60115586.mkv +熊七梅-爱让人难懂,http://em.21dtv.com/songs/60109505.mkv +伍咏薇-爱仍然精彩,http://em.21dtv.com/songs/60092248.mkv +伍咏薇-爱仍然精采,http://em.21dtv.com/songs/60008601.mkv +陈小云-爱人去不回,http://em.21dtv.com/songs/60008578.mkv +佚名-a rainy night in georgia,http://em.21dtv.com/songs/60000065.mkv +刘春云-爱人你好吗(演唱会),http://em.21dtv.com/songs/60008574.mkv +杨宗宪-爱人呐的心,http://em.21dtv.com/songs/60032126.mkv +南台湾小姑娘-爱阮免排队,http://em.21dtv.com/songs/60008615.mkv +王秀琪-爱阮袂变天(无原唱),http://em.21dtv.com/songs/60008614.mkv +林晏如-爱阮拢是假,http://em.21dtv.com/songs/60095678.mkv +张胜淼-爱人离开我,http://em.21dtv.com/songs/60065805.mkv +彭立-爱人离开我,http://em.21dtv.com/songs/60008572.mkv +徐昌龙-爱若留不住,http://em.21dtv.com/songs/60008616.mkv +李逸-爱人就是我,http://em.21dtv.com/songs/60008571.mkv +邓丽君-爱人就是我,http://em.21dtv.com/songs/60008570.mkv +陈浩德-爱人结婚了(演唱会),http://em.21dtv.com/songs/60061004.mkv +郑少秋-爱人结婚了(演唱会),http://em.21dtv.com/songs/60008569.mkv +谢容儿-爱如甲骨文,http://em.21dtv.com/songs/60069204.mkv +吴奇隆-爱人还是你,http://em.21dtv.com/songs/60008566.mkv +赵华-爱人跟我走,http://em.21dtv.com/songs/60094306.mkv +罗时丰-爱人跟人走,http://em.21dtv.com/songs/60134105.mkv +卓依婷-爱人跟人走,http://em.21dtv.com/songs/60008565.mkv +小凤凤-爱人跟人走,http://em.21dtv.com/songs/60008564.mkv +罗时丰-爱人跟人走,http://em.21dtv.com/songs/60008563.mkv +陈小云-爱人跟人走,http://em.21dtv.com/songs/60008562.mkv +郭婷筠-爱阮的全部,http://em.21dtv.com/songs/60074470.mkv +扬哲-爱人的目睭,http://em.21dtv.com/songs/60008555.mkv +黄克林-爱人的目屎,http://em.21dtv.com/songs/60008554.mkv +陈淑萍-爱人的良心,http://em.21dtv.com/songs/60096009.mkv +孙斌-黯然的结局,http://em.21dtv.com/songs/60066837.mkv +李创-爱人的酒杯,http://em.21dtv.com/songs/60122844.mkv +易秀明珠-爱人的肩膀,http://em.21dtv.com/songs/60008553.mkv +台湾天使-爱人电话中(无原唱),http://em.21dtv.com/songs/60008557.mkv +凤飞飞-爱人顶呱呱,http://em.21dtv.com/songs/60008558.mkv +刘德华-爱如此神奇,http://em.21dtv.com/songs/60008608.mkv +苑紫盈-爱如此脆弱,http://em.21dtv.com/songs/60063328.mkv +芬华-爱人变朋友,http://em.21dtv.com/songs/60135668.mkv +凤娘+叶诺帆-爱人变朋友,http://em.21dtv.com/songs/60118380.mkv +郭婷筠+蔡佳麟-爱人变朋友,http://em.21dtv.com/songs/60074467.mkv +陈雷-爱人不免惊,http://em.21dtv.com/songs/60004690.mkv +詹曼铃-爱阮爱一半,http://em.21dtv.com/songs/60088635.mkv +洪荣宏-爱情着贼偷(无原唱),http://em.21dtv.com/songs/60008490.mkv +翁立友-爱情这自私(无原唱),http://em.21dtv.com/songs/60008488.mkv +酒窝乐团-爱情战争号,http://em.21dtv.com/songs/60116304.mkv +周俊伟-爱千真万确(演唱会),http://em.21dtv.com/songs/60008073.mkv +莫文蔚-爱情真伟大,http://em.21dtv.com/songs/60008492.mkv +金佩珊-爱情这条路,http://em.21dtv.com/songs/60008486.mkv +龙梅子+老猫-爱情专属权,http://em.21dtv.com/songs/60061003.mkv +丁汀-爱情在说谎,http://em.21dtv.com/songs/60081868.mkv +张萌萌-爱情走私贩,http://em.21dtv.com/songs/60063910.mkv +齐浚羽+聂诗-爱情真奇妙,http://em.21dtv.com/songs/60124764.mkv +曾心梅-爱情这呢冷,http://em.21dtv.com/songs/60095591.mkv +王力宏-爱情在哪里,http://em.21dtv.com/songs/60091689.mkv +佚名-爱情这呢冷,http://em.21dtv.com/songs/60008485.mkv +宋佳玲-爱情在那里(无原唱),http://em.21dtv.com/songs/60008480.mkv +林孟婕-爱情这呢苦(无原唱),http://em.21dtv.com/songs/60095663.mkv +杨欣桦-爱情走那飞,http://em.21dtv.com/songs/60135411.mkv +阿吉仔-爱情走马灯,http://em.21dtv.com/songs/60008509.mkv +李明洋-爱情这两字,http://em.21dtv.com/songs/60132548.mkv +胡力-爱情自留地,http://em.21dtv.com/songs/60008503.mkv +Y.I.Y.O-爱情宅急便,http://em.21dtv.com/songs/60008482.mkv +郭婷筠-爱情做风台,http://em.21dtv.com/songs/60074465.mkv +翁立友-爱情终点站,http://em.21dtv.com/songs/60093981.mkv +黄乙玲-爱情这歹找,http://em.21dtv.com/songs/60008484.mkv +赵婧怡-爱情这道菜,http://em.21dtv.com/songs/60107236.mkv +夏兰-爱情在草原,http://em.21dtv.com/songs/60106733.mkv +毛宁-爱情走不远,http://em.21dtv.com/songs/60008506.mkv +钟应龙-爱情已走远,http://em.21dtv.com/songs/60008461.mkv +唐俪-爱情一阵风,http://em.21dtv.com/songs/60130202.mkv +罗时丰-爱情一阵风,http://em.21dtv.com/songs/60074462.mkv +卓依婷+林正桦-爱情一阵风,http://em.21dtv.com/songs/60008458.mkv +佚名-爱情一阵风,http://em.21dtv.com/songs/60008457.mkv +小凤凤-爱情一阵风,http://em.21dtv.com/songs/60008456.mkv +陈百潭-爱情一阵风,http://em.21dtv.com/songs/60008455.mkv +佚名-爱情与宿醉,http://em.21dtv.com/songs/60095427.mkv +菲菲+冰点-爱情一条线,http://em.21dtv.com/songs/60114746.mkv +林慧萍-爱情与宿醉(演唱会)(无原唱),http://em.21dtv.com/songs/60008475.mkv +可泽-爱情有魔力,http://em.21dtv.com/songs/60131236.mkv +苏醒+戴娆-爱情雨 love rain,http://em.21dtv.com/songs/60008476.mkv +张远喆-爱情一加一,http://em.21dtv.com/songs/60109338.mkv +林强-爱情研究院,http://em.21dtv.com/songs/60008450.mkv +黎明-爱情影画戏,http://em.21dtv.com/songs/60008464.mkv +黎明-爱情影画戏(演唱会),http://em.21dtv.com/songs/60008463.mkv +潘秀琼-爱情与黄金,http://em.21dtv.com/songs/60090057.mkv +成学迅-爱情与坟墓,http://em.21dtv.com/songs/60008474.mkv +刘子千-爱情123,http://em.21dtv.com/songs/60123673.mkv +白冰冰-爱情欲叨寻,http://em.21dtv.com/songs/60095822.mkv +王鹏-爱情有多美,http://em.21dtv.com/songs/60123020.mkv +王瑞霞+办桌阿杰-爱情一朵花,http://em.21dtv.com/songs/60058723.mkv +马思纯+刘立-爱情有点怪,http://em.21dtv.com/songs/60103718.mkv +翁立友-爱情一出戏,http://em.21dtv.com/songs/60008453.mkv +付笛声+任静-爱情一百年,http://em.21dtv.com/songs/60008452.mkv +许志豪+林良欢-爱情一百分,http://em.21dtv.com/songs/60008451.mkv +子冬-爱情休止符,http://em.21dtv.com/songs/60008442.mkv +安涛-爱情休止符,http://em.21dtv.com/songs/60008441.mkv +杜留香-爱情下一秒,http://em.21dtv.com/songs/60116930.mkv +刘依纯-爱情下雪了(无原唱),http://em.21dtv.com/songs/60008420.mkv +王麟-爱情心跳跳,http://em.21dtv.com/songs/60074461.mkv +蔡小虎-爱情新天地,http://em.21dtv.com/songs/60008440.mkv +黄妃+伍佰-爱情限时批,http://em.21dtv.com/songs/60097644.mkv +伍佰+万芳-爱情限时批(演唱会),http://em.21dtv.com/songs/60008424.mkv +傅振辉+林玉英-爱情相思梦,http://em.21dtv.com/songs/60008430.mkv +谢采妘-爱情像汽球,http://em.21dtv.com/songs/60008435.mkv +李嘉-爱情新路线,http://em.21dtv.com/songs/60008439.mkv +韩宝仪-爱情像流星,http://em.21dtv.com/songs/60008434.mkv +夏天Alex+臧恰-爱情限量版,http://em.21dtv.com/songs/60133524.mkv +夏天Alex+臧恰-爱情限量版,http://em.21dtv.com/songs/60128936.mkv +E+KIDS-爱情现金卡(无原唱),http://em.21dtv.com/songs/60008423.mkv +吴勇滨-爱情小胡同(HD),http://em.21dtv.com/songs/10012727.mkv +吴勇滨-爱情小胡同,http://em.21dtv.com/songs/60101295.mkv +刘德华-爱情新活力,http://em.21dtv.com/songs/60008438.mkv +孙晓雨+刘雷-爱情新感觉,http://em.21dtv.com/songs/60104042.mkv +温拿乐队-爱情小插曲,http://em.21dtv.com/songs/60008436.mkv +海风-爱情像杯酒,http://em.21dtv.com/songs/60108687.mkv +方瑞娥-爱情像被单,http://em.21dtv.com/songs/60008433.mkv +超人-爱情吻吻吻,http://em.21dtv.com/songs/60106312.mkv +洪禄云+陈水林-爱情万万岁,http://em.21dtv.com/songs/60082519.mkv +高安-爱情万万岁,http://em.21dtv.com/songs/60062361.mkv +伍佰-爱情未亡人(演唱会),http://em.21dtv.com/songs/60008414.mkv +白洋-爱情无所谓,http://em.21dtv.com/songs/60105276.mkv +冷漠+梦然-爱情无间道,http://em.21dtv.com/songs/60081337.mkv +庄祖宜+AND TWO FISH-爱情未成年(无原唱),http://em.21dtv.com/songs/60008413.mkv +DREAM GIRLS-爱情微波炉,http://em.21dtv.com/songs/60071732.mkv +王馨-爱情天注定,http://em.21dtv.com/songs/60128250.mkv +陈亮吟-爱情疼疼疼,http://em.21dtv.com/songs/60008402.mkv +波拉-爱情他来过,http://em.21dtv.com/songs/60086426.mkv +甜美真-爱情桃花源,http://em.21dtv.com/songs/60098663.mkv +李萧杰-爱情桃花运,http://em.21dtv.com/songs/60094154.mkv +曾淑勤-爱情铁达尼(演唱会),http://em.21dtv.com/songs/60008406.mkv +芭比-爱情三振球,http://em.21dtv.com/songs/60008366.mkv +林良欢-爱情十字路,http://em.21dtv.com/songs/60104247.mkv +佚名-爱情十字路,http://em.21dtv.com/songs/60008381.mkv +龙千玉-爱情十字架,http://em.21dtv.com/songs/60078895.mkv +黄思婷-爱情十字架(无原唱),http://em.21dtv.com/songs/60008380.mkv +杨宗宪-爱情受阻碍,http://em.21dtv.com/songs/60036094.mkv +佚名-爱情受阻碍,http://em.21dtv.com/songs/60008390.mkv +吴勇滨-爱情三月天,http://em.21dtv.com/songs/60008365.mkv +林宥嘉-爱情是圆的,http://em.21dtv.com/songs/60008387.mkv +林芋先-爱情伤心雨,http://em.21dtv.com/songs/60088125.mkv +蔡炆天-爱情是虾米,http://em.21dtv.com/songs/60112946.mkv +袁成杰-爱情睡醒了,http://em.21dtv.com/songs/60066817.mkv +田震-爱情守望者,http://em.21dtv.com/songs/60008389.mkv +谢金燕-爱情三温暖,http://em.21dtv.com/songs/60008364.mkv +林雨+陈尚依-爱情上上签,http://em.21dtv.com/songs/60080640.mkv +余零-爱情是什么,http://em.21dtv.com/songs/60104792.mkv +高进-爱情算什么,http://em.21dtv.com/songs/60098953.mkv +甜美真-爱情是什么,http://em.21dtv.com/songs/60084840.mkv +吴进法-爱情是啥咪,http://em.21dtv.com/songs/60070488.mkv +佚名-爱情是什么,http://em.21dtv.com/songs/60008383.mkv +K.WILL-爱情是如此,http://em.21dtv.com/songs/60074453.mkv +婉如璞玉-爱情似蜜甜,http://em.21dtv.com/songs/60105742.mkv +柳絮-爱情似蜜甜,http://em.21dtv.com/songs/60099350.mkv +易帆-爱情似蜜甜,http://em.21dtv.com/songs/60096320.mkv +易欣-爱情神马价,http://em.21dtv.com/songs/60080817.mkv +张新海-爱情是魔鬼,http://em.21dtv.com/songs/60081752.mkv +朴一泽-爱情思密达,http://em.21dtv.com/songs/60066818.mkv +刚辉-爱情说了谎,http://em.21dtv.com/songs/60008394.mkv +林姗-爱情酸甘甜,http://em.21dtv.com/songs/60008397.mkv +何慕男-爱情说的对,http://em.21dtv.com/songs/60008393.mkv +甲子慧-爱情双叉路,http://em.21dtv.com/songs/60117060.mkv +泳儿-爱情是吃的,http://em.21dtv.com/songs/60008382.mkv +李韦-爱其实不远,http://em.21dtv.com/songs/60008071.mkv +胡艾莲-爱情四步曲,http://em.21dtv.com/songs/60128324.mkv +韩信-爱情伤不起,http://em.21dtv.com/songs/60068061.mkv +何东-爱情让火烧,http://em.21dtv.com/songs/60082513.mkv +闪亮三姐妹-爱情惹的祸,http://em.21dtv.com/songs/60008358.mkv +姜玉阳-爱情惹的祸,http://em.21dtv.com/songs/60008357.mkv +AiM Days-爱情と日常,http://em.21dtv.com/songs/60116430.mkv +周子龙-爱情去哪了,http://em.21dtv.com/songs/60116652.mkv +子龙-爱情去哪了,http://em.21dtv.com/songs/60112615.mkv +王中平-爱情起大厝,http://em.21dtv.com/songs/60063051.mkv +云菲菲-爱情朋友圈,http://em.21dtv.com/songs/60099737.mkv +寒武纪-爱情平行线,http://em.21dtv.com/songs/60066814.mkv +镜喜-爱情平行线,http://em.21dtv.com/songs/60065799.mkv +贺世泽-爱情排行榜,http://em.21dtv.com/songs/60127426.mkv +马健涛+尹歆怡-爱情骗了我,http://em.21dtv.com/songs/60070485.mkv +阎琰-爱情漂流瓶,http://em.21dtv.com/songs/60070486.mkv +新宝岛康乐队-爱情霹雳火,http://em.21dtv.com/songs/60002061.mkv +林依伦-爱情鸟信箱,http://em.21dtv.com/songs/60091422.mkv +杜伟坤-爱情孬伪装,http://em.21dtv.com/songs/60082719.mkv +台湾群星-爱情你我她,http://em.21dtv.com/songs/60090787.mkv +周传雄+谢丽金+张信哲-爱情你我他,http://em.21dtv.com/songs/60008331.mkv +耿斯美娜-爱情那首歌,http://em.21dtv.com/songs/60086424.mkv +云菲菲-爱情那去了,http://em.21dtv.com/songs/60106586.mkv +云菲菲-爱情哪去了,http://em.21dtv.com/songs/60099736.mkv +黄品冠-爱情那么傻,http://em.21dtv.com/songs/60102961.mkv +Free Party-爱情那么美,http://em.21dtv.com/songs/60106536.mkv +Free Party-爱情那么美,http://em.21dtv.com/songs/60085000.mkv +黄征-爱情诺曼底,http://em.21dtv.com/songs/60008340.mkv +黄征-爱情诺曼底(演唱会),http://em.21dtv.com/songs/60008339.mkv +佚名-爱情那里来,http://em.21dtv.com/songs/60008328.mkv +子枫-爱情那点事,http://em.21dtv.com/songs/60084836.mkv +张震岳+Free9-爱情酿的酒,http://em.21dtv.com/songs/60097647.mkv +杨愿明-爱情酿的酒,http://em.21dtv.com/songs/60068060.mkv +佚名-爱情酿的酒,http://em.21dtv.com/songs/60008333.mkv +林志炫-爱情酿的酒,http://em.21dtv.com/songs/60008332.mkv +张瀛仁-爱情免签字,http://em.21dtv.com/songs/60008316.mkv +棒棒堂-爱情玛奇朵,http://em.21dtv.com/songs/60008306.mkv +慕容晓晓-爱情毛毛雨,http://em.21dtv.com/songs/60086421.mkv +河静静-爱情美美哒,http://em.21dtv.com/songs/60117887.mkv +纳兰珠儿-爱情麻辣烫(演唱会),http://em.21dtv.com/songs/60071729.mkv +朱雅-爱情马拉松,http://em.21dtv.com/songs/60080868.mkv +张启辉-爱情魔力伤,http://em.21dtv.com/songs/60008322.mkv +钟芹-爱情陌路人,http://em.21dtv.com/songs/60111468.mkv +阎琰-爱情弥勒佛,http://em.21dtv.com/songs/60086423.mkv +张真菲-爱情魔幻记,http://em.21dtv.com/songs/60063424.mkv +陈依然-爱情玫瑰花,http://em.21dtv.com/songs/60086422.mkv +司徒兰芳-爱情模仿秀,http://em.21dtv.com/songs/60121482.mkv +小嘉-爱情末班车,http://em.21dtv.com/songs/60008324.mkv +BY2-爱情来找碴,http://em.21dtv.com/songs/60080393.mkv +何龙雨-爱情流行歌,http://em.21dtv.com/songs/60074448.mkv +林俊吉+洪百慧-爱情拢无影,http://em.21dtv.com/songs/60071728.mkv +洪荣宏+谢佩吟-爱情来时路,http://em.21dtv.com/songs/60100916.mkv +郭瑞-爱情临时工,http://em.21dtv.com/songs/60095108.mkv +司文-爱情来敲门,http://em.21dtv.com/songs/60074446.mkv +吕嘉琦-爱情来敲门,http://em.21dtv.com/songs/60060995.mkv +张祥洪-爱去了哪里,http://em.21dtv.com/songs/60008514.mkv +培源-爱情罗曼蒂,http://em.21dtv.com/songs/60060998.mkv +ANY-爱情离开我,http://em.21dtv.com/songs/60099646.mkv +星灿-爱情哩咯啷,http://em.21dtv.com/songs/60063899.mkv +蓝心湄-爱情亮晶晶,http://em.21dtv.com/songs/60090201.mkv +张雷-爱情两个字,http://em.21dtv.com/songs/60068057.mkv +赵小兵-爱情两个字,http://em.21dtv.com/songs/60065796.mkv +张可儿-爱情来点赞,http://em.21dtv.com/songs/60099227.mkv +黄小琥-爱情开箱文(演唱会),http://em.21dtv.com/songs/60008282.mkv +孙淑媚-爱情看透透,http://em.21dtv.com/songs/60008283.mkv +本多RURU-爱情快闪族,http://em.21dtv.com/songs/60008290.mkv +高维那-爱情苦肉计,http://em.21dtv.com/songs/60066812.mkv +石磊-爱情苦咖啡,http://em.21dtv.com/songs/60074445.mkv +慕容晓晓-爱情靠不住,http://em.21dtv.com/songs/60074444.mkv +晓月-爱情空白书,http://em.21dtv.com/songs/60096087.mkv +林于雯-爱情介贼子,http://em.21dtv.com/songs/60095646.mkv +陈淑芳-爱情介贼仔,http://em.21dtv.com/songs/60008273.mkv +蓝若兮-爱情进行曲,http://em.21dtv.com/songs/60117185.mkv +孙辉+蓝芳-爱情进行曲,http://em.21dtv.com/songs/60082509.mkv +S.I.N.G女团-爱情经纬线,http://em.21dtv.com/songs/60128696.mkv +草蜢-爱情嘉年华,http://em.21dtv.com/songs/60008266.mkv +唐志星-爱情几毛钱,http://em.21dtv.com/songs/60098216.mkv +詹雅雯+詹雅云-爱情交流道,http://em.21dtv.com/songs/60008269.mkv +沈芳如-爱情救护站,http://em.21dtv.com/songs/60069195.mkv +小昔米-爱情季候风,http://em.21dtv.com/songs/60008264.mkv +梅艳芳-爱情基本法(演唱会),http://em.21dtv.com/songs/60008263.mkv +郭富城-爱情基本法(演唱会),http://em.21dtv.com/songs/60008262.mkv +梁咏琪-爱情i dont know(演唱会),http://em.21dtv.com/songs/60008092.mkv +DAVICHI-爱情和战争,http://em.21dtv.com/songs/60008243.mkv +陈雅森-爱情和香烟,http://em.21dtv.com/songs/60112370.mkv +六哲-爱情好无奈,http://em.21dtv.com/songs/60071725.mkv +林姗-爱情虎头蜂,http://em.21dtv.com/songs/60074443.mkv +佚名-爱情回头车,http://em.21dtv.com/songs/60095428.mkv +陈盈洁-爱情回头车(无原唱),http://em.21dtv.com/songs/60002332.mkv +蟑螂乐队-爱情换日线,http://em.21dtv.com/songs/60008260.mkv +张爽-爱情黑皮书,http://em.21dtv.com/songs/60008250.mkv +庾澄庆-爱情黑皮书,http://em.21dtv.com/songs/60008249.mkv +曹轩宾-爱情回来了,http://em.21dtv.com/songs/60102299.mkv +赵真-爱情火龙果,http://em.21dtv.com/songs/60120979.mkv +徐一鸣-爱情红绿灯,http://em.21dtv.com/songs/60065794.mkv +梁咏琪-爱情黑盒子,http://em.21dtv.com/songs/60008248.mkv +冷漠+楼宏章-爱情合伙人,http://em.21dtv.com/songs/60081336.mkv +吉娜-爱情核辐射(演唱会),http://em.21dtv.com/songs/60060994.mkv +苏慧伦-爱情华尔兹,http://em.21dtv.com/songs/60088528.mkv +苏慧伦-爱情华尔滋,http://em.21dtv.com/songs/60008259.mkv +王小尧-爱情海的海,http://em.21dtv.com/songs/60070480.mkv +石磊-爱情hold不住,http://em.21dtv.com/songs/60074422.mkv +海哲明-爱情黑白键,http://em.21dtv.com/songs/60066809.mkv +陈雷+陈思安-爱情黑白话,http://em.21dtv.com/songs/60008245.mkv +苏有朋-爱情告诉我,http://em.21dtv.com/songs/60008224.mkv +郑进一-爱情过路人,http://em.21dtv.com/songs/60008236.mkv +伍思凯-爱全给了你,http://em.21dtv.com/songs/60008515.mkv +原始林合唱团-爱情高粱酒,http://em.21dtv.com/songs/60008222.mkv +龙思雨-安全感的爱,http://em.21dtv.com/songs/60063944.mkv +戚宝-爱情高八度,http://em.21dtv.com/songs/60104160.mkv +张霖-爱情2分钟,http://em.21dtv.com/songs/60084823.mkv +ENERGY-爱情风向球,http://em.21dtv.com/songs/60008217.mkv +宋飞-爱情防火墙,http://em.21dtv.com/songs/60099959.mkv +罗琦-爱情复活节,http://em.21dtv.com/songs/60102629.mkv +风火海-爱情风火海,http://em.21dtv.com/songs/60008216.mkv +吉克隽逸-爱情发的光,http://em.21dtv.com/songs/60094023.mkv +陈淑芳-爱情的贼仔(无原唱),http://em.21dtv.com/songs/60008195.mkv +孙淑媚-爱情的专线,http://em.21dtv.com/songs/60008196.mkv +陈怡婷-爱情的滋味,http://em.21dtv.com/songs/60122233.mkv +信-爱情的滋味,http://em.21dtv.com/songs/60105594.mkv +张文绮-爱情的滋味,http://em.21dtv.com/songs/60063892.mkv +吴淑敏-爱情的滋味,http://em.21dtv.com/songs/60060992.mkv +林子娟-爱情的罪人,http://em.21dtv.com/songs/60086417.mkv +莫文蔚-爱情的终点,http://em.21dtv.com/songs/60091971.mkv +甜美真-爱情毒药语,http://em.21dtv.com/songs/60084825.mkv +孙家山-爱情当游戏,http://em.21dtv.com/songs/60108419.mkv +林忆莲-爱情的余温,http://em.21dtv.com/songs/60008194.mkv +杨丞琳-爱情的颜色,http://em.21dtv.com/songs/60088058.mkv +龙千玉+傅振-爱情多一岁,http://em.21dtv.com/songs/60080348.mkv +林子娟-爱情的颜色(无原唱),http://em.21dtv.com/songs/60008192.mkv +弦子-爱情第一课,http://em.21dtv.com/songs/60066808.mkv +马建军-爱情的烟火,http://em.21dtv.com/songs/60129798.mkv +佚名-爱情的喜悦,http://em.21dtv.com/songs/60008189.mkv +谭圳-爱情的虚伪,http://em.21dtv.com/songs/60008191.mkv +龙千玉-爱情的凶手,http://em.21dtv.com/songs/60008190.mkv +杨宗宪-爱情的陷阱(无原唱),http://em.21dtv.com/songs/60041761.mkv +讦谯龙-爱情大小便,http://em.21dtv.com/songs/60008136.mkv +ASOS-爱情的位子(无原唱),http://em.21dtv.com/songs/60008186.mkv +郭富城-爱情大舞台,http://em.21dtv.com/songs/60088784.mkv +萧亚轩-爱情的微光,http://em.21dtv.com/songs/60074437.mkv +多亮-爱情的味道,http://em.21dtv.com/songs/60080134.mkv +曹芙嘉-爱情的味道,http://em.21dtv.com/songs/60008187.mkv +南方二重唱-爱情的天平,http://em.21dtv.com/songs/60090767.mkv +佚名-爱情的天平(无原唱),http://em.21dtv.com/songs/60008185.mkv +马常宝-爱情多甜蜜,http://em.21dtv.com/songs/60114266.mkv +陈雷+甲子蕙-爱情的探戈,http://em.21dtv.com/songs/60074435.mkv +羽泉-爱情的天窗,http://em.21dtv.com/songs/60008184.mkv +王建杰-爱情跌停板(无原唱),http://em.21dtv.com/songs/60079782.mkv +朱海君-爱情的逃兵,http://em.21dtv.com/songs/60074436.mkv +佚名-爱情跌停板,http://em.21dtv.com/songs/60008204.mkv +秀兰玛雅-爱情的坦白,http://em.21dtv.com/songs/60008183.mkv +安俊宁-爱情的洒脱,http://em.21dtv.com/songs/60071724.mkv +威龙-爱情的伤口,http://em.21dtv.com/songs/60102105.mkv +琪淇姐妹-爱情凋塑课,http://em.21dtv.com/songs/60097645.mkv +谭咏麟-爱情大世界,http://em.21dtv.com/songs/60093214.mkv +郑劲松-爱情的傻瓜,http://em.21dtv.com/songs/60108046.mkv +杨克强-爱情的傻瓜,http://em.21dtv.com/songs/60091389.mkv +瞿颖-爱情的试飞,http://em.21dtv.com/songs/60091789.mkv +姚黛玮-爱情大扫除(无原唱),http://em.21dtv.com/songs/60008135.mkv +郑中基-爱情当入樽,http://em.21dtv.com/songs/60093259.mkv +TWINS-爱情当入樽(演唱会),http://em.21dtv.com/songs/60008139.mkv +小辣椒-爱情的热度(无原唱),http://em.21dtv.com/songs/60008180.mkv +罗艺-爱情的期限,http://em.21dtv.com/songs/60082508.mkv +孙露-爱情的秋天,http://em.21dtv.com/songs/60081150.mkv +君子-爱情的秋天,http://em.21dtv.com/songs/60074433.mkv +陈夏莲-爱情的奴隶,http://em.21dtv.com/songs/60126372.mkv +陈夏莲-爱情的奴隶,http://em.21dtv.com/songs/60124623.mkv +熊天平-爱情多恼河,http://em.21dtv.com/songs/60128194.mkv +熊天平-爱情多瑙河,http://em.21dtv.com/songs/60008213.mkv +赵薇-爱情大魔咒,http://em.21dtv.com/songs/60008134.mkv +赵薇-爱情大魔咒(演唱会),http://em.21dtv.com/songs/60008133.mkv +张文绮-爱情的模样,http://em.21dtv.com/songs/60122725.mkv +张文琦-爱情的模样,http://em.21dtv.com/songs/60122722.mkv +五月天-爱情的模样,http://em.21dtv.com/songs/60008174.mkv +小平-爱情的模样(无原唱),http://em.21dtv.com/songs/60008173.mkv +佚名-爱情的迷惘,http://em.21dtv.com/songs/60008172.mkv +金晓怡-爱情躲猫猫,http://em.21dtv.com/songs/60100516.mkv +李俊英-爱情多美妙,http://em.21dtv.com/songs/60093839.mkv +叶玉卿-爱情的魔力,http://em.21dtv.com/songs/60087519.mkv +芭比-爱情的魔力,http://em.21dtv.com/songs/60008176.mkv +吴淑敏-爱情的me lody,http://em.21dtv.com/songs/60008144.mkv +李玟-爱情的目标,http://em.21dtv.com/songs/60091339.mkv +林翠萍-爱情的流言,http://em.21dtv.com/songs/60091495.mkv +陈玉建-爱情断了线,http://em.21dtv.com/songs/60008210.mkv +陈利-爱情的例外,http://em.21dtv.com/songs/60110610.mkv +阿姐组合-爱情的流沙,http://em.21dtv.com/songs/60123274.mkv +冷漠-爱情的路上,http://em.21dtv.com/songs/60101936.mkv +罗时丰-爱情的力量,http://em.21dtv.com/songs/60074431.mkv +洪荣宏-爱情的力量,http://em.21dtv.com/songs/60008169.mkv +史宸铭-爱情的路口,http://em.21dtv.com/songs/60128867.mkv +史煜洁-爱情的路口,http://em.21dtv.com/songs/60099132.mkv +王力宏-爱情的轮廓,http://em.21dtv.com/songs/60088277.mkv +江音-爱情的烈酒,http://em.21dtv.com/songs/60008170.mkv +张沛-爱情的傀儡,http://em.21dtv.com/songs/60129095.mkv +王觉-爱情的快乐,http://em.21dtv.com/songs/60119830.mkv +陈雷-爱情的苦酒,http://em.21dtv.com/songs/60127569.mkv +张牧阅-爱情的可贵,http://em.21dtv.com/songs/60063891.mkv +鸿宇-爱情的尽头,http://em.21dtv.com/songs/60115541.mkv +伍佰-爱情的尽头,http://em.21dtv.com/songs/60008164.mkv +伍佰-爱情的尽头(演唱会),http://em.21dtv.com/songs/60008163.mkv +中华音-爱情的季节,http://em.21dtv.com/songs/60101244.mkv +孙燕姿-爱情的花样(演唱会),http://em.21dtv.com/songs/60008162.mkv +S.H.E-爱情的海洋,http://em.21dtv.com/songs/60008161.mkv +孙淑媚-爱情电话声,http://em.21dtv.com/songs/60008201.mkv +郑黄荣-阿强的故事,http://em.21dtv.com/songs/60093906.mkv +詹曼铃-爱情的故事,http://em.21dtv.com/songs/60086415.mkv +方季惟-爱情的故事,http://em.21dtv.com/songs/60074430.mkv +易帆-爱情的故事,http://em.21dtv.com/songs/60008160.mkv +佚名-爱情的故事,http://em.21dtv.com/songs/60008159.mkv +李力-爱情的故事,http://em.21dtv.com/songs/60008158.mkv +佚名-爱情的故事(慢四),http://em.21dtv.com/songs/60008157.mkv +MINI-爱情的功课,http://em.21dtv.com/songs/60008156.mkv +佚名-爱情的港都(无原唱),http://em.21dtv.com/songs/60095430.mkv +张瑶-爱情的房子,http://em.21dtv.com/songs/60008152.mkv +李泽坚-爱情刀斧手,http://em.21dtv.com/songs/60099312.mkv +李爱绮+萧煌奇-爱情的负担,http://em.21dtv.com/songs/60008155.mkv +杨坤-爱情大导演,http://em.21dtv.com/songs/60008131.mkv +翁立友-爱情的地图,http://em.21dtv.com/songs/60081795.mkv +张学友-爱情的赌徒,http://em.21dtv.com/songs/60008151.mkv +乌兰托娅+石焱-爱情对对碰,http://em.21dtv.com/songs/60094386.mkv +于台烟-爱情的道理,http://em.21dtv.com/songs/60068055.mkv +王天丽-爱情的代价(演唱会),http://em.21dtv.com/songs/60082507.mkv +莫旭秋-爱情的代价(演唱会),http://em.21dtv.com/songs/60063890.mkv +泰迪罗宾-爱情的代价,http://em.21dtv.com/songs/60008149.mkv +罗文-爱情的代价,http://em.21dtv.com/songs/60008148.mkv +梅艳芳-爱情的代价(演唱会),http://em.21dtv.com/songs/60008147.mkv +办桌二人组-爱情的刀痕,http://em.21dtv.com/songs/60008150.mkv +陈雷-爱情动动动(无原唱),http://em.21dtv.com/songs/60008533.mkv +梦然-爱情的传说,http://em.21dtv.com/songs/60128143.mkv +望海高歌-爱情的传说,http://em.21dtv.com/songs/60115212.mkv +欢子-爱情的城堡,http://em.21dtv.com/songs/60060991.mkv +小刚-爱情的边缘,http://em.21dtv.com/songs/60090985.mkv +林宥嘉-爱情的背影,http://em.21dtv.com/songs/60074428.mkv +傅天颖-爱情的背影,http://em.21dtv.com/songs/60008146.mkv +刘航-爱情的变迁,http://em.21dtv.com/songs/60119314.mkv +任贤齐-爱情躲避球,http://em.21dtv.com/songs/60084828.mkv +李威-爱情躲避球,http://em.21dtv.com/songs/60008214.mkv +张津涤-爱却得不到,http://em.21dtv.com/songs/60123932.mkv +赵鑫-爱情成熟时,http://em.21dtv.com/songs/60120983.mkv +林凡-爱情超能力,http://em.21dtv.com/songs/60008125.mkv +刘恺威-爱情曾来过,http://em.21dtv.com/songs/60097646.mkv +BY2-爱情闯进门,http://em.21dtv.com/songs/60069193.mkv +超人-爱情错错错,http://em.21dtv.com/songs/60106313.mkv +陈雷-爱情冲冲冲,http://em.21dtv.com/songs/60008127.mkv +罗美玲-爱情不只是,http://em.21dtv.com/songs/60008122.mkv +海峰-爱情保质期,http://em.21dtv.com/songs/60062415.mkv +王婧-爱情变奏曲,http://em.21dtv.com/songs/60008108.mkv +陈雷-爱情不要卖,http://em.21dtv.com/songs/60008118.mkv +佟佳霖霖-爱情不辛苦,http://em.21dtv.com/songs/60101255.mkv +乔玲儿-爱情不完美,http://em.21dtv.com/songs/60120289.mkv +郭品超-爱情备忘录,http://em.21dtv.com/songs/60008103.mkv +IU+吴赫-爱情不太顺,http://em.21dtv.com/songs/60134704.mkv +傅秋英-爱情半烧冷,http://em.21dtv.com/songs/60008100.mkv +TWINS-爱情表速递,http://em.21dtv.com/songs/60008109.mkv +门丽-爱情不是菜,http://em.21dtv.com/songs/60117301.mkv +孙耀威-爱情白皮书,http://em.21dtv.com/songs/60008097.mkv +龚琳娜-爱情不能买,http://em.21dtv.com/songs/60094784.mkv +丁酉酉-爱情不买单,http://em.21dtv.com/songs/60086414.mkv +乐天乐团-爱情不买单,http://em.21dtv.com/songs/60068053.mkv +张冬玲-爱情玻璃墙(演唱会),http://em.21dtv.com/songs/60065790.mkv +覃诗丽-爱情部落格,http://em.21dtv.com/songs/60088628.mkv +林玉英-爱情半空中(无原唱),http://em.21dtv.com/songs/60008099.mkv +孙家山-爱情北极圈,http://em.21dtv.com/songs/60104040.mkv +佚名-爱情不会老,http://em.21dtv.com/songs/60008113.mkv +JUN JIN-爱情不回来,http://em.21dtv.com/songs/60008112.mkv +佚名-爱情蝙蝠侠(无原唱),http://em.21dtv.com/songs/60008106.mkv +小龙-爱情不打折,http://em.21dtv.com/songs/60008111.mkv +JS-爱情背包客,http://em.21dtv.com/songs/60008104.mkv +小毅-爱情不爱我,http://em.21dtv.com/songs/60098280.mkv +詹雅雯-爱情阿莎力,http://em.21dtv.com/songs/60107207.mkv +叶恒秀-爱情啊是毒,http://em.21dtv.com/songs/60094021.mkv +毛泽少-爱情啊爱情,http://em.21dtv.com/songs/60132666.mkv +闰秀贤-爱情啊爱情,http://em.21dtv.com/songs/60100533.mkv +吴木-安平追想曲,http://em.21dtv.com/songs/60115045.mkv +张伟文-安平追想曲,http://em.21dtv.com/songs/60056830.mkv +佚名-安平追想曲,http://em.21dtv.com/songs/60009327.mkv +邓丽君-安平追想曲,http://em.21dtv.com/songs/60009326.mkv +谢雷-安平追想曲(演唱会),http://em.21dtv.com/songs/60009325.mkv +吴灿涛-爱拼正会赢,http://em.21dtv.com/songs/60106683.mkv +吴俊飞+朱振铭-啊朋友再见,http://em.21dtv.com/songs/60118442.mkv +侃侃-阿朋友再见,http://em.21dtv.com/songs/60116555.mkv +张伟进+孙国庆-啊朋友再见(演唱会),http://em.21dtv.com/songs/60006861.mkv +林子祥+叶倩文-爱偏要别离,http://em.21dtv.com/songs/60008062.mkv +小心的哥哥们-Apple,http://em.21dtv.com/songs/60135136.mkv +昊麟-爱拼南安人,http://em.21dtv.com/songs/60118628.mkv +钟彩媚-阿婆的禾堂,http://em.21dtv.com/songs/60129695.mkv +大喇叭-爱拼才会赢,http://em.21dtv.com/songs/60132322.mkv +大喇叭组合-爱拼才会赢,http://em.21dtv.com/songs/60130216.mkv +吴灿涛-爱拼才会赢,http://em.21dtv.com/songs/60099871.mkv +齐秦+齐豫-爱拼才会赢,http://em.21dtv.com/songs/60098970.mkv +小凤凤-爱拼才会赢,http://em.21dtv.com/songs/60094556.mkv +叶振棠-爱拼才会赢,http://em.21dtv.com/songs/60077965.mkv +谢雷-爱拼才会赢(演唱会),http://em.21dtv.com/songs/60074420.mkv +应豪-爱拼才会赢,http://em.21dtv.com/songs/60055416.mkv +卓依婷+林正桦-爱拼才会赢,http://em.21dtv.com/songs/60008067.mkv +叶启田-爱拼才会赢,http://em.21dtv.com/songs/60008066.mkv +任贤齐-爱拼才会赢,http://em.21dtv.com/songs/60008065.mkv +黄乙玲-爱拼才会赢,http://em.21dtv.com/songs/60008064.mkv +草蜢-爱拼才会赢,http://em.21dtv.com/songs/60008063.mkv +佚名-any of us stupid mistake,http://em.21dtv.com/songs/60000308.mkv +P.H. WILLIAMS-an old fashioned love song(无原唱),http://em.21dtv.com/songs/60000238.mkv +佚名-another one bites the dust,http://em.21dtv.com/songs/60000294.mkv +黎瑞恩-爱你这样傻,http://em.21dtv.com/songs/60008051.mkv +吴倩莲-爱你这一场,http://em.21dtv.com/songs/60089734.mkv +陈绍瑀-爱你在心中,http://em.21dtv.com/songs/60008046.mkv +林宏铭-爱你在心内,http://em.21dtv.com/songs/60008045.mkv +赵紫轩-爱你在心里,http://em.21dtv.com/songs/60066801.mkv +晓依+大约冬季-爱你在心间,http://em.21dtv.com/songs/60106899.mkv +大约冬季+晓依-爱你在心间,http://em.21dtv.com/songs/60100819.mkv +任贤齐-爱你在伤口,http://em.21dtv.com/songs/60008039.mkv +小琢-爱你在身边,http://em.21dtv.com/songs/60117684.mkv +彭文华-爱你在秋天,http://em.21dtv.com/songs/60115940.mkv +余天-爱你这呢深,http://em.21dtv.com/songs/60008048.mkv +佚名-爱你这呢深,http://em.21dtv.com/songs/60008047.mkv +倪新宇-爱你怎么看,http://em.21dtv.com/songs/60074413.mkv +张凌枫-爱你在今天,http://em.21dtv.com/songs/60008035.mkv +李玲玉-爱你真好难,http://em.21dtv.com/songs/60008053.mkv +林二汶-爱你枕边暖,http://em.21dtv.com/songs/60008054.mkv +旺福乐团-爱你一兆年,http://em.21dtv.com/songs/60084821.mkv +陈伟霆+鹿晗-爱你一万年,http://em.21dtv.com/songs/60133035.mkv +卓依婷-爱你一万年,http://em.21dtv.com/songs/60116608.mkv +刘德华-爱你一万年(HD),http://em.21dtv.com/songs/10012629.mkv +伍佰+陈升-爱你一万年,http://em.21dtv.com/songs/60097635.mkv +杨丽-爱你一万年,http://em.21dtv.com/songs/60084820.mkv +王少峰-爱你一万年,http://em.21dtv.com/songs/60074411.mkv +刘若英-爱你一万年(演唱会),http://em.21dtv.com/songs/60074410.mkv +尤雅-爱你一万年,http://em.21dtv.com/songs/60008026.mkv +龙千玉-爱你一万年,http://em.21dtv.com/songs/60008025.mkv +刘德华-爱你一万年,http://em.21dtv.com/songs/60008024.mkv +韩宝仪-爱你一万年,http://em.21dtv.com/songs/60008023.mkv +办桌二人组-爱你一万年,http://em.21dtv.com/songs/60008022.mkv +伍佰-爱你一万年(演唱会),http://em.21dtv.com/songs/60008021.mkv +罗大佑+伍佰-爱你一万年(演唱会),http://em.21dtv.com/songs/60008020.mkv +刘德华-爱你一万年(演唱会),http://em.21dtv.com/songs/60008019.mkv +邓丽君-爱你一万倍,http://em.21dtv.com/songs/60008018.mkv +周逸涵-啊你呀谁哟,http://em.21dtv.com/songs/60065762.mkv +吕明银+游曜徽-爱你一世人,http://em.21dtv.com/songs/60127819.mkv +蔡佳麟-爱你一世人,http://em.21dtv.com/songs/60118885.mkv +萧煌奇-爱你一世人,http://em.21dtv.com/songs/60008016.mkv +高向鹏-爱你一世人,http://em.21dtv.com/songs/60008015.mkv +江明学-爱你用生命,http://em.21dtv.com/songs/60095718.mkv +蔡小虎+黄思婷-爱你用生命,http://em.21dtv.com/songs/60008030.mkv +陈冠茜-爱你又如何,http://em.21dtv.com/songs/60008032.mkv +蔡小虎+龙千玉-爱你一个人,http://em.21dtv.com/songs/60074409.mkv +山丁-爱能有多久,http://em.21dtv.com/songs/60119461.mkv +黎瑞恩-爱你一辈子,http://em.21dtv.com/songs/60008006.mkv +任贤齐-爱你永不忘,http://em.21dtv.com/songs/60090562.mkv +张可儿-爱你一百岁,http://em.21dtv.com/songs/60086412.mkv +晗月-安宁小夜曲,http://em.21dtv.com/songs/60009324.mkv +甲子蕙-爱你心痛疼,http://em.21dtv.com/songs/60008004.mkv +李嘉-爱你心酸酸,http://em.21dtv.com/songs/60095607.mkv +佚名-爱你心坚定,http://em.21dtv.com/songs/60008003.mkv +王登雄-爱你相过雄,http://em.21dtv.com/songs/60075512.mkv +曾明莉-爱你无药医(无原唱),http://em.21dtv.com/songs/60095596.mkv +曾心梅-爱你无药医(无原唱),http://em.21dtv.com/songs/60095589.mkv +王识贤-爱你无药医,http://em.21dtv.com/songs/60007996.mkv +黄思婷-爱你无性命,http://em.21dtv.com/songs/60063647.mkv +佚名-爱你万万年(无原唱),http://em.21dtv.com/songs/60007982.mkv +黄乙玲-爱你无条件,http://em.21dtv.com/songs/60007993.mkv +伍佰+CHINA BLUE-爱你无目的,http://em.21dtv.com/songs/60134879.mkv +伍佰+China Blue-爱你无目地,http://em.21dtv.com/songs/60131158.mkv +谢莉婷-爱你无理由,http://em.21dtv.com/songs/60070471.mkv +佚名-爱你无后悔,http://em.21dtv.com/songs/60007989.mkv +罗时丰-爱你无后悔,http://em.21dtv.com/songs/60007988.mkv +晓依-爱你我动情,http://em.21dtv.com/songs/60097638.mkv +佚名-爱你无彩工,http://em.21dtv.com/songs/60007987.mkv +方瑞娥+高向鹏-爱你未变心,http://em.21dtv.com/songs/60007983.mkv +梦然-爱你是种罪,http://em.21dtv.com/songs/60097639.mkv +张明哲-爱你是真的,http://em.21dtv.com/songs/60100862.mkv +邰正宵-爱你十七年,http://em.21dtv.com/songs/60007957.mkv +陈西贝-爱你所爱的,http://em.21dtv.com/songs/60007972.mkv +闪亮三姐妹-爱你千万年,http://em.21dtv.com/songs/60108946.mkv +卓依婷-爱你千万遍,http://em.21dtv.com/songs/60087479.mkv +詹雅雯-爱你情难断,http://em.21dtv.com/songs/60007944.mkv +樊少华-爱你请别装,http://em.21dtv.com/songs/60080957.mkv +陈雷-爱你千百岁,http://em.21dtv.com/songs/60109713.mkv +刘钇彤-爱你怕了吗,http://em.21dtv.com/songs/60007940.mkv +兰天+祁乐乐-爱你那么真,http://em.21dtv.com/songs/60097637.mkv +徐罗斌-爱你那么深,http://em.21dtv.com/songs/60007939.mkv +易帆-爱你那么多,http://em.21dtv.com/songs/60111131.mkv +陈瑞-爱你那么多,http://em.21dtv.com/songs/60098888.mkv +张冬玲-爱你那么多,http://em.21dtv.com/songs/60069192.mkv +本兮-爱你那么多,http://em.21dtv.com/songs/60066799.mkv +520女子演唱组-爱你那么多,http://em.21dtv.com/songs/60007937.mkv +陈楚生-爱那么自然,http://em.21dtv.com/songs/60074391.mkv +陈兴瑜-爱你每一天,http://em.21dtv.com/songs/60116333.mkv +闪亮三姐妹-爱你每一天,http://em.21dtv.com/songs/60099560.mkv +张凌枫-爱你每一天,http://em.21dtv.com/songs/60069191.mkv +刘虹翎-爱你每一天,http://em.21dtv.com/songs/60007932.mkv +胡兵-爱你每一天,http://em.21dtv.com/songs/60007931.mkv +白小飞-爱你没商量,http://em.21dtv.com/songs/60107923.mkv +优客李林-爱你没商量,http://em.21dtv.com/songs/60007930.mkv +杨哲-爱你袂后悔,http://em.21dtv.com/songs/60007934.mkv +叶德娴-aint no mountain high enough,http://em.21dtv.com/songs/60000126.mkv +张蓉蓉-爱你抹变心,http://em.21dtv.com/songs/60079863.mkv +高向鹏+方瑞娥-爱你袂变心,http://em.21dtv.com/songs/60007933.mkv +傅振辉+马妞-爱你袂变卦,http://em.21dtv.com/songs/60095455.mkv +南拳妈妈-爱你离开你,http://em.21dtv.com/songs/60007927.mkv +RITA-爱你啦high party,http://em.21dtv.com/songs/60007925.mkv +谭咏麟-爱你两个人(演唱会),http://em.21dtv.com/songs/60007929.mkv +李猛-爱你两辈子,http://em.21dtv.com/songs/60007928.mkv +杨哲-爱你快后悔,http://em.21dtv.com/songs/60018149.mkv +黄西田-爱你诀变卦,http://em.21dtv.com/songs/60081964.mkv +马力-爱你很专心,http://em.21dtv.com/songs/60086408.mkv +殷悦-爱你恨自己,http://em.21dtv.com/songs/60007911.mkv +刘锡明-爱难恨也难,http://em.21dtv.com/songs/60087429.mkv +旺福-阿娘哈细腰,http://em.21dtv.com/songs/60135314.mkv +陈哲-爱你好疲惫,http://em.21dtv.com/songs/60131933.mkv +白冰冰+杨烈-爱你好不好,http://em.21dtv.com/songs/60007904.mkv +卫兰-爱你还爱你,http://em.21dtv.com/songs/60007766.mkv +佚名-爱你归礼拜,http://em.21dtv.com/songs/60007899.mkv +洪荣宏-爱你归礼拜,http://em.21dtv.com/songs/60007898.mkv +樊凡-ANGEL,http://em.21dtv.com/songs/60127128.mkv +姚笛-Angel,http://em.21dtv.com/songs/60126771.mkv +Notice-Angel,http://em.21dtv.com/songs/60124964.mkv +黄宇啠-ANGEL,http://em.21dtv.com/songs/60124736.mkv +Berry Good-Angel,http://em.21dtv.com/songs/60121218.mkv +张杰-Angel,http://em.21dtv.com/songs/60098350.mkv +孙楠-爱你够不够,http://em.21dtv.com/songs/60087658.mkv +方少姗-爱你该不该,http://em.21dtv.com/songs/60081299.mkv +林珊如-爱你敢不对(无原唱),http://em.21dtv.com/songs/60095701.mkv +王宛之-安妮法兰克,http://em.21dtv.com/songs/60063031.mkv +王伟-爱你发了疯,http://em.21dtv.com/songs/60124246.mkv +侯延彬-爱你发了疯,http://em.21dtv.com/songs/60108307.mkv +韩超-爱你发了疯(舞曲版),http://em.21dtv.com/songs/60007894.mkv +张祥洪-爱你的罪人,http://em.21dtv.com/songs/60082499.mkv +王中平+刘荞溪-爱你的证据,http://em.21dtv.com/songs/60109513.mkv +汪妤凌-爱你的证据,http://em.21dtv.com/songs/60080728.mkv +洪百慧-爱你的证据,http://em.21dtv.com/songs/60007886.mkv +王识贤-爱你到最后,http://em.21dtv.com/songs/60007846.mkv +依稀-爱你的早晨,http://em.21dtv.com/songs/60007885.mkv +贺小花+刘建民-爱你到永远,http://em.21dtv.com/songs/60122135.mkv +孙艺程-爱你的语言,http://em.21dtv.com/songs/60121571.mkv +洪荣宏-爱你到永远,http://em.21dtv.com/songs/60120718.mkv +江志丰-爱你的意义,http://em.21dtv.com/songs/60069190.mkv +徐健淇-爱你到永远,http://em.21dtv.com/songs/60063875.mkv +黄品源-爱你到永远,http://em.21dtv.com/songs/60007844.mkv +车辙-爱你到永久,http://em.21dtv.com/songs/60007843.mkv +张信哲-爱你的宿命,http://em.21dtv.com/songs/60100005.mkv +丁姵均-爱你的心肝,http://em.21dtv.com/songs/60121323.mkv +施志兴+陈秀玲-爱你的心肝,http://em.21dtv.com/songs/60096315.mkv +洪文斌+黄小菁-爱你的心肝,http://em.21dtv.com/songs/60007877.mkv +施文彬-爱你的痛苦,http://em.21dtv.com/songs/60007865.mkv +向蕙玲-爱你的誓言,http://em.21dtv.com/songs/60135003.mkv +向蕙玲-爱你的誓言,http://em.21dtv.com/songs/60133462.mkv +荒山亮+蔡佳莹-爱你的是我,http://em.21dtv.com/songs/60007864.mkv +孙露-爱你的宿命,http://em.21dtv.com/songs/60115835.mkv +萧敬腾+王呈章-爱你的宿命,http://em.21dtv.com/songs/60112193.mkv +郑淳元-爱你的宿命,http://em.21dtv.com/songs/60109662.mkv +张信哲-爱你的宿命,http://em.21dtv.com/songs/60108485.mkv +张碧晨-爱你的宿命,http://em.21dtv.com/songs/60105055.mkv +迪克牛仔-爱你的宿命,http://em.21dtv.com/songs/60007883.mkv +腾格尔-爱你的日子,http://em.21dtv.com/songs/60007862.mkv +陈雷+甲子蕙-爱你的日子,http://em.21dtv.com/songs/60007861.mkv +邱芸子-爱你的情人,http://em.21dtv.com/songs/60007857.mkv +乔幼-爱你的恰恰,http://em.21dtv.com/songs/60109126.mkv +蔡秋凤+叶诺帆-爱你的情歌,http://em.21dtv.com/songs/60123136.mkv +龙帝-爱你的情歌,http://em.21dtv.com/songs/60074400.mkv +覃春江-爱你的情歌,http://em.21dtv.com/songs/60068049.mkv +范植伟-爱你的缺点,http://em.21dtv.com/songs/60007858.mkv +杜德伟-爱你的全部,http://em.21dtv.com/songs/60091384.mkv +王识贤-爱你的批纸,http://em.21dtv.com/songs/60007856.mkv +黄凯芹+叶玉卿-爱你到明天,http://em.21dtv.com/songs/60007841.mkv +林文隆-阿娘的目屎,http://em.21dtv.com/songs/60095672.mkv +朴野-爱你的理由,http://em.21dtv.com/songs/60098437.mkv +米雅-爱你的理由,http://em.21dtv.com/songs/60093783.mkv +全芳-爱你的理由,http://em.21dtv.com/songs/60081377.mkv +江志丰+张秀卿-爱你的理由,http://em.21dtv.com/songs/60007853.mkv +向蕙玲-爱你的记志,http://em.21dtv.com/songs/60108373.mkv +F4-爱你的句子,http://em.21dtv.com/songs/60007852.mkv +庾澄庆-爱你的记忆,http://em.21dtv.com/songs/60087785.mkv +佚名-爱你的记忆(无原唱),http://em.21dtv.com/songs/60007851.mkv +安伯政+孙淑媚-爱你的机会,http://em.21dtv.com/songs/60095520.mkv +王中平+向蕙玲-爱你的记号,http://em.21dtv.com/songs/60007850.mkv +CELINE DION-a new day has come,http://em.21dtv.com/songs/60000064.mkv +胡江伟-爱你的感觉,http://em.21dtv.com/songs/60007848.mkv +佩希+马健南-爱你的方式,http://em.21dtv.com/songs/60120319.mkv +汪峰-爱你的方式,http://em.21dtv.com/songs/60098551.mkv +方瑞娥+高向鹏-爱你的代价,http://em.21dtv.com/songs/60007847.mkv +杨哲-爱你的初衷,http://em.21dtv.com/songs/60135393.mkv +吕莹晶-爱你的翅膀,http://em.21dtv.com/songs/60082498.mkv +路童+李泓滢-爱你错错错,http://em.21dtv.com/songs/60118079.mkv +郭健一-爱你不应该,http://em.21dtv.com/songs/60007835.mkv +高山林-爱你必须的,http://em.21dtv.com/songs/60063871.mkv +杨子-爱你不释手,http://em.21dtv.com/songs/60101111.mkv +何宗龙-爱你不容易(舞曲版),http://em.21dtv.com/songs/60066796.mkv +大哲-爱你不能说,http://em.21dtv.com/songs/60135078.mkv +梁咏琪-爱能不能戒,http://em.21dtv.com/songs/60007764.mkv +刘朋-爱你比你多,http://em.21dtv.com/songs/60007814.mkv +网络歌手-爱你不觉累,http://em.21dtv.com/songs/60097636.mkv +高凌风-爱你比海深,http://em.21dtv.com/songs/60007813.mkv +包青山-爱你不后悔,http://em.21dtv.com/songs/60110055.mkv +李创-爱你不后悔,http://em.21dtv.com/songs/60066795.mkv +尔萨-爱你不后悔,http://em.21dtv.com/songs/60007829.mkv +陈小云-爱你不后悔,http://em.21dtv.com/songs/60007828.mkv +胡歌-爱你不会变,http://em.21dtv.com/songs/60007830.mkv +叶胜钦-爱你不敢讲,http://em.21dtv.com/songs/60066794.mkv +汪子琳-爱你不甘放(无原唱),http://em.21dtv.com/songs/60074790.mkv +卓依婷-爱你不放心,http://em.21dtv.com/songs/60089182.mkv +程芳-爱你不放弃,http://em.21dtv.com/songs/60111336.mkv +覃飞宇-爱你百分百,http://em.21dtv.com/songs/60066793.mkv +博比肯-爱你不差钱(演唱会),http://em.21dtv.com/songs/60007827.mkv +陈夏莲-爱你不爱你,http://em.21dtv.com/songs/60126371.mkv +陈夏莲-爱你不爱你,http://em.21dtv.com/songs/60124622.mkv +阿悄-爱你不爱你,http://em.21dtv.com/songs/60086407.mkv +黎明-爱你不爱你,http://em.21dtv.com/songs/60007824.mkv +苏永康-爱你不爱你(演唱会),http://em.21dtv.com/songs/60007823.mkv +曾心梅-爱你爱太深,http://em.21dtv.com/songs/60095590.mkv +陈中+陈秀玲-爱你爱太深,http://em.21dtv.com/songs/60007809.mkv +吴俊宏-爱你爱你哟,http://em.21dtv.com/songs/60135010.mkv +李明洋+邱芸子-爱你爱甲死,http://em.21dtv.com/songs/60007803.mkv +孙淑媚-爱你爱到这,http://em.21dtv.com/songs/60007794.mkv +张秀卿+王识贤-爱你爱到这(无原唱),http://em.21dtv.com/songs/60007793.mkv +朱虹-爱你爱得深,http://em.21dtv.com/songs/60081452.mkv +袁小迪+龙千玉-爱你爱到死,http://em.21dtv.com/songs/60063307.mkv +杨荞安+同恩+夏宇童-爱你爱到死,http://em.21dtv.com/songs/60007788.mkv +ASOS-爱你爱到死,http://em.21dtv.com/songs/60007787.mkv +小海-爱你爱到老,http://em.21dtv.com/songs/60127921.mkv +王识贤-爱你爱到老,http://em.21dtv.com/songs/60007786.mkv +孙楠-爱你爱不够,http://em.21dtv.com/songs/60007782.mkv +任玲-阿妈煮的茶,http://em.21dtv.com/songs/60070443.mkv +陈奕迅-爱没有左右,http://em.21dtv.com/songs/60110626.mkv +吴琼-爱没有阻挡,http://em.21dtv.com/songs/60007736.mkv +游鸿明-爱没有失败,http://em.21dtv.com/songs/60007735.mkv +郭静-傲慢与偏见,http://em.21dtv.com/songs/60081312.mkv +佚名-傲慢与偏见,http://em.21dtv.com/songs/60009432.mkv +多亮-爱没有尽头,http://em.21dtv.com/songs/60074388.mkv +卫兰-爱没有假如,http://em.21dtv.com/songs/60063061.mkv +满文军-爱每一个我(演唱会),http://em.21dtv.com/songs/60007738.mkv +梁汉文-爱没有不对,http://em.21dtv.com/songs/60007733.mkv +曾辉彬-阿妹涯爱你,http://em.21dtv.com/songs/60006794.mkv +陈子弘-澳门小荷花,http://em.21dtv.com/songs/60009447.mkv +刘钰华-爱朦上眼睛,http://em.21dtv.com/songs/60089174.mkv +刘钰华-爱蒙上眼睛,http://em.21dtv.com/songs/60007743.mkv +吴卓义-爱马仕小姐,http://em.21dtv.com/songs/60007727.mkv +黄耀明-阿姆斯特丹(演唱会),http://em.21dtv.com/songs/60006807.mkv +吴庆国-俺们山东人,http://em.21dtv.com/songs/60121494.mkv +认真-阿妈请放心,http://em.21dtv.com/songs/60115385.mkv +DA PUMP-all my love to you(无原唱),http://em.21dtv.com/songs/60000164.mkv +梁咏琪-爱美丽天使,http://em.21dtv.com/songs/60092894.mkv +朱海君-阿母的针车,http://em.21dtv.com/songs/60113606.mkv +李明洋-阿母的一生,http://em.21dtv.com/songs/60132550.mkv +泽尔丹-阿妈的眼神,http://em.21dtv.com/songs/60065761.mkv +琼雪卓玛-阿妈的眼睛,http://em.21dtv.com/songs/60006785.mkv +容中尔甲-阿妈的笑脸,http://em.21dtv.com/songs/60006784.mkv +天籁天-暧昧的味道,http://em.21dtv.com/songs/60009304.mkv +朴树-傲慢的上校,http://em.21dtv.com/songs/60115997.mkv +朴树-傲慢的上校,http://em.21dtv.com/songs/60114589.mkv +萧煌奇-阿母的情歌,http://em.21dtv.com/songs/60006804.mkv +达坡玛吉-阿妹的情歌,http://em.21dtv.com/songs/60006793.mkv +林慧省-阿母的青春,http://em.21dtv.com/songs/60135434.mkv +天亮-阿妈的奶茶,http://em.21dtv.com/songs/60100826.mkv +钟彩媚-阿妈的擂茶,http://em.21dtv.com/songs/60129694.mkv +钟彩媚-阿姆的擂茶,http://em.21dtv.com/songs/60108089.mkv +傅滢滢-阿嬷的教示,http://em.21dtv.com/songs/60082457.mkv +秀兰玛雅-阿妈的红线,http://em.21dtv.com/songs/60006780.mkv +罗勤颖-阿妈的火塘,http://em.21dtv.com/songs/60082455.mkv +益初措-阿妈的歌谣,http://em.21dtv.com/songs/60069167.mkv +央金卓嘎-阿妈的佛珠,http://em.21dtv.com/songs/60130229.mkv +佚名-阿母的恩情,http://em.21dtv.com/songs/60006802.mkv +卓玛拉初-阿妈的炊烟,http://em.21dtv.com/songs/60090762.mkv +许富凯-阿嬷的背影,http://em.21dtv.com/songs/60070444.mkv +久美旺加-阿妈的背篼,http://em.21dtv.com/songs/60006779.mkv +许志安-Amani,http://em.21dtv.com/songs/60118040.mkv +苏路-爱来找麻烦,http://em.21dtv.com/songs/60084814.mkv +庞龙-爱了一辈子(HD),http://em.21dtv.com/songs/10012779.mkv +庞龙-爱了一辈子,http://em.21dtv.com/songs/60096264.mkv +钟汉良-暗恋像炸弹,http://em.21dtv.com/songs/60009393.mkv +黄晓明-暗恋星外星,http://em.21dtv.com/songs/60089046.mkv +杨哲-阿郎行船曲,http://em.21dtv.com/songs/60098503.mkv +张蓉蓉-爱了无后悔,http://em.21dtv.com/songs/60074533.mkv +龙千玉+翁立友-爱了无后悔,http://em.21dtv.com/songs/60007711.mkv +佚名-暗恋桃花源,http://em.21dtv.com/songs/60009390.mkv +张燕-阿里山新歌,http://em.21dtv.com/songs/60087829.mkv +张燕-阿里山流行,http://em.21dtv.com/songs/60006773.mkv +卓依婷-阿里山姑娘,http://em.21dtv.com/songs/60006772.mkv +彝人制造-阿里山姑娘,http://em.21dtv.com/songs/60006771.mkv +孙楠+周蕙-奥林匹克星,http://em.21dtv.com/songs/60090906.mkv +顺子+齐秦-奥林匹克星(演唱会),http://em.21dtv.com/songs/60009437.mkv +群星-奥林匹克情,http://em.21dtv.com/songs/60091851.mkv +张燕-奥林匹克风,http://em.21dtv.com/songs/60009436.mkv +群星-奥林匹克风(演唱会),http://em.21dtv.com/songs/60009435.mkv +那英+景岗山-奥林匹克风(演唱会),http://em.21dtv.com/songs/60009434.mkv +毛阿敏+章鹏-奥林匹克风(演唱会),http://em.21dtv.com/songs/60009433.mkv +Alan Walker-Alone,http://em.21dtv.com/songs/60129879.mkv +不辣-爱了你好久,http://em.21dtv.com/songs/60128731.mkv +成林江措-爱恋你的人,http://em.21dtv.com/songs/60069184.mkv +扬炀-阿拉宁波style,http://em.21dtv.com/songs/60070440.mkv +顺子-爱了就知道,http://em.21dtv.com/songs/60107354.mkv +戴爱玲-爱了就知道,http://em.21dtv.com/songs/60007704.mkv +苏慧伦-爱了就懂了,http://em.21dtv.com/songs/60007701.mkv +张心杰-爱了就沉伦,http://em.21dtv.com/songs/60007700.mkv +张韶涵-爱旅行的人,http://em.21dtv.com/songs/60101636.mkv +马宁-阿哩咕呢呀,http://em.21dtv.com/songs/60084780.mkv +龙飞+梅朵儿-暗恋的烟火,http://em.21dtv.com/songs/60132033.mkv +团风依依-爱来的太晚,http://em.21dtv.com/songs/60110953.mkv +廖孟君-爱来的太迟,http://em.21dtv.com/songs/60111048.mkv +草蜢-暗恋的时代,http://em.21dtv.com/songs/60088562.mkv +许志安-阿拉丁神灯,http://em.21dtv.com/songs/60006750.mkv +张智成-爱来得刚好,http://em.21dtv.com/songs/60087819.mkv +张智成-爱来的刚好,http://em.21dtv.com/songs/60007686.mkv +草蜢-暗恋的代价,http://em.21dtv.com/songs/60009384.mkv +陈佳喆-阿拉慈溪人,http://em.21dtv.com/songs/60074278.mkv +群星-阿拉伯之夜,http://em.21dtv.com/songs/60129501.mkv +郑希怡-阿拉伯市场,http://em.21dtv.com/songs/60006748.mkv +佚名-a little bit of soap,http://em.21dtv.com/songs/60000050.mkv +佚名-a little bit of love(无原唱),http://em.21dtv.com/songs/60000049.mkv +糯米团-阿鲁巴痢疾,http://em.21dtv.com/songs/60006777.mkv +张杰(流浪歌手)-爱了不后悔,http://em.21dtv.com/songs/60069185.mkv +苗伟-爱了别放手,http://em.21dtv.com/songs/60074385.mkv +苗伟-爱了别放开,http://em.21dtv.com/songs/60089460.mkv +周慧敏-a long and lasting love(演唱会),http://em.21dtv.com/songs/60072860.mkv +佚名-a long and lasting love,http://em.21dtv.com/songs/60000054.mkv +华D-阿丽啀爱汝,http://em.21dtv.com/songs/60095482.mkv +李克勤-爱可以问谁,http://em.21dtv.com/songs/60007674.mkv +李克勤+欢欢+波波-爱可以问谁(演唱会),http://em.21dtv.com/songs/60007673.mkv +江蕙-爱哭的时阵,http://em.21dtv.com/songs/60007679.mkv +谢金燕-爱哭爱跟路,http://em.21dtv.com/songs/60007676.mkv +马志锋-爱就在这里,http://em.21dtv.com/songs/60063863.mkv +敌日布都-爱就在一起,http://em.21dtv.com/songs/60105927.mkv +刘育绫-爱甲这呢痛,http://em.21dtv.com/songs/60007636.mkv +陈随意-爱甲这呢痴,http://em.21dtv.com/songs/60074374.mkv +苏芮-爱就这么来(演唱会),http://em.21dtv.com/songs/60007666.mkv +王建杰-爱甲这狼狈,http://em.21dtv.com/songs/60099404.mkv +陈旭+张钧雅-爱就做出来,http://em.21dtv.com/songs/60063864.mkv +迪丽热巴+张云龙-傲娇与偏见,http://em.21dtv.com/songs/60135787.mkv +阿勇+李卓阳-爱就要快乐,http://em.21dtv.com/songs/60115471.mkv +秦妮-爱就一个字,http://em.21dtv.com/songs/60082488.mkv +张信哲-爱就一个字,http://em.21dtv.com/songs/60007665.mkv +张信哲-爱就一个字(演唱会),http://em.21dtv.com/songs/60007664.mkv +陈娟儿-爱就要干脆,http://em.21dtv.com/songs/60074383.mkv +樱花姊妹-阿姐要返来,http://em.21dtv.com/songs/60070896.mkv +王俊凯(TFBoys)-安静,http://em.21dtv.com/songs/60104300.mkv +张蓉蓉-爱甲心畏寒,http://em.21dtv.com/songs/60007635.mkv +阎维文-爱军习武歌,http://em.21dtv.com/songs/60007668.mkv +佚名-爱警习武歌,http://em.21dtv.com/songs/60007644.mkv +安又琪-爱就像微风,http://em.21dtv.com/songs/60090944.mkv +关晓彤-安洁西公主,http://em.21dtv.com/songs/60120341.mkv +关晓彤-安洁西公主,http://em.21dtv.com/songs/60115013.mkv +郑君威+萧玉芬-爱甲无怨恨,http://em.21dtv.com/songs/60074373.mkv +庄心妍-爱尽天涯路,http://em.21dtv.com/songs/60102185.mkv +温兆伦-爱就是这样,http://em.21dtv.com/songs/60007660.mkv +费阳-爱就是快乐,http://em.21dtv.com/songs/60074380.mkv +严爵-爱就是咖喱,http://em.21dtv.com/songs/60007656.mkv +阿来-爱就是节拍,http://em.21dtv.com/songs/60114180.mkv +欧阳铭芮-爱就是花朵(演唱会),http://em.21dtv.com/songs/60096375.mkv +张振超-爱就说出来,http://em.21dtv.com/songs/60074382.mkv +郑中基-爱就是爱了,http://em.21dtv.com/songs/60007654.mkv +陈雷-爱甲流目油,http://em.21dtv.com/songs/60012068.mkv +江宏恩-爱甲拢变调,http://em.21dtv.com/songs/60065782.mkv +苍茫-爱渐渐消失(演唱会),http://em.21dtv.com/songs/60007639.mkv +鄞雅茹-爱久见人心,http://em.21dtv.com/songs/60135837.mkv +梁静茹-爱久见人心,http://em.21dtv.com/songs/60068043.mkv +原子霏-爱渐渐离开,http://em.21dtv.com/songs/60130162.mkv +许富凯-爱见好就收,http://em.21dtv.com/songs/60063213.mkv +管罄-安静的张扬,http://em.21dtv.com/songs/60100367.mkv +许书豪-安静的小孩,http://em.21dtv.com/songs/60118034.mkv +荣联合-爱就大声唱,http://em.21dtv.com/songs/60106232.mkv +龙千玉-爱就爱到老(无原唱),http://em.21dtv.com/songs/60007648.mkv +齐霖-爱就爱到底,http://em.21dtv.com/songs/60127633.mkv +徐仁国-all i want is u,http://em.21dtv.com/songs/60072877.mkv +MARC ANTHONY-am i the only one,http://em.21dtv.com/songs/60000212.mkv +EVAN-all i see is you,http://em.21dtv.com/songs/60082067.mkv +佚名-and i love you so,http://em.21dtv.com/songs/60000244.mkv +DON MCLEAN-and i love you so,http://em.21dtv.com/songs/60000243.mkv +立威廉-and i love you so(无原唱),http://em.21dtv.com/songs/60000242.mkv +SOPHIE B. HAWKINS-as i lay me down,http://em.21dtv.com/songs/60000341.mkv +BACKSTREET BOYS-all i have to give,http://em.21dtv.com/songs/60000155.mkv +-all i do is win,http://em.21dtv.com/songs/60082066.mkv +佚名-all i ask of you,http://em.21dtv.com/songs/60000153.mkv +贾孟昕-爱火在燃烧,http://em.21dtv.com/songs/60110551.mkv +区小丽-爱恨一千年,http://em.21dtv.com/songs/60087440.mkv +荒山亮-爱恨一粒心,http://em.21dtv.com/songs/60082485.mkv +汤晶晶-爱会有多痛,http://em.21dtv.com/songs/60124188.mkv +陈夏莲-爱恨一场空,http://em.21dtv.com/songs/60123290.mkv +佚名-阿花要出嫁(古鲁巴),http://em.21dtv.com/songs/60006744.mkv +林姗+李明洋-爱恨相牵连,http://em.21dtv.com/songs/60069182.mkv +李乐诗-爱还未足够,http://em.21dtv.com/songs/60092790.mkv +佚名-a horse with no name,http://em.21dtv.com/songs/60000046.mkv +刘德华-爱火烧不尽,http://em.21dtv.com/songs/60007623.mkv +郑中基-爱恨惹是非,http://em.21dtv.com/songs/60007604.mkv +陈凯彤-Ah Oh,http://em.21dtv.com/songs/60122226.mkv +吕薇-啊哈纳斯湖,http://em.21dtv.com/songs/60006854.mkv +周楚诗-爱很难明白,http://em.21dtv.com/songs/60121509.mkv +张政雄+薛佩洁-爱恨拢是你,http://em.21dtv.com/songs/60071719.mkv +黄乙玲-爱恨拢是你,http://em.21dtv.com/songs/60007599.mkv +高向鹏-爱恨拢是苦,http://em.21dtv.com/songs/60117386.mkv +唐俪-爱恨拢随风,http://em.21dtv.com/songs/60097643.mkv +林子娟-爱恨拢到这,http://em.21dtv.com/songs/60007598.mkv +陶喆-爱 很简单,http://em.21dtv.com/songs/60128561.mkv +佚名-a heart in new york(演唱会),http://em.21dtv.com/songs/60000045.mkv +Double S 301-AH HA,http://em.21dtv.com/songs/60122370.mkv +洪荣宏-阿宏的心声,http://em.21dtv.com/songs/60006742.mkv +林立-爱花的男孩,http://em.21dtv.com/songs/60063862.mkv +阿黑-阿黑的悲哀(无原唱),http://em.21dtv.com/songs/60006741.mkv +暴林-爱过这一回,http://em.21dtv.com/songs/60007569.mkv +彭莉-爱过一个人,http://em.21dtv.com/songs/60007563.mkv +谢金燕-阿公呷无饱,http://em.21dtv.com/songs/60114794.mkv +娅琳-爱给我坚强,http://em.21dtv.com/songs/60113395.mkv +张宇轩-爱过我就好,http://em.21dtv.com/songs/60097632.mkv +CLOVER-a guy who i know,http://em.21dtv.com/songs/60072859.mkv +邱芸子-爱过无后悔,http://em.21dtv.com/songs/60007559.mkv +容祖儿-爱怪物的你,http://em.21dtv.com/songs/60007521.mkv +许罡-阿根廷不哭,http://em.21dtv.com/songs/60104431.mkv +陈随意-爱过生份人,http://em.21dtv.com/songs/60074364.mkv +林志颖-爱过情浓处,http://em.21dtv.com/songs/60007551.mkv +李代沫-爱过那张脸,http://em.21dtv.com/songs/60079939.mkv +李嘉-爱过你的心,http://em.21dtv.com/songs/60007549.mkv +方小菲-爱过你的人,http://em.21dtv.com/songs/60074363.mkv +沙玛尔西-阿哥你别走,http://em.21dtv.com/songs/60097583.mkv +荣联合-阿古拉情歌,http://em.21dtv.com/songs/60063831.mkv +佚名-a groovy kind of love,http://em.21dtv.com/songs/60000044.mkv +刘嘉亮-爱过就足够,http://em.21dtv.com/songs/60007545.mkv +汤晓菲-爱过就值得,http://em.21dtv.com/songs/60074358.mkv +郑进一+贺一航-爱国精神病,http://em.21dtv.com/songs/60007524.mkv +草蜢-爱过就可以,http://em.21dtv.com/songs/60007542.mkv +尔萨-爱过后酸楚,http://em.21dtv.com/songs/60007540.mkv +邵大伦-阿哥哥之恋,http://em.21dtv.com/songs/60086391.mkv +大刚-爱刚刚开始,http://em.21dtv.com/songs/60007508.mkv +子祺-爱国奉献歌,http://em.21dtv.com/songs/60063484.mkv +佚名-爱国奉献歌,http://em.21dtv.com/songs/60007523.mkv +吴恒-昂贵的眼泪,http://em.21dtv.com/songs/60128889.mkv +马希尔-阿哥的眼泪,http://em.21dtv.com/songs/60080670.mkv +陈彩林-阿哥带我走,http://em.21dtv.com/songs/60106397.mkv +陈志明-爱敢担输赢,http://em.21dtv.com/songs/60007506.mkv +高原-爱过多少人,http://em.21dtv.com/songs/60109047.mkv +艳阳天-爱过多少人,http://em.21dtv.com/songs/60069181.mkv +马曲辰-爱给的伤害,http://em.21dtv.com/songs/60074355.mkv +葛镇狄-昂贵的路上,http://em.21dtv.com/songs/60135689.mkv +宋祖英-阿公的酒碗,http://em.21dtv.com/songs/60006736.mkv +可歆-爱过的回忆,http://em.21dtv.com/songs/60099853.mkv +刘晓东-爱过的痕迹,http://em.21dtv.com/songs/60118394.mkv +抗太阳-爱过的痕迹,http://em.21dtv.com/songs/60089895.mkv +陈雷+苏路-爱过的痕迹,http://em.21dtv.com/songs/60007535.mkv +方瑞娥-爱过才知影,http://em.21dtv.com/songs/60065777.mkv +韦唯-爱过才明白,http://em.21dtv.com/songs/60007533.mkv +冷漠-爱过才错过,http://em.21dtv.com/songs/60093996.mkv +周蕙-爱过不伤心,http://em.21dtv.com/songs/60007532.mkv +刘德华-爱过不留痕,http://em.21dtv.com/songs/60090702.mkv +郑源-爱过不后悔,http://em.21dtv.com/songs/60007530.mkv +陈思安-爱过彼个人,http://em.21dtv.com/songs/60007529.mkv +ClariS-again,http://em.21dtv.com/songs/60129907.mkv +佚名-阿凡提之歌,http://em.21dtv.com/songs/60006728.mkv +郑智化-ait flying lile a bird,http://em.21dtv.com/songs/60000130.mkv +曾春年-安抚的谎言,http://em.21dtv.com/songs/60126973.mkv +阿格尔-阿尔泰苍狼,http://em.21dtv.com/songs/60074275.mkv +EDITORS-an end has a start,http://em.21dtv.com/songs/60000236.mkv +卓文萱+黄鸿升-爱的主旋律,http://em.21dtv.com/songs/60007465.mkv +孙淑媚-爱到这为止,http://em.21dtv.com/songs/60007124.mkv +童安格-爱的主题曲,http://em.21dtv.com/songs/60007464.mkv +[Group] +groupName=十六万歌曲MV等 - 64 +周华健+赵咏华-爱到最深处,http://em.21dtv.com/songs/60007132.mkv +玖壹壹-爱的总铺师,http://em.21dtv.com/songs/60114704.mkv +佚名-爱到最高点,http://em.21dtv.com/songs/60007126.mkv +杨静-爱的终点站,http://em.21dtv.com/songs/60117838.mkv +黄思婷-爱的终点站,http://em.21dtv.com/songs/60007459.mkv +罗志祥-爱的主打嗝,http://em.21dtv.com/songs/60118842.mkv +萧亚轩-爱的主打歌,http://em.21dtv.com/songs/60007463.mkv +罗志祥-爱的主场秀,http://em.21dtv.com/songs/60007462.mkv +商东茜-爱的语助词,http://em.21dtv.com/songs/60007444.mkv +邹静-爱等于一切,http://em.21dtv.com/songs/60093256.mkv +邱静-爱等于一切,http://em.21dtv.com/songs/60093254.mkv +朱雅-爱的优先权,http://em.21dtv.com/songs/60080867.mkv +BABY-爱的有味道,http://em.21dtv.com/songs/60007442.mkv +BABY-爱得有味道(无原唱),http://em.21dtv.com/songs/60007158.mkv +黄鹤翔-爱的咏叹调,http://em.21dtv.com/songs/60089063.mkv +陈山葱-爱多一分钟,http://em.21dtv.com/songs/60093433.mkv +江波-爱到一百度,http://em.21dtv.com/songs/60127152.mkv +陈允弦-爱的协奏曲,http://em.21dtv.com/songs/60104543.mkv +风语-爱的小夜曲,http://em.21dtv.com/songs/60135992.mkv +大雨点儿-爱的相思雪,http://em.21dtv.com/songs/60062307.mkv +天龙-爱的相思雪,http://em.21dtv.com/songs/60007417.mkv +太冲-爱的相思雪,http://em.21dtv.com/songs/60007416.mkv +冷漠+云菲菲-爱的血泪史,http://em.21dtv.com/songs/60063855.mkv +孙艳-爱的心好痛,http://em.21dtv.com/songs/60102134.mkv +袁小迪-爱到幸福站,http://em.21dtv.com/songs/60069171.mkv +涂紫凝-爱的下半场,http://em.21dtv.com/songs/60007415.mkv +何家劲-爱到我心碎,http://em.21dtv.com/songs/60007111.mkv +刘耔彤-爱到我牺牲,http://em.21dtv.com/songs/60007110.mkv +张秀卿-爱到无退路,http://em.21dtv.com/songs/60066776.mkv +周子琰-爱的微积分,http://em.21dtv.com/songs/60120409.mkv +合唱-爱党卫国歌,http://em.21dtv.com/songs/60087534.mkv +童童-爱的温度计,http://em.21dtv.com/songs/60007406.mkv +江蕙-爱到袜冻爱,http://em.21dtv.com/songs/60007108.mkv +叮当-爱的5部曲,http://em.21dtv.com/songs/60087511.mkv +冯博娟-爱得太天真,http://em.21dtv.com/songs/60092339.mkv +李雨伦-爱的太认真,http://em.21dtv.com/songs/60114611.mkv +王心凌-爱的天灵灵,http://em.21dtv.com/songs/60007396.mkv +陈珧-爱的铁栏国,http://em.21dtv.com/songs/60062290.mkv +熊照华-爱的太狼狈,http://em.21dtv.com/songs/60120740.mkv +萧亚轩-爱的太坎坷,http://em.21dtv.com/songs/60091992.mkv +TENSION-爱的提款机,http://em.21dtv.com/songs/60007387.mkv +雨天-爱的太寂寞,http://em.21dtv.com/songs/60063300.mkv +刘海-爱的替代者,http://em.21dtv.com/songs/60103119.mkv +刘中意-爱的替代品,http://em.21dtv.com/songs/60007388.mkv +五分之一-爱的头等舱,http://em.21dtv.com/songs/60087261.mkv +ONE FIFTH-爱的头等舱,http://em.21dtv.com/songs/60007401.mkv +嘉骏-爱得太沉醉,http://em.21dtv.com/songs/60074323.mkv +陈飞彤-爱得太沉默,http://em.21dtv.com/songs/60074322.mkv +佚名-爱的十字架,http://em.21dtv.com/songs/60007365.mkv +孟庭苇-爱到史艳文,http://em.21dtv.com/songs/60007102.mkv +丁维伟-爱的生日歌,http://em.21dtv.com/songs/60086401.mkv +ALLSTAR WEEKEND-a different side of me,http://em.21dtv.com/songs/60061952.mkv +沙宝亮-爱的省略号,http://em.21dtv.com/songs/60100266.mkv +韩雪-爱的水晶鞋,http://em.21dtv.com/songs/60088962.mkv +李翊君-爱的生还者,http://em.21dtv.com/songs/60007362.mkv +史智+侍宣如-爱的守护神,http://em.21dtv.com/songs/60063853.mkv +胡夏-爱都是对的,http://em.21dtv.com/songs/60007481.mkv +洪荣宏-爱的人是你,http://em.21dtv.com/songs/60007350.mkv +J-BOY3-爱的契约书,http://em.21dtv.com/songs/60062055.mkv +伊稀-爱的前一秒,http://em.21dtv.com/songs/60080038.mkv +刘超华-爱的起跑线,http://em.21dtv.com/songs/60007346.mkv +林志颖-爱到情浓处,http://em.21dtv.com/songs/60007097.mkv +五分之一-爱的情动作,http://em.21dtv.com/songs/60090516.mkv +小曾-阿弟去当兵,http://em.21dtv.com/songs/60006723.mkv +大芭-爱的排行榜,http://em.21dtv.com/songs/60065772.mkv +陈思安+庄振凯-爱的膨纱衫,http://em.21dtv.com/songs/60070456.mkv +柳影虹-爱定你一个(演唱会),http://em.21dtv.com/songs/60074351.mkv +甄妮-爱定你一个(演唱会),http://em.21dtv.com/songs/60007476.mkv +群星-爱定你一个(演唱会),http://em.21dtv.com/songs/60007475.mkv +应子栋-爱的那么深,http://em.21dtv.com/songs/60007334.mkv +罗百吉-爱的那么累,http://em.21dtv.com/songs/60062738.mkv +许浩-爱得那么苦,http://em.21dtv.com/songs/60063843.mkv +温拿乐队-爱到你发狂,http://em.21dtv.com/songs/60092972.mkv +郑中基-爱到你发狂(演唱会),http://em.21dtv.com/songs/60007095.mkv +谭咏麟+李克勤-爱到你发狂(演唱会),http://em.21dtv.com/songs/60007094.mkv +蔡依林-爱的南北极,http://em.21dtv.com/songs/60092021.mkv +伍思凯-爱的牧羊人,http://em.21dtv.com/songs/60007333.mkv +罗时丰-爱到没性命,http://em.21dtv.com/songs/60095861.mkv +姜育恒-爱到梦醒后,http://em.21dtv.com/songs/60090882.mkv +王子皓-爱的魔法师,http://em.21dtv.com/songs/60069178.mkv +SEVENG-爱的慢动作,http://em.21dtv.com/songs/60007317.mkv +ONE FIFTH-爱的慢动作,http://em.21dtv.com/songs/60007316.mkv +方嘉龙-爱的目的地,http://em.21dtv.com/songs/60007331.mkv +泷泽-爱对了的人,http://em.21dtv.com/songs/60074352.mkv +蜜雪薇琪-爱的卡洛里,http://em.21dtv.com/songs/60007284.mkv +旅行箱乐团-爱到卡惨死,http://em.21dtv.com/songs/60116855.mkv +陈淑桦-爱的进行式,http://em.21dtv.com/songs/60007278.mkv +张紫瑶+科云桓-爱的进行曲,http://em.21dtv.com/songs/60126895.mkv +谢曜仲-爱的进行曲,http://em.21dtv.com/songs/60007277.mkv +天籁天+许诺+杨靖怡-爱的进行曲,http://em.21dtv.com/songs/60007276.mkv +刘德华-爱地久天长,http://em.21dtv.com/songs/60007473.mkv +苍茫-爱的计算题(演唱会),http://em.21dtv.com/songs/60007263.mkv +SNH48-爱的加速器,http://em.21dtv.com/songs/60109881.mkv +程欢-爱的就是你,http://em.21dtv.com/songs/60130636.mkv +刘佳-爱的就是你,http://em.21dtv.com/songs/60130113.mkv +仇元杰+李璐-爱的就是你,http://em.21dtv.com/songs/60115677.mkv +张杰+赵俊-爱的就是你,http://em.21dtv.com/songs/60112677.mkv +王力宏-爱的就是你(HD),http://em.21dtv.com/songs/10012691.mkv +孔令奇-爱的就是你,http://em.21dtv.com/songs/60097641.mkv +王璐岢-爱的就是你,http://em.21dtv.com/songs/60080285.mkv +王力宏-爱的就是你,http://em.21dtv.com/songs/60007281.mkv +王力宏-爱的就是你(演唱会),http://em.21dtv.com/songs/60007280.mkv +龙梅子-爱的紧箍咒,http://em.21dtv.com/songs/60119080.mkv +佚名-爱的脚步声,http://em.21dtv.com/songs/60007272.mkv +李宇春-爱的12句(演唱会),http://em.21dtv.com/songs/60007164.mkv +七朵花-爱的黑眼圈,http://em.21dtv.com/songs/60082471.mkv +王心凌-爱的滑翔翼,http://em.21dtv.com/songs/60007255.mkv +张清芳-爱得很小心,http://em.21dtv.com/songs/60007139.mkv +金城-爱的好心痛,http://em.21dtv.com/songs/60068038.mkv +邓曼茹-爱的幻想曲,http://em.21dtv.com/songs/60007257.mkv +小庄-爱的很辛苦,http://em.21dtv.com/songs/60087715.mkv +小庄-爱的好辛苦,http://em.21dtv.com/songs/60007245.mkv +黑龙-爱的好辛苦,http://em.21dtv.com/songs/60007244.mkv +吴雨霏-爱德华时代,http://em.21dtv.com/songs/60090817.mkv +涓子-爱得好疲惫,http://em.21dtv.com/songs/60074320.mkv +小王子-爱的好疲惫,http://em.21dtv.com/songs/60007243.mkv +胡杰夕-爱得好疲惫,http://em.21dtv.com/songs/60007138.mkv +SWEETY-爱的号码牌,http://em.21dtv.com/songs/60007246.mkv +布格-爱得火辣辣,http://em.21dtv.com/songs/60130287.mkv +刘兴贵.王莉-爱的火辣辣,http://em.21dtv.com/songs/60104812.mkv +轲然-爱得好狼狈,http://em.21dtv.com/songs/60074319.mkv +蓝宇-爱得好狼狈,http://em.21dtv.com/songs/60069172.mkv +吴莫愁-爱的号角声,http://em.21dtv.com/songs/60116646.mkv +安心亚-爱得好寂寞,http://em.21dtv.com/songs/60071711.mkv +陈韵若+陈每文-爱的回归线,http://em.21dtv.com/songs/60071714.mkv +俞灏明+郑爽-爱的华尔兹,http://em.21dtv.com/songs/60007254.mkv +洪翔-爱的感情线,http://em.21dtv.com/songs/60007213.mkv +伍思凯-爱的钢琴手,http://em.21dtv.com/songs/60007215.mkv +誓言-爱的刚刚好,http://em.21dtv.com/songs/60127385.mkv +周传雄-爱的告别式,http://em.21dtv.com/songs/60084795.mkv +李玟-爱的副作用,http://em.21dtv.com/songs/60082469.mkv +张玉华-爱的副作用(演唱会),http://em.21dtv.com/songs/60007210.mkv +郭富城-爱的发热网,http://em.21dtv.com/songs/60007199.mkv +郭富城-爱的发热网(演唱会),http://em.21dtv.com/songs/60007198.mkv +缘分心儿-爱的附加值,http://em.21dtv.com/songs/60081740.mkv +堂娜-爱的第一天,http://em.21dtv.com/songs/60007195.mkv +安瑞甜-爱的第五季,http://em.21dtv.com/songs/60116727.mkv +曾明莉-暗淡的思念(无原唱),http://em.21dtv.com/songs/60009362.mkv +海哲明-爱的地平线,http://em.21dtv.com/songs/60066780.mkv +安心亚-爱的动名片,http://em.21dtv.com/songs/60071713.mkv +阿悄-爱的多米诺,http://em.21dtv.com/songs/60102857.mkv +ALIVE-阿当的抉择,http://em.21dtv.com/songs/60092127.mkv +丁文琪-爱的读后感,http://em.21dtv.com/songs/60090458.mkv +河莉秀-爱的dna出错,http://em.21dtv.com/songs/60074327.mkv +黄乙玲-爱到才知痛,http://em.21dtv.com/songs/60007073.mkv +陈淑萍+陈中-爱到才知痛,http://em.21dtv.com/songs/60007072.mkv +办桌二人组-爱到才知痛,http://em.21dtv.com/songs/60007071.mkv +阿影-爱的草原风,http://em.21dtv.com/songs/60135880.mkv +贺世哲-爱到此为止,http://em.21dtv.com/songs/60097640.mkv +张震岳-爱的初体验,http://em.21dtv.com/songs/60089291.mkv +任贤齐-爱的初体验(演唱会),http://em.21dtv.com/songs/60007184.mkv +莫文蔚-爱的初体验(演唱会),http://em.21dtv.com/songs/60007183.mkv +黄品源+黄品冠-爱的初体验(演唱会),http://em.21dtv.com/songs/60007182.mkv +鸿飞-爱的痴情人,http://em.21dtv.com/songs/60106485.mkv +朱妍-爱到不再爱,http://em.21dtv.com/songs/60007069.mkv +陈思安-爱的播音员,http://em.21dtv.com/songs/60007174.mkv +陈慧琳-爱得不一样,http://em.21dtv.com/songs/60007136.mkv +廖浩明-爱的不是我,http://em.21dtv.com/songs/60063846.mkv +雷婷-爱的不是我,http://em.21dtv.com/songs/60007176.mkv +颜福伟-爱多八十年(演唱会),http://em.21dtv.com/songs/60007484.mkv +河静静-爱的冰淇淋,http://em.21dtv.com/songs/60007172.mkv +张学友-爱得比你深,http://em.21dtv.com/songs/60007135.mkv +张学友-爱得比你深(演唱会),http://em.21dtv.com/songs/60007134.mkv +孙露-爱到不能爱,http://em.21dtv.com/songs/60115836.mkv +光良-爱的不快乐,http://em.21dtv.com/songs/60090654.mkv +陈淑桦-爱得比较深,http://em.21dtv.com/songs/60007133.mkv +永邦-爱的比较多,http://em.21dtv.com/songs/60007169.mkv +杨鸣轩-爱到不会爱,http://em.21dtv.com/songs/60116953.mkv +小刘欢-爱的不归路,http://em.21dtv.com/songs/60126796.mkv +李军-爱的不归路,http://em.21dtv.com/songs/60099301.mkv +小刘欢-爱的不归路,http://em.21dtv.com/songs/60007175.mkv +张灵敏-爱到不敢爱,http://em.21dtv.com/songs/60071710.mkv +白龙传说-爱错一个人,http://em.21dtv.com/songs/60111322.mkv +何静-爱从未走远,http://em.21dtv.com/songs/60090615.mkv +琴瑟组合-爱从未远走,http://em.21dtv.com/songs/60117934.mkv +爱戴-爱才是王牌,http://em.21dtv.com/songs/60088266.mkv +张宇-爱残缺不全,http://em.21dtv.com/songs/60091081.mkv +莫文蔚-爱从哪里来,http://em.21dtv.com/songs/60093104.mkv +堂娜+薛忠铭-爱错了时候(演唱会),http://em.21dtv.com/songs/60007064.mkv +孙燕姿-爱从零开始,http://em.21dtv.com/songs/60007052.mkv +梦伟+网络歌手-爱错了方位,http://em.21dtv.com/songs/60091531.mkv +音乐走廊+歌一生-爱曾经来过,http://em.21dtv.com/songs/60121138.mkv +周晋进-爱曾经来过,http://em.21dtv.com/songs/60112575.mkv +韩磊-爱愁交给谁,http://em.21dtv.com/songs/60088956.mkv +张玮-a change is gonna come,http://em.21dtv.com/songs/60072857.mkv +夏韶声-a change is gonna come(演唱会),http://em.21dtv.com/songs/60000039.mkv +城市姐妹-哀愁火车站(演唱会),http://em.21dtv.com/songs/60068031.mkv +佚名-哀愁火车站,http://em.21dtv.com/songs/60006894.mkv +吴奇隆-爱出个未来,http://em.21dtv.com/songs/60007049.mkv +吴勇滨-爱唱歌的人,http://em.21dtv.com/songs/60007045.mkv +陈雷-哀愁的探戈(无原唱),http://em.21dtv.com/songs/60004012.mkv +魏骏杰-爱错的女人,http://em.21dtv.com/songs/60007058.mkv +乌兰托娅-爱从草原来,http://em.21dtv.com/songs/60099721.mkv +何乌兰-敖包再相会,http://em.21dtv.com/songs/60103880.mkv +蒙克+乌兰托娅-敖包再相会,http://em.21dtv.com/songs/60066839.mkv +SPEXIAL-爱不再呼吸,http://em.21dtv.com/songs/60103818.mkv +孟杨-爱不再回来,http://em.21dtv.com/songs/60130250.mkv +冉青霞-爱不再回来,http://em.21dtv.com/songs/60101928.mkv +邓小龙-爱不再回来,http://em.21dtv.com/songs/60099519.mkv +杨廷廷-爱不再回来,http://em.21dtv.com/songs/60086398.mkv +谢佳见+谢慧娴-爱不要遗憾,http://em.21dtv.com/songs/60080011.mkv +大庆小芳-敖包又相会,http://em.21dtv.com/songs/60110959.mkv +林意涵-爱不用说话,http://em.21dtv.com/songs/60120669.mkv +罗时丰-阿爸原谅我,http://em.21dtv.com/songs/60074274.mkv +佚名-阿爸原谅我,http://em.21dtv.com/songs/60006720.mkv +洪荣宏-阿爸原谅我(无原唱),http://em.21dtv.com/songs/60006719.mkv +管维嘉-爱比雪更冷,http://em.21dtv.com/songs/60006956.mkv +黎明-爱比我重要,http://em.21dtv.com/songs/60006955.mkv +黎明-爱比我重要(演唱会),http://em.21dtv.com/songs/60006954.mkv +蔡一杰-爱比我重要(演唱会),http://em.21dtv.com/songs/60006953.mkv +姚禹+雁铭-爱别无选择,http://em.21dtv.com/songs/60074299.mkv +孙艳-爱伴我前行,http://em.21dtv.com/songs/60104932.mkv +佚名-爱不完的你,http://em.21dtv.com/songs/60007029.mkv +李志宇-爱伴我成长,http://em.21dtv.com/songs/60069169.mkv +王馨-爱把我包围,http://em.21dtv.com/songs/60121959.mkv +许桂荧+牛马丁-阿爸我爱嫁,http://em.21dtv.com/songs/60006718.mkv +佚名-爱不是占有,http://em.21dtv.com/songs/60007013.mkv +胡大亮+单艺-爱不是游戏,http://em.21dtv.com/songs/60122038.mkv +雨中百合-爱不是游戏,http://em.21dtv.com/songs/60111510.mkv +蔡枫华-爱不是游戏(演唱会),http://em.21dtv.com/songs/60007012.mkv +陈晓东-爱不是一切,http://em.21dtv.com/songs/60007011.mkv +李秋实-爱比誓言冷,http://em.21dtv.com/songs/60109437.mkv +景岗山-爱闭上眼睛,http://em.21dtv.com/songs/60081914.mkv +谭咏麟-爱不是难题(演唱会),http://em.21dtv.com/songs/60007009.mkv +赵洪涛-爱被伤害着,http://em.21dtv.com/songs/60114808.mkv +黄耀明-爱比死更冷,http://em.21dtv.com/songs/60006952.mkv +谭圳-爱不能做主,http://em.21dtv.com/songs/60007004.mkv +杨丽-爱不能寄存,http://em.21dtv.com/songs/60094164.mkv +周华健+何超仪-爱把你给我,http://em.21dtv.com/songs/60006946.mkv +杨培安-爱不能从头,http://em.21dtv.com/songs/60007002.mkv +林忆莲-爱不了多久,http://em.21dtv.com/songs/60084791.mkv +张杰-爱+不解释,http://em.21dtv.com/songs/60104131.mkv +守望+谭小利-爱不会停电,http://em.21dtv.com/songs/60070447.mkv +文丽-爱不会寂寞,http://em.21dtv.com/songs/60089896.mkv +陈柏全-爱不会寂寞,http://em.21dtv.com/songs/60006989.mkv +东方T&J-爱不会寂寞(无原唱),http://em.21dtv.com/songs/60006988.mkv +林俊杰-爱不会绝迹,http://em.21dtv.com/songs/60006990.mkv +李思琳-爱把恨打败,http://em.21dtv.com/songs/60097634.mkv +王键-爱被风吹过,http://em.21dtv.com/songs/60006948.mkv +邰正宵-爱不到要偷,http://em.21dtv.com/songs/60006978.mkv +张燕清+蔡宜芩-阿爸的心声,http://em.21dtv.com/songs/60069165.mkv +彭羚-爱不对时间,http://em.21dtv.com/songs/60006983.mkv +王莹-阿爸的马鞍,http://em.21dtv.com/songs/60112120.mkv +杨宗宪-阿爸的教示,http://em.21dtv.com/songs/60046997.mkv +乌兰托娅-阿爸的草原,http://em.21dtv.com/songs/60106579.mkv +钟兴叡-阿爸的菜园,http://em.21dtv.com/songs/60006712.mkv +许飞-爱不曾离开,http://em.21dtv.com/songs/60006970.mkv +雨宗林-爱变成爱过,http://em.21dtv.com/songs/60129771.mkv +江得胜-爱不被祝福,http://em.21dtv.com/songs/60006969.mkv +涛子-爱并不完美,http://em.21dtv.com/songs/60114665.mkv +涛子-爱并不完美,http://em.21dtv.com/songs/60063837.mkv +萱宁-as beaubiful as you are,http://em.21dtv.com/songs/60000340.mkv +妙音兄弟-阿爸 阿妈,http://em.21dtv.com/songs/60126766.mkv +群星-爱把爱传递,http://em.21dtv.com/songs/60006945.mkv +任贤齐-暗暗地伤心,http://em.21dtv.com/songs/60009360.mkv +元若蓝-爱ㄨ无限大,http://em.21dtv.com/songs/60006935.mkv +杨谨+徐晔+秦洁-爱2013,http://em.21dtv.com/songs/60102377.mkv +板野友美-10年后の君へ,http://em.21dtv.com/songs/60066630.mkv +RSP-アンマー~母呗~,http://em.21dtv.com/songs/60006646.mkv +佚名-はまべの歌,http://em.21dtv.com/songs/60006683.mkv +EXILE-ふたつの唇,http://em.21dtv.com/songs/60006691.mkv +椿屋四重奏-マテリアル,http://em.21dtv.com/songs/60006696.mkv +佚名-ソーランぶし,http://em.21dtv.com/songs/60006671.mkv +KARA-ジャンピン,http://em.21dtv.com/songs/60006666.mkv +大冢爱-さくらんぼ,http://em.21dtv.com/songs/60006663.mkv +一青窈-かざぐるま,http://em.21dtv.com/songs/60006654.mkv +MILKYWAY-アナタボシ,http://em.21dtv.com/songs/60006644.mkv +佚名-あかとんば,http://em.21dtv.com/songs/60006642.mkv +福井 舞-アイのうた,http://em.21dtv.com/songs/60006640.mkv +平井坚-アイシテル,http://em.21dtv.com/songs/60006637.mkv +邓丽君-つぐない,http://em.21dtv.com/songs/60135790.mkv +Bump Of Chicken-アンサー,http://em.21dtv.com/songs/60134652.mkv +铃木木乃美-メビウス,http://em.21dtv.com/songs/60123269.mkv +西野加奈-トリセツ,http://em.21dtv.com/songs/60124464.mkv +YEN TOWN BAND-アイノネ,http://em.21dtv.com/songs/60117515.mkv +ClariS-アネモネ,http://em.21dtv.com/songs/60114329.mkv +中川翔子-ドリドリ,http://em.21dtv.com/songs/60110824.mkv +小柳ゆき-ひまわり,http://em.21dtv.com/songs/60108455.mkv +弦子-2501,http://em.21dtv.com/songs/60095198.mkv +PERFUME-ポリリズム,http://em.21dtv.com/songs/60074261.mkv +スンヨン(SEUNG YEON)-ギルティ,http://em.21dtv.com/songs/60074230.mkv +凤凰传奇-自由自在,http://em.21dtv.com/songs/60095276.mkv +SKE48-强き者よ,http://em.21dtv.com/songs/60068583.mkv +蒙面哥-囧囧神功,http://em.21dtv.com/songs/60102703.mkv +刘心+大鹏-屌丝情歌,http://em.21dtv.com/songs/60103110.mkv +BERRYZ工房-爱の弾丸,http://em.21dtv.com/songs/60060968.mkv +関ジャニ∞-爱でした,http://em.21dtv.com/songs/60071707.mkv +BACK NUMBER-わたがし,http://em.21dtv.com/songs/60070439.mkv +CLARIS-ルミナス,http://em.21dtv.com/songs/60070437.mkv +JULIET-モトカレ,http://em.21dtv.com/songs/60060963.mkv +仓木麻衣-もう一度,http://em.21dtv.com/songs/60044433.mkv +木村カエラ-マミレル,http://em.21dtv.com/songs/60071702.mkv +ゆず-また明日,http://em.21dtv.com/songs/60070436.mkv +JUJU-また明日,http://em.21dtv.com/songs/60062071.mkv +乃木坂46-バレッタ,http://em.21dtv.com/songs/60093953.mkv +堀江由衣-夏の约束,http://em.21dtv.com/songs/60071304.mkv +BUONO-夏ダカラ,http://em.21dtv.com/songs/60061743.mkv +沢井美空-なきむし,http://em.21dtv.com/songs/60063825.mkv +AZU-トモダチ,http://em.21dtv.com/songs/60060960.mkv +JUJU-ただいま,http://em.21dtv.com/songs/60068023.mkv +MILKY BUNNY-ずるいよ,http://em.21dtv.com/songs/60065750.mkv +PERFUME-スパイス,http://em.21dtv.com/songs/60063822.mkv +家入レオ-サブリナ,http://em.21dtv.com/songs/60065748.mkv +河辺千恵子-桜キッス,http://em.21dtv.com/songs/60068932.mkv +ALL PROJECT-凶梦伝染,http://em.21dtv.com/songs/60070095.mkv +前田敦子-君は仆だ,http://em.21dtv.com/songs/60068399.mkv +SKE48-片想いfinally,http://em.21dtv.com/songs/60066215.mkv +SDN48-アバズレ,http://em.21dtv.com/songs/60062148.mkv +EXILE-あなたへ,http://em.21dtv.com/songs/60065739.mkv +陆正信-醉在壮乡,http://em.21dtv.com/songs/60100559.mkv +林宝-沾沾自喜,http://em.21dtv.com/songs/60057442.mkv +栾树-自在滋味,http://em.21dtv.com/songs/60124158.mkv +赵泳鑫-自作自受,http://em.21dtv.com/songs/60116265.mkv +珠宁-执子之手,http://em.21dtv.com/songs/60088348.mkv +杨丞琳-自作自受,http://em.21dtv.com/songs/60071546.mkv +品冠-执子之手,http://em.21dtv.com/songs/60065483.mkv +刘缘-自作自受,http://em.21dtv.com/songs/60059820.mkv +刘德华-自作自受,http://em.21dtv.com/songs/60059819.mkv +李克勤-自作自受,http://em.21dtv.com/songs/60059818.mkv +周杰伦-止战之殇,http://em.21dtv.com/songs/60058758.mkv +莫文蔚-执子之手,http://em.21dtv.com/songs/60058720.mkv +爱戴-站在这里,http://em.21dtv.com/songs/60080078.mkv +陈柏宇-赞赞自己,http://em.21dtv.com/songs/60061877.mkv +童唱-珍重再见,http://em.21dtv.com/songs/60058016.mkv +李翊君-珍重再见,http://em.21dtv.com/songs/60058015.mkv +余零-智者之歌,http://em.21dtv.com/songs/60125136.mkv +殷正洋-走在雨中,http://em.21dtv.com/songs/60090027.mkv +孟庭苇-走在雨中,http://em.21dtv.com/songs/60059983.mkv +齐豫-走在雨中(演唱会),http://em.21dtv.com/songs/60059982.mkv +左左右右-左左右右,http://em.21dtv.com/songs/60102170.mkv +黄征-自在远行,http://em.21dtv.com/songs/60069032.mkv +琼雪卓玛-站在一起,http://em.21dtv.com/songs/60057522.mkv +王传君-至尊约会,http://em.21dtv.com/songs/60079635.mkv +格桑-醉在雨河,http://em.21dtv.com/songs/60072845.mkv +邝美云-再坐一会,http://em.21dtv.com/songs/60057025.mkv +胡力-再醉一回,http://em.21dtv.com/songs/60057024.mkv +霍尊+林源-之子于归,http://em.21dtv.com/songs/60113083.mkv +苏阳-长在银川,http://em.21dtv.com/songs/60066906.mkv +徐聪-郑州西站,http://em.21dtv.com/songs/60121707.mkv +尚雯婕-最终信仰(演唱会),http://em.21dtv.com/songs/60079822.mkv +尚雯婕-最终信仰,http://em.21dtv.com/songs/60072838.mkv +陆毅-壮志雄心,http://em.21dtv.com/songs/60059486.mkv +小茹-这种心情,http://em.21dtv.com/songs/60057955.mkv +裴秀智-装作幸福,http://em.21dtv.com/songs/60131805.mkv +大芭-走找幸福,http://em.21dtv.com/songs/60059984.mkv +蔡卓妍-早沾勿药,http://em.21dtv.com/songs/60057317.mkv +砰砰乐团-战争玩具,http://em.21dtv.com/songs/60057499.mkv +张赫宣-忠者无敌,http://em.21dtv.com/songs/60116803.mkv +佚名-珍重我爱(无原唱),http://em.21dtv.com/songs/60058011.mkv +松林+汇晰-追逐太阳,http://em.21dtv.com/songs/60129293.mkv +BBF-重装上阵,http://em.21dtv.com/songs/60132053.mkv +BBF-重装上阵,http://em.21dtv.com/songs/60128667.mkv +任子墨-正在输入,http://em.21dtv.com/songs/60132184.mkv +周占超-赵州神曲,http://em.21dtv.com/songs/60119357.mkv +郑嘉颖-郑重声明,http://em.21dtv.com/songs/60058369.mkv +姚贝娜-战争世界,http://em.21dtv.com/songs/60094042.mkv +陈姿彤-战争世界,http://em.21dtv.com/songs/60079521.mkv +单色凌-战中神话,http://em.21dtv.com/songs/60105671.mkv +汤子星-知足是福,http://em.21dtv.com/songs/60062986.mkv +清醒乐队-走着入睡,http://em.21dtv.com/songs/60059986.mkv +黄思婷-蒸蒸日上,http://em.21dtv.com/songs/60058332.mkv +巴桑-藏族人家,http://em.21dtv.com/songs/60074844.mkv +王鹤铮-指绽如花,http://em.21dtv.com/songs/60067797.mkv +王子鸣-住在秋天,http://em.21dtv.com/songs/60092979.mkv +陈慧琳-真真切切,http://em.21dtv.com/songs/60093467.mkv +任和-专属情歌,http://em.21dtv.com/songs/60079697.mkv +二龙-重走青春,http://em.21dtv.com/songs/60110830.mkv +范晓萱-最最亲爱,http://em.21dtv.com/songs/60060464.mkv +TENSION-只做朋友,http://em.21dtv.com/songs/60058630.mkv +李虎-蜘蛛爬墙,http://em.21dtv.com/songs/60084551.mkv +登越顿珠-藏族男人,http://em.21dtv.com/songs/60074843.mkv +成泉-追逐梦想,http://em.21dtv.com/songs/60131451.mkv +姚天成-追逐梦想,http://em.21dtv.com/songs/60113386.mkv +关淑怡-制造迷梦,http://em.21dtv.com/songs/60058831.mkv +蔡淳佳-自助旅行,http://em.21dtv.com/songs/60079736.mkv +张展华-在这路上,http://em.21dtv.com/songs/60122718.mkv +彭伟家-走在路上,http://em.21dtv.com/songs/60072829.mkv +星弟-制造浪漫,http://em.21dtv.com/songs/60120580.mkv +王媛渊-制造浪漫,http://em.21dtv.com/songs/60096396.mkv +星弟-制造浪漫,http://em.21dtv.com/songs/60081817.mkv +黄凯芹-自制浪漫,http://em.21dtv.com/songs/60059808.mkv +陈慧琳+郑中基-制造浪漫,http://em.21dtv.com/songs/60058830.mkv +林忆莲-自制空间,http://em.21dtv.com/songs/60059807.mkv +Frank秋枫-这种节奏,http://em.21dtv.com/songs/60106535.mkv +张学友-壮志骄阳,http://em.21dtv.com/songs/60059485.mkv +张学友-壮志骄阳(演唱会),http://em.21dtv.com/songs/60059484.mkv +蔡琴-珍重今宵,http://em.21dtv.com/songs/60058010.mkv +张柏芝-装作坚强,http://em.21dtv.com/songs/60059475.mkv +卢巧音-紫醉金迷(演唱会),http://em.21dtv.com/songs/60059660.mkv +陈慧琳-纸醉金迷(演唱会),http://em.21dtv.com/songs/60058779.mkv +刘德华+泰迪罗宾-真真假假,http://em.21dtv.com/songs/60095266.mkv +张卫健-真真假假,http://em.21dtv.com/songs/60058282.mkv +石春晓-再战江湖,http://em.21dtv.com/songs/60086207.mkv +张克帆-至尊红颜,http://em.21dtv.com/songs/60091050.mkv +古巨基-最终幻想,http://em.21dtv.com/songs/60060459.mkv +黄征-壮志豪情(演唱会),http://em.21dtv.com/songs/60065506.mkv +何炅-栀子花开,http://em.21dtv.com/songs/60112504.mkv +何炅+王诗龄-栀子花开,http://em.21dtv.com/songs/60111691.mkv +何炅-栀子花开,http://em.21dtv.com/songs/60058697.mkv +吉娜-藏族姑娘,http://em.21dtv.com/songs/60064036.mkv +钟彩媚-追逐光芒,http://em.21dtv.com/songs/60129692.mkv +彭羚-住在隔壁,http://em.21dtv.com/songs/60059269.mkv +佚名-壮志飞扬,http://em.21dtv.com/songs/60059483.mkv +伊扬-壮志飞扬,http://em.21dtv.com/songs/60059482.mkv +林依轮+解晓东-壮志飞扬,http://em.21dtv.com/songs/60059481.mkv +刘俐婷-阵阵风雨,http://em.21dtv.com/songs/60058293.mkv +梦然-最真的心,http://em.21dtv.com/songs/60135461.mkv +马兆骏-真正的我,http://em.21dtv.com/songs/60058284.mkv +雷光夏-造字的人,http://em.21dtv.com/songs/60057326.mkv +蒋中一-自作多情,http://em.21dtv.com/songs/60129564.mkv +本兮-自作多情,http://em.21dtv.com/songs/60079737.mkv +东方传奇-自作多情,http://em.21dtv.com/songs/60065514.mkv +周慧敏-自作多情,http://em.21dtv.com/songs/60059817.mkv +佚名-自作多情,http://em.21dtv.com/songs/60059816.mkv +薛忠铭-自作多情,http://em.21dtv.com/songs/60059815.mkv +谢金燕-自作多情,http://em.21dtv.com/songs/60059814.mkv +江蕙-自作多情,http://em.21dtv.com/songs/60059813.mkv +古巨基-自作多情(演唱会),http://em.21dtv.com/songs/60059812.mkv +孙露-最真的梦,http://em.21dtv.com/songs/60133565.mkv +庄前-最真的梦,http://em.21dtv.com/songs/60113444.mkv +周华健-最真的梦,http://em.21dtv.com/songs/60060454.mkv +林萍-追逐的梦(演唱会),http://em.21dtv.com/songs/60059557.mkv +木棉-站在大街,http://em.21dtv.com/songs/60110258.mkv +屈慧-整装待发,http://em.21dtv.com/songs/60079587.mkv +杨克强-最真的爱,http://em.21dtv.com/songs/60060453.mkv +铁石-最真的爱,http://em.21dtv.com/songs/60060452.mkv +卢学睿-早知道爱,http://em.21dtv.com/songs/60057320.mkv +曹方-住在春天(演唱会),http://em.21dtv.com/songs/60059268.mkv +熊思嘉-这座城市,http://em.21dtv.com/songs/60094987.mkv +孙艺琪-珍珠传奇,http://em.21dtv.com/songs/60132367.mkv +佚名-珍珠传奇,http://em.21dtv.com/songs/60058019.mkv +梁汉文-自作聪明(无原唱),http://em.21dtv.com/songs/60059811.mkv +张也+郁钧剑-知足常乐,http://em.21dtv.com/songs/60091035.mkv +韩锋-知足常乐,http://em.21dtv.com/songs/60071520.mkv +群星-真正本色,http://em.21dtv.com/songs/60058283.mkv +郭富城-忠贞不二,http://em.21dtv.com/songs/60059009.mkv +王程程+赵嘉伟-自由自在,http://em.21dtv.com/songs/60135566.mkv +瑞雪飘飘-自由自在,http://em.21dtv.com/songs/60117936.mkv +征服-自由自在,http://em.21dtv.com/songs/60117753.mkv +毕夏-自由之战,http://em.21dtv.com/songs/60113765.mkv +罗中旭-自已主宰,http://em.21dtv.com/songs/60088426.mkv +闪亮三姐妹-自由自在,http://em.21dtv.com/songs/60087147.mkv +琪琪格-自由自在(舞曲版),http://em.21dtv.com/songs/60065513.mkv +郭媛媛-自由自在,http://em.21dtv.com/songs/60061926.mkv +琪琪格-自由自在(演唱会),http://em.21dtv.com/songs/60061925.mkv +邓丽欣-自游自在,http://em.21dtv.com/songs/60059793.mkv +熊汝霖-自由自在,http://em.21dtv.com/songs/60059792.mkv +谢金燕-自由自在,http://em.21dtv.com/songs/60059791.mkv +翁立友-自由自在,http://em.21dtv.com/songs/60059790.mkv +田震-自由自在,http://em.21dtv.com/songs/60059789.mkv +梁咏琪-自由自在,http://em.21dtv.com/songs/60059788.mkv +大信合唱团-自由自在,http://em.21dtv.com/songs/60059787.mkv +许巍-自由自在(演唱会),http://em.21dtv.com/songs/60059786.mkv +郁可唯-自言自语,http://em.21dtv.com/songs/60107267.mkv +的哥老盖-自由主义,http://em.21dtv.com/songs/60084605.mkv +谢金燕-自由自由,http://em.21dtv.com/songs/60059785.mkv +康康-自言自语,http://em.21dtv.com/songs/60059745.mkv +范晓萱-自言自语,http://em.21dtv.com/songs/60059744.mkv +容祖儿-自言自语(演唱会),http://em.21dtv.com/songs/60059743.mkv +陈秋霞+黄韵玲-知音知心,http://em.21dtv.com/songs/60058689.mkv +林忆莲-只要珍惜,http://em.21dtv.com/songs/60058552.mkv +SNH48-正义之手,http://em.21dtv.com/songs/60127677.mkv +酒二郎-自娱自乐,http://em.21dtv.com/songs/60087148.mkv +萧亚轩-转眼之间,http://em.21dtv.com/songs/60059458.mkv +刘德华-忠于自己,http://em.21dtv.com/songs/60059008.mkv +郑伊健+陈小春-知已自己,http://em.21dtv.com/songs/60058681.mkv +罗逻圣-战友之歌,http://em.21dtv.com/songs/60129486.mkv +佚名-战友之歌,http://em.21dtv.com/songs/60057492.mkv +陈苑淇-终于知道,http://em.21dtv.com/songs/60093498.mkv +黄渤-正义之道,http://em.21dtv.com/songs/60072805.mkv +佚名-昨夜之灯,http://em.21dtv.com/songs/60060628.mkv +刘德华-终于找到,http://em.21dtv.com/songs/60059053.mkv +何李-自怨自艾,http://em.21dtv.com/songs/60093614.mkv +钟舒漫-专一有罪,http://em.21dtv.com/songs/60059428.mkv +黎明-终于拥有,http://em.21dtv.com/songs/60059051.mkv +朴正炫-只要用心(故事情节),http://em.21dtv.com/songs/60098433.mkv +关心妍-总有一天,http://em.21dtv.com/songs/60134914.mkv +詹曼铃-总有一天,http://em.21dtv.com/songs/60114770.mkv +陈治-总有一天,http://em.21dtv.com/songs/60069034.mkv +韦唯-总有一天,http://em.21dtv.com/songs/60059846.mkv +邓丽君-总有一天,http://em.21dtv.com/songs/60059845.mkv +佚名-终有一天,http://em.21dtv.com/songs/60059033.mkv +佚名-终有一天(中三),http://em.21dtv.com/songs/60059032.mkv +王宗尧-只要一天,http://em.21dtv.com/songs/60058546.mkv +何洁+苏醒-只愿与你,http://em.21dtv.com/songs/60119257.mkv +那英+孙楠-只要有你,http://em.21dtv.com/songs/60118091.mkv +吴灿涛+蔡英-只要有你,http://em.21dtv.com/songs/60106684.mkv +群星-只要有你,http://em.21dtv.com/songs/60088450.mkv +赵敬一-只因有你,http://em.21dtv.com/songs/60087128.mkv +孙耀威-只愿有你(无原唱),http://em.21dtv.com/songs/60058628.mkv +孙楠+那英-只要有你,http://em.21dtv.com/songs/60058547.mkv +容祖儿-早有预谋(演唱会),http://em.21dtv.com/songs/60057316.mkv +木子烁-这样也好,http://em.21dtv.com/songs/60087116.mkv +万芳-这样也好,http://em.21dtv.com/songs/60057897.mkv +任贤齐-这样也好,http://em.21dtv.com/songs/60057896.mkv +任贤齐-这样也好(演唱会),http://em.21dtv.com/songs/60057895.mkv +刘和刚-战友一场,http://em.21dtv.com/songs/60099796.mkv +叶倩文-只有一次,http://em.21dtv.com/songs/60058617.mkv +叶倩文-只因有爱,http://em.21dtv.com/songs/60058573.mkv +叶倩文-只因有爱(演唱会),http://em.21dtv.com/songs/60058572.mkv +冷漠-终于相信,http://em.21dtv.com/songs/60086263.mkv +刘莉-中原乡情,http://em.21dtv.com/songs/60132254.mkv +郭富城-这夜心情(演唱会),http://em.21dtv.com/songs/60057901.mkv +孙思怡-只有想念,http://em.21dtv.com/songs/60101067.mkv +胡琳-自由像你,http://em.21dtv.com/songs/60059783.mkv +周传雄-终于学会,http://em.21dtv.com/songs/60059048.mkv +李炳辰-只要喜欢,http://em.21dtv.com/songs/60058545.mkv +斯琴格日乐-早以习惯,http://em.21dtv.com/songs/60091254.mkv +海镔-战友兄弟,http://em.21dtv.com/songs/60131617.mkv +杨丽-昨夜星辰,http://em.21dtv.com/songs/60086311.mkv +潘美辰-昨夜星辰,http://em.21dtv.com/songs/60084661.mkv +罗时丰-昨夜星辰,http://em.21dtv.com/songs/60060627.mkv +林淑蓉-昨夜星辰,http://em.21dtv.com/songs/60060626.mkv +林淑蓉-昨夜星辰(演唱会),http://em.21dtv.com/songs/60060625.mkv +范晓萱-张牙舞爪,http://em.21dtv.com/songs/60057547.mkv +哲子-自以为是,http://em.21dtv.com/songs/60127864.mkv +宰散团-左右为难,http://em.21dtv.com/songs/60124782.mkv +那英-只因为你,http://em.21dtv.com/songs/60102782.mkv +庾澄庆-只要为你,http://em.21dtv.com/songs/60087781.mkv +陈羽凡+黄永卓-左右为难,http://em.21dtv.com/songs/60080919.mkv +张学友+郑中基-左右为难,http://em.21dtv.com/songs/60060667.mkv +潘秀琼-左右为难,http://em.21dtv.com/songs/60060666.mkv +蔡淳佳+陈冠宇-左右为难,http://em.21dtv.com/songs/60060665.mkv +张学友+郑中基-左右为难(演唱会),http://em.21dtv.com/songs/60060664.mkv +庾澄庆-只有为你,http://em.21dtv.com/songs/60058611.mkv +庾澄庆-只有为你(演唱会),http://em.21dtv.com/songs/60058610.mkv +张栋梁-只因为你,http://em.21dtv.com/songs/60058562.mkv +陈冠希-只因为你,http://em.21dtv.com/songs/60058561.mkv +周柏豪-终于我们,http://em.21dtv.com/songs/60132300.mkv +何欣穗-自已喂狗,http://em.21dtv.com/songs/60090599.mkv +何建清-真有味道,http://em.21dtv.com/songs/60131163.mkv +沙宝亮-只因为爱,http://em.21dtv.com/songs/60091600.mkv +郑秀文-折翼天使,http://em.21dtv.com/songs/60057742.mkv +蒋曦儿-再遇童年,http://em.21dtv.com/songs/60079474.mkv +徐安则-只有痛过,http://em.21dtv.com/songs/60069010.mkv +摇滚女王-自由天地,http://em.21dtv.com/songs/60135310.mkv +黎沸挥-找一双鞋,http://em.21dtv.com/songs/60089073.mkv +陈珊妮-找一双鞋,http://em.21dtv.com/songs/60057717.mkv +燕妮-注意身体,http://em.21dtv.com/songs/60088262.mkv +侯旭-只要善良,http://em.21dtv.com/songs/60132207.mkv +侯旭-只要善良,http://em.21dtv.com/songs/60122492.mkv +蔡依林-自由生活,http://em.21dtv.com/songs/60092023.mkv +周晓鸥-知音三唱,http://em.21dtv.com/songs/60058688.mkv +罗大佑+袁凤英-只要是爱,http://em.21dtv.com/songs/60058527.mkv +艾青-总有人罩,http://em.21dtv.com/songs/60059844.mkv +朱妍-昨夜秋雨,http://em.21dtv.com/songs/60060621.mkv +1976-壮游前夕,http://em.21dtv.com/songs/60059480.mkv +佚名-昨夜情深(无原唱),http://em.21dtv.com/songs/60060620.mkv +佚名-战友情深,http://em.21dtv.com/songs/60057491.mkv +谭晶-竹叶青青,http://em.21dtv.com/songs/60079675.mkv +东来东往-转眼秋近,http://em.21dtv.com/songs/60110821.mkv +苏玮-子夜情歌,http://em.21dtv.com/songs/60108835.mkv +彭高平-战友情歌,http://em.21dtv.com/songs/60071508.mkv +汪定中-在一起吧,http://em.21dtv.com/songs/60124191.mkv +海组合-战衣飘飘,http://em.21dtv.com/songs/60091620.mkv +佚名-子夜徘徊,http://em.21dtv.com/songs/60059615.mkv +许志安+吴国敬-这样那样,http://em.21dtv.com/songs/60057893.mkv +许志安+吴国敬-这样那样(演唱会),http://em.21dtv.com/songs/60057892.mkv +小麦-自由女神,http://em.21dtv.com/songs/60061924.mkv +汪明荃+陈慧琳-自由女神,http://em.21dtv.com/songs/60059781.mkv +佟娜-战友你好,http://em.21dtv.com/songs/60121384.mkv +王铮亮-只愿你好,http://em.21dtv.com/songs/60099419.mkv +关彤-战友你好,http://em.21dtv.com/songs/60080967.mkv +孙楠-只要你好,http://em.21dtv.com/songs/60058506.mkv +彭丽媛-战友你好,http://em.21dtv.com/songs/60057490.mkv +叶玉卿-只要你乖,http://em.21dtv.com/songs/60058500.mkv +张凤凤-昨夜梦中,http://em.21dtv.com/songs/60060617.mkv +林心如-这一秒钟,http://em.21dtv.com/songs/60057930.mkv +罗宾-长夜漫漫,http://em.21dtv.com/songs/60091833.mkv +林子祥-只有梦长,http://em.21dtv.com/songs/60058589.mkv +李国祥-终于明白,http://em.21dtv.com/songs/60102332.mkv +动力火车-终于明白,http://em.21dtv.com/songs/60059043.mkv +吴宗宪-自由落体,http://em.21dtv.com/songs/60090811.mkv +沙宝亮-自由落体,http://em.21dtv.com/songs/60059779.mkv +梁咏琪-自由落体,http://em.21dtv.com/songs/60059778.mkv +黄湘怡-自由落体,http://em.21dtv.com/songs/60059777.mkv +梁心颐-自由灵魂,http://em.21dtv.com/songs/60071544.mkv +叶丽仪-昨夜泪痕,http://em.21dtv.com/songs/60060606.mkv +佚名-这一颗心,http://em.21dtv.com/songs/60057918.mkv +孙燕姿-这一刻THE_MOMENT,http://em.21dtv.com/songs/60087665.mkv +郑秀文-终于开始,http://em.21dtv.com/songs/60059042.mkv +龙梅子-醉忆今宵,http://em.21dtv.com/songs/60133154.mkv +PHANTOM+孙佳仁-只有今天,http://em.21dtv.com/songs/60100746.mkv +侯宗辰-只要今生,http://em.21dtv.com/songs/60087337.mkv +杭娇-紫玉金砂,http://em.21dtv.com/songs/60081316.mkv +邓颖芝-这样就好,http://em.21dtv.com/songs/60057891.mkv +伊风-醉韵江川,http://em.21dtv.com/songs/60060544.mkv +陈楚生-自由幻想,http://em.21dtv.com/songs/60095134.mkv +果味VC-正义红师,http://em.21dtv.com/songs/60058357.mkv +江蕙-怎样会堪,http://em.21dtv.com/songs/60057406.mkv +郭书瑶-自已回家,http://em.21dtv.com/songs/60059746.mkv +徐方-折翼蝴蝶,http://em.21dtv.com/songs/60087111.mkv +许佳慧-这又何必,http://em.21dtv.com/songs/60080790.mkv +太极-这一个夜,http://em.21dtv.com/songs/60131309.mkv +林子祥-这一个夜(演唱会),http://em.21dtv.com/songs/60057917.mkv +林子祥+陈奕迅-这一个夜(演唱会),http://em.21dtv.com/songs/60057916.mkv +林展逸-中原故乡,http://em.21dtv.com/songs/60058994.mkv +孟庭苇-找一个人,http://em.21dtv.com/songs/60057708.mkv +谢霆锋-追忆风中,http://em.21dtv.com/songs/60059551.mkv +白描-这一分钟,http://em.21dtv.com/songs/60057914.mkv +JW-自由飞翔,http://em.21dtv.com/songs/60122388.mkv +章子怡+尹熙水-自由飞翔,http://em.21dtv.com/songs/60081758.mkv +尹熙水+章子怡-自由飞翔,http://em.21dtv.com/songs/60081429.mkv +孔莹-自由飞翔,http://em.21dtv.com/songs/60059773.mkv +凤凰传奇-自由飞翔,http://em.21dtv.com/songs/60059772.mkv +阿译-终于分手,http://em.21dtv.com/songs/60126354.mkv +齐秦-终于放手,http://em.21dtv.com/songs/60059041.mkv +卓依婷-只有分离,http://em.21dtv.com/songs/60058582.mkv +李翊君-只有分离,http://em.21dtv.com/songs/60058581.mkv +江美琪-只有分离,http://em.21dtv.com/songs/60058580.mkv +黄莺莺-只有分离,http://em.21dtv.com/songs/60058579.mkv +黄露仪-只有分离,http://em.21dtv.com/songs/60058578.mkv +费翔-只有分离,http://em.21dtv.com/songs/60058577.mkv +张伟文-只有分离(演唱会),http://em.21dtv.com/songs/60058576.mkv +曾国铭-自由发挥,http://em.21dtv.com/songs/60092761.mkv +姚贝娜-昨夜的雨,http://em.21dtv.com/songs/60113389.mkv +轲然-自由的心,http://em.21dtv.com/songs/60079735.mkv +任真-自由的我,http://em.21dtv.com/songs/60087273.mkv +李翊君-这样的我,http://em.21dtv.com/songs/60057886.mkv +陈慧琳-专一的你,http://em.21dtv.com/songs/60059427.mkv +佚名-状元打更,http://em.21dtv.com/songs/60059490.mkv +酒二郎-自由的飞,http://em.21dtv.com/songs/60093628.mkv +爽子-自由的飞,http://em.21dtv.com/songs/60067823.mkv +杜德伟+李明依-自由的风,http://em.21dtv.com/songs/60059769.mkv +董贞-自由的风,http://em.21dtv.com/songs/60059768.mkv +韩磊-怎样的爱,http://em.21dtv.com/songs/60057403.mkv +W.K+苍狼-周瑜传说,http://em.21dtv.com/songs/60094378.mkv +郑秀文-这夜痴情,http://em.21dtv.com/songs/60093321.mkv +曹雪-怎样才好,http://em.21dtv.com/songs/60111137.mkv +李刚-自由奔腾,http://em.21dtv.com/songs/60132524.mkv +赵之涵-自由奔跑,http://em.21dtv.com/songs/60104450.mkv +金美滟-再也不见,http://em.21dtv.com/songs/60127516.mkv +张阳阳-转眼不见,http://em.21dtv.com/songs/60116808.mkv +烁嘉-再也不见,http://em.21dtv.com/songs/60079471.mkv +小5-再也不见,http://em.21dtv.com/songs/60070214.mkv +邬祯琳-直言不讳(演唱会),http://em.21dtv.com/songs/60084554.mkv +陈慧琳-自由奔放,http://em.21dtv.com/songs/60059766.mkv +林俊杰-自由不变,http://em.21dtv.com/songs/60059767.mkv +风云传奇-自由翱翔,http://em.21dtv.com/songs/60110681.mkv +张伦硕-这样爱你,http://em.21dtv.com/songs/60122707.mkv +陈百强-只因爱你,http://em.21dtv.com/songs/60058555.mkv +张婧-这样爱了,http://em.21dtv.com/songs/60079552.mkv +冷漠-这样爱了,http://em.21dtv.com/songs/60070238.mkv +何雁诗+郑俊弘-真心真意,http://em.21dtv.com/songs/60133366.mkv +宏亮-真心真意,http://em.21dtv.com/songs/60111018.mkv +二宝+张晓庆-真心真意,http://em.21dtv.com/songs/60087119.mkv +翁立友+黄思婷-真心真意,http://em.21dtv.com/songs/60067792.mkv +许志安-真心真意,http://em.21dtv.com/songs/60058272.mkv +许志安+吴国敬-真心真意,http://em.21dtv.com/songs/60058270.mkv +李玟-真心真意,http://em.21dtv.com/songs/60058269.mkv +许志安-真心真意(演唱会),http://em.21dtv.com/songs/60058268.mkv +芭比-真心至上,http://em.21dtv.com/songs/60058278.mkv +许志安-重新做人(演唱会),http://em.21dtv.com/songs/60059170.mkv +梁汉文-重新做人(演唱会),http://em.21dtv.com/songs/60059169.mkv +黄格选-真心真情,http://em.21dtv.com/songs/60089551.mkv +林清国-重新做起(无原唱),http://em.21dtv.com/songs/60059168.mkv +佚名-最新作品,http://em.21dtv.com/songs/60060438.mkv +佚名-衷心赞美,http://em.21dtv.com/songs/60059070.mkv +李安琪-中邪中毒(无原唱),http://em.21dtv.com/songs/60058988.mkv +吴淑敏+蓝弘钦-真心作伴,http://em.21dtv.com/songs/60058279.mkv +韩磊-真心永在,http://em.21dtv.com/songs/60109013.mkv +张咪-真心愿意,http://em.21dtv.com/songs/60097374.mkv +郑希怡-专心一意,http://em.21dtv.com/songs/60059424.mkv +张弥-真心愿意(无原唱),http://em.21dtv.com/songs/60058267.mkv +杨坤+佟大为+郑元畅+张杰+朱亚文+陈学冬-真心英雄,http://em.21dtv.com/songs/60112779.mkv +张江+张新-真心英雄,http://em.21dtv.com/songs/60091119.mkv +群星合唱-真心英雄,http://em.21dtv.com/songs/60088481.mkv +群星-真心英雄,http://em.21dtv.com/songs/60088466.mkv +成龙+李宗盛+周华健+黄耀明-真心英雄,http://em.21dtv.com/songs/60058266.mkv +侧田-真心英雄,http://em.21dtv.com/songs/60058265.mkv +俞灏明+郑爽-真心英雄(演唱会),http://em.21dtv.com/songs/60058264.mkv +杨洋+金彪-珍惜友情,http://em.21dtv.com/songs/60057999.mkv +余辉-珍惜有你,http://em.21dtv.com/songs/60109972.mkv +吴琼-只想有你,http://em.21dtv.com/songs/60097201.mkv +曹雷-珍惜缘分,http://em.21dtv.com/songs/60117428.mkv +望海高歌-珍惜缘分,http://em.21dtv.com/songs/60084539.mkv +黄伊凡-再笑一次,http://em.21dtv.com/songs/60136019.mkv +陆毅-左鞋右穿,http://em.21dtv.com/songs/60060653.mkv +张柏芝-最新形象,http://em.21dtv.com/songs/60060437.mkv +容祖儿-最新消息,http://em.21dtv.com/songs/60060436.mkv +MUST-重新想你,http://em.21dtv.com/songs/60109105.mkv +吕金蔓+吴少忠-珍惜幸福,http://em.21dtv.com/songs/60057998.mkv +徐健淇-真心兄弟,http://em.21dtv.com/songs/60063204.mkv +张璐-走向西部,http://em.21dtv.com/songs/60059965.mkv +岩罕建-真心相爱,http://em.21dtv.com/songs/60124827.mkv +李自强+轩儿-真心相爱,http://em.21dtv.com/songs/60079581.mkv +王星-子虚乌有,http://em.21dtv.com/songs/60128228.mkv +孙晓雨-走向蔚蓝,http://em.21dtv.com/songs/60109261.mkv +刘小娜-珍惜蔚蓝,http://em.21dtv.com/songs/60057995.mkv +乔幼-真心误会,http://em.21dtv.com/songs/60130052.mkv +丛伟-真心无悔,http://em.21dtv.com/songs/60127698.mkv +秀兰玛雅+黄文星-醉心探戈,http://em.21dtv.com/songs/60106177.mkv +罗中旭-真心实意,http://em.21dtv.com/songs/60081949.mkv +ZEN-珍惜所有,http://em.21dtv.com/songs/60057994.mkv +周武-长相厮守,http://em.21dtv.com/songs/60093907.mkv +群星-重新上路,http://em.21dtv.com/songs/60059167.mkv +兰雨-崭新世界,http://em.21dtv.com/songs/60123648.mkv +水木年华-中学时代,http://em.21dtv.com/songs/60058991.mkv +李健-中学时代(演唱会),http://em.21dtv.com/songs/60058990.mkv +夏卡毛乐团-这些日子,http://em.21dtv.com/songs/60057873.mkv +佚名-再续前缘,http://em.21dtv.com/songs/60056998.mkv +许强-再续前缘,http://em.21dtv.com/songs/60056997.mkv +张娜拉-只想起你,http://em.21dtv.com/songs/60084561.mkv +卢巧音-自学青年,http://em.21dtv.com/songs/60059740.mkv +佚名-真心情侣,http://em.21dtv.com/songs/60058260.mkv +冯巩+牛群-坐享其成,http://em.21dtv.com/songs/60089657.mkv +山野-重新去爱,http://em.21dtv.com/songs/60059166.mkv +刘克泉-知心朋友,http://em.21dtv.com/songs/60116579.mkv +李行亮+雨宗林-知心朋友,http://em.21dtv.com/songs/60100169.mkv +梁一贞-知心朋友,http://em.21dtv.com/songs/60071519.mkv +许志安-真心朋友,http://em.21dtv.com/songs/60058259.mkv +许志安-真心朋友(演唱会),http://em.21dtv.com/songs/60058258.mkv +王菲-这些那些,http://em.21dtv.com/songs/60057871.mkv +林忆莲-这些那些,http://em.21dtv.com/songs/60057870.mkv +郭富城-真心女人,http://em.21dtv.com/songs/60093365.mkv +张国荣-这些年来,http://em.21dtv.com/songs/60057872.mkv +刘彩玉-只想你好,http://em.21dtv.com/songs/60058474.mkv +陈慧琳+黎明-追寻梦想,http://em.21dtv.com/songs/60059545.mkv +白颜-真心面对,http://em.21dtv.com/songs/60098670.mkv +徐仁英-在旋律中,http://em.21dtv.com/songs/60057190.mkv +杜德伟-只想留下(演唱会),http://em.21dtv.com/songs/60058472.mkv +王梓蘅-知心恋人,http://em.21dtv.com/songs/60079601.mkv +高安-真心恋曲,http://em.21dtv.com/songs/60120149.mkv +王心凌-自行浪漫,http://em.21dtv.com/songs/60061922.mkv +冷漠-自行离开,http://em.21dtv.com/songs/60067822.mkv +秦杨-重新来过,http://em.21dtv.com/songs/60059165.mkv +随性乐团-重新开始,http://em.21dtv.com/songs/60126419.mkv +随性乐团-重新开始,http://em.21dtv.com/songs/60124669.mkv +黄磊-重新开始,http://em.21dtv.com/songs/60059163.mkv +钟可欣-重新快乐,http://em.21dtv.com/songs/60059164.mkv +满文军-真心快乐,http://em.21dtv.com/songs/60058256.mkv +赖敏-真戏假做,http://em.21dtv.com/songs/60123193.mkv +杨宗纬-真相禁区,http://em.21dtv.com/songs/60116941.mkv +谭咏麟-自选角度,http://em.21dtv.com/songs/60059739.mkv +谭咏麟-自选角度(演唱会),http://em.21dtv.com/songs/60059738.mkv +高明骏-真心还在,http://em.21dtv.com/songs/60058242.mkv +张信哲-重新回忆,http://em.21dtv.com/songs/60091049.mkv +黄淇-真心谎言,http://em.21dtv.com/songs/60058254.mkv +菲麦尔-只喜欢你,http://em.21dtv.com/songs/60100432.mkv +浪哥-真想回家,http://em.21dtv.com/songs/60112834.mkv +陈星-真想回家,http://em.21dtv.com/songs/60089529.mkv +李魏西-种下干扰,http://em.21dtv.com/songs/60100175.mkv +徐沛东-走向共和,http://em.21dtv.com/songs/60072828.mkv +东方红艳-扎西哥哥,http://em.21dtv.com/songs/60107461.mkv +司徒兰芳-扎西哥哥,http://em.21dtv.com/songs/60079514.mkv +戴玉强+殷秀梅-走向复兴,http://em.21dtv.com/songs/60065518.mkv +佚名-自寻烦恼,http://em.21dtv.com/songs/60059742.mkv +汤宝如-自寻烦恼,http://em.21dtv.com/songs/60059741.mkv +李星蔚-重新的走,http://em.21dtv.com/songs/60103361.mkv +汤兰花-真心的人,http://em.21dtv.com/songs/60058238.mkv +雪莲三姐妹-扎西德勒,http://em.21dtv.com/songs/60079513.mkv +中国娃娃-忠孝东路,http://em.21dtv.com/songs/60059003.mkv +曹方-最小的海,http://em.21dtv.com/songs/60060432.mkv +杨千嬅-只想独处,http://em.21dtv.com/songs/60058467.mkv +卓文萱+李岗霖-真相大白,http://em.21dtv.com/songs/60058215.mkv +向蕙玲+陈随意-真心的爱,http://em.21dtv.com/songs/60135004.mkv +佚名-真心的爱,http://em.21dtv.com/songs/60058234.mkv +吴淑敏-真心的爱,http://em.21dtv.com/songs/60058233.mkv +刘德华-真心的爱,http://em.21dtv.com/songs/60058232.mkv +郝苗佳-走向成功,http://em.21dtv.com/songs/60079749.mkv +高皓正-真心唱歌,http://em.21dtv.com/songs/60058231.mkv +何江鸿-重新出发,http://em.21dtv.com/songs/60097350.mkv +关心妍-重新出发,http://em.21dtv.com/songs/60059162.mkv +杨千嬅-照相本子(演唱会),http://em.21dtv.com/songs/60057735.mkv +陈零九-真心不骗,http://em.21dtv.com/songs/60123331.mkv +赵薇-真心不假,http://em.21dtv.com/songs/60058230.mkv +刘德华-只想抱抱,http://em.21dtv.com/songs/60058464.mkv +夹子道-真心不变,http://em.21dtv.com/songs/60058228.mkv +彭立-真心爱伊,http://em.21dtv.com/songs/60058226.mkv +张琼瑶-重新爱我(无原唱),http://em.21dtv.com/songs/60081011.mkv +付笛生+任静-知心爱人,http://em.21dtv.com/songs/60133353.mkv +张江+馨梓-知心爱人,http://em.21dtv.com/songs/60091123.mkv +含笑+馨梓-知心爱人,http://em.21dtv.com/songs/60089731.mkv +卓依婷-知心爱人,http://em.21dtv.com/songs/60058676.mkv +付笛声+任静-知心爱人,http://em.21dtv.com/songs/60058675.mkv +佚名-知心爱人(慢四),http://em.21dtv.com/songs/60058674.mkv +苏小花-真心爱你,http://em.21dtv.com/songs/60114002.mkv +红日蓝月-只想爱你,http://em.21dtv.com/songs/60107942.mkv +秦岚-只想爱你,http://em.21dtv.com/songs/60102595.mkv +杨丞琳-只想爱你,http://em.21dtv.com/songs/60058463.mkv +李明洋-真心爱你,http://em.21dtv.com/songs/60058225.mkv +杜德伟-准我自我,http://em.21dtv.com/songs/60059580.mkv +王盛楠-做我自己,http://em.21dtv.com/songs/60103458.mkv +那英-做我自己,http://em.21dtv.com/songs/60060740.mkv +李媛希-做我自己,http://em.21dtv.com/songs/60060739.mkv +张力超-自问自答,http://em.21dtv.com/songs/60114528.mkv +关心妍-自问自答,http://em.21dtv.com/songs/60079733.mkv +不辣-只为有你,http://em.21dtv.com/songs/60128724.mkv +乃木坂46-指望远镜,http://em.21dtv.com/songs/60079631.mkv +任贤齐-再问一次,http://em.21dtv.com/songs/60056991.mkv +任贤齐-再问一次(演唱会),http://em.21dtv.com/songs/60056990.mkv +尚文祁-自我欣赏,http://em.21dtv.com/songs/60131368.mkv +张博-自我欣赏,http://em.21dtv.com/songs/60079734.mkv +陈倩倩-这位先生,http://em.21dtv.com/songs/60057866.mkv +高利虹-在我心里,http://em.21dtv.com/songs/60114272.mkv +张宇-祝我幸福,http://em.21dtv.com/songs/60098345.mkv +杨乃文-祝我幸福,http://em.21dtv.com/songs/60059401.mkv +吴俅-祝我幸福(无原唱),http://em.21dtv.com/songs/60059400.mkv +玛莉咬凯利-展望未来,http://em.21dtv.com/songs/60134015.mkv +刘德华-再吻我吧,http://em.21dtv.com/songs/60056989.mkv +刘德华-再吻我吧(演唱会),http://em.21dtv.com/songs/60056988.mkv +成龙-自我挑战,http://em.21dtv.com/songs/60091228.mkv +RTA-这位同学,http://em.21dtv.com/songs/60084534.mkv +SOULJA BOY-zan wit that lean,http://em.21dtv.com/songs/60065737.mkv +信-掌纹算命,http://em.21dtv.com/songs/60132211.mkv +苏永康-众望所归(演唱会),http://em.21dtv.com/songs/60059089.mkv +林绫-在我身边,http://em.21dtv.com/songs/60057163.mkv +江美琪-在我身边,http://em.21dtv.com/songs/60057162.mkv +李克勤-在我身边(演唱会),http://em.21dtv.com/songs/60057161.mkv +阿弟仔-找无人爱(无原唱),http://em.21dtv.com/songs/60057689.mkv +张祥洪+冷漠-造物弄人,http://em.21dtv.com/songs/60086217.mkv +张祥洪-造物弄人,http://em.21dtv.com/songs/60084520.mkv +冷漠-造物弄人,http://em.21dtv.com/songs/60057325.mkv +林志炫-只为你唱,http://em.21dtv.com/songs/60058450.mkv +蒲庭龙-做我目睛,http://em.21dtv.com/songs/60071733.mkv +罗嘉良-准我留下,http://em.21dtv.com/songs/60059577.mkv +陈瑞-造物弄人,http://em.21dtv.com/songs/60106418.mkv +金志文-只为了你,http://em.21dtv.com/songs/60117292.mkv +张蓉蓉-重温旧梦,http://em.21dtv.com/songs/60059156.mkv +孙淑媚-重温旧梦,http://em.21dtv.com/songs/60059155.mkv +谭晶-这湾海水,http://em.21dtv.com/songs/60057865.mkv +方炯镔-在我怀里,http://em.21dtv.com/songs/60067771.mkv +高朋+张继心-紫薇花开,http://em.21dtv.com/songs/60079718.mkv +刘晓华-自我放逐,http://em.21dtv.com/songs/60121447.mkv +江蕙-找无对手,http://em.21dtv.com/songs/60057686.mkv +蔡秋凤-走味的歌,http://em.21dtv.com/songs/60059953.mkv +罗志祥-自我催眠,http://em.21dtv.com/songs/60059737.mkv +邹文正-战无不胜,http://em.21dtv.com/songs/60126264.mkv +陈小春-战无不胜,http://em.21dtv.com/songs/60057484.mkv +陈小春-战无不胜(演唱会),http://em.21dtv.com/songs/60057483.mkv +小龙女-自我安慰,http://em.21dtv.com/songs/60098295.mkv +陈晓东-准我爱你,http://em.21dtv.com/songs/60059575.mkv +何家劲-重头做起,http://em.21dtv.com/songs/60059154.mkv +王芷蕾-昨天再见,http://em.21dtv.com/songs/60060598.mkv +陈威全-中途转机,http://em.21dtv.com/songs/60058986.mkv +佚名-在田野上,http://em.21dtv.com/songs/60057154.mkv +佚名-昨天以前,http://em.21dtv.com/songs/60060597.mkv +陈明真-昨天以前,http://em.21dtv.com/songs/60060596.mkv +梅艳芳-暂停厌倦,http://em.21dtv.com/songs/60057265.mkv +林子祥-泽田研二,http://em.21dtv.com/songs/60092858.mkv +大哲-走天涯dj,http://em.21dtv.com/songs/60059949.mkv +李玟-再听一次,http://em.21dtv.com/songs/60056986.mkv +小辣椒-坐台小姐,http://em.21dtv.com/songs/60060687.mkv +刘刚-祝她幸福,http://em.21dtv.com/songs/60100774.mkv +周治平-重提往事,http://em.21dtv.com/songs/60059150.mkv +冷漠-走投无路,http://em.21dtv.com/songs/60065517.mkv +游鸿明-走投无路,http://em.21dtv.com/songs/60059951.mkv +叶胜钦-走头无路,http://em.21dtv.com/songs/60059950.mkv +陈小汉+李敏华-长亭送别(戏曲),http://em.21dtv.com/songs/60093426.mkv +刘畅+袁汐-最痛人选,http://em.21dtv.com/songs/60132251.mkv +群星-重头认识,http://em.21dtv.com/songs/60059153.mkv +叶德娴-重头认识(演唱会),http://em.21dtv.com/songs/60059152.mkv +佚名-这条情歌,http://em.21dtv.com/songs/60057863.mkv +罗家宝+林锦屏-重台泣别,http://em.21dtv.com/songs/60059149.mkv +安仕伟-昨天你我,http://em.21dtv.com/songs/60108441.mkv +佚名-枝头鸟儿,http://em.21dtv.com/songs/60058636.mkv +萧亚轩-暂停恋爱,http://em.21dtv.com/songs/60088568.mkv +雨桥-重投苦爱(HD),http://em.21dtv.com/songs/10012834.mkv +雨侨-重投苦爱,http://em.21dtv.com/songs/60097349.mkv +王心凌-昨天今天,http://em.21dtv.com/songs/60103446.mkv +李静-这条绝路,http://em.21dtv.com/songs/60119677.mkv +雨霖枫-这条绝路,http://em.21dtv.com/songs/60115513.mkv +贾富营-紫藤花开,http://em.21dtv.com/songs/60127433.mkv +佚名-中叹皇儿(无原唱),http://em.21dtv.com/songs/60058984.mkv +杨薏加-猪头哥哥,http://em.21dtv.com/songs/60059222.mkv +肖小胖-猪头哥哥,http://em.21dtv.com/songs/60059221.mkv +网络歌曲-猪头哥哥,http://em.21dtv.com/songs/60059220.mkv +黄贯中+雷有辉+邓建明-只谈风月,http://em.21dtv.com/songs/60058449.mkv +安东阳-最痛的人,http://em.21dtv.com/songs/60086301.mkv +陈淑萍-这通电话(无原唱),http://em.21dtv.com/songs/60057864.mkv +梁佳玉-昨天的爱,http://em.21dtv.com/songs/60093637.mkv +古巨基-侦探档案,http://em.21dtv.com/songs/60057973.mkv +蒙面哥-组团出道,http://em.21dtv.com/songs/60122088.mkv +梁汉文-终身赞助,http://em.21dtv.com/songs/60135458.mkv +陈浩德-在水中央(演唱会),http://em.21dtv.com/songs/60084511.mkv +郑少秋-在水中央(演唱会),http://em.21dtv.com/songs/60079487.mkv +卓义峰-这是怎样,http://em.21dtv.com/songs/60057851.mkv +佚名-在水中央,http://em.21dtv.com/songs/60057149.mkv +林子祥-在水中央(演唱会),http://em.21dtv.com/songs/60057148.mkv +林子祥+陈奕迅-在水中央(演唱会),http://em.21dtv.com/songs/60057147.mkv +降央卓玛-这山这水,http://em.21dtv.com/songs/60057835.mkv +廿四味+郑秀文-战胜自己,http://em.21dtv.com/songs/60107706.mkv +零点乐队-战胜自己(演唱会),http://em.21dtv.com/songs/60057474.mkv +臧齐-转身之后,http://em.21dtv.com/songs/60135646.mkv +莫小娘+JULY宇-转身之后,http://em.21dtv.com/songs/60084593.mkv +管罄-转身之后,http://em.21dtv.com/songs/60079897.mkv +糖兄妹-自说自话,http://em.21dtv.com/songs/60079732.mkv +BII-转身之后,http://em.21dtv.com/songs/60059451.mkv +佚名-掌声之后,http://em.21dtv.com/songs/60057636.mkv +郑志勇-郑氏之歌,http://em.21dtv.com/songs/60127470.mkv +群星-正生之歌,http://em.21dtv.com/songs/60123085.mkv +于朦胧+赵慧仙-纵身一跃,http://em.21dtv.com/songs/60123607.mkv +那英-左思右想,http://em.21dtv.com/songs/60060652.mkv +童唱-再试一下(无原唱),http://em.21dtv.com/songs/60056972.mkv +哈宝宝-再试一下(无原唱),http://em.21dtv.com/songs/60056971.mkv +BOX-左手右手,http://em.21dtv.com/songs/60080392.mkv +曹龙-左手右手,http://em.21dtv.com/songs/60069051.mkv +杨沛宜-左手右手,http://em.21dtv.com/songs/60060651.mkv +汪苏泷-左手右手,http://em.21dtv.com/songs/60059622.mkv +李菓-转身以前(演唱会),http://em.21dtv.com/songs/60087143.mkv +金莎-只属于你,http://em.21dtv.com/songs/60129681.mkv +潘玮柏-专属于你,http://em.21dtv.com/songs/60070264.mkv +陈冠希-左上右落,http://em.21dtv.com/songs/60093386.mkv +刘德华-钻石眼泪(演唱会),http://em.21dtv.com/songs/60060042.mkv +安明亮-转身以后,http://em.21dtv.com/songs/60059450.mkv +张柏芝-再伤一回,http://em.21dtv.com/songs/60056946.mkv +陈佳-在水一方,http://em.21dtv.com/songs/60127537.mkv +李健-在水一方,http://em.21dtv.com/songs/60108560.mkv +韦唯-在水一方,http://em.21dtv.com/songs/60084827.mkv +卓依婷-在水一方,http://em.21dtv.com/songs/60057146.mkv +余天-在水一方,http://em.21dtv.com/songs/60057145.mkv +巫启贤-在水一方,http://em.21dtv.com/songs/60057144.mkv +江淑娜-在水一方,http://em.21dtv.com/songs/60057143.mkv +高胜美-在水一方,http://em.21dtv.com/songs/60057142.mkv +费玉清-在水一方,http://em.21dtv.com/songs/60057141.mkv +邓丽君-在水一方,http://em.21dtv.com/songs/60057140.mkv +许茹芸-在水一方(演唱会),http://em.21dtv.com/songs/60057139.mkv +高原-真实一点,http://em.21dtv.com/songs/60109049.mkv +姜玉阳-真实一点,http://em.21dtv.com/songs/60058203.mkv +韩晓辉-战士心愿,http://em.21dtv.com/songs/60116368.mkv +郑融-终生学习,http://em.21dtv.com/songs/60059031.mkv +梁汉文-终生学习(演唱会),http://em.21dtv.com/songs/60059030.mkv +雷有辉-终身学习(演唱会),http://em.21dtv.com/songs/60059028.mkv +罗时丰-掌声响起,http://em.21dtv.com/songs/60088440.mkv +潘秀琼-掌声响起(演唱会),http://em.21dtv.com/songs/60079529.mkv +吕珊-掌声响起(演唱会),http://em.21dtv.com/songs/60079528.mkv +许冠杰-钟声响起,http://em.21dtv.com/songs/60059063.mkv +孙琳-掌声响起,http://em.21dtv.com/songs/60057635.mkv +凤飞飞-掌声响起,http://em.21dtv.com/songs/60057634.mkv +许冠英-掌声响起(演唱会),http://em.21dtv.com/songs/60057633.mkv +谢雷-掌声响起(演唱会),http://em.21dtv.com/songs/60057632.mkv +罗文-掌声响起(演唱会),http://em.21dtv.com/songs/60057631.mkv +刘德华-掌声响起(演唱会),http://em.21dtv.com/songs/60057630.mkv +梁静茹-掌声响起(演唱会),http://em.21dtv.com/songs/60057629.mkv +何禹妃-只是想你,http://em.21dtv.com/songs/60103080.mkv +BEYOND-战胜心魔,http://em.21dtv.com/songs/60057473.mkv +黄家强-战胜心魔(演唱会),http://em.21dtv.com/songs/60057472.mkv +陈晓琪-终身幸福,http://em.21dtv.com/songs/60129746.mkv +陈晓琪-终身幸福,http://em.21dtv.com/songs/60128540.mkv +沐婷-纵使相逢,http://em.21dtv.com/songs/60107867.mkv +唐俪-浊水溪岸,http://em.21dtv.com/songs/60133496.mkv +许慧欣-只是玩笑,http://em.21dtv.com/songs/60079612.mkv +佚名-再三误解,http://em.21dtv.com/songs/60056945.mkv +罗时丰-再三误解,http://em.21dtv.com/songs/60056944.mkv +永邦-转瞬为风,http://em.21dtv.com/songs/60059452.mkv +汪苏泷+林希儿-专属味道,http://em.21dtv.com/songs/60059423.mkv +卓义峰-忠实听众,http://em.21dtv.com/songs/60059002.mkv +TANK-专属天使,http://em.21dtv.com/songs/60059422.mkv +夏婉安+渔圈-专属甜蜜,http://em.21dtv.com/songs/60121534.mkv +司徒兰芳-转世桃花,http://em.21dtv.com/songs/60115747.mkv +洪百慧-钻石手指,http://em.21dtv.com/songs/60060040.mkv +蔡小虎-钻石手指,http://em.21dtv.com/songs/60060039.mkv +佚名-姿三四郎,http://em.21dtv.com/songs/60059606.mkv +苏打绿-暂时失控,http://em.21dtv.com/songs/60057260.mkv +李克勤-钻石人生(演唱会),http://em.21dtv.com/songs/60079764.mkv +佚名-醉生如梦,http://em.21dtv.com/songs/60060529.mkv +新街口组合-自杀日记,http://em.21dtv.com/songs/60086276.mkv +九紫乐队-重色轻友,http://em.21dtv.com/songs/60059144.mkv +陈小春-重色轻友,http://em.21dtv.com/songs/60059143.mkv +三木科-紫色情殇,http://em.21dtv.com/songs/60090468.mkv +亚东-钟声琴声,http://em.21dtv.com/songs/60089598.mkv +张卫健-终生情人,http://em.21dtv.com/songs/60059029.mkv +杨皓天-执手千年,http://em.21dtv.com/songs/60110299.mkv +佚名-知识青年,http://em.21dtv.com/songs/60058673.mkv +蓝沁-只是情歌,http://em.21dtv.com/songs/60071523.mkv +陈奕迅-张氏情歌,http://em.21dtv.com/songs/60065469.mkv +陈翔-只是朋友,http://em.21dtv.com/songs/60126403.mkv +家蔚-只是朋友,http://em.21dtv.com/songs/60081898.mkv +陈瑞-只是女人,http://em.21dtv.com/songs/60135932.mkv +陈瑞-只是女人,http://em.21dtv.com/songs/60113068.mkv +SNH48-钻石呐喊(演),http://em.21dtv.com/songs/60099037.mkv +酒疯-争什么争,http://em.21dtv.com/songs/60128485.mkv +李玟-掌上明珠,http://em.21dtv.com/songs/60057628.mkv +孙艳-紫色梦想,http://em.21dtv.com/songs/60104933.mkv +蔡小虎-醉生梦死,http://em.21dtv.com/songs/60095908.mkv +阿弟仔-醉生梦死(无原唱),http://em.21dtv.com/songs/60060528.mkv +黄义达-专属密码,http://em.21dtv.com/songs/60059420.mkv +金大喜-专属魔力,http://em.21dtv.com/songs/60120037.mkv +张崇基+张崇德-终身美丽,http://em.21dtv.com/songs/60092599.mkv +张崇基-终生美丽(演唱会),http://em.21dtv.com/songs/60061905.mkv +MP魔幻力量+郭采洁-专属魔力,http://em.21dtv.com/songs/60059421.mkv +郑秀文-终身美丽,http://em.21dtv.com/songs/60059027.mkv +叶倩文-终身美丽(演唱会),http://em.21dtv.com/songs/60059026.mkv +李克勤-终身美丽(演唱会),http://em.21dtv.com/songs/60059025.mkv +李魏西-专属梦境,http://em.21dtv.com/songs/60103379.mkv +泽仁伍波-紫色梅朵,http://em.21dtv.com/songs/60120704.mkv +齐旦布-转山路上,http://em.21dtv.com/songs/60128642.mkv +高枫-张三李四,http://em.21dtv.com/songs/60081895.mkv +许佳慧-转身离开,http://em.21dtv.com/songs/60103569.mkv +关智斌-终生角色,http://em.21dtv.com/songs/60125154.mkv +关智斌-终生角色,http://em.21dtv.com/songs/60123650.mkv +魏小麒-执手纪念,http://em.21dtv.com/songs/60099626.mkv +古巨基-重拾旧欢,http://em.21dtv.com/songs/60059148.mkv +佚名-只是经过(无原唱),http://em.21dtv.com/songs/60058442.mkv +谢安琪-诸神混乱,http://em.21dtv.com/songs/60123177.mkv +谢安琪-诸神混乱,http://em.21dtv.com/songs/60122123.mkv +谭维维-在束河里,http://em.21dtv.com/songs/60057136.mkv +陈慧琳-钻石会籍,http://em.21dtv.com/songs/60079763.mkv +张倾城-葬身火海,http://em.21dtv.com/songs/60057281.mkv +司徒兰芳-醉赏红尘,http://em.21dtv.com/songs/60118424.mkv +群星-专属歌曲,http://em.21dtv.com/songs/60059419.mkv +佚名-赵氏孤儿,http://em.21dtv.com/songs/60057726.mkv +谢安琪-姿色份子,http://em.21dtv.com/songs/60059608.mkv +郑健英-闸上风云,http://em.21dtv.com/songs/60057422.mkv +宋靖宇-至死方休,http://em.21dtv.com/songs/60123844.mkv +孟杨-至死方休,http://em.21dtv.com/songs/60110149.mkv +梁汉文-暂时分开,http://em.21dtv.com/songs/60113743.mkv +罗心洁-纸上的字,http://em.21dtv.com/songs/60062742.mkv +小贱+星弟-专属电影,http://em.21dtv.com/songs/60067814.mkv +爱戴-紫色的雪,http://em.21dtv.com/songs/60088267.mkv +一加一组合-最深的痛,http://em.21dtv.com/songs/60079816.mkv +田馥甄-终身大事,http://em.21dtv.com/songs/60095213.mkv +S.H.E-只是当时,http://em.21dtv.com/songs/60058440.mkv +ELLA-只是当时,http://em.21dtv.com/songs/60058439.mkv +陈楚生-装睡的人,http://em.21dtv.com/songs/60080453.mkv +佚名-真实的你,http://em.21dtv.com/songs/60058200.mkv +刘美君-最骚的梦,http://em.21dtv.com/songs/60060404.mkv +青春美少女-张三的歌,http://em.21dtv.com/songs/60122261.mkv +修儿-张三的歌,http://em.21dtv.com/songs/60113269.mkv +萧敬腾+徐诣凡-张三的歌,http://em.21dtv.com/songs/60111381.mkv +王矜霖+钟纯妍-张三的歌,http://em.21dtv.com/songs/60094608.mkv +蘑菇兄弟-张三的歌,http://em.21dtv.com/songs/60081560.mkv +青春美少女-张三的歌,http://em.21dtv.com/songs/60079527.mkv +吴涤清-张三的歌,http://em.21dtv.com/songs/60068989.mkv +吴宗宪-张三的歌,http://em.21dtv.com/songs/60057544.mkv +腾格尔-张三的歌,http://em.21dtv.com/songs/60057543.mkv +青鸟飞鱼-张三的歌,http://em.21dtv.com/songs/60057542.mkv +齐秦-张三的歌,http://em.21dtv.com/songs/60057541.mkv +蔡琴-张三的歌,http://em.21dtv.com/songs/60057540.mkv +吴宗宪-张三的歌(演唱会),http://em.21dtv.com/songs/60057539.mkv +郭易-宅死的爱,http://em.21dtv.com/songs/60068988.mkv +陈随意+陈淑萍-暂时的爱,http://em.21dtv.com/songs/60066580.mkv +温兆伦-最深的爱,http://em.21dtv.com/songs/60060410.mkv +温力铭-只是传说,http://em.21dtv.com/songs/60124214.mkv +佚名-钟声催归,http://em.21dtv.com/songs/60059062.mkv +国蛋-只是迟到,http://em.21dtv.com/songs/60079610.mkv +佚名-暂时别走,http://em.21dtv.com/songs/60057259.mkv +艾龙勐傣-至死不渝,http://em.21dtv.com/songs/60124845.mkv +赖慈泓-至死不渝,http://em.21dtv.com/songs/60122139.mkv +梁咏琪-至死不遇(演唱会),http://em.21dtv.com/songs/60058823.mkv +罗时丰-在所不惜,http://em.21dtv.com/songs/60111350.mkv +古巨基-钻石败犬,http://em.21dtv.com/songs/60060038.mkv +汪东城-专属堡垒,http://em.21dtv.com/songs/60125852.mkv +佚名-紫色百合,http://em.21dtv.com/songs/60059650.mkv +水木年华-纸上爱情,http://em.21dtv.com/songs/60058776.mkv +动力火车-镇守爱情,http://em.21dtv.com/songs/60058304.mkv +李克勤-终生爱慕,http://em.21dtv.com/songs/60092797.mkv +HOWL-J-这是爱吗,http://em.21dtv.com/songs/60057845.mkv +林宇中-至少爱过,http://em.21dtv.com/songs/60111194.mkv +钟洁希-这是爱啊,http://em.21dtv.com/songs/60126326.mkv +钟洁+徐微-专属爱爱,http://em.21dtv.com/songs/60104515.mkv +晏菲-自如自在,http://em.21dtv.com/songs/60079731.mkv +高胜美-昨日重现,http://em.21dtv.com/songs/60105530.mkv +CARPENTERS-昨日重现,http://em.21dtv.com/songs/60060571.mkv +黄家强-真人真事,http://em.21dtv.com/songs/60112404.mkv +水木年华-昨日重来,http://em.21dtv.com/songs/60093785.mkv +吴浩康-择日失恋,http://em.21dtv.com/songs/60057336.mkv +佚名-坠入情网,http://em.21dtv.com/songs/60059569.mkv +梁静茹-昨日情书(演唱会),http://em.21dtv.com/songs/60060570.mkv +杨宝心-炙热青春,http://em.21dtv.com/songs/60132586.mkv +何婉盈-周日清晨,http://em.21dtv.com/songs/60059187.mkv +黎明-指日可待,http://em.21dtv.com/songs/60058785.mkv +刘德华-自然记录,http://em.21dtv.com/songs/60092361.mkv +罗汉-泽润江淮,http://em.21dtv.com/songs/60124351.mkv +巴特尔-早日归乡,http://em.21dtv.com/songs/60123886.mkv +温拿乐队-自然关系,http://em.21dtv.com/songs/60059730.mkv +温拿乐队-自然关系(演唱会),http://em.21dtv.com/songs/60059729.mkv +李玟-自然反应,http://em.21dtv.com/songs/60089964.mkv +许慧欣-自然反映,http://em.21dtv.com/songs/60088648.mkv +许慧欣-自然反应,http://em.21dtv.com/songs/60059727.mkv +杨丞琳-自然而然,http://em.21dtv.com/songs/60059726.mkv +Y.I.Y.O-自然而然,http://em.21dtv.com/songs/60059725.mkv +刘德华-自然定律,http://em.21dtv.com/songs/60059724.mkv +卢巧音-周日床上,http://em.21dtv.com/songs/60059186.mkv +吴家程+周韦杰-重情重义,http://em.21dtv.com/songs/60102029.mkv +张卫健-至情至圣,http://em.21dtv.com/songs/60058798.mkv +李亚明-真情作祟(无原唱),http://em.21dtv.com/songs/60058191.mkv +佚名-追球追求,http://em.21dtv.com/songs/60059536.mkv +孙楠+许茹芸-真情真美,http://em.21dtv.com/songs/60058186.mkv +成云刚-真情之花,http://em.21dtv.com/songs/60087118.mkv +陈文媛-之前之后,http://em.21dtv.com/songs/60058380.mkv +陈洁仪-早去早回,http://em.21dtv.com/songs/60057311.mkv +安琥-早去早回,http://em.21dtv.com/songs/60057310.mkv +李亚明-真情作崇,http://em.21dtv.com/songs/60058190.mkv +久久+于洋-挚情挚爱,http://em.21dtv.com/songs/60070246.mkv +詹雅雯-真情真爱,http://em.21dtv.com/songs/60058184.mkv +余天-真情真爱,http://em.21dtv.com/songs/60058183.mkv +董文华-真情永远,http://em.21dtv.com/songs/60131778.mkv +谢名-真情永远,http://em.21dtv.com/songs/60114786.mkv +王莉+汤非-真情永远,http://em.21dtv.com/songs/60079575.mkv +王莉+汤非-真情永远(演唱会),http://em.21dtv.com/songs/60072799.mkv +兰卡布尺-真情永远,http://em.21dtv.com/songs/60058181.mkv +董文华-真情永远,http://em.21dtv.com/songs/60058180.mkv +孙美娜-真情永久,http://em.21dtv.com/songs/60058179.mkv +新疆艺人-真情有爱,http://em.21dtv.com/songs/60105931.mkv +新疆艺人-真情有爱,http://em.21dtv.com/songs/60097376.mkv +杨皓天-真情有爱,http://em.21dtv.com/songs/60081820.mkv +聂琳峰-左情右爱,http://em.21dtv.com/songs/60060647.mkv +深南大道-真情宣言,http://em.21dtv.com/songs/60091622.mkv +苏永康-足球小将(演唱会),http://em.21dtv.com/songs/60084617.mkv +许志安+张卫健-足球小将(演唱会),http://em.21dtv.com/songs/60059988.mkv +群星-真情无限,http://em.21dtv.com/songs/60107121.mkv +王建杰-真情无限,http://em.21dtv.com/songs/60107073.mkv +高亮-追求完美,http://em.21dtv.com/songs/60080144.mkv +佚名-真情枉费,http://em.21dtv.com/songs/60058175.mkv +王雪玲-中秋团圆,http://em.21dtv.com/songs/60086262.mkv +何鹏-最亲是娘,http://em.21dtv.com/songs/60079814.mkv +佚名-争取胜利,http://em.21dtv.com/songs/60058312.mkv +吕方-争取时间,http://em.21dtv.com/songs/60058313.mkv +马天宇-只欠秋天,http://em.21dtv.com/songs/60058434.mkv +李昕+张辉-真情牵手,http://em.21dtv.com/songs/60058169.mkv +刘依纯-自欺欺人,http://em.21dtv.com/songs/60114417.mkv +蔡孟臻-自欺欺人,http://em.21dtv.com/songs/60087145.mkv +赵学而-自欺欺人,http://em.21dtv.com/songs/60059722.mkv +方力申+傅颖-自欺欺人,http://em.21dtv.com/songs/60059721.mkv +SNH48-足球派对,http://em.21dtv.com/songs/60101827.mkv +最强女团-最强女团,http://em.21dtv.com/songs/60124034.mkv +最强女团-最强女团,http://em.21dtv.com/songs/60122814.mkv +刘德华-真情难收,http://em.21dtv.com/songs/60058167.mkv +小乔-最亲密友,http://em.21dtv.com/songs/60103227.mkv +云龙-追求梦想,http://em.21dtv.com/songs/60079706.mkv +李嘉-真情梦醒,http://em.21dtv.com/songs/60058165.mkv +倪尔萍-重庆美女,http://em.21dtv.com/songs/60059142.mkv +洪荣宏-真情绵绵,http://em.21dtv.com/songs/60058166.mkv +杨斯壬-真情流露,http://em.21dtv.com/songs/60086245.mkv +谭锡禧-真情流露(演唱会),http://em.21dtv.com/songs/60084545.mkv +张学友-真情流露(演唱会),http://em.21dtv.com/songs/60058164.mkv +泳儿-真情流露(演唱会),http://em.21dtv.com/songs/60058163.mkv +郑琇月-中秋恋歌(无原唱),http://em.21dtv.com/songs/60058979.mkv +高峰-真情可贵(无原唱),http://em.21dtv.com/songs/60058162.mkv +蓝雨-中秋寄语,http://em.21dtv.com/songs/60058978.mkv +罗逻圣-醉情酒歌,http://em.21dtv.com/songs/60122015.mkv +蒲洋-重庆火锅,http://em.21dtv.com/songs/60059141.mkv +茹雪-中秋的月,http://em.21dtv.com/songs/60127344.mkv +蔡义德-再起东山,http://em.21dtv.com/songs/60079873.mkv +李茂山-再起东山(无原唱),http://em.21dtv.com/songs/60056937.mkv +陆海涛-最亲的人,http://em.21dtv.com/songs/60114856.mkv +蒋大为+吕薇-最亲的人,http://em.21dtv.com/songs/60060403.mkv +赵一颐-紫气东来,http://em.21dtv.com/songs/60129633.mkv +于海霞-紫气东来,http://em.21dtv.com/songs/60114980.mkv +詹雅雯-正确的路,http://em.21dtv.com/songs/60058352.mkv +邱芸子+陈中-真情的爱,http://em.21dtv.com/songs/60058155.mkv +连红-纵情草原,http://em.21dtv.com/songs/60079741.mkv +孙博+艺凡-真情错爱,http://em.21dtv.com/songs/60112621.mkv +赵本水-自强不息,http://em.21dtv.com/songs/60065512.mkv +叶倩文-自强不息,http://em.21dtv.com/songs/60059723.mkv +方育琪-真情不变,http://em.21dtv.com/songs/60093742.mkv +蒋小涵-真情不变,http://em.21dtv.com/songs/60092007.mkv +爱朵女孩-足球宝贝,http://em.21dtv.com/songs/60079752.mkv +阿温-真情表白,http://em.21dtv.com/songs/60058151.mkv +樊凡-致亲爱的,http://em.21dtv.com/songs/60116977.mkv +梁文音-最亲爱的,http://em.21dtv.com/songs/60060397.mkv +Sugardaddy 蜜糖老爹-重拍野兽,http://em.21dtv.com/songs/60103822.mkv +黄美珍-只怕想家,http://em.21dtv.com/songs/60079609.mkv +王亚东-自拍神器,http://em.21dtv.com/songs/60113846.mkv +符琼音-最怕冷战,http://em.21dtv.com/songs/60060395.mkv +林淑蓉-枕畔留香,http://em.21dtv.com/songs/60058289.mkv +谭晶-这片胡杨,http://em.21dtv.com/songs/60086235.mkv +COOKIE GIRLS-猪朋狗友,http://em.21dtv.com/songs/60123454.mkv +吴介贤-招牌动作(演唱会),http://em.21dtv.com/songs/60072787.mkv +蔡依林-招牌动作,http://em.21dtv.com/songs/60057652.mkv +郭娅丽-这片草原,http://em.21dtv.com/songs/60068996.mkv +蓝野乐队-这片草原(演唱会),http://em.21dtv.com/songs/60062566.mkv +马兆骏-在平安中,http://em.21dtv.com/songs/60057124.mkv +戴佩妮-择偶条件,http://em.21dtv.com/songs/60057335.mkv +张继鹏-在你左右,http://em.21dtv.com/songs/60129112.mkv +左右乐队-在你左右,http://em.21dtv.com/songs/60127937.mkv +凌宏兵-只能这样,http://em.21dtv.com/songs/60123660.mkv +吴莫愁-在你左右,http://em.21dtv.com/songs/60116645.mkv +邓子霆-在你左右,http://em.21dtv.com/songs/60109645.mkv +苏又榕-早哪知影,http://em.21dtv.com/songs/60057308.mkv +林良欢+许志豪-宅男宅女,http://em.21dtv.com/songs/60057441.mkv +韩岚-做牛做马,http://em.21dtv.com/songs/60086315.mkv +刘邦-只能再见,http://em.21dtv.com/songs/60101994.mkv +樊凡-在你之后,http://em.21dtv.com/songs/60132647.mkv +黄美珍-在你眼里,http://em.21dtv.com/songs/60109063.mkv +黄家强-祝你愉快(演唱会),http://em.21dtv.com/songs/60059393.mkv +胡晓黎-宅女也很high,http://em.21dtv.com/songs/60086224.mkv +游茜茹-只能勇敢,http://em.21dtv.com/songs/60135519.mkv +萧煌奇-只能勇敢,http://em.21dtv.com/songs/60058424.mkv +郑志立-在你心中,http://em.21dtv.com/songs/60094717.mkv +张卫健-在你心上,http://em.21dtv.com/songs/60057117.mkv +陈华生-祝你幸福,http://em.21dtv.com/songs/60126365.mkv +火山-祝你幸福,http://em.21dtv.com/songs/60121893.mkv +李圣杰-祝你幸福,http://em.21dtv.com/songs/60106934.mkv +李圣杰-祝你幸福,http://em.21dtv.com/songs/60105974.mkv +唐磊-祝你幸福,http://em.21dtv.com/songs/60079693.mkv +苏盈之-祝你幸福,http://em.21dtv.com/songs/60072818.mkv +陈清-祝你幸福,http://em.21dtv.com/songs/60071535.mkv +郭娅丽-祝你幸福,http://em.21dtv.com/songs/60069024.mkv +萧敬腾-祝你幸福,http://em.21dtv.com/songs/60059391.mkv +汤奕蓉-祝你幸福,http://em.21dtv.com/songs/60059390.mkv +沙宝亮-祝你幸福,http://em.21dtv.com/songs/60059389.mkv +凤飞飞-祝你幸福,http://em.21dtv.com/songs/60059388.mkv +郑进一-祝你幸福(无原唱),http://em.21dtv.com/songs/60059387.mkv +遥远-怎能忘记,http://em.21dtv.com/songs/60109643.mkv +晓月-怎能忘记,http://em.21dtv.com/songs/60106900.mkv +叫吠音乐联盟-在你手中,http://em.21dtv.com/songs/60057116.mkv +布衣乐队-在你身旁,http://em.21dtv.com/songs/60102174.mkv +成铭-在你身后,http://em.21dtv.com/songs/60133730.mkv +[Group] +groupName=十六万歌曲MV等 - 63 +林锦屏-织女思凡(戏曲),http://em.21dtv.com/songs/60092885.mkv +罗桦-祝你顺风(演唱会),http://em.21dtv.com/songs/60079692.mkv +佚名-祝你顺风,http://em.21dtv.com/songs/60059384.mkv +李逸-祝你顺风,http://em.21dtv.com/songs/60059383.mkv +凤飞飞-祝你顺风,http://em.21dtv.com/songs/60059382.mkv +曾岑-在你身边,http://em.21dtv.com/songs/60131479.mkv +吴克群-在你身边,http://em.21dtv.com/songs/60110919.mkv +王中平+林雨葶-在你身边,http://em.21dtv.com/songs/60109514.mkv +韦礼安-在你身边,http://em.21dtv.com/songs/60100623.mkv +卓文萱-在你身边,http://em.21dtv.com/songs/60057115.mkv +钟汉良-在你身边,http://em.21dtv.com/songs/60057114.mkv +张学友-在你身边,http://em.21dtv.com/songs/60057113.mkv +李晨+董璇-在你身边,http://em.21dtv.com/songs/60057112.mkv +郑锦昌-祝你如愿,http://em.21dtv.com/songs/60093340.mkv +石磊-宅男日记,http://em.21dtv.com/songs/60079517.mkv +南台湾小姑娘-作你去啦(无原唱),http://em.21dtv.com/songs/60060674.mkv +金志文-祝你平安,http://em.21dtv.com/songs/60097365.mkv +卓依婷-祝你平安,http://em.21dtv.com/songs/60059376.mkv +孙悦-祝你平安,http://em.21dtv.com/songs/60059375.mkv +佚名-祝你平安(慢四),http://em.21dtv.com/songs/60059374.mkv +关心妍-在你名下(演唱会),http://em.21dtv.com/songs/60079483.mkv +DIA-在那路上,http://em.21dtv.com/songs/60122365.mkv +陈玲玉-紫坭留恨,http://em.21dtv.com/songs/60093486.mkv +孙燕姿-祝你开心,http://em.21dtv.com/songs/60059367.mkv +郑秀文-祝你快乐,http://em.21dtv.com/songs/60059373.mkv +佚名-祝你快乐,http://em.21dtv.com/songs/60059372.mkv +黄淑惠-祝你快乐,http://em.21dtv.com/songs/60059371.mkv +何俊明-祝你快乐,http://em.21dtv.com/songs/60059370.mkv +安涛-祝你快乐,http://em.21dtv.com/songs/60059369.mkv +阿杜-祝你快乐,http://em.21dtv.com/songs/60059368.mkv +孙健康-祝你健康,http://em.21dtv.com/songs/60133560.mkv +龚爽-祝你健康,http://em.21dtv.com/songs/60124776.mkv +敖都-祝你健康,http://em.21dtv.com/songs/60121719.mkv +郑志宏-祝你健康,http://em.21dtv.com/songs/60084591.mkv +刘芮伊-祝你好运,http://em.21dtv.com/songs/60059363.mkv +刘凤屏+向华-祝你好运,http://em.21dtv.com/songs/60059362.mkv +刘媛媛+张媛媛-祝你好运(演唱会),http://em.21dtv.com/songs/60059361.mkv +李勇-找你回家,http://em.21dtv.com/songs/60111962.mkv +任贤齐-知难而退,http://em.21dtv.com/songs/60099741.mkv +孙燕姿-知难而退,http://em.21dtv.com/songs/60058672.mkv +林晓培-知难而退,http://em.21dtv.com/songs/60058671.mkv +李玖哲-做你的天,http://em.21dtv.com/songs/60060715.mkv +沈凌-做你的伞,http://em.21dtv.com/songs/60060714.mkv +孙艺玲-做你的猫,http://em.21dtv.com/songs/60105752.mkv +辛晓琪-最难的梦,http://em.21dtv.com/songs/60060391.mkv +张冬玲-宅女的爱(演唱会),http://em.21dtv.com/songs/60063363.mkv +王小荣-祝你成功,http://em.21dtv.com/songs/60125915.mkv +王小荣-祝你成功,http://em.21dtv.com/songs/60059360.mkv +侯本岗-走南闯北,http://em.21dtv.com/songs/60123633.mkv +王杰-在你背后,http://em.21dtv.com/songs/60057103.mkv +黄孝恩-只能爱他,http://em.21dtv.com/songs/60136020.mkv +张佑赫-周末之夜,http://em.21dtv.com/songs/60061906.mkv +胜屿-怎么怎么,http://em.21dtv.com/songs/60115340.mkv +何龙雨-最美最美,http://em.21dtv.com/songs/60079813.mkv +孙语诺-最美最美,http://em.21dtv.com/songs/60067837.mkv +梁雨恩-怎么怎么,http://em.21dtv.com/songs/60057388.mkv +多元神话-醉美中华,http://em.21dtv.com/songs/60101057.mkv +游子组合-最美中国,http://em.21dtv.com/songs/60107885.mkv +常思思-最美中国,http://em.21dtv.com/songs/60107700.mkv +魏新雨-最美中国,http://em.21dtv.com/songs/60100664.mkv +陈瑞-最美中国,http://em.21dtv.com/songs/60084650.mkv +阿任-醉美宜州,http://em.21dtv.com/songs/60097473.mkv +王鹤铮-最美虞萱,http://em.21dtv.com/songs/60120803.mkv +张蓉蓉-醉梦一生,http://em.21dtv.com/songs/60060507.mkv +芭比-周末音乐,http://em.21dtv.com/songs/60059184.mkv +陈晓东-最美一刻,http://em.21dtv.com/songs/60113056.mkv +费翔-在每一刻,http://em.21dtv.com/songs/60108016.mkv +闫莉-卓玛央金,http://em.21dtv.com/songs/60118119.mkv +闫莉-卓玛央金,http://em.21dtv.com/songs/60086274.mkv +阿英-卓玛央金,http://em.21dtv.com/songs/60079714.mkv +尼玛拉毛-咱们西藏,http://em.21dtv.com/songs/60057251.mkv +赵齐+安婧-最美相遇,http://em.21dtv.com/songs/60100486.mkv +张敬轩-捉摸心跳,http://em.21dtv.com/songs/60059587.mkv +喜波-最美新娘,http://em.21dtv.com/songs/60131293.mkv +成泉-最美旋律,http://em.21dtv.com/songs/60115957.mkv +董贞-醉梦仙霖,http://em.21dtv.com/songs/60070286.mkv +温宏-周末相见,http://em.21dtv.com/songs/60124839.mkv +王金翔-最美西湖,http://em.21dtv.com/songs/60109544.mkv +孙楠-致命邂逅,http://em.21dtv.com/songs/60090921.mkv +李研心-追梦幸福,http://em.21dtv.com/songs/60111168.mkv +汤媛媛-最美西藏,http://em.21dtv.com/songs/60065529.mkv +白云-筑梦小丑,http://em.21dtv.com/songs/60065505.mkv +孙悦-周末晚上,http://em.21dtv.com/songs/60090896.mkv +马旭东-致命温柔,http://em.21dtv.com/songs/60084571.mkv +伍义-追梦无悔,http://em.21dtv.com/songs/60059524.mkv +S.I.N.G女团-造梦王国,http://em.21dtv.com/songs/60127662.mkv +洛天依+乐正绫-造梦王国,http://em.21dtv.com/songs/60127168.mkv +SING女团-造梦王国,http://em.21dtv.com/songs/60126547.mkv +鸿飞-真命天子,http://em.21dtv.com/songs/60121173.mkv +罗志祥-真名天子,http://em.21dtv.com/songs/60088438.mkv +SUPER7-真命天子,http://em.21dtv.com/songs/60079574.mkv +郑秀文-真命天子,http://em.21dtv.com/songs/60058140.mkv +杨千嬅-真命天子,http://em.21dtv.com/songs/60058139.mkv +罗志祥+蔡依林-真命天子,http://em.21dtv.com/songs/60058138.mkv +杨千嬅-真命天子(演唱会),http://em.21dtv.com/songs/60058137.mkv +刘尊-逐梦同心,http://em.21dtv.com/songs/60112537.mkv +凤凰传奇-醉美天下,http://em.21dtv.com/songs/60060505.mkv +曾倩-追梦天堂,http://em.21dtv.com/songs/60133768.mkv +醉美-醉美通化,http://em.21dtv.com/songs/60108932.mkv +沈玉-醉美天长,http://em.21dtv.com/songs/60117885.mkv +罗媛-最美深圳,http://em.21dtv.com/songs/60126033.mkv +DJ KEN-醉美诗语,http://em.21dtv.com/songs/60132068.mkv +董又霖-做陌生人,http://em.21dtv.com/songs/60126139.mkv +张其萍-最美是你,http://em.21dtv.com/songs/60127963.mkv +冉青霞-追梦少年,http://em.21dtv.com/songs/60115016.mkv +邓小龙-追梦少年,http://em.21dtv.com/songs/60104471.mkv +王莉-最美是你,http://em.21dtv.com/songs/60081776.mkv +郭大卫-追梦少年,http://em.21dtv.com/songs/60059523.mkv +棉花糖-怎么说呢,http://em.21dtv.com/songs/60057384.mkv +周敬-最美司机,http://em.21dtv.com/songs/60079812.mkv +何龙雨-最美商会,http://em.21dtv.com/songs/60107500.mkv +黎明-最美时光,http://em.21dtv.com/songs/60093566.mkv +钟洁+苗苗-怎么舍得,http://em.21dtv.com/songs/60127521.mkv +陈俊龙-追梦人生,http://em.21dtv.com/songs/60110607.mkv +佚名-真梦人生,http://em.21dtv.com/songs/60058135.mkv +浩明+思小玥-最美情殇,http://em.21dtv.com/songs/60132682.mkv +陈夏莲+一绫-姊妹情深,http://em.21dtv.com/songs/60126374.mkv +陈夏莲+一绫-姊妹情深,http://em.21dtv.com/songs/60124625.mkv +陈慧琳-醉迷情人,http://em.21dtv.com/songs/60060510.mkv +陈慧琳-醉迷情人(演唱会),http://em.21dtv.com/songs/60060509.mkv +佚名-竹马青梅,http://em.21dtv.com/songs/60059239.mkv +曹群-竹马青梅,http://em.21dtv.com/songs/60059238.mkv +白小白-最美情侣,http://em.21dtv.com/songs/60135593.mkv +果子-醉美青花,http://em.21dtv.com/songs/60110309.mkv +林心如-怎么去爱,http://em.21dtv.com/songs/60089365.mkv +刘程伊-周末派对,http://em.21dtv.com/songs/60086265.mkv +NOT YET-周末not yet,http://em.21dtv.com/songs/60079671.mkv +登越顿珠-卓玛娜姆,http://em.21dtv.com/songs/60079713.mkv +羽泉-怎么能够,http://em.21dtv.com/songs/60057373.mkv +MC HOTDOG+马念先-怎么能够,http://em.21dtv.com/songs/60057372.mkv +韩大伟-追梦男儿,http://em.21dtv.com/songs/60135982.mkv +戴静-醉美苗乡,http://em.21dtv.com/songs/60130359.mkv +谢珊-醉美泸州(演唱会),http://em.21dtv.com/songs/60071563.mkv +韦琪-怎么了我,http://em.21dtv.com/songs/60086220.mkv +冯欣-追梦路上,http://em.21dtv.com/songs/60100769.mkv +宋祖英-珠穆朗玛,http://em.21dtv.com/songs/60059214.mkv +彭丽媛-珠穆朗玛,http://em.21dtv.com/songs/60059213.mkv +姜孝萌-致梅兰芳,http://em.21dtv.com/songs/60099924.mkv +张梅-卓玛拉措,http://em.21dtv.com/songs/60120512.mkv +次真降措-卓玛拉措,http://em.21dtv.com/songs/60059603.mkv +杨坤-装满了爱,http://em.21dtv.com/songs/60091397.mkv +李亮超+雪无影-怎么可能,http://em.21dtv.com/songs/60098444.mkv +李幸倪-芝麻开门,http://em.21dtv.com/songs/60130419.mkv +李幸倪-芝麻开门,http://em.21dtv.com/songs/60129226.mkv +尚雯婕-芝麻开门(演唱会),http://em.21dtv.com/songs/60058635.mkv +王鹤铮-最美郡灿,http://em.21dtv.com/songs/60120804.mkv +张栋梁-怎么会哭,http://em.21dtv.com/songs/60063366.mkv +聂建华-咱们回家,http://em.21dtv.com/songs/60068978.mkv +薛凯琪-周末画报,http://em.21dtv.com/songs/60084584.mkv +咪依鲁江-最美姑娘,http://em.21dtv.com/songs/60070281.mkv +李猛-卓玛姑娘,http://em.21dtv.com/songs/60067819.mkv +桑吉梅朵-卓玛姑娘,http://em.21dtv.com/songs/60059602.mkv +格桑-卓玛姑娘,http://em.21dtv.com/songs/60059601.mkv +杨卿俪-醉美抚顺,http://em.21dtv.com/songs/60108601.mkv +可泽-最美的缘,http://em.21dtv.com/songs/60121477.mkv +姚东耀-最美的愿,http://em.21dtv.com/songs/60067836.mkv +徐千雅-最美的山,http://em.21dtv.com/songs/60096083.mkv +成泉+三郎-最美的人,http://em.21dtv.com/songs/60122775.mkv +许家豪-追梦的人,http://em.21dtv.com/songs/60117223.mkv +陈姗姗-最美的你,http://em.21dtv.com/songs/60105478.mkv +张勇-最美的你,http://em.21dtv.com/songs/60084647.mkv +王相周-最美的你,http://em.21dtv.com/songs/60071560.mkv +胡量-最美的你,http://em.21dtv.com/songs/60071559.mkv +枫桥-最美的你,http://em.21dtv.com/songs/60060372.mkv +刘广伟-最美的梦,http://em.21dtv.com/songs/60121435.mkv +丁心-最美的梦,http://em.21dtv.com/songs/60104757.mkv +龙千玉-昨暝的梦,http://em.21dtv.com/songs/60077998.mkv +黄思婷-昨暝的梦(无原唱),http://em.21dtv.com/songs/60065640.mkv +99乐团-追梦的路,http://em.21dtv.com/songs/60133164.mkv +郑萧-最美的花,http://em.21dtv.com/songs/60093323.mkv +卓依婷-祖母的话,http://em.21dtv.com/songs/60065453.mkv +小凤凤-祖母的话,http://em.21dtv.com/songs/60060030.mkv +邓丽君-祖母的话(演唱会),http://em.21dtv.com/songs/60060029.mkv +尚琪祺-最美的光,http://em.21dtv.com/songs/60087159.mkv +降央卓玛-卓玛的歌,http://em.21dtv.com/songs/60069028.mkv +申晨奕-最美的错,http://em.21dtv.com/songs/60084646.mkv +东方红艳-最美的爱,http://em.21dtv.com/songs/60121331.mkv +陈萍+谭希彬-最美的爱,http://em.21dtv.com/songs/60079803.mkv +于朦胧-追梦赤子,http://em.21dtv.com/songs/60086272.mkv +乌兰河-醉美草原,http://em.21dtv.com/songs/60103855.mkv +塔宏伟-醉美草原,http://em.21dtv.com/songs/60062972.mkv +陈宾彬-醉美苍溪,http://em.21dtv.com/songs/60134400.mkv +车晓菲-最美诚信,http://em.21dtv.com/songs/60118945.mkv +曾志祥+关锶敏-追梦村田,http://em.21dtv.com/songs/60115207.mkv +佚名-在牧场上,http://em.21dtv.com/songs/60057082.mkv +乌兰托娅-最美传奇,http://em.21dtv.com/songs/60125080.mkv +MIC男团-逐梦传奇,http://em.21dtv.com/songs/60112449.mkv +朱海君-执迷不悟,http://em.21dtv.com/songs/60132516.mkv +唐妍-执迷不悟,http://em.21dtv.com/songs/60122625.mkv +天宝-执迷不悟,http://em.21dtv.com/songs/60106746.mkv +王中平-执迷不悟,http://em.21dtv.com/songs/60099390.mkv +张宇+林蒙-执迷不悟,http://em.21dtv.com/songs/60058709.mkv +孙楠-执迷不悔,http://em.21dtv.com/songs/60108422.mkv +胡维纳+范玮琪-执迷不悔,http://em.21dtv.com/songs/60095064.mkv +彭佳慧-执迷不悔,http://em.21dtv.com/songs/60087125.mkv +邰正宵-执迷不悔,http://em.21dtv.com/songs/60080264.mkv +王菲-执迷不悔,http://em.21dtv.com/songs/60058708.mkv +裘海正-执迷不悔,http://em.21dtv.com/songs/60058707.mkv +郑秀文-执迷不悔(演唱会),http://em.21dtv.com/songs/60058706.mkv +王菲-执迷不悔(演唱会),http://em.21dtv.com/songs/60058705.mkv +梁咏琪-执迷不悔(演唱会),http://em.21dtv.com/songs/60058704.mkv +君君-自命不凡,http://em.21dtv.com/songs/60059719.mkv +艾沫儿-最美宝贝,http://em.21dtv.com/songs/60071557.mkv +陈小春-装聋作哑,http://em.21dtv.com/songs/60059473.mkv +孙燕姿-直来直往,http://em.21dtv.com/songs/60058740.mkv +乌尔那真-醉了醉了,http://em.21dtv.com/songs/60086305.mkv +佚名-紫菱洲歌,http://em.21dtv.com/songs/60059649.mkv +佚名-卓兰之歌(伦巴),http://em.21dtv.com/songs/60059592.mkv +卢巧音-自恋影院,http://em.21dtv.com/songs/60059717.mkv +蓝紫-这里有我,http://em.21dtv.com/songs/60086234.mkv +陈奕迅-最冷一天,http://em.21dtv.com/songs/60067834.mkv +吕继宏-左邻右舍,http://em.21dtv.com/songs/60060644.mkv +高超-再来一瓶,http://em.21dtv.com/songs/60061870.mkv +星梦传奇群星-左邻右里,http://em.21dtv.com/songs/60097192.mkv +群星-左邻右里,http://em.21dtv.com/songs/60087165.mkv +谭咏麟-左麟右里,http://em.21dtv.com/songs/60060645.mkv +谭咏麟+李克勤-左邻右里,http://em.21dtv.com/songs/60060643.mkv +谭咏麟+李克勤-左邻右里(演唱会),http://em.21dtv.com/songs/60060641.mkv +谢雷-再来一个,http://em.21dtv.com/songs/60056931.mkv +孙淑媚-走路有风,http://em.21dtv.com/songs/60066613.mkv +张宇-走路有风,http://em.21dtv.com/songs/60059928.mkv +海洋-再来一杯,http://em.21dtv.com/songs/60114658.mkv +司徒昌磊-再来一杯,http://em.21dtv.com/songs/60080697.mkv +邓丽君-再来一杯,http://em.21dtv.com/songs/60056930.mkv +伍浩哲-照亮希望,http://em.21dtv.com/songs/60096184.mkv +唐嫣-众里寻他,http://em.21dtv.com/songs/60103170.mkv +许茹芸-众里寻他,http://em.21dtv.com/songs/60092073.mkv +TANK-蟑螂小强,http://em.21dtv.com/songs/60057550.mkv +韩红-众里寻你(演唱会),http://em.21dtv.com/songs/60059082.mkv +郭子-字里行间,http://em.21dtv.com/songs/60059822.mkv +谢安琪-字里行奸,http://em.21dtv.com/songs/60059821.mkv +B.GS-壮丽舞台,http://em.21dtv.com/songs/60109800.mkv +何超仪-指鹿为马,http://em.21dtv.com/songs/60065489.mkv +张学友-坠落天堂,http://em.21dtv.com/songs/60059568.mkv +依稀-坠落天使,http://em.21dtv.com/songs/60059567.mkv +张敬轩-走了十岁,http://em.21dtv.com/songs/60059924.mkv +DEAR JANE-战狼三国,http://em.21dtv.com/songs/60057470.mkv +葫芦丝-竹林深处,http://em.21dtv.com/songs/60124849.mkv +王力宏-竹林深处,http://em.21dtv.com/songs/60059236.mkv +佚名-坠落情网,http://em.21dtv.com/songs/60059566.mkv +张瀛仁-咱来恰恰,http://em.21dtv.com/songs/60115914.mkv +罗文聪-坠落情海,http://em.21dtv.com/songs/60059565.mkv +葫芦丝-竹楼情歌,http://em.21dtv.com/songs/60124850.mkv +蓝星+杨东亮-竹楼情歌,http://em.21dtv.com/songs/60059237.mkv +阿牛-至霖情歌(演唱会),http://em.21dtv.com/songs/60058797.mkv +王鑫+李泽+张家铭-醉了青春,http://em.21dtv.com/songs/60127212.mkv +吴俣-自恋女王,http://em.21dtv.com/songs/60105695.mkv +徐熙媛-占领年青,http://em.21dtv.com/songs/60091202.mkv +ASOS-占领年轻,http://em.21dtv.com/songs/60057457.mkv +郑秀文-至理名言,http://em.21dtv.com/songs/60058796.mkv +张振宇-至理名言,http://em.21dtv.com/songs/60058795.mkv +乌吉斯古楞-哲里木湖,http://em.21dtv.com/songs/60123600.mkv +刘一祯-总理来了,http://em.21dtv.com/songs/60059827.mkv +媛媛-竹林恋歌,http://em.21dtv.com/songs/60110130.mkv +樊凡-重恋旧地(演唱会),http://em.21dtv.com/songs/60066601.mkv +阎维文+殷秀梅-壮丽航程,http://em.21dtv.com/songs/60133022.mkv +咪依鲁江-竹楼姑娘,http://em.21dtv.com/songs/60123775.mkv +咪依鲁江-竹楼姑娘,http://em.21dtv.com/songs/60079674.mkv +林家声+吴家丽-苎罗访艳(戏曲),http://em.21dtv.com/songs/60092863.mkv +盖鸣晖+吴美英-苎萝访艳,http://em.21dtv.com/songs/60059271.mkv +夏婉安-竹林抚琴,http://em.21dtv.com/songs/60118470.mkv +东学-咱老父亲,http://em.21dtv.com/songs/60057241.mkv +贰婶+流浪的蛙蛙-逐浪飞花,http://em.21dtv.com/songs/60118918.mkv +吴大维-坠落的星,http://em.21dtv.com/songs/60059564.mkv +王矜霖-自恋的我,http://em.21dtv.com/songs/60113870.mkv +甜美真+东仔-坠落都市,http://em.21dtv.com/songs/60071539.mkv +郑智化-找路的人,http://em.21dtv.com/songs/60057681.mkv +秦永-早来的爱,http://em.21dtv.com/songs/60101462.mkv +曹尔真-走了的爱,http://em.21dtv.com/songs/60065516.mkv +周华健-做了错了,http://em.21dtv.com/songs/60060706.mkv +盛希-咱老百姓,http://em.21dtv.com/songs/60117102.mkv +吕继宏-咱老百姓,http://em.21dtv.com/songs/60057240.mkv +刘和刚-咱老百姓(演唱会),http://em.21dtv.com/songs/60057239.mkv +张沫凡-咋了爸爸,http://em.21dtv.com/songs/60131409.mkv +蔡健雅-坐立不安(演唱会),http://em.21dtv.com/songs/60060684.mkv +柳智娴-只看着你,http://em.21dtv.com/songs/60125800.mkv +陈洁仪-只哭一天,http://em.21dtv.com/songs/60058417.mkv +许巍-坐看云起(演唱会),http://em.21dtv.com/songs/60060683.mkv +刘德华-张开眼睛,http://em.21dtv.com/songs/60057537.mkv +谭咏麟-怎可忘记,http://em.21dtv.com/songs/60057340.mkv +曾辉彬+廖经华-作客他乡,http://em.21dtv.com/songs/60060672.mkv +熊立红-这块土地,http://em.21dtv.com/songs/60079546.mkv +孝琳-再靠近些,http://em.21dtv.com/songs/60114485.mkv +炎亚纶-只看见你,http://em.21dtv.com/songs/60058415.mkv +张柏芝-只靠感觉,http://em.21dtv.com/songs/60092628.mkv +妙音兄弟-宗喀的缘,http://em.21dtv.com/songs/60126762.mkv +光良-张开翅膀,http://em.21dtv.com/songs/60111700.mkv +罗中旭-自己主宰,http://em.21dtv.com/songs/60059712.mkv +辛子奇-最佳状态,http://em.21dtv.com/songs/60060336.mkv +张韶涵-再见之前,http://em.21dtv.com/songs/60123962.mkv +吴映洁-再见朱丽,http://em.21dtv.com/songs/60099867.mkv +黄平-再接再励,http://em.21dtv.com/songs/60070212.mkv +沈波-最佳主角,http://em.21dtv.com/songs/60135486.mkv +李易峰-再见再见,http://em.21dtv.com/songs/60112754.mkv +群星-再见再见,http://em.21dtv.com/songs/60112143.mkv +莫文蔚-再见自己,http://em.21dtv.com/songs/60107157.mkv +莫文蔚-再见自己,http://em.21dtv.com/songs/60106233.mkv +逃跑计划-再见再见,http://em.21dtv.com/songs/60086205.mkv +毕书尽-再见再见,http://em.21dtv.com/songs/60080089.mkv +邢蓉-作茧自缚,http://em.21dtv.com/songs/60132977.mkv +徐浩-知己之笔,http://em.21dtv.com/songs/60112705.mkv +王菲-知己知彼,http://em.21dtv.com/songs/60058668.mkv +李泉-再见忧伤,http://em.21dtv.com/songs/60103363.mkv +张彬-走进云南,http://em.21dtv.com/songs/60091087.mkv +李玟-再见一面,http://em.21dtv.com/songs/60056913.mkv +林子祥-再见杨柳,http://em.21dtv.com/songs/60056911.mkv +方珈悠-最紧要快,http://em.21dtv.com/songs/60060340.mkv +梁咏琪-左脚右脚,http://em.21dtv.com/songs/60060639.mkv +梁汉文-主角一号,http://em.21dtv.com/songs/60112041.mkv +周晏伊-直接一点,http://em.21dtv.com/songs/60117621.mkv +白举纲-再见原点,http://em.21dtv.com/songs/60107087.mkv +张跃-最佳影帝,http://em.21dtv.com/songs/60034927.mkv +张柏芝+高雪南-咫距一寸,http://em.21dtv.com/songs/60058790.mkv +TANK-终极一班,http://em.21dtv.com/songs/60059021.mkv +汪苏泷-早!加油,http://em.21dtv.com/songs/60127158.mkv +李娜-走进西藏,http://em.21dtv.com/songs/60059910.mkv +印子月-终极信仰,http://em.21dtv.com/songs/60134967.mkv +余涟-走进西塘,http://em.21dtv.com/songs/60115004.mkv +任贤齐-拯救心田,http://em.21dtv.com/songs/60058338.mkv +朴智敏+d.ear-逐渐相似,http://em.21dtv.com/songs/60131491.mkv +萧淑慎+杨谨华+吴辰君-终极西门,http://em.21dtv.com/songs/60059019.mkv +5566-终极陷阱,http://em.21dtv.com/songs/60059020.mkv +马郁-再见习惯,http://em.21dtv.com/songs/60105524.mkv +徐安则-肢解幸福,http://em.21dtv.com/songs/60069007.mkv +矫妮妮-走进西藏,http://em.21dtv.com/songs/60113905.mkv +谭维维-走进西藏,http://em.21dtv.com/songs/60088681.mkv +陈慧琳-最佳位置,http://em.21dtv.com/songs/60060335.mkv +陈慧琳-最佳位置(演唱会),http://em.21dtv.com/songs/60060334.mkv +棉花糖-再见王子,http://em.21dtv.com/songs/60056894.mkv +蜘蛛-在叫我吗,http://em.21dtv.com/songs/60111393.mkv +何欣穗-自己喂狗,http://em.21dtv.com/songs/60059706.mkv +韩庚+萧亚轩-最佳听众,http://em.21dtv.com/songs/60070277.mkv +飞轮海-最佳听众,http://em.21dtv.com/songs/60060333.mkv +陈晓东-最佳听众,http://em.21dtv.com/songs/60060332.mkv +刘杨-再见天堂,http://em.21dtv.com/songs/60065449.mkv +刘文涛-走进太山,http://em.21dtv.com/songs/60121444.mkv +黎明-真假天使,http://em.21dtv.com/songs/60093569.mkv +苏永康-住家甜品,http://em.21dtv.com/songs/60059267.mkv +利得汇-再见太难,http://em.21dtv.com/songs/60056893.mkv +林子博+张景淳-最佳损友,http://em.21dtv.com/songs/60087158.mkv +陈奕迅-最佳损友,http://em.21dtv.com/songs/60060331.mkv +谢安琪-最佳损友(演唱会),http://em.21dtv.com/songs/60060329.mkv +软硬天师-最佳损友(演唱会),http://em.21dtv.com/songs/60060328.mkv +屠洪纲-再见是缘,http://em.21dtv.com/songs/60056892.mkv +钱红-这就是我,http://em.21dtv.com/songs/60065470.mkv +詹采妮-这就是我,http://em.21dtv.com/songs/60057811.mkv +傅振辉-这就是我,http://em.21dtv.com/songs/60057810.mkv +戴佩妮-这就是我,http://em.21dtv.com/songs/60057809.mkv +齐宝石-再见思思,http://em.21dtv.com/songs/60102933.mkv +魏健-再见十年,http://em.21dtv.com/songs/60118197.mkv +王矜霖-再见少年,http://em.21dtv.com/songs/60115304.mkv +黄渤-这就是命,http://em.21dtv.com/songs/60124747.mkv +兰天-指尖思恋,http://em.21dtv.com/songs/60097337.mkv +T ara-战舰世界,http://em.21dtv.com/songs/60119194.mkv +八三夭-拯救世界,http://em.21dtv.com/songs/60058337.mkv +曾沛慈-终极三国,http://em.21dtv.com/songs/60091281.mkv +丛浩楠-再见时光,http://em.21dtv.com/songs/60056891.mkv +JS-这就是爱,http://em.21dtv.com/songs/60109827.mkv +蟑螂乐队-这就是爱,http://em.21dtv.com/songs/60057806.mkv +张杰-这就是爱,http://em.21dtv.com/songs/60057805.mkv +佚名-这就是爱,http://em.21dtv.com/songs/60057804.mkv +萧闳仁-这就是爱,http://em.21dtv.com/songs/60057803.mkv +王心凌-这就是爱,http://em.21dtv.com/songs/60057802.mkv +范玮琪-这就是爱,http://em.21dtv.com/songs/60057801.mkv +夏天Alex+臧恰-最佳人选,http://em.21dtv.com/songs/60135073.mkv +王壹珊-走街人生(无原唱),http://em.21dtv.com/songs/60059906.mkv +草蜢-再见rainy days,http://em.21dtv.com/songs/60056829.mkv +胡力-再见如初,http://em.21dtv.com/songs/60102638.mkv +佚名-在军旗下,http://em.21dtv.com/songs/60057063.mkv +李自强-再见情人,http://em.21dtv.com/songs/60056889.mkv +关淑怡-真假情话,http://em.21dtv.com/songs/60058129.mkv +曾静玟-指尖前方,http://em.21dtv.com/songs/60099282.mkv +谭晶-再见青春,http://em.21dtv.com/songs/60132897.mkv +许哲-再见青春,http://em.21dtv.com/songs/60114054.mkv +汪峰-再见青春,http://em.21dtv.com/songs/60065448.mkv +李魏西-最佳评审,http://em.21dtv.com/songs/60100173.mkv +黄品冠-最佳品牌,http://em.21dtv.com/songs/60060327.mkv +梁雨恩-最佳配乐,http://em.21dtv.com/songs/60060326.mkv +陈美凤+张伟文-再见puppy love,http://em.21dtv.com/songs/60056828.mkv +杨千嬅+黄耀明-再见puppy love(演唱会),http://em.21dtv.com/songs/60056827.mkv +黄耀明+杨千嬅-再见 poppy love(演唱会),http://em.21dtv.com/songs/60056809.mkv +许冠杰-最佳拍挡,http://em.21dtv.com/songs/60092049.mkv +黑龙+冷漠-最佳拍档,http://em.21dtv.com/songs/60084643.mkv +冷漠-最佳拍档,http://em.21dtv.com/songs/60065527.mkv +杜德伟-最佳拍档,http://em.21dtv.com/songs/60060325.mkv +软硬天师-最佳拍档(演唱会),http://em.21dtv.com/songs/60060324.mkv +谭咏麟-最佳拍挡,http://em.21dtv.com/songs/60060323.mkv +谭咏麟-最佳拍挡(无原唱),http://em.21dtv.com/songs/60060322.mkv +黄智博-最佳男友,http://em.21dtv.com/songs/60067832.mkv +容祖儿-炸机女王,http://em.21dtv.com/songs/60057426.mkv +叶蓓-在劫难逃(演唱会),http://em.21dtv.com/songs/60057062.mkv +SOLER+林忆莲-住家男人,http://em.21dtv.com/songs/60092192.mkv +容祖儿+蔡一智+苏志威-住家男人(演唱会),http://em.21dtv.com/songs/60059266.mkv +林忆莲+SOLER-住家男人(演唱会),http://em.21dtv.com/songs/60059265.mkv +张雨生-再见女郎,http://em.21dtv.com/songs/60101635.mkv +佚名-再见南国,http://em.21dtv.com/songs/60033239.mkv +殷秀梅-走近南方,http://em.21dtv.com/songs/60091544.mkv +熊汝霖-终极梦想,http://em.21dtv.com/songs/60059013.mkv +方磊-再见某人,http://em.21dtv.com/songs/60118615.mkv +王宏伟-长江妈妈,http://em.21dtv.com/songs/60081714.mkv +黄品源-真久没看,http://em.21dtv.com/songs/60058131.mkv +关智斌-再见美惠,http://em.21dtv.com/songs/60056881.mkv +于丽娜-长剑礼赞,http://em.21dtv.com/songs/60090497.mkv +陈永峰-走进龙州,http://em.21dtv.com/songs/60079744.mkv +包启宁-再见理想,http://em.21dtv.com/songs/60134948.mkv +黄家强+黄贯中-再见理想,http://em.21dtv.com/songs/60093534.mkv +谢安琪-再见理想(演唱会),http://em.21dtv.com/songs/60056876.mkv +BEYOND-再见理想(演唱会),http://em.21dtv.com/songs/60056875.mkv +群星-再见理想(HD演唱会),http://em.21dtv.com/songs/60056874.mkv +卓依婷-再见蓝天,http://em.21dtv.com/songs/60134956.mkv +汤潮-再见丽江,http://em.21dtv.com/songs/60097221.mkv +潘越云-再见离别,http://em.21dtv.com/songs/60090064.mkv +阿朵-再见卡门(演唱会),http://em.21dtv.com/songs/60056862.mkv +群星-重建家园,http://em.21dtv.com/songs/60059132.mkv +林可昕-再见旧人,http://em.21dtv.com/songs/60124124.mkv +痛仰乐队-再见杰克(演唱会),http://em.21dtv.com/songs/60056861.mkv +GOLDEN-足金金猴,http://em.21dtv.com/songs/60079751.mkv +冯曦妤-再见警察,http://em.21dtv.com/songs/60079462.mkv +群星-祝君进步,http://em.21dtv.com/songs/60059357.mkv +叶俊华-走进惠州,http://em.21dtv.com/songs/60125262.mkv +西子-知己红颜,http://em.21dtv.com/songs/60112225.mkv +莫文蔚+李宗盛-走进回忆,http://em.21dtv.com/songs/60091960.mkv +彭炽权-祝君好运,http://em.21dtv.com/songs/60079689.mkv +张韶涵-最近好吗,http://em.21dtv.com/songs/60070279.mkv +金莎-最近好吗,http://em.21dtv.com/songs/60060345.mkv +苏志燮+Changmo-在就好了,http://em.21dtv.com/songs/60134158.mkv +自画像乐队-再见哈喽,http://em.21dtv.com/songs/60126091.mkv +自画像-再见哈喽,http://em.21dtv.com/songs/60106217.mkv +浩子-朱槿花开,http://em.21dtv.com/songs/60059201.mkv +郭书瑶-自己回家,http://em.21dtv.com/songs/60059701.mkv +丁丁-最佳观众,http://em.21dtv.com/songs/60105537.mkv +胡渭康-自己搞作,http://em.21dtv.com/songs/60067821.mkv +苏勒亚其其格-走进观音,http://em.21dtv.com/songs/60093790.mkv +大帅+小黑(大帅+郑新)-湛江故事,http://em.21dtv.com/songs/60132331.mkv +许嵩-最佳歌手,http://em.21dtv.com/songs/60124476.mkv +许嵩-最佳歌手,http://em.21dtv.com/songs/60123170.mkv +黄湘怡-再见过去,http://em.21dtv.com/songs/60056858.mkv +卢广仲-再见勾勾,http://em.21dtv.com/songs/60056857.mkv +五月天-终结孤单,http://em.21dtv.com/songs/60059023.mkv +五月天-终结孤单(演唱会),http://em.21dtv.com/songs/60059022.mkv +余天-再见干杯,http://em.21dtv.com/songs/60056856.mkv +孙悦-自己负责,http://em.21dtv.com/songs/60059700.mkv +威仔+阿夏-终结敷衍,http://em.21dtv.com/songs/60133550.mkv +方炯嘉-直觉反应,http://em.21dtv.com/songs/60105104.mkv +陆正信-壮锦飞舞,http://em.21dtv.com/songs/60100555.mkv +群星-自己发电,http://em.21dtv.com/songs/60059699.mkv +乱弹阿翔-最近的我(无原唱),http://em.21dtv.com/songs/60095383.mkv +陈威全-再见单身,http://em.21dtv.com/songs/60056851.mkv +杜德伟-拯救地球,http://em.21dtv.com/songs/60058336.mkv +陈容森-拯救地球,http://em.21dtv.com/songs/60058335.mkv +杜德伟-拯救地球(演唱会),http://em.21dtv.com/songs/60058334.mkv +Joy-最近的你,http://em.21dtv.com/songs/60134714.mkv +佚名-自己的梦,http://em.21dtv.com/songs/60059694.mkv +梁汉文-住家丁面,http://em.21dtv.com/songs/60059264.mkv +任飞扬-自己的路,http://em.21dtv.com/songs/60087144.mkv +李恒茁-自己的歌,http://em.21dtv.com/songs/60130420.mkv +天堂乐队-赵家大哥,http://em.21dtv.com/songs/60090867.mkv +郭富城-最激帝国,http://em.21dtv.com/songs/60060312.mkv +郭富城-最激帝国(演唱会),http://em.21dtv.com/songs/60060311.mkv +王南-直觉的错,http://em.21dtv.com/songs/60099397.mkv +彭莉-再见车站,http://em.21dtv.com/songs/60056849.mkv +游牧人组合-走进草原,http://em.21dtv.com/songs/60121887.mkv +游美灵-走进草原,http://em.21dtv.com/songs/60104289.mkv +胡东清-走进草原,http://em.21dtv.com/songs/60062466.mkv +董文华+阎维文-走进春天,http://em.21dtv.com/songs/60106246.mkv +王庆爽-走进春天(演唱会),http://em.21dtv.com/songs/60084614.mkv +毕玉凝-走进春天,http://em.21dtv.com/songs/60066612.mkv +佚名-走进春天,http://em.21dtv.com/songs/60059908.mkv +宋祖英-走进春天,http://em.21dtv.com/songs/60059907.mkv +孙丽英-昭君出塞,http://em.21dtv.com/songs/60119414.mkv +孙丽英-昭君出塞,http://em.21dtv.com/songs/60084529.mkv +关青-昭君出塞,http://em.21dtv.com/songs/60057655.mkv +任建红-昭君出嫁,http://em.21dtv.com/songs/60084528.mkv +麦浚龙-自己保重,http://em.21dtv.com/songs/60059690.mkv +E+KIDS-最佳表情,http://em.21dtv.com/songs/60092165.mkv +潘越云-再见别离,http://em.21dtv.com/songs/60056845.mkv +蒲洋-再见不见,http://em.21dtv.com/songs/60056846.mkv +贺敬轩-只借不还,http://em.21dtv.com/songs/60120957.mkv +陈思思-自君别后(无原唱),http://em.21dtv.com/songs/60059714.mkv +梁一贞-转角悲歌,http://em.21dtv.com/songs/60079698.mkv +少军-再见宝贝,http://em.21dtv.com/songs/60132397.mkv +黑色饼干-再见bye bye,http://em.21dtv.com/songs/60056824.mkv +林忆莲-再见悲哀,http://em.21dtv.com/songs/60056843.mkv +林忆莲-再见悲哀(演唱会),http://em.21dtv.com/songs/60056842.mkv +李泽坚-再见爱人,http://em.21dtv.com/songs/60079458.mkv +伦永亮-再见爱人,http://em.21dtv.com/songs/60056833.mkv +天翔-再见爱情,http://em.21dtv.com/songs/60125355.mkv +高安-再见爱情,http://em.21dtv.com/songs/60086201.mkv +后羿+淳子-拯救爱情,http://em.21dtv.com/songs/60069005.mkv +佚名-再见阿郎,http://em.21dtv.com/songs/60056832.mkv +王菀之-之乎者也,http://em.21dtv.com/songs/60123015.mkv +文夏-最后之夜,http://em.21dtv.com/songs/60060305.mkv +范琳琳-中华尊严,http://em.21dtv.com/songs/60058969.mkv +罗大佑-之乎者也(演唱会),http://em.21dtv.com/songs/60058379.mkv +陈文清-找回自我,http://em.21dtv.com/songs/60070233.mkv +华天憾因乐队-最后之前,http://em.21dtv.com/songs/60079798.mkv +周万明-做好自己,http://em.21dtv.com/songs/60133480.mkv +吴沙-找回自己,http://em.21dtv.com/songs/60125296.mkv +群星-正和之光,http://em.21dtv.com/songs/60117980.mkv +黄宗泽-最后祝福,http://em.21dtv.com/songs/60084642.mkv +黄舒骏-最后祝福,http://em.21dtv.com/songs/60084641.mkv +何韵诗-做好准备(演唱会),http://em.21dtv.com/songs/60060705.mkv +郑秀文-做好准备(无原唱),http://em.21dtv.com/songs/60060704.mkv +佚名-中华之爱,http://em.21dtv.com/songs/60058968.mkv +女孩与机器人-在花园中,http://em.21dtv.com/songs/60072778.mkv +佚名-最后一站,http://em.21dtv.com/songs/60060301.mkv +江语晨-最后一页,http://em.21dtv.com/songs/60116098.mkv +陈兴海-醉后一夜,http://em.21dtv.com/songs/60103671.mkv +盛云龙-醉后一夜,http://em.21dtv.com/songs/60103492.mkv +陈慧琳-最后一眼,http://em.21dtv.com/songs/60093461.mkv +方季惟-最后一叶,http://em.21dtv.com/songs/60091262.mkv +张清芳-最后一夜,http://em.21dtv.com/songs/60060299.mkv +谢采云-最后一夜,http://em.21dtv.com/songs/60060298.mkv +刘美君-最后一夜,http://em.21dtv.com/songs/60060297.mkv +吕珊-最后一夜(演唱会),http://em.21dtv.com/songs/60060295.mkv +刘美君-最后一夜(演唱会),http://em.21dtv.com/songs/60060294.mkv +江语晨-最后一页,http://em.21dtv.com/songs/60060293.mkv +炎亚纶+OLIVIA-最后一眼(演唱会),http://em.21dtv.com/songs/60033131.mkv +尹光-中华英雄,http://em.21dtv.com/songs/60058966.mkv +胡苏-最后一晚,http://em.21dtv.com/songs/60131747.mkv +聂琳峰-最后一吻,http://em.21dtv.com/songs/60086296.mkv +佚名-最后一舞,http://em.21dtv.com/songs/60060292.mkv +那英-最后一吻,http://em.21dtv.com/songs/60060291.mkv +MC MOON+苏德牧仁-最后一天,http://em.21dtv.com/songs/60079797.mkv +螺丝钉-最后一秒,http://em.21dtv.com/songs/60060283.mkv +COOKIES-最后一块,http://em.21dtv.com/songs/60060282.mkv +容祖儿-最后一课(演唱会),http://em.21dtv.com/songs/60060281.mkv +Vinna+欧皓汐-最后一季,http://em.21dtv.com/songs/60126557.mkv +付泽-最后一句,http://em.21dtv.com/songs/60086294.mkv +田震-震憾hi呀,http://em.21dtv.com/songs/60058302.mkv +宋祖英-在海一方,http://em.21dtv.com/songs/60102150.mkv +乌兰托娅-最后一次,http://em.21dtv.com/songs/60115667.mkv +DEAR JANE-最后一次,http://em.21dtv.com/songs/60109813.mkv +孙露-最后一次,http://em.21dtv.com/songs/60084639.mkv +孙江枫-最后一次,http://em.21dtv.com/songs/60080256.mkv +孙江峰-最后一次,http://em.21dtv.com/songs/60079791.mkv +ENERGY-最後一次(演唱会),http://em.21dtv.com/songs/60060307.mkv +郑秀文-最后一次,http://em.21dtv.com/songs/60060252.mkv +张惠妹-最后一次,http://em.21dtv.com/songs/60060251.mkv +宇桐非-最后一次,http://em.21dtv.com/songs/60060250.mkv +薛晓枫-最后一次,http://em.21dtv.com/songs/60060249.mkv +ENERGY-最后一次,http://em.21dtv.com/songs/60060248.mkv +张惠妹-最后一次(演唱会),http://em.21dtv.com/songs/60060247.mkv +刘一祯-中华孝心,http://em.21dtv.com/songs/60071527.mkv +穆爱娜-中华姓氏,http://em.21dtv.com/songs/60088373.mkv +路绮欧-总会想起,http://em.21dtv.com/songs/60084606.mkv +许冠杰-再会香港,http://em.21dtv.com/songs/60094297.mkv +陈星-中华雄关,http://em.21dtv.com/songs/60058965.mkv +李昱和-中华孝道,http://em.21dtv.com/songs/60127031.mkv +阿赖-走好兄弟,http://em.21dtv.com/songs/60114192.mkv +李昱和-中华孝道,http://em.21dtv.com/songs/60106942.mkv +阿丽玛-再回西藏,http://em.21dtv.com/songs/60134374.mkv +容祖儿-最坏下场,http://em.21dtv.com/songs/60092526.mkv +胡东清-中华武术,http://em.21dtv.com/songs/60058963.mkv +佚名-最后舞曲(无原唱),http://em.21dtv.com/songs/60060240.mkv +林嘉欣-最后我们,http://em.21dtv.com/songs/60060238.mkv +F4-最后握别,http://em.21dtv.com/songs/60060239.mkv +孙宇-纵横天下,http://em.21dtv.com/songs/60103199.mkv +佚名-扎红头绳,http://em.21dtv.com/songs/60057416.mkv +堂娜-最后探戈,http://em.21dtv.com/songs/60060236.mkv +张蓉蓉-妆乎水水,http://em.21dtv.com/songs/60059466.mkv +黄妃-妆乎水水,http://em.21dtv.com/songs/60059465.mkv +谢霆锋-最后审判,http://em.21dtv.com/songs/60060233.mkv +傅颖-最好是你,http://em.21dtv.com/songs/60123636.mkv +赵天赐-中华少年,http://em.21dtv.com/songs/60104454.mkv +郑秀文-最后胜利,http://em.21dtv.com/songs/60093312.mkv +容祖儿-最后胜利(演唱会),http://em.21dtv.com/songs/60060234.mkv +应昌佑-怎会失恋(演唱会),http://em.21dtv.com/songs/60057339.mkv +徐千雅+陈一凡-中华善歌,http://em.21dtv.com/songs/60087137.mkv +容祖儿-最好时光,http://em.21dtv.com/songs/60060162.mkv +容祖儿-最好时光(演唱会),http://em.21dtv.com/songs/60060161.mkv +谭咏麟-醉红色的(演唱会),http://em.21dtv.com/songs/60060495.mkv +陈文浩-走火入魔,http://em.21dtv.com/songs/60121079.mkv +伊琳-走火入魔,http://em.21dtv.com/songs/60059905.mkv +黄海涛-走火入魔,http://em.21dtv.com/songs/60059904.mkv +丁当+阿信-走火入魔,http://em.21dtv.com/songs/60059903.mkv +芭比-走火入魔,http://em.21dtv.com/songs/60059902.mkv +叶倩文-走火入魔(演唱会),http://em.21dtv.com/songs/60059901.mkv +寒武纪-沾花惹草,http://em.21dtv.com/songs/60107674.mkv +张智霖-怎会如此,http://em.21dtv.com/songs/60057338.mkv +仲维军-紫环-前章,http://em.21dtv.com/songs/60059644.mkv +苏都阿洛-中华情韵,http://em.21dtv.com/songs/60088547.mkv +雪村-征婚启事(演唱会),http://em.21dtv.com/songs/60058325.mkv +容祖儿-最后情人,http://em.21dtv.com/songs/60062893.mkv +林霞+刘舫-走婚情歌,http://em.21dtv.com/songs/60084613.mkv +天娇组合-竹海情歌,http://em.21dtv.com/songs/60081398.mkv +TWINS-组合情歌(演唱会),http://em.21dtv.com/songs/60065521.mkv +陈奕迅-最后派对,http://em.21dtv.com/songs/60060231.mkv +黎明-最好你走,http://em.21dtv.com/songs/60060160.mkv +郭富城-在怀念你(还需勇气),http://em.21dtv.com/songs/60093352.mkv +廖昌永-中华民族,http://em.21dtv.com/songs/60123899.mkv +江涛-中华民族,http://em.21dtv.com/songs/60094197.mkv +张明敏-中华民族,http://em.21dtv.com/songs/60058957.mkv +佚名-中华民族,http://em.21dtv.com/songs/60058956.mkv +杨洪基-中华民族,http://em.21dtv.com/songs/60058955.mkv +刘家昌-中华民族,http://em.21dtv.com/songs/60058954.mkv +佚名-中华民族(演唱会),http://em.21dtv.com/songs/60058953.mkv +张艳君-中华梦圆,http://em.21dtv.com/songs/60111083.mkv +张新-中华民谣,http://em.21dtv.com/songs/60091108.mkv +卓依婷-中华民谣,http://em.21dtv.com/songs/60058952.mkv +谢东-中华民谣,http://em.21dtv.com/songs/60058951.mkv +孙浩-中华民谣,http://em.21dtv.com/songs/60058950.mkv +周传雄-最后慢舞,http://em.21dtv.com/songs/60060229.mkv +冯晓菲-中华美德,http://em.21dtv.com/songs/60099772.mkv +庄学忠-中华礼赞,http://em.21dtv.com/songs/60058947.mkv +大隶+陈艾琳-最后恋人,http://em.21dtv.com/songs/60114467.mkv +邓丽欣-中华冷面,http://em.21dtv.com/songs/60058946.mkv +Navi-在汉江前,http://em.21dtv.com/songs/60108234.mkv +杨韵禾-最后纪念,http://em.21dtv.com/songs/60060228.mkv +彝人制造-纵横江湖,http://em.21dtv.com/songs/60079740.mkv +梁静茹-最后警告,http://em.21dtv.com/songs/60091529.mkv +邹文正-最后警告,http://em.21dtv.com/songs/60084637.mkv +孙异-重回汉唐,http://em.21dtv.com/songs/60059130.mkv +叶俊华-中华好汉,http://em.21dtv.com/songs/60099855.mkv +高瑜-转换格式,http://em.21dtv.com/songs/60098949.mkv +姚文国-葬花姑娘,http://em.21dtv.com/songs/60057277.mkv +多亮-醉后放手,http://em.21dtv.com/songs/60086302.mkv +佚名-只好分手,http://em.21dtv.com/songs/60058406.mkv +晨威-战火父亲,http://em.21dtv.com/songs/60072784.mkv +阎维文+褚海辰-中华儿女,http://em.21dtv.com/songs/60114846.mkv +杨千桦-最好的债,http://em.21dtv.com/songs/60107812.mkv +田震-最后的夜,http://em.21dtv.com/songs/60060216.mkv +朱海君-纸糊的心,http://em.21dtv.com/songs/60058769.mkv +房祖名+龚芝怡-最好的我,http://em.21dtv.com/songs/60060155.mkv +汤竣业-最好的事,http://em.21dtv.com/songs/60097442.mkv +林忆莲-最好的事,http://em.21dtv.com/songs/60060153.mkv +晓枫-醉后的泪,http://em.21dtv.com/songs/60100091.mkv +张辉-张辉的歌,http://em.21dtv.com/songs/60067784.mkv +杨千嬅-最后的歌(演唱会),http://em.21dtv.com/songs/60060179.mkv +佚名-最后等待(无原唱),http://em.21dtv.com/songs/60060225.mkv +陈启泰-最后答案,http://em.21dtv.com/songs/60093391.mkv +刘依纯-最后的爱,http://em.21dtv.com/songs/60079778.mkv +米蓝-最后的爱,http://em.21dtv.com/songs/60060169.mkv +王力宏-最好的爱,http://em.21dtv.com/songs/60060144.mkv +周柏豪-最好不过,http://em.21dtv.com/songs/60060142.mkv +黄西田+樱桃姐妹-再会爱人,http://em.21dtv.com/songs/60056766.mkv +刘浩龙-脏话阿七,http://em.21dtv.com/songs/60067774.mkv +袁小迪+张秀卿-再会安平,http://em.21dtv.com/songs/60063308.mkv +漠然-总攻自传,http://em.21dtv.com/songs/60069033.mkv +邓宁-中国制造,http://em.21dtv.com/songs/60058940.mkv +徐子崴-中国之最,http://em.21dtv.com/songs/60058938.mkv +马艳-中国之夜,http://em.21dtv.com/songs/60069016.mkv +高枫-中国在线,http://em.21dtv.com/songs/60058935.mkv +隋一宁-载歌载舞,http://em.21dtv.com/songs/60114876.mkv +方伊琪-载歌载舞(演唱会),http://em.21dtv.com/songs/60079447.mkv +佚名-载歌载舞,http://em.21dtv.com/songs/60056709.mkv +许晓杰-祖国至上,http://em.21dtv.com/songs/60097364.mkv +付笛声-中国志气,http://em.21dtv.com/songs/60058939.mkv +侯丽娟-祖国之恋,http://em.21dtv.com/songs/60120331.mkv +王亚平-中国之路,http://em.21dtv.com/songs/60067804.mkv +王丽达-祖国之恋,http://em.21dtv.com/songs/60060027.mkv +东来东往-只怪自己,http://em.21dtv.com/songs/60122458.mkv +张含韵-照顾自己,http://em.21dtv.com/songs/60094096.mkv +极泷-中国字画,http://em.21dtv.com/songs/60131539.mkv +张曼-中国真好,http://em.21dtv.com/songs/60084337.mkv +王曼力-中国中国,http://em.21dtv.com/songs/60123006.mkv +音乐走廊-中国中国,http://em.21dtv.com/songs/60109731.mkv +姬长乐-中国战歌,http://em.21dtv.com/songs/60104914.mkv +常思思-祖国知道,http://em.21dtv.com/songs/60080902.mkv +王霞-祖国真大,http://em.21dtv.com/songs/60060023.mkv +陈敏之-逐格重播,http://em.21dtv.com/songs/60059244.mkv +谭娟-祖国之爱,http://em.21dtv.com/songs/60131820.mkv +雨辰-走过雨巷,http://em.21dtv.com/songs/60069035.mkv +谢佳佳-中国意象,http://em.21dtv.com/songs/60058931.mkv +群星-中国有我,http://em.21dtv.com/songs/60088447.mkv +纪敏佳-中国有我,http://em.21dtv.com/songs/60088406.mkv +2-KON-中国样式,http://em.21dtv.com/songs/60058928.mkv +深海-中国爷们,http://em.21dtv.com/songs/60103420.mkv +正月十五-中国月亮,http://em.21dtv.com/songs/60131584.mkv +少儿歌曲-在公园里,http://em.21dtv.com/songs/60057048.mkv +张智成-在ktv过夜,http://em.21dtv.com/songs/60057026.mkv +玺晨-重归于好,http://em.21dtv.com/songs/60118800.mkv +李龙儿-重归于好,http://em.21dtv.com/songs/60094157.mkv +郭斯炫-醉过以后,http://em.21dtv.com/songs/60084624.mkv +小男孩乐团-这个拥抱,http://em.21dtv.com/songs/60122682.mkv +谢孟伟-中国小子(演唱会),http://em.21dtv.com/songs/60058924.mkv +郭新龙-中国信心,http://em.21dtv.com/songs/60069015.mkv +夏婉安+威仔-这个夏天,http://em.21dtv.com/songs/60118472.mkv +安来宁-这个夏天,http://em.21dtv.com/songs/60113413.mkv +高原-走过夏天,http://em.21dtv.com/songs/60109050.mkv +王博文-这个夏天,http://em.21dtv.com/songs/60081999.mkv +虞笙-这个夏天,http://em.21dtv.com/songs/60063298.mkv +郑宇文-走过夏天,http://em.21dtv.com/songs/60059897.mkv +凤凰传奇-中国喜事,http://em.21dtv.com/songs/60109174.mkv +图桠格-中国向前,http://em.21dtv.com/songs/60072812.mkv +江玲-中国新娘,http://em.21dtv.com/songs/60058925.mkv +丁新-中国兄弟,http://em.21dtv.com/songs/60084577.mkv +佚名-中国娃娃,http://em.21dtv.com/songs/60058918.mkv +蔡幸娟-中国娃娃,http://em.21dtv.com/songs/60058917.mkv +玄鸟传说-中国舞台,http://em.21dtv.com/songs/60128207.mkv +玄鸟传说-中国舞台,http://em.21dtv.com/songs/60122981.mkv +谭晶-祖国万岁,http://em.21dtv.com/songs/60101508.mkv +雷佳+韩磊-祖国万岁(演唱会),http://em.21dtv.com/songs/60079759.mkv +王姿懿+戴玉强-祖国万岁(演唱会),http://em.21dtv.com/songs/60065523.mkv +阎维文-祖国万岁,http://em.21dtv.com/songs/60060014.mkv +吴雁泽+李谷一-祖国万岁(演唱会),http://em.21dtv.com/songs/60060013.mkv +谭晶-祖国万岁(演唱会),http://em.21dtv.com/songs/60060012.mkv +谭晶-中国往事,http://em.21dtv.com/songs/60058920.mkv +陈小春-至高无上,http://em.21dtv.com/songs/60058794.mkv +陈小春-至高无上(演唱会),http://em.21dtv.com/songs/60058793.mkv +章磊-诸葛武侯,http://em.21dtv.com/songs/60082046.mkv +凤凰传奇-中国味道,http://em.21dtv.com/songs/60071525.mkv +郭斯炫-烛光晚餐,http://em.21dtv.com/songs/60084589.mkv +黄国俊-烛光晚餐,http://em.21dtv.com/songs/60059254.mkv +曹格-烛光晚餐,http://em.21dtv.com/songs/60059253.mkv +紫鹃-追赶太阳,http://em.21dtv.com/songs/60086271.mkv +邓健泓-猪骨汤面,http://em.21dtv.com/songs/60093241.mkv +刘奕辰-中国腾飞,http://em.21dtv.com/songs/60122514.mkv +洛天依-追光使者,http://em.21dtv.com/songs/60131612.mkv +佚名-走过岁月(无原唱),http://em.21dtv.com/songs/60059895.mkv +山水组合-中国山水,http://em.21dtv.com/songs/60135158.mkv +梁剑东+金枝-中国神马,http://em.21dtv.com/songs/60135454.mkv +玉面天使-走过四季,http://em.21dtv.com/songs/60108699.mkv +贾静雯-这个世界,http://em.21dtv.com/songs/60068994.mkv +阿信-追赶世界,http://em.21dtv.com/songs/60059510.mkv +蔡蓝钦-这个世界,http://em.21dtv.com/songs/60057795.mkv +五月天-这个世界(演唱会),http://em.21dtv.com/songs/60057794.mkv +周燕君-中国速度,http://em.21dtv.com/songs/60070252.mkv +草原兄妹-中国薯都,http://em.21dtv.com/songs/60070251.mkv +阎维文-中国速度,http://em.21dtv.com/songs/60058915.mkv +王强-战国时代,http://em.21dtv.com/songs/60057468.mkv +任炟名-中国陕菜,http://em.21dtv.com/songs/60126595.mkv +李萌-中国说唱,http://em.21dtv.com/songs/60103377.mkv +醉雪-早该说爱,http://em.21dtv.com/songs/60120034.mkv +关正杰+苏慧珊-这个秋天,http://em.21dtv.com/songs/60057792.mkv +张伟文+胡美仪-这个秋天(演唱会),http://em.21dtv.com/songs/60057791.mkv +李艺明-中国旗袍,http://em.21dtv.com/songs/60132566.mkv +袁冰-走过青春,http://em.21dtv.com/songs/60122097.mkv +尹相杰-中国脾气,http://em.21dtv.com/songs/60058904.mkv +陈麟-中国欧巴,http://em.21dtv.com/songs/60121102.mkv +张祥洪-做个男人,http://em.21dtv.com/songs/60084663.mkv +姜波-中国农民,http://em.21dtv.com/songs/60102096.mkv +吕继宏-中国农民,http://em.21dtv.com/songs/60102022.mkv +齐一-这个年纪,http://em.21dtv.com/songs/60136041.mkv +齐一-这个年纪,http://em.21dtv.com/songs/60127632.mkv +熊立红-祖国您好,http://em.21dtv.com/songs/60101668.mkv +陈思思-中国女孩,http://em.21dtv.com/songs/60088872.mkv +张延道-祖国你好,http://em.21dtv.com/songs/60070274.mkv +张也-祖国你好,http://em.21dtv.com/songs/60060005.mkv +刘一祯-中国母亲,http://em.21dtv.com/songs/60109175.mkv +蓝星-祖国母亲,http://em.21dtv.com/songs/60065522.mkv +于晓鸥-中国妈妈,http://em.21dtv.com/songs/60065493.mkv +慕容晓晓-赚够了没,http://em.21dtv.com/songs/60059464.mkv +孙维唯-中国力量,http://em.21dtv.com/songs/60071524.mkv +孙砾-中国老家,http://em.21dtv.com/songs/60112628.mkv +罗青青-中国凉都,http://em.21dtv.com/songs/60099447.mkv +熊立红-祖国恋,http://em.21dtv.com/songs/60093692.mkv +成龙+谭晶-中国看见,http://em.21dtv.com/songs/60058900.mkv +米娜-中国加油(演唱会),http://em.21dtv.com/songs/60058894.mkv +玖月奇迹-中国吉祥,http://em.21dtv.com/songs/60097170.mkv +董文华-祖国吉祥,http://em.21dtv.com/songs/60060004.mkv +哈辉-中国吉祥,http://em.21dtv.com/songs/60058893.mkv +陈平进-中国巨人,http://em.21dtv.com/songs/60086258.mkv +郭少杰-中国脊梁,http://em.21dtv.com/songs/60067801.mkv +北京男声合唱团-中国军魂,http://em.21dtv.com/songs/60058899.mkv +郭晋安-追根究柢,http://em.21dtv.com/songs/60088790.mkv +郭晋安-追根究抵,http://em.21dtv.com/songs/60059511.mkv +殷秀梅-中国好运,http://em.21dtv.com/songs/60067798.mkv +吴文煜-祖国和我,http://em.21dtv.com/songs/60079758.mkv +江美琪-自甘糊涂,http://em.21dtv.com/songs/60091585.mkv +顾凯-做个好人,http://em.21dtv.com/songs/60088963.mkv +尤国通-中国画卷,http://em.21dtv.com/songs/60104966.mkv +张志强-中国海疆,http://em.21dtv.com/songs/60094100.mkv +群星-中国骨气,http://em.21dtv.com/songs/60058887.mkv +王妮娜-中国姑娘,http://em.21dtv.com/songs/60121901.mkv +金志文-中国姑娘,http://em.21dtv.com/songs/60121026.mkv +张洪量-整个给你,http://em.21dtv.com/songs/60058341.mkv +春天-中国功夫,http://em.21dtv.com/songs/60086285.mkv +屠洪纲-中国功夫,http://em.21dtv.com/songs/60058886.mkv +屠洪纲-中国功夫(演唱会),http://em.21dtv.com/songs/60058885.mkv +张津涤-烛光泛舟,http://em.21dtv.com/songs/60109315.mkv +晨熙-烛光泛舟,http://em.21dtv.com/songs/60106902.mkv +林子良-自告奋勇,http://em.21dtv.com/songs/60059682.mkv +黄华丽+李宏伟-祖国放歌,http://em.21dtv.com/songs/60079756.mkv +章磊-中国范儿,http://em.21dtv.com/songs/60082045.mkv +徐子崴+徐千雅-中国范儿,http://em.21dtv.com/songs/60079647.mkv +玖月传奇-中国范儿(演唱会),http://em.21dtv.com/songs/60079646.mkv +容祖儿-祖国儿女,http://em.21dtv.com/songs/60060002.mkv +阎维文-中国的年,http://em.21dtv.com/songs/60058877.mkv +郑进一-注该的命(无原唱),http://em.21dtv.com/songs/60059287.mkv +骆海燕-走过的路,http://em.21dtv.com/songs/60107365.mkv +小米-种瓜得瓜,http://em.21dtv.com/songs/60115874.mkv +阎维文-这个地方,http://em.21dtv.com/songs/60057779.mkv +办桌二人组-这个城市,http://em.21dtv.com/songs/60057778.mkv +路童-中国传奇,http://em.21dtv.com/songs/60079645.mkv +心宝唯一-中国粗口,http://em.21dtv.com/songs/60065491.mkv +张澜澜-贞观长歌,http://em.21dtv.com/songs/60057965.mkv +张宇-整个八月,http://em.21dtv.com/songs/60058340.mkv +张宇-整个八月(演唱会),http://em.21dtv.com/songs/60058339.mkv +陈红-中国版图,http://em.21dtv.com/songs/60058866.mkv +郑秀文-珠光宝气,http://em.21dtv.com/songs/60093316.mkv +陈宝珠-珠光宝气(演唱会),http://em.21dtv.com/songs/60059210.mkv +王大文-资格不符,http://em.21dtv.com/songs/60120751.mkv +王大文-资格不符,http://em.21dtv.com/songs/60119798.mkv +游子组合-支格阿鲁,http://em.21dtv.com/songs/60107883.mkv +叶倩文-重逢之夜,http://em.21dtv.com/songs/60092406.mkv +黄义达-征服自己(演唱会),http://em.21dtv.com/songs/60058324.mkv +李创-祝福中华,http://em.21dtv.com/songs/60103354.mkv +汤灿-祝福祖国,http://em.21dtv.com/songs/60059342.mkv +吴雁泽+汤灿-祝福祖国(演唱会),http://em.21dtv.com/songs/60059341.mkv +瞿颖-绽放优雅,http://em.21dtv.com/songs/60091790.mkv +阿烁-最负英雄,http://em.21dtv.com/songs/60082628.mkv +陈小涛-张飞英雄(演唱会),http://em.21dtv.com/songs/60057534.mkv +佚名-重逢有日,http://em.21dtv.com/songs/60059119.mkv +郑伊健-蒸发眼泪(演唱会),http://em.21dtv.com/songs/60058330.mkv +杨采妮-祝福一句,http://em.21dtv.com/songs/60059339.mkv +康正昊-制服诱惑,http://em.21dtv.com/songs/60079638.mkv +乌兰托娅-祝福西藏,http://em.21dtv.com/songs/60071533.mkv +コブクロ-纸飞行机,http://em.21dtv.com/songs/60079628.mkv +郑仲茵-自费心机,http://em.21dtv.com/songs/60059681.mkv +江涛-祝福香港(演唱会),http://em.21dtv.com/songs/60059338.mkv +钟一宪+麦贝夷-针锋相爱,http://em.21dtv.com/songs/60068999.mkv +阎维文-祝福文山,http://em.21dtv.com/songs/60079687.mkv +王杰-重返未来,http://em.21dtv.com/songs/60091713.mkv +韦雄-转发天气,http://em.21dtv.com/songs/60063059.mkv +周强-祝福三峡,http://em.21dtv.com/songs/60089215.mkv +吴奇隆-追风少年,http://em.21dtv.com/songs/60059505.mkv +李玟-祝福世界,http://em.21dtv.com/songs/60089341.mkv +洛客班-征服世界,http://em.21dtv.com/songs/60058323.mkv +丁伟+王岩-祝福水城,http://em.21dtv.com/songs/60079686.mkv +洪百慧-重逢日子,http://em.21dtv.com/songs/60095777.mkv +宋祖英-祝福人间,http://em.21dtv.com/songs/60059333.mkv +郑嘉阳-祝福朋友,http://em.21dtv.com/songs/60059332.mkv +王中平-祝福你啦,http://em.21dtv.com/songs/60127192.mkv +张瑞+文春芬-祝福明天,http://em.21dtv.com/songs/60081442.mkv +齐峰-祝福妈妈(演唱会),http://em.21dtv.com/songs/60059316.mkv +沙玛学锋-祝福老师,http://em.21dtv.com/songs/60061909.mkv +于新娜-祝福恋人,http://em.21dtv.com/songs/60099073.mkv +翁色尼玛-祝福康巴,http://em.21dtv.com/songs/60070260.mkv +阿英-祝福吉祥,http://em.21dtv.com/songs/60079682.mkv +旺姆-祝福吉祥,http://em.21dtv.com/songs/60072817.mkv +林海峰-最菲精选,http://em.21dtv.com/songs/60060138.mkv +多杰邓珠-祝福吉祥,http://em.21dtv.com/songs/60059312.mkv +沈震轩-重返寂寞,http://em.21dtv.com/songs/60110336.mkv +张智成-重返寂寞,http://em.21dtv.com/songs/60059098.mkv +郑洁-绽放精彩,http://em.21dtv.com/songs/60128473.mkv +林霞+黄华+田磊+杜江等-绽放精彩,http://em.21dtv.com/songs/60112801.mkv +兰义+彭开胜-绽放精彩,http://em.21dtv.com/songs/60108321.mkv +何敏嘉-祝福好人,http://em.21dtv.com/songs/60128776.mkv +罗钢-祝福贵州,http://em.21dtv.com/songs/60059310.mkv +刘欢-中方雇员,http://em.21dtv.com/songs/60058863.mkv +罗时丰-祝福过去,http://em.21dtv.com/songs/60059311.mkv +卓依婷-重返故里,http://em.21dtv.com/songs/60059097.mkv +孟庭苇-重返故里,http://em.21dtv.com/songs/60059096.mkv +古巨基-重复犯错,http://em.21dtv.com/songs/60059121.mkv +古巨基-重复犯错(演唱会),http://em.21dtv.com/songs/60059120.mkv +威仔+阿夏-重复的伤,http://em.21dtv.com/songs/60130239.mkv +那英-争分夺秒,http://em.21dtv.com/songs/60058306.mkv +龙千玉-祝福的酒(无原唱),http://em.21dtv.com/songs/60059309.mkv +喜波-祝福草原,http://em.21dtv.com/songs/60131296.mkv +冷酷-祝福草原,http://em.21dtv.com/songs/60110867.mkv +剑鸿-争风吃醋,http://em.21dtv.com/songs/60123697.mkv +IU-Zezé,http://em.21dtv.com/songs/60115596.mkv +尤国通-枣儿红了,http://em.21dtv.com/songs/60104974.mkv +XL组合-自导自演,http://em.21dtv.com/songs/60130008.mkv +于朦胧-自导自演,http://em.21dtv.com/songs/60126581.mkv +周杰伦-自导自演,http://em.21dtv.com/songs/60059677.mkv +张学友-再度重漫,http://em.21dtv.com/songs/60092585.mkv +方力申-自导自恋,http://em.21dtv.com/songs/60059676.mkv +周慧敏-自动自觉,http://em.21dtv.com/songs/60059679.mkv +San E-直到最后,http://em.21dtv.com/songs/60133272.mkv +高瑞欣-走到最后,http://em.21dtv.com/songs/60059878.mkv +谭咏麟-重叠震撼(演唱会),http://em.21dtv.com/songs/60059095.mkv +天天-最大原则,http://em.21dtv.com/songs/60065526.mkv +金丹-直到永远,http://em.21dtv.com/songs/60098816.mkv +汪峰-直到永远,http://em.21dtv.com/songs/60058728.mkv +方季惟-直到永远,http://em.21dtv.com/songs/60058727.mkv +姚黛玮-直到永远(无原唱),http://em.21dtv.com/songs/60058726.mkv +梁汉文-只得一晚,http://em.21dtv.com/songs/60058396.mkv +江映蓉-再多一天,http://em.21dtv.com/songs/60109487.mkv +魏诗燚-再多一天,http://em.21dtv.com/songs/60108170.mkv +张学友-再度遇你,http://em.21dtv.com/songs/60056752.mkv +芭比-折叠眼泪,http://em.21dtv.com/songs/60057738.mkv +古巨基-直到银婚(演唱会),http://em.21dtv.com/songs/60079605.mkv +陈星-再呆一会,http://em.21dtv.com/songs/60056744.mkv +关淑怡-只得一次(演唱会),http://em.21dtv.com/songs/60058395.mkv +曹越-挣点小钱,http://em.21dtv.com/songs/60094911.mkv +钟sir-真的想你,http://em.21dtv.com/songs/60116318.mkv +杜德伟+顺子-真的想你,http://em.21dtv.com/songs/60058116.mkv +李思琳-猪都笑了,http://em.21dtv.com/songs/60088013.mkv +张真菲-猪都笑了,http://em.21dtv.com/songs/60087832.mkv +单行道乐队-猪都笑了,http://em.21dtv.com/songs/60087496.mkv +钟彩媚-钟大小姐,http://em.21dtv.com/songs/60129693.mkv +何润东-最低消费,http://em.21dtv.com/songs/60092261.mkv +糖糖乐团+林宗兴+朱俐静-转动幸福,http://em.21dtv.com/songs/60067815.mkv +张信哲+彭羚-注定相爱,http://em.21dtv.com/songs/60059286.mkv +林柔均-咱的舞台,http://em.21dtv.com/songs/60066579.mkv +凤娘-中毒太深,http://em.21dtv.com/songs/60058861.mkv +蔡镇泽-真的痛了,http://em.21dtv.com/songs/60058109.mkv +李猛-走得太久,http://em.21dtv.com/songs/60062601.mkv +外国男星-走到天边,http://em.21dtv.com/songs/60059874.mkv +齐秦-真的是我,http://em.21dtv.com/songs/60058107.mkv +郑伊健-自动胜利,http://em.21dtv.com/songs/60114126.mkv +郑伊健-自动胜利 Lets Fight,http://em.21dtv.com/songs/60095350.mkv +田家达-走的时候,http://em.21dtv.com/songs/60059880.mkv +187INC-钟点情人,http://em.21dtv.com/songs/60120182.mkv +杨伯致-真的期盼,http://em.21dtv.com/songs/60106968.mkv +周笔畅-自得其乐,http://em.21dtv.com/songs/60080382.mkv +萧正楠-重点情歌,http://em.21dtv.com/songs/60059094.mkv +王建杰-咱的情歌,http://em.21dtv.com/songs/60057230.mkv +成威+张丽君-咱的情歌,http://em.21dtv.com/songs/60057229.mkv +低调组合-终点起点,http://em.21dtv.com/songs/60131161.mkv +郭富城-真的怕了,http://em.21dtv.com/songs/60058104.mkv +陈慧琳-中东女神PRELUDE,http://em.21dtv.com/songs/60093449.mkv +林俊杰-只对你说,http://em.21dtv.com/songs/60058400.mkv +尤国通-正当年华,http://em.21dtv.com/songs/60107692.mkv +邓丽君-再度蜜月,http://em.21dtv.com/songs/60056751.mkv +潘美辰-中等美女,http://em.21dtv.com/songs/60058858.mkv +刚泽斌-中等美女,http://em.21dtv.com/songs/60058857.mkv +萧蔷-中毒玫瑰,http://em.21dtv.com/songs/60058860.mkv +吴建豪-真的明白,http://em.21dtv.com/songs/60080765.mkv +蒋爱华-猪的理想(儿歌),http://em.21dtv.com/songs/60090198.mkv +郝云-总的来说,http://em.21dtv.com/songs/60097362.mkv +林峰-值的流泪,http://em.21dtv.com/songs/60092865.mkv +林峰-值得流泪(演唱会),http://em.21dtv.com/songs/60058754.mkv +林俊杰-子弹列车,http://em.21dtv.com/songs/60059611.mkv +林俊杰-子弹列车(演唱会),http://em.21dtv.com/songs/60059610.mkv +邓鸿-真的哭了,http://em.21dtv.com/songs/60120012.mkv +李慧珍-真的可爱,http://em.21dtv.com/songs/60058102.mkv +吴家程-赚丢几圆,http://em.21dtv.com/songs/60102028.mkv +胡月-竹笛吉它,http://em.21dtv.com/songs/60059231.mkv +谭咏麟-再等几天(演唱会),http://em.21dtv.com/songs/60056746.mkv +关喆-重度寂寞,http://em.21dtv.com/songs/60103893.mkv +张萌萌-真的寂寞(演唱会),http://em.21dtv.com/songs/60065478.mkv +林忆莲-真的记得,http://em.21dtv.com/songs/60092871.mkv +二妮+阿宝-张灯结彩,http://em.21dtv.com/songs/60096173.mkv +阿宝+王二妮-张灯结彩,http://em.21dtv.com/songs/60094323.mkv +皆大欢喜-张灯结彩,http://em.21dtv.com/songs/60081644.mkv +吴业坤-真的汉子,http://em.21dtv.com/songs/60112567.mkv +林子祥-真的汉子,http://em.21dtv.com/songs/60058095.mkv +林子祥-真的汉子(演唱会),http://em.21dtv.com/songs/60058094.mkv +谭振宇-真的好累,http://em.21dtv.com/songs/60118059.mkv +王基飞-真的好累,http://em.21dtv.com/songs/60101442.mkv +徐泽-真的好累,http://em.21dtv.com/songs/60101088.mkv +汤骏业-筑地哈林,http://em.21dtv.com/songs/60061910.mkv +王海滨-早点回家,http://em.21dtv.com/songs/60111278.mkv +苏打绿-早点回家,http://em.21dtv.com/songs/60057304.mkv +王建杰-再度红尘(无原唱),http://em.21dtv.com/songs/60056750.mkv +郑进一-咱的故乡(无原唱),http://em.21dtv.com/songs/60057228.mkv +黄志坚-驻地姑娘,http://em.21dtv.com/songs/60059288.mkv +林依轮-找到感觉,http://em.21dtv.com/songs/60091426.mkv +毛阿敏-尊道贵德(演唱会),http://em.21dtv.com/songs/60069050.mkv +佚名-注定孤独(无原唱),http://em.21dtv.com/songs/60059284.mkv +陈一郎-注定孤单,http://em.21dtv.com/songs/60059283.mkv +胡东-值得感动,http://em.21dtv.com/songs/60058753.mkv +甄妮-再度孤独,http://em.21dtv.com/songs/60056749.mkv +李志洲-真的放手,http://em.21dtv.com/songs/60058091.mkv +韩安旭-最对的人,http://em.21dtv.com/songs/60128577.mkv +张敬轩-找对的人,http://em.21dtv.com/songs/60112672.mkv +阿坤-直到懂得,http://em.21dtv.com/songs/60108962.mkv +程响-再多的爱,http://em.21dtv.com/songs/60097222.mkv +尤雅-注定的爱,http://em.21dtv.com/songs/60059280.mkv +方瑞娥+高向鹏-注定的爱,http://em.21dtv.com/songs/60059279.mkv +宋祖英-长大成材,http://em.21dtv.com/songs/60057570.mkv +刘媛媛-长大成才,http://em.21dtv.com/songs/60057569.mkv +孙淑媚-咱的爱情,http://em.21dtv.com/songs/60127901.mkv +佚名-咱的爱情,http://em.21dtv.com/songs/60057225.mkv +孙淑媚-咱的爱情,http://em.21dtv.com/songs/60057224.mkv +安琪-咱的爱情,http://em.21dtv.com/songs/60057223.mkv +马健涛-真的爱你,http://em.21dtv.com/songs/60122275.mkv +张惠春+李嘉琪-真的爱你,http://em.21dtv.com/songs/60114536.mkv +BEYOND-真的爱你,http://em.21dtv.com/songs/60101594.mkv +李克勤+黄贯中-真的爱你,http://em.21dtv.com/songs/60092792.mkv +华雪-真的爱你,http://em.21dtv.com/songs/60058085.mkv +杨天经-真的爱你(演唱会),http://em.21dtv.com/songs/60058084.mkv +陈小春+叶文辉-真的爱你(演唱会),http://em.21dtv.com/songs/60058083.mkv +BEYOND-真的爱你(演唱会),http://em.21dtv.com/songs/60058082.mkv +刘一-真的爱过,http://em.21dtv.com/songs/60084541.mkv +王玫-再唱战友,http://em.21dtv.com/songs/60087094.mkv +朱孝天-走出昨天,http://em.21dtv.com/songs/60059872.mkv +警察兄弟组合-忠诚战旗,http://em.21dtv.com/songs/60135730.mkv +李人杰-最初最后,http://em.21dtv.com/songs/60120603.mkv +赵擎-最初最后,http://em.21dtv.com/songs/60060132.mkv +郑伊健-直肠直肚,http://em.21dtv.com/songs/60058721.mkv +群星-造船造船,http://em.21dtv.com/songs/60132801.mkv +麦家瑜+陈诗慧-照常营业(演唱会),http://em.21dtv.com/songs/60057730.mkv +群星-照常营业(HD演唱会),http://em.21dtv.com/songs/60057729.mkv +千百惠-再次拥有,http://em.21dtv.com/songs/60056742.mkv +阿杜-再唱一首,http://em.21dtv.com/songs/60068967.mkv +邓福如-自成一派,http://em.21dtv.com/songs/60114117.mkv +刘嘉亮-只差一步,http://em.21dtv.com/songs/60116580.mkv +游鸿明-中场休息,http://em.21dtv.com/songs/60058856.mkv +明道+陈乔恩-再次相信,http://em.21dtv.com/songs/60056741.mkv +萱萱-这才像我,http://em.21dtv.com/songs/60112201.mkv +冯巩+牛群-最差先生,http://em.21dtv.com/songs/60089660.mkv +暴林-再唱小三,http://em.21dtv.com/songs/60070207.mkv +古剑小分队-咫尺相思,http://em.21dtv.com/songs/60069012.mkv +陈淑芳-摘茶细妹,http://em.21dtv.com/songs/60057427.mkv +张铭峰-再唱晚秋,http://em.21dtv.com/songs/60115166.mkv +苏阳-早操晚操(演唱会),http://em.21dtv.com/songs/60067776.mkv +小豪-咫尺天涯,http://em.21dtv.com/songs/60115876.mkv +樊凡-展翅天空,http://em.21dtv.com/songs/60057452.mkv +正皓玄-再次闪耀,http://em.21dtv.com/songs/60124175.mkv +王旭鹏-最初所愿,http://em.21dtv.com/songs/60114684.mkv +I.N.G-中场时间,http://em.21dtv.com/songs/60058855.mkv +吉吉-再唱山歌,http://em.21dtv.com/songs/60120398.mkv +承利-炸场神电,http://em.21dtv.com/songs/60126941.mkv +阿吉仔-走唱人生,http://em.21dtv.com/songs/60059864.mkv +佚名-知床旅情,http://em.21dtv.com/songs/60058640.mkv +谢天笑-再次来临,http://em.21dtv.com/songs/60056740.mkv +林忆莲-自掣空间(演唱会),http://em.21dtv.com/songs/60059665.mkv +肖文莉-走出家乡,http://em.21dtv.com/songs/60127291.mkv +郑智化-中产阶级,http://em.21dtv.com/songs/60058854.mkv +袁小迪-重出江湖,http://em.21dtv.com/songs/60059093.mkv +巧千金-招财进宝,http://em.21dtv.com/songs/60079533.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-招财进宝,http://em.21dtv.com/songs/60079532.mkv +郭炳坚-招财进宝,http://em.21dtv.com/songs/60079531.mkv +佚名-招财进宝,http://em.21dtv.com/songs/60057649.mkv +李福山-招财进宝,http://em.21dtv.com/songs/60057648.mkv +开克尔曼尼+魏依曼-招财进宝,http://em.21dtv.com/songs/60057647.mkv +巩汉林+刘流-造才公司,http://em.21dtv.com/songs/60089829.mkv +含瑞-展翅高飞,http://em.21dtv.com/songs/60121486.mkv +张胜淼-展翅高飞,http://em.21dtv.com/songs/60113493.mkv +财部有辉-振翅高飞(无原唱),http://em.21dtv.com/songs/60058295.mkv +陈琳-展翅高飞,http://em.21dtv.com/songs/60057451.mkv +曾宝仪+卜学亮-展翅高飞,http://em.21dtv.com/songs/60057450.mkv +佚名-走出孤独(无原唱),http://em.21dtv.com/songs/60059869.mkv +闫寒-展翅飞翔,http://em.21dtv.com/songs/60057449.mkv +候歌-展翅飞翔,http://em.21dtv.com/songs/60057448.mkv +侯歌-展翅飞翔,http://em.21dtv.com/songs/60057447.mkv +闫寒-展翅飞翔(演唱会),http://em.21dtv.com/songs/60057446.mkv +佚名-志超读信,http://em.21dtv.com/songs/60058825.mkv +索朗旺姆-走出大山,http://em.21dtv.com/songs/60107103.mkv +SHINE-最差的歌(演唱会),http://em.21dtv.com/songs/60060122.mkv +童唱-早晨的歌,http://em.21dtv.com/songs/60057300.mkv +宋金文-最初的爱,http://em.21dtv.com/songs/60122672.mkv +佚名-真诚的爱,http://em.21dtv.com/songs/60058074.mkv +刘一祯-真诚的爱,http://em.21dtv.com/songs/60058073.mkv +王梓旭+张坤+HR-展翅翱翔,http://em.21dtv.com/songs/60123007.mkv +孟庭苇-走出爱情,http://em.21dtv.com/songs/60089243.mkv +江希文-自编自演,http://em.21dtv.com/songs/60059664.mkv +杨波-咱爸咱妈,http://em.21dtv.com/songs/60088076.mkv +龙梅子+老猫-咱爸咱妈,http://em.21dtv.com/songs/60065459.mkv +李娜-咱爸咱妈,http://em.21dtv.com/songs/60057221.mkv +林忆莲-再不在乎,http://em.21dtv.com/songs/60056733.mkv +林忆莲-再不在乎(演唱会),http://em.21dtv.com/songs/60056732.mkv +陈羑-知不知道,http://em.21dtv.com/songs/60099590.mkv +笑笑-走吧走吧,http://em.21dtv.com/songs/60117959.mkv +新宝岛康乐队-走吧走吧,http://em.21dtv.com/songs/60059858.mkv +姜征-找不着北,http://em.21dtv.com/songs/60057665.mkv +张学友-枕边月亮,http://em.21dtv.com/songs/60058288.mkv +杨培安-左边右边,http://em.21dtv.com/songs/60060637.mkv +萧煌奇-左边右边,http://em.21dtv.com/songs/60060636.mkv +邰正宵-自备太阳,http://em.21dtv.com/songs/60134289.mkv +邰正宵-自备太阳,http://em.21dtv.com/songs/60132979.mkv +炎亚纶-这不是我,http://em.21dtv.com/songs/60100295.mkv +王佳佳-祖辈亲愿,http://em.21dtv.com/songs/60120747.mkv +王菲-再不去爱,http://em.21dtv.com/songs/60092998.mkv +佟铁鑫-走吧朋友,http://em.21dtv.com/songs/60090622.mkv +伍思凯-这边那边,http://em.21dtv.com/songs/60057753.mkv +CIGARO-重瓣茉莉,http://em.21dtv.com/songs/60084579.mkv +山西男孩-罪不可恕,http://em.21dtv.com/songs/60106798.mkv +顾小曼-再别康桥,http://em.21dtv.com/songs/60098930.mkv +张清芳-再别康桥,http://em.21dtv.com/songs/60079448.mkv +郝红岩-再别康桥,http://em.21dtv.com/songs/60071489.mkv +伊人佳人组合-再别康桥,http://em.21dtv.com/songs/60070204.mkv +林宥嘉-再别康桥,http://em.21dtv.com/songs/60061869.mkv +佚名-再别康桥,http://em.21dtv.com/songs/60056729.mkv +林承光-再别康桥,http://em.21dtv.com/songs/60056728.mkv +S.H.E-再别康桥,http://em.21dtv.com/songs/60056727.mkv +邓小龙-这杯苦酒,http://em.21dtv.com/songs/60100496.mkv +阮以伟-止步谎言,http://em.21dtv.com/songs/60066593.mkv +苏路-准备好抹,http://em.21dtv.com/songs/60059571.mkv +BEYOND-早班火车,http://em.21dtv.com/songs/60057292.mkv +谢安琪-早班火车(演唱会),http://em.21dtv.com/songs/60057291.mkv +黄家强-早班火车(演唱会),http://em.21dtv.com/songs/60057290.mkv +花粥-只不过是,http://em.21dtv.com/songs/60132830.mkv +苏有朋-这般发生,http://em.21dtv.com/songs/60057750.mkv +谭建军-再泊枫桥,http://em.21dtv.com/songs/60070205.mkv +王亚平-再泊枫桥,http://em.21dtv.com/songs/60067765.mkv +Jiggy Dogg+A Pink-最棒的事,http://em.21dtv.com/songs/60103789.mkv +CD.VOICE-重播的歌,http://em.21dtv.com/songs/60059092.mkv +蓝琪儿-找不到北,http://em.21dtv.com/songs/60068992.mkv +完玛三智-藏北草原,http://em.21dtv.com/songs/60064035.mkv +阿布-止步爱情,http://em.21dtv.com/songs/60100540.mkv +蔡依林-自爱自受,http://em.21dtv.com/songs/60108879.mkv +蔡依林-自爱自受,http://em.21dtv.com/songs/60107193.mkv +余文乐-最爱指数,http://em.21dtv.com/songs/60060118.mkv +陈慧琳-在爱着谁,http://em.21dtv.com/songs/60057034.mkv +谢霆锋-最爱之后,http://em.21dtv.com/songs/60060117.mkv +钟镇涛-早安早安,http://em.21dtv.com/songs/60068980.mkv +梅艳芳-珍爱真爱(无原唱),http://em.21dtv.com/songs/60057978.mkv +莫文蔚-左岸右转,http://em.21dtv.com/songs/60060631.mkv +伊扬-真爱永远,http://em.21dtv.com/songs/60058064.mkv +小男孩乐团-最爱雨天,http://em.21dtv.com/songs/60120476.mkv +李明翰-再爱一天,http://em.21dtv.com/songs/60056726.mkv +杜德伟-钟爱一生,http://em.21dtv.com/songs/60059054.mkv +张子瑄-珍爱永久,http://em.21dtv.com/songs/60094894.mkv +金学峰-真爱一回,http://em.21dtv.com/songs/60058061.mkv +任军太-再爱一回,http://em.21dtv.com/songs/60056725.mkv +陈洁仪-再爱一回(无原唱),http://em.21dtv.com/songs/60056724.mkv +何龙雨+沈嫔嫔-真爱阳光,http://em.21dtv.com/songs/60080977.mkv +罗时丰+林淑容-再爱一次,http://em.21dtv.com/songs/60065442.mkv +彭家丽-最爱一次,http://em.21dtv.com/songs/60060114.mkv +刘可-再爱一场,http://em.21dtv.com/songs/60056723.mkv +谢霆锋-再爱一遍,http://em.21dtv.com/songs/60093185.mkv +陈势安-再爱一遍,http://em.21dtv.com/songs/60065441.mkv +游鸿明-再爱一遍,http://em.21dtv.com/songs/60056722.mkv +刘栋升+丹丹-左岸右岸,http://em.21dtv.com/songs/60060630.mkv +黎明-真爱雄心,http://em.21dtv.com/songs/60058060.mkv +陈义正+赵达锋-早安心情,http://em.21dtv.com/songs/60118134.mkv +林一佳-早安小猫,http://em.21dtv.com/songs/60067775.mkv +田震-真爱无限,http://em.21dtv.com/songs/60091776.mkv +刘德华-珍爱舞台,http://em.21dtv.com/songs/60057977.mkv +阿兰-真爱无双,http://em.21dtv.com/songs/60106365.mkv +潘玮柏-真爱为你,http://em.21dtv.com/songs/60091661.mkv +丁伟-真爱无悔,http://em.21dtv.com/songs/60121321.mkv +古品-真爱无敌,http://em.21dtv.com/songs/60086242.mkv +BY2-真爱无敌,http://em.21dtv.com/songs/60081833.mkv +许茹芸-真爱无敌,http://em.21dtv.com/songs/60058058.mkv +周华健-再爱我吧,http://em.21dtv.com/songs/60056716.mkv +钟镇涛-早安晚安,http://em.21dtv.com/songs/60079497.mkv +马浚伟-早安晚安(演唱会),http://em.21dtv.com/songs/60057289.mkv +佚名-早安太阳,http://em.21dtv.com/songs/60057288.mkv +灭火器乐团-早安台湾,http://em.21dtv.com/songs/60127182.mkv +张加成-真爱是真(无原唱),http://em.21dtv.com/songs/60058055.mkv +刘德华-最爱是她,http://em.21dtv.com/songs/60060107.mkv +潘源良-最爱是谁,http://em.21dtv.com/songs/60124222.mkv +刘德华-最爱是谁,http://em.21dtv.com/songs/60087401.mkv +林子祥-最爱是谁,http://em.21dtv.com/songs/60060106.mkv +夏韶声-最爱是谁(演唱会),http://em.21dtv.com/songs/60060105.mkv +梅艳芳+林子祥-最爱是谁(演唱会),http://em.21dtv.com/songs/60060104.mkv +林子祥+彭羚-最爱是谁(演唱会),http://em.21dtv.com/songs/60060103.mkv +陈洁丽-最爱是谁(演唱会),http://em.21dtv.com/songs/60060102.mkv +陈慧娴-最爱是谁(演唱会),http://em.21dtv.com/songs/60060101.mkv +佚名-真爱是谁,http://em.21dtv.com/songs/60058054.mkv +童安格-真爱是谁,http://em.21dtv.com/songs/60058053.mkv +曾舜曦-早安少年,http://em.21dtv.com/songs/60122812.mkv +叶胜钦-最爱是你,http://em.21dtv.com/songs/60060099.mkv +许志豪-最爱是你,http://em.21dtv.com/songs/60060098.mkv +伍思凯-最爱是你,http://em.21dtv.com/songs/60060097.mkv +刘德华-最爱是你,http://em.21dtv.com/songs/60060096.mkv +K ONE-最爱是你,http://em.21dtv.com/songs/60060095.mkv +岩罕建-珍爱生命,http://em.21dtv.com/songs/60124824.mkv +张祥洪-真爱如水,http://em.21dtv.com/songs/60058050.mkv +EO2-真爱入侵,http://em.21dtv.com/songs/60058051.mkv +张翠萍+赵红军-挚爱情缘,http://em.21dtv.com/songs/60115163.mkv +黎明-重爱轻友,http://em.21dtv.com/songs/60059091.mkv +庆庆-在爱情里,http://em.21dtv.com/songs/60127952.mkv +追风-最爱青藏,http://em.21dtv.com/songs/60109641.mkv +林志斌-真爱难逃,http://em.21dtv.com/songs/60058047.mkv +汪峰-早安女士,http://em.21dtv.com/songs/60101417.mkv +佚名-真爱难说(无原唱),http://em.21dtv.com/songs/60058046.mkv +晓雨-真爱难求,http://em.21dtv.com/songs/60058045.mkv +蓝宇-真爱难求,http://em.21dtv.com/songs/60058044.mkv +GIRL FRIENDS-真爱难求,http://em.21dtv.com/songs/60058043.mkv +BY2-早安男孩,http://em.21dtv.com/songs/60065462.mkv +张振超-真爱难得,http://em.21dtv.com/songs/60071515.mkv +吴丹妮-真爱冒险,http://em.21dtv.com/songs/60097375.mkv +张韶涵-真爱冒险,http://em.21dtv.com/songs/60058041.mkv +马天宇-真爱末年,http://em.21dtv.com/songs/60079568.mkv +钟sir-挚爱哥哥,http://em.21dtv.com/songs/60118983.mkv +苏勒亚其其格-真爱放手,http://em.21dtv.com/songs/60072795.mkv +张津涤-早安奉化,http://em.21dtv.com/songs/60129098.mkv +誓言-最爱的心,http://em.21dtv.com/songs/60060087.mkv +F.I.R-真爱地图,http://em.21dtv.com/songs/60058035.mkv +邱贤桂-最爱的人,http://em.21dtv.com/songs/60124552.mkv +李千娜+王大文-最爱的人,http://em.21dtv.com/songs/60120611.mkv +郁可唯-最爱的人,http://em.21dtv.com/songs/60099523.mkv +佚名-最爱的人,http://em.21dtv.com/songs/60060076.mkv +叶瑷菱-最爱的人,http://em.21dtv.com/songs/60060075.mkv +秀兰玛雅-最爱的人,http://em.21dtv.com/songs/60060074.mkv +施文彬-最爱的人,http://em.21dtv.com/songs/60060073.mkv +皮特杨-最爱的人,http://em.21dtv.com/songs/60060072.mkv +姜育恒-最爱的人,http://em.21dtv.com/songs/60060071.mkv +朱莉安娜-珍爱地球,http://em.21dtv.com/songs/60065476.mkv +吴蕙君-最爱的你,http://em.21dtv.com/songs/60135020.mkv +不辣-最爱的你,http://em.21dtv.com/songs/60130035.mkv +芦伟-最爱的你,http://em.21dtv.com/songs/60129529.mkv +青蛙乐队-最爱的你,http://em.21dtv.com/songs/60088940.mkv +罗敏庄-最爱的你(演唱会),http://em.21dtv.com/songs/60079768.mkv +冷漠-最爱的你,http://em.21dtv.com/songs/60060067.mkv +郑中基-最爱的你(演唱会),http://em.21dtv.com/songs/60060066.mkv +谭咏麟-最爱的你(演唱会),http://em.21dtv.com/songs/60060065.mkv +贾晓晨-最爱的爱,http://em.21dtv.com/songs/60060063.mkv +孟文豪+云菲菲-醉爱草原,http://em.21dtv.com/songs/60084623.mkv +火红-藏獒传奇,http://em.21dtv.com/songs/60074841.mkv +张清芳-真爱尺码,http://em.21dtv.com/songs/60058030.mkv +金久哲-真爱别走,http://em.21dtv.com/songs/60131903.mkv +焰烽-葬爱笔记,http://em.21dtv.com/songs/60071503.mkv +钟舒漫-真爱不改,http://em.21dtv.com/songs/60124597.mkv +藤本美贵-置き手纸,http://em.21dtv.com/songs/60058852.mkv +殷秀梅-一抺夕阳,http://em.21dtv.com/songs/60098541.mkv +郑秀文-一追再追,http://em.21dtv.com/songs/60094312.mkv +东城卫-以战止战,http://em.21dtv.com/songs/60054094.mkv +永邦-一追再追,http://em.21dtv.com/songs/60053938.mkv +童唱-一支竹仔,http://em.21dtv.com/songs/60053881.mkv +黄红英-雨中追忆,http://em.21dtv.com/songs/60055772.mkv +邓丽君-雨中追忆,http://em.21dtv.com/songs/60055771.mkv +罗百吉-亚洲之夜,http://em.21dtv.com/songs/60051916.mkv +韩磊-亚洲之星,http://em.21dtv.com/songs/60106448.mkv +梁心颐-雨之组曲,http://em.21dtv.com/songs/60127127.mkv +群星-宇宙最强,http://em.21dtv.com/songs/60087077.mkv +COOKIES-宇宙最强,http://em.21dtv.com/songs/60055618.mkv +佚名-雨中伫立,http://em.21dtv.com/songs/60055770.mkv +宋雪莱-亚洲之路,http://em.21dtv.com/songs/60051915.mkv +江蕙-饮者之歌,http://em.21dtv.com/songs/60114638.mkv +谢霆锋-勇者之歌,http://em.21dtv.com/songs/60054863.mkv +梁文音-勇者之歌,http://em.21dtv.com/songs/60054862.mkv +佚名-饮者之歌,http://em.21dtv.com/songs/60054378.mkv +[Group] +groupName=十六万歌曲MV等 - 62 +福禄寿-宇宙最长,http://em.21dtv.com/songs/60055619.mkv +薛凯琪-一直一直,http://em.21dtv.com/songs/60106267.mkv +SNOWMAN-呀之呀左,http://em.21dtv.com/songs/60051918.mkv +黄文星-越走越勇,http://em.21dtv.com/songs/60126478.mkv +马可谦-越走越远,http://em.21dtv.com/songs/60116391.mkv +吴克群-越走越远,http://em.21dtv.com/songs/60111753.mkv +龙梅子-越战越勇,http://em.21dtv.com/songs/60081665.mkv +钟伟-云中月圆,http://em.21dtv.com/songs/60056684.mkv +王识贤+孙淑媚-云中月圆,http://em.21dtv.com/songs/60056683.mkv +赵默-越走越远,http://em.21dtv.com/songs/60056635.mkv +郑伊健-越战越勇,http://em.21dtv.com/songs/60056629.mkv +郑伊健-愈战愈勇,http://em.21dtv.com/songs/60055882.mkv +吴佩慈-yes占有欲(无原唱),http://em.21dtv.com/songs/60006472.mkv +邱芸子-一针一线,http://em.21dtv.com/songs/60053861.mkv +安琥+白婧-一直有我,http://em.21dtv.com/songs/60079163.mkv +温馨-越走越顺,http://em.21dtv.com/songs/60081195.mkv +Ice Man-要在一起,http://em.21dtv.com/songs/60099001.mkv +付辛博-远在眼前,http://em.21dtv.com/songs/60080508.mkv +黑妹+潘长江-一张邮票,http://em.21dtv.com/songs/60090365.mkv +陈柏宇-一字一泪,http://em.21dtv.com/songs/60112353.mkv +白冰冰-由在伊啦,http://em.21dtv.com/songs/60095824.mkv +佚名-一字一泪,http://em.21dtv.com/songs/60053940.mkv +吕珊-一字一泪,http://em.21dtv.com/songs/60053939.mkv +朱海君-愈做愈绝,http://em.21dtv.com/songs/60066555.mkv +祖海-越走越近,http://em.21dtv.com/songs/60056633.mkv +陈势安-沿着月光,http://em.21dtv.com/songs/60052025.mkv +罗孝勇-一早约定,http://em.21dtv.com/songs/60129481.mkv +佚名-一枝玉钗,http://em.21dtv.com/songs/60053897.mkv +萧全-一整夜All night,http://em.21dtv.com/songs/60101489.mkv +泳儿-一只小猪,http://em.21dtv.com/songs/60135493.mkv +泳儿-一只小猪,http://em.21dtv.com/songs/60133931.mkv +阿奔-一直寻找,http://em.21dtv.com/songs/60126348.mkv +伊雪-一直下雪,http://em.21dtv.com/songs/60072718.mkv +汤非-扬州小调,http://em.21dtv.com/songs/60102439.mkv +吴易轩-一种相思,http://em.21dtv.com/songs/60079165.mkv +方瑞娥+高向鹏-一张相片,http://em.21dtv.com/songs/60053860.mkv +童唱-一只小鹿,http://em.21dtv.com/songs/60053891.mkv +子夕-月醉西江,http://em.21dtv.com/songs/60080881.mkv +SHE-宇宙小姐,http://em.21dtv.com/songs/60055617.mkv +S.H.E-宇宙小姐,http://em.21dtv.com/songs/60055616.mkv +天津阿明-意转心回,http://em.21dtv.com/songs/60084391.mkv +王心凌-一直幸福,http://em.21dtv.com/songs/60053921.mkv +韦唯-亚洲雄风(演唱会),http://em.21dtv.com/songs/60051914.mkv +群星-亚洲雄风(演唱会),http://em.21dtv.com/songs/60051913.mkv +刘欢+韦唯-亚洲雄风,http://em.21dtv.com/songs/60051912.mkv +李贤-印在心底,http://em.21dtv.com/songs/60079209.mkv +胡龄萌-咬住下唇,http://em.21dtv.com/songs/60122048.mkv +王鸣飞-一只小虫,http://em.21dtv.com/songs/60120789.mkv +Esna-咬住下唇,http://em.21dtv.com/songs/60093921.mkv +许志安-一直相爱,http://em.21dtv.com/songs/60061830.mkv +迟志强-狱中望月,http://em.21dtv.com/songs/60055798.mkv +杨凯琳-一直微笑,http://em.21dtv.com/songs/60116025.mkv +杨凯琳-一直微笑,http://em.21dtv.com/songs/60115232.mkv +古天乐+梁汉文-宇宙无限,http://em.21dtv.com/songs/60055615.mkv +许冠杰-宇宙无限(无原唱),http://em.21dtv.com/songs/60055614.mkv +龙千玉-有嘴无心,http://em.21dtv.com/songs/60055413.mkv +陈楚天-亚洲舞王,http://em.21dtv.com/songs/60128544.mkv +王力宏-一种温柔,http://em.21dtv.com/songs/60088274.mkv +灭火器-欲走无路,http://em.21dtv.com/songs/60079351.mkv +刘欢-雍正王朝,http://em.21dtv.com/songs/60054608.mkv +陈怡婷-雨中跳舞,http://em.21dtv.com/songs/60087080.mkv +戴海霞-云中天堂,http://em.21dtv.com/songs/60079445.mkv +唐越-远在天边,http://em.21dtv.com/songs/60056167.mkv +梁咏琪-远在天边,http://em.21dtv.com/songs/60056166.mkv +罗时丰-椰子树下,http://em.21dtv.com/songs/60134098.mkv +群星-椰子树下,http://em.21dtv.com/songs/60052415.mkv +段莉莉-英州山水,http://em.21dtv.com/songs/60122932.mkv +乐TEEN歌声-愿主颂你,http://em.21dtv.com/songs/60068961.mkv +庄振凯-一再伤害,http://em.21dtv.com/songs/60111843.mkv +张真菲+群星-亚洲盛会,http://em.21dtv.com/songs/60063421.mkv +群星-亚洲盛会,http://em.21dtv.com/songs/60062853.mkv +潘玮柏-一指神功,http://em.21dtv.com/songs/60053929.mkv +陈娟儿-影子身份,http://em.21dtv.com/songs/60127547.mkv +澎恰恰-胭脂水粉,http://em.21dtv.com/songs/60051934.mkv +周定纬-远在身边,http://em.21dtv.com/songs/60056165.mkv +黄乙玲-胭脂人生,http://em.21dtv.com/songs/60051933.mkv +刘纯如-一直如此,http://em.21dtv.com/songs/60053913.mkv +Fiona-有只雀仔,http://em.21dtv.com/songs/60092174.mkv +薛凯琪-有只雀仔(演唱会),http://em.21dtv.com/songs/60055410.mkv +王思郦-瑶族情缘,http://em.21dtv.com/songs/60086095.mkv +李自强-雨中情缘,http://em.21dtv.com/songs/60055767.mkv +何赛飞-一支清香,http://em.21dtv.com/songs/60053872.mkv +秀兰玛雅-影子情人,http://em.21dtv.com/songs/60123051.mkv +秀兰玛雅-影子情人,http://em.21dtv.com/songs/60113918.mkv +杨子-影子情人,http://em.21dtv.com/songs/60101106.mkv +林忆莲-影子情人,http://em.21dtv.com/songs/60080222.mkv +许美静-影子情人,http://em.21dtv.com/songs/60054543.mkv +赖雅妍-影子情人,http://em.21dtv.com/songs/60054542.mkv +雪村-一只蛐蛐,http://em.21dtv.com/songs/60053888.mkv +高进-一醉千年,http://em.21dtv.com/songs/60053947.mkv +刘平芳-雨中情泪(无原唱),http://em.21dtv.com/songs/60055766.mkv +零点乐队-一座桥梁(演唱会),http://em.21dtv.com/songs/60053948.mkv +金霖-一字情歌,http://em.21dtv.com/songs/60118111.mkv +邓丽君-雨中徘徊,http://em.21dtv.com/songs/60055763.mkv +罗时丰-一只鸟仔,http://em.21dtv.com/songs/60134076.mkv +佚名-一只鸟仔,http://em.21dtv.com/songs/60053885.mkv +王若琳-一种念头,http://em.21dtv.com/songs/60053933.mkv +音频怪物-一醉南柯,http://em.21dtv.com/songs/60114252.mkv +音频怪物-一醉南柯,http://em.21dtv.com/songs/60100638.mkv +唐龙-亚洲明天,http://em.21dtv.com/songs/60051911.mkv +戏曲-夜战马超,http://em.21dtv.com/songs/60092726.mkv +LABOUM-要怎么办,http://em.21dtv.com/songs/60104697.mkv +连诗雅-一走了之,http://em.21dtv.com/songs/60128445.mkv +连诗雅-一走了之,http://em.21dtv.com/songs/60126249.mkv +51-一走了之,http://em.21dtv.com/songs/60103748.mkv +张震-一走了之,http://em.21dtv.com/songs/60053944.mkv +韩红-一走了之,http://em.21dtv.com/songs/60053943.mkv +戴梦梦-一走了之,http://em.21dtv.com/songs/60053942.mkv +许志安-一走了之(演唱会),http://em.21dtv.com/songs/60053941.mkv +郑锦昌-遇着了她(演唱会),http://em.21dtv.com/songs/60079361.mkv +吕继宏-燕子李三,http://em.21dtv.com/songs/60052147.mkv +旭佳非-雨之恋曲,http://em.21dtv.com/songs/60101365.mkv +杨小萍-雨中恋情,http://em.21dtv.com/songs/60055761.mkv +群星-有只老虎,http://em.21dtv.com/songs/60055409.mkv +徐誉滕-燕子楼歌,http://em.21dtv.com/songs/60080322.mkv +诺儿-雨中冷掉,http://em.21dtv.com/songs/60065411.mkv +易天晴-要走就走(无原唱),http://em.21dtv.com/songs/60052408.mkv +新七小福-亚洲!加油!,http://em.21dtv.com/songs/60051908.mkv +何韵诗-杨子经书,http://em.21dtv.com/songs/60052217.mkv +雾影-邕州军乱,http://em.21dtv.com/songs/60054606.mkv +荼靡-yes 周杰伦,http://em.21dtv.com/songs/60006459.mkv +卓依婷-雨中即景,http://em.21dtv.com/songs/60055755.mkv +佚名-雨中即景,http://em.21dtv.com/songs/60055754.mkv +张行+王梦麟-雨中即景(演唱会),http://em.21dtv.com/songs/60055753.mkv +邓智乐-雨中即景(演唱会),http://em.21dtv.com/songs/60055752.mkv +环宇组合-宇宙环游,http://em.21dtv.com/songs/60135579.mkv +那英-欲走还留,http://em.21dtv.com/songs/60055831.mkv +陈盈洁-欲走还留,http://em.21dtv.com/songs/60055830.mkv +叶世荣-叶子红了,http://em.21dtv.com/songs/60052516.mkv +游子组合-游子回家,http://em.21dtv.com/songs/60107888.mkv +安东阳-一只蝴蝶,http://em.21dtv.com/songs/60079164.mkv +易小川-月照瓜洲,http://em.21dtv.com/songs/60079428.mkv +罗布仁青+阿呗平措-羊卓故乡,http://em.21dtv.com/songs/60128307.mkv +李伟+汤非-月之故乡,http://em.21dtv.com/songs/60098446.mkv +刘秉义-月之故乡(演唱会),http://em.21dtv.com/songs/60056564.mkv +陆正信-宜州姑娘,http://em.21dtv.com/songs/60121058.mkv +张柏芝-一直挂念,http://em.21dtv.com/songs/60053909.mkv +童可可-一种感觉,http://em.21dtv.com/songs/60132779.mkv +那英-一种感觉,http://em.21dtv.com/songs/60053931.mkv +罗时丰-一种感觉,http://em.21dtv.com/songs/60053930.mkv +阿格尔-焉支古歌,http://em.21dtv.com/songs/60128510.mkv +阿格尔-焉支古歌,http://em.21dtv.com/songs/60079001.mkv +钟汉良-一枝孤芳,http://em.21dtv.com/songs/60133013.mkv +昊麟-远走高飞,http://em.21dtv.com/songs/60118631.mkv +李泽坚-远走高飞,http://em.21dtv.com/songs/60099315.mkv +江蕙-远走高飞,http://em.21dtv.com/songs/60084480.mkv +林忆莲-远走高飞,http://em.21dtv.com/songs/60056174.mkv +李圣杰-远走高飞,http://em.21dtv.com/songs/60056173.mkv +大勇-远走高飞,http://em.21dtv.com/songs/60056172.mkv +陈晓娟-远走高飞,http://em.21dtv.com/songs/60056171.mkv +白龙-远走高飞,http://em.21dtv.com/songs/60056170.mkv +王建杰-远走高飞(无原唱),http://em.21dtv.com/songs/60056169.mkv +景岗山-缘在风中,http://em.21dtv.com/songs/60081918.mkv +谢莉婷-一阵风雨,http://em.21dtv.com/songs/60071434.mkv +风萧萧-一醉方休,http://em.21dtv.com/songs/60053946.mkv +谢雷+谢小雄-芋仔蕃薯,http://em.21dtv.com/songs/60055795.mkv +砰砰乐团-芋仔番薯,http://em.21dtv.com/songs/60055794.mkv +陈瑞-燕子飞去,http://em.21dtv.com/songs/60099586.mkv +林峰+蔡卓妍-一直都在,http://em.21dtv.com/songs/60053908.mkv +郭富城-一直都在,http://em.21dtv.com/songs/60053907.mkv +德龙-游子的心,http://em.21dtv.com/songs/60072742.mkv +罗志祥-一支独秀,http://em.21dtv.com/songs/60053868.mkv +吴浩康-宇宙大王,http://em.21dtv.com/songs/60055612.mkv +黄妃-伊在等我,http://em.21dtv.com/songs/60053965.mkv +蔡小虎-约在淡水,http://em.21dtv.com/songs/60086186.mkv +刘欢-雨中的树,http://em.21dtv.com/songs/60071469.mkv +周翊涛-用字的人,http://em.21dtv.com/songs/60135054.mkv +王琨-赢在当前,http://em.21dtv.com/songs/60112851.mkv +吴峙轩-一直等你,http://em.21dtv.com/songs/60053906.mkv +恶人谷-一直到老,http://em.21dtv.com/songs/60105910.mkv +陈一凡-一直到老,http://em.21dtv.com/songs/60095121.mkv +孟延-一直到老,http://em.21dtv.com/songs/60067711.mkv +王旭鹏-雨中的歌,http://em.21dtv.com/songs/60121919.mkv +亚东-游子的歌,http://em.21dtv.com/songs/60055038.mkv +刘平芳-一枝担竿(无原唱),http://em.21dtv.com/songs/60053894.mkv +王星-一醉到底,http://em.21dtv.com/songs/60125925.mkv +古巨基-宇宙大帝,http://em.21dtv.com/songs/60079336.mkv +张杰-云中的angel(演唱会),http://em.21dtv.com/songs/60056681.mkv +童丽-渔舟唱晚,http://em.21dtv.com/songs/60079329.mkv +佚名-渔舟唱晚,http://em.21dtv.com/songs/60055558.mkv +关正杰-渔舟唱晚,http://em.21dtv.com/songs/60055557.mkv +区瑞强-渔舟唱晚(演唱会),http://em.21dtv.com/songs/60055556.mkv +王梓旭-鹰之传说,http://em.21dtv.com/songs/60065374.mkv +蔡琴-雨中城市,http://em.21dtv.com/songs/60055741.mkv +任浩铭-与众不同,http://em.21dtv.com/songs/60081973.mkv +李克勤-一知半解,http://em.21dtv.com/songs/60053899.mkv +古巨基-一知半解,http://em.21dtv.com/songs/60053898.mkv +易丹-一醉不归,http://em.21dtv.com/songs/60087933.mkv +佚名-一只白鸽(无原唱),http://em.21dtv.com/songs/60053882.mkv +X玖少年团-永字八法,http://em.21dtv.com/songs/60130019.mkv +钟洁+袁晓婕-影子爱人,http://em.21dtv.com/songs/60070170.mkv +辛晓琪-悠游自在,http://em.21dtv.com/songs/60068938.mkv +童孔+苏芮-有一种醉(无原唱),http://em.21dtv.com/songs/60055381.mkv +甄虹-月圆之夜(无原唱),http://em.21dtv.com/songs/60023984.mkv +李一平-雨一直下,http://em.21dtv.com/songs/60097313.mkv +刘奇梅-雨一直下,http://em.21dtv.com/songs/60062672.mkv +张宇-雨一直下,http://em.21dtv.com/songs/60055735.mkv +高胜美-雨一直下,http://em.21dtv.com/songs/60055734.mkv +张宇-雨一直下(演唱会),http://em.21dtv.com/songs/60055733.mkv +小刚-隐隐作痛,http://em.21dtv.com/songs/60090989.mkv +周传雄-隐隐作痛,http://em.21dtv.com/songs/60090831.mkv +龙千玉-一叶知秋,http://em.21dtv.com/songs/60133142.mkv +段炼-一叶知秋,http://em.21dtv.com/songs/60116087.mkv +胡琳-一叶知秋,http://em.21dtv.com/songs/60107136.mkv +陈楚生-一叶知秋,http://em.21dtv.com/songs/60053826.mkv +外国男星-一夜之梦,http://em.21dtv.com/songs/60053845.mkv +佚名-燕燕做媒,http://em.21dtv.com/songs/60052143.mkv +谢雷+吴淑敏-夜雨之恋,http://em.21dtv.com/songs/60115400.mkv +张蓉蓉+吴俊宏-月夜之恋,http://em.21dtv.com/songs/60065439.mkv +辛晓琪-一夜之间,http://em.21dtv.com/songs/60053844.mkv +吴涤清-一夜之间,http://em.21dtv.com/songs/60053843.mkv +王志心-一夜之间,http://em.21dtv.com/songs/60053842.mkv +梁汉文-一夜之间(演唱会),http://em.21dtv.com/songs/60053841.mkv +佚名-一夜之间(无原唱),http://em.21dtv.com/songs/60053840.mkv +邵大伦-永远再会,http://em.21dtv.com/songs/60087068.mkv +廖浩明-永远之后,http://em.21dtv.com/songs/60070177.mkv +孙国庆-月圆之后(演唱会),http://em.21dtv.com/songs/60056561.mkv +车晓菲-烟雨中国,http://em.21dtv.com/songs/60128441.mkv +温清松-月圆中国,http://em.21dtv.com/songs/60121885.mkv +TACKE竹桑+重小烟-友谊之歌,http://em.21dtv.com/songs/60084452.mkv +群星-友谊之光,http://em.21dtv.com/songs/60079274.mkv +玛丽亚-友谊之光,http://em.21dtv.com/songs/60055084.mkv +MARIA CORDERO-友谊之光,http://em.21dtv.com/songs/60055083.mkv +韦唯-亚运之光,http://em.21dtv.com/songs/60051907.mkv +梁静茹-一夜长大,http://em.21dtv.com/songs/60053839.mkv +梁静茹-一夜长大(演唱会),http://em.21dtv.com/songs/60053838.mkv +张铁-夜雨之城,http://em.21dtv.com/songs/60052698.mkv +尚桐-有一种爱,http://em.21dtv.com/songs/60125443.mkv +李彩桦-有一种爱,http://em.21dtv.com/songs/60055373.mkv +简红-摇摇宇宙,http://em.21dtv.com/songs/60113932.mkv +关喆-欲言又止,http://em.21dtv.com/songs/60105613.mkv +陈兴瑜-瑜言又止,http://em.21dtv.com/songs/60098852.mkv +蹇红-摇摇宇宙,http://em.21dtv.com/songs/60072688.mkv +MVG-欲言又止,http://em.21dtv.com/songs/60067743.mkv +梁汉文+车婉婉-欲言又止,http://em.21dtv.com/songs/60055828.mkv +陈冠茜-欲言又止,http://em.21dtv.com/songs/60055827.mkv +钟舒漫+钟舒祺-1111,http://em.21dtv.com/songs/60135861.mkv +郭宴-夜夜夜夜,http://em.21dtv.com/songs/60135826.mkv +陈凯欣+叶诺帆-永永远远,http://em.21dtv.com/songs/60133039.mkv +魏如昀-永远永远,http://em.21dtv.com/songs/60132000.mkv +乐正绫-一样一样,http://em.21dtv.com/songs/60127709.mkv +金润吉-越夜越野,http://em.21dtv.com/songs/60122199.mkv +张杰+吴汶芳-夜夜夜夜,http://em.21dtv.com/songs/60111877.mkv +萧煌奇-夜夜夜夜,http://em.21dtv.com/songs/60109605.mkv +尚雯婕-夜夜夜夜,http://em.21dtv.com/songs/60104965.mkv +古巨基+李泉-夜夜夜夜,http://em.21dtv.com/songs/60097328.mkv +陈楚生-夜夜夜夜,http://em.21dtv.com/songs/60097327.mkv +叶秉桓-夜夜夜夜,http://em.21dtv.com/songs/60086105.mkv +回音哥-一眼云烟,http://em.21dtv.com/songs/60084377.mkv +李明洋-永远永远,http://em.21dtv.com/songs/60081065.mkv +回音哥-一眼云烟(演唱会),http://em.21dtv.com/songs/60079158.mkv +熊天平+金池-夜夜夜夜,http://em.21dtv.com/songs/60079070.mkv +韩真真-夜夜夜夜(演唱会),http://em.21dtv.com/songs/60079069.mkv +金池-夜夜夜夜,http://em.21dtv.com/songs/60070130.mkv +王野-夜夜夜夜,http://em.21dtv.com/songs/60068905.mkv +李翊君-永远永远,http://em.21dtv.com/songs/60054796.mkv +苏来-咿呦咿呦(无原唱),http://em.21dtv.com/songs/60054023.mkv +齐秦-夜夜夜夜,http://em.21dtv.com/songs/60052688.mkv +梁静茹-夜夜夜夜(演唱会),http://em.21dtv.com/songs/60052687.mkv +MINI+ELLY-烟雨烟雨,http://em.21dtv.com/songs/60052001.mkv +关喆-yi ya yi ye,http://em.21dtv.com/songs/60006473.mkv +李亚飞+韩承东-越野英雄,http://em.21dtv.com/songs/60056622.mkv +彭羚-有缘遇上(演唱会),http://em.21dtv.com/songs/60055406.mkv +莫文蔚-月圆月缺,http://em.21dtv.com/songs/60091970.mkv +超泉RZ组合-友谊友情,http://em.21dtv.com/songs/60086159.mkv +李克勤-越夜越坏,http://em.21dtv.com/songs/60056623.mkv +黎宛红-莺莺怨婚,http://em.21dtv.com/songs/60054450.mkv +张超-隐隐月光,http://em.21dtv.com/songs/60079207.mkv +蔡小虎-鸳鸯一场,http://em.21dtv.com/songs/60095910.mkv +王建杰-鸳鸯一场(无原唱),http://em.21dtv.com/songs/60055899.mkv +张雅未+阿龙-永远有爱,http://em.21dtv.com/songs/60054798.mkv +相随-云语星云,http://em.21dtv.com/songs/60101146.mkv +峻石-有缘相遇,http://em.21dtv.com/songs/60055405.mkv +蔡幸娟-烟雨斜阳,http://em.21dtv.com/songs/60052000.mkv +翁倩玉-永远相信,http://em.21dtv.com/songs/60054789.mkv +陈慧琳-永远相信,http://em.21dtv.com/songs/60054788.mkv +佚名-夜夜心疼,http://em.21dtv.com/songs/60052686.mkv +孙淑媚-夜夜心疼,http://em.21dtv.com/songs/60052685.mkv +齐剑-雨夜心情,http://em.21dtv.com/songs/60062817.mkv +完玛三智-夜夜想你,http://em.21dtv.com/songs/60065323.mkv +佚名-月夜小路,http://em.21dtv.com/songs/60056538.mkv +杨千桦-友谊小姐,http://em.21dtv.com/songs/60092833.mkv +孙悦+张萌萌-有缘相聚,http://em.21dtv.com/songs/60055404.mkv +叶振棠-有缘相聚(演唱会),http://em.21dtv.com/songs/60055403.mkv +糖糖乐团-一眼幸福,http://em.21dtv.com/songs/60124335.mkv +黄湘怡-预约幸福,http://em.21dtv.com/songs/60055816.mkv +曾航生-永远幸福,http://em.21dtv.com/songs/60054794.mkv +曾航生-永远幸福(演唱会),http://em.21dtv.com/songs/60054793.mkv +孔昱-雨夜乡愁,http://em.21dtv.com/songs/60093835.mkv +陈鹰-夜夜乡愁(无原唱),http://em.21dtv.com/songs/60052682.mkv +陈盈洁-月夜惜别(无原唱),http://em.21dtv.com/songs/60056535.mkv +泽仁伍波-有缘相爱,http://em.21dtv.com/songs/60120703.mkv +黄宝欣-有缘相爱,http://em.21dtv.com/songs/60055402.mkv +陈奕迅-有意无意,http://em.21dtv.com/songs/60110624.mkv +郑秀月-有缘无缘(无原唱),http://em.21dtv.com/songs/60055401.mkv +雷琛瑜-悠悠我心,http://em.21dtv.com/songs/60119043.mkv +龙千玉-演艺舞台,http://em.21dtv.com/songs/60052112.mkv +群星-演艺舞台(无原唱),http://em.21dtv.com/songs/60052111.mkv +杨千嬅+香港儿童音乐剧团-友谊万岁,http://em.21dtv.com/songs/60109447.mkv +杨千嬅-友谊万岁(演唱会),http://em.21dtv.com/songs/60055081.mkv +令狐-遥遥无期,http://em.21dtv.com/songs/60133354.mkv +焰烽+江灵-一夜无情,http://em.21dtv.com/songs/60068922.mkv +佚名-遥遥无期,http://em.21dtv.com/songs/60052314.mkv +马红亮-一眼万年,http://em.21dtv.com/songs/60136005.mkv +林俊杰-一眼万年,http://em.21dtv.com/songs/60053809.mkv +S.H.E-一眼万年,http://em.21dtv.com/songs/60053808.mkv +肖家永-意犹未尽,http://em.21dtv.com/songs/60124369.mkv +苏永康+李彩桦-意犹未尽,http://em.21dtv.com/songs/60054196.mkv +苏永康+陈慧珊-意犹未尽(演唱会),http://em.21dtv.com/songs/60054195.mkv +王晰-月牙五更,http://em.21dtv.com/songs/60111271.mkv +二人转+闫学晶+董宝贵-月牙五更,http://em.21dtv.com/songs/60071486.mkv +郭颂-月芽五更,http://em.21dtv.com/songs/60056521.mkv +万山红-月牙五更,http://em.21dtv.com/songs/60056519.mkv +秦鲁峰-月牙五更(恰恰),http://em.21dtv.com/songs/60056518.mkv +余天龙-有缘无份,http://em.21dtv.com/songs/60121375.mkv +谢珊-有缘无分,http://em.21dtv.com/songs/60118053.mkv +尹家乐-有缘无份,http://em.21dtv.com/songs/60108460.mkv +书画-有缘无份,http://em.21dtv.com/songs/60093662.mkv +曾春年-有缘无分,http://em.21dtv.com/songs/60079304.mkv +李爱-有缘无分,http://em.21dtv.com/songs/60061852.mkv +佚名-有缘无份,http://em.21dtv.com/songs/60055399.mkv +马浚伟-有缘无份,http://em.21dtv.com/songs/60055398.mkv +方怡萍-有缘无份,http://em.21dtv.com/songs/60055397.mkv +侯旭-有缘无份(演唱会),http://em.21dtv.com/songs/60055396.mkv +罗文+汪明荃-圆月弯刀,http://em.21dtv.com/songs/60056047.mkv +郑少秋+汪明荃-圆月弯刀(演唱会),http://em.21dtv.com/songs/60056046.mkv +汪明荃-圆月弯刀(演唱会),http://em.21dtv.com/songs/60056045.mkv +黎明-一言为定(演唱会),http://em.21dtv.com/songs/60053804.mkv +张蔷-忧郁午餐,http://em.21dtv.com/songs/60091151.mkv +久久-邀月同醉,http://em.21dtv.com/songs/60068902.mkv +甄妮-友谊太阳,http://em.21dtv.com/songs/60093011.mkv +比莉-忧郁通行,http://em.21dtv.com/songs/60054957.mkv +CK+沉珂-忧郁童话,http://em.21dtv.com/songs/60099651.mkv +陈明-雨夜探戈,http://em.21dtv.com/songs/60114861.mkv +王建杰+甲子蕙-鸳鸯手指,http://em.21dtv.com/songs/60055894.mkv +许桂荣-鸳鸯水鸭,http://em.21dtv.com/songs/60055895.mkv +陈奕迅-吟游诗人,http://em.21dtv.com/songs/60065370.mkv +罗时丰-月圆思情,http://em.21dtv.com/songs/60056559.mkv +林姗-月圆思情,http://em.21dtv.com/songs/60056558.mkv +陈盈洁+林俊彦-月圆思情,http://em.21dtv.com/songs/60056557.mkv +邓丽君-月夜诉情,http://em.21dtv.com/songs/60056533.mkv +陈金祥-雨夜思情(无原唱),http://em.21dtv.com/songs/60055732.mkv +佚名-夜雨思情,http://em.21dtv.com/songs/60052697.mkv +杨梦蝶-雨夜思情(无原唱),http://em.21dtv.com/songs/60050740.mkv +卓依婷-一月思念,http://em.21dtv.com/songs/60087448.mkv +温兆伦-永远是你,http://em.21dtv.com/songs/60054778.mkv +汪峰-有意思吗,http://em.21dtv.com/songs/60102455.mkv +张国荣+黄耀明-夜有所梦,http://em.21dtv.com/songs/60052694.mkv +萧敬腾+马达-一眼瞬间,http://em.21dtv.com/songs/60094676.mkv +李琦+林芯仪-一眼瞬间,http://em.21dtv.com/songs/60081559.mkv +张惠妹+萧敬腾-一眼瞬间,http://em.21dtv.com/songs/60053807.mkv +罗百吉+宝贝-夜游上海,http://em.21dtv.com/songs/60052693.mkv +张敬轩-有一首歌,http://em.21dtv.com/songs/60055362.mkv +七郎+邱芸子-鸳鸯锁匙,http://em.21dtv.com/songs/60055896.mkv +简洁-语音若弦,http://em.21dtv.com/songs/60091805.mkv +简洁-雨音若弦,http://em.21dtv.com/songs/60089436.mkv +柳絮-雨夜柔情,http://em.21dtv.com/songs/60096360.mkv +黄可门-烟雨如梦,http://em.21dtv.com/songs/60126469.mkv +李昱和-烟雨入梦,http://em.21dtv.com/songs/60079000.mkv +重小烟-烟影如画,http://em.21dtv.com/songs/60078997.mkv +枫舞+水火相容-夜雨情缘,http://em.21dtv.com/songs/60108631.mkv +林林-月夜倾诉,http://em.21dtv.com/songs/60133878.mkv +韩晓伟-夜雨情思,http://em.21dtv.com/songs/60079071.mkv +大哲-一夜情人,http://em.21dtv.com/songs/60065358.mkv +卫兰-一夜倾情(演唱会),http://em.21dtv.com/songs/60053832.mkv +黎明-一夜倾情(演唱会),http://em.21dtv.com/songs/60053831.mkv +陈百强-烟雨凄迷,http://em.21dtv.com/songs/60051999.mkv +孙耀威+酒井法子-有缘千里,http://em.21dtv.com/songs/60055392.mkv +陈雷+甲子慧-月夜情歌,http://em.21dtv.com/songs/60097179.mkv +张郎-鸳鸯情歌,http://em.21dtv.com/songs/60087082.mkv +樊少华-鸳鸯情歌,http://em.21dtv.com/songs/60084473.mkv +枫桥-雨夜情歌,http://em.21dtv.com/songs/60080497.mkv +王橹窗-月夜情歌,http://em.21dtv.com/songs/60056532.mkv +石卫-一夜情歌,http://em.21dtv.com/songs/60053836.mkv +李明洋-一夜千杯,http://em.21dtv.com/songs/60135361.mkv +方瑞娥-鸳鸯情伴,http://em.21dtv.com/songs/60125620.mkv +易欣+胡东-烟雨飘摇,http://em.21dtv.com/songs/60051998.mkv +陈浩德-月夜鸟啼(演唱会),http://em.21dtv.com/songs/60056530.mkv +周慧璇-依依难舍,http://em.21dtv.com/songs/60096220.mkv +陈雷-依依难舍,http://em.21dtv.com/songs/60079172.mkv +梁汉文+张卫健-一夜年少,http://em.21dtv.com/songs/60066528.mkv +李萌瑛-依依难舍(无原唱),http://em.21dtv.com/songs/60054020.mkv +雷刚-永远年轻,http://em.21dtv.com/songs/60098904.mkv +胡彦斌-一言难尽,http://em.21dtv.com/songs/60107953.mkv +李翊君-一言难尽,http://em.21dtv.com/songs/60084376.mkv +陈羽凡+陈俊豪-一言难尽,http://em.21dtv.com/songs/60081617.mkv +张宇-一言难尽,http://em.21dtv.com/songs/60053803.mkv +佚名-一言难尽,http://em.21dtv.com/songs/60053802.mkv +迪克牛仔-一言难尽,http://em.21dtv.com/songs/60053801.mkv +陈百潭-一言难尽,http://em.21dtv.com/songs/60053800.mkv +陈仁丰-音乐魔咒,http://em.21dtv.com/songs/60072730.mkv +杨静-鸳鸯梦醒,http://em.21dtv.com/songs/60131537.mkv +蔡健雅-愿意渺小,http://em.21dtv.com/songs/60056232.mkv +黄乙玲-鸳鸯梦醒,http://em.21dtv.com/songs/60055892.mkv +付春霞-烟雨蒙蒙,http://em.21dtv.com/songs/60127726.mkv +米线+包伍-月雨绵绵,http://em.21dtv.com/songs/60104358.mkv +改编对唱-月雨绵绵,http://em.21dtv.com/songs/60104165.mkv +古巨基-烟雨蒙蒙,http://em.21dtv.com/songs/60102014.mkv +赵薇-烟雨朦朦,http://em.21dtv.com/songs/60088705.mkv +李虎-烟雨朦朦,http://em.21dtv.com/songs/60084317.mkv +孙露-烟雨蒙蒙,http://em.21dtv.com/songs/60078998.mkv +赵薇-烟雨蒙蒙,http://em.21dtv.com/songs/60051997.mkv +千百惠-烟雨蒙蒙,http://em.21dtv.com/songs/60051996.mkv +女声-烟雨蒙蒙,http://em.21dtv.com/songs/60051995.mkv +男声-烟雨蒙蒙,http://em.21dtv.com/songs/60051994.mkv +佚名-烟雨蒙蒙(慢四),http://em.21dtv.com/songs/60051993.mkv +少司命-烟雨迷离,http://em.21dtv.com/songs/60078999.mkv +李策-原野牧歌,http://em.21dtv.com/songs/60066557.mkv +佚名-原野牧歌,http://em.21dtv.com/songs/60056026.mkv +陈美龄-原野牧歌,http://em.21dtv.com/songs/60056025.mkv +陈红-原野牧歌(演唱会),http://em.21dtv.com/songs/60056024.mkv +马健涛-有缘没份,http://em.21dtv.com/songs/60055391.mkv +周艳泓-依呀来欧,http://em.21dtv.com/songs/60054013.mkv +任芝-鱼跃龙门,http://em.21dtv.com/songs/60110837.mkv +孙恭庆-远远离开,http://em.21dtv.com/songs/60110139.mkv +袁小迪-雨夜路灯,http://em.21dtv.com/songs/60070192.mkv +张瑞哲-夜夜狂舞,http://em.21dtv.com/songs/60052675.mkv +金池-遥遥可及,http://em.21dtv.com/songs/60123261.mkv +王菀之-永远几远,http://em.21dtv.com/songs/60054762.mkv +唐龙-应有尽有,http://em.21dtv.com/songs/60054552.mkv +李彩桦-一眼惊喜(无原唱),http://em.21dtv.com/songs/60092804.mkv +范冰冰+李治廷-一夜惊喜,http://em.21dtv.com/songs/60081304.mkv +古天乐-一眼惊喜,http://em.21dtv.com/songs/60053805.mkv +唐文娟-月映江天,http://em.21dtv.com/songs/60122626.mkv +周炜-月映江天,http://em.21dtv.com/songs/60122602.mkv +姚贝娜-又忆江南,http://em.21dtv.com/songs/60094453.mkv +姚贝娜-又忆江南(演唱会),http://em.21dtv.com/songs/60084456.mkv +贾逸可-烟雨江南,http://em.21dtv.com/songs/60051992.mkv +肖雪-游园惊梦,http://em.21dtv.com/songs/60130668.mkv +卡奇社-游园惊梦,http://em.21dtv.com/songs/60055037.mkv +郭富城-游园惊梦,http://em.21dtv.com/songs/60055036.mkv +郭富城-游园惊梦(演唱会),http://em.21dtv.com/songs/60055035.mkv +刘德华-永远寂寞,http://em.21dtv.com/songs/60054767.mkv +刘德华-永远寂寞(演唱会),http://em.21dtv.com/songs/60054766.mkv +辛晓琪-隐隐寂寞,http://em.21dtv.com/songs/60054392.mkv +佚名-夜夜寂寞,http://em.21dtv.com/songs/60052674.mkv +谢金燕-yo yo姐妹,http://em.21dtv.com/songs/60006479.mkv +苏永康-永远记得,http://em.21dtv.com/songs/60054763.mkv +王建杰-鸳鸯酒杯,http://em.21dtv.com/songs/60055888.mkv +洪荣宏+江蕙-鸳鸯酒杯(无原唱),http://em.21dtv.com/songs/60055887.mkv +张信哲-烟雨红颜,http://em.21dtv.com/songs/60051991.mkv +十三狼-月圆回家,http://em.21dtv.com/songs/60106657.mkv +黄龄-月圆花好,http://em.21dtv.com/songs/60129857.mkv +刘超-拥有辉煌,http://em.21dtv.com/songs/60109195.mkv +曌玉-月园花好,http://em.21dtv.com/songs/60081449.mkv +童丽-月圆花好,http://em.21dtv.com/songs/60079427.mkv +莫旭秋-月圆花好(演唱会),http://em.21dtv.com/songs/60079426.mkv +莫文蔚-月圆花好(演唱会),http://em.21dtv.com/songs/60079425.mkv +紫薇-月圆花好,http://em.21dtv.com/songs/60056551.mkv +周璇-月圆花好,http://em.21dtv.com/songs/60056550.mkv +盟玉-月圆花好,http://em.21dtv.com/songs/60056549.mkv +费玉清-月圆花好,http://em.21dtv.com/songs/60056548.mkv +董文华-月圆花好,http://em.21dtv.com/songs/60056547.mkv +盟玉-月园花好,http://em.21dtv.com/songs/60056541.mkv +孙艺琪-烟雨红尘,http://em.21dtv.com/songs/60131337.mkv +陈宝珠-烟雨红船(演唱会),http://em.21dtv.com/songs/60051990.mkv +麦田守望者-一意孤行,http://em.21dtv.com/songs/60053852.mkv +周子琰-有一个我,http://em.21dtv.com/songs/60113336.mkv +言承旭-有一个我,http://em.21dtv.com/songs/60111395.mkv +1983组合-饮月光沙,http://em.21dtv.com/songs/60097291.mkv +SYL CHAN+JENNY HO-有一个人,http://em.21dtv.com/songs/60087075.mkv +齐豫-有一个人,http://em.21dtv.com/songs/60055359.mkv +林志美-雨夜钢琴,http://em.21dtv.com/songs/60055724.mkv +毅光年-一亿光年,http://em.21dtv.com/songs/60097117.mkv +宋祖英-烟雨桂林,http://em.21dtv.com/songs/60051989.mkv +王野-野雁高飞,http://em.21dtv.com/songs/60052500.mkv +贺东-洋芋疙蛋,http://em.21dtv.com/songs/60110548.mkv +龙飘飘-又要分手,http://em.21dtv.com/songs/60055472.mkv +郑伊健+陈小春-一于奉陪,http://em.21dtv.com/songs/60053854.mkv +阿朵-烟雨凤凰,http://em.21dtv.com/songs/60070113.mkv +唐美华-云雁飞处,http://em.21dtv.com/songs/60107614.mkv +陈伟霆-1121,http://em.21dtv.com/songs/60116331.mkv +S.H.E-永远都在,http://em.21dtv.com/songs/60126543.mkv +罗逻圣-洋洋得意,http://em.21dtv.com/songs/60117973.mkv +婉君-洋洋得意,http://em.21dtv.com/songs/60110128.mkv +姚可儿-羊羊得意,http://em.21dtv.com/songs/60107641.mkv +于浩威-游泳的鱼,http://em.21dtv.com/songs/60055031.mkv +马浚伟-遥远的心,http://em.21dtv.com/songs/60052339.mkv +李克勤-遥远的她,http://em.21dtv.com/songs/60118663.mkv +陈奕迅-遥远的她,http://em.21dtv.com/songs/60093411.mkv +夹子道-一样的天,http://em.21dtv.com/songs/60053812.mkv +张学友-遥远的她(演唱会),http://em.21dtv.com/songs/60052336.mkv +张云卉-一样的事,http://em.21dtv.com/songs/60131393.mkv +岳夏-永远的诗,http://em.21dtv.com/songs/60087733.mkv +BEYOND-遥远的paradise,http://em.21dtv.com/songs/60052320.mkv +谢安琪-遥远的paradise(演唱会),http://em.21dtv.com/songs/60052319.mkv +黄贯中-遥远的paradise(演唱会),http://em.21dtv.com/songs/60052318.mkv +赵咏华-永远的梦,http://em.21dtv.com/songs/60054709.mkv +邓丽君-遥远的路,http://em.21dtv.com/songs/60052332.mkv +邓海-永远的家,http://em.21dtv.com/songs/60122159.mkv +尧尧-永远的家,http://em.21dtv.com/songs/60054703.mkv +燕妮-永远的家,http://em.21dtv.com/songs/60054702.mkv +陈绮贞-越洋电话,http://em.21dtv.com/songs/60090299.mkv +佚名-有缘的话,http://em.21dtv.com/songs/60055387.mkv +黎瑞恩-遥远的歌,http://em.21dtv.com/songs/60052328.mkv +林一峰+香港童声合唱-悠悠的风,http://em.21dtv.com/songs/60054966.mkv +少女部落格-洋芋丁丁,http://em.21dtv.com/songs/60113431.mkv +罗中旭-游游荡荡,http://em.21dtv.com/songs/60088425.mkv +佚名-游游荡荡,http://em.21dtv.com/songs/60055032.mkv +顺子-永远等待,http://em.21dtv.com/songs/60054747.mkv +谢安琪-永远等待(演唱会),http://em.21dtv.com/songs/60054746.mkv +黄家强+黄贯中+叶世荣-永远等待(演唱会),http://em.21dtv.com/songs/60054745.mkv +KOLOR-永远等待(演唱会),http://em.21dtv.com/songs/60054744.mkv +尤国通-永远的兵,http://em.21dtv.com/songs/60104975.mkv +罗力威-远远的爱,http://em.21dtv.com/songs/60126029.mkv +罗力威-远远的爱,http://em.21dtv.com/songs/60124342.mkv +韩宝仪-永远的爱,http://em.21dtv.com/songs/60054692.mkv +高向鹏-夜夜春宵(无原唱),http://em.21dtv.com/songs/60052673.mkv +么健-烟雨初秋,http://em.21dtv.com/songs/60127703.mkv +麦洁文-夜夜痴情,http://em.21dtv.com/songs/60062755.mkv +陈奕迅-粤语残片(演唱会),http://em.21dtv.com/songs/60056636.mkv +芊芳+罗瑞诚-永远缠绵,http://em.21dtv.com/songs/60135662.mkv +许廷铿+郑俊弘+胡鸿钧-一夜成名,http://em.21dtv.com/songs/60126180.mkv +李萌-一夜成名,http://em.21dtv.com/songs/60104226.mkv +郑秀文-一夜成名(演唱会),http://em.21dtv.com/songs/60053827.mkv +李施文迪-优优唱歌,http://em.21dtv.com/songs/60097237.mkv +麦洁文-夜夜痴缠,http://em.21dtv.com/songs/60052672.mkv +曾心梅-永远不同,http://em.21dtv.com/songs/60054688.mkv +张卫健+黎姿-依依不舍,http://em.21dtv.com/songs/60054019.mkv +李克勤-依依不舍,http://em.21dtv.com/songs/60054018.mkv +李玖哲-依依不舍,http://em.21dtv.com/songs/60054017.mkv +张信哲-依依不舍(无原唱),http://em.21dtv.com/songs/60054016.mkv +谭炳文+李香琴-永远伴侣,http://em.21dtv.com/songs/60093217.mkv +FIRE-遥遥摆摆,http://em.21dtv.com/songs/60087192.mkv +沈芳如-摇摇摆摆,http://em.21dtv.com/songs/60070123.mkv +韦嘉-摇摇摆摆,http://em.21dtv.com/songs/60052294.mkv +天织堂-摇摇摆摆,http://em.21dtv.com/songs/60052293.mkv +FIRE-摇摇摆摆,http://em.21dtv.com/songs/60052292.mkv +宫之飞-永远爱你,http://em.21dtv.com/songs/60108449.mkv +陈夏莲+李明洋-犹原爱你,http://em.21dtv.com/songs/60103675.mkv +高向鹏+郑琇月-永远爱你,http://em.21dtv.com/songs/60100659.mkv +谢金燕-永远爱你,http://em.21dtv.com/songs/60054670.mkv +翁立友-永远爱你,http://em.21dtv.com/songs/60054669.mkv +太极乐队-永远爱你,http://em.21dtv.com/songs/60054668.mkv +骆超勇-永远爱你,http://em.21dtv.com/songs/60054667.mkv +林忆莲-永远爱你,http://em.21dtv.com/songs/60054666.mkv +办桌阿龙+苏又榕-永远爱你,http://em.21dtv.com/songs/60054665.mkv +太极乐队-永远爱你(演唱会),http://em.21dtv.com/songs/60054664.mkv +CT GIRLS-永远爱你(舞曲版),http://em.21dtv.com/songs/60054663.mkv +佚名-一样爱你,http://em.21dtv.com/songs/60053810.mkv +吴宗宪-永远安康,http://em.21dtv.com/songs/60054676.mkv +龙千玉-永浴爱河,http://em.21dtv.com/songs/60054653.mkv +章小军-英雄之战,http://em.21dtv.com/songs/60107100.mkv +佚名-游戏终止,http://em.21dtv.com/songs/60055026.mkv +SHINE-一笑至知(演唱会),http://em.21dtv.com/songs/60053790.mkv +宋宥彬-也许这样,http://em.21dtv.com/songs/60121590.mkv +蒋姗倍-印象自我,http://em.21dtv.com/songs/60112932.mkv +高超-英雄之恋,http://em.21dtv.com/songs/60072732.mkv +龙千玉-异乡之恋,http://em.21dtv.com/songs/60054158.mkv +王芳-英雄赞歌,http://em.21dtv.com/songs/60107083.mkv +王芳-英雄赞歌,http://em.21dtv.com/songs/60096410.mkv +蔡其平-英雄中国(演唱会),http://em.21dtv.com/songs/60054446.mkv +佚名-英雄赞歌,http://em.21dtv.com/songs/60054445.mkv +王秀芬-英雄赞歌,http://em.21dtv.com/songs/60054444.mkv +佚名-英雄赞歌(探戈),http://em.21dtv.com/songs/60054443.mkv +林冲-依乡之歌(演唱会),http://em.21dtv.com/songs/60054012.mkv +童唱-一休之歌,http://em.21dtv.com/songs/60053799.mkv +F.I.R-应许之地,http://em.21dtv.com/songs/60054551.mkv +曾晓薇-异乡夜月(无原唱),http://em.21dtv.com/songs/60054157.mkv +刘德华-一心一意,http://em.21dtv.com/songs/60053797.mkv +黄妃-一心一意,http://em.21dtv.com/songs/60053796.mkv +铁树兰乐队-游戏游戏,http://em.21dtv.com/songs/60126333.mkv +余天-也许也许,http://em.21dtv.com/songs/60052449.mkv +苟伟-越陷越深,http://em.21dtv.com/songs/60088550.mkv +员伟明-越陷越深,http://em.21dtv.com/songs/60087090.mkv +潘东亮-烟消云散,http://em.21dtv.com/songs/60078996.mkv +莫少聪-愈陷愈深(无原唱),http://em.21dtv.com/songs/60055880.mkv +荒山亮-烟消云散,http://em.21dtv.com/songs/60051988.mkv +张玮-英雄崛起,http://em.21dtv.com/songs/60071444.mkv +任贤齐-英雄有路,http://em.21dtv.com/songs/60123618.mkv +李心洁-又下雨了,http://em.21dtv.com/songs/60055471.mkv +陈慧琳-有血有泪,http://em.21dtv.com/songs/60055350.mkv +陈奕迅-于心有愧,http://em.21dtv.com/songs/60055501.mkv +张学友-隐形眼镜,http://em.21dtv.com/songs/60054390.mkv +陈柏宇-夭心夭肺(演唱会),http://em.21dtv.com/songs/60084666.mkv +陈柏宇-夭心夭肺,http://em.21dtv.com/songs/60080445.mkv +许志安-优先拥抱,http://em.21dtv.com/songs/60093151.mkv +王心雅-印象小镇,http://em.21dtv.com/songs/60054403.mkv +林志颖-用心相信,http://em.21dtv.com/songs/60054927.mkv +王可+张文静-彝乡新貌,http://em.21dtv.com/songs/60086134.mkv +陈荣乐-要下雪了,http://em.21dtv.com/songs/60079050.mkv +潘晓峰-又下雪了,http://em.21dtv.com/songs/60055470.mkv +金波-印象新疆(演唱会),http://em.21dtv.com/songs/60054404.mkv +陈旭+美璇-有些幸福,http://em.21dtv.com/songs/60065400.mkv +本兮-有心无意,http://em.21dtv.com/songs/60120591.mkv +翁立友-一心为你,http://em.21dtv.com/songs/60126072.mkv +李建科-英雄无名(演唱会),http://em.21dtv.com/songs/60067717.mkv +荒山亮-英雄无名,http://em.21dtv.com/songs/60054441.mkv +裴一飞-英雄无泪,http://em.21dtv.com/songs/60070169.mkv +甄妮-英雄无泪,http://em.21dtv.com/songs/60054439.mkv +孙楠-于心无愧,http://em.21dtv.com/songs/60055500.mkv +黄凤仪-一笑天涯,http://em.21dtv.com/songs/60070154.mkv +荒山亮-一笑天下,http://em.21dtv.com/songs/60118013.mkv +蔡振南-一笑天下,http://em.21dtv.com/songs/60053789.mkv +谢霆锋-用心跳舞,http://em.21dtv.com/songs/60093194.mkv +舒灿-异想天开,http://em.21dtv.com/songs/60105314.mkv +陈奕-奕想天开,http://em.21dtv.com/songs/60054176.mkv +杨丞琳-异想天开,http://em.21dtv.com/songs/60054161.mkv +陈倩倩-异想天开,http://em.21dtv.com/songs/60054160.mkv +张蓉蓉-一芯三叶,http://em.21dtv.com/songs/60135234.mkv +陈雷-月下誓言,http://em.21dtv.com/songs/60056514.mkv +李思琳-银杏树下,http://em.21dtv.com/songs/60079205.mkv +吴越-英雄是我,http://em.21dtv.com/songs/60084409.mkv +影视歌曲-英雄谁属,http://em.21dtv.com/songs/60087873.mkv +王喆-隐形丝路,http://em.21dtv.com/songs/60054389.mkv +邓丽君-月下送君,http://em.21dtv.com/songs/60056515.mkv +金佩姗-一线生机(无原唱),http://em.21dtv.com/songs/60053777.mkv +周传雄-也许是爱,http://em.21dtv.com/songs/60052443.mkv +沈文程-英雄人物(无原唱),http://em.21dtv.com/songs/60054436.mkv +郭富城-有效日期,http://em.21dtv.com/songs/60055333.mkv +郭富城-有效日期(演唱会),http://em.21dtv.com/songs/60055332.mkv +郑智化-游戏人间,http://em.21dtv.com/songs/60055025.mkv +童安格-游戏人间,http://em.21dtv.com/songs/60055024.mkv +员伟明-也许如此,http://em.21dtv.com/songs/60081249.mkv +桂子-印象泉州,http://em.21dtv.com/songs/60104255.mkv +许志刚-椰乡情韵,http://em.21dtv.com/songs/60122116.mkv +杨林-一厢情愿,http://em.21dtv.com/songs/60053781.mkv +堂娜-一厢情愿,http://em.21dtv.com/songs/60053780.mkv +大哲-一厢情愿,http://em.21dtv.com/songs/60053779.mkv +BEYOND-一厢情愿,http://em.21dtv.com/songs/60053778.mkv +陈星-一线情缘,http://em.21dtv.com/songs/60053776.mkv +何松梅-月下情丝,http://em.21dtv.com/songs/60061867.mkv +容祖儿-隐形情人,http://em.21dtv.com/songs/60087062.mkv +葛本军-月下倾情,http://em.21dtv.com/songs/60056511.mkv +张鸿宇-有型青年,http://em.21dtv.com/songs/60118573.mkv +回音哥-又想起你,http://em.21dtv.com/songs/60079314.mkv +邓丽君-原乡情浓(演唱会),http://em.21dtv.com/songs/60056019.mkv +田路路-异乡情梦,http://em.21dtv.com/songs/60054152.mkv +方顺吉-异乡情梦(无原唱),http://em.21dtv.com/songs/60054151.mkv +艺林歌哥+莉苹姐姐-月下情歌,http://em.21dtv.com/songs/60096114.mkv +童丽-月下情歌,http://em.21dtv.com/songs/60068963.mkv +佚名-月下情歌,http://em.21dtv.com/songs/60056513.mkv +吕薇-月下情歌,http://em.21dtv.com/songs/60056512.mkv +汪苏泷-一笑倾城,http://em.21dtv.com/songs/60127157.mkv +黄志权-异性朋友,http://em.21dtv.com/songs/60133127.mkv +韦嘉裕+清一色-异性朋友,http://em.21dtv.com/songs/60128576.mkv +周小曼+杨科-异性朋友,http://em.21dtv.com/songs/60094029.mkv +周小曼-异性朋友,http://em.21dtv.com/songs/60084394.mkv +音频怪物-英雄难做,http://em.21dtv.com/songs/60118185.mkv +刘瀚升-又现南风,http://em.21dtv.com/songs/60072750.mkv +杨子杰-也许明天,http://em.21dtv.com/songs/60130458.mkv +赵晗+好声音学员-也许明天,http://em.21dtv.com/songs/60115421.mkv +谭维维-也许明天,http://em.21dtv.com/songs/60108894.mkv +李佳薇-也许明天,http://em.21dtv.com/songs/60105969.mkv +张丹丹+由美-也许明天,http://em.21dtv.com/songs/60104105.mkv +任科来-也许明天,http://em.21dtv.com/songs/60099740.mkv +姚贝娜-也许明天,http://em.21dtv.com/songs/60081503.mkv +曾一鸣-也许明天[中国最强音](演唱会),http://em.21dtv.com/songs/60079051.mkv +大山-也许明天,http://em.21dtv.com/songs/60071406.mkv +张惠妹-也许明天,http://em.21dtv.com/songs/60052439.mkv +卫东-英雄美人,http://em.21dtv.com/songs/60094016.mkv +陈惠英-遥想梁祝,http://em.21dtv.com/songs/60061802.mkv +黄妃-有闲来坐,http://em.21dtv.com/songs/60055330.mkv +佚名-缘续来生,http://em.21dtv.com/songs/60056113.mkv +满文军-缘续来生,http://em.21dtv.com/songs/60056112.mkv +王瑞霞-用心来陪(无原唱),http://em.21dtv.com/songs/60072717.mkv +周育婵-用心来陪(无原唱),http://em.21dtv.com/songs/60054916.mkv +孙露-用心良苦,http://em.21dtv.com/songs/60099940.mkv +齐秦-用心良苦(演唱会),http://em.21dtv.com/songs/60079254.mkv +齐秦-用心良苦,http://em.21dtv.com/songs/60072738.mkv +卓依婷-用心良苦,http://em.21dtv.com/songs/60054922.mkv +张宇-用心良苦,http://em.21dtv.com/songs/60054921.mkv +刘德华-用心良苦,http://em.21dtv.com/songs/60054920.mkv +叶倩文-用心良苦(演唱会),http://em.21dtv.com/songs/60054919.mkv +毛宁-用心良苦(演唱会),http://em.21dtv.com/songs/60054918.mkv +羽泉-饮下烈酒,http://em.21dtv.com/songs/60091881.mkv +湘齐萌-瑶乡恋歌,http://em.21dtv.com/songs/60114669.mkv +李逸-夜行列车,http://em.21dtv.com/songs/60052572.mkv +张天龙-毓秀开江,http://em.21dtv.com/songs/60105029.mkv +潘秀琼-月下佳人,http://em.21dtv.com/songs/60056510.mkv +杨小萍-月下寄情,http://em.21dtv.com/songs/60056509.mkv +陈茂丰-用心交陪,http://em.21dtv.com/songs/60117354.mkv +龙千玉+翁立友-用心交陪,http://em.21dtv.com/songs/60054914.mkv +蔡淳佳-隐形纪念,http://em.21dtv.com/songs/60054386.mkv +谢霆锋-余下节目,http://em.21dtv.com/songs/60092106.mkv +张宇-余兴节目,http://em.21dtv.com/songs/60055511.mkv +谢霆锋-余兴节目,http://em.21dtv.com/songs/60055510.mkv +林宇中-余兴节目,http://em.21dtv.com/songs/60055509.mkv +蔡健雅-余兴节目(演唱会),http://em.21dtv.com/songs/60055508.mkv +党飞锋-英雄红颜,http://em.21dtv.com/songs/60130095.mkv +罗时丰-英雄好汉,http://em.21dtv.com/songs/60111351.mkv +余天龙+陈四皆-英雄好汉,http://em.21dtv.com/songs/60108302.mkv +傅振辉-英雄好汉(无原唱),http://em.21dtv.com/songs/60054427.mkv +黎瑞恩-异乡红尘,http://em.21dtv.com/songs/60054146.mkv +纪晓斌-游戏规则,http://em.21dtv.com/songs/60127268.mkv +穆维平-印象贵州,http://em.21dtv.com/songs/60111339.mkv +阿峻飞猫-越秀公园,http://em.21dtv.com/songs/60084488.mkv +陈冰-与星共舞,http://em.21dtv.com/songs/60110609.mkv +张学友-一些感受,http://em.21dtv.com/songs/60087801.mkv +胡媛媛-用心感受,http://em.21dtv.com/songs/60068937.mkv +李克勤-英雄故事,http://em.21dtv.com/songs/60054426.mkv +张学友-一些感觉,http://em.21dtv.com/songs/60053791.mkv +德龙-英雄孤单,http://em.21dtv.com/songs/60079213.mkv +蔡秋凤+办桌二人组-用心干杯,http://em.21dtv.com/songs/60054913.mkv +成泉-也许放弃,http://em.21dtv.com/songs/60115953.mkv +王大文-云霄飞车,http://em.21dtv.com/songs/60109526.mkv +韩磊-用心付出,http://em.21dtv.com/songs/60094347.mkv +黄湘怡-云霄飞车,http://em.21dtv.com/songs/60056677.mkv +蔡淳佳-要幸福啊,http://em.21dtv.com/songs/60052398.mkv +林俊吉+凤娘-一心二叶,http://em.21dtv.com/songs/60127099.mkv +那英-一笑而过,http://em.21dtv.com/songs/60053788.mkv +关心妍-优先订座,http://em.21dtv.com/songs/60054939.mkv +关心妍-优先订座(演唱会),http://em.21dtv.com/songs/60054938.mkv +焦靖峰-异乡的月,http://em.21dtv.com/songs/60110360.mkv +蜜雪薇琪-隐形的雪,http://em.21dtv.com/songs/60054385.mkv +张政雄+薛佩洁-用心代替,http://em.21dtv.com/songs/60054906.mkv +张四十三-异乡的人(无原唱),http://em.21dtv.com/songs/60062219.mkv +孙博-异乡的龙,http://em.21dtv.com/songs/60087653.mkv +晓华+华娃-月下对口(演唱会),http://em.21dtv.com/songs/60084501.mkv +卓依婷-月下对口,http://em.21dtv.com/songs/60056507.mkv +庄学忠-月下对口,http://em.21dtv.com/songs/60056506.mkv +佚名-月下对口,http://em.21dtv.com/songs/60056505.mkv +黄文星-一笑顶峰,http://em.21dtv.com/songs/60114302.mkv +韦帅-英雄大道,http://em.21dtv.com/songs/60111519.mkv +施志兴+吴幸妏-用心等待,http://em.21dtv.com/songs/60079253.mkv +李学慧-印象草原,http://em.21dtv.com/songs/60105977.mkv +郭采洁-隐形超人,http://em.21dtv.com/songs/60054382.mkv +秦齐-也许承诺,http://em.21dtv.com/songs/60124320.mkv +刘舫-异乡茶客,http://em.21dtv.com/songs/60072726.mkv +陶燕青-雨巷残灯,http://em.21dtv.com/songs/60124666.mkv +罗大佑-也许不易,http://em.21dtv.com/songs/60093023.mkv +王宏伟-英雄本色,http://em.21dtv.com/songs/60086149.mkv +欢子-于心不忍,http://em.21dtv.com/songs/60065407.mkv +余天-于心不忍,http://em.21dtv.com/songs/60055499.mkv +黄雅珉-于心不忍,http://em.21dtv.com/songs/60055498.mkv +黄鹤翔-于心不忍,http://em.21dtv.com/songs/60055497.mkv +萧蔷-意想不到,http://em.21dtv.com/songs/60054194.mkv +芭比-野心勃勃,http://em.21dtv.com/songs/60052498.mkv +周传雄-游戏爱情,http://em.21dtv.com/songs/60055022.mkv +罗密欧-游戏爱情(无原唱),http://em.21dtv.com/songs/60055021.mkv +佚名-一休さん,http://em.21dtv.com/songs/60053798.mkv +肆伍乐队-由我主宰,http://em.21dtv.com/songs/60135636.mkv +韩雪-一问再问,http://em.21dtv.com/songs/60080974.mkv +许培军-由我掌握,http://em.21dtv.com/songs/60079262.mkv +篱落素素-意外之外,http://em.21dtv.com/songs/60054193.mkv +李雨寿-一万种伤,http://em.21dtv.com/songs/60135382.mkv +张伦辉-勇往直前,http://em.21dtv.com/songs/60130297.mkv +奉天乐队-勇往直前,http://em.21dtv.com/songs/60123810.mkv +徐佳莹-遗忘之前,http://em.21dtv.com/songs/60119567.mkv +小豪-勇往直前,http://em.21dtv.com/songs/60115875.mkv +群星-勇往直前,http://em.21dtv.com/songs/60105297.mkv +张碧晨-一吻之间,http://em.21dtv.com/songs/60105862.mkv +荒山亮-与我争锋,http://em.21dtv.com/songs/60055609.mkv +刘德华-一晚长大,http://em.21dtv.com/songs/60053747.mkv +柳岩-欲望之城,http://em.21dtv.com/songs/60108633.mkv +蓝沁-欲望之城,http://em.21dtv.com/songs/60079350.mkv +尹光-一味要揸(演唱会),http://em.21dtv.com/songs/60053766.mkv +河图-月舞云袖,http://em.21dtv.com/songs/60086193.mkv +周笔畅-因为有我,http://em.21dtv.com/songs/60087594.mkv +陈慧恬-咿唔咿唔,http://em.21dtv.com/songs/60070156.mkv +张惠妹-因为有我(演唱会),http://em.21dtv.com/songs/60054306.mkv +李猛+杨小曼-因为有你,http://em.21dtv.com/songs/60133817.mkv +欧得洋-因为有你,http://em.21dtv.com/songs/60110323.mkv +丫明家族-因为游你,http://em.21dtv.com/songs/60106574.mkv +王喆-因为有你,http://em.21dtv.com/songs/60106099.mkv +牟学权-因为有你,http://em.21dtv.com/songs/60106089.mkv +齐萧-因为有你,http://em.21dtv.com/songs/60100685.mkv +林正+郑宇伶+兰馨+刘佳铭-因为有你,http://em.21dtv.com/songs/60086145.mkv +罗中旭-因为有你,http://em.21dtv.com/songs/60081948.mkv +四个朋友-因为有你,http://em.21dtv.com/songs/60080701.mkv +孙楠-因为有你,http://em.21dtv.com/songs/60079199.mkv +姜育恒+马一鸣-因为有你,http://em.21dtv.com/songs/60071443.mkv +米靓-因为有你,http://em.21dtv.com/songs/60070166.mkv +JPM-因为有你,http://em.21dtv.com/songs/60062068.mkv +音乐铁人-因为有你,http://em.21dtv.com/songs/60061836.mkv +周渝民-有我有你,http://em.21dtv.com/songs/60055328.mkv +佚名-有我有你(无原唱),http://em.21dtv.com/songs/60055327.mkv +佚名-因为有你,http://em.21dtv.com/songs/60054304.mkv +信乐团-因为有你,http://em.21dtv.com/songs/60054303.mkv +王识贤+秀兰玛雅-因为有你,http://em.21dtv.com/songs/60054302.mkv +王力宏-因为有你,http://em.21dtv.com/songs/60054301.mkv +青蛙乐队+王筝-因为有你,http://em.21dtv.com/songs/60054300.mkv +米亮-因为有你,http://em.21dtv.com/songs/60054299.mkv +刘耕宏-因为有你,http://em.21dtv.com/songs/60054298.mkv +李鑫雨-因为有你,http://em.21dtv.com/songs/60054297.mkv +李佳-因为有你,http://em.21dtv.com/songs/60054296.mkv +君臣-因为有你,http://em.21dtv.com/songs/60054295.mkv +邓美月-因为有你,http://em.21dtv.com/songs/60054294.mkv +祖海+汤灿+王丽达+常思思-因为有你(演唱会),http://em.21dtv.com/songs/60054293.mkv +罗中旭-因为有你(演唱会),http://em.21dtv.com/songs/60054292.mkv +林子娟-因为有你(无原唱),http://em.21dtv.com/songs/60054291.mkv +黄霄隆-因为有梦,http://em.21dtv.com/songs/60071442.mkv +罗文聪-因为缘份,http://em.21dtv.com/songs/60094631.mkv +君子-因为有爱,http://em.21dtv.com/songs/60061835.mkv +比莉-因为有爱,http://em.21dtv.com/songs/60054290.mkv +孟文豪-仰望雪域,http://em.21dtv.com/songs/60061801.mkv +郑容和-因为想念,http://em.21dtv.com/songs/60114129.mkv +张杰-仰望星空(演唱会),http://em.21dtv.com/songs/60052225.mkv +王祖蓝+冼杏嫦-要我幸福,http://em.21dtv.com/songs/60128236.mkv +王祖蓝+冼杏嫦-要我幸福,http://em.21dtv.com/songs/60121932.mkv +山子华-仰望西藏,http://em.21dtv.com/songs/60121608.mkv +李迎-仰望西藏,http://em.21dtv.com/songs/60086094.mkv +SAYA-以我为主,http://em.21dtv.com/songs/60054093.mkv +季欣霈-因为我呢,http://em.21dtv.com/songs/60054281.mkv +张泽-因为我蓝(演唱会),http://em.21dtv.com/songs/60054279.mkv +徐千雅-一望无疆,http://em.21dtv.com/songs/60065356.mkv +杨丞琳-与我无关,http://em.21dtv.com/songs/60130449.mkv +庄心妍-与我无关,http://em.21dtv.com/songs/60112652.mkv +乔任梁-与我无关,http://em.21dtv.com/songs/60072752.mkv +程响-一吻天涯,http://em.21dtv.com/songs/60123059.mkv +满文军-与我同行,http://em.21dtv.com/songs/60079335.mkv +佚名-与我同行,http://em.21dtv.com/songs/60055608.mkv +梁文音-遗忘天使,http://em.21dtv.com/songs/60079177.mkv +比莉-欲望天使,http://em.21dtv.com/songs/60055825.mkv +黄征-眼窝太浅,http://em.21dtv.com/songs/60080585.mkv +温岚-仰望天空,http://em.21dtv.com/songs/60052224.mkv +胡歌-一吻天荒,http://em.21dtv.com/songs/60067709.mkv +MC梦-一无所知,http://em.21dtv.com/songs/60115614.mkv +SUNBEATZZ-一无所有,http://em.21dtv.com/songs/60131110.mkv +徐佳莹-一无所有,http://em.21dtv.com/songs/60120560.mkv +崔健-一无所有,http://em.21dtv.com/songs/60116756.mkv +由美-一无所有,http://em.21dtv.com/songs/60104329.mkv +常石磊+萨顶顶-一无所有,http://em.21dtv.com/songs/60098309.mkv +陈羽凡+陈俊豪-一无所有,http://em.21dtv.com/songs/60095146.mkv +刘明辉-一无所有,http://em.21dtv.com/songs/60081095.mkv +佚名-因为所以,http://em.21dtv.com/songs/60054265.mkv +杨千嬅-因为所以,http://em.21dtv.com/songs/60054264.mkv +莫文蔚-因为所以,http://em.21dtv.com/songs/60054263.mkv +杨千嬅-因为所以(演唱会),http://em.21dtv.com/songs/60054262.mkv +杨克强-一无所有,http://em.21dtv.com/songs/60053772.mkv +王杰-一无所有,http://em.21dtv.com/songs/60053771.mkv +齐秦-一无所有,http://em.21dtv.com/songs/60053770.mkv +张惠妹-一无所有(演唱会),http://em.21dtv.com/songs/60053769.mkv +崔健-一无所有(演唱会),http://em.21dtv.com/songs/60053768.mkv +屠洪纲-叶问霜天,http://em.21dtv.com/songs/60081168.mkv +李贤-因为是你,http://em.21dtv.com/songs/60130443.mkv +小岛+刘萌萌-因为是你,http://em.21dtv.com/songs/60109277.mkv +申彗星+娜仁-因为是你,http://em.21dtv.com/songs/60107921.mkv +金泰宇-因为是你,http://em.21dtv.com/songs/60105445.mkv +王心凌-因为是你,http://em.21dtv.com/songs/60054260.mkv +申彗星-因为是你,http://em.21dtv.com/songs/60054259.mkv +庞龙-因为是你,http://em.21dtv.com/songs/60054258.mkv +戴爱玲-一无所惧,http://em.21dtv.com/songs/60111115.mkv +Ailee-因为是爱,http://em.21dtv.com/songs/60120185.mkv +陈治-因为是爱,http://em.21dtv.com/songs/60072728.mkv +沈丹丹-一吻倾心,http://em.21dtv.com/songs/60131602.mkv +晨熙-一网情深,http://em.21dtv.com/songs/60119620.mkv +李翊君-翊往情深,http://em.21dtv.com/songs/60097426.mkv +曾庆瑜-一往情深,http://em.21dtv.com/songs/60087957.mkv +郑伊健+梁咏琪-一往情深,http://em.21dtv.com/songs/60053764.mkv +羽泉-一往情深,http://em.21dtv.com/songs/60053763.mkv +游鸿明-一往情深,http://em.21dtv.com/songs/60053762.mkv +佚名-一往情深,http://em.21dtv.com/songs/60053761.mkv +小虫-一往情深,http://em.21dtv.com/songs/60053760.mkv +刘依纯-一往情深,http://em.21dtv.com/songs/60053759.mkv +梅艳芳-一舞倾情(演唱会),http://em.21dtv.com/songs/60053773.mkv +郑菲-因为你在,http://em.21dtv.com/songs/60122175.mkv +张惠妹-因为你在(演唱会),http://em.21dtv.com/songs/60054257.mkv +郭艳-雁往南飞,http://em.21dtv.com/songs/60126288.mkv +伍思凯-英文名字,http://em.21dtv.com/songs/60054413.mkv +李威-原味冒险(无原唱),http://em.21dtv.com/songs/60056016.mkv +铁竹堂+MC HOTDOG-有玩没完,http://em.21dtv.com/songs/60135864.mkv +梁咏琪-烟雾弥漫,http://em.21dtv.com/songs/60051985.mkv +蛋堡-烟雾弥漫,http://em.21dtv.com/songs/60051984.mkv +小沈龙-以为明了,http://em.21dtv.com/songs/60126810.mkv +HEART B-一碗米饭,http://em.21dtv.com/songs/60111611.mkv +汪苏泷-因为了解,http://em.21dtv.com/songs/60054237.mkv +黄雅莉-原味觉醒,http://em.21dtv.com/songs/60080577.mkv +拉毛王旭-雨雾江南,http://em.21dtv.com/songs/60111124.mkv +林冲-因为寂寞,http://em.21dtv.com/songs/60068929.mkv +张艾嘉-因为寂寞,http://em.21dtv.com/songs/60054236.mkv +李宗盛-因为寂寞,http://em.21dtv.com/songs/60054235.mkv +迪克牛仔-因为寂寞,http://em.21dtv.com/songs/60054234.mkv +梁汉文-一问究境,http://em.21dtv.com/songs/60062622.mkv +杨大为-欲望街车,http://em.21dtv.com/songs/60091398.mkv +陈羑-遗忘呼吸,http://em.21dtv.com/songs/60099591.mkv +谢有才-月舞荷塘,http://em.21dtv.com/songs/60079423.mkv +欣哲-一吻红尘,http://em.21dtv.com/songs/60127142.mkv +杜玫-一吻红尘,http://em.21dtv.com/songs/60122877.mkv +梁雁翎+蔡济文-遗忘过去,http://em.21dtv.com/songs/60054064.mkv +胡彦斌-一万光年,http://em.21dtv.com/songs/60065354.mkv +岳菲-仰望父亲,http://em.21dtv.com/songs/60086093.mkv +任贤齐-义无反顾,http://em.21dtv.com/songs/60132190.mkv +阮丹青-义无反顾,http://em.21dtv.com/songs/60054104.mkv +IU-夜晚的信,http://em.21dtv.com/songs/60134703.mkv +陈瑞-欲望都市,http://em.21dtv.com/songs/60100600.mkv +李勇森-一吻定情,http://em.21dtv.com/songs/60116897.mkv +谢金燕-夜雾的motel,http://em.21dtv.com/songs/60052663.mkv +李慧珍-欲望敦煌,http://em.21dtv.com/songs/60055824.mkv +陈小春+郑伊健+谢天华+林晓峰+钱嘉乐-与我常在,http://em.21dtv.com/songs/60114202.mkv +陈奕迅-与我常在,http://em.21dtv.com/songs/60055607.mkv +刘浩龙-与我常在(演唱会),http://em.21dtv.com/songs/60055606.mkv +陈奕迅-与我常在(HD演唱会),http://em.21dtv.com/songs/60055605.mkv +潘越云-欲望城市(无原唱),http://em.21dtv.com/songs/60055823.mkv +台湾女孩+陈杰瑞-燕窝城堡,http://em.21dtv.com/songs/60072686.mkv +孙楠-遗忘悲伤,http://em.21dtv.com/songs/60090923.mkv +STEPS-you will be sorry,http://em.21dtv.com/songs/60006580.mkv +王蓉+老猫-因为铂乐,http://em.21dtv.com/songs/60070165.mkv +刘清沨-因为爱上,http://em.21dtv.com/songs/60118395.mkv +孙思怡-因为爱上,http://em.21dtv.com/songs/60087656.mkv +王喆-因为爱情,http://em.21dtv.com/songs/60106100.mkv +霍尊+张禄籴-因为爱情,http://em.21dtv.com/songs/60100621.mkv +麦子杰+萨顶顶-因为爱情,http://em.21dtv.com/songs/60081366.mkv +容祖儿+林峰-因为爱情,http://em.21dtv.com/songs/60079193.mkv +大哲-因为爱情,http://em.21dtv.com/songs/60066532.mkv +陈奕迅+王菲-因为爱情(演唱会),http://em.21dtv.com/songs/60065367.mkv +陈奕迅+王菲-因为爱情,http://em.21dtv.com/songs/60054224.mkv +王鸣飞-因为爱你,http://em.21dtv.com/songs/60120792.mkv +C ALLSTAR-因我爱你,http://em.21dtv.com/songs/60113138.mkv +陶钰玉-因为爱你,http://em.21dtv.com/songs/60109720.mkv +陈淑萍-因為愛你,http://em.21dtv.com/songs/60096007.mkv +郭斯炫-因为爱你,http://em.21dtv.com/songs/60084396.mkv +何建清-因为爱你,http://em.21dtv.com/songs/60081317.mkv +谢有才-因为爱你,http://em.21dtv.com/songs/60063181.mkv +魏佳庆-因为爱你,http://em.21dtv.com/songs/60054222.mkv +金城武-因为爱你,http://em.21dtv.com/songs/60054221.mkv +苏永康-因为爱你(演唱会),http://em.21dtv.com/songs/60054220.mkv +SNOOP DOGG+WIZ KHALIFA-young wild and free,http://em.21dtv.com/songs/60074198.mkv +FREE-young wild and,http://em.21dtv.com/songs/60065735.mkv +周柏豪-一拖再拖,http://em.21dtv.com/songs/60111765.mkv +林玉英-缘头仔桑,http://em.21dtv.com/songs/60125789.mkv +林玉英-缘头仔桑,http://em.21dtv.com/songs/60124137.mkv +高凌风-摇头至上,http://em.21dtv.com/songs/60052290.mkv +陈志明-怨叹自家(无原唱),http://em.21dtv.com/songs/60056186.mkv +泳儿-一天一天,http://em.21dtv.com/songs/60065352.mkv +同级生-一天一天,http://em.21dtv.com/songs/60053723.mkv +苏慧伦-一天一天,http://em.21dtv.com/songs/60053722.mkv +梁咏琪-一天一天,http://em.21dtv.com/songs/60053721.mkv +BIG BANG-一天一天,http://em.21dtv.com/songs/60053720.mkv +梁咏琪-一天一世,http://em.21dtv.com/songs/60053719.mkv +周华健-沿途有你,http://em.21dtv.com/songs/60052022.mkv +郑伊健-沿途有你,http://em.21dtv.com/songs/60052021.mkv +王志清-沿途有你(无原唱),http://em.21dtv.com/songs/60052020.mkv +唯莎-越跳越美,http://em.21dtv.com/songs/60131284.mkv +孙邦楠-怨天怨地,http://em.21dtv.com/songs/60109271.mkv +程科-怨天怨地,http://em.21dtv.com/songs/60056188.mkv +徐婕儿-一天一点,http://em.21dtv.com/songs/60053716.mkv +金波-一条小河(演唱会),http://em.21dtv.com/songs/60062525.mkv +陈慧琳-以退为进,http://em.21dtv.com/songs/60054088.mkv +Mr.Graceless-阴天王国,http://em.21dtv.com/songs/60131086.mkv +佚名-英台托媒,http://em.21dtv.com/songs/60054411.mkv +王玲-一条索仔(无原唱),http://em.21dtv.com/songs/60053741.mkv +许志安-雨天晴天,http://em.21dtv.com/songs/60055707.mkv +七郎-一条披链,http://em.21dtv.com/songs/60053736.mkv +KEITH URBAN-youll think of me,http://em.21dtv.com/songs/60006588.mkv +鱼藤乐团-鱼藤乐团,http://em.21dtv.com/songs/60055531.mkv +关楚耀-一体两面,http://em.21dtv.com/songs/60109994.mkv +蓝又时-一体两面,http://em.21dtv.com/songs/60053704.mkv +陈奕迅-阴天快乐,http://em.21dtv.com/songs/60102885.mkv +陈奕迅-阴天快乐(故事情节),http://em.21dtv.com/songs/60100990.mkv +樱桃帮-樱桃可乐,http://em.21dtv.com/songs/60054478.mkv +金静-英台哭灵,http://em.21dtv.com/songs/60054409.mkv +佚名-英台抗婚,http://em.21dtv.com/songs/60054408.mkv +邓丽君-缘投囝子,http://em.21dtv.com/songs/60056108.mkv +许桂荧-缘投囝仔,http://em.21dtv.com/songs/60056107.mkv +丽娜-缘投囝仔,http://em.21dtv.com/songs/60056106.mkv +尤雅-缘投囝仔,http://em.21dtv.com/songs/60050357.mkv +董贞-倚天剑雨,http://em.21dtv.com/songs/60080132.mkv +许志安-雨天睛天,http://em.21dtv.com/songs/60093166.mkv +卫兰-阴天假期,http://em.21dtv.com/songs/60054312.mkv +许志豪+张秀卿-一条红线,http://em.21dtv.com/songs/60070152.mkv +格里杰夫-一台好戏,http://em.21dtv.com/songs/60053703.mkv +刘平芳-油桐花开,http://em.21dtv.com/songs/60054992.mkv +陈淑芳-芋头蕃薯,http://em.21dtv.com/songs/60055793.mkv +金波-一条短信,http://em.21dtv.com/songs/60053730.mkv +黄士佑-一通电话,http://em.21dtv.com/songs/60084375.mkv +黄鸿升-一体成形,http://em.21dtv.com/songs/60080172.mkv +乔乐头-樱桃草莓,http://em.21dtv.com/songs/60065373.mkv +杨钧钧-一生执着(无原唱),http://em.21dtv.com/songs/60053632.mkv +林子祥-缘是这样,http://em.21dtv.com/songs/60056105.mkv +陈魁-一生之水,http://em.21dtv.com/songs/60086126.mkv +林晓培-有生之年,http://em.21dtv.com/songs/60055292.mkv +赵柯-因水之名,http://em.21dtv.com/songs/60054206.mkv +姚世杰+张吉-也是醉了,http://em.21dtv.com/songs/60109254.mkv +方顺吉+魏嘉榆-盐山之恋,http://em.21dtv.com/songs/60103316.mkv +萧正楠-一丝转机,http://em.21dtv.com/songs/60053702.mkv +林子娟-一生知己,http://em.21dtv.com/songs/60053631.mkv +张靓颖-亿声祝福(演唱会),http://em.21dtv.com/songs/60079182.mkv +图桠格-有谁知道,http://em.21dtv.com/songs/60072746.mkv +西单女孩-有谁知道,http://em.21dtv.com/songs/60063133.mkv +罗坚-有谁知道,http://em.21dtv.com/songs/60055316.mkv +窦春雷+何远灿-一生挚爱,http://em.21dtv.com/songs/60131711.mkv +陈艺搏-一生最爱,http://em.21dtv.com/songs/60114226.mkv +谭咏麟-一生至爱,http://em.21dtv.com/songs/60093203.mkv +钟镇涛-要是有缘,http://em.21dtv.com/songs/60052393.mkv +张伟文-要是有缘,http://em.21dtv.com/songs/60052392.mkv +陈奕迅-要是有缘(演唱会),http://em.21dtv.com/songs/60052391.mkv +岳思思-越思越想,http://em.21dtv.com/songs/60084486.mkv +胡鸿钧-一生一心,http://em.21dtv.com/songs/60070149.mkv +刘浩龙-有事有心,http://em.21dtv.com/songs/60055304.mkv +梁朝伟-一生一心,http://em.21dtv.com/songs/60053606.mkv +郑秀文-医生与我,http://em.21dtv.com/songs/60053972.mkv +周柏豪-有生一天,http://em.21dtv.com/songs/60133491.mkv +周柏豪-有生一天,http://em.21dtv.com/songs/60131271.mkv +原子霏-1314,http://em.21dtv.com/songs/60130149.mkv +原子霏-一生一世,http://em.21dtv.com/songs/60123721.mkv +姚贝娜-一声忧伤,http://em.21dtv.com/songs/60120447.mkv +蔡小芳-一生一世,http://em.21dtv.com/songs/60117200.mkv +晓依-1314,http://em.21dtv.com/songs/60108536.mkv +文卓-一生一世,http://em.21dtv.com/songs/60105089.mkv +晓依-1314,http://em.21dtv.com/songs/60098415.mkv +蔡小芳-一生一世,http://em.21dtv.com/songs/60081291.mkv +黄鸿升-1413,http://em.21dtv.com/songs/60080166.mkv +冯玮君-意思意思,http://em.21dtv.com/songs/60054191.mkv +胡东清-一生一世,http://em.21dtv.com/songs/60053601.mkv +高向鹏+林姗-一生一世,http://em.21dtv.com/songs/60053600.mkv +林玉英-一生一世(无原唱),http://em.21dtv.com/songs/60053599.mkv +邰正宵-一三一四,http://em.21dtv.com/songs/60053502.mkv +沙宝亮-一三一四,http://em.21dtv.com/songs/60053501.mkv +宇海文-原生缘起,http://em.21dtv.com/songs/60056012.mkv +马常宝-又是一年,http://em.21dtv.com/songs/60080668.mkv +水木年华-一生有你,http://em.21dtv.com/songs/60053607.mkv +孙权-夜深以后,http://em.21dtv.com/songs/60120450.mkv +陈绮贞-雨水一盒,http://em.21dtv.com/songs/60097314.mkv +程琳-一束阳光,http://em.21dtv.com/songs/60134045.mkv +王杰-有失有得,http://em.21dtv.com/songs/60089419.mkv +孙楠-一生约定,http://em.21dtv.com/songs/60053610.mkv +阿淡-一生一次,http://em.21dtv.com/songs/60067708.mkv +刘德华-一生一次,http://em.21dtv.com/songs/60053594.mkv +何洁-越伤越爱,http://em.21dtv.com/songs/60056605.mkv +余天-又是细雨,http://em.21dtv.com/songs/60055465.mkv +龙飘飘-又是细雨,http://em.21dtv.com/songs/60055464.mkv +韩宝仪-又是细雨,http://em.21dtv.com/songs/60055463.mkv +孙思怡-一生像戏,http://em.21dtv.com/songs/60100829.mkv +陈咏-一生相守,http://em.21dtv.com/songs/60128519.mkv +刘天骐+小婕-一生相随,http://em.21dtv.com/songs/60118382.mkv +佚名-一首小诗(无原唱),http://em.21dtv.com/songs/60053687.mkv +刘和刚+战扬-一生相随,http://em.21dtv.com/songs/60053587.mkv +付笛声+任静-一生相随,http://em.21dtv.com/songs/60053586.mkv +张宇-一生相守,http://em.21dtv.com/songs/60053585.mkv +李克勤-一生想您,http://em.21dtv.com/songs/60053590.mkv +谭咏麟+李克勤-一生想您(演唱会),http://em.21dtv.com/songs/60053589.mkv +李克勤-一生想您(演唱会),http://em.21dtv.com/songs/60053588.mkv +吉克隽逸-一首心歌,http://em.21dtv.com/songs/60080185.mkv +吕斌+张浩-一生兄弟,http://em.21dtv.com/songs/60131244.mkv +王宏天-一生兄弟,http://em.21dtv.com/songs/60108702.mkv +姜鹏-一生兄弟,http://em.21dtv.com/songs/60107646.mkv +三毛-一生相伴,http://em.21dtv.com/songs/60108264.mkv +高庆峥-一生相伴,http://em.21dtv.com/songs/60053584.mkv +董小七-与世无争,http://em.21dtv.com/songs/60123121.mkv +小虫-与世无争,http://em.21dtv.com/songs/60055603.mkv +邱芸子-雨水问情,http://em.21dtv.com/songs/60055698.mkv +唐丽+杨哲-一生为你(HD),http://em.21dtv.com/songs/10012752.mkv +唐俪+扬哲-一生为你,http://em.21dtv.com/songs/60098208.mkv +唐俪+杨哲-一生为你,http://em.21dtv.com/songs/60097118.mkv +龙千玉-一声无奈,http://em.21dtv.com/songs/60053644.mkv +古巨基-有实无名,http://em.21dtv.com/songs/60066542.mkv +TWINS-一时无两,http://em.21dtv.com/songs/60053650.mkv +张学友+李玟-烟丝万缕,http://em.21dtv.com/songs/60051980.mkv +纳兰珠儿+高安-一生无悔,http://em.21dtv.com/songs/60094247.mkv +梦成-一生无悔,http://em.21dtv.com/songs/60071427.mkv +高安+杭娇-一生无悔,http://em.21dtv.com/songs/60067707.mkv +周柏豪+郑融-一事无成,http://em.21dtv.com/songs/60053671.mkv +谭耀文-一生万变,http://em.21dtv.com/songs/60053581.mkv +赞美之泉-云上太阳,http://em.21dtv.com/songs/60067764.mkv +张铁-有时跳舞,http://em.21dtv.com/songs/60055301.mkv +张国荣-一声叹气,http://em.21dtv.com/songs/60092575.mkv +SHANIA TWAIN-youre still the one,http://em.21dtv.com/songs/60006619.mkv +李宇春-youre still the one(演唱会),http://em.21dtv.com/songs/60006618.mkv +MARC ANTHONY-you sang to me,http://em.21dtv.com/songs/60006575.mkv +李志刚-一生痛苦,http://em.21dtv.com/songs/60062615.mkv +宋嘉其+胡芳芳-移山填海,http://em.21dtv.com/songs/60111015.mkv +Bell宇田-雨是甜的,http://em.21dtv.com/songs/60103007.mkv +宇田-雨是甜的,http://em.21dtv.com/songs/60079344.mkv +周杰伦-伊斯坦堡,http://em.21dtv.com/songs/60053964.mkv +李高扬-饮水思源,http://em.21dtv.com/songs/60108590.mkv +成龙-饮水思源(演唱会),http://em.21dtv.com/songs/60054375.mkv +谈梦宵-一生所写,http://em.21dtv.com/songs/60127398.mkv +悠悠朵儿-云水扇心,http://em.21dtv.com/songs/60097159.mkv +晓晓-一生守望,http://em.21dtv.com/songs/60110242.mkv +王喆-一生守望,http://em.21dtv.com/songs/60067706.mkv +易酩-一生守望,http://em.21dtv.com/songs/60065347.mkv +兰天-雨殇思念,http://em.21dtv.com/songs/60097315.mkv +许阁-一四四零,http://em.21dtv.com/songs/60079154.mkv +周杰伦-原始森林,http://em.21dtv.com/songs/60056014.mkv +陈随意+唐俪-一生守候,http://em.21dtv.com/songs/60113078.mkv +王若琳-一生守候,http://em.21dtv.com/songs/60103466.mkv +汪东城-一生守候,http://em.21dtv.com/songs/60081694.mkv +孙子涵-隐身守候,http://em.21dtv.com/songs/60080261.mkv +陈淑桦-一生守候,http://em.21dtv.com/songs/60053576.mkv +李雨儿-云上山歌,http://em.21dtv.com/songs/60067763.mkv +文千岁+梁少芯-易水送别,http://em.21dtv.com/songs/60054169.mkv +林更新+姚晨-一生所爱,http://em.21dtv.com/songs/60132621.mkv +姚晨+林更新-一生所爱,http://em.21dtv.com/songs/60132346.mkv +莫文蔚-一生所爱,http://em.21dtv.com/songs/60130702.mkv +杨子-一生所爱,http://em.21dtv.com/songs/60130456.mkv +韩庚-一生所爱,http://em.21dtv.com/songs/60126436.mkv +谭维维-一生所爱,http://em.21dtv.com/songs/60114067.mkv +邓子霆+路嘉欣-以身试爱,http://em.21dtv.com/songs/60109647.mkv +邓子霆+路嘉欣-以身试爱,http://em.21dtv.com/songs/60109646.mkv +W.K-一生所爱,http://em.21dtv.com/songs/60101603.mkv +舒淇-一生所爱,http://em.21dtv.com/songs/60079145.mkv +关心妍-以身试爱,http://em.21dtv.com/songs/60054086.mkv +卢冠廷-一生所爱,http://em.21dtv.com/songs/60053577.mkv +鲁恩滨-一生荣耀,http://em.21dtv.com/songs/60116402.mkv +翁立友-夜市人生,http://em.21dtv.com/songs/60052650.mkv +黎明花-忧伤日记,http://em.21dtv.com/songs/60079259.mkv +储毅-夜色如潮,http://em.21dtv.com/songs/60105601.mkv +邱芸子+叶诺帆-一世情缘,http://em.21dtv.com/songs/60109655.mkv +陈瑞-一世情缘,http://em.21dtv.com/songs/60108983.mkv +童安格-一世情缘,http://em.21dtv.com/songs/60053664.mkv +龙千玉-一世情缘,http://em.21dtv.com/songs/60053663.mkv +姜育恒-一世情缘,http://em.21dtv.com/songs/60053662.mkv +上明-一生情愿,http://em.21dtv.com/songs/60053571.mkv +谢珊-与谁起舞(故事情节),http://em.21dtv.com/songs/60101507.mkv +郑秀文-颜色气味,http://em.21dtv.com/songs/60052033.mkv +郑秀文-颜色气味(演唱会),http://em.21dtv.com/songs/60052032.mkv +佚名-又是秋天,http://em.21dtv.com/songs/60055462.mkv +钟旎菱-一首情诗,http://em.21dtv.com/songs/60118984.mkv +孙悦-云上青山,http://em.21dtv.com/songs/60087091.mkv +钟旎菱-一首情诗,http://em.21dtv.com/songs/60053686.mkv +高向鹏-一世情人,http://em.21dtv.com/songs/60053661.mkv +张其萍-月上琼楼(演唱会),http://em.21dtv.com/songs/60096268.mkv +林淑鹃-又是秋季,http://em.21dtv.com/songs/60091483.mkv +晨熙-一世牵挂,http://em.21dtv.com/songs/60122796.mkv +周宁-一生牵挂,http://em.21dtv.com/songs/60113337.mkv +李克-忧伤情歌,http://em.21dtv.com/songs/60108565.mkv +群星-袁氏情歌,http://em.21dtv.com/songs/60097372.mkv +才仁卓玛+格绒格西-玉树情歌,http://em.21dtv.com/songs/60087904.mkv +姚笛-一首情歌,http://em.21dtv.com/songs/60080810.mkv +任重-一首情歌,http://em.21dtv.com/songs/60080689.mkv +MR.-一首情歌,http://em.21dtv.com/songs/60079150.mkv +陈瑞+许强-鱼水情歌,http://em.21dtv.com/songs/60055528.mkv +游鸿明-犹是情歌,http://em.21dtv.com/songs/60054979.mkv +阿杜-一首情歌,http://em.21dtv.com/songs/60053685.mkv +佚名-也是情歌,http://em.21dtv.com/songs/60052425.mkv +林宗兴-一首青春,http://em.21dtv.com/songs/60113696.mkv +谭咏麟-雨丝情愁(演唱会),http://em.21dtv.com/songs/60055701.mkv +易帆-一世情愁,http://em.21dtv.com/songs/60053660.mkv +易帆+车静子-一世情愁,http://em.21dtv.com/songs/60053659.mkv +车静子-一世情愁,http://em.21dtv.com/songs/60053658.mkv +兄弟汇-一生朋友,http://em.21dtv.com/songs/60065346.mkv +阮民安+周秀娜-一世朋友,http://em.21dtv.com/songs/60053655.mkv +杨子-一生漂浮,http://em.21dtv.com/songs/60101097.mkv +甄子维-一生飘荡(无原唱),http://em.21dtv.com/songs/60053564.mkv +曹雅雯-一生平安,http://em.21dtv.com/songs/60112724.mkv +赵鹏-叶赛尼亚,http://em.21dtv.com/songs/60107244.mkv +罗时丰-永生难忘,http://em.21dtv.com/songs/60066536.mkv +黄翊-一世浓情,http://em.21dtv.com/songs/60053654.mkv +董敏莉-饮食男女,http://em.21dtv.com/songs/60054374.mkv +单色凌-忧伤蔓延,http://em.21dtv.com/songs/60084433.mkv +小肥-有什么事,http://em.21dtv.com/songs/60099205.mkv +DEAD OR ALIVE-you spin me round,http://em.21dtv.com/songs/60074193.mkv +陆瑶-一瞬美满,http://em.21dtv.com/songs/60105464.mkv +黄冰冰-一世明眸,http://em.21dtv.com/songs/60068920.mkv +沈波-一世迷离,http://em.21dtv.com/songs/60119757.mkv +霓裳-月色朦胧,http://em.21dtv.com/songs/60062782.mkv +雪村-夜色朦胧,http://em.21dtv.com/songs/60052634.mkv +周彬-丫山迷歌,http://em.21dtv.com/songs/60107592.mkv +儿歌-颜色名称,http://em.21dtv.com/songs/60089640.mkv +SPEXIAL-忧伤来袭,http://em.21dtv.com/songs/60125006.mkv +龙泽索南-云上拉萨,http://em.21dtv.com/songs/60116424.mkv +易灵汐-云上拉萨,http://em.21dtv.com/songs/60072775.mkv +林依轮-月色撩人,http://em.21dtv.com/songs/60056492.mkv +张洋+王宏宇-一首老歌,http://em.21dtv.com/songs/60081265.mkv +关心妍-玉石乐队,http://em.21dtv.com/songs/60055789.mkv +李永胜-忧伤快乐,http://em.21dtv.com/songs/60054954.mkv +格西亚-银色节奏,http://em.21dtv.com/songs/60124157.mkv +金海心-右手戒指(演唱会),http://em.21dtv.com/songs/60055482.mkv +西子-忆水江南,http://em.21dtv.com/songs/60079184.mkv +陈慧琳-有时寂寞,http://em.21dtv.com/songs/60055299.mkv +阿悄+徐良-掩饰寂寞,http://em.21dtv.com/songs/60052034.mkv +钟瑾桦-与生俱来,http://em.21dtv.com/songs/60124594.mkv +泳儿-一时倦了,http://em.21dtv.com/songs/60053649.mkv +泳儿-一时倦了(演唱会),http://em.21dtv.com/songs/60053648.mkv +程响-玉石俱焚,http://em.21dtv.com/songs/60107937.mkv +沈建宏-遇上ice cream,http://em.21dtv.com/songs/60055859.mkv +喜波-一世红颜,http://em.21dtv.com/songs/60131285.mkv +音乐走廊-一世红颜,http://em.21dtv.com/songs/60093711.mkv +阿吉仔-一生何用,http://em.21dtv.com/songs/60061821.mkv +童丽-远山含笑,http://em.21dtv.com/songs/60079397.mkv +卓依婷-远山含笑,http://em.21dtv.com/songs/60056159.mkv +凌波-远山含笑,http://em.21dtv.com/songs/60056158.mkv +邓丽君-欲说还休,http://em.21dtv.com/songs/60055822.mkv +佚名-一时湖涂,http://em.21dtv.com/songs/60018620.mkv +欧豪-一生何求,http://em.21dtv.com/songs/60130511.mkv +钟明秋-一生何求,http://em.21dtv.com/songs/60126312.mkv +刘德华-一生何求,http://em.21dtv.com/songs/60095188.mkv +应豪-一生何求,http://em.21dtv.com/songs/60092551.mkv +黑妹+李国祥+郑世豪-一生何求(演唱会),http://em.21dtv.com/songs/60079144.mkv +谭咏麟+杜丽莎-一生何求(演唱会),http://em.21dtv.com/songs/60071426.mkv +温兆伦-一生何求,http://em.21dtv.com/songs/60053556.mkv +李克勤-一生何求,http://em.21dtv.com/songs/60053555.mkv +古巨基-一生何求,http://em.21dtv.com/songs/60053554.mkv +陈百强-一生何求,http://em.21dtv.com/songs/60053553.mkv +张伟文-一生何求(演唱会),http://em.21dtv.com/songs/60053552.mkv +雷安娜-一生何求(演唱会),http://em.21dtv.com/songs/60053551.mkv +陈百强-一生何求(演唱会),http://em.21dtv.com/songs/60053550.mkv +咖啡因乐队-银色海鸥(演唱会),http://em.21dtv.com/songs/60084405.mkv +孙翊轩-罂粟花开,http://em.21dtv.com/songs/60089805.mkv +于逸飞-又是何苦,http://em.21dtv.com/songs/60055459.mkv +温兆伦-一生何价,http://em.21dtv.com/songs/60070148.mkv +余天-又是黄昏,http://em.21dtv.com/songs/60055461.mkv +黄家强+邓惠欣-又是黄昏(演唱会),http://em.21dtv.com/songs/60055460.mkv +群星-云上贵州,http://em.21dtv.com/songs/60120851.mkv +群星-云上贵州,http://em.21dtv.com/songs/60115333.mkv +白玛卓玛-玉树高原,http://em.21dtv.com/songs/60055790.mkv +许嵩-雅俗共赏,http://em.21dtv.com/songs/60124477.mkv +许嵩-雅俗共赏,http://em.21dtv.com/songs/60122113.mkv +许嵩-忧伤歌声,http://em.21dtv.com/songs/60054953.mkv +柳影虹-有谁共鸣(演唱会),http://em.21dtv.com/songs/60079299.mkv +佚名-与谁共鸣,http://em.21dtv.com/songs/60055604.mkv +张国荣-有谁共鸣,http://em.21dtv.com/songs/60055307.mkv +张国荣-有谁共鸣(演唱会),http://em.21dtv.com/songs/60055306.mkv +河图-依山观澜,http://em.21dtv.com/songs/60115264.mkv +郭富城-银色公路,http://em.21dtv.com/songs/60054351.mkv +王祖贤-与世隔绝,http://em.21dtv.com/songs/60055601.mkv +佚名-有时歌唱,http://em.21dtv.com/songs/60055293.mkv +许椿苗-一声佛钟,http://em.21dtv.com/songs/60127392.mkv +谭咏麟-一世风云(演唱会),http://em.21dtv.com/songs/60053653.mkv +[Group] +groupName=十六万歌曲MV等 - 61 +何韵诗-以身犯险,http://em.21dtv.com/songs/60092266.mkv +Super Girls-有事发生,http://em.21dtv.com/songs/60125010.mkv +SuperGirls-有事发生,http://em.21dtv.com/songs/60121309.mkv +尤国通-衣食父母,http://em.21dtv.com/songs/60104977.mkv +冯晓菲-衣食父母,http://em.21dtv.com/songs/60086129.mkv +Smile小千-一世芳华,http://em.21dtv.com/songs/60134798.mkv +伍佰-一石二鸟,http://em.21dtv.com/songs/60053645.mkv +毛宁-一生的缘,http://em.21dtv.com/songs/60053542.mkv +李宇春-淹死的鱼(演唱会),http://em.21dtv.com/songs/60052003.mkv +带泪的鱼-忧伤的我,http://em.21dtv.com/songs/60121624.mkv +小昔米-忧伤倒数,http://em.21dtv.com/songs/60079255.mkv +OSCAR-遗失的梦,http://em.21dtv.com/songs/60079175.mkv +张玮-遗世独立,http://em.21dtv.com/songs/60111892.mkv +郑秀文-与神对话,http://em.21dtv.com/songs/60097134.mkv +李志刚-一生等候,http://em.21dtv.com/songs/60088012.mkv +许志安-与神对话,http://em.21dtv.com/songs/60055600.mkv +许志安-与神对话(演唱会),http://em.21dtv.com/songs/60055599.mkv +蔡秋凤-移山倒海,http://em.21dtv.com/songs/60054041.mkv +SNH48+朱元冰-一首对唱,http://em.21dtv.com/songs/60125003.mkv +孟飞-一生的爱,http://em.21dtv.com/songs/60128977.mkv +吴勇滨-一生的爱,http://em.21dtv.com/songs/60122577.mkv +吴勇滨-一生的爱,http://em.21dtv.com/songs/60110921.mkv +林俊杰-一生的爱,http://em.21dtv.com/songs/60066524.mkv +张蓉蓉-一生的爱,http://em.21dtv.com/songs/60053529.mkv +龙千玉-一生的爱,http://em.21dtv.com/songs/60053528.mkv +李冰冰-一生的爱,http://em.21dtv.com/songs/60053527.mkv +李幸倪-1st date,http://em.21dtv.com/songs/60061331.mkv +宝云-一世尘缘,http://em.21dtv.com/songs/60117677.mkv +孙露-一生痴心,http://em.21dtv.com/songs/60115795.mkv +孙露-一生痴心,http://em.21dtv.com/songs/60084371.mkv +黎明-一生痴心,http://em.21dtv.com/songs/60053526.mkv +黎明-一生痴心(演唱会),http://em.21dtv.com/songs/60053525.mkv +尤雅-又是春天,http://em.21dtv.com/songs/60055457.mkv +何韵诗-元神出窍,http://em.21dtv.com/songs/60092267.mkv +李芳-一生痴情(无原唱),http://em.21dtv.com/songs/60053523.mkv +王馨平-一生痴恋,http://em.21dtv.com/songs/60053522.mkv +谈芳兵-一生痴恋,http://em.21dtv.com/songs/60053521.mkv +谭咏麟-一双翅膀,http://em.21dtv.com/songs/60053689.mkv +谭咏麟-一双翅膀(演唱会),http://em.21dtv.com/songs/60053688.mkv +宝云-一生错爱,http://em.21dtv.com/songs/60117678.mkv +Myar-有所不知,http://em.21dtv.com/songs/60106551.mkv +古巨基-有所不知,http://em.21dtv.com/songs/60055319.mkv +TWINS-有所不知,http://em.21dtv.com/songs/60055318.mkv +BRIAN MCKNIGHT-you should be mine,http://em.21dtv.com/songs/60074191.mkv +赵照-伊萨贝拉,http://em.21dtv.com/songs/60115424.mkv +梁洛施-伊莎贝拉,http://em.21dtv.com/songs/60053963.mkv +陈奕迅-一丝不挂,http://em.21dtv.com/songs/60088857.mkv +A-ONE-一丝不苟,http://em.21dtv.com/songs/60053701.mkv +郭浩男-伊莎贝尔(演唱会),http://em.21dtv.com/songs/60068924.mkv +李克勤-一生不变,http://em.21dtv.com/songs/60053515.mkv +谭咏麟+李克勤-一生不变(演唱会),http://em.21dtv.com/songs/60053514.mkv +王芷蕾-耶稣爱你,http://em.21dtv.com/songs/60101447.mkv +郑源-庸人自扰,http://em.21dtv.com/songs/60118963.mkv +白智英-依然炙热,http://em.21dtv.com/songs/60101145.mkv +小虎队-庸人自扰,http://em.21dtv.com/songs/60054607.mkv +邱锋泽-有人在吗,http://em.21dtv.com/songs/60128461.mkv +群星-永荣之光,http://em.21dtv.com/songs/60132798.mkv +格格-嫣然一笑,http://em.21dtv.com/songs/60071398.mkv +沈芳如-依然有你(无原唱),http://em.21dtv.com/songs/60054009.mkv +张含韵-一人一梦,http://em.21dtv.com/songs/60053487.mkv +徐良+杨洋-一人一井,http://em.21dtv.com/songs/60125581.mkv +文恩澄-娱人娱己,http://em.21dtv.com/songs/60055540.mkv +阿朵-一人一花,http://em.21dtv.com/songs/60065342.mkv +钟嘉欣-一人用餐,http://em.21dtv.com/songs/60053489.mkv +韩晓-依然有爱,http://em.21dtv.com/songs/60054008.mkv +马健南-依然相信,http://em.21dtv.com/songs/60104597.mkv +张柏芝-依然相信(演唱会),http://em.21dtv.com/songs/60054005.mkv +张莹-依然想你,http://em.21dtv.com/songs/60054007.mkv +陈淑桦-依然想你,http://em.21dtv.com/songs/60054006.mkv +李克勤-依然相爱,http://em.21dtv.com/songs/60054004.mkv +李克勤+关淑怡-依然相爱(演唱会),http://em.21dtv.com/songs/60054003.mkv +佚名-一如往昔,http://em.21dtv.com/songs/60053498.mkv +姜育恒-一如往昔,http://em.21dtv.com/songs/60053497.mkv +钟嘉欣-一人晚餐,http://em.21dtv.com/songs/60053483.mkv +张柏芝-一人同游,http://em.21dtv.com/songs/60053482.mkv +罗子淇-依然腾惜,http://em.21dtv.com/songs/60132792.mkv +刘虹桦-一人跳舞,http://em.21dtv.com/songs/60053480.mkv +朴振英-youre the one,http://em.21dtv.com/songs/60070425.mkv +王彩桦-有恁上水,http://em.21dtv.com/songs/60079297.mkv +UFO乐队-一如少年,http://em.21dtv.com/songs/60119208.mkv +胡彦斌-依然是你,http://em.21dtv.com/songs/60102639.mkv +黎明+陈慧娴-依然是你,http://em.21dtv.com/songs/60054000.mkv +BBR-一人少句,http://em.21dtv.com/songs/60053478.mkv +李牧遥-依然认真,http://em.21dtv.com/songs/60088024.mkv +霍尊-伊人如梦,http://em.21dtv.com/songs/60116356.mkv +赖伟锋-一日七失,http://em.21dtv.com/songs/60112979.mkv +李国祥-一人派对,http://em.21dtv.com/songs/60053477.mkv +五谷子-依然年轻,http://em.21dtv.com/songs/60117540.mkv +孙耀威-又让你哭,http://em.21dtv.com/songs/60055456.mkv +JACKSON-you rock my world,http://em.21dtv.com/songs/60006574.mkv +麦子杰-you raise me up,http://em.21dtv.com/songs/60082418.mkv +金润吉-You Raise Me Up,http://em.21dtv.com/songs/60081569.mkv +邓紫祺-you raise me up,http://em.21dtv.com/songs/60074189.mkv +WESTLIFE-you raise me up,http://em.21dtv.com/songs/60006572.mkv +JOSH GROBAN-you raise me up,http://em.21dtv.com/songs/60006571.mkv +熊天平-愚人码头,http://em.21dtv.com/songs/60128192.mkv +曾春年-渔人码头,http://em.21dtv.com/songs/60129194.mkv +高娅媛-愚人码头,http://em.21dtv.com/songs/60101578.mkv +齐秦+熊天平-愚人码头,http://em.21dtv.com/songs/60055572.mkv +沈文程-一蕊玫瑰(无原唱),http://em.21dtv.com/songs/60053499.mkv +李治廷-youre my everything,http://em.21dtv.com/songs/60063816.mkv +纪佳松-一人乐队,http://em.21dtv.com/songs/60053475.mkv +熊汝霖-一如既往,http://em.21dtv.com/songs/60053496.mkv +易桀齐-一如既往(无原唱),http://em.21dtv.com/songs/60053495.mkv +曾彪纭-伊人佳人(民风版),http://em.21dtv.com/songs/60084386.mkv +伊人佳人组合-伊人佳人,http://em.21dtv.com/songs/60068923.mkv +林子祥-亚lam日记(演唱会),http://em.21dtv.com/songs/60051888.mkv +卓俊-伊人红妆,http://em.21dtv.com/songs/60110059.mkv +玫子-伊人红妆,http://em.21dtv.com/songs/60053961.mkv +欣哲-依然很美,http://em.21dtv.com/songs/60053998.mkv +邓丽君-伊人何处,http://em.21dtv.com/songs/60053960.mkv +林奕匡-有人共鸣,http://em.21dtv.com/songs/60117843.mkv +THE KINKS-you really got me(演唱会),http://em.21dtv.com/songs/60006573.mkv +艾敬-伊人乖乖,http://em.21dtv.com/songs/60053959.mkv +野人-野人洞穴,http://em.21dtv.com/songs/60086101.mkv +许阁+VROMANCE-已然冬日,http://em.21dtv.com/songs/60119970.mkv +苏永康-一人独得,http://em.21dtv.com/songs/60100412.mkv +叶启田-一如当初,http://em.21dtv.com/songs/60053494.mkv +高洪章-彝人传说,http://em.21dtv.com/songs/60134472.mkv +彝人传奇-彝人传奇,http://em.21dtv.com/songs/60120542.mkv +BAD BOYS BLUE-youre a woman,http://em.21dtv.com/songs/60063815.mkv +王力宏-依然爱你,http://em.21dtv.com/songs/60063022.mkv +李行亮-依然爱你,http://em.21dtv.com/songs/60113646.mkv +陈宝欣-依然爱你,http://em.21dtv.com/songs/60106390.mkv +杨彤-依然爱你,http://em.21dtv.com/songs/60100180.mkv +张凯-依然爱你,http://em.21dtv.com/songs/60086131.mkv +陈宝欣-依然爱你,http://em.21dtv.com/songs/60072721.mkv +阿淡-依然爱你,http://em.21dtv.com/songs/60068925.mkv +田宇哲-依然爱你,http://em.21dtv.com/songs/60053996.mkv +千百惠-依然爱你,http://em.21dtv.com/songs/60053995.mkv +韩宝仪-依然爱你,http://em.21dtv.com/songs/60053994.mkv +高胜美-依然爱你,http://em.21dtv.com/songs/60053993.mkv +黑妹+李国祥+郑世豪-友情组曲(演唱会),http://em.21dtv.com/songs/60079272.mkv +雪村-养犬指南,http://em.21dtv.com/songs/60052228.mkv +孙燕姿-一起走到,http://em.21dtv.com/songs/60053380.mkv +徐仁国-一起走吧,http://em.21dtv.com/songs/60135277.mkv +筠子-一起做吧,http://em.21dtv.com/songs/60103502.mkv +群星-一起走吧,http://em.21dtv.com/songs/60053379.mkv +罗志祥-一起走吧,http://em.21dtv.com/songs/60053378.mkv +佚名-友情永在,http://em.21dtv.com/songs/60055071.mkv +杨峰-友情友义,http://em.21dtv.com/songs/60133840.mkv +徐智勇-有情有义,http://em.21dtv.com/songs/60092714.mkv +小肥-有情有义,http://em.21dtv.com/songs/60092539.mkv +小肥-有情有意,http://em.21dtv.com/songs/60055281.mkv +王璐岢-用情一生,http://em.21dtv.com/songs/60084427.mkv +陶庆友-缘起缘散,http://em.21dtv.com/songs/60067752.mkv +赵学而-意气用事,http://em.21dtv.com/songs/60054190.mkv +范文芳-一圈一圈,http://em.21dtv.com/songs/60053469.mkv +光良-缘起缘灭,http://em.21dtv.com/songs/60090656.mkv +尹光-有钱有面(演唱会),http://em.21dtv.com/songs/60055264.mkv +唐宁-一千英哩,http://em.21dtv.com/songs/60114460.mkv +唐宁-一千英里,http://em.21dtv.com/songs/60112586.mkv +张苡澄-眼前一亮,http://em.21dtv.com/songs/60105873.mkv +许志安-眼前一亮,http://em.21dtv.com/songs/60052091.mkv +游茜茹-以前以后,http://em.21dtv.com/songs/60133954.mkv +龚玥-一期一会,http://em.21dtv.com/songs/60132035.mkv +A-LIN-以前以后,http://em.21dtv.com/songs/60054085.mkv +林一峰-一期一会,http://em.21dtv.com/songs/60053351.mkv +甜甜圈组合(耿许可+尹约)-一起勇敢,http://em.21dtv.com/songs/60123025.mkv +赤龙-一起摇摆,http://em.21dtv.com/songs/60120965.mkv +牛妞-一起摇吧,http://em.21dtv.com/songs/60113833.mkv +张姝-一起摇摆,http://em.21dtv.com/songs/60113459.mkv +庾澄庆-一起摇摆,http://em.21dtv.com/songs/60113447.mkv +庾澄庆-一起摇摆,http://em.21dtv.com/songs/60112654.mkv +汪峰-一起摇摆,http://em.21dtv.com/songs/60087048.mkv +罗熙杰-一起摇摆,http://em.21dtv.com/songs/60084366.mkv +汪峰+张恒远+毕夏+单冲锋+孟楠-一起摇摆,http://em.21dtv.com/songs/60081592.mkv +陆峰-一起摇摆,http://em.21dtv.com/songs/60065336.mkv +江若琳-有请下位(演唱会),http://em.21dtv.com/songs/60055282.mkv +刘天-一曲相思,http://em.21dtv.com/songs/60121428.mkv +龙飞+门丽-一曲相思,http://em.21dtv.com/songs/60097119.mkv +张梦弘-一曲乡思,http://em.21dtv.com/songs/60081748.mkv +图桠格-一曲相送,http://em.21dtv.com/songs/60065340.mkv +良一+王莱-有情兄弟,http://em.21dtv.com/songs/60065399.mkv +陈小云-有情无缘,http://em.21dtv.com/songs/60055280.mkv +斯琴巴特-有情无言,http://em.21dtv.com/songs/60055279.mkv +苏打绿-一起喔喔,http://em.21dtv.com/songs/60100411.mkv +杨坤-一切为你,http://em.21dtv.com/songs/60089978.mkv +杨坤+陈琳-一切为你,http://em.21dtv.com/songs/60089977.mkv +刘愉愉-一切为你,http://em.21dtv.com/songs/60065339.mkv +蔡葵-一切为你,http://em.21dtv.com/songs/60053454.mkv +李国祥-余情未了(演唱会),http://em.21dtv.com/songs/60084458.mkv +李国祥-余情未了,http://em.21dtv.com/songs/60055505.mkv +太极乐队-一切为何,http://em.21dtv.com/songs/60053449.mkv +雷有辉+邓健明-一切为何,http://em.21dtv.com/songs/60053448.mkv +马可谦-焉耆味道,http://em.21dtv.com/songs/60116388.mkv +Black Queen-一起玩吧,http://em.21dtv.com/songs/60121220.mkv +伍浩哲-有情无伴(无原唱),http://em.21dtv.com/songs/60012372.mkv +海龟先生-一起跳舞,http://em.21dtv.com/songs/60086121.mkv +吉娜-一起跳舞(演唱会),http://em.21dtv.com/songs/60061819.mkv +甲子慧-用情太深,http://em.21dtv.com/songs/60100930.mkv +佚名2-用情太深,http://em.21dtv.com/songs/60054885.mkv +佚名1-用情太深,http://em.21dtv.com/songs/60054884.mkv +邰正宵-用情太深,http://em.21dtv.com/songs/60054883.mkv +邝美云-用情太深,http://em.21dtv.com/songs/60054882.mkv +B2-要求太高(无原唱),http://em.21dtv.com/songs/60052385.mkv +黎明-有情天地,http://em.21dtv.com/songs/60055277.mkv +王艺霖-一起跳吧,http://em.21dtv.com/songs/60053374.mkv +汪晨蕊-友情岁月,http://em.21dtv.com/songs/60127154.mkv +群星-友情岁月,http://em.21dtv.com/songs/60126050.mkv +杨清明-一切随缘,http://em.21dtv.com/songs/60125756.mkv +杨清明-一切随缘,http://em.21dtv.com/songs/60122889.mkv +黑龙+胡铁-友情岁月,http://em.21dtv.com/songs/60118225.mkv +许志安-友情岁月,http://em.21dtv.com/songs/60117225.mkv +草蜢-友情岁月(演唱会),http://em.21dtv.com/songs/60079270.mkv +黄晓明+余文乐+阮经天-友情岁月,http://em.21dtv.com/songs/60072743.mkv +谢天华+金刚-友情岁月(演唱会),http://em.21dtv.com/songs/60063166.mkv +郑伊健-友情岁月,http://em.21dtv.com/songs/60055068.mkv +陈小春-友情岁月,http://em.21dtv.com/songs/60055067.mkv +郑伊健-友情岁月(演唱会),http://em.21dtv.com/songs/60055066.mkv +杨千嬅+黄耀明-友情岁月(演唱会),http://em.21dtv.com/songs/60055065.mkv +黄耀明-友情岁月(演唱会),http://em.21dtv.com/songs/60055064.mkv +古巨基+郑伊健-友情岁月(演唱会),http://em.21dtv.com/songs/60055063.mkv +黄思婷-一切随缘,http://em.21dtv.com/songs/60053445.mkv +郁可唯-用情山水,http://em.21dtv.com/songs/60135798.mkv +李嘉-夜曲深情(无原唱),http://em.21dtv.com/songs/60095605.mkv +邓超-有情世间,http://em.21dtv.com/songs/60117272.mkv +李梓菡-有钱任性,http://em.21dtv.com/songs/60110280.mkv +万芳-一切如新,http://em.21dtv.com/songs/60053442.mkv +苏慧恩-又情人节,http://em.21dtv.com/songs/60132832.mkv +曹春梅-一曲琴音,http://em.21dtv.com/songs/60129189.mkv +万乘齐-缘去情深,http://em.21dtv.com/songs/60114962.mkv +安然-用情去牵,http://em.21dtv.com/songs/60087682.mkv +肖亮-一去千里,http://em.21dtv.com/songs/60087051.mkv +佚名-一曲难忘,http://em.21dtv.com/songs/60053461.mkv +杨奇煜-要去哪里,http://em.21dtv.com/songs/60122883.mkv +昊龙-一起努力,http://em.21dtv.com/songs/60115965.mkv +游鸿明-余情难了,http://em.21dtv.com/songs/60055504.mkv +冯光-有钱没钱,http://em.21dtv.com/songs/60121402.mkv +赵斌-有钱没钱,http://em.21dtv.com/songs/60098790.mkv +JPM-月球漫步,http://em.21dtv.com/songs/60062069.mkv +马常宝-云且留住,http://em.21dtv.com/songs/60111528.mkv +郑少秋+汪明荃-友情乐章(演唱会),http://em.21dtv.com/songs/60079269.mkv +许茹芸-云且留住,http://em.21dtv.com/songs/60056662.mkv +巫启贤-云且留住,http://em.21dtv.com/songs/60056661.mkv +刘文正-云且留住,http://em.21dtv.com/songs/60056660.mkv +薛凯琪+陈意涵+杨子姗-一起老去,http://em.21dtv.com/songs/60102714.mkv +刘天助-一起来嗨,http://em.21dtv.com/songs/60128820.mkv +徐怀钰-友情卡片,http://em.21dtv.com/songs/60055061.mkv +FANTASY-一起快乐,http://em.21dtv.com/songs/60053366.mkv +家蔚-有情客串,http://em.21dtv.com/songs/60115104.mkv +赵小兵-友情客串,http://em.21dtv.com/songs/60065394.mkv +李蕴-友情客串,http://em.21dtv.com/songs/60055062.mkv +BEJ48-元气觉醒,http://em.21dtv.com/songs/60127645.mkv +萧敬腾-一起精彩,http://em.21dtv.com/songs/60114747.mkv +伍佰-一亲红颜,http://em.21dtv.com/songs/60053460.mkv +安仕伟-一起嗨皮,http://em.21dtv.com/songs/60108436.mkv +豆子民-有钱好吗,http://em.21dtv.com/songs/60088682.mkv +杨嘉松-一起回家,http://em.21dtv.com/songs/60131523.mkv +苏勒亚其其格-一曲胡笳,http://em.21dtv.com/songs/60109588.mkv +群星-一起回家,http://em.21dtv.com/songs/60097121.mkv +陈奕迅-一切还好,http://em.21dtv.com/songs/60053431.mkv +BOY'Z-一起喝采,http://em.21dtv.com/songs/60092149.mkv +郭少杰-一曲红尘,http://em.21dtv.com/songs/60080156.mkv +宇宙人-要去高雄,http://em.21dtv.com/songs/60052387.mkv +邓建明-一千个吻,http://em.21dtv.com/songs/60053397.mkv +轻音乐-一切给你,http://em.21dtv.com/songs/60090234.mkv +易欣-用情过度,http://em.21dtv.com/songs/60121727.mkv +罗媛-一起歌唱,http://em.21dtv.com/songs/60117964.mkv +南建雄-一起飞翔,http://em.21dtv.com/songs/60128853.mkv +雷颉+吴兰馨紫-一起飞翔,http://em.21dtv.com/songs/60127580.mkv +候旭-一起飞翔,http://em.21dtv.com/songs/60067703.mkv +炎黄赤子-一起飞翔,http://em.21dtv.com/songs/60053363.mkv +林子娟-一清二楚,http://em.21dtv.com/songs/60087050.mkv +5566-友情的手,http://em.21dtv.com/songs/60055058.mkv +英子-远去的梦,http://em.21dtv.com/songs/60056156.mkv +张磊-一切都好,http://em.21dtv.com/songs/60116801.mkv +徐良+小凌-友情出演,http://em.21dtv.com/songs/60066540.mkv +蒋大为+欣颖-邀请春天,http://em.21dtv.com/songs/60105329.mkv +杨克强-一切从头,http://em.21dtv.com/songs/60053424.mkv +刘佳-一起出发,http://em.21dtv.com/songs/60116576.mkv +廖文强+坏神经乐团+江松霖-一起出发,http://em.21dtv.com/songs/60104103.mkv +蓝波-一起闯荡,http://em.21dtv.com/songs/60129574.mkv +秦勇-一起长大,http://em.21dtv.com/songs/60086119.mkv +莫智钦-友情扮演,http://em.21dtv.com/songs/60106234.mkv +谭耀文+穆婷婷-有求必应,http://em.21dtv.com/songs/60097224.mkv +詹雅雯-移情别恋,http://em.21dtv.com/songs/60054040.mkv +梁汉文-移情别恋,http://em.21dtv.com/songs/60054039.mkv +郭峰-移情别恋,http://em.21dtv.com/songs/60054038.mkv +梁汉文-移情别恋(演唱会),http://em.21dtv.com/songs/60054037.mkv +张雯婷-运气不坏,http://em.21dtv.com/songs/60056699.mkv +韩红-一去不回(演唱会),http://em.21dtv.com/songs/60053465.mkv +孙楠-一起奔放,http://em.21dtv.com/songs/60118496.mkv +Dear Jane-一去不返,http://em.21dtv.com/songs/60101751.mkv +莫文蔚-一切安好,http://em.21dtv.com/songs/60107969.mkv +香香-一盆眼泪,http://em.21dtv.com/songs/60053337.mkv +吕薇-一片新绿,http://em.21dtv.com/songs/60053347.mkv +吴彤-一片深情,http://em.21dtv.com/songs/60132293.mkv +乐桐-鸦片情歌,http://em.21dtv.com/songs/60071396.mkv +小爱-一票难求,http://em.21dtv.com/songs/60053349.mkv +陈升-鸦片玫瑰,http://em.21dtv.com/songs/60051870.mkv +邓丽君-一片落叶,http://em.21dtv.com/songs/60053343.mkv +林玉英-一片流云,http://em.21dtv.com/songs/60053342.mkv +洪卓立-一拍兩散,http://em.21dtv.com/songs/60092968.mkv +许佳慧-一拍两散,http://em.21dtv.com/songs/60079128.mkv +郝红岩-一拍两散,http://em.21dtv.com/songs/60066523.mkv +容祖儿-一拍两散,http://em.21dtv.com/songs/60053336.mkv +容祖儿-一拍两散(演唱会),http://em.21dtv.com/songs/60053335.mkv +吴琼+黄新德-一派离情,http://em.21dtv.com/songs/60099151.mkv +陈司翰-一拍即合,http://em.21dtv.com/songs/60053334.mkv +马智宇-一片丹心,http://em.21dtv.com/songs/60131988.mkv +马智宇-一片丹心,http://em.21dtv.com/songs/60127597.mkv +佚名-一片丹心,http://em.21dtv.com/songs/60053341.mkv +黄清源-一片痴心,http://em.21dtv.com/songs/60053340.mkv +谢霆锋-一片沉默,http://em.21dtv.com/songs/60092101.mkv +MARTIN HURKENS-you raise me up,http://em.21dtv.com/songs/60101020.mkv +ONE DIRECTION-You & I,http://em.21dtv.com/songs/60099689.mkv +MIC男团-You Are So Cute,http://em.21dtv.com/songs/60101599.mkv +MADTOWN-YOLO,http://em.21dtv.com/songs/60104703.mkv +严艺丹-一念执着,http://em.21dtv.com/songs/60099064.mkv +胡歌+阿兰-一念执着,http://em.21dtv.com/songs/60062467.mkv +崔健+央吉玛-鱼鸟之恋,http://em.21dtv.com/songs/60117695.mkv +谭维维+崔健-鱼鸟之恋,http://em.21dtv.com/songs/60110542.mkv +傅振辉+邓咏家-一念之间,http://em.21dtv.com/songs/60128800.mkv +张杰+莫文蔚-一念之间,http://em.21dtv.com/songs/60125515.mkv +陈慧恬-有你在家,http://em.21dtv.com/songs/60124635.mkv +莫文蔚+张杰-一念之间,http://em.21dtv.com/songs/60112180.mkv +杨秀焜+MCmango-与你再见,http://em.21dtv.com/songs/60112019.mkv +陶喆-一念之间,http://em.21dtv.com/songs/60080273.mkv +戴佩妮-一念之间,http://em.21dtv.com/songs/60053333.mkv +梁咏琪-一年之计,http://em.21dtv.com/songs/60053331.mkv +何俊-有你真好,http://em.21dtv.com/songs/60132198.mkv +FS(Fuying+Sam)-有你做伙,http://em.21dtv.com/songs/60116448.mkv +天堂飘雪-有你真好,http://em.21dtv.com/songs/60110966.mkv +天堂飘雪-有你真好,http://em.21dtv.com/songs/60110116.mkv +浪子+游子-有你真好,http://em.21dtv.com/songs/60098584.mkv +小虫-有你真好,http://em.21dtv.com/songs/60079292.mkv +李斯琪-有你真好(演唱会),http://em.21dtv.com/songs/60066541.mkv +赵之璧-有你真好,http://em.21dtv.com/songs/60055256.mkv +易桀齐-有你真好,http://em.21dtv.com/songs/60055255.mkv +杨丞琳+范玮琪-有你真好,http://em.21dtv.com/songs/60055254.mkv +陈雷-有你真好,http://em.21dtv.com/songs/60055253.mkv +兰天-有你足够,http://em.21dtv.com/songs/60097225.mkv +齐萧-有你足够,http://em.21dtv.com/songs/60067733.mkv +东来东往-一念之差,http://em.21dtv.com/songs/60115661.mkv +徐千雅-一念之差,http://em.21dtv.com/songs/60070146.mkv +黎明-因你在此(演唱会),http://em.21dtv.com/songs/60054204.mkv +FIRE-一念之差,http://em.21dtv.com/songs/60053332.mkv +苏平生-有你有我,http://em.21dtv.com/songs/60126102.mkv +宋嘉其+梁君诺-友你友我,http://em.21dtv.com/songs/60111014.mkv +宋嘉其+梁君诺-友你友我,http://em.21dtv.com/songs/60098266.mkv +王建杰-有你有我(无原唱),http://em.21dtv.com/songs/60079556.mkv +办桌二人组-有你有我,http://em.21dtv.com/songs/60065397.mkv +周渝民-有你有我,http://em.21dtv.com/songs/60055246.mkv +甄妮-有你有我,http://em.21dtv.com/songs/60055245.mkv +群星-有你有我,http://em.21dtv.com/songs/60055244.mkv +赖雅妍-有你有我,http://em.21dtv.com/songs/60055243.mkv +古巨基-有你一天,http://em.21dtv.com/songs/60055239.mkv +范怡文-夜那样深,http://em.21dtv.com/songs/60052625.mkv +吕方-养你一世(演唱会),http://em.21dtv.com/songs/60052227.mkv +吴若希-越难越爱,http://em.21dtv.com/songs/60122590.mkv +吴若希-越难越爱,http://em.21dtv.com/songs/60103975.mkv +林俊杰-由你选择,http://em.21dtv.com/songs/60054972.mkv +国巍-与你相约,http://em.21dtv.com/songs/60135070.mkv +DK金大为+杨燕-与你相遇,http://em.21dtv.com/songs/60131055.mkv +羽泉-与你相约,http://em.21dtv.com/songs/60107126.mkv +韩红-与你相依,http://em.21dtv.com/songs/60055597.mkv +墨明棋妙-一念相思,http://em.21dtv.com/songs/60100814.mkv +彦妮-有你相随,http://em.21dtv.com/songs/60094107.mkv +寒武纪-有你相随,http://em.21dtv.com/songs/60094070.mkv +关燕萍+苏泉-与你相随,http://em.21dtv.com/songs/60079333.mkv +张瑶-有你相随,http://em.21dtv.com/songs/60055238.mkv +张瑶-有你相随(演唱会),http://em.21dtv.com/songs/60055237.mkv +冷漠-越南新娘,http://em.21dtv.com/songs/60099107.mkv +包启宁-愿你幸福,http://em.21dtv.com/songs/60132264.mkv +莫少聪-与你相逢,http://em.21dtv.com/songs/60055596.mkv +尹光+胡美仪-玉女香车(戏曲),http://em.21dtv.com/songs/60092543.mkv +凌东明+蒋文端-玉女香车,http://em.21dtv.com/songs/60055786.mkv +游美灵-有你相伴,http://em.21dtv.com/songs/60133951.mkv +王如华-有你相伴,http://em.21dtv.com/songs/60122997.mkv +游美灵-有你相伴,http://em.21dtv.com/songs/60121888.mkv +刘恺威-一念向北,http://em.21dtv.com/songs/60120361.mkv +毛阿敏-有你相伴(演唱会),http://em.21dtv.com/songs/60055236.mkv +古巨基-以你为荣,http://em.21dtv.com/songs/60054084.mkv +古巨基-以你为荣(演唱会),http://em.21dtv.com/songs/60054083.mkv +蔡健雅-与你无关,http://em.21dtv.com/songs/60092024.mkv +女声-月娘晚安,http://em.21dtv.com/songs/60056482.mkv +男声-月娘晚安,http://em.21dtv.com/songs/60056481.mkv +群星-与你同在,http://em.21dtv.com/songs/60134120.mkv +胡建勇-与你同在,http://em.21dtv.com/songs/60055595.mkv +顾凯-与你同在,http://em.21dtv.com/songs/60055594.mkv +陈楚生-与你同在,http://em.21dtv.com/songs/60055593.mkv +无印良品-与你同在(演唱会),http://em.21dtv.com/songs/60055592.mkv +陈楚生-与你同在(演唱会),http://em.21dtv.com/songs/60055591.mkv +流苏-与你同行,http://em.21dtv.com/songs/60112077.mkv +深蓝乐团-与你同行,http://em.21dtv.com/songs/60055590.mkv +张磊-一念天堂,http://em.21dtv.com/songs/60116802.mkv +熊天平-有你同行,http://em.21dtv.com/songs/60091674.mkv +宇桐非-与你同飞,http://em.21dtv.com/songs/60055589.mkv +东来东往+雷诺儿-有难同当,http://em.21dtv.com/songs/60071456.mkv +东来东往+雷诺儿-有难同当(舞曲版),http://em.21dtv.com/songs/60071455.mkv +李明洋+一绫-有你尚水,http://em.21dtv.com/songs/60107788.mkv +刘一祯-一年四季,http://em.21dtv.com/songs/60053327.mkv +叶倩文-与你倾诉,http://em.21dtv.com/songs/60055588.mkv +群星-一诺千金,http://em.21dtv.com/songs/60134119.mkv +费玉清-越南情歌,http://em.21dtv.com/songs/60056601.mkv +孙莺-有你陪我,http://em.21dtv.com/songs/60055230.mkv +CIRCUS-有你陪我,http://em.21dtv.com/songs/60055229.mkv +刘津宏-有你陪伴,http://em.21dtv.com/songs/60117584.mkv +梁琮明-有你陪伴,http://em.21dtv.com/songs/60108642.mkv +林建亨-有你陪伴,http://em.21dtv.com/songs/60055228.mkv +屈慧-伊宁恋歌,http://em.21dtv.com/songs/60084385.mkv +林忆莲-由你开始,http://em.21dtv.com/songs/60054971.mkv +林忆莲-由你开始(演唱会),http://em.21dtv.com/songs/60054970.mkv +孟丰敏-约你开花,http://em.21dtv.com/songs/60099947.mkv +朱贝贝-羊年吉祥,http://em.21dtv.com/songs/60107777.mkv +羽泉+黄征-要你坚强,http://em.21dtv.com/songs/60052380.mkv +陈雷-有你就好,http://em.21dtv.com/songs/60109712.mkv +梦然-有你就好,http://em.21dtv.com/songs/60079290.mkv +刘依纯-有你就好,http://em.21dtv.com/songs/60079289.mkv +孙伟-有你就好,http://em.21dtv.com/songs/60061847.mkv +张国荣-愿你决定,http://em.21dtv.com/songs/60105025.mkv +黄宇涛-与你共醉,http://em.21dtv.com/songs/60129836.mkv +赖仔-与你共醉,http://em.21dtv.com/songs/60114805.mkv +林一峰-与你共枕(演唱会),http://em.21dtv.com/songs/60055587.mkv +洪玲-月娘光光,http://em.21dtv.com/songs/60095773.mkv +陈华生-与你分享,http://em.21dtv.com/songs/60117327.mkv +林忆莲-因你疯了(演唱会),http://em.21dtv.com/songs/60054202.mkv +郭淑仪-月娘浮光(无原唱),http://em.21dtv.com/songs/60056478.mkv +林俊杰-因你而在,http://em.21dtv.com/songs/60079190.mkv +李晓-因你而来,http://em.21dtv.com/songs/60087060.mkv +SARA-因你而疯,http://em.21dtv.com/songs/60054201.mkv +龙奔-羊年大吉,http://em.21dtv.com/songs/60108197.mkv +周澎-有你多好,http://em.21dtv.com/songs/60111771.mkv +金娜英-以你的话,http://em.21dtv.com/songs/60108070.mkv +宇恒-有你多好,http://em.21dtv.com/songs/60055222.mkv +蔡淳佳-有你多好,http://em.21dtv.com/songs/60055221.mkv +刘伟-与你道别,http://em.21dtv.com/songs/60079332.mkv +颜伟-一念成碑,http://em.21dtv.com/songs/60129791.mkv +何卓莹-有脑e班,http://em.21dtv.com/songs/60055201.mkv +SKG女团-要你表白,http://em.21dtv.com/songs/60104725.mkv +容祖儿-一面之缘,http://em.21dtv.com/songs/60053304.mkv +刘明辉-野马之梦(HD),http://em.21dtv.com/songs/10012707.mkv +刘明辉-野马之梦,http://em.21dtv.com/songs/60099809.mkv +晏敏敏-杨梅之恋,http://em.21dtv.com/songs/60125636.mkv +张学友-野猫之恋(演唱会),http://em.21dtv.com/songs/60052486.mkv +谭炳文-赢马专家(演唱会),http://em.21dtv.com/songs/60054528.mkv +草蜢-一秒转机,http://em.21dtv.com/songs/60053319.mkv +草蜢-一秒转机(演唱会),http://em.21dtv.com/songs/60053318.mkv +许晓杰-有妈真好,http://em.21dtv.com/songs/60097223.mkv +于文华-玉满中华,http://em.21dtv.com/songs/60090504.mkv +石乔-运命之歌,http://em.21dtv.com/songs/60135607.mkv +廖昌永+周冰倩-圆梦中国,http://em.21dtv.com/songs/60119490.mkv +袁咏琳-有模有样,http://em.21dtv.com/songs/60079285.mkv +谢安琪-有梦要想,http://em.21dtv.com/songs/60126200.mkv +谢安琪-有梦要想,http://em.21dtv.com/songs/60117230.mkv +童一首歌-野蛮游戏,http://em.21dtv.com/songs/60052484.mkv +蔡依林-野蛮游戏,http://em.21dtv.com/songs/60052483.mkv +海弦月-一梦一花,http://em.21dtv.com/songs/60129350.mkv +田一龙+吴婧-一秒永恒,http://em.21dtv.com/songs/60105268.mkv +卓文萱-一秒也好,http://em.21dtv.com/songs/60053311.mkv +西风-一米阳光,http://em.21dtv.com/songs/60118900.mkv +唐黛影-夜幕心影,http://em.21dtv.com/songs/60086103.mkv +蔡琴-月满西楼,http://em.21dtv.com/songs/60112947.mkv +廖昌永-月满西楼,http://em.21dtv.com/songs/60102193.mkv +凌云-月满西楼,http://em.21dtv.com/songs/60098131.mkv +莫旭秋-月满西楼(演唱会),http://em.21dtv.com/songs/60079418.mkv +卓依婷-月满西楼,http://em.21dtv.com/songs/60056466.mkv +余天-月满西楼,http://em.21dtv.com/songs/60056465.mkv +姜育恒-月满西楼,http://em.21dtv.com/songs/60056464.mkv +安雯-月满西楼,http://em.21dtv.com/songs/60056463.mkv +潘迪华-月满西楼(演唱会),http://em.21dtv.com/songs/60056462.mkv +阿肆-预谋邂逅,http://em.21dtv.com/songs/60087081.mkv +周慧敏-亚玛逊河,http://em.21dtv.com/songs/60051896.mkv +张也-沂蒙小调,http://em.21dtv.com/songs/60054030.mkv +C ALLSTAR-夜幕天星,http://em.21dtv.com/songs/60119111.mkv +张雷-圆梦天盛,http://em.21dtv.com/songs/60107723.mkv +韦米娜-野蛮天使,http://em.21dtv.com/songs/60065316.mkv +李昱和-与梦同路,http://em.21dtv.com/songs/60127030.mkv +姚苏-一抹天蓝,http://em.21dtv.com/songs/60116686.mkv +苏小艾-宜民山庄,http://em.21dtv.com/songs/60119914.mkv +一绫-有梦尚水,http://em.21dtv.com/songs/60086161.mkv +额尔古纳乐队-游牧少年,http://em.21dtv.com/songs/60119051.mkv +一绫-一暝思念,http://em.21dtv.com/songs/60106563.mkv +蔡小虎+林姗-有梦尚美,http://em.21dtv.com/songs/60055197.mkv +叶少兰-辕门射戟,http://em.21dtv.com/songs/60056116.mkv +林采欣-一秒时光,http://em.21dtv.com/songs/60122913.mkv +唐俪-一瞑三冬,http://em.21dtv.com/songs/60121515.mkv +唐俪-一暝三冬,http://em.21dtv.com/songs/60111781.mkv +李宇春-野蛮生长,http://em.21dtv.com/songs/60118667.mkv +阿兰-一梦千寻,http://em.21dtv.com/songs/60121048.mkv +阿兰-一梦千寻,http://em.21dtv.com/songs/60117308.mkv +施文彬-野蛮情人,http://em.21dtv.com/songs/60052482.mkv +金少祥-一梦千年,http://em.21dtv.com/songs/60100985.mkv +曾静-一梦千年,http://em.21dtv.com/songs/60053302.mkv +石小倩-月满情怀,http://em.21dtv.com/songs/60088367.mkv +格格-游牧情歌,http://em.21dtv.com/songs/60130494.mkv +来国庆-游牧情歌,http://em.21dtv.com/songs/60129264.mkv +格格-游牧情歌,http://em.21dtv.com/songs/60055014.mkv +叶倩文-扬眉女子(演唱会),http://em.21dtv.com/songs/60052154.mkv +王晶华-杨门女将,http://em.21dtv.com/songs/60052210.mkv +汪明荃-杨门女将,http://em.21dtv.com/songs/60052209.mkv +林一峰-游牧民族,http://em.21dtv.com/songs/60097452.mkv +梁咏琪-游牧民族,http://em.21dtv.com/songs/60055013.mkv +USHER-you make me wanna,http://em.21dtv.com/songs/60006561.mkv +BLUE-you make me wanna,http://em.21dtv.com/songs/60006560.mkv +COBRA STARSHIP SABI-you make me feel,http://em.21dtv.com/songs/60061992.mkv +张惠妹-you make me free,http://em.21dtv.com/songs/60006559.mkv +张惠妹-you make me free(演唱会),http://em.21dtv.com/songs/60006558.mkv +唐黛影-伊梦萝莎,http://em.21dtv.com/songs/60079166.mkv +江蕙-演袂落去,http://em.21dtv.com/songs/60052110.mkv +叶丽仪-you must love me(演唱会),http://em.21dtv.com/songs/60006567.mkv +Dear Jane-羽毛鳞刺,http://em.21dtv.com/songs/60131052.mkv +WOW-翼鸣惊人,http://em.21dtv.com/songs/60054197.mkv +超人-爷们喝醉,http://em.21dtv.com/songs/60107251.mkv +信乐团-移民火星,http://em.21dtv.com/songs/60054036.mkv +谭维维+范政-一面湖水,http://em.21dtv.com/songs/60112971.mkv +齐秦-一面湖水,http://em.21dtv.com/songs/60062818.mkv +郝婉彤-预谋怀念,http://em.21dtv.com/songs/60114136.mkv +萧正楠-一秒幻觉,http://em.21dtv.com/songs/60093108.mkv +王志文-夜梦怀抱,http://em.21dtv.com/songs/60096399.mkv +乌兰红梅-游牧故乡,http://em.21dtv.com/songs/60065393.mkv +林亦妍-妖魔鬼怪,http://em.21dtv.com/songs/60065312.mkv +薛家燕+石佑珊-一秒感动,http://em.21dtv.com/songs/60053310.mkv +王菀之-一秒感动,http://em.21dtv.com/songs/60053309.mkv +王菀之-一秒感动(演唱会),http://em.21dtv.com/songs/60053308.mkv +群星-与梦飞翔,http://em.21dtv.com/songs/60055585.mkv +婉言-有梦的娃,http://em.21dtv.com/songs/60084443.mkv +任贤齐-有梦的人,http://em.21dtv.com/songs/60055192.mkv +吴欢+安妮-幺妹多情,http://em.21dtv.com/songs/60115752.mkv +M3-油门打开,http://em.21dtv.com/songs/60054991.mkv +佚名-your mama dont dance,http://em.21dtv.com/songs/60006600.mkv +王晶华-岳母刺字,http://em.21dtv.com/songs/60056567.mkv +蔡琴-油麻菜籽(演唱会),http://em.21dtv.com/songs/60054990.mkv +李昱和-一梦茶香,http://em.21dtv.com/songs/60081073.mkv +三多-瑶妹传情,http://em.21dtv.com/songs/60099059.mkv +BILLY JOEL-you may be right,http://em.21dtv.com/songs/60006563.mkv +林俊杰-有梦不难,http://em.21dtv.com/songs/60117842.mkv +J.DEACON-youre my best friend(无原唱),http://em.21dtv.com/songs/60006612.mkv +王进-音乐制造,http://em.21dtv.com/songs/60116168.mkv +河静静-意料之外,http://em.21dtv.com/songs/60065366.mkv +陈小宇-月亮之上,http://em.21dtv.com/songs/60121074.mkv +龚月-月亮之上,http://em.21dtv.com/songs/60079416.mkv +雪儿达娃-月亮之上,http://em.21dtv.com/songs/60056449.mkv +童星-月亮之上,http://em.21dtv.com/songs/60056448.mkv +凤凰传奇-月亮之上,http://em.21dtv.com/songs/60056447.mkv +梁汉文-一路走来,http://em.21dtv.com/songs/60112040.mkv +余紫凤-依拉之恋,http://em.21dtv.com/songs/60087336.mkv +王小刚-一路走来,http://em.21dtv.com/songs/60079120.mkv +孙艳-一路走来,http://em.21dtv.com/songs/60079119.mkv +王菲-原谅自己,http://em.21dtv.com/songs/60056010.mkv +许丽娟-月亮之歌,http://em.21dtv.com/songs/60101682.mkv +张秀卿-月亮之歌(无原唱),http://em.21dtv.com/songs/60056446.mkv +新宝岛康乐队-原谅之歌,http://em.21dtv.com/songs/60056009.mkv +乌兰图雅-月亮知道,http://em.21dtv.com/songs/60127704.mkv +温岚-眼泪知道,http://em.21dtv.com/songs/60052086.mkv +郭应龙-音乐早餐,http://em.21dtv.com/songs/60054332.mkv +MAKIYO-越来越远,http://em.21dtv.com/songs/60056599.mkv +东城卫-伊利亚特,http://em.21dtv.com/songs/60061831.mkv +黄乙玲-愈潦愈深(演唱会),http://em.21dtv.com/songs/60055876.mkv +陈晓东-易来易碎(演唱会),http://em.21dtv.com/songs/60054165.mkv +陈晓东-易来易碎,http://em.21dtv.com/songs/60054164.mkv +甄楚倩-一冷一热,http://em.21dtv.com/songs/60053253.mkv +王媛-缘来缘去,http://em.21dtv.com/songs/60085910.mkv +芭比-摇来摇去,http://em.21dtv.com/songs/60052278.mkv +周燕-一路有你,http://em.21dtv.com/songs/60132304.mkv +大棚-一路有你,http://em.21dtv.com/songs/60119388.mkv +陈文娅-一路有你,http://em.21dtv.com/songs/60095233.mkv +姚贝娜-一路有你,http://em.21dtv.com/songs/60094041.mkv +郑源+郑东-原来有你,http://em.21dtv.com/songs/60086179.mkv +黄品源-原来有你,http://em.21dtv.com/songs/60055974.mkv +吴宝龙-越来越美,http://em.21dtv.com/songs/60135012.mkv +赵骏-一帘幽梦,http://em.21dtv.com/songs/60130779.mkv +腾格尔-一帘幽梦,http://em.21dtv.com/songs/60102648.mkv +高胜美-一廉幽梦,http://em.21dtv.com/songs/60089546.mkv +王伊+刘宁-一林幽梦,http://em.21dtv.com/songs/60079114.mkv +卓依婷-一帘幽梦,http://em.21dtv.com/songs/60053263.mkv +余天-一帘幽梦,http://em.21dtv.com/songs/60053262.mkv +许茹芸-一帘幽梦,http://em.21dtv.com/songs/60053261.mkv +刘家昌-一帘幽梦,http://em.21dtv.com/songs/60053260.mkv +高胜美-一帘幽梦,http://em.21dtv.com/songs/60053259.mkv +邓丽君-一帘幽梦,http://em.21dtv.com/songs/60053258.mkv +姜育恒-一帘幽梦(演唱会),http://em.21dtv.com/songs/60053257.mkv +八三夭-摇勒摇勒,http://em.21dtv.com/songs/60109163.mkv +八三夭-摇勒摇勒,http://em.21dtv.com/songs/60106613.mkv +芭比-摇咧摇咧,http://em.21dtv.com/songs/60052287.mkv +江蕙-愈离愈开,http://em.21dtv.com/songs/60055875.mkv +苏醒-越来越近,http://em.21dtv.com/songs/60127335.mkv +刘姝辰+牛欣欣-越来越好,http://em.21dtv.com/songs/60079435.mkv +宋祖英-越来越好,http://em.21dtv.com/songs/60056597.mkv +王莹-榆林秧歌,http://em.21dtv.com/songs/60127208.mkv +孙莹+韦宁峰-一路阳光,http://em.21dtv.com/songs/60098255.mkv +宁可-一路阳光,http://em.21dtv.com/songs/60079117.mkv +蓝琪儿-一路阳光(演唱会),http://em.21dtv.com/songs/60065334.mkv +陈慧娴-与泪拥抱,http://em.21dtv.com/songs/60089523.mkv +梁汉文-用力一抱,http://em.21dtv.com/songs/60080633.mkv +刚泽斌-一零一变,http://em.21dtv.com/songs/60053269.mkv +刚泽斌-一零一变(无原唱),http://em.21dtv.com/songs/60053268.mkv +邓福如-越来越爱,http://em.21dtv.com/songs/60080485.mkv +飞轮海-越来越爱,http://em.21dtv.com/songs/60056592.mkv +刘一祯-余力学文,http://em.21dtv.com/songs/60071464.mkv +和文军-玉龙雪山,http://em.21dtv.com/songs/60090855.mkv +陈雅森+郭南生-一路向前,http://em.21dtv.com/songs/60135949.mkv +陈雅森+郭南生-一路向前,http://em.21dtv.com/songs/60121100.mkv +蓝梦-一路向前,http://em.21dtv.com/songs/60119948.mkv +胡量-以泪洗面,http://em.21dtv.com/songs/60071437.mkv +翁立友-一路行来,http://em.21dtv.com/songs/60053276.mkv +刘力扬-眼泪笑了,http://em.21dtv.com/songs/60052083.mkv +钟舒漫-预留幸福,http://em.21dtv.com/songs/60097413.mkv +李丽霞+陈慧思-游龙戏凤,http://em.21dtv.com/songs/60092784.mkv +龙剑笙-游龙戏凤,http://em.21dtv.com/songs/60079266.mkv +储兰兰-游龙戏凤,http://em.21dtv.com/songs/60079265.mkv +吴伟豪+邓咏洁-游龙戏凤,http://em.21dtv.com/songs/60055012.mkv +任剑辉+白雪仙-游龙戏凤,http://em.21dtv.com/songs/60055011.mkv +凌东明+李池湘-游龙戏凤,http://em.21dtv.com/songs/60055010.mkv +卢海鹏+苏珊-游龙戏凤(演唱会),http://em.21dtv.com/songs/60055009.mkv +左兆阳+龙百万-一路兄弟,http://em.21dtv.com/songs/60131376.mkv +黄玠+舒米恩-一路向东,http://em.21dtv.com/songs/60106496.mkv +南风-一路向北,http://em.21dtv.com/songs/60121468.mkv +钞艺峰-一路向北,http://em.21dtv.com/songs/60112322.mkv +王爱华-一路相伴,http://em.21dtv.com/songs/60093668.mkv +冷漠-一路向北,http://em.21dtv.com/songs/60072711.mkv +周杰伦-一路向北,http://em.21dtv.com/songs/60053294.mkv +南风-一路向北,http://em.21dtv.com/songs/60053293.mkv +螺丝钉-月亮王子,http://em.21dtv.com/songs/60056439.mkv +江若琳-眼泪无用(演唱会),http://em.21dtv.com/songs/60052081.mkv +赵传-音乐武侠,http://em.21dtv.com/songs/60079202.mkv +时金钰-月落乌啼,http://em.21dtv.com/songs/60079417.mkv +佚名-月落乌蹄,http://em.21dtv.com/songs/60056458.mkv +费玉清-月落乌啼,http://em.21dtv.com/songs/60056457.mkv +徐良-御龙无双,http://em.21dtv.com/songs/60084469.mkv +蔡卓妍-鱼乐无穷,http://em.21dtv.com/songs/60084460.mkv +陈晓东-娱乐无穷,http://em.21dtv.com/songs/60055539.mkv +容中尔甲-一恋万年,http://em.21dtv.com/songs/60111022.mkv +苏永康-原谅我吗,http://em.21dtv.com/songs/60093082.mkv +雷佳-一路同心,http://em.21dtv.com/songs/60114877.mkv +程聪-一路同行,http://em.21dtv.com/songs/60106179.mkv +戴梦梦-雨里同行,http://em.21dtv.com/songs/60055672.mkv +郭峰-一路同行,http://em.21dtv.com/songs/60053292.mkv +子琦-音乐天堂,http://em.21dtv.com/songs/60099191.mkv +羽泉-一路挺你,http://em.21dtv.com/songs/60096439.mkv +陈奕迅-娱乐天空,http://em.21dtv.com/songs/60097411.mkv +程聪-一路同行,http://em.21dtv.com/songs/60097122.mkv +王利+刘舫-一路同行,http://em.21dtv.com/songs/60080284.mkv +彭佳慧-月亮使者,http://em.21dtv.com/songs/60056431.mkv +王小源-源来是我,http://em.21dtv.com/songs/60135550.mkv +陈奕迅-原来是我,http://em.21dtv.com/songs/60093393.mkv +孙丹菲-眼泪簌簌,http://em.21dtv.com/songs/60079011.mkv +陈玮青-缘来是你,http://em.21dtv.com/songs/60131951.mkv +寒武纪-缘来是你,http://em.21dtv.com/songs/60086184.mkv +郭娅丽-缘来是你,http://em.21dtv.com/songs/60068958.mkv +龙梅子+黄勇-缘来是你,http://em.21dtv.com/songs/60066558.mkv +王琥-缘来是你,http://em.21dtv.com/songs/60056102.mkv +林文龙-缘来是你,http://em.21dtv.com/songs/60056101.mkv +冷漠-缘来是你,http://em.21dtv.com/songs/60056100.mkv +梁咏琪-原来是你,http://em.21dtv.com/songs/60055964.mkv +盖玺-耶路撒冷,http://em.21dtv.com/songs/60128261.mkv +熊天平-月亮森林,http://em.21dtv.com/songs/60056427.mkv +ATF-幽灵手记,http://em.21dtv.com/songs/60127644.mkv +沈文程-音乐世界,http://em.21dtv.com/songs/60054330.mkv +佚名-忆恋思景,http://em.21dtv.com/songs/60054121.mkv +萧潇-月亮说话,http://em.21dtv.com/songs/60056433.mkv +卓玛拉初-雅砻山歌,http://em.21dtv.com/songs/60090763.mkv +谢明训-一路顺风,http://em.21dtv.com/songs/60090218.mkv +陈盈洁+凤娘-一路顺风,http://em.21dtv.com/songs/60053290.mkv +舒高+苏有朋-一路顺风(演唱会),http://em.21dtv.com/songs/60053289.mkv +青山-一路顺风(演唱会),http://em.21dtv.com/songs/60053288.mkv +佚名-一路顺风(无原唱),http://em.21dtv.com/songs/60053287.mkv +华少陈-压力山大,http://em.21dtv.com/songs/60133426.mkv +邝美云-原来是爱,http://em.21dtv.com/songs/60055963.mkv +承利-摇领人生,http://em.21dtv.com/songs/60126939.mkv +刘乐洪-音乐人生,http://em.21dtv.com/songs/60121421.mkv +赵彦雄-游离人生,http://em.21dtv.com/songs/60103590.mkv +丁琪媛-缘来如是,http://em.21dtv.com/songs/60101233.mkv +关淑怡-夜凉如水,http://em.21dtv.com/songs/60052619.mkv +胡美仪-一缕柔情(演唱会),http://em.21dtv.com/songs/60053298.mkv +赵晋瑶-一恋如梦,http://em.21dtv.com/songs/60111415.mkv +卢巧音-音乐人民,http://em.21dtv.com/songs/60054329.mkv +许云上-眼泪日记(演),http://em.21dtv.com/songs/60099491.mkv +王馨平-原来如此,http://em.21dtv.com/songs/60055962.mkv +王菀之-原来如此(演唱会),http://em.21dtv.com/songs/60055961.mkv +平安-一路去找,http://em.21dtv.com/songs/60125470.mkv +王飞雪-一路前行,http://em.21dtv.com/songs/60119833.mkv +蔡诗芸-一脸清秀,http://em.21dtv.com/songs/60053266.mkv +龙千玉-一领情网,http://em.21dtv.com/songs/60053272.mkv +于文华-一路情深,http://em.21dtv.com/songs/60053282.mkv +旺福乐团-印伦情人,http://em.21dtv.com/songs/60054396.mkv +李翊君-有理取闹,http://em.21dtv.com/songs/60111994.mkv +潘秀琼-意乱情迷,http://em.21dtv.com/songs/60054181.mkv +李婷宜-意乱情迷,http://em.21dtv.com/songs/60054180.mkv +黄清源-意乱情迷,http://em.21dtv.com/songs/60054179.mkv +陈志朋-意乱情迷(演唱会),http://em.21dtv.com/songs/60054178.mkv +圆圆+石梅-月亮情歌,http://em.21dtv.com/songs/60100807.mkv +石梅+圆圆-月亮情歌,http://em.21dtv.com/songs/60071484.mkv +杨帆-眼泪情歌,http://em.21dtv.com/songs/60070114.mkv +张寒+张媛媛-月亮情歌,http://em.21dtv.com/songs/60056419.mkv +孙莞-用力去爱,http://em.21dtv.com/songs/60105758.mkv +华义-一路朋友,http://em.21dtv.com/songs/60116605.mkv +黎瑞恩-音乐派队(演唱会),http://em.21dtv.com/songs/60054325.mkv +解晓东-一路平安,http://em.21dtv.com/songs/60053281.mkv +解晓东-一路平安(演唱会),http://em.21dtv.com/songs/60053280.mkv +关心妍-音乐女神,http://em.21dtv.com/songs/60054324.mkv +邓紫棋-一路逆风,http://em.21dtv.com/songs/60116277.mkv +张燕-月亮女儿,http://em.21dtv.com/songs/60056417.mkv +施易男-一轮明月,http://em.21dtv.com/songs/60121725.mkv +上官灵雪-野狼模样,http://em.21dtv.com/songs/60061805.mkv +张磊-音乐梦想,http://em.21dtv.com/songs/60093902.mkv +金智娟-倚老卖老,http://em.21dtv.com/songs/60054095.mkv +蔡淳佳-眼里眉间,http://em.21dtv.com/songs/60079014.mkv +谭凌风-月亮玫瑰,http://em.21dtv.com/songs/60084499.mkv +脆乐团-100万,http://em.21dtv.com/songs/60135644.mkv +Crispy脆乐团-100万,http://em.21dtv.com/songs/60134660.mkv +周旗蔚-一路蓝天,http://em.21dtv.com/songs/60132299.mkv +B.A.P-1004,http://em.21dtv.com/songs/60101015.mkv +满江-一路落花(演唱会),http://em.21dtv.com/songs/60053279.mkv +黎明-原来恋爱,http://em.21dtv.com/songs/60055940.mkv +古巨基-由零开始,http://em.21dtv.com/songs/60134985.mkv +张国荣-由零开始(演唱会),http://em.21dtv.com/songs/60054969.mkv +周兴哲-音乐快门,http://em.21dtv.com/songs/60111760.mkv +王小贱-一路狂奔,http://em.21dtv.com/songs/60132724.mkv +东学-一路狂飙,http://em.21dtv.com/songs/60065333.mkv +凤凰传奇-一路惊喜,http://em.21dtv.com/songs/60108329.mkv +钟芹-一路吉祥,http://em.21dtv.com/songs/60053278.mkv +杨朗朗-以卵击石,http://em.21dtv.com/songs/60120659.mkv +S.I.N.G女团-音律进化,http://em.21dtv.com/songs/60126544.mkv +SADE-your love is king,http://em.21dtv.com/songs/60006597.mkv +王果冻-月亮孩子,http://em.21dtv.com/songs/60065432.mkv +房祖名-一路好走,http://em.21dtv.com/songs/60053277.mkv +安娜-一路花香,http://em.21dtv.com/songs/60131348.mkv +蓝琪儿-一路花香,http://em.21dtv.com/songs/60071422.mkv +徐小凤-一脸红霞,http://em.21dtv.com/songs/60053265.mkv +王菲-眼泪和吻,http://em.21dtv.com/songs/60093004.mkv +臧天朔-云里糊涂,http://em.21dtv.com/songs/60056655.mkv +BARRY MANILOW-youre lookinhot tonight,http://em.21dtv.com/songs/60006611.mkv +陈思思-一轮红日,http://em.21dtv.com/songs/60053295.mkv +乌兰图雅-月亮湖畔,http://em.21dtv.com/songs/60094799.mkv +胡云鹏-一帘好梦,http://em.21dtv.com/songs/60117987.mkv +刘德华-夜了好吗,http://em.21dtv.com/songs/60052615.mkv +罗布仁青+阿呗平措-雅砻后代,http://em.21dtv.com/songs/60128309.mkv +张艺于-眼泪会懂,http://em.21dtv.com/songs/60098364.mkv +麦穗-月亮和兵,http://em.21dtv.com/songs/60056406.mkv +万芳-月亮公园,http://em.21dtv.com/songs/60056405.mkv +佚名-与龙共舞,http://em.21dtv.com/songs/60055584.mkv +邝美云-与龙共舞,http://em.21dtv.com/songs/60055583.mkv +黄乙玲-原谅过去,http://em.21dtv.com/songs/60079377.mkv +誓言-雨落故里,http://em.21dtv.com/songs/60071467.mkv +肖雨蒙-一路高歌,http://em.21dtv.com/songs/60113969.mkv +龙帝-夜郎古国,http://em.21dtv.com/songs/60079064.mkv +妞妞-一路高飞,http://em.21dtv.com/songs/60079116.mkv +孙更俊-月亮国,http://em.21dtv.com/songs/60071483.mkv +合力-一路歌唱,http://em.21dtv.com/songs/60128871.mkv +张冬玲+阿宝-一路歌唱(演),http://em.21dtv.com/songs/60066521.mkv +陈奕迅-游离份子,http://em.21dtv.com/songs/60055008.mkv +超有种-一路发威,http://em.21dtv.com/songs/60084361.mkv +宋祖英-一路风光,http://em.21dtv.com/songs/60087686.mkv +曹龙-一路放歌,http://em.21dtv.com/songs/60086118.mkv +李谷一-一路芬芳(演唱会),http://em.21dtv.com/songs/60079115.mkv +沈建豪-一路到这,http://em.21dtv.com/songs/60113785.mkv +李恕权-玉兰的眼(无原唱),http://em.21dtv.com/songs/60055782.mkv +杨丽-原来的我,http://em.21dtv.com/songs/60086178.mkv +范玮琪+曾静玟-原来的我,http://em.21dtv.com/songs/60080961.mkv +吴涤清-原来的我,http://em.21dtv.com/songs/60067747.mkv +王杰-原来的我,http://em.21dtv.com/songs/60055938.mkv +孙露-原来的我,http://em.21dtv.com/songs/60055937.mkv +齐秦-原来的我,http://em.21dtv.com/songs/60055936.mkv +陈楚生-原来的我(演唱会),http://em.21dtv.com/songs/60055935.mkv +吴蕙君-眼里的沙,http://em.21dtv.com/songs/60135021.mkv +柯有伦-眼泪敌人,http://em.21dtv.com/songs/60052071.mkv +马云龙-远离毒品,http://em.21dtv.com/songs/60071478.mkv +侯湘婷-原来的你,http://em.21dtv.com/songs/60055934.mkv +古巨基-原来的你,http://em.21dtv.com/songs/60055933.mkv +BOB-一粒電火,http://em.21dtv.com/songs/60089097.mkv +棉花糖-有礼的谎,http://em.21dtv.com/songs/60055170.mkv +农夫-音乐大亨(演唱会),http://em.21dtv.com/songs/60054318.mkv +谢东-一路等候,http://em.21dtv.com/songs/60053275.mkv +芭比-一粒电火,http://em.21dtv.com/songs/60053254.mkv +新街口组合-一璐到底,http://em.21dtv.com/songs/60105095.mkv +林奕匡-雨落大地,http://em.21dtv.com/songs/60055673.mkv +佚名-椰林大道(无原唱),http://em.21dtv.com/songs/60052414.mkv +德德玛-一缕炊烟,http://em.21dtv.com/songs/60102270.mkv +塔拉吉斯-月亮草原,http://em.21dtv.com/songs/60079412.mkv +豪图-有了草原(演唱会),http://em.21dtv.com/songs/60055164.mkv +郁可唯-夜落初雪,http://em.21dtv.com/songs/60134295.mkv +1983组合+何欣烛-一路畅通,http://em.21dtv.com/songs/60123424.mkv +龙飞龙泽+何欣烛-一路畅通,http://em.21dtv.com/songs/60114930.mkv +谭凌风-幽兰传说,http://em.21dtv.com/songs/60084431.mkv +孙燕姿-眼泪成诗,http://em.21dtv.com/songs/60052068.mkv +苏月-月亮传奇,http://em.21dtv.com/songs/60098716.mkv +洪晓源-音乐城堡,http://em.21dtv.com/songs/60084400.mkv +于海涛-一粒尘埃,http://em.21dtv.com/songs/60125086.mkv +金琳-雨落长安,http://em.21dtv.com/songs/60098819.mkv +梁静茹-用力抱着,http://em.21dtv.com/songs/60054873.mkv +佚名-与泪抱拥,http://em.21dtv.com/songs/60055582.mkv +陈慧娴-与泪抱拥(演唱会),http://em.21dtv.com/songs/60055581.mkv +信乐团-一了百了,http://em.21dtv.com/songs/60053252.mkv +谢霆锋-一了百了,http://em.21dtv.com/songs/60053251.mkv +陈冠希-要来便来,http://em.21dtv.com/songs/60052373.mkv +刘凤瑶-已离不开,http://em.21dtv.com/songs/60120356.mkv +刘凤瑶-已离不开,http://em.21dtv.com/songs/60119286.mkv +丁薇-已来不及,http://em.21dtv.com/songs/60123581.mkv +曾昱嘉-眼泪不够,http://em.21dtv.com/songs/60052066.mkv +黄宥杰-眼泪拌饭,http://em.21dtv.com/songs/60128630.mkv +黄宥杰-眼泪拌饭,http://em.21dtv.com/songs/60127618.mkv +胡尧峰-一路奔放,http://em.21dtv.com/songs/60081638.mkv +佚名-一领被单,http://em.21dtv.com/songs/60022477.mkv +赵雷-月亮粑粑,http://em.21dtv.com/songs/60132927.mkv +张东朗-月亮粑粑,http://em.21dtv.com/songs/60127958.mkv +温岚-一路不变,http://em.21dtv.com/songs/60086117.mkv +陈慧琳-亚里巴巴(演唱会),http://em.21dtv.com/songs/60051894.mkv +多元神话-一路翱翔,http://em.21dtv.com/songs/60084360.mkv +常石磊-音乐爱我,http://em.21dtv.com/songs/60117702.mkv +昊麟-月亮爱情,http://em.21dtv.com/songs/60119608.mkv +吴格林-原来爱情,http://em.21dtv.com/songs/60061856.mkv +周华健-眼眶之中,http://em.21dtv.com/songs/60052058.mkv +黄荣华-要看一眼,http://em.21dtv.com/songs/60080992.mkv +胡歌-一刻永远,http://em.21dtv.com/songs/60053243.mkv +莫文蔚-一口一口,http://em.21dtv.com/songs/60053246.mkv +雷有辉-一刻印记,http://em.21dtv.com/songs/60093504.mkv +太极乐队-一刻印记(演唱会),http://em.21dtv.com/songs/60053241.mkv +古巨基-一刻永恒,http://em.21dtv.com/songs/60053242.mkv +曾志伟+吴君如+宋本浩-一刻逍遥,http://em.21dtv.com/songs/60120588.mkv +曾志伟+吴君如-一刻逍遥,http://em.21dtv.com/songs/60114577.mkv +周永恒-遥控先生,http://em.21dtv.com/songs/60052303.mkv +舞曲-雅克兄弟,http://em.21dtv.com/songs/60089454.mkv +刘耔彤-哑口无言,http://em.21dtv.com/songs/60087419.mkv +沙宝亮-云开雾散,http://em.21dtv.com/songs/60056654.mkv +吴淑敏-欲哭无声,http://em.21dtv.com/songs/60055819.mkv +许茹芸-欲哭无泪,http://em.21dtv.com/songs/60055818.mkv +佚名-一卡手指,http://em.21dtv.com/songs/60053215.mkv +卓依婷-一颗情泪,http://em.21dtv.com/songs/60053231.mkv +甄秀珍-一颗情泪(演唱会),http://em.21dtv.com/songs/60053230.mkv +罗时丰-一卡皮箱,http://em.21dtv.com/songs/60079110.mkv +佚名-一卡皮箱,http://em.21dtv.com/songs/60053214.mkv +洪荣宏-一卡皮箱,http://em.21dtv.com/songs/60053213.mkv +五月天-一颗苹果,http://em.21dtv.com/songs/60053229.mkv +宋念宇-一颗苹果,http://em.21dtv.com/songs/60053228.mkv +五月天-一颗苹果(演唱会),http://em.21dtv.com/songs/60053227.mkv +张浩-有苦难言,http://em.21dtv.com/songs/60125522.mkv +卓文萱-一颗钮扣,http://em.21dtv.com/songs/60104855.mkv +黄维德-有口难开,http://em.21dtv.com/songs/60089051.mkv +余天-一颗流星,http://em.21dtv.com/songs/60053226.mkv +新宝岛康乐队-一颗流星,http://em.21dtv.com/songs/60053225.mkv +王建杰-一颗流星,http://em.21dtv.com/songs/60053224.mkv +邓丽君-一颗流星,http://em.21dtv.com/songs/60053223.mkv +北原山猫-有空来玩,http://em.21dtv.com/songs/60055158.mkv +C AllStar-一刻恋上,http://em.21dtv.com/songs/60132058.mkv +王丽达-一颗红豆,http://em.21dtv.com/songs/60118765.mkv +谢采妘-一颗红豆,http://em.21dtv.com/songs/60053222.mkv +凤飞飞-一颗红豆,http://em.21dtv.com/songs/60053221.mkv +谢采妘-一棵红豆,http://em.21dtv.com/songs/60053219.mkv +刘明辉-一块红布,http://em.21dtv.com/songs/60086116.mkv +刘彩星+高扬-一块红布,http://em.21dtv.com/songs/60081558.mkv +崔健-一块红布,http://em.21dtv.com/songs/60053248.mkv +官恩娜-一刻感应,http://em.21dtv.com/songs/60065332.mkv +赵传-一颗滚石,http://em.21dtv.com/songs/60132913.mkv +赵传-一颗滚石(HD),http://em.21dtv.com/songs/60097124.mkv +赵传-一颗滚石,http://em.21dtv.com/songs/60097123.mkv +风云传奇-引吭高歌,http://em.21dtv.com/songs/60110680.mkv +于文华-一块过吧,http://em.21dtv.com/songs/60087253.mkv +于文华-一快过吧,http://em.21dtv.com/songs/60053250.mkv +蔡淳佳-一刻暧昧,http://em.21dtv.com/songs/60110500.mkv +佚名-愿君珍重,http://em.21dtv.com/songs/60056207.mkv +王不火-又见重阳,http://em.21dtv.com/songs/60118762.mkv +林葳-一见钟情,http://em.21dtv.com/songs/60135442.mkv +罗时丰-一见钟情,http://em.21dtv.com/songs/60134078.mkv +逍遥香香-一见钟情,http://em.21dtv.com/songs/60132956.mkv +赖慧如-一见钟情,http://em.21dtv.com/songs/60120960.mkv +戈浪-一见钟情,http://em.21dtv.com/songs/60111111.mkv +大约冬季+逍遥香香-一见钟情,http://em.21dtv.com/songs/60106744.mkv +柳岩+灿盛-一见钟情,http://em.21dtv.com/songs/60103393.mkv +玉面天使-一见钟情,http://em.21dtv.com/songs/60080975.mkv +吴鑫桐-一见钟情,http://em.21dtv.com/songs/60071421.mkv +张凌枫-一见钟情,http://em.21dtv.com/songs/60070141.mkv +甜美真-一见钟情,http://em.21dtv.com/songs/60063003.mkv +李晟-一见钟情,http://em.21dtv.com/songs/60061816.mkv +香香-一见钟情,http://em.21dtv.com/songs/60053178.mkv +妞妞姐妹-一见钟情,http://em.21dtv.com/songs/60053177.mkv +罗时丰-一见钟情,http://em.21dtv.com/songs/60053176.mkv +林凯-一见钟情,http://em.21dtv.com/songs/60053175.mkv +李炜-一见钟情,http://em.21dtv.com/songs/60053174.mkv +蓝心湄-一见钟情,http://em.21dtv.com/songs/60053173.mkv +姜成民-一见钟情,http://em.21dtv.com/songs/60053172.mkv +刘美君-一见钟情(演唱会),http://em.21dtv.com/songs/60053171.mkv +高原-遇见再见,http://em.21dtv.com/songs/60113097.mkv +秦岚-一肩之隔,http://em.21dtv.com/songs/60079108.mkv +童唱-摇囝仔歌,http://em.21dtv.com/songs/60052277.mkv +任韵淇-遇见永远,http://em.21dtv.com/songs/60118326.mkv +东来东往+任韵淇-遇见永远,http://em.21dtv.com/songs/60113218.mkv +廖碧儿-依加有喜,http://em.21dtv.com/songs/60053974.mkv +刘力扬-一句一伤,http://em.21dtv.com/songs/60053212.mkv +区瑞强-又见月明,http://em.21dtv.com/songs/60092373.mkv +陈伟霆-有借有还,http://em.21dtv.com/songs/60071454.mkv +李政飞+崔苗-拥军秧歌,http://em.21dtv.com/songs/60111984.mkv +佚名-拥军秧歌,http://em.21dtv.com/songs/60054600.mkv +苏永康+陈慧琳-宜家先知,http://em.21dtv.com/songs/60054031.mkv +蔡诗芸-要就现在,http://em.21dtv.com/songs/60052371.mkv +林玉英-又见小雨,http://em.21dtv.com/songs/60065406.mkv +牛朝阳-一间小屋,http://em.21dtv.com/songs/60053159.mkv +倪安东-一觉醒来,http://em.21dtv.com/songs/60066520.mkv +黎明+黎瑞恩-一家笑口,http://em.21dtv.com/songs/60053155.mkv +张也-永记心间,http://em.21dtv.com/songs/60091040.mkv +佚名-又见雪花,http://em.21dtv.com/songs/60055450.mkv +童可可-遇见幸福,http://em.21dtv.com/songs/60110442.mkv +陈奕-遇见幸福,http://em.21dtv.com/songs/60079888.mkv +AK-遇见幸福,http://em.21dtv.com/songs/60079842.mkv +王菲-又继续等,http://em.21dtv.com/songs/60055429.mkv +李子杰-欲救无药,http://em.21dtv.com/songs/60072757.mkv +詹曼铃-已经无心,http://em.21dtv.com/songs/60054076.mkv +JS-遇见未来,http://em.21dtv.com/songs/60055858.mkv +谢霆锋-邮寄睡眼,http://em.21dtv.com/songs/60092118.mkv +杨千嬅-饮酒思源,http://em.21dtv.com/songs/60054372.mkv +杨千嬅-饮酒思源(演唱会),http://em.21dtv.com/songs/60054371.mkv +江潮-一介书生,http://em.21dtv.com/songs/60106057.mkv +杨叶伦-厌倦绅士,http://em.21dtv.com/songs/60086085.mkv +邵大伦-已经受伤,http://em.21dtv.com/songs/60070158.mkv +MULTI EGO乐队-1937,http://em.21dtv.com/songs/60133251.mkv +祖海-一江深情,http://em.21dtv.com/songs/60112135.mkv +鞠婧祎-缘尽世间,http://em.21dtv.com/songs/60110666.mkv +SNH48-缘尽世间,http://em.21dtv.com/songs/60109884.mkv +张燕清+戴梅君-一九四九,http://em.21dtv.com/songs/60070143.mkv +佚名-艺界人生,http://em.21dtv.com/songs/60054109.mkv +江蕙-艺界人生,http://em.21dtv.com/songs/60054108.mkv +张柏芝-遇见日期,http://em.21dtv.com/songs/60055856.mkv +徐一鸣+陶钰玉-一见如故,http://em.21dtv.com/songs/60105068.mkv +黎瑞恩-一见如故,http://em.21dtv.com/songs/60093573.mkv +张宇-一脚浅拖,http://em.21dtv.com/songs/60109304.mkv +JAMES BLUNT-一九七三,http://em.21dtv.com/songs/60053201.mkv +凤飞飞-又见秋莲,http://em.21dtv.com/songs/60055445.mkv +香巴拉组合-雅家情海,http://em.21dtv.com/songs/60078990.mkv +果味C-一九七八,http://em.21dtv.com/songs/60053200.mkv +少司命-一剑轻安,http://em.21dtv.com/songs/60070142.mkv +李杨飞-杨家女将,http://em.21dtv.com/songs/60133803.mkv +代理仁+曾晶-冤家路窄,http://em.21dtv.com/songs/60068953.mkv +央金兰泽-遇见了你,http://em.21dtv.com/songs/60055849.mkv +陈奕迅-遇见了你,http://em.21dtv.com/songs/60055848.mkv +荒山亮-一九六零,http://em.21dtv.com/songs/60053199.mkv +郑嘉颖-一击即中,http://em.21dtv.com/songs/60067699.mkv +谢霆锋-一击即中,http://em.21dtv.com/songs/60053143.mkv +COOKIES-一击即中,http://em.21dtv.com/songs/60053142.mkv +吴雨霏-一击即中(演唱会),http://em.21dtv.com/songs/60053141.mkv +JASON ALDEAN-1994,http://em.21dtv.com/songs/60082054.mkv +张国政-硬颈精神,http://em.21dtv.com/songs/60054563.mkv +高枫-一九九七(演唱会),http://em.21dtv.com/songs/60053197.mkv +枫桥-又见九妹,http://em.21dtv.com/songs/60106989.mkv +陈威全-永久居留,http://em.21dtv.com/songs/60100577.mkv +蔡国庆+景岗山+黄格选-一九九九,http://em.21dtv.com/songs/60053194.mkv +戴佩妮-一九九九(演唱会),http://em.21dtv.com/songs/60053193.mkv +董贞-御剑江湖,http://em.21dtv.com/songs/60079352.mkv +吉杰+曲比阿乌+太阳部落-彝家酒歌,http://em.21dtv.com/songs/60081643.mkv +猴子飞行员-一九九八,http://em.21dtv.com/songs/60053190.mkv +顺子-遇见旧爱,http://em.21dtv.com/songs/60055845.mkv +央金兰泽+才仁巴-迎酒欢歌,http://em.21dtv.com/songs/60090869.mkv +佚名-拥军花鼓,http://em.21dtv.com/songs/60054599.mkv +姚林辉-彝家欢歌,http://em.21dtv.com/songs/60054069.mkv +叶启田-已经惯习,http://em.21dtv.com/songs/60054072.mkv +谢霆锋-夜静怪谈,http://em.21dtv.com/songs/60093187.mkv +高慧君-雨季过后,http://em.21dtv.com/songs/60055667.mkv +邓子霆-一击粉碎,http://em.21dtv.com/songs/60080124.mkv +杨鸣-夜间飞行,http://em.21dtv.com/songs/60054273.mkv +邰正宵-1920,http://em.21dtv.com/songs/60079989.mkv +邰正宵-一九二零,http://em.21dtv.com/songs/60079109.mkv +三多-雨季独醉,http://em.21dtv.com/songs/60087078.mkv +涓子-雨季独醉,http://em.21dtv.com/songs/60081020.mkv +洪卓立-一句到尾(演唱会),http://em.21dtv.com/songs/60072708.mkv +陈小春-一句到尾,http://em.21dtv.com/songs/60053206.mkv +容祖儿-一句到尾(演唱会),http://em.21dtv.com/songs/60053205.mkv +郁可唯-又见到你,http://em.21dtv.com/songs/60126265.mkv +张也-又见大海,http://em.21dtv.com/songs/60055437.mkv +雨果-有记得过,http://em.21dtv.com/songs/60127573.mkv +松鹿+王中华-游击队歌,http://em.21dtv.com/songs/60089360.mkv +群星-游击队歌,http://em.21dtv.com/songs/60055000.mkv +刘孟哲-又见炊烟(演唱会),http://em.21dtv.com/songs/60087076.mkv +王菲-又见炊烟,http://em.21dtv.com/songs/60055435.mkv +邓丽君-又见炊烟,http://em.21dtv.com/songs/60055434.mkv +杨钰莹-又见炊烟(演唱会),http://em.21dtv.com/songs/60055433.mkv +王菲-又见炊烟(演唱会),http://em.21dtv.com/songs/60055432.mkv +陈淑桦-又见春天,http://em.21dtv.com/songs/60055436.mkv +黄凯芹-缘尽此生,http://em.21dtv.com/songs/60056098.mkv +佚名-一江春水,http://em.21dtv.com/songs/60053182.mkv +杜德伟-一件错事,http://em.21dtv.com/songs/60053180.mkv +刘欢+毛阿敏-又见彩虹,http://em.21dtv.com/songs/60055431.mkv +BOWLING FOR SOUP-一九八五,http://em.21dtv.com/songs/60053189.mkv +王宝-一九八三,http://em.21dtv.com/songs/60086115.mkv +蒙古西烈-圆寂悲伤,http://em.21dtv.com/songs/60079385.mkv +SWING-一九八四,http://em.21dtv.com/songs/60053188.mkv +佳小宇-翼京别了,http://em.21dtv.com/songs/60086139.mkv +宋孟君-遇见不见,http://em.21dtv.com/songs/60094476.mkv +郑秀文-意见不合,http://em.21dtv.com/songs/60054177.mkv +陈柏宇-永久保存,http://em.21dtv.com/songs/60054647.mkv +南拳妈妈-眼睛宝贝,http://em.21dtv.com/songs/60087498.mkv +康康-又见兵变,http://em.21dtv.com/songs/60055430.mkv +南拳妈妈-眼镜宝贝,http://em.21dtv.com/songs/60052056.mkv +陈思思-拥军爱民,http://em.21dtv.com/songs/60054597.mkv +罗时丰+龙千玉-又见阿郎,http://em.21dtv.com/songs/60100378.mkv +ROD STEWART-youre in my heart,http://em.21dtv.com/songs/60006610.mkv +陈威全-yes i love you,http://em.21dtv.com/songs/60006457.mkv +S.H.E-yes i love you,http://em.21dtv.com/songs/60006456.mkv +林子祥+陈奕迅-ymca好知已(演唱会),http://em.21dtv.com/songs/60006476.mkv +Silent Siren-樱花炸弹,http://em.21dtv.com/songs/60119185.mkv +蓝雨-永恒之塔,http://em.21dtv.com/songs/60100446.mkv +阿兰-浴火重生,http://em.21dtv.com/songs/60116326.mkv +正歌-炎黄子孙,http://em.21dtv.com/songs/60107009.mkv +SWEETY-有话直说,http://em.21dtv.com/songs/60084437.mkv +冷漠-炎黄子孙,http://em.21dtv.com/songs/60067687.mkv +柯震东-有话直说,http://em.21dtv.com/songs/60065395.mkv +动力火车-有话直说,http://em.21dtv.com/songs/60055148.mkv +刘思伟-炎黄子孙,http://em.21dtv.com/songs/60052016.mkv +戴玉强-银湖之恋,http://em.21dtv.com/songs/60054344.mkv +苏醒-永恒之火,http://em.21dtv.com/songs/60105322.mkv +关青-摇红烛花(佛前灯)(戏曲),http://em.21dtv.com/songs/60092326.mkv +何流-也很值得,http://em.21dtv.com/songs/60086099.mkv +大支+J.Wu-浴火英雄,http://em.21dtv.com/songs/60104010.mkv +汪正正-永恒依然,http://em.21dtv.com/songs/60091597.mkv +石头-烟花易冷,http://em.21dtv.com/songs/60120828.mkv +林志炫-烟花易冷,http://em.21dtv.com/songs/60078994.mkv +四分卫-雨和眼泪,http://em.21dtv.com/songs/60055651.mkv +周杰伦-烟花易冷,http://em.21dtv.com/songs/60051963.mkv +林芯仪-以后以后,http://em.21dtv.com/songs/60122912.mkv +林芯仪-以后以后,http://em.21dtv.com/songs/60119714.mkv +蔡依林-烟火游行,http://em.21dtv.com/songs/60092019.mkv +李斯琪-呀嗬呀嗬(演唱会),http://em.21dtv.com/songs/60066509.mkv +许志安-雨后阳光,http://em.21dtv.com/songs/60055656.mkv +郑秀文-银河星星,http://em.21dtv.com/songs/60093322.mkv +刘德华-一壶乡愁,http://em.21dtv.com/songs/60053140.mkv +黄小琥-烟火现场,http://em.21dtv.com/songs/60051975.mkv +常石磊-遗憾为止,http://em.21dtv.com/songs/60054050.mkv +郑伊健-夜还未深,http://em.21dtv.com/songs/60052571.mkv +戴佩妮-雨和太阳,http://em.21dtv.com/songs/60055650.mkv +佚名-银河铁路(无原唱),http://em.21dtv.com/songs/60054343.mkv +伍佰-银河特快,http://em.21dtv.com/songs/60087290.mkv +袁咏琳-雨后天空,http://em.21dtv.com/songs/60055655.mkv +谭咏麟-银河岁月,http://em.21dtv.com/songs/60108893.mkv +荒山亮-云化誓言(无原唱),http://em.21dtv.com/songs/60056652.mkv +吴涤清-烟花三月,http://em.21dtv.com/songs/60051959.mkv +任盈盈-月花树下,http://em.21dtv.com/songs/60125107.mkv +张敬轩-樱花树下,http://em.21dtv.com/songs/60054476.mkv +李逸+谢玲玲-樱花树下,http://em.21dtv.com/songs/60054475.mkv +张敬轩-樱花树下(演唱会),http://em.21dtv.com/songs/60054474.mkv +区瑞强-渔火闪闪,http://em.21dtv.com/songs/60055548.mkv +佚名-银环上山,http://em.21dtv.com/songs/60054347.mkv +简迷离-银河诗集,http://em.21dtv.com/songs/60134060.mkv +谢天华+森美-疑幻人生,http://em.21dtv.com/songs/60079178.mkv +谭咏麟+MR.-约翰人生,http://em.21dtv.com/songs/60056259.mkv +秀兰玛雅-永恒情歌,http://em.21dtv.com/songs/60063199.mkv +桂莹莹-烟花翩翩,http://em.21dtv.com/songs/60132634.mkv +胡杨林-烟花翩翩,http://em.21dtv.com/songs/60051957.mkv +吴梵-约翰跑路,http://em.21dtv.com/songs/60056258.mkv +陈盈洁-烟花女子,http://em.21dtv.com/songs/60051956.mkv +江美丽-烟花女子(无原唱),http://em.21dtv.com/songs/60051955.mkv +李池湘-烟花满天(无原唱),http://em.21dtv.com/songs/60051953.mkv +杨静-饮乎茫茫,http://em.21dtv.com/songs/60129282.mkv +钱红-欲火玫瑰,http://em.21dtv.com/songs/60086177.mkv +孙楠-杨花李树,http://em.21dtv.com/songs/60079027.mkv +五月天-约翰蓝侬,http://em.21dtv.com/songs/60056257.mkv +陆树铭-一壶老酒,http://em.21dtv.com/songs/60120065.mkv +王文琦-一壶老酒,http://em.21dtv.com/songs/60118783.mkv +马常宝-一壶老酒,http://em.21dtv.com/songs/60081112.mkv +陆树铭-一壶老酒,http://em.21dtv.com/songs/60053139.mkv +林建亨-樱花开了,http://em.21dtv.com/songs/60054467.mkv +郑智化-烟花江畔,http://em.21dtv.com/songs/60101688.mkv +林锦屏-玉河浸女(殉情爱)(戏曲),http://em.21dtv.com/songs/60092883.mkv +杨秀焜-樱花静了,http://em.21dtv.com/songs/60131532.mkv +小樱-樱花季节,http://em.21dtv.com/songs/60099970.mkv +吴梵-永恒火焰,http://em.21dtv.com/songs/60054646.mkv +林伊凡-有话好说(无原唱),http://em.21dtv.com/songs/60055144.mkv +古巨基-义海豪情,http://em.21dtv.com/songs/60054102.mkv +林威良-要好好的,http://em.21dtv.com/songs/60122897.mkv +群星合唱-一壶好茶,http://em.21dtv.com/songs/60091867.mkv +希亚-烟花姑娘,http://em.21dtv.com/songs/60078993.mkv +张伯宏+金海心-油画姑娘,http://em.21dtv.com/songs/60054989.mkv +毛鹏懿(Mao)-1号公路,http://em.21dtv.com/songs/60130519.mkv +大家唱合唱团-远航归来,http://em.21dtv.com/songs/60056152.mkv +陈启泰+冯夏贤-永恒国度,http://em.21dtv.com/songs/60093390.mkv +谭咏麟-艺海浮台,http://em.21dtv.com/songs/60135758.mkv +王丽达-雨花飞梦,http://em.21dtv.com/songs/60079340.mkv +钟镇涛+钊峰-烟花非花,http://em.21dtv.com/songs/60111469.mkv +杨培安+化学猴子-浴火凤凰,http://em.21dtv.com/songs/60055800.mkv +佚名-浴火凤凰(无原唱),http://em.21dtv.com/songs/60055799.mkv +陈奕迅-月黑风高(演唱会),http://em.21dtv.com/songs/60084497.mkv +谢金燕-约会disco night,http://em.21dtv.com/songs/60056264.mkv +猛虎巧克力-永恒的梦,http://em.21dtv.com/songs/60113837.mkv +大嘴巴-要坏掉了,http://em.21dtv.com/songs/60120432.mkv +林忆莲-诱惑的街,http://em.21dtv.com/songs/60125777.mkv +林志炫-诱惑的街,http://em.21dtv.com/songs/60079319.mkv +梁静茹-诱惑的街,http://em.21dtv.com/songs/60079318.mkv +林忆莲-诱惑的街,http://em.21dtv.com/songs/60055489.mkv +张敬轩-诱惑的街(演唱会),http://em.21dtv.com/songs/60055488.mkv +弦子-沿海地带,http://em.21dtv.com/songs/60052018.mkv +孙子涵+朱婧佳-约会对白,http://em.21dtv.com/songs/60106768.mkv +西单女孩-永恒的爱,http://em.21dtv.com/songs/60065379.mkv +杨美莲-永恒的爱(无原唱),http://em.21dtv.com/songs/60054633.mkv +炎黄赤子-炎黄赤子,http://em.21dtv.com/songs/60091671.mkv +朱永飞-又回草原,http://em.21dtv.com/songs/60104188.mkv +郭莹-运河传奇,http://em.21dtv.com/songs/60124580.mkv +四分卫-烟火灿烂(演唱会),http://em.21dtv.com/songs/60051972.mkv +阿飞-樱花彩虹,http://em.21dtv.com/songs/60054461.mkv +陈小汉+李敏华-游湖册封(戏曲),http://em.21dtv.com/songs/60093423.mkv +GEORGE MICHAEL-you have been love,http://em.21dtv.com/songs/60006549.mkv +王俊凯-有何不可,http://em.21dtv.com/songs/60111263.mkv +Ella-有何不可,http://em.21dtv.com/songs/60110757.mkv +陈嘉桦-有何不可,http://em.21dtv.com/songs/60110612.mkv +许嵩-有何不可,http://em.21dtv.com/songs/60055143.mkv +黄识文-野火不尽,http://em.21dtv.com/songs/60130939.mkv +佚名-运河悲歌,http://em.21dtv.com/songs/60056694.mkv +张艺腾-永恒爱人,http://em.21dtv.com/songs/60121676.mkv +杜青-永恒爱恋,http://em.21dtv.com/songs/60127076.mkv +张峰奇-摇滚主义,http://em.21dtv.com/songs/60052275.mkv +黄莺莺-有关昨晚,http://em.21dtv.com/songs/60055137.mkv +谢霆锋-勇敢做人,http://em.21dtv.com/songs/60054852.mkv +叶世荣-一股做气,http://em.21dtv.com/songs/60092399.mkv +叶世荣-一鼓作气(演唱会),http://em.21dtv.com/songs/60053134.mkv +周杰伦-阳光宅男,http://em.21dtv.com/songs/60052193.mkv +郑可欣-勇敢证明,http://em.21dtv.com/songs/60084425.mkv +邰正宵-勇敢作梦,http://em.21dtv.com/songs/60054851.mkv +佚名-勇敢作梦(无原唱),http://em.21dtv.com/songs/60054850.mkv +篱落素素-阳光之旅,http://em.21dtv.com/songs/60084322.mkv +邓志驹+李池湘-杨关折柳,http://em.21dtv.com/songs/60052201.mkv +任和-勇敢之后,http://em.21dtv.com/songs/60109953.mkv +刘心-雨过之后,http://em.21dtv.com/songs/60065409.mkv +易秒英-阳光中国,http://em.21dtv.com/songs/60087939.mkv +I LOVE YOU BOYZ-一个字丑,http://em.21dtv.com/songs/60053128.mkv +南拳妈妈-一个宇宙,http://em.21dtv.com/songs/60122550.mkv +陈颖妍-异国夜行,http://em.21dtv.com/songs/60054136.mkv +游媄镁-一个夜晚(无原唱),http://em.21dtv.com/songs/60053120.mkv +林俊逸+王汇筑-月光咏叹,http://em.21dtv.com/songs/60079411.mkv +段丽阳-愚公移山,http://em.21dtv.com/songs/60100901.mkv +谭晶-愚公移山,http://em.21dtv.com/songs/60079331.mkv +江涛-愚公移山,http://em.21dtv.com/songs/60055568.mkv +江涛-愚公移山(演唱会),http://em.21dtv.com/songs/60055567.mkv +梁文希-一个月亮,http://em.21dtv.com/songs/60122919.mkv +梁文希-一个月亮,http://em.21dtv.com/songs/60116074.mkv +糖妹-一个月亮,http://em.21dtv.com/songs/60115325.mkv +陈彦妃-勇敢远行,http://em.21dtv.com/songs/60097367.mkv +黄勇-勇敢勇敢,http://em.21dtv.com/songs/60100669.mkv +赵钶-勇敢一点,http://em.21dtv.com/songs/60128437.mkv +鸿飞-勇敢一点,http://em.21dtv.com/songs/60111546.mkv +贾剑龙+简红-勇敢一点,http://em.21dtv.com/songs/60095092.mkv +林军+薛晓光-勇敢一点,http://em.21dtv.com/songs/60084424.mkv +薛之谦-勇敢一点(歌声传奇),http://em.21dtv.com/songs/60084423.mkv +赵传-勇敢一点,http://em.21dtv.com/songs/60054848.mkv +袁惟仁-勇敢一点,http://em.21dtv.com/songs/60054847.mkv +弦子-勇敢一点,http://em.21dtv.com/songs/60054846.mkv +曾轶可-勇敢一点,http://em.21dtv.com/songs/60054845.mkv +威葳-月光戏院,http://em.21dtv.com/songs/60056349.mkv +周国贤-摇滚小学,http://em.21dtv.com/songs/60092470.mkv +ZARAHN-摇滚小学,http://em.21dtv.com/songs/60052273.mkv +乔洋-月光心事,http://em.21dtv.com/songs/60056368.mkv +叶振棠-一个信念,http://em.21dtv.com/songs/60053119.mkv +小雪-一个夏季,http://em.21dtv.com/songs/60053115.mkv +卓玛拉初-月光小河,http://em.21dtv.com/songs/60089703.mkv +范怡文+WULA-勇敢幸福,http://em.21dtv.com/songs/60054844.mkv +张文熹+张文昊-阳光兄弟,http://em.21dtv.com/songs/60102220.mkv +钟心-月光下 (HD),http://em.21dtv.com/songs/10012817.mkv +五月天-摇滚舞台(演唱会),http://em.21dtv.com/songs/60052272.mkv +J-STAR-摇滚万岁,http://em.21dtv.com/songs/60052271.mkv +张利志-月光舞会,http://em.21dtv.com/songs/60079409.mkv +谢安琪-雨过天阴,http://em.21dtv.com/songs/60055647.mkv +奥杰阿格-异国他乡,http://em.21dtv.com/songs/60054135.mkv +扎扎-阳光天堂,http://em.21dtv.com/songs/60107755.mkv +孙浩-阳光天堂,http://em.21dtv.com/songs/60052184.mkv +花儿(林佳音)-雨过天晴,http://em.21dtv.com/songs/60116218.mkv +林佳音-雨过天晴,http://em.21dtv.com/songs/60116037.mkv +卓依婷-雨过天晴,http://em.21dtv.com/songs/60109203.mkv +黄品冠-雨过天晴,http://em.21dtv.com/songs/60055646.mkv +陈明真-雨过天晴,http://em.21dtv.com/songs/60055645.mkv +黄品冠-雨过天晴(演唱会),http://em.21dtv.com/songs/60055644.mkv +红豆-一个童话,http://em.21dtv.com/songs/60053105.mkv +S.H.E-月光手札,http://em.21dtv.com/songs/60056347.mkv +流氓阿德-摇滚莎士,http://em.21dtv.com/songs/60052270.mkv +何韵诗-艳光四射,http://em.21dtv.com/songs/60052115.mkv +何韵诗-艳光四射(HD演唱会),http://em.21dtv.com/songs/60052114.mkv +陈随意+吴俊宏-有够伤啦,http://em.21dtv.com/songs/60086160.mkv +黄靖伦-月光手机,http://em.21dtv.com/songs/60089060.mkv +SHE-月光手机,http://em.21dtv.com/songs/60087216.mkv +王瑞霞-勇敢随风,http://em.21dtv.com/songs/60096406.mkv +涓子-阳关三叠,http://em.21dtv.com/songs/60121882.mkv +成于申-阳关三叠,http://em.21dtv.com/songs/60105918.mkv +佚名-阳关三叠,http://em.21dtv.com/songs/60052161.mkv +佚名-阳光森巴,http://em.21dtv.com/songs/60052183.mkv +李观-勇敢说爱,http://em.21dtv.com/songs/60070179.mkv +郭少杰-一个人醉,http://em.21dtv.com/songs/60124576.mkv +赵鑫-一个人走,http://em.21dtv.com/songs/60114106.mkv +许罡-一个人住,http://em.21dtv.com/songs/60110523.mkv +王杰-一个人走,http://em.21dtv.com/songs/60091703.mkv +刘佳-一个人走,http://em.21dtv.com/songs/60068915.mkv +王娜-一个人走,http://em.21dtv.com/songs/60063027.mkv +卫兰+光良-一个人走,http://em.21dtv.com/songs/60053099.mkv +王子鸣-一个人走,http://em.21dtv.com/songs/60053098.mkv +陆锋-一个人走,http://em.21dtv.com/songs/60053097.mkv +阿杜-一个人住,http://em.21dtv.com/songs/60053096.mkv +冰雪璇儿-月光如水,http://em.21dtv.com/songs/60099782.mkv +魏晨-一个人睡,http://em.21dtv.com/songs/60053084.mkv +莫文蔚-一个人睡,http://em.21dtv.com/songs/60053083.mkv +刘德华-一个人睡,http://em.21dtv.com/songs/60053082.mkv +刘德华-一个人睡(演唱会),http://em.21dtv.com/songs/60053081.mkv +黄凯芹-一个人睡(演唱会),http://em.21dtv.com/songs/60053080.mkv +刀刀刀-一个人哭,http://em.21dtv.com/songs/60079101.mkv +郑源-一个人哭,http://em.21dtv.com/songs/60053060.mkv +于朦胧-一个人过,http://em.21dtv.com/songs/60128751.mkv +阿丽玛-一个人过,http://em.21dtv.com/songs/60053051.mkv +施文斌-一个人飞,http://em.21dtv.com/songs/60053048.mkv +李克勤-一个人飞,http://em.21dtv.com/songs/60053047.mkv +李克勤-一个人飞(演唱会),http://em.21dtv.com/songs/60053046.mkv +轮回乐队-一个人爱,http://em.21dtv.com/songs/60052993.mkv +林嘉宝-异国情缘,http://em.21dtv.com/songs/60054134.mkv +莫西子诗-越过群山,http://em.21dtv.com/songs/60130703.mkv +枫桥-月光情思,http://em.21dtv.com/songs/60084493.mkv +李传永-月光情思,http://em.21dtv.com/songs/60066565.mkv +覃春江-月光情人,http://em.21dtv.com/songs/60065428.mkv +许嵩-英国情人,http://em.21dtv.com/songs/60054407.mkv +[Group] +groupName=十六万歌曲MV等 - 60 +马天宇-月光晴朗,http://em.21dtv.com/songs/60056345.mkv +黄鸿升-有感情歌,http://em.21dtv.com/songs/60104850.mkv +齐航-勇敢去闯,http://em.21dtv.com/songs/60120173.mkv +司空雷-勇敢去闯,http://em.21dtv.com/songs/60106673.mkv +正皓玄-勇敢去爱,http://em.21dtv.com/songs/60124176.mkv +斯琴高丽-勇敢去爱,http://em.21dtv.com/songs/60118610.mkv +K ONE-勇敢去爱,http://em.21dtv.com/songs/60054841.mkv +周国贤-摇滚叛徒(演唱会),http://em.21dtv.com/songs/60052269.mkv +胡诺言-一个诺言,http://em.21dtv.com/songs/60052967.mkv +摇滚女王-摇滚女王,http://em.21dtv.com/songs/60131463.mkv +达娃卓玛-月光女神,http://em.21dtv.com/songs/60071481.mkv +S.H.E-月桂女神,http://em.21dtv.com/songs/60056370.mkv +瞿颖-易攻难守,http://em.21dtv.com/songs/60054163.mkv +任妙音-一个女孩,http://em.21dtv.com/songs/60114985.mkv +朱宇-妖怪女孩,http://em.21dtv.com/songs/60065311.mkv +庞晓宇-一个女孩,http://em.21dtv.com/songs/60052970.mkv +南风-一个女孩,http://em.21dtv.com/songs/60052969.mkv +关东-摇滚梦想,http://em.21dtv.com/songs/60133388.mkv +杭娇-月光码头,http://em.21dtv.com/songs/60062432.mkv +JAMES MORRISON-you give me something,http://em.21dtv.com/songs/60006542.mkv +高寒-月光美人,http://em.21dtv.com/songs/60100661.mkv +杨宗纬-月光妈妈,http://em.21dtv.com/songs/60097178.mkv +TANK-阳光美眉,http://em.21dtv.com/songs/60052181.mkv +袁晓明-阳光魅力,http://em.21dtv.com/songs/60126170.mkv +张翠萍-阳光魅力,http://em.21dtv.com/songs/60125533.mkv +李克勤-月光玫瑰(演唱会),http://em.21dtv.com/songs/60056343.mkv +彩贝与海-月光墓地,http://em.21dtv.com/songs/60109347.mkv +李杨飞-月光墓地,http://em.21dtv.com/songs/60086189.mkv +王雪娥-勇敢面对,http://em.21dtv.com/songs/60054840.mkv +三木科-月光漫步,http://em.21dtv.com/songs/60090467.mkv +宋祖英-阳光乐章,http://em.21dtv.com/songs/60052178.mkv +戊道子-阳光旅行(演唱会),http://em.21dtv.com/songs/60067689.mkv +盖鸣晖+吴美英-驿馆怜香,http://em.21dtv.com/songs/60054174.mkv +陈岩-雁过留声,http://em.21dtv.com/songs/60134401.mkv +侯丽娟-阳光路上,http://em.21dtv.com/songs/60120333.mkv +洪禄云+陈水林-阳光路上,http://em.21dtv.com/songs/60084321.mkv +李潮-阳光路上,http://em.21dtv.com/songs/60071401.mkv +黎瑞恩-阳光路上,http://em.21dtv.com/songs/60052180.mkv +阎维文-阳光路上(演唱会),http://em.21dtv.com/songs/60052179.mkv +ELTON JOHN-you gotta love someone,http://em.21dtv.com/songs/60006548.mkv +肖亮-月光恋人,http://em.21dtv.com/songs/60111357.mkv +陈奕迅-一个旅人,http://em.21dtv.com/songs/60086108.mkv +兰卡措-月光恋人,http://em.21dtv.com/songs/60056341.mkv +陈志明-印岗恋情(无原唱),http://em.21dtv.com/songs/60054395.mkv +陈一郎-渔港恋梦(无原唱),http://em.21dtv.com/songs/60055542.mkv +佚名-渔港恋梦(无原唱),http://em.21dtv.com/songs/60044621.mkv +张韶涵-阳光空气,http://em.21dtv.com/songs/60098379.mkv +威利-阳光空气(演唱会),http://em.21dtv.com/songs/60052177.mkv +张弥-应该快乐(无原唱),http://em.21dtv.com/songs/60054549.mkv +快乐帮-摇滚快乐,http://em.21dtv.com/songs/60052268.mkv +梁朝伟-应该看过,http://em.21dtv.com/songs/60054548.mkv +塔拉吉斯-裕固家园,http://em.21dtv.com/songs/60068950.mkv +汤灿-阳光季节,http://em.21dtv.com/songs/60088206.mkv +BRITNEY SPEARS-you got it all,http://em.21dtv.com/songs/60006544.mkv +MIYA-月光海洋,http://em.21dtv.com/songs/60056334.mkv +吴佩慈-夜光航线,http://em.21dtv.com/songs/60052567.mkv +郭富城-以歌会舞,http://em.21dtv.com/songs/60065363.mkv +杨丞琳-勇敢很好,http://em.21dtv.com/songs/60081230.mkv +黄安-月光华华,http://em.21dtv.com/songs/60056340.mkv +网络歌曲-月光花朵,http://em.21dtv.com/songs/60056339.mkv +蜜雪薇琪-萤光蝴蝶,http://em.21dtv.com/songs/60054514.mkv +佚名-一个红蛋,http://em.21dtv.com/songs/60052953.mkv +江蕙-一个红蛋(无原唱),http://em.21dtv.com/songs/60052952.mkv +李圣杰-一根火柴,http://em.21dtv.com/songs/60091302.mkv +林玉英-月光海边,http://em.21dtv.com/songs/60122903.mkv +林志颖-阳光海岸(演唱会)(无原唱),http://em.21dtv.com/songs/60052175.mkv +阿鲁阿卓-云贵高原,http://em.21dtv.com/songs/60126356.mkv +阿鲁阿卓-云贵高原,http://em.21dtv.com/songs/60105460.mkv +陈飞宏-一个狗窝,http://em.21dtv.com/songs/60104575.mkv +谭炜星+本兮-一个故事,http://em.21dtv.com/songs/60080719.mkv +谭炜星-一个故事,http://em.21dtv.com/songs/60079993.mkv +酒二郎-月光姑娘,http://em.21dtv.com/songs/60087089.mkv +张寒-月光姑娘,http://em.21dtv.com/songs/60071480.mkv +齐剑-月光姑娘,http://em.21dtv.com/songs/60065427.mkv +佚名-you give good love,http://em.21dtv.com/songs/60006540.mkv +王薇茜-语感方舟,http://em.21dtv.com/songs/60086176.mkv +蔡黄汝-月光飞行,http://em.21dtv.com/songs/60067757.mkv +COLOR-勇敢飞象,http://em.21dtv.com/songs/60054839.mkv +杨光-杨光飞舞,http://em.21dtv.com/songs/60091388.mkv +郑秀文-萤光粉红,http://em.21dtv.com/songs/60054513.mkv +郑秀文-荧光粉红,http://em.21dtv.com/songs/60054510.mkv +高登-勇敢的心,http://em.21dtv.com/songs/60104611.mkv +于毅-勇敢的心,http://em.21dtv.com/songs/60103865.mkv +周子琰-勇敢的心,http://em.21dtv.com/songs/60097368.mkv +汪峰-勇敢的心,http://em.21dtv.com/songs/60054835.mkv +金志文-勇敢的我,http://em.21dtv.com/songs/60110592.mkv +梁文音-月光地毯,http://em.21dtv.com/songs/60072770.mkv +秀兰玛雅-勇敢的人,http://em.21dtv.com/songs/60054834.mkv +林玉英-勇敢的人(无原唱),http://em.21dtv.com/songs/60054833.mkv +承利-异国大炮,http://em.21dtv.com/songs/60126938.mkv +金娃-一个地方,http://em.21dtv.com/songs/60113023.mkv +佚名-阳光大道,http://em.21dtv.com/songs/60052171.mkv +韦唯-阳关大道(演唱会),http://em.21dtv.com/songs/60052160.mkv +萧正楠-眼光独到,http://em.21dtv.com/songs/60052038.mkv +彭立-勇敢的爱,http://em.21dtv.com/songs/60054828.mkv +李翊君-勇敢的爱,http://em.21dtv.com/songs/60054827.mkv +华语群星-勇敢穿越,http://em.21dtv.com/songs/60115733.mkv +钟镇涛-一个错误,http://em.21dtv.com/songs/60063456.mkv +曾丽夷-渔歌唱晚,http://em.21dtv.com/songs/60055544.mkv +佚名-一个错误,http://em.21dtv.com/songs/60052950.mkv +李玉玺-越过城市,http://em.21dtv.com/songs/60103365.mkv +何坤-有过从前,http://em.21dtv.com/songs/60127734.mkv +李代沫+吴莫愁-阳光传奇,http://em.21dtv.com/songs/60079025.mkv +张也-阳光灿烂,http://em.21dtv.com/songs/60052169.mkv +五月天-摇滚本事,http://em.21dtv.com/songs/60052266.mkv +赵咏华-摇滚芭蕾,http://em.21dtv.com/songs/60089490.mkv +佚名-一根扁担,http://em.21dtv.com/songs/60053129.mkv +SHANIA TWAIN-youve got a way,http://em.21dtv.com/songs/60006626.mkv +张燕-月光爱人,http://em.21dtv.com/songs/60094101.mkv +曾一鸣-月光爱人,http://em.21dtv.com/songs/60086188.mkv +萨顶顶-月光爱人,http://em.21dtv.com/songs/60084491.mkv +李玟-月光爱人,http://em.21dtv.com/songs/60056323.mkv +刘涛-勇敢爱情,http://em.21dtv.com/songs/60079247.mkv +洪佩谊-有关爱情,http://em.21dtv.com/songs/60055135.mkv +陈盈洁-月光暗暝,http://em.21dtv.com/songs/60056324.mkv +李文乐-应该爱了,http://em.21dtv.com/songs/60065371.mkv +佚名-youve got a friend,http://em.21dtv.com/songs/60006625.mkv +C KING-you got a friend,http://em.21dtv.com/songs/60006543.mkv +旺福(小旺福)-摇滚阿伯,http://em.21dtv.com/songs/60115192.mkv +陈珧-缘分走散,http://em.21dtv.com/songs/60056066.mkv +周杰伦-以父之名,http://em.21dtv.com/songs/60054081.mkv +黄小菁+陈文山-缘份注定(无原唱),http://em.21dtv.com/songs/60056095.mkv +吕方-缘份游戏,http://em.21dtv.com/songs/60056094.mkv +青鸟飞鱼-一分一秒,http://em.21dtv.com/songs/60102925.mkv +朴智妍-一分一秒,http://em.21dtv.com/songs/60100879.mkv +王丽达-扬帆远航,http://em.21dtv.com/songs/60102513.mkv +游美灵-越飞越高,http://em.21dtv.com/songs/60102494.mkv +楚童+楚奇-越飞越高,http://em.21dtv.com/songs/60056588.mkv +赵咏华-愈飞愈高,http://em.21dtv.com/songs/60055874.mkv +林宥嘉-越反越爱,http://em.21dtv.com/songs/60068965.mkv +卫东-缘分兄弟,http://em.21dtv.com/songs/60115738.mkv +缘分兄弟-缘分兄弟,http://em.21dtv.com/songs/60110450.mkv +江智民-缘分五月,http://em.21dtv.com/songs/60102434.mkv +大军-有份无缘,http://em.21dtv.com/songs/60079279.mkv +五月-缘分五月,http://em.21dtv.com/songs/60063108.mkv +费翔-以防万一,http://em.21dtv.com/songs/60054080.mkv +周澎-与风同行,http://em.21dtv.com/songs/60111767.mkv +高春义-缘分天空,http://em.21dtv.com/songs/60101004.mkv +孙楠-缘份天空,http://em.21dtv.com/songs/60056090.mkv +孙楠-缘分天空,http://em.21dtv.com/songs/60056064.mkv +孙楠-缘分天空(演唱会),http://em.21dtv.com/songs/60056063.mkv +曲丹-有福同亨,http://em.21dtv.com/songs/60055123.mkv +张本煜-一方天地,http://em.21dtv.com/songs/60132440.mkv +巩汉林+金珠-约法三章,http://em.21dtv.com/songs/60089838.mkv +柏木由纪-夜风の仕业(演唱会),http://em.21dtv.com/songs/60084336.mkv +何润东-一份书信,http://em.21dtv.com/songs/60052935.mkv +彭炽权-岳飞抒怀(戏曲),http://em.21dtv.com/songs/60092694.mkv +杨千嬅-有发生过,http://em.21dtv.com/songs/60055119.mkv +杨千嬅-有发生过(演唱会),http://em.21dtv.com/songs/60055118.mkv +周雅芳-缘份若来(无原唱),http://em.21dtv.com/songs/60021891.mkv +馨梓-一封情书,http://em.21dtv.com/songs/60090313.mkv +邓丽君-一封情书,http://em.21dtv.com/songs/60052940.mkv +智明嘉措-远方情人,http://em.21dtv.com/songs/60056148.mkv +阿福-一份牵挂,http://em.21dtv.com/songs/60052934.mkv +KELIS-young fresh nnew,http://em.21dtv.com/songs/60070424.mkv +罗勋+刘斌-一封家信,http://em.21dtv.com/songs/60052938.mkv +徐鸣泽-一封家书,http://em.21dtv.com/songs/60125584.mkv +陈赫+姚晨+窦骁+叶一云-一封家书,http://em.21dtv.com/songs/60118170.mkv +好妹妹乐队-一封家书,http://em.21dtv.com/songs/60116684.mkv +薰妮-一封家书,http://em.21dtv.com/songs/60099482.mkv +李春波-一封家书,http://em.21dtv.com/songs/60052937.mkv +李代沫-越发寂寞,http://em.21dtv.com/songs/60084485.mkv +春天-又逢佳节,http://em.21dtv.com/songs/60086460.mkv +春天-又逢佳节(演唱会),http://em.21dtv.com/songs/60070188.mkv +索南扎西-远方姑娘,http://em.21dtv.com/songs/60067753.mkv +黄圣依-迎风飞舞,http://em.21dtv.com/songs/60102963.mkv +彭丽媛-一帆风顺,http://em.21dtv.com/songs/60052923.mkv +方婉真+方顺吉-一帆风顺,http://em.21dtv.com/songs/60052922.mkv +罗家宝+曹秀琴-莺凤分飞,http://em.21dtv.com/songs/60054449.mkv +Von Lee-远方的我,http://em.21dtv.com/songs/60132148.mkv +Von Lee-远方的我,http://em.21dtv.com/songs/60130006.mkv +晓月-缘份殿堂,http://em.21dtv.com/songs/60079390.mkv +李丽翎-缘分的事,http://em.21dtv.com/songs/60091297.mkv +王强-远方的人,http://em.21dtv.com/songs/60056144.mkv +雷杰-远方的你,http://em.21dtv.com/songs/60110662.mkv +扎西顿珠-远方的你,http://em.21dtv.com/songs/60056138.mkv +农夫-一夫当关(演唱会),http://em.21dtv.com/songs/60052945.mkv +潘建义-扬帆东方,http://em.21dtv.com/songs/60093862.mkv +周丽淇-要风得风,http://em.21dtv.com/songs/60052364.mkv +彭筱涵-一飞冲天(HD),http://em.21dtv.com/songs/10012787.mkv +谢文雅-一反常态,http://em.21dtv.com/songs/60067696.mkv +杨廷廷-缘分爱情,http://em.21dtv.com/songs/60072767.mkv +邓小龙-缘分爱情,http://em.21dtv.com/songs/60071477.mkv +陈翔-月儿圆圆,http://em.21dtv.com/songs/60067756.mkv +张艺-月儿圆了,http://em.21dtv.com/songs/60121673.mkv +许飞-一二一九,http://em.21dtv.com/songs/60079088.mkv +李逸-云儿云儿,http://em.21dtv.com/songs/60056644.mkv +汪明荃-月儿弯弯(演唱会),http://em.21dtv.com/songs/60079405.mkv +萧潇-月儿弯弯,http://em.21dtv.com/songs/60056290.mkv +童唱-月儿弯弯,http://em.21dtv.com/songs/60056289.mkv +李丽芬-月儿弯弯,http://em.21dtv.com/songs/60056288.mkv +LEE HI-1 2 3 4,http://em.21dtv.com/songs/60062788.mkv +强辩乐团-一二三四,http://em.21dtv.com/songs/60052912.mkv +PLAIN WHITE T'S-一二三四,http://em.21dtv.com/songs/60052911.mkv +孙榕-鱼儿水草,http://em.21dtv.com/songs/60055523.mkv +SOLER-一二三abc,http://em.21dtv.com/songs/60061812.mkv +吴建豪-一二七日,http://em.21dtv.com/songs/60052900.mkv +吴建豪+安七炫-一二七日,http://em.21dtv.com/songs/60052899.mkv +金润雅-Yeon,http://em.21dtv.com/songs/60134357.mkv +李诗缘-牙儿乐乐,http://em.21dtv.com/songs/60068894.mkv +黑龙-鱼儿和水,http://em.21dtv.com/songs/60055519.mkv +5566-月儿光光,http://em.21dtv.com/songs/60056285.mkv +陈思颖-掩耳盗铃(儿歌),http://em.21dtv.com/songs/60090292.mkv +Apink-Yeah,http://em.21dtv.com/songs/60120191.mkv +于志杰-夜店之夜,http://em.21dtv.com/songs/60117532.mkv +黄宗泽-一代宗师,http://em.21dtv.com/songs/60052839.mkv +孙浩雨-夜店之美,http://em.21dtv.com/songs/60110983.mkv +凌志辉-诱敌之计,http://em.21dtv.com/songs/60079317.mkv +卓依婷-雨达之歌,http://em.21dtv.com/songs/60087493.mkv +陈德彰-一点烛光(演唱会),http://em.21dtv.com/songs/60084344.mkv +居山植-园丁之歌,http://em.21dtv.com/songs/60055910.mkv +佚名-一点烛光,http://em.21dtv.com/songs/60052865.mkv +关正杰-一点烛光,http://em.21dtv.com/songs/60052864.mkv +佚名-椰岛之歌,http://em.21dtv.com/songs/60052413.mkv +王建杰-缘的终点,http://em.21dtv.com/songs/60056056.mkv +梁雁翎-一等再等,http://em.21dtv.com/songs/60052847.mkv +乌兰托娅+高山林-遇到真爱,http://em.21dtv.com/songs/60071470.mkv +詹宇琦-雨的愿望,http://em.21dtv.com/songs/60086168.mkv +王杰-有得有失,http://em.21dtv.com/songs/60055103.mkv +狄易达-一冻一热,http://em.21dtv.com/songs/60110370.mkv +叶幼琪-一代艺人(戏曲),http://em.21dtv.com/songs/60092416.mkv +尹光-一代艺人(演唱会),http://em.21dtv.com/songs/60079082.mkv +陈奕迅-一滴眼泪,http://em.21dtv.com/songs/60052854.mkv +刘萱萱-夜的诱惑,http://em.21dtv.com/songs/60099122.mkv +张力超-一点一点,http://em.21dtv.com/songs/60116783.mkv +羽泉-一点一滴(故事情节),http://em.21dtv.com/songs/60101470.mkv +TWINS-一点一滴,http://em.21dtv.com/songs/60092201.mkv +欧得洋-一定一定,http://em.21dtv.com/songs/60079087.mkv +李宇春-一点一点(演唱会),http://em.21dtv.com/songs/60052863.mkv +张卫健-愿打愿挨,http://em.21dtv.com/songs/60056197.mkv +袁小迪-一代枭雄,http://em.21dtv.com/songs/60066516.mkv +胡兵-亚当夏娃,http://em.21dtv.com/songs/60051890.mkv +陈珧-yaoyao的心伤,http://em.21dtv.com/songs/60006446.mkv +尤雅-雨的旋律,http://em.21dtv.com/songs/60055639.mkv +蔡幸娟-雨的旋律,http://em.21dtv.com/songs/60055638.mkv +李圣杰-眼底星空,http://em.21dtv.com/songs/60052035.mkv +吴贞-一朵鲜花,http://em.21dtv.com/songs/60113333.mkv +杨燕-一朵小花,http://em.21dtv.com/songs/60052896.mkv +刘欢-一朵鲜花,http://em.21dtv.com/songs/60052894.mkv +刘德华-影帝无用(演唱会),http://em.21dtv.com/songs/60054532.mkv +欢歌-一朵微笑,http://em.21dtv.com/songs/60113758.mkv +才娜旺姆-云端天堂,http://em.21dtv.com/songs/60119584.mkv +容祖儿-与蝶同眠,http://em.21dtv.com/songs/60055578.mkv +容祖儿-与蝶同眠(演唱会),http://em.21dtv.com/songs/60055577.mkv +李唯枫-you dont know,http://em.21dtv.com/songs/60074183.mkv +EMINEM-you dont know,http://em.21dtv.com/songs/60074182.mkv +凤凰传奇-一代天骄,http://em.21dtv.com/songs/60052838.mkv +李池湘-一代天娇,http://em.21dtv.com/songs/60052837.mkv +李芝芬-雨打桃花,http://em.21dtv.com/songs/60091370.mkv +马珂+梨子-夜的童话,http://em.21dtv.com/songs/60066514.mkv +群星-云淡天高(演唱会),http://em.21dtv.com/songs/60056639.mkv +莫镇贤-约定天国,http://em.21dtv.com/songs/60056256.mkv +花耀飞-原地踏步,http://em.21dtv.com/songs/60084475.mkv +王莹-瑶都神韵,http://em.21dtv.com/songs/60114691.mkv +郭欢-云的诉说,http://em.21dtv.com/songs/60098813.mkv +江美琪-夜的诗人(演唱会),http://em.21dtv.com/songs/60052555.mkv +王可儿-一定是你,http://em.21dtv.com/songs/60115290.mkv +巫启贤-一定是你(演唱会),http://em.21dtv.com/songs/60079084.mkv +吴克群-移动世界,http://em.21dtv.com/songs/60054035.mkv +陈淑桦-云的骚动(无原唱),http://em.21dtv.com/songs/60056640.mkv +邓志驹-夜吊秋喜,http://em.21dtv.com/songs/60052556.mkv +王登雄-缘断情了(无原唱),http://em.21dtv.com/songs/60075587.mkv +佚名-缘断情了,http://em.21dtv.com/songs/60056058.mkv +梁文音-亚当苹果,http://em.21dtv.com/songs/60072681.mkv +岩罕建-约定那天,http://em.21dtv.com/songs/60124832.mkv +DJ舞曲-夜店女皇,http://em.21dtv.com/songs/50000154.mkv +金佩珊-一代女皇,http://em.21dtv.com/songs/60052836.mkv +陈美龄-欲断难断,http://em.21dtv.com/songs/60055817.mkv +恩炀-一对蚂蚱,http://em.21dtv.com/songs/60052889.mkv +温岚-雨的秘密,http://em.21dtv.com/songs/60080292.mkv +佚名-you decorated my life,http://em.21dtv.com/songs/60006530.mkv +佚名-邮递马车,http://em.21dtv.com/songs/60054977.mkv +BRITNEY SPEARS-you drive me carzy,http://em.21dtv.com/songs/60006539.mkv +泽仁伍波-亚丁蓝月,http://em.21dtv.com/songs/60121863.mkv +任贤齐-约定蓝天,http://em.21dtv.com/songs/60056253.mkv +胡琳-野地恋人,http://em.21dtv.com/songs/60052459.mkv +王星-一刀两断,http://em.21dtv.com/songs/60128227.mkv +大哲-一刀两断,http://em.21dtv.com/songs/60115078.mkv +秋裤大叔-一刀两断,http://em.21dtv.com/songs/60108751.mkv +赵小兵-一刀两断,http://em.21dtv.com/songs/60079083.mkv +张雷-一刀两断,http://em.21dtv.com/songs/60072701.mkv +王羽泽-一刀两断,http://em.21dtv.com/songs/60052844.mkv +荒山亮-一刀两断,http://em.21dtv.com/songs/60052843.mkv +陈慧琳-一刀两断,http://em.21dtv.com/songs/60052842.mkv +陈慧琳-一刀两断(演唱会),http://em.21dtv.com/songs/60052841.mkv +张智霖+胡杏儿-一刀了断,http://em.21dtv.com/songs/60052840.mkv +刘惜君-鱼的记忆,http://em.21dtv.com/songs/60116588.mkv +马智宇-缘定今生,http://em.21dtv.com/songs/60131994.mkv +鸿飞-约定今生,http://em.21dtv.com/songs/60112395.mkv +肖磊-缘定今生[替换],http://em.21dtv.com/songs/60100944.mkv +小曲儿-燕都旧事,http://em.21dtv.com/songs/60084320.mkv +陈秀雯+麦子杰-缘订今生,http://em.21dtv.com/songs/60056057.mkv +佚名-一代佳人,http://em.21dtv.com/songs/60052835.mkv +叶欢-一代佳人,http://em.21dtv.com/songs/60052834.mkv +佚名-一代佳人(无原唱),http://em.21dtv.com/songs/60052833.mkv +莫文蔚-一朵金花,http://em.21dtv.com/songs/60093099.mkv +童可可-一段回忆,http://em.21dtv.com/songs/60121985.mkv +六哲-一段回忆,http://em.21dtv.com/songs/60099761.mkv +东学-一定会赢,http://em.21dtv.com/songs/60087238.mkv +黄舒骏-雁渡寒潭(演唱会),http://em.21dtv.com/songs/60052126.mkv +动力火车-夜的黄昏,http://em.21dtv.com/songs/60052554.mkv +孙子涵-约定好的,http://em.21dtv.com/songs/60079402.mkv +亦帆-鱼的后代(演唱会),http://em.21dtv.com/songs/60079325.mkv +施文彬-一代公主,http://em.21dtv.com/songs/60052832.mkv +秦杨-夜店歌声,http://em.21dtv.com/songs/60095829.mkv +潘秀琼-椰岛姑娘,http://em.21dtv.com/songs/60052412.mkv +山野-一定赶来,http://em.21dtv.com/songs/60131373.mkv +陈瑞-有点孤单,http://em.21dtv.com/songs/60055105.mkv +张峰奇-夜的方向,http://em.21dtv.com/songs/60052553.mkv +李翊君-愿赌服输,http://em.21dtv.com/songs/60084481.mkv +那英-愿赌服输,http://em.21dtv.com/songs/60056198.mkv +黄湘怡-愿打服输,http://em.21dtv.com/songs/60056196.mkv +平安-云淡风轻,http://em.21dtv.com/songs/60102179.mkv +胡雯-云淡风轻,http://em.21dtv.com/songs/60079437.mkv +刘威-有点儿多,http://em.21dtv.com/songs/60126639.mkv +叶倩文-驿动的心,http://em.21dtv.com/songs/60115039.mkv +莫旭秋-驿动的心(演唱会),http://em.21dtv.com/songs/60079187.mkv +蔡琴-驿动的心,http://em.21dtv.com/songs/60054173.mkv +白智文-驿动的心,http://em.21dtv.com/songs/60054172.mkv +姜育恒-驿动的心(演唱会),http://em.21dtv.com/songs/60054171.mkv +黄中原-伊达的家,http://em.21dtv.com/songs/60089549.mkv +罗时丰-一滴朝露(无原唱),http://em.21dtv.com/songs/60052848.mkv +朱业晋-一道彩虹,http://em.21dtv.com/songs/60115986.mkv +王诗安-有点不舍,http://em.21dtv.com/songs/60084078.mkv +胡杰夕-夜的悲伤,http://em.21dtv.com/songs/60079056.mkv +炎亚纶-一刀不剪,http://em.21dtv.com/songs/60102505.mkv +刘尊-雨打芭蕉,http://em.21dtv.com/songs/60055637.mkv +周华健-已读不回,http://em.21dtv.com/songs/60110083.mkv +陈零九-已读不回,http://em.21dtv.com/songs/60086135.mkv +贾晓晨-药到病除,http://em.21dtv.com/songs/60079041.mkv +郑智化-烟斗阿兄,http://em.21dtv.com/songs/60051942.mkv +郭欢-云的爱情,http://em.21dtv.com/songs/60071488.mkv +许富凯-一寸真心,http://em.21dtv.com/songs/60104421.mkv +伍俊华-一错再错,http://em.21dtv.com/songs/60071412.mkv +暴林-一错再错,http://em.21dtv.com/songs/60068910.mkv +郑秀文-一错再错,http://em.21dtv.com/songs/60052830.mkv +孙淑媚-一错再错,http://em.21dtv.com/songs/60052829.mkv +牛朝阳-一错再错,http://em.21dtv.com/songs/60052828.mkv +李明翰-一错再错,http://em.21dtv.com/songs/60052827.mkv +蔡小虎-一错再错,http://em.21dtv.com/songs/60052826.mkv +成泉-一场游戏,http://em.21dtv.com/songs/60118602.mkv +费玉清-一场游戏,http://em.21dtv.com/songs/60052807.mkv +白云-鱼翅燕窝,http://em.21dtv.com/songs/60079324.mkv +RICH BOY-鱼翅燕窝,http://em.21dtv.com/songs/60062136.mkv +钟舒祺-一场意外,http://em.21dtv.com/songs/60061810.mkv +晏紫东-愉此一生,http://em.21dtv.com/songs/60129180.mkv +英皇群星-越唱越强,http://em.21dtv.com/songs/60119920.mkv +容祖儿-越唱越强,http://em.21dtv.com/songs/60056586.mkv +容祖儿-越唱越强(演唱会),http://em.21dtv.com/songs/60056585.mkv +荣歌-越宠越坏,http://em.21dtv.com/songs/60079433.mkv +林景雯+马如龙-一次也好,http://em.21dtv.com/songs/60052820.mkv +花爱纶-一次一次,http://em.21dtv.com/songs/60118863.mkv +Kulin-一次一次,http://em.21dtv.com/songs/60115608.mkv +许志安-有此一朝,http://em.21dtv.com/songs/60055102.mkv +吴炜-阴差阳错,http://em.21dtv.com/songs/60054308.mkv +何嘉莉-愈错愈爱(无原唱),http://em.21dtv.com/songs/60055873.mkv +杨炳华-以茶相邀,http://em.21dtv.com/songs/60094555.mkv +HUSH!-异常现象,http://em.21dtv.com/songs/60085129.mkv +谭咏麟-也曾相识,http://em.21dtv.com/songs/60052422.mkv +李克勤+谭咏麟-也曾相识(演唱会),http://em.21dtv.com/songs/60052421.mkv +李翊君-隐藏想念,http://em.21dtv.com/songs/60097438.mkv +佚名-一串项链,http://em.21dtv.com/songs/60052815.mkv +龙千玉-一串项链,http://em.21dtv.com/songs/60052814.mkv +玉面天使-吟唱邂逅,http://em.21dtv.com/songs/60108694.mkv +王进-一场误会,http://em.21dtv.com/songs/60116164.mkv +卫兰-一场误会,http://em.21dtv.com/songs/60052806.mkv +家家-烟草味道,http://em.21dtv.com/songs/60111822.mkv +高夫+冷漠-勇闯天涯,http://em.21dtv.com/songs/60129819.mkv +高夫-勇闯天涯,http://em.21dtv.com/songs/60117388.mkv +吉娃斯杜岚-勇闯天涯(无原唱),http://em.21dtv.com/songs/60054814.mkv +寒雪-又唱天路,http://em.21dtv.com/songs/60070186.mkv +群星-you cant stop me,http://em.21dtv.com/songs/60006527.mkv +冯巩-言传身教,http://em.21dtv.com/songs/60089666.mkv +小曲儿-一唱山河,http://em.21dtv.com/songs/60084343.mkv +艳阳天-又唱山歌,http://em.21dtv.com/songs/60055424.mkv +吴业坤-一场人生,http://em.21dtv.com/songs/60131247.mkv +冈林-夜场情歌,http://em.21dtv.com/songs/60079055.mkv +王晶莹-夜场情歌,http://em.21dtv.com/songs/60065318.mkv +成龙-勇闯前方,http://em.21dtv.com/songs/60054813.mkv +叶启田-缘长情短,http://em.21dtv.com/songs/60056115.mkv +许美静-一场朋友(演唱会),http://em.21dtv.com/songs/60052805.mkv +林心如-洋葱浓汤,http://em.21dtv.com/songs/60052221.mkv +林心如-洋葱农场,http://em.21dtv.com/songs/60088097.mkv +周鹏-一场美梦(演唱会),http://em.21dtv.com/songs/60052802.mkv +誓言-夜长梦多,http://em.21dtv.com/songs/60072692.mkv +马浚伟-夜长梦多,http://em.21dtv.com/songs/60052703.mkv +蓝心湄-夜长梦多,http://em.21dtv.com/songs/60052702.mkv +BEYOND-夜长梦多(演唱会),http://em.21dtv.com/songs/60052701.mkv +灭火器乐团-忧愁恋歌,http://em.21dtv.com/songs/60098611.mkv +灭火器-忧愁恋歌,http://em.21dtv.com/songs/60097296.mkv +大哲-一尘恋歌,http://em.21dtv.com/songs/60079081.mkv +七郎-郁悴ㄟ恋歌,http://em.21dtv.com/songs/60067741.mkv +宋祖英-又唱江南,http://em.21dtv.com/songs/60055422.mkv +马丽-一次就好,http://em.21dtv.com/songs/60130896.mkv +沈腾-一次就好,http://em.21dtv.com/songs/60130536.mkv +杨宗纬-一次就好,http://em.21dtv.com/songs/60116940.mkv +杨宗纬-一次就好,http://em.21dtv.com/songs/60115234.mkv +梁耀安+蒋文端-玉钏进羹,http://em.21dtv.com/songs/60055773.mkv +炎亚纶-一触即发,http://em.21dtv.com/songs/60098612.mkv +双星-迎春接福,http://em.21dtv.com/songs/60079219.mkv +牛欣欣+周张弛+等-迎春接福,http://em.21dtv.com/songs/60065376.mkv +卓依婷-迎春接福,http://em.21dtv.com/songs/60054501.mkv +无鸣+孙鸣杰-迎春接福,http://em.21dtv.com/songs/60054500.mkv +苏春梅-迎春接福,http://em.21dtv.com/songs/60054499.mkv +甘国卫+胡美仪-迎春接福,http://em.21dtv.com/songs/60054498.mkv +张学友-一场好梦,http://em.21dtv.com/songs/60052800.mkv +ROBYN-you cant handle me,http://em.21dtv.com/songs/60006524.mkv +PHIL COLLINS-you cant hurry love,http://em.21dtv.com/songs/60006525.mkv +张莹-油茶花开,http://em.21dtv.com/songs/60100035.mkv +周艳泓-油菜花开,http://em.21dtv.com/songs/60054988.mkv +周传雄-演唱会版,http://em.21dtv.com/songs/60052107.mkv +恶武2KD5-雨 彩虹,http://em.21dtv.com/songs/60079892.mkv +李宵云-原创歌曲,http://em.21dtv.com/songs/60091311.mkv +代小波-一场大雨,http://em.21dtv.com/songs/60052799.mkv +费翔-一场大雨(演唱会),http://em.21dtv.com/songs/60052798.mkv +ICE CUBE-you can do it,http://em.21dtv.com/songs/60082413.mkv +群星-义出必行,http://em.21dtv.com/songs/60054101.mkv +TANK-延长比赛,http://em.21dtv.com/songs/60052009.mkv +ICE CUBE-you could be mine,http://em.21dtv.com/songs/60082415.mkv +佚名-you could be mine,http://em.21dtv.com/songs/60006529.mkv +韩磊-一步之遥,http://em.21dtv.com/songs/60130882.mkv +韩磊-一步之遥,http://em.21dtv.com/songs/60129785.mkv +萧亚轩-拥抱自已,http://em.21dtv.com/songs/60106239.mkv +张瀚元-一步之遥,http://em.21dtv.com/songs/60098358.mkv +陈冠希-拥抱自由,http://em.21dtv.com/songs/60054594.mkv +谢霆锋-一半支烟,http://em.21dtv.com/songs/60052748.mkv +王识贤+叶瑷菱-拥抱着我,http://em.21dtv.com/songs/60054593.mkv +吴大卫+金智娟-拥抱着我(无原唱),http://em.21dtv.com/songs/60054592.mkv +徐仁英-拥抱着你,http://em.21dtv.com/songs/60135279.mkv +林展逸-饮畀燥啦,http://em.21dtv.com/songs/60054358.mkv +尤姿涵-一步珠泪(无原唱),http://em.21dtv.com/songs/60052797.mkv +萧亚轩-拥抱自己,http://em.21dtv.com/songs/60107162.mkv +王林-御匾之歌,http://em.21dtv.com/songs/60128231.mkv +西单女孩-永不止步,http://em.21dtv.com/songs/60063132.mkv +蔡小虎-愈博愈重,http://em.21dtv.com/songs/60095902.mkv +张檬-言不由衷,http://em.21dtv.com/songs/60084318.mkv +蔡小虎-愈搏愈重,http://em.21dtv.com/songs/60055872.mkv +张智霖-言不由衷,http://em.21dtv.com/songs/60052015.mkv +佚名2-言不由衷,http://em.21dtv.com/songs/60052014.mkv +佚名1-言不由衷,http://em.21dtv.com/songs/60052013.mkv +刘德华-言不由衷,http://em.21dtv.com/songs/60052012.mkv +童唱-伊比亚亚,http://em.21dtv.com/songs/60053949.mkv +杨子-原本以为,http://em.21dtv.com/songs/60102367.mkv +姜山-义薄云天,http://em.21dtv.com/songs/60127893.mkv +程亮-一别一生,http://em.21dtv.com/songs/60111331.mkv +许志安-一步一生,http://em.21dtv.com/songs/60052796.mkv +佚名-夜半月娘,http://em.21dtv.com/songs/60052546.mkv +冰块先生-原本幽默,http://em.21dtv.com/songs/60128810.mkv +卫兰-越帮越忙,http://em.21dtv.com/songs/60056584.mkv +方顺吉+方婉真-夜半月亮,http://em.21dtv.com/songs/60052545.mkv +尧尧-拥抱夜光,http://em.21dtv.com/songs/60054589.mkv +佚名-拥抱阳光,http://em.21dtv.com/songs/60054588.mkv +孙淑媚-一步一错,http://em.21dtv.com/songs/60052794.mkv +王闯-永不言败,http://em.21dtv.com/songs/60113888.mkv +张俊-永不言败,http://em.21dtv.com/songs/60110182.mkv +徐华凤-一半一半,http://em.21dtv.com/songs/60091186.mkv +颜雨轩-一遍一遍,http://em.21dtv.com/songs/60090311.mkv +宋熙铭-永不言败,http://em.21dtv.com/songs/60070175.mkv +吴克群-一半一半,http://em.21dtv.com/songs/60063101.mkv +宇儿-一步一步,http://em.21dtv.com/songs/60052790.mkv +TENSION-一步一步,http://em.21dtv.com/songs/60052789.mkv +马天宇-一步一步(演唱会),http://em.21dtv.com/songs/60052788.mkv +宋新妮-一遍一遍,http://em.21dtv.com/songs/60052782.mkv +萧煌奇-一半一半,http://em.21dtv.com/songs/60052747.mkv +金子嫣+麦德罗-摇摆摇摆,http://em.21dtv.com/songs/60052258.mkv +颜小健-一不小心,http://em.21dtv.com/songs/60087041.mkv +张燊悦-一不小心,http://em.21dtv.com/songs/60052783.mkv +夏韶声-摇摆心窝(演唱会),http://em.21dtv.com/songs/60052257.mkv +金玲-夜半相思(无原唱),http://em.21dtv.com/songs/60052543.mkv +谭咏麟-永不想你,http://em.21dtv.com/songs/60093212.mkv +谭咏麟-永不想您(演唱会),http://em.21dtv.com/songs/60054628.mkv +李羿慧-哑巴新娘,http://em.21dtv.com/songs/60051881.mkv +王震辛-夜半星空,http://em.21dtv.com/songs/60108735.mkv +陈瑞-永不相见,http://em.21dtv.com/songs/60099585.mkv +TAYLOR SWIFT-you belong with me,http://em.21dtv.com/songs/60006521.mkv +邬玉洁-永不忘记,http://em.21dtv.com/songs/60108921.mkv +朱孝天-永不停止,http://em.21dtv.com/songs/60054624.mkv +苏夏-一部天涯,http://em.21dtv.com/songs/60088526.mkv +苏夏-一步天涯,http://em.21dtv.com/songs/60062930.mkv +萧贺硕-雨不停歇,http://em.21dtv.com/songs/60055634.mkv +谢霆锋-永不妥协,http://em.21dtv.com/songs/60054626.mkv +尚雯婕-永不停歇,http://em.21dtv.com/songs/60054623.mkv +覃飞宇-一半天堂,http://em.21dtv.com/songs/60052746.mkv +POCO-you better think twice,http://em.21dtv.com/songs/60006523.mkv +王野-永不退缩,http://em.21dtv.com/songs/60134012.mkv +杰歌-永不退缩,http://em.21dtv.com/songs/60132594.mkv +任贤齐-永不退缩,http://em.21dtv.com/songs/60054625.mkv +康康-一拜天地,http://em.21dtv.com/songs/60052737.mkv +张学友-有病呻吟,http://em.21dtv.com/songs/60055099.mkv +林玉英-夜半思情(无原唱),http://em.21dtv.com/songs/60095691.mkv +庄学忠-夜半三更,http://em.21dtv.com/songs/60052542.mkv +吴宗宪-摇摆say good-bye,http://em.21dtv.com/songs/60052251.mkv +谢和弦-拥抱失败,http://em.21dtv.com/songs/60126196.mkv +张敬轩+孙耀威-义不容情(HD演唱会),http://em.21dtv.com/songs/60054100.mkv +陈小云-一把情种,http://em.21dtv.com/songs/60052715.mkv +陈中+董育君-缘薄情深,http://em.21dtv.com/songs/60135894.mkv +陈一郎-夜半琴诗,http://em.21dtv.com/songs/60095965.mkv +黄瑞琪-夜半情诗(演唱会),http://em.21dtv.com/songs/60052541.mkv +张卫健-夜半情人(演唱会),http://em.21dtv.com/songs/60052540.mkv +冯允谦-夜半敲门,http://em.21dtv.com/songs/60071408.mkv +许富凯-鸭霸情歌,http://em.21dtv.com/songs/60123168.mkv +黄乙玲-哑巴情歌,http://em.21dtv.com/songs/60051880.mkv +郭富城-一变倾城,http://em.21dtv.com/songs/60052781.mkv +郭富城-一变倾城(演唱会),http://em.21dtv.com/songs/60052780.mkv +TWINS-一般女生,http://em.21dtv.com/songs/60089576.mkv +TWINS-一半女生,http://em.21dtv.com/songs/60052745.mkv +张萌萌-夜不能寐,http://em.21dtv.com/songs/60089287.mkv +佚名-摇摆女郎,http://em.21dtv.com/songs/60052255.mkv +高进-拥抱难得,http://em.21dtv.com/songs/60127608.mkv +韩红-拥抱明天,http://em.21dtv.com/songs/60054583.mkv +那英-拥抱明天(演唱会),http://em.21dtv.com/songs/60054582.mkv +蔡国庆+林萍+白雪-拥抱明天(演唱会),http://em.21dtv.com/songs/60054581.mkv +李昱和-一杯美酒,http://em.21dtv.com/songs/60127029.mkv +陈俐俐-一杯美酒,http://em.21dtv.com/songs/60118138.mkv +王琳玲-一杯美酒,http://em.21dtv.com/songs/60108711.mkv +刘晶-一杯美酒,http://em.21dtv.com/songs/60103118.mkv +廖昌永-一杯美酒,http://em.21dtv.com/songs/60100004.mkv +AMELIA LILY-you bring me joy,http://em.21dtv.com/songs/60074178.mkv +王宏伟-一杯美酒,http://em.21dtv.com/songs/60070132.mkv +谭晶-一杯美酒,http://em.21dtv.com/songs/60052755.mkv +谭晶-一杯美酒(演唱会),http://em.21dtv.com/songs/60052754.mkv +梁静茹-一百零一,http://em.21dtv.com/songs/60052727.mkv +含瑞-拥抱蓝天,http://em.21dtv.com/songs/60061838.mkv +张兵-一不留神,http://em.21dtv.com/songs/60079079.mkv +朱永飞-一杯老酒,http://em.21dtv.com/songs/60116883.mkv +陈宏斌-一杯老酒,http://em.21dtv.com/songs/60112345.mkv +徐洋-拥抱丽江,http://em.21dtv.com/songs/60091198.mkv +孙燕姿-一百八十度,http://em.21dtv.com/songs/60062963.mkv +文夏-夜半路灯,http://em.21dtv.com/songs/60052534.mkv +余天-夜半路灯,http://em.21dtv.com/songs/60014076.mkv +泽朗多吉-一百零八,http://em.21dtv.com/songs/60052725.mkv +老K-一百零八,http://em.21dtv.com/songs/60014248.mkv +孟飞-一杯苦酒,http://em.21dtv.com/songs/60118508.mkv +戴梦梦-愚不可及,http://em.21dtv.com/songs/60061853.mkv +林忆莲-摇摆口红(无原唱),http://em.21dtv.com/songs/60092870.mkv +高登-一杯咖啡,http://em.21dtv.com/songs/60123379.mkv +江志丰-一杯咖啡,http://em.21dtv.com/songs/60052751.mkv +FABOLOUS-you be killin em,http://em.21dtv.com/songs/60006520.mkv +古慧慧-饮奔佢醉,http://em.21dtv.com/songs/60054357.mkv +SNH48-摇摆节拍,http://em.21dtv.com/songs/60124998.mkv +颜慧萍-一步距离,http://em.21dtv.com/songs/60097120.mkv +陈慧娴-夜半惊魂(演唱会),http://em.21dtv.com/songs/60052533.mkv +张力超-一边肩膀,http://em.21dtv.com/songs/60104109.mkv +林志颖-永不回头,http://em.21dtv.com/songs/60054618.mkv +陈恩跃-拥抱辉煌,http://em.21dtv.com/songs/60135920.mkv +远航组合-拥抱辉煌,http://em.21dtv.com/songs/60135785.mkv +星光组合-拥抱辉煌,http://em.21dtv.com/songs/60135315.mkv +易欣-一笔勾销,http://em.21dtv.com/songs/60052778.mkv +臧天朔-一笔勾销(演唱会),http://em.21dtv.com/songs/60052777.mkv +张国荣-夜半歌声,http://em.21dtv.com/songs/60052529.mkv +杨洪基-夜半歌声,http://em.21dtv.com/songs/60052528.mkv +吕珊-夜半歌声(演唱会),http://em.21dtv.com/songs/60052527.mkv +陈慧娴-夜半歌声(演唱会),http://em.21dtv.com/songs/60052526.mkv +佚名-夜半孤灯,http://em.21dtv.com/songs/60052532.mkv +陈小云-夜半孤灯,http://em.21dtv.com/songs/60052531.mkv +红蔷薇-永不放手,http://em.21dtv.com/songs/60117116.mkv +水木年华-永不放弃,http://em.21dtv.com/songs/60130523.mkv +大张伟-永不放弃,http://em.21dtv.com/songs/60117640.mkv +德龙-永不放弃,http://em.21dtv.com/songs/60079235.mkv +张学友-永不放弃,http://em.21dtv.com/songs/60054616.mkv +谢子歌-永不放弃,http://em.21dtv.com/songs/60054615.mkv +文章-永不放弃,http://em.21dtv.com/songs/60054614.mkv +刘德华+郭富城-永不放弃,http://em.21dtv.com/songs/60054613.mkv +5566-永不放弃,http://em.21dtv.com/songs/60054612.mkv +夏韶声-永不放弃(演唱会),http://em.21dtv.com/songs/60054611.mkv +陈瑞-永不放弃,http://em.21dtv.com/songs/60013266.mkv +田馥甄-余波荡漾,http://em.21dtv.com/songs/60124303.mkv +江淑娜-有伴的心(无原唱),http://em.21dtv.com/songs/60055098.mkv +群星-一步到位(演唱会),http://em.21dtv.com/songs/60052786.mkv +范玮琪-一半的我(演唱会),http://em.21dtv.com/songs/60052743.mkv +佚名-夜半的猫(无原唱),http://em.21dtv.com/songs/60052524.mkv +唐嘉+KIMC+小瑾-右边的爱,http://em.21dtv.com/songs/60055478.mkv +林美美-一半的爱(无原唱),http://em.21dtv.com/songs/60052742.mkv +卫兰-衣不称心,http://em.21dtv.com/songs/60079168.mkv +李赵鹏-永不沉默,http://em.21dtv.com/songs/60119672.mkv +信乐团-永不沉没,http://em.21dtv.com/songs/60101610.mkv +追风少年-一棒成名,http://em.21dtv.com/songs/60052749.mkv +陈文浩-永不变芯,http://em.21dtv.com/songs/60135924.mkv +孟延-永不变心,http://em.21dtv.com/songs/60067725.mkv +梁汉文-一百巴仙(%)爱上你,http://em.21dtv.com/songs/60052720.mkv +何韵诗-与别不同,http://em.21dtv.com/songs/60092265.mkv +金虎-欲罢不能,http://em.21dtv.com/songs/60124586.mkv +潘美辰-欲罢不能,http://em.21dtv.com/songs/60088252.mkv +花儿乐队-摇摆摆伴,http://em.21dtv.com/songs/60088522.mkv +吴宗宪-永保安康,http://em.21dtv.com/songs/60054610.mkv +陈芳语-有爱直说,http://em.21dtv.com/songs/60097226.mkv +郭富城-因爱之名,http://em.21dtv.com/songs/60093350.mkv +戴爱玲-以爱之名,http://em.21dtv.com/songs/60080478.mkv +萧敬腾-以爱之名,http://em.21dtv.com/songs/60071436.mkv +李维嘉-以爱之名,http://em.21dtv.com/songs/60054079.mkv +NO NAME-有爱真好,http://em.21dtv.com/songs/60101600.mkv +陈展鹏+小雪-越爱越勇,http://em.21dtv.com/songs/60056583.mkv +凤娘-越爱越痛,http://em.21dtv.com/songs/60056582.mkv +高胜美-越爱越痛(无原唱),http://em.21dtv.com/songs/60056581.mkv +何洁-越爱越伤,http://em.21dtv.com/songs/60098108.mkv +张杰-越爱越强,http://em.21dtv.com/songs/60126886.mkv +潘越云-又爱又怕(无原唱),http://em.21dtv.com/songs/60055417.mkv +薪羽-越爱越美,http://em.21dtv.com/songs/60056576.mkv +卢薪羽-越爱越美,http://em.21dtv.com/songs/60056575.mkv +区文诗-越爱越紧(演唱会),http://em.21dtv.com/songs/60056574.mkv +曾春年-又爱又恨,http://em.21dtv.com/songs/60079306.mkv +郭富城-越爱越好,http://em.21dtv.com/songs/60056572.mkv +草蜢-又爱又恨,http://em.21dtv.com/songs/60055415.mkv +黎沸挥-越爱越错,http://em.21dtv.com/songs/60056570.mkv +NO NAME-愈爱愈爱,http://em.21dtv.com/songs/60055871.mkv +刘依纯-有爱相随,http://em.21dtv.com/songs/60068940.mkv +林大晋-以爱为名,http://em.21dtv.com/songs/60116042.mkv +林俊旭-以爱为名,http://em.21dtv.com/songs/60102384.mkv +徐良+小凌-以爱为名,http://em.21dtv.com/songs/60084388.mkv +杨雅琳-以爱为名,http://em.21dtv.com/songs/60054078.mkv +胡兵-you are with me,http://em.21dtv.com/songs/60006517.mkv +谢金燕-有爱无胆(无原唱),http://em.21dtv.com/songs/60055095.mkv +彭佳慧-you are the one,http://em.21dtv.com/songs/60006514.mkv +STAR-you are the best,http://em.21dtv.com/songs/60082411.mkv +TWINS-友爱十年,http://em.21dtv.com/songs/60061843.mkv +佚名-you are so beautiful,http://em.21dtv.com/songs/60006513.mkv +莫文蔚-you are so beautiful,http://em.21dtv.com/songs/60006512.mkv +JOE COCKER-you are so beautiful,http://em.21dtv.com/songs/60006511.mkv +周华健-you are so beautiful(演唱会),http://em.21dtv.com/songs/60006510.mkv +张菲-you are so beautiful(演唱会),http://em.21dtv.com/songs/60006509.mkv +杨千嬅+侧田-you are so beautiful(演唱会),http://em.21dtv.com/songs/60006508.mkv +侧田-you are so beautiful(演唱会),http://em.21dtv.com/songs/60006507.mkv +彭坦+春晓-有爱任性,http://em.21dtv.com/songs/60109351.mkv +群星-用爱祈祷,http://em.21dtv.com/songs/60097207.mkv +SUPER7-you are only one,http://em.21dtv.com/songs/60069161.mkv +霍建华-有爱难言(演唱会),http://em.21dtv.com/songs/60055092.mkv +黄凯芹-易爱难收,http://em.21dtv.com/songs/60054162.mkv +MICHAEL JACKSON-you are not alone,http://em.21dtv.com/songs/60006506.mkv +吉克隽逸-游爱民族,http://em.21dtv.com/songs/60117603.mkv +佚名-you are my sunshine,http://em.21dtv.com/songs/60006505.mkv +TWINS-you are my sunshine,http://em.21dtv.com/songs/60006504.mkv +ビング.クロスビー-you are my sunshine(无原唱),http://em.21dtv.com/songs/60006503.mkv +何耀珊-you are my star,http://em.21dtv.com/songs/60006502.mkv +佚名-you are my man,http://em.21dtv.com/songs/60006499.mkv +FT ISLAND-you are my life,http://em.21dtv.com/songs/60082410.mkv +SANTA ESMERALDA-you are my everything,http://em.21dtv.com/songs/60006498.mkv +CALLOWAY-you are my everything,http://em.21dtv.com/songs/60006497.mkv +佚名-you are my destiny,http://em.21dtv.com/songs/60006496.mkv +倪安朹+陈汉典-you are my baby,http://em.21dtv.com/songs/60065733.mkv +#1,http://em.21dtv.com/songs/60006494.mkv +邱淑贞-要爱就爱,http://em.21dtv.com/songs/60088750.mkv +刘虹桦-要爱就爱,http://em.21dtv.com/songs/60052350.mkv +佚名-youre all i need,http://em.21dtv.com/songs/60006605.mkv +SNOW PATROL-youre all i have,http://em.21dtv.com/songs/60082419.mkv +张星唯-与爱共有,http://em.21dtv.com/songs/60122727.mkv +张星唯-与爱共有,http://em.21dtv.com/songs/60114537.mkv +爱乐团-因爱而生,http://em.21dtv.com/songs/60054199.mkv +BOBO-一爱到底,http://em.21dtv.com/songs/60101737.mkv +谭晶-一爱到底,http://em.21dtv.com/songs/60052713.mkv +谭晶-一爱到底(演唱会),http://em.21dtv.com/songs/60052712.mkv +宋嘉其-因爱存在,http://em.21dtv.com/songs/60086140.mkv +林忆莲-与爱长流,http://em.21dtv.com/songs/60055576.mkv +林子祥-友爱长存,http://em.21dtv.com/songs/60055050.mkv +林子祥-友爱长存(演唱会),http://em.21dtv.com/songs/60055049.mkv +周鹏-雅安别怕,http://em.21dtv.com/songs/60078988.mkv +JS-与爱别离,http://em.21dtv.com/songs/60067734.mkv +许志安+张柏芝-要爱便爱,http://em.21dtv.com/songs/60052349.mkv +米线-西藏之恋,http://em.21dtv.com/songs/60084140.mkv +雪域刀妹-西藏之恋,http://em.21dtv.com/songs/60047910.mkv +旺吉达娃-西藏之恋,http://em.21dtv.com/songs/60047909.mkv +糖兄妹-现在再见(演唱会),http://em.21dtv.com/songs/60070034.mkv +陈冠希-心中最爱,http://em.21dtv.com/songs/60050765.mkv +林慧萍-夏在雨中(无原唱),http://em.21dtv.com/songs/60048431.mkv +智明江措-弦子悠悠,http://em.21dtv.com/songs/60017483.mkv +RUBBERBAND-心照一生,http://em.21dtv.com/songs/60093941.mkv +泳儿-心中有数,http://em.21dtv.com/songs/60050762.mkv +林保怡-心中有数,http://em.21dtv.com/songs/60050761.mkv +吴佳佳-心中有你,http://em.21dtv.com/songs/60130177.mkv +张翠萍-心中有你,http://em.21dtv.com/songs/60084256.mkv +刘德华-心只有你,http://em.21dtv.com/songs/60050720.mkv +刘德华-心只有你(演唱会),http://em.21dtv.com/songs/60050718.mkv +吴蕙君-写置眼泪,http://em.21dtv.com/songs/60135019.mkv +何洁-选择原谅,http://em.21dtv.com/songs/60071383.mkv +辉星-星之陨落,http://em.21dtv.com/songs/60051166.mkv +张智霖-笑中有泪,http://em.21dtv.com/songs/60049983.mkv +杨千嬅-笑中有泪,http://em.21dtv.com/songs/60049982.mkv +杨千嬅-笑中有泪(演唱会),http://em.21dtv.com/songs/60049981.mkv +春天-笑逐颜开,http://em.21dtv.com/songs/60087010.mkv +春天-笑逐颜开(演唱会),http://em.21dtv.com/songs/60070069.mkv +童安格-现在以后,http://em.21dtv.com/songs/60048527.mkv +林一峰-向着阳光,http://em.21dtv.com/songs/60066466.mkv +张震岳-先这样吧,http://em.21dtv.com/songs/60080849.mkv +邝美云-心中有爱(无原唱),http://em.21dtv.com/songs/60093251.mkv +张继红-心中有爱,http://em.21dtv.com/songs/60089285.mkv +T ARA-旋转旋转,http://em.21dtv.com/songs/60078963.mkv +超音波-向左向右,http://em.21dtv.com/songs/60101520.mkv +IO乐团-向左向右,http://em.21dtv.com/songs/60072619.mkv +无印良品-相知相拥,http://em.21dtv.com/songs/60048892.mkv +叶凡-相知相识,http://em.21dtv.com/songs/60089716.mkv +韦礼安-心醉心碎,http://em.21dtv.com/songs/60070085.mkv +羽泉-选择牺牲(演唱会),http://em.21dtv.com/songs/60051624.mkv +佚名-相知相守,http://em.21dtv.com/songs/60048890.mkv +对唱-新走西口,http://em.21dtv.com/songs/60099964.mkv +合唱-新走西口,http://em.21dtv.com/songs/60089201.mkv +雷一鸣-寻找幸福,http://em.21dtv.com/songs/60120116.mkv +于子将-夏至未至,http://em.21dtv.com/songs/60133337.mkv +渡辺麻友-小指の微笑み(演唱会),http://em.21dtv.com/songs/60078737.mkv +朱子岩-西藏往事,http://em.21dtv.com/songs/60047907.mkv +王滨-行者无疆,http://em.21dtv.com/songs/60065272.mkv +小庄-学着忘记,http://em.21dtv.com/songs/60051665.mkv +陈小春+A.JORDAN-先走为敬,http://em.21dtv.com/songs/60048463.mkv +赵丹-选择无悔,http://em.21dtv.com/songs/60065292.mkv +花满楼-新走天涯,http://em.21dtv.com/songs/60078878.mkv +德乾旺姆-向着太阳,http://em.21dtv.com/songs/60049360.mkv +巧千金-瞎子听铃,http://em.21dtv.com/songs/60048234.mkv +柴强-选择退出,http://em.21dtv.com/songs/60115247.mkv +乔嘉-选择退出,http://em.21dtv.com/songs/60101875.mkv +弦子-西藏天边,http://em.21dtv.com/songs/60047906.mkv +韩磊-心中所有,http://em.21dtv.com/songs/60099615.mkv +庄鹃瑛-星之所向,http://em.21dtv.com/songs/60133637.mkv +小球(庄鹃瑛)-星之所向,http://em.21dtv.com/songs/60133597.mkv +许嵩-星座书上,http://em.21dtv.com/songs/60051170.mkv +佚名-星之碎片,http://em.21dtv.com/songs/60051164.mkv +张祥洪-选择是错(舞曲版),http://em.21dtv.com/songs/60051623.mkv +陈淑萍-戲子人生,http://em.21dtv.com/songs/60096008.mkv +ALAN-心战 red cliff,http://em.21dtv.com/songs/60050710.mkv +2个女生-旋转圈圈(无原唱),http://em.21dtv.com/songs/60051602.mkv +至上励合-小镇青年,http://em.21dtv.com/songs/60117988.mkv +张迈-寻找青鸟,http://em.21dtv.com/songs/60071394.mkv +格格-西藏情歌,http://em.21dtv.com/songs/60078496.mkv +西域胡杨-心在前方,http://em.21dtv.com/songs/60123155.mkv +林志炫-寻找起点,http://em.21dtv.com/songs/60091467.mkv +徐熙娣-心脏喷血,http://em.21dtv.com/songs/60107747.mkv +童唱-小猪胖胖,http://em.21dtv.com/songs/60049899.mkv +刘佳兴-现在你在,http://em.21dtv.com/songs/60117576.mkv +涂紫凝-卸妆女子,http://em.21dtv.com/songs/60050033.mkv +苏醒-星座女郎(演唱会),http://em.21dtv.com/songs/60101161.mkv +单九希-选择难过,http://em.21dtv.com/songs/60120388.mkv +庞龙-笑着难过,http://em.21dtv.com/songs/60081968.mkv +张彤-心在哪儿,http://em.21dtv.com/songs/60122719.mkv +阿桑古卡-西藏男儿,http://em.21dtv.com/songs/60047905.mkv +麋先生-向着南边,http://em.21dtv.com/songs/60117403.mkv +禇桐羽-寻找梦想,http://em.21dtv.com/songs/60121978.mkv +林慧萍-寻找mr right,http://em.21dtv.com/songs/60051840.mkv +佚名-旋转木马,http://em.21dtv.com/songs/60051601.mkv +乡村二人组-旋转木马,http://em.21dtv.com/songs/60051600.mkv +张冬玲-心中玫瑰,http://em.21dtv.com/songs/60125493.mkv +3T-旋转乐园(演唱会),http://em.21dtv.com/songs/60051597.mkv +叶丽仪-笑着离去,http://em.21dtv.com/songs/60123725.mkv +雷真-寻找李娜,http://em.21dtv.com/songs/60071393.mkv +卓玛-寻找李娜,http://em.21dtv.com/songs/60065299.mkv +张曼-寻找楼兰,http://em.21dtv.com/songs/60106845.mkv +亚东-心在流浪,http://em.21dtv.com/songs/60050701.mkv +杨采妮-笑着流泪,http://em.21dtv.com/songs/60049978.mkv +南拳妈妈-笑着流泪,http://em.21dtv.com/songs/60049977.mkv +动感男孩-笑着离开,http://em.21dtv.com/songs/60094425.mkv +陈奕迅-幸灾乐祸,http://em.21dtv.com/songs/60051430.mkv +陈奕迅-幸灾乐祸(演唱会),http://em.21dtv.com/songs/60051429.mkv +颜婷易兰-行走凉都,http://em.21dtv.com/songs/60110677.mkv +炎亚纶-现在开始,http://em.21dtv.com/songs/60105232.mkv +王宏恩-现在开始,http://em.21dtv.com/songs/60078561.mkv +本兮-现在开始,http://em.21dtv.com/songs/60071305.mkv +侯旭-现在开始(演唱会),http://em.21dtv.com/songs/60048522.mkv +意外知夏-笑着哭泣,http://em.21dtv.com/songs/60061765.mkv +邰正宵+林隆璇+姚可杰-笑着哭了,http://em.21dtv.com/songs/60131870.mkv +邰正宵+林隆璇+姚可杰-笑着哭了,http://em.21dtv.com/songs/60130790.mkv +胜屿-笑着结束,http://em.21dtv.com/songs/60116204.mkv +张清芳-选择结束,http://em.21dtv.com/songs/60051620.mkv +陈国强-选择坚强,http://em.21dtv.com/songs/60119008.mkv +李沛玮-学着寂寞,http://em.21dtv.com/songs/60071385.mkv +张腾-下载寂寞,http://em.21dtv.com/songs/60048353.mkv +白安-寻找精灵,http://em.21dtv.com/songs/60104336.mkv +朱永飞-新祝酒歌,http://em.21dtv.com/songs/60129216.mkv +李静-新祝酒歌,http://em.21dtv.com/songs/60050991.mkv +马蹄帮乐团+迪克牛仔-寻找恒星,http://em.21dtv.com/songs/60126451.mkv +Damiano+金南珠-现在很甜,http://em.21dtv.com/songs/60115572.mkv +大力-笑着怀念,http://em.21dtv.com/songs/60128940.mkv +高明骏-现在回家,http://em.21dtv.com/songs/60048519.mkv +BLACK BOX-寻找黑盒,http://em.21dtv.com/songs/60051845.mkv +孙子涵-想做回bad boy,http://em.21dtv.com/songs/60084204.mkv +来国庆-心在高原,http://em.21dtv.com/songs/60062555.mkv +佚名-心在故乡,http://em.21dtv.com/songs/60050699.mkv +陶喆-小镇姑娘,http://em.21dtv.com/songs/60128560.mkv +羽田-小镇姑娘,http://em.21dtv.com/songs/60128314.mkv +胡彦斌-小镇姑娘,http://em.21dtv.com/songs/60087000.mkv +陶喆-小镇姑娘,http://em.21dtv.com/songs/60049897.mkv +陶喆-小镇姑娘(演唱会),http://em.21dtv.com/songs/60049896.mkv +费玉清-西子姑娘,http://em.21dtv.com/songs/60047954.mkv +拉毛王旭-西藏姑娘,http://em.21dtv.com/songs/60047904.mkv +子烽-新中国龙,http://em.21dtv.com/songs/60084236.mkv +上明+简美雀-心在港岸,http://em.21dtv.com/songs/60078798.mkv +林忆莲-心在飞翔,http://em.21dtv.com/songs/60091451.mkv +张冬玲-心在飞翔(演唱会),http://em.21dtv.com/songs/60050698.mkv +刀郎-雪中飞舞,http://em.21dtv.com/songs/60089669.mkv +任丁-笑着分手,http://em.21dtv.com/songs/60078746.mkv +7朵花-笑着放手,http://em.21dtv.com/songs/60049972.mkv +张新海-选择放弃,http://em.21dtv.com/songs/60081754.mkv +张志良-心中的星,http://em.21dtv.com/songs/60086046.mkv +仲维军-心中的心,http://em.21dtv.com/songs/60050750.mkv +彭佳慧-现在的我,http://em.21dtv.com/songs/60128007.mkv +千童+唯一燕-心中的唯,http://em.21dtv.com/songs/60067661.mkv +王晶-现在的我,http://em.21dtv.com/songs/60048516.mkv +剑气书香-心中的她,http://em.21dtv.com/songs/60110050.mkv +孙维良-心中的她(演唱会),http://em.21dtv.com/songs/60067660.mkv +庭竹-现在的你,http://em.21dtv.com/songs/60048513.mkv +洪煜祺-笑着掉泪,http://em.21dtv.com/songs/60135497.mkv +陈冠希-信者得救,http://em.21dtv.com/songs/60093384.mkv +刚辉-心在等候,http://em.21dtv.com/songs/60050697.mkv +卞凯-心中的歌,http://em.21dtv.com/songs/60117596.mkv +阎维文-心中的歌,http://em.21dtv.com/songs/60117304.mkv +马艳-心中的歌,http://em.21dtv.com/songs/60078801.mkv +草蜢-心中的歌,http://em.21dtv.com/songs/60050729.mkv +草蜢-心中的歌(演唱会),http://em.21dtv.com/songs/60050728.mkv +张杰-雪中的angel(演唱会),http://em.21dtv.com/songs/60051766.mkv +郑秀文-信者得爱,http://em.21dtv.com/songs/60051028.mkv +郑秀文+MC仁-信者得爱,http://em.21dtv.com/songs/60051027.mkv +忢訫-心在草原,http://em.21dtv.com/songs/60126923.mkv +张馨戈-馨之禅音,http://em.21dtv.com/songs/60078880.mkv +许哲佩-旋转餐厅,http://em.21dtv.com/songs/60092050.mkv +陈坤-选择出色,http://em.21dtv.com/songs/60068888.mkv +宠静-西藏传说,http://em.21dtv.com/songs/60047901.mkv +佩希-选择沉默,http://em.21dtv.com/songs/60120318.mkv +徐英恩-寻找初恋,http://em.21dtv.com/songs/60078985.mkv +佚名-现在才懂(无原唱),http://em.21dtv.com/songs/60048509.mkv +公主驾到-心中城堡,http://em.21dtv.com/songs/60123643.mkv +张祥洪-心照不宣,http://em.21dtv.com/songs/60084253.mkv +许志安-心照不宣,http://em.21dtv.com/songs/60068864.mkv +王羚柔-现在不哭,http://em.21dtv.com/songs/60048508.mkv +关淑怡-现在爱我,http://em.21dtv.com/songs/60048507.mkv +晓月-心在爱你,http://em.21dtv.com/songs/60102287.mkv +萧亚轩-笑着爱你,http://em.21dtv.com/songs/60049971.mkv +邓丽君-逍遥自在,http://em.21dtv.com/songs/60126252.mkv +佚名-逍遥自在(无原唱),http://em.21dtv.com/songs/60049429.mkv +樱子-雪月之翼,http://em.21dtv.com/songs/60095312.mkv +廖世俭-新游子吟,http://em.21dtv.com/songs/60084235.mkv +妩媚柔情-相约枣香,http://em.21dtv.com/songs/60110123.mkv +张韶涵-幸运之吻,http://em.21dtv.com/songs/60051428.mkv +游鸿明-许愿之丘,http://em.21dtv.com/songs/60110353.mkv +力道-夏雨之恋,http://em.21dtv.com/songs/60133423.mkv +许佳慧-盱眙之恋,http://em.21dtv.com/songs/60070104.mkv +张学友-夕阳醉了,http://em.21dtv.com/songs/60047878.mkv +张学友-夕阳醉了(演唱会),http://em.21dtv.com/songs/60047877.mkv +藏A组合-雪域之花,http://em.21dtv.com/songs/60071392.mkv +何韵诗-夕阳之歌,http://em.21dtv.com/songs/60109968.mkv +群星-夕阳之歌,http://em.21dtv.com/songs/60097140.mkv +容中尔甲-雪域之光,http://em.21dtv.com/songs/60051761.mkv +容中尔甲-雪域之光(演唱会),http://em.21dtv.com/songs/60051760.mkv +梅艳芳-夕阳之歌(演唱会),http://em.21dtv.com/songs/60047876.mkv +凤凰传奇-雄鹰展翅,http://em.21dtv.com/songs/60110870.mkv +王晓娟-相约张北,http://em.21dtv.com/songs/60086005.mkv +a 乐团-校园夜雨,http://em.21dtv.com/songs/60098004.mkv +朱天毅-像鹰一样,http://em.21dtv.com/songs/60097463.mkv +倪雅丰-相约宜兴,http://em.21dtv.com/songs/60081369.mkv +C ALLSTAR-新预言书,http://em.21dtv.com/songs/60065261.mkv +谢三宝-湘雨有情,http://em.21dtv.com/songs/60127399.mkv +李志和-湘雨有情,http://em.21dtv.com/songs/60127027.mkv +林子娟-新雨夜花(无原唱),http://em.21dtv.com/songs/60050983.mkv +陈星-相遇以后,http://em.21dtv.com/songs/60048875.mkv +陈物华-雪域月光,http://em.21dtv.com/songs/60127561.mkv +和田裕美-雪映移城,http://em.21dtv.com/songs/60051750.mkv +索朗扎西-相约西藏,http://em.21dtv.com/songs/60072609.mkv +陈洁灵-星夜星座(演唱会),http://em.21dtv.com/songs/60051148.mkv +魏语诺-星语星愿,http://em.21dtv.com/songs/60126457.mkv +魏语诺-星语心愿,http://em.21dtv.com/songs/60124729.mkv +陈佳一+杨小曼-小羊小羊,http://em.21dtv.com/songs/60118136.mkv +位丽辉-相约兴亚,http://em.21dtv.com/songs/60105579.mkv +杨谨-星语心愿,http://em.21dtv.com/songs/60080030.mkv +卓依婷-星语心愿,http://em.21dtv.com/songs/60051153.mkv +张柏芝-星语心愿,http://em.21dtv.com/songs/60051152.mkv +任贤齐-星语心愿(演唱会),http://em.21dtv.com/songs/60051151.mkv +黄乙玲-小雨小雨,http://em.21dtv.com/songs/60049892.mkv +詹曼铃-相依相偎(无原唱),http://em.21dtv.com/songs/60048867.mkv +田田+林浩威-相约相守,http://em.21dtv.com/songs/60132755.mkv +林浩威+田田-相约相守,http://em.21dtv.com/songs/60132622.mkv +李潮-乡音乡情,http://em.21dtv.com/songs/60071306.mkv +刘斌-乡音乡情,http://em.21dtv.com/songs/60065179.mkv +刘德华+陈嘉露-相依相恋,http://em.21dtv.com/songs/60048866.mkv +陈洁灵-星月星辰,http://em.21dtv.com/songs/60093481.mkv +陈洁仪-星夜星辰,http://em.21dtv.com/songs/60093480.mkv +罗文-星夜星辰,http://em.21dtv.com/songs/60093028.mkv +佚名-星夜星尘,http://em.21dtv.com/songs/60051147.mkv +罗文-星夜星尘,http://em.21dtv.com/songs/60051146.mkv +刘德华-星夜星尘,http://em.21dtv.com/songs/60051145.mkv +陈洁仪-星夜星尘(演唱会),http://em.21dtv.com/songs/60051144.mkv +陈洁灵-星夜星尘(演唱会),http://em.21dtv.com/songs/60051143.mkv +庄学忠-夕阳西沉,http://em.21dtv.com/songs/60047874.mkv +佚名-夕阳西沉,http://em.21dtv.com/songs/60047873.mkv +余天-夕阳西沉(无原唱),http://em.21dtv.com/songs/60047872.mkv +赵鑫-信以为真,http://em.21dtv.com/songs/60124530.mkv +羽泉+尚雯婕-信以为真,http://em.21dtv.com/songs/60051025.mkv +刘德华-下雨晚上,http://em.21dtv.com/songs/60048352.mkv +谭咏麟-下雨晚上(演唱会),http://em.21dtv.com/songs/60048351.mkv +何中华-逍遥无穷,http://em.21dtv.com/songs/60087299.mkv +刘依纯-想要问你,http://em.21dtv.com/songs/60049281.mkv +陈小春+郑伊健+谢天华+钱嘉乐+林晓峰-相依为命,http://em.21dtv.com/songs/60114207.mkv +袁小迪-相依为命,http://em.21dtv.com/songs/60048864.mkv +陈小春-相依为命,http://em.21dtv.com/songs/60048863.mkv +伍佰-夏夜晚风(演唱会),http://em.21dtv.com/songs/60048425.mkv +周蕙-相遇太早,http://em.21dtv.com/songs/60099887.mkv +苏永康-相遇太早,http://em.21dtv.com/songs/60048874.mkv +佚名-相遇太早(无原唱),http://em.21dtv.com/songs/60048873.mkv +格桑梅朵-雪域踢蹋,http://em.21dtv.com/songs/60051759.mkv +李雨伦-相遇太美,http://em.21dtv.com/songs/60129255.mkv +佚名-相约太姥,http://em.21dtv.com/songs/60048885.mkv +郑俊峰-相约通化,http://em.21dtv.com/songs/60134298.mkv +燕尾蝶-星月踏歌,http://em.21dtv.com/songs/60125891.mkv +苏诗丁-想要Ta,http://em.21dtv.com/songs/60134170.mkv +林欣彤-幸运是我,http://em.21dtv.com/songs/60125784.mkv +罗文-幸运是我,http://em.21dtv.com/songs/60051424.mkv +郑秀文-幸运是我(演唱会),http://em.21dtv.com/songs/60051423.mkv +黎瑞恩-幸运是我(演唱会),http://em.21dtv.com/songs/60051422.mkv +叶顺有-相遇似雾,http://em.21dtv.com/songs/60048871.mkv +望海高歌-心已伤透,http://em.21dtv.com/songs/60115210.mkv +陈苑淇-幸运水晶,http://em.21dtv.com/songs/60051425.mkv +谭晶-新映山红,http://em.21dtv.com/songs/60134238.mkv +凌云-星月神话,http://em.21dtv.com/songs/60098130.mkv +谭晶-新映山红,http://em.21dtv.com/songs/60086053.mkv +金莎-星月神话,http://em.21dtv.com/songs/60051160.mkv +陈冠希-夏夜神话,http://em.21dtv.com/songs/60048424.mkv +张韶涵-写一首歌,http://em.21dtv.com/songs/60094506.mkv +张靓颖-写一首歌,http://em.21dtv.com/songs/60087850.mkv +李秋泽-写一首歌,http://em.21dtv.com/songs/60081554.mkv +林志炫-写一首歌(演唱会),http://em.21dtv.com/songs/60078750.mkv +袁媛-写一首歌(演唱会),http://em.21dtv.com/songs/60063327.mkv +张爽-写一首歌,http://em.21dtv.com/songs/60050018.mkv +顺子-写一首歌,http://em.21dtv.com/songs/60050017.mkv +郑中基-像一首歌,http://em.21dtv.com/songs/60049417.mkv +徐小凤-逍遥四方,http://em.21dtv.com/songs/60092713.mkv +庄心妍-心有所爱,http://em.21dtv.com/songs/60084250.mkv +谭艳-需要人陪,http://em.21dtv.com/songs/60119986.mkv +王力宏-需要人陪,http://em.21dtv.com/songs/60051550.mkv +杭宏-相约如梦,http://em.21dtv.com/songs/60048884.mkv +刘欢-相约如梦(演唱会),http://em.21dtv.com/songs/60048883.mkv +安东阳-星月情缘,http://em.21dtv.com/songs/60087677.mkv +晓依-雪域情殇,http://em.21dtv.com/songs/60115968.mkv +音乐走廊+歌一生-雪域情殇,http://em.21dtv.com/songs/60109741.mkv +王洋-雪夜情殇,http://em.21dtv.com/songs/60105247.mkv +明道+许孟哲-寻友启示,http://em.21dtv.com/songs/60051832.mkv +于海涛-星月情怀,http://em.21dtv.com/songs/60131147.mkv +含月-星月情话,http://em.21dtv.com/songs/60100788.mkv +游美灵-雪域情歌,http://em.21dtv.com/songs/60133953.mkv +赵星宇-香烟情歌,http://em.21dtv.com/songs/60118075.mkv +阿斯根+老猫-雪域情歌,http://em.21dtv.com/songs/60109684.mkv +老猫+阿斯根-雪域情歌,http://em.21dtv.com/songs/60108815.mkv +欧莉莲-西域情歌,http://em.21dtv.com/songs/60084141.mkv +游美灵-雪域情歌,http://em.21dtv.com/songs/60071391.mkv +李俊雨-炫熠青春,http://em.21dtv.com/songs/60115217.mkv +张学友-稀有品种,http://em.21dtv.com/songs/60048039.mkv +阳杰-细雨飘飘,http://em.21dtv.com/songs/60103646.mkv +傲艺-细雨飘飘,http://em.21dtv.com/songs/60071302.mkv +甄妮-心要漂亮,http://em.21dtv.com/songs/60093012.mkv +汪伟+依蓉儿-相约傩乡,http://em.21dtv.com/songs/60130529.mkv +蔡黄汝-幸运女神,http://em.21dtv.com/songs/60051421.mkv +牛奶咖啡-信仰年轻,http://em.21dtv.com/songs/60097352.mkv +贾富营-需要你陪,http://em.21dtv.com/songs/60127434.mkv +望海高歌-需要你陪,http://em.21dtv.com/songs/60117793.mkv +波拉-西域明珠,http://em.21dtv.com/songs/60101131.mkv +梁静茹-下一秒钟,http://em.21dtv.com/songs/60048319.mkv +秦海璐-逍遥漫游,http://em.21dtv.com/songs/60078674.mkv +陈思思-相约明天,http://em.21dtv.com/songs/60089521.mkv +4MEN-想要抹去,http://em.21dtv.com/songs/60104647.mkv +李晓兰-小雨漫飘,http://em.21dtv.com/songs/60094936.mkv +流苏-小雨漫飘,http://em.21dtv.com/songs/60086999.mkv +子夕-相遇苗岭,http://em.21dtv.com/songs/60080880.mkv +诺恩吉娅组-相约美丽(演唱会),http://em.21dtv.com/songs/60070044.mkv +郑秀文-炫耀美丽,http://em.21dtv.com/songs/60051628.mkv +降央卓玛-雪域名城,http://em.21dtv.com/songs/60089537.mkv +林峰-心有灵犀,http://em.21dtv.com/songs/60108624.mkv +熊天平-心有灵犀,http://em.21dtv.com/songs/60050677.mkv +李俊男-心有灵犀,http://em.21dtv.com/songs/60050676.mkv +陈展鹏+小雪-心有灵犀,http://em.21dtv.com/songs/60050675.mkv +韩佳男+邓旭芳-相约乐山,http://em.21dtv.com/songs/60093605.mkv +郭富城-幸运铃声,http://em.21dtv.com/songs/60051420.mkv +古巨基-幸运铃声,http://em.21dtv.com/songs/60051419.mkv +李国祥-夕阳路上,http://em.21dtv.com/songs/60047867.mkv +谢安琪-悬崖勒马,http://em.21dtv.com/songs/60078962.mkv +火红-乡音嘹亮,http://em.21dtv.com/songs/60112090.mkv +陈夏莲-星夜泪痕,http://em.21dtv.com/songs/60135905.mkv +萧亚轩-校园乐会,http://em.21dtv.com/songs/60093107.mkv +邓丽君-星月泪痕,http://em.21dtv.com/songs/60051159.mkv +杨子一-雪域恋歌,http://em.21dtv.com/songs/60065296.mkv +龙姬-相约两当,http://em.21dtv.com/songs/60118233.mkv +陈楚生-西涌客栈,http://em.21dtv.com/songs/60080451.mkv +朱文-乡音铿锵,http://em.21dtv.com/songs/60048582.mkv +杜德伟-想要快乐,http://em.21dtv.com/songs/60086014.mkv +乌兰托娅-相约快乐,http://em.21dtv.com/songs/60068831.mkv +佚名-新营囝仔,http://em.21dtv.com/songs/60050981.mkv +次真降措+官确嘉措-雪域家园,http://em.21dtv.com/songs/60051753.mkv +陈思安-心已经碎,http://em.21dtv.com/songs/60078796.mkv +阿华-许愿精灵,http://em.21dtv.com/songs/60078960.mkv +范晓萱+王英州-相约九九,http://em.21dtv.com/songs/60048882.mkv +佚名-新忧旧愁,http://em.21dtv.com/songs/60050982.mkv +王菲+那英-相约九八(演唱会),http://em.21dtv.com/songs/60048881.mkv +符丽莉-相约海西,http://em.21dtv.com/songs/60071314.mkv +MIS-想要回我,http://em.21dtv.com/songs/60123506.mkv +张梦弘-夕阳和海,http://em.21dtv.com/songs/60107719.mkv +安东阳-夕阳黄昏,http://em.21dtv.com/songs/60099199.mkv +刘子琪-相约高原,http://em.21dtv.com/songs/60127764.mkv +阿斯根-雪域高原,http://em.21dtv.com/songs/60078978.mkv +曾敏-雪域高原,http://em.21dtv.com/songs/60063351.mkv +炎亚纶-下一个我,http://em.21dtv.com/songs/60048315.mkv +徐怀钰-想一个他,http://em.21dtv.com/songs/60091194.mkv +卢广仲-校园歌手,http://em.21dtv.com/songs/60071334.mkv +洪卓立-想一个人,http://em.21dtv.com/songs/60066464.mkv +张惠妹-下一个人,http://em.21dtv.com/songs/60048313.mkv +海水-心仪姑娘,http://em.21dtv.com/songs/60119773.mkv +索南扎西-相约甘南,http://em.21dtv.com/songs/60099439.mkv +扎西-雪域姑娘,http://em.21dtv.com/songs/60089894.mkv +佚名-想一个你(无原唱),http://em.21dtv.com/songs/60049285.mkv +佚名-香烟姑娘,http://em.21dtv.com/songs/60048956.mkv +时翔云-下一个梦,http://em.21dtv.com/songs/60113557.mkv +韩红-雪域光芒,http://em.21dtv.com/songs/60051751.mkv +徐秋菊-新月光光,http://em.21dtv.com/songs/60050988.mkv +苏芮+钟镇涛-新月格格,http://em.21dtv.com/songs/60050987.mkv +周辰希-下一分钟,http://em.21dtv.com/songs/60084159.mkv +温兆伦-幸运福星,http://em.21dtv.com/songs/60051416.mkv +阳一-协议分手,http://em.21dtv.com/songs/60089511.mkv +齐秦-协议分手,http://em.21dtv.com/songs/60049986.mkv +水木年华-心有繁华,http://em.21dtv.com/songs/60124185.mkv +TFBOYS-幸运符号,http://em.21dtv.com/songs/60103826.mkv +虞笙-向远方,http://em.21dtv.com/songs/60063296.mkv +廖昌永-行愿峨眉,http://em.21dtv.com/songs/60078897.mkv +邓海-相约儋州,http://em.21dtv.com/songs/60128449.mkv +李佩玲-心有独钟,http://em.21dtv.com/songs/60124056.mkv +陈晓东-心有独钟,http://em.21dtv.com/songs/60050674.mkv +陈晓东-心有独钟(演唱会),http://em.21dtv.com/songs/60050673.mkv +陈予新-稀有动物,http://em.21dtv.com/songs/60048038.mkv +黄征-幸运地图(演唱会),http://em.21dtv.com/songs/60051414.mkv +吴宗宪-幸运的人,http://em.21dtv.com/songs/60051412.mkv +吴辰君-心已点燃(无原唱),http://em.21dtv.com/songs/60050665.mkv +郭顶-幸运大门,http://em.21dtv.com/songs/60088794.mkv +青春大卫-希亚的歌,http://em.21dtv.com/songs/60104583.mkv +语录-雪域巅峰,http://em.21dtv.com/songs/60112241.mkv +钟伟-小雨的爱,http://em.21dtv.com/songs/60049885.mkv +紫琴-下一场雨,http://em.21dtv.com/songs/60084158.mkv +佚名-胸有朝阳,http://em.21dtv.com/songs/60051479.mkv +郭经纬-薰衣草香,http://em.21dtv.com/songs/60105434.mkv +王莹-相约春天,http://em.21dtv.com/songs/60078595.mkv +文博-相约春天,http://em.21dtv.com/songs/60071313.mkv +邓超-轩辕传奇,http://em.21dtv.com/songs/60070106.mkv +吕薇-校园春秋,http://em.21dtv.com/songs/60049905.mkv +群星-喜有此理,http://em.21dtv.com/songs/60048189.mkv +黄飞云-相约陈江,http://em.21dtv.com/songs/60108188.mkv +CHRIS-星野残红,http://em.21dtv.com/songs/60095371.mkv +郑咏-细雨长歌,http://em.21dtv.com/songs/60131882.mkv +包贝尔-小样别跑,http://em.21dtv.com/songs/60127785.mkv +扎西尼玛-相约巴拉,http://em.21dtv.com/songs/60068830.mkv +凤凰传奇-相约北京,http://em.21dtv.com/songs/60048879.mkv +连诗雅-血一般红,http://em.21dtv.com/songs/60126250.mkv +连诗雅-血一般红,http://em.21dtv.com/songs/60120986.mkv +罗逻圣-相约爱情,http://em.21dtv.com/songs/60107116.mkv +范逸臣-信仰爱情,http://em.21dtv.com/songs/60051023.mkv +言承旭-想要爱妳,http://em.21dtv.com/songs/60092046.mkv +言承旭-想要爱你,http://em.21dtv.com/songs/60049269.mkv +许嵩-想象之中,http://em.21dtv.com/songs/60049262.mkv +李魏西-想象之外,http://em.21dtv.com/songs/60070049.mkv +小肥-新秀之师,http://em.21dtv.com/songs/60081211.mkv +蒋思思-新雪中情,http://em.21dtv.com/songs/60117183.mkv +王又萱-星星筑梦,http://em.21dtv.com/songs/60135538.mkv +高登-星星之恋,http://em.21dtv.com/songs/60104614.mkv +千百惠-相信自己,http://em.21dtv.com/songs/60087442.mkv +苏晴-相信自己,http://em.21dtv.com/songs/60084180.mkv +刘向圆-相信自己,http://em.21dtv.com/songs/60078592.mkv +赵本水-相信自己(演唱会),http://em.21dtv.com/songs/60066460.mkv +罗中旭-相信自己,http://em.21dtv.com/songs/60048862.mkv +领航者乐队-相信自己,http://em.21dtv.com/songs/60048861.mkv +黄雅珉-相信自己,http://em.21dtv.com/songs/60048860.mkv +零点乐队-相信自己(演唱会),http://em.21dtv.com/songs/60048859.mkv +江若琳-星星之火,http://em.21dtv.com/songs/60129329.mkv +S.H.E-星星之火,http://em.21dtv.com/songs/60051125.mkv +苏打绿-嬉戏之后,http://em.21dtv.com/songs/60048059.mkv +王钧+张姚-学习之歌,http://em.21dtv.com/songs/60086071.mkv +陈恩跃-星星之歌,http://em.21dtv.com/songs/60083966.mkv +DK金大为+汤薇恩-相信真爱,http://em.21dtv.com/songs/60131056.mkv +XY兄弟-小小演员,http://em.21dtv.com/songs/60130011.mkv +甲子蕙-小心翼翼(无原唱),http://em.21dtv.com/songs/60049843.mkv +183CLUB+许孟哲-相信永远,http://em.21dtv.com/songs/60048858.mkv +阿良-小小愿望,http://em.21dtv.com/songs/60078735.mkv +徐立-羞香月色,http://em.21dtv.com/songs/60078956.mkv +王菀之-小心易碎,http://em.21dtv.com/songs/60049842.mkv +王菀之-小心易碎(演唱会),http://em.21dtv.com/songs/60049841.mkv +枫舞+相容-香香伊人,http://em.21dtv.com/songs/60132626.mkv +李根剑-谢谢有你,http://em.21dtv.com/songs/60129232.mkv +蒋大红-谢谢有你,http://em.21dtv.com/songs/60106249.mkv +蔡淳佳-星星眼睛,http://em.21dtv.com/songs/60051123.mkv +张宇-喜新厌旧,http://em.21dtv.com/songs/60048182.mkv +MC-谢谢哑虎,http://em.21dtv.com/songs/60087205.mkv +MC HOTDOG-谢谢哑唬,http://em.21dtv.com/songs/60050089.mkv +王志新-心向远方,http://em.21dtv.com/songs/60104310.mkv +张莹-相信远方,http://em.21dtv.com/songs/60091150.mkv +王如华-小小心愿,http://em.21dtv.com/songs/60122994.mkv +陈奕迅-相信相依,http://em.21dtv.com/songs/60110628.mkv +UN1-相信信仰,http://em.21dtv.com/songs/60107451.mkv +钟嘉欣-心心相印,http://em.21dtv.com/songs/60093373.mkv +周璇+姚敏-星心相印,http://em.21dtv.com/songs/60051102.mkv +佚名-星心相印,http://em.21dtv.com/songs/60051101.mkv +费玉清-星心相印,http://em.21dtv.com/songs/60051100.mkv +方伊琪-星心相印(演唱会),http://em.21dtv.com/songs/60051099.mkv +刘捷-心星相映,http://em.21dtv.com/songs/60050648.mkv +周冰倩-心心相印,http://em.21dtv.com/songs/60050647.mkv +王心凌-心心相印(演唱会),http://em.21dtv.com/songs/60050646.mkv +佚名-相信相依(无原唱),http://em.21dtv.com/songs/60048857.mkv +崔子格-小心小心,http://em.21dtv.com/songs/60129026.mkv +凌玲-心心相系,http://em.21dtv.com/songs/60114412.mkv +OK绷-小小星星,http://em.21dtv.com/songs/60085771.mkv +向玲玲-欣欣向荣,http://em.21dtv.com/songs/60084228.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-欣欣向荣,http://em.21dtv.com/songs/60078808.mkv +旺福乐团-夏夕夏景,http://em.21dtv.com/songs/60048418.mkv +卓依婷-小小幸福,http://em.21dtv.com/songs/60065220.mkv +张玉华-小小幸福,http://em.21dtv.com/songs/60049828.mkv +石文-小小幸福,http://em.21dtv.com/songs/60049827.mkv +佚名-心心相爱,http://em.21dtv.com/songs/60050645.mkv +黄克林-心心相爱,http://em.21dtv.com/songs/60050644.mkv +S.H.E-相信相爱,http://em.21dtv.com/songs/60048856.mkv +林俊杰-相信无限,http://em.21dtv.com/songs/60048855.mkv +C ALLSTAR-兄兄我我,http://em.21dtv.com/songs/60128671.mkv +王宝-相信未来,http://em.21dtv.com/songs/60086004.mkv +巫启贤-相信未来,http://em.21dtv.com/songs/60048847.mkv +动静乐团-相信未来,http://em.21dtv.com/songs/60048846.mkv +天骏-孝行天下,http://em.21dtv.com/songs/60121548.mkv +杨千嬅-星星同学,http://em.21dtv.com/songs/60080033.mkv +荒山亮-枭雄天下,http://em.21dtv.com/songs/60049421.mkv +周旋-西厢听琴,http://em.21dtv.com/songs/60070022.mkv +刘一祯-潇湘神韵(演唱会),http://em.21dtv.com/songs/60078677.mkv +叶胜钦-新相思雨,http://em.21dtv.com/songs/60050969.mkv +张卫健-虚虚实实,http://em.21dtv.com/songs/60051543.mkv +佚名-小小少年,http://em.21dtv.com/songs/60049819.mkv +伊扬+黄格选-小小少年(演唱会),http://em.21dtv.com/songs/60049818.mkv +景岗山-相信胜利,http://em.21dtv.com/songs/60081917.mkv +群星-相信胜利(演唱会),http://em.21dtv.com/songs/60048843.mkv +贾璨璨-小小世界,http://em.21dtv.com/songs/60097135.mkv +左小祖咒+曾轶可-小小事件,http://em.21dtv.com/songs/60084220.mkv +娄艺潇-小小世界,http://em.21dtv.com/songs/60078732.mkv +童唱-小小世界,http://em.21dtv.com/songs/60049820.mkv +王璘枫-想象生活,http://em.21dtv.com/songs/60108728.mkv +圆圆-小小水花,http://em.21dtv.com/songs/60101056.mkv +郑少秋-熊熊圣火,http://em.21dtv.com/songs/60051494.mkv +郑少秋-熊熊圣火(演唱会),http://em.21dtv.com/songs/60051493.mkv +群星-小小时代,http://em.21dtv.com/songs/60086032.mkv +谭锡禧-锡禧时代(演唱会),http://em.21dtv.com/songs/60084142.mkv +蔡国庆-小小水滴,http://em.21dtv.com/songs/60049821.mkv +陈永峰-心想事成(演唱会),http://em.21dtv.com/songs/60084249.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-心想事成,http://em.21dtv.com/songs/60078792.mkv +佚名-心想事成,http://em.21dtv.com/songs/60050640.mkv +含笑-心细如绵,http://em.21dtv.com/songs/60128884.mkv +周瑜-小小日本,http://em.21dtv.com/songs/60070066.mkv +王宏伟-乡下亲戚,http://em.21dtv.com/songs/60111268.mkv +刘大成-乡下亲戚,http://em.21dtv.com/songs/60101956.mkv +王宏伟-乡下亲戚,http://em.21dtv.com/songs/60070036.mkv +金珊珊-湘西情歌,http://em.21dtv.com/songs/60117300.mkv +金姗姗-湘西情歌,http://em.21dtv.com/songs/60113022.mkv +佚名-星下情歌(无原唱),http://em.21dtv.com/songs/60095422.mkv +曾春年-小小情歌,http://em.21dtv.com/songs/60078731.mkv +李一可-小心轻放,http://em.21dtv.com/songs/60049839.mkv +陈建斌+羽泉-向雪祈祷,http://em.21dtv.com/songs/60117336.mkv +黄名伟-小心情变(无原唱),http://em.21dtv.com/songs/60049840.mkv +肖海洋-心小男人,http://em.21dtv.com/songs/60135638.mkv +肖海洋-心小男人,http://em.21dtv.com/songs/60118852.mkv +郑秀文-小心女人,http://em.21dtv.com/songs/60049836.mkv +郑秀文-小心女人(演唱会),http://em.21dtv.com/songs/60049835.mkv +李玟-小心男人,http://em.21dtv.com/songs/60049834.mkv +ATAO-谢谢你们,http://em.21dtv.com/songs/60067647.mkv +高赛燕-心向妈祖,http://em.21dtv.com/songs/60098952.mkv +潘玮柏-小小蚂蚁,http://em.21dtv.com/songs/60049815.mkv +玖月奇迹-相信梦想,http://em.21dtv.com/songs/60121961.mkv +邓海-相信明天,http://em.21dtv.com/songs/60122160.mkv +胡鸿钧-相信明天,http://em.21dtv.com/songs/60113983.mkv +西子-西厢美人,http://em.21dtv.com/songs/60068816.mkv +克丽丝叮-寻寻觅觅,http://em.21dtv.com/songs/60107508.mkv +CHRISTINE-寻寻觅觅,http://em.21dtv.com/songs/60103186.mkv +佚名-小小茉莉,http://em.21dtv.com/songs/60049816.mkv +薛家燕-西厢梦会(演唱会),http://em.21dtv.com/songs/60047950.mkv +荒山亮-枭雄论战(多情命),http://em.21dtv.com/songs/60062485.mkv +林俊杰+何耀珊-信心旅行,http://em.21dtv.com/songs/60051018.mkv +云飞-心向蓝天,http://em.21dtv.com/songs/60119245.mkv +刘一祯-谢谢老师,http://em.21dtv.com/songs/60050041.mkv +童唱-乡下老鼠,http://em.21dtv.com/songs/60048579.mkv +曹震豪-学习浪漫,http://em.21dtv.com/songs/60119629.mkv +明圣凯-小小浪漫,http://em.21dtv.com/songs/60049812.mkv +阿牛-星星亮了,http://em.21dtv.com/songs/60051115.mkv +刘依纯-笑笑离开,http://em.21dtv.com/songs/60049964.mkv +乐之翼-笑笑离开,http://em.21dtv.com/songs/60049963.mkv +陈瑞-喜新恋旧,http://em.21dtv.com/songs/60048181.mkv +周传雄-心血来潮,http://em.21dtv.com/songs/60050655.mkv +郑秀文-心血来潮,http://em.21dtv.com/songs/60050654.mkv +郑秀文-心血来潮(演唱会),http://em.21dtv.com/songs/60050653.mkv +魏晨-小小快乐(演唱会),http://em.21dtv.com/songs/60049811.mkv +杨千嬅-学习街童,http://em.21dtv.com/songs/60051659.mkv +宿雨涵-小小京胡,http://em.21dtv.com/songs/60062952.mkv +曹震豪-循序渐爱,http://em.21dtv.com/songs/60129192.mkv +陈奕迅-信心花舍(HD演唱会),http://em.21dtv.com/songs/60051017.mkv +林君羡-新西湖泪,http://em.21dtv.com/songs/60108617.mkv +刘若英-写信回家,http://em.21dtv.com/songs/60116597.mkv +甜美真-新笑红尘,http://em.21dtv.com/songs/60078874.mkv +梁剑东-小小红包,http://em.21dtv.com/songs/60135452.mkv +林思彤-小小故事,http://em.21dtv.com/songs/60110306.mkv +黄格选-新鲜感受,http://em.21dtv.com/songs/60050966.mkv +向天问-湘西姑娘,http://em.21dtv.com/songs/60065193.mkv +童唱-小小姑娘,http://em.21dtv.com/songs/60049809.mkv +故事情节-乡下姑娘(无原唱),http://em.21dtv.com/songs/60048578.mkv +麒麟+Baby-小小闺蜜,http://em.21dtv.com/songs/60114291.mkv +方珈悠-洗心革面,http://em.21dtv.com/songs/60048092.mkv +陈小花-相信感觉,http://em.21dtv.com/songs/60048838.mkv +群星-雄心飞扬,http://em.21dtv.com/songs/60091865.mkv +BLESSED+夏芷筠-学习放手,http://em.21dtv.com/songs/60051658.mkv +徐海星-小小的我,http://em.21dtv.com/songs/60099249.mkv +馨曦独舞-馨曦独舞,http://em.21dtv.com/songs/60068867.mkv +井柏然-小小的我,http://em.21dtv.com/songs/60061762.mkv +严紫心-小小的我,http://em.21dtv.com/songs/60049805.mkv +无鸣-小小的我,http://em.21dtv.com/songs/60049804.mkv +[Group] +groupName=十六万歌曲MV等 - 59 +甲子慧-雄心的人,http://em.21dtv.com/songs/60125973.mkv +甲子慧-雄心的人,http://em.21dtv.com/songs/60124306.mkv +陶喆-小小的你,http://em.21dtv.com/songs/60106430.mkv +陶喆-小小的你,http://em.21dtv.com/songs/60080272.mkv +徐桂英+牛马丁-小小灯笼,http://em.21dtv.com/songs/60095532.mkv +晓依-小小的画,http://em.21dtv.com/songs/60097137.mkv +今声缘-小小的画,http://em.21dtv.com/songs/60097136.mkv +周璇-小小洞房,http://em.21dtv.com/songs/60049808.mkv +陈松伶-小小洞房,http://em.21dtv.com/songs/60049807.mkv +王昆-小小灯儿,http://em.21dtv.com/songs/60116144.mkv +王昆-小小灯儿,http://em.21dtv.com/songs/60091700.mkv +郑智化-星星点灯,http://em.21dtv.com/songs/60051112.mkv +谢金燕-香榭大道,http://em.21dtv.com/songs/60048951.mkv +仇泽-小小的船,http://em.21dtv.com/songs/60070065.mkv +CK-悉心打扮,http://em.21dtv.com/songs/60048014.mkv +张继鹏+邱珺雅-小小的爱,http://em.21dtv.com/songs/60129113.mkv +刘佩芯-小小的爱,http://em.21dtv.com/songs/60101274.mkv +韩敏-心向草原,http://em.21dtv.com/songs/60098923.mkv +尕让邓真-象雄传说,http://em.21dtv.com/songs/60117690.mkv +郑秀文-星秀传说(演唱会),http://em.21dtv.com/songs/60051136.mkv +薛凯琪-小小痴缠,http://em.21dtv.com/songs/60094287.mkv +李克勤-信心保证,http://em.21dtv.com/songs/60051016.mkv +扎西-西夏邦玛,http://em.21dtv.com/songs/60089892.mkv +小虫-相信believe me,http://em.21dtv.com/songs/60048831.mkv +佚名-小小贝壳,http://em.21dtv.com/songs/60049797.mkv +张信哲-下雪边界(无原唱),http://em.21dtv.com/songs/60048302.mkv +SNH48-心型病毒(演),http://em.21dtv.com/songs/60099030.mkv +刘栋升-相信爱情,http://em.21dtv.com/songs/60106647.mkv +庄心妍-相信爱情,http://em.21dtv.com/songs/60105808.mkv +孙协志-学习爱情,http://em.21dtv.com/songs/60084305.mkv +张瑶-相信爱情,http://em.21dtv.com/songs/60078591.mkv +黎胜平-相信爱情,http://em.21dtv.com/songs/60048836.mkv +朱宇-希望之星,http://em.21dtv.com/songs/60122823.mkv +赵传-希望之星(无原唱),http://em.21dtv.com/songs/60048000.mkv +MC HOTDOG-瞎王之王,http://em.21dtv.com/songs/60078537.mkv +Go Go Rise 美好前程-希望之树,http://em.21dtv.com/songs/60116452.mkv +美好前程乐队+谢维伦-希望之树,http://em.21dtv.com/songs/60110458.mkv +美好前程-希望之树,http://em.21dtv.com/songs/60110456.mkv +SPEXIAL-X未知数,http://em.21dtv.com/songs/60104733.mkv +K.will-向我走来,http://em.21dtv.com/songs/60114950.mkv +温升豪-向我走来,http://em.21dtv.com/songs/60080293.mkv +阿古-希望之光,http://em.21dtv.com/songs/60106367.mkv +罗百吉-希望之歌,http://em.21dtv.com/songs/60090113.mkv +赵咏华-希望之鸽,http://em.21dtv.com/songs/60047999.mkv +元卫觉醒-新闻主播,http://em.21dtv.com/songs/60050961.mkv +唐美华-相问云烟,http://em.21dtv.com/songs/60115070.mkv +熊七梅-相问云烟,http://em.21dtv.com/songs/60110366.mkv +王识贤-玄武英雄,http://em.21dtv.com/songs/60051583.mkv +叶德娴-许我一问,http://em.21dtv.com/songs/60092432.mkv +护身兽-向往阳光,http://em.21dtv.com/songs/60119594.mkv +梅艳芳-心窝已疯(演唱会),http://em.21dtv.com/songs/60050628.mkv +索郎达吉-向往亚丁,http://em.21dtv.com/songs/60128298.mkv +谭维维-向往西藏,http://em.21dtv.com/songs/60049353.mkv +张艳君-向往潇湘,http://em.21dtv.com/songs/60111086.mkv +叶倩文-系我心弦,http://em.21dtv.com/songs/60048215.mkv +梅艳芳+陈慧琳-夏娃夏娃,http://em.21dtv.com/songs/60092934.mkv +孙颢荣-向往幸福,http://em.21dtv.com/songs/60099198.mkv +曹秀琴+吴国华-相望无言,http://em.21dtv.com/songs/60048812.mkv +艳阳天-向往天堂,http://em.21dtv.com/songs/60049352.mkv +詹曼铃+陈茂丰-心无退路,http://em.21dtv.com/songs/60050632.mkv +郑恩地-希望天空,http://em.21dtv.com/songs/60124563.mkv +郑恩地-希望天空,http://em.21dtv.com/songs/60123235.mkv +SO WHAT-希望手杖,http://em.21dtv.com/songs/60047994.mkv +亚东-向往神鹰,http://em.21dtv.com/songs/60049351.mkv +阿斯根-向往神鹰,http://em.21dtv.com/songs/60049350.mkv +亚东-向往神鹰(演唱会),http://em.21dtv.com/songs/60049349.mkv +李克勤-写我深情,http://em.21dtv.com/songs/60050014.mkv +渡り廊下走り队7-希望山脉(演唱会),http://em.21dtv.com/songs/60065163.mkv +徐小羽-虚伪朋友,http://em.21dtv.com/songs/60113521.mkv +金波-心为你跳,http://em.21dtv.com/songs/60121039.mkv +后来者-新舞女泪,http://em.21dtv.com/songs/60125273.mkv +陈奕迅-新闻女郎(演唱会),http://em.21dtv.com/songs/60065260.mkv +梁汉文-新闻女郎,http://em.21dtv.com/songs/60050960.mkv +傅振辉+邓咏家-心无另外,http://em.21dtv.com/songs/60108311.mkv +孙媛-向往陇南(HD),http://em.21dtv.com/songs/10012768.mkv +孙媛-向往陇南,http://em.21dtv.com/songs/60096239.mkv +斯琴巴图-想我了吗,http://em.21dtv.com/songs/60113544.mkv +袁成杰-想我了吗,http://em.21dtv.com/songs/60088619.mkv +花儿乐队-向我开炮,http://em.21dtv.com/songs/60049354.mkv +魏紫祺-向往家乡,http://em.21dtv.com/songs/60132005.mkv +小贵子-向往家乡,http://em.21dtv.com/songs/60078656.mkv +斯琴巴图-向往故乡,http://em.21dtv.com/songs/60113541.mkv +BOX COM-炫舞国度,http://em.21dtv.com/songs/60120196.mkv +吕明银+林明华-心无地址,http://em.21dtv.com/songs/60116634.mkv +张智霖-像我的人(无原唱),http://em.21dtv.com/songs/60049394.mkv +娅琪朵-虚伪的话,http://em.21dtv.com/songs/60104922.mkv +张瀛仁-虚伪的爱,http://em.21dtv.com/songs/60131413.mkv +罗英初-向往草原,http://em.21dtv.com/songs/60062743.mkv +杜德伟-心未变过,http://em.21dtv.com/songs/60050626.mkv +夏韶声-新闻报道,http://em.21dtv.com/songs/60050959.mkv +杨美莲-惜我爱我(无原唱),http://em.21dtv.com/songs/60048034.mkv +颜小健-心跳之外,http://em.21dtv.com/songs/60105517.mkv +傣语-X塔之日,http://em.21dtv.com/songs/60124778.mkv +花树-夏天走了,http://em.21dtv.com/songs/60094260.mkv +周子寒-心疼自己,http://em.21dtv.com/songs/60050586.mkv +佚名-心疼自己,http://em.21dtv.com/songs/60050585.mkv +尚杰-新天仙配,http://em.21dtv.com/songs/60132404.mkv +秋裤大叔+司徒兰芳-新天仙配,http://em.21dtv.com/songs/60108785.mkv +周子明-新天仙配,http://em.21dtv.com/songs/60090836.mkv +赵小兵+司徒兰芳-新天仙配,http://em.21dtv.com/songs/60086052.mkv +孙艺建-谢天谢地,http://em.21dtv.com/songs/60062965.mkv +王识贤-谢天谢地,http://em.21dtv.com/songs/60050035.mkv +徐良-心跳时光,http://em.21dtv.com/songs/60128014.mkv +K ONE-心跳任务(演唱会),http://em.21dtv.com/songs/60050595.mkv +林姗-笑谈人生,http://em.21dtv.com/songs/60078743.mkv +对唱-小调情歌,http://em.21dtv.com/songs/60099963.mkv +米儿丝-想听你说,http://em.21dtv.com/songs/60049249.mkv +白颜-形同陌路,http://em.21dtv.com/songs/60098669.mkv +乌兰托娅+秦勇-新套马杆(演唱会),http://em.21dtv.com/songs/60078872.mkv +SummerBaby-夏天来了,http://em.21dtv.com/songs/60114958.mkv +伊雪-心头恋歌,http://em.21dtv.com/songs/60050623.mkv +农夫-心跳回忆,http://em.21dtv.com/songs/60078784.mkv +李蕙敏-心跳回忆,http://em.21dtv.com/songs/60050594.mkv +古巨基-心跳回忆(演唱会),http://em.21dtv.com/songs/60050593.mkv +苗苗-新桃花扇,http://em.21dtv.com/songs/60096465.mkv +沈殿霞+叶丽仪-新桃花江(演唱会),http://em.21dtv.com/songs/60050954.mkv +冯巩+牛群-小偷公司,http://em.21dtv.com/songs/60089658.mkv +周蕙-心跳感觉,http://em.21dtv.com/songs/60050591.mkv +许慧欣-小题大作,http://em.21dtv.com/songs/60092057.mkv +李克勤-小题大做(演唱会),http://em.21dtv.com/songs/60078725.mkv +陈妃-心痛的人,http://em.21dtv.com/songs/60050613.mkv +黄予然-夏天的你,http://em.21dtv.com/songs/60108179.mkv +黄亮-夏天的你,http://em.21dtv.com/songs/60107374.mkv +王鸣飞-夏天的风,http://em.21dtv.com/songs/60120793.mkv +楚静-夏天的风,http://em.21dtv.com/songs/60111212.mkv +刘瑞琦-夏天的风,http://em.21dtv.com/songs/60084165.mkv +王鸣飞-夏天的风,http://em.21dtv.com/songs/60068824.mkv +元卫觉醒-夏天的风,http://em.21dtv.com/songs/60048402.mkv +温岚-夏天的风,http://em.21dtv.com/songs/60048401.mkv +羽泉+TFBOYS-想天灯灯,http://em.21dtv.com/songs/60124363.mkv +龙千玉-心疼的爱,http://em.21dtv.com/songs/60076103.mkv +龙千玉-心痛的爱,http://em.21dtv.com/songs/60050608.mkv +刘尊-新铁窗泪,http://em.21dtv.com/songs/60050958.mkv +秋虹-西塘别恋,http://em.21dtv.com/songs/60061731.mkv +岳太阳-小三转正,http://em.21dtv.com/songs/60119466.mkv +周慧敏-心事重重,http://em.21dtv.com/songs/60050512.mkv +佚名-心事重重,http://em.21dtv.com/songs/60050511.mkv +林大晋-享受自由,http://em.21dtv.com/songs/60121815.mkv +Frank秋枫-现实主义,http://em.21dtv.com/songs/60106533.mkv +杨雪晴-相思滋味,http://em.21dtv.com/songs/60106014.mkv +阿影-心碎站台,http://em.21dtv.com/songs/60114174.mkv +蔡小虎-心碎再碎,http://em.21dtv.com/songs/60050561.mkv +张书瑶-行尸走肉,http://em.21dtv.com/songs/60129064.mkv +王鹤铮-稀世之美,http://em.21dtv.com/songs/60081177.mkv +那英-醒时作梦,http://em.21dtv.com/songs/60051186.mkv +张瀛仁+杰克-相思作弄,http://em.21dtv.com/songs/60130328.mkv +萨文玉-雪山之恋,http://em.21dtv.com/songs/60084312.mkv +易影峰-相思之苦,http://em.21dtv.com/songs/60070041.mkv +TENSION-先说再见,http://em.21dtv.com/songs/60078553.mkv +林吉玲-心碎主角(无原唱),http://em.21dtv.com/songs/60050562.mkv +TWINS-享受自己,http://em.21dtv.com/songs/60048968.mkv +天堂飘雪-小四之歌,http://em.21dtv.com/songs/60106745.mkv +佚名-新生之歌,http://em.21dtv.com/songs/60050937.mkv +春雷-雪山之巅,http://em.21dtv.com/songs/60051741.mkv +常石磊-相随永远,http://em.21dtv.com/songs/60048810.mkv +杨燕-相思悠悠,http://em.21dtv.com/songs/60048800.mkv +谢雷+杨燕-相思悠悠(演唱会),http://em.21dtv.com/songs/60048799.mkv +Mr.-现实游戏,http://em.21dtv.com/songs/60120229.mkv +群星-喜上有喜(演唱会),http://em.21dtv.com/songs/60078526.mkv +黄义达-线上游戏,http://em.21dtv.com/songs/60048535.mkv +女驸马-潇伤一世,http://em.21dtv.com/songs/60086018.mkv +熊七梅-享受一切,http://em.21dtv.com/songs/60111251.mkv +初晨-相守一年,http://em.21dtv.com/songs/60120377.mkv +程闯+李思琳-相思月亮(演唱会),http://em.21dtv.com/songs/60048804.mkv +刘沛洋-相思依旧,http://em.21dtv.com/songs/60105641.mkv +洪卓立-相识以后,http://em.21dtv.com/songs/60097341.mkv +杨晓薇-相思月寒,http://em.21dtv.com/songs/60086002.mkv +慕容晓晓-现实诱惑(演唱会),http://em.21dtv.com/songs/60072599.mkv +吴峙轩-心碎以后,http://em.21dtv.com/songs/60050559.mkv +阿九+唱片街-相思月光,http://em.21dtv.com/songs/60107296.mkv +蓝雨-心碎药方,http://em.21dtv.com/songs/60050558.mkv +费玉清-香水有毒,http://em.21dtv.com/songs/60128412.mkv +阿华-相思有毒(HD),http://em.21dtv.com/songs/10012819.mkv +胡扬琳-香水有毒,http://em.21dtv.com/songs/60085978.mkv +阿华-相思有毒,http://em.21dtv.com/songs/60067627.mkv +胡杨林-香水有毒,http://em.21dtv.com/songs/60048945.mkv +陈超-香水有毒,http://em.21dtv.com/songs/60048944.mkv +李池湘-醒狮迎春,http://em.21dtv.com/songs/60051185.mkv +王莉-相识相知,http://em.21dtv.com/songs/60078579.mkv +王相周-相思小舟,http://em.21dtv.com/songs/60067626.mkv +耿金-相随心转,http://em.21dtv.com/songs/60048809.mkv +安静-相思小雨,http://em.21dtv.com/songs/60110151.mkv +龙之缘-心手相牵,http://em.21dtv.com/songs/60106517.mkv +陈赛金-心手相牵,http://em.21dtv.com/songs/60078777.mkv +刘玮-心手相牵,http://em.21dtv.com/songs/60050515.mkv +永邦-心手相连,http://em.21dtv.com/songs/60050514.mkv +冷漠-小三续集,http://em.21dtv.com/songs/60090675.mkv +萧亚轩-潇洒小姐,http://em.21dtv.com/songs/60049463.mkv +玛希-相思小调,http://em.21dtv.com/songs/60048795.mkv +贲小伟+婷婷-相随相伴,http://em.21dtv.com/songs/60086003.mkv +涓子-相思无罪,http://em.21dtv.com/songs/60100288.mkv +雨湘-相思无用,http://em.21dtv.com/songs/60120115.mkv +林志美+冯允谦-新宿物语,http://em.21dtv.com/songs/60113711.mkv +郑中基-相思无用,http://em.21dtv.com/songs/60048794.mkv +郑中基-相思无用(演唱会),http://em.21dtv.com/songs/60048793.mkv +南方二重唱-细说往事(演唱会),http://em.21dtv.com/songs/60084154.mkv +小娟-细说往事,http://em.21dtv.com/songs/60078534.mkv +冷漠-小三外传,http://em.21dtv.com/songs/60078717.mkv +谢霆锋-下手太重,http://em.21dtv.com/songs/60048296.mkv +胡东清-携手同心,http://em.21dtv.com/songs/60049989.mkv +陈浩民-相识太迟,http://em.21dtv.com/songs/60048712.mkv +陈奕迅-心深伤透,http://em.21dtv.com/songs/60050472.mkv +张洪量-相思三态,http://em.21dtv.com/songs/60048782.mkv +刘依纯-想思深深(无原唱),http://em.21dtv.com/songs/60049237.mkv +黄妃-相思声声,http://em.21dtv.com/songs/60048784.mkv +刘依纯-相思深深(无原唱),http://em.21dtv.com/songs/60048783.mkv +DISH乐队-羞涩少年(演唱会),http://em.21dtv.com/songs/60065284.mkv +阎琰-新声声慢,http://em.21dtv.com/songs/60063238.mkv +甄强-现实社会,http://em.21dtv.com/songs/60130615.mkv +黄名伟-心碎时分(无原唱),http://em.21dtv.com/songs/60050557.mkv +小小浩+文博-学生时代,http://em.21dtv.com/songs/60111825.mkv +少女部落格-学生时代,http://em.21dtv.com/songs/60065295.mkv +TWINS-学生手册,http://em.21dtv.com/songs/60051657.mkv +TWINS-学生手册(演唱会),http://em.21dtv.com/songs/60051656.mkv +梁海洋-潇洒人生,http://em.21dtv.com/songs/60125816.mkv +谭咏麟-小说人生(演唱会),http://em.21dtv.com/songs/60049752.mkv +罗文-戏说人生,http://em.21dtv.com/songs/60048211.mkv +邰正宵-相思如麻,http://em.21dtv.com/songs/60048781.mkv +冷漠-小三前传,http://em.21dtv.com/songs/60061760.mkv +易本志-相思情缘,http://em.21dtv.com/songs/60119610.mkv +神弦乐-寻神启事,http://em.21dtv.com/songs/60131707.mkv +张津涤-相思情诗,http://em.21dtv.com/songs/60119533.mkv +杨愿明-戏说情伤,http://em.21dtv.com/songs/60111186.mkv +郭娅丽-喜事敲门,http://em.21dtv.com/songs/60095228.mkv +梁剑东-喜事齐来,http://em.21dtv.com/songs/60132641.mkv +梁剑东-喜事齐来,http://em.21dtv.com/songs/60131570.mkv +李飞-新送情郎,http://em.21dtv.com/songs/60065259.mkv +林颖-相思情结(戏曲),http://em.21dtv.com/songs/60095709.mkv +荣帝丞-心伤情歌,http://em.21dtv.com/songs/60071338.mkv +夏兰-相思情愁,http://em.21dtv.com/songs/60107619.mkv +谭咏麟+李克勤-小生怕怕,http://em.21dtv.com/songs/60093201.mkv +萧敬腾-袖手旁观,http://em.21dtv.com/songs/60118020.mkv +李健-袖手旁观,http://em.21dtv.com/songs/60108562.mkv +赵钶+苏琪繁-袖手旁观,http://em.21dtv.com/songs/60104459.mkv +张宇-袖手旁观(我是歌手第二期),http://em.21dtv.com/songs/60096273.mkv +林志炫-袖手旁观,http://em.21dtv.com/songs/60084298.mkv +曾一鸣-袖手旁观,http://em.21dtv.com/songs/60080838.mkv +齐秦-袖手旁观,http://em.21dtv.com/songs/60051521.mkv +江美琪-袖手旁观,http://em.21dtv.com/songs/60051520.mkv +久久-相思难诉,http://em.21dtv.com/songs/60078587.mkv +王馨平-潇洒女人,http://em.21dtv.com/songs/60049462.mkv +李阳+路默依-心随你去,http://em.21dtv.com/songs/60098497.mkv +佚名-相思难耐(无原唱),http://em.21dtv.com/songs/60048778.mkv +云飞儿-相思难眠,http://em.21dtv.com/songs/60119247.mkv +潘美辰-相思难免,http://em.21dtv.com/songs/60048777.mkv +陈冠霖-潇洒男儿,http://em.21dtv.com/songs/60134393.mkv +于铭-相思难断,http://em.21dtv.com/songs/60112495.mkv +柯彤-心随你动,http://em.21dtv.com/songs/60050535.mkv +陈红-潇洒女兵,http://em.21dtv.com/songs/60049461.mkv +女兵三人组-潇洒女兵(演唱会),http://em.21dtv.com/songs/60049460.mkv +熊七梅-相思梦语,http://em.21dtv.com/songs/60111253.mkv +李健-心升明月,http://em.21dtv.com/songs/60066485.mkv +凡人-心碎码头,http://em.21dtv.com/songs/60089156.mkv +高赛燕-喜上眉梢,http://em.21dtv.com/songs/60085979.mkv +曾敏-喜上眉梢,http://em.21dtv.com/songs/60063350.mkv +东方天使+兄弟联-喜上眉梢,http://em.21dtv.com/songs/60048172.mkv +夏婉安+上官晓懿-线上木偶,http://em.21dtv.com/songs/60121531.mkv +周艳泓+樱子-相思妹妹,http://em.21dtv.com/songs/60067623.mkv +群星-新时髦话(演唱会),http://em.21dtv.com/songs/60050942.mkv +欢子-心碎玫瑰,http://em.21dtv.com/songs/60104267.mkv +杜侑澎-心随路远(演唱会),http://em.21dtv.com/songs/60084248.mkv +胡美仪-心声泪影(演唱会),http://em.21dtv.com/songs/60050487.mkv +许晓杰-新丝路上,http://em.21dtv.com/songs/60124479.mkv +星宇-心碎恋人,http://em.21dtv.com/songs/60063190.mkv +郭艳燕-西沙恋曲,http://em.21dtv.com/songs/60078501.mkv +郭艳燕+唐涛-西沙恋曲,http://em.21dtv.com/songs/60078500.mkv +范忻-西沙恋曲,http://em.21dtv.com/songs/60078499.mkv +雪山朗玛组合-雪山朗玛,http://em.21dtv.com/songs/60051737.mkv +谢莉婷-心酸恋梦,http://em.21dtv.com/songs/60050531.mkv +冈林-喜事连连,http://em.21dtv.com/songs/60130100.mkv +佚名-潇洒离开,http://em.21dtv.com/songs/60049459.mkv +湘佛莲-心似莲花,http://em.21dtv.com/songs/60086042.mkv +甄秀珍-心声泪痕,http://em.21dtv.com/songs/60050486.mkv +余天-心声泪痕,http://em.21dtv.com/songs/60050485.mkv +佚名-心声泪痕,http://em.21dtv.com/songs/60050484.mkv +青山-心声泪痕,http://em.21dtv.com/songs/60050483.mkv +李茂山-心声泪痕,http://em.21dtv.com/songs/60050482.mkv +莫旭秋-心声泪痕(演唱会),http://em.21dtv.com/songs/60050481.mkv +东篱-雪诉离歌,http://em.21dtv.com/songs/60084313.mkv +上明+简美雀-雪山恋歌,http://em.21dtv.com/songs/60078976.mkv +古天乐-新手恋爱,http://em.21dtv.com/songs/60050950.mkv +李子杰-小三快跑,http://em.21dtv.com/songs/60086026.mkv +羽泉-心似狂潮,http://em.21dtv.com/songs/60050490.mkv +羽泉-心似狂潮(演唱会),http://em.21dtv.com/songs/60050489.mkv +佚名-心碎酒醉,http://em.21dtv.com/songs/60050551.mkv +袁小迪-心碎酒醉(无原唱),http://em.21dtv.com/songs/60050550.mkv +郭保成-戏说家乡,http://em.21dtv.com/songs/60117284.mkv +迪奥-心上江南,http://em.21dtv.com/songs/60129652.mkv +唐韦琪+张美妮+刘家聪-小司机noddy(演唱会),http://em.21dtv.com/songs/60049754.mkv +夏鸣-享受寂寞,http://em.21dtv.com/songs/60048967.mkv +高夫-细思极恐,http://em.21dtv.com/songs/60129817.mkv +苏路-新伤旧痕,http://em.21dtv.com/songs/60084234.mkv +潘斯蒙-新四季歌,http://em.21dtv.com/songs/60112088.mkv +李菓-新四季歌,http://em.21dtv.com/songs/60081043.mkv +郑家星-心事酒馆,http://em.21dtv.com/songs/60080855.mkv +庄妮+胡力-新四季歌,http://em.21dtv.com/songs/60050952.mkv +郭芯语-新四季歌,http://em.21dtv.com/songs/60050951.mkv +孙淑媚-心事呷多,http://em.21dtv.com/songs/60070080.mkv +段苏珊-相思红颜,http://em.21dtv.com/songs/60109485.mkv +杨梓-小三和弦,http://em.21dtv.com/songs/60094553.mkv +叶丽仪-新上海滩,http://em.21dtv.com/songs/60050928.mkv +方伊琪-相思河畔(演唱会),http://em.21dtv.com/songs/60078584.mkv +周蕙-相思河畔,http://em.21dtv.com/songs/60048762.mkv +吕珊-相思河畔,http://em.21dtv.com/songs/60048761.mkv +梁雁翎-相思河畔,http://em.21dtv.com/songs/60048760.mkv +顾媚-相思河畔,http://em.21dtv.com/songs/60048759.mkv +陈百强-相思河畔,http://em.21dtv.com/songs/60048758.mkv +曾宝仪-相思河畔,http://em.21dtv.com/songs/60048757.mkv +蔡幸娟-相思河畔,http://em.21dtv.com/songs/60048756.mkv +周蕙-相思河畔(演唱会),http://em.21dtv.com/songs/60048755.mkv +陈洁丽-相思河畔(演唱会),http://em.21dtv.com/songs/60048754.mkv +蔡琴-相思河畔(演唱会),http://em.21dtv.com/songs/60048753.mkv +龙飘飘-相思河畔(探戈),http://em.21dtv.com/songs/60048752.mkv +胡梅-相思红豆,http://em.21dtv.com/songs/60094259.mkv +文芃芃-箫声何处,http://em.21dtv.com/songs/60123993.mkv +李熙子-相思红尘,http://em.21dtv.com/songs/60086000.mkv +童唱-蟋蟀合唱,http://em.21dtv.com/songs/60048060.mkv +朱海君-相思过头,http://em.21dtv.com/songs/60125683.mkv +雷龙-香水姑娘,http://em.21dtv.com/songs/60123352.mkv +巴桑拉姆-雪山姑娘,http://em.21dtv.com/songs/60094079.mkv +蒙克-雪上姑娘,http://em.21dtv.com/songs/60080715.mkv +雷龙-香水姑娘,http://em.21dtv.com/songs/60048943.mkv +韩平-心声共鸣,http://em.21dtv.com/songs/60067657.mkv +佚名-心声共鸣,http://em.21dtv.com/songs/60050480.mkv +刘德华-心声共鸣,http://em.21dtv.com/songs/60050479.mkv +南鹤-新三国恋,http://em.21dtv.com/songs/60078869.mkv +王杰-享受孤独,http://em.21dtv.com/songs/60048966.mkv +邵兵-享受孤独,http://em.21dtv.com/songs/60048965.mkv +荒山亮-萧瑟风雨,http://em.21dtv.com/songs/60049449.mkv +李扬光-孝顺父母,http://em.21dtv.com/songs/60121775.mkv +佚名-雪山飞狐,http://em.21dtv.com/songs/60051736.mkv +吕方+关菊英-雪山飞狐,http://em.21dtv.com/songs/60051735.mkv +陈瑞-相思的债,http://em.21dtv.com/songs/60116350.mkv +陈瑞-相思的债,http://em.21dtv.com/songs/60106415.mkv +凌云-相思的债,http://em.21dtv.com/songs/60098133.mkv +青春美少女-潇洒地走,http://em.21dtv.com/songs/60078676.mkv +龙飘飘-潇洒的走,http://em.21dtv.com/songs/60049458.mkv +高胜美-潇洒的走,http://em.21dtv.com/songs/60049457.mkv +凤飞飞-潇洒的走,http://em.21dtv.com/songs/60049456.mkv +陈瑞-相思的债,http://em.21dtv.com/songs/60048739.mkv +望海高歌-相思的雨,http://em.21dtv.com/songs/60135344.mkv +刘恺名-相思的雨,http://em.21dtv.com/songs/60130118.mkv +海生-相思的夜,http://em.21dtv.com/songs/60127172.mkv +门丽+笑天-相思的雨,http://em.21dtv.com/songs/60118989.mkv +李克-辛酸的夜,http://em.21dtv.com/songs/60106933.mkv +王江发-新市的雨,http://em.21dtv.com/songs/60094231.mkv +海生+王斐斐-相思的夜,http://em.21dtv.com/songs/60078582.mkv +许飞-寻水的鱼,http://em.21dtv.com/songs/60067685.mkv +张琼+万新鑫+蔡馨-新声夺人,http://em.21dtv.com/songs/60050938.mkv +罗力威-小时代曲,http://em.21dtv.com/songs/60078719.mkv +张燕-喜事登门,http://em.21dtv.com/songs/60091139.mkv +詹雅雯-心碎的梦,http://em.21dtv.com/songs/60050548.mkv +林宥嘉-歇斯底里,http://em.21dtv.com/songs/60049985.mkv +唐古-相思的苦,http://em.21dtv.com/songs/60121516.mkv +祁隆-相思渡口,http://em.21dtv.com/songs/60081799.mkv +小乔-消失的海,http://em.21dtv.com/songs/60104077.mkv +李行亮-消失的光,http://em.21dtv.com/songs/60071325.mkv +思小玥-相思成灾,http://em.21dtv.com/songs/60133726.mkv +吴亦格-相思成灾,http://em.21dtv.com/songs/60070039.mkv +刘德华-相思成灾,http://em.21dtv.com/songs/60048735.mkv +刘德华-相思成灾(演唱会),http://em.21dtv.com/songs/60048734.mkv +刘牧-相思成语,http://em.21dtv.com/songs/60123688.mkv +劲松+兰卡措-雪山草原,http://em.21dtv.com/songs/60068890.mkv +伍天宇-信守承诺,http://em.21dtv.com/songs/60051007.mkv +蔡龄龄-细水长流,http://em.21dtv.com/songs/60106265.mkv +王菀之-细水长流,http://em.21dtv.com/songs/60085981.mkv +黎瑞恩-细水长流,http://em.21dtv.com/songs/60048226.mkv +林忆莲-细水长流(演唱会),http://em.21dtv.com/songs/60048225.mkv +佚名-细水长流(无原唱),http://em.21dtv.com/songs/60048224.mkv +周冰倩-相思成豆,http://em.21dtv.com/songs/60048733.mkv +郑源+储兰兰-西施别恋,http://em.21dtv.com/songs/60111446.mkv +李芙蓉-小手冰凉,http://em.21dtv.com/songs/60100159.mkv +张芯-小手冰凉(舞曲版),http://em.21dtv.com/songs/60068849.mkv +张芯-小手冰凉,http://em.21dtv.com/songs/60066475.mkv +满江-心碎北京,http://em.21dtv.com/songs/60097188.mkv +陈晓东-心事背后,http://em.21dtv.com/songs/60050499.mkv +张韶涵-香水百合,http://em.21dtv.com/songs/60048942.mkv +谭雷-血色爱情,http://em.21dtv.com/songs/60093872.mkv +佚名-想说爱你,http://em.21dtv.com/songs/60049235.mkv +乌兰托娅-雪山阿佳,http://em.21dtv.com/songs/60094385.mkv +洛桑扎西+桑吉扎西-雪山阿佳,http://em.21dtv.com/songs/60051733.mkv +刘德华-心如止水,http://em.21dtv.com/songs/60119292.mkv +朱敏-心如止水,http://em.21dtv.com/songs/60107775.mkv +刘德华-心如止水,http://em.21dtv.com/songs/60078772.mkv +孙耀威-血肉之躯,http://em.21dtv.com/songs/60090936.mkv +谢佩吟-仙人掌花,http://em.21dtv.com/songs/60131813.mkv +SNH48-夏日再会,http://em.21dtv.com/songs/60115633.mkv +苏有朋-夏日炎炎,http://em.21dtv.com/songs/60093076.mkv +夏国星+林玉英-夏日夜晚,http://em.21dtv.com/songs/60048392.mkv +陈奂仁-相濡以沫,http://em.21dtv.com/songs/60084181.mkv +晓月-相濡以沫,http://em.21dtv.com/songs/60078578.mkv +关淑怡-相濡以沫,http://em.21dtv.com/songs/60078577.mkv +阿鲁阿卓-相濡以沫,http://em.21dtv.com/songs/60048705.mkv +朱韬-夏日阳光,http://em.21dtv.com/songs/60084164.mkv +李易峰-心如玄铁,http://em.21dtv.com/songs/60112755.mkv +李易峰-心如玄铁,http://em.21dtv.com/songs/60108572.mkv +吴浩康-先入为主,http://em.21dtv.com/songs/60048456.mkv +吴浩康-先入为主(演唱会),http://em.21dtv.com/songs/60048455.mkv +BEYOND-昔日舞曲,http://em.21dtv.com/songs/60048007.mkv +BEYOND-昔日舞曲(演唱会),http://em.21dtv.com/songs/60048006.mkv +阿妹妹-嘘让我哭,http://em.21dtv.com/songs/60051553.mkv +关智斌-闲人勿进,http://em.21dtv.com/songs/60092313.mkv +关智斌-闲人勿近,http://em.21dtv.com/songs/60048478.mkv +筱筱-夏日午后,http://em.21dtv.com/songs/60089435.mkv +阿生-夏日午后,http://em.21dtv.com/songs/60048391.mkv +周子轩-新让我飞,http://em.21dtv.com/songs/60126717.mkv +夏日甜心-夏日甜心,http://em.21dtv.com/songs/60123796.mkv +梅艳芳-心仍是冷,http://em.21dtv.com/songs/60050447.mkv +容祖儿+张信哲-心仍是冷(演唱会),http://em.21dtv.com/songs/60050446.mkv +梅艳芳+李克勤-心仍是冷(演唱会),http://em.21dtv.com/songs/60050445.mkv +佚名-新日日春,http://em.21dtv.com/songs/60050921.mkv +赵斌-寻人启示,http://em.21dtv.com/songs/60129640.mkv +徐佳莹-寻人启事,http://em.21dtv.com/songs/60101351.mkv +沙宝亮-寻人启示,http://em.21dtv.com/songs/60091603.mkv +江宇-寻人启示,http://em.21dtv.com/songs/60062511.mkv +江宇-寻人启事,http://em.21dtv.com/songs/60061795.mkv +EO2-寻人启事,http://em.21dtv.com/songs/60051830.mkv +胡琳-夏日倾情,http://em.21dtv.com/songs/60097377.mkv +黎明-夏日倾情,http://em.21dtv.com/songs/60048388.mkv +黎明-夏日倾情(演唱会),http://em.21dtv.com/songs/60048387.mkv +高佳+阿涓-夏日情怀,http://em.21dtv.com/songs/60111536.mkv +姚贝娜-心如明月,http://em.21dtv.com/songs/60078771.mkv +钟汉良-闲人免进,http://em.21dtv.com/songs/60120046.mkv +刘冲-夏日玫瑰,http://em.21dtv.com/songs/60048386.mkv +梅艳芳-夏日恋人,http://em.21dtv.com/songs/60048385.mkv +梅艳芳-夏日恋人(演唱会),http://em.21dtv.com/songs/60048384.mkv +佚名-夏日恋曲(无原唱),http://em.21dtv.com/songs/60048383.mkv +星瑞战队-星瑞力量,http://em.21dtv.com/songs/60116862.mkv +汤姆计画-夏日浪费,http://em.21dtv.com/songs/60101410.mkv +韩磊-旭日旅店,http://em.21dtv.com/songs/60051571.mkv +许嵩-渲染离别,http://em.21dtv.com/songs/60051631.mkv +棒棒堂-夏日恋爱,http://em.21dtv.com/songs/60048382.mkv +古皓-向日葵田,http://em.21dtv.com/songs/60090784.mkv +TWINS-夏日狂哗,http://em.21dtv.com/songs/60048379.mkv +钟欣桐-夏日狂哗(演唱会),http://em.21dtv.com/songs/60048378.mkv +梁咏琪-夏日剧集,http://em.21dtv.com/songs/60048377.mkv +SNH48-夏日悸动,http://em.21dtv.com/songs/60127670.mkv +谭咏麟-夏日寒风,http://em.21dtv.com/songs/60048376.mkv +谭咏麟-夏日寒风(演唱会),http://em.21dtv.com/songs/60048375.mkv +谭咏麟+李克勤-夏日寒风(演唱会),http://em.21dtv.com/songs/60048374.mkv +蔡一智-夏日寒风(演唱会),http://em.21dtv.com/songs/60048373.mkv +王莹-希日哈达,http://em.21dtv.com/songs/60123013.mkv +胜屿-心若孤城,http://em.21dtv.com/songs/60105307.mkv +郑融-想入非非,http://em.21dtv.com/songs/60049231.mkv +徐若瑄-想入非非,http://em.21dtv.com/songs/60049230.mkv +佚名-想入非非(无原唱),http://em.21dtv.com/songs/60049229.mkv +蔡卓妍-心如蝶舞,http://em.21dtv.com/songs/60050452.mkv +陈洁仪-心如刀割,http://em.21dtv.com/songs/60108132.mkv +王仁甫+孙协志-心如刀割,http://em.21dtv.com/songs/60100302.mkv +萧敬腾-心如刀割(演唱会),http://em.21dtv.com/songs/60078770.mkv +伍佰-心如刀割(演唱会),http://em.21dtv.com/songs/60063112.mkv +郑伊健-心如刀割,http://em.21dtv.com/songs/60050451.mkv +张学友-心如刀割,http://em.21dtv.com/songs/60050450.mkv +孙琳-心如刀割,http://em.21dtv.com/songs/60050449.mkv +张学友-心如刀割(演唱会),http://em.21dtv.com/songs/60050448.mkv +黎瑞恩-夏日初吻,http://em.21dtv.com/songs/60093574.mkv +郑希怡-闲人匆近,http://em.21dtv.com/songs/60093294.mkv +梁汉文-性情中人,http://em.21dtv.com/songs/60051434.mkv +梁汉文-性情中人(演唱会),http://em.21dtv.com/songs/60051433.mkv +刘家敏-雄起中国,http://em.21dtv.com/songs/60125178.mkv +群星-雄起中国,http://em.21dtv.com/songs/60084295.mkv +桂莹莹-喜气洋洋,http://em.21dtv.com/songs/60132629.mkv +沈凌云-喜气洋洋,http://em.21dtv.com/songs/60108672.mkv +刘海辰+优优-喜气洋洋,http://em.21dtv.com/songs/60108347.mkv +八大巨星-喜气洋洋,http://em.21dtv.com/songs/60078522.mkv +龙飘飘-喜气洋洋,http://em.21dtv.com/songs/60065166.mkv +佚名-喜气洋洋,http://em.21dtv.com/songs/60048170.mkv +徐小凤-喜气洋洋,http://em.21dtv.com/songs/60048168.mkv +哈辉-喜气洋洋,http://em.21dtv.com/songs/60048167.mkv +温拿乐队-喜气洋洋(演唱会),http://em.21dtv.com/songs/60048166.mkv +庄心妍-喜气盈门,http://em.21dtv.com/songs/60109292.mkv +庄心妍-喜气盈门,http://em.21dtv.com/songs/60097441.mkv +林晓培-心情阳光,http://em.21dtv.com/songs/60050441.mkv +王莉-乡情乡韵,http://em.21dtv.com/songs/60103469.mkv +陈丽媛-乡情乡梦,http://em.21dtv.com/songs/60122218.mkv +洪荣宏-心情像风,http://em.21dtv.com/songs/60072645.mkv +岩罕建-相亲相爱,http://em.21dtv.com/songs/60124825.mkv +胡歌+许茹芸-相亲相爱,http://em.21dtv.com/songs/60119900.mkv +群星-湘亲湘爱,http://em.21dtv.com/songs/60110461.mkv +钟彩媚-相亲相爱,http://em.21dtv.com/songs/60108088.mkv +胡海泉+丁于-相亲相爱,http://em.21dtv.com/songs/60095048.mkv +晓月-相亲相爱,http://em.21dtv.com/songs/60078575.mkv +刘冲+柯以敏-相亲相爱,http://em.21dtv.com/songs/60070038.mkv +中国群星-相亲相爱,http://em.21dtv.com/songs/60048699.mkv +韦唯-相亲相爱,http://em.21dtv.com/songs/60048698.mkv +群星-相亲相爱,http://em.21dtv.com/songs/60048697.mkv +林余安-新秋望月,http://em.21dtv.com/songs/60109455.mkv +李茂山-想起往事,http://em.21dtv.com/songs/60091372.mkv +龚琳娜-戏曲忐忑,http://em.21dtv.com/songs/60086969.mkv +陈泳泼-向钱踏步,http://em.21dtv.com/songs/60115497.mkv +刘秀荣-小桥送线,http://em.21dtv.com/songs/60049701.mkv +柯以敏+方炯镔-心情书签,http://em.21dtv.com/songs/60106993.mkv +叶震棠-戏曲人生,http://em.21dtv.com/songs/60092441.mkv +刘沛洋-相亲情歌,http://em.21dtv.com/songs/60103935.mkv +西子-轩庆普洱,http://em.21dtv.com/songs/60112226.mkv +梁子-想起你哟,http://em.21dtv.com/songs/60125813.mkv +刘孟哲-校庆那天,http://em.21dtv.com/songs/60087001.mkv +群星-心情曼波,http://em.21dtv.com/songs/60050438.mkv +湘东雨-小桥流水,http://em.21dtv.com/songs/60098602.mkv +阿鲁阿卓-想起了你,http://em.21dtv.com/songs/60049217.mkv +孙家山-喜气临门,http://em.21dtv.com/songs/60117653.mkv +蓝紫-贤妻良母,http://em.21dtv.com/songs/60062571.mkv +斯琴格日乐-西去列车(演唱会),http://em.21dtv.com/songs/60047938.mkv +汪定中-向前看齐,http://em.21dtv.com/songs/60125853.mkv +张信哲-心情卡片,http://em.21dtv.com/songs/60050434.mkv +黄永卓-虚情假意,http://em.21dtv.com/songs/60122305.mkv +酒吧伤心人-虚情假意,http://em.21dtv.com/songs/60113019.mkv +许阁+郑仁-小区酒家,http://em.21dtv.com/songs/60112235.mkv +樱花姐妹-虚情假爱,http://em.21dtv.com/songs/60072796.mkv +甲子蕙-虚情假爱,http://em.21dtv.com/songs/60051540.mkv +佚名-心情好了,http://em.21dtv.com/songs/60050433.mkv +詹雅雯-心情歌路,http://em.21dtv.com/songs/60050431.mkv +李乐诗-限期过后,http://em.21dtv.com/songs/60048531.mkv +赵羽-绣球飞飞,http://em.21dtv.com/songs/60126237.mkv +吴名慧-心情电梯,http://em.21dtv.com/songs/60050429.mkv +张斌-想起爹娘,http://em.21dtv.com/songs/60109308.mkv +洪玲-想起当初,http://em.21dtv.com/songs/60095772.mkv +黄乙玲-心情车站,http://em.21dtv.com/songs/60050428.mkv +任贤齐-心情车站(演唱会),http://em.21dtv.com/songs/60050427.mkv +侯延彬-西岐藏歌,http://em.21dtv.com/songs/60113267.mkv +孙莞-心情便贴,http://em.21dtv.com/songs/60105756.mkv +谭咏麟-星球本色(演唱会),http://em.21dtv.com/songs/60051097.mkv +吴是闳-香蕉芭乐,http://em.21dtv.com/songs/60125292.mkv +容祖儿-心情不好,http://em.21dtv.com/songs/60050426.mkv +望海高歌-心情不错,http://em.21dtv.com/songs/60126981.mkv +孙悦-心情不错,http://em.21dtv.com/songs/60050425.mkv +王馨平-心平气和,http://em.21dtv.com/songs/60050412.mkv +温伟杰-小品爱情,http://em.21dtv.com/songs/60125876.mkv +弦子-弦内之音,http://em.21dtv.com/songs/60082016.mkv +白致瑶-向你致敬,http://em.21dtv.com/songs/60117071.mkv +陈嘉桦-想念自己,http://em.21dtv.com/songs/60112344.mkv +阿朵-想念自己,http://em.21dtv.com/songs/60101546.mkv +罗中旭-想念自己,http://em.21dtv.com/songs/60088424.mkv +孙榕-向你致敬,http://em.21dtv.com/songs/60049322.mkv +贝贝-想念真好,http://em.21dtv.com/songs/60115410.mkv +汪峰-想念真好,http://em.21dtv.com/songs/60094200.mkv +童星-新年真好,http://em.21dtv.com/songs/60088386.mkv +牛欣欣-新年真好,http://em.21dtv.com/songs/60050906.mkv +阿香-想你一生,http://em.21dtv.com/songs/60086011.mkv +黄士佑-心内有数,http://em.21dtv.com/songs/60084245.mkv +王瑞霞+办桌阿杰-心内有数,http://em.21dtv.com/songs/60050407.mkv +蔡小虎-心内有数,http://em.21dtv.com/songs/60050406.mkv +朱妍-小鸟依人,http://em.21dtv.com/songs/60049682.mkv +沙宝亮-想念依旧,http://em.21dtv.com/songs/60091604.mkv +黄立行-心内有鬼,http://em.21dtv.com/songs/60050405.mkv +郭峰-新年约定,http://em.21dtv.com/songs/60130800.mkv +游美灵-新年心愿,http://em.21dtv.com/songs/60072661.mkv +旭佳非-想你想你,http://em.21dtv.com/songs/60101364.mkv +齐柒柒-想你想你[原伴],http://em.21dtv.com/songs/60101013.mkv +齐柒柒-想你想你,http://em.21dtv.com/songs/60097457.mkv +梅东生-想你想你,http://em.21dtv.com/songs/60068835.mkv +童唱-小鸟小鸟,http://em.21dtv.com/songs/60049681.mkv +王欣婷-想你想你,http://em.21dtv.com/songs/60049162.mkv +王心凌-想你想你,http://em.21dtv.com/songs/60049161.mkv +陈美龄-想你想你,http://em.21dtv.com/songs/60049160.mkv +臧天朔+那英-新娘新郎,http://em.21dtv.com/songs/60050915.mkv +凌峰-想念兄弟,http://em.21dtv.com/songs/60119281.mkv +黄思婷-西牛望月,http://em.21dtv.com/songs/60047937.mkv +吴依琳-新年万岁,http://em.21dtv.com/songs/60078858.mkv +刘羽庭-想念无眠,http://em.21dtv.com/songs/60127779.mkv +丁楠霓-新年童谣,http://em.21dtv.com/songs/60078857.mkv +陈慧珊-嫌你太好,http://em.21dtv.com/songs/60048485.mkv +B2-型男索女,http://em.21dtv.com/songs/60051172.mkv +刘涛-选你所爱(HD),http://em.21dtv.com/songs/10012711.mkv +刘涛-选你所爱,http://em.21dtv.com/songs/60097348.mkv +孙淑媚-戏弄人生,http://em.21dtv.com/songs/60048208.mkv +苏打绿-笑闹人间,http://em.21dtv.com/songs/60049942.mkv +于立成-想念日记,http://em.21dtv.com/songs/60049201.mkv +岑晓路-新女人花,http://em.21dtv.com/songs/60103245.mkv +陈瑞-新女人花,http://em.21dtv.com/songs/60098887.mkv +高安-寻你启事,http://em.21dtv.com/songs/60101704.mkv +阳光天使-新年恰恰,http://em.21dtv.com/songs/60072659.mkv +佚名-新娘情泪,http://em.21dtv.com/songs/60050910.mkv +王莹-想念母亲,http://em.21dtv.com/songs/60106132.mkv +岩宰仑-想念勐捧,http://em.21dtv.com/songs/60124806.mkv +陈小朵-想念妈妈,http://em.21dtv.com/songs/60131941.mkv +天堂飘雪-想念妈妈,http://em.21dtv.com/songs/60128944.mkv +小舟-想念妈妈,http://em.21dtv.com/songs/60098284.mkv +天堂飘雪-想念妈妈,http://em.21dtv.com/songs/60095191.mkv +司空雷-想你了亲,http://em.21dtv.com/songs/60104867.mkv +巧千金-新年来了,http://em.21dtv.com/songs/60108467.mkv +马晓梦-新年来了,http://em.21dtv.com/songs/60097466.mkv +巧千金-新年来了,http://em.21dtv.com/songs/60078853.mkv +吴依琳-新年辣辣,http://em.21dtv.com/songs/60078852.mkv +邓小龙+易琴-新年快乐,http://em.21dtv.com/songs/60132972.mkv +邓小龙-新年快乐,http://em.21dtv.com/songs/60132969.mkv +西单女孩-新年快乐,http://em.21dtv.com/songs/60132875.mkv +任然-新年快乐,http://em.21dtv.com/songs/60132188.mkv +邓小龙+易琴-新年快乐,http://em.21dtv.com/songs/60131864.mkv +李雪莱-新年快乐,http://em.21dtv.com/songs/60127061.mkv +宇宙少女+UNIQ-新年快乐,http://em.21dtv.com/songs/60125400.mkv +朱宇-新年快乐,http://em.21dtv.com/songs/60121753.mkv +管康海-新年快乐,http://em.21dtv.com/songs/60118832.mkv +罗逻圣-新年快乐,http://em.21dtv.com/songs/60117972.mkv +张丹锋-新年快乐,http://em.21dtv.com/songs/60117715.mkv +UNIQ+宇宙少女-新年快乐,http://em.21dtv.com/songs/60117511.mkv +UNIQ-新年快乐,http://em.21dtv.com/songs/60117510.mkv +小虎队+忧欢派对-新年快乐,http://em.21dtv.com/songs/60115124.mkv +善莹-新年快乐,http://em.21dtv.com/songs/60109239.mkv +陈治-新年快乐,http://em.21dtv.com/songs/60105493.mkv +小虎队+忧欢派对-新年快乐,http://em.21dtv.com/songs/60103241.mkv +年少-新年快乐,http://em.21dtv.com/songs/60094085.mkv +LOTTE GIRLS+0086男团-新年快乐,http://em.21dtv.com/songs/60093933.mkv +司文-新年快乐,http://em.21dtv.com/songs/60084233.mkv +吴依琳-新年快乐,http://em.21dtv.com/songs/60078851.mkv +四千金-新年快乐,http://em.21dtv.com/songs/60078850.mkv +司文+司徒兰芳+特热沁夫+韩雯淇-新年快乐,http://em.21dtv.com/songs/60078849.mkv +冯刚毅+黄伟香-新年快乐,http://em.21dtv.com/songs/60078848.mkv +杨东煜-新年快乐,http://em.21dtv.com/songs/60072658.mkv +西单女孩-新年快乐,http://em.21dtv.com/songs/60063131.mkv +张卫健-新年快乐,http://em.21dtv.com/songs/60050894.mkv +谢雨欣-新年快乐,http://em.21dtv.com/songs/60050893.mkv +小斯韵-新年快乐,http://em.21dtv.com/songs/60050892.mkv +五洲唱响乐团-新年快乐,http://em.21dtv.com/songs/60050891.mkv +水木年华-新年快乐,http://em.21dtv.com/songs/60050890.mkv +润土-新年快乐,http://em.21dtv.com/songs/60050889.mkv +刘凤屏-新年快乐,http://em.21dtv.com/songs/60050888.mkv +黄品源-新年快乐,http://em.21dtv.com/songs/60050887.mkv +甘国卫+胡美仪-新年快乐,http://em.21dtv.com/songs/60050886.mkv +风云帮-新年快乐,http://em.21dtv.com/songs/60050885.mkv +J-STAR-新年快乐,http://em.21dtv.com/songs/60050884.mkv +孙中亮-想念家乡,http://em.21dtv.com/songs/60115090.mkv +孙中亮-想念家乡,http://em.21dtv.com/songs/60086013.mkv +牛欣欣-新年吉祥,http://em.21dtv.com/songs/60078846.mkv +张倾城-新年贺喜,http://em.21dtv.com/songs/60050881.mkv +王馨-嬉闹荷塘,http://em.21dtv.com/songs/60110413.mkv +许金山-血暖河山,http://em.21dtv.com/songs/60129610.mkv +南拳妈妈-湘南海鸥,http://em.21dtv.com/songs/60048961.mkv +蔡佳男-想你会哭,http://em.21dtv.com/songs/60119950.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-新年欢歌,http://em.21dtv.com/songs/60078845.mkv +林显丞-想你归眠(无原唱),http://em.21dtv.com/songs/60049131.mkv +李玖龙-新年给力,http://em.21dtv.com/songs/60108576.mkv +群星-新年更好,http://em.21dtv.com/songs/60078841.mkv +恭硕良-系你个度,http://em.21dtv.com/songs/60048214.mkv +阎琰-新南飞雁,http://em.21dtv.com/songs/60087012.mkv +佚名-向你飞翔,http://em.21dtv.com/songs/60049321.mkv +文章-向你飞翔,http://em.21dtv.com/songs/60049320.mkv +岩光渤-想念父母,http://em.21dtv.com/songs/60124791.mkv +朱芃菲-新女儿情,http://em.21dtv.com/songs/60078867.mkv +林嘉欣-想念动作,http://em.21dtv.com/songs/60091440.mkv +王小明-想你的夜,http://em.21dtv.com/songs/60135548.mkv +秀兰玛雅-心内的雨,http://em.21dtv.com/songs/60127246.mkv +随性乐团-想你点烟,http://em.21dtv.com/songs/60114238.mkv +随性 Random-想你点烟,http://em.21dtv.com/songs/60114236.mkv +柳絮-想你的夜,http://em.21dtv.com/songs/60098528.mkv +茜拉-想你的夜,http://em.21dtv.com/songs/60097456.mkv +彦妮-想你的夜,http://em.21dtv.com/songs/60086983.mkv +邓川-想你的夜,http://em.21dtv.com/songs/60070046.mkv +信乐团-想你的夜,http://em.21dtv.com/songs/60049128.mkv +关喆-想你的夜,http://em.21dtv.com/songs/60049127.mkv +于台烟-想你的夜(无原唱),http://em.21dtv.com/songs/60049126.mkv +叶一茜+田亮-想你的笑,http://em.21dtv.com/songs/60096209.mkv +谢莉婷-想你的心,http://em.21dtv.com/songs/60086982.mkv +田亮+叶一茜-想你的笑,http://em.21dtv.com/songs/60061750.mkv +袁小迪-想你的心,http://em.21dtv.com/songs/60049123.mkv +蓝心湄-想你的心,http://em.21dtv.com/songs/60049122.mkv +秀兰玛雅-想你的心(无原唱),http://em.21dtv.com/songs/60049121.mkv +刘东明-想你的痛,http://em.21dtv.com/songs/60113285.mkv +刘旗-想你的痛,http://em.21dtv.com/songs/60078629.mkv +扎西顿珠+王芳-像你的人,http://em.21dtv.com/songs/60113535.mkv +陈思思-湘女多情,http://em.21dtv.com/songs/60121077.mkv +陈红-湘女多情,http://em.21dtv.com/songs/60088911.mkv +苗苗-湘女多情,http://em.21dtv.com/songs/60086006.mkv +罗嘉良-想你等你,http://em.21dtv.com/songs/60049130.mkv +Nora Says-昔内的门,http://em.21dtv.com/songs/60124963.mkv +祁隆+山楂妹+任妙音+孟小笛+彭丽嘉-新年大吉,http://em.21dtv.com/songs/60125987.mkv +王晓敏+万一-新年大吉,http://em.21dtv.com/songs/60121922.mkv +祁隆-新年大吉,http://em.21dtv.com/songs/60111327.mkv +玖壹壹-心内的话,http://em.21dtv.com/songs/60117052.mkv +龙劭华-心内的话,http://em.21dtv.com/songs/60050394.mkv +伍浩哲-心内的话(无原唱),http://em.21dtv.com/songs/60050393.mkv +红金升-心内的话(无原唱),http://em.21dtv.com/songs/60050392.mkv +黄文星-想你的歌,http://em.21dtv.com/songs/60109778.mkv +随性乐团-心内的歌,http://em.21dtv.com/songs/60097184.mkv +朱梓骁-想念的歌,http://em.21dtv.com/songs/60049184.mkv +孙维良-新年的窗,http://em.21dtv.com/songs/60050873.mkv +何润东-想你的爱,http://em.21dtv.com/songs/60049100.mkv +王雪晶+庄群诗-新年春联,http://em.21dtv.com/songs/60088336.mkv +孙艳-想你成痴,http://em.21dtv.com/songs/60104930.mkv +郑合惠子-向你奔跑,http://em.21dtv.com/songs/60135804.mkv +赵善存-想你不念,http://em.21dtv.com/songs/60119992.mkv +周安-想念爸妈,http://em.21dtv.com/songs/60131268.mkv +张善为-想你不哭,http://em.21dtv.com/songs/60049095.mkv +曾心梅-新娘悲歌,http://em.21dtv.com/songs/60095586.mkv +文夏-新娘悲歌,http://em.21dtv.com/songs/60078166.mkv +佚名-新娘悲歌,http://em.21dtv.com/songs/60050908.mkv +桂莹莹-虚拟爱情,http://em.21dtv.com/songs/60132639.mkv +胡杨林-虚拟爱情(演唱会),http://em.21dtv.com/songs/60084299.mkv +B2-虚拟爱情,http://em.21dtv.com/songs/60051539.mkv +马响+环环-想你爱你,http://em.21dtv.com/songs/60103712.mkv +陈才超-想你爱你,http://em.21dtv.com/songs/60100589.mkv +林俊吉-遐呢爱你,http://em.21dtv.com/songs/60065170.mkv +金玟岐-新娘阿花,http://em.21dtv.com/songs/60114153.mkv +唐飞-兄妹仔情,http://em.21dtv.com/songs/60084294.mkv +张霖-夏末之恋,http://em.21dtv.com/songs/60085985.mkv +SNH48-星梦之光,http://em.21dtv.com/songs/60109879.mkv +大勇+衡越-心满意足,http://em.21dtv.com/songs/60050383.mkv +陈慧娴-心满意足(演唱会),http://em.21dtv.com/songs/60050382.mkv +Ben-像梦一样,http://em.21dtv.com/songs/60122344.mkv +冀涛-熊猫先生,http://em.21dtv.com/songs/60080999.mkv +韩婷-血脉相连,http://em.21dtv.com/songs/60097239.mkv +韩婷-血脉相连(演唱会),http://em.21dtv.com/songs/60087024.mkv +李宇春-西门少年,http://em.21dtv.com/songs/60129225.mkv +索丽娜-卸磨杀驴,http://em.21dtv.com/songs/60132784.mkv +童丽-雪梅思君,http://em.21dtv.com/songs/60078974.mkv +李秋霞-雪梅思君,http://em.21dtv.com/songs/60051716.mkv +江蕙-雪梅思君,http://em.21dtv.com/songs/60051715.mkv +佚名-雪梅思君(无原唱),http://em.21dtv.com/songs/60051714.mkv +乌兰图雅-秀美三都,http://em.21dtv.com/songs/60131139.mkv +胡箫-小美人鱼,http://em.21dtv.com/songs/60097138.mkv +王冠乔-笑面人生,http://em.21dtv.com/songs/60130567.mkv +王军-笑面人生,http://em.21dtv.com/songs/60094216.mkv +王莱-戏梦人生,http://em.21dtv.com/songs/60084153.mkv +白燕升-戏梦人生,http://em.21dtv.com/songs/60068821.mkv +林立-笑面人生,http://em.21dtv.com/songs/60049941.mkv +陈慧琳-星梦情真,http://em.21dtv.com/songs/60051076.mkv +陈慧琳-星梦情真(演唱会),http://em.21dtv.com/songs/60051075.mkv +张新海-寻梦情缘,http://em.21dtv.com/songs/60081755.mkv +陈奕迅-戏迷情人,http://em.21dtv.com/songs/60110619.mkv +陈慧琳-星梦情人(演唱会),http://em.21dtv.com/songs/60051074.mkv +袁凤瑛-戏迷情人,http://em.21dtv.com/songs/60048207.mkv +罗时丰-厦门码头,http://em.21dtv.com/songs/60066455.mkv +云镁鑫-喜马拉雅,http://em.21dtv.com/songs/60132178.mkv +潘东亮-喜马拉雅(演唱会),http://em.21dtv.com/songs/60078520.mkv +李嘉石-喜马拉雅,http://em.21dtv.com/songs/60065165.mkv +佚名-喜玛拉雅,http://em.21dtv.com/songs/60048162.mkv +韩红-喜玛拉雅,http://em.21dtv.com/songs/60048161.mkv +艾雨-喜玛拉雅,http://em.21dtv.com/songs/60048160.mkv +佚名-喜马拉雅,http://em.21dtv.com/songs/60048158.mkv +黄艺明-寻觅理想,http://em.21dtv.com/songs/60106506.mkv +阳蕾-熊猫来了,http://em.21dtv.com/songs/60051488.mkv +甄秀珍-星梦泪痕,http://em.21dtv.com/songs/60090096.mkv +王江发+佳虹-心梦泪痕,http://em.21dtv.com/songs/60068858.mkv +佚名-星梦泪痕,http://em.21dtv.com/songs/60051073.mkv +佚名-新木兰辞,http://em.21dtv.com/songs/60050870.mkv +孙淑媚-行抹开脚(无原唱),http://em.21dtv.com/songs/60019949.mkv +李政飞+郝萌-兄妹开荒,http://em.21dtv.com/songs/60111987.mkv +佚名-兄妹开荒,http://em.21dtv.com/songs/60051473.mkv +王强-香茗苦丁,http://em.21dtv.com/songs/60103444.mkv +王劲峰-秀美井陉,http://em.21dtv.com/songs/60129384.mkv +富博洋-新满江红,http://em.21dtv.com/songs/60120471.mkv +西卿-新满江红,http://em.21dtv.com/songs/60050867.mkv +尹光-暇妹共你(演唱会),http://em.21dtv.com/songs/60078538.mkv +许冠英-虾妹共你(演唱会),http://em.21dtv.com/songs/60048231.mkv +李克勤-血脉沸腾,http://em.21dtv.com/songs/60051791.mkv +高义健+玉玲珑-新牡丹亭,http://em.21dtv.com/songs/60128609.mkv +杨桃-新牡丹亭,http://em.21dtv.com/songs/60125751.mkv +林翠萍-熄灭的梦,http://em.21dtv.com/songs/60088121.mkv +王彩桦-秀米的妈,http://em.21dtv.com/songs/60068887.mkv +天籁天-寻梦的蝶,http://em.21dtv.com/songs/60126750.mkv +鲁绒旦珠-寻梦草原,http://em.21dtv.com/songs/60128622.mkv +蒋蒋-西门吹雪,http://em.21dtv.com/songs/60132852.mkv +郭易-西门吹雪,http://em.21dtv.com/songs/60047935.mkv +办桌二人组-哮抹出声(无原唱),http://em.21dtv.com/songs/60049911.mkv +刘旗-小妹别哭,http://em.21dtv.com/songs/60120362.mkv +沈芯羽-熊猫宝贝,http://em.21dtv.com/songs/60051487.mkv +罗逻圣-寻觅爱人,http://em.21dtv.com/songs/60108803.mkv +罗时丰-细妹按靓,http://em.21dtv.com/songs/60048222.mkv +曹龙-小棉袄儿,http://em.21dtv.com/songs/60121740.mkv +朱桦-心灵之约,http://em.21dtv.com/songs/60084244.mkv +邓妙华+张行-心灵之约(演唱会),http://em.21dtv.com/songs/60065238.mkv +徐若瑄-希腊咒语,http://em.21dtv.com/songs/60047963.mkv +任家萱-心灵猪汤,http://em.21dtv.com/songs/60126594.mkv +东来东往-暹罗之恋,http://em.21dtv.com/songs/60109928.mkv +姬长乐-绚丽中国,http://em.21dtv.com/songs/60104918.mkv +萧煌奇-心里有针,http://em.21dtv.com/songs/60050352.mkv +陈晓东-心理游戏,http://em.21dtv.com/songs/60050356.mkv +陈晓东-心理游戏(演唱会),http://em.21dtv.com/songs/60050355.mkv +赖俊俊-西来意颂,http://em.21dtv.com/songs/60085974.mkv +弦子-心里有数,http://em.21dtv.com/songs/60065236.mkv +刘芮伊-心里有数,http://em.21dtv.com/songs/60050350.mkv +古巨基-心里有数,http://em.21dtv.com/songs/60050349.mkv +飞轮海-心里有数,http://em.21dtv.com/songs/60050348.mkv +陈晓东-心里有数,http://em.21dtv.com/songs/60050347.mkv +黎明-心里有数(演唱会),http://em.21dtv.com/songs/60050346.mkv +辛晓琪-心里有树,http://em.21dtv.com/songs/60050345.mkv +李梓沐-席李宜平,http://em.21dtv.com/songs/60132552.mkv +汤宝如-雪亮眼睛,http://em.21dtv.com/songs/60051710.mkv +陈零九-醒来以后,http://em.21dtv.com/songs/60124661.mkv +苗苗-新浏阳河,http://em.21dtv.com/songs/60086050.mkv +佛跳墙-心里有鬼,http://em.21dtv.com/songs/60109977.mkv +韩承东-心里有鬼,http://em.21dtv.com/songs/60050343.mkv +颜联武-心里有风,http://em.21dtv.com/songs/60050338.mkv +张蓉蓉-行路有风,http://em.21dtv.com/songs/60019947.mkv +许志安-心灵相通(演唱会),http://em.21dtv.com/songs/60050368.mkv +贺金-乡里乡亲,http://em.21dtv.com/songs/60112263.mkv +李春波-想来想去,http://em.21dtv.com/songs/60049071.mkv +卢秀梅-乡里乡亲,http://em.21dtv.com/songs/60048571.mkv +袁忠山+朱丽婷-新郎新娘,http://em.21dtv.com/songs/60098758.mkv +张启靓-新郎新娘,http://em.21dtv.com/songs/60098340.mkv +孟文豪+王晓娟-新郎新娘,http://em.21dtv.com/songs/60094460.mkv +黄名伟-雪落无声,http://em.21dtv.com/songs/60051711.mkv +陈中+陈秀玲-想来望去,http://em.21dtv.com/songs/60049070.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-喜乐无边,http://em.21dtv.com/songs/60078519.mkv +林忆莲-心里探险,http://em.21dtv.com/songs/60050336.mkv +刘洺瑒-夏恋沙滩,http://em.21dtv.com/songs/60126648.mkv +赵青岳-新浪三浪,http://em.21dtv.com/songs/60132934.mkv +ENERGY-夏令时间,http://em.21dtv.com/songs/60048364.mkv +RUBBER BAND-夏令时间(演唱会),http://em.21dtv.com/songs/60048363.mkv +元卫觉醒-下流社会,http://em.21dtv.com/songs/60048286.mkv +Twins-虚龄时代,http://em.21dtv.com/songs/60117506.mkv +欧阳尚尚-心乱如麻,http://em.21dtv.com/songs/60096369.mkv +吴倩莲-心乱如麻,http://em.21dtv.com/songs/60050378.mkv +卫兰-心乱如麻,http://em.21dtv.com/songs/60050377.mkv +古巨基-心乱如麻(演唱会),http://em.21dtv.com/songs/60050376.mkv +许冠杰-心里日记,http://em.21dtv.com/songs/60050335.mkv +容祖儿-心里日记(演唱会),http://em.21dtv.com/songs/60050334.mkv +杨竹青-仙林青梅,http://em.21dtv.com/songs/60048441.mkv +陈思安-小琉球恋,http://em.21dtv.com/songs/60106399.mkv +圆圆+石梅-仙灵情歌,http://em.21dtv.com/songs/60100805.mkv +石梅+圆圆-仙灵情歌,http://em.21dtv.com/songs/60085989.mkv +陈明-仙乐飘飘,http://em.21dtv.com/songs/60048440.mkv +牛欣欣-喜乐年华,http://em.21dtv.com/songs/60078518.mkv +陈红-喜乐年华,http://em.21dtv.com/songs/60048155.mkv +陈红-喜乐年华(演唱会),http://em.21dtv.com/songs/60048154.mkv +寒香-雪里梅影,http://em.21dtv.com/songs/60098277.mkv +丁浩然-夏恋蜜语,http://em.21dtv.com/songs/60067616.mkv +邓丽君-心里梦里,http://em.21dtv.com/songs/60098797.mkv +郭小霖-小霖秘籍,http://em.21dtv.com/songs/60049630.mkv +李小璐-小鹿乱撞,http://em.21dtv.com/songs/60049635.mkv +吴宗宪-瞎了聋了,http://em.21dtv.com/songs/60048233.mkv +蔡佳麟-心 离开,http://em.21dtv.com/songs/60132855.mkv +刘畊宏-心灵交战,http://em.21dtv.com/songs/60050366.mkv +唯莎-秀丽江山,http://em.21dtv.com/songs/60127870.mkv +范逸臣-秀丽江山,http://em.21dtv.com/songs/60124416.mkv +正歌-雪莲花开,http://em.21dtv.com/songs/60093723.mkv +苏畅-雪莲花开,http://em.21dtv.com/songs/60051708.mkv +赵薇-新兰花草,http://em.21dtv.com/songs/60050859.mkv +星弟-夏恋海边,http://em.21dtv.com/songs/60065173.mkv +吕方-心灵感应,http://em.21dtv.com/songs/60050365.mkv +1983-心灵感应,http://em.21dtv.com/songs/60050364.mkv +白雪-心灵归属,http://em.21dtv.com/songs/60131697.mkv +索南扎西-绚丽甘肃,http://em.21dtv.com/songs/60099440.mkv +克尔曼乐团-雪莲姑娘,http://em.21dtv.com/songs/60066505.mkv +潘玮柏-限量发行,http://em.21dtv.com/songs/60067619.mkv +佚名-小李飞刀,http://em.21dtv.com/songs/60049622.mkv +雪村-小李飞刀,http://em.21dtv.com/songs/60049621.mkv +罗文-小李飞刀,http://em.21dtv.com/songs/60049620.mkv +黄品源-小李飞刀(演唱会),http://em.21dtv.com/songs/60049619.mkv +佚名-心里的话,http://em.21dtv.com/songs/60050330.mkv +王杰-心里的话,http://em.21dtv.com/songs/60050329.mkv +白致瑶-心恋草原,http://em.21dtv.com/songs/60117078.mkv +吴建豪-心理测验,http://em.21dtv.com/songs/60050354.mkv +丘羽特-心临城下,http://em.21dtv.com/songs/60072644.mkv +郭燕-心灵彩虹,http://em.21dtv.com/songs/60050363.mkv +魏金栋+晏菲-新龙船调(演唱会),http://em.21dtv.com/songs/60061776.mkv +孔令奇-心里不甜,http://em.21dtv.com/songs/60090885.mkv +小蟹-下落不明,http://em.21dtv.com/songs/60105778.mkv +杨千嬅+黄耀明-下落不明(演唱会),http://em.21dtv.com/songs/60048289.mkv +黄耀明+容祖儿-下落不明(演唱会),http://em.21dtv.com/songs/60048288.mkv +达明一派-下落不明(演唱会),http://em.21dtv.com/songs/60048287.mkv +梁咏琪-心理报告,http://em.21dtv.com/songs/60092891.mkv +徐佳莹-修炼爱情,http://em.21dtv.com/songs/60118577.mkv +林俊杰-修炼爱情,http://em.21dtv.com/songs/60078955.mkv +周笔畅-星空之下,http://em.21dtv.com/songs/60078894.mkv +付笛声+任静-星空相对,http://em.21dtv.com/songs/60087268.mkv +群星-星空物语,http://em.21dtv.com/songs/60051065.mkv +王菲+郭富城-星空无限,http://em.21dtv.com/songs/60051064.mkv +爱东-笑看输赢,http://em.21dtv.com/songs/60109506.mkv +古品-笑看人生,http://em.21dtv.com/songs/60126676.mkv +龙千玉-笑看人生,http://em.21dtv.com/songs/60087003.mkv +吕小龙-笑看人生,http://em.21dtv.com/songs/60084224.mkv +叶倩文-笑看人生,http://em.21dtv.com/songs/60049937.mkv +谭咏麟-笑看人生,http://em.21dtv.com/songs/60049936.mkv +谭咏麟-笑看人生(演唱会),http://em.21dtv.com/songs/60049934.mkv +徐嘉良-笑看人生(无原唱),http://em.21dtv.com/songs/60049933.mkv +安仕伟-新喀秋莎,http://em.21dtv.com/songs/60108440.mkv +邓福如-星空恋曲,http://em.21dtv.com/songs/60061784.mkv +侧田-信口开河,http://em.21dtv.com/songs/60084259.mkv +钟sir+黄嘉雯-笑看今生,http://em.21dtv.com/songs/60130817.mkv +姜育恒-想哭就哭,http://em.21dtv.com/songs/60049069.mkv +佚名-想哭就哭(无原唱),http://em.21dtv.com/songs/60049068.mkv +林显丞-想开就好,http://em.21dtv.com/songs/60095674.mkv +蔡秋凤-想开就好,http://em.21dtv.com/songs/60049059.mkv +王识贤-心狂火着,http://em.21dtv.com/songs/60050325.mkv +梁洛施-先苦后甜,http://em.21dtv.com/songs/60048454.mkv +方力申-先苦后甜,http://em.21dtv.com/songs/60048453.mkv +梁洛施-先苦后甜(演唱会),http://em.21dtv.com/songs/60048452.mkv +庄学忠-笑看风云,http://em.21dtv.com/songs/60049930.mkv +郑少秋-笑看风云,http://em.21dtv.com/songs/60049929.mkv +郑少秋-笑看风云(演唱会),http://em.21dtv.com/songs/60049928.mkv +林子娟-心块滴血,http://em.21dtv.com/songs/60087007.mkv +佚名-行快的啦,http://em.21dtv.com/songs/60019946.mkv +陈浩德-行快的啦(演唱会),http://em.21dtv.com/songs/60019945.mkv +霍然-笑口常开,http://em.21dtv.com/songs/60131975.mkv +牛欣欣+刘姝辰-笑口常开,http://em.21dtv.com/songs/60078741.mkv +陈思思-笑口常开,http://em.21dtv.com/songs/60049938.mkv +陈慧琳-心口不一,http://em.21dtv.com/songs/60050324.mkv +王祖蓝-喜剧之王,http://em.21dtv.com/songs/60131666.mkv +李荣浩-喜剧之王,http://em.21dtv.com/songs/60106954.mkv +李荣浩-喜剧之王,http://em.21dtv.com/songs/60105991.mkv +罗强-相聚中国,http://em.21dtv.com/songs/60088432.mkv +陈松伶-相聚一刻,http://em.21dtv.com/songs/60048682.mkv +李直-乡间小调,http://em.21dtv.com/songs/60081075.mkv +彭羚-心继续跳,http://em.21dtv.com/songs/60050310.mkv +蔡琴-乡间小路,http://em.21dtv.com/songs/60126149.mkv +梦之旅-乡间小路,http://em.21dtv.com/songs/60102415.mkv +潘安邦-乡间小路,http://em.21dtv.com/songs/60048570.mkv +张文绮+赖慧如-小鸡小鸡,http://em.21dtv.com/songs/60130321.mkv +王蓉-小鸡小鸡,http://em.21dtv.com/songs/60105261.mkv +蒋承龙-小姐万岁,http://em.21dtv.com/songs/60098747.mkv +于金胜-相见无期(舞曲版),http://em.21dtv.com/songs/60078573.mkv +于金胜-相见无期,http://em.21dtv.com/songs/60071310.mkv +柔情-相见无期,http://em.21dtv.com/songs/60071309.mkv +萧人凤-仙剑问情,http://em.21dtv.com/songs/60048439.mkv +王洋-新疆味道,http://em.21dtv.com/songs/60129402.mkv +赵咏华-相见太晚,http://em.21dtv.com/songs/60048674.mkv +郭建宁-湘江听涛,http://em.21dtv.com/songs/60094317.mkv +吴克群-戏剧天才,http://em.21dtv.com/songs/60048202.mkv +关正杰-香江岁月,http://em.21dtv.com/songs/60092318.mkv +王舒-仙剑神曲,http://em.21dtv.com/songs/60065176.mkv +男人唐潮-新疆素描,http://em.21dtv.com/songs/60071348.mkv +红线女-香君守楼(戏曲),http://em.21dtv.com/songs/60093021.mkv +小刚-相见甚欢,http://em.21dtv.com/songs/60087708.mkv +刘瑞琦-喜剧收场,http://em.21dtv.com/songs/60123689.mkv +杨丞琳-喜剧收场,http://em.21dtv.com/songs/60107809.mkv +傅振辉+一绫-喜酒三杯,http://em.21dtv.com/songs/60048153.mkv +佚名-x+y就是爱,http://em.21dtv.com/songs/60006435.mkv +廖文强-喜剧人生,http://em.21dtv.com/songs/60118549.mkv +COOKIES-心急人上,http://em.21dtv.com/songs/60050306.mkv +邓丽欣-心急人上(演唱会),http://em.21dtv.com/songs/60050305.mkv +TWINS+AT17-心急人上(演唱会),http://em.21dtv.com/songs/60050304.mkv +叶振棠-戏剧人生,http://em.21dtv.com/songs/60048201.mkv +刘德华+叶振棠-戏剧人生,http://em.21dtv.com/songs/60048200.mkv +林忆莲-戏假情真(演唱会),http://em.21dtv.com/songs/60048198.mkv +梁欢-小机器人,http://em.21dtv.com/songs/60106039.mkv +风萧萧-小脚情人,http://em.21dtv.com/songs/60095160.mkv +李君-峡江情歌,http://em.21dtv.com/songs/60110269.mkv +民歌-峡江情歌,http://em.21dtv.com/songs/60091555.mkv +邓紫棋-想讲你知(演唱会),http://em.21dtv.com/songs/60065200.mkv +邓紫棋-想讲你知,http://em.21dtv.com/songs/60049058.mkv +周颂平-血溅鸟纱,http://em.21dtv.com/songs/60087608.mkv +林忆莲-心结难解,http://em.21dtv.com/songs/60050313.mkv +Yan Ting-小姐你好,http://em.21dtv.com/songs/60133311.mkv +翁立友-心将你藏,http://em.21dtv.com/songs/60032599.mkv +山子华-新江南岸,http://em.21dtv.com/songs/60115131.mkv +徐颢菲-仙剑梦缘,http://em.21dtv.com/songs/60078550.mkv +伍佰-小姐免惊,http://em.21dtv.com/songs/60049601.mkv +凤凰传奇-新疆玫瑰,http://em.21dtv.com/songs/60050853.mkv +马智宇-喜结良缘,http://em.21dtv.com/songs/60066453.mkv +陈芳语-星际旅行(HD),http://em.21dtv.com/songs/10012830.mkv +陈芳语+戴爱玲-星际旅行,http://em.21dtv.com/songs/60067667.mkv +王莉-湘江恋歌,http://em.21dtv.com/songs/60084185.mkv +王洋-新疆胡杨,http://em.21dtv.com/songs/60117040.mkv +邱芸子-相见恨晚,http://em.21dtv.com/songs/60120996.mkv +杨蔓+雨天-相见恨晚,http://em.21dtv.com/songs/60098517.mkv +赵咏华-相见恨晚,http://em.21dtv.com/songs/60061747.mkv +苏慧伦-相见恨晚,http://em.21dtv.com/songs/60048672.mkv +彭佳慧-相见恨晚,http://em.21dtv.com/songs/60048671.mkv +张学友-小姐贵姓(演唱会),http://em.21dtv.com/songs/60049599.mkv +孟文豪-新疆姑娘,http://em.21dtv.com/songs/60072654.mkv +巴哈尔古丽-新疆姑娘,http://em.21dtv.com/songs/60050849.mkv +顾海滨-新疆姑娘(演唱会),http://em.21dtv.com/songs/60050848.mkv +小秋-西京古道,http://em.21dtv.com/songs/60122683.mkv +叶俊华-相聚广场,http://em.21dtv.com/songs/60096210.mkv +中岛爱-星间飞行(演唱会),http://em.21dtv.com/songs/60068868.mkv +刘一祯-孝敬父母,http://em.21dtv.com/songs/60049901.mkv +陈胜屿-虚假的真,http://em.21dtv.com/songs/60118166.mkv +胜屿-虚假的真,http://em.21dtv.com/songs/60078958.mkv +王菲-心惊胆战,http://em.21dtv.com/songs/60050317.mkv +麦贝儿+刘振宇+罗梓萤+钟一宪-星级导航,http://em.21dtv.com/songs/60051058.mkv +刘美君-小惊大怪(演唱会),http://em.21dtv.com/songs/60049608.mkv +德德玛-乡间的风,http://em.21dtv.com/songs/60087892.mkv +一飞-小姐的爱,http://em.21dtv.com/songs/60084216.mkv +李书伟-新疆兵情,http://em.21dtv.com/songs/60120599.mkv +巴特-孝敬爸妈,http://em.21dtv.com/songs/60130284.mkv +韩磊+王霞-相聚北京,http://em.21dtv.com/songs/60048678.mkv +王东羽-相见不多,http://em.21dtv.com/songs/60124243.mkv +小鸡哔哔-小鸡哔哔,http://em.21dtv.com/songs/60109281.mkv +苏仨-小鸡哔哔,http://em.21dtv.com/songs/60107152.mkv +萧小M-小鸡哔哔,http://em.21dtv.com/songs/60106240.mkv +洛天依-小鸡哔哔,http://em.21dtv.com/songs/60106070.mkv +单九希-戏剧爱情,http://em.21dtv.com/songs/60072596.mkv +梁奕蓝-喜欢自由,http://em.21dtv.com/songs/60124162.mkv +薛之谦-星河之役,http://em.21dtv.com/songs/60063228.mkv +乔炫轩-小孩子气,http://em.21dtv.com/songs/60101878.mkv +郑秀文-喜欢憎你,http://em.21dtv.com/songs/60048151.mkv +郑秀文-喜欢憎你(演唱会),http://em.21dtv.com/songs/60048150.mkv +谢震东-邂逅织金,http://em.21dtv.com/songs/60127411.mkv +盛希-写好中国,http://em.21dtv.com/songs/60117101.mkv +金志文+胡桑-孝和中国,http://em.21dtv.com/songs/60108934.mkv +金志文-孝和中国,http://em.21dtv.com/songs/60080597.mkv +沈文程-小河之歌(无原唱),http://em.21dtv.com/songs/60049580.mkv +薛凯琪-小黑与我,http://em.21dtv.com/songs/60049583.mkv +许志安+梅艳芳-先慌夜谈,http://em.21dtv.com/songs/60093146.mkv +许志安+梅艳芳-先谎夜谈,http://em.21dtv.com/songs/60048450.mkv +雷雨哥-学会原谅,http://em.21dtv.com/songs/60131974.mkv +冰冷-心灰意冷,http://em.21dtv.com/songs/60105620.mkv +沈芳如-心灰意冷,http://em.21dtv.com/songs/60050298.mkv +蓝心湄-心慌意乱,http://em.21dtv.com/songs/60050297.mkv +黑鸭子演唱组-心海星愿,http://em.21dtv.com/songs/60050282.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-嘻哈新年,http://em.21dtv.com/songs/60078509.mkv +雷卓亮-喜欢夏季,http://em.21dtv.com/songs/60093632.mkv +阿勇+泓凯-新好兄弟,http://em.21dtv.com/songs/60128495.mkv +叶世荣-薪火相传,http://em.21dtv.com/songs/60080037.mkv +农夫-学海无涯,http://em.21dtv.com/songs/60051639.mkv +农夫-学海无涯(演唱会),http://em.21dtv.com/songs/60051638.mkv +陈豪-心花无限,http://em.21dtv.com/songs/60050295.mkv +庄学忠-小河弯弯,http://em.21dtv.com/songs/60049579.mkv +佚名-小河弯弯,http://em.21dtv.com/songs/60049578.mkv +杨云阁-杏花天影,http://em.21dtv.com/songs/60084286.mkv +李进-新黄土谣,http://em.21dtv.com/songs/60050840.mkv +萧敬腾-小河淌水,http://em.21dtv.com/songs/60130706.mkv +白致瑶-小河淌水,http://em.21dtv.com/songs/60117076.mkv +阿宝+王二妮-小河淌水,http://em.21dtv.com/songs/60106368.mkv +龚琳娜-小河淌水,http://em.21dtv.com/songs/60086992.mkv +玖月奇迹-小河淌水(演唱会),http://em.21dtv.com/songs/60084211.mkv +吴碧霞-小河淌水,http://em.21dtv.com/songs/60078692.mkv +A ONE-小河淌水,http://em.21dtv.com/songs/60066471.mkv +子祺-小河淌水,http://em.21dtv.com/songs/60063496.mkv +朱婧-小河淌水,http://em.21dtv.com/songs/60049577.mkv +佚名-小河淌水,http://em.21dtv.com/songs/60049576.mkv +炎黄赤子-小河淌水,http://em.21dtv.com/songs/60049575.mkv +谭晶-小河淌水,http://em.21dtv.com/songs/60049574.mkv +腾格尔-小河淌水(演唱会),http://em.21dtv.com/songs/60049573.mkv +张燕-小河倘水,http://em.21dtv.com/songs/60049572.mkv +风之琳-西湖神韵,http://em.21dtv.com/songs/60104592.mkv +颜佳-西湖山水,http://em.21dtv.com/songs/60047928.mkv +江蕙-心狠手辣,http://em.21dtv.com/songs/60050287.mkv +易欣-心火燃烧,http://em.21dtv.com/songs/60080820.mkv +叶丽仪-仙鹤情缘,http://em.21dtv.com/songs/60048436.mkv +枫桥-仙湖秋色,http://em.21dtv.com/songs/60085988.mkv +刘德华-新好情人(演唱会),http://em.21dtv.com/songs/60050836.mkv +胡斌-西海情歌,http://em.21dtv.com/songs/60127309.mkv +降央卓玛-西海情歌,http://em.21dtv.com/songs/60047923.mkv +刀郎-西海情歌,http://em.21dtv.com/songs/60047922.mkv +凤飞飞-雪花片片,http://em.21dtv.com/songs/60051693.mkv +宋雪莱-雪花飘来,http://em.21dtv.com/songs/60051697.mkv +陈瑞-新好男人,http://em.21dtv.com/songs/60106413.mkv +张伦硕-新好男人,http://em.21dtv.com/songs/60065252.mkv +陈瑞-新好男人,http://em.21dtv.com/songs/60061775.mkv +胥拉齐-新花怒放,http://em.21dtv.com/songs/60127318.mkv +侯延彬-心花怒放,http://em.21dtv.com/songs/60113265.mkv +容祖儿-心花怒放,http://em.21dtv.com/songs/60050293.mkv +草蜢-心花怒放(演唱会),http://em.21dtv.com/songs/60050292.mkv +孟彦-杏花满山,http://em.21dtv.com/songs/60122663.mkv +薛启超+王彩艳-西湖美人,http://em.21dtv.com/songs/60105357.mkv +张惠妹-星火燎原,http://em.21dtv.com/songs/60099229.mkv +吴彤-巡回路演,http://em.21dtv.com/songs/60051855.mkv +佚名-新婚旅行,http://em.21dtv.com/songs/60050843.mkv +杨钰莹-小河恋曲,http://em.21dtv.com/songs/60049569.mkv +锦绣二重唱-学会离开,http://em.21dtv.com/songs/60051647.mkv +雷琛瑜-学会恋爱,http://em.21dtv.com/songs/60100619.mkv +卢巧音-喜欢恋爱,http://em.21dtv.com/songs/60048120.mkv +卢巧音-喜欢恋爱(演唱会),http://em.21dtv.com/songs/60048119.mkv +马可谦-杏花开了,http://em.21dtv.com/songs/60116387.mkv +王啸坤-笑话卡拉,http://em.21dtv.com/songs/60078740.mkv +林德信-新婚快乐,http://em.21dtv.com/songs/60072653.mkv +军嫂组合-新婚快乐,http://em.21dtv.com/songs/60067664.mkv +伍思凯-学会快乐(演唱会),http://em.21dtv.com/songs/60051646.mkv +佚名-新婚快乐,http://em.21dtv.com/songs/60050842.mkv +周杰伦-嘻哈空姐,http://em.21dtv.com/songs/60048051.mkv +樊凡-循环记忆,http://em.21dtv.com/songs/60107851.mkv +刘珊珊-学会坚强,http://em.21dtv.com/songs/60051645.mkv +郭静-消耗寂寞,http://em.21dtv.com/songs/60131893.mkv +苏打绿-喜欢寂寞,http://em.21dtv.com/songs/60065164.mkv +佚名-喜欢就好,http://em.21dtv.com/songs/60095406.mkv +蔡小虎-小虎酒场,http://em.21dtv.com/songs/60084213.mkv +晓依-新欢旧爱,http://em.21dtv.com/songs/60131475.mkv +冷漠-新欢旧爱,http://em.21dtv.com/songs/60080197.mkv +李凯-新欢旧爱,http://em.21dtv.com/songs/60050839.mkv +烟圈蔓延-邂逅回忆,http://em.21dtv.com/songs/60135524.mkv +龚淑均-雪花红梅,http://em.21dtv.com/songs/60062391.mkv +鲲鹏小分队-新好汉歌,http://em.21dtv.com/songs/60129825.mkv +96猫-嘘の火花,http://em.21dtv.com/songs/60133162.mkv +欢子-相互关照,http://em.21dtv.com/songs/60088158.mkv +欢子-相互关注,http://em.21dtv.com/songs/60066457.mkv +梅了了-雪花姑娘,http://em.21dtv.com/songs/60101405.mkv +许志安-星河感觉,http://em.21dtv.com/songs/60051055.mkv +许志安-星河感觉(演唱会),http://em.21dtv.com/songs/60051054.mkv +雷颂德-星河感觉(演唱会),http://em.21dtv.com/songs/60051053.mkv +陈乔恩-喜欢孤独,http://em.21dtv.com/songs/60070029.mkv +陌小聪+晓晓文-学会放下,http://em.21dtv.com/songs/60078967.mkv +王成勇-学会放弃,http://em.21dtv.com/songs/60094227.mkv +晓月-学会放弃,http://em.21dtv.com/songs/60071384.mkv +袁哲-仙鹤飞飞,http://em.21dtv.com/songs/60048435.mkv +赵红军-雪花飞吧,http://em.21dtv.com/songs/60106305.mkv +蔡献华-雪花儿飘,http://em.21dtv.com/songs/60084310.mkv +郭旭岗-雪花儿飘,http://em.21dtv.com/songs/60051692.mkv +蔡献华+甜美真-雪花儿飘,http://em.21dtv.com/songs/60051691.mkv +许冠杰-胸怀大志,http://em.21dtv.com/songs/60093141.mkv +威利-胸怀大志,http://em.21dtv.com/songs/60051476.mkv +威利-胸怀大志(演唱会),http://em.21dtv.com/songs/60051475.mkv +唐美华-西湖的你,http://em.21dtv.com/songs/60109235.mkv +佟丽娅+陈思诚-心花朵朵,http://em.21dtv.com/songs/60121383.mkv +谢霆锋-虚幻的爱,http://em.21dtv.com/songs/60093195.mkv +周国贤-消化不良,http://em.21dtv.com/songs/60127845.mkv +插班生-小孩别哭,http://em.21dtv.com/songs/60125607.mkv +黑棒组合-嘻哈不断,http://em.21dtv.com/songs/60048050.mkv +许冠杰-香港制造,http://em.21dtv.com/songs/60048919.mkv +方伊琪-香港之夜,http://em.21dtv.com/songs/60078601.mkv +刘惜君-香港之夜,http://em.21dtv.com/songs/60071316.mkv +邓丽君-香港之夜,http://em.21dtv.com/songs/60048918.mkv +佚名-香港之夜(快四),http://em.21dtv.com/songs/60048917.mkv +戴佩妮-习惯这样,http://em.21dtv.com/songs/60048080.mkv +SNH48-星光之梦,http://em.21dtv.com/songs/60113190.mkv +余天龙-小港之恋,http://em.21dtv.com/songs/60122485.mkv +余天龙-小港之恋,http://em.21dtv.com/songs/60108298.mkv +李度-习惯自己,http://em.21dtv.com/songs/60048081.mkv +朱海君+翁立友-心肝着火,http://em.21dtv.com/songs/60050267.mkv +王相周-献歌祖国,http://em.21dtv.com/songs/60067620.mkv +彭炽权+倪惠英-璇宫夜宴(戏曲),http://em.21dtv.com/songs/60092659.mkv +孙澜澜-习惯有你,http://em.21dtv.com/songs/60123824.mkv +李小龙+歪小九-习惯有你,http://em.21dtv.com/songs/60084148.mkv +罗艺-习惯有你,http://em.21dtv.com/songs/60068820.mkv +庾澄庆-下个雨季,http://em.21dtv.com/songs/60080043.mkv +佚名-想过以后(无原唱),http://em.21dtv.com/songs/60049037.mkv +SECRET-星光月光,http://em.21dtv.com/songs/60078891.mkv +张又亓-西瓜先生,http://em.21dtv.com/songs/60106823.mkv +东山少爷-西关小姐,http://em.21dtv.com/songs/60120274.mkv +杨千嬅-香港小姐,http://em.21dtv.com/songs/60048914.mkv +元卫觉醒-像个小孩,http://em.21dtv.com/songs/60087344.mkv +谭咏麟-香港香港(演唱会),http://em.21dtv.com/songs/60048913.mkv +佚名-香港香港(无原唱),http://em.21dtv.com/songs/60048912.mkv +卓文萱-下个幸福,http://em.21dtv.com/songs/60048282.mkv +李湘-习惯委屈,http://em.21dtv.com/songs/60048078.mkv +胜屿-习惯颓废,http://em.21dtv.com/songs/60079983.mkv +金小曦-性感挑逗,http://em.21dtv.com/songs/60127504.mkv +容祖儿-习惯失恋,http://em.21dtv.com/songs/60048077.mkv +容祖儿-习惯失恋(演唱会),http://em.21dtv.com/songs/60048076.mkv +草蜢-习惯失恋(演唱会),http://em.21dtv.com/songs/60048075.mkv +李英贤+郑亨敦-像个傻瓜,http://em.21dtv.com/songs/60111995.mkv +张栋梁-新歌试唱,http://em.21dtv.com/songs/60087825.mkv +张栋梁-流行试唱,http://em.21dtv.com/songs/60050834.mkv +米靓-侠骨柔情,http://em.21dtv.com/songs/60119870.mkv +钱万千+王莹-侠骨柔情,http://em.21dtv.com/songs/60106355.mkv +阎维文-心甘情愿(演唱会),http://em.21dtv.com/songs/60078761.mkv +张立基-心甘情愿,http://em.21dtv.com/songs/60050250.mkv +俞隆华-心甘情愿,http://em.21dtv.com/songs/60050249.mkv +佚名-心甘情愿,http://em.21dtv.com/songs/60050248.mkv +熊美玲-心甘情愿,http://em.21dtv.com/songs/60050247.mkv +小雪-心甘情愿,http://em.21dtv.com/songs/60050246.mkv +王应印-心甘情愿,http://em.21dtv.com/songs/60050245.mkv +彭莉-心甘情愿,http://em.21dtv.com/songs/60050244.mkv +那英-心甘情愿,http://em.21dtv.com/songs/60050243.mkv +梁雁翎-心甘情愿,http://em.21dtv.com/songs/60050242.mkv +李克勤-心甘情愿,http://em.21dtv.com/songs/60050241.mkv +李琛-心甘情愿,http://em.21dtv.com/songs/60050240.mkv +黄妃-心甘情愿,http://em.21dtv.com/songs/60050239.mkv +光良-心甘情愿,http://em.21dtv.com/songs/60050238.mkv +凤娘-心甘情愿,http://em.21dtv.com/songs/60050237.mkv +阿桑-心甘情愿,http://em.21dtv.com/songs/60050236.mkv +林玉英-心甘情愿(无原唱),http://em.21dtv.com/songs/60050235.mkv +丘竣霆-虚构情歌,http://em.21dtv.com/songs/60123587.mkv +TWINS-香港纽约(演唱会),http://em.21dtv.com/songs/60048911.mkv +伍婉琛-心跟你心,http://em.21dtv.com/songs/60050272.mkv +游媄镁-想跟你说(无原唱),http://em.21dtv.com/songs/60049035.mkv +罗百吉-性感女孩,http://em.21dtv.com/songs/60087022.mkv +佚名-香港你好,http://em.21dtv.com/songs/60048910.mkv +阎维文-香港你好,http://em.21dtv.com/songs/60048909.mkv +阿鲁阿卓-献给明天,http://em.21dtv.com/songs/60048547.mkv +沈梓萌-献给母亲,http://em.21dtv.com/songs/60085990.mkv +佚名-香港妹妹,http://em.21dtv.com/songs/60048908.mkv +卜学亮-星光麦咭,http://em.21dtv.com/songs/60097346.mkv +谭晶-雄关漫道,http://em.21dtv.com/songs/60108011.mkv +郑秀文-心肝命定,http://em.21dtv.com/songs/60093306.mkv +郑秀文-心肝命碇,http://em.21dtv.com/songs/60050263.mkv +容祖儿-心甘命抵,http://em.21dtv.com/songs/60050234.mkv +候美仪-心肝落雪,http://em.21dtv.com/songs/60050262.mkv +子曰秋野-香菇蓝瘦,http://em.21dtv.com/songs/60131321.mkv +曾心梅-香港恋情,http://em.21dtv.com/songs/60095593.mkv +罗时丰-香港恋情,http://em.21dtv.com/songs/60078600.mkv +黄瑞琪-香港恋情,http://em.21dtv.com/songs/60048906.mkv +李红-香格里拉,http://em.21dtv.com/songs/60135372.mkv +音乐走廊-香格里拉,http://em.21dtv.com/songs/60093709.mkv +郑少秋-香港料理,http://em.21dtv.com/songs/60093291.mkv +女子十二乐坊-香格里拉,http://em.21dtv.com/songs/60089778.mkv +吕珊-香格里拉(演唱会),http://em.21dtv.com/songs/60084183.mkv +黄玠-香格里拉(演唱会),http://em.21dtv.com/songs/60084182.mkv +张德兰-香格里拉,http://em.21dtv.com/songs/60078605.mkv +童丽-香格里拉,http://em.21dtv.com/songs/60078604.mkv +潘秀琼-香格里拉(演唱会),http://em.21dtv.com/songs/60078603.mkv +方伊琪-香格里拉(演唱会),http://em.21dtv.com/songs/60078602.mkv +宗庸卓玛-香格里拉,http://em.21dtv.com/songs/60048928.mkv +卓依婷-香格里拉,http://em.21dtv.com/songs/60048927.mkv +杨燕-香格里拉,http://em.21dtv.com/songs/60048926.mkv +魏如萱-香格里拉,http://em.21dtv.com/songs/60048925.mkv +容中尔甲-香格里拉,http://em.21dtv.com/songs/60048924.mkv +静婷+刘韵+崔萍-香格里拉,http://em.21dtv.com/songs/60048923.mkv +陈星-香格里拉,http://em.21dtv.com/songs/60048922.mkv +群星-香格里拉(演唱会),http://em.21dtv.com/songs/60048921.mkv +于逸飞-下个街头,http://em.21dtv.com/songs/60063293.mkv +佚名-香港假期,http://em.21dtv.com/songs/60048905.mkv +孙露-习惯寂寞,http://em.21dtv.com/songs/60078513.mkv +张信哲-习惯寂寞,http://em.21dtv.com/songs/60048068.mkv +萧煌奇-下个街角,http://em.21dtv.com/songs/60122071.mkv +萧煌奇-下个街角,http://em.21dtv.com/songs/60120912.mkv +何李-下个季节,http://em.21dtv.com/songs/60094809.mkv +罗志祥-习惯就好,http://em.21dtv.com/songs/60048069.mkv +汪峰+张恒远-像个孩子,http://em.21dtv.com/songs/60081500.mkv +汪峰-像个孩子,http://em.21dtv.com/songs/60078663.mkv +梁博-像个孩子,http://em.21dtv.com/songs/60078662.mkv +元卫觉醒-像个孩子,http://em.21dtv.com/songs/60049383.mkv +甄妮-心归何处(无原唱),http://em.21dtv.com/songs/60050277.mkv +胡龄萌-习惯孤单,http://em.21dtv.com/songs/60123096.mkv +李梓菡-习惯孤单,http://em.21dtv.com/songs/60066452.mkv +打扰一下乐团-像个疯子,http://em.21dtv.com/songs/60126931.mkv +安崇艺-想过分手,http://em.21dtv.com/songs/60114491.mkv +叶德娴-心肝房客(演唱会),http://em.21dtv.com/songs/60050259.mkv +陈瑞-习惯负担(HD),http://em.21dtv.com/songs/10012825.mkv +[Group] +groupName=十六万歌曲MV等 - 58 +陈瑞-习惯负担,http://em.21dtv.com/songs/60072594.mkv +范晓萱-小鬼当心,http://em.21dtv.com/songs/60088551.mkv +china宝贝-小鬼当心,http://em.21dtv.com/songs/60087181.mkv +野仔-香港大厦,http://em.21dtv.com/songs/60063265.mkv +欢子-习惯单身,http://em.21dtv.com/songs/60084147.mkv +黄明志+连绮岚-学广东话,http://em.21dtv.com/songs/60084303.mkv +王识贤-下港的风,http://em.21dtv.com/songs/60048280.mkv +王建杰-下港的风,http://em.21dtv.com/songs/60048279.mkv +大庆小芳-星光大道,http://em.21dtv.com/songs/60118483.mkv +王宝-小狗丢丢,http://em.21dtv.com/songs/60086020.mkv +小F4-小狗豆豆,http://em.21dtv.com/songs/60049560.mkv +罗中旭+伍思凯-星光灿烂,http://em.21dtv.com/songs/60084261.mkv +庄莹-星光灿烂,http://em.21dtv.com/songs/60051047.mkv +罗中旭-星光灿烂,http://em.21dtv.com/songs/60051046.mkv +罗中旭-星光灿烂(演唱会),http://em.21dtv.com/songs/60051045.mkv +郭静-想个不停,http://em.21dtv.com/songs/60049033.mkv +程瑾-习惯不了,http://em.21dtv.com/songs/60097142.mkv +吕珊-星光背后(演唱会),http://em.21dtv.com/songs/60051044.mkv +逍遥香香-心肝宝贝,http://em.21dtv.com/songs/60132961.mkv +赤龙-心肝宝贝,http://em.21dtv.com/songs/60120971.mkv +段莉莉+大约冬季-心肝宝贝,http://em.21dtv.com/songs/60107010.mkv +章小军-心肝宝贝,http://em.21dtv.com/songs/60097186.mkv +阿牛-心肝宝贝,http://em.21dtv.com/songs/60097185.mkv +樊奕敏-心肝宝贝(演唱会),http://em.21dtv.com/songs/60065231.mkv +佚名-心肝宝贝,http://em.21dtv.com/songs/60050258.mkv +任贤齐+徐熙媛-心肝宝贝,http://em.21dtv.com/songs/60050257.mkv +梅艳芳-心肝宝贝,http://em.21dtv.com/songs/60050256.mkv +刘德华-心肝宝贝,http://em.21dtv.com/songs/60050255.mkv +凤飞飞-心肝宝贝,http://em.21dtv.com/songs/60050254.mkv +张伟文-心肝宝贝(演唱会),http://em.21dtv.com/songs/60050253.mkv +刘德华-心肝宝贝(演唱会),http://em.21dtv.com/songs/60050252.mkv +李依-心肝宝贝(无原唱),http://em.21dtv.com/songs/60050251.mkv +河口恭吾-幸福の歌,http://em.21dtv.com/songs/60105216.mkv +祝兰兰-幸福之愿,http://em.21dtv.com/songs/60080876.mkv +甲子慧-幸福滋味,http://em.21dtv.com/songs/60117059.mkv +侧田-幸福止痛,http://em.21dtv.com/songs/60133375.mkv +尤国通-幸福指数,http://em.21dtv.com/songs/60086062.mkv +尤国通-幸福指数(演唱会),http://em.21dtv.com/songs/60084285.mkv +谢霆锋-先发制人,http://em.21dtv.com/songs/60048448.mkv +郑进一-幸福支票,http://em.21dtv.com/songs/60051404.mkv +徐晶晶-幸福之旅,http://em.21dtv.com/songs/60094113.mkv +龙千玉-幸福之恋,http://em.21dtv.com/songs/60071374.mkv +荣嵘-幸福之路,http://em.21dtv.com/songs/60065279.mkv +张莹-幸福之家,http://em.21dtv.com/songs/60111090.mkv +SUPPER MOMENT-幸福之歌,http://em.21dtv.com/songs/60111654.mkv +常思思-幸福中国,http://em.21dtv.com/songs/60102177.mkv +索朗扎西-幸福中国,http://em.21dtv.com/songs/60078939.mkv +索南扎西-幸福中国,http://em.21dtv.com/songs/60072671.mkv +李丹阳-幸福中国,http://em.21dtv.com/songs/60071375.mkv +马艳-幸福中国,http://em.21dtv.com/songs/60068883.mkv +阎维文+张也-幸福赞歌(演唱会),http://em.21dtv.com/songs/60068882.mkv +韩琳-幸福中国,http://em.21dtv.com/songs/60066497.mkv +佚名-先锋之歌,http://em.21dtv.com/songs/60048449.mkv +李明洋-幸福专车,http://em.21dtv.com/songs/60135363.mkv +影视歌曲-像风一样,http://em.21dtv.com/songs/60087868.mkv +好男儿-像飞一样,http://em.21dtv.com/songs/60087631.mkv +陈永峰-幸福永远,http://em.21dtv.com/songs/60084281.mkv +咏峰-幸福永远(演唱会),http://em.21dtv.com/songs/60071373.mkv +时金钰-幸福永远,http://em.21dtv.com/songs/60062908.mkv +HERO-像飞一样,http://em.21dtv.com/songs/60049379.mkv +唐冰冰+孙蓝-消防英雄,http://em.21dtv.com/songs/60099167.mkv +庞龙-相逢一笑,http://em.21dtv.com/songs/60048655.mkv +黄智博-幸福余温,http://em.21dtv.com/songs/60051395.mkv +陈仁丰-幸福意外,http://em.21dtv.com/songs/60051393.mkv +周虹+江智民-幸福元素,http://em.21dtv.com/songs/60113347.mkv +石梅-幸福元素,http://em.21dtv.com/songs/60051397.mkv +卓文萱-幸福氧气,http://em.21dtv.com/songs/60051388.mkv +汤非+李晖-幸福阳光,http://em.21dtv.com/songs/60116102.mkv +鸿飞-幸福有过,http://em.21dtv.com/songs/60113107.mkv +伍思凯-幸福药草,http://em.21dtv.com/songs/60051389.mkv +郑秀文-幸福预备,http://em.21dtv.com/songs/60093304.mkv +红苹果组合-幸福预报,http://em.21dtv.com/songs/60091811.mkv +Apple5-幸福预报,http://em.21dtv.com/songs/60090389.mkv +李依娃-幸福形状,http://em.21dtv.com/songs/60125692.mkv +元卫觉醒-幸福下载,http://em.21dtv.com/songs/60051381.mkv +孙楠-幸福宣言,http://em.21dtv.com/songs/60079988.mkv +孙楠+罗中旭-幸福宣言,http://em.21dtv.com/songs/60078937.mkv +刘向圆-幸福向圆,http://em.21dtv.com/songs/60068879.mkv +张学友-幸福宣言,http://em.21dtv.com/songs/60051386.mkv +蒋寒凝-幸福小巷,http://em.21dtv.com/songs/60051385.mkv +孙楠-幸福相守,http://em.21dtv.com/songs/60051382.mkv +刘燕琳-幸福下去,http://em.21dtv.com/songs/60128834.mkv +陈思思-幸福小康,http://em.21dtv.com/songs/60120084.mkv +李丹阳-幸福香河,http://em.21dtv.com/songs/60100111.mkv +小昔米-幸福小狗,http://em.21dtv.com/songs/60051384.mkv +洪艳-幸福相伴,http://em.21dtv.com/songs/60070092.mkv +S.H.E-幸福位置,http://em.21dtv.com/songs/60090421.mkv +张禄籴-幸福未满,http://em.21dtv.com/songs/60086061.mkv +罗凯莹-幸福未来,http://em.21dtv.com/songs/60115331.mkv +毕书尽-幸福无关,http://em.21dtv.com/songs/60084280.mkv +夏青-幸福无比,http://em.21dtv.com/songs/60078934.mkv +何伟图-幸福太远,http://em.21dtv.com/songs/60078931.mkv +罗志祥+秀智-幸福特调,http://em.21dtv.com/songs/60117122.mkv +拾参乐团-幸福天堂,http://em.21dtv.com/songs/60051376.mkv +周逸涵-幸福台阶,http://em.21dtv.com/songs/60051374.mkv +A Lin-幸福太短,http://em.21dtv.com/songs/60121201.mkv +成成-相逢是缘,http://em.21dtv.com/songs/60112709.mkv +庞龙-幸福誓言,http://em.21dtv.com/songs/60051371.mkv +王心凌-幸福神偷,http://em.21dtv.com/songs/60091694.mkv +苏泉-幸福山水,http://em.21dtv.com/songs/60068876.mkv +王非-心非所属,http://em.21dtv.com/songs/60050229.mkv +T.R.Y-幸福silent night,http://em.21dtv.com/songs/60051225.mkv +强歌-幸福失联,http://em.21dtv.com/songs/60129133.mkv +鲍蓉-幸福生活,http://em.21dtv.com/songs/60051365.mkv +李小龙-幸福生活(演唱会),http://em.21dtv.com/songs/60051364.mkv +耿为华-幸福山歌(演唱会),http://em.21dtv.com/songs/60070091.mkv +祖海-幸褔山歌,http://em.21dtv.com/songs/60051407.mkv +章小军-幸福时光,http://em.21dtv.com/songs/60051367.mkv +王莹-幸福时光,http://em.21dtv.com/songs/60051366.mkv +祖海-幸福山歌,http://em.21dtv.com/songs/60051361.mkv +王雯-幸福时代,http://em.21dtv.com/songs/60078928.mkv +叶蓓-幸福深处,http://em.21dtv.com/songs/60051363.mkv +王铮亮-幸福深处,http://em.21dtv.com/songs/60051362.mkv +上海交大EMBA合唱团-相逢送别,http://em.21dtv.com/songs/60128719.mkv +谭晶-幸福水岸,http://em.21dtv.com/songs/60078930.mkv +江蕙-幸福人生,http://em.21dtv.com/songs/60051358.mkv +林隆璇-心焚如火,http://em.21dtv.com/songs/60050231.mkv +李丹阳-幸福如歌,http://em.21dtv.com/songs/60094141.mkv +锁曼丽-幸福契约,http://em.21dtv.com/songs/60081690.mkv +尤国通-幸福渠县,http://em.21dtv.com/songs/60071371.mkv +孙楠-幸福牵手,http://em.21dtv.com/songs/60081391.mkv +拾音社-兴奋全开,http://em.21dtv.com/songs/60097248.mkv +孙伟-幸福起航,http://em.21dtv.com/songs/60078927.mkv +浩明+思小玥-幸福情歌,http://em.21dtv.com/songs/60130550.mkv +彭立+王亮-幸福情歌,http://em.21dtv.com/songs/60109352.mkv +木杰-幸福情歌,http://em.21dtv.com/songs/60062773.mkv +汤灿-幸福飘香,http://em.21dtv.com/songs/60096382.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-幸福拍手,http://em.21dtv.com/songs/60078926.mkv +钟彩媚-幸福你我,http://em.21dtv.com/songs/60129684.mkv +钟彩媚-幸福你我,http://em.21dtv.com/songs/60108085.mkv +陈瑞-幸福女人,http://em.21dtv.com/songs/60051353.mkv +张可-幸福年年(演唱会),http://em.21dtv.com/songs/60078925.mkv +施文彬-幸福南国,http://em.21dtv.com/songs/60130371.mkv +冯小飞-心飞梦走,http://em.21dtv.com/songs/60050228.mkv +雷诺-幸福蔓延,http://em.21dtv.com/songs/60124674.mkv +慕荣-幸福蔓延,http://em.21dtv.com/songs/60121714.mkv +陈倩倩-幸福每天,http://em.21dtv.com/songs/60051343.mkv +苏盈之+陈晓东-幸福满满,http://em.21dtv.com/songs/60104381.mkv +孙莞+吕宏斌-幸福满满,http://em.21dtv.com/songs/60098253.mkv +钟心-幸福美满,http://em.21dtv.com/songs/60051344.mkv +陈好-幸福魔力,http://em.21dtv.com/songs/60051350.mkv +单色凌-幸福领域,http://em.21dtv.com/songs/60097310.mkv +S.H.E-幸福留言,http://em.21dtv.com/songs/60051340.mkv +李昱和-幸福路上,http://em.21dtv.com/songs/60081072.mkv +沈丹丹-幸福恋人,http://em.21dtv.com/songs/60125861.mkv +罗志祥-幸福猎人,http://em.21dtv.com/songs/60051339.mkv +郑源+沈丹丹-幸福恋人,http://em.21dtv.com/songs/60051338.mkv +刘涛-幸福流年,http://em.21dtv.com/songs/60097308.mkv +光良+江美琪-幸福来了,http://em.21dtv.com/songs/60080970.mkv +郭燕-幸福来了,http://em.21dtv.com/songs/60051336.mkv +弦子-幸福乐活,http://em.21dtv.com/songs/60078921.mkv +马可谦+杨超+何方-幸福零干,http://em.21dtv.com/songs/60116392.mkv +胡力-幸福廊坊,http://em.21dtv.com/songs/60100396.mkv +陈咏-幸福来到,http://em.21dtv.com/songs/60072668.mkv +洪敬尧-幸福列车,http://em.21dtv.com/songs/60125870.mkv +宋婧龄-幸福可心,http://em.21dtv.com/songs/60135122.mkv +吴诗曼+宋婧龄-幸福可心,http://em.21dtv.com/songs/60135028.mkv +吴诗曼-幸福可心,http://em.21dtv.com/songs/60135026.mkv +宋婧龄-幸福可心,http://em.21dtv.com/songs/60084277.mkv +蔡卓妍-幸福空气,http://em.21dtv.com/songs/60051334.mkv +周楚霏-幸福卡片,http://em.21dtv.com/songs/60051332.mkv +韩丰-幸福快乐,http://em.21dtv.com/songs/60135976.mkv +陈慧琳-心服口服,http://em.21dtv.com/songs/60050232.mkv +孙悦-幸福快车,http://em.21dtv.com/songs/60051335.mkv +何雁诗-幸福节奏,http://em.21dtv.com/songs/60051326.mkv +何雁诗-幸福节奏(演唱会),http://em.21dtv.com/songs/60051325.mkv +汪苏泷-幸福加油,http://em.21dtv.com/songs/60116105.mkv +孔令奇-悬浮记忆,http://em.21dtv.com/songs/60081788.mkv +陈笑玮-幸福家园,http://em.21dtv.com/songs/60066495.mkv +安与骑兵-幸福家乡,http://em.21dtv.com/songs/60108435.mkv +李玉刚+安与骑兵-幸福家乡,http://em.21dtv.com/songs/60097309.mkv +张磊-幸福继续,http://em.21dtv.com/songs/60093900.mkv +安与骑兵-幸福家乡,http://em.21dtv.com/songs/60078919.mkv +罗中旭-幸福觉醒,http://em.21dtv.com/songs/60071370.mkv +刘若英-幸福就是,http://em.21dtv.com/songs/60084276.mkv +胡雁-幸福降临,http://em.21dtv.com/songs/60051324.mkv +范玉阳-幸福即景,http://em.21dtv.com/songs/60130696.mkv +小保安张争-幸福就好,http://em.21dtv.com/songs/60115868.mkv +王馨-幸福就好,http://em.21dtv.com/songs/60114701.mkv +苏盈之-幸福就好,http://em.21dtv.com/songs/60072667.mkv +OLIVIA-幸福记号,http://em.21dtv.com/songs/60071369.mkv +ASA-幸福眷顾,http://em.21dtv.com/songs/60126513.mkv +孙莞+牙牙乐-幸福角度,http://em.21dtv.com/songs/60098254.mkv +秦艺天-幸福盒子,http://em.21dtv.com/songs/60101149.mkv +张智成-相逢恨早,http://em.21dtv.com/songs/60065186.mkv +叶时伟-幸福花园,http://em.21dtv.com/songs/60078918.mkv +周迅-幸福花园,http://em.21dtv.com/songs/60051322.mkv +樱花姐妹-相逢恨晚,http://em.21dtv.com/songs/60092948.mkv +谭炳文+李香琴-相逢恨晚(演唱会),http://em.21dtv.com/songs/60061746.mkv +孙恭庆-幸福好吗,http://em.21dtv.com/songs/60110137.mkv +姚贝娜-幸福花开,http://em.21dtv.com/songs/60084275.mkv +胡力-幸福鹤岗,http://em.21dtv.com/songs/60119896.mkv +陈慧琳-幸福灰尘,http://em.21dtv.com/songs/60093454.mkv +杨丞琳-幸福果子,http://em.21dtv.com/songs/60051312.mkv +多乐园-幸福公寓,http://em.21dtv.com/songs/60127880.mkv +多乐园-幸福公寓,http://em.21dtv.com/songs/60126735.mkv +冷漠-幸福高原,http://em.21dtv.com/songs/60097307.mkv +群星-幸福歌谣,http://em.21dtv.com/songs/60051310.mkv +胡灵-幸福港湾,http://em.21dtv.com/songs/60068873.mkv +雷佳-幸福港湾,http://em.21dtv.com/songs/60051308.mkv +罗时丰+张秀卿-幸福歌声,http://em.21dtv.com/songs/60078915.mkv +苗苗-幸福广东,http://em.21dtv.com/songs/60096459.mkv +陈百潭+凤娘-幸福干杯,http://em.21dtv.com/songs/60123320.mkv +古巨基-幸福方舟(演唱会),http://em.21dtv.com/songs/60071366.mkv +佳非-幸福方向,http://em.21dtv.com/songs/60101908.mkv +金丹-幸福飞翔,http://em.21dtv.com/songs/60098815.mkv +苏打绿-幸福额度,http://em.21dtv.com/songs/60062924.mkv +石磊-幸福赌注,http://em.21dtv.com/songs/60078913.mkv +大雄-幸福赌注,http://em.21dtv.com/songs/60051306.mkv +黄大炜-想飞的心,http://em.21dtv.com/songs/60134495.mkv +孙楠-想飞的心,http://em.21dtv.com/songs/60090910.mkv +黄大炜-想飞的心,http://em.21dtv.com/songs/60049030.mkv +卓文萱-幸福调味,http://em.21dtv.com/songs/60051377.mkv +张芸京-相反的我,http://em.21dtv.com/songs/60048635.mkv +文恩澄-幸福大晒,http://em.21dtv.com/songs/60065275.mkv +卢珊珊-幸福的人,http://em.21dtv.com/songs/60099129.mkv +蒙克-幸福的人,http://em.21dtv.com/songs/60051274.mkv +蔡秋凤+李明洋-幸福的人,http://em.21dtv.com/songs/60051273.mkv +禇桐羽-想飞的鸟,http://em.21dtv.com/songs/60121980.mkv +西子-幸福的美,http://em.21dtv.com/songs/60087017.mkv +李明洋+陈思安-相逢的梦,http://em.21dtv.com/songs/60078570.mkv +于文华+尹相杰-纤夫的梦,http://em.21dtv.com/songs/60048468.mkv +佚名-纤夫的梦,http://em.21dtv.com/songs/60048467.mkv +青春美少女-幸福的脸,http://em.21dtv.com/songs/60124678.mkv +云菲菲-幸福道理,http://em.21dtv.com/songs/60100762.mkv +邱淑贞-幸福的脸,http://em.21dtv.com/songs/60099521.mkv +李潮-幸福的路,http://em.21dtv.com/songs/60093762.mkv +刘若英-幸福的路,http://em.21dtv.com/songs/60051267.mkv +凌志辉-幸福的路,http://em.21dtv.com/songs/60051266.mkv +尹相杰+于文华-纤夫的路,http://em.21dtv.com/songs/60048466.mkv +桑婷婷-幸福的家,http://em.21dtv.com/songs/60110315.mkv +桑婷婷-幸福的家,http://em.21dtv.com/songs/60071364.mkv +韩琳-幸福到家,http://em.21dtv.com/songs/60066493.mkv +蔡小虎+龙千玉-相逢的酒,http://em.21dtv.com/songs/60048640.mkv +动力火车-幸福的海,http://em.21dtv.com/songs/60090744.mkv +陈嘉唯-幸福导航,http://em.21dtv.com/songs/60051240.mkv +张雨生-西风的话,http://em.21dtv.com/songs/60047915.mkv +童唱-西风的话,http://em.21dtv.com/songs/60047914.mkv +郭婷筠-幸福的歌,http://em.21dtv.com/songs/60135819.mkv +尹熙水-幸福的光,http://em.21dtv.com/songs/60119454.mkv +祖歌-幸福的歌,http://em.21dtv.com/songs/60078907.mkv +央金兰泽-幸福的歌,http://em.21dtv.com/songs/60068871.mkv +杨宗纬-幸福的风,http://em.21dtv.com/songs/60051255.mkv +西域刀郎-幸福的D弦,http://em.21dtv.com/songs/60088625.mkv +廖大森-幸福的dj,http://em.21dtv.com/songs/60067670.mkv +黄凤仪+荒山亮-幸福的船,http://em.21dtv.com/songs/60113112.mkv +汤伟+贝司+寇儿+孔昱-幸福单车,http://em.21dtv.com/songs/60100260.mkv +枫桥-幸福单车,http://em.21dtv.com/songs/60100226.mkv +马雨贤-幸福的船,http://em.21dtv.com/songs/60067671.mkv +贺娜-幸福的宝,http://em.21dtv.com/songs/60120955.mkv +尹相杰+于文华-纤夫的爱,http://em.21dtv.com/songs/60048465.mkv +汪明荃+罗家英-纤夫的爱(演唱会),http://em.21dtv.com/songs/60048464.mkv +张秀卿-幸福车站,http://em.21dtv.com/songs/60110208.mkv +官恩娜-幸福车站,http://em.21dtv.com/songs/60107670.mkv +官恩娜-幸福车站,http://em.21dtv.com/songs/60106785.mkv +欧得洋-幸福车站,http://em.21dtv.com/songs/60051235.mkv +廖昌永+张英席+吕薇+张妮-相逢春天,http://em.21dtv.com/songs/60119491.mkv +绍兵-幸福长寿,http://em.21dtv.com/songs/60122001.mkv +高登-幸福传说,http://em.21dtv.com/songs/60078904.mkv +黄思婷-幸福出口,http://em.21dtv.com/songs/60051237.mkv +TFBOYS+月亮姐姐+红果果+绿泡泡-幸福成长,http://em.21dtv.com/songs/60119196.mkv +田维英-幸福城堡,http://em.21dtv.com/songs/60123035.mkv +安琥+苏素-幸福城堡,http://em.21dtv.com/songs/60051236.mkv +郭书瑶-幸福不远,http://em.21dtv.com/songs/60051232.mkv +罗志祥-幸福不灭,http://em.21dtv.com/songs/60051230.mkv +王心凌-幸福背后,http://em.21dtv.com/songs/60051227.mkv +阿华+钟煦晨-幸福爱人,http://em.21dtv.com/songs/60078902.mkv +谢海云-幸福爱情,http://em.21dtv.com/songs/60068870.mkv +伍思凯-幸福按扭,http://em.21dtv.com/songs/60090595.mkv +扎西多吉-幸福安康,http://em.21dtv.com/songs/60118605.mkv +陈咏+郭玲-幸福爱河,http://em.21dtv.com/songs/60065274.mkv +宝贝小雨-幸福1+1,http://em.21dtv.com/songs/60051224.mkv +朴宰范+Okasian-显而易见,http://em.21dtv.com/songs/60130400.mkv +任妙音-心儿碎了,http://em.21dtv.com/songs/60072642.mkv +徐鑫+金鹏-邪恶世界,http://em.21dtv.com/songs/60103306.mkv +冷漠-兄弟珍重,http://em.21dtv.com/songs/60067681.mkv +时金钰-兄弟仗义,http://em.21dtv.com/songs/60130377.mkv +应松羽-新的自我,http://em.21dtv.com/songs/60118548.mkv +ALIN-新的自我,http://em.21dtv.com/songs/60087176.mkv +周璇-笑的赞美,http://em.21dtv.com/songs/60049922.mkv +紫炫-笑到最后,http://em.21dtv.com/songs/60126017.mkv +拉热吉-心的原野,http://em.21dtv.com/songs/60065228.mkv +含笑+赵鹏-兄弟有缘,http://em.21dtv.com/songs/60051470.mkv +群星-兄弟有我,http://em.21dtv.com/songs/60122018.mkv +伊扬-新的一天(演唱会),http://em.21dtv.com/songs/60050821.mkv +新八大巨星-新的一年,http://em.21dtv.com/songs/60089319.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-新的一年,http://em.21dtv.com/songs/60078826.mkv +群星-新的一年,http://em.21dtv.com/songs/60050820.mkv +罗长华-兄弟一场,http://em.21dtv.com/songs/60117123.mkv +孙楠+孙斌-兄弟一场,http://em.21dtv.com/songs/60109266.mkv +文弓哲杰-兄弟义长,http://em.21dtv.com/songs/60067680.mkv +孙楠+孙斌-兄弟一场(演唱会),http://em.21dtv.com/songs/60051469.mkv +许椿苗-新的希望,http://em.21dtv.com/songs/60132884.mkv +刘向圆-心的希望,http://em.21dtv.com/songs/60072640.mkv +谭炳文+李香琴-新的希望(演唱会),http://em.21dtv.com/songs/60050818.mkv +邓紫棋-新的心跳,http://em.21dtv.com/songs/60112998.mkv +许慧欣+刘耕宏-心动心痛,http://em.21dtv.com/songs/60050220.mkv +唐唐-兄弟雄起,http://em.21dtv.com/songs/60107612.mkv +关喆-想定下来,http://em.21dtv.com/songs/60093982.mkv +张寒-兄弟像酒,http://em.21dtv.com/songs/60126873.mkv +和汇慧-相对无言,http://em.21dtv.com/songs/60120412.mkv +张德兰-相对无言(演唱会),http://em.21dtv.com/songs/60068827.mkv +萧亚轩-相对无言,http://em.21dtv.com/songs/60048634.mkv +周笔畅-弦动我心,http://em.21dtv.com/songs/60087596.mkv +高利虹-炫动舞台,http://em.21dtv.com/songs/60114274.mkv +萧敬腾-兄弟我说(演唱会),http://em.21dtv.com/songs/60078951.mkv +萧敬腾-兄弟我说,http://em.21dtv.com/songs/60071378.mkv +水浒群星-兄弟无数,http://em.21dtv.com/songs/60062918.mkv +景岗山-兄弟无数,http://em.21dtv.com/songs/60051468.mkv +胡彦斌-心的未来,http://em.21dtv.com/songs/60072639.mkv +宋晓峰+赵小炮-兄弟无悔,http://em.21dtv.com/songs/60112637.mkv +赵小炮-兄弟无悔,http://em.21dtv.com/songs/60106303.mkv +容祖儿-想得太远,http://em.21dtv.com/songs/60049019.mkv +容祖儿-想得太远(演唱会),http://em.21dtv.com/songs/60049018.mkv +庄振凯+苏振华-兄弟同心,http://em.21dtv.com/songs/60086064.mkv +张婧-想得太美,http://em.21dtv.com/songs/60110188.mkv +柯以敏-想得太美(无原唱),http://em.21dtv.com/songs/60049017.mkv +张宇-笑得痛苦,http://em.21dtv.com/songs/60091084.mkv +麦浚龙-写得太多,http://em.21dtv.com/songs/60050000.mkv +麦浚龙+伦永亮-写得太多,http://em.21dtv.com/songs/60049999.mkv +赵婧怡+李思+世界奥运冠军-心动时刻,http://em.21dtv.com/songs/60106302.mkv +佚名-心的伤口,http://em.21dtv.com/songs/60050197.mkv +樊少皇+李婷宜-心的守侯,http://em.21dtv.com/songs/60090025.mkv +樊少皇+李婷宜-心的守候,http://em.21dtv.com/songs/60050198.mkv +郑希怡-相对湿度,http://em.21dtv.com/songs/60120024.mkv +郑希怡-相对湿度(演唱会),http://em.21dtv.com/songs/60048633.mkv +郭桂彬-兄弟仁义,http://em.21dtv.com/songs/60051467.mkv +尤文斌-笑对人生,http://em.21dtv.com/songs/60094883.mkv +尤文斌-笑对人生(舞曲版),http://em.21dtv.com/songs/60086034.mkv +戴佩妮-辛德瑞拉,http://em.21dtv.com/songs/60128029.mkv +刘心-辛德瑞拉,http://em.21dtv.com/songs/60134932.mkv +CNBLUE-辛德瑞拉,http://em.21dtv.com/songs/60114937.mkv +丁丁-辛德瑞拉,http://em.21dtv.com/songs/60071343.mkv +戴佩妮-幸德瑞拉,http://em.21dtv.com/songs/60051202.mkv +戴佩妮-辛德瑞拉,http://em.21dtv.com/songs/60050771.mkv +许霖+陈长城-兄弟情义,http://em.21dtv.com/songs/60124481.mkv +承伟+思豪-兄弟情义,http://em.21dtv.com/songs/60121717.mkv +兰大丑-兄弟情义,http://em.21dtv.com/songs/60115010.mkv +正皇旗-兄弟情义,http://em.21dtv.com/songs/60080851.mkv +二龙-兄弟情深,http://em.21dtv.com/songs/60132171.mkv +吴润龙-兄弟情深,http://em.21dtv.com/songs/60126701.mkv +贺金-兄弟情深,http://em.21dtv.com/songs/60112266.mkv +潘赢-兄弟情深,http://em.21dtv.com/songs/60084292.mkv +小曾+王子鸣-兄弟情深,http://em.21dtv.com/songs/60051466.mkv +龙啸-兄弟情深,http://em.21dtv.com/songs/60051465.mkv +巨姗姗-心动起来,http://em.21dtv.com/songs/60050219.mkv +蒙克-小调情歌,http://em.21dtv.com/songs/60071327.mkv +刘冲+冲击力乐队-新的起点,http://em.21dtv.com/songs/60128815.mkv +张郎-心的期待,http://em.21dtv.com/songs/60081261.mkv +李丹阳-新的起点,http://em.21dtv.com/songs/60050817.mkv +臧天朔-心的祈祷,http://em.21dtv.com/songs/60050196.mkv +佚名-心的祈祷,http://em.21dtv.com/songs/60050195.mkv +崔浩然-兄弟情长,http://em.21dtv.com/songs/60104990.mkv +何龙雨+贺一航-兄弟朋友,http://em.21dtv.com/songs/60078948.mkv +白雪莉-心的陪伴,http://em.21dtv.com/songs/60134033.mkv +尹光-现代女性(演唱会),http://em.21dtv.com/songs/60048496.mkv +严少辰-想对你说,http://em.21dtv.com/songs/60113219.mkv +杨罡-心动女生,http://em.21dtv.com/songs/60078758.mkv +郑国锋-想对你说,http://em.21dtv.com/songs/60078619.mkv +杨宗纬-想对你说,http://em.21dtv.com/songs/60078618.mkv +子烽-兄弟女人,http://em.21dtv.com/songs/60114475.mkv +赵华+白浩楠+陈威男-兄弟你好,http://em.21dtv.com/songs/60129636.mkv +XL特大号乐团-小调呐喊(演唱会),http://em.21dtv.com/songs/60049767.mkv +杜歌-兄弟难当,http://em.21dtv.com/songs/60086063.mkv +林晓勇-新的梦想,http://em.21dtv.com/songs/60119711.mkv +拾音社-心的乐章,http://em.21dtv.com/songs/60097187.mkv +起点-心的旅行,http://em.21dtv.com/songs/60123213.mkv +孟庭苇-心的旅途,http://em.21dtv.com/songs/60050194.mkv +风之琳-心的留连,http://em.21dtv.com/songs/60102938.mkv +李佳薇-笑到流泪,http://em.21dtv.com/songs/60099299.mkv +谭晶-心的旅程,http://em.21dtv.com/songs/60088675.mkv +迪克牛仔-心的旅程,http://em.21dtv.com/songs/60068856.mkv +苏打绿-相对论ⅳ(演唱会),http://em.21dtv.com/songs/60048632.mkv +万茜-新的开始,http://em.21dtv.com/songs/60078825.mkv +ZEN-心底控诉,http://em.21dtv.com/songs/60050203.mkv +小彤-现代卡门(无原唱),http://em.21dtv.com/songs/60048495.mkv +邓紫棋-心的节奏,http://em.21dtv.com/songs/60110572.mkv +京剧-血的教训,http://em.21dtv.com/songs/60051785.mkv +谭晶+李永波+李宁-心的金牌,http://em.21dtv.com/songs/60070074.mkv +马智宇-兄弟姐妹,http://em.21dtv.com/songs/60131989.mkv +陈星+于金胜-兄弟姐妹,http://em.21dtv.com/songs/60130845.mkv +于金胜-兄弟姐妹,http://em.21dtv.com/songs/60111681.mkv +陈星+于金胜-兄弟姐妹,http://em.21dtv.com/songs/60111486.mkv +苏泉-兄弟姐妹,http://em.21dtv.com/songs/60071376.mkv +张韶涵-兄弟姐妹,http://em.21dtv.com/songs/60070097.mkv +文欣-兄弟姐妹,http://em.21dtv.com/songs/60051460.mkv +孙悦-兄弟姐妹,http://em.21dtv.com/songs/60051459.mkv +陈奕迅-心的距离,http://em.21dtv.com/songs/60050192.mkv +费翔-夏的季节,http://em.21dtv.com/songs/60048361.mkv +元卫觉醒-笑掉江湖,http://em.21dtv.com/songs/60049923.mkv +陈晓东-心的接触,http://em.21dtv.com/songs/60050191.mkv +李贵府-兄弟举杯,http://em.21dtv.com/songs/60107803.mkv +萧磊-新的回忆,http://em.21dtv.com/songs/60107165.mkv +北原山猫-心的海洋(无原唱),http://em.21dtv.com/songs/60050190.mkv +周子轩-兄弟还钱,http://em.21dtv.com/songs/60126713.mkv +蒋姗倍-心的怀念,http://em.21dtv.com/songs/60067650.mkv +郭富城-新的喝采,http://em.21dtv.com/songs/60093359.mkv +郭富城-新的喝彩,http://em.21dtv.com/songs/60050815.mkv +郭富城-新的喝彩(演唱会),http://em.21dtv.com/songs/60050814.mkv +吴周胜-新打工仔,http://em.21dtv.com/songs/60133471.mkv +吴光明-新打工谣,http://em.21dtv.com/songs/60098190.mkv +陈星-新打工谣,http://em.21dtv.com/songs/60050811.mkv +蜜雪薇琪-心电感应,http://em.21dtv.com/songs/60050206.mkv +孟庭苇-心电感应,http://em.21dtv.com/songs/60050205.mkv +尼玛次仁-心的归宿,http://em.21dtv.com/songs/60050189.mkv +野地百合-心的归回,http://em.21dtv.com/songs/60066481.mkv +追风-兄弟敢当,http://em.21dtv.com/songs/60123216.mkv +秦博-兄弟干杯,http://em.21dtv.com/songs/60121982.mkv +索南扎西-蟹岛干杯(演唱会),http://em.21dtv.com/songs/60061769.mkv +庞龙+李永波-兄弟干杯,http://em.21dtv.com/songs/60051458.mkv +邝美云-小岛凤云,http://em.21dtv.com/songs/60049536.mkv +郑旭-心的方向,http://em.21dtv.com/songs/60127472.mkv +丁心-心的方向,http://em.21dtv.com/songs/60116494.mkv +周华健-心的方向,http://em.21dtv.com/songs/60050188.mkv +五洋-心的方向,http://em.21dtv.com/songs/60050187.mkv +马兆骏+范玮琪-心的发现,http://em.21dtv.com/songs/60050186.mkv +刘洺瑒-兄弟多谢,http://em.21dtv.com/songs/60126647.mkv +王飞-兄弟多谢,http://em.21dtv.com/songs/60105264.mkv +蔡小虎+林姗-相对的心,http://em.21dtv.com/songs/60048630.mkv +平安-心动的人,http://em.21dtv.com/songs/60131384.mkv +任飞扬-兄弟的酒,http://em.21dtv.com/songs/60101894.mkv +刘苓-兄弟的话,http://em.21dtv.com/songs/60110892.mkv +王小源+白小白-兄弟的歌,http://em.21dtv.com/songs/60135551.mkv +黑龙+小嘉-兄弟的歌,http://em.21dtv.com/songs/60078947.mkv +红蔷薇-心的等待,http://em.21dtv.com/songs/60117115.mkv +郑秀文-行动点唱,http://em.21dtv.com/songs/60019942.mkv +BNR-学到的爱,http://em.21dtv.com/songs/60078965.mkv +梁静茹-新的答案,http://em.21dtv.com/songs/60050813.mkv +王启明-孝的长征,http://em.21dtv.com/songs/60120750.mkv +刘广慧-小店春早,http://em.21dtv.com/songs/60049538.mkv +容祖儿-相当刺激,http://em.21dtv.com/songs/60048627.mkv +容祖儿-相当刺激(演唱会),http://em.21dtv.com/songs/60048626.mkv +梁耀安-喜登长城,http://em.21dtv.com/songs/60048107.mkv +苗伟-心的翅膀,http://em.21dtv.com/songs/60070073.mkv +苏隽-雪的翅膀(演唱会),http://em.21dtv.com/songs/60051674.mkv +刘胜权-兄弟别走,http://em.21dtv.com/songs/60115725.mkv +高山林-兄弟保重,http://em.21dtv.com/songs/60067679.mkv +杨宗宪-兄弟保重(无原唱),http://em.21dtv.com/songs/60051457.mkv +张震岳-兄弟本色,http://em.21dtv.com/songs/60097202.mkv +于台烟-心的表情,http://em.21dtv.com/songs/60050185.mkv +胡瓜-心都变了,http://em.21dtv.com/songs/60050221.mkv +韩信-兄弟不哭,http://em.21dtv.com/songs/60103706.mkv +童丹-兄弟别哭,http://em.21dtv.com/songs/60084290.mkv +风火海-信得边个,http://em.21dtv.com/songs/60050995.mkv +苏醒-下次再玩,http://em.21dtv.com/songs/60062934.mkv +郭宴-小村之恋,http://em.21dtv.com/songs/60127479.mkv +张惠妹-心诚则灵,http://em.21dtv.com/songs/60050175.mkv +费玉清-小村之恋,http://em.21dtv.com/songs/60049534.mkv +邓丽君-小村之恋,http://em.21dtv.com/songs/60049533.mkv +邓丽君-小村之恋(演唱会),http://em.21dtv.com/songs/60049532.mkv +张智成-下次再见,http://em.21dtv.com/songs/60048275.mkv +古巨基-下次再见,http://em.21dtv.com/songs/60048274.mkv +古巨基-下次再见(演唱会),http://em.21dtv.com/songs/60048272.mkv +猴子飞行员-小草之歌,http://em.21dtv.com/songs/60049503.mkv +吴军-小城之春(无原唱),http://em.21dtv.com/songs/60049518.mkv +潘玮柏-现场直播(演唱会),http://em.21dtv.com/songs/60084168.mkv +陈奕迅-现场直播,http://em.21dtv.com/songs/60048489.mkv +陈奕迅-现场直播(演唱会),http://em.21dtv.com/songs/60048488.mkv +苏阳-像草一样,http://em.21dtv.com/songs/60067634.mkv +王文浩-西昌月亮,http://em.21dtv.com/songs/60133987.mkv +李芊慧-呷茶饮酒(无原唱),http://em.21dtv.com/songs/60017792.mkv +李玟-下次小心,http://em.21dtv.com/songs/60048270.mkv +郑国锋-小丑先生,http://em.21dtv.com/songs/60080852.mkv +蔡琴-小窗相思,http://em.21dtv.com/songs/60049526.mkv +唐艺昕-香橙小姐,http://em.21dtv.com/songs/60126731.mkv +薛凯琪-下次下次,http://em.21dtv.com/songs/60048269.mkv +苗苗-喜出望外,http://em.21dtv.com/songs/60096453.mkv +玺恩-喜出望外,http://em.21dtv.com/songs/60048103.mkv +木喆-香草无泪,http://em.21dtv.com/songs/60100878.mkv +洪煜祺+刘菲菲-香草味道,http://em.21dtv.com/songs/60071315.mkv +沈丹丹-喜从天降,http://em.21dtv.com/songs/60125860.mkv +傅仕伦+董一明-笑出声音,http://em.21dtv.com/songs/60049921.mkv +董一明-笑出声音,http://em.21dtv.com/songs/60049920.mkv +郑少秋-新春颂献,http://em.21dtv.com/songs/60093284.mkv +冯刚毅-新春颂献,http://em.21dtv.com/songs/60078821.mkv +区瑞强-新春颂献,http://em.21dtv.com/songs/60050809.mkv +曾航生+何婉盈-新春颂献,http://em.21dtv.com/songs/60050808.mkv +凤凰传奇-心驰神往,http://em.21dtv.com/songs/60050176.mkv +阿权-新财神到,http://em.21dtv.com/songs/60126349.mkv +双星-新春如意,http://em.21dtv.com/songs/60078820.mkv +旺福乐团-小春日和,http://em.21dtv.com/songs/60049527.mkv +樊文曌-西藏情歌,http://em.21dtv.com/songs/60124168.mkv +胡东清-西藏情歌,http://em.21dtv.com/songs/60065159.mkv +李晓亮-徐策跑城,http://em.21dtv.com/songs/60051555.mkv +佚名-心潮难平,http://em.21dtv.com/songs/60050173.mkv +许雅涵-香草咪咪,http://em.21dtv.com/songs/60048901.mkv +韩庚-小丑面具,http://em.21dtv.com/songs/60070055.mkv +刘芳菲+程晨-新春美好,http://em.21dtv.com/songs/60078819.mkv +卓文萱-香草恋人,http://em.21dtv.com/songs/60048900.mkv +陈雷-夏愁泪海,http://em.21dtv.com/songs/60004031.mkv +彭炽权+黎佩仪-西楚骊歌(戏曲),http://em.21dtv.com/songs/60092691.mkv +黎明-献出激情,http://em.21dtv.com/songs/60048541.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-新春佳节,http://em.21dtv.com/songs/60078817.mkv +蒋文端+邓志驹-新春接福,http://em.21dtv.com/songs/60050806.mkv +大张伟-想唱就唱,http://em.21dtv.com/songs/60102076.mkv +TFBOYS-想唱就唱,http://em.21dtv.com/songs/60101832.mkv +超级女声+总决选-想唱就唱,http://em.21dtv.com/songs/60088713.mkv +群星-想唱就唱,http://em.21dtv.com/songs/60088458.mkv +李宇春+周笔畅+张靓颖+何洁+纪敏佳-想唱就唱(演唱会),http://em.21dtv.com/songs/60078617.mkv +超级女声-想唱就唱(演唱会),http://em.21dtv.com/songs/60072612.mkv +张含韵-想唱就唱(演唱会),http://em.21dtv.com/songs/60049003.mkv +杜赛群-小城回忆,http://em.21dtv.com/songs/60102363.mkv +李宇春-秀才胡同,http://em.21dtv.com/songs/60051517.mkv +何婉莹+曾航生-新春贡献,http://em.21dtv.com/songs/60092252.mkv +李昱和-小城故事,http://em.21dtv.com/songs/60127035.mkv +馨梓-小城故事,http://em.21dtv.com/songs/60090314.mkv +张靓颖-小城故事,http://em.21dtv.com/songs/60087852.mkv +春天-小城故事,http://em.21dtv.com/songs/60086616.mkv +陈思思-小城故事,http://em.21dtv.com/songs/60078686.mkv +糖兄妹-小城故事(演唱会),http://em.21dtv.com/songs/60070054.mkv +卓依婷-小城故事,http://em.21dtv.com/songs/60049515.mkv +黄龄-小城故事,http://em.21dtv.com/songs/60049514.mkv +费玉清-小城故事,http://em.21dtv.com/songs/60049513.mkv +高胜美-小城故事(演唱会),http://em.21dtv.com/songs/60049512.mkv +邓丽君-小城故事(演唱会),http://em.21dtv.com/songs/60049511.mkv +蔡琴-小城故事(演唱会),http://em.21dtv.com/songs/60049510.mkv +候亚周-许昌姑娘,http://em.21dtv.com/songs/60127743.mkv +童唱-乡村姑娘,http://em.21dtv.com/songs/60048565.mkv +王珍-心存感激,http://em.21dtv.com/songs/60114687.mkv +卢巧音-新陈代谢,http://em.21dtv.com/songs/60050800.mkv +佚名-消沉的心,http://em.21dtv.com/songs/60049430.mkv +C ALLSTAR-小城大事(演唱会),http://em.21dtv.com/songs/60078685.mkv +刘美君-小城大事,http://em.21dtv.com/songs/60070053.mkv +张崇基+张崇德-小城大事(演唱会),http://em.21dtv.com/songs/60061756.mkv +杨千嬅-小城大事,http://em.21dtv.com/songs/60049509.mkv +郑源-小城大事(演唱会),http://em.21dtv.com/songs/60049508.mkv +张学友-小城大事(演唱会),http://em.21dtv.com/songs/60049507.mkv +叶振棠-小城大事(演唱会),http://em.21dtv.com/songs/60049506.mkv +叶德娴-小城大事(演唱会),http://em.21dtv.com/songs/60049505.mkv +杨千嬅-小城大事(演唱会),http://em.21dtv.com/songs/60049504.mkv +罗时丰-行船的人,http://em.21dtv.com/songs/60134113.mkv +徐良-写词的人,http://em.21dtv.com/songs/60123978.mkv +詹雅雯-想厝的人,http://em.21dtv.com/songs/60049004.mkv +佚名-行船的人,http://em.21dtv.com/songs/60019934.mkv +罗时丰-行船的人,http://em.21dtv.com/songs/60019933.mkv +深白色2人组-香草的空,http://em.21dtv.com/songs/60088227.mkv +周张弛-新春大吉,http://em.21dtv.com/songs/60065250.mkv +王子歌-小城春暖,http://em.21dtv.com/songs/60078684.mkv +梁玉嵘-小城春梦(戏曲),http://em.21dtv.com/songs/60092914.mkv +吴奇隆-新春报喜,http://em.21dtv.com/songs/60050802.mkv +南拳妈妈-香草把噗,http://em.21dtv.com/songs/60048898.mkv +刘德华-下次不敢,http://em.21dtv.com/songs/60048265.mkv +张敬轩-下次爱你,http://em.21dtv.com/songs/60133658.mkv +张敬轩-下次爱你,http://em.21dtv.com/songs/60132436.mkv +王菀之-下次爱你(演唱会),http://em.21dtv.com/songs/60084157.mkv +佚名-行船阿郎(无原唱),http://em.21dtv.com/songs/60019932.mkv +陈晓东-心不在焉,http://em.21dtv.com/songs/60100592.mkv +陈小春+郑伊健+谢天华+林晓峰+钱嘉乐-兴波作浪,http://em.21dtv.com/songs/60114204.mkv +郑伊健+周柏豪-兴波作浪(演唱会),http://em.21dtv.com/songs/60051190.mkv +佚名-西部赞歌,http://em.21dtv.com/songs/60047899.mkv +马常宝-相伴永远,http://em.21dtv.com/songs/60080665.mkv +陈慧娴-萧邦与我,http://em.21dtv.com/songs/60049448.mkv +四郎贡布+索朗德吉-相伴一生,http://em.21dtv.com/songs/60132314.mkv +隆熙俊-新别亦难,http://em.21dtv.com/songs/60050785.mkv +杨小艳-心不由己,http://em.21dtv.com/songs/60116029.mkv +谢安琪-心不由己,http://em.21dtv.com/songs/60096129.mkv +红岩-西部扬帆(演唱会),http://em.21dtv.com/songs/60070021.mkv +盖鸣晖-戏班小子(演唱会),http://em.21dtv.com/songs/60084152.mkv +叶振棠-戏班小子(演唱会),http://em.21dtv.com/songs/60048193.mkv +庄学忠-新扁相悦,http://em.21dtv.com/songs/60087756.mkv +潘越云-想不想我,http://em.21dtv.com/songs/60049000.mkv +戴玉强-西部新娘,http://em.21dtv.com/songs/60047898.mkv +庞龙-向北向北,http://em.21dtv.com/songs/60117709.mkv +陈绮贞-小步舞曲,http://em.21dtv.com/songs/60049498.mkv +陈柏宇+泳儿-下不为例,http://em.21dtv.com/songs/60084156.mkv +牟青-新兵同志,http://em.21dtv.com/songs/60050789.mkv +多哇才吉-相伴天涯,http://em.21dtv.com/songs/60071308.mkv +杨培安-心不跳了,http://em.21dtv.com/songs/60118712.mkv +甄强-心比天高,http://em.21dtv.com/songs/60129429.mkv +李思-心比天高,http://em.21dtv.com/songs/60094148.mkv +大张凡-戏比天大,http://em.21dtv.com/songs/60110964.mkv +叶振棠-新变色龙,http://em.21dtv.com/songs/60050784.mkv +陈慧琳-心不设防,http://em.21dtv.com/songs/60050170.mkv +陈慧琳-心不设防(演唱会),http://em.21dtv.com/songs/60050169.mkv +许飞-新兵日记,http://em.21dtv.com/songs/60065249.mkv +巴桑-西部情怀,http://em.21dtv.com/songs/60119476.mkv +马万宝-西部情歌,http://em.21dtv.com/songs/60130895.mkv +枫桥+欣羽-西北情歌,http://em.21dtv.com/songs/60094179.mkv +方少珊+何家伟-溪边情歌,http://em.21dtv.com/songs/60048047.mkv +王宏伟-西部情歌,http://em.21dtv.com/songs/60047897.mkv +尚俊宇-心不明了,http://em.21dtv.com/songs/60125440.mkv +田维英-新不了情,http://em.21dtv.com/songs/60118806.mkv +谭维维+杨宇-新不了情,http://em.21dtv.com/songs/60112253.mkv +马智宇-新不了情,http://em.21dtv.com/songs/60110693.mkv +陈冰-新不了情,http://em.21dtv.com/songs/60104545.mkv +萧煌奇+杨培安-新不了情,http://em.21dtv.com/songs/60098735.mkv +杨培安+萧煌奇-新不了情,http://em.21dtv.com/songs/60097465.mkv +群星-新不了情,http://em.21dtv.com/songs/60097464.mkv +薛凯琪-新不了情,http://em.21dtv.com/songs/60088612.mkv +邓育彬-新不了情,http://em.21dtv.com/songs/60086049.mkv +罗中旭-新不了情,http://em.21dtv.com/songs/60084229.mkv +张智霖-新不了情,http://em.21dtv.com/songs/60078812.mkv +黄小琥-新不了情,http://em.21dtv.com/songs/60078811.mkv +陈思思-新不了情,http://em.21dtv.com/songs/60078810.mkv +陈明-新不了情,http://em.21dtv.com/songs/60078809.mkv +馨梓-新不了情,http://em.21dtv.com/songs/60050796.mkv +萧敬腾-新不了情,http://em.21dtv.com/songs/60050795.mkv +万芳-新不了情,http://em.21dtv.com/songs/60050794.mkv +孟格格-新不了情,http://em.21dtv.com/songs/60050793.mkv +江若琳-新不了情(演唱会),http://em.21dtv.com/songs/60050792.mkv +曹格-新不了情(演唱会),http://em.21dtv.com/songs/60050791.mkv +蔡琴-新不了情(演唱会),http://em.21dtv.com/songs/60050790.mkv +那英-西部狂想,http://em.21dtv.com/songs/60089501.mkv +群星-西部狂想,http://em.21dtv.com/songs/60047896.mkv +薛恒泰-稀薄空气,http://em.21dtv.com/songs/60078507.mkv +佚名-笑比哭好,http://em.21dtv.com/songs/60049917.mkv +张勇-西北黑雨,http://em.21dtv.com/songs/60078494.mkv +刘欢-西部恍惚,http://em.21dtv.com/songs/60047894.mkv +宋祖英-新兵歌谣,http://em.21dtv.com/songs/60050787.mkv +刘志丹-西北姑娘,http://em.21dtv.com/songs/60107528.mkv +佚名-惜别港岸,http://em.21dtv.com/songs/60048026.mkv +陈思慧-心不逢时,http://em.21dtv.com/songs/60093434.mkv +王宏伟-西部放歌(演唱会),http://em.21dtv.com/songs/60047893.mkv +黄乙玲-惜别的心,http://em.21dtv.com/songs/60048025.mkv +菲菲+VIVI-相伴到老,http://em.21dtv.com/songs/60065184.mkv +高隆-相伴到老,http://em.21dtv.com/songs/60048623.mkv +佚名-惜别的酒,http://em.21dtv.com/songs/60048023.mkv +阎维文-西部春暖,http://em.21dtv.com/songs/60047892.mkv +高慧君-笑不出来,http://em.21dtv.com/songs/60049918.mkv +陈小春-下半辈子,http://em.21dtv.com/songs/60048240.mkv +陈小春-下半辈子(演唱会),http://em.21dtv.com/songs/60048239.mkv +阿悄-性别不明,http://em.21dtv.com/songs/60100542.mkv +阿吉仔-心爱再会,http://em.21dtv.com/songs/60094730.mkv +许霖-相爱永远,http://em.21dtv.com/songs/60120942.mkv +女子十二乐坊-相爱已无,http://em.21dtv.com/songs/60048621.mkv +王宇+方月-相爱一生,http://em.21dtv.com/songs/60081672.mkv +尚雯婕-相爱有时,http://em.21dtv.com/songs/60078568.mkv +满文军-想爱也难,http://em.21dtv.com/songs/60048994.mkv +堂娜-相爱一回,http://em.21dtv.com/songs/60048620.mkv +王铮亮-相爱一场,http://em.21dtv.com/songs/60116169.mkv +伊扬-相爱一场(演唱会),http://em.21dtv.com/songs/60048619.mkv +何宝生-相爱相聚,http://em.21dtv.com/songs/60048618.mkv +彩贝与海-相爱幸福,http://em.21dtv.com/songs/60119558.mkv +宋嘉其-想爱无依,http://em.21dtv.com/songs/60070045.mkv +周柏豪-相安无事,http://em.21dtv.com/songs/60113342.mkv +张智霖-相爱无梦,http://em.21dtv.com/songs/60048617.mkv +李克勤-相爱无门,http://em.21dtv.com/songs/60048616.mkv +谭咏麟+陈慧琳-相爱维命(HD演唱会),http://em.21dtv.com/songs/60048615.mkv +谢霆锋-向爱挑战,http://em.21dtv.com/songs/60049311.mkv +余天+黄妃-心爱台湾,http://em.21dtv.com/songs/60087326.mkv +陈浩民+钟汶-相爱太难,http://em.21dtv.com/songs/60048614.mkv +张宇-相爱是罪,http://em.21dtv.com/songs/60091083.mkv +曲泉丞-笑傲蜀山,http://em.21dtv.com/songs/60125649.mkv +TWINS-相爱6年,http://em.21dtv.com/songs/60048587.mkv +尚宏强+胡铁-笑傲明天,http://em.21dtv.com/songs/60133605.mkv +TWINS-相爱6年(演唱会),http://em.21dtv.com/songs/60065180.mkv +TWINS-相爱六年,http://em.21dtv.com/songs/60048610.mkv +李韦-相爱离开,http://em.21dtv.com/songs/60048609.mkv +陶钰玉-相爱旅程,http://em.21dtv.com/songs/60078567.mkv +叶振棠+柳影虹-笑傲江湖(演唱会),http://em.21dtv.com/songs/60061764.mkv +佚名-笑傲江湖,http://em.21dtv.com/songs/60049916.mkv +刘欢+王菲-笑傲江湖,http://em.21dtv.com/songs/60049915.mkv +含笑-笑傲江湖,http://em.21dtv.com/songs/60049914.mkv +叶振棠+叶丽仪-笑傲江湖(演唱会),http://em.21dtv.com/songs/60049913.mkv +余零-想爱就爱,http://em.21dtv.com/songs/60080338.mkv +那英-相爱恨早,http://em.21dtv.com/songs/60126255.mkv +张磊-相爱恨晚,http://em.21dtv.com/songs/60121663.mkv +张学友+梅艳芳-相爱很难,http://em.21dtv.com/songs/60048606.mkv +孙耀威+谢安琪-相爱很难(演唱会),http://em.21dtv.com/songs/60048605.mkv +李克勤+容祖儿-相爱很难(演唱会),http://em.21dtv.com/songs/60048604.mkv +黄凯芹-相爱很难(演唱会),http://em.21dtv.com/songs/60048603.mkv +二宝-心爱姑娘,http://em.21dtv.com/songs/60065226.mkv +许晋豪+杨培安-心爱的她,http://em.21dtv.com/songs/60050141.mkv +陈娟儿-想爱的人,http://em.21dtv.com/songs/60124631.mkv +陈夏莲-心爱的人,http://em.21dtv.com/songs/60124618.mkv +陈夏莲-心爱的人,http://em.21dtv.com/songs/60123289.mkv +蔡晓-心爱的人,http://em.21dtv.com/songs/60104415.mkv +李真-心爱的人,http://em.21dtv.com/songs/60104216.mkv +黄小琥-心爱的人,http://em.21dtv.com/songs/60084237.mkv +佚名-心爱的人,http://em.21dtv.com/songs/60050138.mkv +格桑梅朵-心爱的人,http://em.21dtv.com/songs/60050137.mkv +陈芬兰-心爱的人,http://em.21dtv.com/songs/60050136.mkv +徐子崴-相爱的人,http://em.21dtv.com/songs/60048595.mkv +陈雷-心爱的人(无原唱),http://em.21dtv.com/songs/60004662.mkv +林子娟-心爱的你,http://em.21dtv.com/songs/60050129.mkv +许志安+韩红-相爱多年,http://em.21dtv.com/songs/60048601.mkv +李千娜+李李仁-心爱的 Honey,http://em.21dtv.com/songs/60101378.mkv +黑皮-心爱的honey(无原唱),http://em.21dtv.com/songs/60050109.mkv +阿朵-相爱的歌,http://em.21dtv.com/songs/60048592.mkv +Ella-信爱成瘾,http://em.21dtv.com/songs/60110756.mkv +谢文德-笑傲苍天,http://em.21dtv.com/songs/60126203.mkv +吴雨霏-欣澳别恋,http://em.21dtv.com/songs/60050775.mkv +AKB48-心の羽根,http://em.21dtv.com/songs/60050102.mkv +ALAN-幸せの钟(演唱会),http://em.21dtv.com/songs/60051198.mkv +AOA-胸キュン,http://em.21dtv.com/songs/60114322.mkv +KAT TUN-喜びの歌,http://em.21dtv.com/songs/60078516.mkv +刘于平-王者之证,http://em.21dtv.com/songs/60111713.mkv +郑秀文-无助执着,http://em.21dtv.com/songs/60093311.mkv +胡诺言-无重状态,http://em.21dtv.com/songs/60091902.mkv +潘玮柏-王者之声,http://em.21dtv.com/songs/60101440.mkv +佚名-误责贞娘,http://em.21dtv.com/songs/60047832.mkv +谢旦-舞者卓玛,http://em.21dtv.com/songs/60047814.mkv +许慧欣-万众瞩目,http://em.21dtv.com/songs/60043332.mkv +BBF-王者之路,http://em.21dtv.com/songs/60132052.mkv +廖昌永-乌镇之恋,http://em.21dtv.com/songs/60123900.mkv +韩磊-乌镇之恋,http://em.21dtv.com/songs/60118183.mkv +黄亮华-我在这里,http://em.21dtv.com/songs/60069996.mkv +泼猴-伪装自己,http://em.21dtv.com/songs/60044208.mkv +青桂贤-我只在乎,http://em.21dtv.com/songs/60078420.mkv +汪峰-无主之城,http://em.21dtv.com/songs/60102454.mkv +童唱-五只鸭子(无原唱),http://em.21dtv.com/songs/60047693.mkv +林依伦-吻在雨夜,http://em.21dtv.com/songs/60044430.mkv +孟楠-我只有我,http://em.21dtv.com/songs/60067596.mkv +贡尕达哇-望着月亮,http://em.21dtv.com/songs/60127419.mkv +张靓颖-我走以后,http://em.21dtv.com/songs/60046985.mkv +黄义达-完整演出,http://em.21dtv.com/songs/60043156.mkv +庾澄庆-我最摇摆,http://em.21dtv.com/songs/60126857.mkv +庾澄庆+谭轩辕-我最摇摆,http://em.21dtv.com/songs/60115141.mkv +潘玮柏-我最摇摆,http://em.21dtv.com/songs/60101436.mkv +贾剑龙+耀乐团-我最摇摆,http://em.21dtv.com/songs/60095093.mkv +李宇春-我最摇摆(演唱会),http://em.21dtv.com/songs/60072576.mkv +庾澄庆-我最摇摆,http://em.21dtv.com/songs/60047004.mkv +李宇春-我最摇摆,http://em.21dtv.com/songs/60047003.mkv +7朵花-我只想要,http://em.21dtv.com/songs/60046895.mkv +许慧欣-万中选一,http://em.21dtv.com/songs/60043328.mkv +杜德伟-枉作小人,http://em.21dtv.com/songs/60043414.mkv +龙千玉-我真想你,http://em.21dtv.com/songs/60136050.mkv +慕容晓晓-我在想你,http://em.21dtv.com/songs/60097274.mkv +龙千玉-我真想你,http://em.21dtv.com/songs/60076360.mkv +许飞-我最响亮,http://em.21dtv.com/songs/60092086.mkv +快乐男声-我最响亮,http://em.21dtv.com/songs/60047002.mkv +陈柏宇-万中无一,http://em.21dtv.com/songs/60072484.mkv +林子祥-我走我路,http://em.21dtv.com/songs/60046984.mkv +陈楚生-无知无觉,http://em.21dtv.com/songs/60106404.mkv +陈楚生-无知无觉,http://em.21dtv.com/songs/60080450.mkv +林强-未振未动,http://em.21dtv.com/songs/60044295.mkv +刘尊-我在他乡,http://em.21dtv.com/songs/60046798.mkv +黄妃-无字天书,http://em.21dtv.com/songs/60123396.mkv +黄妃-无字天书,http://em.21dtv.com/songs/60116410.mkv +关智斌-无字天书,http://em.21dtv.com/songs/60047603.mkv +郑建鹏-舞者听令,http://em.21dtv.com/songs/60047813.mkv +李娅莎-我住台北,http://em.21dtv.com/songs/60120614.mkv +Super Girls-无中生有,http://em.21dtv.com/songs/60119193.mkv +欧阳朵-我只是我,http://em.21dtv.com/songs/60133903.mkv +刘海明-我最闪亮,http://em.21dtv.com/songs/60046999.mkv +快乐男声-我最闪亮,http://em.21dtv.com/songs/60046998.mkv +伍佰-万丈深坑(演唱会),http://em.21dtv.com/songs/60043327.mkv +吉克隽逸-乌镇时间,http://em.21dtv.com/songs/60119337.mkv +Hush-物质生活,http://em.21dtv.com/songs/60117462.mkv +李克勤-我着十号,http://em.21dtv.com/songs/60046849.mkv +关心妍-无罪释放,http://em.21dtv.com/songs/60047604.mkv +周传雄-我在身边,http://em.21dtv.com/songs/60046796.mkv +宋孟君+格子兮-王者荣耀,http://em.21dtv.com/songs/60130257.mkv +孙晓磊-王者荣耀,http://em.21dtv.com/songs/60128964.mkv +于文华+尹相杰-我在情中,http://em.21dtv.com/songs/60046795.mkv +吴燕玲-雾中情缘,http://em.21dtv.com/songs/60047861.mkv +吾酷-我赚钱了,http://em.21dtv.com/songs/60046975.mkv +至上励合-无主情话,http://em.21dtv.com/songs/60126092.mkv +张燕-万紫千红,http://em.21dtv.com/songs/60043334.mkv +王丽达-万紫千红,http://em.21dtv.com/songs/60043333.mkv +草蜢-万众期待(演唱会),http://em.21dtv.com/songs/60043330.mkv +艾梦萌-物质女孩,http://em.21dtv.com/songs/60047826.mkv +张国政-雾中迷情,http://em.21dtv.com/songs/60047860.mkv +朱桦-我怎么了,http://em.21dtv.com/songs/60046815.mkv +袁泉-我怎么了,http://em.21dtv.com/songs/60046814.mkv +高峰-我真呒甘,http://em.21dtv.com/songs/60046877.mkv +温伟杰-未知恋人,http://em.21dtv.com/songs/60097189.mkv +杭宏-我醉了吗,http://em.21dtv.com/songs/60047005.mkv +刘美君+谢安琪-文字流泪(HD演唱会),http://em.21dtv.com/songs/60044395.mkv +秀兰玛雅-违章建筑(演唱会),http://em.21dtv.com/songs/60044155.mkv +马旭东-伪装坚强,http://em.21dtv.com/songs/60083987.mkv +叶倩文-我自己飞,http://em.21dtv.com/songs/60046977.mkv +张信哲-雾中机场,http://em.21dtv.com/songs/60047859.mkv +何炅-桅子花开,http://em.21dtv.com/songs/60089613.mkv +张信哲-王子公主,http://em.21dtv.com/songs/60043372.mkv +马浚伟-我最关心,http://em.21dtv.com/songs/60093515.mkv +孙悦-我这个人,http://em.21dtv.com/songs/60046837.mkv +小爱与花儿乐队-王者归来,http://em.21dtv.com/songs/60115871.mkv +OH ONE演唱组-王者归来,http://em.21dtv.com/songs/60085822.mkv +孙悦+沙宝亮-王者归来,http://em.21dtv.com/songs/60069897.mkv +薛之谦-王子归来,http://em.21dtv.com/songs/60043373.mkv +李春波-万种风情,http://em.21dtv.com/songs/60043329.mkv +杨克强-无助的心(无原唱),http://em.21dtv.com/songs/60047599.mkv +许嵩-违章动物,http://em.21dtv.com/songs/60081420.mkv +田震-完整的我,http://em.21dtv.com/songs/60043155.mkv +陈燕妮-乌镇的桥,http://em.21dtv.com/songs/60119020.mkv +张柏芝-吻着道歉,http://em.21dtv.com/songs/60044431.mkv +励阳-我知道你,http://em.21dtv.com/songs/60132262.mkv +何韵诗-我找到了,http://em.21dtv.com/songs/60046831.mkv +高柏-我真的看,http://em.21dtv.com/songs/60072570.mkv +谭咏麟-我做得到(演唱会),http://em.21dtv.com/songs/60047011.mkv +黄贯中-我在存在,http://em.21dtv.com/songs/60046771.mkv +汪峰-我在长大,http://em.21dtv.com/songs/60102453.mkv +猪头皮-无醉不归,http://em.21dtv.com/songs/60047605.mkv +钟洁+RILL+谭炜星-我做不到,http://em.21dtv.com/songs/60084112.mkv +卓文萱-我做不到,http://em.21dtv.com/songs/60047008.mkv +秋虹-我做不到,http://em.21dtv.com/songs/60047007.mkv +糖兄妹-我最爱糖,http://em.21dtv.com/songs/60046994.mkv +陈勇-我只爱你,http://em.21dtv.com/songs/60068799.mkv +花儿(林佳音)-我一直在,http://em.21dtv.com/songs/60131758.mkv +夏后-我一直在,http://em.21dtv.com/songs/60119371.mkv +谭小环-我要自主,http://em.21dtv.com/songs/60046602.mkv +木棉-我要自由,http://em.21dtv.com/songs/60110255.mkv +王贞心-我要找大,http://em.21dtv.com/songs/60085935.mkv +方梓媛-我要真唱(演唱会),http://em.21dtv.com/songs/60046600.mkv +云菲菲-武夷印象,http://em.21dtv.com/songs/60078482.mkv +徐誉滕-我原以为,http://em.21dtv.com/songs/60046729.mkv +黄家强-午夜怨曲(演唱会),http://em.21dtv.com/songs/60047745.mkv +BEYOND-午夜怨曲(演唱会),http://em.21dtv.com/songs/60047744.mkv +SNH48-万有引力,http://em.21dtv.com/songs/60109871.mkv +汪苏泷-万有引力,http://em.21dtv.com/songs/60078028.mkv +J3组合-万有引力,http://em.21dtv.com/songs/60078027.mkv +章小军-万有引力,http://em.21dtv.com/songs/60071203.mkv +J-BOY3-万有引力,http://em.21dtv.com/songs/60062057.mkv +谢霆锋-万诱引力,http://em.21dtv.com/songs/60043325.mkv +陈兴瑜-我愿意等,http://em.21dtv.com/songs/60115484.mkv +佚名-无言以对,http://em.21dtv.com/songs/60047537.mkv +蔡依林-无言以对,http://em.21dtv.com/songs/60047536.mkv +王爱华-望眼欲穿,http://em.21dtv.com/songs/60130593.mkv +陈佩斯+朱时茂-王爷邮差,http://em.21dtv.com/songs/60090287.mkv +徐向立-我愿相信,http://em.21dtv.com/songs/60119569.mkv +刘嘉亮-午夜香吻,http://em.21dtv.com/songs/60078481.mkv +苏珊+胡美仪-午夜香吻(演唱会),http://em.21dtv.com/songs/60078480.mkv +罗桦-午夜香吻(演唱会),http://em.21dtv.com/songs/60078479.mkv +庄雪芳-午夜香吻,http://em.21dtv.com/songs/60047743.mkv +张伟文-午夜香吻(演唱会),http://em.21dtv.com/songs/60047742.mkv +潘迪华-午夜香吻(演唱会),http://em.21dtv.com/songs/60047741.mkv +蔡琴-午夜香吻(HD演唱会),http://em.21dtv.com/songs/60047740.mkv +周杰伦战队-我要夏天,http://em.21dtv.com/songs/60115057.mkv +周杰伦+杨瑞代-我要夏天,http://em.21dtv.com/songs/60106712.mkv +卓依婷-我又想说,http://em.21dtv.com/songs/60089179.mkv +蔡小虎-望月想你,http://em.21dtv.com/songs/60043732.mkv +快乐金缘+泾河问秦-午夜香茗,http://em.21dtv.com/songs/60098389.mkv +牛国长-午夜香茗,http://em.21dtv.com/songs/60061727.mkv +费翔-午夜星河,http://em.21dtv.com/songs/60088688.mkv +山子华-我要幸福,http://em.21dtv.com/songs/60133610.mkv +谢金燕-我要幸福,http://em.21dtv.com/songs/60065123.mkv +梁汉文-我要先飞,http://em.21dtv.com/songs/60046585.mkv +屠洪纲-唯有兄弟,http://em.21dtv.com/songs/60044192.mkv +庞龙-唯有兄弟,http://em.21dtv.com/songs/60022391.mkv +J.Arie(雷琛瑜)-无永无远,http://em.21dtv.com/songs/60106547.mkv +任贤齐-五一五一,http://em.21dtv.com/songs/60047671.mkv +关德辉-无怨无尤,http://em.21dtv.com/songs/60047589.mkv +侧田-无言无语,http://em.21dtv.com/songs/60047535.mkv +吕方-午夜温馨,http://em.21dtv.com/songs/60047738.mkv +王建杰-无依无偎,http://em.21dtv.com/songs/60047545.mkv +ZEN-我有问题,http://em.21dtv.com/songs/60046698.mkv +林木-我愿为你,http://em.21dtv.com/songs/60046739.mkv +林采缇-when youre with me,http://em.21dtv.com/songs/60086383.mkv +DIERKS BENTLEY-5150,http://em.21dtv.com/songs/60072855.mkv +陈明-无忧无虑,http://em.21dtv.com/songs/60047547.mkv +零点乐队-无依无靠(演唱会),http://em.21dtv.com/songs/60047544.mkv +东方依依-无怨无悔,http://em.21dtv.com/songs/60114368.mkv +流苏-无怨无悔,http://em.21dtv.com/songs/60093647.mkv +袁小迪+张蓉蓉-无怨无悔,http://em.21dtv.com/songs/60085964.mkv +AVRIL LAVIGNE-wish you were here,http://em.21dtv.com/songs/60061955.mkv +陆平-无怨无悔,http://em.21dtv.com/songs/60047587.mkv +刘和刚-无怨无悔,http://em.21dtv.com/songs/60047586.mkv +CHARLENE SORAIA-whererver you will go,http://em.21dtv.com/songs/60066757.mkv +THE CALLING-wherever you will go,http://em.21dtv.com/songs/60006301.mkv +邓丽君-午夜微风,http://em.21dtv.com/songs/60112989.mkv +GWEN STEFANI-what you waiting for,http://em.21dtv.com/songs/60074116.mkv +MIZZNINA-what you waiting for,http://em.21dtv.com/songs/60063795.mkv +光光-我以为爱,http://em.21dtv.com/songs/60067592.mkv +草蜢-我要跳舞,http://em.21dtv.com/songs/60106230.mkv +何润东-我要投降,http://em.21dtv.com/songs/60092259.mkv +佚名-午夜探戈,http://em.21dtv.com/songs/60047737.mkv +流苏-望月水中,http://em.21dtv.com/songs/60066371.mkv +张卫健-我要撒野,http://em.21dtv.com/songs/60046572.mkv +佚名-望月思乡,http://em.21dtv.com/songs/60043728.mkv +范逸臣-我已受伤,http://em.21dtv.com/songs/60046656.mkv +李丽霞-唯有是你(演唱会),http://em.21dtv.com/songs/60068739.mkv +陈伟霆-无言守候,http://em.21dtv.com/songs/60111481.mkv +郭富城-唯一色彩,http://em.21dtv.com/songs/60044189.mkv +郭富城-唯一色彩(演唱会),http://em.21dtv.com/songs/60044188.mkv +3 DOORS DOWN-when youre young,http://em.21dtv.com/songs/60063798.mkv +万茜-万语千言,http://em.21dtv.com/songs/60083952.mkv +古天乐-万语千言,http://em.21dtv.com/songs/60043326.mkv +张茜+张卫健-我要轻闲,http://em.21dtv.com/songs/60046566.mkv +刘大毅-未曰情歌,http://em.21dtv.com/songs/60068742.mkv +邓丽君-我与秋风,http://em.21dtv.com/songs/60046727.mkv +赵自强-我要陪你,http://em.21dtv.com/songs/60046563.mkv +佚名-whenever you need somebody,http://em.21dtv.com/songs/60006278.mkv +欢子-午夜男女,http://em.21dtv.com/songs/60047730.mkv +小峰峰-午夜女郎,http://em.21dtv.com/songs/60063146.mkv +孙浩-我要你好(演唱会),http://em.21dtv.com/songs/60046554.mkv +喻佳丽-我也难过,http://em.21dtv.com/songs/60132312.mkv +张韶涵-我要你的,http://em.21dtv.com/songs/60046548.mkv +侧田-whats your name again(演唱会),http://em.21dtv.com/songs/60006215.mkv +BEYOND-午夜迷墙,http://em.21dtv.com/songs/60047729.mkv +周国贤+KOLOR-午夜迷墙(演唱会),http://em.21dtv.com/songs/60047728.mkv +BEYOND-午夜迷墙(演唱会),http://em.21dtv.com/songs/60047727.mkv +LUCIE SELVAS-what youre made of,http://em.21dtv.com/songs/60006214.mkv +阿牛+江若琳-will you marry me,http://em.21dtv.com/songs/60074148.mkv +张清芳-will you marry me,http://em.21dtv.com/songs/60006343.mkv +轻音乐-午夜梦回,http://em.21dtv.com/songs/60090236.mkv +黎明-午夜梦回(演唱会),http://em.21dtv.com/songs/60047723.mkv +庞龙-午夜玫瑰,http://em.21dtv.com/songs/60047722.mkv +凌志辉-午夜玫瑰,http://em.21dtv.com/songs/60047721.mkv +凌志辉-午夜玫瑰(舞曲版),http://em.21dtv.com/songs/60047720.mkv +刘美君-午夜丽人,http://em.21dtv.com/songs/60070017.mkv +谭咏麟-午夜丽人(演唱会),http://em.21dtv.com/songs/60047717.mkv +苏永康-午夜丽人(演唱会),http://em.21dtv.com/songs/60047716.mkv +伍浩哲-无缘恋梦,http://em.21dtv.com/songs/60121360.mkv +李明洋-无缘恋歌,http://em.21dtv.com/songs/60078473.mkv +丁力-午夜列车,http://em.21dtv.com/songs/60047718.mkv +陈明-唯有宽容,http://em.21dtv.com/songs/60044191.mkv +朱婧佳-我要快乐,http://em.21dtv.com/songs/60084092.mkv +曾一鸣-我要快乐,http://em.21dtv.com/songs/60080835.mkv +张惠妹-我要快乐,http://em.21dtv.com/songs/60046540.mkv +徐怀钰-我要快乐,http://em.21dtv.com/songs/60046539.mkv +白智英+Verbal Jint-无药可救,http://em.21dtv.com/songs/60120816.mkv +郑可为-无药可救,http://em.21dtv.com/songs/60107269.mkv +郑秀文-无药可救,http://em.21dtv.com/songs/60047542.mkv +黄品冠-无药可救,http://em.21dtv.com/songs/60047541.mkv +4 IN LOVE-无药可救,http://em.21dtv.com/songs/60047540.mkv +雷龙-午夜狂欢,http://em.21dtv.com/songs/60123342.mkv +佚名-我与咖啡,http://em.21dtv.com/songs/60046725.mkv +佚名-我要咖啡,http://em.21dtv.com/songs/60046537.mkv +新宝岛康乐队-午夜狂奔,http://em.21dtv.com/songs/60126944.mkv +关淑怡-午夜狂奔(演唱会),http://em.21dtv.com/songs/60047715.mkv +凤飞飞-午夜街头,http://em.21dtv.com/songs/60047712.mkv +张伟文-午夜吉他(演唱会),http://em.21dtv.com/songs/60047711.mkv +森森+斑斑-午夜吉他(演唱会),http://em.21dtv.com/songs/60047710.mkv +侧田-我有今日,http://em.21dtv.com/songs/60046693.mkv +侧田-我有今日(演唱会),http://em.21dtv.com/songs/60046692.mkv +家家-我遇见你,http://em.21dtv.com/songs/60115865.mkv +家家-我遇见你,http://em.21dtv.com/songs/60111021.mkv +FACE TO FACE-午夜节目,http://em.21dtv.com/songs/60047713.mkv +盘欣蕾-午夜精灵,http://em.21dtv.com/songs/60130626.mkv +彩贝与海-午夜精灵,http://em.21dtv.com/songs/60104148.mkv +糖兄(糖兄妹)-我要结婚,http://em.21dtv.com/songs/60078385.mkv +川子-我要结婚,http://em.21dtv.com/songs/60065119.mkv +彭小龙-我要减肥,http://em.21dtv.com/songs/60115939.mkv +游国维-午夜回忆(无原唱),http://em.21dtv.com/songs/60047709.mkv +吉克永都-我要回来,http://em.21dtv.com/songs/60116622.mkv +高山林-五月花开,http://em.21dtv.com/songs/60047690.mkv +高山林-五月花开(演唱会),http://em.21dtv.com/songs/60047689.mkv +陈瑞-我要回家,http://em.21dtv.com/songs/60078383.mkv +苏亚-我要回家,http://em.21dtv.com/songs/60069988.mkv +佚名-我要回家,http://em.21dtv.com/songs/60046534.mkv +潘秀琼-我要回家,http://em.21dtv.com/songs/60046533.mkv +刘尊-我要回家,http://em.21dtv.com/songs/60046532.mkv +谭咏麟-午夜皇后,http://em.21dtv.com/songs/60047708.mkv +张信哲-我应该走,http://em.21dtv.com/songs/60046670.mkv +李茂山-我也甘愿(无原唱),http://em.21dtv.com/songs/60046612.mkv +黄馨-我一个睡,http://em.21dtv.com/songs/60046625.mkv +陆飞-我一个人,http://em.21dtv.com/songs/60128512.mkv +SISTAR-我一个人,http://em.21dtv.com/songs/60113187.mkv +杨宗宪-我一个人,http://em.21dtv.com/songs/60078392.mkv +付辛博-我一个人,http://em.21dtv.com/songs/60062359.mkv +舜文齐-文艺姑娘,http://em.21dtv.com/songs/60112164.mkv +庾澄庆+蘑菇兄弟+葛泓语+金润吉+苏梦玫-我要给你,http://em.21dtv.com/songs/60081590.mkv +庾澄庆+吴莫愁-我要给你,http://em.21dtv.com/songs/60071273.mkv +谭咏麟-无言感激,http://em.21dtv.com/songs/60047531.mkv +谭咏麟+李克勤-无言感激(演唱会),http://em.21dtv.com/songs/60047530.mkv +李克勤-无言感激(演唱会),http://em.21dtv.com/songs/60047529.mkv +黄凯芹-五月过后,http://em.21dtv.com/songs/60047686.mkv +蔡小虎-我有够憨(无原唱),http://em.21dtv.com/songs/60046689.mkv +李紫昕-我要高飞,http://em.21dtv.com/songs/60084090.mkv +龚楚贻-我要飞翔,http://em.21dtv.com/songs/60111563.mkv +谢沛恩-文艺电影,http://em.21dtv.com/songs/60072509.mkv +游鸿明-五月的雪,http://em.21dtv.com/songs/60047684.mkv +罗时丰-雾夜灯塔,http://em.21dtv.com/songs/60134117.mkv +K.will-唯一的人,http://em.21dtv.com/songs/60108231.mkv +佚名-无缘的人,http://em.21dtv.com/songs/60047575.mkv +伊雪-无缘的人,http://em.21dtv.com/songs/60047574.mkv +白冰冰-无缘的人,http://em.21dtv.com/songs/60047573.mkv +好妹妹乐队-五月的你,http://em.21dtv.com/songs/60122639.mkv +红金升-无缘的你(无原唱),http://em.21dtv.com/songs/60047569.mkv +HOTCHA-唯一的你(演唱会),http://em.21dtv.com/songs/60044186.mkv +黄西田+樱桃姐妹-无缘的梦,http://em.21dtv.com/songs/60047568.mkv +王爱华-午夜的泪,http://em.21dtv.com/songs/60129408.mkv +王绎龙-午夜DJ,http://em.21dtv.com/songs/50000178.mkv +江蕙-无缘的酒,http://em.21dtv.com/songs/60095739.mkv +佚名-午夜电话,http://em.21dtv.com/songs/60047706.mkv +陈雅伦-午夜电话,http://em.21dtv.com/songs/60047705.mkv +佚名-五月的花,http://em.21dtv.com/songs/60047681.mkv +甄妮-五月的花(演唱会),http://em.21dtv.com/songs/60047680.mkv +孙淑媚-无缘的花,http://em.21dtv.com/songs/60047565.mkv +韩磊-无言的歌,http://em.21dtv.com/songs/60124692.mkv +潘越云-无言的歌,http://em.21dtv.com/songs/60047514.mkv +周璇-五月的风,http://em.21dtv.com/songs/60047679.mkv +佚名-五月的风,http://em.21dtv.com/songs/60047678.mkv +彭丽媛-五月的风,http://em.21dtv.com/songs/60047677.mkv +潘秀琼-五月的风,http://em.21dtv.com/songs/60047676.mkv +董文华-五月的风(演唱会),http://em.21dtv.com/songs/60047675.mkv +佚名-无言地等,http://em.21dtv.com/songs/60047528.mkv +SHANIA TWAIN-whatever you do dont,http://em.21dtv.com/songs/60006220.mkv +白小白-无言的爱,http://em.21dtv.com/songs/60135592.mkv +唐俪+陈随意-唯一的爱,http://em.21dtv.com/songs/60133499.mkv +秦浩-唯一的爱,http://em.21dtv.com/songs/60093654.mkv +王中平-唯一的爱,http://em.21dtv.com/songs/60083967.mkv +张凌枫-唯一的爱,http://em.21dtv.com/songs/60069916.mkv +阿茹娜-我要的爱,http://em.21dtv.com/songs/60065115.mkv +佚名-无缘的爱,http://em.21dtv.com/songs/60047564.mkv +叶启田-无缘的爱,http://em.21dtv.com/songs/60047563.mkv +郭金发-无缘的爱,http://em.21dtv.com/songs/60047562.mkv +陈盈洁+林峻彦-无缘的爱,http://em.21dtv.com/songs/60047561.mkv +陈小云-无缘的爱,http://em.21dtv.com/songs/60047560.mkv +佚名-唯一的爱,http://em.21dtv.com/songs/60044183.mkv +龙千玉-唯一的爱,http://em.21dtv.com/songs/60044182.mkv +刘嘉亮-唯一的爱,http://em.21dtv.com/songs/60044181.mkv +刘欢-我欲成仙,http://em.21dtv.com/songs/60046728.mkv +杨愿明-我要出头,http://em.21dtv.com/songs/60120656.mkv +冯巩+李丁-无蝇餐厅,http://em.21dtv.com/songs/60089653.mkv +本多RURU-午夜彩虹,http://em.21dtv.com/songs/60091285.mkv +蔡义德-我要唱歌,http://em.21dtv.com/songs/60046504.mkv +王贞心-我要长大,http://em.21dtv.com/songs/60085933.mkv +令音之翼-午夜背影,http://em.21dtv.com/songs/60109950.mkv +痛仰乐队-午夜芭蕾,http://em.21dtv.com/songs/60129440.mkv +THE CORRS-would you be happier,http://em.21dtv.com/songs/60006421.mkv +王秀琪-无要按怎,http://em.21dtv.com/songs/60124275.mkv +曹格-我也爱你,http://em.21dtv.com/songs/60126961.mkv +Snh48-微瑕珍珠,http://em.21dtv.com/songs/60107437.mkv +蔡小虎-无心之罪,http://em.21dtv.com/songs/60047505.mkv +张峰奇-我想自由,http://em.21dtv.com/songs/60046427.mkv +信-我选择笑,http://em.21dtv.com/songs/60069987.mkv +庄秋玉-无锡真美,http://em.21dtv.com/songs/60126846.mkv +单色凌-危险走红,http://em.21dtv.com/songs/60120389.mkv +柳岩-无心之过,http://em.21dtv.com/songs/60047504.mkv +林冠杰-我想知道,http://em.21dtv.com/songs/60132600.mkv +温馨-我心已醉,http://em.21dtv.com/songs/60112085.mkv +叶倩文-我心依在,http://em.21dtv.com/songs/60046459.mkv +蔡幸娟-我心已许,http://em.21dtv.com/songs/60046461.mkv +蔡旻佑-我想要说,http://em.21dtv.com/songs/60046418.mkv +赖子健-我需要你,http://em.21dtv.com/songs/60066427.mkv +周雅芳-我需要你,http://em.21dtv.com/songs/60046485.mkv +毛宁-我需要你,http://em.21dtv.com/songs/60046484.mkv +满文军-我需要你,http://em.21dtv.com/songs/60046483.mkv +李克勤-我需要你,http://em.21dtv.com/songs/60046482.mkv +王杰-我需要你(无原唱),http://em.21dtv.com/songs/60046481.mkv +赵薇-我想要你,http://em.21dtv.com/songs/60046417.mkv +梁一贞-微笑眼泪,http://em.21dtv.com/songs/60043788.mkv +李俊旭-问心有愧,http://em.21dtv.com/songs/60081048.mkv +羊进达-我心依旧(舞曲版),http://em.21dtv.com/songs/60085931.mkv +羊进达-我心依旧,http://em.21dtv.com/songs/60080801.mkv +张靓颖-微笑以后,http://em.21dtv.com/songs/60096293.mkv +毛宁-我心永恒,http://em.21dtv.com/songs/60046464.mkv +陆萍-我心永恒,http://em.21dtv.com/songs/60046463.mkv +朱桦-我心永恒(演唱会),http://em.21dtv.com/songs/60046462.mkv +熊大-我想要飞,http://em.21dtv.com/songs/60107048.mkv +吴琼-我需要爱,http://em.21dtv.com/songs/60069986.mkv +佚名-我心相印,http://em.21dtv.com/songs/60046458.mkv +陈雅森-我心向佛,http://em.21dtv.com/songs/60133058.mkv +陈雅森-我心向佛,http://em.21dtv.com/songs/60119029.mkv +张淑衡+凌小义-无序相爱(HD),http://em.21dtv.com/songs/60097153.mkv +詹曼铃+陈茂丰-无心无意,http://em.21dtv.com/songs/60047502.mkv +群星-我型我show(演唱会),http://em.21dtv.com/songs/60046473.mkv +佚名-我行我素,http://em.21dtv.com/songs/60045498.mkv +MC HOTDOG-我行我素,http://em.21dtv.com/songs/60045497.mkv +朱杰+张杰-我行我show,http://em.21dtv.com/songs/60045496.mkv +黄仲昆-我想问你,http://em.21dtv.com/songs/60046405.mkv +邓雯心-雯心无愧(演唱会),http://em.21dtv.com/songs/60069921.mkv +卓依婷-问心无愧,http://em.21dtv.com/songs/60044503.mkv +赵咏华-问心无愧,http://em.21dtv.com/songs/60044502.mkv +张宇-问心无愧,http://em.21dtv.com/songs/60044501.mkv +成龙-问心无愧,http://em.21dtv.com/songs/60044500.mkv +张敬轩-温馨提示,http://em.21dtv.com/songs/60097451.mkv +胡梅-温馨天使,http://em.21dtv.com/songs/60078124.mkv +洪卓立-温馨提示,http://em.21dtv.com/songs/60061665.mkv +陈崴-危险天使,http://em.21dtv.com/songs/60043745.mkv +张国荣-无心睡眠(演唱会),http://em.21dtv.com/songs/60047501.mkv +郭富城-无心睡眠(演唱会),http://em.21dtv.com/songs/60047500.mkv +郑锦昌-我心碎了(演唱会),http://em.21dtv.com/songs/60078370.mkv +方大同-危险世界,http://em.21dtv.com/songs/60099261.mkv +1983组合-无限世界,http://em.21dtv.com/songs/60097154.mkv +泳儿-无心伤害,http://em.21dtv.com/songs/60113805.mkv +杜德伟-无心伤害,http://em.21dtv.com/songs/60047499.mkv +杜德伟-无心伤害(演唱会),http://em.21dtv.com/songs/60047498.mkv +群星-微笑上海,http://em.21dtv.com/songs/60043785.mkv +成成-蜗行时代,http://em.21dtv.com/songs/60122772.mkv +us-微信时代,http://em.21dtv.com/songs/60118284.mkv +冷漠-我心深处,http://em.21dtv.com/songs/60125164.mkv +费玉清-我心深处,http://em.21dtv.com/songs/60046452.mkv +邓丽君-我心深处,http://em.21dtv.com/songs/60046451.mkv +林忆莲+杜德伟-我心仍在,http://em.21dtv.com/songs/60046448.mkv +乐游团-微笑任务,http://em.21dtv.com/songs/60126577.mkv +谭咏麟-我心如雷(演唱会),http://em.21dtv.com/songs/60046449.mkv +侯旭-无限荣光,http://em.21dtv.com/songs/60047483.mkv +游美灵-微信情缘,http://em.21dtv.com/songs/60127180.mkv +卓么-微信情缘,http://em.21dtv.com/songs/60094009.mkv +李玟-危险情人,http://em.21dtv.com/songs/60043744.mkv +李松-微信乞丐,http://em.21dtv.com/songs/60116011.mkv +何风-微信情歌,http://em.21dtv.com/songs/60099088.mkv +迪子-吾系情歌,http://em.21dtv.com/songs/60062317.mkv +莫文蔚-我想念谁,http://em.21dtv.com/songs/60091968.mkv +苏琛+常定晨-我想念你,http://em.21dtv.com/songs/60120880.mkv +林薇琪-我想念你,http://em.21dtv.com/songs/60097284.mkv +樊子健-我想你啦,http://em.21dtv.com/songs/60130504.mkv +李依瑾-我想你了,http://em.21dtv.com/songs/60099300.mkv +郎郎-我想你了,http://em.21dtv.com/songs/60088755.mkv +马志锋-我想你了,http://em.21dtv.com/songs/60065112.mkv +阿茹娜-我想你了,http://em.21dtv.com/songs/60046394.mkv +萧正楠-我想你点,http://em.21dtv.com/songs/60093112.mkv +汪贤祖-我想念的,http://em.21dtv.com/songs/60084087.mkv +马蕊-微笑明天(演唱会),http://em.21dtv.com/songs/60043783.mkv +于台烟-我心里痛,http://em.21dtv.com/songs/60046446.mkv +许志安-吻下留人,http://em.21dtv.com/songs/60044428.mkv +杨林-吻下留情,http://em.21dtv.com/songs/60089352.mkv +央金拉姆-维西恋歌,http://em.21dtv.com/songs/60089763.mkv +钟镇涛-无限旅程,http://em.21dtv.com/songs/60093375.mkv +泳儿-无心恋唱,http://em.21dtv.com/songs/60047495.mkv +泳儿-无心恋唱(演唱会),http://em.21dtv.com/songs/60047494.mkv +赖伟锋-无心快语,http://em.21dtv.com/songs/60114095.mkv +刘德华-无心快意,http://em.21dtv.com/songs/60061726.mkv +蔡国权-无心快语,http://em.21dtv.com/songs/60047491.mkv +郭富城-我心狂野,http://em.21dtv.com/songs/60046445.mkv +周慧敏+余永俊-无限可能,http://em.21dtv.com/songs/60097155.mkv +D DAY-我想看看,http://em.21dtv.com/songs/60078362.mkv +张满强-无懈可击,http://em.21dtv.com/songs/60098357.mkv +顾峰-无懈可击,http://em.21dtv.com/songs/60067608.mkv +ENERGY-无懈可击,http://em.21dtv.com/songs/60047484.mkv +朱婧-我想见你,http://em.21dtv.com/songs/60065111.mkv +张雷-我想静静,http://em.21dtv.com/songs/60120531.mkv +河静静-我想静静,http://em.21dtv.com/songs/60119763.mkv +秋裤大叔-我想静静,http://em.21dtv.com/songs/60111568.mkv +秋裤大叔-我想静静,http://em.21dtv.com/songs/60107931.mkv +吴天世-微信好友,http://em.21dtv.com/songs/60130182.mkv +孙楠-五星红旗,http://em.21dtv.com/songs/60113402.mkv +刘媛媛-五星红旗,http://em.21dtv.com/songs/60047669.mkv +关东-我喜欢你,http://em.21dtv.com/songs/60133387.mkv +派伟俊-我喜欢你,http://em.21dtv.com/songs/60121872.mkv +派伟俊-我喜欢你,http://em.21dtv.com/songs/60117893.mkv +关菊英-无心害你,http://em.21dtv.com/songs/60047490.mkv +林子良-我想和你(演唱会),http://em.21dtv.com/songs/60046385.mkv +王羚柔-我喜欢你,http://em.21dtv.com/songs/60046353.mkv +赵心怡-我想好了,http://em.21dtv.com/songs/60134266.mkv +王翔-我想回家,http://em.21dtv.com/songs/60065110.mkv +MR.-5x幻觉(演唱会),http://em.21dtv.com/songs/60063516.mkv +袁智勇-我想回家,http://em.21dtv.com/songs/60046388.mkv +春雷-我想回家,http://em.21dtv.com/songs/60046387.mkv +李娟儿-微信红包,http://em.21dtv.com/songs/60118665.mkv +魏嘉榆-我心孤单,http://em.21dtv.com/songs/60130909.mkv +钱红+阿川-我心飞扬,http://em.21dtv.com/songs/60134366.mkv +王成勇-我心飞翔,http://em.21dtv.com/songs/60094228.mkv +孙悦-我心飞翔(演唱会),http://em.21dtv.com/songs/60046444.mkv +毛宁-晚些分手,http://em.21dtv.com/songs/60043252.mkv +黎明-妄想非非(演唱会),http://em.21dtv.com/songs/60043475.mkv +李蕴-无心对峙,http://em.21dtv.com/songs/60047489.mkv +郭富城-危险动作,http://em.21dtv.com/songs/60043742.mkv +乐瞳-微笑的鱼,http://em.21dtv.com/songs/60043780.mkv +刘德华-无须担心(演唱会),http://em.21dtv.com/songs/60047508.mkv +NCT 127-无限的我,http://em.21dtv.com/songs/60131091.mkv +张悬-危险的是,http://em.21dtv.com/songs/60069903.mkv +谢莉婷-无心的人,http://em.21dtv.com/songs/60123178.mkv +谢莉婷-无心的人,http://em.21dtv.com/songs/60117232.mkv +胡夏-微笑的人,http://em.21dtv.com/songs/60080555.mkv +阿吉仔-无心的人,http://em.21dtv.com/songs/60071291.mkv +佚名-无心的人,http://em.21dtv.com/songs/60047488.mkv +何炅-微笑点晴,http://em.21dtv.com/songs/60089125.mkv +吴佩慈+吴家辉-微笑的秋,http://em.21dtv.com/songs/60043779.mkv +放客兄弟-微笑的脸,http://em.21dtv.com/songs/60103314.mkv +顺子+BEN-我心动了,http://em.21dtv.com/songs/60046443.mkv +秀兰玛雅-无惜代价,http://em.21dtv.com/songs/60106175.mkv +沙莎-温馨的家,http://em.21dtv.com/songs/60071222.mkv +孙盛希-微笑带过,http://em.21dtv.com/songs/60130244.mkv +M3-危险地带(无原唱),http://em.21dtv.com/songs/60043741.mkv +陈振云-无心的错,http://em.21dtv.com/songs/60047486.mkv +枫桥-无形的爱,http://em.21dtv.com/songs/60121825.mkv +小羽毛-我想长大,http://em.21dtv.com/songs/60115108.mkv +冯汉树-卧薪尝胆,http://em.21dtv.com/songs/60047016.mkv +卢海鹏-卧薪尝胆(演唱会),http://em.21dtv.com/songs/60047015.mkv +莫智钦+孙羽幽-危险表演,http://em.21dtv.com/songs/60099466.mkv +孙羽幽-危险表演,http://em.21dtv.com/songs/60098244.mkv +陈慧娴-我心不死,http://em.21dtv.com/songs/60046442.mkv +高慧君-我学不会,http://em.21dtv.com/songs/60046489.mkv +林海峰-我系边个,http://em.21dtv.com/songs/60046358.mkv +超人-微信宝贝,http://em.21dtv.com/songs/60106311.mkv +萧全-危险宝贝,http://em.21dtv.com/songs/60085828.mkv +单色凌+贯诗钦-违心爱情,http://em.21dtv.com/songs/60067528.mkv +庄学忠-为我珍重,http://em.21dtv.com/songs/60044138.mkv +张津涤-为我转身,http://em.21dtv.com/songs/60126888.mkv +龙千玉-我无醉啦,http://em.21dtv.com/songs/60046341.mkv +王杰-问我自己,http://em.21dtv.com/songs/60091714.mkv +邓丽欣-我未愿意(演唱会),http://em.21dtv.com/songs/60046328.mkv +龚月-吻我一下,http://em.21dtv.com/songs/60044427.mkv +陈思安+办桌阿杰-我问雨水,http://em.21dtv.com/songs/60046334.mkv +谭维维-万物有灵,http://em.21dtv.com/songs/60124503.mkv +CITY HIGH-what would you do,http://em.21dtv.com/songs/60006213.mkv +张杰+赵俊-勿忘心安,http://em.21dtv.com/songs/60111887.mkv +张杰-勿忘心安(我是歌手第二期),http://em.21dtv.com/songs/60096283.mkv +张杰-勿忘心安,http://em.21dtv.com/songs/60047823.mkv +芭芘娃娃-喔喔喔之DJ,http://em.21dtv.com/songs/60090144.mkv +SNEAKY SOUND SYSTEM-when we were young,http://em.21dtv.com/songs/60006257.mkv +柯有伦-无畏无惧,http://em.21dtv.com/songs/60047469.mkv +佚名-wish we were heroes,http://em.21dtv.com/songs/60006366.mkv +黎明-为我停留,http://em.21dtv.com/songs/60044136.mkv +费玉清-为我停留,http://em.21dtv.com/songs/60044135.mkv +刘美君-娃娃岁月(演唱会),http://em.21dtv.com/songs/60043054.mkv +张惠妹-我无所谓(演唱会),http://em.21dtv.com/songs/60046336.mkv +NICKELBACK-when we stand together,http://em.21dtv.com/songs/60065726.mkv +李克勤-为我深情,http://em.21dtv.com/songs/60092793.mkv +温兆伦-为我守侯,http://em.21dtv.com/songs/60091625.mkv +温兆伦-为我守候,http://em.21dtv.com/songs/60044134.mkv +温兆伦+陈松伶-为我守候(无原唱),http://em.21dtv.com/songs/60044133.mkv +佚名-we will rock you,http://em.21dtv.com/songs/60006151.mkv +5566-we will rock u,http://em.21dtv.com/songs/60006150.mkv +浩角翔起-万万人迷,http://em.21dtv.com/songs/60115268.mkv +郑融+庄冬昕+欧阳靖-无谓情歌,http://em.21dtv.com/songs/60047472.mkv +ENGELBERT HUMPERDINC-winter world of love,http://em.21dtv.com/songs/60006364.mkv +赵子龙-我为你醉,http://em.21dtv.com/songs/60065107.mkv +佚名-我为你狂,http://em.21dtv.com/songs/60046311.mkv +陈美凤-我为你狂,http://em.21dtv.com/songs/60046310.mkv +林汇敏+林久登-望无你归,http://em.21dtv.com/songs/60111199.mkv +谭维维-我忘了说,http://em.21dtv.com/songs/60089482.mkv +天气女孩-为我加油,http://em.21dtv.com/songs/60107638.mkv +解晓东-为我加油(演唱会),http://em.21dtv.com/songs/60044129.mkv +刘德华-忘我精神,http://em.21dtv.com/songs/60043644.mkv +瑾小妍-我挖掘姬,http://em.21dtv.com/songs/60110421.mkv +[Group] +groupName=十六万歌曲MV等 - 57 +COOKIES+MIKI-我未惊过,http://em.21dtv.com/songs/60046326.mkv +陈文浩-为我骄傲,http://em.21dtv.com/songs/60126386.mkv +DAVICHI+T ARA-we were in love,http://em.21dtv.com/songs/60066753.mkv +PAULA DEANDA-why would i ever,http://em.21dtv.com/songs/60065729.mkv +佚名-what will i do,http://em.21dtv.com/songs/60006211.mkv +南拳妈妈-吻我好吗,http://em.21dtv.com/songs/60044426.mkv +傅振辉-我无后悔(无原唱),http://em.21dtv.com/songs/60046335.mkv +八斤-为我喝彩,http://em.21dtv.com/songs/60128803.mkv +雷澳韵-为我喝彩,http://em.21dtv.com/songs/60068736.mkv +东来东往-为我喝彩,http://em.21dtv.com/songs/60044127.mkv +邰正宵-为我喝采,http://em.21dtv.com/songs/60044126.mkv +刘德华-为我鼓掌,http://em.21dtv.com/songs/60044123.mkv +沈世爱-我为歌狂,http://em.21dtv.com/songs/60088209.mkv +陈少华-为我感动,http://em.21dtv.com/songs/60088869.mkv +陆正信-万物归巢,http://em.21dtv.com/songs/60100552.mkv +车婉婉-我未够秤,http://em.21dtv.com/songs/60046325.mkv +雨侨-无尾飞砣,http://em.21dtv.com/songs/60070012.mkv +羽翘-无尾飞跎,http://em.21dtv.com/songs/60068808.mkv +ADAM LAMBERT+张玮-whataya want from me,http://em.21dtv.com/songs/60074117.mkv +雨中百合-唯我独醉,http://em.21dtv.com/songs/60121105.mkv +蔡依林-唯舞独尊,http://em.21dtv.com/songs/60044175.mkv +夏米雅-未完待续,http://em.21dtv.com/songs/60099907.mkv +杜德伟+LARA-未完待续,http://em.21dtv.com/songs/60044287.mkv +杨千桦-未完的歌,http://em.21dtv.com/songs/60100888.mkv +宋祖英-弯弯的歌,http://em.21dtv.com/songs/60069890.mkv +尤雅-我问白云,http://em.21dtv.com/songs/60046330.mkv +夹子道-玩玩-hi版(演唱会),http://em.21dtv.com/songs/60043179.mkv +张斯斯-wanan我爱你,http://em.21dtv.com/songs/60071683.mkv +童唱-wake up wake up,http://em.21dtv.com/songs/60006093.mkv +EVERLY BROTHERS-wake up little susie,http://em.21dtv.com/songs/60006092.mkv +KATYPERRY-waking up in vegas,http://em.21dtv.com/songs/60006098.mkv +董文华-沃土之恋,http://em.21dtv.com/songs/60047013.mkv +方皓玟-wont you stand,http://em.21dtv.com/songs/60074160.mkv +蔡丽津+杰克-望天有情,http://em.21dtv.com/songs/60134195.mkv +袁姗姗+朴灿烈-我讨厌你,http://em.21dtv.com/songs/60123149.mkv +宇宙人-我讨厌你,http://em.21dtv.com/songs/60071267.mkv +ASOS-我讨厌你,http://em.21dtv.com/songs/60046274.mkv +张寒-舞台信仰,http://em.21dtv.com/songs/60126875.mkv +罗志强-我跳我舞,http://em.21dtv.com/songs/60086944.mkv +陈琳-我挑我的,http://em.21dtv.com/songs/60046277.mkv +叶启田-问天问地,http://em.21dtv.com/songs/60044486.mkv +施文彬-我天天醉,http://em.21dtv.com/songs/60046276.mkv +林姗-望天疼惜,http://em.21dtv.com/songs/60065010.mkv +4MINUTE-welcome to the school,http://em.21dtv.com/songs/60071686.mkv +Neon Jungle-Welcome To The Jungle,http://em.21dtv.com/songs/60099019.mkv +佚名-welcome to the jungle,http://em.21dtv.com/songs/60006161.mkv +S.H.E-五天四夜,http://em.21dtv.com/songs/60047668.mkv +黎明-无痛失恋,http://em.21dtv.com/songs/60047464.mkv +关心妍-无痛失恋,http://em.21dtv.com/songs/60047463.mkv +CLOWN-我太任性,http://em.21dtv.com/songs/60061991.mkv +庆吉+智穷-韦驮菩萨,http://em.21dtv.com/songs/60111847.mkv +JAGGED EDGE-where the party at,http://em.21dtv.com/songs/60006297.mkv +陈慧娴-问题女人,http://em.21dtv.com/songs/60044482.mkv +简美妍-wont meet you,http://em.21dtv.com/songs/60074158.mkv +童唱-望天门山,http://em.21dtv.com/songs/60043705.mkv +SIMPLE PLAN-welcome to my life,http://em.21dtv.com/songs/60006160.mkv +王传一-welcome to my heart,http://em.21dtv.com/songs/60006159.mkv +刘子菲-无题灵犀,http://em.21dtv.com/songs/60078469.mkv +苍茫-为他流浪,http://em.21dtv.com/songs/60044119.mkv +林凡-五天几年,http://em.21dtv.com/songs/60047667.mkv +ABBA-winner takes it all,http://em.21dtv.com/songs/60006359.mkv +ERIC CLAPTON-willie the hand jive,http://em.21dtv.com/songs/60006348.mkv +林沐桦-问题很多,http://em.21dtv.com/songs/60044481.mkv +THE GAME-wouldnt get far,http://em.21dtv.com/songs/60062167.mkv +DAVID GUETTA +FLO RI-where them girls at,http://em.21dtv.com/songs/60060946.mkv +戴恩玲-无痛分手,http://em.21dtv.com/songs/60047462.mkv +陆永-问题儿童,http://em.21dtv.com/songs/60044480.mkv +太阳风乐队-望天打卦,http://em.21dtv.com/songs/60123806.mkv +Zolarwind-望天打卦,http://em.21dtv.com/songs/60122451.mkv +冷漠-舞台背后,http://em.21dtv.com/songs/60072587.mkv +佚名-where the boys are,http://em.21dtv.com/songs/60006295.mkv +美眉-问题爱情,http://em.21dtv.com/songs/60091843.mkv +洪卓立-无声占有,http://em.21dtv.com/songs/60078466.mkv +谢安琪-晚睡早起,http://em.21dtv.com/songs/60126199.mkv +鞠波-万岁祖国,http://em.21dtv.com/songs/60119046.mkv +孙悦-万岁中国,http://em.21dtv.com/songs/60043323.mkv +王琳玲-我是真的,http://em.21dtv.com/songs/60108715.mkv +徐千雅-万山之巅,http://em.21dtv.com/songs/60065002.mkv +张信哲-我是真的,http://em.21dtv.com/songs/60046218.mkv +冷漠-我是真的,http://em.21dtv.com/songs/60046217.mkv +周治平-往事悠悠,http://em.21dtv.com/songs/60090845.mkv +谭圳+吴谦-巫山云雨,http://em.21dtv.com/songs/60078437.mkv +程鸣-为时已晚,http://em.21dtv.com/songs/60100361.mkv +西子-乌沙印舞,http://em.21dtv.com/songs/60086958.mkv +杨采妮-为所欲为,http://em.21dtv.com/songs/60044118.mkv +张学友-我属于你,http://em.21dtv.com/songs/60091068.mkv +肖飞-为什样呢,http://em.21dtv.com/songs/60044107.mkv +耀乐团-whats your feeling,http://em.21dtv.com/songs/60074122.mkv +LUDACRIS+SHAWNNA-whats your fantasy,http://em.21dtv.com/songs/60074121.mkv +何韵诗-我是现在,http://em.21dtv.com/songs/60046184.mkv +关智斌-无声讯号,http://em.21dtv.com/songs/60047427.mkv +余哲-我说兄弟,http://em.21dtv.com/songs/60104783.mkv +汪妤凌-我是唯一,http://em.21dtv.com/songs/60078341.mkv +BEYOND-无事无事,http://em.21dtv.com/songs/60092143.mkv +叶世荣-无事无事(演唱会),http://em.21dtv.com/songs/60047431.mkv +久久-巫山问情,http://em.21dtv.com/songs/60078436.mkv +黑豹乐队-无是无非,http://em.21dtv.com/songs/60047432.mkv +张靓颖-我是我的,http://em.21dtv.com/songs/60098367.mkv +倪睿思-我是天真,http://em.21dtv.com/songs/60046174.mkv +玛丽亚-我是天仙,http://em.21dtv.com/songs/60084079.mkv +MR MR-whos that girl,http://em.21dtv.com/songs/60070417.mkv +EVE-whos that girl,http://em.21dtv.com/songs/60063800.mkv +李建华-我是树叶,http://em.21dtv.com/songs/60097281.mkv +杨乃文-我是什么,http://em.21dtv.com/songs/60097279.mkv +吴佳展-为谁失眠(无原唱),http://em.21dtv.com/songs/60044117.mkv +任韵淇-我是傻瓜,http://em.21dtv.com/songs/60111686.mkv +叶胜钦-我是傻瓜,http://em.21dtv.com/songs/60078340.mkv +韩红-往事随风,http://em.21dtv.com/songs/60108149.mkv +齐秦+齐秦组四强-往事随风,http://em.21dtv.com/songs/60105352.mkv +田馥甄-无事生非,http://em.21dtv.com/songs/60078467.mkv +沈文程-往事随风,http://em.21dtv.com/songs/60043451.mkv +齐秦-往事随风,http://em.21dtv.com/songs/60043450.mkv +黄贯中-万岁师表,http://em.21dtv.com/songs/60093550.mkv +群星-万岁师表,http://em.21dtv.com/songs/60093035.mkv +李欧-往事如昨,http://em.21dtv.com/songs/60125705.mkv +小古-万事如意,http://em.21dtv.com/songs/60133592.mkv +M GIRLS-万事如意,http://em.21dtv.com/songs/60133234.mkv +王梵瑞-万事如意,http://em.21dtv.com/songs/60130591.mkv +唐冰冰-万事如意,http://em.21dtv.com/songs/60105708.mkv +枫舞-往事如烟,http://em.21dtv.com/songs/60104251.mkv +孙永慈-往事如烟,http://em.21dtv.com/songs/60043449.mkv +张也-万事如意,http://em.21dtv.com/songs/60043306.mkv +孙鸣杰-万事如意,http://em.21dtv.com/songs/60043305.mkv +小玉荣子-往事如昔,http://em.21dtv.com/songs/60043448.mkv +刘亮鹭-往事如昔,http://em.21dtv.com/songs/60043447.mkv +王晓敏-物是人非,http://em.21dtv.com/songs/60112109.mkv +东方张华-我是群主,http://em.21dtv.com/songs/60113216.mkv +辛晓琪+齐秦-无声情歌,http://em.21dtv.com/songs/60078465.mkv +佚名-雾社情歌,http://em.21dtv.com/songs/60047851.mkv +温兆伦-我是情痴,http://em.21dtv.com/songs/60046161.mkv +张振宇-为谁憔悴,http://em.21dtv.com/songs/60044116.mkv +古慧慧-毋使骗我,http://em.21dtv.com/songs/60047608.mkv +肖基国-我是欧巴,http://em.21dtv.com/songs/60135637.mkv +吉克隽逸-我是女王,http://em.21dtv.com/songs/60110067.mkv +徐怀钰-我是女生,http://em.21dtv.com/songs/60046159.mkv +林慧萍-我是女人,http://em.21dtv.com/songs/60090002.mkv +陈志嘉-五十年后,http://em.21dtv.com/songs/60100580.mkv +张咪-我是你的,http://em.21dtv.com/songs/60097280.mkv +倪安东-我是你的,http://em.21dtv.com/songs/60085923.mkv +佚名-我是你的,http://em.21dtv.com/songs/60046137.mkv +张弥-我是你的(无原唱),http://em.21dtv.com/songs/60046136.mkv +校园快乐帮-我是no 1,http://em.21dtv.com/songs/60046070.mkv +周华健-我是明星,http://em.21dtv.com/songs/60046131.mkv +黄立行-我是明星,http://em.21dtv.com/songs/60046130.mkv +小沈阳-为什么呢(演),http://em.21dtv.com/songs/60099972.mkv +RIHANNA-whats my name,http://em.21dtv.com/songs/60066754.mkv +肖飞-为什么呢,http://em.21dtv.com/songs/60044078.mkv +郭涛+田原-为什么呢,http://em.21dtv.com/songs/60044077.mkv +张阳阳-未什么来,http://em.21dtv.com/songs/60129123.mkv +郝云湖-我是马龙,http://em.21dtv.com/songs/60117280.mkv +ROBBIE WILLIAMS-win some lose some,http://em.21dtv.com/songs/60006350.mkv +JESSIE J-whos laughing now,http://em.21dtv.com/songs/60060948.mkv +佚名-when she loved me,http://em.21dtv.com/songs/60006252.mkv +SARAH MCLACHLAN-when she loved me(无原唱),http://em.21dtv.com/songs/60006251.mkv +杨千嬅-万世流芳,http://em.21dtv.com/songs/60043304.mkv +子冬-我说李白,http://em.21dtv.com/songs/60046257.mkv +子冬-我是李白,http://em.21dtv.com/songs/60046124.mkv +黄美珍-无声抗议,http://em.21dtv.com/songs/60093752.mkv +贾盛强-唯思葵花,http://em.21dtv.com/songs/60106300.mkv +刘和刚-我是军人,http://em.21dtv.com/songs/60119288.mkv +佚名-我是军人,http://em.21dtv.com/songs/60046123.mkv +琼雪卓玛-五色经幡,http://em.21dtv.com/songs/60047657.mkv +韩晓辉-我是警察,http://em.21dtv.com/songs/60114246.mkv +韩庚-我是火焰,http://em.21dtv.com/songs/60046122.mkv +徐海星-我是海棠,http://em.21dtv.com/songs/60099251.mkv +张跃-往事回首,http://em.21dtv.com/songs/60061647.mkv +谢金燕-我是憨人,http://em.21dtv.com/songs/60065100.mkv +吴听彻-我是坏人,http://em.21dtv.com/songs/60046121.mkv +黑龙-我是黑龙,http://em.21dtv.com/songs/60105149.mkv +王中平-无衫会寒,http://em.21dtv.com/songs/60084128.mkv +黄韵玲-我是坏的,http://em.21dtv.com/songs/60046120.mkv +陈绮贞-温室花朵(演唱会),http://em.21dtv.com/songs/60044378.mkv +贾富营+望海高歌-我是歌者,http://em.21dtv.com/songs/60131834.mkv +西岸女生-我是公主,http://em.21dtv.com/songs/60115373.mkv +王麟-我是歌手,http://em.21dtv.com/songs/60120807.mkv +正午-我是歌手,http://em.21dtv.com/songs/60116084.mkv +大张凡-我是歌手,http://em.21dtv.com/songs/60115773.mkv +马山虎-我是歌手,http://em.21dtv.com/songs/60115536.mkv +赵鑫-我是歌手,http://em.21dtv.com/songs/60094700.mkv +马山虎-我是歌手,http://em.21dtv.com/songs/60084075.mkv +冷漠+黑龙-我是歌手,http://em.21dtv.com/songs/60078331.mkv +瞿颖-我受够了,http://em.21dtv.com/songs/60091788.mkv +玖壹壹-我是冠军,http://em.21dtv.com/songs/60131684.mkv +佚名-when sunny gets blue,http://em.21dtv.com/songs/60006253.mkv +KB-我是肥仔,http://em.21dtv.com/songs/60113168.mkv +戴月星-无私奉献,http://em.21dtv.com/songs/60047440.mkv +塔宏伟-为谁抚琴,http://em.21dtv.com/songs/60067527.mkv +熊七梅-为谁抚琴,http://em.21dtv.com/songs/60063196.mkv +陈惠英-为谁抚琴,http://em.21dtv.com/songs/60062254.mkv +谢安琪-我是愤怒,http://em.21dtv.com/songs/60088662.mkv +MR.-我是愤怒(演唱会),http://em.21dtv.com/songs/60065098.mkv +黄家强-我是愤怒(演唱会),http://em.21dtv.com/songs/60046105.mkv +黄家强+周国贤+KOLOR-我是愤怒(演唱会),http://em.21dtv.com/songs/60046104.mkv +黄家强+谢安琪-我是愤怒(演唱会),http://em.21dtv.com/songs/60046103.mkv +BEYOND-我是愤怒(演唱会),http://em.21dtv.com/songs/60046102.mkv +蓝狐组合-为谁疯狂,http://em.21dtv.com/songs/60044114.mkv +孔令晨-为谁疯狂(演唱会),http://em.21dtv.com/songs/60044113.mkv +格格-万树繁花,http://em.21dtv.com/songs/60130490.mkv +格格-万树繁花,http://em.21dtv.com/songs/60043308.mkv +魏如萱-无声电影,http://em.21dtv.com/songs/60130916.mkv +崔琰-无声电影,http://em.21dtv.com/songs/60078464.mkv +王杰-无声电影,http://em.21dtv.com/songs/60047424.mkv +孟庭苇-无声的雨,http://em.21dtv.com/songs/60047422.mkv +佚名-无声的夜(慢四),http://em.21dtv.com/songs/60047420.mkv +王莉-无声的痛,http://em.21dtv.com/songs/60095008.mkv +林峰-顽石点头,http://em.21dtv.com/songs/60068719.mkv +赖铭伟-我上大声,http://em.21dtv.com/songs/60135770.mkv +谢铭佑-我上大声,http://em.21dtv.com/songs/60132892.mkv +陈维琳-我是大牌,http://em.21dtv.com/songs/60046095.mkv +于台烟-我萨到你,http://em.21dtv.com/songs/60061697.mkv +林晓培-无声的泪,http://em.21dtv.com/songs/60106982.mkv +东方依依+干露露-万事大吉,http://em.21dtv.com/songs/60118297.mkv +黄湘怡-温室的花,http://em.21dtv.com/songs/60044377.mkv +林良欢-无声的爱,http://em.21dtv.com/songs/60078463.mkv +陈焱-万世尘缘,http://em.21dtv.com/songs/60130851.mkv +棒棒堂-我是传奇,http://em.21dtv.com/songs/60046094.mkv +胡佳琛-五色彩虹,http://em.21dtv.com/songs/60047656.mkv +吴莫愁-无所不在,http://em.21dtv.com/songs/60099154.mkv +庾澄庆-无所不在,http://em.21dtv.com/songs/60047444.mkv +梁咏琪-无所不在(演唱会),http://em.21dtv.com/songs/60047443.mkv +佚名-无所不能,http://em.21dtv.com/songs/60047442.mkv +吴欢+Hazza-无所不欢,http://em.21dtv.com/songs/60118449.mkv +韩庚-玩世不恭,http://em.21dtv.com/songs/60072478.mkv +林海峰-我是边个,http://em.21dtv.com/songs/60046075.mkv +连亚琦-我舍不得,http://em.21dtv.com/songs/60097278.mkv +何维健-我舍不得,http://em.21dtv.com/songs/60046051.mkv +HIT-5-无所不爱,http://em.21dtv.com/songs/60047441.mkv +黄西田-我是阿舍,http://em.21dtv.com/songs/60046072.mkv +佚名-我是阿贵(无原唱),http://em.21dtv.com/songs/60046071.mkv +周秉钧-我深爱过,http://em.21dtv.com/songs/60046054.mkv +黄乙玲-无人知影,http://em.21dtv.com/songs/60047403.mkv +By2-温柔最痛,http://em.21dtv.com/songs/60114327.mkv +许绍洋-无人值守,http://em.21dtv.com/songs/60047404.mkv +萧亚轩-万人着迷,http://em.21dtv.com/songs/60043303.mkv +可米小子-我忍住哭,http://em.21dtv.com/songs/60046041.mkv +草蜢-无人之境(演唱会),http://em.21dtv.com/songs/60078461.mkv +陈奕迅-无人之境,http://em.21dtv.com/songs/60047401.mkv +杭天琪-温柔依然,http://em.21dtv.com/songs/60044375.mkv +陈慧琳-温柔眼泪,http://em.21dtv.com/songs/60044374.mkv +李荣浩-宛若新生,http://em.21dtv.com/songs/60111996.mkv +方皓玟-无人像你,http://em.21dtv.com/songs/60105934.mkv +单色凌-无人像你,http://em.21dtv.com/songs/60097151.mkv +杜德伟-温柔陷阱,http://em.21dtv.com/songs/60044372.mkv +曾淑勤-微日舞曲,http://em.21dtv.com/songs/60078063.mkv +佚名-我若无你,http://em.21dtv.com/songs/60046048.mkv +郑仲茵-无日无暝,http://em.21dtv.com/songs/60047405.mkv +张圳-温柔淘汰,http://em.21dtv.com/songs/60110187.mkv +HAVANA BROWN+PITBULL-we run the night,http://em.21dtv.com/songs/60074101.mkv +伍佰-无人替代,http://em.21dtv.com/songs/60090585.mkv +陈启泰-温柔杀手,http://em.21dtv.com/songs/60124613.mkv +张清芳-无人熟识,http://em.21dtv.com/songs/60047399.mkv +江蕙-无人熟识,http://em.21dtv.com/songs/60047398.mkv +俞隆华-我若是你(无原唱),http://em.21dtv.com/songs/60046047.mkv +寒武纪-温柔伤怀,http://em.21dtv.com/songs/60107675.mkv +寒武纪-温柔伤怀,http://em.21dtv.com/songs/60099962.mkv +谭维维-往日时光,http://em.21dtv.com/songs/60109634.mkv +呼斯楞-往日时光,http://em.21dtv.com/songs/60062461.mkv +谭维维-往日时光,http://em.21dtv.com/songs/60043427.mkv +庞龙-往日时光,http://em.21dtv.com/songs/60043426.mkv +洪卓立-无人认领,http://em.21dtv.com/songs/60047397.mkv +谢安琪-悟入歧途(HD演唱会),http://em.21dtv.com/songs/60047839.mkv +佚名-往日情深,http://em.21dtv.com/songs/60043425.mkv +轻音乐-往日情怀,http://em.21dtv.com/songs/60090238.mkv +潘玮柏-温柔女孩,http://em.21dtv.com/songs/60044370.mkv +高维那-我让你飞,http://em.21dtv.com/songs/60078323.mkv +洪百慧-温柔名片,http://em.21dtv.com/songs/60067534.mkv +ALIN-温柔累了,http://em.21dtv.com/songs/60078122.mkv +K ONE-we r k one,http://em.21dtv.com/songs/60006147.mkv +彭羚-无人驾驭,http://em.21dtv.com/songs/60092702.mkv +泳儿-无人驾驶,http://em.21dtv.com/songs/60078460.mkv +彭羚-无人驾驶,http://em.21dtv.com/songs/60047394.mkv +陈奕迅-无人分享,http://em.21dtv.com/songs/60047391.mkv +钟镇涛-温柔分手,http://em.21dtv.com/songs/60044368.mkv +林姗-问阮的心,http://em.21dtv.com/songs/60132610.mkv +佚名-温柔的你,http://em.21dtv.com/songs/60044364.mkv +王杰+林忆莲-温柔的你,http://em.21dtv.com/songs/60044363.mkv +杨千嬅+黄耀明-温柔的你(演唱会),http://em.21dtv.com/songs/60044362.mkv +郞军-温柔的梦,http://em.21dtv.com/songs/60100510.mkv +李森-温热的刀,http://em.21dtv.com/songs/60129234.mkv +郑伊健-无人地带(演唱会),http://em.21dtv.com/songs/60047390.mkv +龙飘飘-温柔的爱,http://em.21dtv.com/songs/60044352.mkv +荒山亮-温柔车站,http://em.21dtv.com/songs/60083993.mkv +陈淑萍-无人车站,http://em.21dtv.com/songs/60067606.mkv +金城武-温柔超人,http://em.21dtv.com/songs/60044351.mkv +秀兰玛雅-无人爱你,http://em.21dtv.com/songs/60047384.mkv +黎明-危情追踪,http://em.21dtv.com/songs/60043739.mkv +望海高歌-网情追忆,http://em.21dtv.com/songs/60069900.mkv +孙艳-网情追忆,http://em.21dtv.com/songs/60043392.mkv +咻比嘟哗-完全占有,http://em.21dtv.com/songs/60043150.mkv +佚名-无情之梦,http://em.21dtv.com/songs/60047382.mkv +林慧萍-温情犹在,http://em.21dtv.com/songs/60091479.mkv +王又萱-无情夜雨,http://em.21dtv.com/songs/60131643.mkv +刘欢-温情永远(演唱会),http://em.21dtv.com/songs/60044344.mkv +张敬轩-完全因你,http://em.21dtv.com/songs/60078007.mkv +彭羚-完全因你,http://em.21dtv.com/songs/60043149.mkv +彭羚-完全因你(演唱会),http://em.21dtv.com/songs/60043148.mkv +黄初用-委屈以后,http://em.21dtv.com/songs/60109772.mkv +白鹤-往前一步,http://em.21dtv.com/songs/60043418.mkv +孟非-往前一步(演唱会),http://em.21dtv.com/songs/60043417.mkv +翁汕汕-网情无悔,http://em.21dtv.com/songs/60085823.mkv +陈慧娴+黎瑞恩-为情为爱,http://em.21dtv.com/songs/60044040.mkv +张信哲-忘情忘爱,http://em.21dtv.com/songs/60043642.mkv +麦子杰-忘情忘爱,http://em.21dtv.com/songs/60043641.mkv +费玉清-忘情天涯,http://em.21dtv.com/songs/60043640.mkv +林忆莲-无情实验(演唱会),http://em.21dtv.com/songs/60047366.mkv +庄心妍-为情所伤,http://em.21dtv.com/songs/60083983.mkv +叶倩文-完全是你(演唱会),http://em.21dtv.com/songs/60043147.mkv +闻君-忘情森林,http://em.21dtv.com/songs/60043637.mkv +周治平-为情所困,http://em.21dtv.com/songs/60044039.mkv +姚伟-为情所困,http://em.21dtv.com/songs/60044038.mkv +梁朝伟-为情所困,http://em.21dtv.com/songs/60044037.mkv +辰亦儒-闻七起武,http://em.21dtv.com/songs/60105408.mkv +辰亦儒-闻七起舞,http://em.21dtv.com/songs/60097358.mkv +柏文-问情千千,http://em.21dtv.com/songs/60062221.mkv +张燊悦-委曲求存,http://em.21dtv.com/songs/60092642.mkv +禾合果-网球拍拍(演唱会),http://em.21dtv.com/songs/60043393.mkv +佚名-我情迷惘,http://em.21dtv.com/songs/60046033.mkv +咻比嘟哗-呜漆吗黑,http://em.21dtv.com/songs/60047051.mkv +佚名-无情玫瑰(无原唱),http://em.21dtv.com/songs/60047361.mkv +张智成-完全明白(演唱会),http://em.21dtv.com/songs/60043146.mkv +刘育绫-无情恋梦,http://em.21dtv.com/songs/60047360.mkv +宋旭-无情离开,http://em.21dtv.com/songs/60114498.mkv +微胖女神-玩起来吧,http://em.21dtv.com/songs/60116842.mkv +陈博华-委屈了爱,http://em.21dtv.com/songs/60107310.mkv +孙楠-万泉河水,http://em.21dtv.com/songs/60043294.mkv +黄清源-无情火车,http://em.21dtv.com/songs/60047357.mkv +潘玮柏-五千分钟,http://em.21dtv.com/songs/60091655.mkv +群星-五千分钟(演唱会),http://em.21dtv.com/songs/60047653.mkv +孙淑媚-无情风雨,http://em.21dtv.com/songs/60047351.mkv +T ara-完全疯了,http://em.21dtv.com/songs/60114359.mkv +范怡文-无情的夜(无原唱),http://em.21dtv.com/songs/60047339.mkv +蔡秋凤+陈中-无情的人,http://em.21dtv.com/songs/60047333.mkv +陈杉雨-无情的你,http://em.21dtv.com/songs/60131947.mkv +佚名-无情的你,http://em.21dtv.com/songs/60095419.mkv +杨宗宪-无情的歌,http://em.21dtv.com/songs/60047323.mkv +刘汉强-晚秋的风(无原唱),http://em.21dtv.com/songs/60043240.mkv +乐天-无情的爱,http://em.21dtv.com/songs/60115670.mkv +林显丞-无钱的爱(无原唱),http://em.21dtv.com/songs/60047305.mkv +詹雅雯-委曲的爱,http://em.21dtv.com/songs/60044220.mkv +佚名-委屈的爱,http://em.21dtv.com/songs/60044217.mkv +张瀛仁-委屈的爱(无原唱),http://em.21dtv.com/songs/60044216.mkv +关菊英-万千宠爱,http://em.21dtv.com/songs/60043290.mkv +阿吉仔-吾妻阿秋(无原唱),http://em.21dtv.com/songs/60047613.mkv +谭维维-我亲爱的,http://em.21dtv.com/songs/60123186.mkv +阿洋-我亲爱的,http://em.21dtv.com/songs/60102860.mkv +贾璨璨-外婆之歌,http://em.21dtv.com/songs/60101512.mkv +佚名-顽皮派对,http://em.21dtv.com/songs/60043192.mkv +范一贤-我陪你醉,http://em.21dtv.com/songs/60094659.mkv +微胖女神-微胖女神,http://em.21dtv.com/songs/60096298.mkv +萧亚轩-我陪你哭,http://em.21dtv.com/songs/60046014.mkv +韦绮姗-唔怕你加,http://em.21dtv.com/songs/60047621.mkv +郁柳-王婆骂鸡,http://em.21dtv.com/songs/60069896.mkv +黄乙玲+林昕阳-无谱的歌,http://em.21dtv.com/songs/60047304.mkv +羽泉-玩偶之家(演唱会),http://em.21dtv.com/songs/60043173.mkv +SMASH MOUTH-walkinon the sun,http://em.21dtv.com/songs/60063785.mkv +LADY ANTEBELLUM-we owned the night,http://em.21dtv.com/songs/60063789.mkv +THE POLICE-walking on the moon,http://em.21dtv.com/songs/60006112.mkv +GREYSON CHANCE-waiting outsids the lines,http://em.21dtv.com/songs/60070413.mkv +GREYSON CHANCE-waiting outside the lines,http://em.21dtv.com/songs/60068005.mkv +Rihanna+Drake-Work,http://em.21dtv.com/songs/60119177.mkv +WESTLIFE-world of our own,http://em.21dtv.com/songs/60006415.mkv +CARPENTERS-weve only just begun,http://em.21dtv.com/songs/60006172.mkv +ANNIE LENNOX-walking on broken glass,http://em.21dtv.com/songs/60006111.mkv +赵姝-玩偶芭比,http://em.21dtv.com/songs/60101178.mkv +丁小芹-walking 2ooo,http://em.21dtv.com/songs/60006106.mkv +F4-为你执著,http://em.21dtv.com/songs/60089566.mkv +周渝民-为你执着,http://em.21dtv.com/songs/60044015.mkv +刘德华-为你钟情(HD),http://em.21dtv.com/songs/10012647.mkv +容祖儿-为你钟情,http://em.21dtv.com/songs/60092516.mkv +张国荣-为你钟情,http://em.21dtv.com/songs/60044023.mkv +张国荣-为你钟情(演唱会),http://em.21dtv.com/songs/60044022.mkv +卫兰+李治廷-为你钟情(演唱会),http://em.21dtv.com/songs/60044021.mkv +刘德华-为你钟情(演唱会),http://em.21dtv.com/songs/60044020.mkv +林峰-为你钟情(演唱会),http://em.21dtv.com/songs/60044019.mkv +李克勤-为你钟情(演唱会),http://em.21dtv.com/songs/60044018.mkv +古巨基-为你钟情(演唱会),http://em.21dtv.com/songs/60044017.mkv +王昭-为你昭迷,http://em.21dtv.com/songs/60123005.mkv +张清芳-为难自己,http://em.21dtv.com/songs/60043936.mkv +沈鱼-为难自己,http://em.21dtv.com/songs/60043935.mkv +罗中旭-为你自豪(演唱会),http://em.21dtv.com/songs/60044027.mkv +江蕙-望你早归,http://em.21dtv.com/songs/60043698.mkv +杨贵媚-望你早归(无原唱),http://em.21dtv.com/songs/60043697.mkv +杨洋+金彪-为你祝福,http://em.21dtv.com/songs/60044026.mkv +王鹏-为你祝福,http://em.21dtv.com/songs/60044025.mkv +金波-为你祝福,http://em.21dtv.com/songs/60044024.mkv +王栎鑫-为你战斗,http://em.21dtv.com/songs/60095326.mkv +洪辰-为你转动,http://em.21dtv.com/songs/60062452.mkv +高向鹏-望你作伴,http://em.21dtv.com/songs/60043699.mkv +水木年华-唯你一生,http://em.21dtv.com/songs/60125847.mkv +许美静-温暖一生,http://em.21dtv.com/songs/60090214.mkv +张雷-万能钥匙,http://em.21dtv.com/songs/60067504.mkv +方瑞娥-为你心醉,http://em.21dtv.com/songs/60112717.mkv +王森-为你心醉,http://em.21dtv.com/songs/60088301.mkv +刘子涵-为你许愿,http://em.21dtv.com/songs/60116583.mkv +张信哲-我能相信,http://em.21dtv.com/songs/60046010.mkv +佚名-为你心痛,http://em.21dtv.com/songs/60044010.mkv +黄思婷-为你心痛,http://em.21dtv.com/songs/60044009.mkv +纪小文-为你心碎,http://em.21dtv.com/songs/60134067.mkv +晨熙-为你心碎,http://em.21dtv.com/songs/60132502.mkv +豪记大对唱-为你心碎,http://em.21dtv.com/songs/60044007.mkv +吴克群-为你写诗,http://em.21dtv.com/songs/60044002.mkv +雷诺儿-为你谢幕,http://em.21dtv.com/songs/60071216.mkv +黄志亮-为你写歌,http://em.21dtv.com/songs/60109062.mkv +云鸽李霞-为你写歌,http://em.21dtv.com/songs/60078090.mkv +于洋-为你心动,http://em.21dtv.com/songs/60134861.mkv +谢有才-为你心动,http://em.21dtv.com/songs/60063177.mkv +南西乐团-为你微笑,http://em.21dtv.com/songs/60116609.mkv +斯琴巴特-为你惋惜,http://em.21dtv.com/songs/60043991.mkv +王馨平-问你问我,http://em.21dtv.com/songs/60044464.mkv +容祖兒-为你万岁,http://em.21dtv.com/songs/60092537.mkv +容祖儿-为你万岁,http://em.21dtv.com/songs/60092515.mkv +钟洁-玩弄温柔,http://em.21dtv.com/songs/60101692.mkv +廖忠-为你忘情,http://em.21dtv.com/songs/60089260.mkv +佚名-无奈无奈,http://em.21dtv.com/songs/60047281.mkv +江蕙-无奈无奈,http://em.21dtv.com/songs/60047280.mkv +方瑞娥-无奈无奈,http://em.21dtv.com/songs/60047279.mkv +家乐-无能为力,http://em.21dtv.com/songs/60132381.mkv +陈大天-无能为力,http://em.21dtv.com/songs/60108120.mkv +张敬轩-无能为力,http://em.21dtv.com/songs/60047285.mkv +阿杜-无能为力,http://em.21dtv.com/songs/60047284.mkv +张震-无能为力(无原唱),http://em.21dtv.com/songs/60047283.mkv +陈盈洁-无你无爱,http://em.21dtv.com/songs/60047297.mkv +佚名-望你疼惜,http://em.21dtv.com/songs/60043691.mkv +蔡小虎-为你跳舞,http://em.21dtv.com/songs/60085843.mkv +陈玉建-为你停留,http://em.21dtv.com/songs/60062296.mkv +A-LIN-我能体谅,http://em.21dtv.com/songs/60046008.mkv +单色凌-为你脱掉,http://em.21dtv.com/songs/60101280.mkv +王莉-温暖岁月,http://em.21dtv.com/songs/60120776.mkv +陈杉雨-为你伤心,http://em.21dtv.com/songs/60114865.mkv +李小龙-为你盛开,http://em.21dtv.com/songs/60091312.mkv +一飞-为你守候,http://em.21dtv.com/songs/60078089.mkv +白晶-为你守侯,http://em.21dtv.com/songs/60078088.mkv +酒吧伤心人-为你伤怀,http://em.21dtv.com/songs/60068732.mkv +晓月-为你守候,http://em.21dtv.com/songs/60063159.mkv +黄妃-万年奇缘,http://em.21dtv.com/songs/60043288.mkv +高林生-为你倾心,http://em.21dtv.com/songs/60043988.mkv +刘俐婷-舞女情深,http://em.21dtv.com/songs/60047801.mkv +陈夏莲-为你牵挂,http://em.21dtv.com/songs/60126366.mkv +陈夏莲-为你牵挂,http://em.21dtv.com/songs/60124616.mkv +周传雄-为你牵挂,http://em.21dtv.com/songs/60090822.mkv +洪荣宏-望你平安,http://em.21dtv.com/songs/60130544.mkv +郑进一-望你平安,http://em.21dtv.com/songs/60043690.mkv +孙悦-我暖你心,http://em.21dtv.com/songs/60046011.mkv +王菲-无奈那天(演唱会),http://em.21dtv.com/songs/60047277.mkv +轨道-为你呐喊,http://em.21dtv.com/songs/60043987.mkv +老狼-为你难过,http://em.21dtv.com/songs/60090120.mkv +F4-为你迷路,http://em.21dtv.com/songs/60090402.mkv +黄思婷-为你美丽,http://em.21dtv.com/songs/60043985.mkv +佚名-what now my love,http://em.21dtv.com/songs/60006209.mkv +叶倩文-what now my love(演唱会),http://em.21dtv.com/songs/60006208.mkv +赵云飞-为你流泪,http://em.21dtv.com/songs/60109636.mkv +麒龙-为你流泪,http://em.21dtv.com/songs/60043984.mkv +李克勤-为你流泪,http://em.21dtv.com/songs/60043983.mkv +尹光-万能老倌(演唱会),http://em.21dtv.com/songs/60061644.mkv +潘小芬-为你哭泣(法),http://em.21dtv.com/songs/60067525.mkv +POP TEEN-为你加油,http://em.21dtv.com/songs/60123519.mkv +李杨飞-为你加油,http://em.21dtv.com/songs/60100144.mkv +群星-为你加油,http://em.21dtv.com/songs/60062852.mkv +华谊群星-为你加油,http://em.21dtv.com/songs/60062481.mkv +佚名-望你回头,http://em.21dtv.com/songs/60043686.mkv +罗中旭-为你回来,http://em.21dtv.com/songs/60081945.mkv +半梦-为你喝彩,http://em.21dtv.com/songs/60112552.mkv +李克勤-万年孤寂,http://em.21dtv.com/songs/60043284.mkv +谭咏麟+李克勤-万年孤寂(演唱会),http://em.21dtv.com/songs/60043283.mkv +吴克群-我能给的,http://em.21dtv.com/songs/60046007.mkv +李潮-为你歌唱,http://em.21dtv.com/songs/60106944.mkv +张英席-为你歌唱,http://em.21dtv.com/songs/60105057.mkv +楚绪鹏-为你歌唱,http://em.21dtv.com/songs/60078085.mkv +戴玉强-为你歌唱(演唱会),http://em.21dtv.com/songs/60067524.mkv +黄伟麟-为你服务,http://em.21dtv.com/songs/60043972.mkv +杨春辉-为你放弃,http://em.21dtv.com/songs/60112018.mkv +津亭-为你疯狂,http://em.21dtv.com/songs/60043971.mkv +黄舒骏-为你疯狂,http://em.21dtv.com/songs/60043970.mkv +王识贤-为你反悔,http://em.21dtv.com/songs/60043969.mkv +张凌枫-为你付出,http://em.21dtv.com/songs/60043973.mkv +排骨教主-为你而战,http://em.21dtv.com/songs/60133738.mkv +于全莉-为你而醉,http://em.21dtv.com/songs/60078084.mkv +翁汕汕-为你而醉,http://em.21dtv.com/songs/60078083.mkv +王森-为你而醉,http://em.21dtv.com/songs/60043968.mkv +岳思思-为你而痛,http://em.21dtv.com/songs/60085842.mkv +海鸣威-为你而生,http://em.21dtv.com/songs/60094208.mkv +梁静茹-为你而:p,http://em.21dtv.com/songs/60043964.mkv +阿来-为你而来,http://em.21dtv.com/songs/60113041.mkv +柳妍熙-为你而来,http://em.21dtv.com/songs/60094181.mkv +广智+刘孟愉-为你而来,http://em.21dtv.com/songs/60083978.mkv +李健-为你而来(演唱会),http://em.21dtv.com/songs/60043967.mkv +神木与瞳-为你而活,http://em.21dtv.com/songs/60043966.mkv +田震-为你而歌,http://em.21dtv.com/songs/60043965.mkv +于文文-为你而唱,http://em.21dtv.com/songs/60105561.mkv +马山虎-为你点赞,http://em.21dtv.com/songs/60115535.mkv +杨肖玉-为你动心,http://em.21dtv.com/songs/60116948.mkv +陈思安-温暖的心,http://em.21dtv.com/songs/60116343.mkv +徐一鸣-为你单身,http://em.21dtv.com/songs/60107736.mkv +Snh48-握你的手,http://em.21dtv.com/songs/60107439.mkv +光良-握你的手,http://em.21dtv.com/songs/60047025.mkv +罗时丰-为你打拼,http://em.21dtv.com/songs/60078082.mkv +佚名-为你打拼,http://em.21dtv.com/songs/60043961.mkv +叶启田-为你打拼,http://em.21dtv.com/songs/60043960.mkv +蔡佳麟-为你打拼,http://em.21dtv.com/songs/60043959.mkv +陈小云-舞女的梦,http://em.21dtv.com/songs/60047798.mkv +郑秀文-温暖的泪,http://em.21dtv.com/songs/60044336.mkv +刘德华-温暖的泪,http://em.21dtv.com/songs/60044335.mkv +格桑梅朵-蜗牛的家,http://em.21dtv.com/songs/60091511.mkv +郑智化-蜗牛的家,http://em.21dtv.com/songs/60044524.mkv +马婕-温暖的家,http://em.21dtv.com/songs/60044333.mkv +付笛声-为你挡风,http://em.21dtv.com/songs/60043962.mkv +王子月-为你等待,http://em.21dtv.com/songs/60083977.mkv +次仁央宗-为你等待,http://em.21dtv.com/songs/60043963.mkv +苏又熔-无奈的爱,http://em.21dtv.com/songs/60047266.mkv +飞轮海-为你存在,http://em.21dtv.com/songs/60043957.mkv +万茜+音频怪物-为你成全,http://em.21dtv.com/songs/60134842.mkv +音频怪物+万茜-为你成全,http://em.21dtv.com/songs/60134450.mkv +荒山亮-为你痴迷,http://em.21dtv.com/songs/60118015.mkv +苏诗丁-为你沉迷,http://em.21dtv.com/songs/60117164.mkv +李自强-为你痴迷,http://em.21dtv.com/songs/60043955.mkv +张祥洪-为你沉沦,http://em.21dtv.com/songs/60043953.mkv +刘依纯-为你唱歌,http://em.21dtv.com/songs/60085841.mkv +泳儿-为你唱demo,http://em.21dtv.com/songs/60063286.mkv +龙千玉+傅振辉-望你保重,http://em.21dtv.com/songs/60043685.mkv +龙千玉-为你搬心,http://em.21dtv.com/songs/60043944.mkv +王建杰-无奈悲歌,http://em.21dtv.com/songs/60047265.mkv +蔡卓妍-瓦努阿图,http://em.21dtv.com/songs/60077994.mkv +AALIYAH FEAT TIMBALA-we need a resolution,http://em.21dtv.com/songs/60006146.mkv +黄文星-我没置这,http://em.21dtv.com/songs/60109779.mkv +范萱蔚-我買自已,http://em.21dtv.com/songs/60093091.mkv +周杰伦-完美主义,http://em.21dtv.com/songs/60043143.mkv +赵传-午门之舞,http://em.21dtv.com/songs/60078478.mkv +谢安琪-亡命之途(演唱会),http://em.21dtv.com/songs/60043343.mkv +纵贯线-亡命之徒,http://em.21dtv.com/songs/60043342.mkv +陈升-我没在那,http://em.21dtv.com/songs/60081856.mkv +茜拉-完美之梦,http://em.21dtv.com/songs/60124417.mkv +李杨飞-沃梦之旅,http://em.21dtv.com/songs/60112759.mkv +彝人传奇-完美自己,http://em.21dtv.com/songs/60120540.mkv +方乐鑫-我们之间,http://em.21dtv.com/songs/60085918.mkv +伟豪-我们之间,http://em.21dtv.com/songs/60084069.mkv +火星熊-我们之间,http://em.21dtv.com/songs/60078314.mkv +牛飞-无名指戒,http://em.21dtv.com/songs/60047253.mkv +伍思凯-我们之间,http://em.21dtv.com/songs/60045980.mkv +韦嘉-我们之间,http://em.21dtv.com/songs/60045979.mkv +万芳-我们之间,http://em.21dtv.com/songs/60045978.mkv +满江-我们之间,http://em.21dtv.com/songs/60045977.mkv +棒棒堂-我们之间,http://em.21dtv.com/songs/60045976.mkv +TWINS-我们之间,http://em.21dtv.com/songs/60045975.mkv +范萱蔚-我买自己,http://em.21dtv.com/songs/60045730.mkv +张恩硕-微马之歌,http://em.21dtv.com/songs/60123919.mkv +家家-我没资格,http://em.21dtv.com/songs/60097276.mkv +Yang Dail+Jungkey-我们知道,http://em.21dtv.com/songs/60109908.mkv +汪峰-无名之辈,http://em.21dtv.com/songs/60098550.mkv +李翊君-我没有醉,http://em.21dtv.com/songs/60045758.mkv +儿歌-文明用语,http://em.21dtv.com/songs/60090638.mkv +曾玮中-无名英雄,http://em.21dtv.com/songs/60108549.mkv +庄振凯-无名英雄,http://em.21dtv.com/songs/60085959.mkv +郭富城-无梦英雄,http://em.21dtv.com/songs/60047232.mkv +阿杜-完美英雄,http://em.21dtv.com/songs/60043141.mkv +陈蔚琦-我们一起,http://em.21dtv.com/songs/60124655.mkv +言野+STEVE AKA 史瓦格-我们一起,http://em.21dtv.com/songs/60100463.mkv +言野-我们一起,http://em.21dtv.com/songs/60097272.mkv +陈蔚琦-我们一起,http://em.21dtv.com/songs/60084066.mkv +蒙恩使女-我们一起,http://em.21dtv.com/songs/60045957.mkv +刘超华-我们一起,http://em.21dtv.com/songs/60045956.mkv +扈佳荣-我没有钱,http://em.21dtv.com/songs/60045752.mkv +赵传-我没有钱(演唱会),http://em.21dtv.com/songs/60045751.mkv +萧潇-我没有哭,http://em.21dtv.com/songs/60092002.mkv +刘嘉玲-无免怨嗟,http://em.21dtv.com/songs/60047235.mkv +张芸京-我没有疯,http://em.21dtv.com/songs/60069961.mkv +陈泓文-吾命由刀,http://em.21dtv.com/songs/60126392.mkv +超级女生-完美韵动,http://em.21dtv.com/songs/60043142.mkv +萧闳仁-我没有错,http://em.21dtv.com/songs/60045741.mkv +HOPE-what makes you beautiful,http://em.21dtv.com/songs/60082392.mkv +ONE DIRECTION-what makes you beautiful,http://em.21dtv.com/songs/60060944.mkv +群星-我们有爱,http://em.21dtv.com/songs/60045962.mkv +黄玮亦-无名小卒,http://em.21dtv.com/songs/60127622.mkv +佚名-无名小卒,http://em.21dtv.com/songs/60047248.mkv +吕方+伦永亮-无名小卒(演唱会),http://em.21dtv.com/songs/60047247.mkv +褚乔-完美下午,http://em.21dtv.com/songs/60080468.mkv +汪东城-完美心跳,http://em.21dtv.com/songs/60078005.mkv +梁佑嘉-完美先生,http://em.21dtv.com/songs/60061642.mkv +李蓉+冯蓝-我们相识,http://em.21dtv.com/songs/60045947.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-完美新年,http://em.21dtv.com/songs/60078006.mkv +任韵淇-完美小姐,http://em.21dtv.com/songs/60118320.mkv +徐怀钰-完美小姐,http://em.21dtv.com/songs/60043139.mkv +天威-完美邂逅,http://em.21dtv.com/songs/60119394.mkv +林绫-我们学会,http://em.21dtv.com/songs/60078306.mkv +卓依婷-外貌协会,http://em.21dtv.com/songs/60064990.mkv +BBF-我们万岁,http://em.21dtv.com/songs/60132049.mkv +宋逸民-无暝无日,http://em.21dtv.com/songs/60071288.mkv +江蕙-无暝无日,http://em.21dtv.com/songs/60047254.mkv +杜云婷+柯静+刘婷-完美无缺,http://em.21dtv.com/songs/60129259.mkv +刘罡-完美无缺,http://em.21dtv.com/songs/60043138.mkv +戚薇-我们我们,http://em.21dtv.com/songs/60119582.mkv +戚薇-我们我们,http://em.21dtv.com/songs/60078304.mkv +安室奈美惠-want me want me,http://em.21dtv.com/songs/60006117.mkv +王滨-完美体验,http://em.21dtv.com/songs/60043137.mkv +陈思-我们同行,http://em.21dtv.com/songs/60105483.mkv +李让-我们同行,http://em.21dtv.com/songs/60105164.mkv +小琴儿-完美天堂,http://em.21dtv.com/songs/60066357.mkv +沙宝亮-完美世界,http://em.21dtv.com/songs/60130538.mkv +郭美美-完美世界,http://em.21dtv.com/songs/60105437.mkv +罗中旭-完美世界,http://em.21dtv.com/songs/60091827.mkv +杨培安-完美世界,http://em.21dtv.com/songs/60043136.mkv +水木年华-完美世界,http://em.21dtv.com/songs/60043135.mkv +廖士贤-完美世界(无原唱),http://em.21dtv.com/songs/60043134.mkv +许巍-完美生活,http://em.21dtv.com/songs/60043133.mkv +许巍-完美生活(演唱会),http://em.21dtv.com/songs/60043132.mkv +黄玮亦-完美人生,http://em.21dtv.com/songs/60127621.mkv +金池-完美人生,http://em.21dtv.com/songs/60121037.mkv +程响-完美人生,http://em.21dtv.com/songs/60078004.mkv +车謇-完美情人,http://em.21dtv.com/songs/60134274.mkv +杨小宇-完美情人,http://em.21dtv.com/songs/60099336.mkv +何润东-完美情人,http://em.21dtv.com/songs/60090602.mkv +邓福如-完美情人,http://em.21dtv.com/songs/60083947.mkv +陈慧琳-完美情人,http://em.21dtv.com/songs/60043131.mkv +183CLUB-完美情人,http://em.21dtv.com/songs/60043130.mkv +潘美辰+JOANNA MOON-完美奇迹,http://em.21dtv.com/songs/60062804.mkv +郭瓦加毛吉-我们青海,http://em.21dtv.com/songs/60045915.mkv +西部牛仔-无名情歌,http://em.21dtv.com/songs/60072584.mkv +李玉玺-我们青春,http://em.21dtv.com/songs/60114609.mkv +黑龙-我蛮拼的,http://em.21dtv.com/songs/60132022.mkv +周渝民-完美偶像,http://em.21dtv.com/songs/60043128.mkv +夏嘉伟-完美男人,http://em.21dtv.com/songs/60115073.mkv +陈瑞-完美女人(HD),http://em.21dtv.com/songs/10012827.mkv +陈瑞-完美女人,http://em.21dtv.com/songs/60072476.mkv +依依-完美女人,http://em.21dtv.com/songs/60071199.mkv +COLOR-完美男人,http://em.21dtv.com/songs/60064992.mkv +张嘉洵-完美女人,http://em.21dtv.com/songs/60043127.mkv +白玛-为梦流浪,http://em.21dtv.com/songs/60088362.mkv +李亮超-我们累了,http://em.21dtv.com/songs/60080618.mkv +蔡小虎-无名恋歌,http://em.21dtv.com/songs/60047244.mkv +乱弹阿翔-完美落地,http://em.21dtv.com/songs/60066356.mkv +黄鑫-完美旅程,http://em.21dtv.com/songs/60043126.mkv +牛飞-无名戒指,http://em.21dtv.com/songs/60088270.mkv +王可儿-完美记忆,http://em.21dtv.com/songs/60043122.mkv +王程程-完美角色,http://em.21dtv.com/songs/60135562.mkv +M3-无名角色(无原唱),http://em.21dtv.com/songs/60047243.mkv +杜德伟-完美假期,http://em.21dtv.com/songs/60043123.mkv +吴鑫桐-完美绝配,http://em.21dtv.com/songs/60071198.mkv +熊汝霖-完美结局,http://em.21dtv.com/songs/60043125.mkv +庞龙-完美结局,http://em.21dtv.com/songs/60043124.mkv +群星-我们举杯,http://em.21dtv.com/songs/60078298.mkv +佚名-我们举杯,http://em.21dtv.com/songs/60045904.mkv +朱云鹏-我们骄傲,http://em.21dtv.com/songs/60061693.mkv +戴玉强-我们会赢,http://em.21dtv.com/songs/60089891.mkv +林峰-我们很好,http://em.21dtv.com/songs/60045989.mkv +小柯-我没喝多,http://em.21dtv.com/songs/60045734.mkv +陈慧琳-完美关系,http://em.21dtv.com/songs/60043121.mkv +陈慧琳-完美关系(演唱会),http://em.21dtv.com/songs/60043118.mkv +青苹果组合-为梦歌颂,http://em.21dtv.com/songs/60129778.mkv +潘玮柏-完美故事,http://em.21dtv.com/songs/60043117.mkv +莫文蔚-完美孤独,http://em.21dtv.com/songs/60043116.mkv +张韶涵-我没改变,http://em.21dtv.com/songs/60071252.mkv +陈茄玉-为梦飞翔,http://em.21dtv.com/songs/60124653.mkv +晓月-我梦飞翔,http://em.21dtv.com/songs/60068782.mkv +陈浩民-完美飞行,http://em.21dtv.com/songs/60043115.mkv +江美琪-完美分手,http://em.21dtv.com/songs/60068718.mkv +梁咏琪-完美放送,http://em.21dtv.com/songs/60043114.mkv +华语群星-为梦而战,http://em.21dtv.com/songs/60113313.mkv +水木年华-为梦而生,http://em.21dtv.com/songs/60081679.mkv +张玮-为梦而来,http://em.21dtv.com/songs/60104138.mkv +关喆+茜拉-为梦而狂(动画),http://em.21dtv.com/songs/60101922.mkv +黄嘉千-我们都要,http://em.21dtv.com/songs/60045883.mkv +左光平-我们都想,http://em.21dtv.com/songs/60045882.mkv +韩沛漛-文明动物,http://em.21dtv.com/songs/60124691.mkv +陈威全-我们都傻,http://em.21dtv.com/songs/60124630.mkv +江若琳-我们都傻,http://em.21dtv.com/songs/60068777.mkv +杨丞琳-我们都傻,http://em.21dtv.com/songs/60061692.mkv +阿弟仔-我没读书,http://em.21dtv.com/songs/60045732.mkv +王宏天-我们的情,http://em.21dtv.com/songs/60108704.mkv +吴莫愁-完美的你,http://em.21dtv.com/songs/60130188.mkv +吴莫愁-完美的你,http://em.21dtv.com/songs/60128892.mkv +崔健-外面的妞,http://em.21dtv.com/songs/60116758.mkv +朱业晋-我们的梦,http://em.21dtv.com/songs/60115990.mkv +张钰琪-我们的梦,http://em.21dtv.com/songs/60105058.mkv +南台湾小姑娘-无眠的暝,http://em.21dtv.com/songs/60095483.mkv +汪峰-我们的梦,http://em.21dtv.com/songs/60045816.mkv +高瑞屏-无眠的暝,http://em.21dtv.com/songs/60035463.mkv +筷子兄弟-我们的路,http://em.21dtv.com/songs/60078290.mkv +不辣-我们的泪,http://em.21dtv.com/songs/60045815.mkv +王洪迪-我们的家,http://em.21dtv.com/songs/60106110.mkv +宋娜-我们的家,http://em.21dtv.com/songs/60045813.mkv +李倩-我们的歌,http://em.21dtv.com/songs/60131495.mkv +群星-我们的歌,http://em.21dtv.com/songs/60127281.mkv +Trash-我们的歌,http://em.21dtv.com/songs/60126554.mkv +99乐团-我们的歌,http://em.21dtv.com/songs/60123427.mkv +李思瑶-我们的歌,http://em.21dtv.com/songs/60120630.mkv +渠里人-我们大哥,http://em.21dtv.com/songs/60098596.mkv +反光镜乐队-我们的歌,http://em.21dtv.com/songs/60097273.mkv +张崇基+张崇德-我们的歌(演唱会),http://em.21dtv.com/songs/60065087.mkv +林育群-我们的歌(演唱会),http://em.21dtv.com/songs/60065086.mkv +阿吉仔-无名的歌,http://em.21dtv.com/songs/60047238.mkv +张杰-我们的歌,http://em.21dtv.com/songs/60045799.mkv +王力宏-我们的歌,http://em.21dtv.com/songs/60045798.mkv +尚雯婕+尚马龙-我们的歌,http://em.21dtv.com/songs/60045797.mkv +水木年华-我们的岛,http://em.21dtv.com/songs/60071255.mkv +默契-我们的爱,http://em.21dtv.com/songs/60099636.mkv +陈羽凡+韦婕-我们的爱,http://em.21dtv.com/songs/60095148.mkv +明圣凯-我们的爱,http://em.21dtv.com/songs/60087930.mkv +关燕萍-我们的爱,http://em.21dtv.com/songs/60087358.mkv +权振东-我们的爱,http://em.21dtv.com/songs/60086933.mkv +毅光年-我们的爱,http://em.21dtv.com/songs/60085912.mkv +张樱薷+杨晓狄-我们的爱,http://em.21dtv.com/songs/60066410.mkv +袁媛-我们的爱(演唱会),http://em.21dtv.com/songs/60063326.mkv +浩瀚-我们的爱,http://em.21dtv.com/songs/60045786.mkv +F.I.R-我们的爱,http://em.21dtv.com/songs/60045785.mkv +宋昱锦-我魔慈悲,http://em.21dtv.com/songs/60133580.mkv +孙淑媚-我嘛不知,http://em.21dtv.com/songs/60095507.mkv +侯强-万马奔腾,http://em.21dtv.com/songs/60099091.mkv +莫文蔚-我明白他,http://em.21dtv.com/songs/60045994.mkv +黄靖淞-我们不散,http://em.21dtv.com/songs/60127629.mkv +杨丞琳-完美比例,http://em.21dtv.com/songs/60043106.mkv +周华健-我们不哭,http://em.21dtv.com/songs/60045777.mkv +邵雅茜-完美爱情,http://em.21dtv.com/songs/60043105.mkv +BLINK 182-whats my age again(无原唱),http://em.21dtv.com/songs/60006222.mkv +赵又廷+COLOR BAND-无赖正义,http://em.21dtv.com/songs/60047194.mkv +COLOR+赵又廷-无赖正义,http://em.21dtv.com/songs/60047193.mkv +游鸿明-吻了再说,http://em.21dtv.com/songs/60044420.mkv +青春美少女-网络战士(演唱会),http://em.21dtv.com/songs/60043390.mkv +郭富城-忘了怎么,http://em.21dtv.com/songs/60043623.mkv +言承旭-忘了自己,http://em.21dtv.com/songs/60043626.mkv +王子+爱乐公社-万里之久,http://em.21dtv.com/songs/60043280.mkv +郭富城-微凉之后,http://em.21dtv.com/songs/60093356.mkv +佚名-望郎早归,http://em.21dtv.com/songs/60043681.mkv +素兰-望郎早归,http://em.21dtv.com/songs/60043680.mkv +郭富城-舞林正传,http://em.21dtv.com/songs/60047784.mkv +郭富城-舞林正传(演唱会),http://em.21dtv.com/songs/60047783.mkv +黄湘怡-无聊一天,http://em.21dtv.com/songs/60047218.mkv +童安格-无泪有伤,http://em.21dtv.com/songs/60047198.mkv +易欣-忘了忧伤,http://em.21dtv.com/songs/60043622.mkv +马雨贤-忘了应该,http://em.21dtv.com/songs/60127598.mkv +刘德华-忘了隐藏,http://em.21dtv.com/songs/60043621.mkv +柯陈军-亡灵序曲,http://em.21dtv.com/songs/60085820.mkv +梁咏琪-无聊小猫,http://em.21dtv.com/songs/60047217.mkv +吴克群-未来先见,http://em.21dtv.com/songs/60105696.mkv +李健科-网恋新歌,http://em.21dtv.com/songs/60078032.mkv +李建科-网恋流行,http://em.21dtv.com/songs/60067507.mkv +铁竹堂-为了兄弟,http://em.21dtv.com/songs/60043927.mkv +晓依-网络问情,http://em.21dtv.com/songs/60103321.mkv +歌浴森-哇啦哇啦V,http://em.21dtv.com/songs/60097345.mkv +张鹏-无力挽留,http://em.21dtv.com/songs/60123965.mkv +李超越-无力挽留,http://em.21dtv.com/songs/60111173.mkv +CONNIE吕莘-完啦完啦,http://em.21dtv.com/songs/60043097.mkv +周柏豪-无力挽回,http://em.21dtv.com/songs/60072583.mkv +孙江枫-无力挽回,http://em.21dtv.com/songs/60047200.mkv +柯有纶-为了我好,http://em.21dtv.com/songs/60043925.mkv +帅霖-忘了我吧,http://em.21dtv.com/songs/60127941.mkv +沈识干-忘了我吧,http://em.21dtv.com/songs/60100264.mkv +凯歌-忘了我吧,http://em.21dtv.com/songs/60097293.mkv +陈星-忘了我吧,http://em.21dtv.com/songs/60043611.mkv +蒙克-乌兰托娅,http://em.21dtv.com/songs/60107184.mkv +郑晟-忘了他吧,http://em.21dtv.com/songs/60043605.mkv +飘洒的心雨-忘了所有,http://em.21dtv.com/songs/60066368.mkv +王杰-忘了所有,http://em.21dtv.com/songs/60043602.mkv +陈美希-忘了伤痛,http://em.21dtv.com/songs/60122248.mkv +陈玉建-忘了伤痛,http://em.21dtv.com/songs/60120091.mkv +刘子千-未来少年,http://em.21dtv.com/songs/60085855.mkv +跳水姑娘-忘了算了,http://em.21dtv.com/songs/60135783.mkv +姚灵-未恋失恋,http://em.21dtv.com/songs/60128949.mkv +张博文-未恋失恋,http://em.21dtv.com/songs/60126863.mkv +范怡文-忘了算了,http://em.21dtv.com/songs/60078052.mkv +何贤忠-忘了时间,http://em.21dtv.com/songs/60105582.mkv +言承旭-忘了世界,http://em.21dtv.com/songs/60092045.mkv +艺涛-为了荣耀,http://em.21dtv.com/songs/60131754.mkv +庄振凯+洪百慧-无论如何,http://em.21dtv.com/songs/60085957.mkv +陈小春-无论如何,http://em.21dtv.com/songs/60047228.mkv +朱英杰-网络情缘,http://em.21dtv.com/songs/60121760.mkv +田震-网络情缘,http://em.21dtv.com/songs/60091778.mkv +侃侃-网络情缘,http://em.21dtv.com/songs/60067510.mkv +EO2-舞林群英,http://em.21dtv.com/songs/60047782.mkv +佚名-网络情缘,http://em.21dtv.com/songs/60043389.mkv +黄美诗-网络情缘,http://em.21dtv.com/songs/60043388.mkv +陈星-网络情缘,http://em.21dtv.com/songs/60043387.mkv +牛奶咖啡-忘了牵手,http://em.21dtv.com/songs/60113832.mkv +自由发挥-舞力全失,http://em.21dtv.com/songs/60078485.mkv +吴玉龙-网络情人,http://em.21dtv.com/songs/60043385.mkv +谭咏麟-网路情迷,http://em.21dtv.com/songs/60043383.mkv +谭咏麟-网路情迷(演唱会),http://em.21dtv.com/songs/60043382.mkv +梁叙甜-无力前行,http://em.21dtv.com/songs/60080637.mkv +波拉-网络情歌,http://em.21dtv.com/songs/60117888.mkv +欣新-网络情歌,http://em.21dtv.com/songs/60096368.mkv +木杰-未了情歌,http://em.21dtv.com/songs/60080678.mkv +林子娟-网路情歌,http://em.21dtv.com/songs/60043381.mkv +STEPS-5678,http://em.21dtv.com/songs/60000027.mkv +罗百吉-无聊男子,http://em.21dtv.com/songs/60047216.mkv +韦礼安-well never know,http://em.21dtv.com/songs/60068008.mkv +韦礼安-为了你活,http://em.21dtv.com/songs/60119047.mkv +曹格-无聊男孩,http://em.21dtv.com/songs/60109402.mkv +曹格-无聊男孩,http://em.21dtv.com/songs/60078450.mkv +雷光夏-未来女孩,http://em.21dtv.com/songs/60044259.mkv +LINDA-为了你好,http://em.21dtv.com/songs/60043915.mkv +王程程-为了梦想,http://em.21dtv.com/songs/60135561.mkv +谢作健-为了梦想,http://em.21dtv.com/songs/60109626.mkv +吴胜健-为了梦想,http://em.21dtv.com/songs/60099152.mkv +黑龙-屋里门外,http://em.21dtv.com/songs/60136038.mkv +韩磊+纳兰-为了明天,http://em.21dtv.com/songs/60099616.mkv +谭晶-为了母亲,http://em.21dtv.com/songs/60078077.mkv +网络歌手-网络美眉,http://em.21dtv.com/songs/60090108.mkv +张胜淼-网络老婆,http://em.21dtv.com/songs/60121666.mkv +佚名-500 miles,http://em.21dtv.com/songs/60000026.mkv +郑伊健-无路可走,http://em.21dtv.com/songs/60047225.mkv +贡尕达哇-无路可退,http://em.21dtv.com/songs/60127417.mkv +祁隆-无路可退,http://em.21dtv.com/songs/60100341.mkv +明道-无路可退,http://em.21dtv.com/songs/60097158.mkv +袁小迪-无路可退,http://em.21dtv.com/songs/60079452.mkv +ALIN-无路可退,http://em.21dtv.com/songs/60078451.mkv +祁隆-无理课堂,http://em.21dtv.com/songs/60078448.mkv +祁隆-无厘课堂,http://em.21dtv.com/songs/60071286.mkv +艳阳天-无路可退,http://em.21dtv.com/songs/60070007.mkv +康然-无路可退,http://em.21dtv.com/songs/60062544.mkv +杨克强-无路可退,http://em.21dtv.com/songs/60047224.mkv +孙楠-无路可退,http://em.21dtv.com/songs/60047223.mkv +潘美辰-无路可退,http://em.21dtv.com/songs/60047222.mkv +林志炫-无路可退,http://em.21dtv.com/songs/60047221.mkv +黄勇-无路可退,http://em.21dtv.com/songs/60047220.mkv +艾晴晴-无路可退,http://em.21dtv.com/songs/60047219.mkv +那英-雾里看花,http://em.21dtv.com/songs/60115441.mkv +容祖儿-雾里看花,http://em.21dtv.com/songs/60070019.mkv +卓依婷-雾里看花,http://em.21dtv.com/songs/60047847.mkv +孟庭苇-雾里看花,http://em.21dtv.com/songs/60047846.mkv +那英-雾里看花(演唱会),http://em.21dtv.com/songs/60047845.mkv +邓丽君-我了解你,http://em.21dtv.com/songs/60045711.mkv +陈依依-问路精灵,http://em.21dtv.com/songs/60044461.mkv +张敬轩-未来回忆,http://em.21dtv.com/songs/60092616.mkv +杨丞琳-未来哈啰,http://em.21dtv.com/songs/60088057.mkv +杨丞琳-未来哈罗,http://em.21dtv.com/songs/60069919.mkv +群星-we love hong kong(演唱会),http://em.21dtv.com/songs/60006143.mkv +梁静茹-蔚蓝海岸,http://em.21dtv.com/songs/60102412.mkv +于冠华-我淋过雨,http://em.21dtv.com/songs/60045728.mkv +季天成-舞林高手,http://em.21dtv.com/songs/60116717.mkv +紫海-我勒个去,http://em.21dtv.com/songs/60086931.mkv +吉吉-我勒个去,http://em.21dtv.com/songs/60067568.mkv +齐峰-乌兰姑娘,http://em.21dtv.com/songs/60070004.mkv +陈奕迅-忘了歌词,http://em.21dtv.com/songs/60043587.mkv +周杰伦-威廉古堡,http://em.21dtv.com/songs/60043747.mkv +怪脚团体-无聊的夜,http://em.21dtv.com/songs/60047214.mkv +成诚-蔚蓝的梦,http://em.21dtv.com/songs/60120573.mkv +佚名-未来的路,http://em.21dtv.com/songs/60044251.mkv +毛阿敏-无论多久,http://em.21dtv.com/songs/60089382.mkv +郭涛-无聊的恨(HD),http://em.21dtv.com/songs/10012815.mkv +关喆+郭涛+高虎-无聊的狠,http://em.21dtv.com/songs/60097157.mkv +郭涛+高虎+关喆-无聊的狠,http://em.21dtv.com/songs/60097156.mkv +王馨平-舞林大会,http://em.21dtv.com/songs/60047781.mkv +陈星-无聊的歌,http://em.21dtv.com/songs/60047205.mkv +苏青山-网络的爱,http://em.21dtv.com/songs/60120889.mkv +CHYNA-未来的爱,http://em.21dtv.com/songs/60044247.mkv +铁文太-蔚蓝草原,http://em.21dtv.com/songs/60108104.mkv +张文慈-忘了宠我,http://em.21dtv.com/songs/60043586.mkv +陈柏睿-忘了从前,http://em.21dtv.com/songs/60129749.mkv +费玉清-万里长城,http://em.21dtv.com/songs/60043276.mkv +范逸臣-舞乐不作,http://em.21dtv.com/songs/60089462.mkv +范逸臣-无乐不作,http://em.21dtv.com/songs/60047195.mkv +群星-呜拉巴哈,http://em.21dtv.com/songs/60091848.mkv +伍思凯-忘了爱我,http://em.21dtv.com/songs/60043584.mkv +音乐走廊-网络爱情,http://em.21dtv.com/songs/60067508.mkv +杨坤-为了爱情,http://em.21dtv.com/songs/60043907.mkv +王铁峰-为了爱你,http://em.21dtv.com/songs/60043906.mkv +B.CREWE+B.GAUDIO-walk like a man(无原唱),http://em.21dtv.com/songs/60006100.mkv +张韶涵-我恋爱了,http://em.21dtv.com/songs/60045719.mkv +佚名-walk like an egyptian,http://em.21dtv.com/songs/60006101.mkv +孙楠-无愧于心,http://em.21dtv.com/songs/60047187.mkv +尚杰-我可以等,http://em.21dtv.com/songs/60132403.mkv +成龙-无愧我心,http://em.21dtv.com/songs/60091227.mkv +李雪岩-无可取代,http://em.21dtv.com/songs/60129258.mkv +大嘴巴-无可取代,http://em.21dtv.com/songs/60084121.mkv +弦子-无可取代,http://em.21dtv.com/songs/60047186.mkv +S.H.E-无可取代,http://em.21dtv.com/songs/60047185.mkv +张勋杰-无可取代(无原唱),http://em.21dtv.com/songs/60047184.mkv +佚名-what kind of fool,http://em.21dtv.com/songs/60006206.mkv +孟杨-文科女生,http://em.21dtv.com/songs/60087673.mkv +孟杨-文科女士,http://em.21dtv.com/songs/60044385.mkv +郑嘉颖-无可奈何,http://em.21dtv.com/songs/60047181.mkv +郑嘉颖-无可奈何(演唱会),http://em.21dtv.com/songs/60047180.mkv +刘瑞琦-乌克丽丽,http://em.21dtv.com/songs/60098150.mkv +周杰伦-乌克丽丽,http://em.21dtv.com/songs/60072578.mkv +超越-无可救药,http://em.21dtv.com/songs/60110563.mkv +吴名慧-无可救药,http://em.21dtv.com/songs/60047178.mkv +黄品冠-无可救药,http://em.21dtv.com/songs/60047177.mkv +4 IN LOVE-无可救药,http://em.21dtv.com/songs/60047176.mkv +孙楠-我看见了,http://em.21dtv.com/songs/60090916.mkv +安心亚-无可救爱,http://em.21dtv.com/songs/60065141.mkv +陈柏宇-无可厚非,http://em.21dtv.com/songs/60047175.mkv +郑丹瑞-无可奉告,http://em.21dtv.com/songs/60047174.mkv +佚名-无可奉告,http://em.21dtv.com/songs/60047173.mkv +DEAR JANE-无可避免,http://em.21dtv.com/songs/60084120.mkv +高登-悟空不空,http://em.21dtv.com/songs/60085971.mkv +蔡丽津-我卡爱你,http://em.21dtv.com/songs/60135703.mkv +尚雯婕-我就这样,http://em.21dtv.com/songs/60062901.mkv +佚名-我君仔喂,http://em.21dtv.com/songs/60045675.mkv +胡灵-未解之谜,http://em.21dtv.com/songs/60115341.mkv +胡灵-未解之谜,http://em.21dtv.com/songs/60113982.mkv +赖敏-无尽责怪,http://em.21dtv.com/songs/60123192.mkv +艾成-危机意识,http://em.21dtv.com/songs/60043736.mkv +丁菲飞-忘记月亮,http://em.21dtv.com/songs/60043567.mkv +潘玮柏-忘记拥抱,http://em.21dtv.com/songs/60124223.mkv +孙伯纶-忘记拥抱,http://em.21dtv.com/songs/60115091.mkv +A Lin-忘记拥抱,http://em.21dtv.com/songs/60108202.mkv +潘玮柏-忘记拥抱,http://em.21dtv.com/songs/60069902.mkv +SNH48-无尽旋转,http://em.21dtv.com/songs/60079858.mkv +何易峰-我介心声,http://em.21dtv.com/songs/60045643.mkv +王力宏-我就喜欢,http://em.21dtv.com/songs/60045665.mkv +利绮-忘记幸福,http://em.21dtv.com/songs/60089687.mkv +郁可唯-微加幸福,http://em.21dtv.com/songs/60061651.mkv +陈倩倩-无拘无束,http://em.21dtv.com/songs/60047172.mkv +倪安东-无间天堂,http://em.21dtv.com/songs/60095259.mkv +苏桂杰-为佳停留,http://em.21dtv.com/songs/60080582.mkv +许霖-我就是我,http://em.21dtv.com/songs/60135741.mkv +秋裤大叔-我就是我,http://em.21dtv.com/songs/60125996.mkv +邓子辰-我就是我,http://em.21dtv.com/songs/60124541.mkv +唐伯虎-我就是我,http://em.21dtv.com/songs/60123779.mkv +未名组合-我就是我,http://em.21dtv.com/songs/60122819.mkv +田亚霍-我就是我,http://em.21dtv.com/songs/60119840.mkv +叶祖新+杨世瀚+黄世超+杨思帆-我就是我,http://em.21dtv.com/songs/60116614.mkv +叶祖新-我就是我,http://em.21dtv.com/songs/60116613.mkv +刘航-我就是我,http://em.21dtv.com/songs/60113303.mkv +猎狐乐团-我就是我,http://em.21dtv.com/songs/60112093.mkv +陈嘉桦-我就是我,http://em.21dtv.com/songs/60079881.mkv +ELLA-我就是我,http://em.21dtv.com/songs/60078269.mkv +区文诗-我就是我,http://em.21dtv.com/songs/60068771.mkv +萧亚轩-我就是我,http://em.21dtv.com/songs/60045656.mkv +罗永娟-我就是我,http://em.21dtv.com/songs/60045655.mkv +ME2-我就是我,http://em.21dtv.com/songs/60045654.mkv +萧亚轩-我就是我(演唱会),http://em.21dtv.com/songs/60045653.mkv +东于哲-我就是谁,http://em.21dtv.com/songs/60123590.mkv +朗尼阿彬-翁嘉神山,http://em.21dtv.com/songs/60091284.mkv +胡诺言-忘记时空,http://em.21dtv.com/songs/60043553.mkv +胡歌-忘记时间,http://em.21dtv.com/songs/60043552.mkv +陈燕妮-我就是花,http://em.21dtv.com/songs/60108133.mkv +林峰-忘记伤害(演唱会),http://em.21dtv.com/songs/60043550.mkv +辛龙-我就是爱,http://em.21dtv.com/songs/60080014.mkv +群星-闻鸡起舞,http://em.21dtv.com/songs/60132803.mkv +卫东-闻鸡起舞,http://em.21dtv.com/songs/60131233.mkv +童唱-握紧拳头,http://em.21dtv.com/songs/60047023.mkv +蓝芷儿-闻鸡起鸣,http://em.21dtv.com/songs/60085859.mkv +如夏-忘记了吗,http://em.21dtv.com/songs/60097294.mkv +阿悄+童可可+王瑞淇+微胖女神-未接来电,http://em.21dtv.com/songs/60123275.mkv +杨乃文-未接来电,http://em.21dtv.com/songs/60096348.mkv +BEYOND-无尽空虚,http://em.21dtv.com/songs/60047169.mkv +黄家强-无尽空虚(演唱会),http://em.21dtv.com/songs/60047168.mkv +水木年华-无计可施,http://em.21dtv.com/songs/60047145.mkv +李玖哲+MELODY YEUNG-无价快乐,http://em.21dtv.com/songs/60047150.mkv +伍家辉-无家可回,http://em.21dtv.com/songs/60047148.mkv +王爱华-问剑江河,http://em.21dtv.com/songs/60127201.mkv +钟嘉欣-我结婚了,http://em.21dtv.com/songs/60126309.mkv +郭淑仪-忘记回家(无原唱),http://em.21dtv.com/songs/60043534.mkv +林云逸-忘记过去,http://em.21dtv.com/songs/60128120.mkv +谢霆锋-忘记过去,http://em.21dtv.com/songs/60043533.mkv +王丽达-文姬归汉,http://em.21dtv.com/songs/60085858.mkv +王亚平-文姬归汉,http://em.21dtv.com/songs/60067536.mkv +陈奕迅-忘记歌词,http://em.21dtv.com/songs/60043532.mkv +佚名-无尽风沙,http://em.21dtv.com/songs/60047167.mkv +陈振云-蜗居奋斗,http://em.21dtv.com/songs/60044520.mkv +林晓培-无疾而终,http://em.21dtv.com/songs/60047144.mkv +周信-我记得你,http://em.21dtv.com/songs/60065078.mkv +芬华-无尽的路,http://em.21dtv.com/songs/60135667.mkv +易铭-万家灯火,http://em.21dtv.com/songs/60122792.mkv +司小卉-万家灯火,http://em.21dtv.com/songs/60115745.mkv +王宏伟-万家灯火,http://em.21dtv.com/songs/60102518.mkv +潘阳-万家灯火,http://em.21dtv.com/songs/60102504.mkv +刘雅丽-万家灯火(演唱会),http://em.21dtv.com/songs/60083951.mkv +徐千雅-万家灯火,http://em.21dtv.com/songs/60069894.mkv +艾歌-万家灯火,http://em.21dtv.com/songs/60066359.mkv +林美美-无讲的话,http://em.21dtv.com/songs/60047154.mkv +汤灿-万家灯火,http://em.21dtv.com/songs/60043274.mkv +刘雅丽-万家灯火,http://em.21dtv.com/songs/60043273.mkv +TIZZY BAC-忘记丢掉,http://em.21dtv.com/songs/60043530.mkv +蔡妍+ALAN-无尽的爱,http://em.21dtv.com/songs/60098751.mkv +尤雅-无尽的爱,http://em.21dtv.com/songs/60078446.mkv +EVA 陈-无尽的爱,http://em.21dtv.com/songs/60062018.mkv +关淑怡-无尽的爱,http://em.21dtv.com/songs/60047163.mkv +费玉清+王珍妮-无尽的爱,http://em.21dtv.com/songs/60047162.mkv +成龙+金喜善-无尽的爱,http://em.21dtv.com/songs/60047161.mkv +吉克隽逸-无惧此夜,http://em.21dtv.com/songs/60099860.mkv +铁竹堂-晚酒朝舞,http://em.21dtv.com/songs/60135863.mkv +陈慧娴-忘记悲伤,http://em.21dtv.com/songs/60043526.mkv +钟嘉欣-我记不起,http://em.21dtv.com/songs/60127520.mkv +郑秀文-忘记不起,http://em.21dtv.com/songs/60043527.mkv +王杰-忘记背叛,http://em.21dtv.com/songs/60092981.mkv +张峰奇-婉君表妹,http://em.21dtv.com/songs/60043257.mkv +童星-婉君表妹,http://em.21dtv.com/songs/60043256.mkv +镰刀禾苗-乌江别恋,http://em.21dtv.com/songs/60126336.mkv +郑秀文-忘记巴黎,http://em.21dtv.com/songs/60043525.mkv +刘佳铭-无坚不摧,http://em.21dtv.com/songs/60085956.mkv +谭嘉荃-无家宝贝,http://em.21dtv.com/songs/60118058.mkv +刘以达-晚节不保,http://em.21dtv.com/songs/60092343.mkv +达明一派-晚节不保(演唱会),http://em.21dtv.com/songs/60043234.mkv +张栋梁-忘记爱过,http://em.21dtv.com/songs/60043523.mkv +张根硕-what is your name,http://em.21dtv.com/songs/60086380.mkv +童唱-what is your name,http://em.21dtv.com/songs/60006200.mkv +佚名-where is your heart,http://em.21dtv.com/songs/60006294.mkv +SHELBY LYNNE-wall in your heart,http://em.21dtv.com/songs/60006113.mkv +LDY LICKEM-when i wake up,http://em.21dtv.com/songs/60082394.mkv +PAULA DEANDA-when it was me,http://em.21dtv.com/songs/60063797.mkv +WESTLIFE-written in the stars(演唱会),http://em.21dtv.com/songs/60082404.mkv +顽童MJ116 ARIANNA-written in the star,http://em.21dtv.com/songs/60074168.mkv +TINIE TEMPAH-written in the stars,http://em.21dtv.com/songs/60006430.mkv +ELTON JOHN+LEANN RIM-written in the stars,http://em.21dtv.com/songs/60006429.mkv +佚名-walking in the rain,http://em.21dtv.com/songs/60006109.mkv +MARIA+KOK-where is the love,http://em.21dtv.com/songs/60082396.mkv +邓福如-where is the love(演唱会),http://em.21dtv.com/songs/60071688.mkv +BLACK EYED PEAS-where is the love,http://em.21dtv.com/songs/60006293.mkv +MUMFORD SONS-whispers in the dark,http://em.21dtv.com/songs/60074131.mkv +美声男孩-walking in the air,http://em.21dtv.com/songs/60006108.mkv +STEPS-when i said goodbye,http://em.21dtv.com/songs/60006243.mkv +TAIO CRUZ-world in our hands,http://em.21dtv.com/songs/60070420.mkv +LEO SAYER-when i need you,http://em.21dtv.com/songs/60006242.mkv +LUPE FIASCO+SKYLAR GREY-words i never said,http://em.21dtv.com/songs/60074162.mkv +GARBAGE-world is not enough,http://em.21dtv.com/songs/60006414.mkv +MONTGOMERY GENTRY-where i come from,http://em.21dtv.com/songs/60074127.mkv +BEE GEES-wouldnt i be someone,http://em.21dtv.com/songs/60006423.mkv +佚名-wouldnt it be loverly(无原唱),http://em.21dtv.com/songs/60006424.mkv +佚名-what is a youth,http://em.21dtv.com/songs/60006198.mkv +佚名-when im 64,http://em.21dtv.com/songs/60006247.mkv +罗志祥-舞魂再现,http://em.21dtv.com/songs/60095337.mkv +李俊英-网海之恋,http://em.21dtv.com/songs/60071205.mkv +关心妍-无话再讲,http://em.21dtv.com/songs/60047133.mkv +张信哲-五环之歌,http://em.21dtv.com/songs/60130298.mkv +王麟+南城二哥-五环之歌,http://em.21dtv.com/songs/60102564.mkv +王莹-我和祖国,http://em.21dtv.com/songs/60078252.mkv +阿悄-我还愿意,http://em.21dtv.com/songs/60097275.mkv +孙楠-无悔于心,http://em.21dtv.com/songs/60047142.mkv +陈熙-我还以为,http://em.21dtv.com/songs/60045491.mkv +谭咏麟-无悔一生,http://em.21dtv.com/songs/60130759.mkv +任贤齐-我很有钱,http://em.21dtv.com/songs/60090555.mkv +汤宝如-午后怨曲,http://em.21dtv.com/songs/60047697.mkv +姜育恒-我还有梦,http://em.21dtv.com/songs/60045493.mkv +王鸣飞-午后阳光,http://em.21dtv.com/songs/60120791.mkv +梦然-午后阳光,http://em.21dtv.com/songs/60120680.mkv +春妹-午后阳光,http://em.21dtv.com/songs/60047696.mkv +伊能静-我很勇敢,http://em.21dtv.com/songs/60045576.mkv +RIHANNA-where have you been,http://em.21dtv.com/songs/60066756.mkv +林子祥-我还有爱,http://em.21dtv.com/songs/60045492.mkv +李世拉-我很幸运,http://em.21dtv.com/songs/60133785.mkv +高瑞琦-我很想她,http://em.21dtv.com/songs/60093596.mkv +祝兰兰-我很想他,http://em.21dtv.com/songs/60080875.mkv +郭嘉璐-我好想逃,http://em.21dtv.com/songs/60045511.mkv +容祖儿-我好想他,http://em.21dtv.com/songs/60045510.mkv +卢巧音-我好想他,http://em.21dtv.com/songs/60045509.mkv +林俊杰-我还想她,http://em.21dtv.com/songs/60045489.mkv +周丽淇-问号先生,http://em.21dtv.com/songs/60044452.mkv +徐佳莹-我好想你,http://em.21dtv.com/songs/60128010.mkv +周旸-我好想你,http://em.21dtv.com/songs/60125312.mkv +叶诺帆-我好想你,http://em.21dtv.com/songs/60122559.mkv +疯子小夏-我好想你,http://em.21dtv.com/songs/60119843.mkv +徐佳莹-我好想你,http://em.21dtv.com/songs/60118579.mkv +蔡雯君-我好想你,http://em.21dtv.com/songs/60117201.mkv +贾争艳-我很想你,http://em.21dtv.com/songs/60116259.mkv +徐恩乾-我还想你,http://em.21dtv.com/songs/60115179.mkv +潘广益-我好想你,http://em.21dtv.com/songs/60107895.mkv +陈零九-我很想你,http://em.21dtv.com/songs/60106425.mkv +徐剑秋-我好想你,http://em.21dtv.com/songs/60103300.mkv +冯允谦-我好想你,http://em.21dtv.com/songs/60103093.mkv +齐晨-我好想你,http://em.21dtv.com/songs/60102970.mkv +白狐-我好想你,http://em.21dtv.com/songs/60099428.mkv +潘广益-我好想你,http://em.21dtv.com/songs/60084048.mkv +苏打绿-我好想你,http://em.21dtv.com/songs/60080702.mkv +阿华-我好想你,http://em.21dtv.com/songs/60078246.mkv +吴宗宪-我会想你,http://em.21dtv.com/songs/60045613.mkv +周渝民-我呼吸你,http://em.21dtv.com/songs/60045587.mkv +麦霸阿杜-我好想哭,http://em.21dtv.com/songs/60062754.mkv +高安-我好想哭,http://em.21dtv.com/songs/60045508.mkv +王秀琳-我会习惯,http://em.21dtv.com/songs/60091725.mkv +林少纬-我很幸福,http://em.21dtv.com/songs/60084049.mkv +钟欣桐-我很幸福,http://em.21dtv.com/songs/60080371.mkv +辛晓琪-我好幸福,http://em.21dtv.com/songs/60045512.mkv +阿飞-我好想飞,http://em.21dtv.com/songs/60045507.mkv +王锦麟-我和我们,http://em.21dtv.com/songs/60115313.mkv +王杰-无悔无憾,http://em.21dtv.com/songs/60047141.mkv +邓紫棋-what have u done,http://em.21dtv.com/songs/60068009.mkv +邰正宵-我很特殊,http://em.21dtv.com/songs/60045572.mkv +侯皓中-我还是我,http://em.21dtv.com/songs/60110845.mkv +黄明志-我还是我,http://em.21dtv.com/songs/60078259.mkv +殷桃-我还是我,http://em.21dtv.com/songs/60045484.mkv +樊凡-我还是我,http://em.21dtv.com/songs/60045483.mkv +黄凯芹-我还是我(演唱会),http://em.21dtv.com/songs/60045482.mkv +王乃恩+李天浩-我还是他,http://em.21dtv.com/songs/60069956.mkv +永邦-挽回时间,http://em.21dtv.com/songs/60043195.mkv +李杰-午后时光,http://em.21dtv.com/songs/60104207.mkv +歌浴森-我很认真,http://em.21dtv.com/songs/60078253.mkv +培圣-网海情缘,http://em.21dtv.com/songs/60043379.mkv +蔡依林-我很怕黑,http://em.21dtv.com/songs/60045568.mkv +Rainbow-Whoo,http://em.21dtv.com/songs/60119174.mkv +张清芳-我还年轻,http://em.21dtv.com/songs/60045473.mkv +张秀卿+林宏铭-我乎你靠,http://em.21dtv.com/songs/60045586.mkv +方瑞娥+黄西田-我乎你靠,http://em.21dtv.com/songs/60045585.mkv +罗百吉-舞会女孩,http://em.21dtv.com/songs/60047780.mkv +邓小龙-我很难过,http://em.21dtv.com/songs/60112994.mkv +林俊杰-我怀念的,http://em.21dtv.com/songs/60130478.mkv +草蜢-我怀念的(演唱会),http://em.21dtv.com/songs/60078257.mkv +李代沫-我怀念的,http://em.21dtv.com/songs/60071247.mkv +萧敬腾-我怀念的(演唱会),http://em.21dtv.com/songs/60065076.mkv +孙燕姿-我怀念的,http://em.21dtv.com/songs/60045593.mkv +泳儿-我怀念的(演唱会),http://em.21dtv.com/songs/60045592.mkv +最美和声群星-我和你唱,http://em.21dtv.com/songs/60094529.mkv +邝美云-为何离去,http://em.21dtv.com/songs/60043869.mkv +王杰-为何流泪,http://em.21dtv.com/songs/60088296.mkv +阿兰-我回来了,http://em.21dtv.com/songs/60065077.mkv +吴欢-我回来了,http://em.21dtv.com/songs/60045596.mkv +蔡旻佑-我回来了,http://em.21dtv.com/songs/60045595.mkv +叶万钧-无悔老兵,http://em.21dtv.com/songs/60047140.mkv +张牧阅-无话可说,http://em.21dtv.com/songs/60133679.mkv +玲玲Linda-无话可说,http://em.21dtv.com/songs/60120808.mkv +曾宝仪-无话可说,http://em.21dtv.com/songs/60047132.mkv +江得胜-无话可说(无原唱),http://em.21dtv.com/songs/60047131.mkv +王鹤铮-我很快乐,http://em.21dtv.com/songs/60061684.mkv +周蕙-我很快乐,http://em.21dtv.com/songs/60045567.mkv +梅艳芳-我很快乐,http://em.21dtv.com/songs/60045566.mkv +刘惜君-我很快乐,http://em.21dtv.com/songs/60045565.mkv +刘惜君-我很快乐(演唱会),http://em.21dtv.com/songs/60045564.mkv +SOUL WORKS-我很快乐(无原唱),http://em.21dtv.com/songs/60045563.mkv +辛子奇-无话可讲,http://em.21dtv.com/songs/60047130.mkv +曾航生-无悔今生,http://em.21dtv.com/songs/60047139.mkv +伊雪-我还记得,http://em.21dtv.com/songs/60128772.mkv +梁静茹-我还记得,http://em.21dtv.com/songs/60045463.mkv +LEANN RIMES-what have i done(演唱会),http://em.21dtv.com/songs/60074112.mkv +吴琼-我会回来,http://em.21dtv.com/songs/60099146.mkv +李晶涵-我会很好,http://em.21dtv.com/songs/60102344.mkv +郑秀文-我好感动,http://em.21dtv.com/songs/60090259.mkv +吴美英+彭炽权-五湖泛舟(2)(戏曲),http://em.21dtv.com/songs/60092462.mkv +吴美英+彭炽权-五湖泛舟(1)(戏曲),http://em.21dtv.com/songs/60092461.mkv +盖鸣晖+吴美英-五湖泛舟,http://em.21dtv.com/songs/60047645.mkv +侯延彬-午后分手,http://em.21dtv.com/songs/60078477.mkv +王杰-为何分离(演唱会),http://em.21dtv.com/songs/60043865.mkv +容祖儿-我好得闲,http://em.21dtv.com/songs/60125415.mkv +容祖儿-我好得闲,http://em.21dtv.com/songs/60119440.mkv +徐贤-我会等你,http://em.21dtv.com/songs/60112707.mkv +赵建林-我喝多啦,http://em.21dtv.com/songs/60126232.mkv +周传雄-无悔缠绵,http://em.21dtv.com/songs/60047137.mkv +屠洪纲-卧虎藏龙,http://em.21dtv.com/songs/60087729.mkv +佚名-我和班长,http://em.21dtv.com/songs/60045513.mkv +郑智化-未婚爸爸,http://em.21dtv.com/songs/60044238.mkv +区密-我还爱你,http://em.21dtv.com/songs/60125238.mkv +汪思妍-我还爱你,http://em.21dtv.com/songs/60114644.mkv +张善为-我会爱你,http://em.21dtv.com/songs/60045599.mkv +唐俪+吴俊宏-我会爱你,http://em.21dtv.com/songs/60045598.mkv +张善为-我会爱你(演唱会),http://em.21dtv.com/songs/60045597.mkv +房祖名-我还爱你,http://em.21dtv.com/songs/60045460.mkv +冯巩+马季-五官争功,http://em.21dtv.com/songs/60089664.mkv +林俊吉+李依婷-外国新娘(无原唱),http://em.21dtv.com/songs/60043067.mkv +陈冠希+赵颂茹-唔该行开,http://em.21dtv.com/songs/60047615.mkv +陈冠希+赵颂茹-吾该行开,http://em.21dtv.com/songs/60047612.mkv +谢容儿-无关幸福,http://em.21dtv.com/songs/60084119.mkv +王宏恩-吻过幸福,http://em.21dtv.com/songs/60044418.mkv +佚名-我歌我泣,http://em.21dtv.com/songs/60045451.mkv +邹文正-无关痛痒,http://em.21dtv.com/songs/60084118.mkv +LOREEN-we got the power,http://em.21dtv.com/songs/60082389.mkv +蔡卓妍-未够讨好,http://em.21dtv.com/songs/60080437.mkv +佚名-we got the beat,http://em.21dtv.com/songs/60006142.mkv +品冠-无关善良,http://em.21dtv.com/songs/60099890.mkv +郑希怡-五个世纪,http://em.21dtv.com/songs/60047638.mkv +苦荣+小苦妹+TWINS-我够神化,http://em.21dtv.com/songs/60045456.mkv +李念-五官情歌,http://em.21dtv.com/songs/60122856.mkv +陈慧琳-我敢去爱,http://em.21dtv.com/songs/60045445.mkv +陈慧琳-我敢去爱(演唱会),http://em.21dtv.com/songs/60045444.mkv +方大同-无菇朋友,http://em.21dtv.com/songs/60047123.mkv +关淑怡-我跟你走,http://em.21dtv.com/songs/60045455.mkv +陈慧琳-晤关你事,http://em.21dtv.com/songs/60047840.mkv +陈慧琳-唔关你事,http://em.21dtv.com/songs/60047617.mkv +陈慧琳-唔关你事(演唱会),http://em.21dtv.com/songs/60047616.mkv +周慧敏+小柏林-万个梦儿,http://em.21dtv.com/songs/60043269.mkv +郑源-无关快乐,http://em.21dtv.com/songs/60118965.mkv +阿轮-万古哭城,http://em.21dtv.com/songs/60067503.mkv +王陆芳-为国举杯,http://em.21dtv.com/songs/60130610.mkv +BACKSTREET BOYS-weve got it goinon,http://em.21dtv.com/songs/60006169.mkv +何韵诗-娃鬼回魂,http://em.21dtv.com/songs/60092271.mkv +叶复台-舞棍歌王,http://em.21dtv.com/songs/60067611.mkv +音频怪物-无关风月,http://em.21dtv.com/songs/60099618.mkv +王晰+肖懿航-五哥放羊,http://em.21dtv.com/songs/60097160.mkv +于文华-五哥放羊,http://em.21dtv.com/songs/60089589.mkv +佚名-五哥放羊,http://em.21dtv.com/songs/60047637.mkv +彭丽媛-五哥放牛,http://em.21dtv.com/songs/60047636.mkv +蔡国庆-万古风流,http://em.21dtv.com/songs/60086898.mkv +周秋同-万古风流,http://em.21dtv.com/songs/60043270.mkv +戴爱玲-我该得到,http://em.21dtv.com/songs/60045429.mkv +林玉英-无根的草,http://em.21dtv.com/songs/60047121.mkv +萧敬腾+田雨莫-我给的爱,http://em.21dtv.com/songs/60094669.mkv +钟镇涛-我给的爱,http://em.21dtv.com/songs/60045453.mkv +杨乃文-我给的爱,http://em.21dtv.com/songs/60045452.mkv +佚名-望过春风,http://em.21dtv.com/songs/60043673.mkv +白冰冰-望过春风,http://em.21dtv.com/songs/60043672.mkv +刘美君-我估不到(演唱会),http://em.21dtv.com/songs/60045457.mkv +江蕙-无关爱情,http://em.21dtv.com/songs/60047125.mkv +叶复台-舞棍阿伯,http://em.21dtv.com/songs/60047778.mkv +易欣-无法证明,http://em.21dtv.com/songs/60047112.mkv +纪晓斌+李思彤-无法重来,http://em.21dtv.com/songs/60086959.mkv +阿杜-无法阻挡,http://em.21dtv.com/songs/60047115.mkv +谭维维-无法阻挡(演唱会),http://em.21dtv.com/songs/60047114.mkv +王菲-为非作歹(演唱会),http://em.21dtv.com/songs/60043852.mkv +李刚-无法自拔,http://em.21dtv.com/songs/60132523.mkv +曾春年-无法自拔,http://em.21dtv.com/songs/60120589.mkv +河莉秀-舞法自拔,http://em.21dtv.com/songs/60047776.mkv +河莉秀-无法自拔,http://em.21dtv.com/songs/60047113.mkv +张靓颖-无法言喻,http://em.21dtv.com/songs/60063381.mkv +付辛博-Waiting For Your Love,http://em.21dtv.com/songs/60080503.mkv +李佳璐-无法原谅,http://em.21dtv.com/songs/60047111.mkv +邓丽君-微风细雨,http://em.21dtv.com/songs/60043758.mkv +叶倩文-枉费心思,http://em.21dtv.com/songs/60043404.mkv +乔洋-我非西门,http://em.21dtv.com/songs/60045423.mkv +苏富权-无法雪藏,http://em.21dtv.com/songs/60124402.mkv +罗志祥-舞法舞天,http://em.21dtv.com/songs/60047775.mkv +佚名-微风往事,http://em.21dtv.com/songs/60043757.mkv +刘大瑞-无法挽留,http://em.21dtv.com/songs/60084116.mkv +孙英男-无法挽留,http://em.21dtv.com/songs/60072580.mkv +[Group] +groupName=十六万歌曲MV等 - 56 +陆平-无法挽留,http://em.21dtv.com/songs/60065139.mkv +山风点火-无法忘记,http://em.21dtv.com/songs/60047108.mkv +黑龙-无法忘记,http://em.21dtv.com/songs/60047107.mkv +韦绮姗-我疯我痴,http://em.21dtv.com/songs/60045426.mkv +YOUNG PEACH-无法停止,http://em.21dtv.com/songs/60085953.mkv +罗百吉-无法停止,http://em.21dtv.com/songs/60047105.mkv +李恕权-无法停止(无原唱),http://em.21dtv.com/songs/60047104.mkv +张恒远-无法逃脱,http://em.21dtv.com/songs/60081499.mkv +指南针乐队-无法逃脱,http://em.21dtv.com/songs/60047103.mkv +CELINE DION-water from the moon,http://em.21dtv.com/songs/60006122.mkv +GEORGE MICHAEL-waiting for that day,http://em.21dtv.com/songs/60006083.mkv +郑晓飞-无法逃避,http://em.21dtv.com/songs/60078444.mkv +张震-无法逃避(无原唱),http://em.21dtv.com/songs/60047102.mkv +孙耀威-威风时刻,http://em.21dtv.com/songs/60043746.mkv +韩东君-无法说爱,http://em.21dtv.com/songs/60123359.mkv +吴梵-无非是爱,http://em.21dtv.com/songs/60047117.mkv +伊扬-无法忍耐,http://em.21dtv.com/songs/60047101.mkv +黎沸挥+彭佳慧-枉费情深,http://em.21dtv.com/songs/60089072.mkv +正歌-无法取代,http://em.21dtv.com/songs/60093722.mkv +邓宁-万夫莫敌,http://em.21dtv.com/songs/60043266.mkv +曹芙嘉-晚风恋曲,http://em.21dtv.com/songs/60130384.mkv +双星-五福临门,http://em.21dtv.com/songs/60078475.mkv +林俊杰-无法克制,http://em.21dtv.com/songs/60047100.mkv +苏永康-无法开口,http://em.21dtv.com/songs/60047097.mkv +潘玮柏-无法抗拒,http://em.21dtv.com/songs/60047099.mkv +芭比-无法抗拒,http://em.21dtv.com/songs/60047098.mkv +孔雀哥哥-微风街头,http://em.21dtv.com/songs/60106761.mkv +景岗山-无法拒绝,http://em.21dtv.com/songs/60047096.mkv +孙佳仁-无法回来,http://em.21dtv.com/songs/60047094.mkv +彭佳慧-无法割舍,http://em.21dtv.com/songs/60047093.mkv +孟刚-无法放手,http://em.21dtv.com/songs/60072579.mkv +魏新雨-无法放弃,http://em.21dtv.com/songs/60105532.mkv +何福林-无法代替,http://em.21dtv.com/songs/60107497.mkv +何福林-无法代替,http://em.21dtv.com/songs/60101254.mkv +小贱-无法代替,http://em.21dtv.com/songs/60095291.mkv +陈奕迅-万佛朝宗,http://em.21dtv.com/songs/60043265.mkv +赵雷-无法长大,http://em.21dtv.com/songs/60135781.mkv +KUTLESS-what faith can do,http://em.21dtv.com/songs/60062085.mkv +路勇-我佛慈悲,http://em.21dtv.com/songs/60128438.mkv +THE VERSE-52赫兹,http://em.21dtv.com/songs/60082060.mkv +KLEERUP FEAT ROBYN-with every heart beat,http://em.21dtv.com/songs/60006374.mkv +许廷铿-我的志愿,http://em.21dtv.com/songs/60123171.mkv +佚名-我的志愿,http://em.21dtv.com/songs/60045352.mkv +夏如芝-我的真心(无原唱),http://em.21dtv.com/songs/60045348.mkv +褚乔-我的自私,http://em.21dtv.com/songs/60086922.mkv +韩红-无地自容(最美和声),http://em.21dtv.com/songs/60100634.mkv +沙宝亮+黄绮珊-无地自容,http://em.21dtv.com/songs/60097152.mkv +刘文杰+沈根龙+尹熙水+黄泓彬-无地自容,http://em.21dtv.com/songs/60084114.mkv +孙楠-无地自容,http://em.21dtv.com/songs/60081685.mkv +周晓鸥-无地自容,http://em.21dtv.com/songs/60078443.mkv +黑豹乐队-无地自容,http://em.21dtv.com/songs/60047090.mkv +陈妃平-我等着你,http://em.21dtv.com/songs/60045385.mkv +冯伟杰-我的知己,http://em.21dtv.com/songs/60118370.mkv +胡杏儿-忘掉自己,http://em.21dtv.com/songs/60093060.mkv +熊天平-我都在乎,http://em.21dtv.com/songs/60045392.mkv +刘子琪-我的中国,http://em.21dtv.com/songs/60132235.mkv +于兰-伟大中国,http://em.21dtv.com/songs/60127713.mkv +吕宏伟-我的中国,http://em.21dtv.com/songs/60116629.mkv +杨紫萍-我的祖国,http://em.21dtv.com/songs/60100187.mkv +景仪-我的祖国,http://em.21dtv.com/songs/60089932.mkv +孙楠-我的祖国,http://em.21dtv.com/songs/60086923.mkv +李晖+杨洪基+阎维文-我的祖国(演唱会),http://em.21dtv.com/songs/60084045.mkv +玖月奇迹-我的祖国(演唱会),http://em.21dtv.com/songs/60084044.mkv +刀郎-我的祖国,http://em.21dtv.com/songs/60069949.mkv +谭晶-我的祖国,http://em.21dtv.com/songs/60045368.mkv +彭丽媛-我的祖国,http://em.21dtv.com/songs/60045367.mkv +毛惠茹-我的祖国,http://em.21dtv.com/songs/60045366.mkv +韩红-我的祖国,http://em.21dtv.com/songs/60045365.mkv +郭兰英-我的祖国,http://em.21dtv.com/songs/60045364.mkv +大风-我的祖国,http://em.21dtv.com/songs/60045363.mkv +张燕-我的祖国(演唱会),http://em.21dtv.com/songs/60045362.mkv +祖海-我的祝福,http://em.21dtv.com/songs/60045359.mkv +潘莉-我的祝福,http://em.21dtv.com/songs/60045358.mkv +梁静茹-我都知道,http://em.21dtv.com/songs/60045394.mkv +梁静茹-我都知道(演唱会),http://em.21dtv.com/songs/60045393.mkv +牛欣欣-我的最爱,http://em.21dtv.com/songs/60078237.mkv +高玉玫-我的最爱,http://em.21dtv.com/songs/60065068.mkv +杨千嬅-我的醉爱(演唱会),http://em.21dtv.com/songs/60045371.mkv +张韶涵-我的最爱,http://em.21dtv.com/songs/60045370.mkv +邓丽欣+方力申-我的最爱,http://em.21dtv.com/songs/60045369.mkv +谢文杰-无动于衷,http://em.21dtv.com/songs/60124490.mkv +高林生-我的样子,http://em.21dtv.com/songs/60078232.mkv +任月丽-我的羽翼,http://em.21dtv.com/songs/60078234.mkv +西单女孩-我的羽翼,http://em.21dtv.com/songs/60072533.mkv +吴俊宏-无敌英雄,http://em.21dtv.com/songs/60101292.mkv +佚名-what do you want,http://em.21dtv.com/songs/60074111.mkv +黄克林-我的愿望(无原唱),http://em.21dtv.com/songs/60045343.mkv +马婕-我的源头,http://em.21dtv.com/songs/60045342.mkv +陈惠婷-我的勇气,http://em.21dtv.com/songs/60135921.mkv +罗百吉-我答应你,http://em.21dtv.com/songs/60078185.mkv +动力火车-我答应你,http://em.21dtv.com/songs/60044962.mkv +王传越-我的月亮,http://em.21dtv.com/songs/60112844.mkv +吴哲铭-我的月亮,http://em.21dtv.com/songs/60112570.mkv +张韶涵-我的眼泪,http://em.21dtv.com/songs/60098373.mkv +吴哲铭-我的月亮,http://em.21dtv.com/songs/60078235.mkv +肖燕-我的月亮,http://em.21dtv.com/songs/60045347.mkv +曾园园-我的月亮,http://em.21dtv.com/songs/60045346.mkv +蔡依林-我的依赖,http://em.21dtv.com/songs/60045335.mkv +THE MOFFATTS-who do you love(演唱会),http://em.21dtv.com/songs/60006312.mkv +ALAN-我的月光,http://em.21dtv.com/songs/60045345.mkv +ALAN-我的月光(演唱会),http://em.21dtv.com/songs/60045344.mkv +佚名-where do you go(无原唱),http://em.21dtv.com/songs/60006288.mkv +吴克群-where did you go,http://em.21dtv.com/songs/60006283.mkv +邓紫棋-where did you go,http://em.21dtv.com/songs/60006282.mkv +金波-我的营房(演唱会),http://em.21dtv.com/songs/60045338.mkv +动力火车-我都要等,http://em.21dtv.com/songs/60090747.mkv +江一燕-我的亚当,http://em.21dtv.com/songs/60045318.mkv +萧亚轩-吻第一次,http://em.21dtv.com/songs/60091980.mkv +张赫宣-我的选择,http://em.21dtv.com/songs/60102239.mkv +阿吉仔-我的心中,http://em.21dtv.com/songs/60045306.mkv +周柏豪-我的宣言,http://em.21dtv.com/songs/60080862.mkv +村根-我的心愿,http://em.21dtv.com/songs/60045302.mkv +慕容晓晓-我的香味,http://em.21dtv.com/songs/60086918.mkv +晓依-我的向往,http://em.21dtv.com/songs/60078222.mkv +澎恰恰-我的希望,http://em.21dtv.com/songs/60045254.mkv +阿吉仔-我的心声(无原唱),http://em.21dtv.com/songs/60045288.mkv +李茂山-我的心情,http://em.21dtv.com/songs/60045283.mkv +姬长乐-我的新娘,http://em.21dtv.com/songs/60104030.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-舞动新年,http://em.21dtv.com/songs/60066445.mkv +佚名-我的小妹,http://em.21dtv.com/songs/60045257.mkv +时宏维-我的星空,http://em.21dtv.com/songs/60114567.mkv +洪立-我的星空,http://em.21dtv.com/songs/60045309.mkv +杨晓峰-我的小姐,http://em.21dtv.com/songs/60120657.mkv +程大-我的小馆,http://em.21dtv.com/songs/60129457.mkv +王洪迪-我的相公,http://em.21dtv.com/songs/60121926.mkv +汪成龙-伟大新钢,http://em.21dtv.com/songs/60113784.mkv +牛会龙-我的兄弟,http://em.21dtv.com/songs/60122979.mkv +汤潮-我的兄弟,http://em.21dtv.com/songs/60104272.mkv +林海峰-玩得心的,http://em.21dtv.com/songs/60064994.mkv +马旭成-我的兄弟,http://em.21dtv.com/songs/60045311.mkv +北方狼-我的乡愁,http://em.21dtv.com/songs/60118400.mkv +乌兰托娅-我的西藏,http://em.21dtv.com/songs/60112488.mkv +朱虹-我多想唱,http://em.21dtv.com/songs/60045415.mkv +斯日古楞-我的兴安,http://em.21dtv.com/songs/60119602.mkv +王识贤-无代无志,http://em.21dtv.com/songs/60047081.mkv +白洋-我的唯一,http://em.21dtv.com/songs/60105275.mkv +詹瑞文-舞大舞细,http://em.21dtv.com/songs/60109619.mkv +佚名-我的娃娃,http://em.21dtv.com/songs/60045239.mkv +曹骏-我的舞台,http://em.21dtv.com/songs/60061679.mkv +张杰-我的舞台,http://em.21dtv.com/songs/60045253.mkv +全国快男12强-我的舞台,http://em.21dtv.com/songs/60045252.mkv +Q熊妹妹-我的外婆,http://em.21dtv.com/songs/60065065.mkv +陈艺鹏-武当无忌,http://em.21dtv.com/songs/60097303.mkv +吴建豪-我的王国,http://em.21dtv.com/songs/60045244.mkv +李宇春-我的王国,http://em.21dtv.com/songs/60045243.mkv +李宇春-我的王国(演唱会),http://em.21dtv.com/songs/60045242.mkv +Fuying+Sam-吻的温度,http://em.21dtv.com/songs/60106537.mkv +李宇春-我的王朝,http://em.21dtv.com/songs/60045241.mkv +罗百吉-我的五百,http://em.21dtv.com/songs/60045251.mkv +邓紫棋-where did u go(演唱会),http://em.21dtv.com/songs/60063799.mkv +张国强-我的团长,http://em.21dtv.com/songs/60045238.mkv +舒浩炀+向小康-我的太阳,http://em.21dtv.com/songs/60118861.mkv +玖月奇迹-我的太阳(演唱会),http://em.21dtv.com/songs/60084036.mkv +杨博宇-我的太阳,http://em.21dtv.com/songs/60066402.mkv +佚名-我的太阳,http://em.21dtv.com/songs/60045227.mkv +群星-我的太阳(演唱会),http://em.21dtv.com/songs/60045226.mkv +逍遥香香-我的同学,http://em.21dtv.com/songs/60108909.mkv +红蔷薇-我的天堂,http://em.21dtv.com/songs/60094245.mkv +胡东清-我的天堂,http://em.21dtv.com/songs/60061678.mkv +达达乐队-我的天使,http://em.21dtv.com/songs/60045232.mkv +达达乐队-我的天使(演唱会),http://em.21dtv.com/songs/60045231.mkv +杨烁-我的童年,http://em.21dtv.com/songs/60094171.mkv +伦桑-我的天空,http://em.21dtv.com/songs/60134882.mkv +南征北战-我的天坑,http://em.21dtv.com/songs/60123712.mkv +贝贝+修儿-我的天空,http://em.21dtv.com/songs/60115412.mkv +贝贝+修儿-我的天空,http://em.21dtv.com/songs/60114085.mkv +南征北战-我的天空,http://em.21dtv.com/songs/60103746.mkv +丁丁-我的声音,http://em.21dtv.com/songs/60080127.mkv +张俊-我的沙田,http://em.21dtv.com/songs/60108480.mkv +张俊-我的沙田,http://em.21dtv.com/songs/60102197.mkv +GOGO+MEME-我的生日,http://em.21dtv.com/songs/60045208.mkv +周笔畅-我的神奇,http://em.21dtv.com/songs/60063457.mkv +潘越云-我的思念,http://em.21dtv.com/songs/60107896.mkv +姜育恒-我的思念,http://em.21dtv.com/songs/60062515.mkv +谢雨欣-我的思念,http://em.21dtv.com/songs/60045221.mkv +蔡琴-我的思念,http://em.21dtv.com/songs/60045220.mkv +曹新花-我的生命,http://em.21dtv.com/songs/60120584.mkv +锦绣二重唱-我的super life,http://em.21dtv.com/songs/60044988.mkv +黄思祺-我的世界,http://em.21dtv.com/songs/60130932.mkv +陈姿彤-我的世界,http://em.21dtv.com/songs/60130836.mkv +孙辉-汪的世界,http://em.21dtv.com/songs/60127904.mkv +蓝旭-我的世界,http://em.21dtv.com/songs/60123129.mkv +苏羽-我的世界,http://em.21dtv.com/songs/60108851.mkv +吕雯-我的世界,http://em.21dtv.com/songs/60045213.mkv +MC HOTDOG-我的生活,http://em.21dtv.com/songs/60045206.mkv +黄智裕-我的书法,http://em.21dtv.com/songs/60112407.mkv +牛骏峰+王艺霖-我的时代,http://em.21dtv.com/songs/60124240.mkv +派伟俊-我的时代,http://em.21dtv.com/songs/60117894.mkv +派伟俊-我的时代,http://em.21dtv.com/songs/60117007.mkv +MC HOTDOG+张震岳-我的时代,http://em.21dtv.com/songs/60096152.mkv +春雷-我的圣城,http://em.21dtv.com/songs/60121728.mkv +郝萌-我的陕北,http://em.21dtv.com/songs/60121008.mkv +许冠杰-无敌是爱,http://em.21dtv.com/songs/60093139.mkv +佚名-无敌是爱,http://em.21dtv.com/songs/60047085.mkv +七郎+邱芸子-我的日子,http://em.21dtv.com/songs/60045196.mkv +葛仲珊-我的饶舌,http://em.21dtv.com/songs/60108867.mkv +葛仲珊-我的饶舌,http://em.21dtv.com/songs/60078217.mkv +孙嫣然-我的人生,http://em.21dtv.com/songs/60045194.mkv +Monsta X-武断入侵,http://em.21dtv.com/songs/60116463.mkv +林忆莲-舞动倾斜(演唱会),http://em.21dtv.com/songs/60047773.mkv +列子-我的秋天,http://em.21dtv.com/songs/60120352.mkv +许巍-我的秋天,http://em.21dtv.com/songs/60045190.mkv +许巍-我的秋天(演唱会),http://em.21dtv.com/songs/60045189.mkv +泳儿-我的情书,http://em.21dtv.com/songs/60121861.mkv +晓月-望断秋水,http://em.21dtv.com/songs/60078057.mkv +西域胡杨-我的琴声,http://em.21dtv.com/songs/60039922.mkv +黎明-我的情人,http://em.21dtv.com/songs/60045187.mkv +阿影-我的亲娘,http://em.21dtv.com/songs/60130824.mkv +王岗岗-舞动起来,http://em.21dtv.com/songs/60125917.mkv +陈翔-舞动奇迹,http://em.21dtv.com/songs/60078483.mkv +张津涤-我的情歌,http://em.21dtv.com/songs/60135214.mkv +周华健-我的情歌,http://em.21dtv.com/songs/60045186.mkv +王力宏-我的情歌,http://em.21dtv.com/songs/60045185.mkv +SQUARE-伟大情歌,http://em.21dtv.com/songs/60044204.mkv +张雨生-我的期待,http://em.21dtv.com/songs/60091159.mkv +陈百潭-我的青春,http://em.21dtv.com/songs/60096016.mkv +海鸣威-舞动全城,http://em.21dtv.com/songs/60047774.mkv +庞龙-我的全部,http://em.21dtv.com/songs/60045193.mkv +TWINS-我懂去爱,http://em.21dtv.com/songs/60092214.mkv +黎明-我的亲爱,http://em.21dtv.com/songs/60045180.mkv +黎明-我的亲爱(演唱会),http://em.21dtv.com/songs/60045179.mkv +袁惟仁-我的朋友,http://em.21dtv.com/songs/60105364.mkv +吴光明-我的朋友,http://em.21dtv.com/songs/60085889.mkv +刘德华-我的胖侣,http://em.21dtv.com/songs/60045176.mkv +苏永康-我的偶像,http://em.21dtv.com/songs/60101488.mkv +钟立帅-我的女王,http://em.21dtv.com/songs/60126327.mkv +高羽-我的女神,http://em.21dtv.com/songs/60121164.mkv +小贱-我的女人,http://em.21dtv.com/songs/60111831.mkv +小老鹰乐团-我的男人,http://em.21dtv.com/songs/60107685.mkv +郭振霞-我的娘亲,http://em.21dtv.com/songs/60094723.mkv +孙维良+哩哩妹组合-我等你来(演唱会),http://em.21dtv.com/songs/60067562.mkv +石咏莉-我代你哭,http://em.21dtv.com/songs/60078186.mkv +郑中基-我代你哭,http://em.21dtv.com/songs/60044964.mkv +梁汉文-我代你哭(演唱会),http://em.21dtv.com/songs/60044963.mkv +赵姝-我的男孩,http://em.21dtv.com/songs/60101175.mkv +徐千雅-我的南海,http://em.21dtv.com/songs/60065062.mkv +谭晶-我的米脂,http://em.21dtv.com/songs/60129619.mkv +伍佰-我的名字,http://em.21dtv.com/songs/60045166.mkv +张靓颖-我的模样,http://em.21dtv.com/songs/60135253.mkv +梁汉文-我的命运,http://em.21dtv.com/songs/60092903.mkv +张靓颖-我的模样,http://em.21dtv.com/songs/60063380.mkv +庄红虎-我的梦想,http://em.21dtv.com/songs/60123896.mkv +苏宇舟-我的梦想,http://em.21dtv.com/songs/60112911.mkv +谭鹏飞-我的明天,http://em.21dtv.com/songs/60066400.mkv +陈升+赵传-我的明天,http://em.21dtv.com/songs/60045167.mkv +黄品源-我的目屎,http://em.21dtv.com/songs/60045169.mkv +刘向圆-我的母亲,http://em.21dtv.com/songs/60068761.mkv +降央卓玛-我的母亲,http://em.21dtv.com/songs/60068760.mkv +刘建军-我的母亲,http://em.21dtv.com/songs/60061677.mkv +德德玛-我的母亲,http://em.21dtv.com/songs/60045168.mkv +邓紫棋-我的秘密,http://em.21dtv.com/songs/60095102.mkv +张祥洪-我的妹妹,http://em.21dtv.com/songs/60084031.mkv +邓紫棋-我的秘密(演唱会),http://em.21dtv.com/songs/60065060.mkv +羽泉-我的妹妹,http://em.21dtv.com/songs/60045156.mkv +李娜-我的妈妈,http://em.21dtv.com/songs/60045153.mkv +林一峰-维多利亚,http://em.21dtv.com/songs/60044194.mkv +关楚耀-伟大领袖,http://em.21dtv.com/songs/60109995.mkv +洪荣宏-我的理想(无原唱),http://em.21dtv.com/songs/60045148.mkv +陆毅-我的礼物,http://em.21dtv.com/songs/60126357.mkv +李圣杰-我懂了她,http://em.21dtv.com/songs/60045390.mkv +魏宗武-我的老山,http://em.21dtv.com/songs/60110714.mkv +萧正楠-我的历史,http://em.21dtv.com/songs/60084027.mkv +甘萍-我的恋曲,http://em.21dtv.com/songs/60091756.mkv +张景擎-我的老婆,http://em.21dtv.com/songs/60127983.mkv +邵振锋-我的老妈,http://em.21dtv.com/songs/60113007.mkv +佚名-我的懒猫,http://em.21dtv.com/songs/60045141.mkv +程楚煜-伟大力量,http://em.21dtv.com/songs/60100353.mkv +云朵-我的楼兰,http://em.21dtv.com/songs/60078211.mkv +张宇-我的力量,http://em.21dtv.com/songs/60045149.mkv +李琼-武当恋歌,http://em.21dtv.com/songs/60047747.mkv +羽田-我的狂野,http://em.21dtv.com/songs/60118850.mkv +凌志辉-舞动快乐,http://em.21dtv.com/songs/60110011.mkv +张心童-舞动快乐,http://em.21dtv.com/songs/60047772.mkv +锦绣二重唱-我的快乐,http://em.21dtv.com/songs/60045133.mkv +刘爱媛-我的节奏,http://em.21dtv.com/songs/60123687.mkv +乌兰托娅-我的九寨,http://em.21dtv.com/songs/60084025.mkv +泽尔丹-我的九寨,http://em.21dtv.com/songs/60045127.mkv +冰雪姐妹-我的家园,http://em.21dtv.com/songs/60071239.mkv +金波-舞动军营(演唱会),http://em.21dtv.com/songs/60062524.mkv +佚名-我的家乡,http://em.21dtv.com/songs/60045112.mkv +康康-我的家庭,http://em.21dtv.com/songs/60045111.mkv +姜育恒-武当寄情,http://em.21dtv.com/songs/60115088.mkv +男才女貌-我的绝配,http://em.21dtv.com/songs/60045129.mkv +岳太阳-我的季节,http://em.21dtv.com/songs/60123862.mkv +A Lin-我都记得,http://em.21dtv.com/songs/60108204.mkv +孙淑媚-我的坚持,http://em.21dtv.com/songs/60069942.mkv +东与政-我的cd机(演唱会),http://em.21dtv.com/songs/60044984.mkv +王莹-我的建北,http://em.21dtv.com/songs/60127207.mkv +刘思慎-我的骄傲,http://em.21dtv.com/songs/60120360.mkv +陈芷羚-我的骄傲(演唱会),http://em.21dtv.com/songs/60084024.mkv +杨培安-我的骄傲,http://em.21dtv.com/songs/60045126.mkv +容祖儿-我的骄傲,http://em.21dtv.com/songs/60045125.mkv +郑伊健-我的骄傲(演唱会),http://em.21dtv.com/songs/60045124.mkv +张信哲-我的骄傲(演唱会),http://em.21dtv.com/songs/60045123.mkv +容祖儿-我的骄傲(演唱会),http://em.21dtv.com/songs/60045122.mkv +李克勤+容祖儿-我的骄傲(演唱会),http://em.21dtv.com/songs/60045121.mkv +黄耀明+容祖儿-我的骄傲(演唱会),http://em.21dtv.com/songs/60045120.mkv +古巨基-我的骄傲(演唱会),http://em.21dtv.com/songs/60045119.mkv +许慧欣-what do i do,http://em.21dtv.com/songs/60006190.mkv +ANDY WILLIAMS-where do i begin,http://em.21dtv.com/songs/60006286.mkv +施易男-我的回忆,http://em.21dtv.com/songs/60131471.mkv +罗志祥-我的皇后(HD),http://em.21dtv.com/songs/10012805.mkv +罗志祥-我的皇后,http://em.21dtv.com/songs/60082021.mkv +佚名-我的花儿,http://em.21dtv.com/songs/60045100.mkv +阎维文-我的花儿,http://em.21dtv.com/songs/60045099.mkv +李双江-我的花儿,http://em.21dtv.com/songs/60045098.mkv +谭咏麟-玩的格言(无原唱),http://em.21dtv.com/songs/60043161.mkv +余天-我的故乡,http://em.21dtv.com/songs/60134887.mkv +王朝国-我的故乡,http://em.21dtv.com/songs/60102534.mkv +陈淑芳-我的故乡,http://em.21dtv.com/songs/60045082.mkv +郭欢-我的港湾,http://em.21dtv.com/songs/60067556.mkv +朴秀珍-我的故事,http://em.21dtv.com/songs/60105966.mkv +王杰-我的故事,http://em.21dtv.com/songs/60045081.mkv +陈百强-我的故事,http://em.21dtv.com/songs/60045080.mkv +林一峰-我的故事(演唱会),http://em.21dtv.com/songs/60045079.mkv +基地小虎-忘掉过去,http://em.21dtv.com/songs/60099899.mkv +郑秀文-忘掉过去,http://em.21dtv.com/songs/60093307.mkv +黎明-我的感觉,http://em.21dtv.com/songs/60045068.mkv +黄乙玲-我的感觉,http://em.21dtv.com/songs/60045067.mkv +胡派-我的乖乖,http://em.21dtv.com/songs/60101483.mkv +李宇春-我的功夫(演唱会),http://em.21dtv.com/songs/60045077.mkv +汪苏泷-雾都孤儿,http://em.21dtv.com/songs/60103413.mkv +动力火车-我的改变,http://em.21dtv.com/songs/60045066.mkv +百灵-伟大复兴,http://em.21dtv.com/songs/60120819.mkv +王玉玺-我的方向,http://em.21dtv.com/songs/60120771.mkv +百灵-伟大复兴,http://em.21dtv.com/songs/60115321.mkv +梁咏琪-我的方式,http://em.21dtv.com/songs/60045062.mkv +汤非-我的父亲,http://em.21dtv.com/songs/60103412.mkv +何人-我的父亲,http://em.21dtv.com/songs/60099747.mkv +廖昌永-我的父亲,http://em.21dtv.com/songs/60078201.mkv +汤飞-我的父亲,http://em.21dtv.com/songs/60045063.mkv +六哲-我的烦恼,http://em.21dtv.com/songs/60072528.mkv +崔子格-我的风格,http://em.21dtv.com/songs/60111034.mkv +唯丞-我的儿子,http://em.21dtv.com/songs/60120423.mkv +牛群+冯巩-我的儿子,http://em.21dtv.com/songs/60090076.mkv +曹轩宾-我等的人,http://em.21dtv.com/songs/60102298.mkv +刘若英-我的敌人,http://em.21dtv.com/songs/60099812.mkv +林玛黛-我的地盘,http://em.21dtv.com/songs/60117848.mkv +周杰伦-我的地盘,http://em.21dtv.com/songs/60045056.mkv +张伟东-我的爹娘,http://em.21dtv.com/songs/60065057.mkv +拉拉宝宝-我的电脑,http://em.21dtv.com/songs/60045057.mkv +郭美美-我的答铃,http://em.21dtv.com/songs/60045054.mkv +小豪-我的杜鹃,http://em.21dtv.com/songs/60115878.mkv +林海峰-我哋大家,http://em.21dtv.com/songs/60045386.mkv +潘玮柏-我的电话,http://em.21dtv.com/songs/60065056.mkv +白安-我的地方,http://em.21dtv.com/songs/60107088.mkv +女朋友-我都懂得,http://em.21dtv.com/songs/60045391.mkv +古天乐-吻得到爱,http://em.21dtv.com/songs/60044414.mkv +凤凰传奇-舞动草原,http://em.21dtv.com/songs/60090676.mkv +玛希-我的草原,http://em.21dtv.com/songs/60045044.mkv +杭娇-我的草原,http://em.21dtv.com/songs/60045043.mkv +李铮-我的传说,http://em.21dtv.com/songs/60084020.mkv +TWINS-无敌超人,http://em.21dtv.com/songs/60047084.mkv +金莎-我的超人,http://em.21dtv.com/songs/60045045.mkv +徐誉滕-我的传奇,http://em.21dtv.com/songs/60094510.mkv +于台烟-我的沉默(无原唱),http://em.21dtv.com/songs/60045046.mkv +热娜+纳穆罕-我的初恋,http://em.21dtv.com/songs/60129367.mkv +李扬光-我的初恋,http://em.21dtv.com/songs/60120631.mkv +Berry Good-我的初恋,http://em.21dtv.com/songs/60115569.mkv +钱刚-我的初恋,http://em.21dtv.com/songs/60071237.mkv +成林江措-我的初恋,http://em.21dtv.com/songs/60069934.mkv +郑进一+贺一航-我的初恋,http://em.21dtv.com/songs/60045050.mkv +崔天琪-我的翅膀,http://em.21dtv.com/songs/60135164.mkv +钟辰乐-我的翅膀,http://em.21dtv.com/songs/60084019.mkv +李玟-我的翅膀,http://em.21dtv.com/songs/60045049.mkv +何洁-我的翅膀(演唱会),http://em.21dtv.com/songs/60045048.mkv +杨宁-我的爸妈,http://em.21dtv.com/songs/60125737.mkv +5566-我的背后,http://em.21dtv.com/songs/60045042.mkv +谢金晶-我的爸爸,http://em.21dtv.com/songs/60117237.mkv +王亚东-我的宝贝,http://em.21dtv.com/songs/60110377.mkv +许嵩-我的宝贝,http://em.21dtv.com/songs/60092053.mkv +范文夺-我的宝贝,http://em.21dtv.com/songs/60078195.mkv +轲然-我的宝贝,http://em.21dtv.com/songs/60061675.mkv +陈奕迅-我的背包,http://em.21dtv.com/songs/60045041.mkv +巨姗姗-我的宝贝,http://em.21dtv.com/songs/60045039.mkv +吕雯-我的爸爸,http://em.21dtv.com/songs/60045035.mkv +黄凯芹-我的爸爸,http://em.21dtv.com/songs/60045034.mkv +周斌华-我的爱人,http://em.21dtv.com/songs/60097277.mkv +周华健-我的爱人,http://em.21dtv.com/songs/60045019.mkv +郭富城-我的爱人,http://em.21dtv.com/songs/60045018.mkv +张洪量-我的爱情,http://em.21dtv.com/songs/60105855.mkv +耀乐团-我的爱呢,http://em.21dtv.com/songs/60131735.mkv +邱乃华-我的阿母,http://em.21dtv.com/songs/60044991.mkv +杨采妮-忘掉爱恋,http://em.21dtv.com/songs/60092847.mkv +童立安-我存在过,http://em.21dtv.com/songs/60113928.mkv +零点乐队-我曾以为,http://em.21dtv.com/songs/60105507.mkv +陈晓东-无仇无怨,http://em.21dtv.com/songs/60047071.mkv +李逸朗+蒋雅文-我蠢我认,http://em.21dtv.com/songs/60044955.mkv +刘冰-未曾忘记,http://em.21dtv.com/songs/60106631.mkv +八三夭-无诚勿爱,http://em.21dtv.com/songs/60108319.mkv +八三夭-无诚勿爱,http://em.21dtv.com/songs/60106614.mkv +阿烁-万堺尘涛,http://em.21dtv.com/songs/60123277.mkv +阿烁-万堺尘涛,http://em.21dtv.com/songs/60121052.mkv +宝庆-望穿秋水,http://em.21dtv.com/songs/60126793.mkv +陈瑞-望穿秋水,http://em.21dtv.com/songs/60108985.mkv +谢采妘-望穿秋水,http://em.21dtv.com/songs/60043657.mkv +张伟文-望穿秋水(演唱会),http://em.21dtv.com/songs/60043656.mkv +候皓中-忘穿秋裤(HD),http://em.21dtv.com/songs/10012706.mkv +侯皓中-忘穿秋裤,http://em.21dtv.com/songs/60097295.mkv +于洋-文昌情怀,http://em.21dtv.com/songs/60118309.mkv +齐硕-无处可寻,http://em.21dtv.com/songs/60133141.mkv +SNH48-无处可逃,http://em.21dtv.com/songs/60109878.mkv +许志安-无处可逃,http://em.21dtv.com/songs/60090210.mkv +零点乐队-无处可逃(演唱会),http://em.21dtv.com/songs/60047078.mkv +王宝-无处可去,http://em.21dtv.com/songs/60081176.mkv +胡兵-无处可躲,http://em.21dtv.com/songs/60047077.mkv +魏晨-温存记忆,http://em.21dtv.com/songs/60061664.mkv +潘玮柏-what can i do,http://em.21dtv.com/songs/60070416.mkv +南拳妈妈-what can i do,http://em.21dtv.com/songs/60006189.mkv +THE CORRS-what can i do,http://em.21dtv.com/songs/60006188.mkv +沈波-温存回忆,http://em.21dtv.com/songs/60120695.mkv +姜涛-忘川河畔,http://em.21dtv.com/songs/60062513.mkv +张旭-五彩淮南,http://em.21dtv.com/songs/60106837.mkv +郑源-未曾好过,http://em.21dtv.com/songs/60044228.mkv +盛希-文成公主,http://em.21dtv.com/songs/60117103.mkv +春天-文成公主,http://em.21dtv.com/songs/60068744.mkv +张涛-文成公主(演唱会),http://em.21dtv.com/songs/60067535.mkv +S.P.Y-舞池碟影,http://em.21dtv.com/songs/60061729.mkv +李玟-无处躲雨(演唱会),http://em.21dtv.com/songs/60047076.mkv +关正杰+陈百强-未唱的歌,http://em.21dtv.com/songs/60044231.mkv +高露-无处躲藏,http://em.21dtv.com/songs/60062379.mkv +郑伊健-无处不在,http://em.21dtv.com/songs/60047075.mkv +郑伊健-无处不在(演唱会),http://em.21dtv.com/songs/60047074.mkv +孙楠-无处不在(演唱会),http://em.21dtv.com/songs/60047073.mkv +曲婉婷+吉克隽逸+邓紫琪+丁当-无处不乐,http://em.21dtv.com/songs/60078441.mkv +佚名-五彩缤纷,http://em.21dtv.com/songs/60047629.mkv +白若溪-无处安放,http://em.21dtv.com/songs/60124313.mkv +汪峰-无处安放,http://em.21dtv.com/songs/60116103.mkv +梁心颐-我不再怕,http://em.21dtv.com/songs/60044920.mkv +陈娟儿-我不在乎,http://em.21dtv.com/songs/60100578.mkv +张智霖-我不在乎(演唱会),http://em.21dtv.com/songs/60065051.mkv +潘美辰-我不在乎,http://em.21dtv.com/songs/60044927.mkv +安志杰+曾恺玹-我不在乎,http://em.21dtv.com/songs/60044926.mkv +陶晶莹-我不祝福,http://em.21dtv.com/songs/60094336.mkv +唐子晴-我不知道,http://em.21dtv.com/songs/60110093.mkv +小臭臭-我不知道,http://em.21dtv.com/songs/60098283.mkv +肖飞-我不知道,http://em.21dtv.com/songs/60078183.mkv +李佳璐-我不知道,http://em.21dtv.com/songs/60067548.mkv +唐笑-我不知道,http://em.21dtv.com/songs/60044932.mkv +零点乐队-我不知道,http://em.21dtv.com/songs/60044931.mkv +动力火车-我不知道,http://em.21dtv.com/songs/60044930.mkv +邱泽-微不足道,http://em.21dtv.com/songs/60043754.mkv +Hi Suhyun+Bobby-我不一样,http://em.21dtv.com/songs/60107409.mkv +张学友-我不愿意,http://em.21dtv.com/songs/60044915.mkv +陈慧琳-我不以为,http://em.21dtv.com/songs/60044911.mkv +陈慧琳-我不以为(演唱会),http://em.21dtv.com/songs/60044910.mkv +容祖儿-我不要你,http://em.21dtv.com/songs/60092523.mkv +芬华-我不要啦,http://em.21dtv.com/songs/60135665.mkv +F.CUZ-wanna be your love,http://em.21dtv.com/songs/60006114.mkv +李克勤+MR-未卜先知(HD演唱会),http://em.21dtv.com/songs/60044227.mkv +薛凯琪-我不需要,http://em.21dtv.com/songs/60088611.mkv +邱振哲-我不需要,http://em.21dtv.com/songs/60084908.mkv +叶佩雯-我不相信,http://em.21dtv.com/songs/60044872.mkv +刘耔彤-我不相信,http://em.21dtv.com/songs/60044871.mkv +郭品超-我不像我,http://em.21dtv.com/songs/60044896.mkv +赖淞凤-我不像他,http://em.21dtv.com/songs/60105390.mkv +樊凡-我不想逃(演唱会),http://em.21dtv.com/songs/60044885.mkv +庄前-我不想说,http://em.21dtv.com/songs/60111043.mkv +卓依婷-我不想说,http://em.21dtv.com/songs/60044880.mkv +杨钰莹-我不想说,http://em.21dtv.com/songs/60044879.mkv +刘若英-我不想念,http://em.21dtv.com/songs/60044878.mkv +杰子-我不想哭,http://em.21dtv.com/songs/60135419.mkv +韩晶-我不想哭,http://em.21dtv.com/songs/60121124.mkv +杨烨-我不想哭,http://em.21dtv.com/songs/60113684.mkv +王翔-我不想哭,http://em.21dtv.com/songs/60065047.mkv +孙慧莹-我不想哭,http://em.21dtv.com/songs/60044876.mkv +镜喜-我不习惯,http://em.21dtv.com/songs/60112329.mkv +刘畊宏-我不完美,http://em.21dtv.com/songs/60044869.mkv +郑希怡-舞吧舞吧,http://em.21dtv.com/songs/60047763.mkv +郑希怡-舞吧!舞吧!,http://em.21dtv.com/songs/60047761.mkv +江蕙-无边无岸,http://em.21dtv.com/songs/60047062.mkv +王杰-我比他好,http://em.21dtv.com/songs/60044733.mkv +丘与乐乐团-我不太懂,http://em.21dtv.com/songs/60123586.mkv +陈伟霆+泳儿-我不是我,http://em.21dtv.com/songs/60078178.mkv +林正-我不是他,http://em.21dtv.com/songs/60085875.mkv +梁一贞-我不是他,http://em.21dtv.com/songs/60078177.mkv +陈柔希-我不是他,http://em.21dtv.com/songs/60078176.mkv +卢春如-我不是她,http://em.21dtv.com/songs/60044852.mkv +邓紫棋-wanna be startin somethin,http://em.21dtv.com/songs/60063786.mkv +黎明-我不是谁,http://em.21dtv.com/songs/60044849.mkv +杨朗朗-我不是狼,http://em.21dtv.com/songs/60103386.mkv +温兆伦-我本善良,http://em.21dtv.com/songs/60044723.mkv +佚名-我不认输,http://em.21dtv.com/songs/60044809.mkv +郭富城-我不认输,http://em.21dtv.com/songs/60044808.mkv +思涵CSHA-我不怕痛,http://em.21dtv.com/songs/60044805.mkv +孙耀威-我不怕哭,http://em.21dtv.com/songs/60044804.mkv +王志文-我不能输,http://em.21dtv.com/songs/60085871.mkv +莫艳琳-我不能哭,http://em.21dtv.com/songs/60067545.mkv +品冠-我不难过(我是歌手第二期),http://em.21dtv.com/songs/60096227.mkv +曾静玟+胡维纳-我不难过,http://em.21dtv.com/songs/60094915.mkv +吴克群-我不难过,http://em.21dtv.com/songs/60082013.mkv +孙燕姿-我不难过,http://em.21dtv.com/songs/60044793.mkv +路嘉欣-我不能飞,http://em.21dtv.com/songs/60044796.mkv +莫文蔚-我不耐烦,http://em.21dtv.com/songs/60044792.mkv +BETTE MIDLER-wind beneath my wings,http://em.21dtv.com/songs/60006352.mkv +张宇-wind beneath my wings(演唱会),http://em.21dtv.com/songs/60006351.mkv +邵远-我不勉强,http://em.21dtv.com/songs/60112296.mkv +严淑明-吻别my love,http://em.21dtv.com/songs/60044410.mkv +张学友-我不明白,http://em.21dtv.com/songs/60044791.mkv +邓丽君-舞伴泪影(演唱会),http://em.21dtv.com/songs/60047767.mkv +任妙音-忘不了你,http://em.21dtv.com/songs/60121356.mkv +成天龙-忘不了你,http://em.21dtv.com/songs/60110229.mkv +杨梓-忘不了你,http://em.21dtv.com/songs/60106971.mkv +王莹-忘不了你,http://em.21dtv.com/songs/60098649.mkv +黑妹-忘不了你(演唱会),http://em.21dtv.com/songs/60078043.mkv +谭咏麟-忘不了您(演唱会),http://em.21dtv.com/songs/60043511.mkv +谭咏麟+李克勤-忘不了您(演唱会),http://em.21dtv.com/songs/60043510.mkv +孙楠-忘不了你,http://em.21dtv.com/songs/60043507.mkv +刘嘉亮-忘不了你,http://em.21dtv.com/songs/60043506.mkv +林子良-忘不了你,http://em.21dtv.com/songs/60043505.mkv +谭咏麟-忘不了你(演唱会),http://em.21dtv.com/songs/60043503.mkv +A Lin+戴爱玲-我不离开,http://em.21dtv.com/songs/60113121.mkv +戴爱玲+A Lin-我不离开,http://em.21dtv.com/songs/60112711.mkv +林林-忘不了开,http://em.21dtv.com/songs/60043502.mkv +张婧-我不了解,http://em.21dtv.com/songs/60044789.mkv +陈景亮-我不快乐,http://em.21dtv.com/songs/60110641.mkv +王唯侨-我不快乐,http://em.21dtv.com/songs/60099398.mkv +钟嘉欣-我不快乐,http://em.21dtv.com/songs/60088811.mkv +梁静茹-我不快乐,http://em.21dtv.com/songs/60044788.mkv +九两银-我不快乐,http://em.21dtv.com/songs/60044787.mkv +时效乐队-渭滨居士,http://em.21dtv.com/songs/60130376.mkv +高慧君-我不觉得,http://em.21dtv.com/songs/60044782.mkv +梁静茹-我不害怕,http://em.21dtv.com/songs/60044764.mkv +一飞-我不恨你,http://em.21dtv.com/songs/60080815.mkv +郑源-我不恨你,http://em.21dtv.com/songs/60044768.mkv +卢焕刚+李觅恩-我不好吗,http://em.21dtv.com/songs/60127793.mkv +徐小凤-我不会mind(演唱会),http://em.21dtv.com/songs/60044771.mkv +吕安娜-我不会哭,http://em.21dtv.com/songs/60107567.mkv +郭婷筠-我不后悔,http://em.21dtv.com/songs/60124573.mkv +林志颖-我不后悔,http://em.21dtv.com/songs/60044770.mkv +郑源-我不后悔(演唱会),http://em.21dtv.com/songs/60044769.mkv +张玉华-我不会飞,http://em.21dtv.com/songs/60044780.mkv +王识贤-尾班火车,http://em.21dtv.com/songs/60044210.mkv +萧敬腾-我不会爱,http://em.21dtv.com/songs/60044772.mkv +陈奕迅-我不好爱(HD演唱会),http://em.21dtv.com/songs/60044766.mkv +雨宗林-我不甘心,http://em.21dtv.com/songs/60131968.mkv +齐霖-我不甘心,http://em.21dtv.com/songs/60128648.mkv +雨宗林-我不甘心,http://em.21dtv.com/songs/60128568.mkv +姜洋-我不怪你,http://em.21dtv.com/songs/60044759.mkv +国平-我不服命,http://em.21dtv.com/songs/60128934.mkv +TWINS-我不赌钱,http://em.21dtv.com/songs/60044751.mkv +钟嘉欣-我不懂你,http://em.21dtv.com/songs/60044749.mkv +丁衣凡-我不懂 爱,http://em.21dtv.com/songs/60084012.mkv +邓紫棋-我不懂爱(演唱会),http://em.21dtv.com/songs/60065041.mkv +许志安-我不懂爱,http://em.21dtv.com/songs/60044745.mkv +李芊慧-违背的爱(无原唱),http://em.21dtv.com/songs/60044154.mkv +TWINS-我不储钱,http://em.21dtv.com/songs/60044741.mkv +赵红军-我并不帅,http://em.21dtv.com/songs/60126235.mkv +赵红军-我并不帅,http://em.21dtv.com/songs/60105398.mkv +黄政-我不爱她,http://em.21dtv.com/songs/60110727.mkv +陈慧珊-我不爱你,http://em.21dtv.com/songs/60044738.mkv +张星唯-我不爱了,http://em.21dtv.com/songs/60122731.mkv +张星唯-我不爱了,http://em.21dtv.com/songs/60114540.mkv +WE THE KINGS-well be a dream,http://em.21dtv.com/songs/60006162.mkv +何建清-为爱作证,http://em.21dtv.com/songs/60043850.mkv +朱婧-为爱追寻,http://em.21dtv.com/songs/60098429.mkv +蔡依林-玩爱之徒,http://em.21dtv.com/songs/60043157.mkv +侯奇才-为爱重来,http://em.21dtv.com/songs/60043847.mkv +尚芸菲-无爱之境,http://em.21dtv.com/songs/60068802.mkv +赵雪阳-我爱中华,http://em.21dtv.com/songs/60123212.mkv +姚黛玮-无岸之河,http://em.21dtv.com/songs/60047058.mkv +宋祖英-我爱中华,http://em.21dtv.com/songs/60044700.mkv +王子霆-为爱祝福,http://em.21dtv.com/songs/60065017.mkv +蔡玲玲-晚安忧郁,http://em.21dtv.com/songs/60043219.mkv +林俊吉-为爱勇往,http://em.21dtv.com/songs/60072497.mkv +李彩桦-我爱雨天,http://em.21dtv.com/songs/60044695.mkv +TRISHA YEARWOOD-where are you now,http://em.21dtv.com/songs/60006280.mkv +BRITNEY SPEARS-where are you now,http://em.21dtv.com/songs/60006279.mkv +THE POLICE-wrapped around your finger,http://em.21dtv.com/songs/60006428.mkv +林玉英-为爱晕船,http://em.21dtv.com/songs/60043845.mkv +赵星翔-为爱摇摆,http://em.21dtv.com/songs/60065016.mkv +朱予涵-我爱洗澡,http://em.21dtv.com/songs/60132514.mkv +贾璨璨-我爱洗澡,http://em.21dtv.com/songs/60101515.mkv +范晓萱-我爱洗澡,http://em.21dtv.com/songs/60044687.mkv +欧豪+好妹妹乐队-我爱夏天,http://em.21dtv.com/songs/60125837.mkv +超级女声-我爱夏天,http://em.21dtv.com/songs/60088725.mkv +脱拉库-我爱夏天,http://em.21dtv.com/songs/60044690.mkv +向蕙玲-为爱牺牲,http://em.21dtv.com/songs/60097183.mkv +路默依+韩雷-为爱相随,http://em.21dtv.com/songs/60095098.mkv +韩雷+路默依-为爱相随,http://em.21dtv.com/songs/60094348.mkv +佚名-为爱牺牲(无原唱),http://em.21dtv.com/songs/60043843.mkv +林琳-我爱香气,http://em.21dtv.com/songs/60125792.mkv +巧千金-我爱新年,http://em.21dtv.com/songs/60078159.mkv +康乔-我爱熊猫(儿歌),http://em.21dtv.com/songs/60091022.mkv +张娟-我爱香港,http://em.21dtv.com/songs/60044692.mkv +央金兰泽-我爱西藏,http://em.21dtv.com/songs/60121555.mkv +童唱-我爱乡村,http://em.21dtv.com/songs/60044691.mkv +邹宏宇-what a wonderful world,http://em.21dtv.com/songs/60069158.mkv +佚名-what a wonderful world,http://em.21dtv.com/songs/60006181.mkv +林忆莲+齐豫+刘美君-what a wonderful world,http://em.21dtv.com/songs/60006180.mkv +LOUIS ARMSTRONG-what a wonderful world,http://em.21dtv.com/songs/60006179.mkv +陈奕迅-what a wonderful world(演唱会),http://em.21dtv.com/songs/60006178.mkv +CREED-with arms wide open,http://em.21dtv.com/songs/60006373.mkv +DAVID BOWIE-where are we now,http://em.21dtv.com/songs/60074126.mkv +邓伟-为爱挽留,http://em.21dtv.com/songs/60061655.mkv +庄子萱-我爱我家,http://em.21dtv.com/songs/60118542.mkv +林乔安-无爱无差,http://em.21dtv.com/songs/60113690.mkv +王红涛-我爱我唱,http://em.21dtv.com/songs/60081403.mkv +牛奶咖啡-晚安晚安,http://em.21dtv.com/songs/60129371.mkv +圈圈-晚安晚安,http://em.21dtv.com/songs/60078014.mkv +魏如萱-晚安晚安,http://em.21dtv.com/songs/60064999.mkv +周治平-晚安吾爱,http://em.21dtv.com/songs/60043218.mkv +张学友-晚安吾爱,http://em.21dtv.com/songs/60043217.mkv +蔡幸娟-为爱叹惜,http://em.21dtv.com/songs/60043834.mkv +灭火器乐团-晚安台湾,http://em.21dtv.com/songs/60100293.mkv +黑龙-为爱逃亡,http://em.21dtv.com/songs/60043836.mkv +高明骏-为爱逃亡,http://em.21dtv.com/songs/60043835.mkv +佚名-we are the world,http://em.21dtv.com/songs/60006136.mkv +郭子-为爱偷生,http://em.21dtv.com/songs/60043838.mkv +张继聪-we are the one,http://em.21dtv.com/songs/60068007.mkv +群星-我爱台妹,http://em.21dtv.com/songs/60097282.mkv +张震岳-我爱台妹,http://em.21dtv.com/songs/60044680.mkv +姚中仁+张震岳-我爱台妹,http://em.21dtv.com/songs/60044679.mkv +凌志辉-为爱停留,http://em.21dtv.com/songs/60110006.mkv +凌志辉-为爱停留,http://em.21dtv.com/songs/60061654.mkv +郑源-为爱停留,http://em.21dtv.com/songs/60043837.mkv +邓育彬-为爱颓废,http://em.21dtv.com/songs/60080487.mkv +平安-we are the champions,http://em.21dtv.com/songs/60074099.mkv +佚名-we are the champions,http://em.21dtv.com/songs/60006135.mkv +QUEEN-we are the champions,http://em.21dtv.com/songs/60006134.mkv +浩东-为爱受罪,http://em.21dtv.com/songs/60107030.mkv +张峰奇-为爱上色,http://em.21dtv.com/songs/60130307.mkv +张学友-我爱上你,http://em.21dtv.com/songs/60125503.mkv +张学友-我爱上你,http://em.21dtv.com/songs/60106827.mkv +香香-我爱睡觉,http://em.21dtv.com/songs/60044676.mkv +周传雄-我爱神话,http://em.21dtv.com/songs/60108387.mkv +大约冬季+雨娢-为爱守候,http://em.21dtv.com/songs/60105731.mkv +蒙哥+心动-为爱守候,http://em.21dtv.com/songs/60065015.mkv +晓月-为爱守候,http://em.21dtv.com/songs/60043830.mkv +张冬玲-为爱守侯,http://em.21dtv.com/songs/60043829.mkv +丁当-我爱上的,http://em.21dtv.com/songs/60044670.mkv +TONICK-what a sunny day,http://em.21dtv.com/songs/60006177.mkv +钟尚荣-望爱如水(无原唱),http://em.21dtv.com/songs/60043653.mkv +卫兰-唯爱人间,http://em.21dtv.com/songs/60044166.mkv +南宫嘉俊-为爱乞讨,http://em.21dtv.com/songs/60067522.mkv +嘉骏-为爱乞讨,http://em.21dtv.com/songs/60043823.mkv +向蕙玲-为爱请求,http://em.21dtv.com/songs/60065014.mkv +佚名-我爱恰恰,http://em.21dtv.com/songs/60044666.mkv +叶丽仪-我爱恰恰(演唱会),http://em.21dtv.com/songs/60044665.mkv +晨唏-为爱取名,http://em.21dtv.com/songs/60099271.mkv +佚名-我爱秋莲,http://em.21dtv.com/songs/60044667.mkv +骆海燕-为爱祈祷,http://em.21dtv.com/songs/60107364.mkv +蔡妍-为爱祈祷,http://em.21dtv.com/songs/60043822.mkv +安红-为爱祈祷,http://em.21dtv.com/songs/60043821.mkv +杨丞琳-为爱启程,http://em.21dtv.com/songs/60072496.mkv +谭咏麟-我爱雀斑(HD演唱会),http://em.21dtv.com/songs/60044668.mkv +小鱼儿+廖子俞-我爱泡泡,http://em.21dtv.com/songs/60044663.mkv +龙千玉-为爱捧杯,http://em.21dtv.com/songs/60043820.mkv +范宏伟-我爱你们,http://em.21dtv.com/songs/60080139.mkv +王聃葳-我爱你吗,http://em.21dtv.com/songs/60078152.mkv +STEPS-words are not enough,http://em.21dtv.com/songs/60006407.mkv +许云上-晚安梦想,http://em.21dtv.com/songs/60122107.mkv +王志文-晚安妹妹,http://em.21dtv.com/songs/60043212.mkv +谷亚潼-微爱来了,http://em.21dtv.com/songs/60108012.mkv +大哲-为爱流浪,http://em.21dtv.com/songs/60078072.mkv +李志刚-为爱流泪,http://em.21dtv.com/songs/60061653.mkv +张清芳-为爱落泪,http://em.21dtv.com/songs/60043819.mkv +羽泉-为爱流泪,http://em.21dtv.com/songs/60043818.mkv +韦嘉-为爱流浪,http://em.21dtv.com/songs/60043817.mkv +李天华-为爱流浪,http://em.21dtv.com/songs/60043816.mkv +佚名-我爱口哨,http://em.21dtv.com/songs/60044587.mkv +童唱-我爱口哨,http://em.21dtv.com/songs/60044586.mkv +中臣-为爱哭泣,http://em.21dtv.com/songs/60119230.mkv +别丹-我爱今天,http://em.21dtv.com/songs/60044583.mkv +黄大炜+严铮-我爱京剧,http://em.21dtv.com/songs/60133124.mkv +黎明-我爱ichi ban,http://em.21dtv.com/songs/60044536.mkv +熊七梅-为爱后退,http://em.21dtv.com/songs/60072495.mkv +杨千嬅-我爱坏人,http://em.21dtv.com/songs/60044580.mkv +陈星-为爱回家,http://em.21dtv.com/songs/60131946.mkv +刘恺威-为爱回归,http://em.21dtv.com/songs/60121439.mkv +徐浩峻-为爱喝彩,http://em.21dtv.com/songs/60116831.mkv +龙凤呈祥组合-为爱喝彩,http://em.21dtv.com/songs/60117420.mkv +CHRISTINA AGUILERA-what a girl wants,http://em.21dtv.com/songs/60006176.mkv +佚名-what a girl wants(无原唱),http://em.21dtv.com/songs/60006175.mkv +邰正宵-我爱过你,http://em.21dtv.com/songs/60044577.mkv +动力火车-我爱过你,http://em.21dtv.com/songs/60044576.mkv +LINDA+黄俊宪-我爱过你,http://em.21dtv.com/songs/60044575.mkv +刘小天-晚安姑娘,http://em.21dtv.com/songs/60043211.mkv +尚雯婕-为爱归来,http://em.21dtv.com/songs/60119451.mkv +邢东-为爱k歌,http://em.21dtv.com/songs/60043792.mkv +严热-为爱高歌,http://em.21dtv.com/songs/60131134.mkv +李宇春-为爱感动,http://em.21dtv.com/songs/60067521.mkv +彩贝与海-为爱歌唱,http://em.21dtv.com/songs/60109341.mkv +刘玮-为爱干杯,http://em.21dtv.com/songs/60094417.mkv +潘美辰-为爱犯罪,http://em.21dtv.com/songs/60043809.mkv +栾树+齐秦-为爱飞翔,http://em.21dtv.com/songs/60130497.mkv +徐红光-为爱分手,http://em.21dtv.com/songs/60116833.mkv +许鹤缤-为爱放手,http://em.21dtv.com/songs/60078071.mkv +S.H.E-我爱烦恼(演唱会),http://em.21dtv.com/songs/60044570.mkv +佚名-为爱烦恼,http://em.21dtv.com/songs/60043807.mkv +黄莺莺-为爱疯狂,http://em.21dtv.com/songs/60043811.mkv +沈世爱-为爱犯贱,http://em.21dtv.com/songs/60081805.mkv +庄妮-为爱付出,http://em.21dtv.com/songs/60107701.mkv +佚名-what a fool believes,http://em.21dtv.com/songs/60006174.mkv +谭维维-为爱而声,http://em.21dtv.com/songs/60114074.mkv +五月天-为爱而生,http://em.21dtv.com/songs/60043806.mkv +邵兵-为爱而来,http://em.21dtv.com/songs/60043805.mkv +张韶涵-为爱而活,http://em.21dtv.com/songs/60097182.mkv +SARA-为爱而歌,http://em.21dtv.com/songs/60043804.mkv +鼓鼓-为爱而爱,http://em.21dtv.com/songs/60130947.mkv +SQUARE-为爱而爱,http://em.21dtv.com/songs/60043802.mkv +董洁-我爱的我,http://em.21dtv.com/songs/60078143.mkv +索南扎西-我爱的人,http://em.21dtv.com/songs/60068747.mkv +林宥嘉-我爱的人(演唱会),http://em.21dtv.com/songs/60066385.mkv +艳乐队-我爱的人,http://em.21dtv.com/songs/60044559.mkv +沈芳如-我爱的人,http://em.21dtv.com/songs/60044558.mkv +林宥嘉-我爱的人,http://em.21dtv.com/songs/60044557.mkv +次真降措-我爱的人,http://em.21dtv.com/songs/60044556.mkv +陈小春-我爱的人,http://em.21dtv.com/songs/60044555.mkv +陈小春-我爱的人(演唱会),http://em.21dtv.com/songs/60044554.mkv +思恩-我爱的你(HD),http://em.21dtv.com/songs/10012789.mkv +思恩-我爱的你,http://em.21dtv.com/songs/60097283.mkv +严宽+杜若溪-我爱的你,http://em.21dtv.com/songs/60078137.mkv +金波-我爱大漠,http://em.21dtv.com/songs/60044545.mkv +周笔畅-晚安的话,http://em.21dtv.com/songs/60080381.mkv +杭天琪-为爱出走,http://em.21dtv.com/songs/60133860.mkv +赵洪涛-为爱沉醉(演唱会),http://em.21dtv.com/songs/60078067.mkv +萧磊-为爱存在,http://em.21dtv.com/songs/60072494.mkv +邰正宵-为爱存在,http://em.21dtv.com/songs/60043800.mkv +罗中旭-为爱存在,http://em.21dtv.com/songs/60043799.mkv +杜德伟-为爱存在,http://em.21dtv.com/songs/60043798.mkv +罗中旭-为爱存在(演唱会),http://em.21dtv.com/songs/60043797.mkv +杭天琪-为爱出走,http://em.21dtv.com/songs/60043796.mkv +李晟-我爱超人,http://em.21dtv.com/songs/60078135.mkv +罗媛+XinYing-为爱出拳,http://em.21dtv.com/songs/60128302.mkv +罗媛-为爱出拳,http://em.21dtv.com/songs/60128301.mkv +蔡佳麟-为爱车拼,http://em.21dtv.com/songs/60069904.mkv +余少群-为爱成泥,http://em.21dtv.com/songs/60121379.mkv +阿兰-为爱成魔,http://em.21dtv.com/songs/60101191.mkv +梦成-为爱痴狂,http://em.21dtv.com/songs/60071214.mkv +金志文-为爱痴狂,http://em.21dtv.com/songs/60068725.mkv +麦子杰-为爱痴狂,http://em.21dtv.com/songs/60043795.mkv +刘若英-为爱痴狂,http://em.21dtv.com/songs/60043794.mkv +梁汉文-我爱厨房,http://em.21dtv.com/songs/60044543.mkv +阿祖-我爱长春,http://em.21dtv.com/songs/60129718.mkv +陈依然-为爱别走,http://em.21dtv.com/songs/60043793.mkv +陈百强-我爱白云(演唱会),http://em.21dtv.com/songs/60044537.mkv +刘文天-晚安北京,http://em.21dtv.com/songs/60126642.mkv +反光镜-晚安北京,http://em.21dtv.com/songs/60043209.mkv +汪峰-晚安北京(演唱会),http://em.21dtv.com/songs/60043208.mkv +TWINS+AT17-我爱班房(演唱会),http://em.21dtv.com/songs/60044539.mkv +AT17-我爱班房(演唱会),http://em.21dtv.com/songs/60044538.mkv +左立-晚安宝贝,http://em.21dtv.com/songs/60106804.mkv +阎韦伶-晚安宝贝,http://em.21dtv.com/songs/60071202.mkv +李乐诗-吾爱被爱,http://em.21dtv.com/songs/60092789.mkv +李麦文+金书漫-我爱熬夜,http://em.21dtv.com/songs/60116022.mkv +佚名-we are all alone,http://em.21dtv.com/songs/60006128.mkv +洛天依-V家萌妹,http://em.21dtv.com/songs/60133932.mkv +芭比-vincent的画笔,http://em.21dtv.com/songs/60006055.mkv +佚名-up where we belong,http://em.21dtv.com/songs/60006028.mkv +林子祥-until we meet again,http://em.21dtv.com/songs/60006024.mkv +刘承宇-U Who,http://em.21dtv.com/songs/60099115.mkv +吴汶芳-Us小时,http://em.21dtv.com/songs/60126700.mkv +MONICA-u shouldve known better,http://em.21dtv.com/songs/60005984.mkv +AVERY SUNSHINE-ugly part of me,http://em.21dtv.com/songs/60074083.mkv +Sanna Nielsen-Undo,http://em.21dtv.com/songs/60126545.mkv +萧亚轩-u make me wanna,http://em.21dtv.com/songs/60005981.mkv +萧亚轩-u make me wanna(演唱会),http://em.21dtv.com/songs/60005980.mkv +MONICA-until its gone,http://em.21dtv.com/songs/60063781.mkv +GIN BLOSSOMS-until i fall away,http://em.21dtv.com/songs/60006022.mkv +Crayon Pop-Uh_ee,http://em.21dtv.com/songs/60098984.mkv +USHER-u got it bad,http://em.21dtv.com/songs/60071681.mkv +N SYNC-u drive me crazy,http://em.21dtv.com/songs/60005978.mkv +MC HAMMER-u cant touch this,http://em.21dtv.com/songs/60005977.mkv +THE STROKES-under cover of darkness,http://em.21dtv.com/songs/60006006.mkv +WESTLIFE-us against the world,http://em.21dtv.com/songs/60006035.mkv +冯曦妤+陈柏宇-u are my everything,http://em.21dtv.com/songs/60005976.mkv +思小妞-停在昨天,http://em.21dtv.com/songs/60077954.mkv +乔洋-停在昨天,http://em.21dtv.com/songs/60042635.mkv +洪卓立-铁铸之契,http://em.21dtv.com/songs/60114653.mkv +张学友-同舟之情,http://em.21dtv.com/songs/60080046.mkv +陈瑞-天作之合,http://em.21dtv.com/songs/60120095.mkv +张国荣-停止转动,http://em.21dtv.com/songs/60042636.mkv +农夫-天造之材,http://em.21dtv.com/songs/60092329.mkv +农夫-天造之才,http://em.21dtv.com/songs/60042293.mkv +陈明-桃之夭夭,http://em.21dtv.com/songs/60041609.mkv +陈明-逃之夭夭,http://em.21dtv.com/songs/60041559.mkv +林宥嘉-天真有邪,http://em.21dtv.com/songs/60124128.mkv +侯湘婷-通知一下,http://em.21dtv.com/songs/60090627.mkv +王惠美-天真以为,http://em.21dtv.com/songs/60093874.mkv +王慧美-天真以为,http://em.21dtv.com/songs/60085795.mkv +苏永康+李沁怡-倘再遇上,http://em.21dtv.com/songs/60041515.mkv +陈乃荣-同种异类,http://em.21dtv.com/songs/60068717.mkv +李克勤+周传雄-天这样蓝,http://em.21dtv.com/songs/60042308.mkv +梁山山+戴梦梦-天真一对,http://em.21dtv.com/songs/60132643.mkv +佑可猫-兔子先生,http://em.21dtv.com/songs/60133361.mkv +罗时丰-田庄兄哥,http://em.21dtv.com/songs/60077922.mkv +佚名-田庄兄哥,http://em.21dtv.com/songs/60042351.mkv +陈雷-田庄兄哥,http://em.21dtv.com/songs/60042350.mkv +陈一郎-田庄兄弟(无原唱),http://em.21dtv.com/songs/60095969.mkv +NMB48-途中下车,http://em.21dtv.com/songs/60131093.mkv +张青梅+张先满-同在莞邑,http://em.21dtv.com/songs/60121683.mkv +俞尚华-同宗同祖(演唱会),http://em.21dtv.com/songs/60042726.mkv +CD.VOICE-同珍童真,http://em.21dtv.com/songs/60042717.mkv +汪苏泷-停止跳动,http://em.21dtv.com/songs/60066347.mkv +杨树林+贝贝-天竺少女,http://em.21dtv.com/songs/60133851.mkv +柳岩+岳云鹏-天竺少女,http://em.21dtv.com/songs/60131560.mkv +崔子格-天竺少女,http://em.21dtv.com/songs/60130277.mkv +王妮娜-天竺少女,http://em.21dtv.com/songs/60121902.mkv +春天-天竺少女,http://em.21dtv.com/songs/60086587.mkv +祖海-天竺少女,http://em.21dtv.com/songs/60042335.mkv +李玲玉-天竺少女,http://em.21dtv.com/songs/60042334.mkv +任贤齐-她在说谎,http://em.21dtv.com/songs/60041176.mkv +陈奕迅-跳蚤市场,http://em.21dtv.com/songs/60042454.mkv +阎琰-天真女人,http://em.21dtv.com/songs/60064974.mkv +张学友-他在那里,http://em.21dtv.com/songs/60041125.mkv +张学友-童真年代,http://em.21dtv.com/songs/60102212.mkv +鞠红川-天这么蓝,http://em.21dtv.com/songs/60042307.mkv +邱乃华-田庄恋情,http://em.21dtv.com/songs/60042347.mkv +刘德华-同枕两梦,http://em.21dtv.com/songs/60042718.mkv +施文彬+鄞雅茹-天之骄子,http://em.21dtv.com/songs/60042323.mkv +容祖儿-天之骄女,http://em.21dtv.com/songs/60042322.mkv +容祖儿-天之骄女(演唱会),http://em.21dtv.com/songs/60042321.mkv +潘玮柏-停止呼吸,http://em.21dtv.com/songs/60091656.mkv +依淼-太在乎你,http://em.21dtv.com/songs/60109152.mkv +叶璐-桐子花开,http://em.21dtv.com/songs/60125267.mkv +阿悄-替罪羔羊,http://em.21dtv.com/songs/60128500.mkv +许茹芸-投资感情,http://em.21dtv.com/songs/60042901.mkv +佚名-田庄姑娘,http://em.21dtv.com/songs/60042346.mkv +黎瑞恩-踢走钢盔(演唱会),http://em.21dtv.com/songs/60041685.mkv +佚名-同舟共济,http://em.21dtv.com/songs/60042720.mkv +许冠杰-同舟共济,http://em.21dtv.com/songs/60042719.mkv +吴倩莲-天知地知,http://em.21dtv.com/songs/60092447.mkv +黄乙玲-天知地知,http://em.21dtv.com/songs/60042333.mkv +胡杏儿-天造地设,http://em.21dtv.com/songs/60077918.mkv +胡夏-同桌的你,http://em.21dtv.com/songs/60099452.mkv +RUBBER BAND-同桌的你(演唱会),http://em.21dtv.com/songs/60061636.mkv +巫启贤-同桌的你,http://em.21dtv.com/songs/60042725.mkv +苏有朋-同桌的你,http://em.21dtv.com/songs/60042724.mkv +刘若英-同桌的你,http://em.21dtv.com/songs/60042723.mkv +老狼-同桌的你,http://em.21dtv.com/songs/60042722.mkv +老狼-同桌的你(演唱会),http://em.21dtv.com/songs/60042721.mkv +TIZZY BAC-铁之贝克,http://em.21dtv.com/songs/60042501.mkv +南征北战-特种部队,http://em.21dtv.com/songs/60134962.mkv +佘延生-同桌阿香,http://em.21dtv.com/songs/60125127.mkv +宋孟君-停止爱情,http://em.21dtv.com/songs/60094462.mkv +晓月-停止爱你,http://em.21dtv.com/songs/60114571.mkv +白雪-太阳之下,http://em.21dtv.com/songs/60088364.mkv +韦唯-同一祖先,http://em.21dtv.com/songs/60042715.mkv +胥拉齐-同一种人,http://em.21dtv.com/songs/60127316.mkv +郑希怡-痛由自取,http://em.21dtv.com/songs/60042821.mkv +周蕙-讨厌自己,http://em.21dtv.com/songs/60041633.mkv +李炎-天涯纵横,http://em.21dtv.com/songs/60116918.mkv +姚贝娜-天耀中华(HD),http://em.21dtv.com/songs/10012764.mkv +徐千雅-天耀中华,http://em.21dtv.com/songs/60106876.mkv +姚贝娜-天耀中华,http://em.21dtv.com/songs/60096236.mkv +佚名-田园之歌,http://em.21dtv.com/songs/60042344.mkv +林奕匡-天渊之别,http://em.21dtv.com/songs/60122896.mkv +春妹-太阳一样,http://em.21dtv.com/songs/60041393.mkv +佚名-太阳一样(无原唱),http://em.21dtv.com/songs/60041392.mkv +冷漠-天涯有歌,http://em.21dtv.com/songs/60126625.mkv +肖楗-天涯一别,http://em.21dtv.com/songs/60120868.mkv +谢忠+吴晓芸-天涯有爱,http://em.21dtv.com/songs/60042266.mkv +张震岳-讨厌夏天,http://em.21dtv.com/songs/60041632.mkv +筠子-天涯相随,http://em.21dtv.com/songs/60103504.mkv +乐桐-天涯新娘,http://em.21dtv.com/songs/60064971.mkv +张学友-太阳星辰,http://em.21dtv.com/songs/60041390.mkv +阎维文-天涯望月,http://em.21dtv.com/songs/60042264.mkv +卢巧音-天佑我们(演唱会),http://em.21dtv.com/songs/60042285.mkv +佚名-童言无忌(无原唱),http://em.21dtv.com/songs/60042768.mkv +冯允谦-天涯无歌,http://em.21dtv.com/songs/60103902.mkv +张柏芝-天衣无缝,http://em.21dtv.com/songs/60092630.mkv +郑秀文-天衣无缝,http://em.21dtv.com/songs/60042274.mkv +林忆莲-天衣无缝(演唱会),http://em.21dtv.com/songs/60042273.mkv +WOMAN POWER-讨厌讨厌,http://em.21dtv.com/songs/60064949.mkv +李佑晨-她有他陪,http://em.21dtv.com/songs/60126992.mkv +凡间精灵-痛也是醉,http://em.21dtv.com/songs/60123662.mkv +佚名-庭院深深,http://em.21dtv.com/songs/60042620.mkv +李碧华-庭院深深,http://em.21dtv.com/songs/60042619.mkv +姜育恒-庭院深深,http://em.21dtv.com/songs/60042618.mkv +蔡琴-庭院深深,http://em.21dtv.com/songs/60042617.mkv +许茹芸-庭院深深(演唱会),http://em.21dtv.com/songs/60042616.mkv +容祖儿-庭院深深(演唱会),http://em.21dtv.com/songs/60042615.mkv +洪荣宏-庭院深深(演唱会),http://em.21dtv.com/songs/60042614.mkv +方伊琪-庭院深深(演唱会),http://em.21dtv.com/songs/60042613.mkv +浪花兄弟-太阳升起,http://em.21dtv.com/songs/60041388.mkv +香奈儿-童一首歌,http://em.21dtv.com/songs/60085807.mkv +韦唯-同一首歌,http://em.21dtv.com/songs/60080442.mkv +蛋堡-听一首歌,http://em.21dtv.com/songs/60068716.mkv +毛阿敏-同一首歌,http://em.21dtv.com/songs/60042713.mkv +张伟文-同一首歌(演唱会),http://em.21dtv.com/songs/60042712.mkv +那英+孙楠-同一首歌(演唱会),http://em.21dtv.com/songs/60042711.mkv +毛阿敏+那英-同一首歌(演唱会),http://em.21dtv.com/songs/60042710.mkv +黎明+成方圆-同一首歌(演唱会),http://em.21dtv.com/songs/60042709.mkv +蔡国庆-同一首歌(演唱会),http://em.21dtv.com/songs/60042708.mkv +两千元-讨厌首尔,http://em.21dtv.com/songs/60105547.mkv +杨千桦-体验入学,http://em.21dtv.com/songs/60092830.mkv +蔡国权-天意人心,http://em.21dtv.com/songs/60042281.mkv +T-ARA+N4-田园日记,http://em.21dtv.com/songs/60083911.mkv +冯帆-天意如此,http://em.21dtv.com/songs/60067489.mkv +江蕙-探狱情怨(无原唱),http://em.21dtv.com/songs/60041480.mkv +孙淑媚-跳一曲舞,http://em.21dtv.com/songs/60042453.mkv +九雨-田园情趣,http://em.21dtv.com/songs/60114973.mkv +男声-唐寅求情,http://em.21dtv.com/songs/60041503.mkv +夏兰-天涯情歌,http://em.21dtv.com/songs/60132318.mkv +卓依婷-探狱情歌,http://em.21dtv.com/songs/60061259.mkv +女声-唐寅情歌,http://em.21dtv.com/songs/60041502.mkv +郭富城-天涯凝望,http://em.21dtv.com/songs/60042263.mkv +家入レオ-太阳の女神,http://em.21dtv.com/songs/60097166.mkv +六哲-甜言蜜语,http://em.21dtv.com/songs/60095261.mkv +张惠妹-甜言蜜语,http://em.21dtv.com/songs/60083914.mkv +王强-甜言蜜语,http://em.21dtv.com/songs/60068713.mkv +柳影虹-甜言蜜语(演唱会),http://em.21dtv.com/songs/60061632.mkv +佚名-甜言蜜语,http://em.21dtv.com/songs/60042414.mkv +叶倩文-甜言蜜语(演唱会),http://em.21dtv.com/songs/60042413.mkv +黄思婷-甜言蜜语(无原唱),http://em.21dtv.com/songs/60042412.mkv +刘美君-tell you my story,http://em.21dtv.com/songs/60005496.mkv +杨腾-天涯陌路,http://em.21dtv.com/songs/60133858.mkv +佚名-太阳落山,http://em.21dtv.com/songs/60041386.mkv +叶俊华-桃源浪暖,http://em.21dtv.com/songs/60105679.mkv +春妹-天涯浪迹,http://em.21dtv.com/songs/60042260.mkv +HITA-桃叶临渡,http://em.21dtv.com/songs/60133209.mkv +吴俊宏+林良欢-添油加醋,http://em.21dtv.com/songs/60064976.mkv +陈佳瑜-太阳花开,http://em.21dtv.com/songs/60085761.mkv +张义杰-天涯海角,http://em.21dtv.com/songs/60067488.mkv +郑伊健-天涯海角,http://em.21dtv.com/songs/60042255.mkv +王力宏-天涯海角,http://em.21dtv.com/songs/60042254.mkv +阿杜-天涯海角,http://em.21dtv.com/songs/60042253.mkv +脱拉库-太阳回家,http://em.21dtv.com/songs/60041385.mkv +阿佳组合-天域呼唤,http://em.21dtv.com/songs/60126341.mkv +李浩民-天涯何处,http://em.21dtv.com/songs/60086879.mkv +大哲-天涯歌仔,http://em.21dtv.com/songs/60080109.mkv +秀兰玛雅-同一个人,http://em.21dtv.com/songs/60042700.mkv +陈奕迅-他一个人,http://em.21dtv.com/songs/60041123.mkv +陈奕迅-他一个人(演唱会),http://em.21dtv.com/songs/60041122.mkv +索朗扎西-太阳姑娘,http://em.21dtv.com/songs/60128297.mkv +宁可-天涯歌女,http://em.21dtv.com/songs/60111001.mkv +洪禄云+枫舞-天涯歌女,http://em.21dtv.com/songs/60083908.mkv +叶丽仪-天涯歌女(演唱会),http://em.21dtv.com/songs/60083907.mkv +周华健-天涯歌女,http://em.21dtv.com/songs/60077912.mkv +刘韵-天涯歌女(演唱会),http://em.21dtv.com/songs/60077911.mkv +紫薇-天涯歌女,http://em.21dtv.com/songs/60042247.mkv +周璇-天涯歌女,http://em.21dtv.com/songs/60042246.mkv +张燕-天涯歌女,http://em.21dtv.com/songs/60042245.mkv +徐小凤-天涯歌女,http://em.21dtv.com/songs/60042244.mkv +谢采妘-天涯歌女,http://em.21dtv.com/songs/60042243.mkv +郭彤-天涯歌女,http://em.21dtv.com/songs/60042242.mkv +费玉清-天涯歌女,http://em.21dtv.com/songs/60042241.mkv +邓丽君-天涯歌女,http://em.21dtv.com/songs/60042240.mkv +陈艺鹏-天涯歌女,http://em.21dtv.com/songs/60042239.mkv +陈松伶-天涯歌女,http://em.21dtv.com/songs/60042238.mkv +蔡红虹-天涯歌女,http://em.21dtv.com/songs/60042237.mkv +杨钰莹-天涯歌女(演唱会),http://em.21dtv.com/songs/60042236.mkv +苏珊-天涯歌女(演唱会),http://em.21dtv.com/songs/60042235.mkv +华娃-天涯歌女(演唱会),http://em.21dtv.com/songs/60042234.mkv +陈洁丽-天涯歌女(演唱会),http://em.21dtv.com/songs/60042233.mkv +蔡琴-天涯歌女(HD演唱会),http://em.21dtv.com/songs/60042232.mkv +蔡国庆-同一个梦,http://em.21dtv.com/songs/60102712.mkv +赛娅-同一个梦,http://em.21dtv.com/songs/60066349.mkv +周杰伦-天涯过客,http://em.21dtv.com/songs/60108395.mkv +周杰伦-天涯过客,http://em.21dtv.com/songs/60107597.mkv +周杰伦-天涯过客,http://em.21dtv.com/songs/60106704.mkv +郑少秋+李美慧-天涯孤客(演唱会),http://em.21dtv.com/songs/60077913.mkv +郑少秋-天涯孤客,http://em.21dtv.com/songs/60042252.mkv +佚名-天涯孤客,http://em.21dtv.com/songs/60042251.mkv +巫奇-天涯孤客,http://em.21dtv.com/songs/60042250.mkv +张德兰+区瑞强-天涯孤客(演唱会),http://em.21dtv.com/songs/60042249.mkv +高安+艳菲儿-同一个家,http://em.21dtv.com/songs/60061635.mkv +傅仕伦-太阳公公,http://em.21dtv.com/songs/60041381.mkv +谢雷-天涯芳草,http://em.21dtv.com/songs/60042231.mkv +吕珊+颜福伟-天涯芳草(演唱会),http://em.21dtv.com/songs/60042230.mkv +孙燕姿-太阳底下,http://em.21dtv.com/songs/60041380.mkv +陈盈洁-天有打算,http://em.21dtv.com/songs/60042282.mkv +林小龙-同样的你,http://em.21dtv.com/songs/60116966.mkv +厉娜-讨厌电话,http://em.21dtv.com/songs/60041629.mkv +温兆伦+陈松龄-田园春梦,http://em.21dtv.com/songs/60061631.mkv +温兆伦+陈松伶-田园春梦,http://em.21dtv.com/songs/60042343.mkv +郑少秋+关菊英-田园春梦(演唱会),http://em.21dtv.com/songs/60042342.mkv +关菊英+伍卫国-田园春梦(演唱会),http://em.21dtv.com/songs/60042341.mkv +荒山亮-天涯朝暮,http://em.21dtv.com/songs/60042228.mkv +刘德华-头也不回,http://em.21dtv.com/songs/60042891.mkv +格格-天下最美,http://em.21dtv.com/songs/60130491.mkv +哈桑-天下最美,http://em.21dtv.com/songs/60106721.mkv +格格-天下最美,http://em.21dtv.com/songs/60062383.mkv +孙淑媚-疼惜自己,http://em.21dtv.com/songs/60077856.mkv +千百惠-推销自己,http://em.21dtv.com/songs/60042977.mkv +何润东-贴心知己,http://em.21dtv.com/songs/60042465.mkv +金久哲-天下纵横,http://em.21dtv.com/songs/60120035.mkv +那英+萱萱+朱克+姚贝娜+侯磊-妥协之歌,http://em.21dtv.com/songs/60081548.mkv +许志安-天下之大(演唱会),http://em.21dtv.com/songs/60042209.mkv +中国人民解放军三军仪仗队-铁血忠诚,http://em.21dtv.com/songs/60119229.mkv +W.K-听雪在唱,http://em.21dtv.com/songs/60083925.mkv +韩晓辉-天下游子,http://em.21dtv.com/songs/60134444.mkv +邓志驹-啼笑因缘(戏曲),http://em.21dtv.com/songs/60093247.mkv +张德兰-啼笑姻缘(演唱会),http://em.21dtv.com/songs/60068704.mkv +尹光-啼笑姻缘(演唱会),http://em.21dtv.com/songs/60061625.mkv +佚名-啼笑姻缘,http://em.21dtv.com/songs/60041694.mkv +陈小春-啼笑姻缘,http://em.21dtv.com/songs/60041693.mkv +钟欣桐-啼笑姻缘(演唱会),http://em.21dtv.com/songs/60041692.mkv +郑少秋-啼笑姻缘(演唱会),http://em.21dtv.com/songs/60041691.mkv +仙杜拉-啼笑姻缘(演唱会),http://em.21dtv.com/songs/60041690.mkv +韩磊-天下英雄,http://em.21dtv.com/songs/60083904.mkv +李嘉-疼惜一世,http://em.21dtv.com/songs/60041671.mkv +江淑娜-谈笑一生,http://em.21dtv.com/songs/60041452.mkv +昊龙-天心永乐,http://em.21dtv.com/songs/60100081.mkv +蔡其平-谈谐小曲,http://em.21dtv.com/songs/60088596.mkv +潘昱瑾-踏雪寻梅,http://em.21dtv.com/songs/60116121.mkv +王莉-踏雪寻梦,http://em.21dtv.com/songs/60113882.mkv +朱妍-踏雪寻梅,http://em.21dtv.com/songs/60041211.mkv +佚名-踏雪寻梅,http://em.21dtv.com/songs/60041210.mkv +吴彤-踏雪寻梅,http://em.21dtv.com/songs/60041209.mkv +韦秀娴-踏雪寻梅,http://em.21dtv.com/songs/60041208.mkv +童唱-踏雪寻梅,http://em.21dtv.com/songs/60041207.mkv +彭丽媛-踏雪寻梅,http://em.21dtv.com/songs/60041206.mkv +张馨文-同享幸福,http://em.21dtv.com/songs/60113503.mkv +羽泉-天下无贼,http://em.21dtv.com/songs/60042204.mkv +羽泉-天下无贼(演唱会),http://em.21dtv.com/songs/60042203.mkv +张靓颖-天下无双,http://em.21dtv.com/songs/60135248.mkv +安琥+姜武-天下无双,http://em.21dtv.com/songs/60117670.mkv +张靓颖-天下无双,http://em.21dtv.com/songs/60042201.mkv +陈奕迅-天下无双,http://em.21dtv.com/songs/60042200.mkv +张学友-天下无双(演唱会),http://em.21dtv.com/songs/60042199.mkv +梁咏琪-天下无双(演唱会),http://em.21dtv.com/songs/60042198.mkv +陈奕迅-天下无双(HD演唱会),http://em.21dtv.com/songs/60042197.mkv +邰正宵-童心未泯,http://em.21dtv.com/songs/60042767.mkv +荒山亮-天下无疆,http://em.21dtv.com/songs/60062484.mkv +吕雯-逃学威凤,http://em.21dtv.com/songs/60087550.mkv +吕雯-逃学威风,http://em.21dtv.com/songs/60041558.mkv +郁可唯+张哲瀚-天下无敌,http://em.21dtv.com/songs/60132984.mkv +连扬-天下无敌,http://em.21dtv.com/songs/60085792.mkv +熊汝霖-天下无敌,http://em.21dtv.com/songs/60042196.mkv +王蓉-天下无敌,http://em.21dtv.com/songs/60042195.mkv +蒋小涵-太行童谣,http://em.21dtv.com/songs/60041319.mkv +黄琪-铜兴天下,http://em.21dtv.com/songs/60042727.mkv +于文华+尹相杰-同喜同喜,http://em.21dtv.com/songs/60042688.mkv +王少峰+方怡萍-天下太平,http://em.21dtv.com/songs/60077909.mkv +张学友+陈奕迅-天下太平,http://em.21dtv.com/songs/60042194.mkv +卢秀梅-同喜同乐,http://em.21dtv.com/songs/60042687.mkv +蒋舟+唐馨妍-同心同行,http://em.21dtv.com/songs/60099472.mkv +陶静-同学是缘,http://em.21dtv.com/songs/60107339.mkv +后弦-逃学书童,http://em.21dtv.com/songs/60087542.mkv +风语-踏雪思情,http://em.21dtv.com/songs/60131984.mkv +NC.A-通信时间,http://em.21dtv.com/songs/60110783.mkv +佚名-贴心收藏,http://em.21dtv.com/songs/60042464.mkv +秋裤大叔+冷漠-铁血柔情,http://em.21dtv.com/songs/60108783.mkv +冷漠+赵小兵-铁血柔情,http://em.21dtv.com/songs/60077939.mkv +天庥-天庥日记,http://em.21dtv.com/songs/60112606.mkv +陈展鹏-天性如此,http://em.21dtv.com/songs/60042221.mkv +黄晓明-天蝎情人,http://em.21dtv.com/songs/60042217.mkv +七郎-他乡情歌,http://em.21dtv.com/songs/60041116.mkv +韩红-天下平安,http://em.21dtv.com/songs/60103709.mkv +林采缇-偷心OL,http://em.21dtv.com/songs/60109462.mkv +王莱+佳慧-疼惜女人,http://em.21dtv.com/songs/60104319.mkv +大海-天下妈祖,http://em.21dtv.com/songs/60135083.mkv +储毅-提线木偶,http://em.21dtv.com/songs/60097440.mkv +刘力扬-提线木偶,http://em.21dtv.com/songs/60041687.mkv +张振宇-天仙妹妹,http://em.21dtv.com/songs/60042211.mkv +宋晓静+陶奕江-他乡恋歌,http://em.21dtv.com/songs/60099956.mkv +李林平-脱下军装,http://em.21dtv.com/songs/60043021.mkv +浩轩-痛心疾首,http://em.21dtv.com/songs/60086888.mkv +霍尊-天行九歌,http://em.21dtv.com/songs/60122259.mkv +阿杜-天蝎蝴蝶,http://em.21dtv.com/songs/60042216.mkv +SHINE+苦荣-铁血废人,http://em.21dtv.com/songs/60090438.mkv +张启辉-偷心的贼,http://em.21dtv.com/songs/60119506.mkv +天天-天旋地转(HD),http://em.21dtv.com/songs/10012759.mkv +天天-天旋地转,http://em.21dtv.com/songs/60103183.mkv +梁一贞-天旋地转,http://em.21dtv.com/songs/60062627.mkv +龙千玉-他乡的雨,http://em.21dtv.com/songs/60133144.mkv +晓枫-他乡的夜,http://em.21dtv.com/songs/60108539.mkv +音频怪物-天下第一,http://em.21dtv.com/songs/60104587.mkv +杨宗宪-他乡的雨,http://em.21dtv.com/songs/60041113.mkv +王祖蓝+李亚男-铁血丹心,http://em.21dtv.com/songs/60118788.mkv +叶丽仪+陈洁灵-铁血丹心(演唱会),http://em.21dtv.com/songs/60077938.mkv +罗敏庄+黄日华-铁血丹心(演唱会),http://em.21dtv.com/songs/60077937.mkv +鲁振顺+邓瑞霞-铁血丹心(演唱会),http://em.21dtv.com/songs/60077936.mkv +罗文+甄妮-铁血丹心,http://em.21dtv.com/songs/60042500.mkv +朱咪咪+黎耀祥-铁血丹心(演唱会),http://em.21dtv.com/songs/60042499.mkv +甄妮+罗文-铁血丹心(演唱会),http://em.21dtv.com/songs/60042498.mkv +蔡晓+齐柒柒-天下大同,http://em.21dtv.com/songs/60101503.mkv +莫文蔚-天下大同,http://em.21dtv.com/songs/60042182.mkv +王建杰+刘依纯-同心的手,http://em.21dtv.com/songs/60042691.mkv +许冠杰-偷心的人,http://em.21dtv.com/songs/60042863.mkv +南建雄-偷腥的猫,http://em.21dtv.com/songs/60128854.mkv +孙剑-他乡的路,http://em.21dtv.com/songs/60121565.mkv +苏慧伦-天下大乱,http://em.21dtv.com/songs/60042181.mkv +陈瑞-他乡的路,http://em.21dtv.com/songs/60041111.mkv +蔡佳莹-天下独行,http://em.21dtv.com/songs/60101498.mkv +大台风乐团-偷心大盗,http://em.21dtv.com/songs/60125345.mkv +天意-痛心断肠,http://em.21dtv.com/songs/60085809.mkv +吴沙-痛心的爱,http://em.21dtv.com/songs/60125297.mkv +詹雅雯-痛心的爱,http://em.21dtv.com/songs/60042818.mkv +于久翔-童心唱响,http://em.21dtv.com/songs/60114974.mkv +孙淑媚-疼心拆情(无原唱),http://em.21dtv.com/songs/60041672.mkv +张可-天下百姓,http://em.21dtv.com/songs/60077905.mkv +许怀欣-天下不乱,http://em.21dtv.com/songs/60042180.mkv +谢霆锋-天下不乱,http://em.21dtv.com/songs/60042179.mkv +张信哲-太想爱你,http://em.21dtv.com/songs/60041364.mkv +张信哲-太想爱你(演唱会),http://em.21dtv.com/songs/60041363.mkv +伍佰-台湾制造,http://em.21dtv.com/songs/60041284.mkv +黄立成+MACHI-台湾之子(演唱会),http://em.21dtv.com/songs/60041283.mkv +郭欢+汤非+张曦文-天外之音,http://em.21dtv.com/songs/60071189.mkv +2R-头文字r,http://em.21dtv.com/songs/60042890.mkv +古天乐-头文字k,http://em.21dtv.com/songs/60042889.mkv +刘惜君-太晚以前,http://em.21dtv.com/songs/60061615.mkv +NE YO+TREY SONGZ-the way you move,http://em.21dtv.com/songs/60063775.mkv +PARAMORE-thats what you get,http://em.21dtv.com/songs/60005538.mkv +吴莺音-听我细诉(演唱会),http://em.21dtv.com/songs/60042602.mkv +佚名-特务小强,http://em.21dtv.com/songs/60041650.mkv +舜文齐-特务小强,http://em.21dtv.com/songs/60041649.mkv +七郎-台湾兄弟,http://em.21dtv.com/songs/60101236.mkv +葛兰-台湾小调,http://em.21dtv.com/songs/60041280.mkv +BARBRA STREISAND-the way we were,http://em.21dtv.com/songs/60005717.mkv +张菲-the way we were(演唱会),http://em.21dtv.com/songs/60005716.mkv +叶德娴-the way we were(演唱会),http://em.21dtv.com/songs/60005715.mkv +秀兰玛雅-体无完肤,http://em.21dtv.com/songs/60077860.mkv +REMADY+MANU L-the way we are(演唱会),http://em.21dtv.com/songs/60074031.mkv +许绍洋-跳舞跳舞,http://em.21dtv.com/songs/60042452.mkv +BRANDI CARLILE-that wasnt me,http://em.21dtv.com/songs/60070404.mkv +MARY HOPKINS-those were the days,http://em.21dtv.com/songs/60005777.mkv +陈秀雯-those were the days(演唱会),http://em.21dtv.com/songs/60005776.mkv +刘欢-台湾同胞,http://em.21dtv.com/songs/60041279.mkv +刘欢-台湾同胞(演唱会),http://em.21dtv.com/songs/60041278.mkv +李泉-台湾同胞(演唱会),http://em.21dtv.com/songs/60041277.mkv +BACKSTREET BOYS-thats what she said,http://em.21dtv.com/songs/60005537.mkv +R KELLY-the worlds greatest,http://em.21dtv.com/songs/60074036.mkv +黄妃-跳舞时代,http://em.21dtv.com/songs/60077932.mkv +白冰冰+纯纯-跳舞时代,http://em.21dtv.com/songs/60042451.mkv +李嘉-痛袜入心,http://em.21dtv.com/songs/60042816.mkv +方顺吉-台湾囝仔,http://em.21dtv.com/songs/60125624.mkv +罗百吉+宝贝-台湾女孩,http://em.21dtv.com/songs/60086863.mkv +台湾女孩-台湾女孩,http://em.21dtv.com/songs/60072437.mkv +艾可-跳舞年代,http://em.21dtv.com/songs/60042450.mkv +金水嬸-台湾曼波,http://em.21dtv.com/songs/60095946.mkv +白冰冰-台湾加油,http://em.21dtv.com/songs/60041274.mkv +谢承佑-天王巨星,http://em.21dtv.com/songs/60122124.mkv +AIR SUPPLY-the way i feel,http://em.21dtv.com/songs/60005712.mkv +佚名-the way i choose,http://em.21dtv.com/songs/60005711.mkv +EMINEM-the way i am,http://em.21dtv.com/songs/60082364.mkv +ZIA+何东均-the way i am,http://em.21dtv.com/songs/60074030.mkv +TIMBALAND-the way i are,http://em.21dtv.com/songs/60005710.mkv +黄思婷+傅振辉-台湾海峡,http://em.21dtv.com/songs/60041271.mkv +张四郎-台湾姑娘(演唱会),http://em.21dtv.com/songs/60041270.mkv +Nowhere Boys-天外飞仙,http://em.21dtv.com/songs/60132114.mkv +李猛-疼我的娘,http://em.21dtv.com/songs/60106950.mkv +陈思安-听我的歌,http://em.21dtv.com/songs/60042598.mkv +张蓉蓉-踏无到底,http://em.21dtv.com/songs/60064939.mkv +侯冠如-台湾查某,http://em.21dtv.com/songs/60134898.mkv +温岚-听我唱歌,http://em.21dtv.com/songs/60086886.mkv +秀兰玛雅-听我唱歌,http://em.21dtv.com/songs/60042596.mkv +李克勤-跳舞波鞋,http://em.21dtv.com/songs/60042444.mkv +芭比-跳舞芭比,http://em.21dtv.com/songs/60042443.mkv +邝美云-疼我爱我,http://em.21dtv.com/songs/60041666.mkv +李圣杰-听我爱你(演唱会),http://em.21dtv.com/songs/60042595.mkv +S.H.E-替我爱你,http://em.21dtv.com/songs/60041718.mkv +李宇春-tmd我爱你,http://em.21dtv.com/songs/60005824.mkv +李宇春-tmd我爱你(演唱会),http://em.21dtv.com/songs/60005823.mkv +凡尼莎威廉-the voice of love,http://em.21dtv.com/songs/60005705.mkv +MADONNA-turn up the radio,http://em.21dtv.com/songs/60071680.mkv +CHRIS BROWN-turn up the music,http://em.21dtv.com/songs/60066745.mkv +佚名-tearinup my heart,http://em.21dtv.com/songs/60005473.mkv +N SYNC-tearinup my heart,http://em.21dtv.com/songs/60005472.mkv +东学-堂堂正正,http://em.21dtv.com/songs/60087239.mkv +王中平-停停走走,http://em.21dtv.com/songs/60042633.mkv +宋伶俐-天堂之门,http://em.21dtv.com/songs/60072453.mkv +曾倩-天堂之旅,http://em.21dtv.com/songs/60133767.mkv +张永智-天堂之泪,http://em.21dtv.com/songs/60042121.mkv +尹光-太太揸车(演唱会),http://em.21dtv.com/songs/60077817.mkv +康天庥+列有银-天天有银,http://em.21dtv.com/songs/60135187.mkv +Twins-天天夜夜,http://em.21dtv.com/songs/60119206.mkv +成龙+陈思思-天天月圆,http://em.21dtv.com/songs/60069878.mkv +陈思思-天天月圆,http://em.21dtv.com/songs/60067484.mkv +杨洋+熊天平-团团圆圆,http://em.21dtv.com/songs/60042967.mkv +黄晓明-团团圆圆,http://em.21dtv.com/songs/60042966.mkv +付笛声+任静-团团圆圆,http://em.21dtv.com/songs/60042965.mkv +F.I.R-天天夜夜,http://em.21dtv.com/songs/60042164.mkv +薛凯琪-偷偷一秒,http://em.21dtv.com/songs/60126152.mkv +张学友-听天由命,http://em.21dtv.com/songs/60042589.mkv +张皓-听天由命,http://em.21dtv.com/songs/60042588.mkv +张学友-听天由命(演唱会)(无原唱),http://em.21dtv.com/songs/60042587.mkv +王菀之-天堂有路,http://em.21dtv.com/songs/60097150.mkv +佚名-true to your heart,http://em.21dtv.com/songs/60005937.mkv +98 DEGREES+STEVIE WO-true to your heart,http://em.21dtv.com/songs/60005936.mkv +佚名-that thing you do,http://em.21dtv.com/songs/60005523.mkv +侧田-头条新闻,http://em.21dtv.com/songs/60042888.mkv +侧田-头条新闻(演唱会),http://em.21dtv.com/songs/60042887.mkv +何佳宜+徐美丽-天天向上,http://em.21dtv.com/songs/60130073.mkv +黄圣依-天天向上,http://em.21dtv.com/songs/60042162.mkv +黄圣依-天天向上(演唱会),http://em.21dtv.com/songs/60042161.mkv +谭咏麟-天堂小说,http://em.21dtv.com/songs/60042115.mkv +降龙十八掌-天天想你,http://em.21dtv.com/songs/60128558.mkv +汪思妍-天天想你,http://em.21dtv.com/songs/60100261.mkv +沙宝亮+黄绮珊-天天想你,http://em.21dtv.com/songs/60098571.mkv +萧敬腾+林惠敏-天天想你,http://em.21dtv.com/songs/60094668.mkv +陈绮贞-天天想你(演唱会),http://em.21dtv.com/songs/60083901.mkv +吴歌-天天想你,http://em.21dtv.com/songs/60077903.mkv +汪洋-天天想你,http://em.21dtv.com/songs/60069877.mkv +许秋怡-偷偷想你,http://em.21dtv.com/songs/60042852.mkv +许嘉凌-天天想念,http://em.21dtv.com/songs/60042160.mkv +吴宪-天天想念,http://em.21dtv.com/songs/60042159.mkv +赵咏华-天天想你,http://em.21dtv.com/songs/60042158.mkv +张雨生-天天想你,http://em.21dtv.com/songs/60042157.mkv +刘德华-天天想你,http://em.21dtv.com/songs/60042156.mkv +韩红-天天想你,http://em.21dtv.com/songs/60042155.mkv +五月天-天天想你(演唱会),http://em.21dtv.com/songs/60042154.mkv +刘德华-天天想你(演唱会),http://em.21dtv.com/songs/60042153.mkv +杨钰莹-甜甜小妹,http://em.21dtv.com/songs/60042409.mkv +杨钰莹-甜甜小妹(伦巴),http://em.21dtv.com/songs/60042408.mkv +佚名-till there was you,http://em.21dtv.com/songs/60005803.mkv +SCOTTY MCCREERY-the trouble with girls,http://em.21dtv.com/songs/60066735.mkv +BRITNEY SPEARS-till the world ends,http://em.21dtv.com/songs/60061969.mkv +[Group] +groupName=十六万歌曲MV等 - 55 +许志安-太太太太(演唱会),http://em.21dtv.com/songs/60083865.mkv +祁隆-天天天天,http://em.21dtv.com/songs/60068710.mkv +佚名-天天天天,http://em.21dtv.com/songs/60042150.mkv +旺福乐团-天天天天,http://em.21dtv.com/songs/60042149.mkv +蔡琴-天天天天,http://em.21dtv.com/songs/60042148.mkv +郑中基+中坚份子-天天天天(演唱会),http://em.21dtv.com/songs/60042147.mkv +梁汉文-太太太太,http://em.21dtv.com/songs/60041353.mkv +徐伟贤+陈恩头-天天天使,http://em.21dtv.com/songs/60063208.mkv +BRUNO MARS-talking to the moon,http://em.21dtv.com/songs/60066731.mkv +张惠妹-天天天蓝,http://em.21dtv.com/songs/60086877.mkv +张萌-天天天蓝,http://em.21dtv.com/songs/60063389.mkv +潘越云-天天天蓝,http://em.21dtv.com/songs/60042146.mkv +RUBBER BAND-脱逃+沙滩(演唱会),http://em.21dtv.com/songs/60043019.mkv +张惠妹-time to say good-bye,http://em.21dtv.com/songs/60005812.mkv +SARAH BRIGHTMAN+ANDR-time to say goodbye,http://em.21dtv.com/songs/60005811.mkv +苏打绿-天天晴朗,http://em.21dtv.com/songs/60081148.mkv +JOHNNY MATHIS-the twelfth of never,http://em.21dtv.com/songs/60005703.mkv +张学友-this time next year,http://em.21dtv.com/songs/60005770.mkv +容祖儿+郑希怡-堂堂男人,http://em.21dtv.com/songs/60092514.mkv +拾参乐团-天堂娜娜,http://em.21dtv.com/songs/60042114.mkv +李明翰-听他们说,http://em.21dtv.com/songs/60081341.mkv +甲子慧-甜甜蜜蜜,http://em.21dtv.com/songs/60117061.mkv +周蕙-偷偷摸摸,http://em.21dtv.com/songs/60087604.mkv +刘韵+华娃-偷偷摸摸(演唱会),http://em.21dtv.com/songs/60083934.mkv +刘韵-偷偷摸摸,http://em.21dtv.com/songs/60042850.mkv +李克勤-偷偷摸摸,http://em.21dtv.com/songs/60042849.mkv +胡美仪+苏珊-偷偷摸摸(演唱会),http://em.21dtv.com/songs/60042848.mkv +圣女天团-till the morning light(演唱会),http://em.21dtv.com/songs/60005802.mkv +邓建民+雷有辉+邓祖德-铁塔凌云(演唱会),http://em.21dtv.com/songs/60083919.mkv +陈浩德-铁塔凌云(演唱会),http://em.21dtv.com/songs/60077935.mkv +许冠杰-铁塔凌云,http://em.21dtv.com/songs/60042493.mkv +徐小凤-铁塔凌云,http://em.21dtv.com/songs/60042492.mkv +曾航生-铁塔凌云,http://em.21dtv.com/songs/60042491.mkv +许冠杰-铁塔凌云(演唱会),http://em.21dtv.com/songs/60042490.mkv +田跃君-偷偷联系,http://em.21dtv.com/songs/60077974.mkv +彭永琛-天天乐天,http://em.21dtv.com/songs/60071188.mkv +TWINS-twinkle twinkle little star,http://em.21dtv.com/songs/60005967.mkv +佚名-twinkle twinkle litle star,http://em.21dtv.com/songs/60005966.mkv +蒋林刚-天天恋曲,http://em.21dtv.com/songs/60103553.mkv +方力申-拖拖拉拉,http://em.21dtv.com/songs/60043008.mkv +袁哲-天天快乐,http://em.21dtv.com/songs/60042143.mkv +吴天世+周祥-天天吉祥,http://em.21dtv.com/songs/60132290.mkv +哈辉-抬头见喜,http://em.21dtv.com/songs/60041290.mkv +叶丽仪-滔滔江水,http://em.21dtv.com/songs/60041534.mkv +尹光-太太缉私(演唱会),http://em.21dtv.com/songs/60041352.mkv +ATOMIC KITTEN-the tide is high,http://em.21dtv.com/songs/60005701.mkv +佚名-the thrill is gone(无原唱),http://em.21dtv.com/songs/60005700.mkv +佚名-this time its forever(无原唱),http://em.21dtv.com/songs/60005769.mkv +郭品超+杨家成-偷天换日,http://em.21dtv.com/songs/60090262.mkv +郭品超+杨家成+龙泽-偷天换日,http://em.21dtv.com/songs/60042837.mkv +谭咏麟+五月天-脱胎换骨,http://em.21dtv.com/songs/60134235.mkv +李炜-脱胎换骨,http://em.21dtv.com/songs/60105147.mkv +佚名-甜甜姑娘,http://em.21dtv.com/songs/60042404.mkv +汤潮-天堂姑娘,http://em.21dtv.com/songs/60042108.mkv +阿文-天堂飞雪,http://em.21dtv.com/songs/60106371.mkv +RUBBER BAND-天台飞人(演唱会),http://em.21dtv.com/songs/60042092.mkv +金城武-偷偷的醉,http://em.21dtv.com/songs/60042844.mkv +田震-天堂地狱,http://em.21dtv.com/songs/60091767.mkv +HIROCK乐团-天堂地狱(无原唱),http://em.21dtv.com/songs/60042107.mkv +王建杰-疼痛的心(无原唱),http://em.21dtv.com/songs/60041665.mkv +莫文蔚-天天锻炼,http://em.21dtv.com/songs/60042136.mkv +情深-偷偷的哭,http://em.21dtv.com/songs/60111920.mkv +冉青霞-偷偷的哭,http://em.21dtv.com/songs/60099100.mkv +陈玉建-偷偷的哭,http://em.21dtv.com/songs/60042843.mkv +高斌-忐忑的爱,http://em.21dtv.com/songs/60067466.mkv +丁当+严爵-偷偷的爱,http://em.21dtv.com/songs/60064986.mkv +麦穗-甜甜的爱,http://em.21dtv.com/songs/60042401.mkv +朱永飞-天堂草原,http://em.21dtv.com/songs/60091291.mkv +苏勒亚琪琪格+蒙克-天堂草原,http://em.21dtv.com/songs/60085790.mkv +龙凤之约-天堂草原,http://em.21dtv.com/songs/60083899.mkv +温博-天堂草原,http://em.21dtv.com/songs/60063069.mkv +ZZ WARD-til the casket drop,http://em.21dtv.com/songs/60074047.mkv +O.A.R-turn the car apound,http://em.21dtv.com/songs/60005960.mkv +陈洁仪-天堂边缘,http://em.21dtv.com/songs/60124644.mkv +GLORIA ESTEFAN-turn the beat around,http://em.21dtv.com/songs/60005959.mkv +佚名-take the a train(无原唱),http://em.21dtv.com/songs/60005453.mkv +刘思涵+曾昱嘉-偷偷暗示,http://em.21dtv.com/songs/60086890.mkv +胡龄萌-疼痛爱情,http://em.21dtv.com/songs/60123098.mkv +胡龄萌-疼痛爱情,http://em.21dtv.com/songs/60113985.mkv +梁朝伟-偷偷爱你,http://em.21dtv.com/songs/60042839.mkv +佚名-three times a lady,http://em.21dtv.com/songs/60005784.mkv +COMMODORES-three times a lady,http://em.21dtv.com/songs/60005783.mkv +苗苗-天山追月,http://em.21dtv.com/songs/60096457.mkv +杨丞琳-天使之翼,http://em.21dtv.com/songs/60081229.mkv +戴爱玲-天使之翼,http://em.21dtv.com/songs/60042088.mkv +斯琴高丽-天使之痛,http://em.21dtv.com/songs/60069876.mkv +赵薇-天使之名,http://em.21dtv.com/songs/60042087.mkv +佚名-唐山子民,http://em.21dtv.com/songs/60041499.mkv +金姗姗-铁山之恋,http://em.21dtv.com/songs/60124582.mkv +邰正宵-天使之恋,http://em.21dtv.com/songs/60097147.mkv +张翰-天使之泪,http://em.21dtv.com/songs/60081824.mkv +佚名-天使之恋,http://em.21dtv.com/songs/60042086.mkv +高胜美-天使之恋,http://em.21dtv.com/songs/60042085.mkv +颜楚衫-天使之歌,http://em.21dtv.com/songs/60088965.mkv +熊汝霖-天使之光,http://em.21dtv.com/songs/60042084.mkv +孟庭苇+杜玛-天使之歌,http://em.21dtv.com/songs/60042083.mkv +刘海波-天使在飞,http://em.21dtv.com/songs/60042074.mkv +成于申-泰山之巅,http://em.21dtv.com/songs/60105914.mkv +任贤齐+杨千嬅-天生注定,http://em.21dtv.com/songs/60042018.mkv +周笔畅-天使之城,http://em.21dtv.com/songs/60042082.mkv +张国荣-天使之爱,http://em.21dtv.com/songs/60042081.mkv +梅艳芳-同声一笑,http://em.21dtv.com/songs/60092938.mkv +CLINT BLACK-the shoes youre wearing,http://em.21dtv.com/songs/60005685.mkv +SHINE-天是一秒,http://em.21dtv.com/songs/60042089.mkv +齐秦+齐豫-天使与狼,http://em.21dtv.com/songs/60098964.mkv +费玉清-涛声依旧,http://em.21dtv.com/songs/60130764.mkv +阎飞翔-涛声依旧,http://em.21dtv.com/songs/60114848.mkv +高明骏-涛声依旧,http://em.21dtv.com/songs/60080145.mkv +陈浩德-涛声依旧(演唱会),http://em.21dtv.com/songs/60077836.mkv +李行亮-涛声依旧,http://em.21dtv.com/songs/60069864.mkv +卓依婷-涛声依旧,http://em.21dtv.com/songs/60041530.mkv +庄学忠-涛声依旧,http://em.21dtv.com/songs/60041529.mkv +毛宁-涛声依旧,http://em.21dtv.com/songs/60041528.mkv +肖尚佚-天生一对,http://em.21dtv.com/songs/60134138.mkv +张瀛仁-天生一对,http://em.21dtv.com/songs/60131412.mkv +陈少华+孟杨-天生一对,http://em.21dtv.com/songs/60118156.mkv +陈瑞-天生一对,http://em.21dtv.com/songs/60112359.mkv +晓依+灿烂阿龙-天生一对,http://em.21dtv.com/songs/60102285.mkv +杨韵禾-天生一对,http://em.21dtv.com/songs/60042017.mkv +许怀欣-天生一对,http://em.21dtv.com/songs/60042016.mkv +王栎鑫-天生一对,http://em.21dtv.com/songs/60042015.mkv +苏素-天生一对,http://em.21dtv.com/songs/60042014.mkv +姜华-天生一对,http://em.21dtv.com/songs/60042013.mkv +TWINS-天生一对,http://em.21dtv.com/songs/60042012.mkv +郑秀文-天生一半,http://em.21dtv.com/songs/60097145.mkv +郑秀文+Masta Mic-天生一半,http://em.21dtv.com/songs/60096514.mkv +乌兰托娅-天上西藏,http://em.21dtv.com/songs/60066343.mkv +郭凇男-天山雄鹰,http://em.21dtv.com/songs/60064965.mkv +阿桑古卡-天上雄鹰,http://em.21dtv.com/songs/60041994.mkv +刘耔彤-桃色新闻,http://em.21dtv.com/songs/60041606.mkv +刘璇-甜上心头,http://em.21dtv.com/songs/60042398.mkv +云龙-天山雪莲,http://em.21dtv.com/songs/60077885.mkv +弘岩-天山雪莲,http://em.21dtv.com/songs/60069873.mkv +梁一贞-特殊行动,http://em.21dtv.com/songs/60086868.mkv +巫启贤-铁石心肠,http://em.21dtv.com/songs/60042489.mkv +李翊君-铁石心肠,http://em.21dtv.com/songs/60042488.mkv +彭羚-天生温柔,http://em.21dtv.com/songs/60042008.mkv +潘晓峰-天山舞曲,http://em.21dtv.com/songs/60041971.mkv +SABRINA-to sir with love(演唱会),http://em.21dtv.com/songs/60074050.mkv +佚名-to sir with love,http://em.21dtv.com/songs/60005836.mkv +佚名-to sandy with love,http://em.21dtv.com/songs/60005834.mkv +王筱海-天生我刺,http://em.21dtv.com/songs/60125942.mkv +李克勤-天水围城(演唱会),http://em.21dtv.com/songs/60042091.mkv +杜昊-天生我才,http://em.21dtv.com/songs/60042009.mkv +戴爱玲-他是跳蚤,http://em.21dtv.com/songs/60041104.mkv +刘德华-天生天养,http://em.21dtv.com/songs/60042007.mkv +MCFLY-thats the truth,http://em.21dtv.com/songs/60073997.mkv +蓝又时-听说听说,http://em.21dtv.com/songs/60130719.mkv +AT17-同声同气,http://em.21dtv.com/songs/60092131.mkv +JASON DERULO-the skys the limit,http://em.21dtv.com/songs/60005689.mkv +曹轩宾-同手同脚,http://em.21dtv.com/songs/60101644.mkv +关喆-同手同脚,http://em.21dtv.com/songs/60095262.mkv +温岚-同手同脚,http://em.21dtv.com/songs/60042683.mkv +冷漠+云菲菲-贴身侍卫,http://em.21dtv.com/songs/60110002.mkv +BETTY EVERETT-the shoop shoop song,http://em.21dtv.com/songs/60005686.mkv +王丽达-天山思念,http://em.21dtv.com/songs/60118768.mkv +张靓颖+王铮亮-天书世界,http://em.21dtv.com/songs/60135260.mkv +张靓颖+王铮亮-天书世界,http://em.21dtv.com/songs/60111092.mkv +波拉-天上人间,http://em.21dtv.com/songs/60124202.mkv +晟瑶-天上人间,http://em.21dtv.com/songs/60115197.mkv +孔兰薰-天上人间,http://em.21dtv.com/songs/60089786.mkv +刘冰-天上人间,http://em.21dtv.com/songs/60089161.mkv +王菲-天上人间,http://em.21dtv.com/songs/60086872.mkv +莫旭秋-天上人间(演唱会),http://em.21dtv.com/songs/60077887.mkv +佚名-天上人间,http://em.21dtv.com/songs/60041989.mkv +古巨基-天上人间,http://em.21dtv.com/songs/60041988.mkv +费玉清-天上人间,http://em.21dtv.com/songs/60041987.mkv +陈少华-天上人间(演唱会),http://em.21dtv.com/songs/60041986.mkv +张智成-贴身情人,http://em.21dtv.com/songs/60042458.mkv +佚名-贴身情人,http://em.21dtv.com/songs/60042457.mkv +王子鸣-贴身情人,http://em.21dtv.com/songs/60042456.mkv +云龙-天山情话,http://em.21dtv.com/songs/60069872.mkv +陈文媛-天使情歌,http://em.21dtv.com/songs/60093471.mkv +仇泽+杨晗-通俗情歌,http://em.21dtv.com/songs/60077957.mkv +黄耀明-贪生怕死,http://em.21dtv.com/songs/60041421.mkv +BUSH-the sound of winter,http://em.21dtv.com/songs/60065706.mkv +TAYLOR SWIFT-the story of us,http://em.21dtv.com/songs/60060928.mkv +MICHAEL FRANTI+SPEAR-the sound of sunshine,http://em.21dtv.com/songs/60005692.mkv +佚名-the sound of music,http://em.21dtv.com/songs/60005691.mkv +容祖兒-桃色冒險,http://em.21dtv.com/songs/60092538.mkv +杨扎西-天上摩梭,http://em.21dtv.com/songs/60127091.mkv +蔡诗芸-天生慢熟,http://em.21dtv.com/songs/60042005.mkv +AKCENT-thats my name,http://em.21dtv.com/songs/60063766.mkv +韦小天-她是迷幻,http://em.21dtv.com/songs/60102926.mkv +程响-天生敏感,http://em.21dtv.com/songs/60116183.mkv +廖晶-天使魔鬼,http://em.21dtv.com/songs/60042065.mkv +SPEED-thats my fault,http://em.21dtv.com/songs/60073996.mkv +容中尔甲-天上拉萨,http://em.21dtv.com/songs/60041982.mkv +刘芮伊-天使恋人,http://em.21dtv.com/songs/60042062.mkv +崔子格-天山恋曲,http://em.21dtv.com/songs/60097143.mkv +叶岩-他伤了你,http://em.21dtv.com/songs/60121478.mkv +彝人传奇-天上凉都,http://em.21dtv.com/songs/60120539.mkv +颜婷+易兰-天上凉都,http://em.21dtv.com/songs/60114258.mkv +费玉清-天水流长,http://em.21dtv.com/songs/60042090.mkv +SWEETY-天使加油,http://em.21dtv.com/songs/60042058.mkv +艾怡良-逃生计划,http://em.21dtv.com/songs/60128337.mkv +艾怡良-逃生计划,http://em.21dtv.com/songs/60127325.mkv +佚名-the sweet heart tree,http://em.21dtv.com/songs/60005695.mkv +TOKYO D.-天生好手(无原唱),http://em.21dtv.com/songs/60042003.mkv +萧煌奇-天使蝴蝶(无原唱),http://em.21dtv.com/songs/60042056.mkv +卢凯彤-天色很暗,http://em.21dtv.com/songs/60110901.mkv +郑伊健-天煞孤星,http://em.21dtv.com/songs/60041967.mkv +郑伊健-天煞孤星(演唱会),http://em.21dtv.com/songs/60041966.mkv +谢霆锋-天煞孤星(演唱会),http://em.21dtv.com/songs/60041965.mkv +刘胜权-唐山姑娘,http://em.21dtv.com/songs/60111722.mkv +蒋大为-天山姑娘,http://em.21dtv.com/songs/60094679.mkv +金波-天使姑娘(演唱会),http://em.21dtv.com/songs/60042055.mkv +吴奇隆-天生孤独,http://em.21dtv.com/songs/60126693.mkv +吴奇隆-天生孤独,http://em.21dtv.com/songs/60121492.mkv +一东-痛似非痛,http://em.21dtv.com/songs/60093943.mkv +ENERGY-天生反骨,http://em.21dtv.com/songs/60042002.mkv +Trekkerz-天生发呆,http://em.21dtv.com/songs/60120251.mkv +巴哈尔古丽-天山儿女,http://em.21dtv.com/songs/60041968.mkv +誓言-挺身而出,http://em.21dtv.com/songs/60072469.mkv +王菲-天使的心,http://em.21dtv.com/songs/60091739.mkv +郑锦昌-唐山大兄(演唱会),http://em.21dtv.com/songs/60077829.mkv +麦德罗-唐山大兄(演唱会),http://em.21dtv.com/songs/60077828.mkv +郑锦昌-唐山大兄,http://em.21dtv.com/songs/60041498.mkv +余天-天生多情,http://em.21dtv.com/songs/60042001.mkv +左东川-天使的梦,http://em.21dtv.com/songs/60126822.mkv +T.R.Y-天使的泪,http://em.21dtv.com/songs/60085785.mkv +米亮-天使的脸,http://em.21dtv.com/songs/60042046.mkv +陈少华-天使的泪,http://em.21dtv.com/songs/60042043.mkv +庄心妍-他说的谎,http://em.21dtv.com/songs/60086862.mkv +德德玛-天上的风,http://em.21dtv.com/songs/60091212.mkv +黄家强-天生登对,http://em.21dtv.com/songs/60042000.mkv +王筝-天使的城,http://em.21dtv.com/songs/60110409.mkv +陈小义-天使的爱,http://em.21dtv.com/songs/60101559.mkv +路默依-天使的爱,http://em.21dtv.com/songs/60086874.mkv +敖都-天上草原,http://em.21dtv.com/songs/60069874.mkv +阎琰-天上草原,http://em.21dtv.com/songs/60067480.mkv +TWINS-同时重生,http://em.21dtv.com/songs/60066348.mkv +思未-泰商传奇,http://em.21dtv.com/songs/60106884.mkv +文剑-天山碧玉,http://em.21dtv.com/songs/60100067.mkv +黄婕-天使部落(无原唱),http://em.21dtv.com/songs/60042037.mkv +高雅欣+苏士为-天使不哭,http://em.21dtv.com/songs/60095279.mkv +姜易-天使不哭,http://em.21dtv.com/songs/60042034.mkv +幂雅-天生不凡,http://em.21dtv.com/songs/60133626.mkv +钟一宪+麦贝夷-天生不对,http://em.21dtv.com/songs/60077889.mkv +陈雷-贴身保镖,http://em.21dtv.com/songs/60109715.mkv +黄维德-突然之间,http://em.21dtv.com/songs/60042939.mkv +A Lin-天若有情,http://em.21dtv.com/songs/60128661.mkv +胡彦斌-天若有情,http://em.21dtv.com/songs/60122040.mkv +程悦-天若有情,http://em.21dtv.com/songs/60107938.mkv +西子-天若有情,http://em.21dtv.com/songs/60077884.mkv +袁凤瑛-天若有情,http://em.21dtv.com/songs/60041962.mkv +巫启贤-天若有情,http://em.21dtv.com/songs/60041961.mkv +江蕙-天若有情,http://em.21dtv.com/songs/60041960.mkv +袁凤瑛-天若有情(演唱会),http://em.21dtv.com/songs/60041959.mkv +余萍-天然氧吧,http://em.21dtv.com/songs/60125134.mkv +游小龙-天然氧吧,http://em.21dtv.com/songs/60113825.mkv +罗中旭+金元萱-突然心跳,http://em.21dtv.com/songs/60081939.mkv +罗中旭-突然心跳,http://em.21dtv.com/songs/60042938.mkv +金钟国-讨人喜欢,http://em.21dtv.com/songs/60041622.mkv +佚名-痛入心肝,http://em.21dtv.com/songs/60042813.mkv +郑秀文-痛入心扉,http://em.21dtv.com/songs/60134318.mkv +ROBBIE WILLIAMS-the road to mandalay,http://em.21dtv.com/songs/60005677.mkv +EMINEM-the real slim shady,http://em.21dtv.com/songs/60074023.mkv +温兆伦-投入生命,http://em.21dtv.com/songs/60077975.mkv +向蕙玲-天然ㄟ尚好,http://em.21dtv.com/songs/60087544.mkv +飞轮海-太热super hot,http://em.21dtv.com/songs/60041347.mkv +罗子淇-Trouble is a friend,http://em.21dtv.com/songs/60100942.mkv +BILLY JOEL-the river of dreams,http://em.21dtv.com/songs/60005674.mkv +黎明-突然念旧,http://em.21dtv.com/songs/60089071.mkv +黎明-突然念旧(演唱会),http://em.21dtv.com/songs/60042932.mkv +李玟-坦然面对,http://em.21dtv.com/songs/60041466.mkv +林俊杰-突然累了,http://em.21dtv.com/songs/60042931.mkv +PATTI LABELLE-the right kinda lover,http://em.21dtv.com/songs/60005673.mkv +马浚伟-突然假期,http://em.21dtv.com/songs/60093516.mkv +KAT.TUN-run for you,http://em.21dtv.com/songs/60062077.mkv +雁卿-突然分开,http://em.21dtv.com/songs/60042929.mkv +林一峰-突然独身(演唱会),http://em.21dtv.com/songs/60042928.mkv +容祖儿-突然单身,http://em.21dtv.com/songs/60042925.mkv +哈桑-天奇之缘,http://em.21dtv.com/songs/60127862.mkv +Kolor-铁拳之道,http://em.21dtv.com/songs/60121277.mkv +江琳琳-天青烟雨,http://em.21dtv.com/songs/60117883.mkv +关诗敏-天气预报,http://em.21dtv.com/songs/60069871.mkv +欧汉声-天桥涂鸭,http://em.21dtv.com/songs/60098539.mkv +欧汉声-天桥涂鸦,http://em.21dtv.com/songs/60097148.mkv +李俊英-谈情说爱,http://em.21dtv.com/songs/60093841.mkv +郑秀文+叶倩文-谈情说爱,http://em.21dtv.com/songs/60041450.mkv +张国荣-谈情说爱,http://em.21dtv.com/songs/60041449.mkv +佚名-谈情说爱,http://em.21dtv.com/songs/60041448.mkv +梁雁翎-谈情说爱,http://em.21dtv.com/songs/60041447.mkv +黎瑞恩-谈情说爱,http://em.21dtv.com/songs/60041446.mkv +杜德伟-谈情说爱,http://em.21dtv.com/songs/60041445.mkv +安又琪-谈情说爱,http://em.21dtv.com/songs/60041444.mkv +张国荣-谈情说爱(演唱会),http://em.21dtv.com/songs/60041443.mkv +叶倩文-谈情说爱(演唱会),http://em.21dtv.com/songs/60041442.mkv +叶倩文+赵颂茹-谈情说爱(演唱会),http://em.21dtv.com/songs/60041441.mkv +谢小丽-痛切孺怀,http://em.21dtv.com/songs/60042812.mkv +蔡浩-天桥情缘,http://em.21dtv.com/songs/60131792.mkv +傲艺-天气女孩,http://em.21dtv.com/songs/60107504.mkv +方伊琪-台前幕后(演唱会),http://em.21dtv.com/songs/60077805.mkv +利绮-天气冷了,http://em.21dtv.com/songs/60089686.mkv +辛晓琪-谈情看爱,http://em.21dtv.com/songs/60041440.mkv +古巨基-天气会变,http://em.21dtv.com/songs/60041951.mkv +郑伊健-天气的错,http://em.21dtv.com/songs/60041950.mkv +罗时丰-同齐承担,http://em.21dtv.com/songs/60069884.mkv +邹文正+池希-同情别恋,http://em.21dtv.com/songs/60129660.mkv +容祖儿-天气报告,http://em.21dtv.com/songs/60092521.mkv +SWEETY-淘气爱人,http://em.21dtv.com/songs/60041613.mkv +群星-突破自我,http://em.21dtv.com/songs/60042924.mkv +容中尔甲-塘埔之歌,http://em.21dtv.com/songs/60110161.mkv +J.Arie-天平先生,http://em.21dtv.com/songs/60118264.mkv +金灿-太平心灯,http://em.21dtv.com/songs/60126300.mkv +边品宪-太平天下,http://em.21dtv.com/songs/60110565.mkv +亦帆-踏破铁鞋,http://em.21dtv.com/songs/60093807.mkv +毛阿敏-太平天国,http://em.21dtv.com/songs/60041344.mkv +黄耀明-太平山下,http://em.21dtv.com/songs/60097165.mkv +佚名-题帕三绝,http://em.21dtv.com/songs/60041697.mkv +徐誉滕-铁皮青蛙,http://em.21dtv.com/songs/60080320.mkv +柯以敏-The Power Of Love,http://em.21dtv.com/songs/60080604.mkv +GABRIELLE APLIN-the power of love,http://em.21dtv.com/songs/60074021.mkv +黄绮珊-the power of love,http://em.21dtv.com/songs/60074020.mkv +THE EVERLY BROTHERS-the price of love,http://em.21dtv.com/songs/60005668.mkv +CELINE DION-the power of love,http://em.21dtv.com/songs/60005663.mkv +张惠妹-the power of love(演唱会),http://em.21dtv.com/songs/60005662.mkv +邓丽君-the power of love(演唱会),http://em.21dtv.com/songs/60005661.mkv +MADONNA-the power of goodbye,http://em.21dtv.com/songs/60005660.mkv +川北-踏平东京,http://em.21dtv.com/songs/60069858.mkv +佚名-times of your life,http://em.21dtv.com/songs/60005817.mkv +王若琳-times of your life,http://em.21dtv.com/songs/60005816.mkv +RANDY NEWMAN-time of your life,http://em.21dtv.com/songs/60005809.mkv +佚名-the one you love,http://em.21dtv.com/songs/60005655.mkv +DIXIE CHICKS-top of the world,http://em.21dtv.com/songs/60066742.mkv +R.CARPENTER-top of the world,http://em.21dtv.com/songs/60005889.mkv +CARPENTERS-top of the world,http://em.21dtv.com/songs/60005888.mkv +R.CARPENTER-top of the world(演唱会),http://em.21dtv.com/songs/60005887.mkv +JASON ALDEAN-tattoos on this town,http://em.21dtv.com/songs/60065704.mkv +佚名-time of the season,http://em.21dtv.com/songs/60005808.mkv +REBA MCENTIRE-turn on the radio,http://em.21dtv.com/songs/60074076.mkv +RAINBOW-temple of the king,http://em.21dtv.com/songs/60005498.mkv +佚名-tracks of my tears,http://em.21dtv.com/songs/60005912.mkv +TOYLOR SWIFT-teardrops on my guitar,http://em.21dtv.com/songs/60005470.mkv +Da+iCE-Toki,http://em.21dtv.com/songs/60104663.mkv +佚名-this ones for you,http://em.21dtv.com/songs/60005768.mkv +ENRIQUE IGLESIAS-tired of being sorry,http://em.21dtv.com/songs/60005822.mkv +佚名-that old black magic(无原唱),http://em.21dtv.com/songs/60005522.mkv +A.GREEN-tired of being alone(无原唱),http://em.21dtv.com/songs/60005821.mkv +黄俊融-童年以上,http://em.21dtv.com/songs/60126468.mkv +张睿-童年小镇,http://em.21dtv.com/songs/60081749.mkv +菩慧阿佳-童年小船,http://em.21dtv.com/songs/60118876.mkv +张杰-听你听我(我是歌手第二期),http://em.21dtv.com/songs/60096284.mkv +张惠妹-听你听我,http://em.21dtv.com/songs/60042560.mkv +黎明-替你伤心,http://em.21dtv.com/songs/60041713.mkv +郁钧剑-童年四季,http://em.21dtv.com/songs/60042765.mkv +佚名-天女散花,http://em.21dtv.com/songs/60041946.mkv +吴亚玲-天女散花,http://em.21dtv.com/songs/60041945.mkv +汪明荃-天女散花(演唱会),http://em.21dtv.com/songs/60041944.mkv +胡美仪-天女散花(演唱会),http://em.21dtv.com/songs/60041943.mkv +胡东清-听你说过,http://em.21dtv.com/songs/60042559.mkv +曾心梅+陈中-疼你入心,http://em.21dtv.com/songs/60041662.mkv +莫文蔚-童年末日(演唱会),http://em.21dtv.com/songs/60042761.mkv +THE TING TINGS-thats not my name,http://em.21dtv.com/songs/60005527.mkv +张梦弘-听你流浪,http://em.21dtv.com/songs/60077945.mkv +COOKIES-贪你可爱,http://em.21dtv.com/songs/60041420.mkv +黄莺莺-讨你欢心,http://em.21dtv.com/songs/60041620.mkv +金海心-听你回答,http://em.21dtv.com/songs/60042556.mkv +刘军+田景宏-童年伙伴,http://em.21dtv.com/songs/60083931.mkv +张信哲-疼你的心,http://em.21dtv.com/songs/60041657.mkv +钟一宪+麦贝夷-拖泥带水,http://em.21dtv.com/songs/60066353.mkv +佚名-疼你的人,http://em.21dtv.com/songs/60041656.mkv +甘萍-疼你的人,http://em.21dtv.com/songs/60041655.mkv +王绎龙-童年的梦,http://em.21dtv.com/songs/60103463.mkv +田震-童年的梦,http://em.21dtv.com/songs/60088358.mkv +童唱-童年的梦,http://em.21dtv.com/songs/60042758.mkv +蔡小虎-挺你到底,http://em.21dtv.com/songs/60042640.mkv +TANK-挺你到底,http://em.21dtv.com/songs/60042639.mkv +佚名-the night chicago died,http://em.21dtv.com/songs/60005647.mkv +邓健泓-甜蜜租约,http://em.21dtv.com/songs/60042395.mkv +古天乐-天命最高,http://em.21dtv.com/songs/60110908.mkv +古天乐-天命再高,http://em.21dtv.com/songs/60041938.mkv +苏伊沫-甜蜜异想,http://em.21dtv.com/songs/60068712.mkv +草蜢-铁幕诱惑(演唱会),http://em.21dtv.com/songs/60077934.mkv +郭富城-铁幕诱惑,http://em.21dtv.com/songs/60042482.mkv +郑少秋-铁幕诱惑(演唱会),http://em.21dtv.com/songs/60042481.mkv +郭富城-铁幕诱惑(演唱会),http://em.21dtv.com/songs/60042480.mkv +183CLUB-甜蜜约定,http://em.21dtv.com/songs/60042394.mkv +范玮琪-他没有错,http://em.21dtv.com/songs/60041088.mkv +刘德强-同命相连,http://em.21dtv.com/songs/60042676.mkv +刘德华-天马行空,http://em.21dtv.com/songs/60041936.mkv +林子良-天马行空,http://em.21dtv.com/songs/60041935.mkv +王媛渊-甜蜜信号,http://em.21dtv.com/songs/60083913.mkv +4MEN+MI-that man that woman,http://em.21dtv.com/songs/60073995.mkv +潘迪华-甜蜜甜蜜(演唱会),http://em.21dtv.com/songs/60042393.mkv +SOULJA BOY-turn my swag on,http://em.21dtv.com/songs/60074075.mkv +丁菲飞-甜蜜世界,http://em.21dtv.com/songs/60042392.mkv +林玉英-头毛试火,http://em.21dtv.com/songs/60042884.mkv +莫文蔚-甜美生活,http://em.21dtv.com/songs/60042358.mkv +达明一派-甜美生活(演唱会),http://em.21dtv.com/songs/60042357.mkv +HKT-太木人道,http://em.21dtv.com/songs/60080887.mkv +丁维伟+余森-甜蜜情歌,http://em.21dtv.com/songs/60097422.mkv +丁维伟-甜蜜情歌,http://em.21dtv.com/songs/60086883.mkv +刘德华-同名男子,http://em.21dtv.com/songs/60092350.mkv +戴佩妮-透明玫瑰,http://em.21dtv.com/songs/60042912.mkv +大哲+云菲菲-甜蜜恋曲,http://em.21dtv.com/songs/60068711.mkv +MC HOTDOG-他们觉得,http://em.21dtv.com/songs/60077799.mkv +莫文蔚-the man i love,http://em.21dtv.com/songs/60074017.mkv +S.H.E-甜蜜回忆,http://em.21dtv.com/songs/60090425.mkv +林依晨-甜蜜花园,http://em.21dtv.com/songs/60042377.mkv +关心妍-甜美谎言,http://em.21dtv.com/songs/60042356.mkv +雨夜-天漠胡杨,http://em.21dtv.com/songs/60041939.mkv +邱泽-他们很忙,http://em.21dtv.com/songs/60041095.mkv +刘力扬+TANK-天马行空,http://em.21dtv.com/songs/60087384.mkv +佚名-the me from mahogany,http://em.21dtv.com/songs/60005631.mkv +HITA-天命风流,http://em.21dtv.com/songs/60068709.mkv +童可可-他们都说,http://em.21dtv.com/songs/60114716.mkv +童可可-他们都说,http://em.21dtv.com/songs/60080278.mkv +王祝海-甜蜜的你,http://em.21dtv.com/songs/60121936.mkv +张娜拉-甜蜜的梦,http://em.21dtv.com/songs/60042368.mkv +阿桑古卡-甜蜜的梦,http://em.21dtv.com/songs/60042367.mkv +张娜拉-甜美的梦,http://em.21dtv.com/songs/60042354.mkv +阿爆+BRANDY-甜蜜的家,http://em.21dtv.com/songs/60042365.mkv +誓言-甜蜜的毒,http://em.21dtv.com/songs/60042363.mkv +曹方-透明对白(演唱会),http://em.21dtv.com/songs/60042911.mkv +陈慧琳-天脉传奇,http://em.21dtv.com/songs/60041937.mkv +JESSICA SIMPSON-take my breath away,http://em.21dtv.com/songs/60066730.mkv +BERLIN-take my breath away,http://em.21dtv.com/songs/60066729.mkv +佚名-take my breath away,http://em.21dtv.com/songs/60005449.mkv +EMMA BUNTON-take my breath away,http://em.21dtv.com/songs/60005448.mkv +陈玉建+王语心-甜蜜爱情,http://em.21dtv.com/songs/60108982.mkv +胡小宝-甜蜜爱情,http://em.21dtv.com/songs/60042360.mkv +ONE DIRECTION-tell me a lie,http://em.21dtv.com/songs/60073984.mkv +顾凯-天籁之音,http://em.21dtv.com/songs/60100640.mkv +原子邦妮-天亮之前,http://em.21dtv.com/songs/60127795.mkv +佚名-天伦之乐,http://em.21dtv.com/songs/60041934.mkv +王尧-痛了自己,http://em.21dtv.com/songs/60042810.mkv +潘秀琼-桃李争春(演唱会),http://em.21dtv.com/songs/60077846.mkv +方伊琪-桃李争春(演唱会),http://em.21dtv.com/songs/60077845.mkv +吕珊-桃李争春,http://em.21dtv.com/songs/60041605.mkv +白光-桃李争春,http://em.21dtv.com/songs/60041604.mkv +阿兰-天籁之爱,http://em.21dtv.com/songs/60126343.mkv +胡斌-天籁之爱,http://em.21dtv.com/songs/60117137.mkv +胡斌-天籁之爱,http://em.21dtv.com/songs/60071181.mkv +李嘉石-天籁之爱,http://em.21dtv.com/songs/60066342.mkv +容中尔甲+旺姆-天籁之爱,http://em.21dtv.com/songs/60064960.mkv +群星-天籁之爱,http://em.21dtv.com/songs/60061628.mkv +巴桑拉姆-天籁悠扬,http://em.21dtv.com/songs/60131378.mkv +萨顶顶-唐拉雅秀,http://em.21dtv.com/songs/60061619.mkv +柯以敏-天亮以前(演唱会),http://em.21dtv.com/songs/60041923.mkv +佚名-to love you more,http://em.21dtv.com/songs/60005832.mkv +胡歌-天亮以后,http://em.21dtv.com/songs/60041920.mkv +张萌萌-天蓝云淡,http://em.21dtv.com/songs/60068708.mkv +胡夏-脱离现实,http://em.21dtv.com/songs/60112157.mkv +THE TOKENS-the lion sleeps tonight,http://em.21dtv.com/songs/60005619.mkv +谢霆锋-逃离世界,http://em.21dtv.com/songs/60041552.mkv +任贤齐-逃离色彩(无原唱),http://em.21dtv.com/songs/60041551.mkv +平安-天蓝如海,http://em.21dtv.com/songs/60080683.mkv +肖亮-天籁情歌,http://em.21dtv.com/songs/60066341.mkv +搞笑罗宾-天老情长,http://em.21dtv.com/songs/60131461.mkv +陈珊妮-天冷怕黑(演唱会)(无原唱),http://em.21dtv.com/songs/60041906.mkv +东浩-特朗普乖,http://em.21dtv.com/songs/60128735.mkv +佚名-the look of love,http://em.21dtv.com/songs/60005627.mkv +陈松伶-同龄女子(无原唱),http://em.21dtv.com/songs/60042675.mkv +江志丰-提拉米苏,http://em.21dtv.com/songs/60108663.mkv +肉孜阿木提-塔里木河,http://em.21dtv.com/songs/60041185.mkv +张卫健-铁路恋曲,http://em.21dtv.com/songs/60042479.mkv +李智-铜陵恋歌,http://em.21dtv.com/songs/60117816.mkv +童唱-the little lndian boys,http://em.21dtv.com/songs/60005620.mkv +伊琳-天亮就走,http://em.21dtv.com/songs/60041912.mkv +EDITEC-逃离寂寞(无原唱),http://em.21dtv.com/songs/60041550.mkv +佚名-the lady in red,http://em.21dtv.com/songs/60005613.mkv +TWINS-ten little indian boys,http://em.21dtv.com/songs/60005503.mkv +张纹铭-贪恋红尘,http://em.21dtv.com/songs/60068700.mkv +周艳泓-田螺姑娘,http://em.21dtv.com/songs/60112583.mkv +吴宗宪-脱离轨道,http://em.21dtv.com/songs/60043018.mkv +张洪量+朱虹-踏浪而行(演唱会),http://em.21dtv.com/songs/60041202.mkv +萧煌奇-停了的钟,http://em.21dtv.com/songs/60122072.mkv +萧煌奇-停了的钟,http://em.21dtv.com/songs/60120913.mkv +冈林-突来的雨,http://em.21dtv.com/songs/60101926.mkv +荒山亮-天雷地火,http://em.21dtv.com/songs/60118017.mkv +萧亚轩-天雷地火,http://em.21dtv.com/songs/60106238.mkv +萧亚轩-天雷地火,http://em.21dtv.com/songs/60099468.mkv +陈亚兰-天龙传奇,http://em.21dtv.com/songs/60085782.mkv +凤凰传奇-天籁传奇,http://em.21dtv.com/songs/60041895.mkv +周璇-桃李春风,http://em.21dtv.com/songs/60041603.mkv +浪花兄弟-痛了才懂,http://em.21dtv.com/songs/60042809.mkv +李娟-the legend becomes history,http://em.21dtv.com/songs/60005616.mkv +信乐团+赖水清-天龙八部,http://em.21dtv.com/songs/60097144.mkv +谢雨欣-天龙八步,http://em.21dtv.com/songs/60092097.mkv +MICHAEL BOLTON-time love and tenderness,http://em.21dtv.com/songs/60005807.mkv +NE YO+RICK ROSS-think like a man,http://em.21dtv.com/songs/60066736.mkv +郭宏杰-太空之恋,http://em.21dtv.com/songs/60130798.mkv +郭宴-天空之城,http://em.21dtv.com/songs/60135827.mkv +Dough boy+侧田-天空之城,http://em.21dtv.com/songs/60133192.mkv +马剑芬+马旭东-天空之城,http://em.21dtv.com/songs/60127593.mkv +李志-天空之城,http://em.21dtv.com/songs/60127011.mkv +蒋敦豪-天空之城,http://em.21dtv.com/songs/60124432.mkv +李志-天空之城,http://em.21dtv.com/songs/60083887.mkv +郭燕-天空之城,http://em.21dtv.com/songs/60041891.mkv +孙露-痛快人生,http://em.21dtv.com/songs/60133566.mkv +林依轮-腾空梦想,http://em.21dtv.com/songs/60102383.mkv +张楚-天空角落,http://em.21dtv.com/songs/60099233.mkv +宇宙人-太空警察,http://em.21dtv.com/songs/60041333.mkv +苏路-头壳坏去,http://em.21dtv.com/songs/60062926.mkv +王曼棋-天空海阔,http://em.21dtv.com/songs/60112113.mkv +李克勤-天空海阔,http://em.21dtv.com/songs/60041883.mkv +乐小虎-天空挂念,http://em.21dtv.com/songs/60125081.mkv +姜玉阳-天空挂念,http://em.21dtv.com/songs/60119402.mkv +郑伦境+嘉龄-同款的我,http://em.21dtv.com/songs/60042670.mkv +雷婷-痛哭的人,http://em.21dtv.com/songs/60134436.mkv +卜学亮-痛哭的人,http://em.21dtv.com/songs/60090768.mkv +伍佰-痛哭的人(演唱会),http://em.21dtv.com/songs/60042800.mkv +姜育恒-痛快的歌,http://em.21dtv.com/songs/60042808.mkv +贺敬轩-他靠不住,http://em.21dtv.com/songs/60126221.mkv +夏天-太空堡垒,http://em.21dtv.com/songs/60125337.mkv +胡彦斌+SE7EN+刘翔-田径之歌,http://em.21dtv.com/songs/60042336.mkv +张书瑶-听见雨哭,http://em.21dtv.com/songs/60129059.mkv +东方浪云-天街小雪,http://em.21dtv.com/songs/60041870.mkv +她她-她剪她发,http://em.21dtv.com/songs/60132338.mkv +黄大炜-同进同出,http://em.21dtv.com/songs/60042668.mkv +浩角翔起-淘金岁月,http://em.21dtv.com/songs/60100284.mkv +S.H.E-他就是他,http://em.21dtv.com/songs/60041087.mkv +金姗姗-土家妹子,http://em.21dtv.com/songs/60126293.mkv +华永芳-土家妹子,http://em.21dtv.com/songs/60109200.mkv +邓超予-土家妹子,http://em.21dtv.com/songs/60108913.mkv +辛晓琪-听寂寞说,http://em.21dtv.com/songs/60069882.mkv +吉克杰拉+赵艺涵-听见凉山,http://em.21dtv.com/songs/60085798.mkv +Jooyoung-听见了吗,http://em.21dtv.com/songs/60117465.mkv +小男孩乐团-天降辣妹,http://em.21dtv.com/songs/60112645.mkv +小男孩乐团-天降辣妹,http://em.21dtv.com/songs/60111830.mkv +张惠妹-听见了吗,http://em.21dtv.com/songs/60042548.mkv +卢广仲-听见了吗,http://em.21dtv.com/songs/60042547.mkv +姚安琪-甜姐辣妹,http://em.21dtv.com/songs/60042353.mkv +2MORO-塔基拉bon,http://em.21dtv.com/songs/60041179.mkv +麦洁文-唐吉珂德,http://em.21dtv.com/songs/60041494.mkv +焦洋-天降吉祥,http://em.21dtv.com/songs/60107043.mkv +卢巧音-同居角落(演唱会),http://em.21dtv.com/songs/60042669.mkv +陈如山-唐吉诃德,http://em.21dtv.com/songs/60104550.mkv +胡派-天际传情,http://em.21dtv.com/songs/60106211.mkv +THE ROMANTICS-talking in your sleep,http://em.21dtv.com/songs/60005461.mkv +SHANIA TWAIN-today is your day,http://em.21dtv.com/songs/60060932.mkv +TWINS-this is the way,http://em.21dtv.com/songs/60005757.mkv +佚名-tiger in the rain,http://em.21dtv.com/songs/60005798.mkv +OUTASIGHT-tonight is the night,http://em.21dtv.com/songs/60069152.mkv +佚名-tender is the night(无原唱),http://em.21dtv.com/songs/60005504.mkv +AMY MACDONALD-this is the life,http://em.21dtv.com/songs/60082368.mkv +N SYNC-this i promise you,http://em.21dtv.com/songs/60005754.mkv +佚名-this is my song,http://em.21dtv.com/songs/60005756.mkv +EDWARD MAYA-this is my life,http://em.21dtv.com/songs/60074039.mkv +ENRIQUE IGLESIAS-tonight im lovin you,http://em.21dtv.com/songs/60005861.mkv +HOOBASTANK-this is gonna hurt,http://em.21dtv.com/songs/60074038.mkv +佚名-together in electric dreams,http://em.21dtv.com/songs/60005848.mkv +LENKA-trouble is a friend,http://em.21dtv.com/songs/60068002.mkv +黄征-天黑之前,http://em.21dtv.com/songs/60072450.mkv +王百合-天河之恋,http://em.21dtv.com/songs/60119822.mkv +刘捷+练凝-天海之恋,http://em.21dtv.com/songs/60041839.mkv +严艺丹-唐凰一梦,http://em.21dtv.com/songs/60077827.mkv +蔡佳莹-昙华一梦,http://em.21dtv.com/songs/60041431.mkv +谢佳-桃花依旧,http://em.21dtv.com/songs/60135743.mkv +黄龄-桃花缘记,http://em.21dtv.com/songs/60132019.mkv +陈依桐-童话遐想,http://em.21dtv.com/songs/60085806.mkv +薛家燕-同贺新春,http://em.21dtv.com/songs/60093128.mkv +群星-同贺新春,http://em.21dtv.com/songs/60042667.mkv +佚名-the hawaiian wedding song,http://em.21dtv.com/songs/60005606.mkv +吴木-天还未光,http://em.21dtv.com/songs/60115044.mkv +张韶涵-头号甜心,http://em.21dtv.com/songs/60042881.mkv +王佩-天黑天蓝,http://em.21dtv.com/songs/60041857.mkv +杜德伟-talking heart to heart,http://em.21dtv.com/songs/60005460.mkv +巨姗姗-童话世界,http://em.21dtv.com/songs/60042742.mkv +莫艳琳-童话世界(演唱会),http://em.21dtv.com/songs/60042741.mkv +佚名-桃花深处,http://em.21dtv.com/songs/60041586.mkv +林心如-投怀送抱,http://em.21dtv.com/songs/60042894.mkv +韩红-谈何容易,http://em.21dtv.com/songs/60099617.mkv +郑中基-谈何容易,http://em.21dtv.com/songs/60041434.mkv +王识贤+孙淑媚-疼乎入心,http://em.21dtv.com/songs/60041653.mkv +WOW-头号人物,http://em.21dtv.com/songs/60042880.mkv +吕继宏-天河热土,http://em.21dtv.com/songs/60041842.mkv +陈慧琳-铁汉柔情,http://em.21dtv.com/songs/60077933.mkv +张语格-天黑日记,http://em.21dtv.com/songs/60128001.mkv +SNH48-天黑日记,http://em.21dtv.com/songs/60124994.mkv +朱梓骁-桃花奇缘,http://em.21dtv.com/songs/60068701.mkv +By2-桃花旗袍,http://em.21dtv.com/songs/60133177.mkv +By2-桃花旗袍,http://em.21dtv.com/songs/60131041.mkv +187INC+春风+Right Eye-土豪情歌,http://em.21dtv.com/songs/60131024.mkv +暖调音乐组合-太湖情歌,http://em.21dtv.com/songs/60122797.mkv +一绫+王中平-讨海情歌,http://em.21dtv.com/songs/60116493.mkv +刘转亮-土豪情歌,http://em.21dtv.com/songs/60080536.mkv +MCFLY-the heart never lies,http://em.21dtv.com/songs/60005607.mkv +苗苗-桃花妹子,http://em.21dtv.com/songs/60083873.mkv +达明一派-天花乱坠(演唱会),http://em.21dtv.com/songs/60041863.mkv +AT17-天花乱坠(演唱会),http://em.21dtv.com/songs/60041862.mkv +胡瓜-天花乱坠(无原唱),http://em.21dtv.com/songs/60041861.mkv +李建科-桃花流水,http://em.21dtv.com/songs/60067470.mkv +扎扎-童话恋人,http://em.21dtv.com/songs/60107754.mkv +FAITH HILL-thats how love moves,http://em.21dtv.com/songs/60005524.mkv +甘国卫+胡美仪-桃红柳绿,http://em.21dtv.com/songs/60041561.mkv +韩雷-桃花开了,http://em.21dtv.com/songs/60041581.mkv +风之翼-天皇巨星(演唱会),http://em.21dtv.com/songs/60041867.mkv +TWINS-桃红吉他,http://em.21dtv.com/songs/60041560.mkv +李玉和-桃花姐妹,http://em.21dtv.com/songs/60041577.mkv +林姗-桃花紧来,http://em.21dtv.com/songs/60041578.mkv +李雨寿-童话季节,http://em.21dtv.com/songs/60077966.mkv +佚名-桃花红红(无原唱),http://em.21dtv.com/songs/60041568.mkv +TWINS-童话故事,http://em.21dtv.com/songs/60042736.mkv +李亮超+叶钟晴-童话国境,http://em.21dtv.com/songs/60081051.mkv +林强-桃花过渡,http://em.21dtv.com/songs/60041567.mkv +莫文蔚-头号粉丝,http://em.21dtv.com/songs/60042879.mkv +詹雅雯-退回的信,http://em.21dtv.com/songs/60042980.mkv +殷秀梅-天荒地老,http://em.21dtv.com/songs/60091540.mkv +荒山亮-天荒地老,http://em.21dtv.com/songs/60041866.mkv +陈秀雯-天荒地老(演唱会),http://em.21dtv.com/songs/60041865.mkv +怡然+李青-桃花渡口,http://em.21dtv.com/songs/60135293.mkv +王馨-桃花渡口,http://em.21dtv.com/songs/60128249.mkv +王馨-桃花渡口,http://em.21dtv.com/songs/60117932.mkv +童安格-听海的歌,http://em.21dtv.com/songs/60042539.mkv +王雪晶+小妮妮-桃花搭渡,http://em.21dtv.com/songs/60022612.mkv +于青-太湖唱晚,http://em.21dtv.com/songs/60113234.mkv +王洪兰+魏瑛侠-天海长城(演唱会),http://em.21dtv.com/songs/60041838.mkv +SHELLY佳-童话般语,http://em.21dtv.com/songs/60085805.mkv +蒋蒋-谈何悲伤,http://em.21dtv.com/songs/60112941.mkv +BILLY JOEL-tell her about it,http://em.21dtv.com/songs/60005477.mkv +蔡义德-天公仔子,http://em.21dtv.com/songs/60079872.mkv +吴是闳-痛过之后,http://em.21dtv.com/songs/60107579.mkv +陈凯欣+叶诺帆-探戈之歌,http://em.21dtv.com/songs/60133038.mkv +蓝宝石少女-糖果炸弹,http://em.21dtv.com/songs/60077834.mkv +罗敏庄+谭伟权-天国之边(演唱会),http://em.21dtv.com/songs/60077871.mkv +黑妹+郑世豪-天各一方(演唱会),http://em.21dtv.com/songs/60077870.mkv +YY-天各一方,http://em.21dtv.com/songs/60069869.mkv +杨钰莹-天各一方,http://em.21dtv.com/songs/60041820.mkv +刘德华-天各一方,http://em.21dtv.com/songs/60041819.mkv +张伟文+李丽蕊-天各一方(演唱会),http://em.21dtv.com/songs/60041818.mkv +杨钰莹-天各一方(演唱会),http://em.21dtv.com/songs/60041817.mkv +罗逻圣-天高云淡,http://em.21dtv.com/songs/60122007.mkv +王艺潼-天高云淡,http://em.21dtv.com/songs/60041816.mkv +王美莲-脱轨演出,http://em.21dtv.com/songs/60043016.mkv +小曲儿-踏歌寻方,http://em.21dtv.com/songs/60127920.mkv +REBECCA FERGUSON-too good to lose,http://em.21dtv.com/songs/60074057.mkv +江蕙-探戈探戈,http://em.21dtv.com/songs/60041475.mkv +许嵩-她告诉我,http://em.21dtv.com/songs/60041154.mkv +彭炽权-唐宫秋怨(戏曲),http://em.21dtv.com/songs/60092693.mkv +宋祖英-踏歌起舞(演唱会),http://em.21dtv.com/songs/60041194.mkv +肖央+小沈阳+乔杉+艾伦+常远-泰国情哥,http://em.21dtv.com/songs/60130665.mkv +黄明志(Namewee)-泰国情哥,http://em.21dtv.com/songs/60117414.mkv +黄明志-泰国情歌,http://em.21dtv.com/songs/60096569.mkv +黄明志-泰国情哥,http://em.21dtv.com/songs/60077823.mkv +黑龙-痛改前飞,http://em.21dtv.com/songs/60122314.mkv +佚名-the glory of love,http://em.21dtv.com/songs/60005598.mkv +佚名-the gift of love,http://em.21dtv.com/songs/60005595.mkv +关心妍-the game of love(演唱会),http://em.21dtv.com/songs/60005594.mkv +肖淑平-泰国你好,http://em.21dtv.com/songs/60097370.mkv +王欣+王译-涛哥你好,http://em.21dtv.com/songs/60088304.mkv +雪村-涛哥你好,http://em.21dtv.com/songs/60041526.mkv +EQ群星-甜过梦想,http://em.21dtv.com/songs/60069879.mkv +佚名-there goes my everything,http://em.21dtv.com/songs/60005739.mkv +南征北战-天高路远,http://em.21dtv.com/songs/60130139.mkv +南征北战-天高路远,http://em.21dtv.com/songs/60128858.mkv +张继心-踏歌丽江,http://em.21dtv.com/songs/60096081.mkv +达坡玛吉-踏歌丽江,http://em.21dtv.com/songs/60041193.mkv +德乾旺姆-唐古拉风,http://em.21dtv.com/songs/60041493.mkv +万芳-铁罐咖啡,http://em.21dtv.com/songs/60042476.mkv +黄耀明-天国近了(演唱会),http://em.21dtv.com/songs/60041837.mkv +凌东明+冯锦娟-唐宫恨史,http://em.21dtv.com/songs/60041491.mkv +丁紫-痛个干脆,http://em.21dtv.com/songs/60109919.mkv +蒋鑫怡-糖果发霉,http://em.21dtv.com/songs/60064947.mkv +兰旗儿-踏歌而来,http://em.21dtv.com/songs/60067463.mkv +冷漠-听歌的人,http://em.21dtv.com/songs/60115702.mkv +李沅帮-天高地厚,http://em.21dtv.com/songs/60100149.mkv +萧煌奇+杨培安-天高地厚,http://em.21dtv.com/songs/60098731.mkv +杨培安+萧煌奇-天高地厚,http://em.21dtv.com/songs/60097149.mkv +林军-天高地厚,http://em.21dtv.com/songs/60085775.mkv +信乐团-天高地厚,http://em.21dtv.com/songs/60041815.mkv +杜德伟-天公地道,http://em.21dtv.com/songs/60091382.mkv +群星-天官赐福,http://em.21dtv.com/songs/60041829.mkv +蔡勇-痛个彻底,http://em.21dtv.com/songs/60042796.mkv +杨哲-天公伯仔,http://em.21dtv.com/songs/60041824.mkv +王瑞霞-天公伯啊(无原唱),http://em.21dtv.com/songs/60041822.mkv +乱弹阿翔-天公伯啊(无原唱),http://em.21dtv.com/songs/60041821.mkv +徐承邦-天公啊子,http://em.21dtv.com/songs/60135283.mkv +胡蓓蔚-停格爱情(无原唱),http://em.21dtv.com/songs/60042629.mkv +曾春年-太过爱你,http://em.21dtv.com/songs/60115208.mkv +吕雯-太过爱你,http://em.21dtv.com/songs/60069859.mkv +郑凡-太过爱你,http://em.21dtv.com/songs/60041317.mkv +戚薇-太过爱你,http://em.21dtv.com/songs/60041316.mkv +周艳泓+师鹏-碳粉知己,http://em.21dtv.com/songs/60064946.mkv +李佳霖-天府之国,http://em.21dtv.com/songs/60128079.mkv +向荣-腾飞中国,http://em.21dtv.com/songs/60081207.mkv +荒山亮+猪哥亮-同父异母,http://em.21dtv.com/songs/60042665.mkv +winky诗-听风无涯(动画),http://em.21dtv.com/songs/60101842.mkv +佚名-theme from the monkees(无原唱),http://em.21dtv.com/songs/60005736.mkv +SIEVIE WONDER-to feel the fire(无原唱),http://em.21dtv.com/songs/60005827.mkv +汪佩蓉-头发湿的,http://em.21dtv.com/songs/60042878.mkv +张学友-头发乱了,http://em.21dtv.com/songs/60042877.mkv +张学友-头发乱了(演唱会),http://em.21dtv.com/songs/60042876.mkv +泳儿-头发乱了(演唱会),http://em.21dtv.com/songs/60042875.mkv +许志安-头发乱了(演唱会),http://em.21dtv.com/songs/60042874.mkv +吴浩康-头发乱了(演唱会),http://em.21dtv.com/songs/60042873.mkv +孙耀威-谈分论嫁,http://em.21dtv.com/songs/60041433.mkv +佚名-theme from ice castles,http://em.21dtv.com/songs/60005735.mkv +王紫-天父花园,http://em.21dtv.com/songs/60116161.mkv +李琼-唐蕃和亲,http://em.21dtv.com/songs/60091353.mkv +孙楠-腾飞的心,http://em.21dtv.com/songs/60086869.mkv +三木科+曾檐-听风的人,http://em.21dtv.com/songs/60109924.mkv +胡灵-听风的歌,http://em.21dtv.com/songs/60068715.mkv +万芳-听风的歌,http://em.21dtv.com/songs/60042530.mkv +郭富城-听风的歌,http://em.21dtv.com/songs/60042529.mkv +郭富城-听风的歌(演唱会),http://em.21dtv.com/songs/60042528.mkv +王力宏-天翻地覆,http://em.21dtv.com/songs/60111267.mkv +王力宏-天翻地覆,http://em.21dtv.com/songs/60109520.mkv +许巍-天鹅之旅,http://em.21dtv.com/songs/60041812.mkv +郑秀文-total eclipse of the(演唱会),http://em.21dtv.com/songs/60005895.mkv +LADY GAGA-the edge of glory,http://em.21dtv.com/songs/60062089.mkv +LADY GAGA-the edge of glory(演唱会),http://em.21dtv.com/songs/60060925.mkv +孙翊轩-兔儿公主,http://em.21dtv.com/songs/60062967.mkv +Iggy Azalea-Team,http://em.21dtv.com/songs/60121251.mkv +Lorde-Team,http://em.21dtv.com/songs/60093932.mkv +张国荣-同道中人,http://em.21dtv.com/songs/60042664.mkv +苏泉-天地正气,http://em.21dtv.com/songs/60067477.mkv +司马原野-痛的执念,http://em.21dtv.com/songs/60042795.mkv +云飞+郭娅丽-天地之恋,http://em.21dtv.com/songs/60120291.mkv +云飞+郭娅丽-天地之恋,http://em.21dtv.com/songs/60106588.mkv +范海荣-天地之间,http://em.21dtv.com/songs/60072448.mkv +丁之文-天地中华,http://em.21dtv.com/songs/60098060.mkv +宋祖英-天地作合,http://em.21dtv.com/songs/60041801.mkv +刘德华-天地有缘,http://em.21dtv.com/songs/60041797.mkv +黄耀明-他的一生,http://em.21dtv.com/songs/60093545.mkv +谢霆锋-停电一日,http://em.21dtv.com/songs/60042628.mkv +罗嘉良-天地有情,http://em.21dtv.com/songs/60041796.mkv +SHINE-天地一秒,http://em.21dtv.com/songs/60041794.mkv +小北+叶宵-他的眼泪,http://em.21dtv.com/songs/60126809.mkv +冷漠-她的眼泪,http://em.21dtv.com/songs/60119278.mkv +郑家维-她的眼泪,http://em.21dtv.com/songs/60093278.mkv +邓家维-他的眼泪,http://em.21dtv.com/songs/60093243.mkv +林晓培-她的眼泪,http://em.21dtv.com/songs/60041152.mkv +承利-太多遗憾,http://em.21dtv.com/songs/60126936.mkv +苏三-停电以后,http://em.21dtv.com/songs/60085803.mkv +陈洁灵-他的眼光,http://em.21dtv.com/songs/60041077.mkv +周杰伦+KOBE BRYANT-天地一斗,http://em.21dtv.com/songs/60041793.mkv +刘承宇-The Day You Come,http://em.21dtv.com/songs/60099114.mkv +阿悄-她的信仰,http://em.21dtv.com/songs/60076089.mkv +郑中基+梁汉文-天跌下来,http://em.21dtv.com/songs/60041802.mkv +谭咏麟-天地无药,http://em.21dtv.com/songs/60093208.mkv +陈思成-他的唯一,http://em.21dtv.com/songs/60077796.mkv +杨培安-天地无声,http://em.21dtv.com/songs/60019453.mkv +刘若英-她的温柔,http://em.21dtv.com/songs/60041150.mkv +阿兰-天地问剑,http://em.21dtv.com/songs/60117309.mkv +阿兰-天地问剑,http://em.21dtv.com/songs/60097146.mkv +孙川-天地武魂,http://em.21dtv.com/songs/60041791.mkv +海鸣威-跳到天亮(演唱会),http://em.21dtv.com/songs/60068714.mkv +莫文蔚-太多太多,http://em.21dtv.com/songs/60041312.mkv +ENERGY-踢到铁板(演唱会),http://em.21dtv.com/songs/60041680.mkv +俊歌-痛定思痛,http://em.21dtv.com/songs/60105593.mkv +温兆伦-天地情缘,http://em.21dtv.com/songs/60041789.mkv +安琪-他的情批,http://em.21dtv.com/songs/60041075.mkv +顾峰-太多情歌,http://em.21dtv.com/songs/60067465.mkv +刘德华-他的女人,http://em.21dtv.com/songs/60041074.mkv +刘德华-他的女人(演唱会),http://em.21dtv.com/songs/60041073.mkv +毛宁-铁达尼号,http://em.21dtv.com/songs/60089381.mkv +梁晓丰-天大秘密,http://em.21dtv.com/songs/60041781.mkv +徐海涛-taotao的迷惑,http://em.21dtv.com/songs/60073977.mkv +冷漠-他的玫瑰,http://em.21dtv.com/songs/60041071.mkv +袁成杰+戚薇-天大梦大,http://em.21dtv.com/songs/60088617.mkv +崎君-痛到明白,http://em.21dtv.com/songs/60127933.mkv +杨梓文祺-听到流星,http://em.21dtv.com/songs/60115239.mkv +萧潇+刘祖德-天地浪漫,http://em.21dtv.com/songs/60041788.mkv +曹震豪+EMPTY-天跌落莅(演唱会),http://em.21dtv.com/songs/60077867.mkv +任飞翔-痛的节奏,http://em.21dtv.com/songs/60114386.mkv +卓文萱-天的桔子,http://em.21dtv.com/songs/60041782.mkv +黄家强-他的结他,http://em.21dtv.com/songs/60093535.mkv +黄家强-他的吉他,http://em.21dtv.com/songs/60041070.mkv +周杰伦-她的睫毛,http://em.21dtv.com/songs/60041148.mkv +WONDER GIRLS-the dj is mine,http://em.21dtv.com/songs/60063770.mkv +何龙雨-她的婚礼,http://em.21dtv.com/songs/60117548.mkv +本兮-天都黑了,http://em.21dtv.com/songs/60080085.mkv +何龙雨-她的婚礼,http://em.21dtv.com/songs/60041147.mkv +高桐-她的故事,http://em.21dtv.com/songs/60076088.mkv +张敬轩-他的故事(演唱会),http://em.21dtv.com/songs/60041068.mkv +萧煌奇-他的风筝,http://em.21dtv.com/songs/60041067.mkv +王俊杰-添丁发财,http://em.21dtv.com/songs/60114675.mkv +叶振棠-天地恩情(演唱会),http://em.21dtv.com/songs/60041786.mkv +詹曼铃-天顶的云,http://em.21dtv.com/songs/60041807.mkv +佚名-the drogs dont work,http://em.21dtv.com/songs/60005575.mkv +辜靖洁-天大的谎,http://em.21dtv.com/songs/60041772.mkv +郑少秋-天大地大,http://em.21dtv.com/songs/60041779.mkv +林忆莲-天大地大,http://em.21dtv.com/songs/60041778.mkv +黄维德-天大地大,http://em.21dtv.com/songs/60041777.mkv +蔡义德-天大地大,http://em.21dtv.com/songs/60041776.mkv +AT17-天大地大,http://em.21dtv.com/songs/60041775.mkv +林忆莲-天大地大(演唱会),http://em.21dtv.com/songs/60041773.mkv +伍佰-太多的爱,http://em.21dtv.com/songs/60041311.mkv +阿睿凌霓剑裳-天地称王,http://em.21dtv.com/songs/60127534.mkv +王慧美-他的传闻,http://em.21dtv.com/songs/60093796.mkv +群星-天道酬勤,http://em.21dtv.com/songs/60134125.mkv +段千寻-痛的彻底,http://em.21dtv.com/songs/60042794.mkv +胡彦斌-剃刀边缘,http://em.21dtv.com/songs/60134141.mkv +王杰-她的背影,http://em.21dtv.com/songs/60128230.mkv +王杰-她的背影,http://em.21dtv.com/songs/60041145.mkv +杨克强-他的背影,http://em.21dtv.com/songs/60041066.mkv +丁思忖+林玉涵-痛到不痛,http://em.21dtv.com/songs/60083933.mkv +胡鸿钧-天地不容,http://em.21dtv.com/songs/60128325.mkv +胡鸿钧-天地不容,http://em.21dtv.com/songs/60122046.mkv +郭富城-天地不容(演唱会),http://em.21dtv.com/songs/60041784.mkv +佚名-汤岛白梅,http://em.21dtv.com/songs/60041482.mkv +祁隆-跳到北京,http://em.21dtv.com/songs/60103495.mkv +陈冠希-他朝再算,http://em.21dtv.com/songs/60093383.mkv +秋裤大叔+司徒兰芳-跳槽之歌,http://em.21dtv.com/songs/60108786.mkv +司徒兰芳+赵小兵-跳槽之歌,http://em.21dtv.com/songs/60085797.mkv +文恩澄-同床异枕,http://em.21dtv.com/songs/60042661.mkv +童丽-天赐姻缘,http://em.21dtv.com/songs/60077865.mkv +哈琳-天赐缘它,http://em.21dtv.com/songs/60106722.mkv +莫老-同床异梦,http://em.21dtv.com/songs/60072470.mkv +达明一派-同床异梦(演唱会),http://em.21dtv.com/songs/60042660.mkv +韩一菲-痛彻心扉,http://em.21dtv.com/songs/60121112.mkv +阿杜-痛彻心非,http://em.21dtv.com/songs/60093379.mkv +馨予-痛彻心扉,http://em.21dtv.com/songs/60083932.mkv +西单女孩-痛彻心扉,http://em.21dtv.com/songs/60063125.mkv +张栋梁-痛彻心扉,http://em.21dtv.com/songs/60042792.mkv +刘春云-痛彻心扉,http://em.21dtv.com/songs/60042791.mkv +姜玉阳-痛彻心扉,http://em.21dtv.com/songs/60042790.mkv +季中平-痛彻心扉,http://em.21dtv.com/songs/60042789.mkv +何家劲-痛彻心扉,http://em.21dtv.com/songs/60042788.mkv +刘春云-痛彻心扉(演唱会),http://em.21dtv.com/songs/60042787.mkv +季中平-痛彻心扉(无原唱),http://em.21dtv.com/songs/60042786.mkv +邝祖德-停车熄匙,http://em.21dtv.com/songs/60077952.mkv +姚莉-踏车小唱(无原唱),http://em.21dtv.com/songs/60041190.mkv +ROBYNN+KENDY-陶瓷娃娃,http://em.21dtv.com/songs/60077848.mkv +李克勤-她慈我悲,http://em.21dtv.com/songs/60041143.mkv +刘栋升+董飞-天朝上品,http://em.21dtv.com/songs/60104831.mkv +阿香-天朝上品,http://em.21dtv.com/songs/60103657.mkv +刘德华-天从人愿,http://em.21dtv.com/songs/60041771.mkv +ANAM 雅-天策枪魂,http://em.21dtv.com/songs/60083881.mkv +瑞奇.马丁-the cup of life(演唱会),http://em.21dtv.com/songs/60005570.mkv +佚名-takin care of business,http://em.21dtv.com/songs/60005456.mkv +温家恒-同窗密友,http://em.21dtv.com/songs/60092971.mkv +羽泉+古天乐-同创梦想,http://em.21dtv.com/songs/60042663.mkv +赵斌-天赐良缘,http://em.21dtv.com/songs/60118073.mkv +杨丽-天赐良缘,http://em.21dtv.com/songs/60110291.mkv +小山+陈美惠-天赐良缘,http://em.21dtv.com/songs/60071177.mkv +新宝岛康乐队-土产金刚,http://em.21dtv.com/songs/60042953.mkv +尹光+刘锡贤-铁窗红泪(演唱会),http://em.21dtv.com/songs/60042472.mkv +文恩澄-同床共枕,http://em.21dtv.com/songs/60042658.mkv +达明一派-同床共梦,http://em.21dtv.com/songs/60042657.mkv +陈星-同船过渡,http://em.21dtv.com/songs/60042656.mkv +张清芳-铁齿的人,http://em.21dtv.com/songs/60042468.mkv +王琥+安琥-天长地久,http://em.21dtv.com/songs/60135560.mkv +安琥+王琥-天长地久,http://em.21dtv.com/songs/60135118.mkv +岩宰仑-天长地久,http://em.21dtv.com/songs/60124804.mkv +皓天-天长地久,http://em.21dtv.com/songs/60072447.mkv +马志锋-天长地久,http://em.21dtv.com/songs/60064957.mkv +周启生-天长地久,http://em.21dtv.com/songs/60042306.mkv +佚名-天长地久,http://em.21dtv.com/songs/60042304.mkv +王芷蕾-天长地久,http://em.21dtv.com/songs/60042303.mkv +孙燕姿-天长地久,http://em.21dtv.com/songs/60042302.mkv +孙楠-天长地久,http://em.21dtv.com/songs/60042301.mkv +眉佳-天长地久,http://em.21dtv.com/songs/60042300.mkv +林子祥+叶倩文-天长地久,http://em.21dtv.com/songs/60042299.mkv +合唱-天长地久,http://em.21dtv.com/songs/60042298.mkv +地下铁-天长地久,http://em.21dtv.com/songs/60042297.mkv +陈楚生-天长地久,http://em.21dtv.com/songs/60042296.mkv +曾航生-天长地久,http://em.21dtv.com/songs/60042295.mkv +庞龙-天长地久(演唱会),http://em.21dtv.com/songs/60042294.mkv +金山-唐朝的风,http://em.21dtv.com/songs/60099555.mkv +MAINO-that could be us,http://em.21dtv.com/songs/60066734.mkv +中其-天不作美(无原唱),http://em.21dtv.com/songs/60041751.mkv +周斌华-他不知道,http://em.21dtv.com/songs/60127848.mkv +傅晴天-她不知道,http://em.21dtv.com/songs/60116558.mkv +李龙基+朱咪咪-特别有型(演唱会),http://em.21dtv.com/songs/60041644.mkv +许慧欣-天不要黑,http://em.21dtv.com/songs/60041750.mkv +弦子-太不像我,http://em.21dtv.com/songs/60077808.mkv +狄易达-逃避现实,http://em.21dtv.com/songs/60041543.mkv +于子将-同病相怜,http://em.21dtv.com/songs/60127714.mkv +郭采洁-停不下来,http://em.21dtv.com/songs/60111454.mkv +江美琪-停不下了,http://em.21dtv.com/songs/60090037.mkv +王晓青-停不下来,http://em.21dtv.com/songs/60042625.mkv +杨千嬅-同病相爱,http://em.21dtv.com/songs/60042651.mkv +MR BIG-to be with you,http://em.21dtv.com/songs/60005826.mkv +夏天播放-褪变无路,http://em.21dtv.com/songs/60083941.mkv +陈慧琳-她比我丑,http://em.21dtv.com/songs/60041138.mkv +陈慧琳-她比我丑(演唱会),http://em.21dtv.com/songs/60041137.mkv +廖昌永-台北探雨,http://em.21dtv.com/songs/60041249.mkv +南台湾小姑娘-同班同学,http://em.21dtv.com/songs/60042650.mkv +梁咏琪-同班同学,http://em.21dtv.com/songs/60042649.mkv +古巨基-同班同学,http://em.21dtv.com/songs/60042648.mkv +JUSTIN TIMBERLAKE-take back the night,http://em.21dtv.com/songs/60086368.mkv +佚名-torn between two lovers,http://em.21dtv.com/songs/60005891.mkv +佚名-too beautiful to last,http://em.21dtv.com/songs/60005872.mkv +SNOW PATROL-take back the city,http://em.21dtv.com/songs/60063759.mkv +谢和弦-台北台北,http://em.21dtv.com/songs/60112961.mkv +群星-他不是我,http://em.21dtv.com/songs/60041058.mkv +佚名-therell be sad songs,http://em.21dtv.com/songs/60005743.mkv +钟舒漫-他不是你,http://em.21dtv.com/songs/60066338.mkv +祝钒刚-她不是你,http://em.21dtv.com/songs/60041141.mkv +徐小凤-台板人生,http://em.21dtv.com/songs/60041214.mkv +陈映蓉-汤包奇缘,http://em.21dtv.com/songs/60108979.mkv +艺君-替补情人,http://em.21dtv.com/songs/60117149.mkv +蔡孟臻-同步青春,http://em.21dtv.com/songs/60081845.mkv +KENNY CHESNEY-the boys of fall,http://em.21dtv.com/songs/60005557.mkv +麦贝夷-特别鸣谢,http://em.21dtv.com/songs/60077853.mkv +萧正楠+关心妍-特别鸣谢,http://em.21dtv.com/songs/60041642.mkv +苏慧伦-台北玫瑰,http://em.21dtv.com/songs/60041238.mkv +刘雁-淘宝乐园,http://em.21dtv.com/songs/60041611.mkv +蒙面哥+雨霖枫+阿当-她不理我,http://em.21dtv.com/songs/60126145.mkv +潘玮柏+许慧欣-特别来宾,http://em.21dtv.com/songs/60041641.mkv +温兆伦+陈松伶-特别快车,http://em.21dtv.com/songs/60041640.mkv +佚名-台北街头,http://em.21dtv.com/songs/60041234.mkv +容祖儿-特别嘉宾,http://em.21dtv.com/songs/60041639.mkv +容祖儿-特别嘉宾(演唱会),http://em.21dtv.com/songs/60041638.mkv +邬祯琳-the boy is mine(演唱会),http://em.21dtv.com/songs/60065705.mkv +BRANDY+MONICA-the boy is mine,http://em.21dtv.com/songs/60005556.mkv +萧亚轩-同步呼吸,http://em.21dtv.com/songs/60042653.mkv +何耀珊-天不会黑,http://em.21dtv.com/songs/60041746.mkv +陈蕊蕊-蜕变蝴蝶,http://em.21dtv.com/songs/60077989.mkv +渔圈-特别关心,http://em.21dtv.com/songs/60104286.mkv +S.BONO-the beat goes on(无原唱),http://em.21dtv.com/songs/60005545.mkv +梁振宇-台北姑娘,http://em.21dtv.com/songs/60041229.mkv +李宗盛+林强-台北孤儿,http://em.21dtv.com/songs/60041228.mkv +伍佰+李宗盛-台北孤儿(演唱会),http://em.21dtv.com/songs/60041227.mkv +群星-同步过冬,http://em.21dtv.com/songs/60042652.mkv +新宝岛康乐队-台北附近,http://em.21dtv.com/songs/60041226.mkv +方大同-特别的人,http://em.21dtv.com/songs/60100078.mkv +WEWE-听不到你,http://em.21dtv.com/songs/60042516.mkv +ALESHA DIXON-the boy does nothing,http://em.21dtv.com/songs/60005555.mkv +田震-天边的虹,http://em.21dtv.com/songs/60041730.mkv +萧敬腾+包函朵+张馨月-他不爱我,http://em.21dtv.com/songs/60106243.mkv +陈冰+艾怡良-他不爱我,http://em.21dtv.com/songs/60104546.mkv +常石磊+萨顶顶-他不爱我,http://em.21dtv.com/songs/60098310.mkv +李琦-他不爱我,http://em.21dtv.com/songs/60081545.mkv +张杰-他不爱我,http://em.21dtv.com/songs/60077795.mkv +关喆-她不爱我,http://em.21dtv.com/songs/60076087.mkv +金莎-他不爱我,http://em.21dtv.com/songs/60066337.mkv +莫文蔚-他不爱我,http://em.21dtv.com/songs/60041055.mkv +迪克牛仔-他不爱我,http://em.21dtv.com/songs/60041054.mkv +莫文蔚-他不爱我(演唱会),http://em.21dtv.com/songs/60041053.mkv +LENA-taken by a stranger,http://em.21dtv.com/songs/60067992.mkv +佚名-台北暗暝(无原唱),http://em.21dtv.com/songs/60041217.mkv +许佳慧-他不爱了,http://em.21dtv.com/songs/60122111.mkv +王宏伟-天边阿里,http://em.21dtv.com/songs/60067474.mkv +李克勤-投奔爱海,http://em.21dtv.com/songs/60042893.mkv +佚名-the bird and child,http://em.21dtv.com/songs/60005552.mkv +DAWN-tie a yellow ribbon,http://em.21dtv.com/songs/60005796.mkv +李珉宇-Taxi,http://em.21dtv.com/songs/60099316.mkv +GROOVE COVERAGE-think about the way,http://em.21dtv.com/songs/60067996.mkv +CRAIG MORGAN-this aint nothin,http://em.21dtv.com/songs/60066737.mkv +谭咏麟-倘爱是缘,http://em.21dtv.com/songs/60041514.mkv +刘德华-疼爱情人,http://em.21dtv.com/songs/60090704.mkv +佚名-there aint no way,http://em.21dtv.com/songs/60005738.mkv +张善为-太爱你了,http://em.21dtv.com/songs/60041298.mkv +耿为华-疼爱妈妈,http://em.21dtv.com/songs/60041652.mkv +唐古-停爱留职,http://em.21dtv.com/songs/60111784.mkv +佚名-try a little tenderness,http://em.21dtv.com/songs/60005943.mkv +JASON ALDEAN-take a little ride,http://em.21dtv.com/songs/60073970.mkv +STONE-take a load off(演唱会),http://em.21dtv.com/songs/60005436.mkv +佚名-try a little love,http://em.21dtv.com/songs/60005942.mkv +DJ SNAKE+GEORGE MAPLE-TALK,http://em.21dtv.com/songs/60129917.mkv +郭富城-同爱继续,http://em.21dtv.com/songs/60093349.mkv +郭富城-听傲江湖(演唱会),http://em.21dtv.com/songs/60042507.mkv +吴淑敏+林美-他爱的人(无原唱),http://em.21dtv.com/songs/60041051.mkv +刘天助-疼爱的你,http://em.21dtv.com/songs/60106637.mkv +吉杰-疼阿博博,http://em.21dtv.com/songs/60077854.mkv +杨宗华-神州之情,http://em.21dtv.com/songs/60069805.mkv +小钢-十字祝福,http://em.21dtv.com/songs/60039063.mkv +蔡依林-始作俑者,http://em.21dtv.com/songs/60039199.mkv +方怡萍-水中月圆,http://em.21dtv.com/songs/60101363.mkv +林忆莲-始终一天(演唱会),http://em.21dtv.com/songs/60061586.mkv +林忆莲-始终一天,http://em.21dtv.com/songs/60039197.mkv +林一峰-始终一天(演唱会),http://em.21dtv.com/songs/60039196.mkv +AT17-始终一天(演唱会),http://em.21dtv.com/songs/60039195.mkv +梁汉文-三宅一生(演唱会),http://em.21dtv.com/songs/60037371.mkv +佚名-苏州夜曲,http://em.21dtv.com/songs/60040840.mkv +费玉清-苏州夜曲,http://em.21dtv.com/songs/60040839.mkv +群星-始终有你,http://em.21dtv.com/songs/60039198.mkv +莫文蔚-是这样吗,http://em.21dtv.com/songs/60091969.mkv +索朗扎西-水中月亮,http://em.21dtv.com/songs/60117960.mkv +云丹久美-水中月亮,http://em.21dtv.com/songs/60040281.mkv +便巴倾批-水中月亮,http://em.21dtv.com/songs/60040280.mkv +阿翁-水中月亮,http://em.21dtv.com/songs/60040279.mkv +彭敬慈-是这样的,http://em.21dtv.com/songs/60092656.mkv +草蜢-是这样的(演唱会),http://em.21dtv.com/songs/60077650.mkv +童唱-手指运动(无原唱),http://em.21dtv.com/songs/60039655.mkv +梅艳芳-是这样的(演唱会),http://em.21dtv.com/songs/60039537.mkv +杨千嬅-是这样的(HD演唱会),http://em.21dtv.com/songs/60039536.mkv +TWINS-送猪型鼠,http://em.21dtv.com/songs/60040800.mkv +车婉婉-始终想你,http://em.21dtv.com/songs/60039194.mkv +童唱-三只小猫,http://em.21dtv.com/songs/60037373.mkv +叶小青-十指相扣,http://em.21dtv.com/songs/60039050.mkv +叶振棠+邬玛莉-谁知我心,http://em.21dtv.com/songs/60126678.mkv +朱子峰-剩者为王,http://em.21dtv.com/songs/60126990.mkv +孙楠-胜者为王,http://em.21dtv.com/songs/60079987.mkv +王识贤-胜者为王,http://em.21dtv.com/songs/60038692.mkv +李琳-试着忘记,http://em.21dtv.com/songs/60064888.mkv +周子琰-随之舞蹈,http://em.21dtv.com/songs/60111763.mkv +龚琳娜-山中问答,http://em.21dtv.com/songs/60095174.mkv +黎明-十字天使(演唱会),http://em.21dtv.com/songs/60039062.mkv +柳影虹-狮子山下(演唱会),http://em.21dtv.com/songs/60077588.mkv +群星合唱-狮子山下(演唱会),http://em.21dtv.com/songs/60061581.mkv +罗文-狮子山下,http://em.21dtv.com/songs/60038888.mkv +罗文+容祖儿-狮子山下,http://em.21dtv.com/songs/60038887.mkv +苏永康-狮子山下(演唱会),http://em.21dtv.com/songs/60038886.mkv +任贤齐-狮子山下(演唱会),http://em.21dtv.com/songs/60038885.mkv +群星-狮子山下(演唱会),http://em.21dtv.com/songs/60038884.mkv +李龙基-狮子山下(演唱会),http://em.21dtv.com/songs/60038883.mkv +软硬天师-失踪少女(演唱会),http://em.21dtv.com/songs/60038866.mkv +S.H.E-锁住时间,http://em.21dtv.com/songs/60041044.mkv +陈奕迅-数字人生,http://em.21dtv.com/songs/60121072.mkv +林子祥-数字人生,http://em.21dtv.com/songs/60092857.mkv +徐怀钰-失踪日记,http://em.21dtv.com/songs/60038865.mkv +苏玮-石柱擎天,http://em.21dtv.com/songs/60108846.mkv +王杰-手足情深,http://em.21dtv.com/songs/60039664.mkv +李克勤-胜中情人,http://em.21dtv.com/songs/60092798.mkv +罗力威-双子情歌,http://em.21dtv.com/songs/60072416.mkv +罗力威+容祖儿-双子情歌,http://em.21dtv.com/songs/60072415.mkv +7朵花-谁最漂亮,http://em.21dtv.com/songs/60040167.mkv +王滨-山在那里,http://em.21dtv.com/songs/60064830.mkv +陈雷-随在你啦,http://em.21dtv.com/songs/60040958.mkv +杨程钧-少在那边,http://em.21dtv.com/songs/60130464.mkv +尚雯婕-时装lofficiel,http://em.21dtv.com/songs/60062900.mkv +灭火器乐团-十字路口,http://em.21dtv.com/songs/60124227.mkv +吴奇隆-十字路口,http://em.21dtv.com/songs/60039061.mkv +李克勤-十字路口,http://em.21dtv.com/songs/60039060.mkv +龚诗嘉-十字路口,http://em.21dtv.com/songs/60039059.mkv +许绍洋-试着了解,http://em.21dtv.com/songs/60039376.mkv +万芳-试着了解,http://em.21dtv.com/songs/60039375.mkv +何鹏-深圳恋歌,http://em.21dtv.com/songs/60116545.mkv +何鹏-深圳恋歌,http://em.21dtv.com/songs/60106598.mkv +童唱-狮子理发,http://em.21dtv.com/songs/60038882.mkv +范晓萱-数字恋爱,http://em.21dtv.com/songs/60039815.mkv +范晓萱-数字恋爱(演唱会),http://em.21dtv.com/songs/60039814.mkv +童唱-谁最快乐,http://em.21dtv.com/songs/60040166.mkv +陈歌华-神舟凯歌,http://em.21dtv.com/songs/60038513.mkv +天籁天-十指扣爱,http://em.21dtv.com/songs/60067428.mkv +群星-说走就走,http://em.21dtv.com/songs/60127285.mkv +信-说走就走,http://em.21dtv.com/songs/60126609.mkv +信-说走就走,http://em.21dtv.com/songs/60125144.mkv +周杰伦-说走就走,http://em.21dtv.com/songs/60123763.mkv +陶喆-说走就走,http://em.21dtv.com/songs/60040444.mkv +李霄云-说走就走,http://em.21dtv.com/songs/60040443.mkv +黎沸辉-说走就走,http://em.21dtv.com/songs/60040442.mkv +周迅+金城武-十字街头,http://em.21dtv.com/songs/60039056.mkv +郁可唯-十字街头,http://em.21dtv.com/songs/60039055.mkv +关智斌-塑造角色,http://em.21dtv.com/songs/60125153.mkv +关智斌-塑造角色,http://em.21dtv.com/songs/60123649.mkv +黄品源-十字街口,http://em.21dtv.com/songs/60039054.mkv +郭富城-十指紧扣,http://em.21dtv.com/songs/60039049.mkv +张智霖-十指紧扣(演唱会),http://em.21dtv.com/songs/60039048.mkv +谢雷+张玉容-树枝花蕊,http://em.21dtv.com/songs/60039796.mkv +费玉清-苏州河畔,http://em.21dtv.com/songs/60040838.mkv +林志炫-苏州河边(演唱会),http://em.21dtv.com/songs/60096359.mkv +青山+孔兰薰-苏州河边(演唱会),http://em.21dtv.com/songs/60083855.mkv +姚莉+姚敏-苏州河边,http://em.21dtv.com/songs/60040837.mkv +温兆伦+陈松伶-苏州河边,http://em.21dtv.com/songs/60040836.mkv +林承光-苏州河边,http://em.21dtv.com/songs/60040835.mkv +张伟文+朱咪咪-苏州河边(演唱会),http://em.21dtv.com/songs/60040834.mkv +蔡琴-苏州河边(演唱会),http://em.21dtv.com/songs/60040833.mkv +斯琴格日乐-水中花瓣,http://em.21dtv.com/songs/60040268.mkv +宋艺鹏-手中贵族,http://em.21dtv.com/songs/60131354.mkv +伍佰-树枝孤鸟,http://em.21dtv.com/songs/60039795.mkv +伍佰-树枝孤鸟(演唱会),http://em.21dtv.com/songs/60039794.mkv +邵杰-屌丝之歌,http://em.21dtv.com/songs/60120017.mkv +周丽淇-身在福中,http://em.21dtv.com/songs/60064850.mkv +周丽泣-身在福中,http://em.21dtv.com/songs/60038271.mkv +荒山亮-神州风云,http://em.21dtv.com/songs/60038514.mkv +孙春华-神州飞船,http://em.21dtv.com/songs/60120449.mkv +欧阳曹亮-时针倒转,http://em.21dtv.com/songs/60121844.mkv +罗启聪-衰仔大学,http://em.21dtv.com/songs/60134072.mkv +周展翅-山寨大王,http://em.21dtv.com/songs/60128895.mkv +郑秀文-守株待兔,http://em.21dtv.com/songs/60039704.mkv +张克帆-梳子的话,http://em.21dtv.com/songs/60039745.mkv +戏曲-傻子洞房,http://em.21dtv.com/songs/60092724.mkv +卢海潮+梁淑卿-傻仔洞房,http://em.21dtv.com/songs/60037560.mkv +卢海潮+冯锦娟-傻仔洞房,http://em.21dtv.com/songs/60037559.mkv +索南扎西-神州大地(演唱会),http://em.21dtv.com/songs/60062971.mkv +任真-失重的爱,http://em.21dtv.com/songs/60038860.mkv +陈焱-苏州城外,http://em.21dtv.com/songs/60130852.mkv +北原山猫-三振出局(无原唱),http://em.21dtv.com/songs/60037372.mkv +章小军-谁主沉浮,http://em.21dtv.com/songs/60107101.mkv +KELLY ROWLAND-势在必行,http://em.21dtv.com/songs/60064887.mkv +陈势安+BII-势在必行,http://em.21dtv.com/songs/60062271.mkv +陶喆-孙子兵法,http://em.21dtv.com/songs/60041013.mkv +史小龙-孙子兵法,http://em.21dtv.com/songs/60041012.mkv +陶喆-孙子兵法(演唱会),http://em.21dtv.com/songs/60041011.mkv +李书伟-势在必得,http://em.21dtv.com/songs/60116895.mkv +周传雄-始终爱你,http://em.21dtv.com/songs/60039191.mkv +火焱焱-守着爱.,http://em.21dtv.com/songs/60117014.mkv +谢霆锋-岁月长长,http://em.21dtv.com/songs/60092108.mkv +EXO-M-双月之夜,http://em.21dtv.com/songs/60077691.mkv +蔡枫华-是又怎样(演唱会),http://em.21dtv.com/songs/60061588.mkv +张伟文-禅院钟声,http://em.21dtv.com/songs/60012255.mkv +小神鹰-禅院钟声,http://em.21dtv.com/songs/60012254.mkv +大AL-禅院钟声(演唱会),http://em.21dtv.com/songs/60012253.mkv +何韵诗-是有种人,http://em.21dtv.com/songs/60114390.mkv +格日勒图亚-岁月中秋,http://em.21dtv.com/songs/60040992.mkv +德德玛-岁月中秋,http://em.21dtv.com/songs/60040991.mkv +侯旭-失忆之前(演唱会),http://em.21dtv.com/songs/60038851.mkv +古巨基-失忆周末(演唱会),http://em.21dtv.com/songs/60038853.mkv +陈慧琳-失忆周末(演唱会),http://em.21dtv.com/songs/60038852.mkv +张玉华-属于自己,http://em.21dtv.com/songs/60039775.mkv +许伊-岁月之河,http://em.21dtv.com/songs/60117219.mkv +Supper moment-沙燕之歌,http://em.21dtv.com/songs/60134804.mkv +Supper Moment-沙燕之歌,http://em.21dtv.com/songs/60125011.mkv +冯欣-诗意中国,http://em.21dtv.com/songs/60103094.mkv +周燕君-诗意中国,http://em.21dtv.com/songs/60069813.mkv +廖名扬-孙杨之歌,http://em.21dtv.com/songs/60068695.mkv +何洁-谁与争锋,http://em.21dtv.com/songs/60087312.mkv +大军-谁与争锋,http://em.21dtv.com/songs/60080108.mkv +吴碧霞-岁月悠悠,http://em.21dtv.com/songs/60110928.mkv +东来东往-事与愿违,http://em.21dtv.com/songs/60087243.mkv +许嵩-摄影艺术,http://em.21dtv.com/songs/60124474.mkv +许嵩-摄影艺术,http://em.21dtv.com/songs/60123169.mkv +西域胡杨-岁月有声,http://em.21dtv.com/songs/60123153.mkv +郭红-深夜有你,http://em.21dtv.com/songs/60038377.mkv +佚名-岁月依旧,http://em.21dtv.com/songs/60040990.mkv +群星-三月小雨,http://em.21dtv.com/songs/60037369.mkv +陈玉建+大火-生意兴隆,http://em.21dtv.com/songs/60103691.mkv +水木年华-四月物语,http://em.21dtv.com/songs/60091568.mkv +谭咏麟-少爷威威(演唱会),http://em.21dtv.com/songs/60038181.mkv +谭咏麟-少爷威威(无原唱),http://em.21dtv.com/songs/60038180.mkv +谢中杰+ZOLERWIND-岁月无声,http://em.21dtv.com/songs/60124485.mkv +草蜢-岁月无声(演唱会),http://em.21dtv.com/songs/60077792.mkv +李丽霞-岁月无声(演唱会),http://em.21dtv.com/songs/60068694.mkv +谢安琪-岁月无声(演唱会),http://em.21dtv.com/songs/60040989.mkv +太极乐队-岁月无声(演唱会),http://em.21dtv.com/songs/60040988.mkv +黄家强-岁月无声(演唱会),http://em.21dtv.com/songs/60040987.mkv +BEYOND-岁月无声(演唱会),http://em.21dtv.com/songs/60040986.mkv +郑少秋-岁月无情,http://em.21dtv.com/songs/60040985.mkv +颜联武-岁月忘情,http://em.21dtv.com/songs/60040984.mkv +王玉玺-岁月无痕,http://em.21dtv.com/songs/60129410.mkv +许廷铿-岁月无悔,http://em.21dtv.com/songs/60119964.mkv +许廷铿-岁月无悔,http://em.21dtv.com/songs/60116244.mkv +林忆莲-属于我的,http://em.21dtv.com/songs/60039774.mkv +陈奕迅-送院途中(演唱会),http://em.21dtv.com/songs/60040799.mkv +郑锦昌+刘君儿-生意滔滔,http://em.21dtv.com/songs/60093332.mkv +戏曲-沈园题壁,http://em.21dtv.com/songs/60092733.mkv +王蓉-鲨鱼鲨鱼,http://em.21dtv.com/songs/60117047.mkv +蔡依林-所有所有,http://em.21dtv.com/songs/60092017.mkv +李娜-山远水远,http://em.21dtv.com/songs/60091310.mkv +王可儿-所以所以,http://em.21dtv.com/songs/60088281.mkv +于海涛-岁月随想,http://em.21dtv.com/songs/60123612.mkv +梁咏琪-四月生日,http://em.21dtv.com/songs/60040710.mkv +LIONEL RICHIE-say you say me(演唱会),http://em.21dtv.com/songs/60086362.mkv +佚名-say you say me,http://em.21dtv.com/songs/60004848.mkv +LIONEL RICHIE-say you say me,http://em.21dtv.com/songs/60004847.mkv +C AllStar+苏永康-声音骚了,http://em.21dtv.com/songs/60133180.mkv +C AllStar+苏永康-声音骚了,http://em.21dtv.com/songs/60126518.mkv +张德兰-是雨是泪(演唱会),http://em.21dtv.com/songs/60068664.mkv +陈百强-是雨是泪,http://em.21dtv.com/songs/60039533.mkv +许冠杰-是雨是泪(演唱会),http://em.21dtv.com/songs/60039532.mkv +佚名-something you should know,http://em.21dtv.com/songs/60005164.mkv +陈志嘉+MASTAMIC-试音时间,http://em.21dtv.com/songs/60100584.mkv +谢有才-深夜时分,http://em.21dtv.com/songs/60063175.mkv +群星-实验色彩,http://em.21dtv.com/songs/60096435.mkv +李研心-岁月如烟,http://em.21dtv.com/songs/60105986.mkv +草蜢-岁月燃烧(演唱会),http://em.21dtv.com/songs/60040979.mkv +佚名-岁月如流,http://em.21dtv.com/songs/60040983.mkv +沈庆-岁月如今,http://em.21dtv.com/songs/60086861.mkv +阿毛-岁月如歌,http://em.21dtv.com/songs/60131921.mkv +陈奕迅-岁月如歌,http://em.21dtv.com/songs/60109694.mkv +常思思-岁月如歌,http://em.21dtv.com/songs/60104997.mkv +张智霖-岁月如歌,http://em.21dtv.com/songs/60085756.mkv +洪卓立+罗力威-岁月如歌(演唱会),http://em.21dtv.com/songs/60077791.mkv +严城-岁月如歌,http://em.21dtv.com/songs/60067459.mkv +中国力量-岁月如歌,http://em.21dtv.com/songs/60040982.mkv +容祖儿-岁月如歌(演唱会),http://em.21dtv.com/songs/60040981.mkv +陈奕迅-岁月如歌(演唱会),http://em.21dtv.com/songs/60040980.mkv +陈绍楠-誓言秋落,http://em.21dtv.com/songs/60077654.mkv +张信哲-岁月轻狂,http://em.21dtv.com/songs/60126859.mkv +李治廷-岁月轻狂,http://em.21dtv.com/songs/60040978.mkv +胡彦斌-失业情歌,http://em.21dtv.com/songs/60038843.mkv +糖妹-实验青春,http://em.21dtv.com/songs/60128294.mkv +吕金蔓-神韵飘香,http://em.21dtv.com/songs/60038512.mkv +谢金燕-蛇与苹果,http://em.21dtv.com/songs/60038192.mkv +陈淑萍-莎喲娜娜,http://em.21dtv.com/songs/60096010.mkv +办桌二人组-莎哟哪啦,http://em.21dtv.com/songs/60077483.mkv +信-莎呦哪啦(演唱会),http://em.21dtv.com/songs/60063185.mkv +佚名-莎哟娜啦,http://em.21dtv.com/songs/60037493.mkv +欧阳菲菲-莎哟娜啦,http://em.21dtv.com/songs/60037492.mkv +金元萱-莎哟娜啦,http://em.21dtv.com/songs/60037491.mkv +江蕙-莎哟娜啦,http://em.21dtv.com/songs/60037490.mkv +波拉-岁月女孩,http://em.21dtv.com/songs/60086860.mkv +王艺歌-岁月年华,http://em.21dtv.com/songs/60083856.mkv +根呷-岁月母亲,http://em.21dtv.com/songs/60091505.mkv +东篱-世有名花,http://em.21dtv.com/songs/60083807.mkv +谢金燕-say yes my boy,http://em.21dtv.com/songs/60004840.mkv +王翔-三言两语,http://em.21dtv.com/songs/60116163.mkv +佚名-三言两语,http://em.21dtv.com/songs/60037356.mkv +汪睿-岁月流沙,http://em.21dtv.com/songs/60124194.mkv +杨瑞代-someday youll see,http://em.21dtv.com/songs/60070399.mkv +陈松伶-岁月留声,http://em.21dtv.com/songs/60040974.mkv +张学友-岁月流情(演唱会),http://em.21dtv.com/songs/60040977.mkv +七朵花-say you love me,http://em.21dtv.com/songs/60082318.mkv +佚名-say you love me,http://em.21dtv.com/songs/60004845.mkv +高凌风-say you love me,http://em.21dtv.com/songs/60004844.mkv +陈慧琳-say you love me,http://em.21dtv.com/songs/60004843.mkv +叶德娴-say you love me(演唱会),http://em.21dtv.com/songs/60004842.mkv +容中尔甲-索呀里乐,http://em.21dtv.com/songs/60090975.mkv +林忆莲-岁月流金(演唱会),http://em.21dtv.com/songs/60040976.mkv +江美丽-岁月流金(无原唱),http://em.21dtv.com/songs/60040975.mkv +齐乐-岁月离歌,http://em.21dtv.com/songs/60134513.mkv +金岩-山岩恋歌,http://em.21dtv.com/songs/60095111.mkv +屠洪纲-三羊开泰,http://em.21dtv.com/songs/60091000.mkv +纪晓斌-松一口气,http://em.21dtv.com/songs/60040728.mkv +明道-生有可恋,http://em.21dtv.com/songs/60129177.mkv +司徒兰芳-岁月惊心,http://em.21dtv.com/songs/60116621.mkv +蔡卓妍-煞有介事,http://em.21dtv.com/songs/60037573.mkv +HOTCHA-素颜假期,http://em.21dtv.com/songs/60062044.mkv +林雨-诗意江南,http://em.21dtv.com/songs/60100224.mkv +风中采莲-水韵江南,http://em.21dtv.com/songs/60040258.mkv +胡梅-诗韵江南,http://em.21dtv.com/songs/60038881.mkv +香香-死于寂寞,http://em.21dtv.com/songs/60077757.mkv +张学友-思忆季节,http://em.21dtv.com/songs/60040603.mkv +[Group] +groupName=十六万歌曲MV等 - 54 +FUYING+SAM-说一句话,http://em.21dtv.com/songs/60080063.mkv +杨千嬅-水月镜花,http://em.21dtv.com/songs/60040253.mkv +佚名-see you in september,http://em.21dtv.com/songs/60004879.mkv +李翊君-誓言谎言,http://em.21dtv.com/songs/60039580.mkv +闫冰-水韵含香,http://em.21dtv.com/songs/60040257.mkv +何韵诗-诗与胡说,http://em.21dtv.com/songs/60038880.mkv +龙飘飘-石油红包,http://em.21dtv.com/songs/60064876.mkv +钟佳宜-双鱼公主,http://em.21dtv.com/songs/60039910.mkv +甄楚倩-深夜港湾,http://em.21dtv.com/songs/60038376.mkv +关淑怡-深夜港湾,http://em.21dtv.com/songs/60038375.mkv +李克勤+周传雄-岁月风云(演唱会),http://em.21dtv.com/songs/60040973.mkv +陈慧琳-谁愿放手(HD),http://em.21dtv.com/songs/10012550.mkv +谭咏麟+李克勤-谁愿分手(演唱会),http://em.21dtv.com/songs/60040160.mkv +李克勤-谁愿分手(演唱会),http://em.21dtv.com/songs/60040159.mkv +陈慧琳-谁愿放手,http://em.21dtv.com/songs/60040158.mkv +杨千嬅-谁愿放手(演唱会),http://em.21dtv.com/songs/60040157.mkv +古巨基-谁愿放手(演唱会),http://em.21dtv.com/songs/60040156.mkv +佚名-桑园访妻,http://em.21dtv.com/songs/60037400.mkv +茅威涛-桑园访妻,http://em.21dtv.com/songs/60037399.mkv +陈学冬-岁月缝花,http://em.21dtv.com/songs/60113051.mkv +陈红-岁月飞花,http://em.21dtv.com/songs/60040972.mkv +龙千玉-三言二语,http://em.21dtv.com/songs/60037355.mkv +王晓-随遇而安,http://em.21dtv.com/songs/60097437.mkv +小沈阳-沈阳的雪,http://em.21dtv.com/songs/60038519.mkv +翁立友-岁月的批,http://em.21dtv.com/songs/60100389.mkv +曾淑勤-岁月的酒,http://em.21dtv.com/songs/60040967.mkv +徐菲-树叶的光,http://em.21dtv.com/songs/60128017.mkv +龙飘飘-岁月的歌,http://em.21dtv.com/songs/60040966.mkv +吴琼-山野的风,http://em.21dtv.com/songs/60099145.mkv +林慧省-省油的灯,http://em.21dtv.com/songs/60135430.mkv +李威-撒野到底,http://em.21dtv.com/songs/60037152.mkv +樊芳斌-诗韵成州,http://em.21dtv.com/songs/60130508.mkv +佚名-丝雨长巷(无原唱),http://em.21dtv.com/songs/60040461.mkv +张玮-神鹰传说,http://em.21dtv.com/songs/60105050.mkv +谭维维-神鹰传说,http://em.21dtv.com/songs/60038511.mkv +伍华-伤已成曲,http://em.21dtv.com/songs/60077525.mkv +秦影-疏雨彩虹,http://em.21dtv.com/songs/60128275.mkv +严艺丹-誓言成晖,http://em.21dtv.com/songs/60110823.mkv +STEPS-say youll be mine,http://em.21dtv.com/songs/60004849.mkv +后弦-十有八九,http://em.21dtv.com/songs/60039044.mkv +佚名-since youve been gone,http://em.21dtv.com/songs/60005045.mkv +谢金燕-谁也不爱,http://em.21dtv.com/songs/60040146.mkv +张雷+石梅-所以爱情,http://em.21dtv.com/songs/60097322.mkv +张跃-伤心作者,http://em.21dtv.com/songs/60135242.mkv +刘德华-伤心最痛,http://em.21dtv.com/songs/60090689.mkv +龙千玉-思乡之恋,http://em.21dtv.com/songs/60076357.mkv +徐小凤-思行之路(演唱会),http://em.21dtv.com/songs/60040475.mkv +蔡秋凤-伤心再会,http://em.21dtv.com/songs/60095916.mkv +周丽淇-傻笑最好,http://em.21dtv.com/songs/60037556.mkv +佚名-思乡之歌,http://em.21dtv.com/songs/60040594.mkv +高山林-伤心祝福,http://em.21dtv.com/songs/60037986.mkv +冯圣雅-伤心字典,http://em.21dtv.com/songs/60072376.mkv +王雪晶+庄群诗-烧香姻缘,http://em.21dtv.com/songs/60088338.mkv +秀兰玛雅-伤心夜雨,http://em.21dtv.com/songs/60037974.mkv +林子祥-三心一意,http://em.21dtv.com/songs/60037354.mkv +任剑辉-三笑姻缘,http://em.21dtv.com/songs/60037349.mkv +沐婷-水袖云间,http://em.21dtv.com/songs/60107866.mkv +李振军-山形依旧,http://em.21dtv.com/songs/60037688.mkv +卓依婷-伤心也好,http://em.21dtv.com/songs/60037969.mkv +安与骑兵-随心摇摆(演唱会),http://em.21dtv.com/songs/60077790.mkv +Nero-上弦の月,http://em.21dtv.com/songs/60119169.mkv +庄振凯-伤心小站,http://em.21dtv.com/songs/60077524.mkv +蔡琴-伤心小站,http://em.21dtv.com/songs/60037966.mkv +邱芸子+邵大伦-伤心小雨,http://em.21dtv.com/songs/60102787.mkv +陈雷-伤心小巷,http://em.21dtv.com/songs/60037965.mkv +蔡小虎-伤心小巷,http://em.21dtv.com/songs/60037964.mkv +群星-手心相牵,http://em.21dtv.com/songs/60039650.mkv +石梅+冷漠-水乡新娘,http://em.21dtv.com/songs/60068676.mkv +梁耀安+蒋文端-十绣香囊(二),http://em.21dtv.com/songs/60039034.mkv +张科+刘璐-书写幸福,http://em.21dtv.com/songs/60131419.mkv +游安琪+东方T&J-是星星的(无原唱),http://em.21dtv.com/songs/60039522.mkv +周韦杰+邵大伦-伤心无效,http://em.21dtv.com/songs/60037961.mkv +罗时丰+黄连煜-伤心舞台,http://em.21dtv.com/songs/60037963.mkv +张秀卿-伤心往事,http://em.21dtv.com/songs/60037956.mkv +尤雅-伤心往事,http://em.21dtv.com/songs/60037955.mkv +胡红艳-水乡温柔,http://em.21dtv.com/songs/60077716.mkv +许峰-失陷温柔,http://em.21dtv.com/songs/60068654.mkv +洪荣宏-伤心无眠,http://em.21dtv.com/songs/60130541.mkv +陈瑞-伤心网恋,http://em.21dtv.com/songs/60071102.mkv +陈杰洲-伤心舞会(无原唱),http://em.21dtv.com/songs/60037962.mkv +孙协志-伤心无话,http://em.21dtv.com/songs/60037959.mkv +叶树茵-伤心无话(无原唱),http://em.21dtv.com/songs/60037958.mkv +刘海波-所向无敌,http://em.21dtv.com/songs/60090718.mkv +岳佳-水乡天堂,http://em.21dtv.com/songs/60081433.mkv +EO2-三项铁人,http://em.21dtv.com/songs/60037347.mkv +胡夏-伤心童话,http://em.21dtv.com/songs/60066298.mkv +杨志广-死心塌地,http://em.21dtv.com/songs/60125746.mkv +徐一鸣-死心塌地,http://em.21dtv.com/songs/60107739.mkv +永邦-死心塌地,http://em.21dtv.com/songs/60040635.mkv +梁咏琪-死心塌地,http://em.21dtv.com/songs/60040634.mkv +夹子道-死心塌地,http://em.21dtv.com/songs/60040633.mkv +迪克牛仔-死心塌地,http://em.21dtv.com/songs/60040632.mkv +孙淑媚+王识贤-伤心手指,http://em.21dtv.com/songs/60037953.mkv +A Lin-随心所遇,http://em.21dtv.com/songs/60129872.mkv +罗琦-随心所欲,http://em.21dtv.com/songs/60096106.mkv +指南针乐队-随心所欲,http://em.21dtv.com/songs/60040952.mkv +范怡文-随心所欲,http://em.21dtv.com/songs/60040951.mkv +丑丑-随心所欲(演唱会),http://em.21dtv.com/songs/60040950.mkv +佚名-伤心伤情,http://em.21dtv.com/songs/60037945.mkv +吴淑敏-伤心伤情,http://em.21dtv.com/songs/60037944.mkv +潘美辰+JOANNA MOON-伤心神话,http://em.21dtv.com/songs/60062803.mkv +青春大卫-手心手背,http://em.21dtv.com/songs/60126426.mkv +姚贝娜-手心手背,http://em.21dtv.com/songs/60125372.mkv +陶钰玉-手心手背,http://em.21dtv.com/songs/60110655.mkv +张曼-手心手背,http://em.21dtv.com/songs/60106848.mkv +张越-伤心三宝,http://em.21dtv.com/songs/60086810.mkv +陶钰玉-手心手背(演唱会),http://em.21dtv.com/songs/60085727.mkv +陶钰玉-手心手背,http://em.21dtv.com/songs/60039648.mkv +欧得洋-手心手背,http://em.21dtv.com/songs/60039647.mkv +T.R.Y-手心手背,http://em.21dtv.com/songs/60039646.mkv +方季惟-伤心如我,http://em.21dtv.com/songs/60091259.mkv +蒋大为-三峡人家,http://em.21dtv.com/songs/60037345.mkv +胡红艳-三峡人家,http://em.21dtv.com/songs/60037344.mkv +戴娆-思绪如潮,http://em.21dtv.com/songs/60040601.mkv +张迪+海陆-三行情书,http://em.21dtv.com/songs/60116804.mkv +雷乐队-首席情人(无原唱),http://em.21dtv.com/songs/60039707.mkv +萧忆情-霜雪千年,http://em.21dtv.com/songs/60127353.mkv +萧忆情-霜雪千年,http://em.21dtv.com/songs/60119928.mkv +群星-十项全能,http://em.21dtv.com/songs/60039033.mkv +黄乙玲-伤心签名,http://em.21dtv.com/songs/60037935.mkv +王瑞霞+李明育-伤心情话(无原唱),http://em.21dtv.com/songs/60062898.mkv +王端霞+李明育-伤心情话(无原唱),http://em.21dtv.com/songs/60037938.mkv +晓东+冰阳-水乡情歌,http://em.21dtv.com/songs/60133757.mkv +李雨寿-伤心情歌,http://em.21dtv.com/songs/60101095.mkv +崔伟亮-伤心情歌,http://em.21dtv.com/songs/60077523.mkv +陈天红-伤心情歌,http://em.21dtv.com/songs/60069793.mkv +七郎-思乡情歌,http://em.21dtv.com/songs/60040588.mkv +叶倩文-双星情歌,http://em.21dtv.com/songs/60039905.mkv +许冠杰-双星情歌,http://em.21dtv.com/songs/60039904.mkv +张伟文-双星情歌(演唱会),http://em.21dtv.com/songs/60039903.mkv +陈百强-双星情歌(演唱会),http://em.21dtv.com/songs/60039902.mkv +TWINS-伤心情歌,http://em.21dtv.com/songs/60037937.mkv +何欣-所向披靡,http://em.21dtv.com/songs/60101903.mkv +邝美云-思想扑火,http://em.21dtv.com/songs/60040597.mkv +八三夭-水星逆行,http://em.21dtv.com/songs/60109990.mkv +连诗雅-水星逆行,http://em.21dtv.com/songs/60107254.mkv +游子-诗心女人,http://em.21dtv.com/songs/60113824.mkv +佚名-伤心男人,http://em.21dtv.com/songs/60037931.mkv +许嵩+孙涛-书香年华,http://em.21dtv.com/songs/60119963.mkv +东方依依-伤心女孩,http://em.21dtv.com/songs/60097238.mkv +雷启飞-伤心男孩(舞曲版),http://em.21dtv.com/songs/60067409.mkv +赛娅-伤心女孩,http://em.21dtv.com/songs/60066297.mkv +毛毛-伤心男孩,http://em.21dtv.com/songs/60061564.mkv +林忆莲-谁像你好(演唱会),http://em.21dtv.com/songs/60040141.mkv +BY2-伤心农场,http://em.21dtv.com/songs/60087180.mkv +奇力格尔-实现梦想,http://em.21dtv.com/songs/60039167.mkv +郭峰-实现梦想,http://em.21dtv.com/songs/60039166.mkv +阿丽玛+奇力格尔-实现梦想,http://em.21dtv.com/songs/60039165.mkv +黑撒-陕西美食,http://em.21dtv.com/songs/60133138.mkv +龙小葵-蛇蝎美人,http://em.21dtv.com/songs/60085690.mkv +方怡萍-伤心玫瑰(无原唱),http://em.21dtv.com/songs/60037929.mkv +阎维文-山西牧歌,http://em.21dtv.com/songs/60037684.mkv +荞菲-三心两意(无原唱),http://em.21dtv.com/songs/60095879.mkv +詹雅雯-三心两意,http://em.21dtv.com/songs/60037353.mkv +胡杰夕-实现理想,http://em.21dtv.com/songs/60080985.mkv +十三狼-陕西愣娃,http://em.21dtv.com/songs/60106661.mkv +江宏恩-手下留情,http://em.21dtv.com/songs/60077659.mkv +孙淑媚-手下留情,http://em.21dtv.com/songs/60039640.mkv +李翊君-手下留情,http://em.21dtv.com/songs/60039639.mkv +张蓉蓉-伤心恋情,http://em.21dtv.com/songs/60037925.mkv +徐子晏-山下恋情,http://em.21dtv.com/songs/60037687.mkv +农夫-双喜临门,http://em.21dtv.com/songs/60067445.mkv +顾芮宁-随心流浪,http://em.21dtv.com/songs/60124702.mkv +曹方-伤心旅客,http://em.21dtv.com/songs/60077522.mkv +荣帝丞-伤心路口,http://em.21dtv.com/songs/60071101.mkv +周祥-伤心烈酒,http://em.21dtv.com/songs/60102050.mkv +凤娘-伤心泪痕,http://em.21dtv.com/songs/60118377.mkv +彭浩-水乡恋歌,http://em.21dtv.com/songs/60111098.mkv +孙晓哲-撕心裂肺,http://em.21dtv.com/songs/60085750.mkv +杜相权-撕心裂肺,http://em.21dtv.com/songs/60081303.mkv +韩流-撕心裂肺,http://em.21dtv.com/songs/60068688.mkv +孙晓哲-撕心裂肺(演唱会),http://em.21dtv.com/songs/60040610.mkv +万芳-收信快乐,http://em.21dtv.com/songs/60039603.mkv +莫文蔚-收信快乐,http://em.21dtv.com/songs/60039602.mkv +黄妃-伤心看板,http://em.21dtv.com/songs/60066296.mkv +梁涵-伤心记忆,http://em.21dtv.com/songs/60098530.mkv +郭品超-伤心镜头,http://em.21dtv.com/songs/60037912.mkv +梅艳芳-伤心教堂,http://em.21dtv.com/songs/60037911.mkv +王奕心-伤心借口,http://em.21dtv.com/songs/60129385.mkv +秀兰玛雅+邵大伦-伤心酒馆,http://em.21dtv.com/songs/60077521.mkv +江蕙-伤心酒店(演唱会),http://em.21dtv.com/songs/60064840.mkv +詹曼铃+林清国-伤心酒店,http://em.21dtv.com/songs/60037920.mkv +施文彬+江蕙-伤心酒店,http://em.21dtv.com/songs/60037919.mkv +曾心梅+陈中-伤心酒店,http://em.21dtv.com/songs/60037918.mkv +孙淑媚-伤心机场,http://em.21dtv.com/songs/60125389.mkv +孙淑媚-伤心机场,http://em.21dtv.com/songs/60100839.mkv +张爽-伤心机场,http://em.21dtv.com/songs/60037909.mkv +周传雄+李千娜-伤心酒杯,http://em.21dtv.com/songs/60037917.mkv +影视歌曲-实心汉子,http://em.21dtv.com/songs/60091184.mkv +陈淑萍-伤心海岸,http://em.21dtv.com/songs/60067407.mkv +毛毛-伤心公主,http://em.21dtv.com/songs/60037905.mkv +方顺吉-伤心过头(无原唱),http://em.21dtv.com/songs/60037906.mkv +林忆莲-盛夏光年,http://em.21dtv.com/songs/60132618.mkv +陈冰-盛夏光年,http://em.21dtv.com/songs/60105472.mkv +黑龙-盛夏光年,http://em.21dtv.com/songs/60062449.mkv +五月天-盛夏光年,http://em.21dtv.com/songs/60038702.mkv +十三狼-陕西方言,http://em.21dtv.com/songs/60104853.mkv +MC阿哲-奢香夫人,http://em.21dtv.com/songs/60134764.mkv +凤凰传奇-奢香夫人,http://em.21dtv.com/songs/60038186.mkv +满文军-三心二意,http://em.21dtv.com/songs/60037352.mkv +蓝心湄-三心二意,http://em.21dtv.com/songs/60037351.mkv +李天华-三心二忆,http://em.21dtv.com/songs/60037350.mkv +黄乙玲-伤心的缘,http://em.21dtv.com/songs/60037893.mkv +夹子乐团-手写的信,http://em.21dtv.com/songs/60039642.mkv +向蕙玲-伤心的我,http://em.21dtv.com/songs/60134999.mkv +邝美云-伤心的我,http://em.21dtv.com/songs/60037887.mkv +高峰-伤心的我(无原唱),http://em.21dtv.com/songs/60037886.mkv +李宗盛-伤心地铁,http://em.21dtv.com/songs/60114600.mkv +紫龙-伤心地铁,http://em.21dtv.com/songs/60037900.mkv +光良-伤心地铁,http://em.21dtv.com/songs/60037899.mkv +光良-伤心地铁(演唱会),http://em.21dtv.com/songs/60037898.mkv +王识贤-伤心的人,http://em.21dtv.com/songs/60037874.mkv +苏又榕-伤心的人,http://em.21dtv.com/songs/60037873.mkv +谭咏麟-山下的人,http://em.21dtv.com/songs/60037686.mkv +谭咏麟-山下的人(演唱会),http://em.21dtv.com/songs/60037685.mkv +办桌二人组-伤心的你,http://em.21dtv.com/songs/60037870.mkv +任逸飞-熟悉的路,http://em.21dtv.com/songs/60132191.mkv +夏婉安-伤心的泪,http://em.21dtv.com/songs/60119374.mkv +张星唯-伤心冬季,http://em.21dtv.com/songs/60122729.mkv +张星唯-伤心冬季,http://em.21dtv.com/songs/60114539.mkv +苏贤文-伤心的酒,http://em.21dtv.com/songs/60100416.mkv +黄思婷+傅振辉-伤心的酒,http://em.21dtv.com/songs/60082262.mkv +强辩乐团-伤心大街,http://em.21dtv.com/songs/60037850.mkv +SNH48-盛夏的花(演),http://em.21dtv.com/songs/60099034.mkv +孙青-伤心等候,http://em.21dtv.com/songs/60037897.mkv +邵大伦-伤心的歌,http://em.21dtv.com/songs/60123228.mkv +吴光明-伤心的歌,http://em.21dtv.com/songs/60098188.mkv +韩雪-盛夏的歌,http://em.21dtv.com/songs/60072392.mkv +高进-伤心的歌,http://em.21dtv.com/songs/60067405.mkv +周华健-伤心的歌,http://em.21dtv.com/songs/60037861.mkv +詹雅雯-伤心的歌,http://em.21dtv.com/songs/60037860.mkv +佚名-伤心的歌(无原唱),http://em.21dtv.com/songs/60037859.mkv +林子娟-伤心当店,http://em.21dtv.com/songs/60067404.mkv +彭莉-伤心的club,http://em.21dtv.com/songs/60037853.mkv +徐元雄-伤心的爱,http://em.21dtv.com/songs/60105071.mkv +陈冠霖-伤心车站,http://em.21dtv.com/songs/60061561.mkv +孙淑媚-伤心车站,http://em.21dtv.com/songs/60037847.mkv +彝人传奇-水西传说,http://em.21dtv.com/songs/60120546.mkv +冷漠-伤心城市,http://em.21dtv.com/songs/60115700.mkv +陈瑞-伤心城市,http://em.21dtv.com/songs/60106408.mkv +姜亮+杨廷廷-伤心城市,http://em.21dtv.com/songs/60086808.mkv +张祥洪-伤心城市,http://em.21dtv.com/songs/60083762.mkv +冷漠+云菲菲-伤心城市,http://em.21dtv.com/songs/60064838.mkv +云菲菲-伤心城市,http://em.21dtv.com/songs/60037849.mkv +冷漠-伤心城市,http://em.21dtv.com/songs/60037848.mkv +方少珊-水乡晨曲,http://em.21dtv.com/songs/60040244.mkv +阿杜-死心彻底(演唱会),http://em.21dtv.com/songs/60040630.mkv +詹雅雯-伤心不走,http://em.21dtv.com/songs/60135725.mkv +蔡健雅-深信不疑,http://em.21dtv.com/songs/60038371.mkv +张云儿-伤心背影,http://em.21dtv.com/songs/60037844.mkv +吉神新星-四星报喜,http://em.21dtv.com/songs/60040708.mkv +吴奇隆-死心不息,http://em.21dtv.com/songs/60040629.mkv +罗文聪+朱慧珍-伤心吧台,http://em.21dtv.com/songs/60037843.mkv +林欣彤-手下败将(演唱会),http://em.21dtv.com/songs/60064894.mkv +关心妍-手下败将,http://em.21dtv.com/songs/60039638.mkv +堂娜-伤心边境,http://em.21dtv.com/songs/60037845.mkv +古巨基+TWINS-死性不改,http://em.21dtv.com/songs/60127800.mkv +TWINS+BOY'Z-死性不改(演唱会),http://em.21dtv.com/songs/60064925.mkv +佳佳-死性不改,http://em.21dtv.com/songs/60040642.mkv +BOY'Z-死性不改,http://em.21dtv.com/songs/60040641.mkv +BOY'Z+TWINS-死性不改,http://em.21dtv.com/songs/60040640.mkv +泳儿+洪卓立-死性不改(演唱会),http://em.21dtv.com/songs/60040639.mkv +BOY'Z-死性不改(演唱会),http://em.21dtv.com/songs/60040638.mkv +扬哲-伤心暗暝,http://em.21dtv.com/songs/60079948.mkv +童唱-水蛙仔子,http://em.21dtv.com/songs/60040230.mkv +关楚耀-死亡之吻,http://em.21dtv.com/songs/60133390.mkv +李玖哲-失物招领,http://em.21dtv.com/songs/60038840.mkv +张文绮-三碗猪脚,http://em.21dtv.com/songs/60105847.mkv +林奕匡-stay with you tonight,http://em.21dtv.com/songs/60063751.mkv +方力申+吴雨霏-三位一体,http://em.21dtv.com/songs/60037337.mkv +迪克牛仔-三万英尺,http://em.21dtv.com/songs/60037336.mkv +迪克牛仔-三万英尺(演唱会),http://em.21dtv.com/songs/60037335.mkv +云飞+图雅娜莎-守望相助,http://em.21dtv.com/songs/60123613.mkv +叶倩文-素我心弦,http://em.21dtv.com/songs/60090789.mkv +田馥甄-十万嬉皮,http://em.21dtv.com/songs/60110430.mkv +苏珊-sometimes when we touch(演唱会),http://em.21dtv.com/songs/60073911.mkv +佚名-sometimes when we touch,http://em.21dtv.com/songs/60005171.mkv +周慧敏+林子祥-sometimes when we touch(演唱会),http://em.21dtv.com/songs/60005170.mkv +夏韶声-sometimes when we touch(演唱会),http://em.21dtv.com/songs/60005169.mkv +KATHY MATTEA-455 rocket,http://em.21dtv.com/songs/60000024.mkv +詹雅雯-是我忘啦,http://em.21dtv.com/songs/60084479.mkv +王祝海-世外桃园,http://em.21dtv.com/songs/60121933.mkv +于新娜-世外桃源,http://em.21dtv.com/songs/60112491.mkv +陆正信-世外桃源,http://em.21dtv.com/songs/60100553.mkv +许巍-世外桃源,http://em.21dtv.com/songs/60083806.mkv +谭咏麟-世外桃源,http://em.21dtv.com/songs/60039335.mkv +红霞-世外桃源,http://em.21dtv.com/songs/60039334.mkv +M-GIRLS+四千金-世外桃源,http://em.21dtv.com/songs/60039333.mkv +谭咏麟-世外桃源(演唱会),http://em.21dtv.com/songs/60039332.mkv +周逸涵-思味特love,http://em.21dtv.com/songs/60066331.mkv +大支-水喔水喔,http://em.21dtv.com/songs/60040232.mkv +芭比-是我是我,http://em.21dtv.com/songs/60039518.mkv +黄征-守望沙滩,http://em.21dtv.com/songs/60039694.mkv +HILARY DUFF-someones watching over me,http://em.21dtv.com/songs/60082335.mkv +佚名-生为女人,http://em.21dtv.com/songs/60038645.mkv +关心妍-身为女人,http://em.21dtv.com/songs/60038268.mkv +海生-三无男人,http://em.21dtv.com/songs/60037338.mkv +佚名-苏武牧羊,http://em.21dtv.com/songs/60040824.mkv +冯志孝-苏武牧羊,http://em.21dtv.com/songs/60040823.mkv +王菲-守望麦田,http://em.21dtv.com/songs/60039693.mkv +东方神起-stay with me tonight,http://em.21dtv.com/songs/60005250.mkv +佚名-she wears my ring,http://em.21dtv.com/songs/60004961.mkv +林峰-所谓理想,http://em.21dtv.com/songs/60041025.mkv +珊瑚格格-上网了吗,http://em.21dtv.com/songs/60117054.mkv +Mu'z-生无可恋,http://em.21dtv.com/songs/60124956.mkv +红乐队-说完就走(演唱会),http://em.21dtv.com/songs/60067453.mkv +陈凯彤-肆无忌惮,http://em.21dtv.com/songs/60112343.mkv +DAMAGE-so what if i,http://em.21dtv.com/songs/60005118.mkv +詹雅雯-是我憨啦,http://em.21dtv.com/songs/60039513.mkv +柴超-思维宫殿,http://em.21dtv.com/songs/60127122.mkv +潘长江-十五分钟,http://em.21dtv.com/songs/60090073.mkv +崔京浩-随我飞翔,http://em.21dtv.com/songs/60040945.mkv +詹瑞文-十五二十,http://em.21dtv.com/songs/60111396.mkv +SHONTELLE+AKON-stuck with each other,http://em.21dtv.com/songs/60063756.mkv +杨洪基-身为党员,http://em.21dtv.com/songs/60104232.mkv +郑凡-伤我的心,http://em.21dtv.com/songs/60069792.mkv +庄心妍+富博洋+格格+洛桑尖措-守望地球,http://em.21dtv.com/songs/60121637.mkv +金正浩-刷我滴卡,http://em.21dtv.com/songs/60121032.mkv +南征北战-萨瓦迪卡,http://em.21dtv.com/songs/60117594.mkv +马蕊-萨瓦蒂卡,http://em.21dtv.com/songs/60097416.mkv +马吟吟-所谓惦记,http://em.21dtv.com/songs/60136002.mkv +苏打绿-是我的海,http://em.21dtv.com/songs/60039510.mkv +何弘轩-是我的错,http://em.21dtv.com/songs/60134883.mkv +快乐帮+卓义峰-手无寸铁,http://em.21dtv.com/songs/60039637.mkv +刘玉婉-塞外村女,http://em.21dtv.com/songs/60037160.mkv +伍浩哲-是我不配,http://em.21dtv.com/songs/60068663.mkv +MAROON 5-she will be loved,http://em.21dtv.com/songs/60004962.mkv +Jacky周玮贤-是我不好,http://em.21dtv.com/songs/60097344.mkv +段千寻-是我不好,http://em.21dtv.com/songs/60039505.mkv +陈慧琳-是我不好,http://em.21dtv.com/songs/60039504.mkv +潘玮柏-禅舞不二,http://em.21dtv.com/songs/60012252.mkv +王滨-世外不丹,http://em.21dtv.com/songs/60064886.mkv +高安-是我不对,http://em.21dtv.com/songs/60039503.mkv +古巨基-所谓爱情,http://em.21dtv.com/songs/60041023.mkv +柯以敏-说我爱你,http://em.21dtv.com/songs/60040428.mkv +代小波-说我爱你,http://em.21dtv.com/songs/60040427.mkv +佚名-sealed with a kiss,http://em.21dtv.com/songs/60004867.mkv +BRIAN HYLAN-sealed with a kiss,http://em.21dtv.com/songs/60004866.mkv +BOBBY VINTON-sealed with a kiss,http://em.21dtv.com/songs/60004865.mkv +陈百强-sealed with a kiss(演唱会),http://em.21dtv.com/songs/60004864.mkv +喜波-是我爱错,http://em.21dtv.com/songs/60131292.mkv +SPICE GIRLS-spice up your life,http://em.21dtv.com/songs/60005219.mkv +南拳妈妈+铁竹堂-say u love me,http://em.21dtv.com/songs/60004839.mkv +RIHANNA-shut up and drive,http://em.21dtv.com/songs/60005016.mkv +陈雷-石头仔情,http://em.21dtv.com/songs/60039075.mkv +阿沁-圣堂之门,http://em.21dtv.com/songs/60038685.mkv +张芝明-山塘之歌,http://em.21dtv.com/songs/60085398.mkv +郑希怡-身体语言,http://em.21dtv.com/songs/60038264.mkv +傅颖-身体语言,http://em.21dtv.com/songs/60038263.mkv +张靓颖-身体语言(演唱会),http://em.21dtv.com/songs/60038262.mkv +李冬风-世态炎凉,http://em.21dtv.com/songs/60117807.mkv +墨明棋妙-盛唐夜唱,http://em.21dtv.com/songs/60103994.mkv +EDIQ-盛唐夜唱,http://em.21dtv.com/songs/60077576.mkv +梁汉文-使徒行传,http://em.21dtv.com/songs/60039189.mkv +周传雄-伤痛无声,http://em.21dtv.com/songs/60037833.mkv +BONNIE RAITT-something to talk about,http://em.21dtv.com/songs/60005163.mkv +佚名-she talks to angels,http://em.21dtv.com/songs/60004959.mkv +贺东-三天三夜,http://em.21dtv.com/songs/60107231.mkv +陈一玲-三天三夜,http://em.21dtv.com/songs/60083741.mkv +刘雅婷-三天三夜,http://em.21dtv.com/songs/60081544.mkv +歌浴森-三天三夜,http://em.21dtv.com/songs/60080516.mkv +张玮+歌浴森-三天三夜,http://em.21dtv.com/songs/60069784.mkv +张惠妹-三天三夜,http://em.21dtv.com/songs/60037334.mkv +果味VC-沙滩绅士,http://em.21dtv.com/songs/60088130.mkv +吴雨霏-杀他死垒(演唱会),http://em.21dtv.com/songs/60037438.mkv +叶振棠-神探霹雳(演唱会),http://em.21dtv.com/songs/60038502.mkv +TWINS-skip to my lou,http://em.21dtv.com/songs/60005064.mkv +蔡小虎-双头马车,http://em.21dtv.com/songs/60039891.mkv +狮子合唱团-三天两夜,http://em.21dtv.com/songs/60133967.mkv +张学友-三天两夜,http://em.21dtv.com/songs/60037333.mkv +Snh48-沙滩凉鞋,http://em.21dtv.com/songs/60107441.mkv +花世纪-谁太啰嗦,http://em.21dtv.com/songs/60085739.mkv +MARY J.BLIGE+LIL WAYNE+DIDDY-someone to love me,http://em.21dtv.com/songs/60073908.mkv +陈盈洁-酸甜苦涩,http://em.21dtv.com/songs/60040878.mkv +杨烈-沙滩寄情(无原唱),http://em.21dtv.com/songs/60037478.mkv +彭伟家-身体健康,http://em.21dtv.com/songs/60103296.mkv +张卫健-身体健康,http://em.21dtv.com/songs/60038261.mkv +王毓梅-三堂会审,http://em.21dtv.com/songs/60037330.mkv +谢安琪-身体发肤,http://em.21dtv.com/songs/60038259.mkv +朱长松-伤痛的心,http://em.21dtv.com/songs/60077516.mkv +刘德华-洒脱的爱,http://em.21dtv.com/songs/60090701.mkv +孙燕姿-随堂测验,http://em.21dtv.com/songs/60040944.mkv +林佳音-是天菜啊,http://em.21dtv.com/songs/60124120.mkv +孙盛希-是他不配,http://em.21dtv.com/songs/60131327.mkv +Zedd+Alessia Cara-Stay,http://em.21dtv.com/songs/60134827.mkv +Miley Cyrus-Stay,http://em.21dtv.com/songs/60126540.mkv +Kygo+Maty Noyes-Stay,http://em.21dtv.com/songs/60122392.mkv +Ben-Stay,http://em.21dtv.com/songs/60119102.mkv +尹亨烈-Stay,http://em.21dtv.com/songs/60115883.mkv +PLAN S-STAR,http://em.21dtv.com/songs/60124971.mkv +皓天-实实在在,http://em.21dtv.com/songs/60088366.mkv +王杰-说声珍重,http://em.21dtv.com/songs/60040419.mkv +洪煜祺+微光-施舍自由,http://em.21dtv.com/songs/60071116.mkv +容祖儿-世上只有,http://em.21dtv.com/songs/60039320.mkv +郑源-世上只有(演唱会),http://em.21dtv.com/songs/60039319.mkv +容祖儿-世上只有(演唱会),http://em.21dtv.com/songs/60039318.mkv +阿猛-深水炸弹,http://em.21dtv.com/songs/60134382.mkv +孙楠-盛世钟声,http://em.21dtv.com/songs/60090920.mkv +叶俊华-山水重庆,http://em.21dtv.com/songs/60123726.mkv +郭富城-盛世最强,http://em.21dtv.com/songs/60093364.mkv +潘长江+张爱莉-手术之前,http://em.21dtv.com/songs/60090069.mkv +红弈-生身之母,http://em.21dtv.com/songs/60077564.mkv +许嵩-山水之间,http://em.21dtv.com/songs/60102730.mkv +焰烽-射手之箭,http://em.21dtv.com/songs/60072379.mkv +郑璐-盛世中华,http://em.21dtv.com/songs/60099538.mkv +阎维文+殷秀梅-盛世中华,http://em.21dtv.com/songs/60038700.mkv +阎维文-盛世中国,http://em.21dtv.com/songs/60038699.mkv +李治廷-绅士作风,http://em.21dtv.com/songs/60121779.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-声声祝福,http://em.21dtv.com/songs/60077568.mkv +卓依婷-声声祝福,http://em.21dtv.com/songs/60038652.mkv +陈小春-谁是最爱,http://em.21dtv.com/songs/60040111.mkv +宋少卿-山神之爱,http://em.21dtv.com/songs/60037671.mkv +吴琼-三生有缘,http://em.21dtv.com/songs/60099142.mkv +侯拂明-谁是英雄,http://em.21dtv.com/songs/60122490.mkv +陈怡男-谁是英雄,http://em.21dtv.com/songs/60110636.mkv +苏勒亚其其格-谁是英雄,http://em.21dtv.com/songs/60109590.mkv +何龙雨-谁是英雄,http://em.21dtv.com/songs/60040108.mkv +郑中基-三生有幸,http://em.21dtv.com/songs/60037307.mkv +钟舒漫+钟舒祺-SS14,http://em.21dtv.com/songs/60106353.mkv +好妹妹乐队-说时依旧,http://em.21dtv.com/songs/60104909.mkv +林慧萍-说时依旧,http://em.21dtv.com/songs/60040420.mkv +赵鑫-三生烟火,http://em.21dtv.com/songs/60094697.mkv +芭比-速食野花,http://em.21dtv.com/songs/60040858.mkv +冉青霞-深深拥抱,http://em.21dtv.com/songs/60099764.mkv +朱培德-生死相依,http://em.21dtv.com/songs/60098428.mkv +孙燕姿-世说心语,http://em.21dtv.com/songs/60087664.mkv +邓丽君-丝丝小雨,http://em.21dtv.com/songs/60040459.mkv +孙燕姿-世说新语,http://em.21dtv.com/songs/60039331.mkv +麦穗-山水相依,http://em.21dtv.com/songs/60037676.mkv +孙宇-深深小巷,http://em.21dtv.com/songs/60099926.mkv +邓丽君-说说笑笑,http://em.21dtv.com/songs/60040424.mkv +邓丽君-说说笑笑(演唱会),http://em.21dtv.com/songs/60040423.mkv +零点乐队-说声谢谢(演唱会),http://em.21dtv.com/songs/60040418.mkv +王菲菲+江涛-生死相许,http://em.21dtv.com/songs/60038638.mkv +林心如-生死相许,http://em.21dtv.com/songs/60038637.mkv +黎明+陈慧娴-生死相许,http://em.21dtv.com/songs/60038636.mkv +梁汉文-随时行乐,http://em.21dtv.com/songs/60040940.mkv +纪佳松-随身幸福(演唱会),http://em.21dtv.com/songs/60040939.mkv +牛雨霖-谁是兄弟,http://em.21dtv.com/songs/60107057.mkv +吴立群-山水浔城,http://em.21dtv.com/songs/60122589.mkv +钟镇涛-闪闪星辰,http://em.21dtv.com/songs/60096140.mkv +陈百潭-三十外外,http://em.21dtv.com/songs/60037327.mkv +满江-四舍五入,http://em.21dtv.com/songs/60040703.mkv +蔡小虎-撕碎温柔,http://em.21dtv.com/songs/60040609.mkv +佚名-三声无奈,http://em.21dtv.com/songs/60037310.mkv +邓丽君-三声无奈,http://em.21dtv.com/songs/60037309.mkv +余天-三声无奈,http://em.21dtv.com/songs/60013927.mkv +罗百吉-神圣舞会,http://em.21dtv.com/songs/60091839.mkv +张洪量-杀手挽歌,http://em.21dtv.com/songs/60037435.mkv +莫文蔚-谁是我的,http://em.21dtv.com/songs/60040103.mkv +张清芳-世事无常,http://em.21dtv.com/songs/60039330.mkv +李圣杰-晒晒太阳,http://em.21dtv.com/songs/60091305.mkv +洪荣宏-深深庭院,http://em.21dtv.com/songs/60038368.mkv +林心如-山水迢迢,http://em.21dtv.com/songs/60091443.mkv +魏晨-酸酸甜甜,http://em.21dtv.com/songs/60063067.mkv +张泉琳-山水童年,http://em.21dtv.com/songs/60125517.mkv +CANDEE-失色天空,http://em.21dtv.com/songs/60083795.mkv +温拿乐队-三十三转,http://em.21dtv.com/songs/60037326.mkv +温拿乐队-三十三转(演唱会),http://em.21dtv.com/songs/60037325.mkv +陈瑞-三生石语,http://em.21dtv.com/songs/60069781.mkv +费玉清-3345,http://em.21dtv.com/songs/60118919.mkv +郑仁-事实上我,http://em.21dtv.com/songs/60115451.mkv +曾雨轩-三生三世,http://em.21dtv.com/songs/60133771.mkv +张杰-三生三世,http://em.21dtv.com/songs/60133670.mkv +张杰-三生三世,http://em.21dtv.com/songs/60131406.mkv +曹强-三生三世,http://em.21dtv.com/songs/60104179.mkv +徐誉滕-深深深深,http://em.21dtv.com/songs/60077550.mkv +安涛-三十四十,http://em.21dtv.com/songs/60072361.mkv +海镔-傻傻莎莎,http://em.21dtv.com/songs/60061556.mkv +张智霖-生生世世,http://em.21dtv.com/songs/60038627.mkv +孙楠-生生世世,http://em.21dtv.com/songs/60038626.mkv +陈淑桦-生生世世,http://em.21dtv.com/songs/60038625.mkv +王蓉+萧正楠-三生三世,http://em.21dtv.com/songs/60037304.mkv +孟庭苇-三生三世,http://em.21dtv.com/songs/60037303.mkv +陈瑞-三生三世,http://em.21dtv.com/songs/60037302.mkv +MATCHBOX TWENTY-shes so mean,http://em.21dtv.com/songs/60073870.mkv +佚名-神圣使命,http://em.21dtv.com/songs/60038500.mkv +孙维良-神圣使命,http://em.21dtv.com/songs/60038499.mkv +秀兰玛雅+罗建豪-深深思恋,http://em.21dtv.com/songs/60038367.mkv +郑智化-三十三块,http://em.21dtv.com/songs/60037324.mkv +王盛楠-双宿双飞,http://em.21dtv.com/songs/60103459.mkv +紫浪-谁是谁非,http://em.21dtv.com/songs/60066327.mkv +罗永娟-谁是谁非,http://em.21dtv.com/songs/60040101.mkv +阎维文-神圣时辰,http://em.21dtv.com/songs/60038498.mkv +童星-事事如意,http://em.21dtv.com/songs/60088382.mkv +卓依婷-事事如愿,http://em.21dtv.com/songs/60086831.mkv +柳博+牛欣欣-事事如愿,http://em.21dtv.com/songs/60039364.mkv +尉金莹-上善若水,http://em.21dtv.com/songs/60131356.mkv +刀刀刀-上善若水,http://em.21dtv.com/songs/60104805.mkv +陈一凡-上善若水,http://em.21dtv.com/songs/60101552.mkv +李娜-上善若水,http://em.21dtv.com/songs/60083768.mkv +林欣彤-上善若水,http://em.21dtv.com/songs/60077532.mkv +许廷铿-上善若水,http://em.21dtv.com/songs/60068646.mkv +何晟铭-上善若水,http://em.21dtv.com/songs/60061566.mkv +佚名-世事如棋,http://em.21dtv.com/songs/60039329.mkv +许冠杰-世事如棋,http://em.21dtv.com/songs/60039328.mkv +刘锡明-世事如棋,http://em.21dtv.com/songs/60039327.mkv +徐良+付梦妮-苏三起解,http://em.21dtv.com/songs/60108521.mkv +储兰兰-苏三起解,http://em.21dtv.com/songs/60077781.mkv +周冶平-苏三起解,http://em.21dtv.com/songs/60040822.mkv +梅葆玖-苏三起解,http://em.21dtv.com/songs/60040821.mkv +徐小凤-苏三起解(演唱会),http://em.21dtv.com/songs/60040820.mkv +周杰伦-水手怕水,http://em.21dtv.com/songs/60064909.mkv +李香兰-身世飘零,http://em.21dtv.com/songs/60038258.mkv +佚名-4 seasons of loneliness,http://em.21dtv.com/songs/60000023.mkv +慕荣-时尚女王,http://em.21dtv.com/songs/60130354.mkv +李玉刚-盛世霓裳(演唱会),http://em.21dtv.com/songs/60066306.mkv +翁虹-速食男女,http://em.21dtv.com/songs/60091882.mkv +翁虹+L.A.BOYZ-速食男女(无原唱),http://em.21dtv.com/songs/60040857.mkv +孙协志-思思念念,http://em.21dtv.com/songs/60040579.mkv +黄思婷-思思念念,http://em.21dtv.com/songs/60040578.mkv +陈亮吟-思思念念(无原唱),http://em.21dtv.com/songs/60040577.mkv +马条-似水年华,http://em.21dtv.com/songs/60119063.mkv +刘若英-似水年华,http://em.21dtv.com/songs/60039354.mkv +吴欢-傻傻男孩,http://em.21dtv.com/songs/60037550.mkv +王建杰-深深迷醉(无原唱),http://em.21dtv.com/songs/60080143.mkv +苍茫-山水梦乡,http://em.21dtv.com/songs/60132831.mkv +BOY'Z-甩绳马骝(演唱会),http://em.21dtv.com/songs/60039826.mkv +杨丽雅-盛世牡丹,http://em.21dtv.com/songs/60119680.mkv +时尚老太-时尚老太,http://em.21dtv.com/songs/60096318.mkv +常健鸿-生死恋人,http://em.21dtv.com/songs/60077565.mkv +蛇舞优优-三十里铺,http://em.21dtv.com/songs/60130735.mkv +崔苗-三十里铺,http://em.21dtv.com/songs/60123869.mkv +冯健雪-三十里铺,http://em.21dtv.com/songs/60037316.mkv +程艾龄+薛枫-三十里铺,http://em.21dtv.com/songs/60037315.mkv +王喆-三十里铺(演唱会),http://em.21dtv.com/songs/60037314.mkv +刘德华-似水流年,http://em.21dtv.com/songs/60097240.mkv +原乡-似水流年,http://em.21dtv.com/songs/60086858.mkv +流苏-似水流年,http://em.21dtv.com/songs/60086857.mkv +李健-似水流年,http://em.21dtv.com/songs/60077770.mkv +ROBYNN+KENDY-似水流年,http://em.21dtv.com/songs/60077769.mkv +汪明荃-似水流年(演唱会),http://em.21dtv.com/songs/60077768.mkv +佚名-似水流年,http://em.21dtv.com/songs/60039353.mkv +伊妹儿-似水流年,http://em.21dtv.com/songs/60039352.mkv +徐小凤-似水流年,http://em.21dtv.com/songs/60039351.mkv +梅艳芳-似水流年,http://em.21dtv.com/songs/60039350.mkv +张国荣-似水流年(演唱会),http://em.21dtv.com/songs/60039349.mkv +梅艳芳-似水流年(演唱会),http://em.21dtv.com/songs/60039348.mkv +曾一鸣-4400,http://em.21dtv.com/songs/60105950.mkv +井口裕香-shining star love letter,http://em.21dtv.com/songs/60073871.mkv +陈婷婷-顺顺利利(无原唱),http://em.21dtv.com/songs/60040315.mkv +金姗姗-山水恋歌,http://em.21dtv.com/songs/60117289.mkv +杨雪晴-山水恋歌,http://em.21dtv.com/songs/60037674.mkv +伍佰-杀手骊歌,http://em.21dtv.com/songs/60037434.mkv +张敬轩-摄氏零度,http://em.21dtv.com/songs/60133663.mkv +施文彬-谁是老大,http://em.21dtv.com/songs/60040094.mkv +张敬轩-摄氏零度,http://em.21dtv.com/songs/60038241.mkv +刘若英-姗姗来迟,http://em.21dtv.com/songs/60037703.mkv +刘和刚-送送老兵,http://em.21dtv.com/songs/60040793.mkv +罗建章-谁杀了爱(无原唱),http://em.21dtv.com/songs/60040088.mkv +汤骏业-时时刻刻,http://em.21dtv.com/songs/60039158.mkv +齐航-时尚教主,http://em.21dtv.com/songs/60120177.mkv +潘越云-锁上记忆,http://em.21dtv.com/songs/60041040.mkv +张学友-丝丝记忆(演唱会),http://em.21dtv.com/songs/60040457.mkv +JC-说散就散,http://em.21dtv.com/songs/60134707.mkv +刘旭阳-说散就散,http://em.21dtv.com/songs/60132246.mkv +吴俊余-束手就擒,http://em.21dtv.com/songs/60130179.mkv +单色凌-随手纪念,http://em.21dtv.com/songs/60068693.mkv +林子娟-声声句句,http://em.21dtv.com/songs/60113693.mkv +胡夏-蜀山剑道,http://em.21dtv.com/songs/60116206.mkv +李玉刚-盛世华章,http://em.21dtv.com/songs/60088028.mkv +吴介贤-闪闪红星(演唱会),http://em.21dtv.com/songs/60077504.mkv +佚名-singer sang his song,http://em.21dtv.com/songs/60005052.mkv +任军太-水深火热,http://em.21dtv.com/songs/60077715.mkv +郑伊健-随时候命,http://em.21dtv.com/songs/60093269.mkv +谭咏麟-俗世洪流(演唱会),http://em.21dtv.com/songs/60040843.mkv +李琦-盛世花开,http://em.21dtv.com/songs/60127045.mkv +聂诗-刹时花开,http://em.21dtv.com/songs/60124366.mkv +孙佳+杨昭-十送红军,http://em.21dtv.com/songs/60085715.mkv +张信哲-三十好几,http://em.21dtv.com/songs/60072360.mkv +刀郎-十送红军,http://em.21dtv.com/songs/60067427.mkv +佚名-十送红军,http://em.21dtv.com/songs/60039020.mkv +宋祖英-十送红军,http://em.21dtv.com/songs/60039019.mkv +龚月-十送红军,http://em.21dtv.com/songs/60039018.mkv +马常宝-声声呼唤,http://em.21dtv.com/songs/60121149.mkv +严当当-盛世荷花,http://em.21dtv.com/songs/60085707.mkv +余天-声声呼唤,http://em.21dtv.com/songs/60038649.mkv +佚名-声声呼唤,http://em.21dtv.com/songs/60038648.mkv +高赛燕-盛世欢歌,http://em.21dtv.com/songs/60085708.mkv +丁晓红-山水欢歌(演唱会),http://em.21dtv.com/songs/60037673.mkv +费玉清+张靓颖-山水合璧,http://em.21dtv.com/songs/60132904.mkv +玺恩-时尚工业,http://em.21dtv.com/songs/60039156.mkv +泽旺多吉-盛世国香,http://em.21dtv.com/songs/60077575.mkv +陈思安-水水姑娘,http://em.21dtv.com/songs/60128530.mkv +周怡然-水色姑娘,http://em.21dtv.com/songs/60116654.mkv +周怡然-水色姑娘,http://em.21dtv.com/songs/60071142.mkv +韩红-山水贵客,http://em.21dtv.com/songs/60134446.mkv +韩红-山水贵客,http://em.21dtv.com/songs/60129786.mkv +韩红-山水贵客,http://em.21dtv.com/songs/60123364.mkv +羽翘-私事公办,http://em.21dtv.com/songs/60093057.mkv +孟丰敏-似水芳心,http://em.21dtv.com/songs/60099942.mkv +陶喆-是是非非,http://em.21dtv.com/songs/60039479.mkv +胡彦斌-三十而立,http://em.21dtv.com/songs/60077462.mkv +Homme+Kisum-3SEC,http://em.21dtv.com/songs/60114944.mkv +品冠-随时都在,http://em.21dtv.com/songs/60103168.mkv +张家乐-受伤的夜,http://em.21dtv.com/songs/60116786.mkv +吕方+伦永亮-沙沙的雨,http://em.21dtv.com/songs/60037472.mkv +吕方+伦永亮-沙沙的雨(演唱会),http://em.21dtv.com/songs/60037471.mkv +林忆莲+伦永亮-沙沙的雨(演唱会),http://em.21dtv.com/songs/60037470.mkv +杜德伟+吕方-沙沙的雨(演唱会),http://em.21dtv.com/songs/60037469.mkv +风语-受伤的心,http://em.21dtv.com/songs/60129793.mkv +阿文-受伤的心,http://em.21dtv.com/songs/60110602.mkv +吴宗宪-受伤的心,http://em.21dtv.com/songs/60039727.mkv +黄乙玲-受伤的心,http://em.21dtv.com/songs/60039726.mkv +陈文清-受伤的心,http://em.21dtv.com/songs/60039725.mkv +洪俊扬-沙沙的谁,http://em.21dtv.com/songs/60037468.mkv +谢莉婷-深深的情,http://em.21dtv.com/songs/60086818.mkv +刘卓灵-受伤的鸟,http://em.21dtv.com/songs/60067438.mkv +火龙-受伤的狼,http://em.21dtv.com/songs/60117016.mkv +萧煌奇-上水的花,http://em.21dtv.com/songs/60100438.mkv +林玉英-山上的风(无原唱),http://em.21dtv.com/songs/60037669.mkv +汤骏业-森山大道,http://em.21dtv.com/songs/60125851.mkv +陈雷+甲子慧-双双对对,http://em.21dtv.com/songs/60086844.mkv +佚名-双双对对,http://em.21dtv.com/songs/60039884.mkv +彭亮-傻傻的等,http://em.21dtv.com/songs/60037548.mkv +任贤齐-是谁的错,http://em.21dtv.com/songs/60087279.mkv +郭婷筠-世事多变,http://em.21dtv.com/songs/60039324.mkv +翁立友-尚水的伴,http://em.21dtv.com/songs/60038077.mkv +张艺婷-傻傻的爱,http://em.21dtv.com/songs/60132465.mkv +秦勇-傻傻的爱,http://em.21dtv.com/songs/60125997.mkv +王思远-闪闪的爱(现场版),http://em.21dtv.com/songs/60103449.mkv +刘宗健-傻傻的爱,http://em.21dtv.com/songs/60097462.mkv +瑶瑶-傻傻的爱,http://em.21dtv.com/songs/60086799.mkv +佚名-受伤的爱,http://em.21dtv.com/songs/60039722.mkv +彤杰-施舍的爱,http://em.21dtv.com/songs/60038891.mkv +余天-深深的爱,http://em.21dtv.com/songs/60038357.mkv +谢莉婷-深深的爱,http://em.21dtv.com/songs/60038356.mkv +林姗-深深的爱,http://em.21dtv.com/songs/60038355.mkv +曹雅雯-深深的爱,http://em.21dtv.com/songs/60038354.mkv +陈冠希-双手插袋,http://em.21dtv.com/songs/60039877.mkv +周璇-苏三采茶,http://em.21dtv.com/songs/60040819.mkv +曾桂英-上山采茶,http://em.21dtv.com/songs/60038049.mkv +李秋霞-上山采茶(无原唱),http://em.21dtv.com/songs/60038048.mkv +夜郎金鑫-生生不息,http://em.21dtv.com/songs/60107628.mkv +许志安-速速表态(演唱会),http://em.21dtv.com/songs/60040859.mkv +刘牧-十叁不亲,http://em.21dtv.com/songs/60089679.mkv +阎维文-十三不亲,http://em.21dtv.com/songs/60039011.mkv +刘牧-十三不亲,http://em.21dtv.com/songs/60039010.mkv +迟志强-十三不亲,http://em.21dtv.com/songs/60039009.mkv +谭晶-生死不离,http://em.21dtv.com/songs/60038632.mkv +孙楠-生死不离,http://em.21dtv.com/songs/60038631.mkv +孙波-生死不离,http://em.21dtv.com/songs/60038630.mkv +成龙-生死不离,http://em.21dtv.com/songs/60038629.mkv +刘德华-死剩把口,http://em.21dtv.com/songs/60040625.mkv +BLACK BOX-四十笔划,http://em.21dtv.com/songs/60040704.mkv +比莉-谁是白痴,http://em.21dtv.com/songs/60040091.mkv +王语心-说说爱情,http://em.21dtv.com/songs/60128241.mkv +张欣奕-速食爱情,http://em.21dtv.com/songs/60104132.mkv +陈玉建-说说爱情,http://em.21dtv.com/songs/60099582.mkv +玺儿+卡塔拉-深深爱你,http://em.21dtv.com/songs/60124297.mkv +许志豪-深深爱你,http://em.21dtv.com/songs/60096125.mkv +蔡小虎-深深爱你,http://em.21dtv.com/songs/60067417.mkv +李晟-傻傻爱你,http://em.21dtv.com/songs/60066288.mkv +施文彬-深深爱你,http://em.21dtv.com/songs/60038351.mkv +刘育绫-深深爱过,http://em.21dtv.com/songs/60038349.mkv +李玟+丁子峻-深深爱过,http://em.21dtv.com/songs/60038348.mkv +佚名-双人枕头,http://em.21dtv.com/songs/60039872.mkv +王识贤-双人枕头,http://em.21dtv.com/songs/60039871.mkv +陈中-双人枕头,http://em.21dtv.com/songs/60039870.mkv +张祥洪-生日祝福,http://em.21dtv.com/songs/60083789.mkv +林海峰-私人珍藏(演唱会),http://em.21dtv.com/songs/60040469.mkv +施文彬-谁人也知,http://em.21dtv.com/songs/60040083.mkv +于冠华-生日愿望,http://em.21dtv.com/songs/60038622.mkv +Jason嘉-诗人愚人,http://em.21dtv.com/songs/60131070.mkv +黑豹乐队+陈琳-生日心愿(演唱会),http://em.21dtv.com/songs/60038621.mkv +张靓颖-生如夏花,http://em.21dtv.com/songs/60107727.mkv +MIC男团-生如夏花,http://em.21dtv.com/songs/60097204.mkv +毕夏-生如夏花,http://em.21dtv.com/songs/60081587.mkv +朴树-生如夏花(演唱会),http://em.21dtv.com/songs/60038624.mkv +庄冬昕-食软雪糕(演唱会),http://em.21dtv.com/songs/60077629.mkv +BEYOND-时日无多,http://em.21dtv.com/songs/60039155.mkv +陈珊妮-双人体操,http://em.21dtv.com/songs/60061591.mkv +孙淑媚-三人世界,http://em.21dtv.com/songs/60037298.mkv +彭羚-三人世界,http://em.21dtv.com/songs/60037297.mkv +彭羚-三人世界(演唱会),http://em.21dtv.com/songs/60037296.mkv +汪子琳-三人世界(无原唱),http://em.21dtv.com/songs/60037295.mkv +简迷离-私人生活,http://em.21dtv.com/songs/60088397.mkv +E-KIDS-私人时段,http://em.21dtv.com/songs/60040468.mkv +杨紫燃-甩人情歌,http://em.21dtv.com/songs/60066325.mkv +蔡依林-诗人漫步,http://em.21dtv.com/songs/60069812.mkv +罗美玲-生日领悟,http://em.21dtv.com/songs/60038620.mkv +林志颖-生日礼物,http://em.21dtv.com/songs/60038619.mkv +江涛-生日礼物,http://em.21dtv.com/songs/60038618.mkv +CT GIRLS-生日礼物,http://em.21dtv.com/songs/60038617.mkv +白描-生日礼物(演唱会),http://em.21dtv.com/songs/60038616.mkv +张茵-虽然离开,http://em.21dtv.com/songs/60040910.mkv +黄圣依-生日卡片,http://em.21dtv.com/songs/60038604.mkv +朱宇+谢超+陈德黔-生日快乐,http://em.21dtv.com/songs/60111149.mkv +李茂山-生日快乐,http://em.21dtv.com/songs/60096347.mkv +卓依婷-生日快乐,http://em.21dtv.com/songs/60038615.mkv +佚名-生日快乐,http://em.21dtv.com/songs/60038614.mkv +伍思凯-生日快乐,http://em.21dtv.com/songs/60038613.mkv +王雪晶-生日快乐,http://em.21dtv.com/songs/60038612.mkv +刘若英-生日快乐,http://em.21dtv.com/songs/60038611.mkv +李明洋-生日快乐,http://em.21dtv.com/songs/60038610.mkv +李谷一-生日快乐,http://em.21dtv.com/songs/60038609.mkv +兰色花园-生日快乐,http://em.21dtv.com/songs/60038608.mkv +陈国宁-生日快乐,http://em.21dtv.com/songs/60038607.mkv +ERIC KWOK-生日快乐,http://em.21dtv.com/songs/60038606.mkv +郑智化-生日快乐(演唱会)(无原唱),http://em.21dtv.com/songs/60038605.mkv +张韶涵-伤日快乐,http://em.21dtv.com/songs/60037826.mkv +徐佳莹-是日救星,http://em.21dtv.com/songs/60131430.mkv +阿吉仔-双人酒杯,http://em.21dtv.com/songs/60039862.mkv +彭远扬-sa rang hae yo,http://em.21dtv.com/songs/60063726.mkv +周彦宏-私人公园,http://em.21dtv.com/songs/60061607.mkv +范潇匀-三人关系,http://em.21dtv.com/songs/60062345.mkv +陈行-失若复得,http://em.21dtv.com/songs/60124656.mkv +猪哥亮+蔡佳莹-随人打算,http://em.21dtv.com/songs/60040933.mkv +许鹤缤-誓如当初,http://em.21dtv.com/songs/60135742.mkv +慕钰华-谁人的错(无原唱),http://em.21dtv.com/songs/60040058.mkv +杨哲+乔幼-双人的爱,http://em.21dtv.com/songs/60113666.mkv +SHELLY+潘成(诗错亦染)-四人餐桌,http://em.21dtv.com/songs/60085753.mkv +佚名-生日串烧,http://em.21dtv.com/songs/60038600.mkv +刘美君-私人补习,http://em.21dtv.com/songs/60040467.mkv +沈芳如-谁人安慰,http://em.21dtv.com/songs/60040057.mkv +郭静-速溶爱人,http://em.21dtv.com/songs/60102823.mkv +戚薇-失窃之物,http://em.21dtv.com/songs/60094127.mkv +严爵+廷廷-胜券在握,http://em.21dtv.com/songs/60080794.mkv +张书瑶-顺其自然,http://em.21dtv.com/songs/60129065.mkv +郑中基-顺其自然,http://em.21dtv.com/songs/60040312.mkv +田震-顺其自然,http://em.21dtv.com/songs/60040311.mkv +刘德华-顺其自然,http://em.21dtv.com/songs/60040310.mkv +黄小琥-顺其自然,http://em.21dtv.com/songs/60040309.mkv +李克勤-胜情中人(演唱会),http://em.21dtv.com/songs/60038691.mkv +萱宁-深切治疗,http://em.21dtv.com/songs/60038309.mkv +卢巧音-失去自己,http://em.21dtv.com/songs/60092387.mkv +黄铃-失去自己(演唱会),http://em.21dtv.com/songs/60038836.mkv +宋孟君-失去之后,http://em.21dtv.com/songs/60110154.mkv +佚名-深情依旧,http://em.21dtv.com/songs/60038335.mkv +朱安禹-神奇钥匙(无原唱),http://em.21dtv.com/songs/60038495.mkv +水蜜桃-神奇钥匙(无原唱),http://em.21dtv.com/songs/60038494.mkv +李丹阳-深情拥抱,http://em.21dtv.com/songs/60071108.mkv +辛晓琪+张国荣-深情相拥,http://em.21dtv.com/songs/60132949.mkv +aimini-抒情心摇,http://em.21dtv.com/songs/60087174.mkv +张国荣+辛晓琪-深情相拥,http://em.21dtv.com/songs/60038334.mkv +俞灏明+刘惜君-深情相拥,http://em.21dtv.com/songs/60038333.mkv +张柏芝-神奇戏法,http://em.21dtv.com/songs/60038493.mkv +张扬-苏区兄弟,http://em.21dtv.com/songs/60129080.mkv +费玉清-深情往事,http://em.21dtv.com/songs/60038332.mkv +徐子洺-神曲唐僧,http://em.21dtv.com/songs/60117756.mkv +王媛渊-三妻四妾,http://em.21dtv.com/songs/60077459.mkv +蔡秋凤-十全十美,http://em.21dtv.com/songs/60129584.mkv +罗文裕-十全十美,http://em.21dtv.com/songs/60064873.mkv +刘德华-十全十美(演唱会),http://em.21dtv.com/songs/60039008.mkv +慕容晓晓-伤情时代,http://em.21dtv.com/songs/60071099.mkv +谢安琪-逝去日子(演唱会),http://em.21dtv.com/songs/60039557.mkv +黄贯中-逝去日子(演唱会),http://em.21dtv.com/songs/60039556.mkv +BEYOND-逝去日子(演唱会),http://em.21dtv.com/songs/60039555.mkv +佚名-深情如我(无原唱),http://em.21dtv.com/songs/60038331.mkv +小雪-深情日记,http://em.21dtv.com/songs/60038330.mkv +潘晓峰-十全七美,http://em.21dtv.com/songs/60039007.mkv +郑秀文-神奇女侠,http://em.21dtv.com/songs/60038489.mkv +TWINS-神奇女侠,http://em.21dtv.com/songs/60038488.mkv +郑秀文-神奇女侠(演唱会),http://em.21dtv.com/songs/60038487.mkv +叶瑗菱-深情难忘,http://em.21dtv.com/songs/60038329.mkv +佚名-深情难舍,http://em.21dtv.com/songs/60038328.mkv +杨鸣+蔡凤凰-深情难舍,http://em.21dtv.com/songs/60038327.mkv +陈淑芳-深情难舍,http://em.21dtv.com/songs/60038326.mkv +张蓉蓉-深情难忍,http://em.21dtv.com/songs/60038325.mkv +莫文蔚-色情男女,http://em.21dtv.com/songs/60037411.mkv +辛晓琪-深情难了,http://em.21dtv.com/songs/60038324.mkv +廖明-十七年蝉,http://em.21dtv.com/songs/60131390.mkv +邓丽君-深情脉脉,http://em.21dtv.com/songs/60077548.mkv +迪克牛仔-神情迷乱,http://em.21dtv.com/songs/60088739.mkv +四大天王-神奇魔力(无原唱),http://em.21dtv.com/songs/60038486.mkv +B.A.D-失去联络,http://em.21dtv.com/songs/60038827.mkv +张敬轩-思前恋后,http://em.21dtv.com/songs/60092614.mkv +孙耀威-思前恋后,http://em.21dtv.com/songs/60040575.mkv +林子娟-声琴款款(无原唱),http://em.21dtv.com/songs/60038647.mkv +许嘉文-失去记忆,http://em.21dtv.com/songs/60103571.mkv +张辉-神曲火了,http://em.21dtv.com/songs/60128003.mkv +关楚耀-死去活来,http://em.21dtv.com/songs/60099763.mkv +王绎龙-死去活来,http://em.21dtv.com/songs/60077756.mkv +詹雅雯-深情海岸,http://em.21dtv.com/songs/60038321.mkv +汪苏泷-睡前故事,http://em.21dtv.com/songs/60115259.mkv +阿肆-睡前故事[消伴],http://em.21dtv.com/songs/60101550.mkv +六折真人-屌丝情歌,http://em.21dtv.com/songs/60123644.mkv +林忆莲-是情非情,http://em.21dtv.com/songs/60039478.mkv +佚名-深秋枫红,http://em.21dtv.com/songs/60038342.mkv +蔡健雅-双栖动物,http://em.21dtv.com/songs/60039857.mkv +李霞儿-37度7,http://em.21dtv.com/songs/60111175.mkv +齐霖-深秋的梦,http://em.21dtv.com/songs/60103734.mkv +栾克勇-伤情的话,http://em.21dtv.com/songs/60125805.mkv +陈学冬+华晨宇-逝去的爱,http://em.21dtv.com/songs/60127548.mkv +齐浚羽-失去的爱,http://em.21dtv.com/songs/60124762.mkv +邱贤桂-失去的爱,http://em.21dtv.com/songs/60124550.mkv +李安-逝去的爱,http://em.21dtv.com/songs/60113621.mkv +李安-逝去的爱,http://em.21dtv.com/songs/60112750.mkv +月星海-失去的爱,http://em.21dtv.com/songs/60103336.mkv +郑海龙-逝去的爱,http://em.21dtv.com/songs/60039549.mkv +伊风-逝去的爱,http://em.21dtv.com/songs/60039548.mkv +欧阳菲菲-逝去的爱,http://em.21dtv.com/songs/60039547.mkv +梅艳芳-逝去的爱,http://em.21dtv.com/songs/60039546.mkv +李翊君-逝去的爱,http://em.21dtv.com/songs/60039545.mkv +陈盈洁-失去的爱,http://em.21dtv.com/songs/60038822.mkv +蓝琪儿-神奇草原,http://em.21dtv.com/songs/60068648.mkv +王晓娟-神曲串烧,http://em.21dtv.com/songs/60085702.mkv +郑亨敦+Hyukoh-帅气仓库,http://em.21dtv.com/songs/60118096.mkv +庄心妍+富博洋-三千痴缠,http://em.21dtv.com/songs/60116771.mkv +我可不是什么幺蛾子-身骑白马,http://em.21dtv.com/songs/60128024.mkv +吉克隽逸-身骑白马,http://em.21dtv.com/songs/60117606.mkv +郑心慈-身骑白马,http://em.21dtv.com/songs/60104485.mkv +黄小琥-身骑白马,http://em.21dtv.com/songs/60086816.mkv +徐佳莹-身骑白马,http://em.21dtv.com/songs/60038256.mkv +谭咏麟-深情不改,http://em.21dtv.com/songs/60038314.mkv +杜桦-三清白茶,http://em.21dtv.com/songs/60113651.mkv +简红-失去爱情,http://em.21dtv.com/songs/60107941.mkv +张杰-娑婆世界,http://em.21dtv.com/songs/60111875.mkv +郑钧-商品社会,http://em.21dtv.com/songs/60037997.mkv +阿悄-死皮赖脸,http://em.21dtv.com/songs/60097228.mkv +依稀-水瓶鲸鱼,http://em.21dtv.com/songs/60040214.mkv +许嵩-薯片和派,http://em.21dtv.com/songs/60039778.mkv +丁国琳-手抛红豆,http://em.21dtv.com/songs/60067433.mkv +巴珠多吉-松潘姑娘,http://em.21dtv.com/songs/60086859.mkv +萧亚轩-速配程度,http://em.21dtv.com/songs/60040856.mkv +GEORGE MICHAEL-star pelple 97,http://em.21dtv.com/songs/60005236.mkv +佚名-shadow of your smile,http://em.21dtv.com/songs/60004924.mkv +温拿乐队-sunshine of your love(演唱会),http://em.21dtv.com/songs/60005359.mkv +ROCKO-squares out your circle,http://em.21dtv.com/songs/60073931.mkv +KEANE-somewhere only we know,http://em.21dtv.com/songs/60005177.mkv +藤原さくら-Soup,http://em.21dtv.com/songs/60124456.mkv +ANGGUN-snow on the sahara,http://em.21dtv.com/songs/60005094.mkv +KELLEIGH BANNEN-sorry on the rocks,http://em.21dtv.com/songs/60073918.mkv +佚名-somewhere over the rainbow,http://em.21dtv.com/songs/60005179.mkv +LINKIN PARK-shadow of the day,http://em.21dtv.com/songs/60004923.mkv +佚名-south of the border,http://em.21dtv.com/songs/60005211.mkv +ROBBIE WILLIAMS-south of the border,http://em.21dtv.com/songs/60005210.mkv +HIGH SCHOOL-start of something new,http://em.21dtv.com/songs/60062042.mkv +CODY SIMPSON-summertime of our lives,http://em.21dtv.com/songs/60082346.mkv +JOHN DENVER-sunshine on my shoulders,http://em.21dtv.com/songs/60005361.mkv +佚名-sunshine on my shoulder,http://em.21dtv.com/songs/60005360.mkv +BACKSTREET BOYS-shape of my heart,http://em.21dtv.com/songs/60004947.mkv +LILY ALLEN-Somewhere Only We Know,http://em.21dtv.com/songs/60096151.mkv +胡彦斌+郑虹-some one like you,http://em.21dtv.com/songs/60073905.mkv +Tasty-Solo,http://em.21dtv.com/songs/60104740.mkv +BRIAN MCKNIGHT-4th of july,http://em.21dtv.com/songs/60082059.mkv +R KELLY-sign of a victory,http://em.21dtv.com/songs/60073878.mkv +B.ADAMS-J.VALLANCE-summer of 69(无原唱),http://em.21dtv.com/songs/60005335.mkv +张宇轩-十年之约,http://em.21dtv.com/songs/60133653.mkv +鲍文洋-三年之约,http://em.21dtv.com/songs/60106478.mkv +格根其木格-思念战友,http://em.21dtv.com/songs/60077748.mkv +雨柔-十年之吻,http://em.21dtv.com/songs/60077606.mkv +张秋霞-十年之吻,http://em.21dtv.com/songs/60071118.mkv +李杨飞-十年之秋,http://em.21dtv.com/songs/60077605.mkv +朱子峰-十年之间,http://em.21dtv.com/songs/60111954.mkv +高枫-刹那之间,http://em.21dtv.com/songs/60012238.mkv +童一首歌-思念之歌,http://em.21dtv.com/songs/60040572.mkv +李宇春-少年中国,http://em.21dtv.com/songs/60038155.mkv +LISA-少年中国,http://em.21dtv.com/songs/60038154.mkv +朱海君-思念在飞,http://em.21dtv.com/songs/60125679.mkv +至上励合-思念之巅,http://em.21dtv.com/songs/60064924.mkv +刘昱贤-十年一眼,http://em.21dtv.com/songs/60122522.mkv +童安格-谁能预言,http://em.21dtv.com/songs/60040044.mkv +周治平+童安格-谁能预言(演唱会),http://em.21dtv.com/songs/60040043.mkv +马客-少年英雄,http://em.21dtv.com/songs/60116394.mkv +马客-少年英雄,http://em.21dtv.com/songs/60038145.mkv +苏打绿-十年一刻,http://em.21dtv.com/songs/60038992.mkv +洪卓立-少年游记,http://em.21dtv.com/songs/60112068.mkv +CHEERS-十年约会,http://em.21dtv.com/songs/60092155.mkv +MOUMOON-霎那烟火,http://em.21dtv.com/songs/60071092.mkv +阿温-谁能与共,http://em.21dtv.com/songs/60077703.mkv +小魂+特曼-少年与刀,http://em.21dtv.com/songs/60135146.mkv +刘尊-送你一程,http://em.21dtv.com/songs/60090685.mkv +蒋荣宗-少女心怡,http://em.21dtv.com/songs/60088583.mkv +刘惜君-少女宣言,http://em.21dtv.com/songs/60038178.mkv +张国荣-少女心事,http://em.21dtv.com/songs/60115904.mkv +SUPER GEAR-少女心事,http://em.21dtv.com/songs/60077537.mkv +张国荣-少女心事,http://em.21dtv.com/songs/60038177.mkv +张国荣-少女心事(演唱会),http://em.21dtv.com/songs/60038176.mkv +萧敬腾-善男信女,http://em.21dtv.com/songs/60037757.mkv +吴申梅-思念无罪,http://em.21dtv.com/songs/60071154.mkv +张柏芝-思念物语,http://em.21dtv.com/songs/60040564.mkv +亢帅克-十年未晚,http://em.21dtv.com/songs/60069816.mkv +何韵诗-少年维特,http://em.21dtv.com/songs/60038140.mkv +伍浩哲-思念无声,http://em.21dtv.com/songs/60086991.mkv +望海高歌-思念无期,http://em.21dtv.com/songs/60071153.mkv +刘牧-熟女无敌,http://em.21dtv.com/songs/60125207.mkv +萧全-思念太苦,http://em.21dtv.com/songs/60064923.mkv +舒高-思念探戈,http://em.21dtv.com/songs/60040561.mkv +李娅莎+范扬景-是你是我,http://em.21dtv.com/songs/60077647.mkv +安与骑兵-三年三天,http://em.21dtv.com/songs/60083739.mkv +林俊杰-熟能生巧,http://em.21dtv.com/songs/60039764.mkv +黄洛冰-少年少年,http://em.21dtv.com/songs/60124745.mkv +加藤ミリヤ-少年少女,http://em.21dtv.com/songs/60110052.mkv +童丽-是男是女,http://em.21dtv.com/songs/60077645.mkv +游美灵-剩男剩女,http://em.21dtv.com/songs/60072393.mkv +NOEL-思念思念,http://em.21dtv.com/songs/60064922.mkv +谭咏麟-是你是你,http://em.21dtv.com/songs/60039471.mkv +林木栋升-剩男剩女,http://em.21dtv.com/songs/60038703.mkv +谭维维-盛女时代,http://em.21dtv.com/songs/60127415.mkv +陈凯彤-少女时代,http://em.21dtv.com/songs/60123284.mkv +上官红燕-剩女时代(舞曲版),http://em.21dtv.com/songs/60064862.mkv +上官红燕-剩女时代,http://em.21dtv.com/songs/60038705.mkv +少女时代-少女时代,http://em.21dtv.com/songs/60038172.mkv +李琦-思念如线,http://em.21dtv.com/songs/60107793.mkv +陶杰-十年人事,http://em.21dtv.com/songs/60093501.mkv +农夫-十年人事(演唱会),http://em.21dtv.com/songs/60038991.mkv +李玉和-思念如海,http://em.21dtv.com/songs/60064921.mkv +李克勤-十年前后,http://em.21dtv.com/songs/60038990.mkv +李克勤-十年前后(演唱会),http://em.21dtv.com/songs/60038989.mkv +卫东-思念情歌,http://em.21dtv.com/songs/60108361.mkv +四郎旺姆-思念情歌,http://em.21dtv.com/songs/60064920.mkv +林志炫-熟男情歌,http://em.21dtv.com/songs/60039763.mkv +秦杨-少年青春,http://em.21dtv.com/songs/60038135.mkv +王姿-思念难言,http://em.21dtv.com/songs/60077745.mkv +王宏伟-思念娘亲,http://em.21dtv.com/songs/60135545.mkv +GIRLS ALOUD-sexy no no no,http://em.21dtv.com/songs/60004915.mkv +芦伟-屌丝男女,http://em.21dtv.com/songs/60129524.mkv +阿穆隆-思念母亲,http://em.21dtv.com/songs/60040541.mkv +拉毛王旭-思念妈妈,http://em.21dtv.com/songs/60066330.mkv +柯以敏-思念绵绵(演唱会),http://em.21dtv.com/songs/60040540.mkv +少女部落格-少女秘笈,http://em.21dtv.com/songs/60064846.mkv +王欢-思念流淌,http://em.21dtv.com/songs/60067455.mkv +郭富城-食你落肚,http://em.21dtv.com/songs/60039182.mkv +疯狂先生-首脑开胃,http://em.21dtv.com/songs/60129437.mkv +庄红虎-思念家乡,http://em.21dtv.com/songs/60123895.mkv +荒山亮-思念界限,http://em.21dtv.com/songs/60040536.mkv +周华健-是你叫我,http://em.21dtv.com/songs/60039463.mkv +周华健-是你叫我(演唱会),http://em.21dtv.com/songs/60039462.mkv +黄恺+张鑫鑫-少年锦时,http://em.21dtv.com/songs/60128631.mkv +黄恺+张鑫鑫-少年锦时,http://em.21dtv.com/songs/60114301.mkv +赵雷-少年锦时,http://em.21dtv.com/songs/60114107.mkv +孙淑媚-思念加倍,http://em.21dtv.com/songs/60040534.mkv +黄品源-少年悍将,http://em.21dtv.com/songs/60090338.mkv +萧煌奇-思念会惊,http://em.21dtv.com/songs/60077744.mkv +周华健-送你回家,http://em.21dtv.com/songs/60040773.mkv +彭坦-少年故事,http://em.21dtv.com/songs/60038127.mkv +张德兰-谁能够计(演唱会),http://em.21dtv.com/songs/60068673.mkv +M3-算你够狠,http://em.21dtv.com/songs/60040900.mkv +吴炜-思念风筝,http://em.21dtv.com/songs/60040525.mkv +李佳薇-送你分手,http://em.21dtv.com/songs/60077777.mkv +季忠平-思念风铃,http://em.21dtv.com/songs/60040524.mkv +晏紫东-思念飞花,http://em.21dtv.com/songs/60132498.mkv +斯日古楞-思念额吉,http://em.21dtv.com/songs/60119601.mkv +周杰伦-三年二班,http://em.21dtv.com/songs/60037270.mkv +西部牛仔-思念的鹰,http://em.21dtv.com/songs/60072426.mkv +张津涤-少女的心,http://em.21dtv.com/songs/60100025.mkv +冷漠-少女的心,http://em.21dtv.com/songs/60071105.mkv +方婉真-少女的心,http://em.21dtv.com/songs/60038169.mkv +伍佰-少女的心(演唱会),http://em.21dtv.com/songs/60038168.mkv +戴佩妮-谁能带我,http://em.21dtv.com/songs/60102274.mkv +佚名-少年的我,http://em.21dtv.com/songs/60038126.mkv +童唱-少年的我,http://em.21dtv.com/songs/60038125.mkv +凤飞飞-少年的我,http://em.21dtv.com/songs/60038124.mkv +李自强-思念的痛,http://em.21dtv.com/songs/60040521.mkv +林姗-思念的人,http://em.21dtv.com/songs/60120664.mkv +凤娘-思念的人,http://em.21dtv.com/songs/60118379.mkv +刘育绫-思念的人,http://em.21dtv.com/songs/60095469.mkv +GILME-思念的人,http://em.21dtv.com/songs/60071151.mkv +陈威-思念的人(无原唱),http://em.21dtv.com/songs/60040518.mkv +芊芳-思念的批,http://em.21dtv.com/songs/60135656.mkv +乔幼-思念的梦,http://em.21dtv.com/songs/60108271.mkv +S.H.E-淑女的梦,http://em.21dtv.com/songs/60039747.mkv +张蔷-思念的花,http://em.21dtv.com/songs/60091152.mkv +曹雅雯-思念的歌,http://em.21dtv.com/songs/60130387.mkv +秀兰玛雅-思念的歌,http://em.21dtv.com/songs/60106174.mkv +涂浚贤-思念的歌,http://em.21dtv.com/songs/60061609.mkv +凤飞飞-思念的歌,http://em.21dtv.com/songs/60040512.mkv +储毅-思念的风,http://em.21dtv.com/songs/60085748.mkv +裕美+范宣蔚-少女大帝,http://em.21dtv.com/songs/60038162.mkv +华羽-剩男的爱,http://em.21dtv.com/songs/60110898.mkv +张冬玲-剩女的爱,http://em.21dtv.com/songs/60105816.mkv +蓝颜+海涵-刹那的爱,http://em.21dtv.com/songs/60062565.mkv +张冬玲-剩女的爱,http://em.21dtv.com/songs/60038704.mkv +陈慧娴-傻女的爱,http://em.21dtv.com/songs/60037535.mkv +龙影云-思念成灾,http://em.21dtv.com/songs/60114924.mkv +小辣椒-少女初夜,http://em.21dtv.com/songs/60090995.mkv +佚名-是你才有,http://em.21dtv.com/songs/60039455.mkv +张德兰-少女慈禧,http://em.21dtv.com/songs/60092604.mkv +柳影虹-少女慈禧(演唱会),http://em.21dtv.com/songs/60062700.mkv +佚名-少女慈禧,http://em.21dtv.com/songs/60038161.mkv +柳影虹-少女慈禧,http://em.21dtv.com/songs/60038160.mkv +黑妹-少女慈禧(演唱会),http://em.21dtv.com/songs/60038159.mkv +刘辰希-思念成网,http://em.21dtv.com/songs/60094837.mkv +C Block-十年长沙,http://em.21dtv.com/songs/60103011.mkv +沈芳如-思念成河,http://em.21dtv.com/songs/60040508.mkv +蔡恒-思念成风,http://em.21dtv.com/songs/60085747.mkv +许志安-少女藏刀,http://em.21dtv.com/songs/60093156.mkv +樊凡-思念不走,http://em.21dtv.com/songs/60113754.mkv +吴易航-思念爸妈,http://em.21dtv.com/songs/60118446.mkv +新街口组合+刘玥-是你变了,http://em.21dtv.com/songs/60118613.mkv +杨坤+黄莉-说你爱我,http://em.21dtv.com/songs/60112781.mkv +郭富城-说你爱我,http://em.21dtv.com/songs/60102809.mkv +李晓然-说你爱我,http://em.21dtv.com/songs/60098465.mkv +张睿+许艺娜-说你爱我,http://em.21dtv.com/songs/60097366.mkv +蟑螂乐队-说你爱我,http://em.21dtv.com/songs/60040405.mkv +潘玮柏-说你爱我,http://em.21dtv.com/songs/60040404.mkv +陈淑桦-说你爱我,http://em.21dtv.com/songs/60040403.mkv +S.H.E-说你爱我,http://em.21dtv.com/songs/60040402.mkv +李宇春-说你爱我(演唱会),http://em.21dtv.com/songs/60040401.mkv +艾敬-水牛66,http://em.21dtv.com/songs/60040212.mkv +佚名-沙漠之足,http://em.21dtv.com/songs/60037466.mkv +童安格-沙漠之足(演唱会),http://em.21dtv.com/songs/60037465.mkv +荒山亮-圣魔战印,http://em.21dtv.com/songs/60061579.mkv +郑秀文-宿命主义,http://em.21dtv.com/songs/60051515.mkv +郑秀文-宿命主义(演唱会),http://em.21dtv.com/songs/60051514.mkv +杜丽萍+易秀成-神秘钟祥,http://em.21dtv.com/songs/60064854.mkv +水木年华-生命之诗,http://em.21dtv.com/songs/60038589.mkv +林子祥-生命之曲,http://em.21dtv.com/songs/60038588.mkv +亚东+姚贝娜-生命之恋,http://em.21dtv.com/songs/60098090.mkv +姚贝娜+亚东-生命之恋,http://em.21dtv.com/songs/60077561.mkv +凤凰传奇-沙漠之恋,http://em.21dtv.com/songs/60037464.mkv +张德力-生命之花,http://em.21dtv.com/songs/60116789.mkv +张继聪-生命之花,http://em.21dtv.com/songs/60069806.mkv +胡松-生命之光,http://em.21dtv.com/songs/60132818.mkv +于浩宸-岁暮杂感,http://em.21dtv.com/songs/60066335.mkv +周笔畅-生命之光,http://em.21dtv.com/songs/60038587.mkv +王橹窗-生命之歌,http://em.21dtv.com/songs/60038586.mkv +沈芳如-生命之歌,http://em.21dtv.com/songs/60038585.mkv +王缇-show me your love,http://em.21dtv.com/songs/60005007.mkv +SUPER JUNIOR+东方神起-show me your love,http://em.21dtv.com/songs/60005006.mkv +张美妮+罗贯峰-生命有价(演唱会),http://em.21dtv.com/songs/60038580.mkv +佚名-神秘约会,http://em.21dtv.com/songs/60038473.mkv +关淑怡-神秘约会,http://em.21dtv.com/songs/60038472.mkv +四仔-森美移动,http://em.21dtv.com/songs/60037427.mkv +庹宗康-失眠夜车(无原唱),http://em.21dtv.com/songs/60038812.mkv +AMAN FONG-沙漠小子(演唱会),http://em.21dtv.com/songs/60077481.mkv +陈晓东-什么吸引,http://em.21dtv.com/songs/60038426.mkv +陈永誉-失眠先生,http://em.21dtv.com/songs/60127558.mkv +江蕙-思慕心情(无原唱),http://em.21dtv.com/songs/60040492.mkv +小玲+小凤-生命行囊,http://em.21dtv.com/songs/60068650.mkv +张枫-神秘舞王,http://em.21dtv.com/songs/60069803.mkv +森美-森美无滚,http://em.21dtv.com/songs/60080691.mkv +佚名-show me the way,http://em.21dtv.com/songs/60005005.mkv +朗艺二队-随梦腾飞,http://em.21dtv.com/songs/60113585.mkv +那英-什么态度,http://em.21dtv.com/songs/60038425.mkv +ENERGY-什么态度,http://em.21dtv.com/songs/60038424.mkv +费玉清-是梦是真,http://em.21dtv.com/songs/60039441.mkv +潘迪华-是梦似真(演唱会),http://em.21dtv.com/songs/60039440.mkv +童丽-杉木水桶,http://em.21dtv.com/songs/60077501.mkv +佚名-杉木水桶,http://em.21dtv.com/songs/60037700.mkv +吴宗宪-三暝三日,http://em.21dtv.com/songs/60037258.mkv +官恩娜-什么什么,http://em.21dtv.com/songs/60038413.mkv +尚雯婕-什么什么,http://em.21dtv.com/songs/60038385.mkv +张学友-什么世界,http://em.21dtv.com/songs/60038419.mkv +张伦辉-什么时候,http://em.21dtv.com/songs/60130296.mkv +吴涤清-什么时候,http://em.21dtv.com/songs/60067429.mkv +佚名-什么时候,http://em.21dtv.com/songs/60038418.mkv +刘若英-什么时候(演唱会),http://em.21dtv.com/songs/60038417.mkv +杨克强-什么时候(无原唱),http://em.21dtv.com/songs/60038416.mkv +杨克强-什么时侯,http://em.21dtv.com/songs/60038415.mkv +王甜-水墨施甸,http://em.21dtv.com/songs/60128235.mkv +苏永康-生命色彩,http://em.21dtv.com/songs/60038573.mkv +苏永康-生命色彩(演唱会),http://em.21dtv.com/songs/60038572.mkv +刘畊宏-什么是爱,http://em.21dtv.com/songs/60038420.mkv +月光星子-生命如雨,http://em.21dtv.com/songs/60038571.mkv +星子-生命如雨,http://em.21dtv.com/songs/60038570.mkv +金玟岐-思美人兮,http://em.21dtv.com/songs/60135855.mkv +乔振宇-思美人兮,http://em.21dtv.com/songs/60134858.mkv +马可-思美人兮,http://em.21dtv.com/songs/60133106.mkv +辛龙-生命如歌,http://em.21dtv.com/songs/60083788.mkv +谢雨欣-生命如歌,http://em.21dtv.com/songs/60038567.mkv +宋娜-生命如歌,http://em.21dtv.com/songs/60038566.mkv +尹光-司马琴挑,http://em.21dtv.com/songs/60040450.mkv +吴俊余-什么情况,http://em.21dtv.com/songs/60132282.mkv +音频怪物-水墨青花,http://em.21dtv.com/songs/60104588.mkv +陈天红-失眠情歌,http://em.21dtv.com/songs/60083793.mkv +郑家星-什么情歌,http://em.21dtv.com/songs/60080854.mkv +马健涛-沙漠情歌,http://em.21dtv.com/songs/60077480.mkv +李杰飞-神马情歌,http://em.21dtv.com/songs/60064853.mkv +谭耀文-四面情歌,http://em.21dtv.com/songs/60040700.mkv +秀兰玛雅-思慕情歌,http://em.21dtv.com/songs/60040491.mkv +丁冬-水墨谯城,http://em.21dtv.com/songs/60118289.mkv +徐誉滕-水墨彭城,http://em.21dtv.com/songs/60080319.mkv +萧亚轩-双面女神,http://em.21dtv.com/songs/60039854.mkv +邓紫飞-失眠男女,http://em.21dtv.com/songs/60120993.mkv +费玉清-神秘女郎,http://em.21dtv.com/songs/60038471.mkv +蔡琴-神秘女郎,http://em.21dtv.com/songs/60038470.mkv +叶枫-神秘女郎(演唱会),http://em.21dtv.com/songs/60038469.mkv +JLS+DEV-she makes me wanna,http://em.21dtv.com/songs/60062062.mkv +林子祥-似梦迷离,http://em.21dtv.com/songs/60039345.mkv +梅艳芳-似梦迷离(演唱会),http://em.21dtv.com/songs/60039344.mkv +追风-食面埋伏,http://em.21dtv.com/songs/60123218.mkv +民族娃娃-十面埋伏,http://em.21dtv.com/songs/60097126.mkv +翁立友-十面埋伏,http://em.21dtv.com/songs/60066313.mkv +陈奕迅-十面埋伏,http://em.21dtv.com/songs/60038981.mkv +S.H.E-十面埋伏,http://em.21dtv.com/songs/60038980.mkv +曹方-神秘礼物,http://em.21dtv.com/songs/60069802.mkv +STOOSHE-see me like this,http://em.21dtv.com/songs/60073853.mkv +庄玲-莎蔓莉莎,http://em.21dtv.com/songs/60077482.mkv +洪荣宏-神秘恋情(演唱会),http://em.21dtv.com/songs/60038468.mkv +洪颜-双面老爹,http://em.21dtv.com/songs/60077686.mkv +岳薇-水漫金山,http://em.21dtv.com/songs/60064907.mkv +庞锟-水墨江南,http://em.21dtv.com/songs/60106816.mkv +李翊君-沙漠寂寞,http://em.21dtv.com/songs/60037461.mkv +EO2-手忙脚乱,http://em.21dtv.com/songs/60039617.mkv +林宥嘉-神秘嘉宾,http://em.21dtv.com/songs/60038467.mkv +佚名-so much in love(无原唱),http://em.21dtv.com/songs/60005109.mkv +伟雄-数码回忆,http://em.21dtv.com/songs/60064897.mkv +蔡小虎-山盟海誓,http://em.21dtv.com/songs/60037662.mkv +萧煌奇-神秘河流,http://em.21dtv.com/songs/60122073.mkv +萧煌奇-神秘河流,http://em.21dtv.com/songs/60120915.mkv +梁正-生命公式,http://em.21dtv.com/songs/60112039.mkv +GJ蒋卓嘉-十面孤曲,http://em.21dtv.com/songs/60103433.mkv +童安格-生命过客,http://em.21dtv.com/songs/60038562.mkv +张寒+张媛媛-生命光辉,http://em.21dtv.com/songs/60038561.mkv +吴奇隆-沙漠飞雪,http://em.21dtv.com/songs/60128887.mkv +冯艺凡-随梦飞翔,http://em.21dtv.com/songs/60120344.mkv +羽泉-似梦非梦,http://em.21dtv.com/songs/60107128.mkv +禹湘-神马浮马,http://em.21dtv.com/songs/60063301.mkv +容祖儿-随梦而行,http://em.21dtv.com/songs/60092534.mkv +黎明+陈慧琳-随梦而飞,http://em.21dtv.com/songs/60040931.mkv +宏星特攻队-什么代志(无原唱),http://em.21dtv.com/songs/60038390.mkv +周传雄-失眠的夜,http://em.21dtv.com/songs/60038808.mkv +管罄-什么东西,http://em.21dtv.com/songs/60117112.mkv +李潮-生命的星,http://em.21dtv.com/songs/60071110.mkv +杨洪基-生命的星,http://em.21dtv.com/songs/60038558.mkv +吴克群-什么东西,http://em.21dtv.com/songs/60038392.mkv +憷小陌-失眠地图,http://em.21dtv.com/songs/60126927.mkv +罗时丰-思慕的人,http://em.21dtv.com/songs/60134089.mkv +张义杰-失眠的人,http://em.21dtv.com/songs/60067423.mkv +佚名-思慕的人,http://em.21dtv.com/songs/60040488.mkv +叶启田-思慕的人,http://em.21dtv.com/songs/60040487.mkv +罗时丰-思慕的人,http://em.21dtv.com/songs/60040486.mkv +陈小云-思慕的人,http://em.21dtv.com/songs/60040485.mkv +曾心梅-思慕的人,http://em.21dtv.com/songs/60040484.mkv +黄乙玲-思慕的人(无原唱),http://em.21dtv.com/songs/60040483.mkv +龚铭-水墨丹青,http://em.21dtv.com/songs/60111566.mkv +李玉刚-水墨丹青,http://em.21dtv.com/songs/60040210.mkv +李玉刚-水墨丹青(演唱会),http://em.21dtv.com/songs/60040209.mkv +高向鹏+方怡萍-尚美的梦,http://em.21dtv.com/songs/60061568.mkv +BY2-双面妲己,http://em.21dtv.com/songs/60081604.mkv +金婷婷-生命的河(演唱会),http://em.21dtv.com/songs/60099551.mkv +姚贝娜-生命的河,http://em.21dtv.com/songs/60077557.mkv +许茹芸-神秘电话,http://em.21dtv.com/songs/60038465.mkv +孙晓宇-岁末的风,http://em.21dtv.com/songs/60123820.mkv +王杰-宿命的风,http://em.21dtv.com/songs/60051512.mkv +安又琪-什么东东,http://em.21dtv.com/songs/60038391.mkv +周杰伦-四面楚歌,http://em.21dtv.com/songs/60040699.mkv +关楚耀+谢安琪-四面楚歌,http://em.21dtv.com/songs/60040698.mkv +张玮-使命出发,http://em.21dtv.com/songs/60127988.mkv +黄凯芹-谁明白爱,http://em.21dtv.com/songs/60040026.mkv +于瑛楠-十面爱情,http://em.21dtv.com/songs/60072397.mkv +TAYLOR DAYNE-send me a lover,http://em.21dtv.com/songs/60004889.mkv +齐秦-少了自已,http://em.21dtv.com/songs/60089083.mkv +陈思安-思恋着你,http://em.21dtv.com/songs/60062274.mkv +郝萌-丝路追梦,http://em.21dtv.com/songs/60121005.mkv +翁立友-沙仑之恋,http://em.21dtv.com/songs/60113954.mkv +关心妍-失恋哲理,http://em.21dtv.com/songs/60068653.mkv +小老头-伤了自己,http://em.21dtv.com/songs/60099975.mkv +EXILE ATSUSHI-说了再见,http://em.21dtv.com/songs/60077733.mkv +周杰伦-说了再见,http://em.21dtv.com/songs/60040397.mkv +佚名-失恋专家,http://em.21dtv.com/songs/60038779.mkv +齐秦-少了自己,http://em.21dtv.com/songs/60038115.mkv +张君培-森林之歌(演唱会),http://em.21dtv.com/songs/60083745.mkv +北原山猫-山林之歌,http://em.21dtv.com/songs/60037657.mkv +佚名-森林之歌,http://em.21dtv.com/songs/60037426.mkv +梁耀燮+金珠娜-神来之笔,http://em.21dtv.com/songs/60131573.mkv +郭英乐-时来运转,http://em.21dtv.com/songs/60128484.mkv +斯美塔-水流云在,http://em.21dtv.com/songs/60077713.mkv +阿清-失恋英雄,http://em.21dtv.com/songs/60066310.mkv +洪杰-时来运到,http://em.21dtv.com/songs/60068659.mkv +甘国卫+胡美仪-时来运到,http://em.21dtv.com/songs/60039153.mkv +佚名-十里洋场,http://em.21dtv.com/songs/60038973.mkv +李香兰-十里洋场,http://em.21dtv.com/songs/60038972.mkv +夏沙-失恋小说,http://em.21dtv.com/songs/60112592.mkv +苍茫-深蓝星空,http://em.21dtv.com/songs/60038308.mkv +苍茫-深蓝星空(演唱会),http://em.21dtv.com/songs/60038307.mkv +佚名-素兰小姐,http://em.21dtv.com/songs/60040849.mkv +ALIN-失恋无罪,http://em.21dtv.com/songs/60102998.mkv +陈一玲-失恋无罪,http://em.21dtv.com/songs/60085711.mkv +林欣彤-失恋无罪(演唱会),http://em.21dtv.com/songs/60064864.mkv +A-LIN-失恋无罪,http://em.21dtv.com/songs/60038766.mkv +苏慧伦-失恋娃娃,http://em.21dtv.com/songs/60038762.mkv +JPM-三六五天,http://em.21dtv.com/songs/60070293.mkv +闪亮三姐妹-闪亮舞台,http://em.21dtv.com/songs/60037734.mkv +苏慧伦+莫文蔚-失恋万岁,http://em.21dtv.com/songs/60038763.mkv +TWINS-三六五零(演唱会),http://em.21dtv.com/songs/60063514.mkv +TWINS-三六五零,http://em.21dtv.com/songs/60061551.mkv +明骏女孩-闪亮五环,http://em.21dtv.com/songs/60037733.mkv +艾怡良-上流玩法,http://em.21dtv.com/songs/60106219.mkv +孟庭苇-谁来晚餐,http://em.21dtv.com/songs/60040021.mkv +EXO-M-3 6 5,http://em.21dtv.com/songs/60082056.mkv +佚名-shes like the wind(无原唱),http://em.21dtv.com/songs/60004978.mkv +朱韵诗-死里逃生,http://em.21dtv.com/songs/60092773.mkv +司雯嘉-闪亮天使,http://em.21dtv.com/songs/60083754.mkv +陈奕迅-失恋太少,http://em.21dtv.com/songs/60038759.mkv +刘小静-十里桃花,http://em.21dtv.com/songs/60133402.mkv +大王叫我来巡山-失落沙洲,http://em.21dtv.com/songs/60127885.mkv +简弘亦-失落沙洲,http://em.21dtv.com/songs/60128289.mkv +郑子威-失落沙洲,http://em.21dtv.com/songs/60124561.mkv +徐佳莹-失落沙洲,http://em.21dtv.com/songs/60117754.mkv +郁可唯-三烈士赞,http://em.21dtv.com/songs/60063303.mkv +徐佳莹-失落沙洲,http://em.21dtv.com/songs/60038796.mkv +佚名-失落所有(无原唱),http://em.21dtv.com/songs/60038797.mkv +海航文化合唱团-似兰斯馨,http://em.21dtv.com/songs/60127173.mkv +张学友-失恋事小,http://em.21dtv.com/songs/60092586.mkv +郁可唯-失恋事小,http://em.21dtv.com/songs/60069810.mkv +常宽-说来说去,http://em.21dtv.com/songs/60040396.mkv +萧亚轩-甩了甩了,http://em.21dtv.com/songs/60091994.mkv +萧亚轩-甩啦甩啦,http://em.21dtv.com/songs/60039825.mkv +佚名-少林少林,http://em.21dtv.com/songs/60038119.mkv +美眉组合-色拉生活,http://em.21dtv.com/songs/60037408.mkv +胡松华-森林水车,http://em.21dtv.com/songs/60037425.mkv +佚名-森林水车(恰恰),http://em.21dtv.com/songs/60037424.mkv +ERIC OLAPTON-swing low sweet chariot,http://em.21dtv.com/songs/60005423.mkv +星月组合-十里柔情,http://em.21dtv.com/songs/60126954.mkv +杨千嬅-失恋日记,http://em.21dtv.com/songs/60038757.mkv +水木年华-失恋日记,http://em.21dtv.com/songs/60038756.mkv +张妮-丝路琴声,http://em.21dtv.com/songs/60133652.mkv +[Group] +groupName=十六万歌曲MV等 - 53 +赵照-声律启蒙,http://em.21dtv.com/songs/60112281.mkv +航宇-失恋情歌,http://em.21dtv.com/songs/60114734.mkv +杨竣-失恋情歌,http://em.21dtv.com/songs/60113685.mkv +欧宇涵-失恋情歌,http://em.21dtv.com/songs/60102426.mkv +安东阳-失恋情歌,http://em.21dtv.com/songs/60085710.mkv +张敬轩-骚灵情歌(演唱会),http://em.21dtv.com/songs/60037403.mkv +萧敬腾+龚泽艺-生来彷徨,http://em.21dtv.com/songs/60112195.mkv +汪峰-生来彷徨,http://em.21dtv.com/songs/60081998.mkv +陈盈洁-思恋你哟(无原唱),http://em.21dtv.com/songs/60040481.mkv +钟明秋-顺流逆流,http://em.21dtv.com/songs/60126325.mkv +徐小凤-顺流逆流,http://em.21dtv.com/songs/60040306.mkv +张德兰-顺流逆流(演唱会),http://em.21dtv.com/songs/60040305.mkv +吕珊-顺流逆流(演唱会),http://em.21dtv.com/songs/60040304.mkv +罗文-顺流逆流(演唱会),http://em.21dtv.com/songs/60040303.mkv +民歌-莎里南蒂,http://em.21dtv.com/songs/60091559.mkv +田震-沙粒蚂蚁,http://em.21dtv.com/songs/60037456.mkv +明道-失恋美学,http://em.21dtv.com/songs/60097205.mkv +佚名-素兰妈妈,http://em.21dtv.com/songs/60040848.mkv +Childish Gambino-3005,http://em.21dtv.com/songs/60111592.mkv +赵传-三六六天,http://em.21dtv.com/songs/60085670.mkv +清水翔太+仲宗根泉-三六六日,http://em.21dtv.com/songs/60077452.mkv +温拿乐队-sha la la la(演唱会),http://em.21dtv.com/songs/60004918.mkv +崔伟亮-失恋了(舞曲版),http://em.21dtv.com/songs/60077581.mkv +韩梓轩+郝红岩-三轮老爹,http://em.21dtv.com/songs/60077455.mkv +邓志驹-仕林祭塔,http://em.21dtv.com/songs/60039338.mkv +马艺航-少林精神,http://em.21dtv.com/songs/60134467.mkv +南征北战-生来倔强,http://em.21dtv.com/songs/60134963.mkv +王喆-丝路花雨(演唱会),http://em.21dtv.com/songs/60069847.mkv +东方红艳+赵真-丝路豪情,http://em.21dtv.com/songs/60121332.mkv +陈洁仪-伤了和气,http://em.21dtv.com/songs/60037805.mkv +尤雅-梭罗河畔,http://em.21dtv.com/songs/60041021.mkv +王文瞳-散落灰烬,http://em.21dtv.com/songs/60063035.mkv +王洛宾-沙里红巴(儿歌),http://em.21dtv.com/songs/60091719.mkv +佚名-沙里洪巴,http://em.21dtv.com/songs/60037454.mkv +童唱-沙里洪巴,http://em.21dtv.com/songs/60037453.mkv +小文-失恋光荣,http://em.21dtv.com/songs/60066309.mkv +李辉-桫椤姑娘,http://em.21dtv.com/songs/60041016.mkv +汪峰-生来孤独,http://em.21dtv.com/songs/60100911.mkv +群星-圣了个诞,http://em.21dtv.com/songs/60077573.mkv +何嘉文-失恋告白(无原唱),http://em.21dtv.com/songs/60038748.mkv +刘赵黔+李左-手拉风箱,http://em.21dtv.com/songs/60039613.mkv +张也-丝路风情,http://em.21dtv.com/songs/60040456.mkv +斯美塔-丝路芳华,http://em.21dtv.com/songs/60077737.mkv +张靓颖-顺流而下,http://em.21dtv.com/songs/60130342.mkv +谭维维-失落的缘,http://em.21dtv.com/songs/60135762.mkv +徐子崴-失落的缘,http://em.21dtv.com/songs/60135280.mkv +朴恩惠-撕裂的心,http://em.21dtv.com/songs/60111153.mkv +刘龙-失落的心,http://em.21dtv.com/songs/60087431.mkv +顾凯-善良的心,http://em.21dtv.com/songs/60037756.mkv +梁静茹-闪亮的星,http://em.21dtv.com/songs/60037729.mkv +孙露-受了点伤,http://em.21dtv.com/songs/60099932.mkv +郑如仪-受了点伤,http://em.21dtv.com/songs/60097325.mkv +阿桑-受了点伤,http://em.21dtv.com/songs/60039720.mkv +彭立-失恋的人,http://em.21dtv.com/songs/60086823.mkv +君子-善良的人,http://em.21dtv.com/songs/60081022.mkv +陈夏莲-失落的情,http://em.21dtv.com/songs/60126367.mkv +陈夏莲-失落的情,http://em.21dtv.com/songs/60124617.mkv +方瑞娥-失落的情,http://em.21dtv.com/songs/60124010.mkv +上明+林汇敏-失落的情,http://em.21dtv.com/songs/60107460.mkv +张蓉蓉-失落的情,http://em.21dtv.com/songs/60038790.mkv +佚名-失落的情,http://em.21dtv.com/songs/60038789.mkv +电流妹+葛雨晴-失恋的猫,http://em.21dtv.com/songs/60120809.mkv +任贤齐-散落的梦,http://em.21dtv.com/songs/60087278.mkv +王宏伟-赛龙夺锦,http://em.21dtv.com/songs/60037161.mkv +太子锋-碎了的爱,http://em.21dtv.com/songs/60110118.mkv +闪亮三姐妹-失落的爱,http://em.21dtv.com/songs/60108942.mkv +齐秦-撕裂的爱(无原唱),http://em.21dtv.com/songs/60040608.mkv +龙千玉-失落的爱,http://em.21dtv.com/songs/60038783.mkv +陈一郎-失落的爱,http://em.21dtv.com/songs/60038782.mkv +尤雅-失落的爱(无原唱),http://em.21dtv.com/songs/60038781.mkv +黄婉婷-沙漏的爱,http://em.21dtv.com/songs/60037459.mkv +叶俊华-丝路畅想,http://em.21dtv.com/songs/60116612.mkv +芭比-森林传说,http://em.21dtv.com/songs/60037422.mkv +江美琪-少林传奇,http://em.21dtv.com/songs/60038117.mkv +PERI M-石林丛间,http://em.21dtv.com/songs/60077615.mkv +陈亚兰-神龙霸天,http://em.21dtv.com/songs/60085698.mkv +刘仲仪-失恋标签,http://em.21dtv.com/songs/60038733.mkv +白晶-酸辣部落,http://em.21dtv.com/songs/60098666.mkv +王麟-失恋不哭,http://em.21dtv.com/songs/60081812.mkv +徐怀钰-失恋布丁,http://em.21dtv.com/songs/60038737.mkv +许慧欣-失恋不败,http://em.21dtv.com/songs/60038736.mkv +许慧欣-失恋不败(演唱会),http://em.21dtv.com/songs/60038735.mkv +杜德伟-谁来爱我,http://em.21dtv.com/songs/60086846.mkv +容祖儿-谁来爱我,http://em.21dtv.com/songs/60040017.mkv +刘耕宏-谁来爱我,http://em.21dtv.com/songs/60040016.mkv +李茂山-谁来爱我,http://em.21dtv.com/songs/60040015.mkv +邓丽君-谁来爱我,http://em.21dtv.com/songs/60040014.mkv +容祖儿-谁来爱我(演唱会),http://em.21dtv.com/songs/60040013.mkv +余天-谁来爱我(无原唱),http://em.21dtv.com/songs/60040012.mkv +SCHOOL GYRLS-something like a party,http://em.21dtv.com/songs/60084762.mkv +尹光-少理阿爸,http://em.21dtv.com/songs/60038116.mkv +莫文蔚-实况转播,http://em.21dtv.com/songs/60039163.mkv +关牧村-水库夜歌,http://em.21dtv.com/songs/60040201.mkv +苏芮-谁可相依,http://em.21dtv.com/songs/60040010.mkv +佚名-summer kisses winter tear,http://em.21dtv.com/songs/60005331.mkv +XL特大号乐团-时空探险,http://em.21dtv.com/songs/60039151.mkv +游鸿明-受困思念,http://em.21dtv.com/songs/60039719.mkv +黑龙-双卡双待,http://em.21dtv.com/songs/60089078.mkv +孙艺程-时空契约,http://em.21dtv.com/songs/60132369.mkv +孙艺程-时空契约,http://em.21dtv.com/songs/60130246.mkv +安旭-伤口缺口,http://em.21dtv.com/songs/60037802.mkv +GRAND FUNK-some kind of wonderful,http://em.21dtv.com/songs/60005135.mkv +佚名-some kind of lover,http://em.21dtv.com/songs/60005134.mkv +机动现场-时空旅人,http://em.21dtv.com/songs/60069822.mkv +彭永琛-松开领呔,http://em.21dtv.com/songs/60119560.mkv +南拳妈妈-时空列车,http://em.21dtv.com/songs/60095271.mkv +黄莺莺-时空寄情,http://em.21dtv.com/songs/60039149.mkv +元气乐团-时空胶囊,http://em.21dtv.com/songs/60039150.mkv +袁攀-时空交错,http://em.21dtv.com/songs/60068658.mkv +Rag'n'Bone Man-Skin,http://em.21dtv.com/songs/60134787.mkv +自由发挥-上空河马,http://em.21dtv.com/songs/60064843.mkv +陈展鹏-谁可改变,http://em.21dtv.com/songs/60130838.mkv +陈展鹏-谁可改变,http://em.21dtv.com/songs/60127549.mkv +罗敏庄-谁可改变(演唱会),http://em.21dtv.com/songs/60077699.mkv +方丽盈+SIMON-谁可改变(演唱会),http://em.21dtv.com/songs/60077698.mkv +谭咏麟-谁可改变,http://em.21dtv.com/songs/60040007.mkv +许志安-谁可改变(演唱会),http://em.21dtv.com/songs/60040006.mkv +谭咏麟+李克勤-谁可改变(演唱会),http://em.21dtv.com/songs/60040005.mkv +李克勤-谁可改变(演唱会),http://em.21dtv.com/songs/60040004.mkv +黎明-谁可改变(演唱会),http://em.21dtv.com/songs/60040003.mkv +陈纪匡-谁可改变(演唱会),http://em.21dtv.com/songs/60040002.mkv +陈慧娴-谁可改变(演唱会),http://em.21dtv.com/songs/60040001.mkv +谭咏麟-谁可改变(HD演唱会),http://em.21dtv.com/songs/60040000.mkv +巩新亮-失控的我,http://em.21dtv.com/songs/60097206.mkv +范小倩-时空对调,http://em.21dtv.com/songs/60120902.mkv +林志炫-时空倒流,http://em.21dtv.com/songs/60039148.mkv +佚名-斯卡堡镇,http://em.21dtv.com/songs/60040604.mkv +刘雅丽-谁可伴我,http://em.21dtv.com/songs/60039999.mkv +容祖儿-山口百惠,http://em.21dtv.com/songs/60066290.mkv +群星-世界之最,http://em.21dtv.com/songs/60039308.mkv +黎明-世界之最,http://em.21dtv.com/songs/60039307.mkv +唐韦琪-瞬间转移,http://em.21dtv.com/songs/60123789.mkv +吴亦凡-时间煮雨,http://em.21dtv.com/songs/60102026.mkv +郁可唯-时间煮雨,http://em.21dtv.com/songs/60083802.mkv +申勇在-世界中心,http://em.21dtv.com/songs/60118810.mkv +东于哲-十九之夏,http://em.21dtv.com/songs/60062334.mkv +马天宇-世界之外,http://em.21dtv.com/songs/60097476.mkv +任然-世界之外,http://em.21dtv.com/songs/60077640.mkv +李蕙敏-世纪之吻,http://em.21dtv.com/songs/60039224.mkv +华语群星-时间之门,http://em.21dtv.com/songs/60118409.mkv +蔡依林-世界最美,http://em.21dtv.com/songs/60092014.mkv +村根-桑吉卓玛,http://em.21dtv.com/songs/60082321.mkv +炎黄赤子-桑吉卓玛,http://em.21dtv.com/songs/60037392.mkv +巩新亮-水晶之恋,http://em.21dtv.com/songs/60062393.mkv +陈妃平+捞仔-水晶之恋,http://em.21dtv.com/songs/60040199.mkv +后海大鲨鱼-时间之间,http://em.21dtv.com/songs/60122570.mkv +张钰茜-水晶钻戒,http://em.21dtv.com/songs/60040200.mkv +思予-圣洁之光,http://em.21dtv.com/songs/60133724.mkv +郑秀文-瞬间之光,http://em.21dtv.com/songs/60040328.mkv +王绎龙-世界之巅,http://em.21dtv.com/songs/60100323.mkv +容祖儿-双脚着地,http://em.21dtv.com/songs/60039850.mkv +容祖儿+梁奕伦-双脚着地,http://em.21dtv.com/songs/60039849.mkv +群星-世界之大,http://em.21dtv.com/songs/60039306.mkv +BOBO-世界之大,http://em.21dtv.com/songs/60039305.mkv +吴恩琪-瞬间永远(无原唱),http://em.21dtv.com/songs/60040327.mkv +周杨-时间游戏,http://em.21dtv.com/songs/60130195.mkv +薛炳进-时间有限,http://em.21dtv.com/songs/60126154.mkv +关心妍-送旧迎新,http://em.21dtv.com/songs/60040756.mkv +TWINS-三角圆舞,http://em.21dtv.com/songs/60092203.mkv +依稀-世界有你,http://em.21dtv.com/songs/60039297.mkv +张碧晨-时间有泪,http://em.21dtv.com/songs/60133681.mkv +张学友-时间有泪,http://em.21dtv.com/songs/60106830.mkv +迪子-舌尖有毒,http://em.21dtv.com/songs/60128446.mkv +迪子-舌尖有毒,http://em.21dtv.com/songs/60122155.mkv +刘旗-手机有毒,http://em.21dtv.com/songs/60115023.mkv +余润泽-手机有毒,http://em.21dtv.com/songs/60106602.mkv +张韶涵-瞬间移动,http://em.21dtv.com/songs/60040326.mkv +次真降措-圣洁亚丁,http://em.21dtv.com/songs/60038683.mkv +刘尊-世纪宣言,http://em.21dtv.com/songs/60039223.mkv +苏妙玲-时间肖像,http://em.21dtv.com/songs/60071121.mkv +单小源-时间小偷,http://em.21dtv.com/songs/60102004.mkv +李文-四季相思,http://em.21dtv.com/songs/60040694.mkv +容祖儿-世界小姐,http://em.21dtv.com/songs/60039292.mkv +小泾县-市井无赖,http://em.21dtv.com/songs/60116741.mkv +胡东清-世界屋脊,http://em.21dtv.com/songs/60062463.mkv +FRESH极客少年团-世界晚安,http://em.21dtv.com/songs/60123470.mkv +王爱奉-四季童谣,http://em.21dtv.com/songs/60106118.mkv +赵薇-时间停了,http://em.21dtv.com/songs/60039145.mkv +谭咏麟-世界停顿(演唱会),http://em.21dtv.com/songs/60039286.mkv +高皓正-时间停顿,http://em.21dtv.com/songs/60039144.mkv +杨宗纬-时间神偷(演唱会),http://em.21dtv.com/songs/60077626.mkv +张梅-时间隧道,http://em.21dtv.com/songs/60120513.mkv +刘浩龙-思觉失调,http://em.21dtv.com/songs/60040476.mkv +容祖儿-身娇肉贵,http://em.21dtv.com/songs/60092533.mkv +容祖儿-身骄肉贵,http://em.21dtv.com/songs/60038255.mkv +容祖儿-身骄肉贵(演唱会),http://em.21dtv.com/songs/60038254.mkv +阿古哥-舍近求远,http://em.21dtv.com/songs/60120056.mkv +陶喆-瞬间倾心,http://em.21dtv.com/songs/60040324.mkv +南拳妈妈-水晶蜻蜓,http://em.21dtv.com/songs/60083834.mkv +于文华-四季秋千,http://em.21dtv.com/songs/60089590.mkv +罗时丰-送君情泪,http://em.21dtv.com/songs/60077776.mkv +陈美安+陈建华-送君情泪,http://em.21dtv.com/songs/60068690.mkv +佚名-送君情泪,http://em.21dtv.com/songs/60040763.mkv +陈建华-送君情泪,http://em.21dtv.com/songs/60040762.mkv +张瀛仁-烧酒情歌,http://em.21dtv.com/songs/60123934.mkv +徐浩峻-四季情歌,http://em.21dtv.com/songs/60109362.mkv +郑钢坚-四季情歌,http://em.21dtv.com/songs/60069849.mkv +陈升+刘若英-世间情歌,http://em.21dtv.com/songs/60039239.mkv +孙楠+那英-世纪清晨,http://em.21dtv.com/songs/60039221.mkv +山大车乐队-畲酒飘歌,http://em.21dtv.com/songs/60120485.mkv +屠洪纲-世间男人,http://em.21dtv.com/songs/60039236.mkv +翁立友-世间男女,http://em.21dtv.com/songs/60039235.mkv +小龙女-山间女孩,http://em.21dtv.com/songs/60116749.mkv +王佳怡-水晶女孩,http://em.21dtv.com/songs/60098632.mkv +小龙女-山间女孩,http://em.21dtv.com/songs/60098289.mkv +TWINS-世界女儿,http://em.21dtv.com/songs/60039278.mkv +周天然+刹那之光-时间魔术,http://em.21dtv.com/songs/60085719.mkv +罗子淇-世界末日,http://em.21dtv.com/songs/60098687.mkv +谭咏鸣-世界末日,http://em.21dtv.com/songs/60069823.mkv +张弢-世界末日,http://em.21dtv.com/songs/60066318.mkv +佚名-四季美人,http://em.21dtv.com/songs/60040691.mkv +咻比嘟哗-世界末日,http://em.21dtv.com/songs/60039274.mkv +信乐团-世界末日,http://em.21dtv.com/songs/60039273.mkv +高慧君-世界末日,http://em.21dtv.com/songs/60039272.mkv +周杰伦-世界末日(演唱会),http://em.21dtv.com/songs/60039271.mkv +谢安琪-塑胶玫瑰,http://em.21dtv.com/songs/60093174.mkv +李利依-手机玫瑰(演唱会),http://em.21dtv.com/songs/60064893.mkv +佚名-送君路中,http://em.21dtv.com/songs/60040761.mkv +光良-手机流言,http://em.21dtv.com/songs/60089143.mkv +光良-手机留言,http://em.21dtv.com/songs/60039611.mkv +DISH乐队-时间旅行,http://em.21dtv.com/songs/60064879.mkv +张勇-桑吉拉姆,http://em.21dtv.com/songs/60091054.mkv +郑嘉颖-三角两面,http://em.21dtv.com/songs/60037241.mkv +杨钰莹-十九里路,http://em.21dtv.com/songs/60089989.mkv +姜孝萌-四季恋歌(演唱会),http://em.21dtv.com/songs/60071157.mkv +孙浩+吕薇-十九恋歌,http://em.21dtv.com/songs/60038969.mkv +李易峰-时间裂缝,http://em.21dtv.com/songs/60130423.mkv +周杰伦-四季列车,http://em.21dtv.com/songs/60077762.mkv +戴佩妮-时间快转,http://em.21dtv.com/songs/60039137.mkv +张磊-时间快照,http://em.21dtv.com/songs/60039136.mkv +刘力扬-世界看我,http://em.21dtv.com/songs/60079958.mkv +林忆莲-世界快乐(演唱会),http://em.21dtv.com/songs/60039269.mkv +佚名-烧酒咖啡,http://em.21dtv.com/songs/60038092.mkv +成凤-烧酒咖啡,http://em.21dtv.com/songs/60038091.mkv +TRASH-世界尽头,http://em.21dtv.com/songs/60108253.mkv +1976-世界尽头,http://em.21dtv.com/songs/60039268.mkv +陈柔希-时间胶囊,http://em.21dtv.com/songs/60083801.mkv +庄心妍-时间会走,http://em.21dtv.com/songs/60113445.mkv +田震-世界很小,http://em.21dtv.com/songs/60039264.mkv +张天龙-四季荷塘,http://em.21dtv.com/songs/60112663.mkv +陈芳语-世界毁灭,http://em.21dtv.com/songs/60097191.mkv +梦苇-四季花开,http://em.21dtv.com/songs/60125822.mkv +李伟-四季花开,http://em.21dtv.com/songs/60098449.mkv +玄鸟传说-双剑合璧,http://em.21dtv.com/songs/60116131.mkv +家家+林佳凝-三角关系,http://em.21dtv.com/songs/60126794.mkv +沉方如-三角关系(无原唱),http://em.21dtv.com/songs/60037238.mkv +恭僖禧-谁家乖乖,http://em.21dtv.com/songs/60039992.mkv +李姝漫-瞬间过电,http://em.21dtv.com/songs/60040323.mkv +佚名-上紧发条,http://em.21dtv.com/songs/60038042.mkv +李泉-时间飞了,http://em.21dtv.com/songs/60091325.mkv +浩子-桑吉尔多,http://em.21dtv.com/songs/60130549.mkv +殷正洋-世界的钟(无原唱),http://em.21dtv.com/songs/60039258.mkv +叶雨欣-时间的雨,http://em.21dtv.com/songs/60133454.mkv +佚名-圣洁的心,http://em.21dtv.com/songs/60038681.mkv +容中尔甲-圣洁的心,http://em.21dtv.com/songs/60038680.mkv +杨采妮-谁记的我,http://em.21dtv.com/songs/60089357.mkv +杨采妮-谁记得我,http://em.21dtv.com/songs/60039991.mkv +钟汉良-视觉动物,http://em.21dtv.com/songs/60039378.mkv +林逸欣-世界地图,http://em.21dtv.com/songs/60121824.mkv +王宏天-世界大同,http://em.21dtv.com/songs/60120754.mkv +LA组合-时间的手,http://em.21dtv.com/songs/60101786.mkv +弦子-时间的沙,http://em.21dtv.com/songs/60077624.mkv +白致瑶-森吉德玛,http://em.21dtv.com/songs/60117083.mkv +胡松华-森吉德玛,http://em.21dtv.com/songs/60083744.mkv +青燕子演唱组-森吉德玛,http://em.21dtv.com/songs/60061553.mkv +吴倩莲-世纪的梦,http://em.21dtv.com/songs/60039215.mkv +朝伦巴图-森吉德玛,http://em.21dtv.com/songs/60037421.mkv +阿库-手机掉了,http://em.21dtv.com/songs/60103650.mkv +陈娟儿-时间倒回,http://em.21dtv.com/songs/60131939.mkv +欧得洋+坣娜-时间的河,http://em.21dtv.com/songs/60111214.mkv +黄思婷-时间的河,http://em.21dtv.com/songs/60039125.mkv +七郎-司机大哥,http://em.21dtv.com/songs/60040448.mkv +哈琳-四季的爱,http://em.21dtv.com/songs/60135057.mkv +哈琳-四季的爱,http://em.21dtv.com/songs/60097203.mkv +任贤齐-瞬间的爱,http://em.21dtv.com/songs/60040322.mkv +高枫-世界村庄,http://em.21dtv.com/songs/60081891.mkv +彭丽媛-世纪春雨,http://em.21dtv.com/songs/60039214.mkv +尹子维-瞬间、初夏,http://em.21dtv.com/songs/60077720.mkv +冯静恩-三界传说,http://em.21dtv.com/songs/60037248.mkv +张镐哲-世间缠绵,http://em.21dtv.com/songs/60039230.mkv +陈奕迅-少见不怪,http://em.21dtv.com/songs/60038107.mkv +郝云-四季不败,http://em.21dtv.com/songs/60128480.mkv +陈慧琳-说句爱我,http://em.21dtv.com/songs/60040392.mkv +紫海-手机爱情(舞曲版),http://em.21dtv.com/songs/60086837.mkv +紫海-手机爱情,http://em.21dtv.com/songs/60082051.mkv +佚名-四季の歌,http://em.21dtv.com/songs/60040675.mkv +佚名-somthing in your eyes,http://em.21dtv.com/songs/60005183.mkv +佚名-something in your eyes,http://em.21dtv.com/songs/60005158.mkv +佚名-sadness in your eyes,http://em.21dtv.com/songs/60004785.mkv +V V BROWN-shark in the water,http://em.21dtv.com/songs/60073861.mkv +GARETH GATES-spirit in the sky,http://em.21dtv.com/songs/60005224.mkv +WESTLIFE-seasons in the sun,http://em.21dtv.com/songs/60004872.mkv +尚雯婕-seasons in the sun(演唱会),http://em.21dtv.com/songs/60004871.mkv +佚名-season in the sun,http://em.21dtv.com/songs/60004868.mkv +BODIES WITHOUT ORGAN-sunshine in the rain,http://em.21dtv.com/songs/60005358.mkv +佚名-singing in the rain,http://em.21dtv.com/songs/60005055.mkv +佚名-strangers in the night,http://em.21dtv.com/songs/60005292.mkv +FRANK SINATNA-strangers in the night,http://em.21dtv.com/songs/60005291.mkv +张菲-strangers in the night(演唱会),http://em.21dtv.com/songs/60005290.mkv +BARRY MANILOW-somewhere in the night,http://em.21dtv.com/songs/60005174.mkv +黎明-sugar in the marmalade,http://em.21dtv.com/songs/60005316.mkv +GWEN STEFANI-4 in the morning,http://em.21dtv.com/songs/60000021.mkv +LAWSON-standing in the dark,http://em.21dtv.com/songs/60071668.mkv +WITHIN TEMPTATION-shot in the dark,http://em.21dtv.com/songs/60071663.mkv +SCOUTING FOR GIRLS-summertime in the city,http://em.21dtv.com/songs/60073956.mkv +佚名-send in the clowns,http://em.21dtv.com/songs/60004888.mkv +THUNDERCLAP NEWMAN-something in the air,http://em.21dtv.com/songs/60005157.mkv +eli-Sink,http://em.21dtv.com/songs/60132074.mkv +NIGHTWISH-she is my sin(演唱会),http://em.21dtv.com/songs/60065685.mkv +仓木麻衣-start in my life,http://em.21dtv.com/songs/60005240.mkv +西野カナ-sakura i love you,http://em.21dtv.com/songs/60073833.mkv +倪安东-sorry i loved you,http://em.21dtv.com/songs/60005191.mkv +邓紫棋-someday ill fly,http://em.21dtv.com/songs/60066721.mkv +GARETH GATES-say it isnt so(无原唱),http://em.21dtv.com/songs/60004835.mkv +李健-深海之寻,http://em.21dtv.com/songs/60115999.mkv +陈潇-守护者们,http://em.21dtv.com/songs/60121088.mkv +陈淑萍+张燕清-上海之戀,http://em.21dtv.com/songs/60096006.mkv +ORANGE CARAMEL-上海之恋,http://em.21dtv.com/songs/60064842.mkv +殷正洋-生活札记(无原唱),http://em.21dtv.com/songs/60038544.mkv +冷漠-生活之歌,http://em.21dtv.com/songs/60115707.mkv +林秋燕-生活演员,http://em.21dtv.com/songs/60090007.mkv +李慧琳+刘荣-守候永远,http://em.21dtv.com/songs/60039673.mkv +尹子茹-收回依赖,http://em.21dtv.com/songs/60039592.mkv +冷漠-四海一家,http://em.21dtv.com/songs/60093995.mkv +冷漠+云菲菲-四海一家,http://em.21dtv.com/songs/60083854.mkv +潇梦临+CRITTY-诗话小镇,http://em.21dtv.com/songs/60110354.mkv +江美琪-谁还相信(演唱会),http://em.21dtv.com/songs/60039985.mkv +云菲菲-三好先生,http://em.21dtv.com/songs/60094389.mkv +戴军-上海往事,http://em.21dtv.com/songs/60038036.mkv +陈家葆-守候无奈,http://em.21dtv.com/songs/60104552.mkv +何祺-守护天使,http://em.21dtv.com/songs/60072408.mkv +元气乐团-守护天使,http://em.21dtv.com/songs/60039681.mkv +爱乐团-守护天使,http://em.21dtv.com/songs/60039680.mkv +TAE-守护天使,http://em.21dtv.com/songs/60039679.mkv +许晓杰-四海同根,http://em.21dtv.com/songs/60127391.mkv +成龙-上海探戈,http://em.21dtv.com/songs/60091222.mkv +邓瑞霞-似火探戈(演唱会),http://em.21dtv.com/songs/60077766.mkv +梅艳芳-似火探戈(演唱会),http://em.21dtv.com/songs/60039343.mkv +付辛博-神魂顛倒,http://em.21dtv.com/songs/60080506.mkv +恩炀-生活态度,http://em.21dtv.com/songs/60038539.mkv +蓝奕邦-时候尚早,http://em.21dtv.com/songs/60039114.mkv +左小祖咒-上海岁月,http://em.21dtv.com/songs/60132415.mkv +十三狼-实话实说,http://em.21dtv.com/songs/60104848.mkv +何韵诗-水花四溅,http://em.21dtv.com/songs/60040196.mkv +华生-守候千年,http://em.21dtv.com/songs/60066322.mkv +周华健+齐豫-神话情话,http://em.21dtv.com/songs/60038447.mkv +张敬轩-骚魂情歌,http://em.21dtv.com/songs/60092618.mkv +黄征-屌丝很疲惫,http://em.21dtv.com/songs/60071886.mkv +糖兄妹-说谎on rock,http://em.21dtv.com/songs/60077729.mkv +糖兄妹-说谎 on rock(演唱会),http://em.21dtv.com/songs/60069846.mkv +李宇春-似火年华,http://em.21dtv.com/songs/60069850.mkv +毛阿敏-四海盟约,http://em.21dtv.com/songs/60040667.mkv +高向鹏+林雅婷-三号码头,http://em.21dtv.com/songs/60118192.mkv +罗伊然-水和妈妈,http://em.21dtv.com/songs/60077710.mkv +TENSION-shes having my baby,http://em.21dtv.com/songs/60004977.mkv +梁汉文-失魂落魄,http://em.21dtv.com/songs/60038720.mkv +梁汉文-失魂落魄(演唱会),http://em.21dtv.com/songs/60038719.mkv +赵天野+欧姐-山花烂漫,http://em.21dtv.com/songs/60132922.mkv +赵天野+欧姐-山花烂漫,http://em.21dtv.com/songs/60126229.mkv +詹雅雯+詹雅云-伤痕累累,http://em.21dtv.com/songs/60105368.mkv +关泽楠-伤痕累累,http://em.21dtv.com/songs/60090663.mkv +戏曲-松花楼花,http://em.21dtv.com/songs/60092731.mkv +佚名-送花楼会,http://em.21dtv.com/songs/60040754.mkv +裕美-圣火狂热,http://em.21dtv.com/songs/60038678.mkv +戴玉强-松花江上,http://em.21dtv.com/songs/60077771.mkv +佚名-松花江上,http://em.21dtv.com/songs/60040725.mkv +刘维维-松花江上,http://em.21dtv.com/songs/60040724.mkv +程志+殷秀梅-松花江上,http://em.21dtv.com/songs/60040723.mkv +江蕙-上海假期,http://em.21dtv.com/songs/60038028.mkv +邓嘉颖-生活艰难,http://em.21dtv.com/songs/60135791.mkv +庄心妍-生活艰难,http://em.21dtv.com/songs/60132424.mkv +赵芳-诗画江南,http://em.21dtv.com/songs/60038870.mkv +F4-守候寂寞,http://em.21dtv.com/songs/60090404.mkv +谢旦-山花记得,http://em.21dtv.com/songs/60037649.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-四海欢腾,http://em.21dtv.com/songs/60077761.mkv +高安+景钰然-石斛花开,http://em.21dtv.com/songs/60127602.mkv +倪尔萍-守候红尘,http://em.21dtv.com/songs/60119266.mkv +施文彬+林荣一+FEAT仁尔-社会黑暗,http://em.21dtv.com/songs/60083773.mkv +孔兰兰-三河古镇,http://em.21dtv.com/songs/60119413.mkv +李宇春-山河故人,http://em.21dtv.com/songs/60116005.mkv +张信哲-上海姑娘,http://em.21dtv.com/songs/60111851.mkv +张信哲-上海姑娘,http://em.21dtv.com/songs/60038025.mkv +林宝-上海歌姬,http://em.21dtv.com/songs/60066301.mkv +路绮欧-收回孤单,http://em.21dtv.com/songs/60039590.mkv +王汇筑-四号工厂,http://em.21dtv.com/songs/60100924.mkv +苏晴-双核孤城,http://em.21dtv.com/songs/60077685.mkv +黑豹乐队-生活方式,http://em.21dtv.com/songs/60038534.mkv +戴爱玲-死灰复燃,http://em.21dtv.com/songs/60040617.mkv +杨钰莹-深海的鱼(演唱会),http://em.21dtv.com/songs/60038291.mkv +张柏芝-说谎的吻,http://em.21dtv.com/songs/60040388.mkv +李雅微-说好的事,http://em.21dtv.com/songs/60040373.mkv +丁紫-说谎的人,http://em.21dtv.com/songs/60093946.mkv +杨宗宪-尚憨的人,http://em.21dtv.com/songs/60027430.mkv +棉花糖-深黑的河,http://em.21dtv.com/songs/60086817.mkv +谢霆锋-拾荒蛋糕,http://em.21dtv.com/songs/60039177.mkv +SNH48-神魂颠倒,http://em.21dtv.com/songs/60109882.mkv +陶妍霖-神魂电到(HD),http://em.21dtv.com/songs/10012833.mkv +王雪-神魂颠倒,http://em.21dtv.com/songs/60085697.mkv +陶妍霖-神魂电到,http://em.21dtv.com/songs/60071109.mkv +张卫健-神魂颠倒,http://em.21dtv.com/songs/60038452.mkv +万芳-神魂颠倒,http://em.21dtv.com/songs/60038451.mkv +刘耔彤-神魂颠倒,http://em.21dtv.com/songs/60038450.mkv +容祖儿-神魂颠倒(演唱会),http://em.21dtv.com/songs/60038449.mkv +芊芳+一鸿-尚好的伴,http://em.21dtv.com/songs/60135661.mkv +张笑晟-诗画草原,http://em.21dtv.com/songs/60103283.mkv +江若琳-水火不容,http://em.21dtv.com/songs/60069840.mkv +徐洪刚-说好不哭,http://em.21dtv.com/songs/60081216.mkv +多亮-说好不哭,http://em.21dtv.com/songs/60077726.mkv +林宥嘉-4号病房,http://em.21dtv.com/songs/60084688.mkv +彭羚-上海宝贝,http://em.21dtv.com/songs/60038024.mkv +慕容晓晓-守护爱情,http://em.21dtv.com/songs/60097249.mkv +苏勒亚其其格-收获爱情(演唱会),http://em.21dtv.com/songs/60077655.mkv +苏又熔-输乎爱情,http://em.21dtv.com/songs/60039752.mkv +李坤雨-守护爱情,http://em.21dtv.com/songs/60039675.mkv +SNH48-Shake it Shake it,http://em.21dtv.com/songs/60127667.mkv +郑嘉颖-谁更重要,http://em.21dtv.com/songs/60093277.mkv +罗嘉良-谁更重要,http://em.21dtv.com/songs/60039982.mkv +王子文+任贤齐-时光诛仙,http://em.21dtv.com/songs/60125909.mkv +任贤齐+王子文-时光诛仙,http://em.21dtv.com/songs/60125108.mkv +张津涤-时光煮酒,http://em.21dtv.com/songs/60119530.mkv +郁可唯-时光正好,http://em.21dtv.com/songs/60124558.mkv +叶俊华-寿光赞歌,http://em.21dtv.com/songs/60115741.mkv +魏嘉榆-三股之歌,http://em.21dtv.com/songs/60114286.mkv +国巍-曙光之歌,http://em.21dtv.com/songs/60039786.mkv +HOTCHA+叶文辉-时光之光,http://em.21dtv.com/songs/60039112.mkv +静婷-山歌姻缘,http://em.21dtv.com/songs/60037635.mkv +傅秋英+林展逸-山歌姻缘,http://em.21dtv.com/songs/60037634.mkv +费玉清-山歌姻缘,http://em.21dtv.com/songs/60037633.mkv +静婷-山歌姻缘(演唱会),http://em.21dtv.com/songs/60037632.mkv +郑少秋-三国演义,http://em.21dtv.com/songs/60037232.mkv +叶振棠-三国演义,http://em.21dtv.com/songs/60037231.mkv +柳影虹-四个愿望(演唱会),http://em.21dtv.com/songs/60077760.mkv +尤雅-四个愿望,http://em.21dtv.com/songs/60040661.mkv +邓丽君-四个愿望,http://em.21dtv.com/songs/60040660.mkv +梁文音-三个愿望,http://em.21dtv.com/songs/60037216.mkv +佚名-伤感雨天,http://em.21dtv.com/songs/60037778.mkv +方丽盈-伤感雨天,http://em.21dtv.com/songs/60037777.mkv +张伟文-伤感雨天(演唱会),http://em.21dtv.com/songs/60037775.mkv +灭火器-傻瓜野球,http://em.21dtv.com/songs/60103427.mkv +群星-俗搁有力,http://em.21dtv.com/songs/60040842.mkv +林忆莲-三更夜半,http://em.21dtv.com/songs/60037222.mkv +塔斯肯-时光行者,http://em.21dtv.com/songs/60102071.mkv +林凡-三个心愿,http://em.21dtv.com/songs/60037215.mkv +F.I.R-三个心愿,http://em.21dtv.com/songs/60037214.mkv +孙燕姿-时光小偷,http://em.21dtv.com/songs/60039111.mkv +方伊琪-时光消逝(演唱会),http://em.21dtv.com/songs/60077621.mkv +一绫+周慧璇-水果西施,http://em.21dtv.com/songs/60040194.mkv +张鸿宇-时光芯片,http://em.21dtv.com/songs/60105878.mkv +TWINS-帅哥无用,http://em.21dtv.com/songs/60039828.mkv +古巨基-三国无双,http://em.21dtv.com/songs/60037230.mkv +龙飞-少跟我扯,http://em.21dtv.com/songs/60081358.mkv +CHRIS MALINCHAK-so good to me,http://em.21dtv.com/songs/60082333.mkv +佚名-say goodbye to hollywood(无原唱),http://em.21dtv.com/songs/60004831.mkv +胡夏-傻瓜探戈,http://em.21dtv.com/songs/60080554.mkv +张杰-时光十年,http://em.21dtv.com/songs/60106853.mkv +王傲然-时光沙漏,http://em.21dtv.com/songs/60077620.mkv +邓福如-输给时间,http://em.21dtv.com/songs/60114118.mkv +夏后-输给时间,http://em.21dtv.com/songs/60085732.mkv +陈赫-傻瓜傻瓜,http://em.21dtv.com/songs/60077487.mkv +五月天-三个傻瓜,http://em.21dtv.com/songs/60072357.mkv +陈奕迅-时光隧道,http://em.21dtv.com/songs/60100572.mkv +陈楚生-山高水长,http://em.21dtv.com/songs/60037616.mkv +徐浩-时光日记,http://em.21dtv.com/songs/60125571.mkv +邱淑君-三个七仔(无原唱),http://em.21dtv.com/songs/60037207.mkv +李雨寿-伤感情歌,http://em.21dtv.com/songs/60077510.mkv +郑源-水果情歌,http://em.21dtv.com/songs/60040192.mkv +童星-水果情歌,http://em.21dtv.com/songs/60040191.mkv +佚名-sixteen going on seventeen,http://em.21dtv.com/songs/60005063.mkv +许冠杰-十个女仔,http://em.21dtv.com/songs/60038961.mkv +谢金燕-酸甘蜜甜,http://em.21dtv.com/songs/60040870.mkv +伍佰-闪光魔术,http://em.21dtv.com/songs/60037720.mkv +戴梅君-三更暝半,http://em.21dtv.com/songs/60069779.mkv +许巍-时光漫步,http://em.21dtv.com/songs/60039110.mkv +LYN-时光流逝,http://em.21dtv.com/songs/60077619.mkv +金志文-时光恋人,http://em.21dtv.com/songs/60114144.mkv +金志文+周子琰-时光恋人,http://em.21dtv.com/songs/60085718.mkv +辛夷-水果恋人(无原唱),http://em.21dtv.com/songs/60040190.mkv +蓝雨-时光列车,http://em.21dtv.com/songs/60039109.mkv +童安格-伤感列车,http://em.21dtv.com/songs/60037773.mkv +哈琳-事过境迁,http://em.21dtv.com/songs/60135056.mkv +高夫-时过境迁,http://em.21dtv.com/songs/60134469.mkv +蔡妍-事过境迁,http://em.21dtv.com/songs/60126147.mkv +沈依莎-时过境迁,http://em.21dtv.com/songs/60109491.mkv +晓月-事过境迁,http://em.21dtv.com/songs/60099267.mkv +彭靖惠-事过境迁,http://em.21dtv.com/songs/60039361.mkv +黎明-事过境迁,http://em.21dtv.com/songs/60039360.mkv +夏如芝+骆力伟-时光机器(无原唱),http://em.21dtv.com/songs/60039106.mkv +周慧敏-送给季节,http://em.21dtv.com/songs/60040744.mkv +周强-石工号子,http://em.21dtv.com/songs/60039066.mkv +梦然&冷漠-时光海湾,http://em.21dtv.com/songs/60132645.mkv +梦然+冷漠-时光海湾,http://em.21dtv.com/songs/60128145.mkv +王雪晶-三个和尚,http://em.21dtv.com/songs/60037206.mkv +李思琳-三个和尚,http://em.21dtv.com/songs/60037205.mkv +甘萍-三个和尚,http://em.21dtv.com/songs/60037204.mkv +B2-涉谷怪谈,http://em.21dtv.com/songs/60038240.mkv +宋宇-时光飞快,http://em.21dtv.com/songs/60117672.mkv +姚苏-时光倒转,http://em.21dtv.com/songs/60116687.mkv +不辣-伤过的心,http://em.21dtv.com/songs/60087235.mkv +滑轮乐队-时光地铁,http://em.21dtv.com/songs/60039102.mkv +李悦-上官的诗,http://em.21dtv.com/songs/60038021.mkv +周子龙-时隔多年,http://em.21dtv.com/songs/60133482.mkv +刘天助-时光倒流,http://em.21dtv.com/songs/60118381.mkv +石筱群-时光倒流,http://em.21dtv.com/songs/60117950.mkv +群星-时光倒流,http://em.21dtv.com/songs/60116199.mkv +彭浩-时光倒流,http://em.21dtv.com/songs/60111097.mkv +洪凯-时光倒流,http://em.21dtv.com/songs/60100276.mkv +汪峰-时光倒流,http://em.21dtv.com/songs/60039099.mkv +林志炫-时光倒流,http://em.21dtv.com/songs/60039098.mkv +杨乐-时光雕刻,http://em.21dtv.com/songs/60117829.mkv +伊扬-十个冬季,http://em.21dtv.com/songs/60038958.mkv +郑恺-时光倒回,http://em.21dtv.com/songs/60116290.mkv +戴玉强-说给大海,http://em.21dtv.com/songs/60105922.mkv +TWINS-涉谷车站,http://em.21dtv.com/songs/60092219.mkv +王玉玺-上古传说,http://em.21dtv.com/songs/60125933.mkv +TONICK+KOLOR-水滚茶靓,http://em.21dtv.com/songs/60077708.mkv +霍尊-时光不忘,http://em.21dtv.com/songs/60123354.mkv +张碧晨-时光笔墨,http://em.21dtv.com/songs/60125530.mkv +任贤齐+黄品源+李正帆+阿牛-三更半暝,http://em.21dtv.com/songs/60037221.mkv +侯美仪-三更半暝,http://em.21dtv.com/songs/60037220.mkv +龙飘飘-顺风珍重(无原唱),http://em.21dtv.com/songs/60040302.mkv +张蔷-随风走远,http://em.21dtv.com/songs/60040930.mkv +东海-四分之三,http://em.21dtv.com/songs/60101864.mkv +汤宝如-收放自如,http://em.21dtv.com/songs/60039588.mkv +潘玮柏-释放自己,http://em.21dtv.com/songs/60072407.mkv +张学友-释放自己,http://em.21dtv.com/songs/60039565.mkv +张学友-释放自己(演唱会),http://em.21dtv.com/songs/60039564.mkv +AT17-三分种后,http://em.21dtv.com/songs/60092129.mkv +AT17-三分钟后,http://em.21dtv.com/songs/60037200.mkv +AT17-三分钟后(演唱会),http://em.21dtv.com/songs/60037199.mkv +戴佩妮-三分之二,http://em.21dtv.com/songs/60077450.mkv +泳儿-睡房宣言,http://em.21dtv.com/songs/60080822.mkv +群星-随风舞动,http://em.21dtv.com/songs/60088471.mkv +城市姐妹-随风舞动,http://em.21dtv.com/songs/60040928.mkv +罗文聪+郑仲茵-生份舞伴,http://em.21dtv.com/songs/60038527.mkv +黄宇曛-so far to me,http://em.21dtv.com/songs/60005100.mkv +佚名-straight from the heart,http://em.21dtv.com/songs/60005286.mkv +DRAKE-started from the bottom,http://em.21dtv.com/songs/60073938.mkv +梦剧院-四分三日,http://em.21dtv.com/songs/60040659.mkv +酒吧伤心人-是否是否,http://em.21dtv.com/songs/60086834.mkv +大张伟-舒服舒服,http://em.21dtv.com/songs/60039749.mkv +关心妍-收复失地,http://em.21dtv.com/songs/60086836.mkv +马浚伟-三分七秒,http://em.21dtv.com/songs/60037193.mkv +王键-随风飘散,http://em.21dtv.com/songs/60081181.mkv +LMFAO-sorry for party rocking,http://em.21dtv.com/songs/60073917.mkv +孙楠-随风飘荡,http://em.21dtv.com/songs/60090924.mkv +李翊君-顺风逆风,http://em.21dtv.com/songs/60088040.mkv +向蕙玲+吴俊宏-十分满意,http://em.21dtv.com/songs/60077599.mkv +佚名-是否明白,http://em.21dtv.com/songs/60039425.mkv +金学峰+路研-是否明白,http://em.21dtv.com/songs/60039424.mkv +杨培安-酸风柳树,http://em.21dtv.com/songs/60040869.mkv +澎恰恰-酸风柳树,http://em.21dtv.com/songs/60040868.mkv +蔡小虎-随风来去(无原唱),http://em.21dtv.com/songs/60095909.mkv +李晓-是否继续,http://em.21dtv.com/songs/60086833.mkv +林凡-是否寂寞,http://em.21dtv.com/songs/60039423.mkv +陈思思-顺风哥哥,http://em.21dtv.com/songs/60040301.mkv +佚名-saving forever for you(无原唱),http://em.21dtv.com/songs/60004827.mkv +曾庆瑜-随风而逝,http://em.21dtv.com/songs/60040923.mkv +黄立纲-随风而去,http://em.21dtv.com/songs/60119072.mkv +伍佰-随风而去,http://em.21dtv.com/songs/60040922.mkv +DREAM GIRLS-随风而过,http://em.21dtv.com/songs/60097436.mkv +星阁-随风而飞,http://em.21dtv.com/songs/60108535.mkv +夏国星+林玉英-山风传情,http://em.21dtv.com/songs/60037615.mkv +KEANE+K'NAAN-stop for a minute,http://em.21dtv.com/songs/60063754.mkv +SE7EN-是否安好,http://em.21dtv.com/songs/60124987.mkv +江映蓉-321fight,http://em.21dtv.com/songs/60072851.mkv +佚名-十二月调,http://em.21dtv.com/songs/60038948.mkv +孙露-死而无憾,http://em.21dtv.com/songs/60115831.mkv +孙露-死而无憾,http://em.21dtv.com/songs/60083850.mkv +爱乐团-死而无憾,http://em.21dtv.com/songs/60040616.mkv +X+DREAM-4 ever we dance(无原唱),http://em.21dtv.com/songs/60000020.mkv +assen捷-十二生肖,http://em.21dtv.com/songs/60132041.mkv +钟心-十二生肖,http://em.21dtv.com/songs/60083798.mkv +双星-十二生肖,http://em.21dtv.com/songs/60077595.mkv +王力宏-十二生肖,http://em.21dtv.com/songs/60072396.mkv +巧千金-十二生肖,http://em.21dtv.com/songs/60038939.mkv +雨儿+宋雪莱-师恩如海,http://em.21dtv.com/songs/60038867.mkv +杨小勇-师恩如歌,http://em.21dtv.com/songs/60125741.mkv +顾凯-师恩难忘,http://em.21dtv.com/songs/60108152.mkv +许桂荧-十二莲花,http://em.21dtv.com/songs/60038936.mkv +小凤凤-十二莲花,http://em.21dtv.com/songs/60038935.mkv +张学友-十二个音,http://em.21dtv.com/songs/60038934.mkv +泳儿-十二个我,http://em.21dtv.com/songs/60038933.mkv +吕建平-十二道街,http://em.21dtv.com/songs/60113327.mkv +张玮-生而不同,http://em.21dtv.com/songs/60106860.mkv +刘德华-视而不见,http://em.21dtv.com/songs/60039377.mkv +泽朗多吉-十二杯酒,http://em.21dtv.com/songs/60038930.mkv +廖昌永-山的壮想,http://em.21dtv.com/songs/60123904.mkv +董事长乐团-山地醉拳,http://em.21dtv.com/songs/60096484.mkv +囚鸟+枫舞-善待自己,http://em.21dtv.com/songs/60110951.mkv +李翊君-输掉自己,http://em.21dtv.com/songs/60100157.mkv +张天龙-伤到最后,http://em.21dtv.com/songs/60126869.mkv +潘玮柏-说到做到,http://em.21dtv.com/songs/60040363.mkv +黄小琥-说到做到(演唱会),http://em.21dtv.com/songs/60040362.mkv +关心妍-世代之初,http://em.21dtv.com/songs/60083804.mkv +陈绮贞-手的预言,http://em.21dtv.com/songs/60039608.mkv +央金兰泽-圣地玉树,http://em.21dtv.com/songs/60068652.mkv +麦浚龙-圣诞有人,http://em.21dtv.com/songs/60038673.mkv +I.D.M-圣诞有你,http://em.21dtv.com/songs/60097213.mkv +傅天颖-谁的眼泪,http://em.21dtv.com/songs/60039963.mkv +次真降措-圣地亚丁,http://em.21dtv.com/songs/60038676.mkv +佚名-神雕侠侣,http://em.21dtv.com/songs/60038442.mkv +金佩姗+张勇强-神雕侠侣(无原唱),http://em.21dtv.com/songs/60038441.mkv +MR.S乐团-时代先锋,http://em.21dtv.com/songs/60128691.mkv +陈思思+郁钧剑-时代先锋,http://em.21dtv.com/songs/60039094.mkv +小麦-四大天王,http://em.21dtv.com/songs/60040655.mkv +SEAN PAUL-she doesnt mind,http://em.21dtv.com/songs/60065684.mkv +张芯瑜-十点十分,http://em.21dtv.com/songs/60038929.mkv +范小倩-谁的时代,http://em.21dtv.com/songs/60112175.mkv +林隆旋-谁对谁错,http://em.21dtv.com/songs/60090009.mkv +易欣-是对是错,http://em.21dtv.com/songs/60063278.mkv +乔幼-事到如今,http://em.21dtv.com/songs/60108270.mkv +高进腾-事到如今,http://em.21dtv.com/songs/60093595.mkv +周蕙-事到如今,http://em.21dtv.com/songs/60039359.mkv +小辣椒+陈中-事到如今,http://em.21dtv.com/songs/60039358.mkv +江蕙+陈杰洲-事到如今,http://em.21dtv.com/songs/60039357.mkv +江蕙-事到如此,http://em.21dtv.com/songs/60088198.mkv +梁雁翎-说得轻易,http://em.21dtv.com/songs/60040364.mkv +许君豪-闪电情缘,http://em.21dtv.com/songs/60037718.mkv +卓依婷-山地情歌,http://em.21dtv.com/songs/60037604.mkv +高胜美-山地情歌,http://em.21dtv.com/songs/60037603.mkv +林玉英+夏国星-山地情歌(无原唱),http://em.21dtv.com/songs/60037602.mkv +夏天ALEX-适得其反,http://em.21dtv.com/songs/60083813.mkv +夏天-适得其反,http://em.21dtv.com/songs/60077651.mkv +THE SCRIPT-six degrees of separation,http://em.21dtv.com/songs/60073888.mkv +陈慧琳-手到拿来,http://em.21dtv.com/songs/60039607.mkv +丛伟-四大名着,http://em.21dtv.com/songs/60123589.mkv +张真菲-四大美女,http://em.21dtv.com/songs/60063433.mkv +HIT 5-四大名捕,http://em.21dtv.com/songs/60120215.mkv +佚名-山东曼波,http://em.21dtv.com/songs/60037614.mkv +群星-圣诞礼赞,http://em.21dtv.com/songs/60038665.mkv +李玟+刘钰华-圣诞礼赞,http://em.21dtv.com/songs/60038664.mkv +水瓶兄弟-圣诞礼物,http://em.21dtv.com/songs/60125849.mkv +佚名-圣地拉萨,http://em.21dtv.com/songs/60109976.mkv +容中尔甲-圣地拉萨(民歌),http://em.21dtv.com/songs/60090974.mkv +廖芊芊-圣地拉萨,http://em.21dtv.com/songs/60083790.mkv +阿斯根-圣地拉萨,http://em.21dtv.com/songs/60038675.mkv +童唱-圣诞铃声,http://em.21dtv.com/songs/60038667.mkv +任贤齐-烧得厉害(演唱会),http://em.21dtv.com/songs/60038081.mkv +沈芯羽-圣诞恋歌,http://em.21dtv.com/songs/60038666.mkv +贾青-傻的可以,http://em.21dtv.com/songs/60111413.mkv +甲子蕙-傻的可以,http://em.21dtv.com/songs/60037504.mkv +范玮琪-傻的可以,http://em.21dtv.com/songs/60037503.mkv +冯泽雨-圣诞卡片,http://em.21dtv.com/songs/60038661.mkv +张远喆-傻得可怜,http://em.21dtv.com/songs/60115928.mkv +伊能静-圣诞快乐(无原唱),http://em.21dtv.com/songs/60038662.mkv +郑进一-傻的可怜(无原唱),http://em.21dtv.com/songs/60037502.mkv +棒棒堂-四度空间,http://em.21dtv.com/songs/60040657.mkv +马可谦-谁的寂寞,http://em.21dtv.com/songs/60116390.mkv +邵雨涵+老猫-屌丝的寂寞,http://em.21dtv.com/songs/60069355.mkv +邵雨涵-屌丝的寂寞,http://em.21dtv.com/songs/60068226.mkv +陈奕迅-时代巨轮,http://em.21dtv.com/songs/60039090.mkv +陈奕迅-时代巨轮(演唱会),http://em.21dtv.com/songs/60039089.mkv +黄明志+龚柯允-四大皆空,http://em.21dtv.com/songs/60040653.mkv +佚名-说打就打,http://em.21dtv.com/songs/60040361.mkv +张家成-山东汉子,http://em.21dtv.com/songs/60114533.mkv +杨雪晴-谁的红颜,http://em.21dtv.com/songs/60039955.mkv +王尧-晒掉回忆,http://em.21dtv.com/songs/60037576.mkv +温碧霞-水的个性,http://em.21dtv.com/songs/60040183.mkv +何杰-谁的故事(演唱会),http://em.21dtv.com/songs/60039954.mkv +丁靖懿-山东姑娘,http://em.21dtv.com/songs/60086802.mkv +周汤豪-帅到分手,http://em.21dtv.com/songs/60128904.mkv +周汤豪-帅到分手,http://em.21dtv.com/songs/60127855.mkv +吴若希-舍得分手,http://em.21dtv.com/songs/60118450.mkv +郑劲松-圣诞的雪,http://em.21dtv.com/songs/60108040.mkv +罗时丰+林良欢-煽动的风,http://em.21dtv.com/songs/60077502.mkv +林姗-煽动的风,http://em.21dtv.com/songs/60069789.mkv +许志豪+林良欢-煽动的风,http://em.21dtv.com/songs/60037714.mkv +罗志祥-岁堤春晓,http://em.21dtv.com/songs/60040961.mkv +毛阿敏-神的传说,http://em.21dtv.com/songs/60038440.mkv +沈志仲-伤的彻底,http://em.21dtv.com/songs/60061560.mkv +马如龙-谁的扁舟,http://em.21dtv.com/songs/60128597.mkv +江美琪-上帝帮助,http://em.21dtv.com/songs/60090036.mkv +窦唯-上帝保佑,http://em.21dtv.com/songs/60038008.mkv +林心如-谁都不爱,http://em.21dtv.com/songs/60091447.mkv +张桑悦-上帝爱我,http://em.21dtv.com/songs/60038007.mkv +萧磊-屌丝的爱,http://em.21dtv.com/songs/60107164.mkv +RIKKI-素敌だね,http://em.21dtv.com/songs/60040847.mkv +孙楠-神草之恋,http://em.21dtv.com/songs/60132359.mkv +乌兰图雅-丝绸之路,http://em.21dtv.com/songs/60126575.mkv +徐千雅+喻越越-丝绸之路,http://em.21dtv.com/songs/60119568.mkv +徐千雅-丝绸之路,http://em.21dtv.com/songs/60118581.mkv +谭晶-丝绸之路(演唱会),http://em.21dtv.com/songs/60040451.mkv +涓子-山城之歌,http://em.21dtv.com/songs/60127174.mkv +雾影-沙场一战,http://em.21dtv.com/songs/60077475.mkv +Hot Worshipper+邓婉玲+李雯希+谢文雅-谁曾应许,http://em.21dtv.com/songs/60124895.mkv +伍佰-生存游戏,http://em.21dtv.com/songs/60093971.mkv +满文军-双城印象,http://em.21dtv.com/songs/60077684.mkv +Joyce Chu(朱主爱)-伸出圆手,http://em.21dtv.com/songs/60107414.mkv +费玉清-苏川夜曲,http://em.21dtv.com/songs/60088687.mkv +秦基博-水彩の月,http://em.21dtv.com/songs/60112136.mkv +金娜英-说出心声,http://em.21dtv.com/songs/60126294.mkv +李克勤-似曾相识,http://em.21dtv.com/songs/60064926.mkv +张学友+何如惠-似曾相识,http://em.21dtv.com/songs/60039341.mkv +陶喆-似曾相识,http://em.21dtv.com/songs/60039340.mkv +刘德华-似曾相恋,http://em.21dtv.com/songs/60039339.mkv +完美仙剑-山川挽歌,http://em.21dtv.com/songs/60069787.mkv +吴奇隆-三寸天堂(HD),http://em.21dtv.com/songs/10012730.mkv +吴奇隆-三寸天堂,http://em.21dtv.com/songs/60099864.mkv +严艺丹-三寸天堂,http://em.21dtv.com/songs/60063230.mkv +田雨涵-色彩童年,http://em.21dtv.com/songs/60121968.mkv +方力申-随传随到,http://em.21dtv.com/songs/60040920.mkv +蔡卓妍-受宠若惊,http://em.21dtv.com/songs/60085729.mkv +赵炳文-受宠若惊(无原唱),http://em.21dtv.com/songs/60039713.mkv +梁静茹-三寸日光(演唱会),http://em.21dtv.com/songs/60037182.mkv +旺福(小旺福)-塞车恰恰,http://em.21dtv.com/songs/60115964.mkv +井恩然-散场情歌,http://em.21dtv.com/songs/60106590.mkv +齐鹏-说唱情歌,http://em.21dtv.com/songs/60040519.mkv +谢津-说唱面谱,http://em.21dtv.com/songs/60040357.mkv +何韵诗-伤城秘密,http://em.21dtv.com/songs/60037766.mkv +孔莹-说唱脸谱,http://em.21dtv.com/songs/60040356.mkv +王铮亮-四川力量,http://em.21dtv.com/songs/60083852.mkv +王铮亮-四川力量(演唱会),http://em.21dtv.com/songs/60040648.mkv +孙翰-三岔路口,http://em.21dtv.com/songs/60127903.mkv +佚名-双叉路口,http://em.21dtv.com/songs/60039833.mkv +黄思婷-双叉路口,http://em.21dtv.com/songs/60039832.mkv +彝人传奇-水城烙锅,http://em.21dtv.com/songs/60131421.mkv +车盈霏-删除记忆,http://em.21dtv.com/songs/60037702.mkv +周柏豪-上次讲到,http://em.21dtv.com/songs/60111766.mkv +莫文蔚-双城故事,http://em.21dtv.com/songs/60039836.mkv +罗时丰-水车姑娘,http://em.21dtv.com/songs/60134099.mkv +迟英-四川姑娘,http://em.21dtv.com/songs/60116271.mkv +糖兄妹-时常挂念,http://em.21dtv.com/songs/60097266.mkv +佚名-水车姑娘,http://em.21dtv.com/songs/60040181.mkv +罗时丰-水车姑娘,http://em.21dtv.com/songs/60040180.mkv +黄乙玲-水车姑娘,http://em.21dtv.com/songs/60040179.mkv +曾心梅-水车姑娘,http://em.21dtv.com/songs/60040178.mkv +童唱-山村姑娘,http://em.21dtv.com/songs/60037590.mkv +吕金蔓-山村姑娘,http://em.21dtv.com/songs/60037589.mkv +陈慧琳+陈小春-沙尘滚滚,http://em.21dtv.com/songs/60037445.mkv +车颐-神彩飞扬,http://em.21dtv.com/songs/60093231.mkv +吕曹恺-神采飞扬,http://em.21dtv.com/songs/60085696.mkv +吴依琳-神采飞扬,http://em.21dtv.com/songs/60077552.mkv +周张弛+何泽胜+柳博-神采飞扬,http://em.21dtv.com/songs/60064852.mkv +佚名-神采飞扬,http://em.21dtv.com/songs/60038439.mkv +余火灵-上乘富饶,http://em.21dtv.com/songs/60131172.mkv +卢志勋-是惩罚吧,http://em.21dtv.com/songs/60077644.mkv +许嵩-散场电影,http://em.21dtv.com/songs/60037386.mkv +殷正洋-散场电影(无原唱),http://em.21dtv.com/songs/60037385.mkv +曲婉婷-双城单心,http://em.21dtv.com/songs/60109400.mkv +徐熙媛-收藏的心,http://em.21dtv.com/songs/60091204.mkv +林玉英-石沉大海,http://em.21dtv.com/songs/60039064.mkv +山风点火-深藏不露,http://em.21dtv.com/songs/60038283.mkv +陈冠宇-沙茶拌饭,http://em.21dtv.com/songs/60135896.mkv +周冰倩-随波逐流,http://em.21dtv.com/songs/60040919.mkv +佚名-三步珠泪,http://em.21dtv.com/songs/60037177.mkv +林子祥-胜败之间,http://em.21dtv.com/songs/60038687.mkv +周传雄-时不知归,http://em.21dtv.com/songs/60106694.mkv +周传雄-时不知归,http://em.21dtv.com/songs/60105703.mkv +黄少梅-山伯忆祝,http://em.21dtv.com/songs/60037584.mkv +那英-身不由已,http://em.21dtv.com/songs/60088747.mkv +杨宗宪-失败英雄,http://em.21dtv.com/songs/60038709.mkv +贺一航-失败英雄,http://em.21dtv.com/songs/60038708.mkv +詹雅雯-山伯英台,http://em.21dtv.com/songs/60037585.mkv +张国荣-身边有人,http://em.21dtv.com/songs/60085693.mkv +浩纹-身边有你,http://em.21dtv.com/songs/60121876.mkv +王雪懿-身边有你,http://em.21dtv.com/songs/60111294.mkv +佚名-stand by your man,http://em.21dtv.com/songs/60005231.mkv +许佳慧-身不由己,http://em.21dtv.com/songs/60110516.mkv +黄勇-身不由己,http://em.21dtv.com/songs/60109059.mkv +何洁-身不由己,http://em.21dtv.com/songs/60101904.mkv +海鸣威-身不由己,http://em.21dtv.com/songs/60083775.mkv +丁当-身不由己,http://em.21dtv.com/songs/60081865.mkv +海鸣威-身不由己(演唱会),http://em.21dtv.com/songs/60067414.mkv +海明威-身不由己,http://em.21dtv.com/songs/60064848.mkv +那英-身不由己,http://em.21dtv.com/songs/60038253.mkv +梁咏琪-身不由己,http://em.21dtv.com/songs/60038252.mkv +成龙+范晓萱-身不由己,http://em.21dtv.com/songs/60038251.mkv +访玉+枫舞-十八相送,http://em.21dtv.com/songs/60102737.mkv +苗苗-十八相送,http://em.21dtv.com/songs/60096452.mkv +明玥-十八相送,http://em.21dtv.com/songs/60077592.mkv +陈惠英-十八相送,http://em.21dtv.com/songs/60061582.mkv +卓依婷-十八相送,http://em.21dtv.com/songs/60038925.mkv +越剧-十八相送,http://em.21dtv.com/songs/60038924.mkv +谢金燕-十八相送,http://em.21dtv.com/songs/60038923.mkv +静婷+顾薇-十八相送,http://em.21dtv.com/songs/60038922.mkv +黄梅戏-十八相送,http://em.21dtv.com/songs/60038921.mkv +SHINE-十八相送,http://em.21dtv.com/songs/60038920.mkv +张伟文+吕珊-十八相送(演唱会),http://em.21dtv.com/songs/60038919.mkv +汪明荃+凌波-十八相送(演唱会),http://em.21dtv.com/songs/60038918.mkv +李丹阳+白雪-十八相送(演唱会),http://em.21dtv.com/songs/60038917.mkv +何韵诗-十八相送(演唱会),http://em.21dtv.com/songs/60038916.mkv +郑秀文-实不相瞒,http://em.21dtv.com/songs/60039162.mkv +浩角翔起-三八兄弟,http://em.21dtv.com/songs/60115269.mkv +彭丽媛-士兵兄弟,http://em.21dtv.com/songs/60039205.mkv +刘小娜-士兵小唱,http://em.21dtv.com/songs/60039204.mkv +谢霆锋+泳儿-谁比我真,http://em.21dtv.com/songs/60039943.mkv +于立成-三不五时,http://em.21dtv.com/songs/60037176.mkv +林子娟-三不五时,http://em.21dtv.com/songs/60037175.mkv +KEANE-silenced by the night,http://em.21dtv.com/songs/60067980.mkv +张学友-是悲是喜,http://em.21dtv.com/songs/60039386.mkv +小筑-水边少年,http://em.21dtv.com/songs/60086849.mkv +林志颖-是不是你(演唱会),http://em.21dtv.com/songs/60039393.mkv +艾敬-是不是梦,http://em.21dtv.com/songs/60090143.mkv +倪安东-死不睡觉,http://em.21dtv.com/songs/60093978.mkv +倪安朹-死不睡觉,http://em.21dtv.com/songs/60081904.mkv +柯以敏-是不是爱,http://em.21dtv.com/songs/60039388.mkv +曾春年-生不如死,http://em.21dtv.com/songs/60111947.mkv +凤飞飞-三部情曲,http://em.21dtv.com/songs/60037179.mkv +费玉清-三部情曲,http://em.21dtv.com/songs/60037178.mkv +胡毅-士兵情怀,http://em.21dtv.com/songs/60102643.mkv +李书伟-士兵情怀,http://em.21dtv.com/songs/60094143.mkv +孟小童-士兵情歌,http://em.21dtv.com/songs/60094066.mkv +七郎-十八呢呢(无原唱),http://em.21dtv.com/songs/60038913.mkv +古天乐-随便你点,http://em.21dtv.com/songs/60040916.mkv +S翼乐团-神笔马良,http://em.21dtv.com/songs/60116478.mkv +袁和德-神笔马良,http://em.21dtv.com/songs/60105362.mkv +S翼乐团-神笔马良(演唱会),http://em.21dtv.com/songs/60038438.mkv +越剧-山伯临终,http://em.21dtv.com/songs/60037583.mkv +姚志强-山伯临终,http://em.21dtv.com/songs/60037582.mkv +文千岁-山伯临终,http://em.21dtv.com/songs/60037581.mkv +罗文-山伯临终,http://em.21dtv.com/songs/60037580.mkv +冯汉树-山伯临终,http://em.21dtv.com/songs/60037579.mkv +张宇-四百龙银,http://em.21dtv.com/songs/60040647.mkv +赵本水-水泊梁山,http://em.21dtv.com/songs/60088698.mkv +夏天播放-私奔丽江,http://em.21dtv.com/songs/60118469.mkv +王宝强-势不可挡,http://em.21dtv.com/songs/60039355.mkv +豹小子-说变就变,http://em.21dtv.com/songs/60040344.mkv +KENNY ROGERS-she believes in me,http://em.21dtv.com/songs/60004955.mkv +BOYZONE-she believes in me,http://em.21dtv.com/songs/60004954.mkv +崔健-死不回头,http://em.21dtv.com/songs/60117694.mkv +TWINS-森巴皇后,http://em.21dtv.com/songs/60037418.mkv +TWINS-森巴皇后(演唱会),http://em.21dtv.com/songs/60037417.mkv +蔡小虎-上北火车,http://em.21dtv.com/songs/60085687.mkv +画天-善罢甘休,http://em.21dtv.com/songs/60102574.mkv +佚名-十八姑娘,http://em.21dtv.com/songs/60038903.mkv +文夏-十八姑娘,http://em.21dtv.com/songs/60038902.mkv +唐香凝-山不过来,http://em.21dtv.com/songs/60131282.mkv +吴浩康-三八二四(演唱会),http://em.21dtv.com/songs/60037163.mkv +佚名-善变的心,http://em.21dtv.com/songs/60037754.mkv +杨钰莹-舍不得忘,http://em.21dtv.com/songs/60038227.mkv +万乘齐-誓不低头,http://em.21dtv.com/songs/60111670.mkv +顾莉雅-舍不得他,http://em.21dtv.com/songs/60064847.mkv +郑少秋-誓不低头,http://em.21dtv.com/songs/60039568.mkv +郑少秋-誓不低头(演唱会),http://em.21dtv.com/songs/60039567.mkv +王小荣-舍不得你,http://em.21dtv.com/songs/60125916.mkv +莫龙丹-舍不得你,http://em.21dtv.com/songs/60120910.mkv +林少纬-舍不得你,http://em.21dtv.com/songs/60083772.mkv +郑秀文-舍不得你,http://em.21dtv.com/songs/60038210.mkv +潘美辰-舍不得你,http://em.21dtv.com/songs/60038209.mkv +古巨基+郑秀文-舍不得你(演唱会),http://em.21dtv.com/songs/60038208.mkv +范晓萱-失败的man(演唱会),http://em.21dtv.com/songs/60038707.mkv +黄征-善变的脸,http://em.21dtv.com/songs/60072370.mkv +罗时丰-善变的脸,http://em.21dtv.com/songs/60037751.mkv +金素梅-舍不得飞,http://em.21dtv.com/songs/60038204.mkv +童唱-松柏长青,http://em.21dtv.com/songs/60040718.mkv +沈波-说不出口,http://em.21dtv.com/songs/60135487.mkv +刘涛-说不出口,http://em.21dtv.com/songs/60121448.mkv +董昭-说不出口,http://em.21dtv.com/songs/60107975.mkv +陈瑞-谁伴婵娟,http://em.21dtv.com/songs/60039939.mkv +龙世杰-说不出的,http://em.21dtv.com/songs/60134517.mkv +张迈-士兵宝贝,http://em.21dtv.com/songs/60071123.mkv +烟圈蔓延-深爱着你,http://em.21dtv.com/songs/60106084.mkv +刘朋-深爱着你,http://em.21dtv.com/songs/60077547.mkv +草蜢-深爱着你(演唱会),http://em.21dtv.com/songs/60077546.mkv +邰正宵-深爱着你,http://em.21dtv.com/songs/60038282.mkv +苏有朋-深爱着你,http://em.21dtv.com/songs/60038281.mkv +卢巧音-深爱着你,http://em.21dtv.com/songs/60038280.mkv +叶德娴-深爱着你(演唱会),http://em.21dtv.com/songs/60038279.mkv +陈百强-深爱着你(演唱会),http://em.21dtv.com/songs/60038278.mkv +吉克隽逸-所爱一生,http://em.21dtv.com/songs/60126682.mkv +周海媚-伤爱一生,http://em.21dtv.com/songs/60037762.mkv +咻比嘟哗-shes a wild thing,http://em.21dtv.com/songs/60004973.mkv +周艳泓-涉爱未深,http://em.21dtv.com/songs/60066304.mkv +孙燕姿-silent all these years,http://em.21dtv.com/songs/60005031.mkv +黎瑞恩-说爱谈情,http://em.21dtv.com/songs/60040340.mkv +佚名-saving all the love(无原唱),http://em.21dtv.com/songs/60004826.mkv +黎明-是爱是缘,http://em.21dtv.com/songs/60039384.mkv +英子-谁爱上谁,http://em.21dtv.com/songs/60085735.mkv +吴允慧-是啊是啊,http://em.21dtv.com/songs/60133467.mkv +潘协庆-深爱如昨(无原唱),http://em.21dtv.com/songs/60038277.mkv +孙莞-失爱认领,http://em.21dtv.com/songs/60105755.mkv +PERFUME-spending all my time,http://em.21dtv.com/songs/60070401.mkv +AARON FRESH-spending all my time,http://em.21dtv.com/songs/60060913.mkv +农夫+咖啡因公园-Sam歌,http://em.21dtv.com/songs/60112524.mkv +方大同-sing a long song,http://em.21dtv.com/songs/60066720.mkv +萧敬腾-say a lil something,http://em.21dtv.com/songs/60004829.mkv +吴建豪-说爱就爱,http://em.21dtv.com/songs/60061604.mkv +符致逸-恃爱行凶,http://em.21dtv.com/songs/60100939.mkv +彭羚-随爱而飞,http://em.21dtv.com/songs/60040912.mkv +张冬玲-随爱而安,http://em.21dtv.com/songs/60105019.mkv +D=OUT-深爱的人(演唱会),http://em.21dtv.com/songs/60083776.mkv +龙千玉-尚爱的人,http://em.21dtv.com/songs/60038068.mkv +洪荣宏-上爱的人,http://em.21dtv.com/songs/60037999.mkv +满江-深爱的你(演唱会),http://em.21dtv.com/songs/60038274.mkv +陈思函-说爱不爱,http://em.21dtv.com/songs/60067450.mkv +BILLY JOEL-shes always a woman,http://em.21dtv.com/songs/60004974.mkv +KIP MOORE-something about a truck,http://em.21dtv.com/songs/60067984.mkv +佚名-森の水车,http://em.21dtv.com/songs/60037414.mkv +李代沫-伤+患者,http://em.21dtv.com/songs/60080613.mkv +刘昱贤-人中之龙,http://em.21dtv.com/songs/60131208.mkv +张学友-人在雨中,http://em.21dtv.com/songs/60036497.mkv +许廷铿-仁至义尽,http://em.21dtv.com/songs/60112232.mkv +王滔-忍住心痛,http://em.21dtv.com/songs/60133994.mkv +陈奕迅-人造卫星(演唱会),http://em.21dtv.com/songs/60036498.mkv +佚名-仁增旺姆,http://em.21dtv.com/songs/60036506.mkv +张达明+A+DAY-人仔无敌,http://em.21dtv.com/songs/60036477.mkv +吴娜-润泽天下,http://em.21dtv.com/songs/60077439.mkv +罗时丰-人在他乡,http://em.21dtv.com/songs/60036496.mkv +谎言留声机-让子弹飞,http://em.21dtv.com/songs/60106285.mkv +凤飞飞-人在旅途,http://em.21dtv.com/songs/60077367.mkv +云菲菲-人在旅途,http://em.21dtv.com/songs/60036489.mkv +佚名-人在旅途,http://em.21dtv.com/songs/60036488.mkv +郑秀文-热胀冷缩,http://em.21dtv.com/songs/60036300.mkv +黎明-人在黎明,http://em.21dtv.com/songs/60036487.mkv +黎明-人在黎明(演唱会),http://em.21dtv.com/songs/60036486.mkv +陈星+周虹雨-人在喀什,http://em.21dtv.com/songs/60088885.mkv +伊龙-人在酒途,http://em.21dtv.com/songs/60132193.mkv +孟杨+华歌-人在江湖,http://em.21dtv.com/songs/60128974.mkv +张芸瑞-人在江湖,http://em.21dtv.com/songs/60064797.mkv +彭羚-认真就好,http://em.21dtv.com/songs/60036556.mkv +陈雷-人在江湖,http://em.21dtv.com/songs/60036483.mkv +阿吉仔-人在江湖,http://em.21dtv.com/songs/60036482.mkv +庾澄庆-让自己high,http://em.21dtv.com/songs/60036214.mkv +孙悦-人在红尘,http://em.21dtv.com/songs/60036481.mkv +李雪-让祝福飞,http://em.21dtv.com/songs/60069752.mkv +薛之谦-认真的雪,http://em.21dtv.com/songs/60036554.mkv +施志兴-认真打拼,http://em.21dtv.com/songs/60077372.mkv +青青凉-认真的哭(演唱会),http://em.21dtv.com/songs/60036550.mkv +陈柏宇-让子弹飞,http://em.21dtv.com/songs/60079877.mkv +胡明-让子弹飞,http://em.21dtv.com/songs/60036213.mkv +梁正-忍者传说,http://em.21dtv.com/songs/60135457.mkv +单小发+Vinna-人走茶凉,http://em.21dtv.com/songs/60117593.mkv +楼宏章-人走茶凉,http://em.21dtv.com/songs/60080230.mkv +黎明-人在边缘,http://em.21dtv.com/songs/60036478.mkv +李群霞-仁者安仁,http://em.21dtv.com/songs/60094153.mkv +周逸涵-认真爱过,http://em.21dtv.com/songs/60066275.mkv +胡琳-人鱼之歌,http://em.21dtv.com/songs/60036475.mkv +王丽萍-乳燕展翅,http://em.21dtv.com/songs/60086794.mkv +乐唐吉尔-人鱼诱惑,http://em.21dtv.com/songs/60128743.mkv +蒋志光+韦绮姗-仍愿意等,http://em.21dtv.com/songs/60036604.mkv +钟嘉欣-日夜想你,http://em.21dtv.com/songs/60036668.mkv +钟康琪+梁淑卿-人鱼相恋,http://em.21dtv.com/songs/60036474.mkv +王蓉-人鱼校花,http://em.21dtv.com/songs/60130603.mkv +黄鹤翔-日月星辰,http://em.21dtv.com/songs/60062490.mkv +希亚-人鱼天堂,http://em.21dtv.com/songs/60036473.mkv +陈楚生+郁可唯-日月同辉,http://em.21dtv.com/songs/60124642.mkv +萨顶顶-如影随形,http://em.21dtv.com/songs/60069776.mkv +魔幻1+1-如影随形,http://em.21dtv.com/songs/60037035.mkv +江美琪+戴佩妮-如影随形,http://em.21dtv.com/songs/60037034.mkv +郭富城-若有所失,http://em.21dtv.com/songs/60037127.mkv +郭富城-若有所失(演唱会),http://em.21dtv.com/songs/60037126.mkv +江枫-饶阳神曲,http://em.21dtv.com/songs/60106056.mkv +江枫-饶阳神曲,http://em.21dtv.com/songs/60105205.mkv +俞宙+善燏-若隐若现,http://em.21dtv.com/songs/60121388.mkv +郑莹莹-如烟若梦,http://em.21dtv.com/songs/60094314.mkv +莫莫-若隐若离,http://em.21dtv.com/songs/60117175.mkv +君臣-日月情歌,http://em.21dtv.com/songs/60036678.mkv +关心妍-如有雷同,http://em.21dtv.com/songs/60037036.mkv +甲子慧-若有来生,http://em.21dtv.com/songs/60095810.mkv +林沐桦-若有来生,http://em.21dtv.com/songs/60037125.mkv +姚贝娜-日月凌空,http://em.21dtv.com/songs/60072346.mkv +姚贝娜-日月凌空(演唱会),http://em.21dtv.com/songs/60036677.mkv +蔡小虎-若有可能(无原唱),http://em.21dtv.com/songs/60037124.mkv +文千岁-如意吉祥(戏曲),http://em.21dtv.com/songs/60092742.mkv +张德兰+区瑞强-如意吉祥,http://em.21dtv.com/songs/60037033.mkv +邓志驹+蒋文端-如意吉祥,http://em.21dtv.com/songs/60037032.mkv +周晏伊-若遇见他,http://em.21dtv.com/songs/60103979.mkv +慕寒+横颜君-若与君老,http://em.21dtv.com/songs/60129157.mkv +邹静-容易糊涂,http://em.21dtv.com/songs/60093255.mkv +林千艳-人鱼公主,http://em.21dtv.com/songs/60097129.mkv +MYSTIC WHITE-人鱼公主,http://em.21dtv.com/songs/60077364.mkv +王野-荣耀归来,http://em.21dtv.com/songs/60107085.mkv +孙敬媛-人鱼歌姬,http://em.21dtv.com/songs/60067366.mkv +常思思-如意东方,http://em.21dtv.com/songs/60077436.mkv +SUPERCELL-リルモア,http://em.21dtv.com/songs/60074269.mkv +TOKIO-リリック,http://em.21dtv.com/songs/60074268.mkv +MIHIMARU GT-バカポジ,http://em.21dtv.com/songs/60074251.mkv +KARA-オリオン,http://em.21dtv.com/songs/60074224.mkv +王柯心-让心自由,http://em.21dtv.com/songs/60109531.mkv +苏打绿-融雪之前,http://em.21dtv.com/songs/60036705.mkv +周子扬+方珈悠-日行一善,http://em.21dtv.com/songs/60036630.mkv +孙淑媚-阮想欲飞,http://em.21dtv.com/songs/60037083.mkv +林宥嘉-热血无赖,http://em.21dtv.com/songs/60122898.mkv +尹光-软性勿近(演唱会),http://em.21dtv.com/songs/60037094.mkv +马旭东-入戏太深,http://em.21dtv.com/songs/60108160.mkv +郑源-入戏太深,http://em.21dtv.com/songs/60102798.mkv +陈洁仪-入戏太深,http://em.21dtv.com/songs/60037046.mkv +轨道-热血誓言,http://em.21dtv.com/songs/60077344.mkv +赵青岳-热血少年,http://em.21dtv.com/songs/60077343.mkv +郑伊健+陈小春-热血燃烧,http://em.21dtv.com/songs/60036295.mkv +王心凌-任性情人,http://em.21dtv.com/songs/60071082.mkv +杨千嬅-热血青年(演唱会),http://em.21dtv.com/songs/60036294.mkv +关心妍-仍想念你(演唱会),http://em.21dtv.com/songs/60036603.mkv +刘德华-热血男儿,http://em.21dtv.com/songs/60036293.mkv +化学猴子-热血篮天,http://em.21dtv.com/songs/60066269.mkv +佚名-日夕回味,http://em.21dtv.com/songs/60036665.mkv +苦荣+SHINE-热血废人,http://em.21dtv.com/songs/60036292.mkv +郑进一-软心的人,http://em.21dtv.com/songs/60037091.mkv +詹雅雯-软心的人,http://em.21dtv.com/songs/60037090.mkv +孙楠-热血奔流,http://em.21dtv.com/songs/60036291.mkv +何韵诗-如无意外(演唱会),http://em.21dtv.com/songs/60037027.mkv +阿超-让我依赖,http://em.21dtv.com/songs/60036185.mkv +佚名-阮无怨恨,http://em.21dtv.com/songs/60037082.mkv +马浚伟-让我先走,http://em.21dtv.com/songs/60036178.mkv +詹宇琦-让我想想,http://em.21dtv.com/songs/60081823.mkv +赵小兵-让我心碎,http://em.21dtv.com/songs/60064788.mkv +朱紫娆+黄剑文-仍未忘记,http://em.21dtv.com/songs/60118653.mkv +LIONEL RICHIE-running with the night,http://em.21dtv.com/songs/60004770.mkv +佚名-ridinwith the king,http://em.21dtv.com/songs/60004675.mkv +儿歌-让我闪耀,http://em.21dtv.com/songs/60089140.mkv +袁宇-让我受伤,http://em.21dtv.com/songs/60064787.mkv +张柏芝-让我说谎,http://em.21dtv.com/songs/60092640.mkv +红霞-让往事飞,http://em.21dtv.com/songs/60088405.mkv +JKAI-若无其事,http://em.21dtv.com/songs/60119154.mkv +张芸京-若无其事,http://em.21dtv.com/songs/60069778.mkv +光良-若无其事,http://em.21dtv.com/songs/60037122.mkv +房祖名-若无其事,http://em.21dtv.com/songs/60037121.mkv +彭羚+王力宏-让我取暖,http://em.21dtv.com/songs/60036169.mkv +张栋梁-让我陪你(演唱会),http://em.21dtv.com/songs/60036164.mkv +张德兰-让我飘过,http://em.21dtv.com/songs/60036166.mkv +韩磊-让我们醉,http://em.21dtv.com/songs/60036159.mkv +刀刀刀-让我们飞,http://em.21dtv.com/songs/60077327.mkv +林昕阳-让我嫉妒,http://em.21dtv.com/songs/60124134.mkv +F4-让我飞走,http://em.21dtv.com/songs/60090408.mkv +FUN4-让我放肆,http://em.21dtv.com/songs/60077324.mkv +可晴-让我跌倒,http://em.21dtv.com/songs/60121476.mkv +可晴-让我跌倒,http://em.21dtv.com/songs/60077323.mkv +刘子涵-任我超越,http://em.21dtv.com/songs/60069761.mkv +尹相杰-让我闯闯,http://em.21dtv.com/songs/60087727.mkv +麦德罗-让我奔放(演唱会),http://em.21dtv.com/songs/60077321.mkv +罗文-让我奔放(演唱会),http://em.21dtv.com/songs/60036123.mkv +歌浴森-容我不懂,http://em.21dtv.com/songs/60077390.mkv +TYPHOON+颜行书-任我遨游,http://em.21dtv.com/songs/60036563.mkv +倪安东-让我爱她,http://em.21dtv.com/songs/60066266.mkv +黄英-让我爱你,http://em.21dtv.com/songs/60110733.mkv +廖浩明-让我爱你,http://em.21dtv.com/songs/60069747.mkv +胡夏-让我爱你,http://em.21dtv.com/songs/60066267.mkv +周渝民+徐熙媛-让我爱你,http://em.21dtv.com/songs/60036115.mkv +李玟-让我爱吧,http://em.21dtv.com/songs/60036114.mkv +KATE BUSH-running up that hill,http://em.21dtv.com/songs/60073824.mkv +Monsta X-Rush,http://em.21dtv.com/songs/60119164.mkv +大嘴巴-r u kidding me,http://em.21dtv.com/songs/60065668.mkv +晗月-热土之上,http://em.21dtv.com/songs/60036284.mkv +帝国之子-run to the world,http://em.21dtv.com/songs/60063724.mkv +佚名-rise to the occasion,http://em.21dtv.com/songs/60004688.mkv +何璐-让他降落,http://em.21dtv.com/songs/60087317.mkv +侯磊-让她降落,http://em.21dtv.com/songs/60081542.mkv +何璐-让她降落,http://em.21dtv.com/songs/60036109.mkv +刘晓东-忍痛割爱,http://em.21dtv.com/songs/60118393.mkv +陈瑞-忍痛割爱(HD),http://em.21dtv.com/songs/10012828.mkv +陈瑞-忍痛割爱,http://em.21dtv.com/songs/60068626.mkv +寂悸-若天不老,http://em.21dtv.com/songs/60116733.mkv +S.H.E-让他爱你,http://em.21dtv.com/songs/60036107.mkv +TOGY-rock狮子座,http://em.21dtv.com/songs/60073812.mkv +洛客班-人生证明(无原唱),http://em.21dtv.com/songs/60036460.mkv +刘德华-人生长路,http://em.21dtv.com/songs/60090688.mkv +姚敏-容水长流,http://em.21dtv.com/songs/60089228.mkv +李娜-人生之旅,http://em.21dtv.com/songs/60036461.mkv +何松梅-人生之歌,http://em.21dtv.com/songs/60083711.mkv +龙千玉+傅振辉-若是有缘,http://em.21dtv.com/songs/60037117.mkv +李珠-人生有缘,http://em.21dtv.com/songs/60036456.mkv +关心妍-人生银行,http://em.21dtv.com/songs/60116562.mkv +胡美仪-人生於世(演唱会),http://em.21dtv.com/songs/60077361.mkv +柳影虹-人生于世(演唱会),http://em.21dtv.com/songs/60077360.mkv +张伟文-人生于世(演唱会),http://em.21dtv.com/songs/60036458.mkv +张德兰-人生于世(演唱会),http://em.21dtv.com/songs/60036457.mkv +毛阿敏-人生一世,http://em.21dtv.com/songs/60036451.mkv +佚名-日思夜梦,http://em.21dtv.com/songs/60036659.mkv +陈雷-日思夜梦,http://em.21dtv.com/songs/60036658.mkv +曾明莉-日思夜梦(无原唱),http://em.21dtv.com/songs/60036657.mkv +苏玮-如水月光,http://em.21dtv.com/songs/60108834.mkv +林慧省-饶赦相思,http://em.21dtv.com/songs/60135435.mkv +赵敬一-人生舞台,http://em.21dtv.com/songs/60086784.mkv +郑进一-人生舞台,http://em.21dtv.com/songs/60036445.mkv +詹雅雯-人生舞台,http://em.21dtv.com/songs/60036444.mkv +刘欢-人生无悔,http://em.21dtv.com/songs/60036443.mkv +邱芸子-人生世事,http://em.21dtv.com/songs/60109652.mkv +石头+张晓棠-弱水三千,http://em.21dtv.com/songs/60120832.mkv +石头+张晓棠-弱水三千,http://em.21dtv.com/songs/60107928.mkv +周传雄-弱水三千,http://em.21dtv.com/songs/60037132.mkv +麦浚龙-弱水三千,http://em.21dtv.com/songs/60037131.mkv +秦影-人生似酒,http://em.21dtv.com/songs/60100344.mkv +罗隽永+劳晓音-惹是生非,http://em.21dtv.com/songs/60113945.mkv +孙久琪-人生如戏,http://em.21dtv.com/songs/60135101.mkv +大厨-人生如戏,http://em.21dtv.com/songs/60110109.mkv +张华-人生如戏,http://em.21dtv.com/songs/60100011.mkv +谭咏麟-仍是任性,http://em.21dtv.com/songs/60036599.mkv +高向鹏-人生如戏,http://em.21dtv.com/songs/60036439.mkv +丁春秀-人生如诗,http://em.21dtv.com/songs/60111668.mkv +贾富营-人生若梦,http://em.21dtv.com/songs/60129629.mkv +萌萌哒天团-人生如梦,http://em.21dtv.com/songs/60129557.mkv +石雪峰-人生如梦,http://em.21dtv.com/songs/60128263.mkv +谢知言-人生如梦,http://em.21dtv.com/songs/60124492.mkv +欧阳雄波-人生如梦,http://em.21dtv.com/songs/60106051.mkv +许嘉文-人生如梦,http://em.21dtv.com/songs/60077358.mkv +佚名-人生如梦,http://em.21dtv.com/songs/60036438.mkv +巫启贤-人生如梦,http://em.21dtv.com/songs/60036437.mkv +杨臣刚-人生人海,http://em.21dtv.com/songs/60091412.mkv +达明一派+谢霆锋-人山人海,http://em.21dtv.com/songs/60036387.mkv +辛晓琪-人生如此,http://em.21dtv.com/songs/60099515.mkv +罗文聪+廖家仪-若失去你,http://em.21dtv.com/songs/60037109.mkv +谢金晶-人生擂台,http://em.21dtv.com/songs/60132887.mkv +陈小辉-人生旅途,http://em.21dtv.com/songs/60085643.mkv +蔡小虎-人生旅途,http://em.21dtv.com/songs/60083709.mkv +王莉-人生路上,http://em.21dtv.com/songs/60131672.mkv +群星-人生路上,http://em.21dtv.com/songs/60036427.mkv +徐小凤-人似浪花,http://em.21dtv.com/songs/60036464.mkv +徐小凤-人似浪花(演唱会),http://em.21dtv.com/songs/60036463.mkv +CT GIRLS-燃烧快乐,http://em.21dtv.com/songs/60036006.mkv +许美静-人生苦短,http://em.21dtv.com/songs/60036421.mkv +蔡振南-人生借过,http://em.21dtv.com/songs/60036418.mkv +黄思婷-人生剧本,http://em.21dtv.com/songs/60083708.mkv +陈艺鹏-若水杭州,http://em.21dtv.com/songs/60097312.mkv +毛宁-人生胡同,http://em.21dtv.com/songs/60088177.mkv +五月天-人生海海,http://em.21dtv.com/songs/60036411.mkv +詹雅雯-人生公路,http://em.21dtv.com/songs/60036410.mkv +佚名-燃烧攻击,http://em.21dtv.com/songs/60036005.mkv +郑志勇-人生的路,http://em.21dtv.com/songs/60127460.mkv +翁立友-人生的歌,http://em.21dtv.com/songs/60101471.mkv +洪翔-人生的歌,http://em.21dtv.com/songs/60085642.mkv +黄乙玲-人生的歌,http://em.21dtv.com/songs/60036402.mkv +阿吉仔-人生的歌,http://em.21dtv.com/songs/60036401.mkv +孟文豪-人生车站,http://em.21dtv.com/songs/60077355.mkv +龙飘飘-人生车站,http://em.21dtv.com/songs/60036398.mkv +叶振棠-人生长跑(演唱会),http://em.21dtv.com/songs/60036459.mkv +徐梵溪-燃烧翅膀,http://em.21dtv.com/songs/60112704.mkv +詹雅雯-人生车班,http://em.21dtv.com/songs/60036397.mkv +樊凡-燃烧翅膀,http://em.21dtv.com/songs/60036003.mkv +晓熊-燃烧不尽,http://em.21dtv.com/songs/60063154.mkv +罗嘉良-仍然在痛,http://em.21dtv.com/songs/60036594.mkv +童唱-人人至上,http://em.21dtv.com/songs/60036383.mkv +陈明-日日月月,http://em.21dtv.com/songs/60080906.mkv +张栋梁-日日夜夜,http://em.21dtv.com/songs/60036656.mkv +张柏芝-日日夜夜,http://em.21dtv.com/songs/60036655.mkv +群星-人人英雄,http://em.21dtv.com/songs/60036382.mkv +群星-人人英雄(HD演唱会),http://em.21dtv.com/songs/60036381.mkv +施文彬-人肉咸咸,http://em.21dtv.com/songs/60036384.mkv +张信哲-仍然心痛,http://em.21dtv.com/songs/60036592.mkv +S.H.E-让人心动,http://em.21dtv.com/songs/60090437.mkv +罗志祥-人肉搜索,http://em.21dtv.com/songs/60077354.mkv +颜振豪-柔软时光,http://em.21dtv.com/songs/60134454.mkv +沙宝亮-柔软时光,http://em.21dtv.com/songs/60117886.mkv +强辩乐团-rock nroll star,http://em.21dtv.com/songs/60004707.mkv +朱丽婷-热热闹闹,http://em.21dtv.com/songs/60069754.mkv +胡琳-人人美丽,http://em.21dtv.com/songs/60093061.mkv +谭咏麟-柔柔河畔,http://em.21dtv.com/songs/60036716.mkv +TWINS-人人弹起,http://em.21dtv.com/songs/60036377.mkv +TWINS-人人弹起(演唱会),http://em.21dtv.com/songs/60036376.mkv +SHINE-人人超人,http://em.21dtv.com/songs/60036375.mkv +苏玮-若如初见,http://em.21dtv.com/songs/60108848.mkv +贾晓晨-人人搬屋,http://em.21dtv.com/songs/60068622.mkv +江东-荣辱不惊,http://em.21dtv.com/songs/60133917.mkv +王雪晶+小妮妮-人人爱CHIT TOU,http://em.21dtv.com/songs/60009169.mkv +陈茂丰-柔情月影,http://em.21dtv.com/songs/60111497.mkv +张文绮+郭婷筠-热情袂停,http://em.21dtv.com/songs/60064792.mkv +许志安-热情万钧,http://em.21dtv.com/songs/60036281.mkv +高胜美-柔情深种,http://em.21dtv.com/songs/60036712.mkv +霓裳-柔情水乡,http://em.21dtv.com/songs/60114880.mkv +张学友-柔情似水,http://em.21dtv.com/songs/60091069.mkv +邝美云-柔情似水,http://em.21dtv.com/songs/60085649.mkv +王爱华-柔情似水,http://em.21dtv.com/songs/60069764.mkv +黄耀明-柔情似水(演唱会),http://em.21dtv.com/songs/60064801.mkv +甄妮-热情沙漠(演唱会),http://em.21dtv.com/songs/60036280.mkv +罗逻圣-人情世故,http://em.21dtv.com/songs/60106192.mkv +杨千嬅-人情世故,http://em.21dtv.com/songs/60036370.mkv +杜德伟-如泣如诉,http://em.21dtv.com/songs/60037025.mkv +庄心妍-人前人后,http://em.21dtv.com/songs/60103258.mkv +李卫+王绎龙-热情如火,http://em.21dtv.com/songs/60100133.mkv +水木年华-热情如火,http://em.21dtv.com/songs/60091572.mkv +叶复台-热情恰恰,http://em.21dtv.com/songs/60036279.mkv +谢金燕-热情恰恰,http://em.21dtv.com/songs/60036278.mkv +罗敏庄-柔情蜜意(演唱会),http://em.21dtv.com/songs/60077393.mkv +张国荣-柔情蜜意,http://em.21dtv.com/songs/60036711.mkv +胡小宝-人情冷暖,http://em.21dtv.com/songs/60113972.mkv +袁攀-人去楼空,http://em.21dtv.com/songs/60068621.mkv +欧阳靖-人气急升,http://em.21dtv.com/songs/60062795.mkv +卢巧音-人气急升,http://em.21dtv.com/songs/60036368.mkv +伍佰-热情交错,http://em.21dtv.com/songs/60036276.mkv +杜德伟-热情回来,http://em.21dtv.com/songs/60036275.mkv +叶启田-热情滚滚,http://em.21dtv.com/songs/60036273.mkv +佚名-柔情都市,http://em.21dtv.com/songs/60036709.mkv +T ARA-roly poly in copacabana,http://em.21dtv.com/songs/60060900.mkv +DUFFY-rain on your parade,http://em.21dtv.com/songs/60004594.mkv +佚名-rhythm of the rain,http://em.21dtv.com/songs/60004670.mkv +THE CASCADES-rhythm of the rain,http://em.21dtv.com/songs/60004669.mkv +J GUMMOE-rhythm of the rain,http://em.21dtv.com/songs/60004668.mkv +DEBARGE-rhythm of the night,http://em.21dtv.com/songs/60004667.mkv +李亚蔚-Rosy,http://em.21dtv.com/songs/60130405.mkv +LOVE AND THEFT-runnin out of air,http://em.21dtv.com/songs/60073823.mkv +佚名-river of no return,http://em.21dtv.com/songs/60004695.mkv +LIONEL NEWMAN-river of no return,http://em.21dtv.com/songs/60004694.mkv +LUDACRIS+USHER+DAVID GUETTA-rest of my life,http://em.21dtv.com/songs/60073799.mkv +佚名-reflections of my life,http://em.21dtv.com/songs/60004644.mkv +ROD STEWART-rhythm of my heart,http://em.21dtv.com/songs/60004666.mkv +郑虹-Rolling in the Deep[消伴],http://em.21dtv.com/songs/60101530.mkv +尚雯婕-Roar,http://em.21dtv.com/songs/60105780.mkv +山风点火-任你左右,http://em.21dtv.com/songs/60036561.mkv +张杰-让你依靠,http://em.21dtv.com/songs/60064784.mkv +张学友-让你愉快,http://em.21dtv.com/songs/60036089.mkv +小雪-让你愉快,http://em.21dtv.com/songs/60036088.mkv +张学友-让你愉快(演唱会),http://em.21dtv.com/songs/60036087.mkv +刘琪-让你幸福,http://em.21dtv.com/songs/60130125.mkv +刘超华-让你幸福,http://em.21dtv.com/songs/60036083.mkv +无风-如你所愿,http://em.21dtv.com/songs/60129176.mkv +万芳-如你所愿,http://em.21dtv.com/songs/60037024.mkv +龙晓飞-让你去飞,http://em.21dtv.com/songs/60036081.mkv +李魏西-让你明白,http://em.21dtv.com/songs/60100176.mkv +蒋蒋-让你哭了,http://em.21dtv.com/songs/60132853.mkv +张学友-让你快乐,http://em.21dtv.com/songs/60092591.mkv +王爵ALSTON-若你还在,http://em.21dtv.com/songs/60086797.mkv +[Group] +groupName=十六万歌曲MV等 - 52 +王中平-阮哪会堪,http://em.21dtv.com/songs/60079953.mkv +辛欣-让你回家,http://em.21dtv.com/songs/60036077.mkv +周冰倩-忍耐孤独,http://em.21dtv.com/songs/60036512.mkv +林峰-热能放送(演唱会),http://em.21dtv.com/songs/60062643.mkv +林峰-热能放送,http://em.21dtv.com/songs/60061534.mkv +黄梦如+赵丽嫆-人民战争,http://em.21dtv.com/songs/60090352.mkv +王泷锐-让梦绽放,http://em.21dtv.com/songs/60120769.mkv +张学友-如没有你,http://em.21dtv.com/songs/60037017.mkv +林淑蓉-如梦一场,http://em.21dtv.com/songs/60090004.mkv +群星-让梦舞蹈,http://em.21dtv.com/songs/60098697.mkv +佚名-remember me this way,http://em.21dtv.com/songs/60004650.mkv +于铭-人面桃花,http://em.21dtv.com/songs/60128754.mkv +覃桢-人面桃花,http://em.21dtv.com/songs/60126172.mkv +彭嘉俊-人面桃花,http://em.21dtv.com/songs/60123969.mkv +叶晓红-人面桃花,http://em.21dtv.com/songs/60083707.mkv +张娟-人面桃花,http://em.21dtv.com/songs/60036358.mkv +刘海波-人面桃花,http://em.21dtv.com/songs/60036357.mkv +邓丽君-人面桃花(演唱会),http://em.21dtv.com/songs/60036356.mkv +唐大聪-如梦仕途,http://em.21dtv.com/songs/60133503.mkv +晓田-如梦人生,http://em.21dtv.com/songs/60125642.mkv +梅君-认命认命(无原唱),http://em.21dtv.com/songs/60036537.mkv +龙威-让梦启航,http://em.21dtv.com/songs/60122317.mkv +刘德华-肉麻情歌,http://em.21dtv.com/songs/60036720.mkv +王亚平-人民军队,http://em.21dtv.com/songs/60063045.mkv +江映蓉-热门花招,http://em.21dtv.com/songs/60062510.mkv +李绍继-人民公园,http://em.21dtv.com/songs/60036360.mkv +安九-日暮归途,http://em.21dtv.com/songs/60083718.mkv +祖海-人民公仆,http://em.21dtv.com/songs/60036359.mkv +王学兵-人民公敌,http://em.21dtv.com/songs/60106107.mkv +湘雨寒-让梦飞翔,http://em.21dtv.com/songs/60080299.mkv +超级女声+林爽-让梦冬眠,http://em.21dtv.com/songs/60088720.mkv +何龙雨+沈嫔嫔-让梦冬眠,http://em.21dtv.com/songs/60083698.mkv +孙楠+艾雨-让梦冬眠,http://em.21dtv.com/songs/60036069.mkv +孙楠+艾雨-让梦冬眠(演唱会),http://em.21dtv.com/songs/60036068.mkv +叶凡-如梦尘烟,http://em.21dtv.com/songs/60100782.mkv +郭娅丽-如梦草原,http://em.21dtv.com/songs/60077434.mkv +乌兰图雅-如梦草原,http://em.21dtv.com/songs/60037018.mkv +卓依婷-如梦初醒,http://em.21dtv.com/songs/60037021.mkv +彭羚-如梦初醒,http://em.21dtv.com/songs/60037020.mkv +彭羚-如梦初醒(演唱会),http://em.21dtv.com/songs/60037019.mkv +大庆小芳-人民必胜,http://em.21dtv.com/songs/60115079.mkv +李健-日落之前,http://em.21dtv.com/songs/60113614.mkv +糖兄妹-热恋之后,http://em.21dtv.com/songs/60119872.mkv +糖兄妹-热恋之后(演唱会),http://em.21dtv.com/songs/60069753.mkv +童安格+周治平-日落之处(演唱会),http://em.21dtv.com/songs/60036645.mkv +安又琪-热恋烟火,http://em.21dtv.com/songs/60036255.mkv +李嘉-日落西山(无原唱),http://em.21dtv.com/songs/60036644.mkv +杨乃文-日落西沉(HD),http://em.21dtv.com/songs/10012800.mkv +杨乃文-日落西沉,http://em.21dtv.com/songs/60080465.mkv +佚名-ride like the wind,http://em.21dtv.com/songs/60004673.mkv +罗启聪-日落塔门,http://em.21dtv.com/songs/60124343.mkv +李龙基-如来神掌,http://em.21dtv.com/songs/60092817.mkv +王嘉明-如来神掌(无原唱),http://em.21dtv.com/songs/60037015.mkv +谭咏麟-日落时分,http://em.21dtv.com/songs/60036643.mkv +唐人街乐队-人来人往,http://em.21dtv.com/songs/60133494.mkv +陈奕迅-人来人往(演唱会),http://em.21dtv.com/songs/60036351.mkv +李逸-日落日升,http://em.21dtv.com/songs/60036642.mkv +周柏豪+连诗雅-日落日出,http://em.21dtv.com/songs/60107604.mkv +卢巧音-日落日出,http://em.21dtv.com/songs/60036641.mkv +林子祥-日落日出,http://em.21dtv.com/songs/60036640.mkv +沈文程-日落情歌(无原唱),http://em.21dtv.com/songs/60095758.mkv +许志安-日落旅馆(演唱会),http://em.21dtv.com/songs/60036639.mkv +蔡妍-热力开场,http://em.21dtv.com/songs/60036253.mkv +TWINS-热浪假期,http://em.21dtv.com/songs/60036248.mkv +董赫男-热烈欢迎,http://em.21dtv.com/songs/60036256.mkv +佚名-日落黄昏,http://em.21dtv.com/songs/60036638.mkv +庄心妍-热恋过后,http://em.21dtv.com/songs/60106812.mkv +梁博-日落大道,http://em.21dtv.com/songs/60135455.mkv +梁博-日落大道,http://em.21dtv.com/songs/60116067.mkv +关庆小海-热辣草原,http://em.21dtv.com/songs/60127747.mkv +陈浩民-人龙传说,http://em.21dtv.com/songs/60036354.mkv +叶倩文-如履薄冰(无原唱),http://em.21dtv.com/songs/60037016.mkv +姜苏-人间真情,http://em.21dtv.com/songs/60036343.mkv +泳儿-人间蒸发,http://em.21dtv.com/songs/60063285.mkv +徐华凤-人间游戏,http://em.21dtv.com/songs/60091187.mkv +田馥甄-人间烟火,http://em.21dtv.com/songs/60124302.mkv +张玮-人间烟火,http://em.21dtv.com/songs/60105857.mkv +王铮亮-人间烟火,http://em.21dtv.com/songs/60036342.mkv +关心妍-任君选择,http://em.21dtv.com/songs/60036560.mkv +谭晶-人间西湖,http://em.21dtv.com/songs/60069755.mkv +晓依-人间仙道,http://em.21dtv.com/songs/60072343.mkv +张琳-人间天堂,http://em.21dtv.com/songs/60135223.mkv +卢冠廷-人间天堂,http://em.21dtv.com/songs/60113316.mkv +张琳-人间天堂,http://em.21dtv.com/songs/60097128.mkv +张也-人间天堂,http://em.21dtv.com/songs/60036341.mkv +郭富城-人间天堂(无原唱),http://em.21dtv.com/songs/60036340.mkv +马艳-人间天水,http://em.21dtv.com/songs/60131996.mkv +韩磊+阿鲁阿卓-人间天河,http://em.21dtv.com/songs/60109727.mkv +韩磊+阿鲁阿卓-人间天河,http://em.21dtv.com/songs/60109014.mkv +汤非+阿鲁阿卓-人间天河,http://em.21dtv.com/songs/60108669.mkv +阿鲁阿卓+汤非-人间天河,http://em.21dtv.com/songs/60106379.mkv +云菲菲-日久天长,http://em.21dtv.com/songs/60122473.mkv +邓丽欣-日久生情,http://em.21dtv.com/songs/60036636.mkv +邓丽欣-日久生情(演唱会),http://em.21dtv.com/songs/60036635.mkv +孙楠-若即若离,http://em.21dtv.com/songs/60037104.mkv +孙楠-若即若离(演唱会),http://em.21dtv.com/songs/60037103.mkv +肖飞-人贱人爱,http://em.21dtv.com/songs/60036345.mkv +安东阳-日记秋天,http://em.21dtv.com/songs/60036633.mkv +李殊-人间情多,http://em.21dtv.com/songs/60036338.mkv +刘玉东-人间情爱,http://em.21dtv.com/songs/60125208.mkv +董文华-人间家园,http://em.21dtv.com/songs/60123123.mkv +佚名-人间家园,http://em.21dtv.com/songs/60036336.mkv +艾米丽+王嘉宝-人间家园,http://em.21dtv.com/songs/60036335.mkv +林子祥-人间好汉,http://em.21dtv.com/songs/60036334.mkv +莫莫-如今的你,http://em.21dtv.com/songs/60117167.mkv +雷佳-人间大爱(演唱会),http://em.21dtv.com/songs/60066270.mkv +张超-人迹板桥,http://em.21dtv.com/songs/60121678.mkv +茜拉-Rolling In The Deep,http://em.21dtv.com/songs/60099461.mkv +钟伟强-rolling in the deep,http://em.21dtv.com/songs/60081459.mkv +LINKIN PARK-rolling in the deep(演唱会),http://em.21dtv.com/songs/60065676.mkv +ADELE-rolling in the deep,http://em.21dtv.com/songs/60004727.mkv +Katy Perry-Rise,http://em.21dtv.com/songs/60124921.mkv +黄鹤-rolling in the deep,http://em.21dtv.com/songs/60069131.mkv +欧豪-Rims,http://em.21dtv.com/songs/60113761.mkv +朴树-radio in my head,http://em.21dtv.com/songs/60004585.mkv +twenty one pilots+MUTEMATH-Ride,http://em.21dtv.com/songs/60132144.mkv +Somo-Ride,http://em.21dtv.com/songs/60125005.mkv +Twenty One Pilots-Ride,http://em.21dtv.com/songs/60121314.mkv +陈奕迅-然后怎样,http://em.21dtv.com/songs/60035992.mkv +王子强-如何再见,http://em.21dtv.com/songs/60130577.mkv +张柏芝-任何天气,http://em.21dtv.com/songs/60036559.mkv +张柏芝-任何天气(演唱会),http://em.21dtv.com/songs/60036558.mkv +姚婷-如花似玉,http://em.21dtv.com/songs/60081242.mkv +李美凤+夏韶声-仍会是你,http://em.21dtv.com/songs/60036577.mkv +张根硕-如何是好,http://em.21dtv.com/songs/60086792.mkv +先知玛莉-任何时候,http://em.21dtv.com/songs/60080187.mkv +曲婉婷-如何是好,http://em.21dtv.com/songs/60067388.mkv +周华健-然后然后,http://em.21dtv.com/songs/60035991.mkv +龙梅子+陈少华-人海情缘,http://em.21dtv.com/songs/60094364.mkv +陈雅伦-仍怀念你,http://em.21dtv.com/songs/60036575.mkv +赵丹-人海茫茫,http://em.21dtv.com/songs/60064793.mkv +黄征-人海茫茫,http://em.21dtv.com/songs/60036321.mkv +李硕-人海旅行,http://em.21dtv.com/songs/60133825.mkv +JENNY YANG-如何快乐,http://em.21dtv.com/songs/60037007.mkv +陈冠希-如何尽兴,http://em.21dtv.com/songs/60037004.mkv +王菲-任何故事,http://em.21dtv.com/songs/60091736.mkv +王建杰-荣华富贵,http://em.21dtv.com/songs/60036682.mkv +许茹芸-融化的心,http://em.21dtv.com/songs/60036703.mkv +CT GIRLS-热火-迪版,http://em.21dtv.com/songs/60036242.mkv +浩轩+梁琼元-惹火的爱,http://em.21dtv.com/songs/60107873.mkv +李杰-人格主义,http://em.21dtv.com/songs/60104206.mkv +陈奕迅-人工智能,http://em.21dtv.com/songs/60036316.mkv +韦礼安-如果再见,http://em.21dtv.com/songs/60127585.mkv +韦礼安-如果再见,http://em.21dtv.com/songs/60124682.mkv +张健雄+心大俊-如果真爱,http://em.21dtv.com/songs/60120502.mkv +张学友+邓健泓-如果有神(演唱会),http://em.21dtv.com/songs/60036965.mkv +姜育恒-如果一生,http://em.21dtv.com/songs/60036956.mkv +王珞丹-如果遇见,http://em.21dtv.com/songs/60110407.mkv +刘依纯-如果以后,http://em.21dtv.com/songs/60103105.mkv +冯曦妤-如果阳光,http://em.21dtv.com/songs/60092340.mkv +冯曦妤-如果 阳光,http://em.21dtv.com/songs/60036740.mkv +香香-如果心酸,http://em.21dtv.com/songs/60126446.mkv +绿昕-如果想你,http://em.21dtv.com/songs/60071088.mkv +张清芳-如果我能,http://em.21dtv.com/songs/60036929.mkv +宁桓宇-如果深爱,http://em.21dtv.com/songs/60101322.mkv +许志安-如果如果,http://em.21dtv.com/songs/60036903.mkv +贾青-如果牵手,http://em.21dtv.com/songs/60119990.mkv +卡奇社-日光倾城,http://em.21dtv.com/songs/60036628.mkv +陶钰玉+郑源-如果你在,http://em.21dtv.com/songs/60110656.mkv +郑源+陶钰玉-如果你在,http://em.21dtv.com/songs/60105430.mkv +郑志立-如果你在,http://em.21dtv.com/songs/60094718.mkv +花世纪-如果你在,http://em.21dtv.com/songs/60036888.mkv +杜德伟-如果你我,http://em.21dtv.com/songs/60036877.mkv +陈浩民-如果难忍,http://em.21dtv.com/songs/60093483.mkv +张雨生-如果你冷,http://em.21dtv.com/songs/60036863.mkv +蓝雨-如果你哭,http://em.21dtv.com/songs/60036861.mkv +星弟-如果能够,http://em.21dtv.com/songs/60111936.mkv +叶玉卿-如果你乖,http://em.21dtv.com/songs/60036855.mkv +杨烈-如果能够(无原唱),http://em.21dtv.com/songs/60036842.mkv +佚名-如果你懂,http://em.21dtv.com/songs/60036854.mkv +梁静茹-如果没有,http://em.21dtv.com/songs/60036817.mkv +蒙面哥+王可-如果可以,http://em.21dtv.com/songs/60085657.mkv +郭燕-如果可以,http://em.21dtv.com/songs/60083723.mkv +李健-如果可以,http://em.21dtv.com/songs/60068632.mkv +熊天平-如果可以,http://em.21dtv.com/songs/60036809.mkv +张暄祺-如果可能,http://em.21dtv.com/songs/60068631.mkv +舒名-如果记得,http://em.21dtv.com/songs/60071084.mkv +许茹芸-日光机场,http://em.21dtv.com/songs/60036627.mkv +范玮琪+张韶涵-如果的事,http://em.21dtv.com/songs/60036789.mkv +许嵩-如果当时,http://em.21dtv.com/songs/60036787.mkv +四个朋友-让孤独飞,http://em.21dtv.com/songs/60123792.mkv +刘明辉-如果当初,http://em.21dtv.com/songs/60081094.mkv +林薇琪-如果不是,http://em.21dtv.com/songs/60097254.mkv +杨炅翰-如果不是,http://em.21dtv.com/songs/60085653.mkv +乐天乐团-如果爱死,http://em.21dtv.com/songs/60097255.mkv +罗昊程-如果爱情,http://em.21dtv.com/songs/60077398.mkv +ZIA-如果爱过,http://em.21dtv.com/songs/60086786.mkv +陈僖仪-让风筝飞(演唱会),http://em.21dtv.com/songs/60083696.mkv +孟延-如风一样,http://em.21dtv.com/songs/60067370.mkv +陈凤-人浮于事,http://em.21dtv.com/songs/60036314.mkv +卢冠廷+李宗盛-如风往事(演唱会),http://em.21dtv.com/songs/60077395.mkv +李宗盛+卢冠廷-如风往事,http://em.21dtv.com/songs/60036738.mkv +佚名-如风的心,http://em.21dtv.com/songs/60036737.mkv +刘冰-如风的你,http://em.21dtv.com/songs/60062663.mkv +吴雨霏-人非草木,http://em.21dtv.com/songs/60071080.mkv +WONDER GIRLS-r e a l,http://em.21dtv.com/songs/60069128.mkv +金铁霖-人到中年,http://em.21dtv.com/songs/60102832.mkv +杨宗宪+谢金燕-阮的最爱,http://em.21dtv.com/songs/60037072.mkv +邱芸子-阮的愿望(无原唱),http://em.21dtv.com/songs/60095940.mkv +王娟-人的一生,http://em.21dtv.com/songs/60124249.mkv +S.H.E-热带雨林,http://em.21dtv.com/songs/60036237.mkv +陈奕迅-热带雨林(演唱会),http://em.21dtv.com/songs/60036236.mkv +翁立友-阮的心声,http://em.21dtv.com/songs/60037070.mkv +王识贤-阮的相思,http://em.21dtv.com/songs/60037066.mkv +昊麟-人定胜天,http://em.21dtv.com/songs/60118624.mkv +谭炳文+李香琴-热带情歌,http://em.21dtv.com/songs/60093218.mkv +尹光+朱咪咪-热带情歌(演唱会),http://em.21dtv.com/songs/60036233.mkv +王玲-阮的青春(无原唱),http://em.21dtv.com/songs/60037063.mkv +罗敏庄+SUZAN G-river deep mountain high(演唱会),http://em.21dtv.com/songs/60073807.mkv +佚名-阮的命底,http://em.21dtv.com/songs/60037062.mkv +群星-若当来世,http://em.21dtv.com/songs/60129498.mkv +群星-若当来世,http://em.21dtv.com/songs/60128313.mkv +张蓉蓉-阮的恋梦,http://em.21dtv.com/songs/60037060.mkv +潘越云-阮的环境,http://em.21dtv.com/songs/60037059.mkv +江蕙-阮的感谢,http://em.21dtv.com/songs/60037057.mkv +刘瀚升-让蛋蛋飞,http://em.21dtv.com/songs/60072331.mkv +詹曼铃+沈建豪-阮的宝贝,http://em.21dtv.com/songs/60086795.mkv +佚名-rainy days and mondays,http://em.21dtv.com/songs/60004605.mkv +Dirty Old Men-弱虫な炎,http://em.21dtv.com/songs/60104664.mkv +黄征+张歆艺-如此珍惜,http://em.21dtv.com/songs/60077394.mkv +黄品源-如此源味,http://em.21dtv.com/songs/60036731.mkv +沙宝亮-如此娱乐,http://em.21dtv.com/songs/60036730.mkv +巩汉林+杨蕾-如此游客,http://em.21dtv.com/songs/60089831.mkv +莫文蔚-日场夜场,http://em.21dtv.com/songs/60036611.mkv +佚名-如此潇洒,http://em.21dtv.com/songs/60036729.mkv +潘玉琳-如此想念,http://em.21dtv.com/songs/60097253.mkv +周迅-日出日末,http://em.21dtv.com/songs/60089752.mkv +容祖儿-日出日落,http://em.21dtv.com/songs/60092525.mkv +蔡小虎+林姗-日出日落,http://em.21dtv.com/songs/60036622.mkv +杨臣刚-人潮人海,http://em.21dtv.com/songs/60036306.mkv +佚名-ru con nam bo,http://em.21dtv.com/songs/60004741.mkv +李伟-如此美丽,http://em.21dtv.com/songs/60098451.mkv +任贤齐-如此可爱,http://em.21dtv.com/songs/60090550.mkv +张峰-如此坚定,http://em.21dtv.com/songs/60036726.mkv +巩汉林+金珠-如此检查,http://em.21dtv.com/songs/60089837.mkv +罗时丰+海伦清桃-日出光彩,http://em.21dtv.com/songs/60077380.mkv +农夫-日出而作(演唱会),http://em.21dtv.com/songs/60036621.mkv +王冰洋-如此的糟,http://em.21dtv.com/songs/60036725.mkv +胡雯-如此的遭,http://em.21dtv.com/songs/60036724.mkv +白致瑶-日出东方,http://em.21dtv.com/songs/60117081.mkv +刘亭婷+邓雯心+容祖儿-日出东方,http://em.21dtv.com/songs/60069763.mkv +李珊-日出东方,http://em.21dtv.com/songs/60069762.mkv +佚名-日出东方,http://em.21dtv.com/songs/60036619.mkv +任贤齐-日出东方,http://em.21dtv.com/songs/60036618.mkv +群星-日出东方,http://em.21dtv.com/songs/60036617.mkv +龙千玉-日出常在,http://em.21dtv.com/songs/60136052.mkv +巩汉林+赵丽嫆-如此包装,http://em.21dtv.com/songs/60089832.mkv +周海媚-日出爱情,http://em.21dtv.com/songs/60036616.mkv +庄明珠-阮不知啦,http://em.21dtv.com/songs/60096137.mkv +陈盈洁-阮不知啦,http://em.21dtv.com/songs/60037054.mkv +佚名-阮不愿留,http://em.21dtv.com/songs/60095449.mkv +白冰冰-阮不愿留(无原唱),http://em.21dtv.com/songs/60037053.mkv +叶俊岑-若不勇敢,http://em.21dtv.com/songs/60100781.mkv +许冠杰-日本娃娃,http://em.21dtv.com/songs/60036608.mkv +巧千金-日本娃娃,http://em.21dtv.com/songs/60036607.mkv +江蕙-若不是你,http://em.21dtv.com/songs/60037097.mkv +纪晓斌-人不说累,http://em.21dtv.com/songs/60117118.mkv +佚名-right by my side,http://em.21dtv.com/songs/60004676.mkv +刘力扬-rain布莱梅(演唱会),http://em.21dtv.com/songs/60071653.mkv +刘力扬-rain布莱梅,http://em.21dtv.com/songs/60004606.mkv +蓝心湄-肉饼饭团,http://em.21dtv.com/songs/60036718.mkv +林志炫+詹兆源-让爱做主,http://em.21dtv.com/songs/60036051.mkv +韩红+高明骏-让爱做主,http://em.21dtv.com/songs/60036050.mkv +毛宁-让爱作主(无原唱),http://em.21dtv.com/songs/60036049.mkv +阿超-让爱自由,http://em.21dtv.com/songs/60071076.mkv +佚名-让爱自由,http://em.21dtv.com/songs/60036046.mkv +隆隆-让爱自由,http://em.21dtv.com/songs/60036045.mkv +陈明-让爱自由,http://em.21dtv.com/songs/60036044.mkv +黄莺莺-让爱自由(无原唱),http://em.21dtv.com/songs/60036043.mkv +群星-让爱住我,http://em.21dtv.com/songs/60088468.mkv +群星-热爱至上,http://em.21dtv.com/songs/60130660.mkv +F.I.R-让爱重生,http://em.21dtv.com/songs/60036040.mkv +谭咏麟-仍爱着你(演唱会),http://em.21dtv.com/songs/60036571.mkv +谢珊-让爱重来,http://em.21dtv.com/songs/60118055.mkv +佟佳霖霖-让爱再来,http://em.21dtv.com/songs/60101257.mkv +黄小琥-让爱走开,http://em.21dtv.com/songs/60036048.mkv +江华-热爱终极,http://em.21dtv.com/songs/60092952.mkv +TIMEZ-让爱绽放,http://em.21dtv.com/songs/60072330.mkv +陈慧娴-让爱绽放,http://em.21dtv.com/songs/60067361.mkv +陈戈-让爱走动,http://em.21dtv.com/songs/60036047.mkv +林玉英-让爱远走,http://em.21dtv.com/songs/60036039.mkv +容祖儿-日安忧郁,http://em.21dtv.com/songs/60036606.mkv +曹雷+晓依-让爱延续,http://em.21dtv.com/songs/60119627.mkv +天爱-让爱停留,http://em.21dtv.com/songs/60121544.mkv +佚名-rock around the clock,http://em.21dtv.com/songs/60004702.mkv +张寒+张媛媛-让爱升起,http://em.21dtv.com/songs/60085635.mkv +张寒+张媛媛-让爱升起(舞曲版),http://em.21dtv.com/songs/60085634.mkv +黄绮珊-让爱随风,http://em.21dtv.com/songs/60103731.mkv +毛宁-让爱随风,http://em.21dtv.com/songs/60091547.mkv +李不美-让爱随风,http://em.21dtv.com/songs/60087974.mkv +袁玉峰-让爱深藏,http://em.21dtv.com/songs/60114043.mkv +佚名-rock and roll days,http://em.21dtv.com/songs/60004699.mkv +东来东往-让爱情飞,http://em.21dtv.com/songs/60067360.mkv +刘嘉亮-让爱去飞,http://em.21dtv.com/songs/60064782.mkv +刘一祯-让爱起飞,http://em.21dtv.com/songs/60036035.mkv +黄思婷-让爱起飞,http://em.21dtv.com/songs/60036034.mkv +群星-热爱青春,http://em.21dtv.com/songs/60036231.mkv +凤凰传奇-让爱领舞,http://em.21dtv.com/songs/60036030.mkv +沙宝亮-热爱灵魂,http://em.21dtv.com/songs/60091606.mkv +罗中旭-让爱靠近,http://em.21dtv.com/songs/60036029.mkv +爱新觉罗阿南-让爱继续,http://em.21dtv.com/songs/60125892.mkv +赵薇-让爱继续,http://em.21dtv.com/songs/60036027.mkv +谭咏麟-让爱继续,http://em.21dtv.com/songs/60036026.mkv +张清芳-让爱决定,http://em.21dtv.com/songs/60036028.mkv +昭宥+伯贤-Rain,http://em.21dtv.com/songs/60132497.mkv +泰妍-Rain,http://em.21dtv.com/songs/60119765.mkv +萧宝钟-让爱回头,http://em.21dtv.com/songs/60036024.mkv +李志敏-让爱回来,http://em.21dtv.com/songs/60066265.mkv +齐豫-让爱回来,http://em.21dtv.com/songs/60036023.mkv +金海马 天马四季团队-让爱回家,http://em.21dtv.com/songs/60133009.mkv +金海马+天马四季团队-让爱回家,http://em.21dtv.com/songs/60131909.mkv +韩光-让爱回家,http://em.21dtv.com/songs/60094346.mkv +泽旺多吉-让爱回家,http://em.21dtv.com/songs/60083695.mkv +群星-让爱给我,http://em.21dtv.com/songs/60100386.mkv +方宁-让爱飞翔,http://em.21dtv.com/songs/60130369.mkv +天骏-让爱飞翔,http://em.21dtv.com/songs/60121553.mkv +柳絮-让爱飞翔,http://em.21dtv.com/songs/60099352.mkv +格登扎西-让爱放手,http://em.21dtv.com/songs/60071074.mkv +范晓萱-让爱发光,http://em.21dtv.com/songs/60036021.mkv +范晓萱-让爱发光(演唱会),http://em.21dtv.com/songs/60036020.mkv +李炜+江映蓉-让爱冬眠,http://em.21dtv.com/songs/60098481.mkv +多亮-让爱冬眠,http://em.21dtv.com/songs/60085632.mkv +周晓欧-让爱从头,http://em.21dtv.com/songs/60064781.mkv +侯奇才-让爱从来,http://em.21dtv.com/songs/60064780.mkv +杨一郎-让爱出发,http://em.21dtv.com/songs/60120650.mkv +PROFESSOR GREEN-read all about it,http://em.21dtv.com/songs/60063713.mkv +范晓萱+苏永康-清者自清,http://em.21dtv.com/songs/60034909.mkv +罗力威-全职宅男,http://em.21dtv.com/songs/60119878.mkv +罗力威-全职宅男,http://em.21dtv.com/songs/60067359.mkv +久久-青藏之恋,http://em.21dtv.com/songs/60077194.mkv +藏羌组合-羌寨之恋(演唱会),http://em.21dtv.com/songs/60034368.mkv +周燕君-情醉中华,http://em.21dtv.com/songs/60067351.mkv +陈思思+黄伟麟-七子之歌(演唱会),http://em.21dtv.com/songs/60064700.mkv +刘万春-求职之歌,http://em.21dtv.com/songs/60062676.mkv +佚名-七子之歌,http://em.21dtv.com/songs/60033813.mkv +合唱-七子之歌(演唱会),http://em.21dtv.com/songs/60033812.mkv +乐天-秋在云上,http://em.21dtv.com/songs/60099724.mkv +蓝奕邦-奇珍异兽,http://em.21dtv.com/songs/60066225.mkv +张卫健-轻舟一去,http://em.21dtv.com/songs/60091057.mkv +余天-情长意浓(无原唱),http://em.21dtv.com/songs/60014272.mkv +金岩-情醉彝家,http://em.21dtv.com/songs/60085622.mkv +王莹-情醉湘绣,http://em.21dtv.com/songs/60077263.mkv +段红-情醉西厢,http://em.21dtv.com/songs/60066252.mkv +白冰冰-情字心头,http://em.21dtv.com/songs/60095817.mkv +胡梅-情醉西湖,http://em.21dtv.com/songs/60062472.mkv +风语-情走天涯,http://em.21dtv.com/songs/60135991.mkv +王勇-情走天涯,http://em.21dtv.com/songs/60135532.mkv +霓裳-情醉天涯,http://em.21dtv.com/songs/60064756.mkv +雅芬-情醉陶都,http://em.21dtv.com/songs/60081421.mkv +巫启贤-情醉是我,http://em.21dtv.com/songs/60035481.mkv +王昆-庆祝胜利,http://em.21dtv.com/songs/60116145.mkv +王昆-庆祝胜利,http://em.21dtv.com/songs/60091701.mkv +覃浩-曲终人散,http://em.21dtv.com/songs/60117213.mkv +梁海洋-曲终人散,http://em.21dtv.com/songs/60112809.mkv +梁海洋-曲终人散,http://em.21dtv.com/songs/60112042.mkv +张宇-曲终人散,http://em.21dtv.com/songs/60035823.mkv +张宇-曲终人散(演唱会),http://em.21dtv.com/songs/60035822.mkv +李杰圣-情证如山,http://em.21dtv.com/songs/60035467.mkv +王建杰-千张批纸,http://em.21dtv.com/songs/60034183.mkv +郑锦昌-庆祝年年,http://em.21dtv.com/songs/60093337.mkv +冷漠+陈瑞-情债难还,http://em.21dtv.com/songs/60103098.mkv +泽旺多吉-青藏女孩,http://em.21dtv.com/songs/60034651.mkv +童唱-庆祝六一,http://em.21dtv.com/songs/60035629.mkv +绍兵+桑吉梅朵-羌寨恋曲,http://em.21dtv.com/songs/60034367.mkv +蒋雪儿-情醉莲花,http://em.21dtv.com/songs/60035480.mkv +佚名-秋之恋歌,http://em.21dtv.com/songs/60035765.mkv +杨洪基-秋之恋歌,http://em.21dtv.com/songs/60035764.mkv +SPEXIAL-庆祝寂寞,http://em.21dtv.com/songs/60072325.mkv +葛佳慧-前坐后座,http://em.21dtv.com/songs/60088576.mkv +蔡淳佳-前座后座,http://em.21dtv.com/songs/60034308.mkv +张也-情在花溪,http://em.21dtv.com/songs/60091038.mkv +唐妍-欠债还钱,http://em.21dtv.com/songs/60118240.mkv +唐妍-欠债还钱,http://em.21dtv.com/songs/60116673.mkv +冉肖玲-秦准河畔,http://em.21dtv.com/songs/60090671.mkv +詹雅雯-妻在何处,http://em.21dtv.com/songs/60080417.mkv +维塔斯+汤灿-青藏高原(演唱会),http://em.21dtv.com/songs/60063060.mkv +卓玛加-青藏高原,http://em.21dtv.com/songs/60034649.mkv +亚东-青藏高原,http://em.21dtv.com/songs/60034648.mkv +李娜-青藏高原,http://em.21dtv.com/songs/60034647.mkv +春雷-青藏高原,http://em.21dtv.com/songs/60034646.mkv +VITAS-青藏高原,http://em.21dtv.com/songs/60034645.mkv +宗庸卓玛-青藏高原(演唱会),http://em.21dtv.com/songs/60034644.mkv +汤灿+维塔斯-青藏高原(演唱会),http://em.21dtv.com/songs/60034643.mkv +谭维维-青藏高原(演唱会),http://em.21dtv.com/songs/60034642.mkv +谭晶-青藏高原(演唱会),http://em.21dtv.com/songs/60034641.mkv +韩红-青藏高原(演唱会),http://em.21dtv.com/songs/60034640.mkv +刺桐花开-泉州姑娘,http://em.21dtv.com/songs/60066260.mkv +欧汉声-庆祝孤单,http://em.21dtv.com/songs/60131582.mkv +欧汉声-庆祝孤单,http://em.21dtv.com/songs/60097245.mkv +陈瑀涵-庆祝分手,http://em.21dtv.com/songs/60035627.mkv +李楠-情醉草原,http://em.21dtv.com/songs/60130425.mkv +欧阳晓清-情醉茶香,http://em.21dtv.com/songs/60094564.mkv +佚名-乔治参军,http://em.21dtv.com/songs/60034428.mkv +温拿乐队-千载不变(演唱会),http://em.21dtv.com/songs/60034182.mkv +何循禧-乔装暗访,http://em.21dtv.com/songs/60109963.mkv +凤凰传奇-青云直上,http://em.21dtv.com/songs/60134921.mkv +林汉扬-秋夜之歌,http://em.21dtv.com/songs/60091482.mkv +周燕君-情怡之歌,http://em.21dtv.com/songs/60087590.mkv +游鸿明-七月一号,http://em.21dtv.com/songs/60033809.mkv +萧敬腾-千言万语,http://em.21dtv.com/songs/60126123.mkv +朗嘎拉姆-千言万语,http://em.21dtv.com/songs/60113583.mkv +朗嘎拉姆-千言万语,http://em.21dtv.com/songs/60112734.mkv +崔西+刘双双-千言万语,http://em.21dtv.com/songs/60104092.mkv +常石磊+萨顶顶-千言万语,http://em.21dtv.com/songs/60098312.mkv +肖懿航+萧敬腾-千言万语,http://em.21dtv.com/songs/60094642.mkv +吴申梅-千言万语,http://em.21dtv.com/songs/60083612.mkv +韩磊-千言万语,http://em.21dtv.com/songs/60079901.mkv +胡琳-千言万语,http://em.21dtv.com/songs/60077139.mkv +潘秀琼-千言万言(演唱会),http://em.21dtv.com/songs/60077138.mkv +李代沫-千言万语,http://em.21dtv.com/songs/60072296.mkv +卓依婷-千言万语,http://em.21dtv.com/songs/60034177.mkv +彭佳慧-千言万语,http://em.21dtv.com/songs/60034176.mkv +高胜美-千言万语,http://em.21dtv.com/songs/60034175.mkv +费玉清-千言万语,http://em.21dtv.com/songs/60034174.mkv +杨曼莉-千言万语(演唱会),http://em.21dtv.com/songs/60034173.mkv +王菲-千言万语(演唱会),http://em.21dtv.com/songs/60034172.mkv +刘德华-千言万语(演唱会),http://em.21dtv.com/songs/60034171.mkv +康康-千言万语(演唱会),http://em.21dtv.com/songs/60034170.mkv +邓丽君-千言万语(演唱会),http://em.21dtv.com/songs/60034169.mkv +齐晨-情愿为你,http://em.21dtv.com/songs/60120171.mkv +车颐-全因为你,http://em.21dtv.com/songs/60093230.mkv +李克勤+李乐诗-情意万缕,http://em.21dtv.com/songs/60035418.mkv +阿猛-情谊无价,http://em.21dtv.com/songs/60105458.mkv +佚名-情义无价,http://em.21dtv.com/songs/60035413.mkv +林灵-情义无价,http://em.21dtv.com/songs/60035412.mkv +仓宇+永昌-情义无价,http://em.21dtv.com/songs/60035411.mkv +何乾梁+叶枫华-秋粤无边,http://em.21dtv.com/songs/60127731.mkv +于子程-全因为爱,http://em.21dtv.com/songs/60132174.mkv +洛天依-权御天下,http://em.21dtv.com/songs/60121869.mkv +徐千雅-齐云山上,http://em.21dtv.com/songs/60069704.mkv +小肥-七月十四,http://em.21dtv.com/songs/60033807.mkv +欢歌-秋吟素笺,http://em.21dtv.com/songs/60107006.mkv +王莹+钱万千-情溢山歌,http://em.21dtv.com/songs/60120778.mkv +KELLIE-情也如剑,http://em.21dtv.com/songs/60062078.mkv +陈瑞-秋叶如花,http://em.21dtv.com/songs/60085628.mkv +王洪迪-青雨青岩,http://em.21dtv.com/songs/60106112.mkv +陈泯西-青雨青岩,http://em.21dtv.com/songs/60068592.mkv +李宇春-千域千寻,http://em.21dtv.com/songs/60083613.mkv +佚名-秋夜琴声,http://em.21dtv.com/songs/60035749.mkv +尕让卓玛-祈愿千年,http://em.21dtv.com/songs/60077125.mkv +秀兰玛雅-情雨绵绵,http://em.21dtv.com/songs/60035429.mkv +刘德华-情意绵绵,http://em.21dtv.com/songs/60035417.mkv +南拳妈妈-枪与玫瑰,http://em.21dtv.com/songs/60034371.mkv +吴佩慈-请原谅我,http://em.21dtv.com/songs/60035613.mkv +刀刀刀-轻夜留声,http://em.21dtv.com/songs/60077220.mkv +王梦麟-七月凉山,http://em.21dtv.com/songs/60033800.mkv +欢子-情愿离开,http://em.21dtv.com/songs/60035450.mkv +王唯侨-秋雨落花,http://em.21dtv.com/songs/60099399.mkv +刘建军-七一恋歌,http://em.21dtv.com/songs/60085574.mkv +王利-情缘泸定,http://em.21dtv.com/songs/60083674.mkv +谢佳-青衣恋城,http://em.21dtv.com/songs/60131814.mkv +爱朵女孩-奇异旅程,http://em.21dtv.com/songs/60077122.mkv +苏夏-青衣恋城,http://em.21dtv.com/songs/60072306.mkv +佚名-情有可原,http://em.21dtv.com/songs/60035424.mkv +云飞儿-前缘今生,http://em.21dtv.com/songs/60133345.mkv +风采轮-情义江湖,http://em.21dtv.com/songs/60110682.mkv +张祥洪-强颜欢笑,http://em.21dtv.com/songs/60083621.mkv +文章-强颜欢笑,http://em.21dtv.com/songs/60034380.mkv +黄品源-欠一个吻,http://em.21dtv.com/songs/60034354.mkv +佚名-情愿孤独(无原唱),http://em.21dtv.com/songs/60035449.mkv +李思琳-奇异恩典,http://em.21dtv.com/songs/60097316.mkv +周员平-情有独钟,http://em.21dtv.com/songs/60116649.mkv +阿影-情有独钟,http://em.21dtv.com/songs/60114175.mkv +张宇-情有独钟,http://em.21dtv.com/songs/60035422.mkv +李木帅-七月的雨,http://em.21dtv.com/songs/60033799.mkv +冯诚诚-秋月冬雪,http://em.21dtv.com/songs/60126623.mkv +郑锦昌-情有多少,http://em.21dtv.com/songs/60035423.mkv +乐红-轻吟独唱(无原唱),http://em.21dtv.com/songs/60034826.mkv +陈熙然-沁园春雪,http://em.21dtv.com/songs/60088901.mkv +张萌萌-七月初七,http://em.21dtv.com/songs/60067314.mkv +林子祥-七月初七,http://em.21dtv.com/songs/60033796.mkv +黑龙-七月初七,http://em.21dtv.com/songs/60033795.mkv +佚名-请拥抱我(无原唱),http://em.21dtv.com/songs/60035611.mkv +余桦-情缘不了,http://em.21dtv.com/songs/60087332.mkv +李一可-缺一不可,http://em.21dtv.com/songs/60035973.mkv +于冠华-情愿爱你,http://em.21dtv.com/songs/60035447.mkv +石雪峰-七夕之恋,http://em.21dtv.com/songs/60128262.mkv +戚剑强-倾心之恋,http://em.21dtv.com/songs/60072308.mkv +SHINE-取消资格,http://em.21dtv.com/songs/60097311.mkv +彭羚-取消资格,http://em.21dtv.com/songs/60035829.mkv +陈小春-取消资格,http://em.21dtv.com/songs/60035828.mkv +陈小春-取消资格(演唱会),http://em.21dtv.com/songs/60035827.mkv +赖淞凤-裙下之臣,http://em.21dtv.com/songs/60134254.mkv +陈奕迅-裙下之臣,http://em.21dtv.com/songs/60035985.mkv +陈奕迅-裙下之臣(HD演唱会),http://em.21dtv.com/songs/60035984.mkv +樱桃帮-清新早晨,http://em.21dtv.com/songs/60034905.mkv +温拿乐队-庆幸一起,http://em.21dtv.com/songs/60124215.mkv +林晓培-抢先一步,http://em.21dtv.com/songs/60034403.mkv +李彩桦+罗嘉良-倾心相随,http://em.21dtv.com/songs/60034857.mkv +黄灿-千禧新娘,http://em.21dtv.com/songs/60089049.mkv +刀郎-千禧新娘(演唱会),http://em.21dtv.com/songs/60064709.mkv +Stellar-请学习吧,http://em.21dtv.com/songs/60118278.mkv +彭羚-情像外衣,http://em.21dtv.com/songs/60035396.mkv +彭羚-情像外衣(演唱会),http://em.21dtv.com/songs/60035395.mkv +晓安-全心为你,http://em.21dtv.com/songs/60112720.mkv +谢和弦-牵心万苦,http://em.21dtv.com/songs/60061499.mkv +葛仲珊-球鞋蜈蚣,http://em.21dtv.com/songs/60134182.mkv +尊华-全线退守,http://em.21dtv.com/songs/60113420.mkv +任然-情绪挑拨,http://em.21dtv.com/songs/60125106.mkv +群星合唱-千禧盛世,http://em.21dtv.com/songs/60093053.mkv +群星-千禧盛世,http://em.21dtv.com/songs/60093038.mkv +容祖儿-全新暑假,http://em.21dtv.com/songs/60092518.mkv +汤灿-情系人民,http://em.21dtv.com/songs/60035390.mkv +徐佳莹-湫兮如风,http://em.21dtv.com/songs/60123973.mkv +彭美琪-浅笑如蝶,http://em.21dtv.com/songs/60135271.mkv +阎维文+王慕熙-全心全意,http://em.21dtv.com/songs/60130820.mkv +王慕熙-全心全意,http://em.21dtv.com/songs/60119811.mkv +斯琴高丽-七夕情缘(原版),http://em.21dtv.com/songs/60093870.mkv +苏泉-泉心泉意,http://em.21dtv.com/songs/60068610.mkv +汪明荃-荃心荃意(演唱会),http://em.21dtv.com/songs/60035940.mkv +姚敏男-全心全意(无原唱),http://em.21dtv.com/songs/60035927.mkv +巧千金-清新美丽,http://em.21dtv.com/songs/60097428.mkv +云南民歌-敲响木鼓,http://em.21dtv.com/songs/60089593.mkv +泳儿-倾斜乐园,http://em.21dtv.com/songs/60034850.mkv +泳儿-倾斜乐园(演唱会),http://em.21dtv.com/songs/60034849.mkv +朱雅+林华勇-全新恋爱,http://em.21dtv.com/songs/60071072.mkv +印能法师-情系空门,http://em.21dtv.com/songs/60099839.mkv +周明辉-情系江河,http://em.21dtv.com/songs/60072319.mkv +李翊君-情陷红尘,http://em.21dtv.com/songs/60035394.mkv +陈凤-情陷高处,http://em.21dtv.com/songs/60035393.mkv +蔡琴-全新飞翔,http://em.21dtv.com/songs/60080899.mkv +林忆莲-倾斜都市(演唱会),http://em.21dtv.com/songs/60034848.mkv +佚名-劝修道歌(无原唱),http://em.21dtv.com/songs/60035956.mkv +晟瑶-前行的爱,http://em.21dtv.com/songs/60068579.mkv +林志颖-全新的爱(演唱会),http://em.21dtv.com/songs/60035932.mkv +林志颖-全新的爱(无原唱),http://em.21dtv.com/songs/60035931.mkv +安叶-七夕传说,http://em.21dtv.com/songs/60111816.mkv +张学友-情系半生,http://em.21dtv.com/songs/60035388.mkv +梁咏琪-气象报告,http://em.21dtv.com/songs/60034027.mkv +王菲-情心不变,http://em.21dtv.com/songs/60091743.mkv +张莹-千喜宝贝,http://em.21dtv.com/songs/60091149.mkv +黎明诗-全心爱我,http://em.21dtv.com/songs/60035925.mkv +罗志祥-全心爱你,http://em.21dtv.com/songs/60088435.mkv +罗密欧-全心爱你(无原唱),http://em.21dtv.com/songs/60035924.mkv +古典时尚组合-qq我在线,http://em.21dtv.com/songs/60004570.mkv +佚名-千王之王,http://em.21dtv.com/songs/60034168.mkv +汪明荃-千王之王,http://em.21dtv.com/songs/60034167.mkv +李昱和-清湾之恋,http://em.21dtv.com/songs/60099305.mkv +杨燕-蔷薇之恋(演唱会),http://em.21dtv.com/songs/60077163.mkv +舒雅颂-蔷薇之恋(演唱会),http://em.21dtv.com/songs/60077162.mkv +佚名-蔷薇之恋,http://em.21dtv.com/songs/60034398.mkv +林忆莲-蔷薇之恋,http://em.21dtv.com/songs/60034397.mkv +朱咪咪-蔷薇之恋(演唱会),http://em.21dtv.com/songs/60034396.mkv +尹芳玲-蔷微之恋,http://em.21dtv.com/songs/60034386.mkv +侯丽娟-亲吻祖国,http://em.21dtv.com/songs/60120320.mkv +童唱-青蛙之歌,http://em.21dtv.com/songs/60034792.mkv +王丽达-亲吻祖国,http://em.21dtv.com/songs/60034614.mkv +古巨基-穷我一生,http://em.21dtv.com/songs/60061524.mkv +何泽胜-趣味新年,http://em.21dtv.com/songs/60077302.mkv +雨禾-亲吻西藏,http://em.21dtv.com/songs/60066236.mkv +王祖蓝-青蛙王子,http://em.21dtv.com/songs/60110408.mkv +宋熙铭-青蛙王子,http://em.21dtv.com/songs/60062923.mkv +何韵诗-青蛙王子(演唱会),http://em.21dtv.com/songs/60034791.mkv +蔡妍-请我跳舞,http://em.21dtv.com/songs/60035608.mkv +陈瑞-情无所依,http://em.21dtv.com/songs/60135934.mkv +佚名-蔷薇诉愿,http://em.21dtv.com/songs/60034394.mkv +陈伟霆-千万少年,http://em.21dtv.com/songs/60034164.mkv +刘冰-情为谁留,http://em.21dtv.com/songs/60077259.mkv +谭咏麟-趣味人生,http://em.21dtv.com/songs/60081806.mkv +王建杰-趣味趣味(无原唱),http://em.21dtv.com/songs/60035860.mkv +黄耀明-蔷薇泡沫(无原唱),http://em.21dtv.com/songs/60034393.mkv +江志丰-情网难逃,http://em.21dtv.com/songs/60119749.mkv +乐瞳+陆永-乾物女皇,http://em.21dtv.com/songs/60092238.mkv +王菲+软硬天师-请勿客气,http://em.21dtv.com/songs/60035609.mkv +李亚明-倾我今生,http://em.21dtv.com/songs/60034846.mkv +喜波-情为何物,http://em.21dtv.com/songs/60131290.mkv +安东阳+黑鸭子-情为何物,http://em.21dtv.com/songs/60104049.mkv +费翔-情为何物,http://em.21dtv.com/songs/60035373.mkv +陈浩德+方伊琪-情为何物(演唱会),http://em.21dtv.com/songs/60035372.mkv +郑秀文-青蛙公主,http://em.21dtv.com/songs/60034790.mkv +成成-千万光棍,http://em.21dtv.com/songs/60113529.mkv +水木年华-轻舞飞扬,http://em.21dtv.com/songs/60034822.mkv +汪峰-去无方向,http://em.21dtv.com/songs/60102445.mkv +施文彬-请问芳名,http://em.21dtv.com/songs/60035607.mkv +郑秀文-情无独钟,http://em.21dtv.com/songs/60035386.mkv +冯允谦-请勿打扰,http://em.21dtv.com/songs/60103909.mkv +童可可-欠我的梦,http://em.21dtv.com/songs/60118826.mkv +超月组合-亲吻草原,http://em.21dtv.com/songs/60126242.mkv +张力尹-晴天雨天,http://em.21dtv.com/songs/60035495.mkv +金磊鑫-倾听月光,http://em.21dtv.com/songs/60081015.mkv +余文乐-晴天行雷,http://em.21dtv.com/songs/60035492.mkv +黑涩会美眉-晴天娃娃,http://em.21dtv.com/songs/60035493.mkv +佚名-请听我说(无原唱),http://em.21dtv.com/songs/60035605.mkv +刘强-情同手足,http://em.21dtv.com/songs/60071067.mkv +郑源-情同手足,http://em.21dtv.com/songs/60035363.mkv +郑源+刘栋升-情同手足,http://em.21dtv.com/songs/60035362.mkv +郑源+刘冲-情同手足(演唱会),http://em.21dtv.com/songs/60035361.mkv +卓煜-齐天情圣,http://em.21dtv.com/songs/60089701.mkv +胡杰夕-求天求地,http://em.21dtv.com/songs/60035808.mkv +陈笠笠-抢头帕演(演唱会),http://em.21dtv.com/songs/60072299.mkv +赵洪涛-秋天来了,http://em.21dtv.com/songs/60072327.mkv +李创-秋天来了,http://em.21dtv.com/songs/60066257.mkv +任贤齐-秋天来了,http://em.21dtv.com/songs/60035735.mkv +陈升-七天恋爱,http://em.21dtv.com/songs/60081855.mkv +罗文裕-清汤挂面,http://em.21dtv.com/songs/60097427.mkv +陈楚生-且听风吟,http://em.21dtv.com/songs/60034462.mkv +王歌-齐头奋进,http://em.21dtv.com/songs/60080733.mkv +许富凯-秋天的雨,http://em.21dtv.com/songs/60107211.mkv +排骨教主-齐天大圣,http://em.21dtv.com/songs/60133741.mkv +华晨宇-齐天大圣,http://em.21dtv.com/songs/60130136.mkv +宋学毅-蜻蜓点水,http://em.21dtv.com/songs/60034914.mkv +至上励合-齐天大盛,http://em.21dtv.com/songs/60033863.mkv +王皓彬-倾听地球,http://em.21dtv.com/songs/60104312.mkv +王英俊-秋天的梦,http://em.21dtv.com/songs/60107911.mkv +苏慧伦-秋天的海,http://em.21dtv.com/songs/60035724.mkv +郑源+郑东-秋天的风,http://em.21dtv.com/songs/60107274.mkv +张善为-秋天的枫,http://em.21dtv.com/songs/60035723.mkv +谢雷-秋天的风(无原唱),http://em.21dtv.com/songs/60035722.mkv +陈夏莲+李明洋-秋天的爱,http://em.21dtv.com/songs/60104548.mkv +伍思凯-秋天别来,http://em.21dtv.com/songs/60035718.mkv +侯湘婷-秋天别来,http://em.21dtv.com/songs/60035717.mkv +马常宝-青山竹叶,http://em.21dtv.com/songs/60077218.mkv +冯晓菲-秋水长天,http://em.21dtv.com/songs/60099779.mkv +李红-秋色之恋,http://em.21dtv.com/songs/60107796.mkv +杨斯壬-牵手之路,http://em.21dtv.com/songs/60085589.mkv +孙耀威+MR.+邓健泓-汽水樽盖(HD演唱会),http://em.21dtv.com/songs/60034035.mkv +陈盈洁+吴欣达-前世注定,http://em.21dtv.com/songs/60034299.mkv +杨哲+乔幼-牵手作伴,http://em.21dtv.com/songs/60127085.mkv +王建杰+吴仪君-牵手作伴,http://em.21dtv.com/songs/60107074.mkv +罗丹-情深有罪,http://em.21dtv.com/songs/60035326.mkv +邱芸子+陈中-情深意重,http://em.21dtv.com/songs/60035325.mkv +A2A-前世有约,http://em.21dtv.com/songs/60133166.mkv +苗苗-前世有缘,http://em.21dtv.com/songs/60096451.mkv +詹雅雯-牵手一生,http://em.21dtv.com/songs/60034246.mkv +奚秀兰-秋水伊人,http://em.21dtv.com/songs/60101062.mkv +枫舞.访玉-秋水伊人,http://em.21dtv.com/songs/60098526.mkv +千百惠-秋水伊人,http://em.21dtv.com/songs/60083682.mkv +朱妍-秋水伊人,http://em.21dtv.com/songs/60077287.mkv +童丽-秋水伊人,http://em.21dtv.com/songs/60077286.mkv +莫旭秋-秋水伊人(演唱会),http://em.21dtv.com/songs/60064765.mkv +紫薇-秋水伊人,http://em.21dtv.com/songs/60035709.mkv +周璇-秋水伊人,http://em.21dtv.com/songs/60035708.mkv +郑莉-秋水伊人,http://em.21dtv.com/songs/60035707.mkv +佚名-秋水伊人,http://em.21dtv.com/songs/60035706.mkv +谢采妘-秋水伊人,http://em.21dtv.com/songs/60035705.mkv +张伟文-秋水伊人(演唱会),http://em.21dtv.com/songs/60035704.mkv +殷正洋-情深缘浅,http://em.21dtv.com/songs/60088174.mkv +甲子蕙+荒山亮-情深缘浅,http://em.21dtv.com/songs/60072318.mkv +王琥-情深缘浅,http://em.21dtv.com/songs/60035331.mkv +黄凯芹-情深缘浅(演唱会),http://em.21dtv.com/songs/60035330.mkv +田芯儿-情深意浓,http://em.21dtv.com/songs/60103487.mkv +陈淑桦-情深依旧,http://em.21dtv.com/songs/60089530.mkv +肖雪-情深意厚,http://em.21dtv.com/songs/60130667.mkv +肖雪-情深意厚,http://em.21dtv.com/songs/60122032.mkv +曾淑勤-情生意动,http://em.21dtv.com/songs/60035333.mkv +佚名-情深意动,http://em.21dtv.com/songs/60035323.mkv +佚名-情深义断,http://em.21dtv.com/songs/60035316.mkv +梁球-情深义断,http://em.21dtv.com/songs/60035315.mkv +吉克隽逸-情深谊长,http://em.21dtv.com/songs/60132279.mkv +邓玉华+金霖-情深谊长,http://em.21dtv.com/songs/60104472.mkv +蒲紫微-情深意长,http://em.21dtv.com/songs/60068603.mkv +张涛-情深意长(演唱会),http://em.21dtv.com/songs/60067348.mkv +阿鲁阿卓-情深谊长(演唱会),http://em.21dtv.com/songs/60064752.mkv +吴春燕-情深谊长(演唱会),http://em.21dtv.com/songs/60063091.mkv +吉克隽逸-情深意长,http://em.21dtv.com/songs/60062848.mkv +祖海-情深意长,http://em.21dtv.com/songs/60035324.mkv +张也-情深谊长,http://em.21dtv.com/songs/60035322.mkv +谭晶-情深谊长,http://em.21dtv.com/songs/60035321.mkv +吉杰-情深谊长,http://em.21dtv.com/songs/60035320.mkv +邓玉华-情深谊长,http://em.21dtv.com/songs/60035319.mkv +鲍蓉-情深谊长,http://em.21dtv.com/songs/60035318.mkv +孙淑媚-情深缘薄,http://em.21dtv.com/songs/60035329.mkv +刘依纯-情深缘薄,http://em.21dtv.com/songs/60035328.mkv +久登+詹曼铃-情深缘薄,http://em.21dtv.com/songs/60035327.mkv +钟舒漫-亲手拥抱,http://em.21dtv.com/songs/60034613.mkv +姜涛+梁玥珺-前世相约,http://em.21dtv.com/songs/60064714.mkv +詹曼铃-轻声细语(无原唱),http://em.21dtv.com/songs/60034817.mkv +谢军-牵手续缘,http://em.21dtv.com/songs/60034245.mkv +马常宝-却上心头,http://em.21dtv.com/songs/60128598.mkv +孙露-却上心头,http://em.21dtv.com/songs/60115806.mkv +冷漠-却上心头,http://em.21dtv.com/songs/60106625.mkv +许茹芸-却上心头,http://em.21dtv.com/songs/60035977.mkv +黄品源-却上心头,http://em.21dtv.com/songs/60035976.mkv +张秀卿-却上心头(无原唱),http://em.21dtv.com/songs/60035975.mkv +网络歌手-清爽夏日,http://em.21dtv.com/songs/50000226.mkv +笑天-全是想念,http://em.21dtv.com/songs/60088394.mkv +少司命-千山雪寂,http://em.21dtv.com/songs/60101332.mkv +李全伟-牵手相伴,http://em.21dtv.com/songs/60100129.mkv +Snh48-前所未有,http://em.21dtv.com/songs/60107435.mkv +雷鸣-情深无缘,http://em.21dtv.com/songs/60085621.mkv +王雪娥-情深无尤(无原唱),http://em.21dtv.com/songs/60035313.mkv +费玉清-情深往事,http://em.21dtv.com/songs/60035312.mkv +周杰伦-千山万水(演唱会),http://em.21dtv.com/songs/60034155.mkv +张可儿-倾世温柔,http://em.21dtv.com/songs/60122714.mkv +赵雨航-全是为你,http://em.21dtv.com/songs/60035921.mkv +林翠萍-情丝万缕,http://em.21dtv.com/songs/60035356.mkv +陈慧琳-前所未见,http://em.21dtv.com/songs/60034301.mkv +何龙雨-情深无悔,http://em.21dtv.com/songs/60115689.mkv +王识贤-起手无回,http://em.21dtv.com/songs/60077128.mkv +小肥-七十五分,http://em.21dtv.com/songs/60033768.mkv +墨明棋妙-且试天下,http://em.21dtv.com/songs/60096230.mkv +阿杰+河图-且试天下,http://em.21dtv.com/songs/60083623.mkv +范逸臣-情书替换,http://em.21dtv.com/songs/60035352.mkv +李乐诗-情深天地,http://em.21dtv.com/songs/60035311.mkv +醉美-牵手十年,http://em.21dtv.com/songs/60131900.mkv +柴强-牵手十年,http://em.21dtv.com/songs/60129304.mkv +H2K-骑士少年,http://em.21dtv.com/songs/60109820.mkv +萧丽珠-青色山脉,http://em.21dtv.com/songs/60089463.mkv +佚名-青色山脉,http://em.21dtv.com/songs/60034780.mkv +群星-全身暑假,http://em.21dtv.com/songs/60093037.mkv +容祖儿-全身暑假,http://em.21dtv.com/songs/60035900.mkv +容祖儿-全身暑假(演唱会),http://em.21dtv.com/songs/60035899.mkv +林海峰-全身暑假(演唱会),http://em.21dtv.com/songs/60035898.mkv +蓝心湄-轻松时间,http://em.21dtv.com/songs/60034820.mkv +蔡小虎-情深似海,http://em.21dtv.com/songs/60083670.mkv +童丽-情深似海,http://em.21dtv.com/songs/60077256.mkv +卓依婷-情深似海,http://em.21dtv.com/songs/60035305.mkv +于文华-情深似海,http://em.21dtv.com/songs/60035304.mkv +佚名-情深似海,http://em.21dtv.com/songs/60035303.mkv +陈雷+孙淑媚-情深似海,http://em.21dtv.com/songs/60035302.mkv +邓丽欣-青山散步(演唱会),http://em.21dtv.com/songs/60034786.mkv +佚名-情深如海,http://em.21dtv.com/songs/60035294.mkv +佚名-秋收起义,http://em.21dtv.com/songs/60035701.mkv +彭钰雯-前世情缘,http://em.21dtv.com/songs/60034295.mkv +陈绍楠-千世情缘,http://em.21dtv.com/songs/60034156.mkv +陈慧琳-千手千寻,http://em.21dtv.com/songs/60034157.mkv +罗志祥-呛司呛司,http://em.21dtv.com/songs/60034413.mkv +周杰伦-前世情人,http://em.21dtv.com/songs/60123757.mkv +高翊菲-前世情人,http://em.21dtv.com/songs/60123383.mkv +周杰伦-前世情人,http://em.21dtv.com/songs/60122599.mkv +刘家昌-秋诗篇篇,http://em.21dtv.com/songs/60035699.mkv +刘家昌-秋诗篇篇(演唱会),http://em.21dtv.com/songs/60035698.mkv +姜育恒-秋诗篇篇(演唱会),http://em.21dtv.com/songs/60035697.mkv +佚名-情深难舍,http://em.21dtv.com/songs/60095415.mkv +高进一-情色男女(无原唱),http://em.21dtv.com/songs/60038388.mkv +黑龙-情伤难疗,http://em.21dtv.com/songs/60121191.mkv +刘中省-秦时明月,http://em.21dtv.com/songs/60115717.mkv +陈慧琳-七色梦想,http://em.21dtv.com/songs/60079880.mkv +尤雅-钱什路用,http://em.21dtv.com/songs/60093204.mkv +佚名-钱什路用,http://em.21dtv.com/songs/60034321.mkv +李咏佳-青山绿水,http://em.21dtv.com/songs/60117809.mkv +费玉清-青山绿水,http://em.21dtv.com/songs/60034783.mkv +罗文裕-请说客语,http://em.21dtv.com/songs/60117968.mkv +纪晓君-轻松快乐(演唱会),http://em.21dtv.com/songs/60034819.mkv +曹永廉-情深款款,http://em.21dtv.com/songs/60035291.mkv +谢军-牵手继缘,http://em.21dtv.com/songs/60088659.mkv +佚名-情深几许(无原唱),http://em.21dtv.com/songs/60035290.mkv +王喜-起身叫我,http://em.21dtv.com/songs/60034020.mkv +贺一航-前世今生,http://em.21dtv.com/songs/60132905.mkv +贺一航-前世今生,http://em.21dtv.com/songs/60130766.mkv +路逍遥-前世今生,http://em.21dtv.com/songs/60114813.mkv +凤凰传奇-前世今生,http://em.21dtv.com/songs/60106628.mkv +邱英杰-前世今生,http://em.21dtv.com/songs/60103616.mkv +小乔-前世今生,http://em.21dtv.com/songs/60103220.mkv +高胜美-前世今生,http://em.21dtv.com/songs/60100663.mkv +陈思安-前世今生(无原唱),http://em.21dtv.com/songs/60095997.mkv +反串秋叶子-前世今生,http://em.21dtv.com/songs/60093590.mkv +朱雅-前世今生,http://em.21dtv.com/songs/60085592.mkv +佚名-前世今生,http://em.21dtv.com/songs/60034293.mkv +刘尊+邢梅-前世今生,http://em.21dtv.com/songs/60034292.mkv +李玟-前世今生(演唱会),http://em.21dtv.com/songs/60034291.mkv +刘尊+邢梅-前生今世,http://em.21dtv.com/songs/60034287.mkv +蔡依林-骑士精神,http://em.21dtv.com/songs/60033980.mkv +陈宝珠+杨天经-情是何物(演唱会),http://em.21dtv.com/songs/60035338.mkv +何宝生-情是何价,http://em.21dtv.com/songs/60035337.mkv +胡松华-琴声回荡,http://em.21dtv.com/songs/60034628.mkv +佚名-前世蝴蝶(无原唱),http://em.21dtv.com/songs/60034290.mkv +对唱-牵手观音,http://em.21dtv.com/songs/60099203.mkv +周亮-千手观音,http://em.21dtv.com/songs/60085586.mkv +陈星-牵手观姻,http://em.21dtv.com/songs/60034239.mkv +陈沛轩-全身而退,http://em.21dtv.com/songs/60085631.mkv +吴涤清-七十二变,http://em.21dtv.com/songs/60068567.mkv +傅又宣-情时多雨,http://em.21dtv.com/songs/60105598.mkv +蔡济文-情深的心,http://em.21dtv.com/songs/60035285.mkv +樊凡-轻声的说,http://em.21dtv.com/songs/60080493.mkv +何韵诗-青山黛玛(演唱会),http://em.21dtv.com/songs/60034782.mkv +何家劲-情深大地,http://em.21dtv.com/songs/60092254.mkv +张也-泉水叮咚,http://em.21dtv.com/songs/60035943.mkv +佚名-泉水叮咚,http://em.21dtv.com/songs/60035942.mkv +佚名-青涩的爱,http://em.21dtv.com/songs/60034781.mkv +白致瑶+王传越-牵手草原,http://em.21dtv.com/songs/60117095.mkv +朱永飞-牵手草原,http://em.21dtv.com/songs/60116888.mkv +朱永飞-牵手草原,http://em.21dtv.com/songs/60094139.mkv +孙俪心-牵手草原,http://em.21dtv.com/songs/60094051.mkv +郭娅丽-牵手草原,http://em.21dtv.com/songs/60068577.mkv +佚名-牵手草原(欣赏),http://em.21dtv.com/songs/60064711.mkv +龙梅-牵手草原,http://em.21dtv.com/songs/60034233.mkv +阿桑古卡-牵手草原,http://em.21dtv.com/songs/60034232.mkv +王芷蕾-秋水长天,http://em.21dtv.com/songs/60035710.mkv +幽舞越山-禽兽超人,http://em.21dtv.com/songs/60125472.mkv +王蓉-请说出来,http://em.21dtv.com/songs/60035604.mkv +江珊-情似朝露,http://em.21dtv.com/songs/60035336.mkv +蔡依林-七上八下,http://em.21dtv.com/songs/60033767.mkv +曾巍-牵手百年,http://em.21dtv.com/songs/60077144.mkv +牙牙乐+格子兮-秋殇别恋,http://em.21dtv.com/songs/60083686.mkv +陈浩德+方伊琪-情深不变,http://em.21dtv.com/songs/60035284.mkv +刘斯远-请说爱我,http://em.21dtv.com/songs/60119299.mkv +严宽-其实爱情,http://em.21dtv.com/songs/60033868.mkv +胡鸿钧-情人自扰,http://em.21dtv.com/songs/60134147.mkv +李怡霖-悄然走开,http://em.21dtv.com/songs/60083622.mkv +李茂山-情人再见,http://em.21dtv.com/songs/60132568.mkv +彭家丽-情人知己,http://em.21dtv.com/songs/60125554.mkv +彭家丽-情人知己,http://em.21dtv.com/songs/60123970.mkv +陈慧琳-情热之间,http://em.21dtv.com/songs/60093456.mkv +张宇-情人知己,http://em.21dtv.com/songs/60035267.mkv +叶倩文-情人知己,http://em.21dtv.com/songs/60035266.mkv +林凡-情人知己,http://em.21dtv.com/songs/60035265.mkv +梁文音-情人知己,http://em.21dtv.com/songs/60035264.mkv +叶倩文-情人知己(演唱会),http://em.21dtv.com/songs/60035263.mkv +余天-情人再见,http://em.21dtv.com/songs/60035260.mkv +谢雷-情人再见,http://em.21dtv.com/songs/60035259.mkv +龙飘飘-情人再见,http://em.21dtv.com/songs/60035258.mkv +李茂山-情人再见,http://em.21dtv.com/songs/60035257.mkv +邓丽君-情人再见,http://em.21dtv.com/songs/60035256.mkv +冷漠-情人正传,http://em.21dtv.com/songs/60064749.mkv +邓丽君-情人一笑,http://em.21dtv.com/songs/60035255.mkv +朱含芳-情人眼里,http://em.21dtv.com/songs/60089330.mkv +袁凤瑛-情人眼里,http://em.21dtv.com/songs/60035251.mkv +邰正宵-情人一场,http://em.21dtv.com/songs/60035254.mkv +佚名-情热晚装,http://em.21dtv.com/songs/60035160.mkv +李乐诗-情热晚装,http://em.21dtv.com/songs/60035159.mkv +斯琴高丽-秋日物语,http://em.21dtv.com/songs/60118611.mkv +潘劲东-情如往昔,http://em.21dtv.com/songs/60035268.mkv +郭富城-情人跳舞,http://em.21dtv.com/songs/60035249.mkv +任静-情人胜地,http://em.21dtv.com/songs/60087282.mkv +谢采妘-情人恰恰,http://em.21dtv.com/songs/60035238.mkv +吴斌-情人朋友,http://em.21dtv.com/songs/60083665.mkv +陈冠蒲-情人朋友,http://em.21dtv.com/songs/60069736.mkv +陈扬杰-情人朋友,http://em.21dtv.com/songs/60035237.mkv +杨紫燃-情人难做,http://em.21dtv.com/songs/60085620.mkv +黄雅莉-前任女友,http://em.21dtv.com/songs/60034286.mkv +李风持-情人密码,http://em.21dtv.com/songs/60035236.mkv +梁雁翎-情人玫瑰,http://em.21dtv.com/songs/60035235.mkv +孟丰敏-秋日浪漫,http://em.21dtv.com/songs/60099945.mkv +水木年华-秋日恋歌,http://em.21dtv.com/songs/60091573.mkv +易欣-情人快乐,http://em.21dtv.com/songs/60035232.mkv +莫文蔚-情人看剑,http://em.21dtv.com/songs/60093103.mkv +白玛多吉-情人吉祥,http://em.21dtv.com/songs/60097429.mkv +罗力威-情人季节(演唱会),http://em.21dtv.com/songs/60077250.mkv +BLIES-情人借借,http://em.21dtv.com/songs/60035231.mkv +曲尔甲-情人海边,http://em.21dtv.com/songs/60035211.mkv +刘德华-情人happy birthday,http://em.21dtv.com/songs/60035176.mkv +刘德华-情人happy birthday(演唱会),http://em.21dtv.com/songs/60035175.mkv +于台烟-牵阮的手,http://em.21dtv.com/songs/60034223.mkv +傅振辉+刘佳林-牵阮的手,http://em.21dtv.com/songs/60034222.mkv +陈盈洁+沈孟生-牵阮的手,http://em.21dtv.com/songs/60034221.mkv +蔡幸娟-牵阮的手,http://em.21dtv.com/songs/60034220.mkv +苏打绿-牵阮的手(演唱会),http://em.21dtv.com/songs/60034219.mkv +张惠妹-情人敌人,http://em.21dtv.com/songs/60035209.mkv +刘德华-情人敌人,http://em.21dtv.com/songs/60035208.mkv +伍浩哲+朱玉潍-情人敌人(无原唱),http://em.21dtv.com/songs/60035207.mkv +卓依婷-情人拜年,http://em.21dtv.com/songs/60092381.mkv +许志安-情人不肯,http://em.21dtv.com/songs/60093157.mkv +谢军-亲人别哭,http://em.21dtv.com/songs/60083637.mkv +谢华-情人博客,http://em.21dtv.com/songs/60035180.mkv +王鹤铮-情人宝贝,http://em.21dtv.com/songs/60061521.mkv +晓月-鹊桥之恋,http://em.21dtv.com/songs/60064776.mkv +怕黑-鹊桥之恋,http://em.21dtv.com/songs/60064775.mkv +李丽霞-缱绻星光(演唱会),http://em.21dtv.com/songs/60068581.mkv +黄思婷-亲亲吻吻,http://em.21dtv.com/songs/60069729.mkv +叶玉卿-卿卿我我,http://em.21dtv.com/songs/60034862.mkv +温拿乐队-轻轻微微,http://em.21dtv.com/songs/60034813.mkv +罗密欧-亲亲吾爱(无原唱),http://em.21dtv.com/songs/60034598.mkv +田震-千秋思念,http://em.21dtv.com/songs/60088356.mkv +那英-青青世界,http://em.21dtv.com/songs/60034778.mkv +佚名-青青世界(快四),http://em.21dtv.com/songs/60034777.mkv +王莹-琴棋书画,http://em.21dtv.com/songs/60112119.mkv +甄妮-青青山岗,http://em.21dtv.com/songs/60088353.mkv +梁雁翎-亲亲如我,http://em.21dtv.com/songs/60034592.mkv +星月组合-鹊桥情缘,http://em.21dtv.com/songs/60126957.mkv +冯云飞-鹊桥七夕,http://em.21dtv.com/songs/60035981.mkv +吴克群-牵牵牵手,http://em.21dtv.com/songs/60034216.mkv +古巨基-钱钱钱钱,http://em.21dtv.com/songs/60034320.mkv +古巨基-钱钱钱钱(演唱会),http://em.21dtv.com/songs/60034319.mkv +叶倩文-秋去秋来(演唱会),http://em.21dtv.com/songs/60035695.mkv +叶德娴-秋去秋来(演唱会),http://em.21dtv.com/songs/60035694.mkv +陈慧娴-千千阙歌,http://em.21dtv.com/songs/60128533.mkv +黄子俊-千千阙歌,http://em.21dtv.com/songs/60093530.mkv +陈慧娴-千千阙歌,http://em.21dtv.com/songs/60034146.mkv +张国荣-千千阙歌(演唱会),http://em.21dtv.com/songs/60034145.mkv +陈慧娴-千千阙歌(演唱会),http://em.21dtv.com/songs/60034144.mkv +蔡幸娟-卿卿呢语,http://em.21dtv.com/songs/60034861.mkv +唐古+阿绪-QQ秘密,http://em.21dtv.com/songs/60080720.mkv +杨卿俪-卿卿美俪,http://em.21dtv.com/songs/60108592.mkv +李翊君-七情六慾,http://em.21dtv.com/songs/60088038.mkv +金智娟-七情六欲,http://em.21dtv.com/songs/60033761.mkv +李翊君-七情六欲,http://em.21dtv.com/songs/60033760.mkv +任军太-亲亲老婆,http://em.21dtv.com/songs/60094391.mkv +河流-悄悄离开,http://em.21dtv.com/songs/60072300.mkv +孟杨-悄悄离别,http://em.21dtv.com/songs/60118507.mkv +佚名-青青湖畔,http://em.21dtv.com/songs/60034775.mkv +C ALLSTAR-全情关注,http://em.21dtv.com/songs/60035891.mkv +洪杰-气球飞了,http://em.21dtv.com/songs/60077129.mkv +许志刚-情牵笛韵,http://em.21dtv.com/songs/60126181.mkv +夏后-浅浅的笑,http://em.21dtv.com/songs/60085593.mkv +满文军-亲情电话,http://em.21dtv.com/songs/60034608.mkv +陈晓茵-轻轻的歌,http://em.21dtv.com/songs/60114864.mkv +许志刚-青青草原,http://em.21dtv.com/songs/60126184.mkv +韩紫灵-亲亲草原,http://em.21dtv.com/songs/60115528.mkv +乌兰托娅-青青草原,http://em.21dtv.com/songs/60077212.mkv +郑璐-鹊桥彩虹,http://em.21dtv.com/songs/60064774.mkv +曾志伟+吴君如-乞求炒饭,http://em.21dtv.com/songs/60120587.mkv +蒙克-亲亲爸妈,http://em.21dtv.com/songs/60071057.mkv +许嵩-全球变冷,http://em.21dtv.com/songs/60085605.mkv +雨露-情牵边关,http://em.21dtv.com/songs/60115514.mkv +罗大佑+软硬天师-亲亲表哥,http://em.21dtv.com/songs/60034583.mkv +钟旎菱-千奇百怪,http://em.21dtv.com/songs/60034143.mkv +张启辉-亲亲宝贝,http://em.21dtv.com/songs/60119505.mkv +鸿飞-亲亲贝贝,http://em.21dtv.com/songs/60110721.mkv +张启辉-亲亲宝贝(演唱会),http://em.21dtv.com/songs/60034582.mkv +李秋实-悄悄爱你,http://em.21dtv.com/songs/60109435.mkv +秋实-悄悄爱你,http://em.21dtv.com/songs/60077164.mkv +王杰-情情爱爱,http://em.21dtv.com/songs/60035157.mkv +ALAN-群青の谷,http://em.21dtv.com/songs/60035986.mkv +李明洋-气魄原在,http://em.21dtv.com/songs/60081063.mkv +吴俊宏-气魄原在,http://em.21dtv.com/songs/60072291.mkv +STEPHY+THERESA-亲朋勿友,http://em.21dtv.com/songs/60092194.mkv +COOKIES-亲朋勿友,http://em.21dtv.com/songs/60034578.mkv +邓丽欣-亲朋勿友(演唱会),http://em.21dtv.com/songs/60034577.mkv +江涛-亲朋好友,http://em.21dtv.com/songs/60034576.mkv +谢霆锋-欺骗观众,http://em.21dtv.com/songs/60093191.mkv +司文-求偶情歌,http://em.21dtv.com/songs/60077294.mkv +WESTLIFE-queen of my heart,http://em.21dtv.com/songs/60004576.mkv +彭羚-情难自制,http://em.21dtv.com/songs/60035142.mkv +彭羚-情难自制(演唱会),http://em.21dtv.com/songs/60035141.mkv +王又萱-千年之约,http://em.21dtv.com/songs/60135533.mkv +韩红-千年之约,http://em.21dtv.com/songs/60133079.mkv +必须组合-七年之仰,http://em.21dtv.com/songs/60109376.mkv +姜玉阳+谢华-千年之约,http://em.21dtv.com/songs/60097139.mkv +陈晓琪-七年滋养,http://em.21dtv.com/songs/60069702.mkv +许志安-七年滋养,http://em.21dtv.com/songs/60033758.mkv +刘欢-千年钟声(演唱会),http://em.21dtv.com/songs/60034142.mkv +黄宇涛-千年追恋,http://em.21dtv.com/songs/60129837.mkv +任韵淇+张伊彤-千年之恋,http://em.21dtv.com/songs/60118327.mkv +梁佳玉-千年之恋,http://em.21dtv.com/songs/60112035.mkv +李佳薇+曾一鸣+陈一玲-千年之恋,http://em.21dtv.com/songs/60083610.mkv +呼斯楞+央吉玛-千年之恋,http://em.21dtv.com/songs/60083609.mkv +大山-千年之恋,http://em.21dtv.com/songs/60071048.mkv +佚名-千年之旅(无原唱),http://em.21dtv.com/songs/60034141.mkv +戴爱玲+信乐团-千年之恋,http://em.21dtv.com/songs/60034140.mkv +F.I.R-千年之恋,http://em.21dtv.com/songs/60034139.mkv +林隆璇-情难自控,http://em.21dtv.com/songs/60092886.mkv +黎明-情难自控,http://em.21dtv.com/songs/60035140.mkv +戴玉强-千年之歌,http://em.21dtv.com/songs/60091241.mkv +金瑞瑶-千年之爱(无原唱),http://em.21dtv.com/songs/60034138.mkv +何龙雨+辜樱樱-千年瑶寨,http://em.21dtv.com/songs/60131171.mkv +何龙雨+苏思蓉-千年瑶寨,http://em.21dtv.com/songs/60098111.mkv +何方-情难由衷(无原唱),http://em.21dtv.com/songs/60035136.mkv +安东阳+东方红艳-情暖一生,http://em.21dtv.com/songs/60126790.mkv +郁可唯-千年一瞬,http://em.21dtv.com/songs/60068575.mkv +凤娘+欧阳-请你原谅,http://em.21dtv.com/songs/60077274.mkv +春子-请你原谅,http://em.21dtv.com/songs/60064760.mkv +伊琳+王海涛-去年雨季,http://em.21dtv.com/songs/60035852.mkv +秦川-千年烟花,http://em.21dtv.com/songs/60127250.mkv +熊照华-千年以后,http://em.21dtv.com/songs/60124231.mkv +张国荣-倩女幽魂,http://em.21dtv.com/songs/60034359.mkv +高胜美-倩女幽魂,http://em.21dtv.com/songs/60034358.mkv +陈晓东-倩女幽魂,http://em.21dtv.com/songs/60034357.mkv +张国荣-倩女幽魂(演唱会),http://em.21dtv.com/songs/60034356.mkv +王爱华-千年约定,http://em.21dtv.com/songs/60114685.mkv +钟盛忠+钟晓玉-请你相信,http://em.21dtv.com/songs/60123267.mkv +李让-千年向往,http://em.21dtv.com/songs/60102359.mkv +孟庭苇-千年新娘,http://em.21dtv.com/songs/60034135.mkv +谭畅-请你幸福,http://em.21dtv.com/songs/60088678.mkv +梁咏琪-全年无休,http://em.21dtv.com/songs/60035889.mkv +张静云-千年万年,http://em.21dtv.com/songs/60083607.mkv +吴淑敏-千年万年,http://em.21dtv.com/songs/60034134.mkv +王海玲-千年万年,http://em.21dtv.com/songs/60034133.mkv +龙千玉+蔡小虎-千年万年,http://em.21dtv.com/songs/60034132.mkv +陈奕迅-请你停下,http://em.21dtv.com/songs/60093408.mkv +陆鸣+解晓东-情暖童心,http://em.21dtv.com/songs/60035149.mkv +黎瑞恩-欠你太多,http://em.21dtv.com/songs/60034348.mkv +书画-千年守望,http://em.21dtv.com/songs/60093660.mkv +许志豪-千年思念,http://em.21dtv.com/songs/60034131.mkv +刘玉婉-情暖人间,http://em.21dtv.com/songs/60089680.mkv +陈升-青鸟日记,http://em.21dtv.com/songs/60034762.mkv +胡海波-千年情缘,http://em.21dtv.com/songs/60071047.mkv +花树-千年情殇,http://em.21dtv.com/songs/60110485.mkv +酷龙+汪佩蓉-请你恰恰,http://em.21dtv.com/songs/60088798.mkv +李宇春-请你恰恰(演唱会),http://em.21dtv.com/songs/60035580.mkv +银河望月-千年情劫,http://em.21dtv.com/songs/60034130.mkv +佚名-千年女王,http://em.21dtv.com/songs/60034129.mkv +谭咏麟-千年埋藏(演唱会),http://em.21dtv.com/songs/60034128.mkv +林智文-请你离开,http://em.21dtv.com/songs/60035572.mkv +东方神起-千年恋歌,http://em.21dtv.com/songs/60034127.mkv +马浚伟-请你留步,http://em.21dtv.com/songs/60035573.mkv +歌浴森-请你快乐,http://em.21dtv.com/songs/60072324.mkv +杨清明-去年今日,http://em.21dtv.com/songs/60110298.mkv +李晓杰-去年今日,http://em.21dtv.com/songs/60035849.mkv +张文绮-请你借过,http://em.21dtv.com/songs/60105850.mkv +钟舒漫-请你合作,http://em.21dtv.com/songs/60035562.mkv +黄斌武-情难回首,http://em.21dtv.com/songs/60101202.mkv +黄凯芹-请您回来,http://em.21dtv.com/songs/60035600.mkv +黄凯芹-请您回来(演唱会),http://em.21dtv.com/songs/60035599.mkv +佚名-请你回来(无原唱),http://em.21dtv.com/songs/60035563.mkv +杨果-娶你回家,http://em.21dtv.com/songs/60094167.mkv +蒋文端-倩女回魂,http://em.21dtv.com/songs/60034355.mkv +谢朋举-千年湖歌,http://em.21dtv.com/songs/60034124.mkv +胡艾彤-千年寒冰,http://em.21dtv.com/songs/60077135.mkv +泽郎多杰-千年高原,http://em.21dtv.com/songs/60090045.mkv +朱桦+麦子杰+萨顶顶-请你放心,http://em.21dtv.com/songs/60083676.mkv +赵咏华-请你放心,http://em.21dtv.com/songs/60035559.mkv +谢世超-欠你的债,http://em.21dtv.com/songs/60085594.mkv +叶瑗菱-请你带走,http://em.21dtv.com/songs/60035552.mkv +袁凤瑛-情难独奏,http://em.21dtv.com/songs/60035113.mkv +张勇-去年冬天,http://em.21dtv.com/songs/60077300.mkv +齐秦-去年冬天,http://em.21dtv.com/songs/60035848.mkv +柯以敏-去年冬天,http://em.21dtv.com/songs/60035847.mkv +唐丽+陈随意-牵你的手,http://em.21dtv.com/songs/60077142.mkv +张凌枫-牵你的手,http://em.21dtv.com/songs/60068576.mkv +办桌二人组-牵你的手,http://em.21dtv.com/songs/60034211.mkv +蒋大为-千年敦煌,http://em.21dtv.com/songs/60034122.mkv +冯鸿源-千年等待,http://em.21dtv.com/songs/60069710.mkv +贺一航-请你等待(无原唱),http://em.21dtv.com/songs/60035553.mkv +何家劲-情浓大地,http://em.21dtv.com/songs/60035145.mkv +华晨宇+胡彦斌-千年的爱,http://em.21dtv.com/songs/60116606.mkv +周旭风-七年的爱,http://em.21dtv.com/songs/60083593.mkv +金贤政-七年的爱,http://em.21dtv.com/songs/60083592.mkv +易桀齐-去你的爱,http://em.21dtv.com/songs/60035845.mkv +金贤正-七年的爱,http://em.21dtv.com/songs/60033757.mkv +齐霖-千年承诺,http://em.21dtv.com/songs/60114922.mkv +潘长江+巩汉林+张爱萍-请你参加,http://em.21dtv.com/songs/60090067.mkv +羽泉+陈妃平+黄-千年春潮,http://em.21dtv.com/songs/60089445.mkv +汪佩蓉+CLON-请你cha cha,http://em.21dtv.com/songs/60035536.mkv +施文彬+秀兰玛雅-请你保重,http://em.21dtv.com/songs/60035538.mkv +张学友-情浓半生,http://em.21dtv.com/songs/60035144.mkv +张学友+汤宝如-情浓半生,http://em.21dtv.com/songs/60035143.mkv +盛大为-请你爱我,http://em.21dtv.com/songs/60077271.mkv +闪亮三姐妹-千年爱神,http://em.21dtv.com/songs/60034115.mkv +王子皓-千年爱恋,http://em.21dtv.com/songs/60100310.mkv +天意-青梅竹马,http://em.21dtv.com/songs/60099181.mkv +张可儿-青梅竹马,http://em.21dtv.com/songs/60096067.mkv +周治平-青梅竹马,http://em.21dtv.com/songs/60034751.mkv +何静-青梅竹马,http://em.21dtv.com/songs/60034750.mkv +高胜美-青梅竹马,http://em.21dtv.com/songs/60034749.mkv +邱淑君-青梅竹马(无原唱),http://em.21dtv.com/songs/60034748.mkv +邵欣哲-青梅煮酒,http://em.21dtv.com/songs/60077211.mkv +欣哲-青梅煮酒,http://em.21dtv.com/songs/60068591.mkv +王璐岢-七秒之后,http://em.21dtv.com/songs/60081407.mkv +黎姿-情迷夜雨,http://em.21dtv.com/songs/60035102.mkv +陈琳+李承慧-青梅一味,http://em.21dtv.com/songs/60098883.mkv +许嵩-清明雨上,http://em.21dtv.com/songs/60034889.mkv +许美静-情迷意乱,http://em.21dtv.com/songs/60035103.mkv +三角COOL-全民运动,http://em.21dtv.com/songs/60035888.mkv +冷漠-情迷心窍,http://em.21dtv.com/songs/60111706.mkv +周慧敏-情迷心窍(演唱会),http://em.21dtv.com/songs/60035101.mkv +李吟-秋梦无痕,http://em.21dtv.com/songs/60077283.mkv +陈奕+曾之乔-青梅铁马,http://em.21dtv.com/songs/60034747.mkv +安心亚-全面投降,http://em.21dtv.com/songs/60104940.mkv +潘玮柏-全面通缉,http://em.21dtv.com/songs/60035885.mkv +周汤豪-全面失控,http://em.21dtv.com/songs/60067357.mkv +余文乐-全面收购,http://em.21dtv.com/songs/60092287.mkv +潘军-情满人间(演唱会),http://em.21dtv.com/songs/60035089.mkv +潘迪华+森森-奇妙奇妙(演唱会),http://em.21dtv.com/songs/60033958.mkv +华歌-全民情歌,http://em.21dtv.com/songs/60134954.mkv +孟杨-全民情歌,http://em.21dtv.com/songs/60121577.mkv +化学猴子-全面启动,http://em.21dtv.com/songs/60107548.mkv +黄明志-全民偶像,http://em.21dtv.com/songs/60114913.mkv +黎子菱-千面女郎(无原唱),http://em.21dtv.com/songs/60034114.mkv +李贞贤-千面女孩,http://em.21dtv.com/songs/60034113.mkv +孙淑媚-情梦梦醒,http://em.21dtv.com/songs/60035095.mkv +刘佳-全民目击,http://em.21dtv.com/songs/60097242.mkv +李盼-情迷曼谷,http://em.21dtv.com/songs/60097431.mkv +天骏-情满鹿城,http://em.21dtv.com/songs/60121549.mkv +郑伊健-奇妙旅程,http://em.21dtv.com/songs/60033957.mkv +陈慧娴-奇妙旅程,http://em.21dtv.com/songs/60033956.mkv +林俊杰+林志颖-全面开战,http://em.21dtv.com/songs/60116957.mkv +林俊杰+林志颖-全面开战,http://em.21dtv.com/songs/60116040.mkv +农夫-全民皆估(演唱会),http://em.21dtv.com/songs/60035886.mkv +阎维文-情满酒歌,http://em.21dtv.com/songs/60035088.mkv +多亮-全面回忆,http://em.21dtv.com/songs/60077303.mkv +农夫-全民合拍,http://em.21dtv.com/songs/60062791.mkv +肖丹-青梅花开,http://em.21dtv.com/songs/60119890.mkv +门丽-阡陌红尘,http://em.21dtv.com/songs/60129702.mkv +郑秀文-亲密关系(演唱会),http://em.21dtv.com/songs/60034573.mkv +正月十五-全民共舞,http://em.21dtv.com/songs/60114635.mkv +吴莺音-清明的月,http://em.21dtv.com/songs/60087567.mkv +爱啾-轻描淡写,http://em.21dtv.com/songs/60127186.mkv +袁惟仁-轻描淡写,http://em.21dtv.com/songs/60034799.mkv +佳佳-亲密爱人,http://em.21dtv.com/songs/60133370.mkv +郭宴-亲密爱人,http://em.21dtv.com/songs/60127476.mkv +金婷婷-亲密爱人,http://em.21dtv.com/songs/60123251.mkv +王晰-亲密爱人,http://em.21dtv.com/songs/60119814.mkv +萧敬腾-亲密爱人,http://em.21dtv.com/songs/60118877.mkv +赵大格+段欣芮-亲密爱人,http://em.21dtv.com/songs/60114807.mkv +庾澄庆-亲密爱人,http://em.21dtv.com/songs/60111848.mkv +尚雯婕-亲密爱人,http://em.21dtv.com/songs/60109282.mkv +萧敬腾+苏丁琦+凌菱-亲密爱人(最美和声)(现场版),http://em.21dtv.com/songs/60100950.mkv +张惠妹-亲密爱人,http://em.21dtv.com/songs/60097357.mkv +田斯斯+胡海泉-亲密爱人,http://em.21dtv.com/songs/60094615.mkv +张敬轩-亲密爱人,http://em.21dtv.com/songs/60083634.mkv +萧敬腾-亲密爱人,http://em.21dtv.com/songs/60069727.mkv +胡渭康-亲密爱人(演唱会),http://em.21dtv.com/songs/60064724.mkv +王若琳-亲密爱人(演唱会),http://em.21dtv.com/songs/60063029.mkv +高胜美-亲密爱人,http://em.21dtv.com/songs/60034572.mkv +梅艳芳-亲密爱人(演唱会),http://em.21dtv.com/songs/60034571.mkv +蔡琴-亲密爱人(演唱会),http://em.21dtv.com/songs/60034570.mkv +金志文+白雪-千里之外,http://em.21dtv.com/songs/60135849.mkv +费玉清+周杰伦-千里之外,http://em.21dtv.com/songs/60126217.mkv +涓子-千里之吻,http://em.21dtv.com/songs/60119776.mkv +周杰伦+费玉清-千里之外,http://em.21dtv.com/songs/60034110.mkv +易桀齐-千里之外,http://em.21dtv.com/songs/60034109.mkv +费玉清-千里之外,http://em.21dtv.com/songs/60034108.mkv +周杰伦+宋祖英-千里之外(演唱会),http://em.21dtv.com/songs/60034107.mkv +林峰-千里之外(演唱会),http://em.21dtv.com/songs/60034106.mkv +林峰+王祖蓝-千里之外(演唱会),http://em.21dtv.com/songs/60034105.mkv +火狼-千里姻缘,http://em.21dtv.com/songs/60129362.mkv +张国荣-全赖有你,http://em.21dtv.com/songs/60035883.mkv +刘尊-去了又回,http://em.21dtv.com/songs/60035844.mkv +刘忆-情留心中,http://em.21dtv.com/songs/60108340.mkv +谢霆锋-潜龙勿用,http://em.21dtv.com/songs/60034331.mkv +谢霆锋-潜龙勿用(演唱会),http://em.21dtv.com/songs/60034330.mkv +龙梅子-情路弯弯,http://em.21dtv.com/songs/60101990.mkv +闫泽-群龙无首,http://em.21dtv.com/songs/60134372.mkv +李浩民-千里万里,http://em.21dtv.com/songs/60132555.mkv +邝美云-情路太难,http://em.21dtv.com/songs/60035076.mkv +金姗姗-七里水乡,http://em.21dtv.com/songs/60118107.mkv +金珊珊-七里水乡,http://em.21dtv.com/songs/60117299.mkv +阿香-情连世林,http://em.21dtv.com/songs/60130826.mkv +伍思凯-浅蓝深蓝,http://em.21dtv.com/songs/60034336.mkv +岩宰仑-勤劳人生,http://em.21dtv.com/songs/60124802.mkv +王中平-起落人生,http://em.21dtv.com/songs/60034018.mkv +大卫+丁国琳-千里情缘,http://em.21dtv.com/songs/60112599.mkv +李春波-圈里圈外,http://em.21dtv.com/songs/60035861.mkv +刘尊-墙里墙外,http://em.21dtv.com/songs/60034383.mkv +郑健英-劝郎迁善,http://em.21dtv.com/songs/60035949.mkv +叶倩文-秋来秋去(演唱会),http://em.21dtv.com/songs/60035684.mkv +网络-青楼买卖,http://em.21dtv.com/songs/60088408.mkv +周影-情路茫茫,http://em.21dtv.com/songs/60035074.mkv +邱芸子-情泪满杯,http://em.21dtv.com/songs/60102786.mkv +上明-情路lonely night,http://em.21dtv.com/songs/60035069.mkv +张蓉蓉-情路看破,http://em.21dtv.com/songs/60135235.mkv +郑伊健-情路狂奔,http://em.21dtv.com/songs/60035073.mkv +郑伊健-情路狂奔(演唱会),http://em.21dtv.com/songs/60035072.mkv +徐恩乾-秋落红楼,http://em.21dtv.com/songs/60115181.mkv +陈星-前浪后浪,http://em.21dtv.com/songs/60034280.mkv +宋逸民+韩瑜-青龙好汉,http://em.21dtv.com/songs/60034746.mkv +陈小春-情瘤感菌,http://em.21dtv.com/songs/60035065.mkv +杨哲-情路到站,http://em.21dtv.com/songs/60135391.mkv +陈盈洁-亲恋道中,http://em.21dtv.com/songs/60096023.mkv +老兵-枪林弹雨,http://em.21dtv.com/songs/60091885.mkv +大家唱合唱团-七律-冬云,http://em.21dtv.com/songs/60033751.mkv +余帝-情路歹行,http://em.21dtv.com/songs/60035070.mkv +黄立行-侵略地球,http://em.21dtv.com/songs/60034465.mkv +FUYING+SAM-清凉的风,http://em.21dtv.com/songs/60120210.mkv +张涛-七律长征(演唱会),http://em.21dtv.com/songs/60067312.mkv +佚名-七律长征,http://em.21dtv.com/songs/60033754.mkv +江蕙-七老八十,http://em.21dtv.com/songs/60108668.mkv +郑嘉颖-强力爱情(无原唱),http://em.21dtv.com/songs/60034377.mkv +张新海-情困银川,http://em.21dtv.com/songs/60063405.mkv +黑鸭子演唱组-晴空万里,http://em.21dtv.com/songs/60035482.mkv +周杰伦-乔克叔叔,http://em.21dtv.com/songs/60034427.mkv +至上励合-巧克力棒,http://em.21dtv.com/songs/60080859.mkv +冷漠+路勇-秋裤大叔,http://em.21dtv.com/songs/60108325.mkv +双星-旗开得胜,http://em.21dtv.com/songs/60077127.mkv +张学友+张靓颖+K'NAAN-旗开得胜,http://em.21dtv.com/songs/60033987.mkv +黑鸭子演唱组-清净自在,http://em.21dtv.com/songs/60034884.mkv +毛华锋-奇迹再现,http://em.21dtv.com/songs/60067318.mkv +周渝民-求救专线,http://em.21dtv.com/songs/60035788.mkv +赵颂茹-情急自禁,http://em.21dtv.com/songs/60093228.mkv +阎维文-强军战歌,http://em.21dtv.com/songs/60108954.mkv +汤灿-千金一笑,http://em.21dtv.com/songs/60034095.mkv +陈思彤-千江有水,http://em.21dtv.com/songs/60034086.mkv +谭咏麟-千金一刻(演唱会),http://em.21dtv.com/songs/60034094.mkv +李香琴-琴姐献颂(演唱会),http://em.21dtv.com/songs/60061509.mkv +讦谯龙-拳击选手,http://em.21dtv.com/songs/60035945.mkv +钟子炫-情寄西凉,http://em.21dtv.com/songs/60109667.mkv +原子霏-求救讯号,http://em.21dtv.com/songs/60130160.mkv +醉美-情寄西藏,http://em.21dtv.com/songs/60131899.mkv +本兮+阿悄-倾尽温柔,http://em.21dtv.com/songs/60077226.mkv +钟舒漫-弃甲少年,http://em.21dtv.com/songs/60068573.mkv +凤凰传奇-奇迹世界,http://em.21dtv.com/songs/60033950.mkv +影子乐队-清寂韶光,http://em.21dtv.com/songs/60128009.mkv +郭保成-前进前进,http://em.21dtv.com/songs/60122178.mkv +成泉-权健情怀,http://em.21dtv.com/songs/60115959.mkv +前进乐团-前进olympic dream,http://em.21dtv.com/songs/60077151.mkv +张宇-千金难买,http://em.21dtv.com/songs/60034093.mkv +张宇-千金难买(演唱会),http://em.21dtv.com/songs/60034092.mkv +陈随意+谢宜君-千金难换,http://em.21dtv.com/songs/60128556.mkv +子夕-千家苗寨,http://em.21dtv.com/songs/60080878.mkv +纪川久+ASSEN捷-千金埋骨,http://em.21dtv.com/songs/60072292.mkv +佚名-求进了愿(无原唱),http://em.21dtv.com/songs/60035787.mkv +尤国通-情寄绿色,http://em.21dtv.com/songs/60104970.mkv +湘佛莲-清净莲花,http://em.21dtv.com/songs/60099381.mkv +雷淑敏-清江恋歌,http://em.21dtv.com/songs/60102914.mkv +熊立红-黔江交响,http://em.21dtv.com/songs/60069715.mkv +郑旭翔-抢救回忆,http://em.21dtv.com/songs/60034401.mkv +群星-千金贺岁,http://em.21dtv.com/songs/60077133.mkv +巧千金-千金贺岁,http://em.21dtv.com/songs/60077132.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-千金贺岁,http://em.21dtv.com/songs/60077131.mkv +乌兰图雅-清江画廊,http://em.21dtv.com/songs/60123598.mkv +蒋大为-取经回来,http://em.21dtv.com/songs/60035824.mkv +满江-裙角飞扬(演唱会),http://em.21dtv.com/songs/60035983.mkv +廖晓林-清江放排(演唱会),http://em.21dtv.com/songs/60034881.mkv +简弘亦-群居动物,http://em.21dtv.com/songs/60132782.mkv +GOLDEN-屈机的风(演唱会),http://em.21dtv.com/songs/60077298.mkv +周祥-囚禁的爱,http://em.21dtv.com/songs/60109229.mkv +詹雅雯-请君保重,http://em.21dtv.com/songs/60035532.mkv +可岚-千娇百媚,http://em.21dtv.com/songs/60034087.mkv +邰正宵-奇经八脉,http://em.21dtv.com/songs/60033951.mkv +周俊伟-抢救爱情,http://em.21dtv.com/songs/60034400.mkv +晓喜儿-情海追忆,http://em.21dtv.com/songs/60086771.mkv +小凤凤-青蚝仔嫂,http://em.21dtv.com/songs/60034739.mkv +姚贝娜+彭亮-倾海之恋,http://em.21dtv.com/songs/60097379.mkv +邓力源-奇幻之旅,http://em.21dtv.com/songs/60033936.mkv +钟汶-青红皂白,http://em.21dtv.com/songs/60034741.mkv +周华健-青红皂白(演唱会),http://em.21dtv.com/songs/60034740.mkv +谭圳-情怀岳阳,http://em.21dtv.com/songs/60035043.mkv +王莹-邛海月亮,http://em.21dtv.com/songs/60106134.mkv +杨静-情何以堪,http://em.21dtv.com/songs/60117835.mkv +[Group] +groupName=十六万歌曲MV等 - 51 +费玉清-情何以堪,http://em.21dtv.com/songs/60035030.mkv +涓子-情花有毒,http://em.21dtv.com/songs/60062537.mkv +张翠萍-启航迎春,http://em.21dtv.com/songs/60119543.mkv +陈小汉+李敏华-秋胡戏妻(戏曲),http://em.21dtv.com/songs/60093424.mkv +王欣宇-情话小姐,http://em.21dtv.com/songs/60135557.mkv +晓月-情海心灯,http://em.21dtv.com/songs/60109397.mkv +马浚伟+黎姿-求婚勿语,http://em.21dtv.com/songs/60035786.mkv +罗文聪-情话四季,http://em.21dtv.com/songs/60035042.mkv +王祖蓝-奇幻逆缘,http://em.21dtv.com/songs/60072289.mkv +张玮纶-骑虎难下,http://em.21dtv.com/songs/60033976.mkv +冯建聪-求婚蜜语,http://em.21dtv.com/songs/60061526.mkv +群星-启航明天,http://em.21dtv.com/songs/60109571.mkv +嘎玛西周+阿尔法-启航明天,http://em.21dtv.com/songs/60109244.mkv +林姗-情话绵绵,http://em.21dtv.com/songs/60120665.mkv +翁立友-情海茫茫,http://em.21dtv.com/songs/60094010.mkv +王瑞霞-情海濛濛(无原唱),http://em.21dtv.com/songs/60069541.mkv +胡美仪-情话绵绵(演唱会),http://em.21dtv.com/songs/60035040.mkv +尤雅-情海茫茫(无原唱),http://em.21dtv.com/songs/60035027.mkv +芭比-奇幻魔力,http://em.21dtv.com/songs/60033935.mkv +任妙音-乾红留香,http://em.21dtv.com/songs/60117543.mkv +颜小健-情话连篇,http://em.21dtv.com/songs/60100641.mkv +苏小艾-恰好经过,http://em.21dtv.com/songs/60119915.mkv +曲泉丞-秦淮河水,http://em.21dtv.com/songs/60077190.mkv +佚名-秦淮河畔,http://em.21dtv.com/songs/60034622.mkv +姚莉-秦淮河畔,http://em.21dtv.com/songs/60034621.mkv +蔡琴-秦淮河畔,http://em.21dtv.com/songs/60034620.mkv +李淑勤-琼花焕彩(演唱会),http://em.21dtv.com/songs/60035637.mkv +邵雅茜-奇幻公主,http://em.21dtv.com/songs/60033934.mkv +许嵩-七号公园,http://em.21dtv.com/songs/60033742.mkv +谭咏麟-情海方舟,http://em.21dtv.com/songs/60066243.mkv +WINKY诗-箐华浮梦,http://em.21dtv.com/songs/60112473.mkv +詹曼铃-情海浮沉,http://em.21dtv.com/songs/60035026.mkv +西子-情花待放,http://em.21dtv.com/songs/60112224.mkv +玉璇玑-秦淮八艳,http://em.21dtv.com/songs/60083638.mkv +胡琳-秋光乍泄,http://em.21dtv.com/songs/60107141.mkv +张磊-切歌之王,http://em.21dtv.com/songs/60120518.mkv +东方依依-千骨之恋,http://em.21dtv.com/songs/60113214.mkv +周华健-情感蒸发,http://em.21dtv.com/songs/60034981.mkv +高敏-千古一醉,http://em.21dtv.com/songs/60108164.mkv +本兮-情歌悠扬,http://em.21dtv.com/songs/60077239.mkv +吕方-情感意外,http://em.21dtv.com/songs/60034980.mkv +白雪-七个月亮,http://em.21dtv.com/songs/60033741.mkv +黎明-情归于尽,http://em.21dtv.com/songs/60035022.mkv +佚名-千古一爱,http://em.21dtv.com/songs/60034083.mkv +毛阿敏-千古一爱,http://em.21dtv.com/songs/60034082.mkv +周柏豪-乞丐王子,http://em.21dtv.com/songs/60033992.mkv +森美-乞丐王子(演唱会),http://em.21dtv.com/songs/60033991.mkv +沙宝亮-情感物语,http://em.21dtv.com/songs/60034979.mkv +楚博仁+孙露-请跟我来,http://em.21dtv.com/songs/60121838.mkv +孙琳+屠洪纲-请跟我来,http://em.21dtv.com/songs/60089795.mkv +苏芮+梁弘志-请跟我来,http://em.21dtv.com/songs/60035523.mkv +刘尊+郭彤-请跟我来,http://em.21dtv.com/songs/60035522.mkv +古巨基-情歌王2,http://em.21dtv.com/songs/60035006.mkv +胡美仪+吕珊+苏姗-千个太阳(演唱会),http://em.21dtv.com/songs/60077130.mkv +佚名-千个太阳,http://em.21dtv.com/songs/60034075.mkv +叶德娴-千个太阳,http://em.21dtv.com/songs/60034074.mkv +叶德娴-千个太阳(演唱会),http://em.21dtv.com/songs/60034073.mkv +汤宝如+王馨平+黎瑞恩-千个太阳(演唱会),http://em.21dtv.com/songs/60034072.mkv +黑妹-千个太阳(演唱会),http://em.21dtv.com/songs/60034071.mkv +回音哥-请告诉她,http://em.21dtv.com/songs/60077270.mkv +何龙雨-千古情殇,http://em.21dtv.com/songs/60121369.mkv +马常宝+张惠芬-倾国倾城,http://em.21dtv.com/songs/60106462.mkv +玖月奇迹-倾国倾城(演唱会),http://em.21dtv.com/songs/60085604.mkv +玖月传奇-倾国倾城,http://em.21dtv.com/songs/60077225.mkv +莫文蔚-倾国倾城,http://em.21dtv.com/songs/60072307.mkv +东来东往-顷国顷城,http://em.21dtv.com/songs/60035497.mkv +熊汝霖+阿宝-倾国倾城,http://em.21dtv.com/songs/60034842.mkv +东来东往-倾国倾城,http://em.21dtv.com/songs/60034841.mkv +陈楚生+齐秦-倾国倾城,http://em.21dtv.com/songs/60034840.mkv +龙千玉-情关难离,http://em.21dtv.com/songs/60035015.mkv +刘悦-情歌难唱,http://em.21dtv.com/songs/60101965.mkv +张燕-千古美人,http://em.21dtv.com/songs/60034080.mkv +陈少华-情歌疗伤,http://em.21dtv.com/songs/60102889.mkv +方顺吉+魏嘉榆-七股恋情,http://em.21dtv.com/songs/60103315.mkv +佚名-情归落泊,http://em.21dtv.com/songs/60035021.mkv +黎明-情归落泊,http://em.21dtv.com/songs/60035020.mkv +董文华-千古孔子,http://em.21dtv.com/songs/60034079.mkv +李俊英-情过苦海,http://em.21dtv.com/songs/60093840.mkv +于浩宸-千古家训,http://em.21dtv.com/songs/60067320.mkv +王庆爽-千古绝唱(演唱会),http://em.21dtv.com/songs/60083604.mkv +白雪-千古绝唱,http://em.21dtv.com/songs/60034078.mkv +小龙女-情归何处,http://em.21dtv.com/songs/60116750.mkv +爱华-情归何处,http://em.21dtv.com/songs/60107054.mkv +白致瑶-七根火柴,http://em.21dtv.com/songs/60088363.mkv +盖鸣晖-情归何处(演唱会),http://em.21dtv.com/songs/60083659.mkv +蔡献华+湘佛莲-情归何处,http://em.21dtv.com/songs/60069735.mkv +詹雅雯-情归何处,http://em.21dtv.com/songs/60035019.mkv +梅艳芳-情归何处,http://em.21dtv.com/songs/60035018.mkv +江音-情归何处,http://em.21dtv.com/songs/60035017.mkv +梅艳芳-情归何处(演唱会),http://em.21dtv.com/songs/60035016.mkv +山野-全国各地,http://em.21dtv.com/songs/60035879.mkv +苏勒亚其其格-情歌飞扬,http://em.21dtv.com/songs/60134156.mkv +张静-情歌飞扬,http://em.21dtv.com/songs/60120537.mkv +张也-千古风流,http://em.21dtv.com/songs/60034077.mkv +声音碎片-情歌而已,http://em.21dtv.com/songs/60112589.mkv +钟芹-情归丹霞,http://em.21dtv.com/songs/60111467.mkv +刘朝林-牵过的手,http://em.21dtv.com/songs/60110029.mkv +王璐-情歌当酒,http://em.21dtv.com/songs/60117921.mkv +周慧敏-情感的结,http://em.21dtv.com/songs/60034974.mkv +张国荣-情感的刺,http://em.21dtv.com/songs/60103270.mkv +徐良+刘丹萌-情歌对唱,http://em.21dtv.com/songs/60085611.mkv +唐俪+袁小迪-情歌对唱,http://em.21dtv.com/songs/60064741.mkv +胡秀历-牵挂的爱,http://em.21dtv.com/songs/60134146.mkv +周慧敏-千个晨早,http://em.21dtv.com/songs/60034070.mkv +云飞-情归草原,http://em.21dtv.com/songs/60116536.mkv +云飞-情归草原,http://em.21dtv.com/songs/60103066.mkv +段红-情歌串烧,http://em.21dtv.com/songs/60109477.mkv +张燕-千古传奇,http://em.21dtv.com/songs/60125524.mkv +阿吉仔-情歌唱尽,http://em.21dtv.com/songs/60081836.mkv +吕小毅-情歌不老(故事情节),http://em.21dtv.com/songs/60101288.mkv +孙耀威-情割不断,http://em.21dtv.com/songs/60034984.mkv +林义忠-千古不变,http://em.21dtv.com/songs/60034076.mkv +黄鸿升-千分之一,http://em.21dtv.com/songs/60083603.mkv +C ALLSTAR-切肤之痛,http://em.21dtv.com/songs/60068585.mkv +罗时丰-秋风夜雨,http://em.21dtv.com/songs/60077281.mkv +伍佰-秋风夜雨(演唱会),http://em.21dtv.com/songs/60035677.mkv +岩罕建-勤奋学习,http://em.21dtv.com/songs/60124814.mkv +王菲-清风徐来,http://em.21dtv.com/songs/60114693.mkv +谢金燕-秋风探戈,http://em.21dtv.com/songs/60035674.mkv +狂龙-情泛苏州,http://em.21dtv.com/songs/60120743.mkv +李克勤-情非首尔,http://em.21dtv.com/songs/60034970.mkv +谭咏麟+李克勤-情非首尔(演唱会),http://em.21dtv.com/songs/60034969.mkv +李克勤-情非首尔(演唱会),http://em.21dtv.com/songs/60034968.mkv +汪明荃-秋风秋雨(演唱会),http://em.21dtv.com/songs/60035673.mkv +李雪莱-请放轻松,http://em.21dtv.com/songs/60127066.mkv +蔡秋凤-秋风情泪,http://em.21dtv.com/songs/60035672.mkv +巫启贤-去飞去爱,http://em.21dtv.com/songs/60035840.mkv +姜玉阳-秋风落叶,http://em.21dtv.com/songs/50000158.mkv +詹雅雯-秋风落叶,http://em.21dtv.com/songs/60094971.mkv +林姗-秋风落叶,http://em.21dtv.com/songs/60035669.mkv +姜玉阳-秋风落叶,http://em.21dtv.com/songs/60035668.mkv +伊雪-秋风冷月,http://em.21dtv.com/songs/60035667.mkv +天籁回音-秋风恋歌,http://em.21dtv.com/songs/60102085.mkv +龙奔-祈福昆明,http://em.21dtv.com/songs/60098971.mkv +陈小汉+李敏华-窃符救赵(戏曲),http://em.21dtv.com/songs/60093425.mkv +群星-祈福久久,http://em.21dtv.com/songs/60033969.mkv +王识贤-秋风孤影,http://em.21dtv.com/songs/60035665.mkv +杨树林+金池+男光音组合-情非得已,http://em.21dtv.com/songs/60135402.mkv +庾澄庆-情非得已,http://em.21dtv.com/songs/60115140.mkv +张杰+赵俊-情非得已,http://em.21dtv.com/songs/60111077.mkv +庾澄庆+李敏镐-情非得已,http://em.21dtv.com/songs/60096266.mkv +伍思凯-情非得已,http://em.21dtv.com/songs/60094805.mkv +徐林+胡海泉-情非得已,http://em.21dtv.com/songs/60094509.mkv +庾澄庆-情非得已,http://em.21dtv.com/songs/60034966.mkv +黄美诗-情非得已,http://em.21dtv.com/songs/60034965.mkv +苏永康-情非得已(演唱会),http://em.21dtv.com/songs/60034964.mkv +黄品源-情非得已(演唱会),http://em.21dtv.com/songs/60034963.mkv +陈洁丽-情非得已(演唱会),http://em.21dtv.com/songs/60034962.mkv +胡鸿钧+徐子珊-棋逢敌手,http://em.21dtv.com/songs/60102646.mkv +谢有才-情逢对手,http://em.21dtv.com/songs/60085610.mkv +Go Go Rise 美好前程-前方的路,http://em.21dtv.com/songs/60116451.mkv +郑国锋-秋风的泪,http://em.21dtv.com/songs/60080053.mkv +NEON乐团-前方的路,http://em.21dtv.com/songs/60034275.mkv +甄子维-秋风的话(无原唱),http://em.21dtv.com/songs/60035663.mkv +郑少秋-清风不染(演唱会),http://em.21dtv.com/songs/60034875.mkv +魏晨-千方百计,http://em.21dtv.com/songs/60034069.mkv +黄淑惠-轻而易举,http://em.21dtv.com/songs/60034796.mkv +施文彬-七二五八,http://em.21dtv.com/songs/60033739.mkv +陈奕迅-起点终站,http://em.21dtv.com/songs/60114858.mkv +陈奕迅-起点终站,http://em.21dtv.com/songs/60113050.mkv +面孔乐队-穹顶之下,http://em.21dtv.com/songs/60134442.mkv +汪峰-琴岛之恋,http://em.21dtv.com/songs/60091594.mkv +紫琴-期待永远,http://em.21dtv.com/songs/60083591.mkv +张秀卿+蔡小虎-期待有缘,http://em.21dtv.com/songs/60033842.mkv +李娅莎-请答应我,http://em.21dtv.com/songs/60130416.mkv +姜玉阳-七滴眼泪,http://em.21dtv.com/songs/60033736.mkv +贯诗钦-秋的夏天,http://em.21dtv.com/songs/60120952.mkv +枫舞+王爱华-期待相见,http://em.21dtv.com/songs/60117855.mkv +文章-敲打我心,http://em.21dtv.com/songs/60034422.mkv +江蕙-七点五分,http://em.21dtv.com/songs/60033737.mkv +徐雅媚-情断天涯(无原唱),http://em.21dtv.com/songs/60034961.mkv +石杨-情定三生,http://em.21dtv.com/songs/60107092.mkv +李玟-全都是你,http://em.21dtv.com/songs/60091333.mkv +沈芯羽-气都少年(演唱会),http://em.21dtv.com/songs/60034023.mkv +红蔷薇-情到深处,http://em.21dtv.com/songs/60104363.mkv +迪克牛仔-情到深处,http://em.21dtv.com/songs/60083654.mkv +青山+缘分-情到深处,http://em.21dtv.com/songs/60071064.mkv +马健涛-情到深处,http://em.21dtv.com/songs/60064739.mkv +佚名-情到深处,http://em.21dtv.com/songs/60034950.mkv +陈升-青岛日记,http://em.21dtv.com/songs/60089515.mkv +龙千玉-祈祷平安,http://em.21dtv.com/songs/60136059.mkv +佚名-情到浓时,http://em.21dtv.com/songs/60034948.mkv +李国祥-情到浓时(无原唱),http://em.21dtv.com/songs/60034947.mkv +吴炜-期待明天,http://em.21dtv.com/songs/60033839.mkv +许文科-情到陌路,http://em.21dtv.com/songs/60110522.mkv +霍尊-七朵莲花,http://em.21dtv.com/songs/60103700.mkv +杨洪基-秋的恋歌,http://em.21dtv.com/songs/60035656.mkv +井恩然-期待恋爱,http://em.21dtv.com/songs/60106591.mkv +湘浩雨-情定今生,http://em.21dtv.com/songs/60122967.mkv +湘浩雨-情定今生,http://em.21dtv.com/songs/60107893.mkv +莫旭秋-秋的怀念(演唱会),http://em.21dtv.com/songs/60077280.mkv +佚名-秋的怀念,http://em.21dtv.com/songs/60035655.mkv +姚莉-秋的怀念,http://em.21dtv.com/songs/60035654.mkv +潘秀琼-秋的怀念,http://em.21dtv.com/songs/60035653.mkv +蔡幸娟-秋的怀念,http://em.21dtv.com/songs/60035652.mkv +徐小凤-秋的怀念(演唱会),http://em.21dtv.com/songs/60035651.mkv +陈振云-前店后厂,http://em.21dtv.com/songs/60107325.mkv +蔡琴-全都给你,http://em.21dtv.com/songs/60092028.mkv +吴生全-祈祷光明,http://em.21dtv.com/songs/60127836.mkv +周华健-期待更多,http://em.21dtv.com/songs/60033838.mkv +佚名-期待更多,http://em.21dtv.com/songs/60033837.mkv +F4-期待更多,http://em.21dtv.com/songs/60033836.mkv +车婉婉-情的代价,http://em.21dtv.com/songs/60077234.mkv +高林生-期待重逢,http://em.21dtv.com/songs/60062376.mkv +卓文萱-期待 爱,http://em.21dtv.com/songs/60093821.mkv +罗大佑-倾城之雨,http://em.21dtv.com/songs/60034837.mkv +谭晶-青藏之梦,http://em.21dtv.com/songs/60100970.mkv +权琳丽-倾城之恋,http://em.21dtv.com/songs/60130404.mkv +束方华-泉城之恋,http://em.21dtv.com/songs/60093663.mkv +李咏梅-泉城之恋,http://em.21dtv.com/songs/60093634.mkv +任贤齐-倾城之泪,http://em.21dtv.com/songs/60077224.mkv +汪明荃-倾城之恋,http://em.21dtv.com/songs/60034836.mkv +孙悦+沙宝亮-倾城之恋,http://em.21dtv.com/songs/60034835.mkv +杨千嬅+林一峰-倾城之恋(演唱会),http://em.21dtv.com/songs/60034834.mkv +汪明荃-倾城之恋(演唱会),http://em.21dtv.com/songs/60034833.mkv +孙悦+沙宝亮-倾城之恋(演唱会),http://em.21dtv.com/songs/60034832.mkv +刘允乐-青城之恋,http://em.21dtv.com/songs/60034654.mkv +群星-青春再见,http://em.21dtv.com/songs/60094634.mkv +华晨宇+白举纲+张阳阳+左立-青春再见,http://em.21dtv.com/songs/60093750.mkv +水木年华+李健+老狼+叶世荣-青春再见,http://em.21dtv.com/songs/60083644.mkv +潘松和-青春之火,http://em.21dtv.com/songs/60062805.mkv +李宁-青春之歌,http://em.21dtv.com/songs/60111967.mkv +杨海彪-青春战歌,http://em.21dtv.com/songs/60077208.mkv +佚名-青春战歌,http://em.21dtv.com/songs/60034733.mkv +水木年华-青春正传,http://em.21dtv.com/songs/60091575.mkv +郭富城-全城之宝,http://em.21dtv.com/songs/60035877.mkv +蓝血佳人-倾城一战,http://em.21dtv.com/songs/60107982.mkv +王洛宾-青春14,http://em.21dtv.com/songs/60089420.mkv +解晓东-青春14,http://em.21dtv.com/songs/60088631.mkv +姬宏伟-青春有期,http://em.21dtv.com/songs/60118490.mkv +李骏诚-青春有期,http://em.21dtv.com/songs/60116021.mkv +刘珺儿-青春易去,http://em.21dtv.com/songs/60034732.mkv +佳灏-青春有梦,http://em.21dtv.com/songs/60123631.mkv +周启生-浅草妖姬,http://em.21dtv.com/songs/60034334.mkv +赵薇-清晨阳光,http://em.21dtv.com/songs/60034873.mkv +吴建豪-全城效应(演唱会),http://em.21dtv.com/songs/60035876.mkv +南彝组合-青春旋律,http://em.21dtv.com/songs/60101051.mkv +隆熙俊-青春无怨,http://em.21dtv.com/songs/60077206.mkv +群星-青春无限,http://em.21dtv.com/songs/60132805.mkv +陈随意-青春舞台,http://em.21dtv.com/songs/60067330.mkv +信乐团-青春万岁,http://em.21dtv.com/songs/60083642.mkv +索南扎西-青春万岁,http://em.21dtv.com/songs/60061511.mkv +佚名-青春万岁,http://em.21dtv.com/songs/60034712.mkv +谭维维-青春舞曲,http://em.21dtv.com/songs/60120950.mkv +赵鹏-青春舞曲,http://em.21dtv.com/songs/60107248.mkv +伊尔盼-青春舞曲,http://em.21dtv.com/songs/60103879.mkv +黄绮珊+黎健伟+玉散克里木-青春舞曲(最美和声)(现场版),http://em.21dtv.com/songs/60101011.mkv +李琦+肖懿航+华晨宇+汪小敏-青春舞曲,http://em.21dtv.com/songs/60096346.mkv +超级女声-青春舞曲,http://em.21dtv.com/songs/60088726.mkv +玖月奇迹-青春舞曲(演唱会),http://em.21dtv.com/songs/60083643.mkv +蒲紫微-青春舞曲,http://em.21dtv.com/songs/60077207.mkv +赵鹏-青春舞曲,http://em.21dtv.com/songs/60034726.mkv +佚名-青春舞曲,http://em.21dtv.com/songs/60034725.mkv +谭晶-青春舞曲,http://em.21dtv.com/songs/60034724.mkv +解晓东-青春舞曲,http://em.21dtv.com/songs/60034723.mkv +巴郎百川-青春舞曲,http://em.21dtv.com/songs/60034722.mkv +熊天平+瞿颖-青春舞曲(演唱会),http://em.21dtv.com/songs/60034721.mkv +华娃-青春舞曲(演唱会),http://em.21dtv.com/songs/60034720.mkv +周璇-前程万里,http://em.21dtv.com/songs/60034274.mkv +佚名-前程万里,http://em.21dtv.com/songs/60034273.mkv +陈奕迅+谢安琪-青春无晦(演唱会),http://em.21dtv.com/songs/60064731.mkv +佚名-青春无悔,http://em.21dtv.com/songs/60034717.mkv +汤宝如-青春无悔,http://em.21dtv.com/songs/60034716.mkv +陈奕迅+谢安琪-青春无悔(HD演唱会),http://em.21dtv.com/songs/60034715.mkv +信-青春无敌,http://em.21dtv.com/songs/60131180.mkv +信-青春无敌,http://em.21dtv.com/songs/60130089.mkv +张含韵-青春无敌,http://em.21dtv.com/songs/60091058.mkv +刘虹桦-清晨五点,http://em.21dtv.com/songs/60034872.mkv +可米小子-青春无敌,http://em.21dtv.com/songs/60034713.mkv +林姗-千错万错,http://em.21dtv.com/songs/60034066.mkv +阿热+阿姆-青春舞步,http://em.21dtv.com/songs/60034719.mkv +三木科-青春踢踏,http://em.21dtv.com/songs/60090472.mkv +王剑-青春岁月,http://em.21dtv.com/songs/60094217.mkv +黄凯芹-青葱岁月,http://em.21dtv.com/songs/60093528.mkv +侃侃-青春碎语,http://em.21dtv.com/songs/60072305.mkv +李国祥-前程似锦(演唱会),http://em.21dtv.com/songs/60083615.mkv +童安格-青春手卷,http://em.21dtv.com/songs/60034711.mkv +段丽阳+贾云哲-七彩生活,http://em.21dtv.com/songs/60100908.mkv +黄婷婷-青春闪电,http://em.21dtv.com/songs/60123398.mkv +牛选天-青春时代,http://em.21dtv.com/songs/60119791.mkv +吕安娜-青春如糖,http://em.21dtv.com/songs/60120401.mkv +许科-全城热死,http://em.21dtv.com/songs/60098769.mkv +BOBO-全城热恋,http://em.21dtv.com/songs/60035875.mkv +谢金燕-青春日记,http://em.21dtv.com/songs/60064730.mkv +黄铉-青春日记(无原唱),http://em.21dtv.com/songs/60034710.mkv +陈仁丰-quincy陈仁丰,http://em.21dtv.com/songs/60071652.mkv +罗志祥-全城热爱,http://em.21dtv.com/songs/60067356.mkv +白雪-倾城琵琶,http://em.21dtv.com/songs/60114710.mkv +Snh48-青春派对,http://em.21dtv.com/songs/60107442.mkv +林志颖-青春派对(演唱会)(无原唱),http://em.21dtv.com/songs/60034706.mkv +周传雄-清晨女子,http://em.21dtv.com/songs/60034869.mkv +张景福+何环宇-青春你我,http://em.21dtv.com/songs/60130323.mkv +林志颖-青春扭扭,http://em.21dtv.com/songs/60034705.mkv +孔庆学-青藏女孩,http://em.21dtv.com/songs/60121561.mkv +朱元冰-青春年华,http://em.21dtv.com/songs/60119638.mkv +颖儿-青春你好,http://em.21dtv.com/songs/60114257.mkv +高凌风-青春年华,http://em.21dtv.com/songs/60034704.mkv +邵雅茜-青春年代,http://em.21dtv.com/songs/60034703.mkv +吴文煜-泉城民谣,http://em.21dtv.com/songs/60069744.mkv +淼淼-七彩梦想,http://em.21dtv.com/songs/60121883.mkv +韩庚-青春梦想,http://em.21dtv.com/songs/60034701.mkv +林于雯-情残梦碎,http://em.21dtv.com/songs/60095644.mkv +陈淑芳-情残梦碎,http://em.21dtv.com/songs/60034945.mkv +刘平芳-情残梦碎(无原唱),http://em.21dtv.com/songs/60034944.mkv +傅振辉-青春美梦,http://em.21dtv.com/songs/60095458.mkv +于乃久-青春木棉,http://em.21dtv.com/songs/60034702.mkv +黄思婷-青春美梦(无原唱),http://em.21dtv.com/songs/60034696.mkv +王识贤+谢金燕-青春曼波,http://em.21dtv.com/songs/60034695.mkv +雷光夏-清晨旅行,http://em.21dtv.com/songs/60034868.mkv +沈志仲-青春路上,http://em.21dtv.com/songs/60120691.mkv +甲子慧-青春恋梦,http://em.21dtv.com/songs/60111316.mkv +连亚琦-七彩浪漫,http://em.21dtv.com/songs/60097127.mkv +张蓉蓉-青春恋梦,http://em.21dtv.com/songs/60075808.mkv +南台湾小姑娘-青春乱梦,http://em.21dtv.com/songs/60034694.mkv +刘小慧-全程流露,http://em.21dtv.com/songs/60035878.mkv +叶胜钦-青春恋歌,http://em.21dtv.com/songs/60034692.mkv +黄品源-青春恋歌,http://em.21dtv.com/songs/60034691.mkv +陈珊妮+李端娴-青春骊歌,http://em.21dtv.com/songs/60034690.mkv +米线+包伍-七彩孔雀,http://em.21dtv.com/songs/60134061.mkv +张艺兴+姜雯+李小璐-青春快乐,http://em.21dtv.com/songs/60115924.mkv +王心凌-青春考卷,http://em.21dtv.com/songs/60091696.mkv +赵彦雄-青春记忆,http://em.21dtv.com/songs/60103592.mkv +颖宝儿+渔圈-青春记忆,http://em.21dtv.com/songs/60077203.mkv +莫旭秋-前程锦绣(演唱会),http://em.21dtv.com/songs/60077149.mkv +许志安-前程锦绣,http://em.21dtv.com/songs/60034272.mkv +王杰-前程锦绣(演唱会),http://em.21dtv.com/songs/60034271.mkv +罗文-前程锦绣(演唱会),http://em.21dtv.com/songs/60034270.mkv +卢海鹏-前程锦绣(演唱会),http://em.21dtv.com/songs/60034269.mkv +郑智化-青春祭坛,http://em.21dtv.com/songs/60034687.mkv +农夫-全城尽庆(演唱会),http://em.21dtv.com/songs/60035873.mkv +刀郎+云朵-清澈见底,http://em.21dtv.com/songs/60077229.mkv +蔡振南-情场憨子(无原唱),http://em.21dtv.com/songs/60095911.mkv +蔡琴-青春湖畔,http://em.21dtv.com/songs/60100455.mkv +左成-青春后记,http://em.21dtv.com/songs/60135175.mkv +E+KIDS-青春火花,http://em.21dtv.com/songs/60092168.mkv +张惠妹-青藏高原,http://em.21dtv.com/songs/60130313.mkv +正歌-青藏高原,http://em.21dtv.com/songs/60108653.mkv +阿鲁阿卓+程琳-青藏高原,http://em.21dtv.com/songs/60098843.mkv +张江-青藏高原,http://em.21dtv.com/songs/60091133.mkv +含笑-青藏高原,http://em.21dtv.com/songs/60089733.mkv +胡斌-青藏高原,http://em.21dtv.com/songs/60071058.mkv +郭富城-青春敢想,http://em.21dtv.com/songs/60102810.mkv +谢雷-青春鼓王(演唱会),http://em.21dtv.com/songs/60034682.mkv +佚名-青春鼓王(无原唱),http://em.21dtv.com/songs/60034681.mkv +吴奇隆-青春鼓王(无原唱),http://em.21dtv.com/songs/60034680.mkv +阿香-青藏姑娘,http://em.21dtv.com/songs/60103667.mkv +蒋荣宗-七彩光芒,http://em.21dtv.com/songs/60033734.mkv +林子娟-牵肠挂肚,http://em.21dtv.com/songs/60067322.mkv +李蕴-青春告白,http://em.21dtv.com/songs/60077201.mkv +佚名-qua cau gio bay,http://em.21dtv.com/songs/60004571.mkv +吴丹妮-青春电影,http://em.21dtv.com/songs/60097304.mkv +何念庭-青春的心,http://em.21dtv.com/songs/60034674.mkv +汪子琳-青春的心(无原唱),http://em.21dtv.com/songs/60034673.mkv +姜鹏-虔诚的心,http://em.21dtv.com/songs/60034310.mkv +艺洋-钦差大人,http://em.21dtv.com/songs/60077189.mkv +陶红-青春的梦,http://em.21dtv.com/songs/60120112.mkv +秀兰玛雅-青春的梦,http://em.21dtv.com/songs/60106176.mkv +吴淑敏-青春的梦,http://em.21dtv.com/songs/60034669.mkv +申展-青春的酒,http://em.21dtv.com/songs/60129436.mkv +合力-清晨的风,http://em.21dtv.com/songs/60128873.mkv +苏玮+樊芳斌-倾城的错,http://em.21dtv.com/songs/60130687.mkv +赵培誉-凄惨的爱(无原唱),http://em.21dtv.com/songs/60093222.mkv +马兆骏-起初的爱,http://em.21dtv.com/songs/60034001.mkv +蔡立儿-青春常驻,http://em.21dtv.com/songs/60129588.mkv +张敬轩-青春常驻,http://em.21dtv.com/songs/60119522.mkv +张敬轩-青春常驻,http://em.21dtv.com/songs/60100019.mkv +崔恕+王馨平-青春不散,http://em.21dtv.com/songs/60125454.mkv +刘一平-青春不悔,http://em.21dtv.com/songs/60110875.mkv +佚名-情不自禁,http://em.21dtv.com/songs/60034942.mkv +伊扬+万灵-情不自禁,http://em.21dtv.com/songs/60034941.mkv +胡彦斌-情不自禁,http://em.21dtv.com/songs/60034940.mkv +蔡依林-情不自禁,http://em.21dtv.com/songs/60034939.mkv +陈慧琳-情不自禁(演唱会),http://em.21dtv.com/songs/60034938.mkv +李心洁-裙摆摇摇,http://em.21dtv.com/songs/60035982.mkv +张德兰-情比雨丝(演唱会),http://em.21dtv.com/songs/60077232.mkv +徐小凤-情比雨丝,http://em.21dtv.com/songs/60034931.mkv +梅艳芳-情比雨丝(演唱会),http://em.21dtv.com/songs/60034930.mkv +关菊英-情比雨丝(演唱会),http://em.21dtv.com/songs/60034929.mkv +渔圈+韩小莎-情不由己,http://em.21dtv.com/songs/60097430.mkv +钟镇涛-全部为你,http://em.21dtv.com/songs/60035872.mkv +梁晓丰-千变万化,http://em.21dtv.com/songs/60034062.mkv +李琦-启禀太后,http://em.21dtv.com/songs/60130430.mkv +李琦-启禀太后,http://em.21dtv.com/songs/60129239.mkv +佚名-情比天高,http://em.21dtv.com/songs/60034928.mkv +高原-情比天长,http://em.21dtv.com/songs/60109041.mkv +陈奕迅-七百年后,http://em.21dtv.com/songs/60033731.mkv +黎瑞恩-卿本佳人,http://em.21dtv.com/songs/60034859.mkv +黎瑞恩-卿本佳人(演唱会),http://em.21dtv.com/songs/60034858.mkv +柯受良-钱不够用,http://em.21dtv.com/songs/60034313.mkv +高凌风-钱不够用,http://em.21dtv.com/songs/60034312.mkv +杨奇煜-全部给你,http://em.21dtv.com/songs/60117831.mkv +叶玉卿-全部给你,http://em.21dtv.com/songs/60035871.mkv +孙美娜-千百个梦,http://em.21dtv.com/songs/60034056.mkv +孙楠-全部的爱,http://em.21dtv.com/songs/60109262.mkv +王识贤-全部的爱,http://em.21dtv.com/songs/60035870.mkv +叶丹青+叶幼琪-七步成诗(戏曲),http://em.21dtv.com/songs/60092400.mkv +郭富城-情爱之间,http://em.21dtv.com/songs/60101533.mkv +张炚莹-亲爱晚安,http://em.21dtv.com/songs/60094897.mkv +谭咏麟-亲爱是痛,http://em.21dtv.com/songs/60034565.mkv +林忆莲-情爱火花,http://em.21dtv.com/songs/60034921.mkv +李勇-亲爱滴语,http://em.21dtv.com/songs/60085597.mkv +回声乐团-亲爱的我,http://em.21dtv.com/songs/60034543.mkv +丁晓红-亲爱的人,http://em.21dtv.com/songs/60068587.mkv +张燕-亲爱的人,http://em.21dtv.com/songs/60034539.mkv +阎维文+张燕-亲爱的人,http://em.21dtv.com/songs/60034538.mkv +姜育恒+陈英杰-亲爱的你,http://em.21dtv.com/songs/60117648.mkv +卓依婷-亲爱的你,http://em.21dtv.com/songs/60108358.mkv +张琰-亲爱的你,http://em.21dtv.com/songs/60097356.mkv +陈百强-亲爱的您,http://em.21dtv.com/songs/60088909.mkv +周艳泓-亲爱的你,http://em.21dtv.com/songs/60034516.mkv +佚名-亲爱的你,http://em.21dtv.com/songs/60034515.mkv +伍思凯-亲爱的你,http://em.21dtv.com/songs/60034514.mkv +陈百强-亲爱的你,http://em.21dtv.com/songs/60034513.mkv +伍佰-亲爱的你(演唱会),http://em.21dtv.com/songs/60034512.mkv +沈芳如-亲爱的你(无原唱),http://em.21dtv.com/songs/60034511.mkv +李文华-亲爱的妈,http://em.21dtv.com/songs/60132532.mkv +酒吧伤心人-情爱东流,http://em.21dtv.com/songs/60077231.mkv +顺子-亲爱的jazz,http://em.21dtv.com/songs/60034482.mkv +悠悠-亲爱的党,http://em.21dtv.com/songs/60034500.mkv +松竹梅兰-亲爱的党,http://em.21dtv.com/songs/60034499.mkv +辛龙-亲爱的Aloha,http://em.21dtv.com/songs/60080311.mkv +郭富城-亲爱宝贝,http://em.21dtv.com/songs/60034466.mkv +何韵诗-抛砖引玉,http://em.21dtv.com/songs/60064679.mkv +邹承恩-痞子英雄,http://em.21dtv.com/songs/60033405.mkv +邓丽欣-陪着我走,http://em.21dtv.com/songs/60033282.mkv +蒋蒋-痞子绅士,http://em.21dtv.com/songs/60106254.mkv +曾翠如-跑足全程,http://em.21dtv.com/songs/60115974.mkv +李国祥-陪着你走(演唱会),http://em.21dtv.com/songs/60077062.mkv +陈浩德+陈芷羚-陪着你走(演唱会),http://em.21dtv.com/songs/60077061.mkv +RUBBER BAND-陪着你走(演唱会),http://em.21dtv.com/songs/60061483.mkv +卢冠廷-陪着你走,http://em.21dtv.com/songs/60033276.mkv +古巨基-陪着你走(演唱会),http://em.21dtv.com/songs/60033275.mkv +邓丽欣-陪着你走(演唱会),http://em.21dtv.com/songs/60033274.mkv +许美静-迫在眉梢,http://em.21dtv.com/songs/60033657.mkv +李晓-屏住呼吸,http://em.21dtv.com/songs/60068563.mkv +汤潮-漂在北京,http://em.21dtv.com/songs/60102436.mkv +吴峙轩-朋友最真,http://em.21dtv.com/songs/60033363.mkv +董文华-朋友永远,http://em.21dtv.com/songs/60123124.mkv +费玉清-朋友一个,http://em.21dtv.com/songs/60105385.mkv +阿赖-朋友雄起,http://em.21dtv.com/songs/60114189.mkv +全国少儿歌曲-皮影戏儿,http://em.21dtv.com/songs/60071029.mkv +吕品+田娃-朋友兄弟,http://em.21dtv.com/songs/60067308.mkv +陈一郎-朋友兄弟(无原唱),http://em.21dtv.com/songs/60033358.mkv +孙志鹏-朋友天空,http://em.21dtv.com/songs/60110134.mkv +杨佳易-朋友是山,http://em.21dtv.com/songs/60112003.mkv +星阁-朋友是山,http://em.21dtv.com/songs/60102283.mkv +新街口组合-朋友十年,http://em.21dtv.com/songs/60122779.mkv +周笔畅-片羽时光,http://em.21dtv.com/songs/60116660.mkv +王识贤+杨哲-朋友乾杯,http://em.21dtv.com/songs/60033345.mkv +吴淑敏-朋友娘娘,http://em.21dtv.com/songs/60033344.mkv +刘轩瑞-朋友难得,http://em.21dtv.com/songs/60116600.mkv +羽泉-朋友难当,http://em.21dtv.com/songs/60033340.mkv +羽泉-朋友难当(演唱会),http://em.21dtv.com/songs/60033339.mkv +六哲-朋友名义,http://em.21dtv.com/songs/60103888.mkv +尹光+曾志伟-朋友两个,http://em.21dtv.com/songs/60090997.mkv +扎西-朋友吉祥,http://em.21dtv.com/songs/60113534.mkv +陈思思-平易近人,http://em.21dtv.com/songs/60112349.mkv +张可-平易近人,http://em.21dtv.com/songs/60077099.mkv +苗伟-朋友举杯,http://em.21dtv.com/songs/60069693.mkv +ARIANA GRANDE-put your hearts up,http://em.21dtv.com/songs/60073779.mkv +群星-put your hands up(演唱会),http://em.21dtv.com/songs/60004561.mkv +王英俊-朋友关系,http://em.21dtv.com/songs/60121944.mkv +何耀珊-漂洋过海,http://em.21dtv.com/songs/60089129.mkv +何耀珊-飘洋过海,http://em.21dtv.com/songs/60033541.mkv +巫启贤+马智宇-朋友干杯(演唱会),http://em.21dtv.com/songs/60077068.mkv +齐剑-朋友干杯,http://em.21dtv.com/songs/60061486.mkv +韩安旭-朋友而已,http://em.21dtv.com/songs/60119048.mkv +许志安+邓健泓-朋友二号(演唱会),http://em.21dtv.com/songs/60033335.mkv +邓健泓-朋友二号(演唱会),http://em.21dtv.com/songs/60033334.mkv +邓健泓+张敬轩-朋友二号(演唱会),http://em.21dtv.com/songs/60033333.mkv +南征北战+大鹏-破影而出,http://em.21dtv.com/songs/60122549.mkv +李紫涵-飘雨的夜,http://em.21dtv.com/songs/60116925.mkv +厉智敏-朋友的心,http://em.21dtv.com/songs/60077067.mkv +刘顽强-朋友弟兄,http://em.21dtv.com/songs/60033331.mkv +卓依婷-朋友的心,http://em.21dtv.com/songs/60033330.mkv +历智敏-朋友的心,http://em.21dtv.com/songs/60033329.mkv +赵真-朋友的心(演唱会),http://em.21dtv.com/songs/60033328.mkv +阿信-朋友的诗,http://em.21dtv.com/songs/60033326.mkv +鲍鹏-朋友的圈,http://em.21dtv.com/songs/60134482.mkv +安东阳-飘雨的秋,http://em.21dtv.com/songs/60120457.mkv +任贤齐-朋友的酒,http://em.21dtv.com/songs/60130069.mkv +李晓杰-朋友的酒,http://em.21dtv.com/songs/60061485.mkv +TWINS-朋友的爱,http://em.21dtv.com/songs/60033323.mkv +袁小迪-朋友保重,http://em.21dtv.com/songs/60069692.mkv +陈柏宇-拍一半拖,http://em.21dtv.com/songs/60033115.mkv +吕方-朋友别哭,http://em.21dtv.com/songs/60127816.mkv +钟明秋-朋友别哭,http://em.21dtv.com/songs/60126321.mkv +孙露-朋友别哭,http://em.21dtv.com/songs/60099937.mkv +胡海泉+肖洒-朋友别哭,http://em.21dtv.com/songs/60095060.mkv +张江-朋友别哭,http://em.21dtv.com/songs/60091130.mkv +孙国庆+陈妃平-朋友别哭,http://em.21dtv.com/songs/60083576.mkv +刘芳-朋友别哭,http://em.21dtv.com/songs/60077066.mkv +韦嘉-朋友别哭,http://em.21dtv.com/songs/60033321.mkv +吕方-朋友别哭,http://em.21dtv.com/songs/60033320.mkv +吕方-朋友别哭(演唱会),http://em.21dtv.com/songs/60033319.mkv +林正-平行宇宙,http://em.21dtv.com/songs/60135439.mkv +林正-平行宇宙,http://em.21dtv.com/songs/60133880.mkv +许嵩-平行宇宙,http://em.21dtv.com/songs/60124472.mkv +徐誉滕-平行宇宙,http://em.21dtv.com/songs/60111917.mkv +女孩与机器人-平行宇宙,http://em.21dtv.com/songs/60071034.mkv +张靓颖-破晓以后,http://em.21dtv.com/songs/60103291.mkv +张靓颖-破晓以后(动画),http://em.21dtv.com/songs/60102250.mkv +TRASH-平行时空,http://em.21dtv.com/songs/60120250.mkv +黄鸿升-平行时空,http://em.21dtv.com/songs/60064693.mkv +简迷离-平行世界,http://em.21dtv.com/songs/60127264.mkv +林倍妤-平行世界,http://em.21dtv.com/songs/60124122.mkv +李克勤-破晓时份,http://em.21dtv.com/songs/60092796.mkv +李克勤-破晓时分(演唱会),http://em.21dtv.com/songs/60033684.mkv +李克勤-破晓时分,http://em.21dtv.com/songs/60033683.mkv +朱其民-平行人生,http://em.21dtv.com/songs/60129214.mkv +张方-莆仙情缘,http://em.21dtv.com/songs/60120511.mkv +尹光-培训老婆(演唱会),http://em.21dtv.com/songs/60077064.mkv +宋祖英-飘香九州,http://em.21dtv.com/songs/60090972.mkv +宋祖英-飘香九洲,http://em.21dtv.com/songs/60033535.mkv +张敬轩-披星戴月,http://em.21dtv.com/songs/60033382.mkv +邱淑君-澎心菜头(无原唱),http://em.21dtv.com/songs/60033373.mkv +王力宏+黄明志-漂向北方,http://em.21dtv.com/songs/60135531.mkv +黄明志+王力宏-飘向北方,http://em.21dtv.com/songs/60134501.mkv +马克-陪我做梦,http://em.21dtv.com/songs/60135999.mkv +王杰-陪我做梦,http://em.21dtv.com/songs/60033271.mkv +佚名-陪我自己(无原唱),http://em.21dtv.com/songs/60033268.mkv +容祖儿-陪我长大,http://em.21dtv.com/songs/60033267.mkv +钟洁+RILL-陪我忘记,http://em.21dtv.com/songs/60101693.mkv +陈慧琳-陪我失眠,http://em.21dtv.com/songs/60033266.mkv +苏有朋-陪我伤悲,http://em.21dtv.com/songs/60091938.mkv +SUPER7-陪我7淘,http://em.21dtv.com/songs/60077058.mkv +叶瑷菱-陪我聊聊,http://em.21dtv.com/songs/60033264.mkv +子安圣皓-陪我离开,http://em.21dtv.com/songs/60063479.mkv +林志颖-陪我回家,http://em.21dtv.com/songs/60033262.mkv +苏打绿-陪我歌唱,http://em.21dtv.com/songs/60033261.mkv +赖伟锋-陪我到老,http://em.21dtv.com/songs/60126224.mkv +A-LIN-ps我爱你,http://em.21dtv.com/songs/60004546.mkv +金灿-菩提心语,http://em.21dtv.com/songs/60126302.mkv +刘向圆-普天同庆,http://em.21dtv.com/songs/60077104.mkv +黄宗泽-普天同爱,http://em.21dtv.com/songs/60033713.mkv +秦御峰-菩提树下,http://em.21dtv.com/songs/60119856.mkv +李嘉格-普通朋友,http://em.21dtv.com/songs/60104195.mkv +小刚-普通朋友,http://em.21dtv.com/songs/60090984.mkv +周笔畅-普通朋友,http://em.21dtv.com/songs/60087598.mkv +蔡依林-普通朋友,http://em.21dtv.com/songs/60083590.mkv +陶喆-普通朋友,http://em.21dtv.com/songs/60033720.mkv +梁汉文-普通朋友,http://em.21dtv.com/songs/60033719.mkv +张崇基+张崇德-普通朋友(演唱会),http://em.21dtv.com/songs/60033718.mkv +J Cera-扑通扑通,http://em.21dtv.com/songs/60129945.mkv +LABOUM-扑通扑通,http://em.21dtv.com/songs/60103793.mkv +王馨平-普通女人,http://em.21dtv.com/songs/60033716.mkv +吉娃斯·杜岚-普通男人(无原唱),http://em.21dtv.com/songs/60033715.mkv +余天-葡萄美酒,http://em.21dtv.com/songs/60033705.mkv +佚名-葡萄美酒,http://em.21dtv.com/songs/60033704.mkv +刘文正-葡萄美酒,http://em.21dtv.com/songs/60033703.mkv +SPEXIAL-拼贴记忆,http://em.21dtv.com/songs/60104734.mkv +AME-play the game boy,http://em.21dtv.com/songs/60071649.mkv +陈伟联-普通的人,http://em.21dtv.com/songs/60033714.mkv +卜学亮-party to9t,http://em.21dtv.com/songs/60004431.mkv +杭天琪-萍水相逢,http://em.21dtv.com/songs/60086754.mkv +周华健+陈淑桦-萍水相逢,http://em.21dtv.com/songs/60033647.mkv +林慧萍-萍水相逢(无原唱),http://em.21dtv.com/songs/60033646.mkv +夏雪飞+应子栋-菩萨日记,http://em.21dtv.com/songs/60033696.mkv +李强-菩萨菩萨,http://em.21dtv.com/songs/60116908.mkv +刘心-凭什么说,http://em.21dtv.com/songs/60064694.mkv +门旭阳-破碎梦境,http://em.21dtv.com/songs/60113035.mkv +李克勤-please say i do,http://em.21dtv.com/songs/60073754.mkv +李逸朗+蒋雅文-普世欢腾,http://em.21dtv.com/songs/60033712.mkv +甲子慧-破碎的心,http://em.21dtv.com/songs/60111314.mkv +冷漠-破碎的心,http://em.21dtv.com/songs/60062580.mkv +潘秀琼-破碎的心,http://em.21dtv.com/songs/60033670.mkv +陈珊妮-破碎的人,http://em.21dtv.com/songs/60080463.mkv +张惠妹-排山倒海,http://em.21dtv.com/songs/60033124.mkv +王瑞霞-破碎的爱(无原唱),http://em.21dtv.com/songs/60074527.mkv +佚名-破碎的爱(无原唱),http://em.21dtv.com/songs/60033668.mkv +崔子格-怦然心动,http://em.21dtv.com/songs/60129027.mkv +崔子格-怦然心动,http://em.21dtv.com/songs/60127935.mkv +AOA-怦然心动,http://em.21dtv.com/songs/60113127.mkv +奇然-譬如朝露,http://em.21dtv.com/songs/60104024.mkv +詹雅雯-骗人彼多,http://em.21dtv.com/songs/60033441.mkv +LUNAR-PRAY,http://em.21dtv.com/songs/60123497.mkv +Jkai-Pray,http://em.21dtv.com/songs/60121255.mkv +慕容晓晓-骗情骗爱,http://em.21dtv.com/songs/60121712.mkv +叶倩文-凭千个心,http://em.21dtv.com/songs/60033628.mkv +司空雷-品牌先生,http://em.21dtv.com/songs/60132278.mkv +司空雷-品牌先生,http://em.21dtv.com/songs/60131239.mkv +李美凤-偏偏是你,http://em.21dtv.com/songs/60033417.mkv +何锦泉+蒋文端-琵琶上路,http://em.21dtv.com/songs/60033404.mkv +张杰-婆婆世界,http://em.21dtv.com/songs/60113472.mkv +梁咏琪-泡泡世界,http://em.21dtv.com/songs/60033218.mkv +元朝-乒乓人生,http://em.21dtv.com/songs/60097235.mkv +元朝-乒乓日记,http://em.21dtv.com/songs/60097236.mkv +元朝-乒乓情歌,http://em.21dtv.com/songs/60096193.mkv +谢作健-乒乒乓乓,http://em.21dtv.com/songs/60118045.mkv +本兮-泡泡泡泡,http://em.21dtv.com/songs/60077052.mkv +唐飞-漂丿男人,http://em.21dtv.com/songs/60077086.mkv +周传雄-琵琶乱弹,http://em.21dtv.com/songs/60125308.mkv +张争-陪陪老娘,http://em.21dtv.com/songs/60132431.mkv +韩旭-陪陪老娘,http://em.21dtv.com/songs/60111520.mkv +钱裕-偏偏怀念,http://em.21dtv.com/songs/60131914.mkv +星弟-偏偏怀念,http://em.21dtv.com/songs/60099265.mkv +龙千玉-漂泊风声,http://em.21dtv.com/songs/60136056.mkv +龙千玉-漂泊风声,http://em.21dtv.com/songs/60134519.mkv +张清芳-翩翩飞起,http://em.21dtv.com/songs/60033429.mkv +911-party people friday night,http://em.21dtv.com/songs/60004428.mkv +佚名-picture postcards from l a (无原唱),http://em.21dtv.com/songs/60004468.mkv +袁东方-漂泊的人,http://em.21dtv.com/songs/60124459.mkv +八斤-陪陪爹娘,http://em.21dtv.com/songs/60128806.mkv +易欣-匹配的爱,http://em.21dtv.com/songs/60109393.mkv +佚名-片片彩霞,http://em.21dtv.com/songs/60033434.mkv +CELINE DION-power of the dream,http://em.21dtv.com/songs/60004515.mkv +教练 COACH-Pollo Frito 鸡排,http://em.21dtv.com/songs/60128033.mkv +MAC MILLER-party on fifth ave,http://em.21dtv.com/songs/60067967.mkv +佚名-puppet on a string,http://em.21dtv.com/songs/60004549.mkv +祖峰-陪你左右,http://em.21dtv.com/songs/60121976.mkv +张津涤-陪你做梦,http://em.21dtv.com/songs/60117736.mkv +动静乐团-怕你走了,http://em.21dtv.com/songs/60033102.mkv +回音哥-陪你走过,http://em.21dtv.com/songs/60111790.mkv +林忆莲-盼你在此(演唱会),http://em.21dtv.com/songs/60033158.mkv +梁汉文-陪你一生,http://em.21dtv.com/songs/60033249.mkv +安以轩+李承铉-陪你幸福,http://em.21dtv.com/songs/60081605.mkv +戚薇-陪你天涯,http://em.21dtv.com/songs/60111926.mkv +王歌-怕你受累,http://em.21dtv.com/songs/60064678.mkv +冷漠-陪你散步,http://em.21dtv.com/songs/60099108.mkv +张雷-陪你散步,http://em.21dtv.com/songs/60077057.mkv +王瀚-陪你去看,http://em.21dtv.com/songs/60127199.mkv +吴宗宪-陪你淋雨,http://em.21dtv.com/songs/60033243.mkv +陈柏全-陪你狂乱,http://em.21dtv.com/songs/60033242.mkv +伍华+孙莞-陪你看花,http://em.21dtv.com/songs/60105578.mkv +关淑怡-叛逆汉子(演唱会),http://em.21dtv.com/songs/60033175.mkv +王建荣-怕你回来,http://em.21dtv.com/songs/60128226.mkv +春妹-盼你回来,http://em.21dtv.com/songs/60033157.mkv +庄学忠-盼你回航,http://em.21dtv.com/songs/60033156.mkv +望海高歌-盼你归航,http://em.21dtv.com/songs/60102308.mkv +林子祥-陪你倒数,http://em.21dtv.com/songs/60067306.mkv +张国荣-陪你倒数,http://em.21dtv.com/songs/60033231.mkv +张国荣-陪你倒数(演唱会),http://em.21dtv.com/songs/60033230.mkv +张曼莉-陪你睇波,http://em.21dtv.com/songs/60125508.mkv +高阳+陈立青-陪你长大,http://em.21dtv.com/songs/60129821.mkv +田雷-陪你长大,http://em.21dtv.com/songs/60116176.mkv +王铎+王忆霏-陪你变老,http://em.21dtv.com/songs/60121957.mkv +小伟哥-陪你变老,http://em.21dtv.com/songs/60116739.mkv +卓玛央宗+三木科-普姆卓玛,http://em.21dtv.com/songs/60134960.mkv +许志安-旁门左道,http://em.21dtv.com/songs/60069690.mkv +雷琛瑜-拼命虚耗,http://em.21dtv.com/songs/60100620.mkv +永邦-平民天下,http://em.21dtv.com/songs/60033620.mkv +秋裤大叔-拼命三郎,http://em.21dtv.com/songs/60108764.mkv +太极乐队-拼命三郎,http://em.21dtv.com/songs/60033556.mkv +阿悄-泡面人生,http://em.21dtv.com/songs/60128502.mkv +王杰-泡沫情感,http://em.21dtv.com/songs/60092986.mkv +海生-拼命爱你,http://em.21dtv.com/songs/60069696.mkv +林采缇-Pmam,http://em.21dtv.com/songs/60125796.mkv +文夏-漂浪之女,http://em.21dtv.com/songs/60078879.mkv +罗时丰-飘浪之女,http://em.21dtv.com/songs/60077089.mkv +黄乙玲-漂浪之女,http://em.21dtv.com/songs/60054484.mkv +佚名-飘浪之女,http://em.21dtv.com/songs/60033522.mkv +陈盈洁-飘浪之女,http://em.21dtv.com/songs/60033521.mkv +蔡琴-飘浪之女,http://em.21dtv.com/songs/60033520.mkv +曾心梅-漂浪之女,http://em.21dtv.com/songs/60033472.mkv +叶瑗菱-漂亮一下,http://em.21dtv.com/songs/60033486.mkv +钟舒漫+钟舒祺-漂亮衣裳,http://em.21dtv.com/songs/60107293.mkv +方瑞娥-漂浪一生,http://em.21dtv.com/songs/60033471.mkv +金娜英-盼了又盼,http://em.21dtv.com/songs/60105442.mkv +蔡健雅-漂亮一点,http://em.21dtv.com/songs/60092025.mkv +代言-漂亮小妹,http://em.21dtv.com/songs/60112496.mkv +陈奕迅-瞟了小姐,http://em.21dtv.com/songs/60088859.mkv +陈奕迅-漂亮小姐,http://em.21dtv.com/songs/60033485.mkv +王杰-飘流物语,http://em.21dtv.com/songs/60033532.mkv +王杰-漂流物语,http://em.21dtv.com/songs/60033493.mkv +郑俊海-霹雳特警,http://em.21dtv.com/songs/60100505.mkv +陈盈洁-破浪人生,http://em.21dtv.com/songs/60033665.mkv +谢莉婷-漂浪人生,http://em.21dtv.com/songs/60033470.mkv +李茂山-漂浪情深,http://em.21dtv.com/songs/60095637.mkv +佚名-漂浪情深,http://em.21dtv.com/songs/60095426.mkv +林心如-趴啦趴拿,http://em.21dtv.com/songs/60033080.mkv +麻吉弟弟-辟哩啪啦,http://em.21dtv.com/songs/60041351.mkv +麻吉弟弟-劈哩啪啦,http://em.21dtv.com/songs/60033389.mkv +G.NA-漂亮内衣,http://em.21dtv.com/songs/60101214.mkv +佩希-漂亮女王,http://em.21dtv.com/songs/60120317.mkv +龚玥菲-漂亮女人,http://em.21dtv.com/songs/60077083.mkv +小宇-漂亮女孩,http://em.21dtv.com/songs/60033483.mkv +宋念宇-漂亮女孩,http://em.21dtv.com/songs/60033482.mkv +M2M-漂亮男孩,http://em.21dtv.com/songs/60033480.mkv +谭晶-漂亮妈妈,http://em.21dtv.com/songs/60112246.mkv +韦嘉-扑啦啦飞,http://em.21dtv.com/songs/60033692.mkv +古巨基-飘流教室(演唱会),http://em.21dtv.com/songs/60033529.mkv +古巨基-漂流教室,http://em.21dtv.com/songs/60033490.mkv +薛家燕+CHIPS-霹雳红唇,http://em.21dtv.com/songs/60033391.mkv +封雷-漂亮姑娘,http://em.21dtv.com/songs/60068560.mkv +王锐-漂亮姑娘,http://em.21dtv.com/songs/60033478.mkv +额尔古纳乐队-漂亮姑娘,http://em.21dtv.com/songs/60033477.mkv +狄易达-霹雳干戈,http://em.21dtv.com/songs/60033390.mkv +涂筱雯-飘浪的心(无原唱),http://em.21dtv.com/songs/60074944.mkv +陈雷-飘浪的人,http://em.21dtv.com/songs/60033519.mkv +苏玮-飘零的秋,http://em.21dtv.com/songs/60122060.mkv +文欣-漂亮东方,http://em.21dtv.com/songs/60033476.mkv +葛笑-飘零的爱,http://em.21dtv.com/songs/60110498.mkv +马响-飘零的爱,http://em.21dtv.com/songs/60085570.mkv +张斌-漂亮宝贝,http://em.21dtv.com/songs/60129082.mkv +Michael Learns to Rock+杨斯捷-漂流爱情,http://em.21dtv.com/songs/60134765.mkv +陈俐安-片刻绮想,http://em.21dtv.com/songs/60071030.mkv +钟舒漫-破镜重圆,http://em.21dtv.com/songs/60122204.mkv +翁立友+龙千玉-破镜重圆,http://em.21dtv.com/songs/60033663.mkv +汪峰-贫瘠之歌(演唱会),http://em.21dtv.com/songs/60094201.mkv +王开煜-破镜无缘,http://em.21dtv.com/songs/60099406.mkv +小刚-啤酒泡泡,http://em.21dtv.com/songs/60087706.mkv +迈克鸿飞-破镜能圆,http://em.21dtv.com/songs/60114113.mkv +伊光-啤酒女郎,http://em.21dtv.com/songs/60092246.mkv +胡美仪-破镜盟心,http://em.21dtv.com/songs/60093065.mkv +许茹芸-啤酒咖啡,http://em.21dtv.com/songs/60033398.mkv +WITNESS+萧淑慎-萍聚dont cry,http://em.21dtv.com/songs/60033645.mkv +李玟-perfect in every way,http://em.21dtv.com/songs/60004450.mkv +贾晓晨+樊少皇-平衡宇宙,http://em.21dtv.com/songs/60097195.mkv +BIRDY-people help the people,http://em.21dtv.com/songs/60073746.mkv +高瑜-平行世界,http://em.21dtv.com/songs/60080149.mkv +平湖秋月-平湖秋月,http://em.21dtv.com/songs/60121631.mkv +郑锦昌-平湖秋月(演唱会),http://em.21dtv.com/songs/60077098.mkv +刘珺儿-平湖秋月,http://em.21dtv.com/songs/60033618.mkv +梁耀文+蒋文端-平湖秋月,http://em.21dtv.com/songs/60033617.mkv +胡美仪-平湖秋月(演唱会),http://em.21dtv.com/songs/60033616.mkv +陈浩德+方伊琪-平湖秋月(演唱会),http://em.21dtv.com/songs/60033615.mkv +詹雅雯-澎湖恋歌,http://em.21dtv.com/songs/60033371.mkv +孙艺山-徘徊灌溉,http://em.21dtv.com/songs/60107657.mkv +佚名-澎湖菜瓜,http://em.21dtv.com/songs/60033370.mkv +罗时丰-澎湖菜瓜,http://em.21dtv.com/songs/60033369.mkv +江若琳-旁观者伤,http://em.21dtv.com/songs/60033189.mkv +江若琳-旁观者伤(演唱会),http://em.21dtv.com/songs/60033188.mkv +童唱-排骨仔队,http://em.21dtv.com/songs/60033119.mkv +林峯-旁观者悲,http://em.21dtv.com/songs/60121818.mkv +毛泽少-屁股翘翘,http://em.21dtv.com/songs/60117881.mkv +王江发+云曼-拼过情关,http://em.21dtv.com/songs/60116155.mkv +张伟文+胡美仪-平贵别窑(演唱会),http://em.21dtv.com/songs/60033608.mkv +薛启超+王彩艳-苹果爱情,http://em.21dtv.com/songs/60104418.mkv +韩庚-痞夫之勇,http://em.21dtv.com/songs/60117369.mkv +陈宏洲-平凡之路,http://em.21dtv.com/songs/60135913.mkv +低调组合-平凡之路,http://em.21dtv.com/songs/60126599.mkv +张信哲-平凡之路,http://em.21dtv.com/songs/60119497.mkv +侃侃-平凡之路,http://em.21dtv.com/songs/60116549.mkv +谭维维-平凡之路,http://em.21dtv.com/songs/60115403.mkv +朴树-平凡之路,http://em.21dtv.com/songs/60102319.mkv +陈小春-平凡英雄,http://em.21dtv.com/songs/60077096.mkv +陈雷-平凡英雄,http://em.21dtv.com/songs/60033606.mkv +丁当-平凡相依,http://em.21dtv.com/songs/60072280.mkv +蔡少芬+张晋-平凡相恋,http://em.21dtv.com/songs/60097194.mkv +夏冬-泡芙小姐,http://em.21dtv.com/songs/60082015.mkv +石梅-平凡女人,http://em.21dtv.com/songs/60033601.mkv +刘亦菲-泡芙女孩,http://em.21dtv.com/songs/60033210.mkv +林欣彤-平凡明星,http://em.21dtv.com/songs/60062655.mkv +石文-匹夫靡秋,http://em.21dtv.com/songs/60097167.mkv +徐方-平凡夫妻,http://em.21dtv.com/songs/60105898.mkv +王子霆+王蓉-漂浮的云,http://em.21dtv.com/songs/60077077.mkv +艾温呢-漂浮的心,http://em.21dtv.com/songs/60124844.mkv +李宇春-漂浮地铁,http://em.21dtv.com/songs/60033464.mkv +李宇春-漂浮地铁(演唱会),http://em.21dtv.com/songs/60033463.mkv +刘小雅-平凡的梦,http://em.21dtv.com/songs/60110024.mkv +老狼-漂浮的家,http://em.21dtv.com/songs/60128317.mkv +李亮超-平凡的爱,http://em.21dtv.com/songs/60085572.mkv +张皓强-平凡百姓,http://em.21dtv.com/songs/60127993.mkv +谭晶-普洱之恋,http://em.21dtv.com/songs/60072282.mkv +CLC-Pepe,http://em.21dtv.com/songs/60109805.mkv +丸子+COSMO-perfect的完结,http://em.21dtv.com/songs/60004452.mkv +F.I.X-please dont say,http://em.21dtv.com/songs/60066712.mkv +古巨基-判得太迟,http://em.21dtv.com/songs/60033142.mkv +佚名-please dont say goodnight,http://em.21dtv.com/songs/60004487.mkv +DIVA-plural divas or dive,http://em.21dtv.com/songs/60004493.mkv +王洪迪-攀登梦想,http://em.21dtv.com/songs/60106111.mkv +熊七梅-拼爹坑爹,http://em.21dtv.com/songs/60104295.mkv +康康-浦东机场,http://em.21dtv.com/songs/60087778.mkv +佚名-pulang di hari raya,http://em.21dtv.com/songs/60004548.mkv +佚名-please dont go girl,http://em.21dtv.com/songs/60004484.mkv +五月天-派对动物,http://em.21dtv.com/songs/60122475.mkv +佚名-飘荡的我(无原唱),http://em.21dtv.com/songs/60033514.mkv +COOKIES-派对动物,http://em.21dtv.com/songs/60033130.mkv +吴雨霏-派对动物(演唱会),http://em.21dtv.com/songs/60033129.mkv +邓丽欣-派对动物(演唱会),http://em.21dtv.com/songs/60033128.mkv +徐良-平淡的歌,http://em.21dtv.com/songs/60113527.mkv +林淑蓉-配对成双,http://em.21dtv.com/songs/60088115.mkv +CARON NIGHTINGALE-promises dont come easy,http://em.21dtv.com/songs/60004542.mkv +红尘独舞-鹏城之歌,http://em.21dtv.com/songs/60033368.mkv +糖兄妹-跑出天际,http://em.21dtv.com/songs/60062988.mkv +谢霆锋-平常少女,http://em.21dtv.com/songs/60093188.mkv +张军-蒲城情思,http://em.21dtv.com/songs/60117720.mkv +ReVe-派错派对,http://em.21dtv.com/songs/60133270.mkv +吴淑敏+宝妈-陪伴幸福,http://em.21dtv.com/songs/60077054.mkv +黄锦雯+宝妈-陪伴幸福,http://em.21dtv.com/songs/60071025.mkv +THE VACCINES-post break up sex,http://em.21dtv.com/songs/60060891.mkv +4 IN LOVE-陪伴天使,http://em.21dtv.com/songs/60090372.mkv +何锦泉+蒋文端-琵耙上路,http://em.21dtv.com/songs/60033400.mkv +关心妍-庞贝世紀,http://em.21dtv.com/songs/60087355.mkv +牛飞-疲惫司机,http://em.21dtv.com/songs/60033395.mkv +廖昌永-拼搏人生,http://em.21dtv.com/songs/60131388.mkv +洪一平-平步倾云,http://em.21dtv.com/songs/60033589.mkv +叶胜钦-漂泊男儿,http://em.21dtv.com/songs/60077076.mkv +李明洋-捧杯敬月,http://em.21dtv.com/songs/60118679.mkv +容祖儿-跑步机上,http://em.21dtv.com/songs/60033202.mkv +容祖儿-跑步机上(演唱会),http://em.21dtv.com/songs/60033201.mkv +黄耀明+容祖儿-跑步机上(演唱会),http://em.21dtv.com/songs/60033200.mkv +S.H.E-迫不及待,http://em.21dtv.com/songs/60072281.mkv +张清芳-迫不及待,http://em.21dtv.com/songs/60033656.mkv +梁咏琪-迫不得已(演唱会),http://em.21dtv.com/songs/60033655.mkv +容祖儿-漂白的心,http://em.21dtv.com/songs/60090976.mkv +袁小迪+向惠玲-漂泊的爱,http://em.21dtv.com/songs/60033455.mkv +和汇慧-普遍爱情,http://em.21dtv.com/songs/60103166.mkv +江涛-平安中国,http://em.21dtv.com/songs/60077094.mkv +モーニング娘。-Password is 0,http://em.21dtv.com/songs/60101229.mkv +乌兰托娅-平安是福,http://em.21dtv.com/songs/60098074.mkv +李殊-平安是福,http://em.21dtv.com/songs/60033580.mkv +猪哥亮-皮阿诺桑(演唱会),http://em.21dtv.com/songs/60077071.mkv +CELINE DION-parler a mon pere(演唱会),http://em.21dtv.com/songs/60073737.mkv +韩锋-平安旅行,http://em.21dtv.com/songs/60071033.mkv +丁力-平安快乐,http://em.21dtv.com/songs/60033579.mkv +SS301-PAIN,http://em.21dtv.com/songs/60119192.mkv +郑冬生+刘洋-平安回家,http://em.21dtv.com/songs/60033577.mkv +童唱-平安回家,http://em.21dtv.com/songs/60033576.mkv +张也-平安大道,http://em.21dtv.com/songs/60033573.mkv +东方神起-o正反合,http://em.21dtv.com/songs/60004390.mkv +张可儿-偶遇情缘,http://em.21dtv.com/songs/60101078.mkv +男人唐潮-哦呦姑娘,http://em.21dtv.com/songs/60071019.mkv +MAYDAY PARADE-oh well oh well,http://em.21dtv.com/songs/60066703.mkv +黄晓明-one world one dream,http://em.21dtv.com/songs/60004317.mkv +SYLVER-one world one dream,http://em.21dtv.com/songs/60004316.mkv +ONE DIRECTION-one way or another,http://em.21dtv.com/songs/60073711.mkv +李恩珠-only when i sleep,http://em.21dtv.com/songs/60084753.mkv +袁野-OVER,http://em.21dtv.com/songs/60131803.mkv +古巨基-once upon a time,http://em.21dtv.com/songs/60063698.mkv +BOB SEGER-old time rock & roll,http://em.21dtv.com/songs/60004255.mkv +WILLIE NELSON-on the road again,http://em.21dtv.com/songs/60004268.mkv +甜美真-噢甜美真,http://em.21dtv.com/songs/60098661.mkv +童唱-噢苏珊娜,http://em.21dtv.com/songs/60033038.mkv +佚名-噢苏姗娜,http://em.21dtv.com/songs/60033037.mkv +赵传-噢 莎莉,http://em.21dtv.com/songs/60132914.mkv +阿英-哦四姑娘,http://em.21dtv.com/songs/60077042.mkv +王雪晶-哦!十分钟,http://em.21dtv.com/songs/60033040.mkv +佚名-噢!圣诞树,http://em.21dtv.com/songs/60033028.mkv +张永智-偶然遇见,http://em.21dtv.com/songs/60033063.mkv +郭成林-偶然相遇,http://em.21dtv.com/songs/60134325.mkv +郭成林-偶然相遇,http://em.21dtv.com/songs/60131890.mkv +李魏西-偶然听说,http://em.21dtv.com/songs/60100172.mkv +TIM MCGRAW-one of those nights,http://em.21dtv.com/songs/60073708.mkv +王力宏-one of these days,http://em.21dtv.com/songs/60004301.mkv +佚名-out of the blue,http://em.21dtv.com/songs/60004374.mkv +MICHAEL LEARNS TO ROCK-out of the blue(演唱会),http://em.21dtv.com/songs/60004373.mkv +苏打绿-oh oh oh oh,http://em.21dtv.com/songs/60004230.mkv +LUPE FIASCO-out of my head,http://em.21dtv.com/songs/60062102.mkv +G-DRAGON-one of a kind,http://em.21dtv.com/songs/60070382.mkv +梅艳芳-oh no oh yes(演唱会),http://em.21dtv.com/songs/60004228.mkv +胡彦斌-one night in shanghai,http://em.21dtv.com/songs/60063702.mkv +李克勤-one night in paris,http://em.21dtv.com/songs/60004296.mkv +GEEKS-officially missing you geeks,http://em.21dtv.com/songs/60082285.mkv +LULU-oh me oh my,http://em.21dtv.com/songs/60004223.mkv +苏姗-one moment in time(演唱会),http://em.21dtv.com/songs/60073704.mkv +A.HAMMOND-J.BETTIS-one moment in time,http://em.21dtv.com/songs/60004287.mkv +Disclosure+Sam Smith-Omen,http://em.21dtv.com/songs/60114938.mkv +JERROD NIEMANN-one more dringinsong,http://em.21dtv.com/songs/60066705.mkv +JERROD NIEMANN-one more drinkinsong,http://em.21dtv.com/songs/60065664.mkv +佚名-our last song together,http://em.21dtv.com/songs/60004362.mkv +TENSION-one life one love,http://em.21dtv.com/songs/60004283.mkv +佚名-o lets do it,http://em.21dtv.com/songs/60004201.mkv +B1A4-only learned bad things,http://em.21dtv.com/songs/60073719.mkv +LADY ANTEBELLUM-our kind of love,http://em.21dtv.com/songs/60004361.mkv +才娜旺姆-OKOK,http://em.21dtv.com/songs/60125605.mkv +林琳+傅颖-okok,http://em.21dtv.com/songs/60122907.mkv +佚名-哦!救救我(迪斯科),http://em.21dtv.com/songs/60033042.mkv +林忆莲-only just a dream,http://em.21dtv.com/songs/60004329.mkv +D.GIBSON-only in my dreams(无原唱),http://em.21dtv.com/songs/60004328.mkv +佚名-one in a million,http://em.21dtv.com/songs/60004282.mkv +MCFLY-one for the radio,http://em.21dtv.com/songs/60063699.mkv +夏天-偶尔善良,http://em.21dtv.com/songs/60125335.mkv +MARTIN SOLVEIG-one 2 3 four,http://em.21dtv.com/songs/60067964.mkv +VenusBoy-偶滴舞神,http://em.21dtv.com/songs/60117513.mkv +陈瑞-藕断丝连,http://em.21dtv.com/songs/60116351.mkv +陈瑞-藕断丝连,http://em.21dtv.com/songs/60106417.mkv +海恋+网络歌手-藕断丝连,http://em.21dtv.com/songs/60089403.mkv +刘德华-藕断丝莲,http://em.21dtv.com/songs/60033079.mkv +海恋-藕断丝连,http://em.21dtv.com/songs/60033077.mkv +大哲-藕断丝连,http://em.21dtv.com/songs/60033076.mkv +陈瑞-藕断丝连,http://em.21dtv.com/songs/60033075.mkv +ELBOW-one day like this,http://em.21dtv.com/songs/60073700.mkv +宋庆琳-欧巴欧巴,http://em.21dtv.com/songs/60085563.mkv +佚名-old before i die,http://em.21dtv.com/songs/60004252.mkv +ROBBIE WILLIAMS-old before i die,http://em.21dtv.com/songs/60004251.mkv +流苏-哦 宝贝,http://em.21dtv.com/songs/60102483.mkv +A.J.LERNER-B.LANE-on a clear day(无原唱),http://em.21dtv.com/songs/60004260.mkv +李克勤-你最重要,http://em.21dtv.com/songs/60111155.mkv +黄铠晴-女子中学,http://em.21dtv.com/songs/60033024.mkv +辛晓琪-你走之前,http://em.21dtv.com/songs/60032580.mkv +唐嫣+罗晋-你最珍贵,http://em.21dtv.com/songs/60133509.mkv +李炜+江映蓉-你最珍贵,http://em.21dtv.com/songs/60098475.mkv +张学友-你最珍贵,http://em.21dtv.com/songs/60032594.mkv +张学友+高慧君-你最珍贵,http://em.21dtv.com/songs/60032593.mkv +高慧君+陈晓东-你最珍贵(演唱会),http://em.21dtv.com/songs/60032592.mkv +王胤祺-你最耀眼,http://em.21dtv.com/songs/60083544.mkv +孙淑媚-你知影无,http://em.21dtv.com/songs/60032560.mkv +瞿颖-你自由了,http://em.21dtv.com/songs/60032565.mkv +肖镒舟-你走以后,http://em.21dtv.com/songs/60119892.mkv +唐古-你走以后,http://em.21dtv.com/songs/60115766.mkv +王子月-你走以后,http://em.21dtv.com/songs/60114680.mkv +蓝心湄-浓妆摇滚,http://em.21dtv.com/songs/60032774.mkv +TWINS-你最勇敢,http://em.21dtv.com/songs/60032591.mkv +苏醒-你最醒目,http://em.21dtv.com/songs/60032590.mkv +陈淑芳-南庄细妹,http://em.21dtv.com/songs/60031159.mkv +许廷铿-你在我在,http://em.21dtv.com/songs/60130744.mkv +许廷铿-你在我在,http://em.21dtv.com/songs/60128397.mkv +谭咏麟-你知我知,http://em.21dtv.com/songs/60032559.mkv +谭咏麟+张桑悦+丁菲飞-你知我知(演唱会),http://em.21dtv.com/songs/60032558.mkv +林姗-你最无情,http://em.21dtv.com/songs/60089997.mkv +高胜美-你最无情,http://em.21dtv.com/songs/60032588.mkv +Mamamoo-你最完美,http://em.21dtv.com/songs/60134753.mkv +黄耀明-你真伟大,http://em.21dtv.com/songs/60032536.mkv +佚名-你在他乡,http://em.21dtv.com/songs/60032470.mkv +刚泽斌-你在他乡,http://em.21dtv.com/songs/60032469.mkv +路煜埝-你最特别,http://em.21dtv.com/songs/60067293.mkv +容中尔甲-你在天边,http://em.21dtv.com/songs/60032472.mkv +任贤齐-你在说谎,http://em.21dtv.com/songs/60032468.mkv +陈芳语-你在身边,http://em.21dtv.com/songs/60097286.mkv +江蕙-你着忍耐(演唱会),http://em.21dtv.com/songs/60064662.mkv +江蕙-你着忍耐,http://em.21dtv.com/songs/60032522.mkv +曾心梅-你着忍耐,http://em.21dtv.com/songs/60032521.mkv +袁成杰+戚薇-男左女右,http://em.21dtv.com/songs/60031080.mkv +古巨基+关淑怡-男左女右(演唱会),http://em.21dtv.com/songs/60031079.mkv +郭经纬-你追女生,http://em.21dtv.com/songs/60120030.mkv +刘星宏-你在哪里,http://em.21dtv.com/songs/60125198.mkv +刘星宏-你在哪里,http://em.21dtv.com/songs/60125197.mkv +张雅卓-你在哪里,http://em.21dtv.com/songs/60111896.mkv +钰涵-你在哪里,http://em.21dtv.com/songs/60108100.mkv +胡夏-你在哪里,http://em.21dtv.com/songs/60105308.mkv +筷子兄弟-你在哪里,http://em.21dtv.com/songs/60101464.mkv +张杰-你在哪里,http://em.21dtv.com/songs/60097287.mkv +樊凡-你在哪里,http://em.21dtv.com/songs/60080956.mkv +吴歌-你在哪里,http://em.21dtv.com/songs/60076980.mkv +罗百吉-你在哪里,http://em.21dtv.com/songs/60071006.mkv +黄灿-你在哪里,http://em.21dtv.com/songs/60069677.mkv +潘广益-你在哪里,http://em.21dtv.com/songs/60064659.mkv +于洋-你在那里,http://em.21dtv.com/songs/60061468.mkv +薛凯琪-你在那里,http://em.21dtv.com/songs/60032466.mkv +张静-你在哪里,http://em.21dtv.com/songs/60032464.mkv +薛凯琪-你在哪里,http://em.21dtv.com/songs/60032463.mkv +薛凯琪-你在哪里(演唱会),http://em.21dtv.com/songs/60032462.mkv +吉克隽逸-那种女孩,http://em.21dtv.com/songs/60117607.mkv +范晓萱-那种女孩,http://em.21dtv.com/songs/60088553.mkv +叶童-你怎么说,http://em.21dtv.com/songs/60099856.mkv +青山+雪飘飘-你怎么说,http://em.21dtv.com/songs/60096540.mkv +孟文豪-你怎么说,http://em.21dtv.com/songs/60076987.mkv +刘惜君-你怎么说,http://em.21dtv.com/songs/60071007.mkv +卓依婷-你怎么说,http://em.21dtv.com/songs/60032509.mkv +梁雁翎-你怎么说,http://em.21dtv.com/songs/60032508.mkv +韩宝仪-你怎么说,http://em.21dtv.com/songs/60032507.mkv +梁雁翎-你怎么说(演唱会),http://em.21dtv.com/songs/60032506.mkv +邓丽君-你怎么说(演唱会),http://em.21dtv.com/songs/60032505.mkv +陈卿-你怎么了,http://em.21dtv.com/songs/60119007.mkv +张继心-你最美丽,http://em.21dtv.com/songs/60096078.mkv +周蕙-你真美丽,http://em.21dtv.com/songs/60090850.mkv +NO_NAME_余宪忠-你最明瞭,http://em.21dtv.com/songs/60087209.mkv +群星-你最美丽,http://em.21dtv.com/songs/60069678.mkv +NO NAME-你最明了,http://em.21dtv.com/songs/60032586.mkv +张露-你真美丽,http://em.21dtv.com/songs/60032535.mkv +吕珊-你真美丽,http://em.21dtv.com/songs/60032534.mkv +蓝雨-你怎么看,http://em.21dtv.com/songs/60076983.mkv +苏芮-你走了吗(无原唱),http://em.21dtv.com/songs/60032573.mkv +廖丽娜-你真可恶(无原唱),http://em.21dtv.com/songs/60032532.mkv +陈金祥-你真可恶(无原唱),http://em.21dtv.com/songs/60032531.mkv +吴大维-你自己走,http://em.21dtv.com/songs/60032564.mkv +倪彬-你走进我,http://em.21dtv.com/songs/60133378.mkv +陈思玮-你这家伙,http://em.21dtv.com/songs/60130842.mkv +崔子格-你在就好,http://em.21dtv.com/songs/60129024.mkv +万妮达-牛仔很忙,http://em.21dtv.com/songs/60125064.mkv +周杰伦-牛仔很忙,http://em.21dtv.com/songs/60032737.mkv +黄家强-哪咤回家,http://em.21dtv.com/songs/60030680.mkv +林子祥-你在何方(演唱会),http://em.21dtv.com/songs/60032458.mkv +张国荣-你在何地(演唱会),http://em.21dtv.com/songs/60032457.mkv +刘美麟-能走多远,http://em.21dtv.com/songs/60130127.mkv +刘美麟-能走多远,http://em.21dtv.com/songs/60128841.mkv +王建杰-你在叼位,http://em.21dtv.com/songs/60032456.mkv +许绍洋-你在等谁,http://em.21dtv.com/songs/60092066.mkv +萧敬腾-你知道吗(演唱会),http://em.21dtv.com/songs/60072253.mkv +冷弦-你知道的,http://em.21dtv.com/songs/60093987.mkv +孙楠-哪吒传奇(儿歌),http://em.21dtv.com/songs/60090908.mkv +Ella-你正常吗,http://em.21dtv.com/songs/60110755.mkv +Ella(陈嘉桦)-你正常吗,http://em.21dtv.com/songs/60109815.mkv +叶倩文+成龙-你知不知,http://em.21dtv.com/songs/60032538.mkv +郭采洁-你在不在,http://em.21dtv.com/songs/60032455.mkv +陈志红-那只白狐,http://em.21dtv.com/songs/60128527.mkv +左安西西-你一直在,http://em.21dtv.com/songs/60123880.mkv +佘曼妮-你一直在,http://em.21dtv.com/songs/60076977.mkv +李祥祥-那又怎样,http://em.21dtv.com/songs/60115228.mkv +陈雅森-那又怎样,http://em.21dtv.com/songs/60103695.mkv +红旗-鸟语争艳,http://em.21dtv.com/songs/60091810.mkv +那英-那又怎样,http://em.21dtv.com/songs/60076810.mkv +叶文辉-宁愿这样,http://em.21dtv.com/songs/60032707.mkv +英伦希-你要走吗,http://em.21dtv.com/songs/60063280.mkv +许美静-宁愿做梦,http://em.21dtv.com/songs/60032710.mkv +游美镁-难以捉摸(无原唱),http://em.21dtv.com/songs/60031297.mkv +洪佩谊-难以捉摸(无原唱),http://em.21dtv.com/songs/60031296.mkv +裘海正-纽约之恋,http://em.21dtv.com/songs/60032742.mkv +郑锦昌-农野之歌,http://em.21dtv.com/songs/60093335.mkv +何纪光-南岳之歌,http://em.21dtv.com/songs/60090606.mkv +张学友-宁愿做错,http://em.21dtv.com/songs/60032709.mkv +黄韵玲-奶油早餐(无原唱),http://em.21dtv.com/songs/60030869.mkv +裸儿-那样一夏,http://em.21dtv.com/songs/60119958.mkv +张继聪-宁愿晏D训,http://em.21dtv.com/songs/60092650.mkv +黄莺莺-宁愿相信,http://em.21dtv.com/songs/60032702.mkv +卢军-你有我在,http://em.21dtv.com/songs/60104863.mkv +沈安-你要我要,http://em.21dtv.com/songs/60120690.mkv +孔媛-宁愿我输,http://em.21dtv.com/songs/60128955.mkv +贯诗钦-你要逃离,http://em.21dtv.com/songs/60100473.mkv +佚名-宁愿锁上(无原唱),http://em.21dtv.com/songs/60032700.mkv +邓丽欣-内衣少女,http://em.21dtv.com/songs/60093237.mkv +陈蔚琦-你也是吗,http://em.21dtv.com/songs/60085543.mkv +陶喆-那一瞬间,http://em.21dtv.com/songs/60030824.mkv +陈幸子-诺言随风,http://em.21dtv.com/songs/60032822.mkv +孙紫晴-难以入睡,http://em.21dtv.com/songs/60081988.mkv +韩宝仪-那又如何,http://em.21dtv.com/songs/60120125.mkv +应嘉俐-那又如何,http://em.21dtv.com/songs/60030847.mkv +林晓培-那又如何,http://em.21dtv.com/songs/60030846.mkv +BASSHUNTER-now youre gone,http://em.21dtv.com/songs/60061957.mkv +洪卓立-难以取替,http://em.21dtv.com/songs/60031295.mkv +李嘉-你有请过(无原唱),http://em.21dtv.com/songs/60095601.mkv +李凡一-那一片云,http://em.21dtv.com/songs/60116000.mkv +包美圣-那一盆火,http://em.21dtv.com/songs/60030822.mkv +曹璐-你呀你呀,http://em.21dtv.com/songs/60135330.mkv +FRANK SINATRA-new york new york,http://em.21dtv.com/songs/60066694.mkv +佚名-你呀你呀,http://em.21dtv.com/songs/60032381.mkv +佚名-new york new york,http://em.21dtv.com/songs/60004090.mkv +李乐诗-new york new york(演唱会),http://em.21dtv.com/songs/60004089.mkv +元冠-纽约女孩,http://em.21dtv.com/songs/60131181.mkv +BEE GEES-new york mining disaster(演唱会),http://em.21dtv.com/songs/60004088.mkv +佚名-那依路湾,http://em.21dtv.com/songs/60030840.mkv +周华健+李度-难以抗拒,http://em.21dtv.com/songs/60031292.mkv +叶倩文-你要记住(演唱会),http://em.21dtv.com/songs/60076975.mkv +群星-你要记住(演唱会),http://em.21dtv.com/songs/60032393.mkv +芭比-你有讲过,http://em.21dtv.com/songs/60032433.mkv +李嘉-你有讲过(无原唱),http://em.21dtv.com/songs/60032432.mkv +王孟西-诺言谎言,http://em.21dtv.com/songs/60110395.mkv +金波-鸟语花香,http://em.21dtv.com/songs/60032680.mkv +陈星-鸟语花香,http://em.21dtv.com/songs/60032679.mkv +谭炳文+李香琴-鸟语花香(演唱会),http://em.21dtv.com/songs/60032678.mkv +薛凯琪-那一个我,http://em.21dtv.com/songs/60115366.mkv +蔡秋凤+蔡义德-你有够狠,http://em.21dtv.com/songs/60032431.mkv +张国荣-挪亚方舟,http://em.21dtv.com/songs/60092579.mkv +五月天-诺亚方舟,http://em.21dtv.com/songs/60064675.mkv +关心妍-挪亚方舟,http://em.21dtv.com/songs/60032812.mkv +尹光-牛油蛋挞(演唱会),http://em.21dtv.com/songs/60061475.mkv +谭炳文-牛油蛋塔,http://em.21dtv.com/songs/60032735.mkv +谭嘉荃+汉洋-宁愿单身,http://em.21dtv.com/songs/60097210.mkv +张雷-那一段情,http://em.21dtv.com/songs/60072219.mkv +戴佩妮-你要的爱,http://em.21dtv.com/songs/60128028.mkv +林恺伦-你要的爱,http://em.21dtv.com/songs/60125779.mkv +许明明-你要的爱,http://em.21dtv.com/songs/60085540.mkv +戴佩妮-你要的爱,http://em.21dtv.com/songs/60032383.mkv +许志安-你要的爱(演唱会),http://em.21dtv.com/songs/60032382.mkv +金城-那一场雪,http://em.21dtv.com/songs/60030806.mkv +单良-那一场雪,http://em.21dtv.com/songs/60030805.mkv +冯允谦-年月匆匆,http://em.21dtv.com/songs/60111704.mkv +黎明-你有本事,http://em.21dtv.com/songs/60032430.mkv +洪卓立-内有爱犬,http://em.21dtv.com/songs/60097171.mkv +许茹芸-宁愿爱你,http://em.21dtv.com/songs/60032697.mkv +M3-那矣按呢,http://em.21dtv.com/songs/60030842.mkv +袁锋-你想要的,http://em.21dtv.com/songs/60114045.mkv +小贱-你想要的,http://em.21dtv.com/songs/60068543.mkv +动力火车-逆向行驶(演唱会),http://em.21dtv.com/songs/60032610.mkv +林淑蓉-你想我吗,http://em.21dtv.com/songs/60032365.mkv +黎明-你系我慨(演唱会),http://em.21dtv.com/songs/60032353.mkv +黎明-你系我既,http://em.21dtv.com/songs/60032352.mkv +詹雅雯-你想我否,http://em.21dtv.com/songs/60032364.mkv +张浩-那些日子,http://em.21dtv.com/songs/60081256.mkv +陶晶莹-那些日子,http://em.21dtv.com/songs/60030796.mkv +豪图-那些日子(演唱会),http://em.21dtv.com/songs/60030795.mkv +罗丽珊-纳西情歌,http://em.21dtv.com/songs/60134070.mkv +罗丽珊-纳西情歌,http://em.21dtv.com/songs/60131725.mkv +王雅洁-纳西情歌,http://em.21dtv.com/songs/60110412.mkv +陈思思-纳西情歌,http://em.21dtv.com/songs/60076816.mkv +陈思思-纳西情歌(演唱会),http://em.21dtv.com/songs/60069633.mkv +谢珊-那溪那山,http://em.21dtv.com/songs/60118056.mkv +甘雅丹-那溪那山,http://em.21dtv.com/songs/60083457.mkv +李谷一-那溪那山,http://em.21dtv.com/songs/60080200.mkv +TWINS-女校男生,http://em.21dtv.com/songs/60033015.mkv +杨千嬅+方力申-女校男生(演唱会),http://em.21dtv.com/songs/60033014.mkv +林峰-女校男生(演唱会),http://em.21dtv.com/songs/60033013.mkv +林峰+谢天华-女校男生(演唱会),http://em.21dtv.com/songs/60033012.mkv +江若琳-女校男生(演唱会),http://em.21dtv.com/songs/60033011.mkv +TWINS-女校男生(演唱会),http://em.21dtv.com/songs/60033010.mkv +TWINS+AT17-女校男生(演唱会),http://em.21dtv.com/songs/60033009.mkv +谢娜-娜写年华,http://em.21dtv.com/songs/60030864.mkv +群星-难兄难弟,http://em.21dtv.com/songs/60031290.mkv +郭峰-难兄难弟,http://em.21dtv.com/songs/60031289.mkv +郭峰-难兄难弟(演唱会),http://em.21dtv.com/songs/60031288.mkv +杜德伟+周华健-难兄难弟(演唱会),http://em.21dtv.com/songs/60031287.mkv +邓少华-拿心来换,http://em.21dtv.com/songs/60089500.mkv +陈坤-逆行列车,http://em.21dtv.com/songs/60032606.mkv +刘铮-南下列车(无原唱),http://em.21dtv.com/songs/60031153.mkv +群星-你下来吧,http://em.21dtv.com/songs/60130656.mkv +佚名-男性苦恋,http://em.21dtv.com/songs/60031063.mkv +晓依-暖心家园,http://em.21dtv.com/songs/60132499.mkv +叶启田-内心艰苦,http://em.21dtv.com/songs/60031333.mkv +赵敬一-那些孩子,http://em.21dtv.com/songs/60086718.mkv +羽田-那些花儿(演唱会),http://em.21dtv.com/songs/60128315.mkv +羽田-那些花儿,http://em.21dtv.com/songs/60126069.mkv +谭维维+赵哲-那些花儿,http://em.21dtv.com/songs/60112972.mkv +张婧懿+莫艳琳-那些花儿,http://em.21dtv.com/songs/60104115.mkv +六弦+王矜霖-那些花儿,http://em.21dtv.com/songs/60094815.mkv +简迷离-那些花儿,http://em.21dtv.com/songs/60083458.mkv +朴树-那些花儿,http://em.21dtv.com/songs/60030792.mkv +范玮琪-那些花儿,http://em.21dtv.com/songs/60030791.mkv +陈思思-纳西姑娘,http://em.21dtv.com/songs/60083463.mkv +汤灿-纳西篝火,http://em.21dtv.com/songs/60030857.mkv +湘唯一-你想放弃,http://em.21dtv.com/songs/60094577.mkv +羽佳-你幸福吗,http://em.21dtv.com/songs/60032372.mkv +蒙面哥-虐心的雨,http://em.21dtv.com/songs/60127364.mkv +马一凡-那些地方,http://em.21dtv.com/songs/60126447.mkv +钟亚华-逆向的风,http://em.21dtv.com/songs/60108081.mkv +刘瑜-南迦巴瓦,http://em.21dtv.com/songs/60067263.mkv +动力火车-南下北上,http://em.21dtv.com/songs/60031152.mkv +戴溶萱+呱呱-虐心爱人,http://em.21dtv.com/songs/60125604.mkv +樊凡-逆向爱情,http://em.21dtv.com/songs/60116079.mkv +莫海翰-难忘昨天,http://em.21dtv.com/songs/60098728.mkv +莫海瀚-难忘昨天,http://em.21dtv.com/songs/60098727.mkv +CNBLUE-你我之间,http://em.21dtv.com/songs/60133184.mkv +朱茵-你我之间,http://em.21dtv.com/songs/60108554.mkv +丁浩然-你我之间,http://em.21dtv.com/songs/60076972.mkv +卫兰-难为自己,http://em.21dtv.com/songs/60076853.mkv +钟汉良-念忘之间,http://em.21dtv.com/songs/60032664.mkv +谢若琳-你我有缘,http://em.21dtv.com/songs/60032340.mkv +楚奇+楚童-你我一样,http://em.21dtv.com/songs/60032339.mkv +张紫瑶-你我游戏,http://em.21dtv.com/songs/60125531.mkv +张也-你我一家,http://em.21dtv.com/songs/60032338.mkv +李辉-你我一家,http://em.21dtv.com/songs/60032337.mkv +慕容晓晓-女王诱惑,http://em.21dtv.com/songs/60097141.mkv +张子琔-女王衣橱,http://em.21dtv.com/songs/60081447.mkv +施文彬+江蕙-你我相遇,http://em.21dtv.com/songs/60032336.mkv +施文彬+江蕙-你我相逢,http://em.21dtv.com/songs/60032334.mkv +周祥+刘海辰-难忘兄弟,http://em.21dtv.com/songs/60076851.mkv +My Little Airport-你望我望,http://em.21dtv.com/songs/60129970.mkv +Redholic-女王万岁,http://em.21dtv.com/songs/60124975.mkv +REDHOLIC-女王万岁,http://em.21dtv.com/songs/60123521.mkv +熊汝霖-你我同在,http://em.21dtv.com/songs/60032333.mkv +梁铂文-你我同心,http://em.21dtv.com/songs/60133896.mkv +周宣-你我同心,http://em.21dtv.com/songs/60120410.mkv +滨崎步-no way to say,http://em.21dtv.com/songs/60004138.mkv +王真颜-你我天地,http://em.21dtv.com/songs/60032332.mkv +庄学忠-你为什么,http://em.21dtv.com/songs/60032302.mkv +晓月-你为谁哭,http://em.21dtv.com/songs/60099268.mkv +环球群星-难忘时刻,http://em.21dtv.com/songs/60068520.mkv +周澎-难忘时光,http://em.21dtv.com/songs/60110943.mkv +刘媛媛-宁为女人,http://em.21dtv.com/songs/60099799.mkv +王莹-难忘母恩,http://em.21dtv.com/songs/60107084.mkv +佚名-你我鸾凤,http://em.21dtv.com/songs/60032324.mkv +熊仔+J.SHEON-你我可以,http://em.21dtv.com/songs/60124228.mkv +甄子维-你无卡咀(无原唱),http://em.21dtv.com/songs/60032342.mkv +群星-难忘今宵,http://em.21dtv.com/songs/60132804.mkv +李谷一+全国观众代表-难忘今宵,http://em.21dtv.com/songs/60109441.mkv +李谷一+全国观众代表-难忘今宵,http://em.21dtv.com/songs/60108587.mkv +群星-难忘今宵,http://em.21dtv.com/songs/60096437.mkv +景仪-难忘今宵,http://em.21dtv.com/songs/60089938.mkv +龚月-难忘今宵,http://em.21dtv.com/songs/60076849.mkv +卓依婷-难忘今宵,http://em.21dtv.com/songs/60031275.mkv +李谷一-难忘今宵,http://em.21dtv.com/songs/60031274.mkv +彭羚-你未讲过,http://em.21dtv.com/songs/60032307.mkv +尚雯婕-女王驾到,http://em.21dtv.com/songs/60098303.mkv +SNH48-女王殿下,http://em.21dtv.com/songs/60127671.mkv +罗时丰-难忘的人,http://em.21dtv.com/songs/60134116.mkv +A+乐团-女王大人,http://em.21dtv.com/songs/60096143.mkv +佚名-难忘的人,http://em.21dtv.com/songs/60031263.mkv +叶启田-难忘的人,http://em.21dtv.com/songs/60031262.mkv +罗时丰-难忘的人,http://em.21dtv.com/songs/60031261.mkv +洪荣宏-难忘的人,http://em.21dtv.com/songs/60031260.mkv +郑秀月-难忘的你(无原唱),http://em.21dtv.com/songs/60031257.mkv +王莉-你我的梦,http://em.21dtv.com/songs/60131673.mkv +基地小虎-你我的梦,http://em.21dtv.com/songs/60032316.mkv +佚名-你我的家,http://em.21dtv.com/songs/60032314.mkv +佚名-难忘初恋,http://em.21dtv.com/songs/60031236.mkv +王馨平-难忘初恋,http://em.21dtv.com/songs/60031235.mkv +武笑羽-女王陛下,http://em.21dtv.com/songs/60077038.mkv +张文绮+浩角翔起-女王不败,http://em.21dtv.com/songs/60130320.mkv +张文绮-女王不败,http://em.21dtv.com/songs/60130316.mkv +王瑞霞-你无爱我(无原唱),http://em.21dtv.com/songs/60068523.mkv +罗文聪-你无爱我,http://em.21dtv.com/songs/60032341.mkv +宰散团-南汀之乡,http://em.21dtv.com/songs/60124781.mkv +陈泳泼-那天夜里,http://em.21dtv.com/songs/60115506.mkv +本兮+李魏西-那天以后,http://em.21dtv.com/songs/60100106.mkv +关德辉-泥土野花,http://em.21dtv.com/songs/60031356.mkv +马常宝-那天晚上,http://em.21dtv.com/songs/60121150.mkv +杜元竣-那天晚上,http://em.21dtv.com/songs/60076802.mkv +小5-难题无解,http://em.21dtv.com/songs/60122678.mkv +本兮+李魏西-那天午后,http://em.21dtv.com/songs/60083456.mkv +罗力威-你太贪玩,http://em.21dtv.com/songs/60107110.mkv +超级女团-女团守则,http://em.21dtv.com/songs/60131857.mkv +张智霖-你太善良,http://em.21dtv.com/songs/60032598.mkv +林俊杰-now that shes gone,http://em.21dtv.com/songs/60004190.mkv +朱海君-你疼入心,http://em.21dtv.com/songs/60085537.mkv +黄毓敏-那天清晨,http://em.21dtv.com/songs/60126482.mkv +陈洁仪-那天那夜,http://em.21dtv.com/songs/60030780.mkv +吴欢-nice to meet you,http://em.21dtv.com/songs/60004097.mkv +陈慧琳-你太冷静,http://em.21dtv.com/songs/60032281.mkv +伊雪-那天哭完,http://em.21dtv.com/songs/60114388.mkv +罗隽永-你听见吗,http://em.21dtv.com/songs/60123081.mkv +吴斌-难逃寂寞,http://em.21dtv.com/songs/60083482.mkv +MARIAH CAREY-now that i know,http://em.21dtv.com/songs/60004189.mkv +周杰伦-你听得到,http://em.21dtv.com/songs/60032286.mkv +雨霖枫-逆天的爱,http://em.21dtv.com/songs/60129773.mkv +S.H.E-你太诚实,http://em.21dtv.com/songs/60032280.mkv +田馥甄-你太猖狂,http://em.21dtv.com/songs/60032279.mkv +蓝又时-你太冲动,http://em.21dtv.com/songs/60076965.mkv +意玲-你痛不痛,http://em.21dtv.com/songs/60115184.mkv +安心亚-女神之战,http://em.21dtv.com/songs/60104943.mkv +K ONE-南十字星,http://em.21dtv.com/songs/60031137.mkv +[Group] +groupName=十六万歌曲MV等 - 50 +群星-难说再见,http://em.21dtv.com/songs/60031230.mkv +张学友-你是珍贵,http://em.21dtv.com/songs/60087802.mkv +陈键锋-你是终点,http://em.21dtv.com/songs/60134424.mkv +许茹芸-你是最爱,http://em.21dtv.com/songs/60032233.mkv +孙丽英-你是英雄(演唱会),http://em.21dtv.com/songs/60032229.mkv +KingStar+蒋蒋-你是氧气,http://em.21dtv.com/songs/60132092.mkv +李易峰-年少有你,http://em.21dtv.com/songs/60111988.mkv +苏芮-你属于你(演唱会)(无原唱),http://em.21dtv.com/songs/60032240.mkv +程大-你是爷们,http://em.21dtv.com/songs/60129456.mkv +乐曈-男生乙个,http://em.21dtv.com/songs/60085498.mkv +吴恩琪-女生宣言(无原唱),http://em.21dtv.com/songs/60033007.mkv +彭筝-你说想我,http://em.21dtv.com/songs/60121694.mkv +佚名-难诉相思,http://em.21dtv.com/songs/60031231.mkv +黄腾-难受想哭,http://em.21dtv.com/songs/60129848.mkv +潘成-难受想哭,http://em.21dtv.com/songs/60128185.mkv +叶启田-内山兄哥,http://em.21dtv.com/songs/60071226.mkv +佚名-内山兄哥,http://em.21dtv.com/songs/60031328.mkv +THE BE FOUR-年少无知(演唱会),http://em.21dtv.com/songs/60083550.mkv +黄贯中-年少无知(演唱会),http://em.21dtv.com/songs/60077005.mkv +C ALLSTAR-年少无知(演唱会),http://em.21dtv.com/songs/60077004.mkv +林保怡+陈豪+黄德斌-年少无知,http://em.21dtv.com/songs/60064665.mkv +五月天-你是唯一,http://em.21dtv.com/songs/60099738.mkv +辛龙-你是唯一,http://em.21dtv.com/songs/60080310.mkv +龙润组合-你是唯一,http://em.21dtv.com/songs/60064646.mkv +张芸京-你是唯一,http://em.21dtv.com/songs/60032068.mkv +张信哲+潘越云-你是唯一,http://em.21dtv.com/songs/60032067.mkv +黄小琥+迪克牛仔-你是唯一,http://em.21dtv.com/songs/60032066.mkv +胜屿-你施我舍,http://em.21dtv.com/songs/60131739.mkv +李唯枫-你说我说,http://em.21dtv.com/songs/60086735.mkv +BY2-你说我说,http://em.21dtv.com/songs/60083533.mkv +孙勇+张子楠-你说我说,http://em.21dtv.com/songs/60032274.mkv +佚名-年少无情,http://em.21dtv.com/songs/60032650.mkv +郭富城-你是未来,http://em.21dtv.com/songs/60032070.mkv +郭富城-你是未来(演唱会),http://em.21dtv.com/songs/60032069.mkv +雷琛瑜-你死我活,http://em.21dtv.com/songs/60116355.mkv +紫齐-你是微风,http://em.21dtv.com/songs/60112874.mkv +王铮亮-你是我的,http://em.21dtv.com/songs/60125955.mkv +刘菲菲-你是我的,http://em.21dtv.com/songs/60070997.mkv +薛佩洁+张政雄-你是我的,http://em.21dtv.com/songs/60064647.mkv +陈立强-你是我的,http://em.21dtv.com/songs/60032073.mkv +庄心妍-你是我宝,http://em.21dtv.com/songs/60072242.mkv +黄晓明-你是天使,http://em.21dtv.com/songs/60085525.mkv +梁咏琪-你是她的,http://em.21dtv.com/songs/60032062.mkv +张杰-你是所有,http://em.21dtv.com/songs/60032061.mkv +周传雄-溺水三千,http://em.21dtv.com/songs/60087576.mkv +品冠-年少时代,http://em.21dtv.com/songs/60115063.mkv +T ARA+SEEYA+DAVICHI-女生时代,http://em.21dtv.com/songs/60068554.mkv +张磊-年少如风,http://em.21dtv.com/songs/60119540.mkv +蔡幸娟-你是秋天,http://em.21dtv.com/songs/60032042.mkv +张碧晨-年少轻狂,http://em.21dtv.com/songs/60115919.mkv +张智霖-你是奇迹,http://em.21dtv.com/songs/60061459.mkv +那英-那式情歌(演唱会),http://em.21dtv.com/songs/60128453.mkv +彝人传奇-南山情歌,http://em.21dtv.com/songs/60120538.mkv +群星-你是偶像,http://em.21dtv.com/songs/60126049.mkv +群星-你是偶像,http://em.21dtv.com/songs/60113946.mkv +李慧珍-那时你在,http://em.21dtv.com/songs/60030766.mkv +邓锦志-你说你说,http://em.21dtv.com/songs/60132976.mkv +何以奇-你说你说,http://em.21dtv.com/songs/60128775.mkv +刘贵贤-那山那水,http://em.21dtv.com/songs/60115034.mkv +小5-那时年少,http://em.21dtv.com/songs/60083455.mkv +江翠玲-你说你说,http://em.21dtv.com/songs/60076964.mkv +易欣-难舍难弃,http://em.21dtv.com/songs/60092758.mkv +张灵-能舍能离,http://em.21dtv.com/songs/60063385.mkv +爱戴-那时那刻,http://em.21dtv.com/songs/60030765.mkv +谢承佑-你算哪个,http://em.21dtv.com/songs/60127406.mkv +谭咏麟-难舍难分,http://em.21dtv.com/songs/60031227.mkv +易欣-难舍难放,http://em.21dtv.com/songs/60031226.mkv +丁薇-你是你的,http://em.21dtv.com/songs/60101235.mkv +弦子-你是你的,http://em.21dtv.com/songs/60032034.mkv +STEPS-never say never again,http://em.21dtv.com/songs/60004076.mkv +张国荣-你是明星,http://em.21dtv.com/songs/60032032.mkv +曾宝仪-你说了算,http://em.21dtv.com/songs/60032261.mkv +Com'Z康姆士乐团-你失恋了,http://em.21dtv.com/songs/60103760.mkv +于全莉-难诉离愁,http://em.21dtv.com/songs/60085503.mkv +阿穆隆-你是空气,http://em.21dtv.com/songs/60032027.mkv +蓝又时-女生卡卡,http://em.21dtv.com/songs/60130722.mkv +戴梅君-女神降临,http://em.21dtv.com/songs/60085560.mkv +罗志祥-拿手绝活(演唱会),http://em.21dtv.com/songs/60030656.mkv +司徒兰芳-女神驾到,http://em.21dtv.com/songs/60118422.mkv +佚名-内山和尚,http://em.21dtv.com/songs/60031327.mkv +杨丞琳-你是坏人,http://em.21dtv.com/songs/60032023.mkv +佚名-内山姑娘,http://em.21dtv.com/songs/60031320.mkv +佚名-内山姑娘(森巴)(无原唱),http://em.21dtv.com/songs/60031319.mkv +于金胜-难说分手,http://em.21dtv.com/songs/60066177.mkv +晓晓-难说分手,http://em.21dtv.com/songs/60066176.mkv +魏宗武-那时的你,http://em.21dtv.com/songs/60110717.mkv +Fairy女团-女神的梦,http://em.21dtv.com/songs/60128676.mkv +XY兄弟-那时的画,http://em.21dtv.com/songs/60130017.mkv +谭维维-那时的光,http://em.21dtv.com/songs/60112248.mkv +张如意-女生的歌,http://em.21dtv.com/songs/60033004.mkv +刘若英-你说的对(演唱会),http://em.21dtv.com/songs/60032254.mkv +周华健-你说得对,http://em.21dtv.com/songs/60032253.mkv +容祖儿-你说得对,http://em.21dtv.com/songs/60032252.mkv +容祖儿-你说得对(演唱会),http://em.21dtv.com/songs/60032250.mkv +张争-鸟叔的爱,http://em.21dtv.com/songs/60096065.mkv +佟宇-难舍的爱,http://em.21dtv.com/songs/60085501.mkv +范玮琪-你是答案,http://em.21dtv.com/songs/60032010.mkv +王浩信+胡杏儿-哪时此刻,http://em.21dtv.com/songs/60030672.mkv +吴介贤-霓裳彩虹,http://em.21dtv.com/songs/60064611.mkv +唐古-你傻不傻,http://em.21dtv.com/songs/60125323.mkv +刘耔彤-你是不是,http://em.21dtv.com/songs/60032000.mkv +超人特工队-你伤不起,http://em.21dtv.com/songs/60064640.mkv +王伟美-你伤不起,http://em.21dtv.com/songs/60061457.mkv +可岚-女生不哭,http://em.21dtv.com/songs/60033003.mkv +魏晨-你身边的,http://em.21dtv.com/songs/60107370.mkv +郭美美-那是爱吗,http://em.21dtv.com/songs/60134340.mkv +阿才-男人在外,http://em.21dtv.com/songs/60066174.mkv +SHINE-男人最痛,http://em.21dtv.com/songs/60097268.mkv +许志安-男人最痛,http://em.21dtv.com/songs/60031040.mkv +陈浩民-男人最痛,http://em.21dtv.com/songs/60031039.mkv +许志安-男人最痛(演唱会),http://em.21dtv.com/songs/60031038.mkv +容祖儿-男人最痛(演唱会),http://em.21dtv.com/songs/60031037.mkv +李克勤+许志安-男人最痛(演唱会),http://em.21dtv.com/songs/60031036.mkv +张嘉洵-男人真累,http://em.21dtv.com/songs/60100016.mkv +梅艳芳+许志安-女人之苦,http://em.21dtv.com/songs/60032994.mkv +许志安-女人之苦(演唱会),http://em.21dtv.com/songs/60032993.mkv +许志安+何韵诗-女人之苦(演唱会),http://em.21dtv.com/songs/60032992.mkv +梅艳芳+许志安-女人之苦(演唱会),http://em.21dtv.com/songs/60032991.mkv +张祥洪-女人真苦,http://em.21dtv.com/songs/60032990.mkv +徐华凤-男人真好(无原唱),http://em.21dtv.com/songs/60031034.mkv +赵咏华-女人颜色,http://em.21dtv.com/songs/60032982.mkv +吴淑敏-你若有情(无原唱),http://em.21dtv.com/songs/60031978.mkv +萧煌奇-男人有泪,http://em.21dtv.com/songs/60076829.mkv +李猛-女人有毒,http://em.21dtv.com/songs/60072265.mkv +张学友-耐人寻味,http://em.21dtv.com/songs/60030875.mkv +向蕙玲-女人心事,http://em.21dtv.com/songs/60118434.mkv +陶晶莹-女人心事,http://em.21dtv.com/songs/60032981.mkv +赵鑫+宋晓锋-男人辛苦,http://em.21dtv.com/songs/60123210.mkv +李冠言-你若我愿,http://em.21dtv.com/songs/60100130.mkv +黎明-你让我忘,http://em.21dtv.com/songs/60031964.mkv +汪苏泷-你让我懂,http://em.21dtv.com/songs/60031956.mkv +陈慧琳-你让我懂,http://em.21dtv.com/songs/60031955.mkv +ROSA-女人天真,http://em.21dtv.com/songs/60077032.mkv +刘庭羽-女人天下,http://em.21dtv.com/songs/60083726.mkv +田一龙-女人天堂,http://em.21dtv.com/songs/60103483.mkv +尹子-男人三十,http://em.21dtv.com/songs/60086721.mkv +沙宝亮-男人四十,http://em.21dtv.com/songs/60067261.mkv +陈振云-女人四十,http://em.21dtv.com/songs/60032958.mkv +彭恋斯-女人似水,http://em.21dtv.com/songs/60032955.mkv +杨千嬅-女人三十,http://em.21dtv.com/songs/60032953.mkv +郑少秋-男人四十,http://em.21dtv.com/songs/60031009.mkv +郑少秋-男人四十(演唱会),http://em.21dtv.com/songs/60031008.mkv +陈文浩-你若盛开,http://em.21dtv.com/songs/60127552.mkv +玖月奇迹-你若盛开,http://em.21dtv.com/songs/60080599.mkv +方瑞娥-女人世界,http://em.21dtv.com/songs/60125617.mkv +佚名-男人说法,http://em.21dtv.com/songs/60031006.mkv +黄品戬-女人善变,http://em.21dtv.com/songs/60104625.mkv +凯歌-女人善变,http://em.21dtv.com/songs/60094000.mkv +魏佳艺-女人如烟,http://em.21dtv.com/songs/60032952.mkv +叶贝文-女人如水,http://em.21dtv.com/songs/60122566.mkv +牧斯-女人如水,http://em.21dtv.com/songs/60118755.mkv +周华健-女人如花,http://em.21dtv.com/songs/60032951.mkv +谭晶-女人如花,http://em.21dtv.com/songs/60032950.mkv +啡啡-女人如茶,http://em.21dtv.com/songs/60062350.mkv +韩岚+薛晓枫-泥人情歌,http://em.21dtv.com/songs/60102930.mkv +李利依-男人情歌,http://em.21dtv.com/songs/60068510.mkv +郎军-男人难做,http://em.21dtv.com/songs/60120999.mkv +李婷宜-女人难为(无原唱),http://em.21dtv.com/songs/60032947.mkv +郑锦昌-女人男人(演唱会),http://em.21dtv.com/songs/60077031.mkv +许茹芸+阿穆隆-男人女人,http://em.21dtv.com/songs/60030999.mkv +高雄+刘美华-男人女人,http://em.21dtv.com/songs/60030998.mkv +许茹芸+阿穆隆-男人 女人,http://em.21dtv.com/songs/60030925.mkv +崔伟亮-男人难当,http://em.21dtv.com/songs/60076826.mkv +袁春雷-男人难当,http://em.21dtv.com/songs/60070970.mkv +阿烁-男人旅途,http://em.21dtv.com/songs/60115482.mkv +阿德-你若离开(无原唱),http://em.21dtv.com/songs/60095960.mkv +林海峰-男人老狗,http://em.21dtv.com/songs/60127109.mkv +陈尚依-女人花语,http://em.21dtv.com/songs/60099580.mkv +周传雄-男人海洋,http://em.21dtv.com/songs/60030981.mkv +郑宝鑫-男人好难,http://em.21dtv.com/songs/60128471.mkv +司文-男人好难(HD),http://em.21dtv.com/songs/10012721.mkv +沙宝亮+黄渤-男人好难,http://em.21dtv.com/songs/60096385.mkv +司文-男人好难,http://em.21dtv.com/songs/60083477.mkv +王虎-男人很难,http://em.21dtv.com/songs/60067260.mkv +刘沛洋-男人很累,http://em.21dtv.com/songs/60105640.mkv +海龟先生-内人广林,http://em.21dtv.com/songs/60120727.mkv +蔡小虎-女人的心,http://em.21dtv.com/songs/60128373.mkv +沈芳如-女人的心,http://em.21dtv.com/songs/60088212.mkv +亚东-男人的心,http://em.21dtv.com/songs/60083474.mkv +阿华-女人的心,http://em.21dtv.com/songs/60077026.mkv +任贤齐-女人的心,http://em.21dtv.com/songs/60032921.mkv +邱淑君-女人的心(无原唱),http://em.21dtv.com/songs/60032920.mkv +韩磊-男人底线,http://em.21dtv.com/songs/60030979.mkv +鲍国-男人底线,http://em.21dtv.com/songs/60030978.mkv +张振宇-男人的心,http://em.21dtv.com/songs/60030967.mkv +阿桑古卡-男人的心,http://em.21dtv.com/songs/60030966.mkv +丁酉酉-女人的天,http://em.21dtv.com/songs/60067302.mkv +黄渤+孙红雷+黄磊+罗志祥+王迅+张艺兴-男人的事,http://em.21dtv.com/songs/60118217.mkv +高嘉健-男人的梦,http://em.21dtv.com/songs/60130906.mkv +龙梅子-女人的美,http://em.21dtv.com/songs/60077025.mkv +小宋佳-女人的梦,http://em.21dtv.com/songs/60032913.mkv +龙千玉-女人的梦,http://em.21dtv.com/songs/60032912.mkv +扬哲-男人的泪,http://em.21dtv.com/songs/60133735.mkv +姜鹏-男人的泪,http://em.21dtv.com/songs/60030959.mkv +赵鑫-男人的苦(演唱会),http://em.21dtv.com/songs/60076823.mkv +张宇-男人的好,http://em.21dtv.com/songs/60030956.mkv +樊桐舟-男人的好,http://em.21dtv.com/songs/60030955.mkv +罗时丰-男人的汗,http://em.21dtv.com/songs/60030954.mkv +李清坡-男人的歌,http://em.21dtv.com/songs/60135369.mkv +师红飞-男人的歌,http://em.21dtv.com/songs/60111040.mkv +吴克羣+任贤齐-男人的歌(任逍遥+心太软),http://em.21dtv.com/songs/60097267.mkv +徐嘉良-男人的歌,http://em.21dtv.com/songs/60030952.mkv +陈奕迅-男人的错,http://em.21dtv.com/songs/60030948.mkv +张祥洪-女人的笨,http://em.21dtv.com/songs/60083565.mkv +向蕙玲-女人的爱,http://em.21dtv.com/songs/60135001.mkv +刘德华-男人的爱,http://em.21dtv.com/songs/60090703.mkv +许嵩-你若成风,http://em.21dtv.com/songs/60031970.mkv +张道儒-你若不在,http://em.21dtv.com/songs/60097288.mkv +郑秀文-女人本色(演唱会),http://em.21dtv.com/songs/60032898.mkv +丁悦+林晓培+李蕙敏-女人本能,http://em.21dtv.com/songs/60118292.mkv +王翔-男人不累,http://em.21dtv.com/songs/60030944.mkv +王如华-男人不哭,http://em.21dtv.com/songs/60122998.mkv +吴庆国-男人不哭,http://em.21dtv.com/songs/60121495.mkv +安银松-男人不哭,http://em.21dtv.com/songs/60116728.mkv +乐秋-女人不哭,http://em.21dtv.com/songs/60099725.mkv +潘越云-女人别哭(无原唱),http://em.21dtv.com/songs/60032899.mkv +谭咏麟+陈小春-男人悲剧,http://em.21dtv.com/songs/60126210.mkv +徐婕儿-女人不坏,http://em.21dtv.com/songs/60032904.mkv +陈秀雯-女人背后,http://em.21dtv.com/songs/60032897.mkv +陈秀雯-女人背后(演唱会),http://em.21dtv.com/songs/60032896.mkv +费翔-男人不坏,http://em.21dtv.com/songs/60030942.mkv +陈国华-男人不坏(无原唱),http://em.21dtv.com/songs/60030941.mkv +陈瑞-女人不等,http://em.21dtv.com/songs/60095235.mkv +李蕙敏-女人不笨,http://em.21dtv.com/songs/60032900.mkv +凤凰传奇-年轻主义,http://em.21dtv.com/songs/60121420.mkv +卓依婷-你情我愿,http://em.21dtv.com/songs/60031950.mkv +泳儿-宁缺毋滥,http://em.21dtv.com/songs/60100271.mkv +邓丽君-浓情万缕,http://em.21dtv.com/songs/60032773.mkv +佚名-侬情万缕,http://em.21dtv.com/songs/60032764.mkv +皮特杨-你情他愿,http://em.21dtv.com/songs/60031949.mkv +周冰倩-浓情岁月,http://em.21dtv.com/songs/60032772.mkv +至上励合-那群傻瓜,http://em.21dtv.com/songs/60083454.mkv +郑智化-年轻时代,http://em.21dtv.com/songs/60032648.mkv +蒋文端-浓情密意,http://em.21dtv.com/songs/60032771.mkv +泽旺拉姆-那曲锅庄,http://em.21dtv.com/songs/60132678.mkv +红旗+央金-那曲锅庄,http://em.21dtv.com/songs/60091807.mkv +群星-年轻的心,http://em.21dtv.com/songs/60091853.mkv +影视歌曲-年青的心,http://em.21dtv.com/songs/60087870.mkv +林义忠-年轻的心,http://em.21dtv.com/songs/60032644.mkv +郭峰-年轻的心,http://em.21dtv.com/songs/60032643.mkv +余天+李亚萍-你去叼位,http://em.21dtv.com/songs/60134888.mkv +刘芮伊-你确定吗,http://em.21dtv.com/songs/60031952.mkv +沈芳如-年轻的爱,http://em.21dtv.com/songs/60032635.mkv +金泽-你却不懂,http://em.21dtv.com/songs/60031951.mkv +戏曲-浓情爱意,http://em.21dtv.com/songs/60092734.mkv +林采缇+江韦良-女仆游戏,http://em.21dtv.com/songs/60085555.mkv +天爱-那片雪花,http://em.21dtv.com/songs/60130222.mkv +华晨宇+苏诗丁-南屏晚钟,http://em.21dtv.com/songs/60134953.mkv +马常宝-南屏晚钟,http://em.21dtv.com/songs/60115537.mkv +赵鹏-南屏晚钟,http://em.21dtv.com/songs/60107243.mkv +胡海泉+范玮琪-南屏晚钟,http://em.21dtv.com/songs/60095061.mkv +孙琳-南屏晚钟,http://em.21dtv.com/songs/60089799.mkv +解晓东-南屏晚钟,http://em.21dtv.com/songs/60088630.mkv +蔡琴-南平晚钟,http://em.21dtv.com/songs/60088604.mkv +卓依婷-南屏晚钟,http://em.21dtv.com/songs/60031135.mkv +梁雁翎-南屏晚钟,http://em.21dtv.com/songs/60031134.mkv +崔萍-南屏晚钟(演唱会),http://em.21dtv.com/songs/60031133.mkv +蔡琴-南屏晚钟(HD演唱会),http://em.21dtv.com/songs/60031132.mkv +张语倢-那片天空,http://em.21dtv.com/songs/60030756.mkv +ナノ-no pain no game,http://em.21dtv.com/songs/60082281.mkv +佚名-no promise no guarantee,http://em.21dtv.com/songs/60004131.mkv +王爱华-南飘的云,http://em.21dtv.com/songs/60100321.mkv +李天平-那片丁香,http://em.21dtv.com/songs/60083453.mkv +王思佳-NO.1,http://em.21dtv.com/songs/60107903.mkv +ABBA-name of the game,http://em.21dtv.com/songs/60004046.mkv +谢娜-na na 主义,http://em.21dtv.com/songs/60004042.mkv +周慧敏-男女之间,http://em.21dtv.com/songs/60030920.mkv +何宝生+何咏琳-男女之间,http://em.21dtv.com/songs/60030919.mkv +黄中原+傅薇-男女之间(演唱会),http://em.21dtv.com/songs/60030918.mkv +徐玉婷-牛牛之歌,http://em.21dtv.com/songs/60085551.mkv +任明-年年有余,http://em.21dtv.com/songs/60085547.mkv +中国力量-男女有别,http://em.21dtv.com/songs/60092236.mkv +BOX-那年夏天,http://em.21dtv.com/songs/60085491.mkv +何洁-那年夏天,http://em.21dtv.com/songs/60072218.mkv +刘柏延-那年夏天,http://em.21dtv.com/songs/60068506.mkv +张杰-那年夏天,http://em.21dtv.com/songs/60030747.mkv +许飞-那年夏天,http://em.21dtv.com/songs/60030746.mkv +江一燕-那年夏天,http://em.21dtv.com/songs/60030745.mkv +甘国卫+胡美仪-年年旺相,http://em.21dtv.com/songs/60032630.mkv +吴奇隆+李沁怡-你你我我,http://em.21dtv.com/songs/60031940.mkv +佚名-你侬我侬,http://em.21dtv.com/songs/60031942.mkv +包娜娜-你侬我侬,http://em.21dtv.com/songs/60031941.mkv +姚雨鑫-那年十月,http://em.21dtv.com/songs/60076786.mkv +佚名-年年顺利,http://em.21dtv.com/songs/60032629.mkv +冯译允-那年时光,http://em.21dtv.com/songs/60123657.mkv +赵凯磊-那年青春,http://em.21dtv.com/songs/60118936.mkv +韩笑-那年那月,http://em.21dtv.com/songs/60076785.mkv +邵雨涵-那年那时,http://em.21dtv.com/songs/60030739.mkv +杨绣惠-男男女女,http://em.21dtv.com/songs/60085495.mkv +张政雄+薛佩洁-男男女女,http://em.21dtv.com/songs/60072222.mkv +魔幻1+1-扭扭捏捏,http://em.21dtv.com/songs/60032738.mkv +王心凌-黏黏黏黏,http://em.21dtv.com/songs/60032651.mkv +王孟西-那年六月,http://em.21dtv.com/songs/60110397.mkv +甜甜-那年今日,http://em.21dtv.com/songs/60111303.mkv +莫文蔚-娘娘驾到,http://em.21dtv.com/songs/60097412.mkv +陈奕迅+杨千嬅+森美-namasgar你好吗(演唱会),http://em.21dtv.com/songs/60004045.mkv +初晨-那年花开,http://em.21dtv.com/songs/60120378.mkv +黄乙玲-你那会甘,http://em.21dtv.com/songs/60047471.mkv +吴朵曼-奶奶个腿,http://em.21dtv.com/songs/60080295.mkv +沙宝亮-那年冬天,http://em.21dtv.com/songs/60097252.mkv +魏新雨-暖暖的家,http://em.21dtv.com/songs/60094779.mkv +卓依婷-难念的经,http://em.21dtv.com/songs/60031223.mkv +周华健-难念的经,http://em.21dtv.com/songs/60031222.mkv +王馨-暖暖的爱,http://em.21dtv.com/songs/60119837.mkv +任然-那年初夏,http://em.21dtv.com/songs/60067251.mkv +王小尧-那年残秋,http://em.21dtv.com/songs/60119807.mkv +王小尧-那年残秋,http://em.21dtv.com/songs/60081186.mkv +郑可为-念念不忘,http://em.21dtv.com/songs/60126271.mkv +金祥-念念不忘,http://em.21dtv.com/songs/60122200.mkv +麦浚龙-念念不忘,http://em.21dtv.com/songs/60112398.mkv +庞龙-念念不忘,http://em.21dtv.com/songs/60081962.mkv +王键-念念不忘,http://em.21dtv.com/songs/60077008.mkv +徐千雅-念念不忘,http://em.21dtv.com/songs/60069682.mkv +斯琴高丽-念念不忘,http://em.21dtv.com/songs/60069681.mkv +张铁-念念不忘,http://em.21dtv.com/songs/60068550.mkv +郑秀文-念念不忘,http://em.21dtv.com/songs/60032658.mkv +林熹瞳+艾威-囧男囧女,http://em.21dtv.com/songs/60133882.mkv +王一多-柠檬之恋,http://em.21dtv.com/songs/60121898.mkv +田维英-那枚钻戒,http://em.21dtv.com/songs/60123041.mkv +C蓝+小右-那么再见,http://em.21dtv.com/songs/60072217.mkv +贯诗钦-你明知道,http://em.21dtv.com/songs/60083517.mkv +黄乙玲-南蛮夜曲(无原唱),http://em.21dtv.com/songs/60031122.mkv +周治平-难免有错,http://em.21dtv.com/songs/60087588.mkv +张学友-你没有错,http://em.21dtv.com/songs/60031907.mkv +刘德华-难免有错,http://em.21dtv.com/songs/60031221.mkv +左成-那么些年,http://em.21dtv.com/songs/60130282.mkv +耿为华-农民兄弟,http://em.21dtv.com/songs/60106204.mkv +朱之文+乔军-农民兄弟,http://em.21dtv.com/songs/60077015.mkv +陈柏宇-你瞒我瞒,http://em.21dtv.com/songs/60031906.mkv +THEORY-not meant to be,http://em.21dtv.com/songs/60063695.mkv +PAUL MCCARTNEY-no more lonely nights,http://em.21dtv.com/songs/60004118.mkv +佚名-no more lonely night,http://em.21dtv.com/songs/60004117.mkv +董事长乐团-你袂了解,http://em.21dtv.com/songs/60031910.mkv +林杉和-南鳗囝仔(无原唱),http://em.21dtv.com/songs/60031123.mkv +金海心-那么骄傲,http://em.21dtv.com/songs/60030731.mkv +金海心-那么骄傲(演唱会),http://em.21dtv.com/songs/60030730.mkv +旭日阳刚-那么光荣,http://em.21dtv.com/songs/60072216.mkv +春雷-农民父兄,http://em.21dtv.com/songs/60032757.mkv +佚名-not myself for minutes,http://em.21dtv.com/songs/60004167.mkv +望海高歌-那么动情,http://em.21dtv.com/songs/60109410.mkv +拾音社-你们的爱,http://em.21dtv.com/songs/60097285.mkv +王筝-你们的爱(演唱会),http://em.21dtv.com/songs/60064636.mkv +周笔畅-你们的爱,http://em.21dtv.com/songs/60031913.mkv +江蕙+方炯镔-柠檬爱玉,http://em.21dtv.com/songs/60032712.mkv +王瑞霞-你呒爱我(无原唱),http://em.21dtv.com/songs/60031921.mkv +邹宗翰-那么爱你,http://em.21dtv.com/songs/60118960.mkv +张秀卿-那么爱你,http://em.21dtv.com/songs/60109331.mkv +李金臻-那么爱你,http://em.21dtv.com/songs/60076784.mkv +萌萌哒天团-牛郎织女,http://em.21dtv.com/songs/60114014.mkv +张雷+司徒兰芳-牛郎织女,http://em.21dtv.com/songs/60071011.mkv +费玉清-牛郎织女,http://em.21dtv.com/songs/60062351.mkv +万阳+阿紫-牛郎织女,http://em.21dtv.com/songs/60032727.mkv +陈珂冰-never let you go,http://em.21dtv.com/songs/60073655.mkv +安图声乐队-逆流时光,http://em.21dtv.com/songs/60107660.mkv +萧亚轩-你来你走,http://em.21dtv.com/songs/60091978.mkv +蔡文吉+高雅如-弄龙弄狮(无原唱),http://em.21dtv.com/songs/60095912.mkv +朱元冰-哪里哪里,http://em.21dtv.com/songs/60120593.mkv +FLORENCE AND-no light no light,http://em.21dtv.com/songs/60065659.mkv +郑钧-努力努力(演唱会),http://em.21dtv.com/songs/60032784.mkv +郑钧-奴隶努力,http://em.21dtv.com/songs/60032780.mkv +纪如璟-你累了吗,http://em.21dtv.com/songs/60031886.mkv +楠丁-你离开了,http://em.21dtv.com/songs/60125831.mkv +赵传+刘沁-努力活着,http://em.21dtv.com/songs/60032783.mkv +叶恒秀-南锣鼓巷,http://em.21dtv.com/songs/60063267.mkv +周颂平-宁萝访艳,http://em.21dtv.com/songs/60087607.mkv +温岚-逆流的泪,http://em.21dtv.com/songs/60086741.mkv +宇桐非-逆流成河,http://em.21dtv.com/songs/60135115.mkv +宇桐非-逆流成河,http://em.21dtv.com/songs/60133574.mkv +刘恺名-逆流成河,http://em.21dtv.com/songs/60130119.mkv +金南玲-逆流成河,http://em.21dtv.com/songs/60121022.mkv +苏阳-牛拉车车,http://em.21dtv.com/songs/60067300.mkv +RICHARD MARX-nothing left behind us,http://em.21dtv.com/songs/60004178.mkv +孙楠+吴京-你来不来,http://em.21dtv.com/songs/60108427.mkv +潘美辰-你冷不冷,http://em.21dtv.com/songs/60031887.mkv +沈鱼-你累不累,http://em.21dtv.com/songs/60031885.mkv +童唱-内里布蕾,http://em.21dtv.com/songs/60031315.mkv +沈志仲-努力不哭,http://em.21dtv.com/songs/60108677.mkv +周华健-南龙北凤,http://em.21dtv.com/songs/60092466.mkv +蔡健雅-你快走开,http://em.21dtv.com/songs/60031877.mkv +群星-诺科之歌,http://em.21dtv.com/songs/60113948.mkv +FUN4-南柯一梦,http://em.21dtv.com/songs/60104678.mkv +佚名-南柯一梦,http://em.21dtv.com/songs/60031119.mkv +黄勇-纽扣与兜,http://em.21dtv.com/songs/60109058.mkv +Heize-那颗星星,http://em.21dtv.com/songs/60129943.mkv +陈柔希-那颗流星,http://em.21dtv.com/songs/60076783.mkv +陈珊妮-尼可拉斯,http://em.21dtv.com/songs/60031350.mkv +Crispy脆乐团-你快乐吗,http://em.21dtv.com/songs/60134661.mkv +刘晓龙-你快乐吗,http://em.21dtv.com/songs/60117581.mkv +小老鹰乐团-你快乐吗,http://em.21dtv.com/songs/60107684.mkv +吴彤-你快乐吗,http://em.21dtv.com/songs/60063103.mkv +佚名-你快乐吗,http://em.21dtv.com/songs/60031870.mkv +陈冠希-你快乐吗,http://em.21dtv.com/songs/60031869.mkv +蔡依林-你快乐吗,http://em.21dtv.com/songs/60031868.mkv +周俊伟-new kid in town,http://em.21dtv.com/songs/60004085.mkv +周澎-你快回来,http://em.21dtv.com/songs/60111768.mkv +夏恒-你快回来,http://em.21dtv.com/songs/60103998.mkv +张杰-你快回来,http://em.21dtv.com/songs/60099232.mkv +罗中旭-你快回来,http://em.21dtv.com/songs/60080659.mkv +沙宝亮-你快回来,http://em.21dtv.com/songs/60076925.mkv +孙楠-你快回来,http://em.21dtv.com/songs/60031867.mkv +陆毅-你快回来,http://em.21dtv.com/songs/60031866.mkv +孙楠-你快回来(演唱会),http://em.21dtv.com/songs/60031865.mkv +陈奕夫-你看不到,http://em.21dtv.com/songs/60102876.mkv +王滨-南极之南,http://em.21dtv.com/songs/60064605.mkv +杨钰莹-南京之歌,http://em.21dtv.com/songs/60100193.mkv +曾心梅-哪讲着爱,http://em.21dtv.com/songs/60030662.mkv +江蕙-年久月深,http://em.21dtv.com/songs/60032626.mkv +江蕙+施文彬-年久月深,http://em.21dtv.com/songs/60032625.mkv +侃侃-那江烟花,http://em.21dtv.com/songs/60030710.mkv +张曼-你家我家,http://em.21dtv.com/songs/60085118.mkv +刘晶-你家我家,http://em.21dtv.com/songs/60080647.mkv +廖昌永-那就是我,http://em.21dtv.com/songs/60131389.mkv +白颜-你就是我,http://em.21dtv.com/songs/60098668.mkv +李潮-那就是我,http://em.21dtv.com/songs/60076781.mkv +戴玉强-那就是我,http://em.21dtv.com/songs/60076780.mkv +孙维良-那就是我,http://em.21dtv.com/songs/60030715.mkv +祖海-那就是我(演唱会),http://em.21dtv.com/songs/60030714.mkv +刘维维-那就是我(演唱会),http://em.21dtv.com/songs/60030713.mkv +范竞马-那就是我(演唱会),http://em.21dtv.com/songs/60030712.mkv +群星-年节时景,http://em.21dtv.com/songs/60091852.mkv +玫瑰-年节时景,http://em.21dtv.com/songs/60032624.mkv +赵永-那就是爱,http://em.21dtv.com/songs/60085488.mkv +西单女孩-那就是爱,http://em.21dtv.com/songs/60064591.mkv +洪荣宏-年久情深,http://em.21dtv.com/songs/60100913.mkv +尤雅-年纪青青,http://em.21dtv.com/songs/60032623.mkv +阿娜思语-怒江情歌,http://em.21dtv.com/songs/60134377.mkv +张寒-怒江情歌,http://em.21dtv.com/songs/60032792.mkv +邓丽君-那句诺言,http://em.21dtv.com/songs/60030717.mkv +王铮亮-南京南京,http://em.21dtv.com/songs/60031118.mkv +雷光夏-你静静听,http://em.21dtv.com/songs/60031826.mkv +王俊宇-宁静孤岛,http://em.21dtv.com/songs/60032688.mkv +张清芳-宁静的心,http://em.21dtv.com/songs/60032686.mkv +凤飞飞-你家大门,http://em.21dtv.com/songs/60031813.mkv +胡彦斌-你记得吗,http://em.21dtv.com/songs/60031812.mkv +江蕙-你讲的话,http://em.21dtv.com/songs/60085519.mkv +MOODY BLUES-nights in white satin,http://em.21dtv.com/songs/60004101.mkv +ATOMIC KITTEN-nothing in the world,http://em.21dtv.com/songs/60067958.mkv +PARIS HILTON-nothing in this world,http://em.21dtv.com/songs/60004177.mkv +PANIC AT THE DISCO-nine in the afternoon,http://em.21dtv.com/songs/60004104.mkv +Basick+G2+Hwa Sa-Nice,http://em.21dtv.com/songs/60129887.mkv +张敬轩-男孩最痛,http://em.21dtv.com/songs/60072221.mkv +陈兴瑜-你hold住吗,http://em.21dtv.com/songs/60064612.mkv +佚名-南海之恋,http://em.21dtv.com/songs/60031114.mkv +姚莉-南海之晨,http://em.21dtv.com/songs/60031113.mkv +恬恬姐妹-南海之晨,http://em.21dtv.com/songs/60031112.mkv +潘秀琼-南海之晨,http://em.21dtv.com/songs/60031111.mkv +佚名-霓虹夜雨,http://em.21dtv.com/songs/60031363.mkv +黄宇健-逆火英雄,http://em.21dtv.com/songs/60136021.mkv +林熹瞳-你还有我,http://em.21dtv.com/songs/60124135.mkv +温岚-脑海有浪,http://em.21dtv.com/songs/60093800.mkv +毛泽少-你好阳光,http://em.21dtv.com/songs/60112050.mkv +李卓庭-男孩一次,http://em.21dtv.com/songs/60087987.mkv +薛凯琪-男孩像你,http://em.21dtv.com/songs/60030911.mkv +杨千嬅+林一峰-男孩像你(演唱会),http://em.21dtv.com/songs/60030910.mkv +张也-南湖望月,http://em.21dtv.com/songs/60031116.mkv +甄楚倩-霓虹玩偶(无原唱),http://em.21dtv.com/songs/60093016.mkv +佚名-霓虹玩偶(无原唱),http://em.21dtv.com/songs/60031362.mkv +刘牧-女孩我爱,http://em.21dtv.com/songs/60069686.mkv +罗中旭-你很特别,http://em.21dtv.com/songs/60031790.mkv +罗中旭-你很特别(演唱会),http://em.21dtv.com/songs/60031789.mkv +黄磊-年华似水,http://em.21dtv.com/songs/60032621.mkv +王爱华-你还是你,http://em.21dtv.com/songs/60129407.mkv +晏劭鸣-年华似锦,http://em.21dtv.com/songs/60125635.mkv +路倒男-你好人生,http://em.21dtv.com/songs/60085517.mkv +柯羽-拈花惹草,http://em.21dtv.com/songs/60032618.mkv +陈慧娴+关心妍-拈花惹草,http://em.21dtv.com/songs/60032617.mkv +佚名-南海情歌,http://em.21dtv.com/songs/60031110.mkv +臻言+伊然-男孩女孩,http://em.21dtv.com/songs/60132822.mkv +王不火-南海南海,http://em.21dtv.com/songs/60125895.mkv +费翔-女孩女孩,http://em.21dtv.com/songs/60032868.mkv +刘德华-男孩女孩,http://em.21dtv.com/songs/60030909.mkv +李正帆-男孩女孩,http://em.21dtv.com/songs/60030908.mkv +林玉英+良一-男欢女爱,http://em.21dtv.com/songs/60064596.mkv +张冬玲-男欢女爱,http://em.21dtv.com/songs/60030915.mkv +谢金燕-男欢女爱,http://em.21dtv.com/songs/60030914.mkv +刘德华-男欢女爱,http://em.21dtv.com/songs/60030913.mkv +程芷渝-女皇密令,http://em.21dtv.com/songs/60127254.mkv +佚名-你回来吧,http://em.21dtv.com/songs/60031798.mkv +梁家辉-你回来吧,http://em.21dtv.com/songs/60031797.mkv +吕安娜-你很快乐,http://em.21dtv.com/songs/60120400.mkv +吴克群+宋智孝-你好可爱,http://em.21dtv.com/songs/60110077.mkv +霍建华-你好就好,http://em.21dtv.com/songs/60031766.mkv +石欣卉-女皇驾到,http://em.21dtv.com/songs/60077018.mkv +熊照华-你还好吗,http://em.21dtv.com/songs/60124230.mkv +TimeZ-你还好吗,http://em.21dtv.com/songs/60117500.mkv +宋沛江-你还好吗,http://em.21dtv.com/songs/60111016.mkv +邱锋泽-你还好吗,http://em.21dtv.com/songs/60101686.mkv +1SAGAIN+朱宝拉-你还好吗,http://em.21dtv.com/songs/60076919.mkv +俞隆华-你会后悔,http://em.21dtv.com/songs/60031807.mkv +佚名-你会后悔,http://em.21dtv.com/songs/60031806.mkv +严当当-南湖红船,http://em.21dtv.com/songs/60094382.mkv +张靓颖-南海姑娘,http://em.21dtv.com/songs/60125542.mkv +黄美诗-南海姑娘,http://em.21dtv.com/songs/60089053.mkv +黑妹-南海姑娘(演唱会),http://em.21dtv.com/songs/60076833.mkv +刘惜君-南海姑娘,http://em.21dtv.com/songs/60031109.mkv +爱戴-南海姑娘,http://em.21dtv.com/songs/60031108.mkv +梁静茹-南海姑娘(演唱会),http://em.21dtv.com/songs/60031107.mkv +邓丽君-南海姑娘(演唱会),http://em.21dtv.com/songs/60031106.mkv +王杰-怒海孤鸿,http://em.21dtv.com/songs/60032789.mkv +S.H.E-你会对我,http://em.21dtv.com/songs/60090430.mkv +韩曦-你好草原,http://em.21dtv.com/songs/60064631.mkv +殷秀梅-你好春天,http://em.21dtv.com/songs/60091539.mkv +陈慧琳-你会冲动(演唱会),http://em.21dtv.com/songs/60031805.mkv +王子霆-你好包头,http://em.21dtv.com/songs/60076915.mkv +王子霆-你好包头(演唱会),http://em.21dtv.com/songs/60076914.mkv +小虎队-男孩不哭,http://em.21dtv.com/songs/60115119.mkv +小虎队-男孩不哭,http://em.21dtv.com/songs/60103239.mkv +海龟先生-男孩别哭(演唱会),http://em.21dtv.com/songs/60076818.mkv +晗月-女孩别哭,http://em.21dtv.com/songs/60032861.mkv +光良-女孩别哭,http://em.21dtv.com/songs/60032860.mkv +佚名-男孩不哭,http://em.21dtv.com/songs/60030905.mkv +周兴哲-你好不好,http://em.21dtv.com/songs/60122595.mkv +梁静茹-你会不会,http://em.21dtv.com/songs/60031801.mkv +陈奕迅-你会不会,http://em.21dtv.com/songs/60031800.mkv +张惠妹-你好不好,http://em.21dtv.com/songs/60031762.mkv +CLOWN-你还不懂,http://em.21dtv.com/songs/60031737.mkv +杨阳-你会爱我,http://em.21dtv.com/songs/60076921.mkv +黎明-你很爱我(演唱会),http://em.21dtv.com/songs/60031787.mkv +任军太-你还爱他,http://em.21dtv.com/songs/60101249.mkv +F.I.R-你很爱他,http://em.21dtv.com/songs/60031786.mkv +陈雷-那会按呢,http://em.21dtv.com/songs/60030708.mkv +蔡凤凰+杨鸣-南国之夜,http://em.21dtv.com/songs/60095888.mkv +佚名-南国之夜,http://em.21dtv.com/songs/60031105.mkv +王小利-能哥之歌,http://em.21dtv.com/songs/60031346.mkv +范玮琪-那个早晨,http://em.21dtv.com/songs/60129545.mkv +郑海燕+天音-南国之春,http://em.21dtv.com/songs/60083465.mkv +次仁桑珠-那个远方,http://em.21dtv.com/songs/60128147.mkv +陈楚生-那个远方,http://em.21dtv.com/songs/60124641.mkv +付强-那个夏天,http://em.21dtv.com/songs/60080142.mkv +林正-那个夏天,http://em.21dtv.com/songs/60076777.mkv +田芯儿-那个夏天,http://em.21dtv.com/songs/60061441.mkv +黄品源-那个夏天,http://em.21dtv.com/songs/60030707.mkv +丑丑-南郭先生,http://em.21dtv.com/songs/60031099.mkv +梁雁翎-你歌我歌,http://em.21dtv.com/songs/60031712.mkv +qv小志-那个时候,http://em.21dtv.com/songs/60117483.mkv +李晓东-那个秋天,http://em.21dtv.com/songs/60122865.mkv +施航-那个秋天,http://em.21dtv.com/songs/60069629.mkv +江蕙-难过情关,http://em.21dtv.com/songs/60031219.mkv +西卿-南国情歌,http://em.21dtv.com/songs/60031104.mkv +郑淳元-那个男人,http://em.21dtv.com/songs/60108925.mkv +张碧晨-那个男人,http://em.21dtv.com/songs/60104142.mkv +谢华-那个女人,http://em.21dtv.com/songs/60066165.mkv +杨宗纬-那个男人,http://em.21dtv.com/songs/60061439.mkv +张祥洪-那个女人,http://em.21dtv.com/songs/60030699.mkv +玄彬-那个男人,http://em.21dtv.com/songs/60030696.mkv +韩庚-那个女孩,http://em.21dtv.com/songs/60112383.mkv +韩庚-那个女孩,http://em.21dtv.com/songs/60097251.mkv +陶喆+卢广仲-那个女孩,http://em.21dtv.com/songs/60083451.mkv +咪依鲁江-那个女孩,http://em.21dtv.com/songs/60072215.mkv +孙淑媚-那个女孩,http://em.21dtv.com/songs/60030698.mkv +潘柯夫-那个女孩,http://em.21dtv.com/songs/60030697.mkv +周笔畅-那个那个,http://em.21dtv.com/songs/60030695.mkv +金钟炫-那个名字,http://em.21dtv.com/songs/60113027.mkv +杨钰莹-南国佳人,http://em.21dtv.com/songs/60031101.mkv +邱贤桂-你甘会知,http://em.21dtv.com/songs/60124548.mkv +范逸臣-逆光飞翔,http://em.21dtv.com/songs/60093745.mkv +乐洋-那个冬天,http://em.21dtv.com/songs/60099069.mkv +韩红-那个冬季,http://em.21dtv.com/songs/60030694.mkv +鲍文洋-你给的爱,http://em.21dtv.com/songs/60108173.mkv +瑞琪-你给的爱,http://em.21dtv.com/songs/60031714.mkv +孙淑媚-你敢不敢,http://em.21dtv.com/songs/60125390.mkv +孙淑媚-你敢不敢,http://em.21dtv.com/songs/60100841.mkv +徐佳莹-你敢不敢,http://em.21dtv.com/songs/60067276.mkv +段丽阳-农夫与蛇,http://em.21dtv.com/songs/60100900.mkv +邓海-南方以南,http://em.21dtv.com/songs/60130787.mkv +汤子星-南方以南,http://em.21dtv.com/songs/60072224.mkv +大乔小乔-农夫渔夫,http://em.21dtv.com/songs/60083556.mkv +柏磊-南方小镇,http://em.21dtv.com/songs/60118721.mkv +达明一派-南方舞厅,http://em.21dtv.com/songs/60031096.mkv +达明一派-南方舞厅(演唱会),http://em.21dtv.com/songs/60031095.mkv +李翊君-逆风顺风,http://em.21dtv.com/songs/60032603.mkv +林海峰-逆风速递,http://em.21dtv.com/songs/60133881.mkv +洪乙心-那封情书,http://em.21dtv.com/songs/60030690.mkv +姜孝萌-南方男人,http://em.21dtv.com/songs/60031094.mkv +佚名-难分难离,http://em.21dtv.com/songs/60031217.mkv +王识贤-难分难离,http://em.21dtv.com/songs/60031216.mkv +李玟-难分难离,http://em.21dtv.com/songs/60031215.mkv +李玟+张瑞哲-难分难离,http://em.21dtv.com/songs/60031214.mkv +豪记大对唱-难分难离,http://em.21dtv.com/songs/60031213.mkv +蔡小虎+王瑞霞-难分难离,http://em.21dtv.com/songs/60031212.mkv +南台湾小姑娘-难分难离(无原唱),http://em.21dtv.com/songs/60031211.mkv +邓健泓-难分难解,http://em.21dtv.com/songs/60031210.mkv +吕锦兰+曹秀琴-女驸马三,http://em.21dtv.com/songs/60032856.mkv +小爱的妈-那芳华曲,http://em.21dtv.com/songs/60083449.mkv +赵雷-南方姑娘,http://em.21dtv.com/songs/60108024.mkv +赤龙-逆风飞翔,http://em.21dtv.com/songs/60120974.mkv +晖倪-逆风飞翔,http://em.21dtv.com/songs/60083546.mkv +满文军-逆风而起(演唱会),http://em.21dtv.com/songs/60032602.mkv +佚名-你否定我(无原唱),http://em.21dtv.com/songs/60031702.mkv +路嘉欣-你否定我(无原唱),http://em.21dtv.com/songs/60031701.mkv +吴雨霏-南方的风,http://em.21dtv.com/songs/60031093.mkv +林忆莲-南方的风,http://em.21dtv.com/songs/60031092.mkv +吴雨霏-南方的风(演唱会),http://em.21dtv.com/songs/60031091.mkv +唐杰-男儿之尊(演唱会),http://em.21dtv.com/songs/60030903.mkv +曾小荣-男儿心声,http://em.21dtv.com/songs/60068508.mkv +萧蔓萱-女儿行令,http://em.21dtv.com/songs/60064670.mkv +袁文杰-男儿无泪,http://em.21dtv.com/songs/60030900.mkv +Flume+Kai-Never Be Like You,http://em.21dtv.com/songs/60127649.mkv +ALICIA KEYS-not even the king(演唱会),http://em.21dtv.com/songs/60073671.mkv +曾甜-Neon,http://em.21dtv.com/songs/60113580.mkv +乌兰图雅-诺恩吉雅,http://em.21dtv.com/songs/60132166.mkv +乌兰图雅-诺恩吉雅,http://em.21dtv.com/songs/60116520.mkv +乌云其米格-诺恩吉雅,http://em.21dtv.com/songs/60090487.mkv +太阳部落-鸟儿飞过,http://em.21dtv.com/songs/60104023.mkv +佚名-男儿本色,http://em.21dtv.com/songs/60030883.mkv +罗时丰-男儿本色,http://em.21dtv.com/songs/60030882.mkv +佚名-男儿哀歌,http://em.21dtv.com/songs/60030881.mkv +叶启田-男儿哀歌,http://em.21dtv.com/songs/60030880.mkv +洪荣宏-男儿哀歌,http://em.21dtv.com/songs/60030879.mkv +康康-南都之夜,http://em.21dtv.com/songs/60031090.mkv +蔡凤凰+杨鸣-南都之夜,http://em.21dtv.com/songs/60031089.mkv +佚名-南都之夜(伦巴),http://em.21dtv.com/songs/60031088.mkv +涓子-你的照片,http://em.21dtv.com/songs/60120728.mkv +王卓-你的珍贵,http://em.21dtv.com/songs/60119797.mkv +谢安琪-年度之歌,http://em.21dtv.com/songs/60032619.mkv +击沉女孩-你都知道,http://em.21dtv.com/songs/60097290.mkv +向银莹-你的影子,http://em.21dtv.com/songs/60117609.mkv +丁泽强+陈羽凡-你的样子,http://em.21dtv.com/songs/60094796.mkv +游国维-你的远走(无原唱),http://em.21dtv.com/songs/60031681.mkv +叶瑗菱-你的影子,http://em.21dtv.com/songs/60031679.mkv +李玟-你的影子,http://em.21dtv.com/songs/60031678.mkv +陈国宁-你的影子,http://em.21dtv.com/songs/60031677.mkv +罗大佑-你的样子,http://em.21dtv.com/songs/60031676.mkv +林志炫-你的样子,http://em.21dtv.com/songs/60031675.mkv +罗大佑-你的样子(演唱会),http://em.21dtv.com/songs/60031674.mkv +林奕匡-难得一遇,http://em.21dtv.com/songs/60133868.mkv +林奕匡-难得一遇,http://em.21dtv.com/songs/60132606.mkv +佳佳-你的眼神,http://em.21dtv.com/songs/60133371.mkv +南玛子呷+李蔓-你的眼神,http://em.21dtv.com/songs/60103959.mkv +韦绮姗-你的眼神(演唱会),http://em.21dtv.com/songs/60083505.mkv +林志炫-你的眼神,http://em.21dtv.com/songs/60076903.mkv +张智霖+许秋怡-你的眼神,http://em.21dtv.com/songs/60031668.mkv +卫兰-你的眼神,http://em.21dtv.com/songs/60031667.mkv +那英-你的眼神,http://em.21dtv.com/songs/60031666.mkv +蔡琴-你的眼神,http://em.21dtv.com/songs/60031665.mkv +佚名-你的眼神(慢四),http://em.21dtv.com/songs/60031664.mkv +蔡琴-你的眼神(HD演唱会),http://em.21dtv.com/songs/60031663.mkv +CLOSER-难得有人,http://em.21dtv.com/songs/60076847.mkv +洪荣宏-南都夜曲,http://em.21dtv.com/songs/60095785.mkv +4 IN LOVE-你的一切,http://em.21dtv.com/songs/60090368.mkv +汪苏泷-你的要求,http://em.21dtv.com/songs/60076904.mkv +佚名-南都夜曲,http://em.21dtv.com/songs/60031087.mkv +郭桂彬-南都夜曲,http://em.21dtv.com/songs/60031086.mkv +迪克牛仔-牛的眼泪,http://em.21dtv.com/songs/60083555.mkv +许美静-你的眼泪,http://em.21dtv.com/songs/60076902.mkv +黄品源-你的眼泪,http://em.21dtv.com/songs/60031660.mkv +黄品源-你的眼泪(演唱会),http://em.21dtv.com/songs/60031659.mkv +左小祖咒+谭维维-你的眼睛,http://em.21dtv.com/songs/60083503.mkv +陈羽凡+米可-你的眼睛,http://em.21dtv.com/songs/60080920.mkv +许绍洋-你的眼睛,http://em.21dtv.com/songs/60031655.mkv +许茹芸+熊天平-你的眼睛,http://em.21dtv.com/songs/60031654.mkv +潘秀琼-你的眼睛,http://em.21dtv.com/songs/60031653.mkv +罗永娟-你的眼睛,http://em.21dtv.com/songs/60031652.mkv +冰雪姐妹-你的眼睛,http://em.21dtv.com/songs/60031651.mkv +孙燕姿-难得一见(演唱会),http://em.21dtv.com/songs/60031203.mkv +JR纪言恺+阿喜-你的拥抱,http://em.21dtv.com/songs/60124913.mkv +纪言恺+阿喜-你的拥抱,http://em.21dtv.com/songs/60124339.mkv +李亮超-你的选择,http://em.21dtv.com/songs/60103348.mkv +易欣-你的选择,http://em.21dtv.com/songs/60031650.mkv +郑中基-你的选择(演唱会),http://em.21dtv.com/songs/60031649.mkv +易欣-你的选择(演唱会),http://em.21dtv.com/songs/60031648.mkv +张宇-你的现在,http://em.21dtv.com/songs/60031625.mkv +许慧欣-你的小说,http://em.21dtv.com/songs/60072232.mkv +黄乙玲-你的新衫,http://em.21dtv.com/songs/60031646.mkv +猪头皮-你的心情,http://em.21dtv.com/songs/60090077.mkv +郭静-你的香气,http://em.21dtv.com/songs/60031626.mkv +SWEETY-你的心呢,http://em.21dtv.com/songs/60031633.mkv +谢震廷+徐靖玟-你的行李,http://em.21dtv.com/songs/60124499.mkv +东南-你的旋律,http://em.21dtv.com/songs/60111672.mkv +群星-年都笑了,http://em.21dtv.com/songs/60108812.mkv +二龙-年都笑了,http://em.21dtv.com/songs/60108274.mkv +罗艺-你的幸福,http://em.21dtv.com/songs/60068534.mkv +小山-你的王子,http://em.21dtv.com/songs/60031614.mkv +黄芳-你带我走,http://em.21dtv.com/songs/60031522.mkv +侯磊-你的微笑,http://em.21dtv.com/songs/60081537.mkv +夏颖-你的微笑(演唱会),http://em.21dtv.com/songs/60072231.mkv +F.I.R-你的微笑,http://em.21dtv.com/songs/60031615.mkv +梁珍-你的温柔,http://em.21dtv.com/songs/60069654.mkv +子枫-你的温柔,http://em.21dtv.com/songs/60063482.mkv +花儿(林佳音)-你多完美,http://em.21dtv.com/songs/60131757.mkv +徐鑫+刘竹清-你的王国,http://em.21dtv.com/songs/60103305.mkv +梁博-你的我的,http://em.21dtv.com/songs/60086730.mkv +龙军-你的我的,http://em.21dtv.com/songs/60031623.mkv +范文芳-你的温度,http://em.21dtv.com/songs/60031620.mkv +蔡健雅-你的温度,http://em.21dtv.com/songs/60031619.mkv +孟庭苇-你的味道,http://em.21dtv.com/songs/60031617.mkv +HOTCHA-你的味道,http://em.21dtv.com/songs/60031616.mkv +周渝民-你的体温,http://em.21dtv.com/songs/60031610.mkv +莫文蔚-你的天堂,http://em.21dtv.com/songs/60083501.mkv +郭书瑶-你的甜蜜(演唱会),http://em.21dtv.com/songs/60076899.mkv +糖兄妹-你的甜蜜(演唱会),http://em.21dtv.com/songs/60069653.mkv +范晓萱-你的甜蜜,http://em.21dtv.com/songs/60031613.mkv +李宇春-你的甜蜜(演唱会),http://em.21dtv.com/songs/60031612.mkv +范晓萱-你的甜蜜(演唱会),http://em.21dtv.com/songs/60031611.mkv +张宇-你对她好,http://em.21dtv.com/songs/60031694.mkv +誓言+林姗-你的誓言,http://em.21dtv.com/songs/60062909.mkv +骆超勇-你的誓言,http://em.21dtv.com/songs/60031609.mkv +何炅-那段岁月,http://em.21dtv.com/songs/60030688.mkv +君子-你的生日,http://em.21dtv.com/songs/60105684.mkv +郑智化-你的生日,http://em.21dtv.com/songs/60031606.mkv +蓝萍-南都三景,http://em.21dtv.com/songs/60095884.mkv +EXO-你的世界,http://em.21dtv.com/songs/60076898.mkv +苏振华-你的世界,http://em.21dtv.com/songs/60062937.mkv +阿桑-你的世界,http://em.21dtv.com/songs/60031607.mkv +葛民辉-你的生活(演唱会),http://em.21dtv.com/songs/60031605.mkv +阿浩-你的容颜,http://em.21dtv.com/songs/60031602.mkv +余天-你的人生,http://em.21dtv.com/songs/60134885.mkv +梁汉文-难得情真,http://em.21dtv.com/songs/60031201.mkv +冷酷-难断情缘,http://em.21dtv.com/songs/60113283.mkv +曾文婷-你的气息,http://em.21dtv.com/songs/60117784.mkv +梁静茹-闹点情绪,http://em.21dtv.com/songs/60090021.mkv +吕方-你的浅笑,http://em.21dtv.com/songs/60031598.mkv +刘宏杰-你的浅笑,http://em.21dtv.com/songs/60031597.mkv +慕容晓晓-你的圈套,http://em.21dtv.com/songs/60076897.mkv +望海高歌-难断情殇,http://em.21dtv.com/songs/60126987.mkv +原创小宝-你的情话,http://em.21dtv.com/songs/60031599.mkv +回音哥-你的配角,http://em.21dtv.com/songs/60110102.mkv +许志安-你的男人,http://em.21dtv.com/songs/60109622.mkv +卫兰-你的女人,http://em.21dtv.com/songs/60092392.mkv +彭清-你的名字,http://em.21dtv.com/songs/60131426.mkv +许飞-你的名字,http://em.21dtv.com/songs/60130748.mkv +蒙面哥-你的名字,http://em.21dtv.com/songs/60130716.mkv +王如华-你的名字,http://em.21dtv.com/songs/60130576.mkv +陈零九+夏如芝-你的名字,http://em.21dtv.com/songs/60129766.mkv +刘建辉-你的名字,http://em.21dtv.com/songs/60095465.mkv +风之琳-你的模样,http://em.21dtv.com/songs/60100642.mkv +林垦-你的模样,http://em.21dtv.com/songs/60100202.mkv +袁攀-你的模样,http://em.21dtv.com/songs/60076895.mkv +张振宇-你的模样,http://em.21dtv.com/songs/60031594.mkv +赵青岳-你的梦想,http://em.21dtv.com/songs/60132930.mkv +李琦-你的美丽,http://em.21dtv.com/songs/60129238.mkv +闪亮三姐妹-你的魔力,http://em.21dtv.com/songs/60031595.mkv +苏振华-你的目光,http://em.21dtv.com/songs/60128341.mkv +谢铭佑-那朵玫瑰,http://em.21dtv.com/songs/60108892.mkv +卓玛加-你的目光,http://em.21dtv.com/songs/60031596.mkv +严辉-你的留言,http://em.21dtv.com/songs/60117527.mkv +杨家成-你的理由,http://em.21dtv.com/songs/60031579.mkv +郭燕-你的冷艳,http://em.21dtv.com/songs/60031578.mkv +黄艾薇-你的蓝天,http://em.21dtv.com/songs/60102688.mkv +郑智化-你的灵魂,http://em.21dtv.com/songs/60088762.mkv +李翊君-你的泪光,http://em.21dtv.com/songs/60069652.mkv +林乐伟-你的狂妄,http://em.21dtv.com/songs/60076891.mkv +应昌佑-你的快乐,http://em.21dtv.com/songs/60031571.mkv +李骏宇-脑袋拒载,http://em.21dtv.com/songs/60068521.mkv +何耀珊-你的肩膀,http://em.21dtv.com/songs/60031568.mkv +佚名-nobody does it better,http://em.21dtv.com/songs/60004149.mkv +亚东-你的谎言,http://em.21dtv.com/songs/60031567.mkv +郑钧-难得胡涂,http://em.21dtv.com/songs/60088779.mkv +久登-难得糊涂,http://em.21dtv.com/songs/60076844.mkv +林久登-难得糊涂,http://em.21dtv.com/songs/60064606.mkv +张智霖-难得糊涂,http://em.21dtv.com/songs/60031200.mkv +辛晓琪-难得糊涂,http://em.21dtv.com/songs/60031199.mkv +谢有才-难得糊涂,http://em.21dtv.com/songs/60031198.mkv +谭咏麟+黄凯芹-难得糊涂,http://em.21dtv.com/songs/60031197.mkv +谭咏麟-难得糊涂(演唱会),http://em.21dtv.com/songs/60031196.mkv +郭芳芳-你的故事,http://em.21dtv.com/songs/60070985.mkv +A Lin-难得孤寂,http://em.21dtv.com/songs/60108206.mkv +A LIN-难得孤寂,http://em.21dtv.com/songs/60107391.mkv +陈大天-南丁格尔,http://em.21dtv.com/songs/60108118.mkv +张语倢-你的风衣,http://em.21dtv.com/songs/60031561.mkv +五洋-你的方向,http://em.21dtv.com/songs/60031559.mkv +罗秋红-娘的佛经,http://em.21dtv.com/songs/60069683.mkv +王羚柔-你的房间(无原唱),http://em.21dtv.com/songs/60031560.mkv +霍建华-你的第一,http://em.21dtv.com/songs/60031557.mkv +丁薇-你的独舞,http://em.21dtv.com/songs/60090460.mkv +蓝心湄+脱拉库-你的电话,http://em.21dtv.com/songs/60031558.mkv +孙艺程-你懂的歌(演唱会),http://em.21dtv.com/songs/60064628.mkv +飞翔-牛的传人,http://em.21dtv.com/songs/60121145.mkv +海鸣威-你的承诺,http://em.21dtv.com/songs/60031554.mkv +海鸣威+泳儿-你的承诺,http://em.21dtv.com/songs/60031553.mkv +张挥-你的长发,http://em.21dtv.com/songs/60069651.mkv +许志豪-你的背影,http://em.21dtv.com/songs/60076889.mkv +张逸扬-你的背影,http://em.21dtv.com/songs/60064626.mkv +官恩娜-你都不懂,http://em.21dtv.com/songs/60098270.mkv +王栎鑫-你懂不懂,http://em.21dtv.com/songs/60093799.mkv +祁哲西-你都不懂,http://em.21dtv.com/songs/60076906.mkv +阿超-你懂不懂,http://em.21dtv.com/songs/60031686.mkv +沈波-你的背包,http://em.21dtv.com/songs/60120694.mkv +古振邦+李文豪-你的背包,http://em.21dtv.com/songs/60114434.mkv +胡彦斌-你的背包,http://em.21dtv.com/songs/60109581.mkv +多亮-你的背包,http://em.21dtv.com/songs/60070127.mkv +莫艳琳-你的背包,http://em.21dtv.com/songs/60031552.mkv +陈奕迅-你的背包,http://em.21dtv.com/songs/60031551.mkv +罗百吉-你的抱抱,http://em.21dtv.com/songs/60031550.mkv +叶欢-你的宝贝,http://em.21dtv.com/songs/60031549.mkv +谢丽娟-你的芭比,http://em.21dtv.com/songs/60031548.mkv +Denyme-你的爱我,http://em.21dtv.com/songs/60103764.mkv +于浩威-你的爱人,http://em.21dtv.com/songs/60031546.mkv +邓丽君+谭咏麟-你的爱人,http://em.21dtv.com/songs/60031545.mkv +毕婕+Nik Phillips-N次想念,http://em.21dtv.com/songs/60125842.mkv +徐莹-你曾我曾,http://em.21dtv.com/songs/60100053.mkv +SINEAD O'CONNO-nothing compares 2 u,http://em.21dtv.com/songs/60004172.mkv +卢巧音-nothing compares to you(演唱会),http://em.21dtv.com/songs/60004173.mkv +刘尊-你才是你,http://em.21dtv.com/songs/60031511.mkv +陶然-你曾说过,http://em.21dtv.com/songs/60120110.mkv +多亮-你曾说过,http://em.21dtv.com/songs/60081874.mkv +佚名-never can say goodbye,http://em.21dtv.com/songs/60004062.mkv +AAA-no cry no more,http://em.21dtv.com/songs/60060880.mkv +卢巧音-逆插玫瑰,http://em.21dtv.com/songs/60032600.mkv +黄艺-那场电影,http://em.21dtv.com/songs/60116415.mkv +许美静-你抽的烟,http://em.21dtv.com/songs/60031514.mkv +S.H.E-你曾对我,http://em.21dtv.com/songs/60090416.mkv +江若琳-你不在了,http://em.21dtv.com/songs/60031506.mkv +李秋实-你不在乎,http://em.21dtv.com/songs/60109433.mkv +汪峰-你不知道,http://em.21dtv.com/songs/60100910.mkv +杨韵禾-你不知道,http://em.21dtv.com/songs/60031508.mkv +IO乐团-你不知道(演唱会),http://em.21dtv.com/songs/60031507.mkv +潘秀琼-你不要走,http://em.21dtv.com/songs/60090053.mkv +陈慧琳-你不一样,http://em.21dtv.com/songs/60031502.mkv +黄明志+何恋慈+翁依玲-你不要我,http://em.21dtv.com/songs/60124742.mkv +WILEY+EMELI SANDE-never be your woman,http://em.21dtv.com/songs/60071643.mkv +敖威-你不要哭,http://em.21dtv.com/songs/60083493.mkv +南拳妈妈-你不像她,http://em.21dtv.com/songs/60031499.mkv +君子-南北兄弟,http://em.21dtv.com/songs/60109217.mkv +曹方-南部小城,http://em.21dtv.com/songs/60031085.mkv +戴爱玲-你不是我,http://em.21dtv.com/songs/60113532.mkv +戴爱玲-你不是我,http://em.21dtv.com/songs/60111928.mkv +徐良-你不是我,http://em.21dtv.com/songs/60031488.mkv +江蕙-你不识我,http://em.21dtv.com/songs/60031484.mkv +那英-你不是说,http://em.21dtv.com/songs/60062777.mkv +罗宾-那不是梦,http://em.21dtv.com/songs/60091832.mkv +刘德华+周俊伟-你别傻了,http://em.21dtv.com/songs/60031443.mkv +张力超-你不说话,http://em.21dtv.com/songs/60104110.mkv +白雪-女兵十八,http://em.21dtv.com/songs/60091781.mkv +江语晨-那不是爱,http://em.21dtv.com/songs/60116099.mkv +江语晨-那不是爱,http://em.21dtv.com/songs/60030685.mkv +AT17-女扮男生,http://em.21dtv.com/songs/60032832.mkv +林一峰-女扮男生(演唱会),http://em.21dtv.com/songs/60032831.mkv +达明一派-女扮男生(演唱会),http://em.21dtv.com/songs/60032830.mkv +TWINS+AT17-女扮男生(演唱会),http://em.21dtv.com/songs/60032829.mkv +AT17-女扮男生(演唱会),http://em.21dtv.com/songs/60032828.mkv +李文杰-能不能哭,http://em.21dtv.com/songs/60064609.mkv +路嘉欣-你不能飞(无原唱),http://em.21dtv.com/songs/60031481.mkv +沈腾+王祖蓝+邹市明-难·不难,http://em.21dtv.com/songs/60116108.mkv +彭炽权+蒋文端-啮臂盟心(戏曲),http://em.21dtv.com/songs/60092679.mkv +钟少杰-你变了心,http://em.21dtv.com/songs/60110596.mkv +乌兰托娅-你变了吗,http://em.21dtv.com/songs/60076870.mkv +李威-你不快乐,http://em.21dtv.com/songs/60031479.mkv +许诺-你不会懂,http://em.21dtv.com/songs/60126190.mkv +钟欣桐-你不会懂,http://em.21dtv.com/songs/60031473.mkv +张宇-你不会懂,http://em.21dtv.com/songs/60031472.mkv +马郁-你别怪我,http://em.21dtv.com/songs/60083492.mkv +江美琪-你不公平,http://em.21dtv.com/songs/60031465.mkv +谢金燕-你不乖乖,http://em.21dtv.com/songs/60031468.mkv +贺一航-你不懂我,http://em.21dtv.com/songs/60128413.mkv +Com'Z康姆士乐团-你不懂我,http://em.21dtv.com/songs/60107399.mkv +叶时伟-你不懂我,http://em.21dtv.com/songs/60076874.mkv +徐誉滕-你不懂我,http://em.21dtv.com/songs/60031459.mkv +古巨基-侬本多情,http://em.21dtv.com/songs/60134974.mkv +张国荣-侬本多情,http://em.21dtv.com/songs/60032763.mkv +张国荣-侬本多情(演唱会),http://em.21dtv.com/songs/60032762.mkv +杨千嬅+林一峰-侬本多情(演唱会),http://em.21dtv.com/songs/60032761.mkv +罗家英-侬本多情(演唱会),http://em.21dtv.com/songs/60032760.mkv +刘家昌-侬本多情(演唱会),http://em.21dtv.com/songs/60032759.mkv +王丽达-女兵电话,http://em.21dtv.com/songs/60117911.mkv +小刘欢-你不懂爱,http://em.21dtv.com/songs/60031457.mkv +高山林-你不懂爱,http://em.21dtv.com/songs/60031456.mkv +舒晓龙+鲁晓宝-你 不懂,http://em.21dtv.com/songs/60127323.mkv +吴莺音-侬本痴情,http://em.21dtv.com/songs/60032758.mkv +夏婉安-你不纯洁,http://em.21dtv.com/songs/60121526.mkv +李纷菲-你不爱我,http://em.21dtv.com/songs/60064617.mkv +郁可唯-你不爱我,http://em.21dtv.com/songs/60031447.mkv +康康-你不爱我,http://em.21dtv.com/songs/60031446.mkv +陈国华-你不爱我,http://em.21dtv.com/songs/60031445.mkv +曹龙-你爱着他,http://em.21dtv.com/songs/60080439.mkv +吴炜-你爱着他,http://em.21dtv.com/songs/60031415.mkv +阿华-你爱着谁,http://em.21dtv.com/songs/60031414.mkv +孙翠凤-鸟啊展翅,http://em.21dtv.com/songs/60032671.mkv +毛宁-你爱我吗,http://em.21dtv.com/songs/60094970.mkv +伍家辉-你爱我吗?,http://em.21dtv.com/songs/60076860.mkv +青春美少女-你爱我吗(演唱会),http://em.21dtv.com/songs/60070979.mkv +伍家辉-你爱我吗,http://em.21dtv.com/songs/60067269.mkv +樱桃帮-你爱我吗,http://em.21dtv.com/songs/60031407.mkv +佚名-你爱我吗,http://em.21dtv.com/songs/60031406.mkv +刘虹华-你爱我吗,http://em.21dtv.com/songs/60031405.mkv +零峰-你爱我吗,http://em.21dtv.com/songs/60031404.mkv +侯湘婷-你爱我吗,http://em.21dtv.com/songs/60031403.mkv +风云组合-你爱我吗,http://em.21dtv.com/songs/60031402.mkv +范逸臣-你爱我吗,http://em.21dtv.com/songs/60031401.mkv +梁屾-你爱我爱,http://em.21dtv.com/songs/60106037.mkv +钟汉良-你爱他吗,http://em.21dtv.com/songs/60031393.mkv +许志安-你爱上他,http://em.21dtv.com/songs/60031389.mkv +李咏梅-你爱如山,http://em.21dtv.com/songs/60094930.mkv +汪起正-Nana,http://em.21dtv.com/songs/60135483.mkv +魏如萱-你啊你啊,http://em.21dtv.com/songs/60130914.mkv +阿伍-你爱了谁,http://em.21dtv.com/songs/60120055.mkv +黄征-你爱了吗,http://em.21dtv.com/songs/60064613.mkv +陈玉建-你爱了吗,http://em.21dtv.com/songs/60031388.mkv +陈玉建-你爱了吗(舞曲版),http://em.21dtv.com/songs/60031387.mkv +李浩民-你爱过我,http://em.21dtv.com/songs/60086727.mkv +齐天三喜-你爱的他,http://em.21dtv.com/songs/60081375.mkv +于浩威-你爱的人,http://em.21dtv.com/songs/60031378.mkv +Justin Timberlake-Not A Bad Thing,http://em.21dtv.com/songs/60099005.mkv +M3-那ㄟ按呢,http://em.21dtv.com/songs/60030682.mkv +郑琼之-那ㄟ安呢,http://em.21dtv.com/songs/60030681.mkv +吴雨霏-明知做戏,http://em.21dtv.com/songs/60030265.mkv +吴雨霏-明知做戏(演唱会),http://em.21dtv.com/songs/60030264.mkv +陈松伶-民族之光,http://em.21dtv.com/songs/60030067.mkv +洪卓立-弥足珍贵,http://em.21dtv.com/songs/60029852.mkv +江蕙-梦中之歌,http://em.21dtv.com/songs/60029834.mkv +郭婷筠-命中注定,http://em.21dtv.com/songs/60130797.mkv +王曼棋-命中注定,http://em.21dtv.com/songs/60115298.mkv +A Lin+孙楠-命中注定,http://em.21dtv.com/songs/60112415.mkv +VIXX-命中注定,http://em.21dtv.com/songs/60109905.mkv +易欣-命中注定,http://em.21dtv.com/songs/60091268.mkv +庾澄庆-命中注定,http://em.21dtv.com/songs/60030311.mkv +王识贤-命中注定,http://em.21dtv.com/songs/60030310.mkv +佚名-梦中也好,http://em.21dtv.com/songs/60029832.mkv +江蕙-梦中也好,http://em.21dtv.com/songs/60029831.mkv +群星-梦在远方,http://em.21dtv.com/songs/60116201.mkv +黎明-梦中相拥,http://em.21dtv.com/songs/60029828.mkv +刘晶-梦在心上,http://em.21dtv.com/songs/60104829.mkv +戈浪-梦中新娘,http://em.21dtv.com/songs/60109381.mkv +天坛男孩-梦中新娘,http://em.21dtv.com/songs/60085469.mkv +祁隆-梦中新娘,http://em.21dtv.com/songs/60069613.mkv +陈瑞-梦醉西楼,http://em.21dtv.com/songs/60029841.mkv +陈奕迅-梦中相见,http://em.21dtv.com/songs/60093401.mkv +魏晨-帽子戏法,http://em.21dtv.com/songs/60106476.mkv +沈文程-梦中相伴(无原唱),http://em.21dtv.com/songs/60029827.mkv +郑智化-面子问题,http://em.21dtv.com/songs/60030040.mkv +阿帕队-面子问题(无原唱),http://em.21dtv.com/songs/60030039.mkv +佚名-梦在他乡,http://em.21dtv.com/songs/60029756.mkv +毛宁-梦在他乡,http://em.21dtv.com/songs/60029755.mkv +VANNESSA-梦中天堂,http://em.21dtv.com/songs/60029824.mkv +佚名-梦中天使,http://em.21dtv.com/songs/60029823.mkv +唐韦琪-梦中天使,http://em.21dtv.com/songs/60029822.mkv +唐韦琪-梦中天使(演唱会),http://em.21dtv.com/songs/60029821.mkv +钟舒祺-免责条款,http://em.21dtv.com/songs/60129697.mkv +王杰-明知痛苦,http://em.21dtv.com/songs/60092985.mkv +阳艺-梦中水乡,http://em.21dtv.com/songs/60123272.mkv +随性乐队-梦中世界,http://em.21dtv.com/songs/60097417.mkv +林忆莲-蔓珠莎华,http://em.21dtv.com/songs/60097471.mkv +刘雅丽-蔓珠莎华(演唱会),http://em.21dtv.com/songs/60083342.mkv +林静仪-蔓珠莎华(演唱会),http://em.21dtv.com/songs/60076571.mkv +李丽霞-蔓珠莎华(演唱会),http://em.21dtv.com/songs/60068461.mkv +佚名-蔓珠莎华,http://em.21dtv.com/songs/60028560.mkv +梅艳芳-蔓珠莎华(演唱会),http://em.21dtv.com/songs/60028559.mkv +梅艳芳+陈慧琳-蔓珠莎华(演唱会),http://em.21dtv.com/songs/60028558.mkv +庄振凯+陈淑萍-梦中情缘,http://em.21dtv.com/songs/60125484.mkv +秀秀-梦中情缘,http://em.21dtv.com/songs/60029806.mkv +秀兰玛雅+施文彬-梦中情网,http://em.21dtv.com/songs/60029805.mkv +罗中旭-梅子青时,http://em.21dtv.com/songs/60134069.mkv +魏嘉榆+方顺吉-母子情深,http://em.21dtv.com/songs/60114288.mkv +十三狼-母子情深,http://em.21dtv.com/songs/60105662.mkv +艾松勐-梦中情人,http://em.21dtv.com/songs/60124842.mkv +王英俊-梦中情人,http://em.21dtv.com/songs/60117045.mkv +秋裤大叔-梦中情人,http://em.21dtv.com/songs/60108766.mkv +张磊-梦中情人,http://em.21dtv.com/songs/60093898.mkv +囚鸟-梦中情人(欣赏),http://em.21dtv.com/songs/60087614.mkv +郑源+赵荣-梦中情人,http://em.21dtv.com/songs/60083408.mkv +郑源-梦中情人,http://em.21dtv.com/songs/60076695.mkv +赵小兵-梦中情人,http://em.21dtv.com/songs/60064558.mkv +张勇-梦中情人,http://em.21dtv.com/songs/60029804.mkv +詹曼铃+林菁国-梦中情人,http://em.21dtv.com/songs/60029803.mkv +张蓉蓉-梦中恰恰,http://em.21dtv.com/songs/60135237.mkv +杨天锐-梦在前方,http://em.21dtv.com/songs/60113673.mkv +林志颖-梦在前方,http://em.21dtv.com/songs/60029754.mkv +利得汇-魔咒女狼,http://em.21dtv.com/songs/60030372.mkv +侯玉斌-梦中女孩,http://em.21dtv.com/songs/60118351.mkv +马粮-梦中女孩,http://em.21dtv.com/songs/60114269.mkv +易帆-梦中女孩,http://em.21dtv.com/songs/60111130.mkv +玉面天使-梦中男孩,http://em.21dtv.com/songs/60108697.mkv +金城-梦中女孩(演唱会),http://em.21dtv.com/songs/60029800.mkv +李明洋-梦中没你,http://em.21dtv.com/songs/60081062.mkv +林良要-梦在路上,http://em.21dtv.com/songs/60124139.mkv +曾甜-妈祖咧看,http://em.21dtv.com/songs/60111949.mkv +焰烽-梦中灵柩,http://em.21dtv.com/songs/60072201.mkv +苏晴-命中红心,http://em.21dtv.com/songs/60068496.mkv +高安+云菲菲-梦醉荷塘,http://em.21dtv.com/songs/60105527.mkv +张雷-梦中回家,http://em.21dtv.com/songs/60063384.mkv +吴琼-苗寨欢歌,http://em.21dtv.com/songs/60076712.mkv +李娅莎-明知故问,http://em.21dtv.com/songs/60130415.mkv +易丹-梦中姑娘,http://em.21dtv.com/songs/60089922.mkv +朱茵-某种感觉,http://em.21dtv.com/songs/60030506.mkv +戴岑桦+卢瑮莉-马子狗狗,http://em.21dtv.com/songs/60125601.mkv +胡鸿钧-明知故犯,http://em.21dtv.com/songs/60117147.mkv +余文乐+张燊悦-明知故犯,http://em.21dtv.com/songs/60115002.mkv +胡渭康-明知故犯(演唱会),http://em.21dtv.com/songs/60083426.mkv +刘美君-明知故犯,http://em.21dtv.com/songs/60069619.mkv +张荣悦+余文乐-明知故犯,http://em.21dtv.com/songs/60030261.mkv +许美静-明知故犯,http://em.21dtv.com/songs/60030260.mkv +孙耀威-明知故犯(演唱会),http://em.21dtv.com/songs/60030259.mkv +关淑怡-明知故犯(演唱会),http://em.21dtv.com/songs/60030258.mkv +陈福庭-明珠飞翔,http://em.21dtv.com/songs/60076735.mkv +满文军-满载而归,http://em.21dtv.com/songs/60028545.mkv +萧蔓萱-梦中的 WALTZ(无原唱),http://em.21dtv.com/songs/60078933.mkv +易子含-梦中的我,http://em.21dtv.com/songs/60029787.mkv +萧蔓萱-梦中的waltz(无原唱),http://em.21dtv.com/songs/60029762.mkv +汪苏泷+阿悄-埋葬冬天,http://em.21dtv.com/songs/60028421.mkv +张蓉蓉-梦中的人,http://em.21dtv.com/songs/60123952.mkv +于全莉-梦中的人,http://em.21dtv.com/songs/60116526.mkv +詹曼铃-梦中的人,http://em.21dtv.com/songs/60029784.mkv +荒山亮-买醉的人,http://em.21dtv.com/songs/60028431.mkv +蔡小虎-买醉的人,http://em.21dtv.com/songs/60028430.mkv +望海高歌-梦中的秋,http://em.21dtv.com/songs/60125659.mkv +任妙音-梦中的你,http://em.21dtv.com/songs/60108294.mkv +张学友-梦中的你,http://em.21dtv.com/songs/60029779.mkv +佚名-梦中的你,http://em.21dtv.com/songs/60029778.mkv +翁立友-梦中的你,http://em.21dtv.com/songs/60029777.mkv +王惠樱-梦中的你,http://em.21dtv.com/songs/60029776.mkv +韩宝仪-梦中的梦,http://em.21dtv.com/songs/60029775.mkv +拉毛王旭-梦中的龙,http://em.21dtv.com/songs/60076693.mkv +格桑-梦中的湖,http://em.21dtv.com/songs/60029771.mkv +梁佳玉-梦中的船,http://em.21dtv.com/songs/60093636.mkv +佚名-梦中的爱,http://em.21dtv.com/songs/60029763.mkv +高昆-梦在草原,http://em.21dtv.com/songs/60100662.mkv +李琛-梦中草原,http://em.21dtv.com/songs/60091349.mkv +吴俊宏-妈祖出巡,http://em.21dtv.com/songs/60135009.mkv +何纾-美在春城,http://em.21dtv.com/songs/60083386.mkv +许志安+叶德娴-美中不足,http://em.21dtv.com/songs/60029357.mkv +叶德娴+廖书凡-美中不足(演唱会),http://em.21dtv.com/songs/60029356.mkv +容祖儿+张信哲-美中不足(演唱会),http://em.21dtv.com/songs/60029355.mkv +达娃卓玛-美在白马,http://em.21dtv.com/songs/60076638.mkv +苏青山-梦在彼岸,http://em.21dtv.com/songs/60097418.mkv +林姗-埋葬爱情,http://em.21dtv.com/songs/60028420.mkv +钟嘉欣-明争暗斗,http://em.21dtv.com/songs/60030255.mkv +青山-庙院钟声,http://em.21dtv.com/songs/60030059.mkv +龙羿乐队-命运之路,http://em.21dtv.com/songs/60093648.mkv +刘斌-命运之路,http://em.21dtv.com/songs/60030309.mkv +高娜-蚂蚁之恋,http://em.21dtv.com/songs/60028412.mkv +张也-梦圆中国,http://em.21dtv.com/songs/60108478.mkv +5566-漫游中国,http://em.21dtv.com/songs/60028573.mkv +EXO M-漫游宇宙,http://em.21dtv.com/songs/60123469.mkv +尹钟信+Hanhae+KittiB-没有意义,http://em.21dtv.com/songs/60125449.mkv +童安格-梦已遥远,http://em.21dtv.com/songs/60029738.mkv +郑少秋-命运游戏,http://em.21dtv.com/songs/60093281.mkv +廖国钺-满月已霜,http://em.21dtv.com/songs/60105010.mkv +许佳慧-没有勇气,http://em.21dtv.com/songs/60131807.mkv +巫启贤-梦与现实,http://em.21dtv.com/songs/60029746.mkv +佚名-目一吓开,http://em.21dtv.com/songs/60030596.mkv +佚名-目一下开(无原唱),http://em.21dtv.com/songs/60030595.mkv +高玉玫-梦游仙境,http://em.21dtv.com/songs/60064554.mkv +黄磊-没有想法,http://em.21dtv.com/songs/60028896.mkv +吴炜-蜜月相册,http://em.21dtv.com/songs/60029990.mkv +佚名-美玉无瑕,http://em.21dtv.com/songs/60029354.mkv +原子霏-没有问题,http://em.21dtv.com/songs/60130161.mkv +范文芳-没有问题,http://em.21dtv.com/songs/60028892.mkv +郑少秋-梦月无情,http://em.21dtv.com/songs/60029750.mkv +酒井美子-梦也无憾,http://em.21dtv.com/songs/60088796.mkv +五音Jw-明月天涯,http://em.21dtv.com/songs/60134869.mkv +五音Jw-明月天涯,http://em.21dtv.com/songs/60126585.mkv +毕国勇-没有退路,http://em.21dtv.com/songs/60028891.mkv +叶文辉-没有童话,http://em.21dtv.com/songs/60076590.mkv +沙漠讯号-没有台风,http://em.21dtv.com/songs/60128164.mkv +何超仪-蜜月套房(无原唱),http://em.21dtv.com/songs/60092262.mkv +心跳男孩-每一天EVERY_DAY,http://em.21dtv.com/songs/60091219.mkv +欧阳靖+陈奂仁-买一送一,http://em.21dtv.com/songs/60028427.mkv +阿男-明月山下,http://em.21dtv.com/songs/60108965.mkv +KEITH SWEAT-make you say ooh,http://em.21dtv.com/songs/60067941.mkv +佚名-maybe you should know,http://em.21dtv.com/songs/60003772.mkv +王识贤-买一蕊花(无原唱),http://em.21dtv.com/songs/60028426.mkv +鲁琤琦+任曦-没有如果,http://em.21dtv.com/songs/60085426.mkv +梁静茹-没有如果,http://em.21dtv.com/songs/60028881.mkv +刘容嘉-没有人爱,http://em.21dtv.com/songs/60101960.mkv +戴佩妮-没有人爱,http://em.21dtv.com/songs/60080934.mkv +钟丽燕-明月千里,http://em.21dtv.com/songs/60088808.mkv +成学迅+付小芳-密云情歌,http://em.21dtv.com/songs/60109382.mkv +云丹久美-牧野情歌,http://em.21dtv.com/songs/60063334.mkv +李泉-没有你了,http://em.21dtv.com/songs/60028835.mkv +柏文-猫样年华,http://em.21dtv.com/songs/60028647.mkv +陈致逸-蚂蚁蚂蚁,http://em.21dtv.com/songs/60133054.mkv +梁汉文-某月某夜,http://em.21dtv.com/songs/60092904.mkv +张楚-蚂蚁蚂蚁,http://em.21dtv.com/songs/60028411.mkv +Trouble Maker-没有明天,http://em.21dtv.com/songs/60109118.mkv +许诺-某月某日,http://em.21dtv.com/songs/60083440.mkv +AT17-马雅民歌,http://em.21dtv.com/songs/60028389.mkv +袁耀发-miss you might day(无原唱),http://em.21dtv.com/songs/60003838.mkv +伍思凯-没忧没愁,http://em.21dtv.com/songs/60028766.mkv +金克成+董阳+格桑英妮-梦约六一,http://em.21dtv.com/songs/60133004.mkv +董阳+金克成+格桑英妮-梦约六一,http://em.21dtv.com/songs/60131781.mkv +邱永传-没有理由,http://em.21dtv.com/songs/60118958.mkv +周传雄-满院落叶,http://em.21dtv.com/songs/60106696.mkv +张燕-梦忆江南(演唱会),http://em.21dtv.com/songs/60029739.mkv +黄铠晴-明曰经典,http://em.21dtv.com/songs/60030243.mkv +刘舫-梦与花期,http://em.21dtv.com/songs/60083403.mkv +雷晓莉-梦萦红楼,http://em.21dtv.com/songs/60128575.mkv +任贤齐-没有后悔,http://em.21dtv.com/songs/60090560.mkv +佚名-蜜月花车,http://em.21dtv.com/songs/60029988.mkv +李克勤-蜜月花车,http://em.21dtv.com/songs/60029987.mkv +金素梅-某一个夜,http://em.21dtv.com/songs/60030502.mkv +FUN4乐团-没有关系,http://em.21dtv.com/songs/60083359.mkv +FUN4乐团-沒有关系,http://em.21dtv.com/songs/60079845.mkv +Alin-每一个我,http://em.21dtv.com/songs/60098979.mkv +李天平+姜涛-每一个人,http://em.21dtv.com/songs/60029085.mkv +许茹芸-猫与钢琴,http://em.21dtv.com/songs/60092083.mkv +冯海龙-牧羊姑娘,http://em.21dtv.com/songs/60131195.mkv +罗让-牧羊姑娘,http://em.21dtv.com/songs/60123073.mkv +汤非-牧羊姑娘,http://em.21dtv.com/songs/60111225.mkv +代茜-牧羊姑娘,http://em.21dtv.com/songs/60103874.mkv +兰卡措-玛域姑娘,http://em.21dtv.com/songs/60099762.mkv +苏亚-牧羊姑娘,http://em.21dtv.com/songs/60070959.mkv +吉娜-牧羊姑娘(演唱会),http://em.21dtv.com/songs/60061436.mkv +郁钧剑-牧羊姑娘,http://em.21dtv.com/songs/60030627.mkv +吴倩莲-牧羊姑娘,http://em.21dtv.com/songs/60030626.mkv +乌吉斯古楞-牧羊姑娘,http://em.21dtv.com/songs/60030625.mkv +陈俊华-牧羊姑娘,http://em.21dtv.com/songs/60030624.mkv +黄乙玲-目一个睨,http://em.21dtv.com/songs/60030594.mkv +赵传-每一个你,http://em.21dtv.com/songs/60029083.mkv +蔡凤凰+杨鸣-卖烟姑娘,http://em.21dtv.com/songs/60028489.mkv +彩贝与海-迷夜港口,http://em.21dtv.com/songs/60135267.mkv +格桑梅朵-牧羊哥哥,http://em.21dtv.com/songs/60030623.mkv +朴野-玛雅古城,http://em.21dtv.com/songs/60098439.mkv +谭浩锋-每一分钟,http://em.21dtv.com/songs/60029078.mkv +汪睿-梦游飞行,http://em.21dtv.com/songs/60125859.mkv +李克勤-命运符号(演唱会),http://em.21dtv.com/songs/60030295.mkv +孙逊-蚂蚁大象,http://em.21dtv.com/songs/60028410.mkv +元冠-没缘的人,http://em.21dtv.com/songs/60130093.mkv +萧煌奇-命运点歌,http://em.21dtv.com/songs/60101493.mkv +严爵-没有答案,http://em.21dtv.com/songs/60081226.mkv +高远-满溢的爱,http://em.21dtv.com/songs/60028541.mkv +格根其木格-梦萦草原,http://em.21dtv.com/songs/60076689.mkv +郭瓦加毛吉-玛域草原,http://em.21dtv.com/songs/60028404.mkv +王小韩-梦游城市,http://em.21dtv.com/songs/60083402.mkv +萨顶顶-梦燕春回,http://em.21dtv.com/songs/60116230.mkv +M GIRLS-庙宇朝拜,http://em.21dtv.com/songs/60133236.mkv +周张驰+牛欣欣-庙宇朝拜,http://em.21dtv.com/songs/60076715.mkv +吴依琳-庙宇朝拜,http://em.21dtv.com/songs/60076714.mkv +杨培安-没有白活,http://em.21dtv.com/songs/60028771.mkv +童唱-蚂蚁搬豆,http://em.21dtv.com/songs/60028409.mkv +司文-没有爱够,http://em.21dtv.com/songs/60076585.mkv +侯湘婷-没有爱过,http://em.21dtv.com/songs/60028768.mkv +周笔畅-梦想在望,http://em.21dtv.com/songs/60029694.mkv +余天-扪心自问,http://em.21dtv.com/songs/60029416.mkv +鸿飞-梦想之路,http://em.21dtv.com/songs/60130923.mkv +HELLO NICO-面向自己,http://em.21dtv.com/songs/60134694.mkv +温碧霞-梦醒之后,http://em.21dtv.com/songs/60067232.mkv +群星-明星之歌(演唱会),http://em.21dtv.com/songs/60030242.mkv +动静乐团-梦想战场,http://em.21dtv.com/songs/60029695.mkv +黎瑞恩-梦想一天,http://em.21dtv.com/songs/60029692.mkv +颜福伟-梦想有你(演唱会),http://em.21dtv.com/songs/60029693.mkv +华语群星-梦 信仰,http://em.21dtv.com/songs/60101999.mkv +水木年华-冒险小子,http://em.21dtv.com/songs/60028701.mkv +大兵+奇志-明星效益,http://em.21dtv.com/songs/60089760.mkv +朱海君-梦醒心碎,http://em.21dtv.com/songs/60125682.mkv +机动现场-梦想星球,http://em.21dtv.com/songs/60076685.mkv +汤旭-妈谢谢你,http://em.21dtv.com/songs/60028316.mkv +薛青-民心向梦,http://em.21dtv.com/songs/60131798.mkv +周澎-梦想星光,http://em.21dtv.com/songs/60103980.mkv +齐旦布-梦想天堂,http://em.21dtv.com/songs/60068489.mkv +孙耀威-梦想天堂,http://em.21dtv.com/songs/60029690.mkv +陈洁丽-梦想天堂(演唱会),http://em.21dtv.com/songs/60029689.mkv +花乐团-梦想天空,http://em.21dtv.com/songs/60124397.mkv +文诗语-梦想天空,http://em.21dtv.com/songs/60119598.mkv +孙燕姿-梦想天空,http://em.21dtv.com/songs/60029688.mkv +鹿晗-冒险时间,http://em.21dtv.com/songs/60121174.mkv +郭美美-梦想升级,http://em.21dtv.com/songs/60105439.mkv +宅男塾-冒险世界,http://em.21dtv.com/songs/60028700.mkv +周子扬-m型社会,http://em.21dtv.com/songs/60073650.mkv +果味VC-木星三号,http://em.21dtv.com/songs/60068501.mkv +苏琪繁-梦醒时分,http://em.21dtv.com/songs/60104376.mkv +甄楚倩-梦醒时分,http://em.21dtv.com/songs/60093014.mkv +李丽霞-梦醒时分,http://em.21dtv.com/songs/60092788.mkv +馨梓-梦醒时分,http://em.21dtv.com/songs/60090319.mkv +伍佰-梦醒时分,http://em.21dtv.com/songs/60083401.mkv +柳影虹-梦醒时分(演唱会),http://em.21dtv.com/songs/60076687.mkv +英子-梦醒时分,http://em.21dtv.com/songs/60069610.mkv +卓依婷-梦醒时分,http://em.21dtv.com/songs/60029724.mkv +佚名-梦醒时分,http://em.21dtv.com/songs/60029723.mkv +高胜美-梦醒时分,http://em.21dtv.com/songs/60029722.mkv +陈淑桦-梦醒时分,http://em.21dtv.com/songs/60029721.mkv +郑中基-梦醒时分(演唱会),http://em.21dtv.com/songs/60029720.mkv +叶倩文-梦醒时分(演唱会),http://em.21dtv.com/songs/60029719.mkv +林忆莲-梦醒时分(演唱会),http://em.21dtv.com/songs/60029718.mkv +梁静茹-梦醒时分(演唱会),http://em.21dtv.com/songs/60029717.mkv +迪克牛仔-梦醒时分(演唱会),http://em.21dtv.com/songs/60029716.mkv +李晓-明星时代,http://em.21dtv.com/songs/60086711.mkv +张玮纶-冒险日记,http://em.21dtv.com/songs/60028699.mkv +雨木-梦想如初,http://em.21dtv.com/songs/60107342.mkv +王乃恩-梦想前行,http://em.21dtv.com/songs/60076684.mkv +莫莫-梦想情人,http://em.21dtv.com/songs/60117171.mkv +徐怀钰-冒险气球,http://em.21dtv.com/songs/60087881.mkv +徐怀钰-冒险汽球,http://em.21dtv.com/songs/60028698.mkv +易欣-梦想千年,http://em.21dtv.com/songs/60080819.mkv +欧华-梦想启航,http://em.21dtv.com/songs/60129317.mkv +TF家族-梦想起航,http://em.21dtv.com/songs/60085460.mkv +陈晓琪-梦想启航,http://em.21dtv.com/songs/60079883.mkv +陈晓淇-梦想启航,http://em.21dtv.com/songs/60076683.mkv +阿烁-迈向前方,http://em.21dtv.com/songs/60104531.mkv +周杰伦-梦想启动,http://em.21dtv.com/songs/60076682.mkv +I.D.M-迈向偶像,http://em.21dtv.com/songs/60097230.mkv +古巨基-美雪美雪,http://em.21dtv.com/songs/60029353.mkv +陈冠希-冒险乐园,http://em.21dtv.com/songs/60088851.mkv +许志安-冥想练习,http://em.21dtv.com/songs/60134221.mkv +许志安-冥想练习,http://em.21dtv.com/songs/60132882.mkv +刘子琪-梦想家园,http://em.21dtv.com/songs/60121430.mkv +荒山亮-梦醒江湖,http://em.21dtv.com/songs/60029711.mkv +黄凯-梦想 家,http://em.21dtv.com/songs/60094360.mkv +吴娜-梦寻徽州,http://em.21dtv.com/songs/60076688.mkv +陈红伶-满心欢喜,http://em.21dtv.com/songs/60122247.mkv +李乐诗-梦醒好吗,http://em.21dtv.com/songs/60029710.mkv +双鹿歌舞团-迈向辉煌,http://em.21dtv.com/songs/60105676.mkv +熊音乐团-梦想回归,http://em.21dtv.com/songs/60125890.mkv +1931女子偶像组合-梦想广州,http://em.21dtv.com/songs/60133160.mkv +易秒英-苗乡赶歌,http://em.21dtv.com/songs/60091270.mkv +符杰荣-梦想发光,http://em.21dtv.com/songs/60110445.mkv +吴树雄-梦想发财,http://em.21dtv.com/songs/60122587.mkv +佚名-梦醒的我,http://em.21dtv.com/songs/60029709.mkv +王杰+苏芮-梦醒的我,http://em.21dtv.com/songs/60029708.mkv +乔任梁-梦想的窗,http://em.21dtv.com/songs/60029673.mkv +易白-梦想的笔,http://em.21dtv.com/songs/60072198.mkv +[Group] +groupName=十六万歌曲MV等 - 49 +严爵-明星的爱,http://em.21dtv.com/songs/60063229.mkv +黎明-梦想成真(演唱会),http://em.21dtv.com/songs/60029669.mkv +贾孟昕-梦想草原,http://em.21dtv.com/songs/60112978.mkv +赵娜-梦想草原,http://em.21dtv.com/songs/60088696.mkv +毛鹏懿-梦想出发,http://em.21dtv.com/songs/60125846.mkv +方季惟-梦醒边缘,http://em.21dtv.com/songs/60029702.mkv +棒棒堂-梦想巴士,http://em.21dtv.com/songs/60029667.mkv +杨千嬅-迷信爱情,http://em.21dtv.com/songs/60029940.mkv +林冠吟-冒险爱情,http://em.21dtv.com/songs/60028696.mkv +佚名-茫雾之恋,http://em.21dtv.com/songs/60028631.mkv +雷佳-梦无止境,http://em.21dtv.com/songs/60110659.mkv +梅艳芳-莫问一生(演唱会),http://em.21dtv.com/songs/60030442.mkv +达明一派-迷惘夜车(演唱会),http://em.21dtv.com/songs/60029936.mkv +梁一贞-名为幸福,http://em.21dtv.com/songs/60085471.mkv +杨千嬅-美味情缘,http://em.21dtv.com/songs/60029351.mkv +王冕-勉为其难,http://em.21dtv.com/songs/60131634.mkv +阿美-梅舞曲归,http://em.21dtv.com/songs/60134386.mkv +后来者-梅舞曲归,http://em.21dtv.com/songs/60133459.mkv +苏永康-没玩没了,http://em.21dtv.com/songs/60064512.mkv +孙楠-没完没了,http://em.21dtv.com/songs/60028762.mkv +李心洁-没完没了,http://em.21dtv.com/songs/60028761.mkv +潘秀琼-莫忘今宵,http://em.21dtv.com/songs/60090062.mkv +倪甄-莫忘今宵,http://em.21dtv.com/songs/60030437.mkv +邓丽君-莫忘今宵(演唱会),http://em.21dtv.com/songs/60030436.mkv +刘洪-莫问今朝,http://em.21dtv.com/songs/60030441.mkv +林一峰-美味关系,http://em.21dtv.com/songs/60097361.mkv +黄品冠-美味关系,http://em.21dtv.com/songs/60029350.mkv +姜斌斌-马尾姑娘,http://em.21dtv.com/songs/60126772.mkv +夏韶声-迷惘都市(演唱会),http://em.21dtv.com/songs/60029935.mkv +林玉英-茫雾的爱,http://em.21dtv.com/songs/60095698.mkv +周蕙-迷惘的爱,http://em.21dtv.com/songs/60029934.mkv +陈松伶-迷惘的爱,http://em.21dtv.com/songs/60029933.mkv +佚名-茫雾的爱(无原唱),http://em.21dtv.com/songs/60028630.mkv +林少纬-莫忘初衷,http://em.21dtv.com/songs/60113702.mkv +动力火车-莫忘初衷,http://em.21dtv.com/songs/60076750.mkv +荒山亮-迷雾闯城,http://em.21dtv.com/songs/60029937.mkv +邓福如-me & u,http://em.21dtv.com/songs/60084746.mkv +谢雷-满天之星,http://em.21dtv.com/songs/60135751.mkv +丁丁-明天再说,http://em.21dtv.com/songs/60097319.mkv +黄靖伦-明天再说,http://em.21dtv.com/songs/60030226.mkv +阿悄-明天再见,http://em.21dtv.com/songs/60104524.mkv +洪卓立-某天再会,http://em.21dtv.com/songs/60066162.mkv +佚名-more than you know(无原唱),http://em.21dtv.com/songs/60003897.mkv +张冬玲-明天以后,http://em.21dtv.com/songs/60105016.mkv +林峰+泳儿-明天以后,http://em.21dtv.com/songs/60030224.mkv +戴佩妮-明天以后,http://em.21dtv.com/songs/60030223.mkv +林峰+泳儿-明天以后(演唱会),http://em.21dtv.com/songs/60030222.mkv +叶启田-码头惜别,http://em.21dtv.com/songs/60028407.mkv +佚名-midnight train to georgia,http://em.21dtv.com/songs/60003818.mkv +张学友-慢条斯理,http://em.21dtv.com/songs/60028597.mkv +许志安-明天清早,http://em.21dtv.com/songs/60093159.mkv +许志安-明天请早,http://em.21dtv.com/songs/60030206.mkv +玲儿-摩托情缘,http://em.21dtv.com/songs/60111300.mkv +孙燕姿-明天晴天,http://em.21dtv.com/songs/60030205.mkv +牛奶咖啡-明天你好,http://em.21dtv.com/songs/60064569.mkv +刘程伊-腼腆男孩,http://em.21dtv.com/songs/60064562.mkv +郭彤-每天每夜,http://em.21dtv.com/songs/60029065.mkv +陈倩倩-每天每夜(演唱会),http://em.21dtv.com/songs/60029064.mkv +利绮-每天每天,http://em.21dtv.com/songs/60029063.mkv +程宁-每天每天,http://em.21dtv.com/songs/60029062.mkv +RING-my today my tomorrow(无原唱),http://em.21dtv.com/songs/60004029.mkv +喜波-码头恋歌,http://em.21dtv.com/songs/60131295.mkv +喜波-码头恋歌,http://em.21dtv.com/songs/60125329.mkv +雨侨+王宗尧-埋头苦爱,http://em.21dtv.com/songs/60097371.mkv +刘秋仪-满堂喝彩,http://em.21dtv.com/songs/60087416.mkv +兄弟本色-迷途羔羊,http://em.21dtv.com/songs/60125147.mkv +大风-迷途羔羊,http://em.21dtv.com/songs/60029930.mkv +知青-码头工人,http://em.21dtv.com/songs/60091793.mkv +张杰+吴汶芳-明天过后,http://em.21dtv.com/songs/60112674.mkv +潘玮柏-明天过后,http://em.21dtv.com/songs/60101437.mkv +张杰-明天过后,http://em.21dtv.com/songs/60030183.mkv +吴克群-明天过后,http://em.21dtv.com/songs/60030182.mkv +任贤齐-明天过后,http://em.21dtv.com/songs/60030181.mkv +张国荣-漫天风雨,http://em.21dtv.com/songs/60092580.mkv +陈琳-满天风雪,http://em.21dtv.com/songs/60028537.mkv +小缘-木头的心,http://em.21dtv.com/songs/60131363.mkv +吴进法-迷途的我,http://em.21dtv.com/songs/60070939.mkv +雪十郎-明天的花,http://em.21dtv.com/songs/60085474.mkv +阿烁-魔吞传奇,http://em.21dtv.com/songs/60118130.mkv +白安-麦田捕手,http://em.21dtv.com/songs/60072178.mkv +BEE GEES-more than a woman,http://em.21dtv.com/songs/60003886.mkv +容祖儿-明天爱谁,http://em.21dtv.com/songs/60030175.mkv +江美琪-明天爱谁,http://em.21dtv.com/songs/60030174.mkv +张国荣-梦死醉生(演唱会),http://em.21dtv.com/songs/60029640.mkv +阎琰-猫鼠之恋,http://em.21dtv.com/songs/60081228.mkv +水水-猫鼠之恋,http://em.21dtv.com/songs/60028644.mkv +茂硕群星-茂硕之歌,http://em.21dtv.com/songs/60076575.mkv +叶熙祺-迷失终点,http://em.21dtv.com/songs/60061427.mkv +陈秀雯-马上英姿,http://em.21dtv.com/songs/60028383.mkv +王菀之-迷失艺术(演唱会),http://em.21dtv.com/songs/60083417.mkv +庞锟-马上有钱,http://em.21dtv.com/songs/60106818.mkv +荣联合-马上有钱,http://em.21dtv.com/songs/60096481.mkv +阿李郎-马上有钱,http://em.21dtv.com/songs/60082029.mkv +朱贝贝-马上有钱,http://em.21dtv.com/songs/60080235.mkv +兔妃-魔兽影票,http://em.21dtv.com/songs/60122503.mkv +高瑞-魔术先生,http://em.21dtv.com/songs/60128616.mkv +周杰伦-魔术先生,http://em.21dtv.com/songs/60030364.mkv +王力宏-迷上网恋,http://em.21dtv.com/songs/60029916.mkv +罗隽永-密室逃脱,http://em.21dtv.com/songs/60104371.mkv +刘德华-末世天使,http://em.21dtv.com/songs/60030390.mkv +王宏伟-慕士塔格,http://em.21dtv.com/songs/60067249.mkv +阎维文-民生颂歌(演唱会),http://em.21dtv.com/songs/60070944.mkv +陈永强-默数伤悲,http://em.21dtv.com/songs/60130846.mkv +才仁巴桑+博瓦贡嘎-摩梭人家,http://em.21dtv.com/songs/60077447.mkv +陈卫东-木石情缘,http://em.21dtv.com/songs/60134397.mkv +仲维军-陌生朋友,http://em.21dtv.com/songs/60030409.mkv +王若琳-maybe some other time,http://em.21dtv.com/songs/60003770.mkv +英中旺杰-摩梭男人,http://em.21dtv.com/songs/60076738.mkv +卢处楚-摩梭女孩,http://em.21dtv.com/songs/60132269.mkv +向蕙玲-目屎那滴,http://em.21dtv.com/songs/60064584.mkv +宋祖英-苗山明月,http://em.21dtv.com/songs/60030045.mkv +信-梦什么想,http://em.21dtv.com/songs/60113268.mkv +WANDS-满是梦想,http://em.21dtv.com/songs/60089578.mkv +周柏豪-莫失莫忘,http://em.21dtv.com/songs/60110089.mkv +黎瑞恩-莫失莫忘(演唱会),http://em.21dtv.com/songs/60030431.mkv +鹿晗-某时某刻,http://em.21dtv.com/songs/60128624.mkv +张继心+沙宝亮-每时每刻,http://em.21dtv.com/songs/60069596.mkv +后弦-慢四恋曲,http://em.21dtv.com/songs/60087539.mkv +范小倩-梦碎楼边,http://em.21dtv.com/songs/60120903.mkv +成龙+周华健+张震岳-妙手空空,http://em.21dtv.com/songs/60070942.mkv +桑娜央金-摩梭家园,http://em.21dtv.com/songs/60083430.mkv +张镐哲-谋杀寂寞(无原唱),http://em.21dtv.com/songs/60030488.mkv +原子霏-梦锁红楼,http://em.21dtv.com/songs/60134969.mkv +可米小子-马上回来,http://em.21dtv.com/songs/60087513.mkv +ENERGY-马上回来(演唱会),http://em.21dtv.com/songs/60028382.mkv +程欢-陌上花开,http://em.21dtv.com/songs/60129458.mkv +河图-陌上花开,http://em.21dtv.com/songs/60102471.mkv +杨坤-陌生海岸,http://em.21dtv.com/songs/60030408.mkv +张崇德+张崇基-陌生归人,http://em.21dtv.com/songs/60092601.mkv +童丽-陌上归人,http://em.21dtv.com/songs/60076747.mkv +区瑞强-陌上归人,http://em.21dtv.com/songs/60030402.mkv +李国祥-陌上归人(演唱会),http://em.21dtv.com/songs/60030401.mkv +何嘉莉-迷失方向,http://em.21dtv.com/songs/60029925.mkv +腾格尔-梦随风飘,http://em.21dtv.com/songs/60029642.mkv +刘尊+郭彤-梦随风飘,http://em.21dtv.com/songs/60029641.mkv +泰歌+小臭臭+曾妮娜-马上发财,http://em.21dtv.com/songs/60133930.mkv +王中平-满穗稻仔,http://em.21dtv.com/songs/60063052.mkv +一加一组合-陌生的夜,http://em.21dtv.com/songs/60076748.mkv +动力火车-陌生的夜,http://em.21dtv.com/songs/60030406.mkv +佚名-陌生的人,http://em.21dtv.com/songs/60030405.mkv +丘丘合唱团-陌生的人,http://em.21dtv.com/songs/60030404.mkv +吴琼-满山杜鹃,http://em.21dtv.com/songs/60099149.mkv +红蓝铅笔-迷失东京,http://em.21dtv.com/songs/60029924.mkv +欢子-没说的话,http://em.21dtv.com/songs/60066143.mkv +江蕙-满山春色(无原唱),http://em.21dtv.com/songs/60095743.mkv +风萧萧-陌生城市,http://em.21dtv.com/songs/60083438.mkv +佚名-满山春色,http://em.21dtv.com/songs/60028526.mkv +MIRANDA LAMBERT-mamas broken heart,http://em.21dtv.com/songs/60073580.mkv +林嘉欣-谋杀白痴,http://em.21dtv.com/songs/60030487.mkv +刘沁-梦是宝贝,http://em.21dtv.com/songs/60029639.mkv +狄易达-明日之谜,http://em.21dtv.com/songs/60030162.mkv +张智成-末日之恋,http://em.21dtv.com/songs/60115151.mkv +小军-末日之恋,http://em.21dtv.com/songs/60076742.mkv +张善为-末日之恋,http://em.21dtv.com/songs/60030385.mkv +杨千嬅-明日再会,http://em.21dtv.com/songs/60030157.mkv +莫旭秋-明日之歌(演唱会),http://em.21dtv.com/songs/60076724.mkv +黄耀明-明日之歌(演唱会),http://em.21dtv.com/songs/60064568.mkv +容中尔甲-牧人之歌,http://em.21dtv.com/songs/60062883.mkv +次真降措-牧人之歌,http://em.21dtv.com/songs/60030620.mkv +静婷-明日之歌,http://em.21dtv.com/songs/60030161.mkv +蔡琴-明日之歌,http://em.21dtv.com/songs/60030160.mkv +张伟文-明日之歌(演唱会),http://em.21dtv.com/songs/60030159.mkv +ALAN-明日赞歌,http://em.21dtv.com/songs/60030158.mkv +吴宗宪-明日英雄,http://em.21dtv.com/songs/60030149.mkv +网络歌手-眉如远山,http://em.21dtv.com/songs/60101467.mkv +贺世哲-美人依旧,http://em.21dtv.com/songs/60105388.mkv +张学友-明日约定(演唱会),http://em.21dtv.com/songs/60030156.mkv +赵育闻-美人西施,http://em.21dtv.com/songs/60131854.mkv +雷佳-美人窝美,http://em.21dtv.com/songs/60029337.mkv +莫旭秋-明日天涯,http://em.21dtv.com/songs/60096116.mkv +李逸-明日天涯,http://em.21dtv.com/songs/60088050.mkv +姚乙-明日天涯,http://em.21dtv.com/songs/60087632.mkv +青山-明日天涯(演唱会),http://em.21dtv.com/songs/60083423.mkv +张挥-明日天涯,http://em.21dtv.com/songs/60076723.mkv +莫旭秋-明日天涯(演唱会),http://em.21dtv.com/songs/60064567.mkv +黄耀明-明日天涯(演唱会),http://em.21dtv.com/songs/60064566.mkv +潘秀琼-明日天涯,http://em.21dtv.com/songs/60030147.mkv +李茂山-明日天涯,http://em.21dtv.com/songs/60030146.mkv +许志安-明日天涯(演唱会),http://em.21dtv.com/songs/60030145.mkv +罗文-明日天涯(演唱会),http://em.21dtv.com/songs/60030144.mkv +刘德华-明日天涯(演唱会),http://em.21dtv.com/songs/60030143.mkv +黎明-明日天涯(演唱会),http://em.21dtv.com/songs/60030142.mkv +王璇-美若天仙,http://em.21dtv.com/songs/60088306.mkv +降央卓玛-美如天仙,http://em.21dtv.com/songs/60029346.mkv +佚名-michael row the boat,http://em.21dtv.com/songs/60003814.mkv +尹光-慕容世家,http://em.21dtv.com/songs/60061437.mkv +西域胡杨-末日情歌,http://em.21dtv.com/songs/60076741.mkv +王菀之-迷人pink lady(演唱会),http://em.21dtv.com/songs/60029913.mkv +汪明荃-迷人pink lady(演唱会),http://em.21dtv.com/songs/60029912.mkv +少女时代-Mr Mr,http://em.21dtv.com/songs/60099206.mkv +张也-明日理想,http://em.21dtv.com/songs/60091039.mkv +李健-美若黎明,http://em.21dtv.com/songs/60113615.mkv +乌兰托娅+雨禾-牧人恋歌,http://em.21dtv.com/songs/60066163.mkv +倪安东-末日快乐,http://em.21dtv.com/songs/60030383.mkv +王菲-闷人咖啡,http://em.21dtv.com/songs/60029419.mkv +简迷离-明日计划,http://em.21dtv.com/songs/60129471.mkv +黄铠晴-明日经典,http://em.21dtv.com/songs/60030137.mkv +彭羚-美人驾到,http://em.21dtv.com/songs/60029334.mkv +陈佳-蓦然回首,http://em.21dtv.com/songs/60127540.mkv +谢立明-暮然回首,http://em.21dtv.com/songs/60106289.mkv +毛方圆-蓦然回首,http://em.21dtv.com/songs/60085483.mkv +李蔓怡-蓦然回首,http://em.21dtv.com/songs/60064579.mkv +吴奇隆-蓦然回首,http://em.21dtv.com/songs/60030454.mkv +狼鸣-末日风景,http://em.21dtv.com/songs/60076739.mkv +容祖儿-明日恩典,http://em.21dtv.com/songs/60030132.mkv +容祖儿-明日恩典(演唱会),http://em.21dtv.com/songs/60030131.mkv +刘馨月-茗人禅心,http://em.21dtv.com/songs/60126662.mkv +李进羿-默然爱我,http://em.21dtv.com/songs/60113648.mkv +常思思-母亲祖国,http://em.21dtv.com/songs/60030543.mkv +佚名-母亲之歌,http://em.21dtv.com/songs/60030542.mkv +林宥嘉-勉强幸福,http://em.21dtv.com/songs/60068494.mkv +张帝-没钱勿扰,http://em.21dtv.com/songs/60076581.mkv +寒武纪-母亲天堂,http://em.21dtv.com/songs/60067246.mkv +佚名-梦全是你,http://em.21dtv.com/songs/60029633.mkv +佚名-母亲请安,http://em.21dtv.com/songs/60095424.mkv +梁艳-母亲女神,http://em.21dtv.com/songs/60030539.mkv +胡云鹏-母亲母亲,http://em.21dtv.com/songs/60114728.mkv +方琦-抹去泪水,http://em.21dtv.com/songs/60124003.mkv +韩宝仪-抹去泪水,http://em.21dtv.com/songs/60030377.mkv +方小菲-麻雀公主,http://em.21dtv.com/songs/60067216.mkv +粤剧-马前覆水,http://em.21dtv.com/songs/60093019.mkv +张燕-梦起鹅城,http://em.21dtv.com/songs/60076673.mkv +寒武纪-母亲的泪,http://em.21dtv.com/songs/60107673.mkv +童唱-麻雀吵架,http://em.21dtv.com/songs/60028341.mkv +唐柏宁-末期病人,http://em.21dtv.com/songs/60123786.mkv +童英然-没骗自己,http://em.21dtv.com/songs/60126009.mkv +潘粤明-冒牌卧底,http://em.21dtv.com/songs/60135521.mkv +冷漠-冒牌情人,http://em.21dtv.com/songs/60076576.mkv +张作柏-满盘皆输,http://em.21dtv.com/songs/60066139.mkv +杨峰-孟婆的碗,http://em.21dtv.com/songs/60118714.mkv +魏佳艺-孟婆的碗,http://em.21dtv.com/songs/60029457.mkv +啡啡-孟婆的汤,http://em.21dtv.com/songs/60121522.mkv +中川木-孟婆端汤,http://em.21dtv.com/songs/60029458.mkv +Mila J-Move,http://em.21dtv.com/songs/60134766.mkv +Luke Bryan-Move,http://em.21dtv.com/songs/60129963.mkv +PHILLIP PHILLIPS-man on the moon(演唱会),http://em.21dtv.com/songs/60073583.mkv +R.E.M-man on the moon,http://em.21dtv.com/songs/60003740.mkv +Popu Lady-More,http://em.21dtv.com/songs/60103807.mkv +佚名-morning of my life,http://em.21dtv.com/songs/60003903.mkv +GLORIA ESTEFAN+'N SY-music of my heart,http://em.21dtv.com/songs/60003946.mkv +莫文蔚-moon over bourbon street,http://em.21dtv.com/songs/60073614.mkv +刘有昌-Mobi,http://em.21dtv.com/songs/60115722.mkv +童唱-months of a year,http://em.21dtv.com/songs/60003874.mkv +梁咏琪-某年仲夏,http://em.21dtv.com/songs/60030498.mkv +梁咏琪-某年仲夏(演唱会),http://em.21dtv.com/songs/60030497.mkv +雪狼组合+春红-牧女珠姆,http://em.21dtv.com/songs/60030613.mkv +陈小春-没那种命,http://em.21dtv.com/songs/60028733.mkv +陈小春-没那种命(演唱会),http://em.21dtv.com/songs/60028732.mkv +何韵诗-迷你与我,http://em.21dtv.com/songs/60029911.mkv +陈子阳-没你以后,http://em.21dtv.com/songs/60028742.mkv +BLACK BOX-明年圣诞,http://em.21dtv.com/songs/60030126.mkv +余润泽-美女上菜,http://em.21dtv.com/songs/60076631.mkv +罗志祥-猛男日记(演唱会),http://em.21dtv.com/songs/60029451.mkv +上官红燕-玛尼情歌,http://em.21dtv.com/songs/60112486.mkv +蒋姗倍+孙青-美女情歌,http://em.21dtv.com/songs/60070922.mkv +吴紫涵-玛尼情歌,http://em.21dtv.com/songs/60067218.mkv +上官红燕-玛尼情歌,http://em.21dtv.com/songs/60064505.mkv +上官红燕-玛尼情歌(舞曲版),http://em.21dtv.com/songs/60064504.mkv +李翊君-某年某月,http://em.21dtv.com/songs/60030494.mkv +廖峻-马迺马迺(无原唱),http://em.21dtv.com/songs/60095524.mkv +小宇-没那么难,http://em.21dtv.com/songs/60028731.mkv +佚名-马乃马乃(无原唱),http://em.21dtv.com/songs/60028379.mkv +满人-蒙娜丽莎,http://em.21dtv.com/songs/60076647.mkv +弦子-蒙娜丽莎,http://em.21dtv.com/songs/60029434.mkv +沙宝亮-蒙娜丽莎,http://em.21dtv.com/songs/60029433.mkv +恩炀-蒙娜丽莎,http://em.21dtv.com/songs/60029432.mkv +张凌宇-美女柳江,http://em.21dtv.com/songs/60123915.mkv +刘一祯+梅郎-美女拦江,http://em.21dtv.com/songs/60083385.mkv +周晏伊-明年今日,http://em.21dtv.com/songs/60133484.mkv +陈奕迅-明年今日,http://em.21dtv.com/songs/60030124.mkv +杨千嬅-明年今日(演唱会),http://em.21dtv.com/songs/60030123.mkv +温拿乐队-明年今日(演唱会),http://em.21dtv.com/songs/60030122.mkv +太极乐队-明年今日(演唱会),http://em.21dtv.com/songs/60030121.mkv +关淑怡-明年今日(演唱会),http://em.21dtv.com/songs/60030120.mkv +陈奕迅-明年今日(HD演唱会),http://em.21dtv.com/songs/60030119.mkv +黄玮亦-莫奈花园,http://em.21dtv.com/songs/60127623.mkv +李红琴-没你的夜,http://em.21dtv.com/songs/60105159.mkv +王心凌-迷你电影,http://em.21dtv.com/songs/60029908.mkv +王莱-没你的暝,http://em.21dtv.com/songs/60125948.mkv +樱桃姐妹+黄西田-梦你的梦,http://em.21dtv.com/songs/60029626.mkv +刘德华-某年冬季,http://em.21dtv.com/songs/60030493.mkv +王绎龙-美女城市,http://em.21dtv.com/songs/60069604.mkv +刘若英-明年此时,http://em.21dtv.com/songs/60030118.mkv +刘瀚升-没你不行,http://em.21dtv.com/songs/60072185.mkv +羽泉-没你不行,http://em.21dtv.com/songs/60028736.mkv +羽泉-没你不行(演唱会),http://em.21dtv.com/songs/60028735.mkv +安冬-默默追忆,http://em.21dtv.com/songs/60030473.mkv +姚可儿-妈妈真美,http://em.21dtv.com/songs/60099920.mkv +敖长生-妈妈最美,http://em.21dtv.com/songs/60094518.mkv +SOLER-妈妈再见,http://em.21dtv.com/songs/60028309.mkv +何韵诗-明目张胆,http://em.21dtv.com/songs/60030117.mkv +陈黎明-慢慢长大,http://em.21dtv.com/songs/60028592.mkv +杨坤-慢慢走吧,http://em.21dtv.com/songs/60028594.mkv +高凌风-濛濛烟雨,http://em.21dtv.com/songs/60088988.mkv +高凌风-蒙蒙烟雨,http://em.21dtv.com/songs/60029440.mkv +徐小凤-蒙蒙夜雨(演唱会),http://em.21dtv.com/songs/60029430.mkv +田维英-梦寐以求,http://em.21dtv.com/songs/60118807.mkv +王力宏-梦寐以求,http://em.21dtv.com/songs/60109523.mkv +马常宝-梦寐以求,http://em.21dtv.com/songs/60104600.mkv +罗桦-梦寐以求(演唱会),http://em.21dtv.com/songs/60076671.mkv +郑进一-梦寐以求,http://em.21dtv.com/songs/60029617.mkv +张皓然-蜜蜜宣言,http://em.21dtv.com/songs/60125527.mkv +苏永康+雷颂德-秘密宣言(演唱会),http://em.21dtv.com/songs/60029974.mkv +林良欢-满满相思,http://em.21dtv.com/songs/60104246.mkv +刘德华-慢慢习惯,http://em.21dtv.com/songs/60134930.mkv +猴子帮+陈艺之-秘密行动,http://em.21dtv.com/songs/60124241.mkv +新青年理发厅-妈妈王子,http://em.21dtv.com/songs/60122780.mkv +张德兰-默默无言,http://em.21dtv.com/songs/60092610.mkv +倪秉郎-默默无言,http://em.21dtv.com/songs/60030467.mkv +THE PRETTY RECKLESS-make me wanna die,http://em.21dtv.com/songs/60067939.mkv +吴欢-妈妈我懂,http://em.21dtv.com/songs/60028298.mkv +萨顶顶-妈妈天那,http://em.21dtv.com/songs/60028294.mkv +常思思-妈妈食堂,http://em.21dtv.com/songs/60064502.mkv +乌兰托娅-牧马少年,http://em.21dtv.com/songs/60070958.mkv +乌兰托娅-牧马少年(演唱会),http://em.21dtv.com/songs/60068503.mkv +金海心-猫咪森林(演唱会),http://em.21dtv.com/songs/60028643.mkv +林宥嘉-美妙生活,http://em.21dtv.com/songs/60061419.mkv +陈奕迅-美满人生,http://em.21dtv.com/songs/60029308.mkv +张瀚元-貌美如花,http://em.21dtv.com/songs/60109323.mkv +佚名-茫茫人海,http://em.21dtv.com/songs/60028623.mkv +孙淑媚-秘密情人,http://em.21dtv.com/songs/60029973.mkv +黄乙玲-秘密情人,http://em.21dtv.com/songs/60029972.mkv +小雪-秘密情人(演唱会),http://em.21dtv.com/songs/60029971.mkv +余天龙+谢莉婷-莫名奇妙,http://em.21dtv.com/songs/60097373.mkv +余天龙+谢莉婷-莫名其妙,http://em.21dtv.com/songs/60080147.mkv +龙小葵+猪猫-蔓蔓青萝,http://em.21dtv.com/songs/60128650.mkv +李丽霞-漫漫前路(演唱会),http://em.21dtv.com/songs/60068460.mkv +徐小凤-漫漫前路(演唱会),http://em.21dtv.com/songs/60028567.mkv +金城-牧马情歌,http://em.21dtv.com/songs/60081008.mkv +蓝又时-面目全非,http://em.21dtv.com/songs/60130726.mkv +张宇-面目全非,http://em.21dtv.com/songs/60030037.mkv +吴瑶-妈妈咪呀,http://em.21dtv.com/songs/60097257.mkv +程小小-某某某某,http://em.21dtv.com/songs/60128278.mkv +亦帆-茫茫梦梦,http://em.21dtv.com/songs/60118314.mkv +王绎龙-妈咪妈咪,http://em.21dtv.com/songs/60076543.mkv +阿朵-漫漫慢慢,http://em.21dtv.com/songs/60028566.mkv +詹雅雯-秘密恋情,http://em.21dtv.com/songs/60029970.mkv +孟杨-妈妈老了,http://em.21dtv.com/songs/60118506.mkv +佚名-make me lose control,http://em.21dtv.com/songs/60003717.mkv +李威龙-秒秒快乐,http://em.21dtv.com/songs/60132528.mkv +孙俪+莫艳琳-慢慢快乐,http://em.21dtv.com/songs/60028588.mkv +张蓉蓉-绵绵旧情,http://em.21dtv.com/songs/60029994.mkv +林姗-绵绵旧情,http://em.21dtv.com/songs/60029993.mkv +郭静-慢慢纪念,http://em.21dtv.com/songs/60088793.mkv +阿峻飞猫-妹妹寂寞,http://em.21dtv.com/songs/60085441.mkv +王彩桦-鋩鋩角角,http://em.21dtv.com/songs/60028632.mkv +朱艳强+CLARA CHOW-秘密基地,http://em.21dtv.com/songs/60076704.mkv +棒棒堂-秘密基地,http://em.21dtv.com/songs/60029969.mkv +李玟-Match Made In Heaven,http://em.21dtv.com/songs/60080206.mkv +关心妍-秘密花园,http://em.21dtv.com/songs/60125151.mkv +周杰伦-秘密花园,http://em.21dtv.com/songs/60029968.mkv +邰正宵-秘密花园,http://em.21dtv.com/songs/60029967.mkv +卢巧音-秘密花园,http://em.21dtv.com/songs/60029966.mkv +梁一贞-秘密呼吸,http://em.21dtv.com/songs/60070940.mkv +童唱-妈妈和我,http://em.21dtv.com/songs/60028257.mkv +汤灿-木棉花开,http://em.21dtv.com/songs/60083444.mkv +佚名-迷迷糊糊,http://em.21dtv.com/songs/60029905.mkv +央吉玛-妈妈盖亚,http://em.21dtv.com/songs/60117641.mkv +罗时丰-妈妈歌星,http://em.21dtv.com/songs/60076541.mkv +佚名-妈妈歌星,http://em.21dtv.com/songs/60028253.mkv +陈美安+陈建华-妈妈歌星,http://em.21dtv.com/songs/60028252.mkv +骆容溶+骆永明-妈咪夫人,http://em.21dtv.com/songs/60096565.mkv +陈思安-茫茫的月,http://em.21dtv.com/songs/60028620.mkv +赵真-妹妹的心,http://em.21dtv.com/songs/60105396.mkv +李晶-妹妹的心,http://em.21dtv.com/songs/60076640.mkv +龙千玉-妈妈的心,http://em.21dtv.com/songs/60028240.mkv +程琳-妈妈的吻,http://em.21dtv.com/songs/60134048.mkv +阿鲁阿卓+程琳-妈妈的吻,http://em.21dtv.com/songs/60098838.mkv +陈羽凡+王矜霖-妈妈的吻,http://em.21dtv.com/songs/60095137.mkv +李逸-蒙蒙的雾,http://em.21dtv.com/songs/60029437.mkv +卓依婷-妈妈的吻,http://em.21dtv.com/songs/60028239.mkv +杨钰莹-妈妈的吻,http://em.21dtv.com/songs/60028238.mkv +王雪晶-妈妈的吻,http://em.21dtv.com/songs/60028237.mkv +蒋小涵-妈妈的吻,http://em.21dtv.com/songs/60028236.mkv +朱晓琳-妈妈的吻(演唱会),http://em.21dtv.com/songs/60028235.mkv +陈瑞-妈妈的手,http://em.21dtv.com/songs/60105498.mkv +郭欢+汤非-妈妈的手,http://em.21dtv.com/songs/60085408.mkv +文章-妈妈的手,http://em.21dtv.com/songs/60083333.mkv +亮剑-妈妈的手,http://em.21dtv.com/songs/60076540.mkv +郭欢-妈妈的手,http://em.21dtv.com/songs/60070900.mkv +钟兴叡-妈妈的手,http://em.21dtv.com/songs/60028234.mkv +佚名-迷茫的情,http://em.21dtv.com/songs/60029904.mkv +陈思思-慢慢等你,http://em.21dtv.com/songs/60128532.mkv +何军-美美的梦,http://em.21dtv.com/songs/60118334.mkv +湘东雨-妈妈的泪,http://em.21dtv.com/songs/60076539.mkv +刘德华-妈妈的脸,http://em.21dtv.com/songs/60028232.mkv +李泽坚+司徒兰芳-妹妹的酒,http://em.21dtv.com/songs/60076639.mkv +陈小春-妈妈的话,http://em.21dtv.com/songs/60028229.mkv +何俊-妈妈的歌,http://em.21dtv.com/songs/60133364.mkv +久登-妈妈的歌,http://em.21dtv.com/songs/60028227.mkv +邓丽君-妈妈的歌,http://em.21dtv.com/songs/60028226.mkv +浩角翔起-妈妈的菜,http://em.21dtv.com/songs/60100283.mkv +林晓培-盲目的cinderella,http://em.21dtv.com/songs/60028609.mkv +王子豪+刘苏瑶+唐奥玛-妈妈的宝,http://em.21dtv.com/songs/60115293.mkv +邓咏家-秘密的爱,http://em.21dtv.com/songs/60120007.mkv +龙智祥-满满的爱,http://em.21dtv.com/songs/60116423.mkv +满文军-满满的爱,http://em.21dtv.com/songs/60097467.mkv +同桐-满满的爱,http://em.21dtv.com/songs/60066138.mkv +郭玲+冷漠-迷茫的爱,http://em.21dtv.com/songs/60029903.mkv +顾凯-妈妈的爱,http://em.21dtv.com/songs/60028221.mkv +钟旎菱-美梦成真,http://em.21dtv.com/songs/60118986.mkv +陈威全+黄美珍-美梦成真,http://em.21dtv.com/songs/60103679.mkv +钟旎菱-美梦成真,http://em.21dtv.com/songs/60029319.mkv +谭晶-美梦成真,http://em.21dtv.com/songs/60029318.mkv +孙楠-美梦成真,http://em.21dtv.com/songs/60029317.mkv +尼玛次仁-美梦成真,http://em.21dtv.com/songs/60029316.mkv +超级偶像-美梦成真,http://em.21dtv.com/songs/60029315.mkv +许茹芸-美梦成真(演唱会),http://em.21dtv.com/songs/60029314.mkv +余天-朦朦春雨,http://em.21dtv.com/songs/60089617.mkv +余天-蒙蒙春雨,http://em.21dtv.com/songs/60029436.mkv +黄品源-美梦出现,http://em.21dtv.com/songs/60090340.mkv +薛家燕-妈妈超人,http://em.21dtv.com/songs/60028219.mkv +黄绮珊-漫漫长路,http://em.21dtv.com/songs/60129845.mkv +江蕙-漫漫长路,http://em.21dtv.com/songs/60028568.mkv +张秀卿-满面春风,http://em.21dtv.com/songs/60028525.mkv +黄思婷-满面春风,http://em.21dtv.com/songs/60028524.mkv +熊宝贝乐团-慢慢长大,http://em.21dtv.com/songs/60107051.mkv +何以奇-mr慢半拍,http://em.21dtv.com/songs/60003938.mkv +何以奇-mr 慢半拍,http://em.21dtv.com/songs/60003935.mkv +赵鑫-妈妈不老,http://em.21dtv.com/songs/60135779.mkv +何鹏-妹妹不哭,http://em.21dtv.com/songs/60126604.mkv +徐清波-妈妈不哭,http://em.21dtv.com/songs/60117761.mkv +泽旺多吉-妈妈别哭,http://em.21dtv.com/songs/60076537.mkv +刘尊-妹妹别哭,http://em.21dtv.com/songs/60029366.mkv +李冰冰-妈妈宝贝,http://em.21dtv.com/songs/60076536.mkv +罗百吉+宝贝-妈妈爱谁,http://em.21dtv.com/songs/60109570.mkv +罗百吉+宝贝-妈妈爱谁,http://em.21dtv.com/songs/60108798.mkv +樊蕊-秘密爱情,http://em.21dtv.com/songs/60068493.mkv +林凡-明明爱你,http://em.21dtv.com/songs/60097320.mkv +李玟-默默爱你,http://em.21dtv.com/songs/60030462.mkv +张道儒-明明爱你,http://em.21dtv.com/songs/60030106.mkv +李英宏-慢慢阿流,http://em.21dtv.com/songs/60130434.mkv +糖兄妹-美丽之最(演唱会),http://em.21dtv.com/songs/60069603.mkv +侧田-美丽之最,http://em.21dtv.com/songs/60029304.mkv +侧田-美丽之最(演唱会),http://em.21dtv.com/songs/60029303.mkv +任真-魔力咒语,http://em.21dtv.com/songs/60030358.mkv +容祖儿-美丽在望,http://em.21dtv.com/songs/60029300.mkv +容祖儿-美丽在望(演唱会),http://em.21dtv.com/songs/60029299.mkv +郑家维-美丽最强,http://em.21dtv.com/songs/60029305.mkv +盛希-美丽之路,http://em.21dtv.com/songs/60117104.mkv +陈思思-美丽之路,http://em.21dtv.com/songs/60029302.mkv +郑培钦-美丽浙江,http://em.21dtv.com/songs/60111443.mkv +戚薇-墨绿指甲,http://em.21dtv.com/songs/60094126.mkv +冯晓菲-美丽中华,http://em.21dtv.com/songs/60099780.mkv +陈雅森+李佳丹-美丽中国,http://em.21dtv.com/songs/60129765.mkv +韩广英-美丽中国,http://em.21dtv.com/songs/60118180.mkv +陈俐俐-美丽中国,http://em.21dtv.com/songs/60118141.mkv +王雅洁+平安-美丽中国,http://em.21dtv.com/songs/60117049.mkv +张鹤-美丽中国,http://em.21dtv.com/songs/60105887.mkv +索南扎西-美丽中国,http://em.21dtv.com/songs/60099441.mkv +吴静-美丽中国,http://em.21dtv.com/songs/60086704.mkv +酒二郎-美丽中国,http://em.21dtv.com/songs/60086703.mkv +覃飞宇-魅力中国,http://em.21dtv.com/songs/60085444.mkv +阿鲁阿卓-美丽中国(演唱会),http://em.21dtv.com/songs/60083384.mkv +于文华-美丽中国,http://em.21dtv.com/songs/60076628.mkv +徐千雅-美丽中国,http://em.21dtv.com/songs/60076627.mkv +阿鲁阿卓-美丽中国,http://em.21dtv.com/songs/60072191.mkv +梦苇-梦里扬州,http://em.21dtv.com/songs/60125823.mkv +成于申-梦里扬州,http://em.21dtv.com/songs/60118597.mkv +陈奕迅-美丽有罪,http://em.21dtv.com/songs/60029294.mkv +陈奕迅-美丽有罪(演唱会),http://em.21dtv.com/songs/60029293.mkv +陈慧琳-迷离夜雨(演唱会),http://em.21dtv.com/songs/60029880.mkv +张学友-马路英雄(演唱会),http://em.21dtv.com/songs/60028377.mkv +张学友+邓健泓-马路英雄(演唱会),http://em.21dtv.com/songs/60028376.mkv +杨坤-美丽一天,http://em.21dtv.com/songs/60029291.mkv +佚名-美丽一生(无原唱),http://em.21dtv.com/songs/60029290.mkv +林国荣-美丽一生(无原唱),http://em.21dtv.com/songs/60029289.mkv +张国荣+辛晓琪-眉来眼去,http://em.21dtv.com/songs/60028972.mkv +苏永康-眉来眼去(演唱会),http://em.21dtv.com/songs/60028971.mkv +陈瑞-梦里有你(HD),http://em.21dtv.com/songs/10012829.mkv +陈瑞-梦里有你,http://em.21dtv.com/songs/60072197.mkv +孟文豪-美丽岳麓,http://em.21dtv.com/songs/60086702.mkv +阿佳组合-美丽依旧,http://em.21dtv.com/songs/60029292.mkv +刘巧巧-麻辣诱惑,http://em.21dtv.com/songs/60028339.mkv +于海涛-梦里远方,http://em.21dtv.com/songs/60133340.mkv +王馨平-梦里缘份,http://em.21dtv.com/songs/60029608.mkv +EO2-魅力移动,http://em.21dtv.com/songs/60089564.mkv +KIDS-魅力移动,http://em.21dtv.com/songs/60029405.mkv +洪辰-茉莉小镇,http://em.21dtv.com/songs/60076745.mkv +泽旺多吉-美丽西藏,http://em.21dtv.com/songs/60076625.mkv +S.H.E-美丽选择,http://em.21dtv.com/songs/60029288.mkv +善莹-美丽心愿,http://em.21dtv.com/songs/60109241.mkv +田震-梦里相依,http://em.21dtv.com/songs/60029606.mkv +张寒-美丽夕阳,http://em.21dtv.com/songs/60029275.mkv +宋祖英-魅力湘西,http://em.21dtv.com/songs/60103211.mkv +徐千雅-梦里湘西,http://em.21dtv.com/songs/60101087.mkv +曾会鸣-美丽星星,http://em.21dtv.com/songs/60085438.mkv +阳一-茉莉香水,http://em.21dtv.com/songs/60030397.mkv +佚名-梦里相思,http://em.21dtv.com/songs/60029605.mkv +蔡琴-梦里相思,http://em.21dtv.com/songs/60029604.mkv +蔡琴-梦里相思(演唱会),http://em.21dtv.com/songs/60029603.mkv +关燕萍-美丽心情,http://em.21dtv.com/songs/60029279.mkv +本多RURU-美丽心情,http://em.21dtv.com/songs/60029278.mkv +唐文娟-美丽溆浦,http://em.21dtv.com/songs/60101304.mkv +宋旭-美丽新娘,http://em.21dtv.com/songs/60113416.mkv +云菲菲-美丽新娘,http://em.21dtv.com/songs/60093964.mkv +孙邦楠-美丽新娘,http://em.21dtv.com/songs/60029281.mkv +陈小汉+李敏华-陌路萧郎(戏曲),http://em.21dtv.com/songs/60093427.mkv +张燕-美丽心灵,http://em.21dtv.com/songs/60091143.mkv +雷佳-美丽湘江,http://em.21dtv.com/songs/60124672.mkv +阿不都拉+阿不都热合曼-美丽新疆,http://em.21dtv.com/songs/60076626.mkv +子夕-梦里新化,http://em.21dtv.com/songs/60119412.mkv +容祖儿-美丽邂逅,http://em.21dtv.com/songs/60029277.mkv +李嘉珊-梦里星光,http://em.21dtv.com/songs/60122847.mkv +任娟-美丽乡村,http://em.21dtv.com/songs/60109958.mkv +刘大成-美丽乡村,http://em.21dtv.com/songs/60094003.mkv +吴碧霞-魅力乡村,http://em.21dtv.com/songs/60029404.mkv +汤灿-美丽西部,http://em.21dtv.com/songs/60029276.mkv +原始林合唱团-美丽伪装,http://em.21dtv.com/songs/60087505.mkv +芳蓉-魅力无限,http://em.21dtv.com/songs/60109587.mkv +孙悦-魅力无限,http://em.21dtv.com/songs/60029403.mkv +赵红富-魅力舞台,http://em.21dtv.com/songs/60106308.mkv +景心妍-名伶往事,http://em.21dtv.com/songs/60076716.mkv +探索乐团-美丽乌来,http://em.21dtv.com/songs/60029274.mkv +太阳部落-美丽午后,http://em.21dtv.com/songs/60104019.mkv +郭峰-my love to you,http://em.21dtv.com/songs/60004005.mkv +DREAM GIRLS-美丽头条,http://em.21dtv.com/songs/60084210.mkv +萧煌奇-美丽天堂,http://em.21dtv.com/songs/60029273.mkv +岑宁儿-马路天使,http://em.21dtv.com/songs/60130276.mkv +草蜢-马路天使(演唱会),http://em.21dtv.com/songs/60076558.mkv +吕娜-美丽天使,http://em.21dtv.com/songs/60068476.mkv +石梅-美丽天使,http://em.21dtv.com/songs/60066148.mkv +江南旭-魅力天使,http://em.21dtv.com/songs/60064538.mkv +太极乐队-马路天使(演唱会),http://em.21dtv.com/songs/60028375.mkv +达明一派-马路天使(演唱会),http://em.21dtv.com/songs/60028374.mkv +冬雨-美丽通辽,http://em.21dtv.com/songs/60131190.mkv +王喆+陈阳-米兰天空,http://em.21dtv.com/songs/60029952.mkv +群星-美丽誓言,http://em.21dtv.com/songs/60123086.mkv +于志杰-美丽松原,http://em.21dtv.com/songs/60117534.mkv +于文华-美丽三亚,http://em.21dtv.com/songs/60098082.mkv +陈辉权-美丽誓言,http://em.21dtv.com/songs/60061418.mkv +江珊-梦里水乡,http://em.21dtv.com/songs/60029602.mkv +陈慧琳-魔力四射,http://em.21dtv.com/songs/60097475.mkv +王馨平-梦里是谁,http://em.21dtv.com/songs/60083395.mkv +闪亮三姐妹-魅力四射,http://em.21dtv.com/songs/60029402.mkv +小曲儿+五色石南叶-末路疏狂,http://em.21dtv.com/songs/60083434.mkv +北原山猫-摩莉莎卡(无原唱),http://em.21dtv.com/songs/60030323.mkv +刁寒-美丽世界,http://em.21dtv.com/songs/60029271.mkv +吕珊-马兰山歌(演唱会),http://em.21dtv.com/songs/60083337.mkv +魏佳艺-美丽伤感,http://em.21dtv.com/songs/60029267.mkv +卓依婷-马兰山歌,http://em.21dtv.com/songs/60028365.mkv +佚名-马兰山歌,http://em.21dtv.com/songs/60028364.mkv +杨洪基-密林深处,http://em.21dtv.com/songs/60029976.mkv +曹格-美丽人生,http://em.21dtv.com/songs/60118641.mkv +蔡小虎-美丽人生,http://em.21dtv.com/songs/60068475.mkv +郑秀文-魅力燃烧,http://em.21dtv.com/songs/60029401.mkv +水木年华-美丽人生,http://em.21dtv.com/songs/60029266.mkv +梁静茹-美丽人生,http://em.21dtv.com/songs/60029265.mkv +陈雷-美丽人生,http://em.21dtv.com/songs/60029264.mkv +李丹阳-美丽人间,http://em.21dtv.com/songs/60029263.mkv +蔡恩惠-美丽如歌,http://em.21dtv.com/songs/60099480.mkv +韩晓辉-魅力汝城,http://em.21dtv.com/songs/60114247.mkv +谭锡禧-梦里情人,http://em.21dtv.com/songs/60029600.mkv +贺美琦-美丽奇迹,http://em.21dtv.com/songs/60114090.mkv +小曲儿+鸾凤鸣-命理难说,http://em.21dtv.com/songs/60104079.mkv +刘嘉亮-美丽女人,http://em.21dtv.com/songs/60029261.mkv +迪克牛仔-麻辣男人,http://em.21dtv.com/songs/60028335.mkv +探索乐园-美丽鸟来,http://em.21dtv.com/songs/60029260.mkv +丁文琪-麻辣女孩KIMPOSSIBLE,http://em.21dtv.com/songs/60090459.mkv +S.H.E-美丽男孩,http://em.21dtv.com/songs/60089572.mkv +汤灿-美丽苗乡,http://em.21dtv.com/songs/60088205.mkv +阿茹娜-美丽梦乡,http://em.21dtv.com/songs/60076623.mkv +邓惠欣-梦里梦外(演唱会),http://em.21dtv.com/songs/60083394.mkv +黄勇-梦里梦外,http://em.21dtv.com/songs/60076669.mkv +佚名-门里门外(无原唱),http://em.21dtv.com/songs/60029411.mkv +大憨+二憨-玛丽玛丽,http://em.21dtv.com/songs/60123802.mkv +小沈阳+汤潮-美了美了,http://em.21dtv.com/songs/60029138.mkv +卫兰-my love my fate(演唱会),http://em.21dtv.com/songs/60004004.mkv +古巨基-my love my fate(演唱会),http://em.21dtv.com/songs/60004003.mkv +于文华-茉莉留香,http://em.21dtv.com/songs/60123605.mkv +张国荣-梦里蓝天,http://em.21dtv.com/songs/60095298.mkv +佚名-梦里蓝天(伦巴),http://em.21dtv.com/songs/60029598.mkv +翁立友-美丽恋梦,http://em.21dtv.com/songs/60081396.mkv +李昊嘉-模棱两可,http://em.21dtv.com/songs/60076736.mkv +尹啸-梦里老家,http://em.21dtv.com/songs/60129015.mkv +周杨-梦里老家,http://em.21dtv.com/songs/60127850.mkv +郑璐-梦里老家,http://em.21dtv.com/songs/60099536.mkv +倪安东-梦里来过,http://em.21dtv.com/songs/60067231.mkv +佚名-马兰恋歌,http://em.21dtv.com/songs/60028363.mkv +阿鲁阿卓-梦里客家,http://em.21dtv.com/songs/60105461.mkv +魏如萱-末路狂花,http://em.21dtv.com/songs/60130917.mkv +张心杰-没离开过,http://em.21dtv.com/songs/60104121.mkv +林志炫-没离开过,http://em.21dtv.com/songs/60096357.mkv +郭帅-没离开过,http://em.21dtv.com/songs/60085419.mkv +毅光年+声音乐团-没离开过,http://em.21dtv.com/songs/60081475.mkv +林志炫-没离开过(演唱会),http://em.21dtv.com/songs/60028722.mkv +李晖-美丽家园,http://em.21dtv.com/songs/60113632.mkv +谭晶-美丽揭阳,http://em.21dtv.com/songs/60095345.mkv +李晖-美丽家园,http://em.21dtv.com/songs/60083382.mkv +李辉-美丽家园,http://em.21dtv.com/songs/60029258.mkv +芭比-魅力界限,http://em.21dtv.com/songs/60029400.mkv +陈奕迅-美丽谎言,http://em.21dtv.com/songs/60110629.mkv +曹艳彬-茉莉花香,http://em.21dtv.com/songs/60124028.mkv +李虎-茉莉花香,http://em.21dtv.com/songs/60084670.mkv +温岚-魔力high q,http://em.21dtv.com/songs/60030357.mkv +陈福庭-魅力海南,http://em.21dtv.com/songs/60011802.mkv +熊宝贝乐团-美丽混乱,http://em.21dtv.com/songs/60076622.mkv +李玲玉-茉莉花开,http://em.21dtv.com/songs/60084669.mkv +徐誉滕-茉莉花开,http://em.21dtv.com/songs/60030396.mkv +陈津津-美丽回家,http://em.21dtv.com/songs/60076621.mkv +吴日言-玛莉皇后,http://em.21dtv.com/songs/60028399.mkv +陶喆-美丽黑发,http://em.21dtv.com/songs/60029254.mkv +姬长乐-美丽花都,http://em.21dtv.com/songs/60103197.mkv +吴淑敏-美丽蝴蝶,http://em.21dtv.com/songs/60029255.mkv +邓雯心+刘亭婷-美丽花城,http://em.21dtv.com/songs/60069602.mkv +许哲佩-没落贵族,http://em.21dtv.com/songs/60076578.mkv +梅艳芳-梦里共醉,http://em.21dtv.com/songs/60029594.mkv +岩宰仑-勐腊姑娘,http://em.21dtv.com/songs/60124801.mkv +彝人制造-美丽姑娘,http://em.21dtv.com/songs/60064527.mkv +徐健淇-美丽姑娘,http://em.21dtv.com/songs/60063201.mkv +赵本水-美丽姑娘,http://em.21dtv.com/songs/60029253.mkv +佚名-马兰姑娘,http://em.21dtv.com/songs/60028360.mkv +官恩娜-美丽革命,http://em.21dtv.com/songs/60029252.mkv +筷子兄弟-猛龙过江,http://em.21dtv.com/songs/60102604.mkv +黄耀明-猛龙过江(演唱会),http://em.21dtv.com/songs/60064540.mkv +王麟-买了个表(欢乐版),http://em.21dtv.com/songs/60097259.mkv +伯阳-梦里飞天,http://em.21dtv.com/songs/60029593.mkv +阿幼朵-苗岭飞歌(演唱会),http://em.21dtv.com/songs/60030043.mkv +李卓庭-美丽二线,http://em.21dtv.com/songs/60029251.mkv +莫老-莫老的缘,http://em.21dtv.com/songs/60083435.mkv +狮子合唱团-迷路的心,http://em.21dtv.com/songs/60131630.mkv +褚桐羽-美丽的心,http://em.21dtv.com/songs/60129598.mkv +陈楚生-梦里的星,http://em.21dtv.com/songs/60127557.mkv +阿超-迷路的诗,http://em.21dtv.com/songs/60067234.mkv +佚名-梦里的水(无原唱),http://em.21dtv.com/songs/60029590.mkv +毛宁+杨钰莹-美丽的书(演唱会),http://em.21dtv.com/songs/60029225.mkv +杨千嬅-梦里的人(演唱会),http://em.21dtv.com/songs/60029588.mkv +隋万里-梦里的你,http://em.21dtv.com/songs/60126417.mkv +满文军-美丽的你,http://em.21dtv.com/songs/60029211.mkv +张赫宣-梦里的泪,http://em.21dtv.com/songs/60086709.mkv +洪逸齐-没来得及,http://em.21dtv.com/songs/60102481.mkv +刘欢-美丽的家(无原唱),http://em.21dtv.com/songs/60089677.mkv +苏晴-没来得及,http://em.21dtv.com/songs/60083356.mkv +龙千玉-美丽的花,http://em.21dtv.com/songs/60117424.mkv +袁东方-魅力东方,http://em.21dtv.com/songs/60114765.mkv +韩琳-魅力东方,http://em.21dtv.com/songs/60066149.mkv +七郎+邱芸子-迷恋的爱,http://em.21dtv.com/songs/60029886.mkv +宋嘉其-绵里藏针,http://em.21dtv.com/songs/60111011.mkv +苏勒亚其其格-魅力草原,http://em.21dtv.com/songs/60064537.mkv +周建芬-梅岭茶香,http://em.21dtv.com/songs/60127847.mkv +樊芳斌-魅力成县,http://em.21dtv.com/songs/60101406.mkv +满文军-梦里潮汐,http://em.21dtv.com/songs/60089406.mkv +刘孟哲-美丽春天,http://em.21dtv.com/songs/60086697.mkv +周冰倩-美丽传说,http://em.21dtv.com/songs/60029146.mkv +胡红艳-美丽传奇,http://em.21dtv.com/songs/60076609.mkv +庄学忠-木兰从军,http://em.21dtv.com/songs/60087759.mkv +张涛-木兰从军(演唱会),http://em.21dtv.com/songs/60067247.mkv +张可-美丽巢湖,http://em.21dtv.com/songs/60122713.mkv +红蔷薇-梦里彩蝶,http://em.21dtv.com/songs/60086708.mkv +谭建军-梦里彩蝶,http://em.21dtv.com/songs/60070928.mkv +王亚平-梦里彩蝶,http://em.21dtv.com/songs/60067228.mkv +张萌萌+黄伊汶-美丽榜样(演唱会),http://em.21dtv.com/songs/60064522.mkv +常石磊-美丽北京,http://em.21dtv.com/songs/60106809.mkv +李谷一-梦里边城,http://em.21dtv.com/songs/60085456.mkv +李谷一-梦里边城(演唱会),http://em.21dtv.com/songs/60076666.mkv +格桑梅朵-美丽宝贝,http://em.21dtv.com/songs/60091509.mkv +王小荣-魅力安源,http://em.21dtv.com/songs/60120760.mkv +张梅梅-美丽爱情,http://em.21dtv.com/songs/60076608.mkv +孙俪-美俪暗号,http://em.21dtv.com/songs/60029306.mkv +杜疆+韩婷-麦克之歌,http://em.21dtv.com/songs/60094550.mkv +何韵诗-美空云雀,http://em.21dtv.com/songs/60029137.mkv +何韵诗-美空云雀(演唱会),http://em.21dtv.com/songs/60029136.mkv +海龟先生-玛卡瑞纳,http://em.21dtv.com/songs/60076563.mkv +EMELI SANDE-my kind of love,http://em.21dtv.com/songs/60067950.mkv +干毛毛-免开金口,http://em.21dtv.com/songs/60096260.mkv +KELLY CLARKSON-mr know it all,http://em.21dtv.com/songs/60062080.mkv +郭凤女+何华栈-梅开二度,http://em.21dtv.com/songs/60028992.mkv +谈莉娜-猫科动物,http://em.21dtv.com/songs/60028640.mkv +欧弟-面具之王,http://em.21dtv.com/songs/60113759.mkv +紫薇-岷江夜曲,http://em.21dtv.com/songs/60030071.mkv +林淑容-岷江夜曲,http://em.21dtv.com/songs/60030070.mkv +费玉清-岷江夜曲,http://em.21dtv.com/songs/60030069.mkv +吴莺音-岷江夜曲(演唱会),http://em.21dtv.com/songs/60030068.mkv +小东+陈宏+蒲庭龙-麻吉兄弟,http://em.21dtv.com/songs/60107680.mkv +蔡佳麟-麻吉兄弟,http://em.21dtv.com/songs/60069584.mkv +阿悄-梦境三国,http://em.21dtv.com/songs/60095230.mkv +东来东往-梦竞时代,http://em.21dtv.com/songs/60125076.mkv +高翔-面具人生,http://em.21dtv.com/songs/60134473.mkv +江若琳-梦境日和(演唱会),http://em.21dtv.com/songs/60029577.mkv +谈芳兵-梦境情缘(无原唱),http://em.21dtv.com/songs/60029576.mkv +吴淑敏-免讲嘛知(无原唱),http://em.21dtv.com/songs/60030007.mkv +周汤豪-麻吉麻吉,http://em.21dtv.com/songs/60076546.mkv +阿苗千千-苗家恋歌,http://em.21dtv.com/songs/60082903.mkv +TOM PETTY-mary janes last dance,http://em.21dtv.com/songs/60003759.mkv +合唱-迈进考场,http://em.21dtv.com/songs/60087535.mkv +大支+MC仁+JOOSUC-唛讲废话,http://em.21dtv.com/songs/60028498.mkv +大支+MC仁+JOOSUC-麦讲废话,http://em.21dtv.com/songs/60028442.mkv +办桌二人组-麻吉的歌,http://em.21dtv.com/songs/60028328.mkv +黄立成+MACHI-麻吉弟弟,http://em.21dtv.com/songs/60028329.mkv +卓依婷-满江对唱,http://em.21dtv.com/songs/60028511.mkv +陈松伶-梦境成真,http://em.21dtv.com/songs/60029575.mkv +杨千桦-民间传奇,http://em.21dtv.com/songs/60092841.mkv +颜振豪-苗家阿妹,http://em.21dtv.com/songs/60134455.mkv +阿佳组合-玛吉阿玛,http://em.21dtv.com/songs/60088827.mkv +成林江措-玛吉阿米,http://em.21dtv.com/songs/60083336.mkv +佚名-make it with you,http://em.21dtv.com/songs/60003716.mkv +尚雯婕-man in the mirror,http://em.21dtv.com/songs/60073582.mkv +刘美君-man in the moon(演唱会),http://em.21dtv.com/songs/60003738.mkv +佚名-man in the moon(无原唱),http://em.21dtv.com/songs/60003737.mkv +ALICE IN CHAINS-man in the box,http://em.21dtv.com/songs/60066684.mkv +ROMEO-MIRO,http://em.21dtv.com/songs/60123526.mkv +安室奈美恵-Mint,http://em.21dtv.com/songs/60121586.mkv +何耀珊-music is my life,http://em.21dtv.com/songs/60003945.mkv +张智成-may i love you,http://em.21dtv.com/songs/60003767.mkv +THE POLICE-message in a bottle,http://em.21dtv.com/songs/60003805.mkv +汪苏泷-梦幻诛仙,http://em.21dtv.com/songs/60129337.mkv +张碧晨-梦幻诛仙,http://em.21dtv.com/songs/60129108.mkv +贺敬轩-梦幻之恋,http://em.21dtv.com/songs/60131829.mkv +何龙雨-梦幻之旅,http://em.21dtv.com/songs/60112513.mkv +群星-梦幻组合,http://em.21dtv.com/songs/60029550.mkv +刘媛媛-美好祝福,http://em.21dtv.com/songs/60029128.mkv +李菲菲-梦幻之岛,http://em.21dtv.com/songs/60029549.mkv +贯诗钦+渔圈-迷惑游戏,http://em.21dtv.com/songs/60068491.mkv +洪荣宏-幕后英雄,http://em.21dtv.com/songs/60030644.mkv +李明翰-梦回云南,http://em.21dtv.com/songs/60095277.mkv +郭玲-梦回云南,http://em.21dtv.com/songs/60062411.mkv +董瑞-梦回云南,http://em.21dtv.com/songs/60029560.mkv +白玛多吉-梦回云南,http://em.21dtv.com/songs/60029559.mkv +潘建义-梦回永嘉,http://em.21dtv.com/songs/60093854.mkv +刘以达与梦-梦幻园地,http://em.21dtv.com/songs/60076660.mkv +容中尔甲-梦回西藏,http://em.21dtv.com/songs/60029557.mkv +许传海+黄倩云-梦回校园,http://em.21dtv.com/songs/60122110.mkv +訾娟-梦和星星,http://em.21dtv.com/songs/60029531.mkv +梁秋予-梦回雄关,http://em.21dtv.com/songs/60106041.mkv +张崇基+张崇德-梦幻舞衣,http://em.21dtv.com/songs/60029548.mkv +常石磊+倪亚丰-梦幻五环,http://em.21dtv.com/songs/60029547.mkv +阿牛-魔幻童谣,http://em.21dtv.com/songs/60030349.mkv +朝洛蒙-梦幻天堂,http://em.21dtv.com/songs/60029546.mkv +王丽达+汤子星-梦回天山,http://em.21dtv.com/songs/60094590.mkv +王丽达-梦回天山,http://em.21dtv.com/songs/60094588.mkv +汤子星-梦回天山,http://em.21dtv.com/songs/60094570.mkv +张玮-魅惑天空,http://em.21dtv.com/songs/60132461.mkv +梁耀安+倪惠英-梦会太湖,http://em.21dtv.com/songs/60029563.mkv +罗时丰-迷魂探戈,http://em.21dtv.com/songs/60130653.mkv +刘文天-梦回唐朝,http://em.21dtv.com/songs/60125194.mkv +唐朝乐队-梦回唐朝,http://em.21dtv.com/songs/60029556.mkv +远方-梦幻使者,http://em.21dtv.com/songs/60029545.mkv +黄韵玲-美好岁月,http://em.21dtv.com/songs/60029127.mkv +于童-梅花三弄,http://em.21dtv.com/songs/60090511.mkv +卓依婷-梅花三弄,http://em.21dtv.com/songs/60028985.mkv +王杰-梅花三弄,http://em.21dtv.com/songs/60028984.mkv +姜育恒-梅花三弄,http://em.21dtv.com/songs/60028983.mkv +周蕙-美好生活(HD),http://em.21dtv.com/songs/10012748.mkv +周蕙-美好生活,http://em.21dtv.com/songs/60099162.mkv +陈诗雨-梅花时光,http://em.21dtv.com/songs/60135945.mkv +潘安邦-美好时光,http://em.21dtv.com/songs/60029126.mkv +黑鸭子演唱组-美好时光,http://em.21dtv.com/songs/60029125.mkv +光良+阿穆隆-美好时光,http://em.21dtv.com/songs/60029124.mkv +何龙雨-美好情缘,http://em.21dtv.com/songs/60076606.mkv +袁成杰+戚薇-梦幻奇缘,http://em.21dtv.com/songs/60029544.mkv +杨千桦-满汉全席,http://em.21dtv.com/songs/60092842.mkv +金大喜-美好青春,http://em.21dtv.com/songs/60120039.mkv +杨宗纬-蛮荒情场,http://em.21dtv.com/songs/60063254.mkv +高洪章-梦回南诏(演唱会),http://em.21dtv.com/songs/60061424.mkv +梁咏琪-漫画女王,http://em.21dtv.com/songs/60028565.mkv +冯静恩-梦幻聊斋,http://em.21dtv.com/songs/60029541.mkv +玖月奇迹-梦回浏阳,http://em.21dtv.com/songs/60076664.mkv +佚名-卖花来呀,http://em.21dtv.com/songs/60028465.mkv +辛晓琪-莫呼洛迦,http://em.21dtv.com/songs/60064576.mkv +红蓝铅笔-猫和老鼠,http://em.21dtv.com/songs/60088404.mkv +叶俊华-梦回拉萨,http://em.21dtv.com/songs/60076663.mkv +完玛三智-梦回拉萨,http://em.21dtv.com/songs/60064547.mkv +郭蓉-梦回陇南,http://em.21dtv.com/songs/60070927.mkv +苏勒亚其其格-梦回楼兰,http://em.21dtv.com/songs/60119909.mkv +苏勒亚其其格-梦回楼兰,http://em.21dtv.com/songs/60085454.mkv +朱建明-梦回老家,http://em.21dtv.com/songs/60113602.mkv +区文诗-盲婚论嫁,http://em.21dtv.com/songs/60083345.mkv +区文诗-盲婚论嫁(演唱会),http://em.21dtv.com/songs/60076572.mkv +陈小汉+李敏华-梦会骊宫(戏曲),http://em.21dtv.com/songs/60093422.mkv +王菲-梦幻旅程,http://em.21dtv.com/songs/60029543.mkv +殷浩-梦幻列车,http://em.21dtv.com/songs/60029542.mkv +曾勇-梦回金筑,http://em.21dtv.com/songs/60091279.mkv +甜妹紫烟-梦回军营,http://em.21dtv.com/songs/60127224.mkv +刘建东-梦回军营,http://em.21dtv.com/songs/60125184.mkv +Fabel-梦花镜影,http://em.21dtv.com/songs/60121246.mkv +孟小童-美好家园,http://em.21dtv.com/songs/60029123.mkv +李佑晨-庙会街上,http://em.21dtv.com/songs/60133787.mkv +杨洋-梦幻佳期,http://em.21dtv.com/songs/60116946.mkv +葛维永-梦回江南,http://em.21dtv.com/songs/60107172.mkv +天籁天-梦回江南,http://em.21dtv.com/songs/60099182.mkv +李恭-魔幻季节,http://em.21dtv.com/songs/60064574.mkv +梁咏琪-魔幻季节,http://em.21dtv.com/songs/60030348.mkv +伊风-梦回江川,http://em.21dtv.com/songs/60029555.mkv +EVANESCENCE-my heart is broken,http://em.21dtv.com/songs/60082270.mkv +K.WILL-my heart is beating,http://em.21dtv.com/songs/60062075.mkv +韩敏-麦花花香,http://em.21dtv.com/songs/60114245.mkv +覃智斡-梦回故乡,http://em.21dtv.com/songs/60132878.mkv +胡笛-梦回故乡,http://em.21dtv.com/songs/60127312.mkv +王小荣-梦回故乡,http://em.21dtv.com/songs/60120759.mkv +周子游-梦回故乡,http://em.21dtv.com/songs/60076662.mkv +新版本-卖花姑娘,http://em.21dtv.com/songs/60028464.mkv +童唱-卖花姑娘,http://em.21dtv.com/songs/60028463.mkv +老版本-卖花姑娘,http://em.21dtv.com/songs/60028462.mkv +王艺霏-梦幻国度,http://em.21dtv.com/songs/60076659.mkv +高英贵-梦回涪高,http://em.21dtv.com/songs/60085113.mkv +佚名-迷惑的心,http://em.21dtv.com/songs/60029877.mkv +海鑫-梦回大山,http://em.21dtv.com/songs/60128179.mkv +CNBLUE-美好的你,http://em.21dtv.com/songs/60121233.mkv +陈依然-迷惑的爱,http://em.21dtv.com/songs/60029876.mkv +邢蓉-梦回草原,http://em.21dtv.com/songs/60120013.mkv +朱永飞+祁玉梅-梦回草原,http://em.21dtv.com/songs/60118652.mkv +天亮-梦回草原,http://em.21dtv.com/songs/60100822.mkv +风萧萧-梦回崇阳,http://em.21dtv.com/songs/60083392.mkv +铁木隆-梦回草原,http://em.21dtv.com/songs/60066150.mkv +赵真-梦回草原,http://em.21dtv.com/songs/60029552.mkv +格格-梦回草原,http://em.21dtv.com/songs/60029551.mkv +拥江帆-梦回藏乡,http://em.21dtv.com/songs/60085452.mkv +兔妃+猫芙琳-梦回传奇,http://em.21dtv.com/songs/60126617.mkv +李玉刚-梦回春秋,http://em.21dtv.com/songs/60109426.mkv +SHINE-迷幻彩虹,http://em.21dtv.com/songs/60029866.mkv +王晰-梦回长安,http://em.21dtv.com/songs/60133988.mkv +春雷-梦回长安,http://em.21dtv.com/songs/60117776.mkv +郑智化-麻花辫子,http://em.21dtv.com/songs/60028325.mkv +TAHITI-模糊不清,http://em.21dtv.com/songs/60122429.mkv +金伊彤-玫瑰战争,http://em.21dtv.com/songs/60088799.mkv +王馨+刘润泽-玫瑰之约,http://em.21dtv.com/songs/60135575.mkv +雨儿-玫瑰之约,http://em.21dtv.com/songs/60028968.mkv +谭咏麟-魔鬼之女(演唱会),http://em.21dtv.com/songs/60030347.mkv +徐红光-玫瑰之恋,http://em.21dtv.com/songs/60116836.mkv +杨洋+金彪-曼谷之恋,http://em.21dtv.com/songs/60097419.mkv +乌兰图雅-蒙古之花,http://em.21dtv.com/songs/60116518.mkv +乌兰图雅-蒙古之花(演唱会),http://em.21dtv.com/songs/60068482.mkv +陈美凤-袂搁再憨,http://em.21dtv.com/songs/60029393.mkv +龙千玉-麦搁越头,http://em.21dtv.com/songs/60028439.mkv +郑中基-玫瑰眼泪,http://em.21dtv.com/songs/60028962.mkv +李青+王馨-玫瑰心语,http://em.21dtv.com/songs/60101096.mkv +本兮-某个心跳,http://em.21dtv.com/songs/60080426.mkv +谢金燕-玫瑰星球,http://em.21dtv.com/songs/60028961.mkv +乌兰托娅-蒙古新娘,http://em.21dtv.com/songs/60068481.mkv +张小玲-玫瑰新娘,http://em.21dtv.com/songs/60028960.mkv +哈萨尔-蒙古新郎,http://em.21dtv.com/songs/60068480.mkv +格格-牧歌新唱,http://em.21dtv.com/songs/60131566.mkv +侯强-牧归天堂,http://em.21dtv.com/songs/60030608.mkv +慕容婕柃-麦搁提起,http://em.21dtv.com/songs/60131446.mkv +刘若英-玫瑰天空(演唱会),http://em.21dtv.com/songs/60028957.mkv +佚名-玫瑰三愿,http://em.21dtv.com/songs/60028954.mkv +口天勇士-民工四季,http://em.21dtv.com/songs/60093629.mkv +元若蓝-美国时间,http://em.21dtv.com/songs/60029118.mkv +DIVA彩月团-魔鬼身材,http://em.21dtv.com/songs/60067243.mkv +黄龄-魔鬼身材,http://em.21dtv.com/songs/60030345.mkv +多亮-玫瑰人生,http://em.21dtv.com/songs/60105723.mkv +张蓉蓉-玫瑰人生,http://em.21dtv.com/songs/60075089.mkv +郝冠英-玫瑰人生,http://em.21dtv.com/songs/60062436.mkv +殷正洋-玫瑰人生,http://em.21dtv.com/songs/60028953.mkv +许景淳-玫瑰人生(演唱会),http://em.21dtv.com/songs/60028952.mkv +伍佰+李千娜-玫瑰日记,http://em.21dtv.com/songs/60111688.mkv +古巨基-每个日出,http://em.21dtv.com/songs/60029042.mkv +斯琴格日乐-蒙古骑士,http://em.21dtv.com/songs/60091255.mkv +韩磊-蒙古骑手,http://em.21dtv.com/songs/60088957.mkv +杨林-玫瑰情话,http://em.21dtv.com/songs/60028950.mkv +佚名-美姑娘仔,http://em.21dtv.com/songs/60029116.mkv +辛晓琪-每个女人,http://em.21dtv.com/songs/60029037.mkv +林二汶-玫瑰奴隶,http://em.21dtv.com/songs/60076597.mkv +佚名-玫瑰年华,http://em.21dtv.com/songs/60028949.mkv +徐仁义-毛个咪呀,http://em.21dtv.com/songs/60120559.mkv +王麟-咪咕咪咕,http://em.21dtv.com/songs/60124294.mkv +蘑菇兄弟-蘑菇蘑菇,http://em.21dtv.com/songs/60099483.mkv +张萱-蘑菇蘑菇,http://em.21dtv.com/songs/60094899.mkv +陈升-蘑菇蘑菇,http://em.21dtv.com/songs/60030336.mkv +佚名-蒙古牧歌,http://em.21dtv.com/songs/60029421.mkv +张斯斯-玫瑰恋人,http://em.21dtv.com/songs/60066144.mkv +任妙音-玫瑰恋情,http://em.21dtv.com/songs/60097305.mkv +徐晓晰+郭嘉欣-玛格莲娜,http://em.21dtv.com/songs/60028390.mkv +赵学而-每隔两秒,http://em.21dtv.com/songs/60029033.mkv +泳儿-每隔两秒(演唱会),http://em.21dtv.com/songs/60029032.mkv +费玉清-玫瑰寄情,http://em.21dtv.com/songs/60028940.mkv +KISS-民国几年,http://em.21dtv.com/songs/60030064.mkv +阿木古楞+群星-蒙古姐妹,http://em.21dtv.com/songs/60120062.mkv +年少-玫瑰花园,http://em.21dtv.com/songs/60028939.mkv +吕金蔓-梦归汉唐,http://em.21dtv.com/songs/60029528.mkv +筠子-玫瑰花蕾,http://em.21dtv.com/songs/60103506.mkv +金久哲-玫瑰花开,http://em.21dtv.com/songs/60083350.mkv +周桐同-玫瑰花开,http://em.21dtv.com/songs/60028937.mkv +王铁峰-玫瑰花开,http://em.21dtv.com/songs/60028936.mkv +飘飘我心-梦归何处,http://em.21dtv.com/songs/60067227.mkv +德德玛-蒙古高原,http://em.21dtv.com/songs/60085446.mkv +齐峰-蒙古高原,http://em.21dtv.com/songs/60083389.mkv +敖都-蒙古感情,http://em.21dtv.com/songs/60114565.mkv +韩雷-蒙古姑娘(演唱会),http://em.21dtv.com/songs/60100637.mkv +刘欢-蒙古姑娘(演唱会),http://em.21dtv.com/songs/60029420.mkv +关庆小海-牧歌飞扬,http://em.21dtv.com/songs/60128809.mkv +陈盈洁-免搁疯想(无原唱),http://em.21dtv.com/songs/60030005.mkv +那英-玫瑰的雨,http://em.21dtv.com/songs/60028928.mkv +白冰冰-玫瑰的心,http://em.21dtv.com/songs/60095823.mkv +吴淼-民工弟兄,http://em.21dtv.com/songs/60069617.mkv +许志安-玫瑰凋谢,http://em.21dtv.com/songs/60028930.mkv +许志安-玫瑰凋谢(演唱会),http://em.21dtv.com/songs/60028929.mkv +羽泉-敏感动物,http://em.21dtv.com/songs/60107130.mkv +唐飞-玫瑰多情,http://em.21dtv.com/songs/60076592.mkv +沈文程-庙公的话(无原唱),http://em.21dtv.com/songs/60030052.mkv +童丽-满工对唱,http://em.21dtv.com/songs/60076567.mkv +黄梅戏-满工对唱,http://em.21dtv.com/songs/60028507.mkv +2AM-某个春日,http://em.21dtv.com/songs/60076755.mkv +沙宝亮-玫瑰唇彩,http://em.21dtv.com/songs/60088214.mkv +姜华-玫瑰唇彩,http://em.21dtv.com/songs/60028926.mkv +霍尊-玫瑰堡垒,http://em.21dtv.com/songs/60106444.mkv +常石磊-玫瑰堡垒,http://em.21dtv.com/songs/60028924.mkv +雷龙-玫瑰爱人,http://em.21dtv.com/songs/60028923.mkv +王梓旭-玫瑰爱情,http://em.21dtv.com/songs/60028922.mkv +高胜美-玫瑰爱情,http://em.21dtv.com/songs/60028921.mkv +姜闽羲-芒果爱情,http://em.21dtv.com/songs/60028599.mkv +王雪懿-魔法咒语,http://em.21dtv.com/songs/60114700.mkv +童唱-蜜蜂做工,http://em.21dtv.com/songs/60029982.mkv +回音哥-模仿游戏,http://em.21dtv.com/songs/60133522.mkv +蓝奕邦-免费拥抱,http://em.21dtv.com/songs/60104408.mkv +刘育青-魔法星星,http://em.21dtv.com/songs/60087421.mkv +徐玉婷-魔法兔菟,http://em.21dtv.com/songs/60085478.mkv +卢巧音-命犯桃花,http://em.21dtv.com/songs/60030272.mkv +郑秀文-眉飞色舞,http://em.21dtv.com/songs/60028970.mkv +迪克牛仔-眉飞色舞(演唱会),http://em.21dtv.com/songs/60028969.mkv +张柏芝-免费试听,http://em.21dtv.com/songs/60030004.mkv +太阳风乐队-末法时代,http://em.21dtv.com/songs/60123807.mkv +佚名-模范情书,http://em.21dtv.com/songs/60030315.mkv +老狼-模范情书,http://em.21dtv.com/songs/60030314.mkv +周璇-莫负青春,http://em.21dtv.com/songs/60030423.mkv +张伟文+薛家燕-莫负青春(演唱会),http://em.21dtv.com/songs/60030422.mkv +叶倩文-麻烦女人,http://em.21dtv.com/songs/60028323.mkv +SNH48-蜜蜂女孩,http://em.21dtv.com/songs/60117491.mkv +许志安-魔法恋人,http://em.21dtv.com/songs/60030338.mkv +谢佩吟-墨菲定律,http://em.21dtv.com/songs/60130755.mkv +张智成-莫非定律,http://em.21dtv.com/songs/60030421.mkv +混乱之岛-麻烦大了,http://em.21dtv.com/songs/60028319.mkv +大兵-免费电话,http://em.21dtv.com/songs/60030002.mkv +TFBOYS-魔法城堡,http://em.21dtv.com/songs/60099703.mkv +关诗敏-魔法爱情,http://em.21dtv.com/songs/60069621.mkv +TWINS-麦儿与鸡,http://em.21dtv.com/songs/60090448.mkv +弦子-Me U,http://em.21dtv.com/songs/60107730.mkv +苏贤文-母恩难报,http://em.21dtv.com/songs/60097215.mkv +C ALLSTAR-马尔代夫(演唱会),http://em.21dtv.com/songs/60076556.mkv +许嵩-墨尔本晴,http://em.21dtv.com/songs/60030457.mkv +杨臣刚-妹儿爱我,http://em.21dtv.com/songs/60029358.mkv +林志颖-梦的主张,http://em.21dtv.com/songs/60029508.mkv +马琦欣研-面对自己,http://em.21dtv.com/songs/60105523.mkv +蒋大为-牡丹之歌,http://em.21dtv.com/songs/60128367.mkv +哎呀妈呀-牡丹之歌,http://em.21dtv.com/songs/60097269.mkv +蒋大为-牡丹之歌,http://em.21dtv.com/songs/60030565.mkv +付玉龙-梦的征程,http://em.21dtv.com/songs/60118316.mkv +赵咏华-梦的延续,http://em.21dtv.com/songs/60089491.mkv +JW-矛盾一生,http://em.21dtv.com/songs/60117467.mkv +李碧华-梦的衣裳,http://em.21dtv.com/songs/60029507.mkv +曾庆帅-梦的眼泪,http://em.21dtv.com/songs/60098425.mkv +阿幼朵-梦的摇篮,http://em.21dtv.com/songs/60029506.mkv +阿幼朵-梦的摇蓝(演唱会),http://em.21dtv.com/songs/60029505.mkv +孙楠-梦的眼睛,http://em.21dtv.com/songs/60116701.mkv +胡彦斌-梦的眼睛,http://em.21dtv.com/songs/60095043.mkv +孙楠-梦的眼睛,http://em.21dtv.com/songs/60029504.mkv +麦兜-麦兜与鸡,http://em.21dtv.com/songs/60028438.mkv +培圣-梦的永恒,http://em.21dtv.com/songs/60087619.mkv +乐天-梦的月光,http://em.21dtv.com/songs/60099723.mkv +戚威鹏-梦的远方,http://em.21dtv.com/songs/60116847.mkv +樊凡-没得选择[繁体版],http://em.21dtv.com/songs/60096364.mkv +樊凡-没得选择,http://em.21dtv.com/songs/60081626.mkv +齐晨-梦的信仰,http://em.21dtv.com/songs/60132027.mkv +郑冰冰-摩登心愿,http://em.21dtv.com/songs/60076737.mkv +赵敬一-梦的希望,http://em.21dtv.com/songs/60086706.mkv +林昭宇-梦的心跳,http://em.21dtv.com/songs/60125782.mkv +周玮贤-梦的心跳,http://em.21dtv.com/songs/60123768.mkv +SwapDiary-猫的夏天,http://em.21dtv.com/songs/60117495.mkv +龙千玉+蔡小虎-袂冻无你,http://em.21dtv.com/songs/60029392.mkv +音乐猫-猫的未来,http://em.21dtv.com/songs/60028637.mkv +涂一-猫的未来,http://em.21dtv.com/songs/60028636.mkv +李克勤-梦断他乡,http://em.21dtv.com/songs/60029517.mkv +任柏儒-牡丹亭外,http://em.21dtv.com/songs/60113247.mkv +陈升+刘萍儿-牡丹亭外,http://em.21dtv.com/songs/60030558.mkv +张敬轩-酩酊天使,http://em.21dtv.com/songs/60125506.mkv +小斯韵-摩登天使,http://em.21dtv.com/songs/60089819.mkv +谭锡禧-摩登土佬,http://em.21dtv.com/songs/60030322.mkv +周澎-梦的天空,http://em.21dtv.com/songs/60111772.mkv +RIZZLE KICKS-mama do the hump,http://em.21dtv.com/songs/60066683.mkv +牛会龙-梦的诉说,http://em.21dtv.com/songs/60121897.mkv +宋孟君+高平-麻豆宿舍,http://em.21dtv.com/songs/60094480.mkv +杨云燕+刘冬寒-弥渡山歌,http://em.21dtv.com/songs/60076698.mkv +龙飘飘-弥渡山歌,http://em.21dtv.com/songs/60029848.mkv +佚名-弥度山歌,http://em.21dtv.com/songs/60029847.mkv +容祖儿-摩登时代,http://em.21dtv.com/songs/60030321.mkv +林忆莲-默读伤悲,http://em.21dtv.com/songs/60030459.mkv +江美丽+王叶-梦渡人生,http://em.21dtv.com/songs/60029514.mkv +雨露-梦断琴堂,http://em.21dtv.com/songs/60129775.mkv +陈瑞-梦断情殇,http://em.21dtv.com/songs/60085450.mkv +齐柒柒-梦的起点,http://em.21dtv.com/songs/60100681.mkv +许云上-梦的起点(演),http://em.21dtv.com/songs/60099486.mkv +B.A.D-梦的起点,http://em.21dtv.com/songs/60029503.mkv +范晓萱-梦的扑满,http://em.21dtv.com/songs/60029502.mkv +金韩一-摩登女郎,http://em.21dtv.com/songs/60108939.mkv +金韩一-摩登女郎,http://em.21dtv.com/songs/60107292.mkv +张国荣-梦到内河,http://em.21dtv.com/songs/60029488.mkv +魏晨-梦的怒放,http://em.21dtv.com/songs/60029501.mkv +群星-梦的怒放,http://em.21dtv.com/songs/60029500.mkv +方培亨-面对命运,http://em.21dtv.com/songs/60105100.mkv +胡瓜-没大没小,http://em.21dtv.com/songs/60028711.mkv +周笔畅-猫的冒险,http://em.21dtv.com/songs/60028635.mkv +王巧-美得冒泡,http://em.21dtv.com/songs/60098636.mkv +苏慧伦-my dear my friend,http://em.21dtv.com/songs/60003966.mkv +史不凡-摩的摩的,http://em.21dtv.com/songs/60107564.mkv +刘欢-磨刀老头,http://em.21dtv.com/songs/60030335.mkv +醉美-麦冬恋曲,http://em.21dtv.com/songs/60093735.mkv +伊能静-猫的恋曲,http://em.21dtv.com/songs/60090577.mkv +何龙雨+程欣-梦断楼兰,http://em.21dtv.com/songs/60068485.mkv +FREEZE-摩登伽女,http://em.21dtv.com/songs/60030320.mkv +大嘴巴-maybe的机率,http://em.21dtv.com/songs/60065645.mkv +刘尊+田栎楠-梦的交汇,http://em.21dtv.com/songs/60076658.mkv +张祥洪-目断魂销,http://em.21dtv.com/songs/60030587.mkv +林宗兴-牡丹红了,http://em.21dtv.com/songs/60076761.mkv +蓝星-梦断红楼,http://em.21dtv.com/songs/60029516.mkv +伍佰-梦的河流,http://em.21dtv.com/songs/60029499.mkv +伍佰-梦的河流(演唱会),http://em.21dtv.com/songs/60029498.mkv +书云+倪明-梦的故乡,http://em.21dtv.com/songs/60099070.mkv +刘淼-my dreams go on,http://em.21dtv.com/songs/60067949.mkv +那英-梦的感觉,http://em.21dtv.com/songs/60029497.mkv +王心凌-梦的光点(演唱会),http://em.21dtv.com/songs/60063039.mkv +龙凤之约-梦的飞翔,http://em.21dtv.com/songs/60109069.mkv +龙凤之约-梦的飞翔,http://em.21dtv.com/songs/60093779.mkv +张津涤-每当风起,http://em.21dtv.com/songs/60131410.mkv +NO NAME-牡丹风华,http://em.21dtv.com/songs/60070956.mkv +李成-矛盾的心,http://em.21dtv.com/songs/60102342.mkv +方皓玟-梦的地图,http://em.21dtv.com/songs/60029496.mkv +杨郡-梦到癫狂,http://em.21dtv.com/songs/60116952.mkv +刘冲+阿海+陈昕+韩东-梦的地方,http://em.21dtv.com/songs/60029495.mkv +格德群星-梦的窗口,http://em.21dtv.com/songs/60122916.mkv +合力-马到成功,http://em.21dtv.com/songs/60099858.mkv +陈笠笠-马到成功,http://em.21dtv.com/songs/60096534.mkv +石文-美到颤抖(民族摇滚版),http://em.21dtv.com/songs/60097360.mkv +石文-美到颤抖(电子舞曲版),http://em.21dtv.com/songs/60097359.mkv +宋嘉其-梦的翅膀,http://em.21dtv.com/songs/60111010.mkv +云丹久美-梦的翅膀,http://em.21dtv.com/songs/60099075.mkv +群星-梦的翅膀,http://em.21dtv.com/songs/60064545.mkv +朱桦-梦的翅膀,http://em.21dtv.com/songs/60029493.mkv +刘惜君-梦的翅膀,http://em.21dtv.com/songs/60029492.mkv +方皓玟-梦的捕手,http://em.21dtv.com/songs/60029491.mkv +蒋瑶嘉-梦的堡垒,http://em.21dtv.com/songs/60096487.mkv +林少纬-矛盾爱情,http://em.21dtv.com/songs/60076574.mkv +海阔天空组合-面对爱情,http://em.21dtv.com/songs/60069615.mkv +Smile小千-梦痴者说,http://em.21dtv.com/songs/60126548.mkv +白冰冰-卖菜义丫,http://em.21dtv.com/songs/60095813.mkv +毛阿敏+张杰-满城烟花,http://em.21dtv.com/songs/60132668.mkv +刘德华-每次醒来,http://em.21dtv.com/songs/60029017.mkv +刘德华-每次醒来(演唱会),http://em.21dtv.com/songs/60029015.mkv +孔雀哥哥-没出现过,http://em.21dtv.com/songs/60104032.mkv +Mr.-Merry Christmas To You,http://em.21dtv.com/songs/60099014.mkv +陈司翰-名厂设计,http://em.21dtv.com/songs/60093389.mkv +H.SCHMIDT+T.JONESMCRO-my cup runneth over,http://em.21dtv.com/songs/60003965.mkv +张菲-my cup runneth over(演唱会),http://em.21dtv.com/songs/60003964.mkv +郭艳华-蒙藏情缘,http://em.21dtv.com/songs/60134341.mkv +岳琦-漫长情路,http://em.21dtv.com/songs/60061398.mkv +佚名-牧场情歌,http://em.21dtv.com/songs/60030599.mkv +叶瑷菱-唛唱情歌,http://em.21dtv.com/songs/60028495.mkv +哈萨尔组合-牧场秋冬,http://em.21dtv.com/songs/60069627.mkv +乌兰托娅-牧场飘香,http://em.21dtv.com/songs/60083445.mkv +龙梅-牧场飘香,http://em.21dtv.com/songs/60064585.mkv +傅颖-my cup of tea,http://em.21dtv.com/songs/60003963.mkv +夏宇童-每朝美day,http://em.21dtv.com/songs/60029007.mkv +谢容儿-末次见面,http://em.21dtv.com/songs/60080012.mkv +王俊凯-满城花开,http://em.21dtv.com/songs/60111265.mkv +费翔-埋藏过去,http://em.21dtv.com/songs/60028417.mkv +江蕙-卖菜姑娘,http://em.21dtv.com/songs/60028455.mkv +水木年华-面朝大海(弦乐版),http://em.21dtv.com/songs/60097343.mkv +满江-面朝大海(演唱会),http://em.21dtv.com/songs/60030019.mkv +刘党庆-名城德格,http://em.21dtv.com/songs/60030078.mkv +王菀之+张敬轩-面斥不雅(演唱会),http://em.21dtv.com/songs/60030021.mkv +余哲-漫步月光,http://em.21dtv.com/songs/60104785.mkv +林圣杰-漫步云端,http://em.21dtv.com/songs/60085416.mkv +林子祥-迈步向前,http://em.21dtv.com/songs/60028432.mkv +SWING-面包生命,http://em.21dtv.com/songs/60092198.mkv +AOA-猫步轻悄,http://em.21dtv.com/songs/60134638.mkv +格格-马背情歌,http://em.21dtv.com/songs/60130495.mkv +张冬玲-马背情歌,http://em.21dtv.com/songs/60116782.mkv +许魏洲+朱元冰-明白梦想,http://em.21dtv.com/songs/60122118.mkv +张信哲-妙不可言,http://em.21dtv.com/songs/60030049.mkv +哈泊力夫-马背豪情,http://em.21dtv.com/songs/60122620.mkv +苟伟+动力火车-面不改色,http://em.21dtv.com/songs/60030018.mkv +动力火车-面不改色,http://em.21dtv.com/songs/60030017.mkv +李草青青-马鞭姑娘,http://em.21dtv.com/songs/60062585.mkv +周治平-梦不到你,http://em.21dtv.com/songs/60029482.mkv +佚名-梦不到你,http://em.21dtv.com/songs/60029481.mkv +Jubi+Gummy-抹不掉的,http://em.21dtv.com/songs/60114949.mkv +丁菲飞+陈晓东-脉搏奔流,http://em.21dtv.com/songs/60028493.mkv +佚名-mi buenos aires querido,http://em.21dtv.com/songs/60003808.mkv +EXILE ATSUSHI-melrose~爱さない约束~,http://em.21dtv.com/songs/60073591.mkv +ACEMAX RED-MAXY,http://em.21dtv.com/songs/60129875.mkv +Stellar-Mask,http://em.21dtv.com/songs/60103821.mkv +T+G-母爱失衡,http://em.21dtv.com/songs/60109902.mkv +CALVIN HARRIS-merrymaking at my place,http://em.21dtv.com/songs/60003804.mkv +TOMDICE-me and my guitar(HD高清),http://em.21dtv.com/songs/60003778.mkv +张楠+周晓晓-MAMA,http://em.21dtv.com/songs/60114543.mkv +余翠芝-make a love song,http://em.21dtv.com/songs/60003709.mkv +The Wanted-Made,http://em.21dtv.com/songs/60104745.mkv +蔡孟臻-留在这首,http://em.21dtv.com/songs/60088597.mkv +姚贝娜+沙宝亮-阆中之恋,http://em.21dtv.com/songs/60099923.mkv +回音哥-两者之间,http://em.21dtv.com/songs/60131298.mkv +郑源-梁祝赞歌(演唱会),http://em.21dtv.com/songs/60027207.mkv +佚名-拉兹之歌,http://em.21dtv.com/songs/60025920.mkv +吕方-留住这爱,http://em.21dtv.com/songs/60027597.mkv +热狗-老子有钱,http://em.21dtv.com/songs/60062856.mkv +张洪量-老子有理,http://em.21dtv.com/songs/60026460.mkv +梁玉嵘+何萍-梁祝夜话(戏曲),http://em.21dtv.com/songs/60092907.mkv +倪彬-林则徐赞,http://em.21dtv.com/songs/60099758.mkv +超泉RZ组合-两只小羊,http://em.21dtv.com/songs/60085388.mkv +超泉RZ组合-两只小羊(舞曲版),http://em.21dtv.com/songs/60085387.mkv +万清泉-两只小羊,http://em.21dtv.com/songs/60067204.mkv +任贤齐-浪子心声,http://em.21dtv.com/songs/60092245.mkv +石修-浪子心声(演唱会),http://em.21dtv.com/songs/60076328.mkv +许冠杰-浪子心声,http://em.21dtv.com/songs/60026303.mkv +邓丽君-浪子心声,http://em.21dtv.com/songs/60026302.mkv +周华健-浪子心声(演唱会),http://em.21dtv.com/songs/60026301.mkv +张德兰-浪子心声(演唱会),http://em.21dtv.com/songs/60026300.mkv +许冠杰-浪子心声(演唱会),http://em.21dtv.com/songs/60026299.mkv +夏韶声-浪子心声(演唱会),http://em.21dtv.com/songs/60026298.mkv +罗大佑-浪子心声(演唱会),http://em.21dtv.com/songs/60026297.mkv +刘德华-浪子心声(演唱会),http://em.21dtv.com/songs/60026296.mkv +陈洁丽-浪子心声(演唱会),http://em.21dtv.com/songs/60026295.mkv +陈百强-浪子心声(演唱会),http://em.21dtv.com/songs/60026294.mkv +卓依婷-浪子心情,http://em.21dtv.com/songs/60087477.mkv +刘德华-留在心里,http://em.21dtv.com/songs/60027584.mkv +马旭成-来自温州,http://em.21dtv.com/songs/60129810.mkv +老狼-来自我心,http://em.21dtv.com/songs/60026020.mkv +张天一-两只玩偶,http://em.21dtv.com/songs/60076437.mkv +庞龙-两只乌龟,http://em.21dtv.com/songs/60027319.mkv +王梓轩-罗兹威尔,http://em.21dtv.com/songs/60028038.mkv +全孝盛+D.Action-来找我吧,http://em.21dtv.com/songs/60121393.mkv +太极乐队-留住我吧,http://em.21dtv.com/songs/60027595.mkv +太极乐队-留住我吧(演唱会),http://em.21dtv.com/songs/60027594.mkv +易欣-泪在投降,http://em.21dtv.com/songs/60026556.mkv +佚名-梁祝同窗,http://em.21dtv.com/songs/60027206.mkv +七郎+丽玉-浪子深情,http://em.21dtv.com/songs/60026291.mkv +钟汉良-乐作人生,http://em.21dtv.com/songs/60124593.mkv +陈明章-浪子人生,http://em.21dtv.com/songs/60026290.mkv +庄心妍-乐在其中,http://em.21dtv.com/songs/60103257.mkv +古巨基-乐在其中,http://em.21dtv.com/songs/60026480.mkv +周杰伦-龙战骑士,http://em.21dtv.com/songs/60027848.mkv +佚名-留住秋色,http://em.21dtv.com/songs/60027593.mkv +蔡小虎-浪子情深,http://em.21dtv.com/songs/60026289.mkv +吴木-浪子情歌,http://em.21dtv.com/songs/60115046.mkv +扬哲-浪子情歌,http://em.21dtv.com/songs/60076327.mkv +王旭鹏-路在前方,http://em.21dtv.com/songs/60109530.mkv +朱天毅+杨静玉-留住梦想,http://em.21dtv.com/songs/60121749.mkv +萨顶顶-来者摩羯,http://em.21dtv.com/songs/60069553.mkv +低苦艾-兰州兰州,http://em.21dtv.com/songs/60133360.mkv +低苦艾乐队-兰州兰州,http://em.21dtv.com/songs/60119253.mkv +任宇翔-撸着撸着,http://em.21dtv.com/songs/60101890.mkv +李龙基-路直路弯,http://em.21dtv.com/songs/60027965.mkv +李龙基-路直路弯(演唱会),http://em.21dtv.com/songs/60027964.mkv +费翔-龙子龙孙,http://em.21dtv.com/songs/60027854.mkv +佚名-两只老鼠,http://em.21dtv.com/songs/60027317.mkv +曹格-两只恋人,http://em.21dtv.com/songs/60027318.mkv +PANDA组合-两只老虎,http://em.21dtv.com/songs/60134782.mkv +王雪晶-两只老虎,http://em.21dtv.com/songs/60027316.mkv +童唱-两只老虎,http://em.21dtv.com/songs/60027315.mkv +春妹-留住客人,http://em.21dtv.com/songs/60027590.mkv +袁卓威-流转记忆,http://em.21dtv.com/songs/60093133.mkv +单色凌+小布-两种较色,http://em.21dtv.com/songs/60083303.mkv +阿悄-龙战江湖,http://em.21dtv.com/songs/60108109.mkv +姬长乐-龙在江湖,http://em.21dtv.com/songs/60103198.mkv +黑龙-龙在江湖,http://em.21dtv.com/songs/60100679.mkv +陈奕迅-两种讲法,http://em.21dtv.com/songs/60110613.mkv +黄崇旭+关彦淳-浪子回头,http://em.21dtv.com/songs/60097410.mkv +庄学忠-浪子回头,http://em.21dtv.com/songs/60026281.mkv +钟伟-浪子回头,http://em.21dtv.com/songs/60026280.mkv +郭桂彬-浪子回头,http://em.21dtv.com/songs/60026279.mkv +陈一郎-浪子回头,http://em.21dtv.com/songs/60026278.mkv +周笔畅-两只蝴蝶,http://em.21dtv.com/songs/60089748.mkv +郑伊健+ZCN-龙争虎斗,http://em.21dtv.com/songs/60027852.mkv +杨千嬅-龙争虎斗,http://em.21dtv.com/songs/60027851.mkv +杨千嬅-龙争虎斗(演唱会),http://em.21dtv.com/songs/60027850.mkv +AT17-龙争虎斗(演唱会),http://em.21dtv.com/songs/60027849.mkv +庞龙-两只蝴蝶,http://em.21dtv.com/songs/60027314.mkv +阿生-两只蝴蝶,http://em.21dtv.com/songs/60027313.mkv +越剧-梁祝化蝶,http://em.21dtv.com/songs/60027205.mkv +音乐走廊-梁祝红尘,http://em.21dtv.com/songs/60109736.mkv +方顺吉-浪子歌声,http://em.21dtv.com/songs/60126951.mkv +王莹+赵巨涛-黎寨歌声,http://em.21dtv.com/songs/60113885.mkv +陈启泰-兰州姑娘,http://em.21dtv.com/songs/60072125.mkv +LYn-留在风中,http://em.21dtv.com/songs/60122397.mkv +林嘉欣-恋之风景,http://em.21dtv.com/songs/60027157.mkv +佚名-梁祝赴杭,http://em.21dtv.com/songs/60027204.mkv +胡杨林-留住冬天,http://em.21dtv.com/songs/60027589.mkv +俞隆华-浪子的锁,http://em.21dtv.com/songs/60026270.mkv +任贤齐-老张的歌,http://em.21dtv.com/songs/60026456.mkv +容祖儿-隆重登场,http://em.21dtv.com/songs/60027863.mkv +容祖儿-隆重登场(演唱会),http://em.21dtv.com/songs/60027862.mkv +黄耀明+容祖儿-隆重登场(演唱会),http://em.21dtv.com/songs/60027861.mkv +达明一派+谢霆锋-隆重登场(演唱会),http://em.21dtv.com/songs/60027860.mkv +灼焰-两座城市,http://em.21dtv.com/songs/60096104.mkv +秀兰玛雅-龙之传人,http://em.21dtv.com/songs/60063198.mkv +苏晴-赖着不走,http://em.21dtv.com/songs/60083246.mkv +汪苏泷-灵主不悔,http://em.21dtv.com/songs/60118738.mkv +佚名-浪子悲歌,http://em.21dtv.com/songs/60026264.mkv +向蕙玲-两字爱情(HD),http://em.21dtv.com/songs/10012722.mkv +向蕙玲-两字爱情,http://em.21dtv.com/songs/60097264.mkv +徐若萱-蜡烛爱情,http://em.21dtv.com/songs/60089886.mkv +张崇基+张崇德-龙珠94(演唱会),http://em.21dtv.com/songs/60027853.mkv +SNH48-狼与自尊,http://em.21dtv.com/songs/60117489.mkv +孙燕姿-另一张脸,http://em.21dtv.com/songs/60027490.mkv +陈倩倩-蓝颜知己,http://em.21dtv.com/songs/60061348.mkv +陈瑞-蓝颜知己,http://em.21dtv.com/songs/60026136.mkv +陈倩倩+郭亮-蓝颜知己,http://em.21dtv.com/songs/60026135.mkv +李猛-驴友之歌,http://em.21dtv.com/songs/60080204.mkv +佚名-留一盏灯,http://em.21dtv.com/songs/60027582.mkv +HITA+叶里+安九-礼仪之邦,http://em.21dtv.com/songs/60083291.mkv +HITA-洛阳夜雨,http://em.21dtv.com/songs/60127651.mkv +田文静-绿韵依依,http://em.21dtv.com/songs/60103485.mkv +[Group] +groupName=十六万歌曲MV等 - 48 +华少翌-梨园英雄,http://em.21dtv.com/songs/60026825.mkv +AAA-恋音と雨空,http://em.21dtv.com/songs/60085383.mkv +浩轩-狼羊新传,http://em.21dtv.com/songs/60070865.mkv +容祖儿-绿野仙踪,http://em.21dtv.com/songs/60028193.mkv +陈晓琪-留言信箱,http://em.21dtv.com/songs/60102892.mkv +郭富城-留言信箱,http://em.21dtv.com/songs/60027578.mkv +容祖儿-另眼相看,http://em.21dtv.com/songs/60079971.mkv +萧煌奇-另眼相看,http://em.21dtv.com/songs/60027483.mkv +杨淑华-阆苑仙境,http://em.21dtv.com/songs/60094554.mkv +郑伊健-老友万岁,http://em.21dtv.com/songs/60026450.mkv +杨程凯-冷语无情,http://em.21dtv.com/songs/60064465.mkv +童唱-六月田水,http://em.21dtv.com/songs/60027804.mkv +那英+马上又-老有所依,http://em.21dtv.com/songs/60097216.mkv +罗时丰-落叶时雨,http://em.21dtv.com/songs/60076535.mkv +佚名-落叶时雨,http://em.21dtv.com/songs/60028118.mkv +郭金发-落叶时雨,http://em.21dtv.com/songs/60028117.mkv +小肥-六月十三,http://em.21dtv.com/songs/60027799.mkv +杨荣辉-落叶思情,http://em.21dtv.com/songs/60116033.mkv +泽仁伍波-蓝月山谷,http://em.21dtv.com/songs/60120706.mkv +阿影-落叶随风,http://em.21dtv.com/songs/60115476.mkv +枫舞+绿昕-落叶随风,http://em.21dtv.com/songs/60106992.mkv +李思琳-另一扇窗,http://em.21dtv.com/songs/60076461.mkv +魏佳艺-落叶飘零,http://em.21dtv.com/songs/60105531.mkv +马常宝+王雅娴-落叶飘零,http://em.21dtv.com/songs/60101001.mkv +马常宝-落叶飘零,http://em.21dtv.com/songs/60100999.mkv +晓月-落叶飘零,http://em.21dtv.com/songs/60028114.mkv +DRAKE-loving you no more,http://em.21dtv.com/songs/60003651.mkv +苗伟-老友难得,http://em.21dtv.com/songs/60115348.mkv +陈芬兰-落叶满天(无原唱),http://em.21dtv.com/songs/60028112.mkv +EXO-M-狼与美女,http://em.21dtv.com/songs/60083258.mkv +童唱-六月茉莉,http://em.21dtv.com/songs/60027798.mkv +田华-洛阳牡丹(演唱会),http://em.21dtv.com/songs/60028048.mkv +凤飞飞-凉呀凉呀,http://em.21dtv.com/songs/60087376.mkv +任贤齐-良药苦口,http://em.21dtv.com/songs/60027172.mkv +赵青岳-恋雨季节,http://em.21dtv.com/songs/60132933.mkv +威利-落叶季节(演唱会),http://em.21dtv.com/songs/60028111.mkv +BEE GEES-love you inside out,http://em.21dtv.com/songs/60003619.mkv +EASTON CORBIN-lovin you is fun,http://em.21dtv.com/songs/60073567.mkv +李明明-狼羊后传,http://em.21dtv.com/songs/60068417.mkv +佚名-莱茵河畔,http://em.21dtv.com/songs/60026022.mkv +陈思思-柳叶湖美,http://em.21dtv.com/songs/60066129.mkv +梁汉文-烈焰红唇,http://em.21dtv.com/songs/60097378.mkv +刘雅丽+杜雯惠+梁荣忠-烈焰红唇(演唱会),http://em.21dtv.com/songs/60083305.mkv +苏姗-烈焰红唇(演唱会),http://em.21dtv.com/songs/60076443.mkv +刘美君-烈焰红唇,http://em.21dtv.com/songs/60069572.mkv +梅艳芳-烈焰红唇,http://em.21dtv.com/songs/60027373.mkv +许志安-烈焰红唇(演唱会),http://em.21dtv.com/songs/60027372.mkv +梅艳芳-烈焰红唇(演唱会),http://em.21dtv.com/songs/60027371.mkv +田毅-另一个我,http://em.21dtv.com/songs/60114708.mkv +群星-雷雨公路,http://em.21dtv.com/songs/60118849.mkv +阿兰-落叶归根,http://em.21dtv.com/songs/60126344.mkv +胡慧仪-落叶归根,http://em.21dtv.com/songs/60103526.mkv +李祥祥-落叶归根,http://em.21dtv.com/songs/60086689.mkv +王铮亮-落叶归根(演唱会),http://em.21dtv.com/songs/60072173.mkv +王力宏-落叶归根,http://em.21dtv.com/songs/60028110.mkv +王力宏-落叶归根(演唱会),http://em.21dtv.com/songs/60028109.mkv +马浚伟+钟嘉欣-老友狗狗,http://em.21dtv.com/songs/60026449.mkv +孙耀威-恋一个爱,http://em.21dtv.com/songs/60027151.mkv +陈奕迅-六月飞霜,http://em.21dtv.com/songs/60027793.mkv +陈之财-烈焰焚情,http://em.21dtv.com/songs/60102864.mkv +程楚煜-腊月逢梅,http://em.21dtv.com/songs/60100357.mkv +孙艳-劳燕分飞,http://em.21dtv.com/songs/60098245.mkv +陈洁仪+苏永康-来夜方长,http://em.21dtv.com/songs/60026015.mkv +苏永康+CORINNA-来夜方长(演唱会),http://em.21dtv.com/songs/60026014.mkv +陈芬兰-炼狱儿女(无原唱),http://em.21dtv.com/songs/60026981.mkv +郭文翰-路有多远,http://em.21dtv.com/songs/60134327.mkv +胡歌-六月的雨,http://em.21dtv.com/songs/60027792.mkv +蔡小虎-六月的雨,http://em.21dtv.com/songs/60027791.mkv +望海高歌-落叶的痛,http://em.21dtv.com/songs/60113599.mkv +安东阳-落雨的秋,http://em.21dtv.com/songs/60125406.mkv +蔡琴-落一滴泪(无原唱),http://em.21dtv.com/songs/60028120.mkv +蔡龙波-六月的泪,http://em.21dtv.com/songs/60027790.mkv +付玉龙-龙耀东方,http://em.21dtv.com/songs/60099739.mkv +陈冠倩-留一点爱,http://em.21dtv.com/songs/60027579.mkv +陈仕骏-柳毅传书,http://em.21dtv.com/songs/60027768.mkv +王杰-泪影背后,http://em.21dtv.com/songs/60026554.mkv +言承旭-恋要爱你,http://em.21dtv.com/songs/60027149.mkv +李盼-良心作证,http://em.21dtv.com/songs/60094151.mkv +张军-理想主义,http://em.21dtv.com/songs/60076400.mkv +阿英+洛桑邓珠-梨乡之恋,http://em.21dtv.com/songs/60076380.mkv +庄心妍-弄虚作假,http://em.21dtv.com/songs/60127948.mkv +ELSIE-龙心战纪,http://em.21dtv.com/songs/60119137.mkv +余天-离乡之歌,http://em.21dtv.com/songs/60026798.mkv +佚名-离乡之歌,http://em.21dtv.com/songs/60026797.mkv +周璇-陋巷之春,http://em.21dtv.com/songs/60027894.mkv +费玉清-陋巷之春,http://em.21dtv.com/songs/60027893.mkv +刘德华-练习映艺,http://em.21dtv.com/songs/60090705.mkv +SHINE-流星月台,http://em.21dtv.com/songs/60097408.mkv +阎飞翔-流行元素,http://em.21dtv.com/songs/60072163.mkv +小贱-练习约会,http://em.21dtv.com/songs/60083299.mkv +慕寒-落霞云归,http://em.21dtv.com/songs/60128020.mkv +韩红-灵犀一动,http://em.21dtv.com/songs/60127589.mkv +佚名-两心相同,http://em.21dtv.com/songs/60027310.mkv +区瑞强-两小无知,http://em.21dtv.com/songs/60092371.mkv +MASTAMIC-流行无罪,http://em.21dtv.com/songs/60083312.mkv +XL组合-两小无猜,http://em.21dtv.com/songs/60132150.mkv +XL组合-两小无猜,http://em.21dtv.com/songs/60127688.mkv +蔡照+陈秋实-两小无猜,http://em.21dtv.com/songs/60124440.mkv +夏后-两小无猜,http://em.21dtv.com/songs/60085386.mkv +古巨基-两小无猜,http://em.21dtv.com/songs/60076436.mkv +鹏飞梦舞-龙行天下,http://em.21dtv.com/songs/60129826.mkv +郑锦昌-流星岁月,http://em.21dtv.com/songs/60093339.mkv +郑憬昌-流星岁月,http://em.21dtv.com/songs/60090257.mkv +宋熙铭-龙虾盛宴,http://em.21dtv.com/songs/60064492.mkv +佚名-流行岁月(无原唱),http://em.21dtv.com/songs/60027610.mkv +万芳-练习失去,http://em.21dtv.com/songs/60111671.mkv +万芳-练习失去,http://em.21dtv.com/songs/60109922.mkv +谢霆锋-理想世界,http://em.21dtv.com/songs/60026891.mkv +斯琴格日乐-理想生活,http://em.21dtv.com/songs/60125610.mkv +宋健-离校时光,http://em.21dtv.com/songs/60117671.mkv +庄振凯-零下三度,http://em.21dtv.com/songs/60111846.mkv +耿宁-零下三度,http://em.21dtv.com/songs/60090122.mkv +宝佩如-郎心如铁,http://em.21dtv.com/songs/60026186.mkv +冯博-理想人生,http://em.21dtv.com/songs/60103913.mkv +徐佳莹-理想人生,http://em.21dtv.com/songs/60068436.mkv +初音未来-炉心融解,http://em.21dtv.com/songs/60068447.mkv +杨丞琳-理想情人,http://em.21dtv.com/songs/60026890.mkv +林心如-榴香奇梦,http://em.21dtv.com/songs/60091445.mkv +宇翔-流下情泪,http://em.21dtv.com/songs/60125405.mkv +佚名-留下陪我,http://em.21dtv.com/songs/60027569.mkv +吴国敬-理想年代,http://em.21dtv.com/songs/60026889.mkv +张爽-拉线木偶,http://em.21dtv.com/songs/60025915.mkv +卓依婷-留下了我,http://em.21dtv.com/songs/60087482.mkv +农夫-龙兄虎弟,http://em.21dtv.com/songs/60092333.mkv +李荣浩-流行歌曲,http://em.21dtv.com/songs/60120644.mkv +李荣浩-流行歌曲,http://em.21dtv.com/songs/60119670.mkv +朱娜-狼心狗肺,http://em.21dtv.com/songs/60066105.mkv +徐誉滕-流星飞呀,http://em.21dtv.com/songs/60027730.mkv +钟欣桐+关智斌-良心发现,http://em.21dtv.com/songs/60027171.mkv +毕书尽-流星飞过,http://em.21dtv.com/songs/60076475.mkv +多元神话-流行风暴,http://em.21dtv.com/songs/60105724.mkv +安玖儿-柳絮儿飞,http://em.21dtv.com/songs/60069578.mkv +祁哲西-零下二度,http://em.21dtv.com/songs/60076456.mkv +盖玺-旅行电影,http://em.21dtv.com/songs/60128259.mkv +何念庭-落雪的心,http://em.21dtv.com/songs/60028102.mkv +郑秀文-理想对象,http://em.21dtv.com/songs/60026887.mkv +吴国敬-理想对象,http://em.21dtv.com/songs/60026886.mkv +郑秀文-理想对象(演唱会),http://em.21dtv.com/songs/60026885.mkv +张冬玲-冷血动物,http://em.21dtv.com/songs/60068431.mkv +丁当-冷血动物,http://em.21dtv.com/songs/60026618.mkv +佚名-理想的爱,http://em.21dtv.com/songs/60026883.mkv +杨坤-零下3度(演唱会),http://em.21dtv.com/songs/60027469.mkv +侧田-恋心初歌,http://em.21dtv.com/songs/60027146.mkv +钟汉良-流向巴黎,http://em.21dtv.com/songs/60027721.mkv +周启生-离乡别井,http://em.21dtv.com/songs/60026790.mkv +詹宇琦-练习不害,http://em.21dtv.com/songs/60081743.mkv +臧天朔-理想不倒,http://em.21dtv.com/songs/60109584.mkv +陈势安-练习爱情,http://em.21dtv.com/songs/60129727.mkv +王大文+陈芳语-练习爱情,http://em.21dtv.com/songs/60097334.mkv +张雷-流星爱情,http://em.21dtv.com/songs/60068446.mkv +方磊-俩王最大,http://em.21dtv.com/songs/60113554.mkv +黎明-两位一体,http://em.21dtv.com/songs/60027306.mkv +黎明-两位一体(演唱会),http://em.21dtv.com/songs/60027305.mkv +JET-look what youve done,http://em.21dtv.com/songs/60003487.mkv +佚名-拉网小调,http://em.21dtv.com/songs/60025914.mkv +FUNDERMENCAL-流亡舞影,http://em.21dtv.com/songs/60092176.mkv +黄家强-long way without friends(演唱会),http://em.21dtv.com/songs/60003481.mkv +许冠杰-梨涡浅笑,http://em.21dtv.com/songs/60026824.mkv +何婉盈-梨涡浅笑,http://em.21dtv.com/songs/60026823.mkv +TWINS-梨涡浅笑,http://em.21dtv.com/songs/60026822.mkv +TWINS-梨涡浅笑(演唱会),http://em.21dtv.com/songs/60026821.mkv +毛宁-了无牵挂,http://em.21dtv.com/songs/60026498.mkv +毛宁-了无牵挂(演唱会),http://em.21dtv.com/songs/60026497.mkv +MICHAEL LEARNS TO ROCK-love will never lie(演唱会),http://em.21dtv.com/songs/60003615.mkv +曾妮-泪吻落花,http://em.21dtv.com/songs/60117781.mkv +古巨基-恋无可恋,http://em.21dtv.com/songs/60068440.mkv +宋祖英-龙舞吉祥,http://em.21dtv.com/songs/60066132.mkv +何文雅-龙舞九天,http://em.21dtv.com/songs/60130077.mkv +谢金燕-练舞功之DJ,http://em.21dtv.com/songs/60090219.mkv +尹铭君-乐舞飞天,http://em.21dtv.com/songs/60133607.mkv +朱敏+吕笑笑-龙舞凤凰,http://em.21dtv.com/songs/60117799.mkv +姜涛+张若玉-龙舞凤凰,http://em.21dtv.com/songs/60027846.mkv +谢霆锋-离我而去,http://em.21dtv.com/songs/60092117.mkv +贾南-笼外的鸟,http://em.21dtv.com/songs/60027859.mkv +TACKE竹桑-乱舞苍穹,http://em.21dtv.com/songs/60069581.mkv +周杰伦-乱舞春秋,http://em.21dtv.com/songs/60028002.mkv +LIONEL RICHIE-love will conquer all,http://em.21dtv.com/songs/60003608.mkv +张菲-la vie en rose(演唱会),http://em.21dtv.com/songs/60003250.mkv +林峰-light up my life(演唱会),http://em.21dtv.com/songs/60062638.mkv +林峰-light up my life,http://em.21dtv.com/songs/60060855.mkv +布朗-light up my fire,http://em.21dtv.com/songs/60066674.mkv +拾参乐团-LUCKY 13,http://em.21dtv.com/songs/60100062.mkv +蔡秋凤-烂田准路,http://em.21dtv.com/songs/60026173.mkv +薛凯琪-楼梯转角,http://em.21dtv.com/songs/60027887.mkv +李创-龙腾中国,http://em.21dtv.com/songs/60103355.mkv +郑秀文-裸体早餐,http://em.21dtv.com/songs/60134319.mkv +李嘉豪-龙腾异数(无原唱),http://em.21dtv.com/songs/60027841.mkv +郭美美-蓝天眼泪,http://em.21dtv.com/songs/60134339.mkv +JAMES BLAKE-limit to your love,http://em.21dtv.com/songs/60073517.mkv +KAISER CHIEFS-listen to your head,http://em.21dtv.com/songs/60073518.mkv +佚名-listen to your heart,http://em.21dtv.com/songs/60003429.mkv +杨鸣+蔡凤凰-旅途夜风,http://em.21dtv.com/songs/60028148.mkv +LEANN RIMES-looking through your eyes,http://em.21dtv.com/songs/60003491.mkv +1983-聆听我心,http://em.21dtv.com/songs/60027442.mkv +关彤-蓝天卫士,http://em.21dtv.com/songs/60085349.mkv +马忠伟-来跳舞吧,http://em.21dtv.com/songs/60129806.mkv +LED APPLE-let the wind blow,http://em.21dtv.com/songs/60073499.mkv +苏醒+张杰-来跳舞吧(演唱会),http://em.21dtv.com/songs/60026011.mkv +李宇春-来跳舞吧(演唱会),http://em.21dtv.com/songs/60026010.mkv +DOOBIE BROTHERS-listen to the music,http://em.21dtv.com/songs/60003427.mkv +佚名-last train to clarksville,http://em.21dtv.com/songs/60003285.mkv +刘德华-浪淘沙9,http://em.21dtv.com/songs/60087403.mkv +余文乐-雷霆伞兵,http://em.21dtv.com/songs/60109147.mkv +李慧珍-乐天情人(演唱会),http://em.21dtv.com/songs/60066109.mkv +奥迪-乱弹情歌,http://em.21dtv.com/songs/60076521.mkv +佚名-老土情歌,http://em.21dtv.com/songs/60026435.mkv +叶幼琪+蒋文端-楼台泣别(戏曲),http://em.21dtv.com/songs/60092412.mkv +5DOLLS-like this or that,http://em.21dtv.com/songs/60073514.mkv +陈一郎-long time no see,http://em.21dtv.com/songs/60003479.mkv +软硬天师-long time no see(演唱会),http://em.21dtv.com/songs/60003478.mkv +C ALLSTAR-乐天女孩,http://em.21dtv.com/songs/60064463.mkv +DON TRIP FT+CEE LO-letter to my son,http://em.21dtv.com/songs/60082232.mkv +CHARLIE MARS-let the meter run,http://em.21dtv.com/songs/60073498.mkv +4ANDA-listen to my heart,http://em.21dtv.com/songs/60003426.mkv +潘秀琼-两条路上(演唱会),http://em.21dtv.com/songs/60076434.mkv +张伟文+吕珊-两条路上,http://em.21dtv.com/songs/60027301.mkv +叶瑗菱-两条路上,http://em.21dtv.com/songs/60027300.mkv +佚名-let this love begin,http://em.21dtv.com/songs/60003348.mkv +LAWSON-learn to love again,http://em.21dtv.com/songs/60073487.mkv +晓依-蓝天骄子,http://em.21dtv.com/songs/60085348.mkv +唐大聪-凉亭嗟叹,http://em.21dtv.com/songs/60109232.mkv +望海高歌-兰亭旧梦,http://em.21dtv.com/songs/60113589.mkv +张军-临潼绝恋,http://em.21dtv.com/songs/60117717.mkv +蓝奕邦-蓝田金婚,http://em.21dtv.com/songs/60105333.mkv +轩大少爷-龙腾酒城,http://em.21dtv.com/songs/60132941.mkv +庄学忠-楼台会之,http://em.21dtv.com/songs/60087760.mkv +张也-龙腾虎跃,http://em.21dtv.com/songs/60027840.mkv +索朗扎西-聆听故乡,http://em.21dtv.com/songs/60072159.mkv +温拿乐队-乐坛风云,http://em.21dtv.com/songs/60026466.mkv +费玉清-蓝天长在,http://em.21dtv.com/songs/60026131.mkv +黄乙玲-露台春梦,http://em.21dtv.com/songs/60027973.mkv +佚名-蓝天白云,http://em.21dtv.com/songs/60026125.mkv +李茂山-蓝天白云,http://em.21dtv.com/songs/60026124.mkv +群星-let there be music,http://em.21dtv.com/songs/60060853.mkv +张洁-聆听百合,http://em.21dtv.com/songs/60115157.mkv +CELINE DION-lets talk about love,http://em.21dtv.com/songs/60003380.mkv +佚名-lets talk about it,http://em.21dtv.com/songs/60003379.mkv +卓依婷-离水之鱼,http://em.21dtv.com/songs/60026786.mkv +甲子蕙-拢随在你(无原唱),http://em.21dtv.com/songs/60027871.mkv +李珊-蓝水之梦,http://em.21dtv.com/songs/60083250.mkv +达珍-拉萨之恋,http://em.21dtv.com/songs/60083241.mkv +龙千玉-来生再来,http://em.21dtv.com/songs/60078107.mkv +真真-蓝色之恋,http://em.21dtv.com/songs/60072126.mkv +晃儿+墨明棋妙-临水照花,http://em.21dtv.com/songs/60094135.mkv +张鹤-绿色中国,http://em.21dtv.com/songs/60105886.mkv +金婷婷+阎维文-绿色中国,http://em.21dtv.com/songs/60070893.mkv +齐栾-乱世长安,http://em.21dtv.com/songs/60101585.mkv +苏勒亚其其格-拉萨夜雨,http://em.21dtv.com/songs/60120878.mkv +余天龙-临时演员,http://em.21dtv.com/songs/60118338.mkv +韩磊+游子组合-乱世烟雨,http://em.21dtv.com/songs/60108146.mkv +游子组合-乱世烟雨,http://em.21dtv.com/songs/60107877.mkv +王义-绿色语言,http://em.21dtv.com/songs/60105238.mkv +张琳-洛水依依,http://em.21dtv.com/songs/60097363.mkv +傅振辉+黄思婷-露水鸳鸯,http://em.21dtv.com/songs/60095457.mkv +唐从圣-临时演员,http://em.21dtv.com/songs/60093791.mkv +许廷铿-临时演员(演唱会),http://em.21dtv.com/songs/60076447.mkv +黄渤-临时演员,http://em.21dtv.com/songs/60061374.mkv +苏有朋-临时演员,http://em.21dtv.com/songs/60027401.mkv +大嘴巴-临时演员,http://em.21dtv.com/songs/60027400.mkv +张国荣-蓝色忧郁,http://em.21dtv.com/songs/60026114.mkv +张国荣-蓝色忧郁(演唱会),http://em.21dtv.com/songs/60026113.mkv +梅育秸-蓝水英雄,http://em.21dtv.com/songs/60125817.mkv +周厚光-乱世英雄,http://em.21dtv.com/songs/60028001.mkv +佚名-乱世英雄,http://em.21dtv.com/songs/60028000.mkv +屠洪纲-乱世英雄,http://em.21dtv.com/songs/60027999.mkv +甲子蕙-冷霜月娘,http://em.21dtv.com/songs/60026613.mkv +丁爽-六十一秒,http://em.21dtv.com/songs/60027785.mkv +孙楠-蓝色妖姬,http://em.21dtv.com/songs/60026112.mkv +ZAYIN-蓝色眼睛,http://em.21dtv.com/songs/60026111.mkv +范英楠-蓝色诱惑,http://em.21dtv.com/songs/60061347.mkv +梦琪-来生与共,http://em.21dtv.com/songs/60076311.mkv +朴一泽-蓝色月光,http://em.21dtv.com/songs/60067182.mkv +林宝-蓝色月光,http://em.21dtv.com/songs/60026116.mkv +梁少芯-洛水仙踪,http://em.21dtv.com/songs/60028047.mkv +山野-绿色希望,http://em.21dtv.com/songs/60076520.mkv +潘越云-来生相守,http://em.21dtv.com/songs/60025994.mkv +陈一凡-蓝色心情,http://em.21dtv.com/songs/60086665.mkv +洪卓立-蓝色星球(演唱会),http://em.21dtv.com/songs/60064451.mkv +刘捷-绿色心情,http://em.21dtv.com/songs/60061383.mkv +洪卓立-蓝色星球,http://em.21dtv.com/songs/60061345.mkv +韩雪-蓝色雪花,http://em.21dtv.com/songs/60026110.mkv +彭清-蓝瘦香菇,http://em.21dtv.com/songs/60129138.mkv +咪依鲁江-蓝瘦香菇,http://em.21dtv.com/songs/60128912.mkv +兴子-蓝瘦香菇,http://em.21dtv.com/songs/60127750.mkv +Mario-历书乌衣,http://em.21dtv.com/songs/60111633.mkv +沈文程-蓝色围巾(无原唱),http://em.21dtv.com/songs/60095762.mkv +葛云文-绿色天使,http://em.21dtv.com/songs/60100440.mkv +张凯瑜-老鼠拖猫,http://em.21dtv.com/songs/60026425.mkv +郑俊峰-蓝色天空,http://em.21dtv.com/songs/60126268.mkv +马龙-蓝色天空,http://em.21dtv.com/songs/60122284.mkv +苍井空-蓝色天空,http://em.21dtv.com/songs/60111371.mkv +湘海-蓝色天空,http://em.21dtv.com/songs/60026108.mkv +MAKIYO-蓝色天空,http://em.21dtv.com/songs/60026107.mkv +李丹阳-绿色童话,http://em.21dtv.com/songs/60028188.mkv +叶倩文+林子祥-乱世桃花,http://em.21dtv.com/songs/60027998.mkv +佚名-蓝色探戈,http://em.21dtv.com/songs/60026105.mkv +佚名-啦沙沙阳,http://em.21dtv.com/songs/60025931.mkv +吴李红-蓝色深情,http://em.21dtv.com/songs/60131259.mkv +佟铁鑫-蓝色深情,http://em.21dtv.com/songs/60109980.mkv +歌者森-蓝色水母,http://em.21dtv.com/songs/60101407.mkv +U KISS-330,http://em.21dtv.com/songs/60072852.mkv +贺一航-蓝色水晶,http://em.21dtv.com/songs/60135763.mkv +林子祥-零时十分,http://em.21dtv.com/songs/60027466.mkv +叶倩文-零时十分(演唱会),http://em.21dtv.com/songs/60027465.mkv +叶倩文+林子祥-零时十分(演唱会),http://em.21dtv.com/songs/60027464.mkv +佚名-蓝色时分,http://em.21dtv.com/songs/60026104.mkv +北原山猫-绿色隧道(无原唱),http://em.21dtv.com/songs/60028187.mkv +杨贵媚-锣声若响,http://em.21dtv.com/songs/60052326.mkv +佚名-锣声若响,http://em.21dtv.com/songs/60028040.mkv +余天-锣声若响,http://em.21dtv.com/songs/60016747.mkv +林良欢-露水情缘,http://em.21dtv.com/songs/60122911.mkv +郑伊健-老实情人,http://em.21dtv.com/songs/60026411.mkv +郑伊健-老实情人(演唱会),http://em.21dtv.com/songs/60026410.mkv +王江发+詹雅雯-来世情路,http://em.21dtv.com/songs/60026006.mkv +MR-零时起哄,http://em.21dtv.com/songs/60083307.mkv +韦忠秀-浪哨情歌,http://em.21dtv.com/songs/60124681.mkv +苏梦玫-老实情歌,http://em.21dtv.com/songs/60081489.mkv +佚名-凉山情歌,http://em.21dtv.com/songs/60027176.mkv +佚名-漓水情歌,http://em.21dtv.com/songs/60026828.mkv +庾澄庆-老实情歌,http://em.21dtv.com/songs/60026409.mkv +林忆莲-绿水清风,http://em.21dtv.com/songs/60092873.mkv +谭咏麟+李克勤-两丝情愁,http://em.21dtv.com/songs/60093199.mkv +汪明荃-绿水情波(演唱会),http://em.21dtv.com/songs/60028190.mkv +F.I.R-绿色拼图,http://em.21dtv.com/songs/60028186.mkv +黄莺莺-love song of kanting,http://em.21dtv.com/songs/60003593.mkv +楼宏章-临时女友,http://em.21dtv.com/songs/60067206.mkv +易秒英-绿色南山,http://em.21dtv.com/songs/60028185.mkv +顾莉雅-老师你好,http://em.21dtv.com/songs/60123369.mkv +李思琳-老师您好,http://em.21dtv.com/songs/60097217.mkv +曾静玟+胡海泉-流水年华,http://em.21dtv.com/songs/60094524.mkv +庾澄庆-流水年华,http://em.21dtv.com/songs/60027717.mkv +凤飞飞-流水年华,http://em.21dtv.com/songs/60027716.mkv +蔡琴-流水年华(HD演唱会),http://em.21dtv.com/songs/60027715.mkv +欣哲-蓝色梦想,http://em.21dtv.com/songs/60127144.mkv +李慧珍-蓝色魔力,http://em.21dtv.com/songs/60026100.mkv +郭富城-蓝色魅力,http://em.21dtv.com/songs/60026099.mkv +曾慧+邓志驹-洛水梦会(2)(戏曲),http://em.21dtv.com/songs/60092764.mkv +曾慧+邓志驹-洛水梦会(1)(戏曲),http://em.21dtv.com/songs/60092763.mkv +邓小龙-蓝色玫瑰,http://em.21dtv.com/songs/60083249.mkv +梁佳杰-绿色玫瑰,http://em.21dtv.com/songs/60081078.mkv +胡耀华-蓝色理想,http://em.21dtv.com/songs/60108826.mkv +河图-拉萨乱雪,http://em.21dtv.com/songs/60070857.mkv +萧正楠-楼上楼下,http://em.21dtv.com/songs/60027879.mkv +老狼-蓝色理想,http://em.21dtv.com/songs/60026098.mkv +杨千桦-劳斯莱斯,http://em.21dtv.com/songs/60092832.mkv +卜学亮+大小姐-老师老师,http://em.21dtv.com/songs/60026403.mkv +何韵诗-劳斯莱斯,http://em.21dtv.com/songs/60026314.mkv +何韵诗-劳斯莱斯(演唱会),http://em.21dtv.com/songs/60026313.mkv +何韵诗+周国贤-劳斯莱斯(演唱会),http://em.21dtv.com/songs/60026312.mkv +何宗龙-龙盛力量,http://em.21dtv.com/songs/60076498.mkv +阿龙-龙盛力量,http://em.21dtv.com/songs/60064491.mkv +尹光-烂衫烂裤(演唱会),http://em.21dtv.com/songs/60061349.mkv +丁思忖-淋湿了肩,http://em.21dtv.com/songs/60118290.mkv +罗晓然-恋上丽江,http://em.21dtv.com/songs/60101468.mkv +王莹-庐山恋歌,http://em.21dtv.com/songs/60100928.mkv +赵大格-鲁蛇来夫,http://em.21dtv.com/songs/60130771.mkv +容祖儿-零时零分,http://em.21dtv.com/songs/60027463.mkv +容祖儿-零时零分(演唱会),http://em.21dtv.com/songs/60027462.mkv +小树-疗伤客栈,http://em.21dtv.com/songs/60114504.mkv +张震岳-两手空空,http://em.21dtv.com/songs/60027295.mkv +周爱华-老鼠开会,http://em.21dtv.com/songs/60089745.mkv +谭俊芳-绿色军装,http://em.21dtv.com/songs/60123185.mkv +高登-龙生九子,http://em.21dtv.com/songs/60027836.mkv +军旅歌曲-绿色军衣,http://em.21dtv.com/songs/60090672.mkv +耿为华-绿色军衣,http://em.21dtv.com/songs/60028184.mkv +董冬-绿色家园,http://em.21dtv.com/songs/60028183.mkv +陈小春-乱世巨星,http://em.21dtv.com/songs/60027997.mkv +昊麟-来世今生,http://em.21dtv.com/songs/60118626.mkv +吕晶晶-来世今生,http://em.21dtv.com/songs/60090804.mkv +郭力行+吕晶晶-来世今生,http://em.21dtv.com/songs/60088782.mkv +张继聪-乱世佳人,http://em.21dtv.com/songs/60027996.mkv +TWINS-乱世佳人,http://em.21dtv.com/songs/60027995.mkv +赵丽颖+许志安-乱世俱灭,http://em.21dtv.com/songs/60127437.mkv +梁雁翎-路是寂寞,http://em.21dtv.com/songs/60092930.mkv +萨顶顶-蓝色骏马,http://em.21dtv.com/songs/60076317.mkv +黎明-蓝色街灯,http://em.21dtv.com/songs/60026097.mkv +邰正宵-蓝色街灯(演唱会),http://em.21dtv.com/songs/60026096.mkv +完玛三智-拉萨酒吧,http://em.21dtv.com/songs/60064446.mkv +根呷-拉萨酒吧,http://em.21dtv.com/songs/60025912.mkv +东京女子流-lolita strawberry in summe,http://em.21dtv.com/songs/60073526.mkv +黄琦雯-蓝色回忆,http://em.21dtv.com/songs/60106499.mkv +TWINS-零四好玩,http://em.21dtv.com/songs/60027468.mkv +巧千金-灵鼠happy年,http://em.21dtv.com/songs/60076449.mkv +郑智化-蕾丝花边,http://em.21dtv.com/songs/60026506.mkv +李玉刚-岭上公主,http://em.21dtv.com/songs/60070882.mkv +达明一派-溜水滚族(演唱会),http://em.21dtv.com/songs/60027504.mkv +罗力威-lets get wet(演唱会),http://em.21dtv.com/songs/60073502.mkv +林峰-lets get wet(演唱会),http://em.21dtv.com/songs/60062637.mkv +崔健-蓝色骨头,http://em.21dtv.com/songs/60121614.mkv +余零-乱世歌女,http://em.21dtv.com/songs/60130088.mkv +王森-拉萨姑娘,http://em.21dtv.com/songs/60088303.mkv +谢旦-拉萨姑娘,http://em.21dtv.com/songs/60025911.mkv +李宇春-lets get loud(演唱会),http://em.21dtv.com/songs/60071629.mkv +SUOER VC-罗素广场,http://em.21dtv.com/songs/60028037.mkv +果味VC-罗素广场,http://em.21dtv.com/songs/60009969.mkv +分钟女友-两三分钟,http://em.21dtv.com/songs/60134923.mkv +群星-蓝色飞扬,http://em.21dtv.com/songs/60091863.mkv +陈慧娴-连锁反应,http://em.21dtv.com/songs/60076406.mkv +胥拉齐-历史风云,http://em.21dtv.com/songs/60070876.mkv +瞿颖-连锁反应,http://em.21dtv.com/songs/60026941.mkv +林晓培-love song for you(无原唱),http://em.21dtv.com/songs/60003592.mkv +五月天-乱世浮生,http://em.21dtv.com/songs/60027994.mkv +王若琳-lets start from here,http://em.21dtv.com/songs/60003376.mkv +王若琳-lets start form here,http://em.21dtv.com/songs/60003375.mkv +王春柳-梨树逢春,http://em.21dtv.com/songs/60131661.mkv +周杰伦-蓝色风暴,http://em.21dtv.com/songs/60026094.mkv +林海峰-乱世儿女(演唱会),http://em.21dtv.com/songs/60027993.mkv +张杰-量身订做,http://em.21dtv.com/songs/60027347.mkv +张杰-量身订做(演唱会),http://em.21dtv.com/songs/60027346.mkv +程琳-绿色的雨,http://em.21dtv.com/songs/60091799.mkv +乔洋-离水的鱼,http://em.21dtv.com/songs/60076394.mkv +秦杨-离水的鱼,http://em.21dtv.com/songs/60026785.mkv +七字辈-蓝色的血,http://em.21dtv.com/songs/60097455.mkv +带泪的鱼-疗伤的糖,http://em.21dtv.com/songs/60121625.mkv +周婧-绿色的梦,http://em.21dtv.com/songs/60028177.mkv +张真-李四的梦,http://em.21dtv.com/songs/60026866.mkv +李茂山-蓝色的梦,http://em.21dtv.com/songs/60026086.mkv +蔡琴-蓝色的梦,http://em.21dtv.com/songs/60026085.mkv +佚名-蓝色的梦(无原唱),http://em.21dtv.com/songs/60026084.mkv +央金-芦山杜鹃,http://em.21dtv.com/songs/60080330.mkv +本兮-蓝色的海,http://em.21dtv.com/songs/60083248.mkv +盛希-绿色的歌,http://em.21dtv.com/songs/60131701.mkv +陈水林-蓝色的歌,http://em.21dtv.com/songs/60085346.mkv +康康-李四的歌,http://em.21dtv.com/songs/60026865.mkv +王杰-来生等待,http://em.21dtv.com/songs/60091711.mkv +杨斯壬-蓝色的爱,http://em.21dtv.com/songs/60081236.mkv +佚名-蓝色的爱(中四),http://em.21dtv.com/songs/60026074.mkv +陈汉-罗山初恋,http://em.21dtv.com/songs/60028035.mkv +欧得洋-六色彩虹,http://em.21dtv.com/songs/60027784.mkv +丁当-蓝色翅膀,http://em.21dtv.com/songs/60067181.mkv +张迈-绿色背影,http://em.21dtv.com/songs/60070892.mkv +邰正宵-蓝色贝壳,http://em.21dtv.com/songs/60026073.mkv +唐俪-临时爱人,http://em.21dtv.com/songs/60072155.mkv +萧亚轩-类似爱情,http://em.21dtv.com/songs/60026559.mkv +邱泽-蓝色爱情,http://em.21dtv.com/songs/60026072.mkv +刘德华-蓝色爱情,http://em.21dtv.com/songs/60026071.mkv +林一峰-冷热之间(演唱会),http://em.21dtv.com/songs/60026612.mkv +泽旺多吉-龙润之爱,http://em.21dtv.com/songs/60076497.mkv +金泰贤-泪如雨下,http://em.21dtv.com/songs/60106344.mkv +乔毓明-泪若雨下,http://em.21dtv.com/songs/60072136.mkv +F4-泪如雨下,http://em.21dtv.com/songs/60026548.mkv +海鸣威-老人与海,http://em.21dtv.com/songs/60026395.mkv +回声乐团-恋人絮语,http://em.21dtv.com/songs/60027134.mkv +杨培安-恋人无双,http://em.21dtv.com/songs/60096350.mkv +容祖儿-恋人未满,http://em.21dtv.com/songs/60062890.mkv +S.H.E-恋人未满,http://em.21dtv.com/songs/60027132.mkv +易欣-恋人味道,http://em.21dtv.com/songs/60027133.mkv +柯有伦+黄雅莉-两人世界,http://em.21dtv.com/songs/60102402.mkv +苏路+陈文山-两人世界,http://em.21dtv.com/songs/60088545.mkv +何润东+伊雪莉-两人世界,http://em.21dtv.com/songs/60027292.mkv +谢金燕-两人世界,http://em.21dtv.com/songs/60027291.mkv +林翠萍-落日时分,http://em.21dtv.com/songs/60028097.mkv +DISH乐队-懒人日记,http://em.21dtv.com/songs/60064453.mkv +苏慧伦-懒人日记,http://em.21dtv.com/songs/60026162.mkv +郭富城-浪人期望,http://em.21dtv.com/songs/60090265.mkv +罗嘉俊-狼人情话,http://em.21dtv.com/songs/60105294.mkv +刘德华-浪人情歌(HD),http://em.21dtv.com/songs/10012641.mkv +张宇-浪人情歌,http://em.21dtv.com/songs/60098344.mkv +伍佰+刘若英-浪人情歌,http://em.21dtv.com/songs/60097409.mkv +陶辚竹-烂人情歌,http://em.21dtv.com/songs/60070863.mkv +完玛三智-路人情歌,http://em.21dtv.com/songs/60064496.mkv +叶瑗菱-浪人情歌,http://em.21dtv.com/songs/60026254.mkv +伍佰-浪人情歌,http://em.21dtv.com/songs/60026253.mkv +刘德华-浪人情歌,http://em.21dtv.com/songs/60026252.mkv +苏永康-浪人情歌(演唱会),http://em.21dtv.com/songs/60026251.mkv +戴佩妮-懒人漫游,http://em.21dtv.com/songs/60083254.mkv +程楚煜-落日红叶,http://em.21dtv.com/songs/60100358.mkv +欧阳青-恋如花谢,http://em.21dtv.com/songs/60064475.mkv +陈珊妮-两人关系,http://em.21dtv.com/songs/60080908.mkv +七郎-浪人歌声,http://em.21dtv.com/songs/60026250.mkv +胡彦斌-恋人歌歌,http://em.21dtv.com/songs/60102640.mkv +王骞BOC+赵一豪+大包子-来日方长,http://em.21dtv.com/songs/60135576.mkv +薛之谦+黄龄-来日方长,http://em.21dtv.com/songs/60127371.mkv +糖兄妹-烈日当空(演唱会),http://em.21dtv.com/songs/60069571.mkv +任贤齐-猎人传说,http://em.21dtv.com/songs/60027376.mkv +叶俊岑-了然不散,http://em.21dtv.com/songs/60103962.mkv +高胜美-离情依依,http://em.21dtv.com/songs/60026778.mkv +胡梅-蓝桥幽梦,http://em.21dtv.com/songs/60080162.mkv +庄学忠-两情相约,http://em.21dtv.com/songs/60087747.mkv +庄学忠-两情相悦,http://em.21dtv.com/songs/60087746.mkv +庄学忠-俩情相悦,http://em.21dtv.com/songs/60027327.mkv +陈军委-两栖雄风,http://em.21dtv.com/songs/60061373.mkv +沈文程-来去台东,http://em.21dtv.com/songs/60025987.mkv +林姗-来去台东,http://em.21dtv.com/songs/60025986.mkv +兰天-冷秋思念,http://em.21dtv.com/songs/60097292.mkv +龙旭-龙情世海,http://em.21dtv.com/songs/60128651.mkv +沈文程-来去山顶,http://em.21dtv.com/songs/60025985.mkv +文千岁-郎情妾意(戏曲),http://em.21dtv.com/songs/60092749.mkv +刁寒-两全其美,http://em.21dtv.com/songs/60027287.mkv +玖壹壹+黄明志-来去趴踢,http://em.21dtv.com/songs/60123021.mkv +余天龙-来去艋舺,http://em.21dtv.com/songs/60076308.mkv +谢金燕-来去马西,http://em.21dtv.com/songs/60025982.mkv +何玫瑰-烈情玫瑰,http://em.21dtv.com/songs/60027370.mkv +冯晓泉-来去今生,http://em.21dtv.com/songs/60101930.mkv +翁立友-来去红尘,http://em.21dtv.com/songs/60025981.mkv +任静-拉琴的人,http://em.21dtv.com/songs/60025910.mkv +甄真-冷清的花,http://em.21dtv.com/songs/60026609.mkv +TWINS-零七奥运,http://em.21dtv.com/songs/60027459.mkv +游鸿明-冷却爱情,http://em.21dtv.com/songs/60026610.mkv +孙健康-老婆最美,http://em.21dtv.com/songs/60133561.mkv +孙健康-老婆最美,http://em.21dtv.com/songs/60112619.mkv +何杰-老婆之歌,http://em.21dtv.com/songs/60097218.mkv +崔子格+老猫-老婆最大,http://em.21dtv.com/songs/60064459.mkv +彝人制造-洛泼雅幽,http://em.21dtv.com/songs/60091170.mkv +刘若英-落跑新娘,http://em.21dtv.com/songs/60028093.mkv +云飞儿-老婆是天,http://em.21dtv.com/songs/60118312.mkv +云菲菲-老婆是天,http://em.21dtv.com/songs/60097219.mkv +群星-乐跑全城,http://em.21dtv.com/songs/60107119.mkv +SEARCHERS-love potion no 9,http://em.21dtv.com/songs/60003582.mkv +陈辉权-老婆靓汤,http://em.21dtv.com/songs/60099594.mkv +孔令奇-老派恋情,http://em.21dtv.com/songs/60085357.mkv +彭三-郎平郎平,http://em.21dtv.com/songs/60125551.mkv +群星-老炮联唱,http://em.21dtv.com/songs/60134129.mkv +张瀚元-老婆减肥,http://em.21dtv.com/songs/60068423.mkv +刘缘-老婆交待,http://em.21dtv.com/songs/60064458.mkv +徐誉滕-绿皮火车,http://em.21dtv.com/songs/60083320.mkv +刘总-老婆大人,http://em.21dtv.com/songs/60118389.mkv +赵齐-老婆大人,http://em.21dtv.com/songs/60105402.mkv +关健-老婆大人,http://em.21dtv.com/songs/60026377.mkv +佚名-lipstick on your collar,http://em.21dtv.com/songs/60003424.mkv +严艺丹-Love Is Coming Through,http://em.21dtv.com/songs/60096169.mkv +金宇宙-Love,http://em.21dtv.com/songs/60134348.mkv +Lana Del Rey-Love,http://em.21dtv.com/songs/60132095.mkv +王思远-Love,http://em.21dtv.com/songs/60130586.mkv +A2A-LOVE,http://em.21dtv.com/songs/60109794.mkv +陈零九+吴丹妮-LOVE,http://em.21dtv.com/songs/60105500.mkv +黄淑惠-love,http://em.21dtv.com/songs/60098959.mkv +NEIL DIAMOND-love on the rocks,http://em.21dtv.com/songs/60003580.mkv +EXO-M-let out the beast(演唱会),http://em.21dtv.com/songs/60082229.mkv +佚名-leader of the band,http://em.21dtv.com/songs/60003299.mkv +BRUNO MARS-locked out of heaven,http://em.21dtv.com/songs/60070365.mkv +佚名-love of my love,http://em.21dtv.com/songs/60003577.mkv +周华健+ANN LOUIS-love of my life,http://em.21dtv.com/songs/60003576.mkv +SNOOP DOGG-life of da party,http://em.21dtv.com/songs/60063657.mkv +BON JOVI-living on a prayer,http://em.21dtv.com/songs/60066676.mkv +BON JOVI-livinon a prayer,http://em.21dtv.com/songs/60003448.mkv +冷漠+樊少华-冷暖自知,http://em.21dtv.com/songs/60086670.mkv +樊少华-冷暖自知,http://em.21dtv.com/songs/60076372.mkv +方力申+李彩桦+陈晓东-两男一女,http://em.21dtv.com/songs/60027283.mkv +周振锐+思婷-两年同学,http://em.21dtv.com/songs/60110936.mkv +陈浩德-冷暖人生(演唱会),http://em.21dtv.com/songs/60076371.mkv +贾斯文-老男情歌,http://em.21dtv.com/songs/60116262.mkv +古巨基-来年来日,http://em.21dtv.com/songs/60025980.mkv +佚名-朗尼路加,http://em.21dtv.com/songs/60026207.mkv +梁咏琪-落难皇后,http://em.21dtv.com/songs/60092896.mkv +佚名-loves not for me,http://em.21dtv.com/songs/60003642.mkv +男声-loves not for me,http://em.21dtv.com/songs/60003641.mkv +简迷离-落幕之舞,http://em.21dtv.com/songs/60028092.mkv +信-黎明之前,http://em.21dtv.com/songs/60061363.mkv +迪子-萝寐之旅,http://em.21dtv.com/songs/60076524.mkv +郭媛媛-落玫之恋,http://em.21dtv.com/songs/60061387.mkv +陈文清-浪漫走过(演唱会),http://em.21dtv.com/songs/60069554.mkv +刘浩龙-烂命鸳鸯,http://em.21dtv.com/songs/60068415.mkv +王又萱-浪漫一生,http://em.21dtv.com/songs/60135539.mkv +刘璇-罗马阳光,http://em.21dtv.com/songs/60028026.mkv +欧霖-落寞小镇,http://em.21dtv.com/songs/60119746.mkv +牙牙乐-浪漫夏夜,http://em.21dtv.com/songs/60135526.mkv +醉美-浪漫夕阳,http://em.21dtv.com/songs/60126290.mkv +林俊杰-浪漫血液,http://em.21dtv.com/songs/60108614.mkv +林俊杰-浪漫血液,http://em.21dtv.com/songs/60107826.mkv +梁静茹-浪漫心愿,http://em.21dtv.com/songs/60026249.mkv +心莲-浪漫遐想,http://em.21dtv.com/songs/60098387.mkv +佚名-let me try again,http://em.21dtv.com/songs/60003346.mkv +鲁珺琦-浪漫随行,http://em.21dtv.com/songs/60026247.mkv +曾心梅-拢嘛是你,http://em.21dtv.com/songs/60027864.mkv +周杰伦-浪漫手机,http://em.21dtv.com/songs/60026245.mkv +胡杏儿-浪漫世纪,http://em.21dtv.com/songs/60026244.mkv +王进-龙鸣狮吼,http://em.21dtv.com/songs/60132745.mkv +吴浩康-浪漫时代,http://em.21dtv.com/songs/60026243.mkv +三木科-落暮沙贝,http://em.21dtv.com/songs/60090469.mkv +连诗雅-浪漫前夕,http://em.21dtv.com/songs/60108906.mkv +林久登+徐紫淇-浪漫情话,http://em.21dtv.com/songs/60101396.mkv +肥猫大队长+刘巧男-浪漫情歌,http://em.21dtv.com/songs/60083259.mkv +陈慧娴-love me once again,http://em.21dtv.com/songs/60003566.mkv +陈慧娴-love me once again(演唱会),http://em.21dtv.com/songs/60003565.mkv +李唯枫-LET ME LOVE YOU,http://em.21dtv.com/songs/60093771.mkv +NE-YO-let me love you,http://em.21dtv.com/songs/60071626.mkv +MARIO-let me love you,http://em.21dtv.com/songs/60003344.mkv +萧亚轩-浪漫来袭,http://em.21dtv.com/songs/60105326.mkv +张卫健-流氓伉俪,http://em.21dtv.com/songs/60076474.mkv +王健-浪漫惊喜,http://em.21dtv.com/songs/60076325.mkv +KENT-浪漫惊喜,http://em.21dtv.com/songs/60062083.mkv +赵学而-浪漫就是,http://em.21dtv.com/songs/60026240.mkv +胡彦斌-罗马假期,http://em.21dtv.com/songs/60028025.mkv +古巨基-罗马假期,http://em.21dtv.com/songs/60028024.mkv +古巨基-罗马假期(演唱会),http://em.21dtv.com/songs/60028023.mkv +张秀卿-辣妹驾到,http://em.21dtv.com/songs/60070858.mkv +周丽淇-良民皆保,http://em.21dtv.com/songs/60027166.mkv +李玟-连绵怀念,http://em.21dtv.com/songs/60092811.mkv +邓芷茵-love me hate me,http://em.21dtv.com/songs/60003563.mkv +杜元竣-流梦后记,http://em.21dtv.com/songs/60086681.mkv +杨千嬅-柳媚花娇,http://em.21dtv.com/songs/60027762.mkv +朱立峰-落寞红尘,http://em.21dtv.com/songs/60083330.mkv +佚名-罗莽湖边,http://em.21dtv.com/songs/60028029.mkv +SNH48-浪漫关系,http://em.21dtv.com/songs/60127679.mkv +梁雁翎-浪漫故事,http://em.21dtv.com/songs/60026237.mkv +佚名-let me go lover,http://em.21dtv.com/songs/60003342.mkv +SOULJA BOY-let me get em,http://em.21dtv.com/songs/60073496.mkv +DAVID GUETTA-let me get em,http://em.21dtv.com/songs/60063654.mkv +LYN-love me for me,http://em.21dtv.com/songs/60065639.mkv +陈僖仪-let me find love(演唱会),http://em.21dtv.com/songs/60073494.mkv +王菲-浪漫风暴(演唱会),http://em.21dtv.com/songs/60026236.mkv +TWINS-let me fly away,http://em.21dtv.com/songs/60066672.mkv +佚名-let me entertain you,http://em.21dtv.com/songs/60003340.mkv +洋洋+非同一般-浪漫的雨,http://em.21dtv.com/songs/60107027.mkv +董事长乐团-拢袂歹势(无原唱),http://em.21dtv.com/songs/60027865.mkv +梁汉文-罗曼蒂克,http://em.21dtv.com/songs/60028027.mkv +小峰峰-浪漫冬季,http://em.21dtv.com/songs/60026235.mkv +罗百吉-浪漫电波,http://em.21dtv.com/songs/60026234.mkv +黄思婷-黎明出现,http://em.21dtv.com/songs/60026836.mkv +音乐走廊+歌一生-浪漫传说,http://em.21dtv.com/songs/60067183.mkv +囚鸟-浪漫传说,http://em.21dtv.com/songs/60066106.mkv +中国力量+杨光-浪漫传奇,http://em.21dtv.com/songs/60026232.mkv +佚名-let me be there(无原唱),http://em.21dtv.com/songs/60003336.mkv +3 DOORS DOWN-let me be myself,http://em.21dtv.com/songs/60063653.mkv +RILO KILEY-let me back in,http://em.21dtv.com/songs/60082228.mkv +棠星琪-浪漫爱情,http://em.21dtv.com/songs/60135464.mkv +蔡小芳-浪漫爱情,http://em.21dtv.com/songs/60085353.mkv +周明辉-浪漫爱情,http://em.21dtv.com/songs/60026231.mkv +西域胡杨-楼兰追月,http://em.21dtv.com/songs/60123159.mkv +苏慧伦-恋恋真言,http://em.21dtv.com/songs/60027103.mkv +黄勇深+叶筱萱-泪落之夏,http://em.21dtv.com/songs/60069557.mkv +带泪的鱼+琴允寞-冷冷再见,http://em.21dtv.com/songs/60099991.mkv +眉佳-邻里之间,http://em.21dtv.com/songs/60027384.mkv +佚名-流浪之歌,http://em.21dtv.com/songs/60027688.mkv +洪荣宏-流浪之歌,http://em.21dtv.com/songs/60027687.mkv +陈雷-流浪之歌,http://em.21dtv.com/songs/60027686.mkv +罗宾-落泪以前,http://em.21dtv.com/songs/60083329.mkv +陈晓东-乱了星座,http://em.21dtv.com/songs/60062278.mkv +董贞-两两相忘,http://em.21dtv.com/songs/60076431.mkv +辛晓琪-俩俩相忘,http://em.21dtv.com/songs/60027325.mkv +杨千嬅-落力向上,http://em.21dtv.com/songs/60028086.mkv +香巴拉组合-拉里学么,http://em.21dtv.com/songs/60088973.mkv +陈星+吕飞-流浪兄弟,http://em.21dtv.com/songs/60027680.mkv +陈粒-历历万乡,http://em.21dtv.com/songs/60112362.mkv +兰旗儿-来来往往,http://em.21dtv.com/songs/60067178.mkv +王建杰-流浪天涯,http://em.21dtv.com/songs/60027676.mkv +金智娟-落泪天使(无原唱),http://em.21dtv.com/songs/60028085.mkv +董晓峰-吕梁铁骨,http://em.21dtv.com/songs/60115356.mkv +谢知言-流浪生涯,http://em.21dtv.com/songs/60027674.mkv +屠洪纲-流浪思乡,http://em.21dtv.com/songs/60091002.mkv +黄莺莺-榴梿树下,http://em.21dtv.com/songs/60027757.mkv +佚名-榴莲树下,http://em.21dtv.com/songs/60027755.mkv +王力宏-流泪手心,http://em.21dtv.com/songs/60027693.mkv +竟芳-利利是是,http://em.21dtv.com/songs/60118824.mkv +张敬轩-老了十岁,http://em.21dtv.com/songs/60026357.mkv +张敬轩-老了十岁(演唱会),http://em.21dtv.com/songs/60026356.mkv +周杰伦+杨瑞代-流浪诗人(演唱会),http://em.21dtv.com/songs/60027675.mkv +韩红-浪拉山情,http://em.21dtv.com/songs/60026229.mkv +TWINS+AT17-la la世界(演唱会),http://em.21dtv.com/songs/60003246.mkv +BOY'Z-la la世界(演唱会),http://em.21dtv.com/songs/60003245.mkv +BOY'Z-la la 世界(演唱会),http://em.21dtv.com/songs/60003243.mkv +黄凯芹+余剑明-流离所爱(演唱会),http://em.21dtv.com/songs/60027702.mkv +黄凯芹+黎瑞恩-流离所爱(演唱会),http://em.21dtv.com/songs/60027701.mkv +杜龙-礼乐人生(演唱会),http://em.21dtv.com/songs/60076396.mkv +许景淳-流离人生,http://em.21dtv.com/songs/60027700.mkv +ENERGY-另类人生,http://em.21dtv.com/songs/60027480.mkv +连诗雅-琉璃若梦,http://em.21dtv.com/songs/60108907.mkv +周亮-亮亮日记,http://em.21dtv.com/songs/60027345.mkv +闫凤梅-绿浪如海,http://em.21dtv.com/songs/60106360.mkv +佚名-恋恋情深,http://em.21dtv.com/songs/60027100.mkv +黄名伟-恋恋情深,http://em.21dtv.com/songs/60027099.mkv +关心妍-乱了情人,http://em.21dtv.com/songs/60027990.mkv +王进-来龙去脉,http://em.21dtv.com/songs/60134010.mkv +孟杨+曾春年-恋恋情歌,http://em.21dtv.com/songs/60117667.mkv +林鸿阳-流浪情歌,http://em.21dtv.com/songs/60027671.mkv +张卫健-榴莲飘香,http://em.21dtv.com/songs/60092572.mkv +李香琴-榴莲飘香(演唱会),http://em.21dtv.com/songs/60061376.mkv +张卫健-榴琏飘香,http://em.21dtv.com/songs/60027758.mkv +张卫健-榴梿飘香,http://em.21dtv.com/songs/60027756.mkv +顾建华-泪流满面,http://em.21dtv.com/songs/60026544.mkv +姚燕-兰陵美酒,http://em.21dtv.com/songs/60130234.mkv +曾静玟-拉拉拉山,http://em.21dtv.com/songs/60064445.mkv +萧全-辣辣辣辣,http://em.21dtv.com/songs/60102684.mkv +周子零-累了累了,http://em.21dtv.com/songs/60087581.mkv +梁静茹-la la la la,http://em.21dtv.com/songs/60003232.mkv +许志刚-楼兰家园,http://em.21dtv.com/songs/60126182.mkv +敏敏-楼兰家园,http://em.21dtv.com/songs/60105928.mkv +孙晓雨-流落街头,http://em.21dtv.com/songs/60072162.mkv +杨林-恋恋今生,http://em.21dtv.com/songs/60091402.mkv +网络歌手-恋恋今生,http://em.21dtv.com/songs/60088413.mkv +王识贤-两轮轿车,http://em.21dtv.com/songs/60027282.mkv +林嘉欣-六楼后座,http://em.21dtv.com/songs/60027783.mkv +陈宇浩-留恋回忆,http://em.21dtv.com/songs/60072165.mkv +陈楚生+SPY.C-来来回回,http://em.21dtv.com/songs/60131950.mkv +张学友-来来回回,http://em.21dtv.com/songs/60025978.mkv +张学友-来来回回(演唱会),http://em.21dtv.com/songs/60025977.mkv +蔡国权-亮了红灯,http://em.21dtv.com/songs/60093121.mkv +谭咏麟-亮了红灯(演唱会),http://em.21dtv.com/songs/60027343.mkv +李蕙敏-亮了红灯(演唱会),http://em.21dtv.com/songs/60027342.mkv +罗逻圣-流浪歌手,http://em.21dtv.com/songs/60117974.mkv +俞静-楼兰姑娘,http://em.21dtv.com/songs/60027876.mkv +张柏芝-乱了感觉,http://em.21dtv.com/songs/60027989.mkv +林志颖-流浪风中,http://em.21dtv.com/songs/60027657.mkv +王紫伊-恋恋芳踪,http://em.21dtv.com/songs/60027091.mkv +佚名-lets live for today,http://em.21dtv.com/songs/60003370.mkv +老狼-恋恋风尘,http://em.21dtv.com/songs/60027094.mkv +陈慧娴-恋恋风尘,http://em.21dtv.com/songs/60027093.mkv +陈慧娴-恋恋风尘(演唱会),http://em.21dtv.com/songs/60027092.mkv +田希仁-辣辣的心,http://em.21dtv.com/songs/60090097.mkv +郑晓飞-流浪的心,http://em.21dtv.com/songs/60076469.mkv +王杰-流浪的心,http://em.21dtv.com/songs/60027650.mkv +黄品源-流浪的心,http://em.21dtv.com/songs/60027649.mkv +林俊彦-流浪的心(无原唱),http://em.21dtv.com/songs/60027648.mkv +王建杰-冷冷的心,http://em.21dtv.com/songs/60026604.mkv +佚名-冷冷的夏,http://em.21dtv.com/songs/60026602.mkv +麦子杰-冷冷的夏,http://em.21dtv.com/songs/60026601.mkv +金元萱-辣辣的心,http://em.21dtv.com/songs/60025936.mkv +费翔-溜溜的她,http://em.21dtv.com/songs/60076462.mkv +孙燕姿-流浪地图,http://em.21dtv.com/songs/60027655.mkv +佚名-溜溜的她,http://em.21dtv.com/songs/60027503.mkv +林心如+崔永元-溜溜的她(演唱会),http://em.21dtv.com/songs/60027502.mkv +佚名-溜溜的她(恰恰),http://em.21dtv.com/songs/60027501.mkv +叶世荣-蓝蓝的天,http://em.21dtv.com/songs/60026054.mkv +AGP TRINITY-六六大顺,http://em.21dtv.com/songs/60111574.mkv +唐三彩组合-六六大顺,http://em.21dtv.com/songs/60110947.mkv +王建杰-流浪的人,http://em.21dtv.com/songs/60107071.mkv +佚名-流浪的人,http://em.21dtv.com/songs/60027645.mkv +杨俊华-流浪的人,http://em.21dtv.com/songs/60027644.mkv +林翠萍-流浪的人,http://em.21dtv.com/songs/60027643.mkv +郭桂彬-流浪的人,http://em.21dtv.com/songs/60027642.mkv +甄妮-冷冷的秋(演唱会),http://em.21dtv.com/songs/60026600.mkv +张咪+南征北战-蓝蓝的梦,http://em.21dtv.com/songs/60112662.mkv +连锦雄-冷冷的火,http://em.21dtv.com/songs/60069560.mkv +江东-流浪的狗,http://em.21dtv.com/songs/60133914.mkv +罗力威-流泪的歌,http://em.21dtv.com/songs/60123066.mkv +刘尊+西单女孩-老来的伴,http://em.21dtv.com/songs/60099800.mkv +黎明诗-流离的爱,http://em.21dtv.com/songs/60027699.mkv +佚名-流浪的爱(无原唱),http://em.21dtv.com/songs/60027626.mkv +王璐岢-留恋从前,http://em.21dtv.com/songs/60093670.mkv +郑秀文-拉拉扯扯,http://em.21dtv.com/songs/60025903.mkv +萧贺硕-泪流不止,http://em.21dtv.com/songs/60083277.mkv +陈慧琳-泪流不止,http://em.21dtv.com/songs/60076365.mkv +张赫宣-恋恋不休,http://em.21dtv.com/songs/60081825.mkv +芦伟-恋恋不忘,http://em.21dtv.com/songs/60129526.mkv +袁玉峰-恋恋不忘,http://em.21dtv.com/songs/60110508.mkv +欧阳曹亮-恋恋不忘,http://em.21dtv.com/songs/60106050.mkv +杨哲-恋恋不舍,http://em.21dtv.com/songs/60113664.mkv +林子祥-流离半世,http://em.21dtv.com/songs/60027698.mkv +易齐-恋恋不舍(无原唱),http://em.21dtv.com/songs/60027090.mkv +宋健-姥姥别老,http://em.21dtv.com/songs/60113415.mkv +林姗+李明洋-恋恋安平,http://em.21dtv.com/songs/60069566.mkv +严宽-恋了爱了,http://em.21dtv.com/songs/60076416.mkv +周传雄-离开昨天,http://em.21dtv.com/songs/60076393.mkv +徐浩-离开自己,http://em.21dtv.com/songs/60115182.mkv +徐环-离开之后,http://em.21dtv.com/songs/60129145.mkv +荀相侨-离开以后,http://em.21dtv.com/songs/60135682.mkv +飞燕-离开以后,http://em.21dtv.com/songs/60131986.mkv +梁一贞-离开以后,http://em.21dtv.com/songs/60128135.mkv +张道儒-离开以后,http://em.21dtv.com/songs/60097406.mkv +张学友-离开以后,http://em.21dtv.com/songs/60026770.mkv +泳儿-离开以后,http://em.21dtv.com/songs/60026769.mkv +林丽-离开以后,http://em.21dtv.com/songs/60026768.mkv +丁浩然-离开以后,http://em.21dtv.com/songs/60026767.mkv +卓煜-两棵橡树,http://em.21dtv.com/songs/60089700.mkv +水木年华-冷酷仙境,http://em.21dtv.com/songs/60026596.mkv +黄贯中-离开我吧,http://em.21dtv.com/songs/60026763.mkv +刘莉莉-李逵探母,http://em.21dtv.com/songs/60026861.mkv +庞龙-啷咯情歌,http://em.21dtv.com/songs/60026177.mkv +张艾嘉-离开离去,http://em.21dtv.com/songs/60026736.mkv +佚名-离开离去,http://em.21dtv.com/songs/60026735.mkv +林一峰-离开古城(演唱会),http://em.21dtv.com/songs/60026728.mkv +赵凯磊-离开大树,http://em.21dtv.com/songs/60129635.mkv +羽泉-冷酷到底,http://em.21dtv.com/songs/60026595.mkv +王心凌-立刻出发,http://em.21dtv.com/songs/60135554.mkv +王心凌-立刻出发,http://em.21dtv.com/songs/60076403.mkv +范逸臣-离开悲伤,http://em.21dtv.com/songs/60026723.mkv +蒋敦豪-离开北京,http://em.21dtv.com/songs/60127360.mkv +洪百慧-灵静自转,http://em.21dtv.com/songs/60135501.mkv +姚贝娜-丽江之恋,http://em.21dtv.com/songs/60112612.mkv +大庆小芳-丽江之歌,http://em.21dtv.com/songs/60112603.mkv +闫泽-龙举云兴,http://em.21dtv.com/songs/60135869.mkv +胡夏-离家以后,http://em.21dtv.com/songs/60083287.mkv +吴香伦-廉卷西风(演唱会),http://em.21dtv.com/songs/60076407.mkv +方伊琪-廉卷西风(演唱会),http://em.21dtv.com/songs/60026963.mkv +方伊琪-帘卷西风(演唱会),http://em.21dtv.com/songs/60026947.mkv +陈伟霆-乐极忘情,http://em.21dtv.com/songs/60115483.mkv +徐洪刚-浪迹天涯,http://em.21dtv.com/songs/60081215.mkv +张明敏-浪迹天涯,http://em.21dtv.com/songs/60026227.mkv +佚名-浪迹天涯,http://em.21dtv.com/songs/60026226.mkv +陈淑桦-浪迹天涯,http://em.21dtv.com/songs/60026225.mkv +BOSS-浪迹天涯,http://em.21dtv.com/songs/60026224.mkv +卓依婷-浪迹天崖,http://em.21dtv.com/songs/60026223.mkv +许志安-垃圾天堂(演唱会),http://em.21dtv.com/songs/60025894.mkv +周传雄-流金岁月,http://em.21dtv.com/songs/60027614.mkv +叶倩文-流金岁月,http://em.21dtv.com/songs/60027613.mkv +陈松伶-流金岁月,http://em.21dtv.com/songs/60027612.mkv +迟云-老家是根,http://em.21dtv.com/songs/60066108.mkv +陈小春-零九三二,http://em.21dtv.com/songs/60027457.mkv +曾心梅-冷井情深,http://em.21dtv.com/songs/60026587.mkv +蔡幸娟-冷井情深,http://em.21dtv.com/songs/60026586.mkv +林良乐-冷井情深(无原唱),http://em.21dtv.com/songs/60026585.mkv +王绎龙-邻家美眉,http://em.21dtv.com/songs/60066123.mkv +肖阳-邻家妹妹,http://em.21dtv.com/songs/60027381.mkv +罗嘉良-罗家良品,http://em.21dtv.com/songs/60028020.mkv +张冬玲-丽江丽江,http://em.21dtv.com/songs/60105014.mkv +谢东-离家回家,http://em.21dtv.com/songs/60026707.mkv +苍茫-邻家伙伴(演唱会),http://em.21dtv.com/songs/60027380.mkv +冯乐永+曾小敏-李甲归舟(戏曲),http://em.21dtv.com/songs/60092336.mkv +JKAI+DIXON+MC JROSS-垃圾歌曲,http://em.21dtv.com/songs/60072123.mkv +彝海神韵-丽江姑娘,http://em.21dtv.com/songs/60120548.mkv +谢震东-浪尖风口,http://em.21dtv.com/songs/60134233.mkv +物乐团-垃圾风暴,http://em.21dtv.com/songs/60025893.mkv +浩东-离家的人,http://em.21dtv.com/songs/60107033.mkv +齐秦-离家的路,http://em.21dtv.com/songs/60026705.mkv +赵钶-廉价的爱,http://em.21dtv.com/songs/60107241.mkv +卫兰-离家出走,http://em.21dtv.com/songs/60026698.mkv +丁当-离家出走,http://em.21dtv.com/songs/60026697.mkv +RAYA-离家出走,http://em.21dtv.com/songs/60026696.mkv +吕方-历久常新,http://em.21dtv.com/songs/60026906.mkv +巩汉林+金珠+赵丽蓉-老将出马,http://em.21dtv.com/songs/60089836.mkv +吴杨雨-蜡炬成灰,http://em.21dtv.com/songs/60025933.mkv +南拳妈妈-离家不远,http://em.21dtv.com/songs/60026695.mkv +井恩然-累觉不爱,http://em.21dtv.com/songs/60103872.mkv +李亮超+Jelly筱洋-累觉不爱,http://em.21dtv.com/songs/60098443.mkv +刘菲-廉价爱情,http://em.21dtv.com/songs/60026961.mkv +REDLIGHT-lost in your love,http://em.21dtv.com/songs/60073538.mkv +DEBBIE GIBSON-lost in your eyes,http://em.21dtv.com/songs/60003503.mkv +KANYE WEST-lost in the world,http://em.21dtv.com/songs/60067933.mkv +阿政+黄倩宜-love into the sky(无原唱),http://em.21dtv.com/songs/60003529.mkv +佚名-laughter in the rain,http://em.21dtv.com/songs/60003290.mkv +EXILE ATSUSHI-living in the moment,http://em.21dtv.com/songs/60073524.mkv +LINKIN PARK-lost in the echo,http://em.21dtv.com/songs/60073537.mkv +USHER-love in this club,http://em.21dtv.com/songs/60003528.mkv +方皓玟-life is so beautiful,http://em.21dtv.com/songs/60073508.mkv +周子扬-life is so boring,http://em.21dtv.com/songs/60003400.mkv +丁于-Lisa,http://em.21dtv.com/songs/60131125.mkv +狮子合唱团-Lion,http://em.21dtv.com/songs/60132700.mkv +狮子合唱团-LION,http://em.21dtv.com/songs/60127187.mkv +KELLY ROWLAND-lay it on me,http://em.21dtv.com/songs/60062081.mkv +K ONE-look into my eyes,http://em.21dtv.com/songs/60003485.mkv +胡彦斌-lisa i love you,http://em.21dtv.com/songs/60065632.mkv +佚名-like i love you,http://em.21dtv.com/songs/60003412.mkv +JUSTIN TIMBERLAKE-like i love you,http://em.21dtv.com/songs/60003411.mkv +AMY GRANT-like i love you,http://em.21dtv.com/songs/60003410.mkv +LAUREN ALAINA-Like My Mother Does,http://em.21dtv.com/songs/60099675.mkv +金佑洙-Like,http://em.21dtv.com/songs/60108933.mkv +TY+健志-LIHO,http://em.21dtv.com/songs/60133307.mkv +SARAH CONNOR-love is color blind,http://em.21dtv.com/songs/60084739.mkv +佚名-let it be me,http://em.21dtv.com/songs/60003323.mkv +FRANK SINATRA-lady is a tramp,http://em.21dtv.com/songs/60003257.mkv +平井坚-life is another story,http://em.21dtv.com/songs/60003398.mkv +佚名-life is a rollergoaster,http://em.21dtv.com/songs/60003397.mkv +BOYZONE-life is a rollercoaster,http://em.21dtv.com/songs/60003396.mkv +FUNKY MONKEY BABYS-life is a party,http://em.21dtv.com/songs/60073507.mkv +BOYZONE-love is a hurricane,http://em.21dtv.com/songs/60060864.mkv +ACE OF BASE-life is a flower,http://em.21dtv.com/songs/60003395.mkv +钟舒漫-love is a car,http://em.21dtv.com/songs/60073550.mkv +周怡然-梨花之约,http://em.21dtv.com/songs/60072141.mkv +卢巧音-绿化作用,http://em.21dtv.com/songs/60028171.mkv +邵兵-落花之夜,http://em.21dtv.com/songs/60028081.mkv +湘海-灵魂之声,http://em.21dtv.com/songs/60027421.mkv +苏寒-落花之期,http://em.21dtv.com/songs/60113998.mkv +梅花三姐妹-流行组曲,http://em.21dtv.com/songs/60095715.mkv +CRITTY-轮回之境,http://em.21dtv.com/songs/60113143.mkv +林俊杰-流行主教,http://em.21dtv.com/songs/60088090.mkv +雷佳-领航中国,http://em.21dtv.com/songs/60027474.mkv +王杰-灵魂有罪,http://em.21dtv.com/songs/60027420.mkv +杜娟-落花有意(无原唱),http://em.21dtv.com/songs/60095638.mkv +带泪的鱼-拉黑隐身,http://em.21dtv.com/songs/60097306.mkv +张敬轩-灵魂相认,http://em.21dtv.com/songs/60105846.mkv +宋丹丹-懒汉相亲,http://em.21dtv.com/songs/60089811.mkv +吕继宏-烈火雄风,http://em.21dtv.com/songs/60087547.mkv +TACKE竹桑-芦花未尽,http://em.21dtv.com/songs/60083316.mkv +徐鑫+刘竹清-灵魂舞步,http://em.21dtv.com/songs/60116840.mkv +小东北-烈火岁月,http://em.21dtv.com/songs/60133589.mkv +魏晨-烈火神盾,http://em.21dtv.com/songs/60127613.mkv +张鸣利-裸婚时代,http://em.21dtv.com/songs/60083326.mkv +阿峻-落红色调,http://em.21dtv.com/songs/60064500.mkv +郑欣宜-恋毁情亡,http://em.21dtv.com/songs/60097405.mkv +马雨贤-零花钱5,http://em.21dtv.com/songs/60088987.mkv +苗苗-轮回情歌,http://em.21dtv.com/songs/60096475.mkv +佚名-烈火青春,http://em.21dtv.com/songs/60027364.mkv +李猛-离婚女人,http://em.21dtv.com/songs/60081055.mkv +宇然-looking here my baby,http://em.21dtv.com/songs/60073531.mkv +佚名-落花流水,http://em.21dtv.com/songs/60028076.mkv +谢采妘-落花流水,http://em.21dtv.com/songs/60028075.mkv +堂娜-落花流水,http://em.21dtv.com/songs/60028074.mkv +陈奕迅-落花流水,http://em.21dtv.com/songs/60028073.mkv +蔡琴-落花流水,http://em.21dtv.com/songs/60028072.mkv +陈奕迅-落花流水(演唱会),http://em.21dtv.com/songs/60028071.mkv +佚名-刘海砍樵,http://em.21dtv.com/songs/60027510.mkv +陈思思+戴林青-刘海砍樵(演唱会),http://em.21dtv.com/songs/60027509.mkv +张学友-烈火狂奔,http://em.21dtv.com/songs/60027363.mkv +陈雷-罗汉脚仔,http://em.21dtv.com/songs/60028019.mkv +张惠妹-灵魂尽头,http://em.21dtv.com/songs/60113466.mkv +张惠妹-灵魂尽头,http://em.21dtv.com/songs/60111071.mkv +SCOUTING FOR GIRLS-love how it hurts,http://em.21dtv.com/songs/60063666.mkv +沈殿霞-丽花皇宫(演唱会),http://em.21dtv.com/songs/60026915.mkv +邱意淋-灵魂伙伴,http://em.21dtv.com/songs/60108039.mkv +Zpecial-灵魂改造,http://em.21dtv.com/songs/60126558.mkv +梁博-灵魂歌手,http://em.21dtv.com/songs/60133894.mkv +梁博-灵魂歌手,http://em.21dtv.com/songs/60130499.mkv +佚名-梨花非梦,http://em.21dtv.com/songs/60026807.mkv +田震-梨花非梦,http://em.21dtv.com/songs/60026806.mkv +张可儿-梨花带雨,http://em.21dtv.com/songs/60105024.mkv +黎亚-落花的夜(无原唱),http://em.21dtv.com/songs/60028069.mkv +符致逸-灵魂独舞,http://em.21dtv.com/songs/60130637.mkv +胡鸿钧-灵魂的痛,http://em.21dtv.com/songs/60122047.mkv +敏青-落花残月,http://em.21dtv.com/songs/60068452.mkv +四大天王-浪花cha cha(无原唱),http://em.21dtv.com/songs/60026215.mkv +袁成杰-六号包厢,http://em.21dtv.com/songs/60066130.mkv +维妮亚-灵魂伴侣,http://em.21dtv.com/songs/60128300.mkv +田馥甄-灵魂伴侣,http://em.21dtv.com/songs/60127228.mkv +田馥甄-灵魂伴侣,http://em.21dtv.com/songs/60125970.mkv +胡杏儿-灵魂伴侣,http://em.21dtv.com/songs/60027414.mkv +于毅-灵魂摆渡,http://em.21dtv.com/songs/60115674.mkv +权权+小简单-拉黑拜拜,http://em.21dtv.com/songs/60099293.mkv +BACKSTREET BOYS-lets have a party,http://em.21dtv.com/songs/60003368.mkv +慕容伊一-老公之歌,http://em.21dtv.com/songs/60064457.mkv +TENSION-两个月亮,http://em.21dtv.com/songs/60027272.mkv +张雨生+童孔-两个永恒(无原唱),http://em.21dtv.com/songs/60027271.mkv +彭佳慧-鹿港小镇,http://em.21dtv.com/songs/60100046.mkv +群星-鹿港小镇,http://em.21dtv.com/songs/60097424.mkv +罗大佑-鹿港小镇(演唱会),http://em.21dtv.com/songs/60027914.mkv +后弦-卢沟晓月,http://em.21dtv.com/songs/60115749.mkv +王杨-路过夏天,http://em.21dtv.com/songs/60072168.mkv +任贤齐-路过幸福,http://em.21dtv.com/songs/60089120.mkv +杜雯媞-路过幸福,http://em.21dtv.com/songs/60027945.mkv +郑嘉颖-留给心爱,http://em.21dtv.com/songs/60027534.mkv +FS+魏如昀-两个太阳,http://em.21dtv.com/songs/60104677.mkv +KYLIE MINOGUE-lets get to it,http://em.21dtv.com/songs/60062086.mkv +F.I.R-泪光闪烁,http://em.21dtv.com/songs/60026529.mkv +黄品源-泪光闪闪,http://em.21dtv.com/songs/60026528.mkv +许罡-两个世界,http://em.21dtv.com/songs/60110524.mkv +孙思怡-两个世界,http://em.21dtv.com/songs/60100832.mkv +刘若英-两个世界,http://em.21dtv.com/songs/60092368.mkv +回音哥+汪洋-两个世界,http://em.21dtv.com/songs/60076430.mkv +周华健-两个世界,http://em.21dtv.com/songs/60027267.mkv +张克帆-两个世界,http://em.21dtv.com/songs/60027266.mkv +陈慧琳-两个世界,http://em.21dtv.com/songs/60027265.mkv +陈美凤+霍正奇-两个世界(无原唱),http://em.21dtv.com/songs/60027264.mkv +陈慧琳-两个世界(无原唱),http://em.21dtv.com/songs/60027263.mkv +徐良+雨洁-两个傻瓜,http://em.21dtv.com/songs/60064479.mkv +思小玥-乐观人生,http://em.21dtv.com/songs/60132485.mkv +金花-路过人间,http://em.21dtv.com/songs/60062527.mkv +张国荣-路过蜻蜓,http://em.21dtv.com/songs/60027944.mkv +张柏芝-路过蜻蜓,http://em.21dtv.com/songs/60027943.mkv +张国荣-路过蜻蜓(演唱会),http://em.21dtv.com/songs/60027942.mkv +姚贝娜-泸沽情思,http://em.21dtv.com/songs/60102094.mkv +凤飞飞-两个圈圈,http://em.21dtv.com/songs/60027229.mkv +孙露-两个朋友,http://em.21dtv.com/songs/60131340.mkv +高慧君-lets go party now(无原唱),http://em.21dtv.com/songs/60003365.mkv +邝美云-两个偶然,http://em.21dtv.com/songs/60027227.mkv +吴彤-卢根尼斯,http://em.21dtv.com/songs/60125287.mkv +林忆莲+梅艳芳-两个女人,http://em.21dtv.com/songs/60027226.mkv +叶德娴+伦永亮-两个女人(演唱会),http://em.21dtv.com/songs/60027225.mkv +侧田-两个女人(演唱会),http://em.21dtv.com/songs/60027224.mkv +周艳泓-老公你好,http://em.21dtv.com/songs/60095275.mkv +莫文蔚-两个女孩,http://em.21dtv.com/songs/60027223.mkv +后羿-老公老婆,http://em.21dtv.com/songs/60068420.mkv +达坡玛吉-路歌丽江,http://em.21dtv.com/songs/60027939.mkv +陈雅森-老哥老弟,http://em.21dtv.com/songs/60121099.mkv +玖月奇迹-两根筷子,http://em.21dtv.com/songs/60131685.mkv +伍佰-两个寂寞,http://em.21dtv.com/songs/60027221.mkv +紫薇-兰闺寂寂,http://em.21dtv.com/songs/60026027.mkv +李香兰-兰闺寂寂,http://em.21dtv.com/songs/60026026.mkv +BLACK EYED PEAS-lets get it started,http://em.21dtv.com/songs/60003361.mkv +阿峻-老狗花花,http://em.21dtv.com/songs/60076347.mkv +陆虎-拉过勾的,http://em.21dtv.com/songs/60076300.mkv +佚名-流光飞舞,http://em.21dtv.com/songs/60027605.mkv +陈淑华-流光飞舞,http://em.21dtv.com/songs/60027604.mkv +侯湘婷-两个冬天,http://em.21dtv.com/songs/60027219.mkv +王小婉-老公大人,http://em.21dtv.com/songs/60124256.mkv +廖芊芊-老公大人,http://em.21dtv.com/songs/60076343.mkv +阿爆-绿光传说,http://em.21dtv.com/songs/60103652.mkv +张翼-两个城市,http://em.21dtv.com/songs/60094104.mkv +蓝正龙-泪光翅膀,http://em.21dtv.com/songs/60076364.mkv +彩贝与海-路过爱情,http://em.21dtv.com/songs/60119559.mkv +Davichi-两个爱情,http://em.21dtv.com/songs/60109810.mkv +梁又琳-路过爱情,http://em.21dtv.com/songs/60083319.mkv +庄学忠-鸾凤争鸣,http://em.21dtv.com/songs/60087770.mkv +叶枫华+何乾梁-梁枫有信,http://em.21dtv.com/songs/60118418.mkv +Ella-浪费眼泪,http://em.21dtv.com/songs/60111601.mkv +CT GIRLS-looking for your love,http://em.21dtv.com/songs/60003489.mkv +陈明-雷峰夕照,http://em.21dtv.com/songs/60026501.mkv +文夏-理发小姐,http://em.21dtv.com/songs/60079151.mkv +冷漠-老夫少妻,http://em.21dtv.com/songs/60067186.mkv +谢晓燕-罗浮情深,http://em.21dtv.com/songs/60068450.mkv +何鹏-老夫老妻,http://em.21dtv.com/songs/60130085.mkv +卢珊珊-老夫老妻,http://em.21dtv.com/songs/60099130.mkv +刘惜君-恋风恋歌,http://em.21dtv.com/songs/60062677.mkv +莫文蔚-lets fall in love,http://em.21dtv.com/songs/60003357.mkv +金城武-lets fall in love,http://em.21dtv.com/songs/60003356.mkv +莫文蔚-lets fall in love(演唱会),http://em.21dtv.com/songs/60003355.mkv +杨千桦-鸾凤和鸣,http://em.21dtv.com/songs/60092845.mkv +杨千嬅-鸾凤和鸣(无原唱),http://em.21dtv.com/songs/60027982.mkv +张祥洪-浪费感情,http://em.21dtv.com/songs/60026210.mkv +5566-冷风过境,http://em.21dtv.com/songs/60026581.mkv +蔡佳麟+郭婷筠-龙飞凤舞(HD),http://em.21dtv.com/songs/10012808.mkv +蔡佳麟+郭婷筠-龙飞凤舞,http://em.21dtv.com/songs/60097193.mkv +龙凤呈祥组合-龙凤呈祥,http://em.21dtv.com/songs/60111561.mkv +CHRISTINA AGUILERA-love for all seasons,http://em.21dtv.com/songs/60003520.mkv +小安-浪费爱情,http://em.21dtv.com/songs/60026209.mkv +KYLIE MINOGUE-looking for an angel,http://em.21dtv.com/songs/60062087.mkv +罗嘉豪+AJ+祖丝-乐而忘返,http://em.21dtv.com/songs/60130649.mkv +罗嘉豪+AJ+祖丝-乐而忘返,http://em.21dtv.com/songs/60127275.mkv +Foxes-Let Go For Tonight,http://em.21dtv.com/songs/60096148.mkv +朴明秀+IU-Leon,http://em.21dtv.com/songs/60117803.mkv +郑进一+安迪+唐从圣-零二零四,http://em.21dtv.com/songs/60027455.mkv +张震岳-零二零四,http://em.21dtv.com/songs/60027454.mkv +叶启田-绿岛之夜,http://em.21dtv.com/songs/60028167.mkv +梅花三姐妹-绿岛之夜,http://em.21dtv.com/songs/60028166.mkv +黄克林+洪玉琴-绿岛之夜,http://em.21dtv.com/songs/60028165.mkv +陈雷-绿岛之夜,http://em.21dtv.com/songs/60028164.mkv +闫泽-龙德在田,http://em.21dtv.com/songs/60134373.mkv +孙小梅+臧天朔-懒得再说,http://em.21dtv.com/songs/60087655.mkv +尹光+李蕴-老豆最强(演唱会),http://em.21dtv.com/songs/60061353.mkv +佚名-丽达之歌,http://em.21dtv.com/songs/60026914.mkv +孙悦-丽达之歌(演唱会),http://em.21dtv.com/songs/60026913.mkv +蔡明+李琦-丽达之歌(演唱会),http://em.21dtv.com/songs/60026912.mkv +佚名-丽达之歌(慢四),http://em.21dtv.com/songs/60026911.mkv +U180-懒惰致富,http://em.21dtv.com/songs/60134816.mkv +邓超予-丽都益阳,http://em.21dtv.com/songs/60108912.mkv +K KOKE+RITA ORA-lay down your weapons,http://em.21dtv.com/songs/60073486.mkv +许茹芸-留低钥匙,http://em.21dtv.com/songs/60093169.mkv +佚名-泪的衣裳,http://em.21dtv.com/songs/60026523.mkv +凤凰传奇-郎的诱惑,http://em.21dtv.com/songs/60026179.mkv +AIMER-六等星の夜,http://em.21dtv.com/songs/60083313.mkv +王天丽-泪的小雨(演唱会),http://em.21dtv.com/songs/60083275.mkv +莫旭秋-泪的小雨(演唱会),http://em.21dtv.com/songs/60076362.mkv +轲然-龙的信仰,http://em.21dtv.com/songs/60061378.mkv +青山-泪的小雨,http://em.21dtv.com/songs/60026522.mkv +李翊君-泪的小雨,http://em.21dtv.com/songs/60026521.mkv +韩宝仪-泪的小雨,http://em.21dtv.com/songs/60026520.mkv +邓丽君-泪的小雨,http://em.21dtv.com/songs/60026519.mkv +蔡幸娟-泪的小雨,http://em.21dtv.com/songs/60026518.mkv +谢雷-泪的小雨(演唱会),http://em.21dtv.com/songs/60026517.mkv +翁汕汕-两地相思,http://em.21dtv.com/songs/60093674.mkv +唐俪+李明洋-两地相思,http://em.21dtv.com/songs/60064478.mkv +乌兰托亚-莲的心事,http://em.21dtv.com/songs/60026948.mkv +庄学忠-泪的小花,http://em.21dtv.com/songs/60026516.mkv +青山-泪的小花,http://em.21dtv.com/songs/60026515.mkv +龙飘飘-泪的小花,http://em.21dtv.com/songs/60026514.mkv +姜育恒-泪的小花,http://em.21dtv.com/songs/60026513.mkv +万飞-泪的小花(演唱会),http://em.21dtv.com/songs/60026512.mkv +MR.-两大无猜,http://em.21dtv.com/songs/60062117.mkv +伤心老留-拉登晚安,http://em.21dtv.com/songs/60085340.mkv +谭咏麟-路到天涯,http://em.21dtv.com/songs/60027933.mkv +王绎龙-龙电天下,http://em.21dtv.com/songs/60076491.mkv +STEVE HOLY-love dont run,http://em.21dtv.com/songs/60065637.mkv +童唱-伦敦铁桥,http://em.21dtv.com/songs/60028009.mkv +靓舞精灵-lets dance跳n变,http://em.21dtv.com/songs/60003354.mkv +张敬轩-留低锁匙,http://em.21dtv.com/songs/60133664.mkv +于爽-绿的思念,http://em.21dtv.com/songs/60076516.mkv +王璐-落地生根,http://em.21dtv.com/songs/60117923.mkv +RUBBER BAND-零度圣诞,http://em.21dtv.com/songs/60027453.mkv +张敬轩-留低锁匙,http://em.21dtv.com/songs/60072164.mkv +许茹芸-留低锁匙,http://em.21dtv.com/songs/60027528.mkv +程响+王羽泽-两地情缘,http://em.21dtv.com/songs/60070880.mkv +杨晓微-莲的情思,http://em.21dtv.com/songs/60125750.mkv +游子组合-乐动全球,http://em.21dtv.com/songs/60107876.mkv +黎有道-乱点巧配,http://em.21dtv.com/songs/60110734.mkv +奥迪-乱弹琴歌,http://em.21dtv.com/songs/60100827.mkv +孙燕姿-懒得去管,http://em.21dtv.com/songs/60026157.mkv +海鸣威-龙的梦想,http://em.21dtv.com/songs/60027823.mkv +欧阳朵+小小浩-落单恋人,http://em.21dtv.com/songs/60118733.mkv +黄鸿升-懒得理你,http://em.21dtv.com/songs/60083253.mkv +樊少华+江山-龙的力量,http://em.21dtv.com/songs/60135468.mkv +陈志朋-落单旅行,http://em.21dtv.com/songs/60081618.mkv +姜育恒+晓雪-零点零分,http://em.21dtv.com/songs/60076453.mkv +龙梅子+老猫-老爹老爹,http://em.21dtv.com/songs/60067185.mkv +魏语诺-离得开你,http://em.21dtv.com/songs/60113106.mkv +零点乐队-零点快乐,http://em.21dtv.com/songs/60105509.mkv +卢巧音-落地开花,http://em.21dtv.com/songs/60028063.mkv +卢巧音-落地开花(演唱会),http://em.21dtv.com/songs/60028062.mkv +尹光-烂赌家族(演唱会),http://em.21dtv.com/songs/60076321.mkv +和妤婕-鹭岛吉祥,http://em.21dtv.com/songs/60070891.mkv +李克勤+黄伊汶-来到今天(演唱会),http://em.21dtv.com/songs/60025970.mkv +郑少秋-浪荡江山,http://em.21dtv.com/songs/60102797.mkv +谢霆锋-零度寂寞,http://em.21dtv.com/songs/60027452.mkv +高枫-劳动号子,http://em.21dtv.com/songs/60081890.mkv +雨霖枫-泪的海洋,http://em.21dtv.com/songs/60133063.mkv +泽旺多吉-绿动海西,http://em.21dtv.com/songs/60076517.mkv +毒药-零度火山,http://em.21dtv.com/songs/60124178.mkv +陆锋-落单候鸟,http://em.21dtv.com/songs/60028060.mkv +韩磊-路的呼唤,http://em.21dtv.com/songs/60127587.mkv +周彬-莲的故乡,http://em.21dtv.com/songs/60110084.mkv +张明敏-龙的故乡,http://em.21dtv.com/songs/60027822.mkv +杨庆-龙的故乡,http://em.21dtv.com/songs/60027821.mkv +TWINS-连带关系,http://em.21dtv.com/songs/60026934.mkv +孔令奇-懒得跟你,http://em.21dtv.com/songs/60087644.mkv +梁洛施-恋得更好,http://em.21dtv.com/songs/60027073.mkv +梁洛施-恋得更好(演唱会),http://em.21dtv.com/songs/60027072.mkv +KOKIA-泪的告白,http://em.21dtv.com/songs/60083274.mkv +施文斌-泪的方向,http://em.21dtv.com/songs/60026511.mkv +小黑(郑新)-老地方见,http://em.21dtv.com/songs/60132394.mkv +袁东方-老地方见,http://em.21dtv.com/songs/60115370.mkv +关燕萍-老地方见,http://em.21dtv.com/songs/60101045.mkv +金韩一-零点电台,http://em.21dtv.com/songs/60108940.mkv +刘冲+冲击力乐队-流动的家,http://em.21dtv.com/songs/60120355.mkv +乌兰托娅-来到草原,http://em.21dtv.com/songs/60068410.mkv +王力宏-龙的传人(HD),http://em.21dtv.com/songs/10012698.mkv +张新-龙的传人,http://em.21dtv.com/songs/60091113.mkv +屠洪纲-龙的传人,http://em.21dtv.com/songs/60089826.mkv +玖月奇迹-龙的传人(演唱会),http://em.21dtv.com/songs/60083314.mkv +中国好声音第二季学员-龙的传人,http://em.21dtv.com/songs/60081581.mkv +尹光-龙的传人(演唱会),http://em.21dtv.com/songs/60076490.mkv +罗桦-龙的传人(演唱会),http://em.21dtv.com/songs/60076489.mkv +黄贯中-龙的传人,http://em.21dtv.com/songs/60076488.mkv +张明敏-龙的传人,http://em.21dtv.com/songs/60027820.mkv +徐小凤-龙的传人,http://em.21dtv.com/songs/60027819.mkv +王力宏-龙的传人,http://em.21dtv.com/songs/60027818.mkv +侯德健-龙的传人,http://em.21dtv.com/songs/60027817.mkv +郑少秋-龙的传人(演唱会),http://em.21dtv.com/songs/60027816.mkv +王力宏-龙的传人(演唱会),http://em.21dtv.com/songs/60027815.mkv +谭咏麟-龙的传人(演唱会),http://em.21dtv.com/songs/60027814.mkv +顾海滨-龙的传人(演唱会),http://em.21dtv.com/songs/60027813.mkv +火风-老调陈腔,http://em.21dtv.com/songs/60026432.mkv +黄文星-立地成魔,http://em.21dtv.com/songs/60109780.mkv +魏紫祺-两道彩虹,http://em.21dtv.com/songs/60132004.mkv +刘忻-两道彩虹,http://em.21dtv.com/songs/60069567.mkv +乔嘉-立地成佛,http://em.21dtv.com/songs/60101874.mkv +仓木麻衣-love day after tomorrow,http://em.21dtv.com/songs/60003514.mkv +吴瑶瑶-零点爱情,http://em.21dtv.com/songs/60027449.mkv +孙逊-留点爱吧,http://em.21dtv.com/songs/60076479.mkv +谭咏麟-凌晨一吻,http://em.21dtv.com/songs/60027439.mkv +谭咏麟-凌晨一吻(演唱会),http://em.21dtv.com/songs/60027438.mkv +刘威煌-老茶游记,http://em.21dtv.com/songs/60122515.mkv +高月佳-两城相望,http://em.21dtv.com/songs/60109052.mkv +吴雨霏-丽池舞会,http://em.21dtv.com/songs/60026910.mkv +NICK CARTER-love cant wait,http://em.21dtv.com/songs/60073546.mkv +厨房仔-凌晨时份,http://em.21dtv.com/songs/60110064.mkv +李玟-love come so easy,http://em.21dtv.com/songs/60003513.mkv +莫滢琦-凌晨三点,http://em.21dtv.com/songs/60108857.mkv +杨梓-郎财女貌,http://em.21dtv.com/songs/60076322.mkv +CELINE DION-love can move mountains,http://em.21dtv.com/songs/60003511.mkv +卓依婷-良辰美景,http://em.21dtv.com/songs/60027165.mkv +李健-凌晨两点,http://em.21dtv.com/songs/60068443.mkv +黄荻钧-另存寂寞,http://em.21dtv.com/songs/60121185.mkv +黄荻钧-另存寂寞,http://em.21dtv.com/songs/60120168.mkv +樱花姐妹-离愁海岸,http://em.21dtv.com/songs/60072719.mkv +李克勤-六尺风云,http://em.21dtv.com/songs/60027774.mkv +安雯-连城拜年,http://em.21dtv.com/songs/60090949.mkv +杨荣辉-离别之夜,http://em.21dtv.com/songs/60132593.mkv +杨荣辉-离别之夜,http://em.21dtv.com/songs/60130470.mkv +佚名-离别之夜,http://em.21dtv.com/songs/60026671.mkv +罗时丰-离别之夜,http://em.21dtv.com/songs/60026670.mkv +曾心梅-离别之夜,http://em.21dtv.com/songs/60026669.mkv +杨采妮-离别之前(无原唱),http://em.21dtv.com/songs/60026668.mkv +沈孟生-留不住你,http://em.21dtv.com/songs/60027522.mkv +艾尼瓦尔江-礼拜之歌,http://em.21dtv.com/songs/60118001.mkv +奥杰阿格-洛波雅幽,http://em.21dtv.com/songs/60028044.mkv +周传雄-临别一眼,http://em.21dtv.com/songs/60027395.mkv +曾慧-凌波仙子(戏曲),http://em.21dtv.com/songs/60092765.mkv +芳艳芬-凌波仙子,http://em.21dtv.com/songs/60027435.mkv +糖兄妹-留不下来,http://em.21dtv.com/songs/60067208.mkv +许绍洋-来吧幸福,http://em.21dtv.com/songs/60092067.mkv +张杰+苏醒-来吧舞吧,http://em.21dtv.com/songs/60025949.mkv +洪荣宏-离别誓言(无原唱),http://em.21dtv.com/songs/60026664.mkv +姚敏男-离别时刻(无原唱),http://em.21dtv.com/songs/60026662.mkv +方文琳-两本日记,http://em.21dtv.com/songs/60027211.mkv +童丽-离别前夕,http://em.21dtv.com/songs/60083280.mkv +韩宝仪-离别前夕,http://em.21dtv.com/songs/60026661.mkv +曹越-老板情歌,http://em.21dtv.com/songs/60101093.mkv +石雪峰-离别情歌,http://em.21dtv.com/songs/60085367.mkv +何龙雨-离别情歌,http://em.21dtv.com/songs/60076384.mkv +江东-萝卜青菜,http://em.21dtv.com/songs/60133918.mkv +邓冬梅-来吧朋友,http://em.21dtv.com/songs/60120005.mkv +Kisum-两杯啤酒,http://em.21dtv.com/songs/60134728.mkv +Kisum-两杯啤酒,http://em.21dtv.com/songs/60123493.mkv +KEITH URBAN-little bit of everything(演唱会),http://em.21dtv.com/songs/60082236.mkv +梁龙林-落榜那年,http://em.21dtv.com/songs/60068451.mkv +莫彩虹-来宾你好,http://em.21dtv.com/songs/60127349.mkv +胡斌-老板难当,http://em.21dtv.com/songs/60127307.mkv +三郎-老板难当,http://em.21dtv.com/songs/60120271.mkv +冷漠-老板难当,http://em.21dtv.com/songs/60061352.mkv +刘玉翠-来吧mambo mambo,http://em.21dtv.com/songs/60025945.mkv +小沈阳-老爸老妈,http://em.21dtv.com/songs/60135138.mkv +田正-老爸老妈,http://em.21dtv.com/songs/60134026.mkv +方琦-老爸老妈,http://em.21dtv.com/songs/60124005.mkv +君子-老爸老妈,http://em.21dtv.com/songs/60123740.mkv +天骏-老爸老妈,http://em.21dtv.com/songs/60121551.mkv +谈莉娜+杨洋+谢彬彬+高泰宇+易易紫+于朦胧-老爸老妈,http://em.21dtv.com/songs/60114062.mkv +华语群星-老爸老妈,http://em.21dtv.com/songs/60111733.mkv +子祺-老爸老妈,http://em.21dtv.com/songs/60063491.mkv +阿宝-老爸老妈(演唱会),http://em.21dtv.com/songs/60026318.mkv +温岚-离不开他,http://em.21dtv.com/songs/60026684.mkv +岩罕建-离不开你,http://em.21dtv.com/songs/60124829.mkv +叶俊岑-离不开你,http://em.21dtv.com/songs/60117602.mkv +杨光-离不开你,http://em.21dtv.com/songs/60113658.mkv +吴勇滨-离不开你(HD),http://em.21dtv.com/songs/10012728.mkv +腾格尔-离不开你,http://em.21dtv.com/songs/60106214.mkv +吴勇滨-离不开你,http://em.21dtv.com/songs/60101296.mkv +肖洒+胡海泉-离不开你,http://em.21dtv.com/songs/60094649.mkv +孙楠-离不开你,http://em.21dtv.com/songs/60094456.mkv +刘欢-离不开你,http://em.21dtv.com/songs/60083282.mkv +朱克-离不开你,http://em.21dtv.com/songs/60081490.mkv +韩雪-离不开你,http://em.21dtv.com/songs/60076385.mkv +黄绮珊-离不开你,http://em.21dtv.com/songs/60072143.mkv +唐龙-离不开你,http://em.21dtv.com/songs/60026683.mkv +陆毅-离不开你,http://em.21dtv.com/songs/60026682.mkv +陈小春-离不开你,http://em.21dtv.com/songs/60026681.mkv +陆毅-离不开你(演唱会),http://em.21dtv.com/songs/60026680.mkv +邰正宵-来不及说,http://em.21dtv.com/songs/60117275.mkv +冷漠-两败俱伤,http://em.21dtv.com/songs/60116570.mkv +邰正宵-来不及说,http://em.21dtv.com/songs/60116287.mkv +柯有伦-两败俱伤,http://em.21dtv.com/songs/60088131.mkv +钟镇涛-来不及说,http://em.21dtv.com/songs/60025964.mkv +佚名-来吧吉米,http://em.21dtv.com/songs/60025946.mkv +[Group] +groupName=十六万歌曲MV等 - 47 +寂悸-离别机场,http://em.21dtv.com/songs/60096249.mkv +施文彬+梁一贞-离别酒杯,http://em.21dtv.com/songs/60026659.mkv +赵嘉依-李白很忙,http://em.21dtv.com/songs/60083290.mkv +宋健+后海月儿-老爸很酷,http://em.21dtv.com/songs/60135120.mkv +大叔先生+晓月-老爸很酷,http://em.21dtv.com/songs/60135077.mkv +蔡秋凤-离别海岸,http://em.21dtv.com/songs/60076383.mkv +黄耀明+刘以达-溜冰滚族,http://em.21dtv.com/songs/60093544.mkv +VIXX-离别公式,http://em.21dtv.com/songs/60109119.mkv +袁宇-来吧姑娘,http://em.21dtv.com/songs/60110506.mkv +姜敏京-离别归来,http://em.21dtv.com/songs/60072142.mkv +洪荣宏+曹雅雯-离别的酒,http://em.21dtv.com/songs/60122958.mkv +洪荣宏-离别的酒,http://em.21dtv.com/songs/60111240.mkv +龙千玉+袁小迪-离别的酒,http://em.21dtv.com/songs/60026648.mkv +豪记大对唱-离别的酒(无原唱),http://em.21dtv.com/songs/60026647.mkv +蒋雪儿-离别的歌,http://em.21dtv.com/songs/60120923.mkv +蒋雪儿-离别的歌,http://em.21dtv.com/songs/60119945.mkv +谢金燕-离别车站,http://em.21dtv.com/songs/60026638.mkv +云飞+云朵-离别草原,http://em.21dtv.com/songs/60132179.mkv +云飞-离别草原,http://em.21dtv.com/songs/60110833.mkv +砰砰乐团-老兵不死,http://em.21dtv.com/songs/60026321.mkv +萝卜-萝卜不怕,http://em.21dtv.com/songs/60123117.mkv +俊锋-来吧宝贝,http://em.21dtv.com/songs/60128793.mkv +卢庚戌-来吧爱情,http://em.21dtv.com/songs/60133441.mkv +邵斯文-恋爱至上,http://em.21dtv.com/songs/60027064.mkv +刘容嘉-恋爱转机,http://em.21dtv.com/songs/60110022.mkv +闪亮三姐妹-恋爱预兆,http://em.21dtv.com/songs/60027061.mkv +花世纪-恋爱运优,http://em.21dtv.com/songs/60085381.mkv +张卫健-恋爱游戏,http://em.21dtv.com/songs/60027058.mkv +柯有伦-恋爱演习,http://em.21dtv.com/songs/60027056.mkv +杨千嬅-恋爱意思,http://em.21dtv.com/songs/60027057.mkv +佚名-恋爱预告,http://em.21dtv.com/songs/60027060.mkv +卢凯彤-恋爱预告,http://em.21dtv.com/songs/60027059.mkv +翁立友-了爱消灾,http://em.21dtv.com/songs/60067205.mkv +BOBO-恋爱新手,http://em.21dtv.com/songs/60027055.mkv +徐良-恋爱小说,http://em.21dtv.com/songs/60027053.mkv +范玉阳-恋爱信号,http://em.21dtv.com/songs/60130697.mkv +苏振华+林俊吉-两岸兄弟,http://em.21dtv.com/songs/60134166.mkv +林俊吉+薛振华-两岸兄弟,http://em.21dtv.com/songs/60072149.mkv +THIRD-losing a whole year,http://em.21dtv.com/songs/60003497.mkv +胡杏儿-恋爱妄想,http://em.21dtv.com/songs/60027051.mkv +刘腊-恋爱未遂,http://em.21dtv.com/songs/60076414.mkv +徐若瑄-来爱我啦,http://em.21dtv.com/songs/60081723.mkv +SNH48-恋爱味道,http://em.21dtv.com/songs/60127674.mkv +Disney Pixar-Lava,http://em.21dtv.com/songs/60124859.mkv +朱浩-恋爱天气,http://em.21dtv.com/songs/60066121.mkv +BESTie-恋爱条件,http://em.21dtv.com/songs/60108211.mkv +徐子珊-恋爱天窗,http://em.21dtv.com/songs/60121702.mkv +吴雨霏-恋爱天才(演唱会),http://em.21dtv.com/songs/60027050.mkv +黄玮亦+韩放-恋爱同步,http://em.21dtv.com/songs/60127625.mkv +韩放+黄玮亦-恋爱同步,http://em.21dtv.com/songs/60126437.mkv +苏永康-恋爱实验(演唱会),http://em.21dtv.com/songs/60027043.mkv +汤潮-狼爱上羊,http://em.21dtv.com/songs/60026196.mkv +佚名-恋爱伤身,http://em.21dtv.com/songs/60027039.mkv +爱朵女孩-恋爱声明,http://em.21dtv.com/songs/60076412.mkv +陈慧琳-恋爱神经(HD),http://em.21dtv.com/songs/10012548.mkv +李霄云-恋爱世纪,http://em.21dtv.com/songs/60095309.mkv +张柏芝-恋爱世纪,http://em.21dtv.com/songs/60027044.mkv +郭富城-恋爱时间,http://em.21dtv.com/songs/60027042.mkv +陈慧琳-恋爱神经,http://em.21dtv.com/songs/60027041.mkv +陈慧琳-恋爱神经(演唱会),http://em.21dtv.com/songs/60027040.mkv +李安琪-恋爱傻瓜(无原唱),http://em.21dtv.com/songs/60027038.mkv +路童-裸爱时代,http://em.21dtv.com/songs/60076526.mkv +苏有朋-恋爱视窗,http://em.21dtv.com/songs/60091929.mkv +水木年华-恋爱日记,http://em.21dtv.com/songs/60091570.mkv +LEA-恋爱日记(无原唱),http://em.21dtv.com/songs/60027036.mkv +谢霆锋-恋爱起义,http://em.21dtv.com/songs/60093189.mkv +陈慧琳-恋爱情色(HD),http://em.21dtv.com/songs/10012547.mkv +陈慧琳-恋爱情色,http://em.21dtv.com/songs/60027035.mkv +陈慧琳-恋爱情色(演唱会),http://em.21dtv.com/songs/60027034.mkv +赵华-恋爱恰恰,http://em.21dtv.com/songs/60104452.mkv +葛笑+琴琴-裸爱情歌,http://em.21dtv.com/songs/60122078.mkv +艾歌+路童-裸爱情歌,http://em.21dtv.com/songs/60062207.mkv +路童+珍美儿-裸爱情歌,http://em.21dtv.com/songs/60061386.mkv +袁媛+冯玉玺-恋爱频率(演唱会),http://em.21dtv.com/songs/60063316.mkv +许志安+许慧欣-恋爱频率(演唱会),http://em.21dtv.com/songs/60027032.mkv +吴雨霏-恋爱疲劳,http://em.21dtv.com/songs/60027030.mkv +许志安-恋爱片段(演唱会),http://em.21dtv.com/songs/60027031.mkv +MONICA-love all over me,http://em.21dtv.com/songs/60060862.mkv +TAE-恋爱冒险,http://em.21dtv.com/songs/60090442.mkv +ALIN-恋爱魔力,http://em.21dtv.com/songs/60095241.mkv +花世纪-恋爱秘笈,http://em.21dtv.com/songs/60088519.mkv +E-KIDS-恋爱秘笈(无原唱),http://em.21dtv.com/songs/60027029.mkv +GARNiDELiA-Lamb,http://em.21dtv.com/songs/60132081.mkv +Garnidelia-Lamb,http://em.21dtv.com/songs/60104682.mkv +佚名-恋爱猎人,http://em.21dtv.com/songs/60027023.mkv +周笔畅-恋爱料理(演唱会),http://em.21dtv.com/songs/60027022.mkv +林柔均+林哲辉-恋爱列车,http://em.21dtv.com/songs/60066119.mkv +CARTER'S CHORD-love a little bigger,http://em.21dtv.com/songs/60067936.mkv +王心凌-恋爱节奏,http://em.21dtv.com/songs/60027017.mkv +阿澄佳奈-初めて恋をした记忆,http://em.21dtv.com/songs/60100551.mkv +张克帆-恋爱假期(无原唱),http://em.21dtv.com/songs/60027014.mkv +江志丰-恋爱季节,http://em.21dtv.com/songs/60081331.mkv +草蜢-恋爱结局,http://em.21dtv.com/songs/60027018.mkv +张爽-恋爱季节,http://em.21dtv.com/songs/60027013.mkv +谢坤达+YUMMY-恋爱季节,http://em.21dtv.com/songs/60027012.mkv +张国荣-恋爱交叉(演唱会),http://em.21dtv.com/songs/60027015.mkv +丝小诺-恋爱花语,http://em.21dtv.com/songs/60085379.mkv +余天-泪爱河桥(无原唱),http://em.21dtv.com/songs/60026507.mkv +王菀之-柳暗花明(演唱会),http://em.21dtv.com/songs/60105260.mkv +邰正宵-柳暗花明,http://em.21dtv.com/songs/60097342.mkv +尚雯婕-柳暗花明,http://em.21dtv.com/songs/60079977.mkv +王菀之-柳暗花明,http://em.21dtv.com/songs/60061377.mkv +卓依婷-柳暗花明,http://em.21dtv.com/songs/60027760.mkv +曾庆瑜-柳暗花明,http://em.21dtv.com/songs/60027759.mkv +钟sir-恋爱幻觉,http://em.21dtv.com/songs/60116315.mkv +G.BARLOW-love aint here anymore,http://em.21dtv.com/songs/60003507.mkv +温兆伦-恋爱故事,http://em.21dtv.com/songs/60027011.mkv +官恩娜-恋爱革命,http://em.21dtv.com/songs/60027009.mkv +KYLIE MINOGUE-love at first sight,http://em.21dtv.com/songs/60003509.mkv +林忆莲-恋爱疯狂,http://em.21dtv.com/songs/60091452.mkv +新疆民歌-恋爱的人,http://em.21dtv.com/songs/60089914.mkv +罗志祥+徐熙娣-恋爱达人,http://em.21dtv.com/songs/60026997.mkv +李蕙敏-恋爱动词,http://em.21dtv.com/songs/60027008.mkv +冰淇淋少女组-恋爱登场,http://em.21dtv.com/songs/60027007.mkv +张惠妹-离爱出走(演唱会),http://em.21dtv.com/songs/60026634.mkv +周深-临安初雨,http://em.21dtv.com/songs/60128905.mkv +520女子演唱组-恋爱草莓,http://em.21dtv.com/songs/60026995.mkv +萧亚轩-留爱查看,http://em.21dtv.com/songs/60104397.mkv +侧田-恋爱初歌,http://em.21dtv.com/songs/60070878.mkv +沙宝亮-离爱不远,http://em.21dtv.com/songs/60133925.mkv +张宇-离爱不远(我是歌手第二期),http://em.21dtv.com/songs/60096272.mkv +朱克-离爱不远,http://em.21dtv.com/songs/60081535.mkv +黄大炜-离爱不远(演唱会),http://em.21dtv.com/songs/60026633.mkv +成云刚+王星星-恋爱报告,http://em.21dtv.com/songs/60076409.mkv +伊藤由奈-恋はgroovyx2,http://em.21dtv.com/songs/60026985.mkv +邓丽君-乱されて(演唱会),http://em.21dtv.com/songs/60027984.mkv +那英-苦中作乐,http://em.21dtv.com/songs/60025650.mkv +许志安-苦中作乐(演唱会),http://em.21dtv.com/songs/60025649.mkv +董文华-孔子之歌,http://em.21dtv.com/songs/60025507.mkv +张柏芝-夸张一夜,http://em.21dtv.com/songs/60025658.mkv +二牛-喀左夜色,http://em.21dtv.com/songs/60080953.mkv +王理想-哭着想你,http://em.21dtv.com/songs/60101140.mkv +张蓉蓉-空中小姐,http://em.21dtv.com/songs/60025488.mkv +有耳非文-空中小姐(演唱会),http://em.21dtv.com/songs/60025487.mkv +梁咏琪-空中小姐(演唱会),http://em.21dtv.com/songs/60025486.mkv +严爵-困在台北,http://em.21dtv.com/songs/60025882.mkv +罗秉洲-空枕难眠,http://em.21dtv.com/songs/60067168.mkv +林欣彤-空中恋人,http://em.21dtv.com/songs/60083229.mkv +张薇薇-空中姐妹,http://em.21dtv.com/songs/60087841.mkv +韩大伟-孔子还在,http://em.21dtv.com/songs/60135980.mkv +孟庭苇-空中花园,http://em.21dtv.com/songs/60025485.mkv +蔡琴-空中歌声,http://em.21dtv.com/songs/60025484.mkv +蔡琴-空中歌声(演唱会),http://em.21dtv.com/songs/60025483.mkv +罗志祥-空中飞人,http://em.21dtv.com/songs/60070851.mkv +李克勤-空中飞人(演唱会),http://em.21dtv.com/songs/60025482.mkv +荒山亮-卡早的歌,http://em.21dtv.com/songs/60024974.mkv +芭比-靠站不停,http://em.21dtv.com/songs/60025214.mkv +张韶涵-控制不了,http://em.21dtv.com/songs/60025511.mkv +陈慧琳-枯枝别刻,http://em.21dtv.com/songs/60025538.mkv +童孔-看着办吧,http://em.21dtv.com/songs/60131715.mkv +蒋雅文-空中爱人,http://em.21dtv.com/songs/60025480.mkv +任贤齐-苦与挣扎,http://em.21dtv.com/songs/60090567.mkv +应豪-狂野之城,http://em.21dtv.com/songs/60092552.mkv +郭富城-狂野之城,http://em.21dtv.com/songs/60025851.mkv +T.R.Y-可以为你,http://em.21dtv.com/songs/60025355.mkv +李湘-看游世界,http://em.21dtv.com/songs/60025144.mkv +萧正楠+陈文媛-可疑密友,http://em.21dtv.com/songs/60025346.mkv +佚名-看一看她,http://em.21dtv.com/songs/60025143.mkv +施孝荣-旷野寄情,http://em.21dtv.com/songs/60025853.mkv +费玉清-旷野寄情,http://em.21dtv.com/songs/60025852.mkv +官恩娜-可以几爱,http://em.21dtv.com/songs/60092511.mkv +BEN HOWARD-keep your head up,http://em.21dtv.com/songs/60082220.mkv +GLORIANA-kissed you good night,http://em.21dtv.com/songs/60067927.mkv +大张凡-开业大吉,http://em.21dtv.com/songs/60105730.mkv +佚名-跨越巅峰,http://em.21dtv.com/songs/60025666.mkv +大庆小芳-可以爱情,http://em.21dtv.com/songs/60109251.mkv +佚名-kiss you all over,http://em.21dtv.com/songs/60003182.mkv +ANNIE LENNOX-keep young and beautiful,http://em.21dtv.com/songs/60082219.mkv +文欣-开心中国,http://em.21dtv.com/songs/60025040.mkv +潘裕文-空想夜车,http://em.21dtv.com/songs/60135523.mkv +潘裕文-空想夜车,http://em.21dtv.com/songs/60133959.mkv +任德勇-跨向未来,http://em.21dtv.com/songs/60076283.mkv +阿勇+梧桐+沛然-跨向未来,http://em.21dtv.com/songs/60062204.mkv +张克帆-狂啸天涯,http://em.21dtv.com/songs/60025850.mkv +逍遥香香-开心生日,http://em.21dtv.com/songs/60132960.mkv +薛家燕+安德尊+合唱团-开心世界(演唱会),http://em.21dtv.com/songs/60076233.mkv +王亚平-开心时代,http://em.21dtv.com/songs/60063043.mkv +佚名-开心气候,http://em.21dtv.com/songs/60025038.mkv +张莹-开心庆典,http://em.21dtv.com/songs/60089867.mkv +崔子格-空心年华,http://em.21dtv.com/songs/60072112.mkv +佚名-开心女孩,http://em.21dtv.com/songs/60025037.mkv +刘德华-开心马骝(HD演唱会),http://em.21dtv.com/songs/60025033.mkv +许志安-空穴来风,http://em.21dtv.com/songs/60097333.mkv +方力申-可喜可贺,http://em.21dtv.com/songs/60025345.mkv +张玉华-空心吉他,http://em.21dtv.com/songs/60025479.mkv +冯晓菲-开心就好,http://em.21dtv.com/songs/60099777.mkv +洪子晴-开心就好,http://em.21dtv.com/songs/60061330.mkv +左炜-开心就好,http://em.21dtv.com/songs/60025032.mkv +伍佰-空袭警报(演唱会),http://em.21dtv.com/songs/60025474.mkv +梁剑东-开心过年,http://em.21dtv.com/songs/60119722.mkv +群星-开心过年,http://em.21dtv.com/songs/60064426.mkv +本兮-空虚沸腾,http://em.21dtv.com/songs/60076275.mkv +阿悄-哭笑不得,http://em.21dtv.com/songs/60080077.mkv +刘艺涵-哭笑不得,http://em.21dtv.com/songs/60025585.mkv +柯有伦-哭笑不得,http://em.21dtv.com/songs/60025584.mkv +爽子-口无遮拦,http://em.21dtv.com/songs/60076278.mkv +毕夏-看我一眼,http://em.21dtv.com/songs/60122939.mkv +郭富城-渴望无限,http://em.21dtv.com/songs/60025374.mkv +郭富城-渴望无限(演唱会),http://em.21dtv.com/songs/60025373.mkv +银霞-看我听我,http://em.21dtv.com/songs/60025137.mkv +陈明韶-看我听我(无原唱),http://em.21dtv.com/songs/60025136.mkv +刘端雯-渴望燃烧,http://em.21dtv.com/songs/60101984.mkv +华语群星-渴望光荣,http://em.21dtv.com/songs/60110058.mkv +任家萱-看我的歌,http://em.21dtv.com/songs/60106595.mkv +刘嘉亮-渴望爱情,http://em.21dtv.com/songs/60126633.mkv +郭采洁-卡通人生,http://em.21dtv.com/songs/60024973.mkv +张国荣-客途秋恨,http://em.21dtv.com/songs/60092578.mkv +佚名-客途秋恨,http://em.21dtv.com/songs/60025409.mkv +邓志驹-客途秋恨,http://em.21dtv.com/songs/60025408.mkv +BOYZONE-key to my life,http://em.21dtv.com/songs/60003144.mkv +东方神起-kiss the baby sky,http://em.21dtv.com/songs/60003180.mkv +周杰伦-困兽之斗,http://em.21dtv.com/songs/60025880.mkv +张伊彤-困兽犹爱,http://em.21dtv.com/songs/60094093.mkv +赵小兵-开始现在,http://em.21dtv.com/songs/60066094.mkv +杨坤+丁诗瑀-口是心非,http://em.21dtv.com/songs/60112006.mkv +萧敬腾+唐一嘉-口是心非,http://em.21dtv.com/songs/60081815.mkv +张雨生-口是心非,http://em.21dtv.com/songs/60025530.mkv +翁虹-口是心非,http://em.21dtv.com/songs/60025529.mkv +胡杨林-宽恕无罪,http://em.21dtv.com/songs/60025826.mkv +B2-快速搜面,http://em.21dtv.com/songs/60092139.mkv +B2-快速搜画,http://em.21dtv.com/songs/60090394.mkv +TWINS-快熟时代,http://em.21dtv.com/songs/60025818.mkv +赵真-苦水情歌,http://em.21dtv.com/songs/60069546.mkv +陈大天-苦涩模式,http://em.21dtv.com/songs/60124629.mkv +佚名-空山灵雨,http://em.21dtv.com/songs/60025467.mkv +E-KIDS-开始恋爱,http://em.21dtv.com/songs/60025017.mkv +蔡国权-考试考试,http://em.21dtv.com/songs/60025177.mkv +黄淑惠-开始放手,http://em.21dtv.com/songs/60025014.mkv +萧亚轩-开始飞吧,http://em.21dtv.com/songs/60025016.mkv +刘嘉玲-开始飞吧,http://em.21dtv.com/songs/60025015.mkv +DJ舞曲-渴死的鱼,http://em.21dtv.com/songs/50000186.mkv +THE VERSE-快速动眼,http://em.21dtv.com/songs/60083238.mkv +彭亮-渴死的鱼,http://em.21dtv.com/songs/60025364.mkv +贾涛-开始懂了,http://em.21dtv.com/songs/60099502.mkv +孙燕姿-开始懂了,http://em.21dtv.com/songs/60025013.mkv +胡杰夕-可是爱情,http://em.21dtv.com/songs/60067165.mkv +金波-抗日小唱(演唱会),http://em.21dtv.com/songs/60062523.mkv +刘德华-狂热跳舞,http://em.21dtv.com/songs/60025841.mkv +林海峰-狂人日记,http://em.21dtv.com/songs/60092880.mkv +陈奕迅-狂人日记,http://em.21dtv.com/songs/60083240.mkv +萧全-狂人派对,http://em.21dtv.com/songs/60076297.mkv +查亮-狂热梦想,http://em.21dtv.com/songs/60131557.mkv +刘牧-坑人麻将,http://em.21dtv.com/songs/60090719.mkv +索郎扎西-康若梅朵,http://em.21dtv.com/songs/60121991.mkv +郑秀文-狂热地带,http://em.21dtv.com/songs/60093315.mkv +张燊悦-空气早餐,http://em.21dtv.com/songs/60092644.mkv +郑秀文-哭泣游戏,http://em.21dtv.com/songs/60025578.mkv +吴国敬-哭泣游戏,http://em.21dtv.com/songs/60025577.mkv +郑秀文-哭泣游戏(演唱会),http://em.21dtv.com/songs/60025576.mkv +裘海正-亏欠一生,http://em.21dtv.com/songs/60025859.mkv +蔡黄汝-空气人形,http://em.21dtv.com/songs/60062236.mkv +汤宝如-哭泣玛利,http://em.21dtv.com/songs/60025574.mkv +丁丁-铿锵玫瑰,http://em.21dtv.com/songs/60069711.mkv +林忆莲-铿锵玫瑰,http://em.21dtv.com/songs/60025417.mkv +邓灵-开启理想,http://em.21dtv.com/songs/60115434.mkv +孔雀哥哥-孔雀开屏,http://em.21dtv.com/songs/60105744.mkv +蓝奕邦-孔雀开屏,http://em.21dtv.com/songs/60105331.mkv +许志安-空前绝后,http://em.21dtv.com/songs/60025465.mkv +香巴拉组合+泽让+呷让-孔雀锅庄,http://em.21dtv.com/songs/60025503.mkv +关楚耀-空气公园,http://em.21dtv.com/songs/60109997.mkv +刘若颖-孔雀姑娘,http://em.21dtv.com/songs/60103127.mkv +李琼-孔雀飞来,http://em.21dtv.com/songs/60025502.mkv +李霞-苦情的叶,http://em.21dtv.com/songs/60085334.mkv +伊琳-哭泣的雨,http://em.21dtv.com/songs/60025572.mkv +刘德华-口琴别恋,http://em.21dtv.com/songs/60025528.mkv +李芊慧-看破世情(无原唱),http://em.21dtv.com/songs/60025112.mkv +林玉英-看破情份,http://em.21dtv.com/songs/60125788.mkv +林玉英-看破情份,http://em.21dtv.com/songs/60124136.mkv +江蕙-看破的梦,http://em.21dtv.com/songs/60025110.mkv +叶启田-看破的爱,http://em.21dtv.com/songs/60077202.mkv +佚名-看破的爱,http://em.21dtv.com/songs/60025109.mkv +陈盈洁-看破的爱,http://em.21dtv.com/songs/60025108.mkv +ROGER MILLER-king of the road,http://em.21dtv.com/songs/60003157.mkv +女声-keep on loving you,http://em.21dtv.com/songs/60003140.mkv +男声-keep on loving you,http://em.21dtv.com/songs/60003139.mkv +墨緂森林-knocking on heavens door,http://em.21dtv.com/songs/60084734.mkv +毕夏-Knockin On Heavens Door,http://em.21dtv.com/songs/60081564.mkv +佚名-knocking on heavens door,http://em.21dtv.com/songs/60003200.mkv +AVRIL LAVIGNE-knockin on heavens door,http://em.21dtv.com/songs/60003199.mkv +周华健-knockinon heavens door(演唱会),http://em.21dtv.com/songs/60003198.mkv +KATY B-katy on a mission,http://em.21dtv.com/songs/60003134.mkv +罗琦-Knockin On Heavens Door(我是歌手第二期),http://em.21dtv.com/songs/60096430.mkv +丁祥威-看你看我,http://em.21dtv.com/songs/60076241.mkv +对唱-康美之恋,http://em.21dtv.com/songs/60101626.mkv +苗苗-康美之恋,http://em.21dtv.com/songs/60081126.mkv +傅斯彦-康美之恋(演唱会),http://em.21dtv.com/songs/60072107.mkv +谭晶-康美之恋,http://em.21dtv.com/songs/60025172.mkv +周杰伦-快门慢舞,http://em.21dtv.com/songs/60126722.mkv +李心艾+邱凯伟-快门慢舞,http://em.21dtv.com/songs/60081652.mkv +刘德华-苦命梁祝,http://em.21dtv.com/songs/60025638.mkv +萧闳仁-看袂落去,http://em.21dtv.com/songs/60025098.mkv +ABBA-knowing me knowing you,http://em.21dtv.com/songs/60003202.mkv +高安-开门见喜,http://em.21dtv.com/songs/60108162.mkv +JONY J-开门见山,http://em.21dtv.com/songs/60133217.mkv +谭维维-开门见山,http://em.21dtv.com/songs/60108895.mkv +田馥甄-开门见山,http://em.21dtv.com/songs/60085320.mkv +陈一玲-开门见山,http://em.21dtv.com/songs/60083209.mkv +纪敏佳+郁可唯+罗中旭+伍思凯-开门见山,http://em.21dtv.com/songs/60083208.mkv +赵露+汪妤凌-开门见山,http://em.21dtv.com/songs/60069537.mkv +张惠妹-开门见山,http://em.21dtv.com/songs/60024999.mkv +ZAC BROWN BAND-keep me in mind,http://em.21dtv.com/songs/60065626.mkv +范明-昆明画卷,http://em.21dtv.com/songs/60093744.mkv +枫桥-昆明画卷,http://em.21dtv.com/songs/60086659.mkv +群星-开门关门,http://em.21dtv.com/songs/60134127.mkv +刘海辰-开门大吉,http://em.21dtv.com/songs/60108346.mkv +凤凰传奇-开门大吉,http://em.21dtv.com/songs/60094414.mkv +康康-开门大吉,http://em.21dtv.com/songs/60072105.mkv +苏有朋-快乐主义,http://em.21dtv.com/songs/60025814.mkv +张琳-快乐指数,http://em.21dtv.com/songs/60135225.mkv +张琳-快乐指数,http://em.21dtv.com/songs/60097300.mkv +林志颖-快乐至上,http://em.21dtv.com/songs/60025812.mkv +林志颖-快乐至上(演唱会),http://em.21dtv.com/songs/60025811.mkv +孙悦-快乐指南,http://em.21dtv.com/songs/60025810.mkv +孙悦-快乐指南(演唱会),http://em.21dtv.com/songs/60025809.mkv +马剑芬-开罗之恋,http://em.21dtv.com/songs/60100648.mkv +容祖儿-快乐最快,http://em.21dtv.com/songs/60085339.mkv +钟镇涛-苦了自己,http://em.21dtv.com/songs/60025628.mkv +童唱-快乐早晨,http://em.21dtv.com/songs/60025807.mkv +潘玮柏-快乐英雄,http://em.21dtv.com/songs/60076290.mkv +群星合唱-快乐由我,http://em.21dtv.com/songs/60088476.mkv +群星-快乐由我,http://em.21dtv.com/songs/60025804.mkv +泳儿-快乐眼泪,http://em.21dtv.com/songs/60063284.mkv +张惠妹-快乐眼泪,http://em.21dtv.com/songs/60025802.mkv +Davichi-哭了又哭,http://em.21dtv.com/songs/60109811.mkv +闪亮三姐妹-快乐约会,http://em.21dtv.com/songs/60108944.mkv +MOJO乐团-快乐一号,http://em.21dtv.com/songs/60087207.mkv +罗百吉-快乐拥抱,http://em.21dtv.com/songs/60091838.mkv +李玟-快乐摇摆,http://em.21dtv.com/songs/60089340.mkv +李思琳-快乐小猪,http://em.21dtv.com/songs/60097297.mkv +沙宝亮+吉克隽逸-快乐想念,http://em.21dtv.com/songs/60119759.mkv +T.R.Y-快乐新年,http://em.21dtv.com/songs/60025800.mkv +牛奶+咖啡-快乐星猫,http://em.21dtv.com/songs/60025801.mkv +傲艺-狂恋夏季,http://em.21dtv.com/songs/60070856.mkv +佚名-开路先锋,http://em.21dtv.com/songs/60024995.mkv +陈小霞-傀儡尫仔,http://em.21dtv.com/songs/60095991.mkv +佚名-傀儡尪仔,http://em.21dtv.com/songs/60025864.mkv +许美静-快乐无罪,http://em.21dtv.com/songs/60025797.mkv +VEGA-快乐无罪,http://em.21dtv.com/songs/60025796.mkv +许慧欣-快乐为主,http://em.21dtv.com/songs/60025795.mkv +黄凯芹-快乐王子(演唱会),http://em.21dtv.com/songs/60025794.mkv +闪亮三姐妹-傀儡娃娃,http://em.21dtv.com/songs/60025863.mkv +沈凌云-快乐舞曲,http://em.21dtv.com/songs/60105211.mkv +方天昱+方天祎-快乐王牌,http://em.21dtv.com/songs/60116853.mkv +滚石群星-快乐天堂,http://em.21dtv.com/songs/60097298.mkv +泰武国小合唱团-快乐天堂,http://em.21dtv.com/songs/60064443.mkv +王雪晶-快乐天堂,http://em.21dtv.com/songs/60025792.mkv +群星-快乐天堂,http://em.21dtv.com/songs/60025791.mkv +嘉嘉姐弟-快乐天空,http://em.21dtv.com/songs/60121524.mkv +马天宇-快乐童话,http://em.21dtv.com/songs/60025793.mkv +鸿飞-快乐神仙,http://em.21dtv.com/songs/60109765.mkv +郭富城-苦恋视线,http://em.21dtv.com/songs/60093366.mkv +潘嘉丽-快乐搜寻,http://em.21dtv.com/songs/60062800.mkv +李明智+姚斯鑫-凯伦事件,http://em.21dtv.com/songs/60113628.mkv +强辩乐团-卡乐世界,http://em.21dtv.com/songs/60107731.mkv +李晓杰-快乐时间,http://em.21dtv.com/songs/60088020.mkv +黄思婷-快乐生活(无原唱),http://em.21dtv.com/songs/60025780.mkv +至上励合-卡拉是个Girl,http://em.21dtv.com/songs/60100403.mkv +孙楠-快乐时光,http://em.21dtv.com/songs/60025783.mkv +苏小龙-快乐是福,http://em.21dtv.com/songs/60070855.mkv +廖伟力-快乐圣诞,http://em.21dtv.com/songs/60025782.mkv +白冰冰-快乐森巴,http://em.21dtv.com/songs/60025779.mkv +樱花姐妹-快乐人生,http://em.21dtv.com/songs/60071730.mkv +童唱-快乐人生,http://em.21dtv.com/songs/60025778.mkv +童唱-快乐人生(无原唱),http://em.21dtv.com/songs/60025777.mkv +梁小冰-快乐人儿,http://em.21dtv.com/songs/60025775.mkv +陈慧琳-快乐情人,http://em.21dtv.com/songs/60025771.mkv +阿桑古卡-快乐起来,http://em.21dtv.com/songs/60025769.mkv +彭佳慧-快乐群岛,http://em.21dtv.com/songs/60025774.mkv +黄嘉千-快乐难找,http://em.21dtv.com/songs/60025763.mkv +谭晶-昆仑女神,http://em.21dtv.com/songs/60025866.mkv +陈奕迅-快乐男生,http://em.21dtv.com/songs/60025762.mkv +刘惜君-快乐女孩,http://em.21dtv.com/songs/60067172.mkv +香香-快乐女孩,http://em.21dtv.com/songs/60025767.mkv +方皓玟-快乐女孩,http://em.21dtv.com/songs/60025766.mkv +卓依婷-苦乐年华,http://em.21dtv.com/songs/60025623.mkv +李娜-苦乐年华,http://em.21dtv.com/songs/60025622.mkv +范琳琳-苦乐年华,http://em.21dtv.com/songs/60025621.mkv +田维英-快乐年代,http://em.21dtv.com/songs/60123036.mkv +孙楠-快乐梦想,http://em.21dtv.com/songs/60117658.mkv +孙羡真-快乐梦想,http://em.21dtv.com/songs/60025759.mkv +孙楠-快乐梦想,http://em.21dtv.com/songs/60025758.mkv +孙楠-快乐梦想(演唱会),http://em.21dtv.com/songs/60025757.mkv +Rain-克拉恋人,http://em.21dtv.com/songs/60112457.mkv +孙睦涵+朱振铭-快乐老家,http://em.21dtv.com/songs/60110994.mkv +潘玮柏+唐志中-咖喱辣椒,http://em.21dtv.com/songs/60088242.mkv +林志炫-快乐老家,http://em.21dtv.com/songs/60025753.mkv +陈明-快乐老家,http://em.21dtv.com/songs/60025752.mkv +潘玮柏+唐志中-咖哩辣椒,http://em.21dtv.com/songs/60024948.mkv +刘子琪-克鲁伦河,http://em.21dtv.com/songs/60121429.mkv +施文彬-可怜恋花,http://em.21dtv.com/songs/60095562.mkv +呼斯楞-克鲁伦河,http://em.21dtv.com/songs/60094438.mkv +子祺-克鲁伦河,http://em.21dtv.com/songs/60063490.mkv +李娜-克鲁伦河,http://em.21dtv.com/songs/60025377.mkv +佚名-傀儡伉仔,http://em.21dtv.com/songs/60095400.mkv +家家-快乐快了,http://em.21dtv.com/songs/60097299.mkv +梁静茹-可乐戒指(演唱会),http://em.21dtv.com/songs/60025306.mkv +麦穗-快乐节日,http://em.21dtv.com/songs/60025747.mkv +罗琦-快乐机器,http://em.21dtv.com/songs/60102628.mkv +李湘-快乐精灵,http://em.21dtv.com/songs/60025749.mkv +欢子-快乐尖叫,http://em.21dtv.com/songs/60127135.mkv +樊凡+徐梵溪-快乐久久,http://em.21dtv.com/songs/60112813.mkv +周彦宏-快乐简单,http://em.21dtv.com/songs/60072119.mkv +李蕙敏-快乐加冰,http://em.21dtv.com/songs/60025746.mkv +庄学忠-空留回忆,http://em.21dtv.com/songs/60089257.mkv +龙飘飘-空留回忆,http://em.21dtv.com/songs/60025462.mkv +叶枫-空留回忆(演唱会),http://em.21dtv.com/songs/60025461.mkv +谢霆锋-恐龙化石,http://em.21dtv.com/songs/60025508.mkv +阿哲帅打工一族-快乐回家,http://em.21dtv.com/songs/60096523.mkv +TFBOYS-快乐环岛,http://em.21dtv.com/songs/60104741.mkv +蔡雯君-快乐喝吧,http://em.21dtv.com/songs/60131796.mkv +SWEETY-快乐跟踪,http://em.21dtv.com/songs/60083236.mkv +钱薇娟-快乐高手,http://em.21dtv.com/songs/60025740.mkv +李萱-快乐的笑,http://em.21dtv.com/songs/60111172.mkv +巴萨亚-快乐的跳,http://em.21dtv.com/songs/60135177.mkv +闫泽-困龙得水,http://em.21dtv.com/songs/60134371.mkv +罗时丰-可怜的人,http://em.21dtv.com/songs/60076256.mkv +佚名-可怜的人,http://em.21dtv.com/songs/60025318.mkv +叶启田-可怜的人,http://em.21dtv.com/songs/60025317.mkv +李昱和-快乐的你,http://em.21dtv.com/songs/60127036.mkv +许嵩-可怜的猫,http://em.21dtv.com/songs/60025315.mkv +AJ张杰-哭了多久,http://em.21dtv.com/songs/60083231.mkv +谢阮成-可怜的狗,http://em.21dtv.com/songs/60127409.mkv +黑龙-快乐的哥,http://em.21dtv.com/songs/60110735.mkv +慕容婕柃-快乐成双,http://em.21dtv.com/songs/60131441.mkv +REBORN-快乐成双,http://em.21dtv.com/songs/60025706.mkv +孙慧莹-快乐成群,http://em.21dtv.com/songs/60025705.mkv +张惠妹-快乐畅开,http://em.21dtv.com/songs/60025704.mkv +高演凯-快乐出发,http://em.21dtv.com/songs/60109759.mkv +群星-快乐出发,http://em.21dtv.com/songs/60088456.mkv +YOYO-快乐成长,http://em.21dtv.com/songs/60131123.mkv +潘玮柏+张韶涵-快乐崇拜,http://em.21dtv.com/songs/60025707.mkv +关喆-快乐冰雪,http://em.21dtv.com/songs/60118365.mkv +田震-快乐悲伤,http://em.21dtv.com/songs/60091768.mkv +肖飞-卡拉不ok,http://em.21dtv.com/songs/60076223.mkv +叶振棠+吕珊-快乐伴侣(演唱会),http://em.21dtv.com/songs/60025697.mkv +何洁-快乐宝贝,http://em.21dtv.com/songs/60087306.mkv +谈莉娜-快乐宝贝,http://em.21dtv.com/songs/60025700.mkv +青春美少女-快乐宝贝,http://em.21dtv.com/songs/60025699.mkv +杨千嬅-快乐哀愁,http://em.21dtv.com/songs/60025696.mkv +廖峻-空崁仔兄,http://em.21dtv.com/songs/60025456.mkv +林玉英+陈百潭-空壳支票,http://em.21dtv.com/songs/60095682.mkv +凤凰传奇-可可西里,http://em.21dtv.com/songs/60025303.mkv +萧正楠-苦苦相逼,http://em.21dtv.com/songs/60093114.mkv +六哲-苦苦挽留,http://em.21dtv.com/songs/60085333.mkv +爱歌+随风-苦苦守候,http://em.21dtv.com/songs/60117907.mkv +项亚蕻-空空如也,http://em.21dtv.com/songs/60126442.mkv +汪峰-空空如也,http://em.21dtv.com/songs/60102464.mkv +杰子-坎坷情路,http://em.21dtv.com/songs/60129284.mkv +许志安+陈慧珊-苦口良药,http://em.21dtv.com/songs/60025617.mkv +戴爱玲-可苦可乐,http://em.21dtv.com/songs/60080473.mkv +金丹-空空空空,http://em.21dtv.com/songs/60131902.mkv +王宜雨-空空结局,http://em.21dtv.com/songs/60117915.mkv +北方狼-苦苦红尘,http://em.21dtv.com/songs/60118405.mkv +林凡-空空的心,http://em.21dtv.com/songs/60025459.mkv +曾庆瑜-空空的心,http://em.21dtv.com/songs/60025458.mkv +童安格-开阔的心,http://em.21dtv.com/songs/60024994.mkv +江蕙-阔阔的天,http://em.21dtv.com/songs/60025885.mkv +小凤凤-苦苦的酒,http://em.21dtv.com/songs/60025619.mkv +朱明-苦苦的等,http://em.21dtv.com/songs/60025618.mkv +关诗琪-快快长大,http://em.21dtv.com/songs/60101924.mkv +XY兄弟-开口不说,http://em.21dtv.com/songs/60130012.mkv +细哥细妹-客家之恋,http://em.21dtv.com/songs/60123064.mkv +张惠妹-看见自己(演唱会),http://em.21dtv.com/songs/60025091.mkv +彭莉-看见真爱,http://em.21dtv.com/songs/60122761.mkv +佚名-看见真爱(无原唱),http://em.21dtv.com/songs/60025090.mkv +游鸿明-靠近一点,http://em.21dtv.com/songs/60025206.mkv +方少姗-苦酒一杯,http://em.21dtv.com/songs/60093827.mkv +徐秋菊-客家乡亲,http://em.21dtv.com/songs/60025404.mkv +黄连煜-客家小炒,http://em.21dtv.com/songs/60025405.mkv +何易峰-客家舞台,http://em.21dtv.com/songs/60025403.mkv +谭畅-看见未来,http://em.21dtv.com/songs/60088677.mkv +谢雷-苦酒神仙,http://em.21dtv.com/songs/60070853.mkv +刘依纯-看见曙光,http://em.21dtv.com/songs/60114416.mkv +顺子-看见star blue,http://em.21dtv.com/songs/60025079.mkv +谢金燕-苦酒入喉,http://em.21dtv.com/songs/60025614.mkv +刘和刚-科技强军,http://em.21dtv.com/songs/60025216.mkv +谢雷-苦酒满杯,http://em.21dtv.com/songs/60025613.mkv +群星-苦酒满杯(演唱会),http://em.21dtv.com/songs/60025612.mkv +吕珊+谢雷-苦酒满杯(演唱会),http://em.21dtv.com/songs/60025611.mkv +佚名-苦酒落喉,http://em.21dtv.com/songs/60025610.mkv +谢金燕-苦酒落喉,http://em.21dtv.com/songs/60025609.mkv +施文彬-苦酒恋歌,http://em.21dtv.com/songs/60095573.mkv +晓枫-客家酒令,http://em.21dtv.com/songs/60108540.mkv +张启辉-客家姑娘,http://em.21dtv.com/songs/60076266.mkv +景心妍-苦尽甘来,http://em.21dtv.com/songs/60066102.mkv +客家仙子-客家风云,http://em.21dtv.com/songs/60025395.mkv +刘平芳-客家本色,http://em.21dtv.com/songs/60025394.mkv +谢其国-客家本色(无原唱),http://em.21dtv.com/songs/60025393.mkv +王菲-kisses in the wind(演唱会),http://em.21dtv.com/songs/60003188.mkv +赵小熙-Kiss,http://em.21dtv.com/songs/60126231.mkv +Trash-Kiss,http://em.21dtv.com/songs/60107449.mkv +Years&years-King,http://em.21dtv.com/songs/60112475.mkv +安宇-狂欢之夜,http://em.21dtv.com/songs/60076295.mkv +詹曼玲-看乎伊开,http://em.21dtv.com/songs/60025076.mkv +CHOUCHO-あの空に还る未来で,http://em.21dtv.com/songs/60101208.mkv +任岩-哭红了眼,http://em.21dtv.com/songs/60025557.mkv +孙艳-快回来吧(故事情节),http://em.21dtv.com/songs/60101320.mkv +梁静茹-看海计划,http://em.21dtv.com/songs/60025073.mkv +林俊逸-开花结果,http://em.21dtv.com/songs/60101656.mkv +谢霆锋-苦海孤雏,http://em.21dtv.com/songs/60025599.mkv +汤子星-开花的树(演唱会),http://em.21dtv.com/songs/60076226.mkv +叶瑷菱-可恨的人,http://em.21dtv.com/songs/60025297.mkv +詹雅雯+詹雅云-跨海大桥,http://em.21dtv.com/songs/60126175.mkv +李克勤-k歌之王,http://em.21dtv.com/songs/60003223.mkv +陈奕迅-k歌之王,http://em.21dtv.com/songs/60003222.mkv +洪卓立-k歌之王(演唱会),http://em.21dtv.com/songs/60003220.mkv +陈奕迅-k歌之王(演唱会),http://em.21dtv.com/songs/60003219.mkv +熊照华-哭过之后,http://em.21dtv.com/songs/60124232.mkv +郑融-k歌之后,http://em.21dtv.com/songs/60003218.mkv +许巍-空谷幽兰,http://em.21dtv.com/songs/60083225.mkv +马建军-哭过以后,http://em.21dtv.com/songs/60108159.mkv +子枫-哭过以后,http://em.21dtv.com/songs/60061338.mkv +MOJO乐团-快歌一号,http://em.21dtv.com/songs/60025683.mkv +那英-哭过以后,http://em.21dtv.com/songs/60025556.mkv +顾凯-凯歌永唱,http://em.21dtv.com/songs/60080524.mkv +佚名-刻骨相思,http://em.21dtv.com/songs/60025386.mkv +蔡秋凤-快给我爱,http://em.21dtv.com/songs/60099481.mkv +任贤齐-哭个痛快,http://em.21dtv.com/songs/60025552.mkv +任贤齐-哭个痛快(演唱会),http://em.21dtv.com/songs/60025551.mkv +黄品冠+梁静茹-k歌情人,http://em.21dtv.com/songs/60003217.mkv +郑源-刻骨铭心,http://em.21dtv.com/songs/60076265.mkv +高胜美-刻骨铭心,http://em.21dtv.com/songs/60025384.mkv +卜学亮-刻骨铭心,http://em.21dtv.com/songs/60025383.mkv +容祖儿-可歌可泣(演唱会),http://em.21dtv.com/songs/60025291.mkv +卢巧音-快感飞行(演唱会),http://em.21dtv.com/songs/60025680.mkv +大鹏-恐高的鸟,http://em.21dtv.com/songs/60112604.mkv +董成鹏-恐高的鸟,http://em.21dtv.com/songs/60112203.mkv +童安格-跨过彩虹,http://em.21dtv.com/songs/60025660.mkv +左小祖咒-咖啡时光,http://em.21dtv.com/songs/60067149.mkv +雅希-咖啡陪你,http://em.21dtv.com/songs/60119037.mkv +甲子蕙-咖啡美酒,http://em.21dtv.com/songs/60024947.mkv +旺福乐团-咖啡恋曲,http://em.21dtv.com/songs/60024946.mkv +周惠-咖啡季节,http://em.21dtv.com/songs/60064423.mkv +沈黎晖-咖啡胡椒,http://em.21dtv.com/songs/60024942.mkv +HOTCHA-咖啡或茶,http://em.21dtv.com/songs/60024944.mkv +FREEZE-咖啡或茶,http://em.21dtv.com/songs/60024943.mkv +BEYOND-可否冲破,http://em.21dtv.com/songs/60025288.mkv +SOLER-狂风爆雨,http://em.21dtv.com/songs/60087218.mkv +SOLER-狂风暴雨(演唱会),http://em.21dtv.com/songs/60025834.mkv +林一峰-咖啡+伴侣(演唱会),http://em.21dtv.com/songs/60024935.mkv +佚名-kiss from a rose,http://em.21dtv.com/songs/60003160.mkv +SEAL-kiss from a rose,http://em.21dtv.com/songs/60003159.mkv +林玉英-空额支票,http://em.21dtv.com/songs/60095696.mkv +方瑞娥-垦丁之恋,http://em.21dtv.com/songs/60125616.mkv +奚丽娜-康定月亮,http://em.21dtv.com/songs/60085324.mkv +林宥嘉-口的形状,http://em.21dtv.com/songs/60100894.mkv +林宥嘉+大象体操-口的形状(演唱会),http://em.21dtv.com/songs/60100206.mkv +丁于-快递小王,http://em.21dtv.com/songs/60097301.mkv +许家豪+任妙音-快递小哥,http://em.21dtv.com/songs/60131808.mkv +关诗敏-快递甜心,http://em.21dtv.com/songs/60069547.mkv +萧敬腾-开到荼靡(演唱会),http://em.21dtv.com/songs/60061329.mkv +王菲-开到荼靡,http://em.21dtv.com/songs/60024984.mkv +黄阅-哭到天亮,http://em.21dtv.com/songs/60025549.mkv +阿兰 达瓦卓玛-康定情缘,http://em.21dtv.com/songs/60130821.mkv +凤凰传奇-康定情缘,http://em.21dtv.com/songs/60025171.mkv +扎西尼玛-康定情人,http://em.21dtv.com/songs/60100873.mkv +SKY-口袋情人,http://em.21dtv.com/songs/60025523.mkv +阿佳组合-康定情歌,http://em.21dtv.com/songs/60100537.mkv +肖懿航-康定情歌,http://em.21dtv.com/songs/60096441.mkv +张江+馨梓-康定情歌,http://em.21dtv.com/songs/60091121.mkv +含笑+馨梓-康定情歌,http://em.21dtv.com/songs/60089730.mkv +洪小乔-康定情歌,http://em.21dtv.com/songs/60088222.mkv +千斤演唱组-康定情歌,http://em.21dtv.com/songs/60087441.mkv +宁可+孙维良-康定情歌(演唱会),http://em.21dtv.com/songs/60083216.mkv +玖月奇迹-康定情歌(演唱会),http://em.21dtv.com/songs/60083215.mkv +王拓-康定情歌,http://em.21dtv.com/songs/60081534.mkv +宋祖英+蒲巴甲+苏有朋-康定情歌,http://em.21dtv.com/songs/60076245.mkv +文博-康定情歌,http://em.21dtv.com/songs/60070840.mkv +胡斌-康定情歌,http://em.21dtv.com/songs/60070839.mkv +吴涤清-康定情歌(演唱会),http://em.21dtv.com/songs/60067160.mkv +孙维良+宁可-康定情歌(演唱会),http://em.21dtv.com/songs/60067159.mkv +卓依婷-康定情歌,http://em.21dtv.com/songs/60025170.mkv +张惠妹-康定情歌,http://em.21dtv.com/songs/60025169.mkv +叶佩英-康定情歌,http://em.21dtv.com/songs/60025168.mkv +童唱-康定情歌,http://em.21dtv.com/songs/60025167.mkv +罗时丰-康定情歌,http://em.21dtv.com/songs/60025166.mkv +凤凰传奇-康定情歌,http://em.21dtv.com/songs/60025165.mkv +常宽-康定情歌,http://em.21dtv.com/songs/60025164.mkv +王绎龙-康电情歌,http://em.21dtv.com/songs/60025161.mkv +门丽-卡多其多,http://em.21dtv.com/songs/60067151.mkv +冯之诚-看到了痛,http://em.21dtv.com/songs/60025065.mkv +龙泽索南-康定恋歌,http://em.21dtv.com/songs/60116425.mkv +容祖儿-开动快乐,http://em.21dtv.com/songs/60024985.mkv +锦绣二重唱-快点快点(演唱会),http://em.21dtv.com/songs/60025677.mkv +高翊菲-崆峒绝恋,http://em.21dtv.com/songs/60121165.mkv +汪峰-空的发狂,http://em.21dtv.com/songs/60102463.mkv +甲子慧-空等的爱,http://em.21dtv.com/songs/60100932.mkv +王菀之-开到茶糜,http://em.21dtv.com/songs/60088317.mkv +亦帆-砍掉重练,http://em.21dtv.com/songs/60072106.mkv +黄湘怡-快递爱情,http://em.21dtv.com/songs/60025676.mkv +芭比-快餐野花,http://em.21dtv.com/songs/60025672.mkv +文夏-快车小姐,http://em.21dtv.com/songs/60077705.mkv +佚名-快车小姐,http://em.21dtv.com/songs/60025674.mkv +蔡凤凰-快车小姐,http://em.21dtv.com/songs/60025673.mkv +群星-开创未来,http://em.21dtv.com/songs/60076225.mkv +佚名-ku cha ku cha,http://em.21dtv.com/songs/60003214.mkv +佚名-空白牺牲,http://em.21dtv.com/songs/60025432.mkv +黄乙玲-空白牺牲,http://em.21dtv.com/songs/60025431.mkv +杜雯媞-空白世界,http://em.21dtv.com/songs/60025430.mkv +李克勤+容祖儿-刻不容缓,http://em.21dtv.com/songs/60025380.mkv +李克勤+容祖儿-刻不容缓(演唱会),http://em.21dtv.com/songs/60025379.mkv +多杰邓珠+泽仁多吉-康巴男儿,http://em.21dtv.com/songs/60025156.mkv +陈奕迅-开不了心,http://em.21dtv.com/songs/60024977.mkv +周杰伦-开不了口,http://em.21dtv.com/songs/60024976.mkv +周杰伦-开不了口(演唱会),http://em.21dtv.com/songs/60024975.mkv +刘德华-可不可以,http://em.21dtv.com/songs/60133405.mkv +廖文强-可不可以,http://em.21dtv.com/songs/60131387.mkv +李祥祥+吴雨霏-可不可以,http://em.21dtv.com/songs/60124089.mkv +唐柏宁-可不可以,http://em.21dtv.com/songs/60123785.mkv +刘德华-可不可以(HD),http://em.21dtv.com/songs/10012639.mkv +闪亮三姐妹-可不可以,http://em.21dtv.com/songs/60025276.mkv +刘德华-可不可以,http://em.21dtv.com/songs/60025275.mkv +刘德华-可不可以(演唱会),http://em.21dtv.com/songs/60025274.mkv +佚名-可不可以(无原唱),http://em.21dtv.com/songs/60025273.mkv +游鸿明-狂悲狂喜,http://em.21dtv.com/songs/60025829.mkv +动力火车-可不可能,http://em.21dtv.com/songs/60025272.mkv +亦勋-捆绑寂寞,http://em.21dtv.com/songs/60099076.mkv +亚东-康巴汉子(演唱会),http://em.21dtv.com/songs/60025155.mkv +香巴拉组合-康巴姑娘,http://em.21dtv.com/songs/60076244.mkv +符致逸-恐怖份子,http://em.21dtv.com/songs/60134054.mkv +格桑志玛+格绒格西-康巴服饰,http://em.21dtv.com/songs/60090010.mkv +叶文辉-口不对心,http://em.21dtv.com/songs/60025516.mkv +刘小慧-口不对心,http://em.21dtv.com/songs/60025515.mkv +黎明-口不对心,http://em.21dtv.com/songs/60025514.mkv +春诚-苦逼的人,http://em.21dtv.com/songs/60111134.mkv +林玉英-空白的爱,http://em.21dtv.com/songs/60025425.mkv +姚婷-哭不出来,http://em.21dtv.com/songs/60110124.mkv +卓义峰-哭不出来,http://em.21dtv.com/songs/60098168.mkv +陶喆-哭不出来,http://em.21dtv.com/songs/60095151.mkv +陈羽凡+贾剑龙-哭不出来,http://em.21dtv.com/songs/60095143.mkv +何洁-哭不出来(演唱会),http://em.21dtv.com/songs/60072116.mkv +张惠妹-哭不出来(演唱会),http://em.21dtv.com/songs/60025546.mkv +迪克牛仔-哭不出来(演唱会),http://em.21dtv.com/songs/60025545.mkv +台风-狂爱战队,http://em.21dtv.com/songs/60025828.mkv +王菲-可爱眼睛,http://em.21dtv.com/songs/60025270.mkv +S.H.E-可爱万岁,http://em.21dtv.com/songs/60025268.mkv +姜可心-可爱甜心(HD),http://em.21dtv.com/songs/10012766.mkv +THE MANHATTENS-kiss and say goodbye,http://em.21dtv.com/songs/60003158.mkv +周杰伦-可爱女人,http://em.21dtv.com/songs/60025267.mkv +马睿瑄-可爱女孩,http://em.21dtv.com/songs/60114898.mkv +张信哲-可爱美眉,http://em.21dtv.com/songs/60111855.mkv +张信哲-可爱美眉,http://em.21dtv.com/songs/60025266.mkv +范逸臣-酷爱乐团,http://em.21dtv.com/songs/60088560.mkv +郑秀文-可爱可恨,http://em.21dtv.com/songs/60025265.mkv +蔡振南-可爱可恨,http://em.21dtv.com/songs/60025264.mkv +黄鹤翔-可爱姑娘,http://em.21dtv.com/songs/60025263.mkv +陈熙-可爱的她,http://em.21dtv.com/songs/60025251.mkv +李雨伦+于小琬-可爱的你,http://em.21dtv.com/songs/60129256.mkv +乔任梁-可爱的你,http://em.21dtv.com/songs/60025246.mkv +罗时丰-可爱的马,http://em.21dtv.com/songs/60076249.mkv +庄学忠-可爱的马,http://em.21dtv.com/songs/60025239.mkv +佚名-可爱的马,http://em.21dtv.com/songs/60025238.mkv +高中群-可爱的家,http://em.21dtv.com/songs/60025234.mkv +董事长乐团-可爱的车,http://em.21dtv.com/songs/60025228.mkv +白冰冰-可爱宝贝,http://em.21dtv.com/songs/60025224.mkv +容中尔甲-九寨之子,http://em.21dtv.com/songs/60024370.mkv +阿英+郎吉次仁-家住这里,http://em.21dtv.com/songs/60076008.mkv +容中尔甲-九寨之恋,http://em.21dtv.com/songs/60024369.mkv +陈悠悠-决战紫禁,http://em.21dtv.com/songs/60097246.mkv +TWINS-假装正经,http://em.21dtv.com/songs/60092205.mkv +车晓菲-君子之风,http://em.21dtv.com/songs/60112986.mkv +李强-近在咫尺,http://em.21dtv.com/songs/60116909.mkv +冯巩+陶红-家中有贼,http://em.21dtv.com/songs/60089663.mkv +肖燕-家在宜州,http://em.21dtv.com/songs/60076005.mkv +陈小涛-就这样走,http://em.21dtv.com/songs/60024687.mkv +群星-金枝玉叶,http://em.21dtv.com/songs/60024103.mkv +井柏然-井字游戏,http://em.21dtv.com/songs/60024233.mkv +潘裕文-近在眼前,http://em.21dtv.com/songs/60024169.mkv +张信哲-假装有你,http://em.21dtv.com/songs/60089850.mkv +BY2-就这样吗,http://em.21dtv.com/songs/60085310.mkv +张纹嘉-假装愉快,http://em.21dtv.com/songs/60083127.mkv +太极乐队-今朝有酒,http://em.21dtv.com/songs/60062973.mkv +王磊-酒醉以后,http://em.21dtv.com/songs/60083191.mkv +张清芳-加州阳光,http://em.21dtv.com/songs/60022982.mkv +佚名-加州阳光,http://em.21dtv.com/songs/60022981.mkv +黑鸭子-家在远方,http://em.21dtv.com/songs/60133139.mkv +许鹤缤-家在远方,http://em.21dtv.com/songs/60086622.mkv +黑龙-精忠岳飞,http://em.21dtv.com/songs/60076159.mkv +熊胡杰-就这样吧,http://em.21dtv.com/songs/60125888.mkv +寂悸-假装哑巴,http://em.21dtv.com/songs/60125418.mkv +丁国琳+李罗-就这样吧,http://em.21dtv.com/songs/60067142.mkv +薛家燕-家中喜宴,http://em.21dtv.com/songs/60023049.mkv +邓健泓-借醉行凶,http://em.21dtv.com/songs/60023735.mkv +任贤齐-橘子香水,http://em.21dtv.com/songs/60024709.mkv +任贤齐-桔子香水,http://em.21dtv.com/songs/60024696.mkv +弦子-箭在弦上,http://em.21dtv.com/songs/60023323.mkv +帅鹏-家在心里,http://em.21dtv.com/songs/60087742.mkv +李珂-家在心里(演唱会),http://em.21dtv.com/songs/60023047.mkv +雷佳+吴娜+徐子崴+帅鹏-家在心里(演唱会),http://em.21dtv.com/songs/60023046.mkv +徐千雅-记住乡愁,http://em.21dtv.com/songs/60125562.mkv +钟欣桐+陈伟霆-就在现场(演唱会),http://em.21dtv.com/songs/60024672.mkv +刘志丹-家在西北,http://em.21dtv.com/songs/60107523.mkv +刘志丹-家在西北,http://em.21dtv.com/songs/60067110.mkv +张学友-尽在无言(无原唱),http://em.21dtv.com/songs/60024150.mkv +扎西-九寨天堂,http://em.21dtv.com/songs/60091250.mkv +刘美麟-近在天边,http://em.21dtv.com/songs/60086638.mkv +古巨基-决战十一,http://em.21dtv.com/songs/60024799.mkv +梦然-假装洒脱,http://em.21dtv.com/songs/60067113.mkv +雾影-静竹禅寺,http://em.21dtv.com/songs/60061314.mkv +黄立纲-决战时刻,http://em.21dtv.com/songs/60072100.mkv +蔡国庆-军中帅哥,http://em.21dtv.com/songs/60085318.mkv +谷峰-见字如面,http://em.21dtv.com/songs/60023297.mkv +谷峰-见字如面(演唱会),http://em.21dtv.com/songs/60023296.mkv +容中尔甲-九寨情缘,http://em.21dtv.com/songs/60024368.mkv +郑少秋-决战前夕,http://em.21dtv.com/songs/60024798.mkv +郑少秋-决战前夕(演唱会),http://em.21dtv.com/songs/60024797.mkv +邓丽君-君在前哨(演唱会),http://em.21dtv.com/songs/60024931.mkv +南拳妈妈-橘子汽水,http://em.21dtv.com/songs/60024708.mkv +南拳妈妈-桔子汽水,http://em.21dtv.com/songs/60024695.mkv +陈冠霖-戒指情人,http://em.21dtv.com/songs/60061300.mkv +周柏豪+卫兰-近在千里,http://em.21dtv.com/songs/60132301.mkv +阿温-军中情怀,http://em.21dtv.com/songs/60128511.mkv +金山-甲子情怀,http://em.21dtv.com/songs/60117291.mkv +嘉布洛绒-九寨女神,http://em.21dtv.com/songs/60064414.mkv +木棉-家在哪里,http://em.21dtv.com/songs/60110254.mkv +杨柳-军中女孩,http://em.21dtv.com/songs/60088074.mkv +ZEN-交织怒火,http://em.21dtv.com/songs/60023460.mkv +刘小娜-军中女儿,http://em.21dtv.com/songs/60024922.mkv +金岩-军中女兵,http://em.21dtv.com/songs/60085317.mkv +黄婕-见证明天(无原唱),http://em.21dtv.com/songs/60023295.mkv +方琦-家住临沂,http://em.21dtv.com/songs/60128041.mkv +苗雨-家住临沂,http://em.21dtv.com/songs/60076007.mkv +刘小娜-军中来信,http://em.21dtv.com/songs/60024919.mkv +鱼藤乐团-酒醉了我,http://em.21dtv.com/songs/60119065.mkv +陈慧琳-疾走罗拉,http://em.21dtv.com/songs/60093466.mkv +小曾-军中绿花,http://em.21dtv.com/songs/60024921.mkv +龚月-军中绿花,http://em.21dtv.com/songs/60024920.mkv +英文-加洲旅馆,http://em.21dtv.com/songs/60090183.mkv +小峰峰-假装开心,http://em.21dtv.com/songs/60061288.mkv +东来东往-假装快乐,http://em.21dtv.com/songs/60109927.mkv +上明-结子开花,http://em.21dtv.com/songs/60134845.mkv +群星-就在今夜,http://em.21dtv.com/songs/60097449.mkv +佚名-就在今夜,http://em.21dtv.com/songs/60024669.mkv +达明一派-尽在今夜(演唱会),http://em.21dtv.com/songs/60024149.mkv +王杰-酒醉酒醒(演唱会),http://em.21dtv.com/songs/60024494.mkv +合唱-就在今天,http://em.21dtv.com/songs/60090797.mkv +尚华-剑指江山,http://em.21dtv.com/songs/60083141.mkv +张薇薇+张莉莉-军中姐妹(演唱会),http://em.21dtv.com/songs/60024918.mkv +亦帆-禁止回转,http://em.21dtv.com/songs/60072088.mkv +泽郎多杰-九寨红叶,http://em.21dtv.com/songs/60091611.mkv +新秀团队-假装回忆,http://em.21dtv.com/songs/60076026.mkv +周华安-君子好逑,http://em.21dtv.com/songs/60127842.mkv +许佳慧-君子好逑,http://em.21dtv.com/songs/60123164.mkv +吴昊-君子好逑,http://em.21dtv.com/songs/60024932.mkv +马旭东+马剑芬-假装怀念,http://em.21dtv.com/songs/60120144.mkv +周艺晴-家在河南,http://em.21dtv.com/songs/60108400.mkv +颜泉+詹千缘-橘子红了,http://em.21dtv.com/songs/60024707.mkv +黄磊-橘子红了,http://em.21dtv.com/songs/60024706.mkv +黄磊-桔子红了,http://em.21dtv.com/songs/60024694.mkv +刘沛洋-甲子花开,http://em.21dtv.com/songs/60104835.mkv +容中尔甲-九寨故乡,http://em.21dtv.com/songs/60024367.mkv +齐旦布-九寨姑娘,http://em.21dtv.com/songs/60024366.mkv +流浪的蛙蛙+Assen捷-剑指风流,http://em.21dtv.com/songs/60102482.mkv +王力宏-竞争对手,http://em.21dtv.com/songs/60088279.mkv +潘玮柏-决战斗室,http://em.21dtv.com/songs/60024794.mkv +佚名-酒醉的梦,http://em.21dtv.com/songs/60024477.mkv +林子娟-咀咒的话,http://em.21dtv.com/songs/60024710.mkv +张寒-酒醉当歌,http://em.21dtv.com/songs/60085306.mkv +陈小云-酒醉的歌,http://em.21dtv.com/songs/60024476.mkv +单色凌-假装淡定,http://em.21dtv.com/songs/60086623.mkv +韩传忠-家在东北,http://em.21dtv.com/songs/60083121.mkv +庞龙-家在东北,http://em.21dtv.com/songs/60023044.mkv +侯旭-家在东北(演唱会),http://em.21dtv.com/songs/60023043.mkv +阿沁+曾之乔-见招拆招,http://em.21dtv.com/songs/60117314.mkv +李克勤-决战草原,http://em.21dtv.com/songs/60066091.mkv +凌之轩-剑斩沧桑,http://em.21dtv.com/songs/60126628.mkv +曹尔真-接着操练,http://em.21dtv.com/songs/60064392.mkv +天悦-精忠报我,http://em.21dtv.com/songs/60076158.mkv +何维健-假装不了,http://em.21dtv.com/songs/60115684.mkv +许亦婷-假装不见,http://em.21dtv.com/songs/60076024.mkv +春天-精忠报国,http://em.21dtv.com/songs/60087130.mkv +赵本水-精忠报国,http://em.21dtv.com/songs/60076157.mkv +屠洪纲-精忠报国,http://em.21dtv.com/songs/60024227.mkv +EO2-兼职绑匪,http://em.21dtv.com/songs/60092170.mkv +豫剧-家住安源,http://em.21dtv.com/songs/60134561.mkv +储兰兰-家住安源,http://em.21dtv.com/songs/60076006.mkv +京剧-家住安源,http://em.21dtv.com/songs/60023050.mkv +苏振华-假装爱过,http://em.21dtv.com/songs/60134160.mkv +陈晓东-简约主义,http://em.21dtv.com/songs/60023276.mkv +张煜枫-咎由自取,http://em.21dtv.com/songs/60135222.mkv +何奕-建元之情,http://em.21dtv.com/songs/60069504.mkv +顾莉雅-今夜最美,http://em.21dtv.com/songs/60123368.mkv +菲麦尔-隽永之恋,http://em.21dtv.com/songs/60100435.mkv +王思远-九阴真经,http://em.21dtv.com/songs/60124259.mkv +周澎-加油中国,http://em.21dtv.com/songs/60111769.mkv +庞龙-加油中国,http://em.21dtv.com/songs/60105810.mkv +庞龙-加油中国(演唱会),http://em.21dtv.com/songs/60022978.mkv +甲子慧+吴欣达-金言玉语,http://em.21dtv.com/songs/60095806.mkv +蔡大生+王馥荔-今夜月圆,http://em.21dtv.com/songs/60024032.mkv +冷酷-今夜有你,http://em.21dtv.com/songs/60121412.mkv +群星-今夜月明,http://em.21dtv.com/songs/60024030.mkv +李治廷+黄龄-九月鹰飞,http://em.21dtv.com/songs/60105145.mkv +陈魁-记忆崖边,http://em.21dtv.com/songs/60085256.mkv +PMC给力团+黄馨仪-加油雅安,http://em.21dtv.com/songs/60085263.mkv +梁咏琪-家有小熊,http://em.21dtv.com/songs/60023035.mkv +佚名-家有闲妻,http://em.21dtv.com/songs/60023034.mkv +谢金晶-今夜想你,http://em.21dtv.com/songs/60105374.mkv +雨金-今夜星光,http://em.21dtv.com/songs/60066075.mkv +郁钧剑-军营小唱,http://em.21dtv.com/songs/60024915.mkv +金波-军营相别,http://em.21dtv.com/songs/60108935.mkv +刘维维+王晨-今夜无眠,http://em.21dtv.com/songs/60118398.mkv +韩婷-今夜无眠,http://em.21dtv.com/songs/60109004.mkv +群星-今夜无眠,http://em.21dtv.com/songs/60064405.mkv +千荷-今夜无眠,http://em.21dtv.com/songs/60064404.mkv +周冰倩-今夜无眠(演唱会),http://em.21dtv.com/songs/60024010.mkv +群星-今夜无眠(演唱会),http://em.21dtv.com/songs/60024009.mkv +韩磊-今夜无风,http://em.21dtv.com/songs/60024008.mkv +江蕙-今夜无伴(无原唱),http://em.21dtv.com/songs/60024007.mkv +群星-就因为爱,http://em.21dtv.com/songs/60024668.mkv +刘其贤-静夜思乡,http://em.21dtv.com/songs/60094829.mkv +田亮+万沛鑫+王柯达+亓航-骄阳似我,http://em.21dtv.com/songs/60103484.mkv +贺一航-记忆碎片,http://em.21dtv.com/songs/60118065.mkv +深白色2人组-记忆森林,http://em.21dtv.com/songs/60022724.mkv +蔡国庆-军营四季,http://em.21dtv.com/songs/60076215.mkv +顾莉雅-九月十九,http://em.21dtv.com/songs/60024363.mkv +姜育恒-戒烟如你,http://em.21dtv.com/songs/60095192.mkv +杨语莲-戒烟情缘,http://em.21dtv.com/songs/60023709.mkv +玖月奇迹-玖月奇迹(演唱会),http://em.21dtv.com/songs/60067139.mkv +安仕伟-记忆青春,http://em.21dtv.com/songs/60108444.mkv +翼势力-记忆拼图,http://em.21dtv.com/songs/60022723.mkv +言承旭-记忆拼图,http://em.21dtv.com/songs/60022722.mkv +魏晨+阿兰-加油你有ME,http://em.21dtv.com/songs/60089015.mkv +巨敏-镜月凝思,http://em.21dtv.com/songs/60125459.mkv +杨洪基+林萍-今夜难眠,http://em.21dtv.com/songs/60023978.mkv +麦玮婷-旧缘难了,http://em.21dtv.com/songs/60024573.mkv +老猫-就要你红,http://em.21dtv.com/songs/60131737.mkv +王蓉-就要你红,http://em.21dtv.com/songs/60130604.mkv +王蓉-就要你红,http://em.21dtv.com/songs/60129420.mkv +卓依婷-金玉满堂,http://em.21dtv.com/songs/60024098.mkv +高登-静音模式,http://em.21dtv.com/songs/60123382.mkv +薛家燕+合唱团-家燕妈妈(演唱会),http://em.21dtv.com/songs/60076002.mkv +薛家燕-家燕妈妈,http://em.21dtv.com/songs/60023032.mkv +贾青-金玉良缘,http://em.21dtv.com/songs/60100478.mkv +李琦-金玉良缘,http://em.21dtv.com/songs/60100150.mkv +张智成-金玉良言,http://em.21dtv.com/songs/60064407.mkv +佚名-金玉良缘,http://em.21dtv.com/songs/60024096.mkv +邵雁-金玉良缘,http://em.21dtv.com/songs/60024095.mkv +陈明+韩磊-金玉良缘,http://em.21dtv.com/songs/60024094.mkv +瑶瑶-寄语聆听,http://em.21dtv.com/songs/60117937.mkv +杨钰莹-娇杨旅情,http://em.21dtv.com/songs/60091415.mkv +哚丫丫-浸月流年,http://em.21dtv.com/songs/60110946.mkv +佚名-今又龙年,http://em.21dtv.com/songs/60024033.mkv +莫少聪-九月离开,http://em.21dtv.com/songs/60024362.mkv +郭书瑶-就要k歌,http://em.21dtv.com/songs/60076189.mkv +SISP女神-加油加油,http://em.21dtv.com/songs/60123536.mkv +吴雨霏-就有就有,http://em.21dtv.com/songs/60076191.mkv +陈冠希-即影即有,http://em.21dtv.com/songs/60022613.mkv +杨千嬅-家有几米,http://em.21dtv.com/songs/60023033.mkv +王建杰-今夜酒杯(无原唱),http://em.21dtv.com/songs/60023971.mkv +大冢爱-金鱼花火,http://em.21dtv.com/songs/60024093.mkv +徐晓菁-就要挥别,http://em.21dtv.com/songs/60024664.mkv +佚名-军营歌谣,http://em.21dtv.com/songs/60024910.mkv +刘小娜-军营歌谣,http://em.21dtv.com/songs/60024909.mkv +刘小娜-军营故事,http://em.21dtv.com/songs/60024911.mkv +三方-就一个人,http://em.21dtv.com/songs/60024667.mkv +许慧欣-记忆钢琴,http://em.21dtv.com/songs/60022721.mkv +萨顶顶+吴青峰-剑雨浮生,http://em.21dtv.com/songs/60066061.mkv +佚名-就要分手,http://em.21dtv.com/songs/60024663.mkv +刘和刚-家有父母,http://em.21dtv.com/songs/60131201.mkv +佚名-今夜的我,http://em.21dtv.com/songs/60023959.mkv +沈丹-九月的天,http://em.21dtv.com/songs/60024356.mkv +语录-记忆的伤,http://em.21dtv.com/songs/60106282.mkv +曾心梅-今夜的情(无原唱),http://em.21dtv.com/songs/60023954.mkv +祁隆-坚毅的鸟,http://em.21dtv.com/songs/60117954.mkv +张学友-今夜的你,http://em.21dtv.com/songs/60091066.mkv +林姗-今夜的梦,http://em.21dtv.com/songs/60132607.mkv +幽兰-寄一滴泪,http://em.21dtv.com/songs/60022810.mkv +王建杰-今夜的风(无原唱),http://em.21dtv.com/songs/60023951.mkv +许志刚-寄语春天,http://em.21dtv.com/songs/60122115.mkv +孙晓涵-寄语春天,http://em.21dtv.com/songs/60121566.mkv +卡拉OK-寄语白云,http://em.21dtv.com/songs/60089188.mkv +认真-见与不见,http://em.21dtv.com/songs/60115384.mkv +张岱-见与不见,http://em.21dtv.com/songs/60104120.mkv +苏亚-见与不见,http://em.21dtv.com/songs/60070799.mkv +罗中旭-见与不见,http://em.21dtv.com/songs/60023294.mkv +群星-甲乙丙丁,http://em.21dtv.com/songs/60106202.mkv +许志安+张学友+郑中基-甲乙丙丁,http://em.21dtv.com/songs/60023073.mkv +许志安-甲乙丙丁(演唱会),http://em.21dtv.com/songs/60023072.mkv +黎亚-今夜爱我(无原唱),http://em.21dtv.com/songs/60023944.mkv +NO NAME-just you and me,http://em.21dtv.com/songs/60003127.mkv +ALAN-久远の河,http://em.21dtv.com/songs/60024381.mkv +达明一派-继续追寻(演唱会),http://em.21dtv.com/songs/60022786.mkv +王杰-将心照亮,http://em.21dtv.com/songs/60089417.mkv +张智霖-巨星之路,http://em.21dtv.com/songs/60024726.mkv +群星-将心照亮,http://em.21dtv.com/songs/60023402.mkv +张也-锦绣中华,http://em.21dtv.com/songs/60024133.mkv +张燕-锦绣中华,http://em.21dtv.com/songs/60024132.mkv +陈思思-锦绣中华(演唱会),http://em.21dtv.com/songs/60024131.mkv +CLOSER-继续战斗,http://em.21dtv.com/songs/60083116.mkv +动力火车-继续转动,http://em.21dtv.com/songs/60022785.mkv +邰正宵-九宵云外,http://em.21dtv.com/songs/60024345.mkv +带泪的鱼-九夏忧伤,http://em.21dtv.com/songs/60115137.mkv +李政飞-吉祥腰鼓,http://em.21dtv.com/songs/60111974.mkv +林良欢-决心要爱,http://em.21dtv.com/songs/60085315.mkv +郑梅芳-吉祥西藏,http://em.21dtv.com/songs/60083102.mkv +吉娜-吉祥西藏(演唱会),http://em.21dtv.com/songs/60061277.mkv +吉娜-吉祥西藏,http://em.21dtv.com/songs/60022588.mkv +阿温-军校学员,http://em.21dtv.com/songs/60062203.mkv +吴佳芸-继续向前,http://em.21dtv.com/songs/60089204.mkv +玉珍-吉祥新年,http://em.21dtv.com/songs/60128210.mkv +依稀-继续想念,http://em.21dtv.com/songs/60022782.mkv +吉娜-吉祥雪莲(演唱会),http://em.21dtv.com/songs/60061278.mkv +吉娜-吉祥雪莲,http://em.21dtv.com/songs/60022589.mkv +郁钧剑-家乡小调,http://em.21dtv.com/songs/60023029.mkv +邓丽君-君心我心,http://em.21dtv.com/songs/60024930.mkv +吕鋆峰-就像我们,http://em.21dtv.com/songs/60131246.mkv +古天乐-夹心威化,http://em.21dtv.com/songs/60023055.mkv +毛宁-继续舞动(演唱会),http://em.21dtv.com/songs/60022781.mkv +王家霖-家乡天堂,http://em.21dtv.com/songs/60119802.mkv +胡琳-继续谈情,http://em.21dtv.com/songs/60097414.mkv +刘德华-继续谈情,http://em.21dtv.com/songs/60022780.mkv +张鹤-锦绣天津,http://em.21dtv.com/songs/60105888.mkv +布仁巴雅尔-吉祥三宝,http://em.21dtv.com/songs/60022584.mkv +布仁巴雅尔-吉祥三宝(藏语),http://em.21dtv.com/songs/60022583.mkv +凤凰传奇-吉祥如意,http://em.21dtv.com/songs/60022582.mkv +陈婷婷+黄仁清-吉祥如意(无原唱),http://em.21dtv.com/songs/60022581.mkv +水灵-几许情深,http://em.21dtv.com/songs/60022669.mkv +泽旺多吉-酒香情浓,http://em.21dtv.com/songs/60076178.mkv +于浩宸-家兴千年,http://em.21dtv.com/songs/60066055.mkv +罗文-锦绣前程,http://em.21dtv.com/songs/60024130.mkv +许志安-继续去闯,http://em.21dtv.com/songs/60022778.mkv +乌兰托娅army-酒香飘歌,http://em.21dtv.com/songs/60110825.mkv +杨千嬅-继续努力(演唱会),http://em.21dtv.com/songs/60022776.mkv +覃春江+阿娜丹-锦绣年华,http://em.21dtv.com/songs/60068388.mkv +陈思思-锦绣年代,http://em.21dtv.com/songs/60024129.mkv +泽仁伍波-吉祥旅途,http://em.21dtv.com/songs/60121864.mkv +西子-吉祥拉萨,http://em.21dtv.com/songs/60068353.mkv +李思宇-锦绣荔浦,http://em.21dtv.com/songs/60118672.mkv +湘佛莲-吉祥莲花,http://em.21dtv.com/songs/60085252.mkv +李夏-今宵列车,http://em.21dtv.com/songs/60098460.mkv +萧丽珠-坚心来磋(无原唱),http://em.21dtv.com/songs/60023208.mkv +泳儿-精心恋爱(演唱会),http://em.21dtv.com/songs/60064410.mkv +全建军-渐行渐远,http://em.21dtv.com/songs/60134907.mkv +CLOWN-渐行渐远,http://em.21dtv.com/songs/60076045.mkv +萨顶顶-吉祥吉祥,http://em.21dtv.com/songs/60119932.mkv +谭晶-锦绣江南,http://em.21dtv.com/songs/60102750.mkv +祖海-今宵久久,http://em.21dtv.com/songs/60023934.mkv +郁钧剑+祖海-今宵久久(演唱会),http://em.21dtv.com/songs/60023933.mkv +剑三-剑啸江湖,http://em.21dtv.com/songs/60094424.mkv +更嘎-吉祥酒歌,http://em.21dtv.com/songs/60022580.mkv +费玉清-今夕何夕,http://em.21dtv.com/songs/60089484.mkv +龙智祥-今夕何夕,http://em.21dtv.com/songs/60086637.mkv +尘冰-今夕何夕,http://em.21dtv.com/songs/60085299.mkv +潘秀琼-今夕何夕(演唱会),http://em.21dtv.com/songs/60076128.mkv +佚名-今夕何夕,http://em.21dtv.com/songs/60023916.mkv +吉星-吉星高照,http://em.21dtv.com/songs/60117608.mkv +双星-吉星高照,http://em.21dtv.com/songs/60075957.mkv +张津涤-继续孤独,http://em.21dtv.com/songs/60102235.mkv +谢霆锋-继续发育,http://em.21dtv.com/songs/60022775.mkv +谢霆锋-继续发育(演唱会),http://em.21dtv.com/songs/60022774.mkv +佚名-几许风雨,http://em.21dtv.com/songs/60022668.mkv +陈奕迅-几许风雨,http://em.21dtv.com/songs/60022667.mkv +罗文-几许风雨(演唱会),http://em.21dtv.com/songs/60022666.mkv +姬长乐-继续飞翔,http://em.21dtv.com/songs/60103195.mkv +原子霏+老猫-吉祥飞舞,http://em.21dtv.com/songs/60132272.mkv +老猫+原子霏-吉祥飞舞,http://em.21dtv.com/songs/60131738.mkv +陈宝珠-剑雪浮生(演唱会),http://em.21dtv.com/songs/60023308.mkv +耿莲凤-吉祥的祝,http://em.21dtv.com/songs/60117131.mkv +西域刀郎-家乡的夜,http://em.21dtv.com/songs/60092039.mkv +潘晓峰-家乡的夜,http://em.21dtv.com/songs/60091652.mkv +成龙-叫醒冬天,http://em.21dtv.com/songs/60111925.mkv +吴若希-即兴地图,http://em.21dtv.com/songs/60075962.mkv +佚名-继续打拼,http://em.21dtv.com/songs/60022771.mkv +伍佰-继续堕落,http://em.21dtv.com/songs/60022773.mkv +伍佰-继续堕落(演唱会),http://em.21dtv.com/songs/60022772.mkv +许志安+李玟+梁汉文+张瑞哲-将心打开,http://em.21dtv.com/songs/60023399.mkv +李琪-家乡豆花,http://em.21dtv.com/songs/60098484.mkv +夏洪君+王丽萍-家乡豆花,http://em.21dtv.com/songs/60098222.mkv +吴雨桐-锦绣大地,http://em.21dtv.com/songs/60066078.mkv +玛希-吉祥草原,http://em.21dtv.com/songs/60022574.mkv +格格-吉祥草原,http://em.21dtv.com/songs/60022573.mkv +孟杨-今夕采兮,http://em.21dtv.com/songs/60132370.mkv +邓颖芝-继续潮拜,http://em.21dtv.com/songs/60093250.mkv +牙牙乐+赵芷彤-即兴表演,http://em.21dtv.com/songs/60116130.mkv +张学友-将心比心,http://em.21dtv.com/songs/60023398.mkv +王中平-将心比心,http://em.21dtv.com/songs/60023397.mkv +李碧华-将心比心(无原唱),http://em.21dtv.com/songs/60023396.mkv +张心杰-继续奔跑,http://em.21dtv.com/songs/60022769.mkv +香巴拉组合-吉祥白马,http://em.21dtv.com/songs/60110686.mkv +拉毛王旭-吉祥北京,http://em.21dtv.com/songs/60111120.mkv +陈慧琳-继续爱我,http://em.21dtv.com/songs/60022767.mkv +TWINS-见习爱神,http://em.21dtv.com/songs/60023293.mkv +李明洋-决心爱你,http://em.21dtv.com/songs/60132542.mkv +高保利-吉祥安康,http://em.21dtv.com/songs/60022571.mkv +ALAN-君想フ空,http://em.21dtv.com/songs/60024929.mkv +甄子丹-精武英雄,http://em.21dtv.com/songs/60024222.mkv +佚名-精武英雄,http://em.21dtv.com/songs/60024221.mkv +陈一郎-酒味烟味,http://em.21dtv.com/songs/60095975.mkv +陈一郎-酒味烟味(无原唱),http://em.21dtv.com/songs/60095974.mkv +佚名-酒味烟味(无原唱),http://em.21dtv.com/songs/60024460.mkv +水木年华-借我一生,http://em.21dtv.com/songs/60023733.mkv +扬哲-借问月娘,http://em.21dtv.com/songs/60133734.mkv +陈洁灵-今晚夜+梦(演唱会),http://em.21dtv.com/songs/60023913.mkv +陶莉萍-借我一秒,http://em.21dtv.com/songs/60023732.mkv +叶倩文-击我心弦,http://em.21dtv.com/songs/60092403.mkv +刘昱贤-绝望希望,http://em.21dtv.com/songs/60086648.mkv +张栋梁-就微笑了,http://em.21dtv.com/songs/60024656.mkv +祁隆-借我星光,http://em.21dtv.com/songs/60070812.mkv +薛凯琪-9 55pm,http://em.21dtv.com/songs/60066629.mkv +涓子-精卫填海,http://em.21dtv.com/songs/60121881.mkv +谢安琪-节外生枝,http://em.21dtv.com/songs/60023598.mkv +谢安琪-节外生枝(演唱会),http://em.21dtv.com/songs/60023597.mkv +唐大聪-见物思情,http://em.21dtv.com/songs/60133505.mkv +TF家族-街舞少年,http://em.21dtv.com/songs/60083156.mkv +多亮-叫我欧巴,http://em.21dtv.com/songs/60081873.mkv +张文绮-叫我女王,http://em.21dtv.com/songs/60023521.mkv +兰旭阳-绝望蚂蚁,http://em.21dtv.com/songs/60106619.mkv +赵学而-据为己有,http://em.21dtv.com/songs/60024738.mkv +Young Kun-叫我巨人,http://em.21dtv.com/songs/60130020.mkv +芭比-劲舞公主,http://em.21dtv.com/songs/60024179.mkv +大支-9527,http://em.21dtv.com/songs/60131304.mkv +樱花姊妹-绝望的人,http://em.21dtv.com/songs/60070766.mkv +佚名-劲舞dancing queen,http://em.21dtv.com/songs/60024177.mkv +杨子-久违的歌,http://em.21dtv.com/songs/60076171.mkv +亦帆-吉屋出租,http://em.21dtv.com/songs/60093968.mkv +潘玮柏-寂屋出租,http://em.21dtv.com/songs/60022953.mkv +范逸臣-即往不究,http://em.21dtv.com/songs/60091956.mkv +范逸臣-既往不究,http://em.21dtv.com/songs/60022760.mkv +陈思安-借问爱情,http://em.21dtv.com/songs/60128529.mkv +吴亦凡-JULY,http://em.21dtv.com/songs/60128885.mkv +夏韶声-今天昨天,http://em.21dtv.com/songs/60023894.mkv +夏韶声-今天昨天(演唱会),http://em.21dtv.com/songs/60023893.mkv +郭泇妏-卷土重来,http://em.21dtv.com/songs/60120029.mkv +王建杰-吉他之恋,http://em.21dtv.com/songs/60107067.mkv +胡鸿钧+钟嘉欣-交替之间,http://em.21dtv.com/songs/60085278.mkv +胡鸿钧-交替之间,http://em.21dtv.com/songs/60080549.mkv +孙悦+陈晓东-今天真好,http://em.21dtv.com/songs/60023891.mkv +王杰-家太远了,http://em.21dtv.com/songs/60023015.mkv +张瑶-今天以后,http://em.21dtv.com/songs/60023886.mkv +叶倩文-精挑细选,http://em.21dtv.com/songs/60069526.mkv +王识贤-街头巷尾,http://em.21dtv.com/songs/60023589.mkv +廖大森-街头巷尾,http://em.21dtv.com/songs/60023588.mkv +Transition 前进乐团-今天晚上,http://em.21dtv.com/songs/60131116.mkv +韩毅-进退维谷,http://em.21dtv.com/songs/60126438.mkv +佚名-joy to the world,http://em.21dtv.com/songs/60003084.mkv +CARRIE UNDERWOOD-jesus take the wheel,http://em.21dtv.com/songs/60003064.mkv +大帅+郑新-街头食神,http://em.21dtv.com/songs/60132333.mkv +大帅+小黑(大帅+郑新)-街头食神,http://em.21dtv.com/songs/60132332.mkv +棒棒堂-今天是holiday,http://em.21dtv.com/songs/60023863.mkv +难逢-静听伤感,http://em.21dtv.com/songs/60088924.mkv +白冰冰-脚踏实地(无原唱),http://em.21dtv.com/songs/60023496.mkv +1931组合-加糖情歌,http://em.21dtv.com/songs/60123422.mkv +江志丰-吉他情歌,http://em.21dtv.com/songs/60069489.mkv +佚名-吉他情歌,http://em.21dtv.com/songs/60022566.mkv +叶启田-吉他情歌,http://em.21dtv.com/songs/60022565.mkv +杨乃文-今天清晨,http://em.21dtv.com/songs/60023861.mkv +林志美-教堂派对,http://em.21dtv.com/songs/60023538.mkv +王者洋-今天明天,http://em.21dtv.com/songs/60105254.mkv +李克勤-进退两男,http://em.21dtv.com/songs/60092801.mkv +张真-进退两难,http://em.21dtv.com/songs/60024161.mkv +佚名-进退两难,http://em.21dtv.com/songs/60024160.mkv +龙千玉-进退两难,http://em.21dtv.com/songs/60024159.mkv +林志炫+詹兆源-进退两难,http://em.21dtv.com/songs/60024158.mkv +蔡秋凤-进退两难,http://em.21dtv.com/songs/60024157.mkv +国巍-脚踏两船,http://em.21dtv.com/songs/60023494.mkv +小虎队-今天看我,http://em.21dtv.com/songs/60115110.mkv +小虎队-今天看我,http://em.21dtv.com/songs/60103236.mkv +乔任梁-今天开始,http://em.21dtv.com/songs/60076123.mkv +冯允谦-今天开始,http://em.21dtv.com/songs/60070816.mkv +李治廷-今天开始,http://em.21dtv.com/songs/60023849.mkv +陈小春-家庭计划,http://em.21dtv.com/songs/60088864.mkv +陈小春-家庭计画,http://em.21dtv.com/songs/60023016.mkv +扬哲-甲天借胆,http://em.21dtv.com/songs/60064378.mkv +曾心梅-甲天借胆,http://em.21dtv.com/songs/60023071.mkv +杨千嬅-集体回忆,http://em.21dtv.com/songs/60022625.mkv +钟镇涛-集体鼓舞,http://em.21dtv.com/songs/60022624.mkv +HANA-今天的我,http://em.21dtv.com/songs/60124888.mkv +HANA-今天的我,http://em.21dtv.com/songs/60122383.mkv +朱咪咪-今天的我,http://em.21dtv.com/songs/60023842.mkv +佚名-今天的我,http://em.21dtv.com/songs/60023841.mkv +朱咪咪-今天的我(演唱会),http://em.21dtv.com/songs/60023840.mkv +孟杨-今天的你,http://em.21dtv.com/songs/60133569.mkv +郑浩-今天的你,http://em.21dtv.com/songs/60023837.mkv +麦穗-今天的你,http://em.21dtv.com/songs/60023836.mkv +金玟岐-惊天动地,http://em.21dtv.com/songs/60127514.mkv +张崇基-惊天动地,http://em.21dtv.com/songs/60092600.mkv +曹格-惊天动地,http://em.21dtv.com/songs/60024206.mkv +M3-惊天动地,http://em.21dtv.com/songs/60024205.mkv +TANK-街头霸王,http://em.21dtv.com/songs/60023587.mkv +GEORGE MICHAEL-jesus to a child,http://em.21dtv.com/songs/60003065.mkv +Silent Siren-吉田さん,http://em.21dtv.com/songs/60134796.mkv +GARNiDELiA-极楽浄土,http://em.21dtv.com/songs/60132082.mkv +林采欣-就是这样,http://em.21dtv.com/songs/60128130.mkv +常生-今生之约,http://em.21dtv.com/songs/60121628.mkv +佚名-就是这样,http://em.21dtv.com/songs/60024639.mkv +孙燕姿-就是这样,http://em.21dtv.com/songs/60024638.mkv +姜文彬-就是这样,http://em.21dtv.com/songs/60024637.mkv +依丽-江山之恋,http://em.21dtv.com/songs/60114393.mkv +许巍-救赎之旅,http://em.21dtv.com/songs/60104427.mkv +吴小豪-金沙之恋,http://em.21dtv.com/songs/60087558.mkv +铁木尔-金色珠兰,http://em.21dtv.com/songs/60024075.mkv +古巨基-几时再见(演唱会),http://em.21dtv.com/songs/60022665.mkv +陈慧娴-几时再见(演唱会),http://em.21dtv.com/songs/60022664.mkv +陈兴瑜-今生注定,http://em.21dtv.com/songs/60072080.mkv +高明骏+王馨平-今生注定,http://em.21dtv.com/songs/60023815.mkv +潘嘉丽-计时炸弹,http://em.21dtv.com/songs/60022673.mkv +何杰-今生最爱,http://em.21dtv.com/songs/60107495.mkv +何杰-今生最爱,http://em.21dtv.com/songs/60097175.mkv +吴雨霏-洁身自爱,http://em.21dtv.com/songs/60095274.mkv +张程-今生最爱,http://em.21dtv.com/songs/60023819.mkv +王程明-今生最爱,http://em.21dtv.com/songs/60023818.mkv +骆超勇-今生最爱,http://em.21dtv.com/songs/60023817.mkv +张国荣-洁身自爱,http://em.21dtv.com/songs/60023605.mkv +陈慧琳-洁身自爱,http://em.21dtv.com/songs/60023604.mkv +彭羚-绝色音展(无原唱),http://em.21dtv.com/songs/60038875.mkv +枫舞+云菲菲-今世有缘,http://em.21dtv.com/songs/60132625.mkv +徐泽-今世有缘,http://em.21dtv.com/songs/60109360.mkv +蒋蒋-绝世优雅,http://em.21dtv.com/songs/60106255.mkv +访玉+枫舞-今世有缘,http://em.21dtv.com/songs/60102736.mkv +张榜强-几时烟雨,http://em.21dtv.com/songs/60099236.mkv +李明洋-今生有缘,http://em.21dtv.com/songs/60081060.mkv +云菲菲-今世有缘,http://em.21dtv.com/songs/60023823.mkv +吴奇隆+王韵婵-今生有约,http://em.21dtv.com/songs/60023811.mkv +庹宗华-今生有约(无原唱),http://em.21dtv.com/songs/60023810.mkv +黄文星-绝世英雄,http://em.21dtv.com/songs/60082264.mkv +姜涵-姜水源头,http://em.21dtv.com/songs/60110126.mkv +谭咏麟-爵士怨曲 (演唱会),http://em.21dtv.com/songs/60024877.mkv +龙梅子-今生有你,http://em.21dtv.com/songs/60112412.mkv +JESSE MCCARTNEY-just so you know,http://em.21dtv.com/songs/60003118.mkv +火星人-橘色月光,http://em.21dtv.com/songs/60024705.mkv +王素言-今世缘分,http://em.21dtv.com/songs/60085297.mkv +黎明-及时拥抱,http://em.21dtv.com/songs/60022550.mkv +黎明-及时拥抱(演唱会),http://em.21dtv.com/songs/60022549.mkv +刘雪婧-就是现在,http://em.21dtv.com/songs/60126661.mkv +刘雪婧-就是现在,http://em.21dtv.com/songs/60125226.mkv +刘雪婧-就是现在,http://em.21dtv.com/songs/60123694.mkv +王力宏-就是现在,http://em.21dtv.com/songs/60109521.mkv +王力宏-就是现在,http://em.21dtv.com/songs/60107899.mkv +吴灿涛-就是现在,http://em.21dtv.com/songs/60099870.mkv +陈楚生-就是现在,http://em.21dtv.com/songs/60061321.mkv +李圣杰-就是现在,http://em.21dtv.com/songs/60024633.mkv +李圣杰-就是现在(演唱会),http://em.21dtv.com/songs/60024632.mkv +曲麻 巴德仁青+代青卓尕-今生相遇,http://em.21dtv.com/songs/60135328.mkv +张可儿-今生相约,http://em.21dtv.com/songs/60103267.mkv +堀田家Band-サヨナラ☆ありがとう,http://em.21dtv.com/songs/60099171.mkv +刘玮-金色希望,http://em.21dtv.com/songs/60024074.mkv +苗音-旧伤新痛,http://em.21dtv.com/songs/60128350.mkv +网络歌手-绝世小受,http://em.21dtv.com/songs/60076209.mkv +关心妍-接受现实(演唱会),http://em.21dtv.com/songs/60023572.mkv +卢巧音-接收现实,http://em.21dtv.com/songs/60023566.mkv +佚名-教书先生,http://em.21dtv.com/songs/60023535.mkv +芳溢艺-夹山寻梅,http://em.21dtv.com/songs/60083118.mkv +蒋舟+唐馨妍-金色旋律,http://em.21dtv.com/songs/60112939.mkv +草蜢-及时行乐(演唱会),http://em.21dtv.com/songs/60022548.mkv +施欣余+铠石兄弟-击碎陷阱,http://em.21dtv.com/songs/60132496.mkv +沈建豪-旧伤新痕,http://em.21dtv.com/songs/60086642.mkv +周华健-旧伤新痕,http://em.21dtv.com/songs/60024564.mkv +佚名-旧伤新痕,http://em.21dtv.com/songs/60024563.mkv +谢三宝-今生兄弟,http://em.21dtv.com/songs/60124483.mkv +丹智-今生兄弟,http://em.21dtv.com/songs/60122462.mkv +马艺航-今生兄弟,http://em.21dtv.com/songs/60122280.mkv +洪禄云+陈水林-今生相爱,http://em.21dtv.com/songs/60083172.mkv +泽尔丹+扎西措-今生相爱,http://em.21dtv.com/songs/60061306.mkv +孙博-今世无缘,http://em.21dtv.com/songs/60069520.mkv +钱澄+一绫-今生无缘,http://em.21dtv.com/songs/60062825.mkv +张秀卿+蔡小虎-今生无缘,http://em.21dtv.com/songs/60023808.mkv +易欣-今生无缘,http://em.21dtv.com/songs/60023807.mkv +龙飘飘-今生无缘,http://em.21dtv.com/songs/60023806.mkv +刘晓-江山无限,http://em.21dtv.com/songs/60083147.mkv +屠洪纲-江山无限,http://em.21dtv.com/songs/60023359.mkv +何嘉莉-假设问题,http://em.21dtv.com/songs/60023122.mkv +慕容依依-绝世无双,http://em.21dtv.com/songs/60128018.mkv +玖壹壹-9453,http://em.21dtv.com/songs/60117051.mkv +江志丰-今生为你,http://em.21dtv.com/songs/60023798.mkv +郑秀文-就是为了(演唱会),http://em.21dtv.com/songs/60024628.mkv +杨皓天-今生无悔,http://em.21dtv.com/songs/60106004.mkv +佚名-今生无悔,http://em.21dtv.com/songs/60023805.mkv +王杰-今生无悔,http://em.21dtv.com/songs/60023804.mkv +王杰-今生无悔(演唱会),http://em.21dtv.com/songs/60023803.mkv +胥拉齐-家是天堂,http://em.21dtv.com/songs/60107962.mkv +胥拉齐-家是天堂,http://em.21dtv.com/songs/60023014.mkv +陈启泰-今生他生,http://em.21dtv.com/songs/60023797.mkv +杨烁-金色童年,http://em.21dtv.com/songs/60094173.mkv +伊泓远-锦上添花,http://em.21dtv.com/songs/60070823.mkv +袁小迪+萧蔓萱-酒尚坦白,http://em.21dtv.com/songs/60024453.mkv +蔡依林-即时生效,http://em.21dtv.com/songs/60022607.mkv +董楠-家是赛尚,http://em.21dtv.com/songs/60107175.mkv +因果兄弟-今生所求,http://em.21dtv.com/songs/60023796.mkv +林晏如-金色誓盟,http://em.21dtv.com/songs/60024073.mkv +彭高平-金山颂歌,http://em.21dtv.com/songs/60120558.mkv +崔学飞-江山时代,http://em.21dtv.com/songs/60111036.mkv +啡啡-绝世容颜,http://em.21dtv.com/songs/60122628.mkv +吉神新星-吉神如意,http://em.21dtv.com/songs/60022559.mkv +少司命-江山如梦,http://em.21dtv.com/songs/60069508.mkv +杜春梅-江山如画,http://em.21dtv.com/songs/60080133.mkv +宋旭-今世情缘,http://em.21dtv.com/songs/60128989.mkv +孙博-今世情缘,http://em.21dtv.com/songs/60099193.mkv +一绫+大卫-今世情缘,http://em.21dtv.com/songs/60085296.mkv +冈林-今世情缘,http://em.21dtv.com/songs/60072082.mkv +崔伟亮-今世情缘,http://em.21dtv.com/songs/60072081.mkv +霍建华-肩上蜻蜓,http://em.21dtv.com/songs/60023216.mkv +甜美真-今生祈求,http://em.21dtv.com/songs/60076119.mkv +江映蓉-橘色气球,http://em.21dtv.com/songs/60024704.mkv +任娟-江上情歌,http://em.21dtv.com/songs/60120298.mkv +BRASKA+骑然LIYA-江山阙歌,http://em.21dtv.com/songs/60083148.mkv +陈柏霖+张博涵+柯有伦-极速青春,http://em.21dtv.com/songs/60022605.mkv +陈小春-劫数难逃,http://em.21dtv.com/songs/60023600.mkv +梦飞船-就是你吗,http://em.21dtv.com/songs/60091534.mkv +杨姣-锦上南京,http://em.21dtv.com/songs/60076147.mkv +郝红岩-金色年华,http://em.21dtv.com/songs/60066076.mkv +[Group] +groupName=十六万歌曲MV等 - 46 +丹戈尔-极速梦想,http://em.21dtv.com/songs/60101245.mkv +沈识干-江山美人,http://em.21dtv.com/songs/60070803.mkv +龙千玉+袁小迪-江山美人,http://em.21dtv.com/songs/60061296.mkv +满文军-江山美人,http://em.21dtv.com/songs/60023355.mkv +郑少秋-江山美人(演唱会),http://em.21dtv.com/songs/60023354.mkv +郑志立-减什么肥,http://em.21dtv.com/songs/60094713.mkv +风采轮(阿轮)-江山楼影,http://em.21dtv.com/songs/60128592.mkv +王建国-极速六弦,http://em.21dtv.com/songs/60128225.mkv +庄振凯-今生来世,http://em.21dtv.com/songs/60110175.mkv +中华音-今生来世,http://em.21dtv.com/songs/60083171.mkv +李祥祥-寄生离群,http://em.21dtv.com/songs/60118685.mkv +罗中旭-锦瑟流年,http://em.21dtv.com/songs/60130646.mkv +刘玮-军嫂来了,http://em.21dtv.com/songs/60024906.mkv +中坚份子-加速离开,http://em.21dtv.com/songs/60090483.mkv +李书伟-济世流芳,http://em.21dtv.com/songs/60131493.mkv +容祖儿-精神恋爱,http://em.21dtv.com/songs/60092531.mkv +BEYOND-金属狂人(演唱会),http://em.21dtv.com/songs/60024079.mkv +黑龙+李芳蕾+关寅飞-极速狂奔,http://em.21dtv.com/songs/60093616.mkv +张智霖+吴倩莲-绝世绝招,http://em.21dtv.com/songs/60024870.mkv +真知-金色家园,http://em.21dtv.com/songs/60091784.mkv +邓建民+雷有辉+邓祖德-尖沙咀susie(演唱会),http://em.21dtv.com/songs/60076030.mkv +张杰-今生今世,http://em.21dtv.com/songs/60023786.mkv +张国荣-今生今世,http://em.21dtv.com/songs/60023785.mkv +佚名-今生今世,http://em.21dtv.com/songs/60023784.mkv +龙千玉+翁立友-今生今世,http://em.21dtv.com/songs/60023783.mkv +陈小春-今生今世,http://em.21dtv.com/songs/60023782.mkv +张杰-今生今世(演唱会),http://em.21dtv.com/songs/60023781.mkv +张国荣-今生今世(演唱会),http://em.21dtv.com/songs/60023780.mkv +许冠杰-尖沙咀susie,http://em.21dtv.com/songs/60023181.mkv +刘德华-今时今日,http://em.21dtv.com/songs/60023822.mkv +郑培钦-绝色杭州,http://em.21dtv.com/songs/60112302.mkv +雁南飞-江山红颜,http://em.21dtv.com/songs/60121104.mkv +谭晶-江山红叶,http://em.21dtv.com/songs/60076056.mkv +金波-金色胡杨,http://em.21dtv.com/songs/60024072.mkv +蔡一杰-及时行乐,http://em.21dtv.com/songs/60092013.mkv +佚名-今山古道,http://em.21dtv.com/songs/60023766.mkv +许志安-及时赶到,http://em.21dtv.com/songs/60022547.mkv +MARY J.BLIGE-jay sean each tear,http://em.21dtv.com/songs/60003052.mkv +王建荣-肩上的云,http://em.21dtv.com/songs/60113858.mkv +陈德容-金色的雨,http://em.21dtv.com/songs/60024071.mkv +凤凰传奇-今生的缘,http://em.21dtv.com/songs/60023776.mkv +王瑾-江山多娇,http://em.21dtv.com/songs/60130596.mkv +五月天-金色大街,http://em.21dtv.com/songs/60104773.mkv +董文华-江山多娇,http://em.21dtv.com/songs/60090191.mkv +陈随意+谢宜君-今生的伴,http://em.21dtv.com/songs/60076116.mkv +陈思安+蔡义德-今生的爱,http://em.21dtv.com/songs/60068379.mkv +谢金燕-极速的爱,http://em.21dtv.com/songs/60022604.mkv +SHINE-极速传说,http://em.21dtv.com/songs/60097263.mkv +顾凯-金色彩带,http://em.21dtv.com/songs/60024068.mkv +黎瑞恩-今生不再,http://em.21dtv.com/songs/60136035.mkv +罗力威-今生不再(演唱会),http://em.21dtv.com/songs/60076115.mkv +黎明-今生不再,http://em.21dtv.com/songs/60023774.mkv +黎明-今生不再(演唱会),http://em.21dtv.com/songs/60023773.mkv +黄玮亦-角色扮演,http://em.21dtv.com/songs/60127624.mkv +陈淑萍+庄振凯-结束悲情,http://em.21dtv.com/songs/60066069.mkv +刘姝辰+何泽胜-金狮拜年,http://em.21dtv.com/songs/60076141.mkv +群星-金狮拜年,http://em.21dtv.com/songs/60024077.mkv +弦子-见死不救,http://em.21dtv.com/songs/60080773.mkv +朱茵-举手不回,http://em.21dtv.com/songs/60024721.mkv +吕方-几时爱我,http://em.21dtv.com/songs/60022659.mkv +李雅薇-急速爱情,http://em.21dtv.com/songs/60022619.mkv +李雅微-极速爱情,http://em.21dtv.com/songs/60022603.mkv +代理仁-就是爱你,http://em.21dtv.com/songs/60134873.mkv +热门泽+萨其拉-今生爱你,http://em.21dtv.com/songs/60117903.mkv +萨其拉 热门泽-今生爱你,http://em.21dtv.com/songs/60114749.mkv +周笔畅-就是爱你,http://em.21dtv.com/songs/60087595.mkv +杭士琁-就是爱你,http://em.21dtv.com/songs/60083195.mkv +萨其拉+热门泽-今生爱你,http://em.21dtv.com/songs/60076112.mkv +张跃-就是爱你,http://em.21dtv.com/songs/60061320.mkv +陶喆-就是爱你,http://em.21dtv.com/songs/60024618.mkv +陶喆-就是爱你(演唱会),http://em.21dtv.com/songs/60024617.mkv +费玉清-甲人作伙(无原唱),http://em.21dtv.com/songs/60095930.mkv +佚名-甲人做伙(无原唱),http://em.21dtv.com/songs/60023066.mkv +熊七梅-既然真爱,http://em.21dtv.com/songs/60115279.mkv +拉毛王旭-今日有约,http://em.21dtv.com/songs/60111118.mkv +苍茫-假日约会(演唱会),http://em.21dtv.com/songs/60023092.mkv +汤兰花-佳人永恒,http://em.21dtv.com/songs/60022986.mkv +向蕙玲-既然要爱,http://em.21dtv.com/songs/60064362.mkv +孙浩然-剑入行囊,http://em.21dtv.com/songs/60121568.mkv +陈淑桦-就让它吧,http://em.21dtv.com/songs/60024607.mkv +冷漠-酒肉朋友,http://em.21dtv.com/songs/60068395.mkv +黄连煜-酒肉朋友,http://em.21dtv.com/songs/60024450.mkv +陈冠蒲-就让你走,http://em.21dtv.com/songs/60024604.mkv +荒山亮+黄凤仪-旧人难忘,http://em.21dtv.com/songs/60024555.mkv +佚名-今日农家,http://em.21dtv.com/songs/60023764.mkv +熊胡杰-旧人礼堂,http://em.21dtv.com/songs/60125889.mkv +MAY'N-今日に恋色,http://em.21dtv.com/songs/60097174.mkv +王宏伟-节日快乐,http://em.21dtv.com/songs/60128220.mkv +达达乐队-节日快乐,http://em.21dtv.com/songs/60023596.mkv +雨金-今日狂欢,http://em.21dtv.com/songs/60106434.mkv +乔军-今日江南,http://em.21dtv.com/songs/60090494.mkv +彩贝与海-假日海滩,http://em.21dtv.com/songs/60135262.mkv +聂艳+张春晓-军人和妻,http://em.21dtv.com/songs/60113968.mkv +李潮+吴琼华-节日欢歌,http://em.21dtv.com/songs/60076081.mkv +王莹-节日欢歌(演唱会),http://em.21dtv.com/songs/60076080.mkv +王莹-节日欢歌,http://em.21dtv.com/songs/60023595.mkv +阿英-嘉绒姑娘,http://em.21dtv.com/songs/60076009.mkv +唐韦琪-惊人发现(演唱会),http://em.21dtv.com/songs/60024204.mkv +傅颖-今日:晴,http://em.21dtv.com/songs/60023762.mkv +巫启贤-叫阮的名,http://em.21dtv.com/songs/60023514.mkv +施文彬-叫阮的名,http://em.21dtv.com/songs/60023513.mkv +傅薇-叫阮的名,http://em.21dtv.com/songs/60023512.mkv +曲丹-节日的歌,http://em.21dtv.com/songs/60114575.mkv +吕继宏-节日的歌,http://em.21dtv.com/songs/60076079.mkv +王莉+耿为华-节日的歌(演唱会),http://em.21dtv.com/songs/60070810.mkv +王璐-军人的爱,http://em.21dtv.com/songs/60117920.mkv +阎维文-军人本色,http://em.21dtv.com/songs/60024905.mkv +郭静-即溶爱人,http://em.21dtv.com/songs/60102822.mkv +王梓蘅-既然爱了,http://em.21dtv.com/songs/60064361.mkv +皓宇-既然爱过,http://em.21dtv.com/songs/60106168.mkv +袁惟仁-既然爱过,http://em.21dtv.com/songs/60022754.mkv +群星-金曲再造,http://em.21dtv.com/songs/60024065.mkv +翦蕤-吉庆中国,http://em.21dtv.com/songs/60022558.mkv +阿华-假情真爱,http://em.21dtv.com/songs/60023089.mkv +LUNKHEAD-决戦前夜,http://em.21dtv.com/songs/60121280.mkv +刘美君-旧曲新愁,http://em.21dtv.com/songs/60024553.mkv +蔡丽津+廖伟志-旧情新爱,http://em.21dtv.com/songs/60135711.mkv +彭莉-旧情新爱(无原唱),http://em.21dtv.com/songs/60024548.mkv +蔡秋凤-旧情新爱(无原唱),http://em.21dtv.com/songs/60024547.mkv +罗志祥-机器娃娃,http://em.21dtv.com/songs/60022511.mkv +张清芳-景气太差(演唱会),http://em.21dtv.com/songs/60024236.mkv +阿吉仔-旧情深深,http://em.21dtv.com/songs/60024546.mkv +孙子涵-剧情杀青,http://em.21dtv.com/songs/60101066.mkv +王霞+黄越峰-激情时刻(演唱会),http://em.21dtv.com/songs/60022544.mkv +黎沸挥-旧情如火,http://em.21dtv.com/songs/60024545.mkv +周慧敏-近情情怯,http://em.21dtv.com/songs/60024167.mkv +黄立全-近情情怯,http://em.21dtv.com/songs/60024166.mkv +胥拉齐-倔强青年,http://em.21dtv.com/songs/60127315.mkv +陈军委-军旗飘飘,http://em.21dtv.com/songs/60061326.mkv +侯旭-军旗飘飘,http://em.21dtv.com/songs/60024902.mkv +李飞-激情你我,http://em.21dtv.com/songs/60121793.mkv +郑进一-旧情难忘,http://em.21dtv.com/songs/60024538.mkv +大哲-旧情难舍,http://em.21dtv.com/songs/60102074.mkv +楼宏章-旧情难了,http://em.21dtv.com/songs/60083193.mkv +张德兰+区瑞强-吉庆满堂,http://em.21dtv.com/songs/60022557.mkv +蒋文端-吉庆满堂,http://em.21dtv.com/songs/60022556.mkv +罗时丰-旧情绵绵,http://em.21dtv.com/songs/60076181.mkv +张学友-旧情绵绵,http://em.21dtv.com/songs/60024536.mkv +佚名-旧情绵绵,http://em.21dtv.com/songs/60024535.mkv +林姗-旧情绵绵,http://em.21dtv.com/songs/60024534.mkv +洪一峰-旧情绵绵,http://em.21dtv.com/songs/60024533.mkv +洪荣宏-旧情绵绵,http://em.21dtv.com/songs/60024532.mkv +张学友-旧情绵绵(演唱会),http://em.21dtv.com/songs/60024531.mkv +葛笑-金钱魔鬼,http://em.21dtv.com/songs/60117181.mkv +马响-金钱魔鬼,http://em.21dtv.com/songs/60070821.mkv +古天乐-今期流行,http://em.21dtv.com/songs/60023758.mkv +风之琳-九曲恋歌,http://em.21dtv.com/songs/60069530.mkv +范晓萱-金曲联唱,http://em.21dtv.com/songs/60088554.mkv +小伟哥+大张杰+吕熙谨+栋栋-聚起来吧,http://em.21dtv.com/songs/60116740.mkv +容祖儿-敬请留步(演唱会),http://em.21dtv.com/songs/60064412.mkv +杨培安-尽情看我,http://em.21dtv.com/songs/60024139.mkv +陈美安+陈建华-假情假意,http://em.21dtv.com/songs/60068366.mkv +林宏铭-假情假意,http://em.21dtv.com/songs/60023088.mkv +张磊+陈静-金桥金路,http://em.21dtv.com/songs/60105863.mkv +文夏-假情假爱,http://em.21dtv.com/songs/60077106.mkv +罗时丰-讲情讲爱(无原唱),http://em.21dtv.com/songs/60023426.mkv +林姗+陈建华-假情假爱,http://em.21dtv.com/songs/60023087.mkv +路童-金桥荷缘,http://em.21dtv.com/songs/60104463.mkv +李猛-借钱还钱,http://em.21dtv.com/songs/60133813.mkv +张样-酒起歌响,http://em.21dtv.com/songs/60126887.mkv +曾沛慈-坚强过头,http://em.21dtv.com/songs/60110249.mkv +群星-九七国旗,http://em.21dtv.com/songs/60024337.mkv +张清芳-激情过后,http://em.21dtv.com/songs/60022543.mkv +岩宰仑-激情放纵,http://em.21dtv.com/songs/60124809.mkv +群星合唱-激情飞跃,http://em.21dtv.com/songs/60088479.mkv +颜婷易兰-激情飞扬,http://em.21dtv.com/songs/60069488.mkv +方顺吉-绝情风雨,http://em.21dtv.com/songs/60024858.mkv +群星-激情飞越(演唱会),http://em.21dtv.com/songs/60022542.mkv +张琳-激情飞扬,http://em.21dtv.com/songs/60022541.mkv +何俊明-坚强分手,http://em.21dtv.com/songs/60023206.mkv +谭咏麟-旧情复燃,http://em.21dtv.com/songs/60088672.mkv +谭咏麟+关淑怡-旧情复炽,http://em.21dtv.com/songs/60024529.mkv +杜德伟+苏慧伦-旧情复炽,http://em.21dtv.com/songs/60024528.mkv +印子月-倔强的人,http://em.21dtv.com/songs/60126670.mkv +吴小豪-绝情的人,http://em.21dtv.com/songs/60024855.mkv +枫桥-坚强的你,http://em.21dtv.com/songs/60101125.mkv +林姗-绝情的梦,http://em.21dtv.com/songs/60131544.mkv +张赫宣-坚强的盾,http://em.21dtv.com/songs/60096082.mkv +黎明-尽情地爱,http://em.21dtv.com/songs/60024138.mkv +黎明-尽情地爱(演唱会),http://em.21dtv.com/songs/60024137.mkv +蔡小虎+黄思婷-坚强的爱,http://em.21dtv.com/songs/60023203.mkv +郑秋阳-剑桥春雨,http://em.21dtv.com/songs/60134320.mkv +陈奕迅-金曲串烧(传媒大奖),http://em.21dtv.com/songs/60093412.mkv +古巨基-金曲串烧(演唱会),http://em.21dtv.com/songs/60024062.mkv +董贞-剑起苍澜,http://em.21dtv.com/songs/60076042.mkv +陈大天-金枪不倒,http://em.21dtv.com/songs/60109692.mkv +张清芳+李骥-举棋不定,http://em.21dtv.com/songs/60024717.mkv +苏永康-绝情acoustic piano(演唱会),http://em.21dtv.com/songs/60024853.mkv +任明+马艳-建平之恋,http://em.21dtv.com/songs/60085274.mkv +森美-金牌司仪,http://em.21dtv.com/songs/60024058.mkv +陈文浩-极品前任,http://em.21dtv.com/songs/60105490.mkv +陈旭希-金牌家丁,http://em.21dtv.com/songs/60024057.mkv +AKB48-君と仆の関系,http://em.21dtv.com/songs/60076219.mkv +燕妮-景颇姑娘,http://em.21dtv.com/songs/60024235.mkv +DAVID GUETTA+TAPED RAI-just one last time,http://em.21dtv.com/songs/60073455.mkv +佚名-纪念照片(无原唱),http://em.21dtv.com/songs/60022743.mkv +黄威-江南之恋,http://em.21dtv.com/songs/60126471.mkv +徐浩峻-迦南之恋,http://em.21dtv.com/songs/60116832.mkv +苗苗-江南之恋,http://em.21dtv.com/songs/60096471.mkv +谭晶-江南之恋,http://em.21dtv.com/songs/60023349.mkv +伍浩哲-甲你作伴,http://em.21dtv.com/songs/60087021.mkv +陈淑萍-甲你作伴,http://em.21dtv.com/songs/60067112.mkv +黄乙玲-甲你作伴,http://em.21dtv.com/songs/60023064.mkv +王爱华-江南雨巷,http://em.21dtv.com/songs/60114686.mkv +苏有朋-叫你一声MYLOVE,http://em.21dtv.com/songs/60090180.mkv +程响-江南夜色,http://em.21dtv.com/songs/60124321.mkv +李玲玉-江南音诗,http://em.21dtv.com/songs/60101384.mkv +秦博-江南伊梦,http://em.21dtv.com/songs/60118821.mkv +祁隆-见你一面,http://em.21dtv.com/songs/60102591.mkv +沁心小筑-江南有梦,http://em.21dtv.com/songs/60068376.mkv +黄观-江南有梦,http://em.21dtv.com/songs/60068375.mkv +麦小歌-江南雨恋,http://em.21dtv.com/songs/60023348.mkv +游鸿明-倦鸟余花,http://em.21dtv.com/songs/60024759.mkv +蒲庭龙+办桌二人组-敬你一杯,http://em.21dtv.com/songs/60072092.mkv +黄勇深-纪念雅安,http://em.21dtv.com/songs/60075972.mkv +晖倪-今年夏天,http://em.21dtv.com/songs/60070813.mkv +林志颖-今年夏天,http://em.21dtv.com/songs/60023755.mkv +林志颖-今年夏天(演唱会),http://em.21dtv.com/songs/60023754.mkv +容祖儿-今年新款(演唱会),http://em.21dtv.com/songs/60023756.mkv +朱妍-江南味道,http://em.21dtv.com/songs/60112738.mkv +杨西音子-江南味道,http://em.21dtv.com/songs/60081426.mkv +张蓉蓉-甲你无搏,http://em.21dtv.com/songs/60023062.mkv +柏文-江南听雨,http://em.21dtv.com/songs/60102401.mkv +谢金燕-甲你跳舞,http://em.21dtv.com/songs/60023061.mkv +望海高歌-江南水乡,http://em.21dtv.com/songs/60117791.mkv +王莉-江南水乡,http://em.21dtv.com/songs/60076054.mkv +王莉-江南水乡(演唱会),http://em.21dtv.com/songs/60072071.mkv +丁国琳+伊正-甲你熟识,http://em.21dtv.com/songs/60067111.mkv +何龙雨-倦鸟思归,http://em.21dtv.com/songs/60107499.mkv +赵小兵-倦鸟思归,http://em.21dtv.com/songs/60107237.mkv +裂天-经年若烟,http://em.21dtv.com/songs/60135722.mkv +黄观-江南如梦,http://em.21dtv.com/songs/60076053.mkv +王莹-江南人家,http://em.21dtv.com/songs/60076052.mkv +叶丹青-劫难情侣,http://em.21dtv.com/songs/60092401.mkv +牛马丁-加弄牛奶,http://em.21dtv.com/songs/60022967.mkv +音乐走廊+歌一生-江南妹子,http://em.21dtv.com/songs/60130887.mkv +刘畊宏-迦南美地,http://em.21dtv.com/songs/60022987.mkv +胡蓓蔚-纪念旅行,http://em.21dtv.com/songs/60022735.mkv +刘凤瑶-借你疗伤,http://em.21dtv.com/songs/60101276.mkv +王键-江南恋曲,http://em.21dtv.com/songs/60100327.mkv +陈一郎-酒女酒女(无原唱),http://em.21dtv.com/songs/60095976.mkv +佚名-酒女酒女,http://em.21dtv.com/songs/60024447.mkv +陈奕迅+露云娜-讲男讲女,http://em.21dtv.com/songs/60023421.mkv +橙子焦糖-江南街道,http://em.21dtv.com/songs/60106049.mkv +刘婕-今年花开,http://em.21dtv.com/songs/60023746.mkv +张绍军-江南姑娘,http://em.21dtv.com/songs/60100032.mkv +石莉娟-江南的桥,http://em.21dtv.com/songs/60113906.mkv +詹曼铃-叫你的名,http://em.21dtv.com/songs/60023507.mkv +龙千玉-叫你的名,http://em.21dtv.com/songs/60023506.mkv +龙奔-鸡年大吉,http://em.21dtv.com/songs/60132028.mkv +贾富营+望海高歌-今年大吉,http://em.21dtv.com/songs/60129632.mkv +潘广益-纪念的歌,http://em.21dtv.com/songs/60062799.mkv +霓裳-江南春雨,http://em.21dtv.com/songs/60111517.mkv +韩磊-江南长城,http://em.21dtv.com/songs/60114884.mkv +肖雨蒙-爵尼百年,http://em.21dtv.com/songs/60117133.mkv +孤泣+柠檬草-教你别蠢,http://em.21dtv.com/songs/60092510.mkv +庄明珠-酒女哀怨,http://em.21dtv.com/songs/60024445.mkv +佚名-酒女哀怨,http://em.21dtv.com/songs/60024444.mkv +黄润豪-寂寞主义,http://em.21dtv.com/songs/60102976.mkv +陈红-旧梦重圆,http://em.21dtv.com/songs/60024521.mkv +杨坤-寂寞之王,http://em.21dtv.com/songs/60022951.mkv +鹤天赐-寂寞侦探,http://em.21dtv.com/songs/60126461.mkv +CLOWN-寂寞作祟,http://em.21dtv.com/songs/60061985.mkv +张艳君-即墨之歌,http://em.21dtv.com/songs/60111085.mkv +梁文音-寂寞之光,http://em.21dtv.com/songs/60107836.mkv +安心亚-姐妹最大,http://em.21dtv.com/songs/60106781.mkv +安心亚-姐妹最大,http://em.21dtv.com/songs/60104944.mkv +张卫健-旧梦依稀,http://em.21dtv.com/songs/60092571.mkv +罗时丰-寂寞英雄,http://em.21dtv.com/songs/60022946.mkv +陈奕迅-寂寞夜晚,http://em.21dtv.com/songs/60093399.mkv +李克勤-寂寞夜晚,http://em.21dtv.com/songs/60022944.mkv +张国荣-寂寞夜晚(演唱会),http://em.21dtv.com/songs/60022943.mkv +李季-寂寞烟圈,http://em.21dtv.com/songs/60122848.mkv +林忆莲-寂寞拥挤,http://em.21dtv.com/songs/60070792.mkv +冷漠-寂寞烟花,http://em.21dtv.com/songs/60112528.mkv +天籁天-寂寞烟花,http://em.21dtv.com/songs/60072063.mkv +张国荣-寂寞有害,http://em.21dtv.com/songs/60022948.mkv +张国荣-寂寞有害(演唱会),http://em.21dtv.com/songs/60022947.mkv +大雨点儿-寂寞雨点,http://em.21dtv.com/songs/60097434.mkv +邵大伦-寂寞宣言,http://em.21dtv.com/songs/60123230.mkv +忢訫-静美雪夜,http://em.21dtv.com/songs/60118590.mkv +邵大伦-寂寞宣言,http://em.21dtv.com/songs/60115447.mkv +乌兰齐齐格-寂寞校园,http://em.21dtv.com/songs/60075987.mkv +安琪-寂寞香烟,http://em.21dtv.com/songs/60064365.mkv +乃木坂46-君の名は希望,http://em.21dtv.com/songs/60076220.mkv +单色凌-寂寞心痛,http://em.21dtv.com/songs/60099824.mkv +孙浩雨-寂寞先生,http://em.21dtv.com/songs/60110984.mkv +李佳薇-寂寞先生,http://em.21dtv.com/songs/60109417.mkv +刘悦-寂寞先生,http://em.21dtv.com/songs/60069494.mkv +曹格-寂寞先生,http://em.21dtv.com/songs/60022935.mkv +林峰-寂寞星球(演唱会),http://em.21dtv.com/songs/60075988.mkv +五月天-寂寞星球,http://em.21dtv.com/songs/60022938.mkv +包启宁-家满幸福,http://em.21dtv.com/songs/60132263.mkv +沈世爱-寂寞心扉,http://em.21dtv.com/songs/60109490.mkv +阿吉仔-旧棉絮被,http://em.21dtv.com/songs/60024522.mkv +蘑菇兄弟-睫毛弯弯(,http://em.21dtv.com/songs/60081488.mkv +王心凌-睫毛弯弯,http://em.21dtv.com/songs/60023634.mkv +唐美华-寂寞梧桐,http://em.21dtv.com/songs/60113357.mkv +动力火车-寂寞无赖,http://em.21dtv.com/songs/60075986.mkv +明泽-寂寞围剿,http://em.21dtv.com/songs/60128050.mkv +邰正宵-寂寞玩具(演唱会),http://em.21dtv.com/songs/60022933.mkv +艾怡良-寂寞无害,http://em.21dtv.com/songs/60123102.mkv +迪克牛仔-寂寞天堂,http://em.21dtv.com/songs/60022932.mkv +冷漠-寂寞替身,http://em.21dtv.com/songs/60080194.mkv +谢霆锋-寂寞堂口,http://em.21dtv.com/songs/60022931.mkv +高登-九门提督,http://em.21dtv.com/songs/60024334.mkv +郑晟-寂寞双眼,http://em.21dtv.com/songs/60075985.mkv +张宇+江美琪-寂寞圣贤(演唱会),http://em.21dtv.com/songs/60022922.mkv +韦夫-假面生活,http://em.21dtv.com/songs/60127583.mkv +胡梅-寂寞深海,http://em.21dtv.com/songs/60075984.mkv +刘沁-寂寞似火,http://em.21dtv.com/songs/60022924.mkv +丛浩楠-寂寞是毒,http://em.21dtv.com/songs/60083111.mkv +伍腾宇-寂寞如烟,http://em.21dtv.com/songs/60131160.mkv +亨利-旧梦如昔,http://em.21dtv.com/songs/60131151.mkv +何龙雨-寂寞如雪,http://em.21dtv.com/songs/60116546.mkv +彭丽丽-寂寞如香,http://em.21dtv.com/songs/60066054.mkv +晨露+玲儿-姐妹情缘,http://em.21dtv.com/songs/60129185.mkv +蓝雨-寂寞起舞,http://em.21dtv.com/songs/60022914.mkv +陈魁-寂寞秋天,http://em.21dtv.com/songs/60085261.mkv +王建芳-姐妹情深,http://em.21dtv.com/songs/60086633.mkv +ASOS-姐妹情深,http://em.21dtv.com/songs/60023658.mkv +李志洲-寂寞情歌,http://em.21dtv.com/songs/60075982.mkv +谢桐-寂寞情歌,http://em.21dtv.com/songs/60022915.mkv +陈芳语-寂寞咆哮,http://em.21dtv.com/songs/60097435.mkv +JS-寂寞闹钟,http://em.21dtv.com/songs/60089569.mkv +黄小琥-寂寞女子(无原唱),http://em.21dtv.com/songs/60079726.mkv +陈红-旧梦难圆,http://em.21dtv.com/songs/60089535.mkv +池秋美-寂寞难消,http://em.21dtv.com/songs/60022911.mkv +寂悸-寂寞女神,http://em.21dtv.com/songs/60122677.mkv +贾剑龙+陈羽凡-寂寞难耐,http://em.21dtv.com/songs/60095095.mkv +刘明辉-寂寞难耐,http://em.21dtv.com/songs/60085260.mkv +齐秦-寂寞难耐,http://em.21dtv.com/songs/60022910.mkv +李宗盛-寂寞难耐,http://em.21dtv.com/songs/60022909.mkv +伍佰-寂寞女孩,http://em.21dtv.com/songs/60090584.mkv +马博-寂寞来袭,http://em.21dtv.com/songs/60022895.mkv +郑雅文-寂寞旅途,http://em.21dtv.com/songs/60128479.mkv +黄乙玲-寂寞旅途,http://em.21dtv.com/songs/60022906.mkv +冷漠-寂寞旅人,http://em.21dtv.com/songs/60067106.mkv +洪煜祺-寂寞流年,http://em.21dtv.com/songs/60069493.mkv +李克勤-寂寞喽啰,http://em.21dtv.com/songs/60087982.mkv +李克勤-寂寞喽萝,http://em.21dtv.com/songs/60022903.mkv +沈芳如-寂寞路口,http://em.21dtv.com/songs/60022904.mkv +文杰-寂寞旅行,http://em.21dtv.com/songs/60100070.mkv +笑天-寂寞轮回,http://em.21dtv.com/songs/60022905.mkv +小筑-寂寞离歌,http://em.21dtv.com/songs/60114505.mkv +佚名-寂寞恋歌,http://em.21dtv.com/songs/60022897.mkv +陈一郎-寂寞恋歌,http://em.21dtv.com/songs/60022896.mkv +汪峰-寂寞列车,http://em.21dtv.com/songs/60095205.mkv +阿凡达妹妹-吉米来吧,http://em.21dtv.com/songs/60128493.mkv +杨錡-寂寞空气,http://em.21dtv.com/songs/60022893.mkv +孙浩雨-寂寞慷慨,http://em.21dtv.com/songs/60110985.mkv +蔡晓+郑晓填-寂寞咖啡,http://em.21dtv.com/songs/60129583.mkv +唐古+蔡晓-寂寞咖啡,http://em.21dtv.com/songs/60119365.mkv +蔡晓+翟琳童-寂寞咖啡[演],http://em.21dtv.com/songs/60101502.mkv +李翊君-寂寞咖啡,http://em.21dtv.com/songs/60069491.mkv +蔡晓+翟琳童-寂寞咖啡(演唱会),http://em.21dtv.com/songs/60068356.mkv +王欣婷+蔡晓-寂寞咖啡,http://em.21dtv.com/songs/60022891.mkv +张跃-寂寞空城,http://em.21dtv.com/songs/60061287.mkv +卓文萱-啾咪啾咪,http://em.21dtv.com/songs/60103952.mkv +金俊延-寂寞机场,http://em.21dtv.com/songs/60111461.mkv +BOY'Z-聚明聚暗,http://em.21dtv.com/songs/60092154.mkv +丁丁-寂寞很重,http://em.21dtv.com/songs/60081774.mkv +张克帆-寂寞轰炸,http://em.21dtv.com/songs/60022887.mkv +周传雄-寂寞轰炸(演唱会),http://em.21dtv.com/songs/60022886.mkv +张峡浩-寂寞海峡,http://em.21dtv.com/songs/60111069.mkv +裘海正-寂寞航线,http://em.21dtv.com/songs/60092038.mkv +游鸿明-寂寞化石,http://em.21dtv.com/songs/60022888.mkv +王澜霏-寂寞河流,http://em.21dtv.com/songs/60091720.mkv +蔡旻佑-寂寞好了,http://em.21dtv.com/songs/60022885.mkv +顾雅莉-寂寞花火,http://em.21dtv.com/songs/60106451.mkv +顾莉雅-寂寞花火,http://em.21dtv.com/songs/60064364.mkv +王建杰-寂寞黄昏,http://em.21dtv.com/songs/60022889.mkv +王子霆-寂寞欢场,http://em.21dtv.com/songs/60068355.mkv +后来者-寂寞孤影,http://em.21dtv.com/songs/60126684.mkv +郁可唯-寂寞更生,http://em.21dtv.com/songs/60131879.mkv +永邦-寂寞公路,http://em.21dtv.com/songs/60022882.mkv +伍思凯-寂寞公路,http://em.21dtv.com/songs/60022881.mkv +羽泉-寂寞公路(演唱会),http://em.21dtv.com/songs/60022880.mkv +伍思凯-寂寞冠军,http://em.21dtv.com/songs/60022883.mkv +吴建豪-寂寞广场,http://em.21dtv.com/songs/60022884.mkv +李翊君-寂寞方舟,http://em.21dtv.com/songs/60097432.mkv +俞静-寂寞飞翔,http://em.21dtv.com/songs/60022879.mkv +江美琪-寂寞飞行,http://em.21dtv.com/songs/60022878.mkv +佚名-寂寞芳心,http://em.21dtv.com/songs/60022877.mkv +轨道-骏马飞腾,http://em.21dtv.com/songs/60120000.mkv +谢和弦-寂寞疯了,http://em.21dtv.com/songs/60061286.mkv +郑晓填-寂寞房间,http://em.21dtv.com/songs/60108053.mkv +张夕磊-寂寞放飞,http://em.21dtv.com/songs/60072062.mkv +孙小宝-见面发财,http://em.21dtv.com/songs/60090892.mkv +彤杰-寂寞的夜,http://em.21dtv.com/songs/60022870.mkv +周华健-寂寞的眼,http://em.21dtv.com/songs/60022869.mkv +解晓东-姐妹弟兄,http://em.21dtv.com/songs/60090208.mkv +阿超-寂寞电台(Lonely Radio),http://em.21dtv.com/songs/60097433.mkv +YIYO-寂寞电梯,http://em.21dtv.com/songs/60022874.mkv +金久哲-寂寞的手,http://em.21dtv.com/songs/60114142.mkv +佚名-寂寞的梦(无原唱),http://em.21dtv.com/songs/60022856.mkv +李明洋+邱芸子-寂寞的酒,http://em.21dtv.com/songs/60022849.mkv +泳儿-寂寞的街,http://em.21dtv.com/songs/60022847.mkv +陈明-静美的花,http://em.21dtv.com/songs/60111485.mkv +龚琳娜-鸡鸣东方,http://em.21dtv.com/songs/60133158.mkv +邝美云-寂寞的风,http://em.21dtv.com/songs/60022840.mkv +娅琪朵-寂寞等待,http://em.21dtv.com/songs/60104921.mkv +张信哲-寂寞的冬,http://em.21dtv.com/songs/60022837.mkv +林依轮-寂寞独白,http://em.21dtv.com/songs/60092850.mkv +林依伦-寂寞独白,http://em.21dtv.com/songs/60091421.mkv +关健-寂寞的爱,http://em.21dtv.com/songs/60022831.mkv +李草青青-寂寞成灾,http://em.21dtv.com/songs/60066051.mkv +赵雷-吉姆餐厅,http://em.21dtv.com/songs/60118078.mkv +周蕙-寂寞城市,http://em.21dtv.com/songs/60022828.mkv +侯旭-建木传奇,http://em.21dtv.com/songs/60076041.mkv +伍佰-寂寞丛林,http://em.21dtv.com/songs/60022830.mkv +蓝喆-寂寞出口,http://em.21dtv.com/songs/60022829.mkv +冷漠+杨小曼-寂寞成歌,http://em.21dtv.com/songs/60115713.mkv +飞轮海-寂寞暴走,http://em.21dtv.com/songs/60022824.mkv +周定纬-寂寞包厢,http://em.21dtv.com/songs/60022821.mkv +A-LIN-寂寞不痛,http://em.21dtv.com/songs/60022826.mkv +许亮宇-寂寞不说,http://em.21dtv.com/songs/60075976.mkv +江美琪-芥末不辣,http://em.21dtv.com/songs/60023712.mkv +张栋梁-寂寞边界,http://em.21dtv.com/songs/60022825.mkv +南拳妈妈-决门巴哈,http://em.21dtv.com/songs/60024786.mkv +SNH48-激流之战,http://em.21dtv.com/songs/60083099.mkv +陈娟娟-九鲤之恋,http://em.21dtv.com/songs/60108975.mkv +卓依婷-角落之歌,http://em.21dtv.com/songs/60086627.mkv +佚名-角落之歌,http://em.21dtv.com/songs/60023484.mkv +佚名-角落之歌(探戈),http://em.21dtv.com/songs/60023483.mkv +邓胜利-家里有我,http://em.21dtv.com/songs/60064373.mkv +许冠杰-急流勇退,http://em.21dtv.com/songs/60022617.mkv +陈百强-急流勇退,http://em.21dtv.com/songs/60022616.mkv +邱芸子-酒来一杯(无原唱),http://em.21dtv.com/songs/60024437.mkv +左小祖咒-极乐行事,http://em.21dtv.com/songs/60105796.mkv +音频怪物-君临天下,http://em.21dtv.com/songs/60108151.mkv +蔡健雅-just like the movies(演唱会),http://em.21dtv.com/songs/60003111.mkv +詹雅雯-旧历十五,http://em.21dtv.com/songs/60127382.mkv +郑玉华-眷恋深深,http://em.21dtv.com/songs/60134312.mkv +佚名-极乐世界,http://em.21dtv.com/songs/60022600.mkv +讴洋-蛟龙潜航,http://em.21dtv.com/songs/60115394.mkv +陈军委-军旅情怀,http://em.21dtv.com/songs/60061325.mkv +郑秀文-尽力去改,http://em.21dtv.com/songs/60093303.mkv +罗文-旧侣难忘,http://em.21dtv.com/songs/60024515.mkv +余紫凤-九零女生,http://em.21dtv.com/songs/60024330.mkv +阿信-降龙乐章,http://em.21dtv.com/songs/60023437.mkv +程杨-军旅流年,http://em.21dtv.com/songs/60107098.mkv +孟杨+金波-家里家外,http://em.21dtv.com/songs/60115099.mkv +佚名-嘉陵江上,http://em.21dtv.com/songs/60023053.mkv +谭明-嘉陵江上,http://em.21dtv.com/songs/60023052.mkv +王识贤+谢金燕-酒量酒胆(演唱会),http://em.21dtv.com/songs/60024438.mkv +高达+韦小宝-九龙皇帝(演唱会),http://em.21dtv.com/songs/60024331.mkv +任剑辉-蕉林鬼别,http://em.21dtv.com/songs/60023478.mkv +居子涵-居里夫人,http://em.21dtv.com/songs/60120483.mkv +曹越-金莲的爱,http://em.21dtv.com/songs/60126963.mkv +海弦月-金莲的爱,http://em.21dtv.com/songs/60125873.mkv +燕尾蝶-眷恋草原,http://em.21dtv.com/songs/60112092.mkv +太极乐队-决裂边缘(无原唱),http://em.21dtv.com/songs/60092492.mkv +陈茂丰-酒来安慰,http://em.21dtv.com/songs/60135944.mkv +阎维文-巨龙昂首,http://em.21dtv.com/songs/60024723.mkv +张夕磊-戒了爱情(HD),http://em.21dtv.com/songs/10012780.mkv +张夕磊-戒了爱情,http://em.21dtv.com/songs/60086634.mkv +农夫-讲开又赶,http://em.21dtv.com/songs/60023420.mkv +芦菲-江口水乡,http://em.21dtv.com/songs/60113994.mkv +大平-健康是福,http://em.21dtv.com/songs/60104897.mkv +闫学晶+林傲霏-健康是福,http://em.21dtv.com/songs/60076044.mkv +魏如萱-贾科梅蒂,http://em.21dtv.com/songs/60130920.mkv +黄品冠-健康快乐,http://em.21dtv.com/songs/60023314.mkv +郑融-健康教育,http://em.21dtv.com/songs/60023313.mkv +刘思涵-健康就好,http://em.21dtv.com/songs/60125189.mkv +吉克隽逸-即刻出发,http://em.21dtv.com/songs/60119338.mkv +吉克隽逸-即刻出发,http://em.21dtv.com/songs/60105681.mkv +吉克隽逸-即刻出发,http://em.21dtv.com/songs/60075959.mkv +许廷铿-绝口不提,http://em.21dtv.com/songs/60111398.mkv +柳岩-绝口不提,http://em.21dtv.com/songs/60108635.mkv +杨彦伟-绝口不提,http://em.21dtv.com/songs/60108606.mkv +柳岩-绝口不提,http://em.21dtv.com/songs/60106035.mkv +柳岩-绝口不提(现场版),http://em.21dtv.com/songs/60098527.mkv +童唱-健康宝宝,http://em.21dtv.com/songs/60023310.mkv +刘若英-静静坐着,http://em.21dtv.com/songs/60024269.mkv +魏然+罗景文-拒绝再玩,http://em.21dtv.com/songs/60104622.mkv +吴克羣-拒绝再玩,http://em.21dtv.com/songs/60094850.mkv +吴克群-拒绝再玩,http://em.21dtv.com/songs/60086644.mkv +李克勤-拒绝在玩,http://em.21dtv.com/songs/60024737.mkv +张国荣-拒绝再玩,http://em.21dtv.com/songs/60024736.mkv +吴浩康-拒绝再玩(演唱会),http://em.21dtv.com/songs/60024735.mkv +久久-久久之殇,http://em.21dtv.com/songs/60064415.mkv +阎维文-军交之歌,http://em.21dtv.com/songs/60024898.mkv +李杨飞-金江月夜,http://em.21dtv.com/songs/60085302.mkv +杨庆煌-菁菁校园,http://em.21dtv.com/songs/60124109.mkv +王亚平-交警心声,http://em.21dtv.com/songs/60067123.mkv +李小薇-渐渐习惯,http://em.21dtv.com/songs/60111970.mkv +MC HOTDOG-九局下半,http://em.21dtv.com/songs/60024326.mkv +歪歪+桂晶晶-剑姬无双,http://em.21dtv.com/songs/60125838.mkv +南台湾小姑娘-拒绝往来,http://em.21dtv.com/songs/60024734.mkv +洪一平-酒精味道,http://em.21dtv.com/songs/60024435.mkv +杰利-夹脚拖鞋,http://em.21dtv.com/songs/60124119.mkv +苏丹-寂静森林,http://em.21dtv.com/songs/60096446.mkv +粤曲-锦江诗侣,http://em.21dtv.com/songs/60093020.mkv +范逸臣-就结束了,http://em.21dtv.com/songs/60024602.mkv +关国华-锦江诗侣,http://em.21dtv.com/songs/60024128.mkv +容祖儿-间接伤害,http://em.21dtv.com/songs/60023211.mkv +薛培艺-菁菁如我,http://em.21dtv.com/songs/60131797.mkv +汤宝如-旧居入伙,http://em.21dtv.com/songs/60024511.mkv +佚名-加价热潮,http://em.21dtv.com/songs/60022961.mkv +肖天+杨阳-九九情歌,http://em.21dtv.com/songs/60024319.mkv +夏后-即将破晓,http://em.21dtv.com/songs/60125333.mkv +京剧-进京劈难,http://em.21dtv.com/songs/60089603.mkv +M3-倔强男子,http://em.21dtv.com/songs/60024885.mkv +回音哥-居家男人,http://em.21dtv.com/songs/60076194.mkv +蔡安荞-倔强女孩(演唱会),http://em.21dtv.com/songs/60024886.mkv +李恕权-静静聆听(无原唱),http://em.21dtv.com/songs/60024267.mkv +王媛渊-静静静静,http://em.21dtv.com/songs/60096398.mkv +何韵诗-酒精和烟,http://em.21dtv.com/songs/60083190.mkv +FREEZE-金睛火眼,http://em.21dtv.com/songs/60024051.mkv +小米阿累-街角回忆,http://em.21dtv.com/songs/60023586.mkv +冯巩-见机行事,http://em.21dtv.com/songs/60089665.mkv +徐熙娣-姐姐好饿,http://em.21dtv.com/songs/60128013.mkv +彭丽媛-九九归一,http://em.21dtv.com/songs/60024315.mkv +谢霆锋-拒绝孤独,http://em.21dtv.com/songs/60092114.mkv +胡杰夕-绝技敷衍,http://em.21dtv.com/songs/60072102.mkv +傅颖-加加夫人,http://em.21dtv.com/songs/60022959.mkv +孟庭苇-翦翦风儿,http://em.21dtv.com/songs/60070798.mkv +韦浩轩-静静的夜,http://em.21dtv.com/songs/60094763.mkv +田维英-寂静的夜,http://em.21dtv.com/songs/60075974.mkv +杨丽-救救地球,http://em.21dtv.com/songs/60096092.mkv +玄英-姐姐的梦,http://em.21dtv.com/songs/60023640.mkv +彭清-静静的花,http://em.21dtv.com/songs/60133709.mkv +谢丹-倔强的海,http://em.21dtv.com/songs/60024883.mkv +L A BOYZ-季节的歌,http://em.21dtv.com/songs/60022751.mkv +蔡卓妍-简简单单,http://em.21dtv.com/songs/60116234.mkv +吴宗宪-简简单单,http://em.21dtv.com/songs/60090810.mkv +杨建-渐渐懂得,http://em.21dtv.com/songs/60083142.mkv +王翠玲-简简单单,http://em.21dtv.com/songs/60023273.mkv +林俊杰-简简单单,http://em.21dtv.com/songs/60023272.mkv +蔡卓妍-简简单单,http://em.21dtv.com/songs/60023271.mkv +蔡卓妍-简简单单(演唱会),http://em.21dtv.com/songs/60023270.mkv +群星-简简单单(无原唱),http://em.21dtv.com/songs/60023269.mkv +SNH48-禁忌的爱,http://em.21dtv.com/songs/60109883.mkv +黄品源-禁忌的爱,http://em.21dtv.com/songs/60093529.mkv +江蕙-倔强的爱,http://em.21dtv.com/songs/60024881.mkv +曾心梅-倔强的爱,http://em.21dtv.com/songs/60024880.mkv +慕容晓晓+李俊熙-加减乘除,http://em.21dtv.com/songs/60121713.mkv +刘小慧-加减乘除,http://em.21dtv.com/songs/60022964.mkv +花儿乐队-加减乘除,http://em.21dtv.com/songs/60022963.mkv +戴爱玲-加减乘除,http://em.21dtv.com/songs/60022962.mkv +郑俊海-金鸡报晓,http://em.21dtv.com/songs/60132987.mkv +张祥洪-拒绝悲伤,http://em.21dtv.com/songs/60083200.mkv +林玉婷-拒绝不了(无原唱),http://em.21dtv.com/songs/60024730.mkv +蔡秋凤-酒戒不好,http://em.21dtv.com/songs/60024434.mkv +七郎-酒解不好,http://em.21dtv.com/songs/60024433.mkv +茅原实里-境界の彼方,http://em.21dtv.com/songs/60097470.mkv +许嵩-敬酒不吃,http://em.21dtv.com/songs/60061312.mkv +吴俅-结婚证书(无原唱),http://em.21dtv.com/songs/60023622.mkv +轻乐队-江湖招牌,http://em.21dtv.com/songs/60122154.mkv +胡彦斌-江湖再见,http://em.21dtv.com/songs/60132815.mkv +卢广仲-结婚钻戒,http://em.21dtv.com/songs/60123719.mkv +胡彦斌-江湖再见,http://em.21dtv.com/songs/60096444.mkv +储兰兰+吴彤-金号之歌(演唱会),http://em.21dtv.com/songs/60076138.mkv +阿香-籍湖月夜,http://em.21dtv.com/songs/60104534.mkv +周芳-家好月圆,http://em.21dtv.com/songs/60022999.mkv +朱跃明-江湖英雄,http://em.21dtv.com/songs/60023338.mkv +钟舒漫-劫后余生,http://em.21dtv.com/songs/60103644.mkv +萧亚轩-劫后余生,http://em.21dtv.com/songs/60102678.mkv +胡彦斌-劫后余生,http://em.21dtv.com/songs/60083157.mkv +汪苏泷-江湖有事,http://em.21dtv.com/songs/60064388.mkv +许嵩+黄龄-惊鸿一曲,http://em.21dtv.com/songs/60106273.mkv +许嵩+黄龄-惊鸿一面,http://em.21dtv.com/songs/60103573.mkv +荒山亮-江湖戏子,http://em.21dtv.com/songs/60066062.mkv +黄韵玲-结婚喜帖,http://em.21dtv.com/songs/60023621.mkv +迪克牛仔-酒后心声,http://em.21dtv.com/songs/60076175.mkv +BEYOND-教坏细路,http://em.21dtv.com/songs/60023534.mkv +盛云龙+张华-江湖兄弟,http://em.21dtv.com/songs/60102577.mkv +郑秀文-交换温柔,http://em.21dtv.com/songs/60023457.mkv +许志安-交换温柔(演唱会),http://em.21dtv.com/songs/60023456.mkv +汪苏泷-江湖天下,http://em.21dtv.com/songs/60132674.mkv +苗苗-镜花水月,http://em.21dtv.com/songs/60096477.mkv +苏路-镜花水月,http://em.21dtv.com/songs/60068392.mkv +尹光-借货生涯(演唱会),http://em.21dtv.com/songs/60061301.mkv +梅艳芳-镜花水月,http://em.21dtv.com/songs/60024284.mkv +关德辉-镜花水月,http://em.21dtv.com/songs/60024283.mkv +李玉刚-镜花水月(演唱会),http://em.21dtv.com/songs/60024282.mkv +鸿飞-金猴送喜,http://em.21dtv.com/songs/60118203.mkv +望海高歌-江湖散人,http://em.21dtv.com/songs/60126983.mkv +闫泽-酒虎诗龙,http://em.21dtv.com/songs/60135868.mkv +苦荣+陈慧琳-几何三角,http://em.21dtv.com/songs/60022656.mkv +梁锋-金猴送福,http://em.21dtv.com/songs/60117864.mkv +墨明棋妙-江湖闪蝶(故事情节),http://em.21dtv.com/songs/60100815.mkv +位婷婷-姐很任性,http://em.21dtv.com/songs/60112499.mkv +辰亦儒-交换人生,http://em.21dtv.com/songs/60112988.mkv +白冰冰-酒后人生,http://em.21dtv.com/songs/60024428.mkv +梅艳芳-旧欢如梦,http://em.21dtv.com/songs/60111209.mkv +群星-旧欢如梦,http://em.21dtv.com/songs/60093041.mkv +合唱-旧欢如梦,http://em.21dtv.com/songs/60092442.mkv +佚名-旧欢如梦,http://em.21dtv.com/songs/60024510.mkv +朱孝天-旧欢如梦(演唱会),http://em.21dtv.com/songs/60024509.mkv +谭咏麟-旧欢如梦(演唱会),http://em.21dtv.com/songs/60024508.mkv +李克勤-旧欢如梦(演唱会),http://em.21dtv.com/songs/60024507.mkv +锦绣二重唱-交换日记(演唱会),http://em.21dtv.com/songs/60023454.mkv +王祖蓝-江湖七怪,http://em.21dtv.com/songs/60076048.mkv +卜学亮-机会碰,http://em.21dtv.com/songs/60097220.mkv +邓妙华-讲乎你知,http://em.21dtv.com/songs/60066063.mkv +吴淑敏-嫁乎你哟,http://em.21dtv.com/songs/60023170.mkv +张崇德+张崇基-机会难得(演唱会),http://em.21dtv.com/songs/60061276.mkv +伊凰-交乎你带(无原唱),http://em.21dtv.com/songs/60023451.mkv +胡杏儿+李思捷-交换快乐,http://em.21dtv.com/songs/60066066.mkv +张学友-净化空间,http://em.21dtv.com/songs/60024242.mkv +郑融-叫好叫座,http://em.21dtv.com/songs/60023503.mkv +叶慧婷-叫好叫座,http://em.21dtv.com/songs/60023502.mkv +萧忆情-江湖江湖,http://em.21dtv.com/songs/60128358.mkv +叶启田-机会机会,http://em.21dtv.com/songs/60022510.mkv +菜鸟+董へ-酒后驾车,http://em.21dtv.com/songs/60024427.mkv +荒山亮+风采轮-江湖何在,http://em.21dtv.com/songs/60076046.mkv +李胜基-结婚好吗,http://em.21dtv.com/songs/60086630.mkv +芭比-酒喝乎漓,http://em.21dtv.com/songs/60024419.mkv +姜鹏-九号公馆,http://em.21dtv.com/songs/60024311.mkv +姜鹏-江湖大道,http://em.21dtv.com/songs/60128950.mkv +姜鹏-江湖大道,http://em.21dtv.com/songs/60119406.mkv +纪晓斌-静慧禅缘,http://em.21dtv.com/songs/60114721.mkv +郭富城+刘行格-菊皇茶语,http://em.21dtv.com/songs/60076197.mkv +梁耀安+蒋文端-剑合钗缘,http://em.21dtv.com/songs/60023304.mkv +姚志强+倪思英-剑合钗圆,http://em.21dtv.com/songs/60023302.mkv +邓志驹+李池湘-剑合钗圆,http://em.21dtv.com/songs/60023301.mkv +姚志强+曾慧-剑合钗圆(一),http://em.21dtv.com/songs/60023300.mkv +郑少秋+谢雪心-剑合钗圆(演唱会),http://em.21dtv.com/songs/60023299.mkv +佚名-京华春梦,http://em.21dtv.com/songs/60024190.mkv +徐小凤-京华春梦,http://em.21dtv.com/songs/60024189.mkv +EO2-京华春梦,http://em.21dtv.com/songs/60024188.mkv +汪明荃-京华春梦(演唱会),http://em.21dtv.com/songs/60024187.mkv +成于申-见或不见,http://em.21dtv.com/songs/60098393.mkv +何晟铭-见或不见,http://em.21dtv.com/songs/60085273.mkv +何晟铭+香香-见或不见,http://em.21dtv.com/songs/60023285.mkv +杨语莲-嫁或不嫁,http://em.21dtv.com/songs/60023171.mkv +陈奕迅+汤唯-交换爱情,http://em.21dtv.com/songs/60117332.mkv +清水翔太-君が好き,http://em.21dtv.com/songs/60119781.mkv +郁钧剑-军港之夜,http://em.21dtv.com/songs/60024895.mkv +苏小明-军港之夜,http://em.21dtv.com/songs/60024894.mkv +龚月-军港之夜,http://em.21dtv.com/songs/60024893.mkv +苏小明-军港之夜(演唱会),http://em.21dtv.com/songs/60024892.mkv +丁汀-军港之夜(演唱会),http://em.21dtv.com/songs/60024891.mkv +农夫-举高只手(演唱会),http://em.21dtv.com/songs/60024715.mkv +韦海涛-极光之恋,http://em.21dtv.com/songs/60094342.mkv +郭静-靖姑之歌,http://em.21dtv.com/songs/60131895.mkv +蔡秋凤-酒干仔伴,http://em.21dtv.com/songs/60095924.mkv +佚名-酒矸仔伴,http://em.21dtv.com/songs/60024399.mkv +小凤凤-酒国英雄,http://em.21dtv.com/songs/60024418.mkv +林姗-酒国英雄,http://em.21dtv.com/songs/60024417.mkv +陈百潭-酒国英雄,http://em.21dtv.com/songs/60024416.mkv +谢雷-酒国英雄(无原唱),http://em.21dtv.com/songs/60024415.mkv +蔡滢萱+熊子锐-巾帼英雄,http://em.21dtv.com/songs/60023736.mkv +彭炽权+曾慧-镜阁斜阳(戏曲),http://em.21dtv.com/songs/60092666.mkv +金久哲-济公显灵,http://em.21dtv.com/songs/60116306.mkv +庞龙+董卿-嫁给幸福,http://em.21dtv.com/songs/60081955.mkv +庞龙+董卿-嫁给幸福(演唱会),http://em.21dtv.com/songs/60023168.mkv +玖壹壹-嫁给我吧,http://em.21dtv.com/songs/60125965.mkv +列子-嫁给我吧,http://em.21dtv.com/songs/60120351.mkv +罗中旭-嫁给我吧,http://em.21dtv.com/songs/60112883.mkv +孙坚-嫁给我吧(HD),http://em.21dtv.com/songs/10012767.mkv +RK 金承熙-嫁给我吧,http://em.21dtv.com/songs/60108242.mkv +孟勇-嫁给我吧,http://em.21dtv.com/songs/60067114.mkv +王启文-嫁给我吧,http://em.21dtv.com/songs/60023165.mkv +君臣-嫁给我吧,http://em.21dtv.com/songs/60023164.mkv +黄鹤翔-嫁给我吧,http://em.21dtv.com/songs/60023163.mkv +齐秦-九个太阳,http://em.21dtv.com/songs/60024309.mkv +李丹阳-军歌声声,http://em.21dtv.com/songs/60024897.mkv +农夫-举高双手,http://em.21dtv.com/songs/60024714.mkv +太极-几个十年,http://em.21dtv.com/songs/60133537.mkv +艾怡良-坚固柔情,http://em.21dtv.com/songs/60080419.mkv +LISA-坚固柔情,http://em.21dtv.com/songs/60023192.mkv +吴梵-酒馆情歌,http://em.21dtv.com/songs/60024411.mkv +乔洋-交个朋友,http://em.21dtv.com/songs/60023448.mkv +杜鹏-击鼓骂曹,http://em.21dtv.com/songs/60022498.mkv +郑志立-举个栗子,http://em.21dtv.com/songs/60094712.mkv +佚名-九个老头,http://em.21dtv.com/songs/60024308.mkv +陈雷-酒国恋歌,http://em.21dtv.com/songs/60024414.mkv +廖梓含-酒鬼老爸,http://em.21dtv.com/songs/60076174.mkv +古巨基-劲歌金曲,http://em.21dtv.com/songs/60024175.mkv +古巨基-劲歌金曲(演唱会),http://em.21dtv.com/songs/60024174.mkv +彭美琪-嫁给寂寞,http://em.21dtv.com/songs/60133710.mkv +陈姳妤-嫁给寂寞,http://em.21dtv.com/songs/60108123.mkv +向涌+董明-积功尽力,http://em.21dtv.com/songs/60115041.mkv +黄妃-假鬼假怪,http://em.21dtv.com/songs/60132013.mkv +佚名-救国军歌,http://em.21dtv.com/songs/60024576.mkv +于文华-嫁个好人,http://em.21dtv.com/songs/60023159.mkv +尚雯婕-金刚风暴,http://em.21dtv.com/songs/60097323.mkv +黄馨仪-极光的爱,http://em.21dtv.com/songs/60022597.mkv +邓丽欣-金光灿烂,http://em.21dtv.com/songs/60024047.mkv +邓丽欣-金光灿烂(演唱会),http://em.21dtv.com/songs/60024046.mkv +黄鸿升-金刚变形,http://em.21dtv.com/songs/60064406.mkv +谢文雅-将功补过,http://em.21dtv.com/songs/60067122.mkv +黄舒骏-见怪不怪,http://em.21dtv.com/songs/60023283.mkv +邓昊天-见怪不怪,http://em.21dtv.com/songs/60023282.mkv +吴雨霏-肌肤之亲(演唱会),http://em.21dtv.com/songs/60022512.mkv +张柏芝-几分之几,http://em.21dtv.com/songs/60022653.mkv +刘涛-甲方乙方,http://em.21dtv.com/songs/60097199.mkv +戏曲-假凤虚凰,http://em.21dtv.com/songs/60092723.mkv +曾慧+邓志驹-假凤虚凤,http://em.21dtv.com/songs/60023081.mkv +眉佳-接风洗尘,http://em.21dtv.com/songs/60023561.mkv +林宥嘉-金粉世家,http://em.21dtv.com/songs/60109459.mkv +何璐-金粉世家,http://em.21dtv.com/songs/60090605.mkv +萧淑慎-解放情人,http://em.21dtv.com/songs/60066071.mkv +佚名-金发美人,http://em.21dtv.com/songs/60024043.mkv +柯有伦+安心亚-解放浪漫,http://em.21dtv.com/songs/60106032.mkv +陈秀雯-疾风劲草(演唱会),http://em.21dtv.com/songs/60022623.mkv +蒙克+辛莉-结发夫妻[演],http://em.21dtv.com/songs/60101680.mkv +蒙克+辛莉-结发夫妻,http://em.21dtv.com/songs/60064393.mkv +红豆-解放的爱,http://em.21dtv.com/songs/60023662.mkv +八三夭-饥饿游戏,http://em.21dtv.com/songs/60131183.mkv +汤俊-今儿是年(无原唱),http://em.21dtv.com/songs/60090039.mkv +汤俊+刘欢冰-今儿是年,http://em.21dtv.com/songs/60088199.mkv +陈柏宇-Jeep,http://em.21dtv.com/songs/60114213.mkv +青稞荞麦-简单主义,http://em.21dtv.com/songs/60067117.mkv +群星-极道战役,http://em.21dtv.com/songs/60022592.mkv +邓丽欣-京都之雪,http://em.21dtv.com/songs/60024186.mkv +明月微风-姐弟真情,http://em.21dtv.com/songs/60119609.mkv +媚儿菲菲+后来者-姐弟真情,http://em.21dtv.com/songs/60119409.mkv +李玟-就到这里(演唱会),http://em.21dtv.com/songs/60024600.mkv +舒桐-敬德装疯,http://em.21dtv.com/songs/60024245.mkv +张榜强-假的真的,http://em.21dtv.com/songs/60099235.mkv +佚名-借多一夜,http://em.21dtv.com/songs/60023717.mkv +李建科-记得有我,http://em.21dtv.com/songs/60124066.mkv +白浩楠-记得有我,http://em.21dtv.com/songs/60121972.mkv +容祖儿+栗锦-绝对一对,http://em.21dtv.com/songs/60024836.mkv +郭桂彬-极道演唱,http://em.21dtv.com/songs/60095943.mkv +甄秀珍-几度斜阳,http://em.21dtv.com/songs/60022641.mkv +张家辉-假的希望,http://em.21dtv.com/songs/60023079.mkv +陈晓东-急冻心灵,http://em.21dtv.com/songs/60022615.mkv +陈晓东-急冻心灵(演唱会),http://em.21dtv.com/songs/60022614.mkv +佚名-姐弟相会,http://em.21dtv.com/songs/60023636.mkv +刘超洋-简单幸福,http://em.21dtv.com/songs/60023267.mkv +冯允谦+林欣彤-讲多无谓,http://em.21dtv.com/songs/60103911.mkv +蓝喆-记得我们,http://em.21dtv.com/songs/60022701.mkv +陈冠希-记得我吗,http://em.21dtv.com/songs/60022700.mkv +林峰-记得忘记,http://em.21dtv.com/songs/60022761.mkv +林峰-记得忘记(演唱会),http://em.21dtv.com/songs/60022694.mkv +周文彤-家的味道,http://em.21dtv.com/songs/60107594.mkv +倪子冈-绝对无敌,http://em.21dtv.com/songs/60089624.mkv +倪子冈-绝队无敌,http://em.21dtv.com/songs/60024824.mkv +庞龙-家的味道,http://em.21dtv.com/songs/60022997.mkv +卫兰-街灯晚餐,http://em.21dtv.com/songs/60072073.mkv +董贞-九鼎天下,http://em.21dtv.com/songs/60107177.mkv +羽泉-绝地逃亡,http://em.21dtv.com/songs/60123087.mkv +易欣-九等天使,http://em.21dtv.com/songs/60024301.mkv +轲然-家的思念,http://em.21dtv.com/songs/60088733.mkv +荒山亮-绝代神龙,http://em.21dtv.com/songs/60024821.mkv +罗文-绝代双娇,http://em.21dtv.com/songs/60093030.mkv +罗文-绝代双骄,http://em.21dtv.com/songs/60024823.mkv +吴雨霏+邓丽欣-绝代双娇,http://em.21dtv.com/songs/60024822.mkv +卢飞-简单生活,http://em.21dtv.com/songs/60023266.mkv +梁咏琪-简单生活,http://em.21dtv.com/songs/60023265.mkv +谭咏麟+刘德华-简单是福,http://em.21dtv.com/songs/60135760.mkv +沈丹丹-简单任务,http://em.21dtv.com/songs/60125862.mkv +蔡小虎-简单情歌,http://em.21dtv.com/songs/60067116.mkv +黄品源-简单情歌(演唱会),http://em.21dtv.com/songs/60023264.mkv +许志安-几段情歌(演唱会),http://em.21dtv.com/songs/60022644.mkv +林子祥-几段情歌(演唱会),http://em.21dtv.com/songs/60022643.mkv +林佳仪-决定去爱,http://em.21dtv.com/songs/60024777.mkv +虞笙-简单朋友,http://em.21dtv.com/songs/60061293.mkv +SUPER131-极度澎湃,http://em.21dtv.com/songs/60072059.mkv +王宇-记得那些,http://em.21dtv.com/songs/60083115.mkv +王雅洁-简单女人,http://em.21dtv.com/songs/60023263.mkv +张瑶-简单女孩,http://em.21dtv.com/songs/60023262.mkv +吴克群-家的名字,http://em.21dtv.com/songs/60022996.mkv +吴迪-坚定梦想,http://em.21dtv.com/songs/60117616.mkv +郭富城-绝对美丽,http://em.21dtv.com/songs/60024834.mkv +郭富城-绝对美丽(演唱会),http://em.21dtv.com/songs/60024833.mkv +郭建宁-剑胆梅魂,http://em.21dtv.com/songs/60108928.mkv +区文诗-绝对领域,http://em.21dtv.com/songs/60061324.mkv +MAYA-金达莱花,http://em.21dtv.com/songs/60099682.mkv +容祖儿-加大力度,http://em.21dtv.com/songs/60069496.mkv +张敬轩-假的恋爱,http://em.21dtv.com/songs/60083123.mkv +关淑怡-假的恋爱,http://em.21dtv.com/songs/60023078.mkv +关淑怡-假的恋爱(演唱会),http://em.21dtv.com/songs/60023077.mkv +蔡枫华-绝对空虚(演唱会),http://em.21dtv.com/songs/60061323.mkv +佚名-绝对空虚,http://em.21dtv.com/songs/60024831.mkv +张佑伊-家的快乐,http://em.21dtv.com/songs/60094094.mkv +谢珊-简单快乐,http://em.21dtv.com/songs/60070797.mkv +谢娜-简单快乐,http://em.21dtv.com/songs/60023261.mkv +郁钧剑-军队节奏,http://em.21dtv.com/songs/60024890.mkv +佚名-军队节奏,http://em.21dtv.com/songs/60024889.mkv +小豪-静待佳人,http://em.21dtv.com/songs/60115880.mkv +李翊君-戒掉坚强,http://em.21dtv.com/songs/60083162.mkv +屈风+常笑-鸡都叫了,http://em.21dtv.com/songs/60133609.mkv +郑伊健-焦点角度,http://em.21dtv.com/songs/60093268.mkv +薛家燕-皆大欢喜,http://em.21dtv.com/songs/60023557.mkv +薛家燕-皆大欢喜(演唱会),http://em.21dtv.com/songs/60023556.mkv +薛家燕+TWINS-皆大欢喜(演唱会),http://em.21dtv.com/songs/60023555.mkv +张勇-几度回首,http://em.21dtv.com/songs/60091051.mkv +李自强-静待花开,http://em.21dtv.com/songs/60024258.mkv +邬祯琳-简单回答,http://em.21dtv.com/songs/60083134.mkv +张玲(滴滴)-家的港湾,http://em.21dtv.com/songs/60109326.mkv +张惠妹-家的感觉,http://em.21dtv.com/songs/60091090.mkv +勇钢-家的感觉,http://em.21dtv.com/songs/60083119.mkv +萧凡-简单改变,http://em.21dtv.com/songs/60127352.mkv +熊七梅-家的方向,http://em.21dtv.com/songs/60110365.mkv +小乔-家的方向,http://em.21dtv.com/songs/60104070.mkv +于淼-家的方向,http://em.21dtv.com/songs/60069497.mkv +何弘轩-绝地反弹,http://em.21dtv.com/songs/60126602.mkv +郭子-极度疯狂(演唱会),http://em.21dtv.com/songs/60022595.mkv +李明洋-坚定的心,http://em.21dtv.com/songs/60118677.mkv +佚名-酒店大堂(无原唱),http://em.21dtv.com/songs/60024397.mkv +李代沫-简单的事,http://em.21dtv.com/songs/60081579.mkv +韩庚-简单的人(演唱会),http://em.21dtv.com/songs/60062426.mkv +杨丞琳-绝对达令,http://em.21dtv.com/songs/60024830.mkv +冯允谦-简单的歌,http://em.21dtv.com/songs/60103908.mkv +祁哲西-简单的歌,http://em.21dtv.com/songs/60097461.mkv +最美和声八强学员-经典串烧,http://em.21dtv.com/songs/60094528.mkv +林忆莲-讲多错多(演唱会),http://em.21dtv.com/songs/60023415.mkv +佚名-酒店悲情(无原唱),http://em.21dtv.com/songs/60024396.mkv +林锋-简单别离,http://em.21dtv.com/songs/60023253.mkv +南拳妈妈-决斗巴哈,http://em.21dtv.com/songs/60024782.mkv +吴克群-绝对不放,http://em.21dtv.com/songs/60024829.mkv +邰正宵-绝对宝贝,http://em.21dtv.com/songs/60024828.mkv +冷漠-简单爱情,http://em.21dtv.com/songs/60080195.mkv +黄阅-简单爱情,http://em.21dtv.com/songs/60023252.mkv +王颖淇-决定爱你,http://em.21dtv.com/songs/60085314.mkv +天悦-简单爱你,http://em.21dtv.com/songs/60076037.mkv +徐若瑄-决定爱你,http://em.21dtv.com/songs/60024776.mkv +警察兄弟组合-警察职责,http://em.21dtv.com/songs/60135731.mkv +陈永强-精创之路,http://em.21dtv.com/songs/60068389.mkv +黄晓-精彩中国,http://em.21dtv.com/songs/60024217.mkv +佚名-君臣游园,http://em.21dtv.com/songs/60024926.mkv +黄跃蓉-酒城雨巷,http://em.21dtv.com/songs/60120169.mkv +童安格-纠缠一生,http://em.21dtv.com/songs/60091803.mkv +林子祥-交出一切,http://em.21dtv.com/songs/60023446.mkv +张利志-寄存心愿,http://em.21dtv.com/songs/60103265.mkv +寂悸-绝唱西湖,http://em.21dtv.com/songs/60125419.mkv +梁锋-机车兄弟,http://em.21dtv.com/songs/60131575.mkv +成云刚+王星星-剑刺我心,http://em.21dtv.com/songs/60067118.mkv +佚名-交叉算了,http://em.21dtv.com/songs/60023440.mkv +雷龙-经彩人生,http://em.21dtv.com/songs/60108143.mkv +雷龙-经彩人生,http://em.21dtv.com/songs/60102920.mkv +高林生-精彩人生,http://em.21dtv.com/songs/60076156.mkv +王建杰-酒场人生,http://em.21dtv.com/songs/60024392.mkv +元卫觉醒-机车人生,http://em.21dtv.com/songs/60022505.mkv +蔡凤凰+杨鸣-酒场情话,http://em.21dtv.com/songs/60095889.mkv +佚名-酒场情话,http://em.21dtv.com/songs/60095448.mkv +阎维文-警察情怀,http://em.21dtv.com/songs/60024239.mkv +黄乙玲+施文彬-酒场情歌,http://em.21dtv.com/songs/60024391.mkv +罗百吉-机车女孩,http://em.21dtv.com/songs/60022504.mkv +郑希怡-精彩年代(无原唱),http://em.21dtv.com/songs/60024216.mkv +许嘉文-坚持梦想,http://em.21dtv.com/songs/60122112.mkv +许嘉文-坚持梦想,http://em.21dtv.com/songs/60076032.mkv +方小菲-坚持梦想(演唱会),http://em.21dtv.com/songs/60064384.mkv +黄克林-酒场浪子,http://em.21dtv.com/songs/60024389.mkv +卓依婷-酒场浪子(演唱会),http://em.21dtv.com/songs/60024388.mkv +陈一郎-酒场恋歌(演唱会),http://em.21dtv.com/songs/60024390.mkv +玄觞-就此结束,http://em.21dtv.com/songs/60101670.mkv +徐小凤-劲草娇花,http://em.21dtv.com/songs/60092709.mkv +舒雅颂-劲草娇花(演唱会),http://em.21dtv.com/songs/60061310.mkv +林姗姗-劲草娇花,http://em.21dtv.com/songs/60024173.mkv +陈浩德-劲草娇花,http://em.21dtv.com/songs/60024172.mkv +宝云-将错就错,http://em.21dtv.com/songs/60117679.mkv +郑冰冰-聚成精彩,http://em.21dtv.com/songs/60076201.mkv +张栋梁-将错就错,http://em.21dtv.com/songs/60023376.mkv +孟庭苇-将错就错,http://em.21dtv.com/songs/60023375.mkv +TWINS-交叉感染,http://em.21dtv.com/songs/60066065.mkv +佚名-几朝风雨,http://em.21dtv.com/songs/60022633.mkv +芭比-解除防卫,http://em.21dtv.com/songs/60023661.mkv +李度-就此分手(演唱会),http://em.21dtv.com/songs/60024596.mkv +王迪-就此放手,http://em.21dtv.com/songs/60024595.mkv +青鸟飞鱼-就此放手,http://em.21dtv.com/songs/60024594.mkv +张涵雅-家常饭菜,http://em.21dtv.com/songs/60100030.mkv +龙军-坚持付出,http://em.21dtv.com/songs/60023190.mkv +简美妍-仅此而已(演唱会),http://em.21dtv.com/songs/60024116.mkv +佚名-交城的山,http://em.21dtv.com/songs/60023442.mkv +阿杜-坚持到底,http://em.21dtv.com/songs/60128508.mkv +斯琴高丽+顾峰-坚持到底,http://em.21dtv.com/songs/60093786.mkv +阿杜-坚持到底,http://em.21dtv.com/songs/60023188.mkv +马旭东-就此别过,http://em.21dtv.com/songs/60124713.mkv +佚名-久别重逢,http://em.21dtv.com/songs/60024374.mkv +梁丽荣-绝不言悔(无原唱),http://em.21dtv.com/songs/60024820.mkv +阿兰-金杯银杯,http://em.21dtv.com/songs/60105454.mkv +韩庚-静不下来,http://em.21dtv.com/songs/60072093.mkv +张韶涵-静不下来,http://em.21dtv.com/songs/60024257.mkv +谢雷+电台陈雷-结拜兄弟,http://em.21dtv.com/songs/60135755.mkv +AIR SUPPLY-just between the lines(演唱会),http://em.21dtv.com/songs/60003100.mkv +山野-决不投降,http://em.21dtv.com/songs/60104984.mkv +郑亨敦-江北帅哥,http://em.21dtv.com/songs/60083144.mkv +王绎龙-绝不认输,http://em.21dtv.com/songs/60076206.mkv +郑玉华-结伴情缘,http://em.21dtv.com/songs/60134314.mkv +吴梓涵-戒不了你,http://em.21dtv.com/songs/60115052.mkv +王力宏-戒不了你,http://em.21dtv.com/songs/60023699.mkv +王俊宇-记不记得,http://em.21dtv.com/songs/60022674.mkv +孟杨-镜泊湖颂,http://em.21dtv.com/songs/60024281.mkv +金志文-绝不呼救,http://em.21dtv.com/songs/60097369.mkv +杜德伟-绝不后悔,http://em.21dtv.com/songs/60024817.mkv +刘昊霖-煎饼果子,http://em.21dtv.com/songs/60131207.mkv +黄征-绝不放手,http://em.21dtv.com/songs/60024816.mkv +罗百吉-绝不放弃,http://em.21dtv.com/songs/60024815.mkv +陆锋-绝不放弃,http://em.21dtv.com/songs/60024813.mkv +刘德华-绝不放弃(演唱会),http://em.21dtv.com/songs/60024812.mkv +陆锋-决不放弃,http://em.21dtv.com/songs/60024766.mkv +嘎嘎+李洛洋-绝不低头,http://em.21dtv.com/songs/60122629.mkv +白雪-久别的人,http://em.21dtv.com/songs/60024373.mkv +佚名-嫁不对人,http://em.21dtv.com/songs/60023158.mkv +黄乙玲-嫁不对人,http://em.21dtv.com/songs/60023157.mkv +洪荣宏-嫁不对人,http://em.21dtv.com/songs/60023156.mkv +邹灏-戒不掉你(无原唱),http://em.21dtv.com/songs/60023697.mkv +杨钧钧-戒不掉你(无原唱),http://em.21dtv.com/songs/60023696.mkv +佑璇-叫不对名(无原唱),http://em.21dtv.com/songs/60023500.mkv +林峰+关菊英-讲不出声(演唱会),http://em.21dtv.com/songs/60062630.mkv +关菊英-讲不出声,http://em.21dtv.com/songs/60023411.mkv +泳儿-讲不出声(演唱会),http://em.21dtv.com/songs/60023410.mkv +李茏怡-骄兵不败,http://em.21dtv.com/songs/60023476.mkv +陈冠希-极爱自己,http://em.21dtv.com/songs/60022591.mkv +方瑞娥+高向鹏-敬爱一杯,http://em.21dtv.com/songs/60024244.mkv +冷漠-旧爱新疼,http://em.21dtv.com/songs/60113279.mkv +慕容晓晓-旧爱新伤,http://em.21dtv.com/songs/60024502.mkv +方瑞娥-旧爱新欢,http://em.21dtv.com/songs/60067140.mkv +潘越云+李宗盛-旧爱新欢,http://em.21dtv.com/songs/60024501.mkv +黎瑞恩-旧爱新欢,http://em.21dtv.com/songs/60024500.mkv +群星-将爱实现,http://em.21dtv.com/songs/60023371.mkv +张清芳-旧爱难了,http://em.21dtv.com/songs/60024498.mkv +SNH48-骄傲女孩(演),http://em.21dtv.com/songs/60099038.mkv +财部有辉-just a litle bee(无原唱),http://em.21dtv.com/songs/60003096.mkv +陈倩倩-见爱就躲,http://em.21dtv.com/songs/60023278.mkv +区文诗-将爱就错(演唱会),http://em.21dtv.com/songs/60023366.mkv +Redholic-将爱活埋,http://em.21dtv.com/songs/60127661.mkv +杨坤+张靓颖-骄傲飞翔,http://em.21dtv.com/songs/60023475.mkv +张春燕-骄傲的猫(儿歌),http://em.21dtv.com/songs/60089862.mkv +张燕峰+黄鹤-骄傲的花,http://em.21dtv.com/songs/60132457.mkv +杨天宁-桀骜不驯,http://em.21dtv.com/songs/60133837.mkv +FLUMPOOL-君に届け,http://em.21dtv.com/songs/60024925.mkv +钟嘉欣-if you want me,http://em.21dtv.com/songs/60002806.mkv +THE SCRIPT-if you see kay(演唱会),http://em.21dtv.com/songs/60070356.mkv +BRITNEY SPEARS-if you seek amy,http://em.21dtv.com/songs/60002802.mkv +RK金承熙-I Yo,http://em.21dtv.com/songs/60123524.mkv +NS允智+朴宰范-if you love me,http://em.21dtv.com/songs/60073419.mkv +佚名-if you love me(无原唱),http://em.21dtv.com/songs/60002800.mkv +山猪+桃子+小段-if you love me(无原唱),http://em.21dtv.com/songs/60002799.mkv +FIVE-if ya gettindown,http://em.21dtv.com/songs/60002786.mkv +叶丽仪-if you go away(演唱会),http://em.21dtv.com/songs/60002794.mkv +BLUE-if you come back,http://em.21dtv.com/songs/60002791.mkv +佚名-im your baby tonight,http://em.21dtv.com/songs/60002896.mkv +童唱-if you are happy,http://em.21dtv.com/songs/60002788.mkv +TWINS-if you are happy,http://em.21dtv.com/songs/60002787.mkv +GEORGE MICHAEL-i want your sex,http://em.21dtv.com/songs/60002712.mkv +方大同-i want you back,http://em.21dtv.com/songs/60073402.mkv +N SYNC-i want you back,http://em.21dtv.com/songs/60002706.mkv +侧田-i want you back(演唱会),http://em.21dtv.com/songs/60002705.mkv +BARRY MANILOW-i write the songs,http://em.21dtv.com/songs/60002742.mkv +叶丽仪-i write the song(演唱会),http://em.21dtv.com/songs/60002741.mkv +AILEE-i will show you,http://em.21dtv.com/songs/60073405.mkv +DESTINY'S CHILD-independent women part 1,http://em.21dtv.com/songs/60002940.mkv +佚名-i was only joking,http://em.21dtv.com/songs/60002713.mkv +CANNIBAL CORPSE-i will kill you(演唱会),http://em.21dtv.com/songs/60082207.mkv +梁咏琪-i wish i was,http://em.21dtv.com/songs/60002730.mkv +言承旭-i want in now,http://em.21dtv.com/songs/60002695.mkv +谭锡禧-i who have nothing(演唱会),http://em.21dtv.com/songs/60082206.mkv +佚名-i who have nothing,http://em.21dtv.com/songs/60002715.mkv +佚名-i will follow him,http://em.21dtv.com/songs/60002725.mkv +郑秀文-i will follow him(演唱会),http://em.21dtv.com/songs/60002724.mkv +群星-i will follow him(演唱会),http://em.21dtv.com/songs/60002723.mkv +CELINE DION-if walls could talk,http://em.21dtv.com/songs/60002783.mkv +方皓玟-i wanna be strong,http://em.21dtv.com/songs/60002679.mkv +佚名-i will be here,http://em.21dtv.com/songs/60002720.mkv +顺子-i will be fine,http://em.21dtv.com/songs/60002719.mkv +爱乐团-i will be famous(演唱会),http://em.21dtv.com/songs/60002718.mkv +段丽阳-I Want To Fly,http://em.21dtv.com/songs/60100897.mkv +GENERAL PUBLIC-ill take you there,http://em.21dtv.com/songs/60002846.mkv +CHRISTINA AGUILERA-i turn to you,http://em.21dtv.com/songs/60002676.mkv +佚名-its time to cry,http://em.21dtv.com/songs/60003026.mkv +JUSTIN TIMBERLAKE-i think she knows,http://em.21dtv.com/songs/60002673.mkv +MELISSA ETHERIDGE-im the only one,http://em.21dtv.com/songs/60002892.mkv +佚名-im the only one(无原唱),http://em.21dtv.com/songs/60002891.mkv +STEVE.CROPPER-in the midnight hour,http://em.21dtv.com/songs/60002927.mkv +GARBAGE-i think im paranoid,http://em.21dtv.com/songs/60002671.mkv +STEPS-i think its love,http://em.21dtv.com/songs/60002672.mkv +YAKI DA-i saw you dancing,http://em.21dtv.com/songs/60002644.mkv +佚名-i saw three ships,http://em.21dtv.com/songs/60002643.mkv +TWINS-i saw three ships,http://em.21dtv.com/songs/60002642.mkv +佚名-its sad to belong,http://em.21dtv.com/songs/60003021.mkv +曹方-icy是淑女,http://em.21dtv.com/songs/60002749.mkv +KYLE+Lil Yachty-iSpy,http://em.21dtv.com/songs/60134729.mkv +SCORCHER-its my time,http://em.21dtv.com/songs/60063644.mkv +达明一派-its my party(演唱会),http://em.21dtv.com/songs/60067920.mkv +群星-im still loving you,http://em.21dtv.com/songs/60002889.mkv +江彬-i still love you,http://em.21dtv.com/songs/60002664.mkv +SWV-im so into you,http://em.21dtv.com/songs/60002879.mkv +李玟-im still in love,http://em.21dtv.com/songs/60002888.mkv +MICHAEL LEARNS TO ROCK-i still carry on,http://em.21dtv.com/songs/60002663.mkv +佚名-ill stand by you(无原唱),http://em.21dtv.com/songs/60002845.mkv +EMERSON DRIVE-i should be sleeping,http://em.21dtv.com/songs/60002652.mkv +陈宥臻-it s a party,http://em.21dtv.com/songs/60002980.mkv +AMAN FONG-i started a joke(演唱会),http://em.21dtv.com/songs/60073399.mkv +张韶涵-i started a joke,http://em.21dtv.com/songs/60002658.mkv +BEE GEES-i started a joke,http://em.21dtv.com/songs/60002657.mkv +DEAL-its a deal,http://em.21dtv.com/songs/60062004.mkv +JEWELRY-i really like you(演唱会),http://em.21dtv.com/songs/60002638.mkv +5566-its our party time,http://em.21dtv.com/songs/60003015.mkv +佚名-inside of my guitar,http://em.21dtv.com/songs/60002948.mkv +D.BELLAMY+J.STAFFORD-inside of my guitar,http://em.21dtv.com/songs/60002947.mkv +BEE GEES-i o i o,http://em.21dtv.com/songs/60002634.mkv +MAGNUS CARLSSON-i need your love,http://em.21dtv.com/songs/60086349.mkv +CALVIN HARRIS+ELLIE GOULDING-i need your love,http://em.21dtv.com/songs/60082202.mkv +王子霆-i need you love,http://em.21dtv.com/songs/60073393.mkv +王子霆-i need your love,http://em.21dtv.com/songs/60066660.mkv +陈冠希-i never told you,http://em.21dtv.com/songs/60002632.mkv +AIR SUPPLY-its never too late,http://em.21dtv.com/songs/60003005.mkv +悬铃木-In深圳,http://em.21dtv.com/songs/60135294.mkv +佚名-its now or never,http://em.21dtv.com/songs/60003010.mkv +WET WET WET-its now or never,http://em.21dtv.com/songs/60003009.mkv +佚名-im not in love,http://em.21dtv.com/songs/60002871.mkv +BOB DYLAN-if not for you,http://em.21dtv.com/songs/60002779.mkv +谭咏麟-ill never dance again(演唱会),http://em.21dtv.com/songs/60002837.mkv +佚名-it nust been love,http://em.21dtv.com/songs/60002978.mkv +DR.DRE-i need a doctor,http://em.21dtv.com/songs/60002622.mkv +2PM-im your man,http://em.21dtv.com/songs/60061932.mkv +张木易+MIKI-imagine me without you,http://em.21dtv.com/songs/60073431.mkv +陈启泰-i miss u so,http://em.21dtv.com/songs/60086348.mkv +LINDA-i miss u so,http://em.21dtv.com/songs/60002613.mkv +LEONARD COHEN-in my secret life,http://em.21dtv.com/songs/60067919.mkv +DJ KHALED-im on one,http://em.21dtv.com/songs/60062007.mkv +N SYNC-it makes me ill,http://em.21dtv.com/songs/60002973.mkv +JENNIFER LOPEZ-im into you,http://em.21dtv.com/songs/60073427.mkv +ALEX GAUDINO-im in love(i wanna do it),http://em.21dtv.com/songs/60061948.mkv +SIA-im in here,http://em.21dtv.com/songs/60067918.mkv +MARTINA MCBRIDE-in my daughters eyes,http://em.21dtv.com/songs/60002915.mkv +佚名-it might be you,http://em.21dtv.com/songs/60002974.mkv +JAY SEAN+PITBUL-im all yours,http://em.21dtv.com/songs/60069096.mkv +胡雯-i love you so,http://em.21dtv.com/songs/60082201.mkv +胡兵-i love you so,http://em.21dtv.com/songs/60002595.mkv +SAYA-i love you so,http://em.21dtv.com/songs/60002594.mkv +吉娜-i love you so(无原唱),http://em.21dtv.com/songs/60002593.mkv +黎明-i love you ok,http://em.21dtv.com/songs/60002592.mkv +陈珊妮-i love you john,http://em.21dtv.com/songs/60060828.mkv +JEWEL-i love you forever,http://em.21dtv.com/songs/60082200.mkv +玺恩-ill love you forever,http://em.21dtv.com/songs/60002832.mkv +童唱-i love you dolphin,http://em.21dtv.com/songs/60002589.mkv +张学友-in love with you,http://em.21dtv.com/songs/60002913.mkv +林峰+蔡卓妍-in love with you(演唱会),http://em.21dtv.com/songs/60002912.mkv +侧田+吴雨霏-in love with you(演唱会),http://em.21dtv.com/songs/60002911.mkv +BODYROCKERS-i like the way,http://em.21dtv.com/songs/60002573.mkv +张靓颖-i love this city,http://em.21dtv.com/songs/60002584.mkv +邓丽君-i love rockn roll,http://em.21dtv.com/songs/60002582.mkv +BRITNEY SPEARS-i love rock roll,http://em.21dtv.com/songs/60002581.mkv +AMANDA LEAR-ill miss you,http://em.21dtv.com/songs/60073423.mkv +陈妍希-i lost my sanity,http://em.21dtv.com/songs/60074645.mkv +林佳仪-i love my city,http://em.21dtv.com/songs/60002579.mkv +ESCAPE CLUD-ill be there,http://em.21dtv.com/songs/60066663.mkv +BOYFRIEND-ill be there,http://em.21dtv.com/songs/60063636.mkv +NELLY FURTADO-im like a bird,http://em.21dtv.com/songs/60002870.mkv +ELLIE GOULDING-i know you care,http://em.21dtv.com/songs/60073387.mkv +THE CHIEFTAINS+THE C-i know my love,http://em.21dtv.com/songs/60002565.mkv +李立崴-i know i believe,http://em.21dtv.com/songs/60002564.mkv +YELAWOLF-i just wanna party,http://em.21dtv.com/songs/60063630.mkv +GOOD CHARLOTTE-i just wanna live,http://em.21dtv.com/songs/60073385.mkv +TAIO CRUZ-i just wanna know,http://em.21dtv.com/songs/60063629.mkv +朴始焕-I Just Loved You,http://em.21dtv.com/songs/60101375.mkv +ALAN JACKSON-its just that way,http://em.21dtv.com/songs/60002982.mkv +THE LONELY-i just had sex,http://em.21dtv.com/songs/60002554.mkv +FAR EAST MOVEMENT & SNOOP DOGG-if i was you,http://em.21dtv.com/songs/60073416.mkv +JESSIE WARE-imagine it was us,http://em.21dtv.com/songs/60082213.mkv +KENNY ROGERS+DOLLY P-islands in the stream,http://em.21dtv.com/songs/60002967.mkv +佚名-island in the stream,http://em.21dtv.com/songs/60002966.mkv +TANK-if i love you,http://em.21dtv.com/songs/60073414.mkv +ROD STEWART-if i had you,http://em.21dtv.com/songs/60002770.mkv +ADAM LAMBERT-if i had you,http://em.21dtv.com/songs/60002769.mkv +D.BARTHOLOMEW-P.KING-i hear you knocking(无原唱),http://em.21dtv.com/songs/60002546.mkv +LEE ANN WOMAC-i hope you dance,http://em.21dtv.com/songs/60002548.mkv +童唱-i hear the waves,http://em.21dtv.com/songs/60002545.mkv +TWINS-i have two hands,http://em.21dtv.com/songs/60002544.mkv +佚名-i honestly love you,http://em.21dtv.com/songs/60002547.mkv +JANA KRAMER-i hope it rains,http://em.21dtv.com/songs/60082198.mkv +杨茜雯-i have a dream,http://em.21dtv.com/songs/60073384.mkv +谢安琪-i have a dream,http://em.21dtv.com/songs/60073383.mkv +李玟-i have a dream,http://em.21dtv.com/songs/60002540.mkv +WESTLIFE-i have a dream,http://em.21dtv.com/songs/60002539.mkv +ABBA-i have a dream,http://em.21dtv.com/songs/60002538.mkv +SONNY+CHER-i got you babe,http://em.21dtv.com/songs/60002529.mkv +温拿乐队-i go to pieces(演唱会),http://em.21dtv.com/songs/60002525.mkv +B.JOEL-i go to extremes(无原唱),http://em.21dtv.com/songs/60002524.mkv +TWINS-ive got no strings,http://em.21dtv.com/songs/60003039.mkv +FAITH HILL-i got my baby,http://em.21dtv.com/songs/60002528.mkv +张学友-i got it made,http://em.21dtv.com/songs/60002527.mkv +SHANIA TWAIN-im gonna getcha good,http://em.21dtv.com/songs/60002863.mkv +N SYNC-its gonna be me,http://em.21dtv.com/songs/60002995.mkv +顺子-its gonna be alright,http://em.21dtv.com/songs/60002994.mkv +MICHAEL LEARNS TO ROCK-im gonna be around,http://em.21dtv.com/songs/60002861.mkv +JIM CROCE-i got a name,http://em.21dtv.com/songs/60002526.mkv +少女时代-i got a boy,http://em.21dtv.com/songs/60073382.mkv +指原莉乃-ifの妄想,http://em.21dtv.com/songs/60071614.mkv +CHRIS MALINCHAK-If U Got It,http://em.21dtv.com/songs/60100713.mkv +TRACY BYRD-im from the country,http://em.21dtv.com/songs/60002859.mkv +江美琪-i feel so good(演唱会),http://em.21dtv.com/songs/60002516.mkv +蔡黄汝-i服了u,http://em.21dtv.com/songs/60062235.mkv +ALL TIME LOW-i feel like dancin,http://em.21dtv.com/songs/60061951.mkv +BARBRA STREISAND-i finally found someone,http://em.21dtv.com/songs/60002518.mkv +BARBRA STREISAND+BRYYAN ADAMS-i finally found someone,http://em.21dtv.com/songs/60002517.mkv +LEE BRICE-i drive your truck,http://em.21dtv.com/songs/60073380.mkv +MARIO WINANS+P.DIDDY-i dont wanna know,http://em.21dtv.com/songs/60002499.mkv +WESTLIFE-i dont wanna fight(演唱会),http://em.21dtv.com/songs/60002498.mkv +MARIAH CAREY-i dont wanna cry,http://em.21dtv.com/songs/60002497.mkv +张学友-i dont wanna be,http://em.21dtv.com/songs/60002496.mkv +东方神起(昌眠+允浩)-i dont know(演唱会),http://em.21dtv.com/songs/60073376.mkv +JYJ-i dont know,http://em.21dtv.com/songs/60070349.mkv +张靓颖-i didnt know,http://em.21dtv.com/songs/60067914.mkv +APOCALYPTICA+THREE D-i dont care,http://em.21dtv.com/songs/60060825.mkv +陈奕迅-I Do,http://em.21dtv.com/songs/60129730.mkv +NORA SAYS-I DO,http://em.21dtv.com/songs/60104709.mkv +KENNY ROGERS-i dont need you,http://em.21dtv.com/songs/60002494.mkv +张靓颖-i did not know,http://em.21dtv.com/songs/60073374.mkv +Secret-I Do I Do,http://em.21dtv.com/songs/60099025.mkv +SIMPLE PLAN-id do anything,http://em.21dtv.com/songs/60062155.mkv +98 DEGREES-i do cherish you,http://em.21dtv.com/songs/60002473.mkv +R.STARR-it dont come easy(无原唱),http://em.21dtv.com/songs/60002969.mkv +PINK-i dont believe you,http://em.21dtv.com/songs/60002485.mkv +CELINE DION-i drove all night,http://em.21dtv.com/songs/60002512.mkv +胡杏儿-i dreamed a dream(演唱会),http://em.21dtv.com/songs/60073379.mkv +AALIYAH-i care 4 you,http://em.21dtv.com/songs/60002466.mkv +AIR SUPPLY-i can wait forever(演唱会),http://em.21dtv.com/songs/60002449.mkv +蔡枫华-iq成熟时(演唱会),http://em.21dtv.com/songs/60060839.mkv +BEE GEES-i cant see nobody,http://em.21dtv.com/songs/60002461.mkv +DAVID GUETTA-i can only imagine,http://em.21dtv.com/songs/60067913.mkv +郑秀文-i cross my heart,http://em.21dtv.com/songs/60002470.mkv +MARY J.BLIGE-i can love you,http://em.21dtv.com/songs/60002447.mkv +LIONEL RICHIE-i call it love,http://em.21dtv.com/songs/60002440.mkv +佚名-i cant help myself,http://em.21dtv.com/songs/60002456.mkv +F.SULLIVAN+J.PETERIK-i cant hold back(无原唱),http://em.21dtv.com/songs/60002457.mkv +F.I.R-i cant go on(演唱会),http://em.21dtv.com/songs/60002454.mkv +ROD STEWART-i cant deny it,http://em.21dtv.com/songs/60002451.mkv +TAYLOR DAYNE-ill be your shelter,http://em.21dtv.com/songs/60002827.mkv +佚名-i beg your pardon,http://em.21dtv.com/songs/60002415.mkv +TOMMY PAGE-ill be your everything,http://em.21dtv.com/songs/60002826.mkv +TENSION-ill be with you,http://em.21dtv.com/songs/60002825.mkv +群星-ill be with you(无原唱),http://em.21dtv.com/songs/60002824.mkv +TONI BRAXTON-i belong to you,http://em.21dtv.com/songs/60002438.mkv +TRADEMARK-ill be the one,http://em.21dtv.com/songs/60002817.mkv +PUFF DADDY +FAITH EVANS&112-ill be missing you,http://em.21dtv.com/songs/60002816.mkv +梁咏琪-ill be loving you,http://em.21dtv.com/songs/60002815.mkv +梁咏琪-ill be loving you(演唱会),http://em.21dtv.com/songs/60002814.mkv +佚名-i believe in music,http://em.21dtv.com/songs/60002421.mkv +WOW-i believe in love,http://em.21dtv.com/songs/60002420.mkv +李代沫-I Believe I Can,http://em.21dtv.com/songs/60080198.mkv +李魏西-I Believe不放手,http://em.21dtv.com/songs/60100171.mkv +2NE1-i am the best,http://em.21dtv.com/songs/60060823.mkv +张雯婷-i am so cool,http://em.21dtv.com/songs/60002409.mkv +SO WHAT-is anybody out there,http://em.21dtv.com/songs/60002961.mkv +苏梦玫-Its A Mans World,http://em.21dtv.com/songs/60081563.mkv +Leona Lewis-I Am,http://em.21dtv.com/songs/60117473.mkv +童唱-im a little snowman,http://em.21dtv.com/songs/60002850.mkv +NEIL DIAMOND-i am i said,http://em.21dtv.com/songs/60002406.mkv +沙宝亮-i am in love,http://em.21dtv.com/songs/60065613.mkv +沉海乐-花枝招展,http://em.21dtv.com/songs/60075857.mkv +沉丹丹-花枝招展,http://em.21dtv.com/songs/60075856.mkv +王识贤-花枝招展(演唱会),http://em.21dtv.com/songs/60006844.mkv +吕薇-花枝招展(演唱会),http://em.21dtv.com/songs/60006843.mkv +郑秀文-火宅之人,http://em.21dtv.com/songs/60096513.mkv +蔡一杰-火宅之人(演唱会),http://em.21dtv.com/songs/60022482.mkv +王铮亮+刘亦菲-还在这里,http://em.21dtv.com/songs/60124292.mkv +王建杰-红砖仔路(无原唱),http://em.21dtv.com/songs/60021043.mkv +徐浩峻-华泽之歌,http://em.21dtv.com/songs/60109361.mkv +徐健淇-华泽之歌,http://em.21dtv.com/songs/60102262.mkv +周笔畅-花樽与花,http://em.21dtv.com/songs/60080376.mkv +郑秀文-呼之欲出,http://em.21dtv.com/songs/60093302.mkv +苏盈之-还在想他,http://em.21dtv.com/songs/60124405.mkv +张智霖-孩子先生,http://em.21dtv.com/songs/60019688.mkv +张伟文-杭州小调(演唱会),http://em.21dtv.com/songs/60019957.mkv +庄心妍-好自为之,http://em.21dtv.com/songs/60102182.mkv +张羿凡-化妆舞会,http://em.21dtv.com/songs/60119542.mkv +佚名-化装舞会,http://em.21dtv.com/songs/60021603.mkv +郭富城-化装舞会,http://em.21dtv.com/songs/60021602.mkv +郭富城-化装舞会(演唱会),http://em.21dtv.com/songs/60021601.mkv +邱锋泽-还装伟大,http://em.21dtv.com/songs/60128462.mkv +唐越-还在天边,http://em.21dtv.com/songs/60087612.mkv +佚名-孩子他爸,http://em.21dtv.com/songs/60019683.mkv +谢东-孩子他爸,http://em.21dtv.com/songs/60019682.mkv +梁咏琪-还在天边(演唱会),http://em.21dtv.com/songs/60019670.mkv +ZEN-画中世界,http://em.21dtv.com/songs/60021619.mkv +曾心梅+陈中-活在梦中,http://em.21dtv.com/songs/60022384.mkv +黄西田-蚵仔面线,http://em.21dtv.com/songs/60025220.mkv +豪记大对唱-蚵仔面线(无原唱),http://em.21dtv.com/songs/60025219.mkv +黄西田-葫仔开花,http://em.21dtv.com/songs/60021223.mkv +高向鹏+傅振辉-葫仔开花(无原唱),http://em.21dtv.com/songs/60021222.mkv +郑希怡-话走就走,http://em.21dtv.com/songs/60021634.mkv +COOKIES-红组加油,http://em.21dtv.com/songs/60021047.mkv +吴雨霏-红组加油(演唱会),http://em.21dtv.com/songs/60021046.mkv +郭劲-杭州杭州,http://em.21dtv.com/songs/60101532.mkv +黄得峰-后知后觉,http://em.21dtv.com/songs/60129838.mkv +冯允谦-后知后觉,http://em.21dtv.com/songs/60122504.mkv +杨清明-后知后觉,http://em.21dtv.com/songs/60119696.mkv +李洪基-后知后觉,http://em.21dtv.com/songs/60116917.mkv +面具-后知后觉,http://em.21dtv.com/songs/60098911.mkv +胡海泉+丁于-后知后觉,http://em.21dtv.com/songs/60095045.mkv +张惠妹+李琦-后知后觉,http://em.21dtv.com/songs/60081578.mkv +张新-后知后觉,http://em.21dtv.com/songs/60081532.mkv +金池-后知后觉,http://em.21dtv.com/songs/60071433.mkv +张惠妹-后知后觉,http://em.21dtv.com/songs/60021122.mkv +哈辉-回族姑娘,http://em.21dtv.com/songs/60022258.mkv +佚名-杭州姑娘,http://em.21dtv.com/songs/60019956.mkv +许志安-活在当下(演唱会),http://em.21dtv.com/songs/60022382.mkv +蟑螂乐队-混帐东西,http://em.21dtv.com/songs/60022331.mkv +康康-杭州的她,http://em.21dtv.com/songs/60069444.mkv +陈奕迅-活着多好,http://em.21dtv.com/songs/60022394.mkv +张韶涵-活在此刻,http://em.21dtv.com/songs/60098374.mkv +张岱-晖之不去,http://em.21dtv.com/songs/60104119.mkv +殷悦-挥之不去,http://em.21dtv.com/songs/60022067.mkv +司唯-孩子别哭,http://em.21dtv.com/songs/60132277.mkv +刘坤山-混在北京,http://em.21dtv.com/songs/60067097.mkv +钟亚华-还在爱你,http://em.21dtv.com/songs/60108080.mkv +谭艳-回忆罪证,http://em.21dtv.com/songs/60134240.mkv +ALin-海洋之心,http://em.21dtv.com/songs/60133168.mkv +奕丹-海洋之星,http://em.21dtv.com/songs/60128945.mkv +吉克隽逸-海洋之心,http://em.21dtv.com/songs/60128876.mkv +[Group] +groupName=十六万歌曲MV等 - 45 +讴洋-海洋之心,http://em.21dtv.com/songs/60115393.mkv +7 FULU BROTHERS-回忆之夏,http://em.21dtv.com/songs/60083088.mkv +蔡依林-海洋之心,http://em.21dtv.com/songs/60019822.mkv +春妹-火焰之舞,http://em.21dtv.com/songs/60022479.mkv +杨皓天-皓月中天,http://em.21dtv.com/songs/60106012.mkv +刘雷-红叶醉秋,http://em.21dtv.com/songs/60115036.mkv +冷酷-红叶醉秋,http://em.21dtv.com/songs/60108327.mkv +那我懂你意思了-很幼稚吗,http://em.21dtv.com/songs/60080243.mkv +伍佰-好运总来(演唱会),http://em.21dtv.com/songs/60071997.mkv +龙梅子+苗伟-红颜知己,http://em.21dtv.com/songs/60130955.mkv +苗伟+龙梅子-红颜知己,http://em.21dtv.com/songs/60129542.mkv +囚鸟-红颜知己,http://em.21dtv.com/songs/60120425.mkv +寒武纪-红颜知己,http://em.21dtv.com/songs/60116738.mkv +囚鸟-红颜知己,http://em.21dtv.com/songs/60113363.mkv +蔡龄龄-红颜知己,http://em.21dtv.com/songs/60106264.mkv +张雷-红颜知己,http://em.21dtv.com/songs/60075796.mkv +周慧敏-红颜知己,http://em.21dtv.com/songs/60021016.mkv +张伟文-红颜知己,http://em.21dtv.com/songs/60021015.mkv +张傲-红颜知己,http://em.21dtv.com/songs/60021014.mkv +陈明-红颜知己,http://em.21dtv.com/songs/60021013.mkv +周慧敏-红颜知己(演唱会),http://em.21dtv.com/songs/60021012.mkv +苏永康-红颜知己(演唱会),http://em.21dtv.com/songs/60021011.mkv +西瓜JUN-海洋之歌,http://em.21dtv.com/songs/60128384.mkv +兰旗儿-好运中国,http://em.21dtv.com/songs/60067065.mkv +王雪-好运中国,http://em.21dtv.com/songs/60020271.mkv +陈淑桦-海洋之歌,http://em.21dtv.com/songs/60019821.mkv +李行亮-回忆至此,http://em.21dtv.com/songs/60124093.mkv +刘德华-红颜自闭,http://em.21dtv.com/songs/60021018.mkv +周慧敏-花雨烟云,http://em.21dtv.com/songs/60110935.mkv +王宏伟-胡杨映月,http://em.21dtv.com/songs/60072017.mkv +金大喜-红颜一笑,http://em.21dtv.com/songs/60121024.mkv +金素梅-红颜有梦,http://em.21dtv.com/songs/60021010.mkv +媛媛-红颜幽梦,http://em.21dtv.com/songs/60021009.mkv +汤宝如-还迎欲拒,http://em.21dtv.com/songs/60019654.mkv +阿杜-黑夜以后,http://em.21dtv.com/songs/60020597.mkv +泰妍-还有一个,http://em.21dtv.com/songs/60075889.mkv +苏有朋-回忆邮差,http://em.21dtv.com/songs/60091928.mkv +玄乐队-还有希望,http://em.21dtv.com/songs/60132707.mkv +朱元冰-回忆漩涡,http://em.21dtv.com/songs/60124041.mkv +凤凰传奇-红颜先生,http://em.21dtv.com/songs/60120348.mkv +黄清元-寒夜相思,http://em.21dtv.com/songs/60090354.mkv +凤凰传奇-胡杨新娘,http://em.21dtv.com/songs/60021219.mkv +杨虹-婚姻悟语,http://em.21dtv.com/songs/60089355.mkv +白雪-红颜为谁,http://em.21dtv.com/songs/60021008.mkv +格格-很有味道,http://em.21dtv.com/songs/60130492.mkv +格格-很有味道,http://em.21dtv.com/songs/60067068.mkv +斯琴高美-很有味道,http://em.21dtv.com/songs/60020672.mkv +扬哲+江惠仪-红叶天星,http://em.21dtv.com/songs/60064309.mkv +桂纶镁-海洋天堂,http://em.21dtv.com/songs/60088139.mkv +卓嫣儿-红崖天书,http://em.21dtv.com/songs/60134958.mkv +李维真-胡杨水乡,http://em.21dtv.com/songs/60097340.mkv +乌兰托娅-胡杨水乡,http://em.21dtv.com/songs/60086602.mkv +佚名-回忆是伤,http://em.21dtv.com/songs/60022254.mkv +杨洪基-红叶书签,http://em.21dtv.com/songs/60021027.mkv +叶幼琪+郭凤女-红叶诗媒(戏曲),http://em.21dtv.com/songs/60092415.mkv +杨宗纬-回忆沙漠,http://em.21dtv.com/songs/60067095.mkv +郑秀文-环游世界,http://em.21dtv.com/songs/60021805.mkv +元卫觉醒-环游世界,http://em.21dtv.com/songs/60021804.mkv +超群-回忆伤城,http://em.21dtv.com/songs/60081610.mkv +少司命+TACKE竹桑-红颜若雪,http://em.21dtv.com/songs/60100856.mkv +陈子煜-还有如果,http://em.21dtv.com/songs/60110633.mkv +东方依依-回忆如刀,http://em.21dtv.com/songs/60120276.mkv +于全莉-红颜情醉,http://em.21dtv.com/songs/60075793.mkv +翁汕汕-红颜情醉,http://em.21dtv.com/songs/60075792.mkv +林子娟-花言巧语,http://em.21dtv.com/songs/60021521.mkv +林姗-花言巧语,http://em.21dtv.com/songs/60021520.mkv +黄莺莺-花言巧语,http://em.21dtv.com/songs/60021519.mkv +SWEETY-花言巧语,http://em.21dtv.com/songs/60021518.mkv +赵青岳-回忆秋天,http://em.21dtv.com/songs/60132931.mkv +叶幼琪-寒夜琴挑(戏曲),http://em.21dtv.com/songs/60092419.mkv +浅语清吟-幻影情深,http://em.21dtv.com/songs/60062828.mkv +红月+完玛三智-火焰情歌,http://em.21dtv.com/songs/60072055.mkv +孙博-回忆情歌,http://em.21dtv.com/songs/60064355.mkv +王涛+马鹏飞-还有朋友,http://em.21dtv.com/songs/60094999.mkv +涓子-回忆飘香,http://em.21dtv.com/songs/60120729.mkv +DIZZEE RASCAL+CALVIN HARRIS-HYPE,http://em.21dtv.com/songs/60129912.mkv +邻家王子-花样男子,http://em.21dtv.com/songs/60021526.mkv +陈玉建-红颜你我,http://em.21dtv.com/songs/60075791.mkv +曾轶可-花样年华,http://em.21dtv.com/songs/60102304.mkv +梁朝伟+吴恩琪-花样年华,http://em.21dtv.com/songs/60021529.mkv +关喆-花样年华,http://em.21dtv.com/songs/60021528.mkv +陈琳-花样年华,http://em.21dtv.com/songs/60021527.mkv +杨千嬅-花样+年华(演唱会),http://em.21dtv.com/songs/60021523.mkv +梁文灏-好友名义,http://em.21dtv.com/songs/60116075.mkv +阿悄-谎言蔓延,http://em.21dtv.com/songs/60100546.mkv +邓志驹+李池湘-花园盟心,http://em.21dtv.com/songs/60021545.mkv +李威-黑夜明天,http://em.21dtv.com/songs/60020596.mkv +陈一玲-胡杨牧歌,http://em.21dtv.com/songs/60102863.mkv +位磊-回忆玫瑰,http://em.21dtv.com/songs/60022251.mkv +伊雪-好友名单,http://em.21dtv.com/songs/60020258.mkv +卓依婷-花月良宵,http://em.21dtv.com/songs/60021550.mkv +印能法师-华严阑若,http://em.21dtv.com/songs/60099836.mkv +华少翌-华语恋曲,http://em.21dtv.com/songs/60021581.mkv +王筝-合影留念(演唱会),http://em.21dtv.com/songs/60064285.mkv +张宇-合影留念,http://em.21dtv.com/songs/60020314.mkv +陈宇浩-回忆留恋,http://em.21dtv.com/songs/60072048.mkv +樱桃帮-黑夜来临,http://em.21dtv.com/songs/60020595.mkv +马潇潇-红叶恋歌,http://em.21dtv.com/songs/60118190.mkv +辛欣-回忆列车,http://em.21dtv.com/songs/60022250.mkv +周山+潘雪萍-槐荫开口,http://em.21dtv.com/songs/60021687.mkv +张国荣-黑夜狂奔,http://em.21dtv.com/songs/60091060.mkv +黄立行-黑夜尽头,http://em.21dtv.com/songs/60020594.mkv +林心如-红颜江山,http://em.21dtv.com/songs/60127105.mkv +郑希怡-花与嫁纱,http://em.21dtv.com/songs/60106324.mkv +佚名-花月佳期,http://em.21dtv.com/songs/60021549.mkv +方逸华-花月佳期,http://em.21dtv.com/songs/60021548.mkv +梅艳芳-花月佳期(演唱会),http://em.21dtv.com/songs/60021547.mkv +白光-魂萦旧梦,http://em.21dtv.com/songs/60088361.mkv +周蕙-魂萦旧梦,http://em.21dtv.com/songs/60087606.mkv +孔兰薰-魂萦旧梦(演唱会 ),http://em.21dtv.com/songs/60083092.mkv +杨燕-魂萦旧梦(演唱会),http://em.21dtv.com/songs/60075937.mkv +堂娜-魂萦旧梦,http://em.21dtv.com/songs/60022342.mkv +齐秦-魂萦旧梦,http://em.21dtv.com/songs/60022341.mkv +林淑容-魂萦旧梦,http://em.21dtv.com/songs/60022340.mkv +蔡琴-魂萦旧梦(演唱会),http://em.21dtv.com/songs/60022339.mkv +目思者-回忆角落,http://em.21dtv.com/songs/60130628.mkv +小乔-回忆渐冷,http://em.21dtv.com/songs/60104067.mkv +左小祖咒-忽悠忽悠,http://em.21dtv.com/songs/60067076.mkv +詹曼铃-嗨呀嗨呀,http://em.21dtv.com/songs/60020610.mkv +澎恰恰-红颜恨石,http://em.21dtv.com/songs/60021003.mkv +彭炽权+曾慧-魂游会裴(戏曲),http://em.21dtv.com/songs/60092668.mkv +水晶乐坊-花雨湖畔,http://em.21dtv.com/songs/60021539.mkv +阿细-回忆广州,http://em.21dtv.com/songs/60126353.mkv +温博-胡杨姑娘,http://em.21dtv.com/songs/60104287.mkv +沙玛学锋-花腰姑娘,http://em.21dtv.com/songs/60061260.mkv +郭静-回忆阁楼,http://em.21dtv.com/songs/60075924.mkv +自由发挥-欢迎光临,http://em.21dtv.com/songs/60021795.mkv +方皓玟-欢迎光临,http://em.21dtv.com/songs/60021794.mkv +林宥嘉-坏与更坏,http://em.21dtv.com/songs/60128126.mkv +林宥嘉-坏与更坏,http://em.21dtv.com/songs/60124127.mkv +石康军-黑夜过后,http://em.21dtv.com/songs/60020592.mkv +云飞-鸿雁飞飞,http://em.21dtv.com/songs/60114384.mkv +何琪-嘿!岳父,http://em.21dtv.com/songs/60130080.mkv +子子-海洋的心,http://em.21dtv.com/songs/60083001.mkv +M GIRLS-鸿运当头,http://em.21dtv.com/songs/60133238.mkv +何苗-好运当头,http://em.21dtv.com/songs/60067063.mkv +牛欣欣+周张弛+等-鸿运当头,http://em.21dtv.com/songs/60064311.mkv +云峰-鸿运当头,http://em.21dtv.com/songs/60021067.mkv +翁虹-虹运当头,http://em.21dtv.com/songs/60021054.mkv +沈卫琴-回忆的殇,http://em.21dtv.com/songs/60122947.mkv +林凡-很远的近,http://em.21dtv.com/songs/60100200.mkv +未来脚踏车-还要多久,http://em.21dtv.com/songs/60097265.mkv +蓝沁-回忆的箭,http://em.21dtv.com/songs/60022245.mkv +苏永康-黑夜的豹,http://em.21dtv.com/songs/60097446.mkv +梅艳芳-黑夜的豹(演唱会),http://em.21dtv.com/songs/60020590.mkv +草蜢-黑夜的豹(演唱会),http://em.21dtv.com/songs/60020589.mkv +何遇程-合影的爱,http://em.21dtv.com/songs/60112505.mkv +彭炽权-鸿雁传书(戏曲),http://em.21dtv.com/songs/60092696.mkv +荒山亮-寰宇传说,http://em.21dtv.com/songs/60021807.mkv +朱立峰-回忆从前,http://em.21dtv.com/songs/60087972.mkv +咻比嘟哗-黑夜白天,http://em.21dtv.com/songs/60020584.mkv +黄莺莺-黑夜白天,http://em.21dtv.com/songs/60020583.mkv +赵咏华-黑夜白天(演唱会),http://em.21dtv.com/songs/60020582.mkv +肖雨蒙-还有半生,http://em.21dtv.com/songs/60108818.mkv +李克勤-韩夜不冷,http://em.21dtv.com/songs/60019896.mkv +毛阿敏+孙国庆-好运北京(演唱会),http://em.21dtv.com/songs/60020264.mkv +李明智-谎言背后,http://em.21dtv.com/songs/60104204.mkv +张国荣-红颜白发,http://em.21dtv.com/songs/60021002.mkv +张国荣-红颜白发(演唱会),http://em.21dtv.com/songs/60021001.mkv +舞曲-黄阳扁担,http://em.21dtv.com/songs/60091917.mkv +游鸿明+眉佳-黄杨扁担,http://em.21dtv.com/songs/60090050.mkv +张继红-黄杨扁担,http://em.21dtv.com/songs/60089286.mkv +克克朗琴-哈雅布达,http://em.21dtv.com/songs/60081921.mkv +郁钧剑-黄杨扁担,http://em.21dtv.com/songs/60021999.mkv +李双江-黄杨扁担,http://em.21dtv.com/songs/60021998.mkv +冷漠+杨小曼-花样爱情,http://em.21dtv.com/songs/60114411.mkv +钟汉良-何以爱情,http://em.21dtv.com/songs/60108097.mkv +MI2-还原爱情,http://em.21dtv.com/songs/60079849.mkv +石磊-谎言爱情,http://em.21dtv.com/songs/60075907.mkv +周华健-还要爱你,http://em.21dtv.com/songs/60019648.mkv +小旭音乐-华夏之章,http://em.21dtv.com/songs/60131360.mkv +王秀琪-回心转意,http://em.21dtv.com/songs/60124274.mkv +王大文-回心转意,http://em.21dtv.com/songs/60097233.mkv +周晋进-回心转意,http://em.21dtv.com/songs/60075923.mkv +张宇-回心转意,http://em.21dtv.com/songs/60022226.mkv +佚名-回心转意,http://em.21dtv.com/songs/60022225.mkv +王识贤-回心转意,http://em.21dtv.com/songs/60022224.mkv +刘若英-回心转意,http://em.21dtv.com/songs/60022223.mkv +零点乐队-回心转意,http://em.21dtv.com/songs/60022222.mkv +黄莺莺-回心转意,http://em.21dtv.com/songs/60022221.mkv +侯强+尹力-回心转意,http://em.21dtv.com/songs/60022220.mkv +黑龙-回心转意,http://em.21dtv.com/songs/60022219.mkv +蔡佳莹-回心转意,http://em.21dtv.com/songs/60022218.mkv +阿吉仔-回心转意,http://em.21dtv.com/songs/60022217.mkv +张宇-回心转意(演唱会),http://em.21dtv.com/songs/60022216.mkv +高向鹏+方怡萍-回心转意(无原唱),http://em.21dtv.com/songs/60022215.mkv +李克勤-好戏之人,http://em.21dtv.com/songs/60020181.mkv +李克勤-好戏之人(演唱会),http://em.21dtv.com/songs/60020180.mkv +齐亚男-海峡之梦,http://em.21dtv.com/songs/60071984.mkv +董蕾蕾-海峡之梦,http://em.21dtv.com/songs/60061229.mkv +王莹-河西走廊,http://em.21dtv.com/songs/60115308.mkv +王凤霞-和谐中国,http://em.21dtv.com/songs/60130569.mkv +赵清+王强-恒旭之光,http://em.21dtv.com/songs/60103596.mkv +叶倩文+马浚伟-欢笑之歌,http://em.21dtv.com/songs/60021790.mkv +祖海-和谐中国,http://em.21dtv.com/songs/60020447.mkv +刘和刚-和谐中国,http://em.21dtv.com/songs/60020446.mkv +顾峰-海选真爱,http://em.21dtv.com/songs/60128588.mkv +谭晶-和谐长安,http://em.21dtv.com/songs/60088674.mkv +王中平-欢喜有缘,http://em.21dtv.com/songs/60021787.mkv +邓超-华夏英雄,http://em.21dtv.com/songs/60088745.mkv +张卫健-很想有你,http://em.21dtv.com/songs/60020668.mkv +陈思思-湖湘云梦,http://em.21dtv.com/songs/60089520.mkv +武笑羽-欢喜冤家,http://em.21dtv.com/songs/60075883.mkv +钟丽燕-和谐阳光,http://em.21dtv.com/songs/60075723.mkv +李幸倪-很想要吧,http://em.21dtv.com/songs/60127003.mkv +孙楠-化学效应,http://em.21dtv.com/songs/60021598.mkv +杨千嬅-呼吸需要,http://em.21dtv.com/songs/60021175.mkv +李华-欢喜新年,http://em.21dtv.com/songs/60132527.mkv +尼瓦尔江+阿尔法+尼格买提-和谐新疆,http://em.21dtv.com/songs/60117692.mkv +何龙雨-花心续集,http://em.21dtv.com/songs/60093749.mkv +骆驼强子-和谐新疆,http://em.21dtv.com/songs/60075722.mkv +小尘埃-化险为夷,http://em.21dtv.com/songs/60130267.mkv +童可可-花下舞剑,http://em.21dtv.com/songs/60112137.mkv +许茹芸-好像跳舞,http://em.21dtv.com/songs/60020222.mkv +陈姿言-幻想天使,http://em.21dtv.com/songs/60068345.mkv +王若曦-幻想童话,http://em.21dtv.com/songs/60130598.mkv +SWEETY-好戏上演,http://em.21dtv.com/songs/60083013.mkv +贺敬轩-互相伤害,http://em.21dtv.com/songs/60134247.mkv +宋孟君+格子兮-互相伤害,http://em.21dtv.com/songs/60128988.mkv +汤灿-花喜人来,http://em.21dtv.com/songs/60021497.mkv +董朋-花谢人飞,http://em.21dtv.com/songs/60062336.mkv +阿桑古卡-花香情歌,http://em.21dtv.com/songs/60075852.mkv +寒逸+红枫海-寒雪飘逸,http://em.21dtv.com/songs/60127916.mkv +龙女-回乡偶书,http://em.21dtv.com/songs/60085242.mkv +童唱-回乡偶书,http://em.21dtv.com/songs/60022211.mkv +高峰-好想念你(无原唱),http://em.21dtv.com/songs/60020207.mkv +黄建为-嘿!小女孩,http://em.21dtv.com/songs/60075743.mkv +牛欣欣+刘姝辰-hello新年好,http://em.21dtv.com/songs/60073322.mkv +佚名-红鞋女孩,http://em.21dtv.com/songs/60020986.mkv +洪杰-回旋木马,http://em.21dtv.com/songs/60022229.mkv +陈慧琳-回旋木马,http://em.21dtv.com/songs/60022228.mkv +张杰-恒星流星,http://em.21dtv.com/songs/60020735.mkv +彩贝与海-化学老师,http://em.21dtv.com/songs/60109344.mkv +晓婉-狠心离开,http://em.21dtv.com/songs/60083034.mkv +林展逸-回乡看看,http://em.21dtv.com/songs/60022210.mkv +姚尚旭-和谐焦作,http://em.21dtv.com/songs/60102091.mkv +郑莉莉-和谐家园,http://em.21dtv.com/songs/60075721.mkv +谭晶-和谐交响(演唱会),http://em.21dtv.com/songs/60020444.mkv +陈志明-花心介人,http://em.21dtv.com/songs/60021515.mkv +TWINS-慌心假期(演唱会),http://em.21dtv.com/songs/60021873.mkv +谢霆锋-好想见你,http://em.21dtv.com/songs/60092107.mkv +佚名-魂系旧梦,http://em.21dtv.com/songs/60083091.mkv +尤雅-欢喜就好,http://em.21dtv.com/songs/60021784.mkv +叶启田-欢喜就好,http://em.21dtv.com/songs/60021783.mkv +陈雷-欢喜就好,http://em.21dtv.com/songs/60021782.mkv +FINE乐团-呼吸决定,http://em.21dtv.com/songs/60124873.mkv +赵薇-好想好想,http://em.21dtv.com/songs/60020194.mkv +古巨基-好想好想,http://em.21dtv.com/songs/60020193.mkv +Hello Girls-好喜欢你,http://em.21dtv.com/songs/60131065.mkv +LuLu黄路梓茵-好喜欢你,http://em.21dtv.com/songs/60122396.mkv +黎明-会笑会哭,http://em.21dtv.com/songs/60093559.mkv +吴炜-红心皇后,http://em.21dtv.com/songs/60020987.mkv +李度-好想好好(演唱会),http://em.21dtv.com/songs/60020191.mkv +宋祖英-和谐欢歌(演唱会),http://em.21dtv.com/songs/60020443.mkv +焰烽-红杏花瓣,http://em.21dtv.com/songs/60070751.mkv +方力申-好心好报,http://em.21dtv.com/songs/60020234.mkv +方力申+邓丽欣-好心好报,http://em.21dtv.com/songs/60020233.mkv +方力申+邓丽欣-好心好报(演唱会),http://em.21dtv.com/songs/60020232.mkv +任青塔-魂系高原,http://em.21dtv.com/songs/60022338.mkv +佚名-花香鼓舞,http://em.21dtv.com/songs/60021504.mkv +谢霆锋-很想孤寂,http://em.21dtv.com/songs/60092109.mkv +谢霆锋-很想孤独,http://em.21dtv.com/songs/60092110.mkv +JC-好心分手,http://em.21dtv.com/songs/60126530.mkv +刘子聪-狠心放手,http://em.21dtv.com/songs/60121432.mkv +叶文辉-好心分手,http://em.21dtv.com/songs/60020231.mkv +王力宏+卢巧音-好心分手,http://em.21dtv.com/songs/60020230.mkv +卢巧音-好心分手,http://em.21dtv.com/songs/60020229.mkv +容祖儿-好心分手(演唱会),http://em.21dtv.com/songs/60020228.mkv +卢巧音-好心分手(演唱会),http://em.21dtv.com/songs/60020227.mkv +蔡淳佳-会幸福吗,http://em.21dtv.com/songs/60119952.mkv +具惠善-会幸福吗,http://em.21dtv.com/songs/60099098.mkv +潘裕文-好想放假,http://em.21dtv.com/songs/60020189.mkv +廖昌永-海峡飞鸿,http://em.21dtv.com/songs/60091031.mkv +陆海涛-好媳妇儿,http://em.21dtv.com/songs/60121062.mkv +曾敏-华夏儿女,http://em.21dtv.com/songs/60006847.mkv +陈翔-呼啸而过,http://em.21dtv.com/songs/60128552.mkv +余天-回乡的我,http://em.21dtv.com/songs/60022209.mkv +佚名-回乡的我,http://em.21dtv.com/songs/60022208.mkv +罗时丰-回乡的我,http://em.21dtv.com/songs/60022207.mkv +邱中欣-狠心的人,http://em.21dtv.com/songs/60061248.mkv +康慷-和谐的家,http://em.21dtv.com/songs/60097321.mkv +佚名-哗笑的街,http://em.21dtv.com/songs/60021584.mkv +韩信-韩信点兵,http://em.21dtv.com/songs/60064275.mkv +鸿飞-花心的爱,http://em.21dtv.com/songs/60110724.mkv +兄弟,http://em.21dtv.com/songs/60126974.mkv +顾凯-慧心禅悟,http://em.21dtv.com/songs/60080523.mkv +龙梅子+老猫-花心传说,http://em.21dtv.com/songs/60075854.mkv +张挥-红杏出墙,http://em.21dtv.com/songs/60105041.mkv +刘伟仁-红杏出墙,http://em.21dtv.com/songs/60020993.mkv +夏婉安-狠心拆穿,http://em.21dtv.com/songs/60121528.mkv +王丽达-花香彼岸,http://em.21dtv.com/songs/60105237.mkv +梁咏琪-狠心爱我,http://em.21dtv.com/songs/60020685.mkv +海哲明-唤醒爱情,http://em.21dtv.com/songs/60072033.mkv +张信哲-好像爱情,http://em.21dtv.com/songs/60020221.mkv +月光星子-很想爱你,http://em.21dtv.com/songs/60020656.mkv +李炳辰-好想爱你,http://em.21dtv.com/songs/60020184.mkv +李炳辰-好想爱你(演唱会),http://em.21dtv.com/songs/60020183.mkv +Jw-毫无自制,http://em.21dtv.com/songs/60118268.mkv +李嘉-乎我置这,http://em.21dtv.com/songs/60087992.mkv +JW-毫无自制,http://em.21dtv.com/songs/60062074.mkv +谭咏麟-还我真情,http://em.21dtv.com/songs/60019645.mkv +江宏恩-呼我照顾,http://em.21dtv.com/songs/60075815.mkv +黎明-火舞艳阳,http://em.21dtv.com/songs/60022468.mkv +唐嫣-扞卫阳光,http://em.21dtv.com/songs/60075665.mkv +意玲-和我拥抱,http://em.21dtv.com/songs/60115185.mkv +游鸿明-荒芜心田,http://em.21dtv.com/songs/60021867.mkv +反光镜-还我蔚蓝,http://em.21dtv.com/songs/60019643.mkv +Cross Gene-和我玩吧,http://em.21dtv.com/songs/60116443.mkv +苏贤文-回望童年,http://em.21dtv.com/songs/60097234.mkv +ADELE-he wont go,http://em.21dtv.com/songs/60067903.mkv +BACKSTREET BOYS-helpless when she smiles,http://em.21dtv.com/songs/60002202.mkv +沙宝亮-捍卫生命,http://em.21dtv.com/songs/60088213.mkv +沙宝亮-扞卫生命,http://em.21dtv.com/songs/60019929.mkv +朱雨辰-海为谁蓝,http://em.21dtv.com/songs/60075654.mkv +韩磊-花为谁开,http://em.21dtv.com/songs/60085208.mkv +张伟-花为谁开,http://em.21dtv.com/songs/60083065.mkv +黄品冠-哄我入睡,http://em.21dtv.com/songs/60021069.mkv +张学友-还我情真,http://em.21dtv.com/songs/60019642.mkv +王杰-何谓情深,http://em.21dtv.com/songs/60020401.mkv +炎亚纶-换我陪你,http://em.21dtv.com/songs/60080025.mkv +TONI BRAXTON-he wasnt man enough,http://em.21dtv.com/songs/60002135.mkv +佚名-花外流莺,http://em.21dtv.com/songs/60021493.mkv +珠珠儿-回望拉萨,http://em.21dtv.com/songs/60130614.mkv +钱万千-哈我来了,http://em.21dtv.com/songs/60113030.mkv +郭美美-和我来电,http://em.21dtv.com/songs/60020437.mkv +佚名-乎我卡多(无原唱),http://em.21dtv.com/songs/60021139.mkv +龙奔-户外精英,http://em.21dtv.com/songs/60075831.mkv +佚名-how will i know,http://em.21dtv.com/songs/60002380.mkv +GLORIA ESTEFAN-heavens what i feel,http://em.21dtv.com/songs/60002166.mkv +李在勋-hate what i did,http://em.21dtv.com/songs/60073310.mkv +费翔-嘿!我的爱,http://em.21dtv.com/songs/60020616.mkv +刘金伟-恨我痴心,http://em.21dtv.com/songs/60131217.mkv +刘金伟-恨我痴心,http://em.21dtv.com/songs/60115035.mkv +叶瑗菱-毫无保留,http://em.21dtv.com/songs/60019963.mkv +陈慧琳-毫无保留,http://em.21dtv.com/songs/60019962.mkv +陈慧琳-毫无保留(演唱会),http://em.21dtv.com/songs/60019961.mkv +梁佑嘉-扞卫爱情,http://em.21dtv.com/songs/60070728.mkv +张睿-恨我爱你,http://em.21dtv.com/songs/60080846.mkv +Apink-HUSH,http://em.21dtv.com/songs/60122336.mkv +李子卿-Hurt,http://em.21dtv.com/songs/60125696.mkv +5URPRISE-hey u come on,http://em.21dtv.com/songs/60086343.mkv +欧霖-回头再见,http://em.21dtv.com/songs/60119743.mkv +蔡琴-花天走地,http://em.21dtv.com/songs/60021487.mkv +黄耀明-花天走地(演唱会),http://em.21dtv.com/songs/60021486.mkv +PUBLIC ENEMY-harder than you think,http://em.21dtv.com/songs/60070343.mkv +郑源-荷塘月色(风景),http://em.21dtv.com/songs/60102801.mkv +郁可唯-荷塘月色,http://em.21dtv.com/songs/60083019.mkv +王强-荷塘夜色,http://em.21dtv.com/songs/60075728.mkv +佚名-荷塘月色,http://em.21dtv.com/songs/60020473.mkv +凤凰传奇-荷塘月色,http://em.21dtv.com/songs/60020472.mkv +凤凰传奇-荷塘月色(演唱会),http://em.21dtv.com/songs/60020471.mkv +吕方-回头一看,http://em.21dtv.com/songs/60022197.mkv +刘晓-海棠依旧,http://em.21dtv.com/songs/60107533.mkv +风之琳-海棠依旧,http://em.21dtv.com/songs/60098934.mkv +羽泉-回头想想,http://em.21dtv.com/songs/60022195.mkv +林志炫-回头想想,http://em.21dtv.com/songs/60022194.mkv +严当当-红透新年,http://em.21dtv.com/songs/60085195.mkv +枫桥-海棠香国,http://em.21dtv.com/songs/60070726.mkv +苏振华-换帖兄弟,http://em.21dtv.com/songs/60134161.mkv +王凤霞-欢天喜地,http://em.21dtv.com/songs/60130572.mkv +金灿-欢天喜地,http://em.21dtv.com/songs/60126301.mkv +张燕-欢天喜地,http://em.21dtv.com/songs/60021771.mkv +张宇-回头太难,http://em.21dtv.com/songs/60022189.mkv +张学友-回头太难,http://em.21dtv.com/songs/60022188.mkv +いとうかなこ-hacking to the gate,http://em.21dtv.com/songs/60073300.mkv +蒋姗倍+潘龙江-海天盛筵,http://em.21dtv.com/songs/60112937.mkv +蒋姗倍-海天盛筵,http://em.21dtv.com/songs/60112934.mkv +安仕伟-孩提时代,http://em.21dtv.com/songs/60108439.mkv +阿桑格来鹏措-回头是错,http://em.21dtv.com/songs/60080416.mkv +李翊君+迪克牛仔-回头是岸,http://em.21dtv.com/songs/60022187.mkv +曹永廉-糊涂情感,http://em.21dtv.com/songs/60021283.mkv +农夫+季欣霈-话太普通,http://em.21dtv.com/songs/60121399.mkv +刘和刚-黑土恋歌,http://em.21dtv.com/songs/60020573.mkv +张碧晨-胡桃夹子,http://em.21dtv.com/songs/60133684.mkv +叶振棠+叶丽仪-吼天喝月,http://em.21dtv.com/songs/60021073.mkv +刘文娟-红天灰雨,http://em.21dtv.com/songs/60020977.mkv +平湖秋月-皇天后土,http://em.21dtv.com/songs/60121632.mkv +佚名-皇天后土,http://em.21dtv.com/songs/60021889.mkv +贺一航-海棠花开,http://em.21dtv.com/songs/60127424.mkv +顾海滨-黑桃皇后,http://em.21dtv.com/songs/60020568.mkv +杭天琪-黄土高坡,http://em.21dtv.com/songs/60133864.mkv +王二妮+红都-黄土高坡,http://em.21dtv.com/songs/60113844.mkv +舞曲-黄土高坡(快四舞曲),http://em.21dtv.com/songs/60091916.mkv +李娜-黄土高坡,http://em.21dtv.com/songs/60021997.mkv +安雯-黄土高坡,http://em.21dtv.com/songs/60021996.mkv +杭天琪-黄土高坡(演唱会),http://em.21dtv.com/songs/60021995.mkv +邓丽君-海棠姑娘,http://em.21dtv.com/songs/60019812.mkv +曾轶可-荒唐的羊,http://em.21dtv.com/songs/60075897.mkv +萧正楠-轰天动地,http://em.21dtv.com/songs/60117177.mkv +王志文+江珊-糊涂的爱,http://em.21dtv.com/songs/60021277.mkv +刘欢-糊涂的爱,http://em.21dtv.com/songs/60021276.mkv +刘欢+刘啸-糊涂的爱(演唱会),http://em.21dtv.com/songs/60021275.mkv +容祖儿-呼天不应,http://em.21dtv.com/songs/60021164.mkv +容祖儿-呼天不应(演唱会),http://em.21dtv.com/songs/60021163.mkv +西城男孩-how to breaka heart(演唱会),http://em.21dtv.com/songs/60082190.mkv +WASSUP-hotter than a summer,http://em.21dtv.com/songs/60086345.mkv +陈升+萧言中-海豚阿德(演唱会),http://em.21dtv.com/songs/60019815.mkv +黄妃-红桃12,http://em.21dtv.com/songs/60020976.mkv +范振锋+梁奕伦-喊湿枕头(演唱会),http://em.21dtv.com/songs/60019920.mkv +王莉-华山之上,http://em.21dtv.com/songs/60067080.mkv +袁攀+夕落-互送折磨,http://em.21dtv.com/songs/60068331.mkv +马艺航-还是醉了,http://em.21dtv.com/songs/60113093.mkv +良一+方阡翊-后山之恋,http://em.21dtv.com/songs/60085199.mkv +郭美美-海水正蓝,http://em.21dtv.com/songs/60019809.mkv +彭野-好事圆圆,http://em.21dtv.com/songs/60120556.mkv +陈浩东-浣纱烟云,http://em.21dtv.com/songs/60113063.mkv +刘若英-还是一样,http://em.21dtv.com/songs/60019637.mkv +王中平-还是英雄,http://em.21dtv.com/songs/60080190.mkv +蔡依林-黑色尤物,http://em.21dtv.com/songs/60020562.mkv +海俊杰-灰色雨天,http://em.21dtv.com/songs/60022049.mkv +金奕萱-灰色眼圈,http://em.21dtv.com/songs/60086612.mkv +魏然-灰色烟圈,http://em.21dtv.com/songs/60075909.mkv +周传雄-哈萨雅琪(演唱会),http://em.21dtv.com/songs/60019564.mkv +猫黛丽赫本-黑色幽默,http://em.21dtv.com/songs/60128204.mkv +张惠妹-黑色幽默,http://em.21dtv.com/songs/60130314.mkv +代云帆+肖德俊-黑色幽默,http://em.21dtv.com/songs/60116538.mkv +陈梓童-黑色幽默,http://em.21dtv.com/songs/60115496.mkv +莫龙丹-黑色幽默,http://em.21dtv.com/songs/60106237.mkv +曹格-黑色幽默,http://em.21dtv.com/songs/60102294.mkv +金志文-黑色幽默,http://em.21dtv.com/songs/60097445.mkv +周笔畅-黑色幽默,http://em.21dtv.com/songs/60087602.mkv +曾一鸣-黑色幽墨,http://em.21dtv.com/songs/60080833.mkv +周杰伦-黑色幽默,http://em.21dtv.com/songs/60020561.mkv +周杰伦+袁咏琳-黑色幽默(演唱会),http://em.21dtv.com/songs/60020560.mkv +原子霏-黑色眼泪,http://em.21dtv.com/songs/60130166.mkv +苏慧伦-黄色月亮,http://em.21dtv.com/songs/60021988.mkv +伍佰-黄色月亮(演唱会),http://em.21dtv.com/songs/60021987.mkv +杨丞琳-黑色月亮,http://em.21dtv.com/songs/60020564.mkv +ERU-黑色眼镜,http://em.21dtv.com/songs/60075740.mkv +张智霖-黑色诱惑,http://em.21dtv.com/songs/60020563.mkv +赵咏华-灰色雨滴,http://em.21dtv.com/songs/60022048.mkv +SUPER GIRLS-黑色西装,http://em.21dtv.com/songs/60123541.mkv +张也-海山仙子,http://em.21dtv.com/songs/60091041.mkv +尹光-火山孝子(演唱会),http://em.21dtv.com/songs/60022456.mkv +舒婷-欢声笑语,http://em.21dtv.com/songs/60075881.mkv +卓文萱-话说夏娃,http://em.21dtv.com/songs/60075865.mkv +曹方-黑色香水,http://em.21dtv.com/songs/60020557.mkv +家家-还是想念,http://em.21dtv.com/songs/60135129.mkv +冷子夕-还是想你,http://em.21dtv.com/songs/60085223.mkv +梁一贞-还是想你,http://em.21dtv.com/songs/60070772.mkv +TWINS-黑色喜剧,http://em.21dtv.com/songs/60020556.mkv +李春波-何时相见,http://em.21dtv.com/songs/60020397.mkv +蔡丽津-火烧心肝,http://em.21dtv.com/songs/60135707.mkv +李志-黑色信封,http://em.21dtv.com/songs/60127026.mkv +李志-黑色信封(演唱会),http://em.21dtv.com/songs/60075739.mkv +厉娜-灰色幸福,http://em.21dtv.com/songs/60022047.mkv +方丽盈-黑色午夜(演唱会),http://em.21dtv.com/songs/60075738.mkv +张国荣-黑色午夜,http://em.21dtv.com/songs/60020555.mkv +张国荣-黑色午夜(演唱会),http://em.21dtv.com/songs/60020554.mkv +碧娜-回首往事,http://em.21dtv.com/songs/60022181.mkv +Kent王健-黑色未来,http://em.21dtv.com/songs/60097443.mkv +毛宁-海水蔚蓝,http://em.21dtv.com/songs/60090030.mkv +徐小凤-黄沙万里,http://em.21dtv.com/songs/60021989.mkv +孟庭苇-化身为海,http://em.21dtv.com/songs/60021597.mkv +萧煌奇-红色太阳,http://em.21dtv.com/songs/60020963.mkv +许嵩-灰色头像,http://em.21dtv.com/songs/60064345.mkv +刚辉-辉色天空,http://em.21dtv.com/songs/60080510.mkv +姜涛-灰色天空,http://em.21dtv.com/songs/60075908.mkv +路嘉欣-黑色天空(无原唱),http://em.21dtv.com/songs/60020553.mkv +MISHA B-heres to everything,http://em.21dtv.com/songs/60073325.mkv +鲁振顺-活色生香(演唱会),http://em.21dtv.com/songs/60075938.mkv +林子祥-活色生香(演唱会),http://em.21dtv.com/songs/60022376.mkv +林子祥-活色生香(无原唱),http://em.21dtv.com/songs/60022375.mkv +李智楠-红色石头,http://em.21dtv.com/songs/60020961.mkv +赵红军-海誓山盟,http://em.21dtv.com/songs/60129643.mkv +甄妮-海誓山盟,http://em.21dtv.com/songs/60090095.mkv +陈瑞-海誓山盟,http://em.21dtv.com/songs/60081612.mkv +云菲菲-海誓山盟,http://em.21dtv.com/songs/60075652.mkv +谢采妘-海誓山盟,http://em.21dtv.com/songs/60019808.mkv +林子祥-海誓山盟,http://em.21dtv.com/songs/60019807.mkv +傅振辉+张蓉蓉-海誓山盟,http://em.21dtv.com/songs/60019806.mkv +庄学忠-还说什么,http://em.21dtv.com/songs/60019639.mkv +吴陌川-海市蜃楼,http://em.21dtv.com/songs/60135041.mkv +郭美美-海市蜃楼,http://em.21dtv.com/songs/60134338.mkv +谭锡禧-海市蜃楼(演唱会),http://em.21dtv.com/songs/60083000.mkv +黑妹-海市蜃楼(演唱会),http://em.21dtv.com/songs/60075651.mkv +刘承灿-海市蜃楼,http://em.21dtv.com/songs/60071983.mkv +朱雅-黑色森林,http://em.21dtv.com/songs/60068319.mkv +张娜拉-海市蜃楼,http://em.21dtv.com/songs/60019804.mkv +蔡依林-海市蜃楼,http://em.21dtv.com/songs/60019803.mkv +彭靖惠-海市蜃楼(演唱会),http://em.21dtv.com/songs/60019802.mkv +林子祥-海市蜃楼(演唱会),http://em.21dtv.com/songs/60019801.mkv +林子祥+叶倩文-海市蜃楼(演唱会),http://em.21dtv.com/songs/60019800.mkv +林子祥+陈奕迅-海市蜃楼(演唱会),http://em.21dtv.com/songs/60019799.mkv +Ella-浑身是劲,http://em.21dtv.com/songs/60128675.mkv +章之乐-会师山歌,http://em.21dtv.com/songs/60135621.mkv +杜德伟-黑色契约,http://em.21dtv.com/songs/60020551.mkv +南建雄-黑色情人,http://em.21dtv.com/songs/60020552.mkv +陈升-红色汽球,http://em.21dtv.com/songs/60020960.mkv +韩超-韩氏情歌,http://em.21dtv.com/songs/60019893.mkv +张睿-挥洒青春,http://em.21dtv.com/songs/60125528.mkv +晓依-回首青春,http://em.21dtv.com/songs/60113565.mkv +望海高歌-回首青春,http://em.21dtv.com/songs/60112736.mkv +安道Ann-黑色铅笔,http://em.21dtv.com/songs/60107661.mkv +张雨生-还是朋友,http://em.21dtv.com/songs/60019627.mkv +梁文音-还是朋友,http://em.21dtv.com/songs/60019626.mkv +太极乐队-红色跑车(演唱会),http://em.21dtv.com/songs/60020959.mkv +苏永康+许志安+刘浩龙-红色跑车(演唱会),http://em.21dtv.com/songs/60020958.mkv +梁汉文-黑色偶然(无原唱),http://em.21dtv.com/songs/60092905.mkv +佚名-黑色偶然(无原唱),http://em.21dtv.com/songs/60020550.mkv +马妮啦-会是你吗,http://em.21dtv.com/songs/60103714.mkv +窦唯-黑色梦中,http://em.21dtv.com/songs/60020549.mkv +罗钧满+郑世豪-灰色命运,http://em.21dtv.com/songs/60107947.mkv +周杰伦-黑色毛衣,http://em.21dtv.com/songs/60020548.mkv +周华健+李度-何时梦醒(演唱会),http://em.21dtv.com/songs/60020396.mkv +佚名-红色玫瑰,http://em.21dtv.com/songs/60020954.mkv +郑中基-黑山老妖,http://em.21dtv.com/songs/60020565.mkv +陈雅伦-海上乐园,http://em.21dtv.com/songs/60019796.mkv +无印良品-胡思乱想,http://em.21dtv.com/songs/60021216.mkv +阿桑古卡-胡思乱想,http://em.21dtv.com/songs/60021215.mkv +K ONE+IVY-胡思乱想,http://em.21dtv.com/songs/60021214.mkv +无印良品-胡思乱想(演唱会),http://em.21dtv.com/songs/60021213.mkv +王菲-胡思乱想(演唱会),http://em.21dtv.com/songs/60021212.mkv +佚名-海上良宵,http://em.21dtv.com/songs/60019798.mkv +蔡琴-海上良宵(演唱会),http://em.21dtv.com/songs/60019797.mkv +林玉英+七郎-后山恋歌,http://em.21dtv.com/songs/60122906.mkv +苏永康-黑色礼服(演唱会),http://em.21dtv.com/songs/60020545.mkv +陶喆-黑色柳丁,http://em.21dtv.com/songs/60128563.mkv +胡彦斌+陶喆-黑色柳丁,http://em.21dtv.com/songs/60110477.mkv +菩菩-黑色柳丁,http://em.21dtv.com/songs/60100430.mkv +周笔畅-黑色柳丁,http://em.21dtv.com/songs/60097444.mkv +陶喆-黑色柳丁,http://em.21dtv.com/songs/60020547.mkv +陈晓东-黑色领带,http://em.21dtv.com/songs/60020546.mkv +薛凯琪-黑色泪滴,http://em.21dtv.com/songs/60020544.mkv +吴娜-红色旅程,http://em.21dtv.com/songs/60075784.mkv +MR.-黑色狂迷,http://em.21dtv.com/songs/60020543.mkv +罗志祥-灰色空间,http://em.21dtv.com/songs/60022044.mkv +谭咏麟-黑色快车,http://em.21dtv.com/songs/60095344.mkv +花树-红色嫁衣,http://em.21dtv.com/songs/60106225.mkv +钟洁+王媛渊-黑色记忆,http://em.21dtv.com/songs/60083030.mkv +崔子格-皇上吉祥,http://em.21dtv.com/songs/60068347.mkv +杨瑞代+梁心颐-黑色静态,http://em.21dtv.com/songs/60131530.mkv +杨瑞代+梁心颐-黑色静态,http://em.21dtv.com/songs/60070737.mkv +萧煌奇-黑色吉他,http://em.21dtv.com/songs/60020542.mkv +温碧霞-恨锁金瓶,http://em.21dtv.com/songs/60020717.mkv +周蕙-魂索旧梦,http://em.21dtv.com/songs/60089221.mkv +谢采云-魂索旧梦,http://em.21dtv.com/songs/60088665.mkv +叶德娴-魂索旧梦(演唱会),http://em.21dtv.com/songs/60022337.mkv +任贤齐-还是寂寞,http://em.21dtv.com/songs/60019615.mkv +梁文音-黄色夹克,http://em.21dtv.com/songs/60080215.mkv +牛欣欣+刘姝辰+程晨+刘芳菲-红色季节,http://em.21dtv.com/songs/60075783.mkv +爱戴-红色警戒(演唱会),http://em.21dtv.com/songs/60020953.mkv +王蓉-红烧鸡翅,http://em.21dtv.com/songs/60020965.mkv +佚名-how sweet it is(无原唱),http://em.21dtv.com/songs/60002378.mkv +林忆莲-灰色化妆,http://em.21dtv.com/songs/60022043.mkv +梅艳芳-黑色婚纱(无原唱),http://em.21dtv.com/songs/60092945.mkv +滕文斌-好山好水,http://em.21dtv.com/songs/60064283.mkv +赵文卓+水灵-回首寒梅,http://em.21dtv.com/songs/60022178.mkv +穆斌-何时回家,http://em.21dtv.com/songs/60108790.mkv +赵琳-槐树花儿,http://em.21dtv.com/songs/60072023.mkv +汪苏泷-黑色蝴蝶,http://em.21dtv.com/songs/60103415.mkv +唐禹哲-灰色河堤,http://em.21dtv.com/songs/60022042.mkv +佚名-何时何地,http://em.21dtv.com/songs/60020394.mkv +叶倩文+林子祥-何时何地,http://em.21dtv.com/songs/60020393.mkv +吴淑敏+梅东升+简语卉-还是很爱,http://em.21dtv.com/songs/60070771.mkv +伯爵-黑色钢琴,http://em.21dtv.com/songs/60069459.mkv +谭维维+陕西华阴老腔艺术团-红色鼓励,http://em.21dtv.com/songs/60127416.mkv +BEYOND-灰色轨迹(演唱会),http://em.21dtv.com/songs/60022041.mkv +谭鹏飞-挥手告别,http://em.21dtv.com/songs/60066038.mkv +陈翔-灰色风筝,http://em.21dtv.com/songs/60131958.mkv +薛之谦-黄色枫叶,http://em.21dtv.com/songs/60021986.mkv +杜德伟-红色反应,http://em.21dtv.com/songs/60020950.mkv +郑锦昌-海上风光(演唱会),http://em.21dtv.com/songs/60075650.mkv +卢海鹏-海上风光,http://em.21dtv.com/songs/60019792.mkv +李龙基-海上风光(演唱会),http://em.21dtv.com/songs/60019791.mkv +容祖儿-好事多为,http://em.21dtv.com/songs/60020164.mkv +钟欣桐-好事多为(演唱会),http://em.21dtv.com/songs/60020163.mkv +容祖儿-好事多为(演唱会),http://em.21dtv.com/songs/60020162.mkv +灭火器乐团-海上的人,http://em.21dtv.com/songs/60100294.mkv +盗帅罗浩-灰色地球,http://em.21dtv.com/songs/60123046.mkv +窦唯-黑色的梦,http://em.21dtv.com/songs/60089431.mkv +容祖儿-黄色大门,http://em.21dtv.com/songs/60021984.mkv +许嵩-河山大好,http://em.21dtv.com/songs/60061239.mkv +林海峰-好时代goodtimes(无原唱),http://em.21dtv.com/songs/60020159.mkv +王羽臣+菲菲-和谁对调,http://em.21dtv.com/songs/60075720.mkv +李圣杰-灰色地带,http://em.21dtv.com/songs/60022040.mkv +伍佰+范晓萱-海上的岛,http://em.21dtv.com/songs/60019789.mkv +阿杜-话说从头,http://em.21dtv.com/songs/60080075.mkv +高明骏-话说从头,http://em.21dtv.com/songs/60021628.mkv +麦浚龙+草蜢-亥时出世,http://em.21dtv.com/songs/60019835.mkv +周鹏+王莉-华山传奇,http://em.21dtv.com/songs/60067079.mkv +蔡诗芸-黑色彩虹,http://em.21dtv.com/songs/60067067.mkv +何润东-黑色翅膀,http://em.21dtv.com/songs/60020539.mkv +BOY'Z-皇室堡主,http://em.21dtv.com/songs/60092153.mkv +FREEZE-黑色暴雨,http://em.21dtv.com/songs/60020537.mkv +张敬轩-婚纱背后,http://em.21dtv.com/songs/60133661.mkv +张敬轩-婚纱背后,http://em.21dtv.com/songs/60072050.mkv +徐小凤-婚纱背后,http://em.21dtv.com/songs/60022320.mkv +徐小凤-婚纱背后(演唱会),http://em.21dtv.com/songs/60022319.mkv +吕珊-婚纱背后(演唱会),http://em.21dtv.com/songs/60022318.mkv +王羚柔-花式爱情(无原唱),http://em.21dtv.com/songs/60021480.mkv +阿悄-还是爱你,http://em.21dtv.com/songs/60105455.mkv +于震寰-还是爱你,http://em.21dtv.com/songs/60019601.mkv +叶胜钦-还是爱你,http://em.21dtv.com/songs/60019600.mkv +刘俐婷-还是爱你,http://em.21dtv.com/songs/60019599.mkv +于震寰-还是爱你(演唱会),http://em.21dtv.com/songs/60019598.mkv +OLLY MURS-heart skips a beat,http://em.21dtv.com/songs/60063616.mkv +尚芸菲-忽然之间,http://em.21dtv.com/songs/60125445.mkv +谭维维+张旻华-忽然之间,http://em.21dtv.com/songs/60112252.mkv +炎亚纶-忽然之间,http://em.21dtv.com/songs/60075818.mkv +苏醒-忽然之间,http://em.21dtv.com/songs/60070757.mkv +莫文蔚-忽然之间,http://em.21dtv.com/songs/60021192.mkv +莫文蔚-忽然之间(演唱会),http://em.21dtv.com/songs/60021191.mkv +许魏洲+黄景瑜-海若有因,http://em.21dtv.com/songs/60119974.mkv +梁奕伦-好人有限,http://em.21dtv.com/songs/60092898.mkv +李克勤-好人一个,http://em.21dtv.com/songs/60020145.mkv +李春波-何日相见,http://em.21dtv.com/songs/60020387.mkv +谢霆锋-何日相逢,http://em.21dtv.com/songs/60092105.mkv +王力宏-华人万岁(演唱会),http://em.21dtv.com/songs/60061261.mkv +张苡澄-忽然失眠,http://em.21dtv.com/songs/60105868.mkv +张苡薇-忽然失眠,http://em.21dtv.com/songs/60087838.mkv +常石磊-恍然如梦,http://em.21dtv.com/songs/60022007.mkv +王菀之-忽然起舞,http://em.21dtv.com/songs/60021189.mkv +柯受良-憨人情歌,http://em.21dtv.com/songs/60019866.mkv +周丽淇-好人难做,http://em.21dtv.com/songs/60020144.mkv +陈奕迅-忽然难过(演唱会),http://em.21dtv.com/songs/60021188.mkv +杨哲-憨人码头,http://em.21dtv.com/songs/60127082.mkv +HOTCHA-火热闷棍LALALA,http://em.21dtv.com/songs/60092180.mkv +I LOVE YOU BOYZ+HOTC-火热闷棍,http://em.21dtv.com/songs/60022455.mkv +李碧华-恍然明白,http://em.21dtv.com/songs/60022006.mkv +李千娜-忽然明白,http://em.21dtv.com/songs/60021187.mkv +张信哲-花若离枝,http://em.21dtv.com/songs/60063411.mkv +苏芮-花若离枝,http://em.21dtv.com/songs/60021471.mkv +江蕙-花若离枝,http://em.21dtv.com/songs/60021470.mkv +孙淑媚-花若离枝(无原唱),http://em.21dtv.com/songs/60021469.mkv +林俊杰-忽然累了,http://em.21dtv.com/songs/60091434.mkv +于冠华-豁然开朗,http://em.21dtv.com/songs/60022348.mkv +梁佑嘉-好人好者,http://em.21dtv.com/songs/60069450.mkv +胡明冬-好人好心,http://em.21dtv.com/songs/60020141.mkv +李昱和+邰正宵-好人好梦,http://em.21dtv.com/songs/60127040.mkv +吴泓君-好人好梦,http://em.21dtv.com/songs/60087562.mkv +黑鸭子-好人好梦,http://em.21dtv.com/songs/60085177.mkv +吴春燕-好人好梦(演唱会),http://em.21dtv.com/songs/60063088.mkv +卓依婷-好人好梦,http://em.21dtv.com/songs/60020140.mkv +孙悦+邰正宵-好人好梦,http://em.21dtv.com/songs/60020139.mkv +宋雪莱-好人好梦,http://em.21dtv.com/songs/60020138.mkv +钱刚-忽然发现,http://em.21dtv.com/songs/60075817.mkv +陈洁仪-忽然的雨,http://em.21dtv.com/songs/60123309.mkv +林志颖-火热的心,http://em.21dtv.com/songs/60022450.mkv +摇滚女王-恍然大悟,http://em.21dtv.com/songs/60131462.mkv +黄品冠-恍然大悟,http://em.21dtv.com/songs/60022005.mkv +黄品冠-恍然大悟(演唱会),http://em.21dtv.com/songs/60022004.mkv +容祖儿-忽然单身,http://em.21dtv.com/songs/60021181.mkv +FullCAst-火热动感 LA LA LA,http://em.21dtv.com/songs/60092175.mkv +莫文蔚-忽然东风,http://em.21dtv.com/songs/60021182.mkv +李嘉石-火热的爱,http://em.21dtv.com/songs/60107783.mkv +许嵩-毁人不倦,http://em.21dtv.com/songs/60063217.mkv +周慧敏-红旗知已,http://em.21dtv.com/songs/60092479.mkv +王莉-红旗之恋,http://em.21dtv.com/songs/60112117.mkv +王莉-红旗之恋,http://em.21dtv.com/songs/60020927.mkv +马森特-环球之歌,http://em.21dtv.com/songs/60136004.mkv +郑允武-豪情英雄,http://em.21dtv.com/songs/60122170.mkv +王庆庆-花前月下,http://em.21dtv.com/songs/60094224.mkv +寒香-红墙遗恨,http://em.21dtv.com/songs/60104954.mkv +兰均-豪情万丈,http://em.21dtv.com/songs/60120339.mkv +袁野-豪情万丈,http://em.21dtv.com/songs/60063312.mkv +文千岁+梁少芯-韩琪杀庙,http://em.21dtv.com/songs/60019892.mkv +大庆小芳-胡琴情缘,http://em.21dtv.com/songs/60064318.mkv +金婷婷-红旗飘扬,http://em.21dtv.com/songs/60102829.mkv +汤灿-红旗飘扬,http://em.21dtv.com/songs/60088204.mkv +刘子琪-红旗飘飘,http://em.21dtv.com/songs/60132239.mkv +刘子琪-红旗飘飘,http://em.21dtv.com/songs/60121431.mkv +子祺-红旗飘飘,http://em.21dtv.com/songs/60063487.mkv +孙楠-红旗飘飘(演唱会),http://em.21dtv.com/songs/60020926.mkv +孙楠+伊扬+付笛声+孙浩-红旗飘飘(演唱会),http://em.21dtv.com/songs/60020925.mkv +李永波+童非-红旗飘飘(演唱会),http://em.21dtv.com/songs/60020924.mkv +李茂山-红裙女郎,http://em.21dtv.com/songs/60020938.mkv +余飞+小树-韩情蜜意,http://em.21dtv.com/songs/60118342.mkv +夏鸣-魂牵梦绕,http://em.21dtv.com/songs/60022336.mkv +孙晓雨+林溪-含情脉脉,http://em.21dtv.com/songs/60071986.mkv +吴小豪+罗欢-婚前恋曲,http://em.21dtv.com/songs/60075934.mkv +盖鸣晖+吴美英-虎丘惊艳,http://em.21dtv.com/songs/60021288.mkv +金子嫣-欢庆佳节(无原唱),http://em.21dtv.com/songs/60021769.mkv +赵昊枫-婚前婚后,http://em.21dtv.com/songs/60119995.mkv +万重乐队-何去何从,http://em.21dtv.com/songs/60117522.mkv +佚名-何去何从,http://em.21dtv.com/songs/60020362.mkv +刘恺威-何去何从,http://em.21dtv.com/songs/60020361.mkv +江蕙-何去何从,http://em.21dtv.com/songs/60020360.mkv +紫龄-何去何从(无原唱),http://em.21dtv.com/songs/60020359.mkv +庄学忠-花前对唱,http://em.21dtv.com/songs/60089842.mkv +庄学忠-花钱对唱,http://em.21dtv.com/songs/60087764.mkv +熊宝贝乐团-和平之城,http://em.21dtv.com/songs/60020430.mkv +天使肉肉+乖猫婧婧-和平拥抱,http://em.21dtv.com/songs/60020428.mkv +BEYOND-和平与爱,http://em.21dtv.com/songs/60020429.mkv +刘广伟-嘿 朋友,http://em.21dtv.com/songs/60128822.mkv +李日詹-害怕幸福,http://em.21dtv.com/songs/60121776.mkv +金磊鑫-和平岁月,http://em.21dtv.com/songs/60066023.mkv +陈洪翔-湖畔诉情(戏曲),http://em.21dtv.com/songs/60096005.mkv +谢采芸-湖畔四拍,http://em.21dtv.com/songs/60088666.mkv +童丽-湖畔四拍,http://em.21dtv.com/songs/60075823.mkv +铁竹堂-和平世界,http://em.21dtv.com/songs/60020427.mkv +张钧喻-害怕秋天,http://em.21dtv.com/songs/60087844.mkv +张琍敏-湖畔情侣,http://em.21dtv.com/songs/60021228.mkv +佚名-湖畔情侣,http://em.21dtv.com/songs/60021227.mkv +荆晶-和平家园,http://em.21dtv.com/songs/60126117.mkv +梁咏琪-花瓶鸡汤,http://em.21dtv.com/songs/60021462.mkv +苗苗-黄浦江深,http://em.21dtv.com/songs/60096480.mkv +宋祖英-黄浦江深,http://em.21dtv.com/songs/60075902.mkv +龚赞生-害怕孤单,http://em.21dtv.com/songs/60109065.mkv +游媄镁-害怕孤独(无原唱),http://em.21dtv.com/songs/60019845.mkv +张诒博-和平分手,http://em.21dtv.com/songs/60123957.mkv +徐良+小暖-和平分手,http://em.21dtv.com/songs/60020423.mkv +陈奕迅-和平饭店,http://em.21dtv.com/songs/60020422.mkv +陈奕迅-魂魄唔齐,http://em.21dtv.com/songs/60093413.mkv +佚名-海旁独唱,http://em.21dtv.com/songs/60019786.mkv +叶倩文-海旁独唱(演唱会),http://em.21dtv.com/songs/60019785.mkv +容祖儿-红牌出场(演唱会),http://em.21dtv.com/songs/60020922.mkv +诺拉+海浪飞歌-和平必胜,http://em.21dtv.com/songs/60119975.mkv +KYLIE MINOGUE-hand on your heart,http://em.21dtv.com/songs/60002053.mkv +朱孝天-heat of the night(演唱会),http://em.21dtv.com/songs/60002157.mkv +小右-Hope,http://em.21dtv.com/songs/60121597.mkv +HOPE组合-HOPE,http://em.21dtv.com/songs/60109095.mkv +OLLY MURS-heart on my sleeve,http://em.21dtv.com/songs/60073315.mkv +王诗安-Home,http://em.21dtv.com/songs/60130605.mkv +朴孝信-Home,http://em.21dtv.com/songs/60130399.mkv +王诗安-HOME,http://em.21dtv.com/songs/60124286.mkv +清水翔太-HOME,http://em.21dtv.com/songs/60119780.mkv +Mike Martin+London Ellis-Home,http://em.21dtv.com/songs/60119163.mkv +Phillip Phillips-Home,http://em.21dtv.com/songs/60113181.mkv +陈洁仪-HOME,http://em.21dtv.com/songs/60109698.mkv +龙梅子+老猫-Hold不住的爱,http://em.21dtv.com/songs/60101586.mkv +I.HAYES+D.PORTER-hold on im coming(无原唱),http://em.21dtv.com/songs/60002292.mkv +李鸥-海鸥飞翔,http://em.21dtv.com/songs/60133832.mkv +佚名-海鸥飞翔,http://em.21dtv.com/songs/60019783.mkv +谢采妘-海鸥飞处,http://em.21dtv.com/songs/60019781.mkv +高胜美-海鸥飞处,http://em.21dtv.com/songs/60019780.mkv +童唱-how old are you,http://em.21dtv.com/songs/60002377.mkv +T.I.-hell of a life,http://em.21dtv.com/songs/60063618.mkv +廖昌永-怀念战友,http://em.21dtv.com/songs/60110179.mkv +腾格尔-怀念战友,http://em.21dtv.com/songs/60106212.mkv +李潮-怀念战友,http://em.21dtv.com/songs/60070769.mkv +佚名-怀念战友,http://em.21dtv.com/songs/60064332.mkv +子祺-怀念战友,http://em.21dtv.com/songs/60063489.mkv +刘欢-怀念战友,http://em.21dtv.com/songs/60021673.mkv +李双江-怀念战友,http://em.21dtv.com/songs/60021672.mkv +刀郎-怀念战友,http://em.21dtv.com/songs/60021671.mkv +大风-怀念战友,http://em.21dtv.com/songs/60021670.mkv +腾格尔-怀念战友(演唱会),http://em.21dtv.com/songs/60021669.mkv +刘欢-怀念战友(演唱会),http://em.21dtv.com/songs/60021668.mkv +动静乐团-还你自由,http://em.21dtv.com/songs/60019594.mkv +阿杜-还你自由,http://em.21dtv.com/songs/60019593.mkv +郑伊健-怀念着您,http://em.21dtv.com/songs/60093265.mkv +郑伊健-怀念着你,http://em.21dtv.com/songs/60021675.mkv +黄克林-怀念之母,http://em.21dtv.com/songs/60021676.mkv +邢高瑗-和你一样,http://em.21dtv.com/songs/60128452.mkv +李宇春-和你一样,http://em.21dtv.com/songs/60020416.mkv +李宇春-和你一样(演唱会),http://em.21dtv.com/songs/60020415.mkv +张柏芝-恨你一吻,http://em.21dtv.com/songs/60092633.mkv +许茹芸-和你一起,http://em.21dtv.com/songs/60020414.mkv +许慧欣-和你一起,http://em.21dtv.com/songs/60020413.mkv +陈淑萍-换你一面,http://em.21dtv.com/songs/60067090.mkv +孙浩雨-患难兄弟,http://em.21dtv.com/songs/60125388.mkv +金城+王云浩-患难兄弟,http://em.21dtv.com/songs/60110591.mkv +莫艳琳-和你跳舞,http://em.21dtv.com/songs/60020412.mkv +佚名-怀念思景,http://em.21dtv.com/songs/60021667.mkv +齐萧-哄你入睡,http://em.21dtv.com/songs/60100684.mkv +姚苏容-恨你入骨,http://em.21dtv.com/songs/60020713.mkv +吕珊-恨你入骨(演唱会),http://em.21dtv.com/songs/60020712.mkv +马常宝-怀念秋天,http://em.21dtv.com/songs/60110689.mkv +刘刚-怀念青春,http://em.21dtv.com/songs/60100773.mkv +游鸿明-换你难过,http://em.21dtv.com/songs/60110351.mkv +陈卫双-猴年马月,http://em.21dtv.com/songs/60131930.mkv +萧磊-猴年马月,http://em.21dtv.com/songs/60119931.mkv +余天-怀念妈妈,http://em.21dtv.com/songs/60021664.mkv +佚名-怀念妈妈,http://em.21dtv.com/songs/60021663.mkv +余文乐-还你门匙,http://em.21dtv.com/songs/60019592.mkv +麦浚龙+余文乐-还你门匙(演唱会),http://em.21dtv.com/songs/60019591.mkv +丁晓红-海南恋歌(演唱会),http://em.21dtv.com/songs/60019771.mkv +李池湘-红娘-拷红,http://em.21dtv.com/songs/60020921.mkv +风娘+SUPER7-乎你机会,http://em.21dtv.com/songs/60067075.mkv +佚名-还你还我,http://em.21dtv.com/songs/60019590.mkv +陈小春+A.JORDAN-好难好难,http://em.21dtv.com/songs/60020103.mkv +欢子+沈丹丹-怀念过去,http://em.21dtv.com/songs/60021661.mkv +欢子+沈丹丹-怀念过去(演唱会),http://em.21dtv.com/songs/60021660.mkv +爱乐团-海南姑娘,http://em.21dtv.com/songs/60091677.mkv +小老头-怀念哥哥,http://em.21dtv.com/songs/60085214.mkv +高利虹-和你分享,http://em.21dtv.com/songs/60114271.mkv +秋水-怀念父亲,http://em.21dtv.com/songs/60099433.mkv +卓依婷-怀念的人,http://em.21dtv.com/songs/60021656.mkv +佚名-怀念的人,http://em.21dtv.com/songs/60021655.mkv +罗时丰-怀念的人,http://em.21dtv.com/songs/60021654.mkv +陈雷-怀念的人,http://em.21dtv.com/songs/60021653.mkv +叶瑗菱-乎你的批(无原唱),http://em.21dtv.com/songs/60021135.mkv +于金胜-猴年大吉,http://em.21dtv.com/songs/60119242.mkv +龙奔-猴年大吉,http://em.21dtv.com/songs/60118232.mkv +凤娘-乎你打败,http://em.21dtv.com/songs/60021134.mkv +深白色2人组-还能不能,http://em.21dtv.com/songs/60019587.mkv +叶晓红-怀念白狐,http://em.21dtv.com/songs/60083069.mkv +张迈-呼你不回,http://em.21dtv.com/songs/60070756.mkv +廖昌永-海纳百川,http://em.21dtv.com/songs/60123906.mkv +范晓萱-恨你爱你,http://em.21dtv.com/songs/60091953.mkv +李美-和美之恋,http://em.21dtv.com/songs/60130432.mkv +婉言-翰墨中华,http://em.21dtv.com/songs/60019930.mkv +宋伶俐-翰墨有缘,http://em.21dtv.com/songs/60071987.mkv +曹格-荒谬英雄,http://em.21dtv.com/songs/60072036.mkv +心然-回梦游仙,http://em.21dtv.com/songs/60022163.mkv +佚名-好梦易醒,http://em.21dtv.com/songs/60020087.mkv +草蜢-好梦易醒(演唱会),http://em.21dtv.com/songs/60020086.mkv +唐彪-虎门雄风,http://em.21dtv.com/songs/60021287.mkv +李湘-黑马王子,http://em.21dtv.com/songs/60020526.mkv +赵自强-哈姆太郎,http://em.21dtv.com/songs/60019559.mkv +易天晴-含眠天后(无原唱),http://em.21dtv.com/songs/60019883.mkv +邱永传-海盟誓言,http://em.21dtv.com/songs/60019769.mkv +徐开来-hello mr super boy(演唱会),http://em.21dtv.com/songs/60002183.mkv +严当当-花满人间(演唱会),http://em.21dtv.com/songs/60021454.mkv +王中平-好梦难圆,http://em.21dtv.com/songs/60091680.mkv +罗嘉良-好梦难圆,http://em.21dtv.com/songs/60020085.mkv +景行厅男孩-黑麻麻ohmama,http://em.21dtv.com/songs/60020525.mkv +戏曲-红棉礼赞,http://em.21dtv.com/songs/60092737.mkv +翁立友+林姗-恨抹落心,http://em.21dtv.com/songs/60020707.mkv +梁咏琪-红棉路上,http://em.21dtv.com/songs/60127125.mkv +高山-胡麻开花,http://em.21dtv.com/songs/60083054.mkv +童唱-黑猫警长,http://em.21dtv.com/songs/60020527.mkv +胡彦斌-黑猫警长,http://em.21dtv.com/songs/60113977.mkv +袁东方-翰墨鸿儒,http://em.21dtv.com/songs/60114764.mkv +魏如萱-好吗好吗,http://em.21dtv.com/songs/60102949.mkv +李雨寿-很美很美,http://em.21dtv.com/songs/60075750.mkv +胡明-胡明胡喊,http://em.21dtv.com/songs/60021209.mkv +拾音社-红棉花瓣,http://em.21dtv.com/songs/60060433.mkv +郑秀文-荒漠甘泉,http://em.21dtv.com/songs/60094722.mkv +尚雯婕-荒谬的爱,http://em.21dtv.com/songs/60075896.mkv +江美琪-缓慢的爱,http://em.21dtv.com/songs/60021810.mkv +汤灿-好梦成真,http://em.21dtv.com/songs/60020084.mkv +红旗-黑马白蹄(民歌),http://em.21dtv.com/songs/60088403.mkv +魏嘉榆-黑面宝贝,http://em.21dtv.com/songs/60114287.mkv +回音哥-海绵宝宝,http://em.21dtv.com/songs/60067052.mkv +林冠吟-毁灭爱情,http://em.21dtv.com/songs/60022267.mkv +汪明荃-华丽转身,http://em.21dtv.com/songs/60112055.mkv +刘子琪-婚礼之歌,http://em.21dtv.com/songs/60132233.mkv +赵静-欢乐中国,http://em.21dtv.com/songs/60100484.mkv +佚名-婚礼之歌,http://em.21dtv.com/songs/60022313.mkv +四分卫-混乱战场,http://em.21dtv.com/songs/60022328.mkv +李欣汝-华丽战场,http://em.21dtv.com/songs/60018621.mkv +谭凯琪-华丽宇宙(无原唱),http://em.21dtv.com/songs/60021573.mkv +爱乐团-活力由我,http://em.21dtv.com/songs/60022372.mkv +海源-红楼一梦,http://em.21dtv.com/songs/60069463.mkv +刘洺瑒-活力心跳,http://em.21dtv.com/songs/60126651.mkv +固珺-画楼西畔,http://em.21dtv.com/songs/60114462.mkv +殷秀梅-怀里心里,http://em.21dtv.com/songs/60091541.mkv +赵奕欢-幻灵仙境,http://em.21dtv.com/songs/60099508.mkv +陈伟霆-狐狸小姐,http://em.21dtv.com/songs/60021199.mkv +容祖儿-华丽邂逅,http://em.21dtv.com/songs/60021572.mkv +容祖儿-华丽邂逅(演唱会),http://em.21dtv.com/songs/60021571.mkv +黄耀明+容祖儿-华丽邂逅(演唱会),http://em.21dtv.com/songs/60021570.mkv +兰叶子+心灵彩虹-婚礼献歌,http://em.21dtv.com/songs/60101267.mkv +儿歌-葫芦兄弟,http://em.21dtv.com/songs/60090648.mkv +卓依婷-欢乐新春,http://em.21dtv.com/songs/60021764.mkv +赵蕊-花落无香,http://em.21dtv.com/songs/60122148.mkv +草蜢-华丽舞台(演唱会),http://em.21dtv.com/songs/60019394.mkv +佚名-欢乐舞曲,http://em.21dtv.com/songs/60021763.mkv +PEACH GIRL-狐狸围巾,http://em.21dtv.com/songs/60099693.mkv +袁哲-回来我爱(演唱会),http://em.21dtv.com/songs/60061271.mkv +袁哲-回来我爱,http://em.21dtv.com/songs/60022153.mkv +庾澄庆-哈林天堂,http://em.21dtv.com/songs/60019553.mkv +蔡秋凤-花落土时,http://em.21dtv.com/songs/60021450.mkv +余零-欢乐天地,http://em.21dtv.com/songs/60099751.mkv +安东阳-婚礼誓言,http://em.21dtv.com/songs/60022312.mkv +苏阳-贺兰山下(演唱会),http://em.21dtv.com/songs/60067066.mkv +发条人乐团-荷莉赛伦,http://em.21dtv.com/songs/60075727.mkv +周桐同-花落谁家,http://em.21dtv.com/songs/60021448.mkv +佚名-花落谁家,http://em.21dtv.com/songs/60021447.mkv +姚莉-花落谁家,http://em.21dtv.com/songs/60021446.mkv +李克勤-花落谁家,http://em.21dtv.com/songs/60021445.mkv +李克勤-花落谁家(演唱会),http://em.21dtv.com/songs/60021444.mkv +王力宏-火力全开,http://em.21dtv.com/songs/60063021.mkv +黄奕-火力全开,http://em.21dtv.com/songs/60075946.mkv +蟑螂乐队-火力全开,http://em.21dtv.com/songs/60022443.mkv +帅无情-婚礼情歌,http://em.21dtv.com/songs/60119478.mkv +三郎-火辣情歌,http://em.21dtv.com/songs/60116498.mkv +吴德华-婚恋情歌,http://em.21dtv.com/songs/60022315.mkv +黑鸭子-花蕾飘香,http://em.21dtv.com/songs/60105008.mkv +奥云格日乐-花蕾飘香,http://em.21dtv.com/songs/60102087.mkv +佚名-欢乐女神,http://em.21dtv.com/songs/60021760.mkv +群星-欢乐年年,http://em.21dtv.com/songs/60097258.mkv +吴家辉+王莉莉-欢乐年年,http://em.21dtv.com/songs/60075879.mkv +张德兰+区瑞强-欢乐年年,http://em.21dtv.com/songs/60021759.mkv +佚名-欢乐年年,http://em.21dtv.com/songs/60021758.mkv +叶倩文+杜德伟-欢乐年年,http://em.21dtv.com/songs/60021757.mkv +薛家燕+欧阳震华-欢乐年年,http://em.21dtv.com/songs/60021756.mkv +无鸣-欢乐年年,http://em.21dtv.com/songs/60021755.mkv +牛欣欣-欢乐年年,http://em.21dtv.com/songs/60021754.mkv +蓓蕾-欢乐年年,http://em.21dtv.com/songs/60021753.mkv +佚名-欢乐年华,http://em.21dtv.com/songs/60021752.mkv +周杰伦-红楼梦中,http://em.21dtv.com/songs/60020893.mkv +闪亮三姐妹-华丽冒险,http://em.21dtv.com/songs/60021569.mkv +单色凌+小布-华丽木偶,http://em.21dtv.com/songs/60103954.mkv +乌兰齐齐格-呼伦牧歌,http://em.21dtv.com/songs/60133335.mkv +乌兰齐齐格-呼伦牧歌,http://em.21dtv.com/songs/60112489.mkv +乌兰齐齐格-呼伦牧歌,http://em.21dtv.com/songs/60111675.mkv +林玉英-含泪玫瑰(无原唱),http://em.21dtv.com/songs/60095689.mkv +佚名-含泪玫瑰(无原唱),http://em.21dtv.com/songs/60019880.mkv +菜籽-哈利路亚,http://em.21dtv.com/songs/60127350.mkv +蔡琴-哈利路亚,http://em.21dtv.com/songs/60119953.mkv +曾国铭-哈利路亚,http://em.21dtv.com/songs/60092760.mkv +罗百吉-哈利路亚,http://em.21dtv.com/songs/60019552.mkv +南拳妈妈-哈里路亚,http://em.21dtv.com/songs/60019551.mkv +I LOVE YOU BOYZ-欢乐粒宵,http://em.21dtv.com/songs/60021751.mkv +林义翔-哗啦啦啦,http://em.21dtv.com/songs/60106015.mkv +高胜美-海浪泪痕,http://em.21dtv.com/songs/60019766.mkv +吉木喜儿-花楼恋歌,http://em.21dtv.com/songs/60021442.mkv +黄小琥-哈罗快乐,http://em.21dtv.com/songs/60075639.mkv +任玲-欢乐开怀,http://em.21dtv.com/songs/60070770.mkv +猪哥亮-好里家在(演唱会),http://em.21dtv.com/songs/60075678.mkv +胡美仪+吕珊+苏姗-欢乐今宵(演唱会),http://em.21dtv.com/songs/60075876.mkv +梁咏琪-欢乐今宵,http://em.21dtv.com/songs/60021750.mkv +古巨基-欢乐今宵,http://em.21dtv.com/songs/60021749.mkv +古巨基-欢乐今宵(演唱会),http://em.21dtv.com/songs/60021748.mkv +于月仙+衡越+孙潇+哈桑+双龙组合-猴来居上,http://em.21dtv.com/songs/60118308.mkv +金磊鑫-欢乐节日,http://em.21dtv.com/songs/60085217.mkv +哈宝宝-欢乐假期(无原唱),http://em.21dtv.com/songs/60021747.mkv +神龙妹子团-葫芦姐妹,http://em.21dtv.com/songs/60123048.mkv +红乐队-回来就好,http://em.21dtv.com/songs/60064353.mkv +李玟-好来好往,http://em.21dtv.com/songs/60092810.mkv +苏永康-好来好去,http://em.21dtv.com/songs/60020075.mkv +江宏恩-好啦好啦,http://em.21dtv.com/songs/60116989.mkv +S.H.E-后来后来,http://em.21dtv.com/songs/60079853.mkv +猴子飞行员-喝啦喝啦,http://em.21dtv.com/songs/60071999.mkv +S.H.E-后来回来,http://em.21dtv.com/songs/60064206.mkv +芭比-好累好累(无原唱),http://em.21dtv.com/songs/60020078.mkv +萧煌奇-好啦好啦,http://em.21dtv.com/songs/60020074.mkv +刘欢-花落花开,http://em.21dtv.com/songs/60021443.mkv +宰岩宴-欢乐鼓声,http://em.21dtv.com/songs/60124779.mkv +LINKED HORIZON-红莲の弓矢,http://em.21dtv.com/songs/60083042.mkv +香巴拉组合-海螺姑娘,http://em.21dtv.com/songs/60075649.mkv +林忆莲-哈罗感觉(演唱会),http://em.21dtv.com/songs/60019557.mkv +郑少秋+汪明荃-欢乐丰年,http://em.21dtv.com/songs/60093279.mkv +刘长瑜-红楼二尤,http://em.21dtv.com/songs/60020884.mkv +夏文静-好冷的夜(无原唱),http://em.21dtv.com/songs/60024832.mkv +方季惟-含泪的眼,http://em.21dtv.com/songs/60019879.mkv +火日京-后来的你,http://em.21dtv.com/songs/60105227.mkv +合唱-烘炉茶古,http://em.21dtv.com/songs/60095495.mkv +佚名-烘炉茶古,http://em.21dtv.com/songs/60020742.mkv +陈兴瑜-华丽出场,http://em.21dtv.com/songs/60072020.mkv +渠怀龙-含泪藏爱,http://em.21dtv.com/songs/60098595.mkv +川子-回来别走,http://em.21dtv.com/songs/60106802.mkv +林强-黑轮伯仔,http://em.21dtv.com/songs/60020524.mkv +许嵩-胡萝卜须,http://em.21dtv.com/songs/60068328.mkv +李菓-何乐不为(演唱会),http://em.21dtv.com/songs/60086592.mkv +萨日娜-呼伦贝尔,http://em.21dtv.com/songs/60021157.mkv +姬长乐-活力宝贝,http://em.21dtv.com/songs/60103193.mkv +俞晴-回来爱我,http://em.21dtv.com/songs/60022140.mkv +MC梦+Channels-混乱爱情,http://em.21dtv.com/songs/60109847.mkv +王若琳-哈喽安娘,http://em.21dtv.com/songs/60123011.mkv +范冰冰-花开自在,http://em.21dtv.com/songs/60021437.mkv +刘依纯+办桌阿杰-花开再会,http://em.21dtv.com/songs/60068335.mkv +何敏嘉-花开中国,http://em.21dtv.com/songs/60132201.mkv +何敏嘉-花开中国,http://em.21dtv.com/songs/60128777.mkv +王又萱-花开月圆,http://em.21dtv.com/songs/60131646.mkv +曾沛慈-黑框眼镜,http://em.21dtv.com/songs/60107769.mkv +胡夏-黑框眼镜,http://em.21dtv.com/songs/60085186.mkv +罗文聪-花开心萎,http://em.21dtv.com/songs/60095846.mkv +夏滨-花开相爱,http://em.21dtv.com/songs/60083064.mkv +陈晓东-花开无声(演唱会),http://em.21dtv.com/songs/60021436.mkv +蓝月心-花开万朵,http://em.21dtv.com/songs/60094285.mkv +老狼-虎口脱险,http://em.21dtv.com/songs/60120862.mkv +张磊-虎口脱险,http://em.21dtv.com/songs/60119541.mkv +老狼-虎口脱险,http://em.21dtv.com/songs/60021286.mkv +曹雅雯-海阔天空,http://em.21dtv.com/songs/60135331.mkv +任韵淇-海阔天空,http://em.21dtv.com/songs/60118324.mkv +陈小春+郑伊健+谢天华+林晓峰+钱嘉乐-海阔天空,http://em.21dtv.com/songs/60114205.mkv +孙楠+九妹+祁夏竹-海阔天空(HD),http://em.21dtv.com/songs/10012772.mkv +林晓峰-海阔天空,http://em.21dtv.com/songs/60109460.mkv +韩红-海阔天空,http://em.21dtv.com/songs/60109018.mkv +曹格-海阔天空,http://em.21dtv.com/songs/60099278.mkv +萧煌奇+杨培安-海阔天空,http://em.21dtv.com/songs/60098736.mkv +丁泽强+卢望-海阔天空,http://em.21dtv.com/songs/60094793.mkv +陶喆-海阔天空,http://em.21dtv.com/songs/60086580.mkv +邓小坤-海阔天空,http://em.21dtv.com/songs/60080942.mkv +ROBYNN+KENDY-海阔天空,http://em.21dtv.com/songs/60075645.mkv +林忆莲-海阔天空(演唱会),http://em.21dtv.com/songs/60075644.mkv +阿穆隆-海阔天空(演唱会),http://em.21dtv.com/songs/60071981.mkv +黄贯中-海阔天空,http://em.21dtv.com/songs/60071980.mkv +李维真-海阔天空,http://em.21dtv.com/songs/60070724.mkv +韩庚-海阔天空,http://em.21dtv.com/songs/60062425.mkv +张惠妹-海阔天空,http://em.21dtv.com/songs/60019758.mkv +信乐团-海阔天空,http://em.21dtv.com/songs/60019757.mkv +黄思婷-海阔天空,http://em.21dtv.com/songs/60019756.mkv +BEYOND-海阔天空,http://em.21dtv.com/songs/60019755.mkv +张惠妹-海阔天空(演唱会),http://em.21dtv.com/songs/60019754.mkv +谢安琪-海阔天空(演唱会),http://em.21dtv.com/songs/60019753.mkv +任贤齐-海阔天空(演唱会),http://em.21dtv.com/songs/60019752.mkv +黄家强-海阔天空(演唱会),http://em.21dtv.com/songs/60019751.mkv +何嘉莉-海阔天空(演唱会),http://em.21dtv.com/songs/60019750.mkv +侧田-海阔天空(演唱会),http://em.21dtv.com/songs/60019749.mkv +BEYOND-海阔天空(演唱会),http://em.21dtv.com/songs/60019748.mkv +杨大为-海阔天空(无原唱),http://em.21dtv.com/songs/60019747.mkv +HITA-海阔山遥,http://em.21dtv.com/songs/60124893.mkv +汪东城-花开树下,http://em.21dtv.com/songs/60131595.mkv +许文华-花开塞上,http://em.21dtv.com/songs/60135738.mkv +艾爰爰-花开塞上,http://em.21dtv.com/songs/60135654.mkv +吴雨霏-海枯石烂,http://em.21dtv.com/songs/60064273.mkv +王俪婷-海枯石烂,http://em.21dtv.com/songs/60063023.mkv +OLIVIA-海枯石烂,http://em.21dtv.com/songs/60061228.mkv +枫舞+依依-花开时刻,http://em.21dtv.com/songs/60105190.mkv +呼斯楞-花开漂亮,http://em.21dtv.com/songs/60062458.mkv +蒋梓乐-花开年少,http://em.21dtv.com/songs/60129570.mkv +韩磊-花开年少,http://em.21dtv.com/songs/60124693.mkv +魏晨-花开那年,http://em.21dtv.com/songs/60109762.mkv +金娃-航空立交,http://em.21dtv.com/songs/60080595.mkv +阿正-海口恋歌,http://em.21dtv.com/songs/60085162.mkv +区文诗-会快乐吧,http://em.21dtv.com/songs/60022283.mkv +梁少芯-花开锦绣,http://em.21dtv.com/songs/60090016.mkv +柏文-花开季节,http://em.21dtv.com/songs/60021434.mkv +蔡健雅-很靠近海,http://em.21dtv.com/songs/60075749.mkv +罗文-还看今朝,http://em.21dtv.com/songs/60019582.mkv +周治平-花开花谢,http://em.21dtv.com/songs/60021432.mkv +双HI C组合-花开花谢(演唱会),http://em.21dtv.com/songs/60021431.mkv +蔡佳莹-花开何时,http://em.21dtv.com/songs/60134197.mkv +陆正信-花开花落,http://em.21dtv.com/songs/60100558.mkv +朱妍-花开花落,http://em.21dtv.com/songs/60021430.mkv +孟小童-花开花落,http://em.21dtv.com/songs/60021429.mkv +刘欢-花开花落,http://em.21dtv.com/songs/60021428.mkv +李羿慧-花开花落,http://em.21dtv.com/songs/60021427.mkv +许艺-花开富贵,http://em.21dtv.com/songs/60112233.mkv +文千岁-花开富贵(戏曲),http://em.21dtv.com/songs/60092748.mkv +双星-花开富贵,http://em.21dtv.com/songs/60075842.mkv +卓依婷-花开富贵,http://em.21dtv.com/songs/60021425.mkv +蒋文端-花开富贵,http://em.21dtv.com/songs/60021424.mkv +费玉清-花开富贵(无原唱),http://em.21dtv.com/songs/60021423.mkv +上官流云-行快的啦,http://em.21dtv.com/songs/60092234.mkv +陈艾-花开草原,http://em.21dtv.com/songs/60119026.mkv +爱啾-花开成海,http://em.21dtv.com/songs/60127185.mkv +徐海榕-花开半夏,http://em.21dtv.com/songs/60100052.mkv +爱朵女孩-花开半夏,http://em.21dtv.com/songs/60070763.mkv +容中尔甲-嘿康巴人,http://em.21dtv.com/songs/60020622.mkv +啦啦vs守望-花开并蒂,http://em.21dtv.com/songs/60105714.mkv +陈瑞-花开半朵,http://em.21dtv.com/songs/60085206.mkv +姜昕-花开不败,http://em.21dtv.com/songs/60021418.mkv +付三土-花开彼岸,http://em.21dtv.com/songs/60125092.mkv +方瑞娥-花街之母,http://em.21dtv.com/songs/60021414.mkv +一绫+大卫-红酒之恋,http://em.21dtv.com/songs/60085193.mkv +陈昕-汇聚这里,http://em.21dtv.com/songs/60067096.mkv +郭美美-回家真好,http://em.21dtv.com/songs/60075918.mkv +刘德华-回家真好,http://em.21dtv.com/songs/60022131.mkv +群星-华杰之歌,http://em.21dtv.com/songs/60114727.mkv +梁心颐-胡椒与盐,http://em.21dtv.com/songs/60021208.mkv +佚名-黄金一笑,http://em.21dtv.com/songs/60021976.mkv +杨钰莹-黄金一笑,http://em.21dtv.com/songs/60021975.mkv +邹昌龙-欢聚一堂,http://em.21dtv.com/songs/60129663.mkv +孙刚-欢聚一堂,http://em.21dtv.com/songs/60102111.mkv +容中尔甲-欢聚一堂,http://em.21dtv.com/songs/60021739.mkv +刘和刚-欢聚一堂,http://em.21dtv.com/songs/60021738.mkv +虞姬-罕见硬曲,http://em.21dtv.com/songs/60118893.mkv +钟欣桐-回家以后,http://em.21dtv.com/songs/60085239.mkv +梁静茹-很久以后,http://em.21dtv.com/songs/60020644.mkv +七郎-海角信号,http://em.21dtv.com/songs/60019743.mkv +吴香伦-帘卷西风(演唱会),http://em.21dtv.com/songs/60064472.mkv +张信哲-花季未了,http://em.21dtv.com/songs/60063410.mkv +刘若英-花季未了,http://em.21dtv.com/songs/60021406.mkv +曾巍-回家团圆,http://em.21dtv.com/songs/60075917.mkv +郭一然-海角天涯,http://em.21dtv.com/songs/60071979.mkv +周华健-海角天涯,http://em.21dtv.com/songs/60019741.mkv +谢采妘-海角天涯,http://em.21dtv.com/songs/60019740.mkv +王芷蕾-海角天涯,http://em.21dtv.com/songs/60019739.mkv +王识贤-海角天涯,http://em.21dtv.com/songs/60019738.mkv +孙燕姿-海角天涯,http://em.21dtv.com/songs/60019737.mkv +苏永康-海角天涯,http://em.21dtv.com/songs/60019736.mkv +刘锡明-海角天涯(演唱会),http://em.21dtv.com/songs/60019735.mkv +小曾-回家探亲,http://em.21dtv.com/songs/60022129.mkv +何超仪-何家淑女,http://em.21dtv.com/songs/60020350.mkv +檀欢-欢聚时刻,http://em.21dtv.com/songs/60108647.mkv +熊立红-黄金时代,http://em.21dtv.com/songs/60085233.mkv +马薇-黄金时代,http://em.21dtv.com/songs/60085232.mkv +陈楚生-黄金时代,http://em.21dtv.com/songs/60080447.mkv +陈奕迅-黄金时代(HD演唱会),http://em.21dtv.com/songs/60021973.mkv +佚名-后街人生,http://em.21dtv.com/songs/60021103.mkv +文夏+佚名-后街人生,http://em.21dtv.com/songs/60021102.mkv +沁心小筑-花甲如花,http://em.21dtv.com/songs/60120689.mkv +东来东往-海角七号,http://em.21dtv.com/songs/60019734.mkv +江涛-红酒情歌,http://em.21dtv.com/songs/60020878.mkv +章丽-欢聚青春,http://em.21dtv.com/songs/60021737.mkv +李治廷-回家路上,http://em.21dtv.com/songs/60132554.mkv +李芝芬-回家路上,http://em.21dtv.com/songs/60091365.mkv +戴佩妮-回家路上,http://em.21dtv.com/songs/60064352.mkv +佚名-回家路上,http://em.21dtv.com/songs/60022127.mkv +飞翔鸟乐队-黄荆绿海,http://em.21dtv.com/songs/60121146.mkv +塔宏伟+小歆-回家看看,http://em.21dtv.com/songs/60072045.mkv +大芭-好记就好,http://em.21dtv.com/songs/60066016.mkv +何芝芸-好聚好散,http://em.21dtv.com/songs/60130081.mkv +马忠伟-好聚好散,http://em.21dtv.com/songs/60129802.mkv +陈奕迅-好聚好散,http://em.21dtv.com/songs/60115487.mkv +王晓敏-好聚好散,http://em.21dtv.com/songs/60112104.mkv +刘星-好聚好散,http://em.21dtv.com/songs/60104827.mkv +孙露-好聚好散,http://em.21dtv.com/songs/60075677.mkv +郑源-好聚好散,http://em.21dtv.com/songs/60020072.mkv +任贤齐-好聚好散,http://em.21dtv.com/songs/60020071.mkv +梁雁翎-好聚好散,http://em.21dtv.com/songs/60020070.mkv +紫浪-很久很久,http://em.21dtv.com/songs/60098683.mkv +郑国锋-很久很久,http://em.21dtv.com/songs/60097354.mkv +阿悄-好挤好挤,http://em.21dtv.com/songs/60097256.mkv +吕欣珏+廖逸灵+王浚源+陈家乐-好久回家,http://em.21dtv.com/songs/60083008.mkv +刘若英+光良-好久好久,http://em.21dtv.com/songs/60020061.mkv +李文华-回家过年,http://em.21dtv.com/songs/60132533.mkv +廖昌永-回家过年,http://em.21dtv.com/songs/60132429.mkv +杨清明-回家过年,http://em.21dtv.com/songs/60131529.mkv +陈天红-回家过年,http://em.21dtv.com/songs/60108973.mkv +张赫宣-回家过年,http://em.21dtv.com/songs/60108507.mkv +左健-回家过年,http://em.21dtv.com/songs/60099982.mkv +孙伟-回家过年,http://em.21dtv.com/songs/60075916.mkv +罗钢-回家过年,http://em.21dtv.com/songs/60022125.mkv +李进-回家过年,http://em.21dtv.com/songs/60022124.mkv +群星-回家过年(演唱会),http://em.21dtv.com/songs/60022123.mkv +令狐-回家过节,http://em.21dtv.com/songs/60130068.mkv +冷漠-怀旧电影,http://em.21dtv.com/songs/60125163.mkv +Frank秋枫-幻觉动物,http://em.21dtv.com/songs/60104675.mkv +苗苗-回家的人,http://em.21dtv.com/songs/60096454.mkv +江涛-回家的人(演唱会),http://em.21dtv.com/songs/60067091.mkv +江涛-回家的人,http://em.21dtv.com/songs/60022120.mkv +叶佩雯-好假的你,http://em.21dtv.com/songs/60020050.mkv +张韶涵-还记得吗,http://em.21dtv.com/songs/60128006.mkv +张韶涵-还记得吗,http://em.21dtv.com/songs/60126907.mkv +曹轩宾-还记得吗,http://em.21dtv.com/songs/60093734.mkv +茶季杨-回家的路,http://em.21dtv.com/songs/60135680.mkv +刘德华-回家的路(HD),http://em.21dtv.com/songs/60133406.mkv +Boxing 乐团-回家的路,http://em.21dtv.com/songs/60132056.mkv +山子华-回家的路,http://em.21dtv.com/songs/60129021.mkv +秦勇-回家的路,http://em.21dtv.com/songs/60119853.mkv +可奇-回家的路,http://em.21dtv.com/songs/60119334.mkv +刘德华-回家的路,http://em.21dtv.com/songs/60115720.mkv +杨梓文祺-回家的路,http://em.21dtv.com/songs/60110296.mkv +刘德华-回家的路,http://em.21dtv.com/songs/60109180.mkv +刘德华-回家的路,http://em.21dtv.com/songs/60108339.mkv +阿香-回家的路,http://em.21dtv.com/songs/60103656.mkv +尹熙水+曾一鸣+金贵晟-回家的路,http://em.21dtv.com/songs/60096258.mkv +沐儿-回家的路,http://em.21dtv.com/songs/60093650.mkv +褚乔-回家的路,http://em.21dtv.com/songs/60086613.mkv +李春波-回家的路,http://em.21dtv.com/songs/60070779.mkv +刘旗-回家的路,http://em.21dtv.com/songs/60062673.mkv +莫文蔚-回家的路,http://em.21dtv.com/songs/60022118.mkv +蔡淳佳-回家的路,http://em.21dtv.com/songs/60022117.mkv +唐伯虎-回家的风,http://em.21dtv.com/songs/60123778.mkv +张津涤+孙艺琪-黄金搭档,http://em.21dtv.com/songs/60129101.mkv +王丽玲金仙+曾国城-黄金传奇(无原唱),http://em.21dtv.com/songs/60081445.mkv +群星-黄金传奇(无原唱),http://em.21dtv.com/songs/60021971.mkv +雷蕾-回家吃饭,http://em.21dtv.com/songs/60101715.mkv +庞龙-回家吃饭,http://em.21dtv.com/songs/60022116.mkv +孔雀哥哥-化茧成蝶,http://em.21dtv.com/songs/60106760.mkv +杜德伟-黄金比例,http://em.21dtv.com/songs/60021970.mkv +童话里不是骗人的-好久不见,http://em.21dtv.com/songs/60128282.mkv +唐嫣-好久不见,http://em.21dtv.com/songs/60107613.mkv +张曼-好久不见,http://em.21dtv.com/songs/60106844.mkv +James-好久不见,http://em.21dtv.com/songs/60104690.mkv +陈奕夫-好久不见,http://em.21dtv.com/songs/60102877.mkv +蔡依林-好久不见,http://em.21dtv.com/songs/60100447.mkv +杨永聪-好久不见,http://em.21dtv.com/songs/60094948.mkv +彭佳慧-好久不见,http://em.21dtv.com/songs/60086583.mkv +黄韵玲-好久不见,http://em.21dtv.com/songs/60070730.mkv +周杰伦-好久不见,http://em.21dtv.com/songs/60020059.mkv +张学友-好久不见,http://em.21dtv.com/songs/60020058.mkv +黄凯芹-好久不见,http://em.21dtv.com/songs/60020057.mkv +陈奕迅-好久不见,http://em.21dtv.com/songs/60020056.mkv +5566-好久不见,http://em.21dtv.com/songs/60020055.mkv +佚名-好久不见(无原唱),http://em.21dtv.com/songs/60020054.mkv +李克勤-合久必婚,http://em.21dtv.com/songs/60020312.mkv +李克勤+陈苑琪-合久必婚,http://em.21dtv.com/songs/60020311.mkv +张崇基+张崇德-合久必婚(演唱会),http://em.21dtv.com/songs/60020310.mkv +谭咏麟+李克勤-合久必婚(演唱会),http://em.21dtv.com/songs/60020309.mkv +李克勤-合久必婚(演唱会),http://em.21dtv.com/songs/60020308.mkv +佚名-heaven in your eyes,http://em.21dtv.com/songs/60002159.mkv +SUGARBABES-hole in the head,http://em.21dtv.com/songs/60002301.mkv +4MEN-hello its me,http://em.21dtv.com/songs/60073318.mkv +十二星宿 风之少年-Hi 亲,http://em.21dtv.com/songs/60131222.mkv +ALANIS MORISSETTE-hand in my pocket,http://em.21dtv.com/songs/60066646.mkv +佚名-here in my heart,http://em.21dtv.com/songs/60002209.mkv +黄小琥-换回自由,http://em.21dtv.com/songs/60021834.mkv +程飞鸣-好好珍惜,http://em.21dtv.com/songs/60101151.mkv +陈雷-好好做人,http://em.21dtv.com/songs/60020042.mkv +涣米-洪荒之力,http://em.21dtv.com/songs/60127175.mkv +洪荒少男-洪荒之力,http://em.21dtv.com/songs/60125872.mkv +张燕清+陈淑萍-黄昏之恋,http://em.21dtv.com/songs/60028201.mkv +秀兰玛雅+陈冠霖-黄昏之恋,http://em.21dtv.com/songs/60021969.mkv +杨培安-黄河长江,http://em.21dtv.com/songs/60080031.mkv +佚名-还会再见,http://em.21dtv.com/songs/60019578.mkv +佚名-黄昏再会,http://em.21dtv.com/songs/60021968.mkv +杨子军-辉煌之歌,http://em.21dtv.com/songs/60133838.mkv +佚名-黄河震鼓,http://em.21dtv.com/songs/60021919.mkv +B.A.D-皇后之歌(演唱会),http://em.21dtv.com/songs/60021886.mkv +陈慧琳-花花宇宙(HD),http://em.21dtv.com/songs/10012546.mkv +草蜢-花花宇宙(演唱会),http://em.21dtv.com/songs/60075840.mkv +郑秀文-花花宇宙,http://em.21dtv.com/songs/60021395.mkv +陈慧琳-花花宇宙,http://em.21dtv.com/songs/60021394.mkv +陈慧琳-花花宇宙(演唱会),http://em.21dtv.com/songs/60021393.mkv +刁寒+张行-花好月圆,http://em.21dtv.com/songs/60133397.mkv +费玉清-花好月圆,http://em.21dtv.com/songs/60127422.mkv +迪克牛仔-花好月圆,http://em.21dtv.com/songs/60083062.mkv +许嵩-晃晃悠悠,http://em.21dtv.com/songs/60022008.mkv +于文华-花好月圆,http://em.21dtv.com/songs/60021371.mkv +佚名-花好月圆,http://em.21dtv.com/songs/60021370.mkv +李连成+黄笑颜-花好月圆,http://em.21dtv.com/songs/60021369.mkv +刁寒-花好月圆,http://em.21dtv.com/songs/60021368.mkv +徐小凤-花好月圆(演唱会),http://em.21dtv.com/songs/60021367.mkv +刘文正-挥挥衣袖,http://em.21dtv.com/songs/60089166.mkv +佚名-挥挥衣袖(无原唱),http://em.21dtv.com/songs/60022060.mkv +海生-狠狠遗忘,http://em.21dtv.com/songs/60117896.mkv +国巍-后悔已晚,http://em.21dtv.com/songs/60068324.mkv +吴梵-皇后与我,http://em.21dtv.com/songs/60021885.mkv +张迈-黄河源头,http://em.21dtv.com/songs/60021915.mkv +张迈-黄河源头(演唱会),http://em.21dtv.com/songs/60021914.mkv +韩晓辉-后会有期,http://em.21dtv.com/songs/60116365.mkv +伊琳-后会有期,http://em.21dtv.com/songs/60021101.mkv +[Group] +groupName=十六万歌曲MV等 - 44 +吸引力合唱团-后会有期,http://em.21dtv.com/songs/60021100.mkv +李克勤-后会有期,http://em.21dtv.com/songs/60021099.mkv +吴淑敏-后会有期(无原唱),http://em.21dtv.com/songs/60021098.mkv +高向鹏+邱淑君-后会有期(无原唱),http://em.21dtv.com/songs/60021097.mkv +张曼-黄河渔娘,http://em.21dtv.com/songs/60106852.mkv +施文彬-黄昏野鸟,http://em.21dtv.com/songs/60095578.mkv +彭丽媛-黄河渔娘,http://em.21dtv.com/songs/60021912.mkv +刘忻-还好遇见,http://em.21dtv.com/songs/60123676.mkv +钟舒漫-好好拥抱,http://em.21dtv.com/songs/60020040.mkv +黄大炜-黄海血战,http://em.21dtv.com/songs/60021895.mkv +郭芳芳-欢欢喜喜,http://em.21dtv.com/songs/60108066.mkv +张琛-欢欢喜喜,http://em.21dtv.com/songs/60087831.mkv +保定张洋-还会想你,http://em.21dtv.com/songs/60062228.mkv +琪淇姐妹-黄河小米,http://em.21dtv.com/songs/60125968.mkv +焦洋-好好幸福,http://em.21dtv.com/songs/60107044.mkv +嘉布洛绒+千玖-嘿好兄弟,http://em.21dtv.com/songs/60064297.mkv +张琍敏-黄昏小唱,http://em.21dtv.com/songs/60021964.mkv +佚名-黄昏小唱,http://em.21dtv.com/songs/60021963.mkv +韩宝仪-黄昏小唱,http://em.21dtv.com/songs/60021962.mkv +澎恰恰-红花袜香,http://em.21dtv.com/songs/60020869.mkv +江蕙-红花袜香,http://em.21dtv.com/songs/60020868.mkv +张姝-后会无期,http://em.21dtv.com/songs/60121650.mkv +孙露-后会无期,http://em.21dtv.com/songs/60115809.mkv +C ALLSTAR+梁咏琪-后会无期,http://em.21dtv.com/songs/60115571.mkv +张碧晨-后会无期,http://em.21dtv.com/songs/60105051.mkv +邓紫棋-后会无期,http://em.21dtv.com/songs/60102779.mkv +徐良+汪苏泷-后会无期,http://em.21dtv.com/songs/60064312.mkv +群星-呵护蔚蓝,http://em.21dtv.com/songs/60115336.mkv +花世纪-黑红条纹,http://em.21dtv.com/songs/60112169.mkv +齐秦-海和天空,http://em.21dtv.com/songs/60019732.mkv +佚名-hell have to go,http://em.21dtv.com/songs/60002167.mkv +糜先生-黄昏市长,http://em.21dtv.com/songs/60079964.mkv +李克勤-护花使者,http://em.21dtv.com/songs/60021301.mkv +谭咏麟+李克勤-护花使者(演唱会),http://em.21dtv.com/songs/60021300.mkv +李克勤-护花使者(演唱会),http://em.21dtv.com/songs/60021299.mkv +佚名-黄昏思乡,http://em.21dtv.com/songs/60021960.mkv +欧汉声-皇后杀手,http://em.21dtv.com/songs/60097353.mkv +群星-豪华盛世,http://em.21dtv.com/songs/60093048.mkv +阿吉仔-黄昏思情,http://em.21dtv.com/songs/60021959.mkv +李昊城-洪荒少年,http://em.21dtv.com/songs/60130422.mkv +原子霏-花花世界,http://em.21dtv.com/songs/60130164.mkv +叶德娴-红红丝巾,http://em.21dtv.com/songs/60092431.mkv +张贤赫-花花世界,http://em.21dtv.com/songs/60085205.mkv +刘忻-花花世界,http://em.21dtv.com/songs/60081793.mkv +田馥甄-花花世界,http://em.21dtv.com/songs/60075839.mkv +李圣杰-花花世界,http://em.21dtv.com/songs/60075838.mkv +佚名-花花世界,http://em.21dtv.com/songs/60021392.mkv +刘德华-花花世界,http://em.21dtv.com/songs/60021391.mkv +陈奕迅-花花世界,http://em.21dtv.com/songs/60021390.mkv +刘德华-花花世界(演唱会),http://em.21dtv.com/songs/60021389.mkv +谢霆锋-好好世界,http://em.21dtv.com/songs/60020037.mkv +苏玮-黄河水车,http://em.21dtv.com/songs/60108850.mkv +陈盈洁-海海人生,http://em.21dtv.com/songs/60134415.mkv +群星-嗨嗨人生,http://em.21dtv.com/songs/60097460.mkv +王杰-海海人生(演唱会),http://em.21dtv.com/songs/60069442.mkv +MC HOTDOG-嗨嗨人生,http://em.21dtv.com/songs/60068301.mkv +MC HOTDOG+张震岳+关颖-嗨嗨人生,http://em.21dtv.com/songs/60068300.mkv +陈盈洁-海海人生,http://em.21dtv.com/songs/60019731.mkv +陈淑萍-海海人生,http://em.21dtv.com/songs/60019730.mkv +陈雷-海海人生,http://em.21dtv.com/songs/60019729.mkv +小凤凤-红花青叶,http://em.21dtv.com/songs/60020867.mkv +黄小菁+洪文斌-红花青叶,http://em.21dtv.com/songs/60020866.mkv +白冰冰+黄西田-红花青叶,http://em.21dtv.com/songs/60020865.mkv +闪亮三姐妹-皇后骑士,http://em.21dtv.com/songs/60021883.mkv +侯丽娟-黄河亲娘,http://em.21dtv.com/songs/60131178.mkv +韩磊-浩浩乾坤,http://em.21dtv.com/songs/60020278.mkv +蒋旭-红火情歌,http://em.21dtv.com/songs/60114022.mkv +张家成-红火情歌,http://em.21dtv.com/songs/60113461.mkv +SHINE+卢凯彤-呼喊青春,http://em.21dtv.com/songs/60075813.mkv +庞静-好好去爱,http://em.21dtv.com/songs/60067060.mkv +张志林-好好朋友,http://em.21dtv.com/songs/60020036.mkv +罗永娟-好好努力,http://em.21dtv.com/songs/60020035.mkv +刘超华-火红年代(演唱会),http://em.21dtv.com/songs/60075944.mkv +吴忠明+叶玮庭-花很迷惘,http://em.21dtv.com/songs/60021376.mkv +科尔沁-黄河母亲,http://em.21dtv.com/songs/60131708.mkv +张美晨-和和美美,http://em.21dtv.com/songs/60127995.mkv +李玉和-和和美美,http://em.21dtv.com/songs/60064288.mkv +孙维良-黄河妈妈,http://em.21dtv.com/songs/60021903.mkv +吴佩娜-呼唤绿色,http://em.21dtv.com/songs/60111751.mkv +邱芸子-红花露水(无原唱),http://em.21dtv.com/songs/60020864.mkv +陈司翰-挥霍浪漫,http://em.21dtv.com/songs/60022062.mkv +雷竟-黄昏来临,http://em.21dtv.com/songs/60021955.mkv +罗俊霖-浣花离愁,http://em.21dtv.com/songs/60021848.mkv +徐婕儿-后悔了吧,http://em.21dtv.com/songs/60021094.mkv +方力申-好好恋爱,http://em.21dtv.com/songs/60020034.mkv +方力申+邓丽欣-好好恋爱,http://em.21dtv.com/songs/60020033.mkv +方力申+邓丽欣-好好恋爱(演唱会),http://em.21dtv.com/songs/60020032.mkv +张嘉洵-好好看你,http://em.21dtv.com/songs/60020031.mkv +张清芳-呼喊快乐(演唱会),http://em.21dtv.com/songs/60021147.mkv +何润东+景甜-好好就好,http://em.21dtv.com/songs/60020030.mkv +野乐男孩-Hip Hop经过,http://em.21dtv.com/songs/60080332.mkv +华生-好好活着,http://em.21dtv.com/songs/60085170.mkv +于凤翔-好好活着,http://em.21dtv.com/songs/60020029.mkv +毛阿敏+禹胧-红花红颜,http://em.21dtv.com/songs/60102433.mkv +杨洋+禹胧-红花红颜,http://em.21dtv.com/songs/60020860.mkv +群星-火红火热,http://em.21dtv.com/songs/60022426.mkv +耿为华-黄河壶口,http://em.21dtv.com/songs/60097415.mkv +吉祥-红红火火,http://em.21dtv.com/songs/60116627.mkv +何军-红红火火,http://em.21dtv.com/songs/60107493.mkv +姬长乐-红红火火,http://em.21dtv.com/songs/60103194.mkv +高凌风-还好还好,http://em.21dtv.com/songs/60061264.mkv +尹光-花花公子(演唱会),http://em.21dtv.com/songs/60075837.mkv +汪涵-花花公子,http://em.21dtv.com/songs/60021388.mkv +罗百吉+宝贝-花花公子,http://em.21dtv.com/songs/60021387.mkv +张学友-花花公子(演唱会),http://em.21dtv.com/songs/60021386.mkv +陈红-好好工作,http://em.21dtv.com/songs/60020026.mkv +佚名-黄河古谣,http://em.21dtv.com/songs/60021901.mkv +王宏伟-花花尕妹(演唱会),http://em.21dtv.com/songs/60021385.mkv +江蕙-黄昏孤灯,http://em.21dtv.com/songs/60021954.mkv +马忠伟-好好过吧,http://em.21dtv.com/songs/60129801.mkv +零点乐队-好好过吧,http://em.21dtv.com/songs/60020027.mkv +阎飞翔-黄昏放牛,http://em.21dtv.com/songs/60114850.mkv +谭锡禧+吕珊-黄昏放牛(演唱会),http://em.21dtv.com/songs/60083080.mkv +徐小凤-黄昏放牛,http://em.21dtv.com/songs/60021953.mkv +毛宁-黄昏放牛(演唱会),http://em.21dtv.com/songs/60021952.mkv +吕珊-黄昏放牛(演唱会),http://em.21dtv.com/songs/60021951.mkv +云鸽李霞-槐花儿香,http://em.21dtv.com/songs/60096176.mkv +佚名-红红的缘,http://em.21dtv.com/songs/60020851.mkv +贝林成林江措-红红的缘,http://em.21dtv.com/songs/60020850.mkv +师红飞-悔恨的心,http://em.21dtv.com/songs/60117697.mkv +张宇-黄昏的心(无原唱),http://em.21dtv.com/songs/60021948.mkv +黄仲昆-黄河的水,http://em.21dtv.com/songs/60090336.mkv +佚名-黄河的水(无原唱),http://em.21dtv.com/songs/60021900.mkv +面具-好好对你,http://em.21dtv.com/songs/60098914.mkv +佚名-悔恨的泪,http://em.21dtv.com/songs/60022265.mkv +迟志强-悔恨的泪,http://em.21dtv.com/songs/60022264.mkv +陈淑萍-好花当开,http://em.21dtv.com/songs/60020046.mkv +蔡小虎+龙千玉-红红的酒,http://em.21dtv.com/songs/60020848.mkv +戴佩妮-好好的过,http://em.21dtv.com/songs/60091231.mkv +佚名-辉煌东方,http://em.21dtv.com/songs/60022071.mkv +达明一派-皇后大盗(演唱会),http://em.21dtv.com/songs/60021879.mkv +CT GIRLS-黄昏-迪版,http://em.21dtv.com/songs/60021949.mkv +葛维永-花花的爱,http://em.21dtv.com/songs/60107174.mkv +蓝琪儿-火火的爱,http://em.21dtv.com/songs/60064356.mkv +王菀之-皇后餐厅,http://em.21dtv.com/songs/60106140.mkv +汪明荃-欢呼春天,http://em.21dtv.com/songs/60092958.mkv +王菀之-皇后餐厅,http://em.21dtv.com/songs/60072037.mkv +容中尔甲-呼唤春天,http://em.21dtv.com/songs/60021153.mkv +王紫-韩惠传奇,http://em.21dtv.com/songs/60115305.mkv +张雨生+杨培安-黄河长江,http://em.21dtv.com/songs/60075899.mkv +佚名-好好把握,http://em.21dtv.com/songs/60020021.mkv +钟汉良-hello how are you,http://em.21dtv.com/songs/60002179.mkv +王识贤-憨憨啊笑,http://em.21dtv.com/songs/60019861.mkv +曹惠婷-好好爱我,http://em.21dtv.com/songs/60114576.mkv +刘虹桦-好好爱我,http://em.21dtv.com/songs/60020019.mkv +费翔-好好爱我,http://em.21dtv.com/songs/60020018.mkv +MON MON-好好爱我,http://em.21dtv.com/songs/60020017.mkv +洪禄云+枫舞-黄昏爱人,http://em.21dtv.com/songs/60085231.mkv +沈波-呼唤爱情,http://em.21dtv.com/songs/60117001.mkv +刘雨潼-好好爱你,http://em.21dtv.com/songs/60123693.mkv +陈泳泼-好好爱你,http://em.21dtv.com/songs/60115498.mkv +孟小童-好好爱你,http://em.21dtv.com/songs/60020016.mkv +佚名-海港之夜,http://em.21dtv.com/songs/60019727.mkv +彭高平-欢歌中华,http://em.21dtv.com/songs/60130347.mkv +高向鹏-火锅昔烙,http://em.21dtv.com/songs/60022423.mkv +李孝利-韩国小姐,http://em.21dtv.com/songs/60083002.mkv +才让洛桑-欢歌起舞,http://em.21dtv.com/songs/60126930.mkv +白致瑶-花鼓祈福,http://em.21dtv.com/songs/60117087.mkv +梁静茹-会过去的,http://em.21dtv.com/songs/60069482.mkv +许志安-会过去的,http://em.21dtv.com/songs/60022278.mkv +车婉婉+许志安-会过去的,http://em.21dtv.com/songs/60022277.mkv +李克勤+容祖儿-会过去的(演唱会),http://em.21dtv.com/songs/60022276.mkv +陈慧琳+许志安-会过去的(演唱会),http://em.21dtv.com/songs/60022275.mkv +周璇-红歌女忙,http://em.21dtv.com/songs/60020840.mkv +唐从圣-化骨绵掌,http://em.21dtv.com/songs/60105707.mkv +谢娜-化骨绵掌,http://em.21dtv.com/songs/60021595.mkv +欧豪-嘿 哥们儿,http://em.21dtv.com/songs/60100249.mkv +KENT-回归k pax星球,http://em.21dtv.com/songs/60087201.mkv +金池-好过纠缠,http://em.21dtv.com/songs/60121036.mkv +泳儿-很惯很懒,http://em.21dtv.com/songs/60070738.mkv +卢凯彤-活该活该,http://em.21dtv.com/songs/60070783.mkv +佚名-猴哥猴哥,http://em.21dtv.com/songs/60021071.mkv +尹相杰+于文华-憨哥哥哟,http://em.21dtv.com/songs/60019859.mkv +杨幂-还过得去,http://em.21dtv.com/songs/60064336.mkv +杨宗宪-行过的路,http://em.21dtv.com/songs/60046841.mkv +白云-happy 呷百二,http://em.21dtv.com/songs/60062218.mkv +刘浩龙-恢复自由,http://em.21dtv.com/songs/60022069.mkv +刘浩龙-恢复自由(演唱会),http://em.21dtv.com/songs/60022068.mkv +佚名-回复自我,http://em.21dtv.com/songs/60022101.mkv +蔡依林-黑发尤物,http://em.21dtv.com/songs/60020510.mkv +张洁-灰飞烟灭,http://em.21dtv.com/songs/60112680.mkv +许志安-灰飞烟灭,http://em.21dtv.com/songs/60022019.mkv +许志安-灰飞烟灭(演唱会),http://em.21dtv.com/songs/60022018.mkv +MATCHBOX TWENTY-how far weve come,http://em.21dtv.com/songs/60002373.mkv +云鸽李霞-鹤发童颜,http://em.21dtv.com/songs/60085183.mkv +张逸帆-汉服青史,http://em.21dtv.com/songs/60097209.mkv +郭宴-花房姑娘,http://em.21dtv.com/songs/60135832.mkv +瓜娃子-花房姑娘,http://em.21dtv.com/songs/60132749.mkv +吴亦凡-花房姑娘,http://em.21dtv.com/songs/60117611.mkv +韩磊-花房姑娘,http://em.21dtv.com/songs/60098927.mkv +沙宝亮+黄绮珊-花房姑娘,http://em.21dtv.com/songs/60098574.mkv +刘明辉-花房姑娘,http://em.21dtv.com/songs/60098147.mkv +萧敬腾+肖懿航-花房姑娘,http://em.21dtv.com/songs/60094674.mkv +魏玉诺+林志炫-花房姑娘,http://em.21dtv.com/songs/60081413.mkv +玩具船长+金贵晟+邓育彬+刘明辉-花房姑娘,http://em.21dtv.com/songs/60081170.mkv +魏语诺-花房姑娘,http://em.21dtv.com/songs/60070761.mkv +林志炫+魏雨诺-花房姑娘,http://em.21dtv.com/songs/60069476.mkv +林志炫-花房姑娘,http://em.21dtv.com/songs/60021360.mkv +崔健-花房姑娘,http://em.21dtv.com/songs/60021359.mkv +王菲-红粉菲菲,http://em.21dtv.com/songs/60093005.mkv +曾轶可-会飞的贼,http://em.21dtv.com/songs/60080350.mkv +张津涤-会飞的雨,http://em.21dtv.com/songs/60100024.mkv +CD.VOICE-回放的歌,http://em.21dtv.com/songs/60022100.mkv +刘欢-好风长吟,http://em.21dtv.com/songs/60019998.mkv +吴娜-和风处处,http://em.21dtv.com/songs/60075715.mkv +郑中基-黑风暴雨,http://em.21dtv.com/songs/60020512.mkv +汪佩蓉-红粉宝贝,http://em.21dtv.com/songs/60020835.mkv +易白-花儿又开,http://em.21dtv.com/songs/60064320.mkv +高隆-花儿又开,http://em.21dtv.com/songs/60021354.mkv +张智霖-HERO,http://em.21dtv.com/songs/60125507.mkv +安室奈美恵-Hero,http://em.21dtv.com/songs/60125410.mkv +SONAR POCKET-HERO,http://em.21dtv.com/songs/60120242.mkv +超级未来大乐队-Hero,http://em.21dtv.com/songs/60105403.mkv +全根和-Here,http://em.21dtv.com/songs/60134909.mkv +马忠伟-花儿妹妹,http://em.21dtv.com/songs/60129808.mkv +曾妮-花儿妹妹,http://em.21dtv.com/songs/60117782.mkv +黄雅莉+何洁-花儿开了,http://em.21dtv.com/songs/60021338.mkv +李春波-呼儿嘿呦,http://em.21dtv.com/songs/60088016.mkv +李春波-呼儿嘿哟,http://em.21dtv.com/songs/60021145.mkv +王文浩-花儿姑娘,http://em.21dtv.com/songs/60133985.mkv +桑丹-花儿姑娘,http://em.21dtv.com/songs/60021335.mkv +马上又+尹馨梓-蝴蝶自在,http://em.21dtv.com/songs/60075828.mkv +齐秦+齐豫-蝴蝶自在,http://em.21dtv.com/songs/60021273.mkv +何静+何彦霖-厚德载物,http://em.21dtv.com/songs/60134884.mkv +宋佳瑶-蝴蝶之吻,http://em.21dtv.com/songs/60113414.mkv +陈绮贞-花的姿态(演唱会),http://em.21dtv.com/songs/60021324.mkv +郑少秋-皇帝子孙,http://em.21dtv.com/songs/60093286.mkv +郑少秋-黄帝子孙,http://em.21dtv.com/songs/60021892.mkv +郑少秋-黄帝子孙(演唱会),http://em.21dtv.com/songs/60021890.mkv +张瀛仁+邱贤桂-花蝶之恋,http://em.21dtv.com/songs/60131414.mkv +张霖-化蝶之恋,http://em.21dtv.com/songs/60085211.mkv +蓝月心-红豆最红,http://em.21dtv.com/songs/60081334.mkv +守望-红豆最红,http://em.21dtv.com/songs/60075769.mkv +谭小利-红豆最红,http://em.21dtv.com/songs/60069462.mkv +邓海-华度之歌,http://em.21dtv.com/songs/60108032.mkv +刘玮-红盾之歌,http://em.21dtv.com/songs/60020833.mkv +蔡淳佳-回到最初,http://em.21dtv.com/songs/60080432.mkv +刘航-寒冬又雪,http://em.21dtv.com/songs/60119313.mkv +山野-荒度余生,http://em.21dtv.com/songs/60130275.mkv +疯子-海的忧伤,http://em.21dtv.com/songs/60082991.mkv +叮当-蝴蝶眼泪,http://em.21dtv.com/songs/60087512.mkv +林忆莲-回到原来,http://em.21dtv.com/songs/60022098.mkv +BEFOUR-how do you do,http://em.21dtv.com/songs/60082188.mkv +MOUTH+MCNEAL-how do you do,http://em.21dtv.com/songs/60002372.mkv +赵照-花的心跳,http://em.21dtv.com/songs/60124521.mkv +赵照-花的心跳,http://em.21dtv.com/songs/60123197.mkv +舒雅颂-红荳相思,http://em.21dtv.com/songs/60093071.mkv +陈浩德-红豆相思(演唱会),http://em.21dtv.com/songs/60075768.mkv +舒雅颂-红豆相思(演唱会),http://em.21dtv.com/songs/60061249.mkv +谭咏麟+陈慧娴-活得潇洒(无原唱),http://em.21dtv.com/songs/60022361.mkv +薛家燕-红豆相思,http://em.21dtv.com/songs/60020832.mkv +郭凤女-红豆相思,http://em.21dtv.com/songs/60020831.mkv +鲍翠薇-红豆相思,http://em.21dtv.com/songs/60020830.mkv +江美丽-花的心情(无原唱),http://em.21dtv.com/songs/60021322.mkv +马旭东-画地为牢,http://em.21dtv.com/songs/60107363.mkv +荒山亮-轰动武林,http://em.21dtv.com/songs/60075759.mkv +羽泉-画地为牢,http://em.21dtv.com/songs/60021607.mkv +羽泉-划地为牢,http://em.21dtv.com/songs/60021563.mkv +DAL SHABET-hate dont hate,http://em.21dtv.com/songs/60073308.mkv +佚名-红豆手镯(无原唱),http://em.21dtv.com/songs/60020828.mkv +龙飘飘-海的誓言,http://em.21dtv.com/songs/60082990.mkv +严爵-好的事情,http://em.21dtv.com/songs/60019990.mkv +EXO-M-蝴蝶少女,http://em.21dtv.com/songs/60083056.mkv +西域刀郎-还等什么,http://em.21dtv.com/songs/60088627.mkv +潘晓峰-还等什么,http://em.21dtv.com/songs/60019576.mkv +成云刚+徐海芳-蝴蝶神话,http://em.21dtv.com/songs/60086604.mkv +林峰-回到三国,http://em.21dtv.com/songs/60075911.mkv +周迅-活的色彩,http://em.21dtv.com/songs/60022364.mkv +杨宝心-海的情书,http://em.21dtv.com/songs/60129274.mkv +严爵-好的情人,http://em.21dtv.com/songs/60083004.mkv +庞龙-海的牵挂,http://em.21dtv.com/songs/60081958.mkv +情歌对唱-回到起点,http://em.21dtv.com/songs/60089305.mkv +连凯+李宛芸-回到起点,http://em.21dtv.com/songs/60022091.mkv +董贞-回到起点,http://em.21dtv.com/songs/60022090.mkv +佚名-红灯青灯,http://em.21dtv.com/songs/60020809.mkv +王程程-回到青春,http://em.21dtv.com/songs/60134000.mkv +游子组合-蝴蝶泉边,http://em.21dtv.com/songs/60107892.mkv +李丹阳+孔庆学-蝴蝶泉边,http://em.21dtv.com/songs/60106930.mkv +佚名-蝴蝶泉边,http://em.21dtv.com/songs/60021267.mkv +宋祖英+吕继宏-蝴蝶泉边,http://em.21dtv.com/songs/60021266.mkv +刘玉婉+吕继宏-蝴蝶泉边,http://em.21dtv.com/songs/60021265.mkv +黄雅莉-蝴蝶泉边,http://em.21dtv.com/songs/60021264.mkv +SNH48-回到那天(演),http://em.21dtv.com/songs/60099029.mkv +景志刚-黄帝内经,http://em.21dtv.com/songs/60104176.mkv +秀兰玛雅-蝴蝶弄花,http://em.21dtv.com/songs/60021263.mkv +刘小小-红豆南国,http://em.21dtv.com/songs/60104817.mkv +吕薇-海的女儿,http://em.21dtv.com/songs/60019714.mkv +蔡秋凤-好胆麦走,http://em.21dtv.com/songs/60105347.mkv +朱海君-海底摸针,http://em.21dtv.com/songs/60068303.mkv +豪记大对唱-海底摸针,http://em.21dtv.com/songs/60019716.mkv +佚名-红灯码头,http://em.21dtv.com/songs/60020807.mkv +陈一郎-红灯码头,http://em.21dtv.com/songs/60020806.mkv +陈一郎-红灯美人(演唱会),http://em.21dtv.com/songs/60020808.mkv +杨佳茜-蝴蝶妈妈,http://em.21dtv.com/songs/60068330.mkv +孙楠-活得美好,http://em.21dtv.com/songs/60022359.mkv +倪惠英+姚志强-胡地蛮歌,http://em.21dtv.com/songs/60021207.mkv +叶启田-蝴蝶梦飞,http://em.21dtv.com/songs/60021261.mkv +周子寒-蝴蝶落叶,http://em.21dtv.com/songs/60021258.mkv +熊宝贝乐团-环岛旅行,http://em.21dtv.com/songs/60021802.mkv +韩红-回到拉萨,http://em.21dtv.com/songs/60109016.mkv +黄绮珊+崔兰花+杨创-回到拉萨(最美和声)(现场版),http://em.21dtv.com/songs/60101010.mkv +阿鲁阿卓+程琳-回到拉萨,http://em.21dtv.com/songs/60098837.mkv +郁可唯+柯以敏+阿杜-回到拉萨,http://em.21dtv.com/songs/60083082.mkv +褚乔-回到拉萨,http://em.21dtv.com/songs/60069479.mkv +郑钧-回到拉萨,http://em.21dtv.com/songs/60022087.mkv +黄英-回到拉萨,http://em.21dtv.com/songs/60022086.mkv +陈玲玉-魂断蓝桥(2)(戏曲),http://em.21dtv.com/songs/60093488.mkv +陈玲玉-魂断蓝桥(1)(戏曲),http://em.21dtv.com/songs/60093487.mkv +黄妃-蝴蝶乱飞,http://em.21dtv.com/songs/60021257.mkv +陈文浩-红灯绿灯,http://em.21dtv.com/songs/60070748.mkv +TWINS-活动教学,http://em.21dtv.com/songs/60022365.mkv +胡力+阿龙正刚-回到家乡,http://em.21dtv.com/songs/60022085.mkv +王心凌-花的嫁纱,http://em.21dtv.com/songs/60021321.mkv +戏曲-红豆寄情,http://em.21dtv.com/songs/60092738.mkv +金子嫣-欢度佳节(无原唱),http://em.21dtv.com/songs/60021731.mkv +郑立影-海岛军花,http://em.21dtv.com/songs/60114823.mkv +黄妃-红灯酒馆,http://em.21dtv.com/songs/60020804.mkv +刘德华-活得精彩,http://em.21dtv.com/songs/60022358.mkv +佚名-how do i live,http://em.21dtv.com/songs/60002370.mkv +TRISHA-how do i live,http://em.21dtv.com/songs/60002369.mkv +LEANN RIMES-how do i live,http://em.21dtv.com/songs/60002368.mkv +MARIO-how do i breathe,http://em.21dtv.com/songs/60067910.mkv +亦薇-花的海洋,http://em.21dtv.com/songs/60083059.mkv +夏天Alex-患得患失,http://em.21dtv.com/songs/60127879.mkv +吕雯-患得患失,http://em.21dtv.com/songs/60097421.mkv +吴宗宪-患得患失,http://em.21dtv.com/songs/60021852.mkv +黄舒骏-何德何能,http://em.21dtv.com/songs/60020344.mkv +高天豹-邯郸邯郸,http://em.21dtv.com/songs/60111537.mkv +潘长江-火的故事,http://em.21dtv.com/songs/60090074.mkv +周杰伦-回到过去,http://em.21dtv.com/songs/60022084.mkv +张震岳+林芯仪-回到过去,http://em.21dtv.com/songs/60022083.mkv +野马-花灯姑娘,http://em.21dtv.com/songs/60085203.mkv +安东-蝴蝶姑娘,http://em.21dtv.com/songs/60062209.mkv +麦浚龙-荒岛隔岸,http://em.21dtv.com/songs/60021858.mkv +胡钰佳-蝴蝶飞呀,http://em.21dtv.com/songs/60118857.mkv +小虎队-蝴蝶飞呀,http://em.21dtv.com/songs/60115120.mkv +雷龙-胡蝶飞音,http://em.21dtv.com/songs/60088935.mkv +小虎队-蝴蝶飞呀,http://em.21dtv.com/songs/60021248.mkv +默契-蝴蝶飞飞,http://em.21dtv.com/songs/60099639.mkv +圆圆-蝴蝶飞飞,http://em.21dtv.com/songs/60085201.mkv +胡杰夕-蝴蝶飞飞,http://em.21dtv.com/songs/60075825.mkv +徐英恩-花的帝王,http://em.21dtv.com/songs/60070760.mkv +李岗霖-狐单东路,http://em.21dtv.com/songs/60021194.mkv +林良乐-好大的风(演唱会),http://em.21dtv.com/songs/60019981.mkv +后舍男生-海盗船长,http://em.21dtv.com/songs/60019713.mkv +洛奇-回到草原,http://em.21dtv.com/songs/60112827.mkv +彩贝与海-海的传说,http://em.21dtv.com/songs/60109348.mkv +洪立-回到从前,http://em.21dtv.com/songs/60064349.mkv +零点乐队-回到从前,http://em.21dtv.com/songs/60022081.mkv +谢军-回到初恋,http://em.21dtv.com/songs/60022080.mkv +王菲-红豆偿还,http://em.21dtv.com/songs/60088322.mkv +罗百吉-high到爆炸,http://em.21dtv.com/songs/60002271.mkv +储兰兰-海岛冰轮,http://em.21dtv.com/songs/60075642.mkv +邢磊-灰的白的,http://em.21dtv.com/songs/60097227.mkv +徐歌阳-横冲直撞,http://em.21dtv.com/songs/60126914.mkv +华晨宇-横冲直撞,http://em.21dtv.com/songs/60120382.mkv +刘伟-红尘之中,http://em.21dtv.com/songs/60113287.mkv +樊凡-横冲直撞,http://em.21dtv.com/songs/60020738.mkv +佚名-荒城之月(慢四),http://em.21dtv.com/songs/60021857.mkv +张倬闻+张颜-红尘之外,http://em.21dtv.com/songs/60132435.mkv +龙旭-红尘之恋,http://em.21dtv.com/songs/60122319.mkv +文龙+蒋珊蓓-红尘之恋,http://em.21dtv.com/songs/60094520.mkv +毕达-红尘之恋,http://em.21dtv.com/songs/60075766.mkv +宋雪莱-花城之恋,http://em.21dtv.com/songs/60021314.mkv +石雪峰+王馨-红尘知己,http://em.21dtv.com/songs/60102582.mkv +朱孝天-活出自己,http://em.21dtv.com/songs/60022352.mkv +钟镇涛-活出自己,http://em.21dtv.com/songs/60022351.mkv +谢安琪-后窗知己,http://em.21dtv.com/songs/60021075.mkv +安东阳+慕容晓晓-红尘有缘,http://em.21dtv.com/songs/60110150.mkv +红尘云烟-红尘云烟,http://em.21dtv.com/songs/60083041.mkv +李克勤-何尝愿意(无原唱),http://em.21dtv.com/songs/60020340.mkv +孟笑-红尘游侠,http://em.21dtv.com/songs/60121580.mkv +甄秀珍-红唇一生(无原唱),http://em.21dtv.com/songs/60020789.mkv +吴天-红尘有你,http://em.21dtv.com/songs/60118443.mkv +王杰-红尘有你,http://em.21dtv.com/songs/60020782.mkv +黄伟霖-红尘一梦,http://em.21dtv.com/songs/60122300.mkv +阿福-红尘幽梦,http://em.21dtv.com/songs/60020780.mkv +钟舒漫-红茶易冷,http://em.21dtv.com/songs/60020754.mkv +佚名-红尘有爱,http://em.21dtv.com/songs/60020781.mkv +佚名-红尘戏梦,http://em.21dtv.com/songs/60020777.mkv +杨捷-红尘戏梦,http://em.21dtv.com/songs/60020776.mkv +刘艺淼-红尘相恋,http://em.21dtv.com/songs/60133419.mkv +陈林波-红尘为谁,http://em.21dtv.com/songs/60131948.mkv +刘海辰-红尘无悔,http://em.21dtv.com/songs/60075765.mkv +熊天平-火柴天堂,http://em.21dtv.com/songs/60128193.mkv +孙楠-火柴天堂,http://em.21dtv.com/songs/60117660.mkv +李致贤+齐秦-火柴天堂,http://em.21dtv.com/songs/60104224.mkv +齐秦-火柴天堂,http://em.21dtv.com/songs/60103733.mkv +郑心慈-火柴天堂,http://em.21dtv.com/songs/60103620.mkv +俞佳-火柴天堂,http://em.21dtv.com/songs/60083093.mkv +钟嘉欣-火柴天堂,http://em.21dtv.com/songs/60022410.mkv +熊天平-火柴天堂,http://em.21dtv.com/songs/60022409.mkv +曾沛慈-火柴天堂,http://em.21dtv.com/songs/60022408.mkv +熊天平+动力火车-火柴天堂(演唱会),http://em.21dtv.com/songs/60022407.mkv +刘德华-红尘天使,http://em.21dtv.com/songs/60092359.mkv +THE BEATLES-here comes the sun,http://em.21dtv.com/songs/60002206.mkv +A1-here comes the rain,http://em.21dtv.com/songs/60002205.mkv +浩明+思小玥-红尘天地,http://em.21dtv.com/songs/60114655.mkv +安东阳-红尘私语,http://em.21dtv.com/songs/60128981.mkv +王莱+吴仪君-红尘岁月,http://em.21dtv.com/songs/60083040.mkv +谭咏麟-红尘岁月,http://em.21dtv.com/songs/60020775.mkv +孙富锦-红尘岁月,http://em.21dtv.com/songs/60020774.mkv +周迅-活出色彩,http://em.21dtv.com/songs/60022350.mkv +陈允弦-红尘如沙,http://em.21dtv.com/songs/60104544.mkv +李青+潘玉琳-红尘热恋,http://em.21dtv.com/songs/60094156.mkv +孙博+艺凡-红尘情缘,http://em.21dtv.com/songs/60116695.mkv +杨绣惠-欢唱恰恰,http://em.21dtv.com/songs/60085215.mkv +王觉-红尘情劫,http://em.21dtv.com/songs/60106144.mkv +郑东-红尘情歌,http://em.21dtv.com/songs/60118095.mkv +蒋姗倍-红尘情歌,http://em.21dtv.com/songs/60112936.mkv +郑源+蒋姗倍-红尘情歌,http://em.21dtv.com/songs/60106326.mkv +蒋姗倍+郑源-红尘情歌,http://em.21dtv.com/songs/60083039.mkv +孙露-红尘情歌,http://em.21dtv.com/songs/60075764.mkv +郑源+蒋珊蓓-红尘情歌,http://em.21dtv.com/songs/60067071.mkv +易帆-红尘情歌,http://em.21dtv.com/songs/60066026.mkv +蒋珊倍-红尘情歌,http://em.21dtv.com/songs/60064304.mkv +麦霸阿杜+朱敏-红尘情歌,http://em.21dtv.com/songs/60062750.mkv +张傲+黑鸭子-红尘情歌,http://em.21dtv.com/songs/60020772.mkv +高安-红尘情歌,http://em.21dtv.com/songs/60020771.mkv +高安+黑鸭子-红尘情歌,http://em.21dtv.com/songs/60020770.mkv +薛之谦-红尘女子,http://em.21dtv.com/songs/60068321.mkv +红蔷薇-红尘你我,http://em.21dtv.com/songs/60127267.mkv +阿牛-黑超女郎,http://em.21dtv.com/songs/60020507.mkv +姜玉阳-火柴女孩,http://em.21dtv.com/songs/60075940.mkv +佚名-恒春民谣,http://em.21dtv.com/songs/60020727.mkv +苏芮-红尘梦醒,http://em.21dtv.com/songs/60020769.mkv +豹小子-虹彩妹妹,http://em.21dtv.com/songs/60021052.mkv +刀郎-虹彩妹妹(演唱会),http://em.21dtv.com/songs/60021051.mkv +豹小子-虹彩妹妹(演唱会),http://em.21dtv.com/songs/60021050.mkv +童唱-虹彩妹妹(无原唱),http://em.21dtv.com/songs/60021049.mkv +尚雯婕-活出美丽,http://em.21dtv.com/songs/60072051.mkv +T.PETTY+M.CAMPBELL-here comes my girl(无原唱),http://em.21dtv.com/songs/60002203.mkv +陈岩+红蔷薇-红尘恋曲,http://em.21dtv.com/songs/60106395.mkv +红蔷薇+陈岩-红尘恋曲,http://em.21dtv.com/songs/60097260.mkv +甄妮-红唇绿酒(演唱会),http://em.21dtv.com/songs/60020788.mkv +张渼壹-红尘轮回,http://em.21dtv.com/songs/60064303.mkv +石雪峰+李倩-红尘恋歌,http://em.21dtv.com/songs/60128266.mkv +刘伟宏-红尘浪歌,http://em.21dtv.com/songs/60126630.mkv +雷恩-红茶绿茶,http://em.21dtv.com/songs/60070745.mkv +李幸倪+张旸-红尘客栈,http://em.21dtv.com/songs/60114603.mkv +周杰伦-红尘客栈,http://em.21dtv.com/songs/60070746.mkv +谢小雨+雨飞飞-红尘苦恋,http://em.21dtv.com/songs/60108008.mkv +齐秦-火车快开,http://em.21dtv.com/songs/60022416.mkv +邰正宵-火车快飞,http://em.21dtv.com/songs/60022415.mkv +M-TIFUL-how can i smile,http://em.21dtv.com/songs/60082187.mkv +佚名-how can i fall,http://em.21dtv.com/songs/60002354.mkv +佚名-how come how long,http://em.21dtv.com/songs/60002360.mkv +BABYFACE+STEVIE WOND-how come how long,http://em.21dtv.com/songs/60002359.mkv +佚名-红尘故事,http://em.21dtv.com/songs/60020759.mkv +张秀卿-恒春姑娘,http://em.21dtv.com/songs/60110209.mkv +范宏伟-红尘过客,http://em.21dtv.com/songs/60128351.mkv +郑晓填-红尘高跟,http://em.21dtv.com/songs/60108055.mkv +姚思思-红尘滚滚,http://em.21dtv.com/songs/60096235.mkv +李胜利-红尘浮云,http://em.21dtv.com/songs/60108579.mkv +草蜢-红唇的吻(演唱会),http://em.21dtv.com/songs/60020787.mkv +佚名-红唇的吻(无原唱),http://em.21dtv.com/songs/60020786.mkv +小筑-红尘等你,http://em.21dtv.com/songs/60115873.mkv +安东阳+时嘉-红尘蝶恋,http://em.21dtv.com/songs/60105766.mkv +王键+小魔女-红尘渡口,http://em.21dtv.com/songs/60109545.mkv +袁小迪-恒春的风,http://em.21dtv.com/songs/60020726.mkv +刘海辰-红尘传说,http://em.21dtv.com/songs/60075763.mkv +袁玉峰-红尘痴恋,http://em.21dtv.com/songs/60108883.mkv +黄耀明-画出彩虹,http://em.21dtv.com/songs/60093548.mkv +罗敏庄-画出彩虹(演唱会),http://em.21dtv.com/songs/60075860.mkv +RUBBER BAND-画出彩虹(演唱会),http://em.21dtv.com/songs/60061262.mkv +陈百强-画出彩虹,http://em.21dtv.com/songs/60021605.mkv +陈慧琳-画出彩虹(演唱会),http://em.21dtv.com/songs/60021604.mkv +黄耀明-划出彩虹,http://em.21dtv.com/songs/60021560.mkv +乔任梁-环城巴士,http://em.21dtv.com/songs/60126578.mkv +乔任梁-环城巴士,http://em.21dtv.com/songs/60119236.mkv +天籁天-红尘爱恋,http://em.21dtv.com/songs/60126753.mkv +陈一郎-行船阿郎(无原唱),http://em.21dtv.com/songs/60095973.mkv +陈美惠+雷龙-红尘爱恋,http://em.21dtv.com/songs/60072004.mkv +佚名-荒城の月,http://em.21dtv.com/songs/60021856.mkv +钟洁+CAROL琼-何必再忆,http://em.21dtv.com/songs/60075710.mkv +欢子-何必再拖,http://em.21dtv.com/songs/60083023.mkv +廖丽娜-海边追情(无原唱),http://em.21dtv.com/songs/60019701.mkv +戚薇+范逸臣-黑白之间,http://em.21dtv.com/songs/60061243.mkv +马健南-红包之歌,http://em.21dtv.com/songs/60120137.mkv +佚名-海滨之歌,http://em.21dtv.com/songs/60019703.mkv +佚名-海滨之歌(中三),http://em.21dtv.com/songs/60019702.mkv +龙梅子-hold不住的爱,http://em.21dtv.com/songs/60082181.mkv +浜崎あゆみ-how beautiful you are,http://em.21dtv.com/songs/60065609.mkv +比莉-滑步向左,http://em.21dtv.com/songs/60021585.mkv +KCM-黑白写真,http://em.21dtv.com/songs/60020502.mkv +徐良-黑白相纸,http://em.21dtv.com/songs/60020501.mkv +少司命+灰原穷-黑白小巷,http://em.21dtv.com/songs/60069458.mkv +黄品源-狠不下心,http://em.21dtv.com/songs/60020677.mkv +黄品源-狠不下心(演唱会),http://em.21dtv.com/songs/60020676.mkv +胡拾梅-互不相欠,http://em.21dtv.com/songs/60118855.mkv +黄乙玲-何必想起,http://em.21dtv.com/songs/60020333.mkv +佩希-海边戏浪,http://em.21dtv.com/songs/60120316.mkv +佚名-何必相逢,http://em.21dtv.com/songs/60020332.mkv +越剧-湖滨惜别,http://em.21dtv.com/songs/60021225.mkv +佚名-holding back the years,http://em.21dtv.com/songs/60002298.mkv +小宇宙合唱团-happy birthday to you,http://em.21dtv.com/songs/60002064.mkv +思卫(Sway)-恨不痛快,http://em.21dtv.com/songs/60132483.mkv +林俊杰-何必逃避,http://em.21dtv.com/songs/60091432.mkv +逍遥香香-何必伤心,http://em.21dtv.com/songs/60132958.mkv +佚名-互表身世,http://em.21dtv.com/songs/60021296.mkv +吴亚玲+蒋建国-互表身世,http://em.21dtv.com/songs/60021295.mkv +NEIL SEDEKA-happy birthday sweet sixteen,http://em.21dtv.com/songs/60002063.mkv +汤晓菲-黑白世界,http://em.21dtv.com/songs/60085184.mkv +文远+夏川-海邦时代,http://em.21dtv.com/songs/60119599.mkv +紫薇-黑白时差,http://em.21dtv.com/songs/60075734.mkv +苏唯-何必认真,http://em.21dtv.com/songs/60114737.mkv +叶秉桓-好不容易,http://em.21dtv.com/songs/60120394.mkv +张靓颖-好不容易,http://em.21dtv.com/songs/60068309.mkv +方大同-好不容易,http://em.21dtv.com/songs/60019974.mkv +周珍珍-河北人家,http://em.21dtv.com/songs/60072000.mkv +贺一航-何必情深,http://em.21dtv.com/songs/60120954.mkv +程琳-海边情思,http://em.21dtv.com/songs/60019699.mkv +伍华-后备情人,http://em.21dtv.com/songs/60097241.mkv +胡清蓝-候补情人,http://em.21dtv.com/songs/60021124.mkv +张学友+潘玮柏+S.H.E-红遍全球,http://em.21dtv.com/songs/60020750.mkv +易欣-恨不起来,http://em.21dtv.com/songs/60118633.mkv +朴野-回不去了,http://em.21dtv.com/songs/60098435.mkv +糯米-候补情朗,http://em.21dtv.com/songs/60088399.mkv +信乐团-回不去了,http://em.21dtv.com/songs/60064347.mkv +糯米-候补情郎,http://em.21dtv.com/songs/60062792.mkv +佚名-海边情歌,http://em.21dtv.com/songs/60019698.mkv +刘美冰-好吧你走,http://em.21dtv.com/songs/60114431.mkv +周张弛+何泽胜+柳博-红包拿来,http://em.21dtv.com/songs/60064302.mkv +农夫+任贤齐-红包拿来,http://em.21dtv.com/songs/60020749.mkv +柯有伦-还不能哭,http://em.21dtv.com/songs/60019573.mkv +Popu Lady-花边女孩,http://em.21dtv.com/songs/60116468.mkv +刘一-回不了头,http://em.21dtv.com/songs/60022076.mkv +张韶涵-海宝来了(演唱会),http://em.21dtv.com/songs/60019693.mkv +小肥-话别离歌,http://em.21dtv.com/songs/60064330.mkv +林佳仪-何必可惜,http://em.21dtv.com/songs/60020322.mkv +SUPPER MOMENT-话别空气,http://em.21dtv.com/songs/60075864.mkv +卓依婷-挥别旧岁(无声),http://em.21dtv.com/songs/60089698.mkv +张学友-黑白画映,http://em.21dtv.com/songs/60020495.mkv +蓝喆-黑白画面,http://em.21dtv.com/songs/60020494.mkv +彩贝与海-海滨婚礼,http://em.21dtv.com/songs/60101637.mkv +阿雅-happy boy happy girl,http://em.21dtv.com/songs/60002070.mkv +卢凯彤-还不够远,http://em.21dtv.com/songs/60130144.mkv +S.H.E-河滨公园,http://em.21dtv.com/songs/60020456.mkv +蔡秋凤-红包歌星(无原唱),http://em.21dtv.com/songs/60020748.mkv +巫启贤-何必孤独(无原唱),http://em.21dtv.com/songs/60020320.mkv +成龙-何必烦恼,http://em.21dtv.com/songs/60091223.mkv +叶瑗菱-何必当真,http://em.21dtv.com/songs/60020318.mkv +严铮-黑白电影,http://em.21dtv.com/songs/60020493.mkv +莫艳琳-黑白电影,http://em.21dtv.com/songs/60020492.mkv +古巨基-何必打扰,http://em.21dtv.com/songs/60112559.mkv +赵真-何必当初,http://em.21dtv.com/songs/60088699.mkv +郑中基-悔不当初,http://em.21dtv.com/songs/60022262.mkv +王识贤-悔不当初,http://em.21dtv.com/songs/60022261.mkv +佚名-何必当初,http://em.21dtv.com/songs/60020317.mkv +叶倩文-海边独唱(演唱会),http://em.21dtv.com/songs/60019697.mkv +大哲-何必痴情,http://em.21dtv.com/songs/60020316.mkv +文夏-河边春梦,http://em.21dtv.com/songs/60020453.mkv +吴卓羲-黑白变奏,http://em.21dtv.com/songs/60020490.mkv +李蕙敏-横滨别恋,http://em.21dtv.com/songs/60020736.mkv +LIFEHOUSE-hanging by a moment,http://em.21dtv.com/songs/60002057.mkv +邵兵-和爱走散,http://em.21dtv.com/songs/60020402.mkv +李菓-还爱着你,http://em.21dtv.com/songs/60085219.mkv +华少翌-还爱着你,http://em.21dtv.com/songs/60075885.mkv +郭采洁-还爱着你,http://em.21dtv.com/songs/60068341.mkv +李果-还爱着你,http://em.21dtv.com/songs/60064335.mkv +苏醒-黑暗之光,http://em.21dtv.com/songs/60099460.mkv +雷光夏-黑暗之光,http://em.21dtv.com/songs/60020486.mkv +阿杜-惠安之春,http://em.21dtv.com/songs/60022303.mkv +AQUA-how are you doing,http://em.21dtv.com/songs/60082191.mkv +4Minute-Hate,http://em.21dtv.com/songs/60122326.mkv +4Minute-Hate,http://em.21dtv.com/songs/60119086.mkv +ENERGY-黑暗时期,http://em.21dtv.com/songs/60020485.mkv +童丽-寒傲似冰,http://em.21dtv.com/songs/60075661.mkv +佚名-寒傲似冰,http://em.21dtv.com/songs/60019898.mkv +蔡国权-寒傲似冰,http://em.21dtv.com/songs/60019897.mkv +林俊杰+阿信-黑暗骑士,http://em.21dtv.com/songs/60075731.mkv +2NE1-HAPPY,http://em.21dtv.com/songs/60098976.mkv +A Lin-Halo,http://em.21dtv.com/songs/60108200.mkv +Frank秋枫-Halo,http://em.21dtv.com/songs/60103773.mkv +高迪-黑暗萝莉,http://em.21dtv.com/songs/60134475.mkv +Mun Hyeong Seo-Half,http://em.21dtv.com/songs/60134768.mkv +SUPER GIRLS-话爱就爱,http://em.21dtv.com/songs/60075863.mkv +Little Mix+Sean Paul-Hair,http://em.21dtv.com/songs/60121279.mkv +陈势安-好爱好散,http://em.21dtv.com/songs/60128517.mkv +张信哲-还爱还爱,http://em.21dtv.com/songs/60106821.mkv +ALAN-惠みの雨,http://em.21dtv.com/songs/60022302.mkv +张惠妹-会いたい(无原唱),http://em.21dtv.com/songs/60022268.mkv +新垣结衣-うつし絵,http://em.21dtv.com/songs/60074221.mkv +王力宏-公转自转(HD),http://em.21dtv.com/songs/10012696.mkv +王力宏-公转自转,http://em.21dtv.com/songs/60018713.mkv +张星唯-个中滋味,http://em.21dtv.com/songs/60122728.mkv +张星唯-个中滋味,http://em.21dtv.com/songs/60114538.mkv +夜郎金鑫-古镇之恋,http://em.21dtv.com/songs/60107623.mkv +熊思嘉-广州之恋,http://em.21dtv.com/songs/60019346.mkv +何洁-广州之恋,http://em.21dtv.com/songs/60019345.mkv +车颐-鸽子之歌,http://em.21dtv.com/songs/60093232.mkv +回音哥-故作镇定,http://em.21dtv.com/songs/60075583.mkv +中孝介-各自远扬,http://em.21dtv.com/songs/60068273.mkv +徐彬-公主诱惑,http://em.21dtv.com/songs/60089883.mkv +真妮-跟着雨飞,http://em.21dtv.com/songs/60018664.mkv +尤小凤-搁醉一摆(无原唱),http://em.21dtv.com/songs/60048169.mkv +佚名-搁醉一摆,http://em.21dtv.com/songs/60018350.mkv +林美-搁醉一摆,http://em.21dtv.com/songs/60018349.mkv +祁隆-该怎样爱,http://em.21dtv.com/songs/60017826.mkv +傅振辉-搁再想你,http://em.21dtv.com/songs/60098117.mkv +张宇-高枕无忧,http://em.21dtv.com/songs/60018257.mkv +李克勤-公主太子,http://em.21dtv.com/songs/60018712.mkv +李克勤-公主太子(演唱会),http://em.21dtv.com/songs/60018711.mkv +苏打绿-各站停靠(演唱会),http://em.21dtv.com/songs/60075500.mkv +戴梅君-公主时代,http://em.21dtv.com/songs/60112710.mkv +叶文辉-怪在圣诞,http://em.21dtv.com/songs/60019189.mkv +刘纯如-甘之如贻(无原唱),http://em.21dtv.com/songs/60017898.mkv +高枫-公众人物,http://em.21dtv.com/songs/60081884.mkv +高枫-公众人物(演唱会),http://em.21dtv.com/songs/60018700.mkv +杨棋涵-公主日记,http://em.21dtv.com/songs/60018710.mkv +刘德华-鸽子情缘(演唱会),http://em.21dtv.com/songs/60018337.mkv +罗志祥-箇中强手,http://em.21dtv.com/songs/60088439.mkv +罗志祥-固中强手,http://em.21dtv.com/songs/60019022.mkv +罗志祥-个中强手,http://em.21dtv.com/songs/60018451.mkv +巩汉林+唐静-跟踪情侣,http://em.21dtv.com/songs/60089830.mkv +SNH48-公主披风,http://em.21dtv.com/songs/60127669.mkv +温瑞鸳-孤枕难眠(无原唱),http://em.21dtv.com/songs/60075218.mkv +苏晴-孤枕难眠,http://em.21dtv.com/songs/60065998.mkv +周华健-孤枕难眠,http://em.21dtv.com/songs/60018932.mkv +骆容溶-公主密令,http://em.21dtv.com/songs/60075530.mkv +陈雅森-该怎么过,http://em.21dtv.com/songs/60068265.mkv +孙子涵-该怎么办,http://em.21dtv.com/songs/60107652.mkv +林逸欣-公主没病,http://em.21dtv.com/songs/60069421.mkv +胜利-该怎么办,http://em.21dtv.com/songs/60017825.mkv +林淑蓉-搁醉落去,http://em.21dtv.com/songs/60018348.mkv +孟庭苇-故作浪漫,http://em.21dtv.com/songs/60019133.mkv +张也-贵州恋歌,http://em.21dtv.com/songs/60087788.mkv +谭咏麟-歌者恋歌,http://em.21dtv.com/songs/60018406.mkv +谭咏麟-歌者恋歌(演唱会),http://em.21dtv.com/songs/60018405.mkv +拾参乐团-嘎兹蕾蒂(无原唱),http://em.21dtv.com/songs/60017800.mkv +李卓庭-工作狂人,http://em.21dtv.com/songs/60018681.mkv +葛仲珊-跟着节奏,http://em.21dtv.com/songs/60108868.mkv +郝云-该装就装,http://em.21dtv.com/songs/60108060.mkv +伊扬-该做就做,http://em.21dtv.com/songs/60017829.mkv +范小倩-故作坚强,http://em.21dtv.com/songs/60120901.mkv +林海峰-公众假期,http://em.21dtv.com/songs/60018699.mkv +满江-各自寂寞,http://em.21dtv.com/songs/60018459.mkv +孙坚-公主驾到,http://em.21dtv.com/songs/60080254.mkv +徐世珍-各自回家(无原唱),http://em.21dtv.com/songs/60018458.mkv +梁晓+小胖-广州喝彩,http://em.21dtv.com/songs/60075607.mkv +梁雨恩-公主恭主,http://em.21dtv.com/songs/60116974.mkv +郑伊健-敢作敢为,http://em.21dtv.com/songs/60095226.mkv +郑源-歌中故事,http://em.21dtv.com/songs/60018408.mkv +张祥洪-各走各路,http://em.21dtv.com/songs/60082951.mkv +群星-敢做敢当,http://em.21dtv.com/songs/60061202.mkv +雷佳-贵州放歌(演唱会),http://em.21dtv.com/songs/60082987.mkv +海燕儿-刚滋儿来,http://em.21dtv.com/songs/60113816.mkv +张挥-广州的雪,http://em.21dtv.com/songs/60075606.mkv +佚名-公子多情,http://em.21dtv.com/songs/60018716.mkv +刘美君-公子多情,http://em.21dtv.com/songs/60018715.mkv +刘美君-公子多情(演唱会),http://em.21dtv.com/songs/60018714.mkv +杜青-该走的路,http://em.21dtv.com/songs/60124100.mkv +东方骏-广州大道,http://em.21dtv.com/songs/60019343.mkv +超级女声+总决选-观众点唱,http://em.21dtv.com/songs/60090229.mkv +宋祖英-古丈茶歌,http://em.21dtv.com/songs/60018997.mkv +k one-公主陛下,http://em.21dtv.com/songs/60109830.mkv +杨坤-过站不停,http://em.21dtv.com/songs/60064270.mkv +古巨基-公主病了,http://em.21dtv.com/songs/60018702.mkv +郑秀文-隔着玻璃,http://em.21dtv.com/songs/60018440.mkv +诚峰-各自安好,http://em.21dtv.com/songs/60127397.mkv +汉宇浩穹-古岳之西,http://em.21dtv.com/songs/60098547.mkv +纪绮昭-古韵筝声,http://em.21dtv.com/songs/60115327.mkv +陈汝佳-故园之恋(演唱会),http://em.21dtv.com/songs/60019132.mkv +雪莲-光影之间,http://em.21dtv.com/songs/60019325.mkv +佚名-高原之歌,http://em.21dtv.com/songs/60018255.mkv +韩磊-高原之巅,http://em.21dtv.com/songs/60133076.mkv +韩磊-高原之巅,http://em.21dtv.com/songs/60075474.mkv +田田-高原一夜,http://em.21dtv.com/songs/60123032.mkv +王柯心-过眼烟云,http://em.21dtv.com/songs/60119817.mkv +光光+CK-过眼云烟,http://em.21dtv.com/songs/60101914.mkv +王菲-过眼云烟,http://em.21dtv.com/songs/60019538.mkv +蛋堡-关于小熊,http://em.21dtv.com/songs/60019235.mkv +汤加丽-关于幸福,http://em.21dtv.com/songs/60082976.mkv +泽仁多吉+多杰邓珠-高原兄弟,http://em.21dtv.com/songs/60018254.mkv +周笔畅-关于我们,http://em.21dtv.com/songs/60111776.mkv +痞克四-关于我们,http://em.21dtv.com/songs/60019232.mkv +陶喆-关于陶喆,http://em.21dtv.com/songs/60019228.mkv +董俊-归园田居,http://em.21dtv.com/songs/60130709.mkv +林国荣-关于伤心(无原唱),http://em.21dtv.com/songs/60019227.mkv +谢佳佳-高原水乡,http://em.21dtv.com/songs/60018253.mkv +迪克牛仔+黄乙玲-甘有速配,http://em.21dtv.com/songs/60017880.mkv +苏有朋-关于四季,http://em.21dtv.com/songs/60066002.mkv +云丹久美-高原情思,http://em.21dtv.com/songs/60018251.mkv +李圣杰-关于情歌,http://em.21dtv.com/songs/60019226.mkv +佚名-高原情歌,http://em.21dtv.com/songs/60018250.mkv +张阳阳-关于青春,http://em.21dtv.com/songs/60105875.mkv +本兮+小伟-过眼飘散,http://em.21dtv.com/songs/60067047.mkv +李儁浩-归于平淡,http://em.21dtv.com/songs/60130409.mkv +伍佰-关于女人,http://em.21dtv.com/songs/60090583.mkv +陈升-关于男人,http://em.21dtv.com/songs/60086572.mkv +央金兰泽-高原女人,http://em.21dtv.com/songs/60018248.mkv +宋祖英-高原明珠,http://em.21dtv.com/songs/60018247.mkv +谭圳-古越楼台,http://em.21dtv.com/songs/60062980.mkv +天悦-古越龙山,http://em.21dtv.com/songs/60079996.mkv +蓝宇-哥有老婆,http://em.21dtv.com/songs/60069416.mkv +纪晓斌-哥有老婆,http://em.21dtv.com/songs/60067031.mkv +刘坤山-光影流年,http://em.21dtv.com/songs/60107520.mkv +黑豹乐队-孤焰烈火,http://em.21dtv.com/songs/60018928.mkv +苏勒亚其其格-高原恋歌,http://em.21dtv.com/songs/60113996.mkv +郭子-关于离别,http://em.21dtv.com/songs/60019222.mkv +何嘉莉-各有口味,http://em.21dtv.com/songs/60018456.mkv +俞隆华-甘愿看破(无原唱),http://em.21dtv.com/songs/60017892.mkv +雨儿-故园家山,http://em.21dtv.com/songs/60019131.mkv +风之琳-歌吟江南,http://em.21dtv.com/songs/60071951.mkv +张启辉-古邑河源,http://em.21dtv.com/songs/60100015.mkv +泽仁多吉-高原故乡,http://em.21dtv.com/songs/60018241.mkv +丽菲-高原姑娘,http://em.21dtv.com/songs/60075473.mkv +余翠之-各有各路,http://em.21dtv.com/songs/60092289.mkv +余翠芝-各有各路,http://em.21dtv.com/songs/60090619.mkv +佚名-各有各路,http://em.21dtv.com/songs/60018455.mkv +孙协志-甘愿孤单,http://em.21dtv.com/songs/60017891.mkv +沈文程-甘愿孤单,http://em.21dtv.com/songs/60017890.mkv +蔡秋凤-甘愿孤单,http://em.21dtv.com/songs/60017889.mkv +嘉布洛绒-高原儿女,http://em.21dtv.com/songs/60064223.mkv +邵大伦-古意的尪,http://em.21dtv.com/songs/60105420.mkv +阿文-孤影独醉,http://em.21dtv.com/songs/60106372.mkv +周国贤-告一段落,http://em.21dtv.com/songs/60092467.mkv +ELTON JOHN-goodbye yellow brick road,http://em.21dtv.com/songs/60001982.mkv +小曾-高原兵歌,http://em.21dtv.com/songs/60104081.mkv +林子娟-甘有爱阮,http://em.21dtv.com/songs/60017879.mkv +王程程-关于爱情,http://em.21dtv.com/songs/60133998.mkv +伍思凯+马玉芬-关于爱情,http://em.21dtv.com/songs/60019220.mkv +佚名-钢线之舞,http://em.21dtv.com/songs/60018163.mkv +周慧敏-钢线之舞(演唱会),http://em.21dtv.com/songs/60018162.mkv +孙伟-共享自然,http://em.21dtv.com/songs/60075546.mkv +龙千玉-故乡之恋,http://em.21dtv.com/songs/60086571.mkv +莫旭秋-故乡之歌(演唱会),http://em.21dtv.com/songs/60075582.mkv +林冲-故乡之歌(演唱会),http://em.21dtv.com/songs/60064259.mkv +佚名-故乡之歌,http://em.21dtv.com/songs/60019126.mkv +李茂山-故乡之歌,http://em.21dtv.com/songs/60019125.mkv +黄宇涛+冼子晴-感谢有你,http://em.21dtv.com/songs/60130931.mkv +谢莉婷-感谢有你,http://em.21dtv.com/songs/60124495.mkv +ZINAPUNX-感谢有你,http://em.21dtv.com/songs/60123574.mkv +Mc安宇泽-感谢有你,http://em.21dtv.com/songs/60119160.mkv +贺金-感谢有你,http://em.21dtv.com/songs/60115416.mkv +翁立友-感谢有你,http://em.21dtv.com/songs/60067025.mkv +澎恰恰-感谢有你,http://em.21dtv.com/songs/60018102.mkv +都市苍狼-感谢有你,http://em.21dtv.com/songs/60018101.mkv +易展-感谢月老,http://em.21dtv.com/songs/60097459.mkv +盛希-故乡月光,http://em.21dtv.com/songs/60132770.mkv +关心妍-关心心妍,http://em.21dtv.com/songs/60019215.mkv +关心妍-关心心妍(演唱会),http://em.21dtv.com/songs/60019214.mkv +单色凌-惯性想象,http://em.21dtv.com/songs/60102005.mkv +安俊豪-高下悬危,http://em.21dtv.com/songs/60128982.mkv +董文华-共享幸福,http://em.21dtv.com/songs/60018790.mkv +耿宁-感谢无情,http://em.21dtv.com/songs/60091889.mkv +刘颖-故乡探雨,http://em.21dtv.com/songs/60132258.mkv +廖昌永+刘颖-故乡探雨,http://em.21dtv.com/songs/60104104.mkv +廖昌永-故乡探雨(演唱会),http://em.21dtv.com/songs/60075578.mkv +高音-共享团圆,http://em.21dtv.com/songs/60070714.mkv +张大伟-故乡探雨,http://em.21dtv.com/songs/60064258.mkv +大辉-故乡天堂,http://em.21dtv.com/songs/60075579.mkv +翁立友+黄思婷-感谢天地,http://em.21dtv.com/songs/60075462.mkv +群星-归心似箭,http://em.21dtv.com/songs/60019384.mkv +孙悦+林依伦-感谢世界(演唱会),http://em.21dtv.com/songs/60018097.mkv +李健-故乡山川,http://em.21dtv.com/songs/60019120.mkv +雷婷-甘心情愿,http://em.21dtv.com/songs/60111515.mkv +金悦+李峰-甘心情愿,http://em.21dtv.com/songs/60017874.mkv +郭峰-甘心情愿(演唱会),http://em.21dtv.com/songs/60017873.mkv +戴玉强-故乡情思,http://em.21dtv.com/songs/60089314.mkv +倪宾-故乡情人(无原唱),http://em.21dtv.com/songs/60019119.mkv +陈思思-感谢亲人,http://em.21dtv.com/songs/60018096.mkv +刘孟哲-故乡情怀(演唱会),http://em.21dtv.com/songs/60086570.mkv +戴玉强-故乡情恩,http://em.21dtv.com/songs/60019118.mkv +徐子洺-故乡明月,http://em.21dtv.com/songs/60113520.mkv +多杰邓珠-故乡母亲,http://em.21dtv.com/songs/60080968.mkv +高安-感谢妈妈,http://em.21dtv.com/songs/60067023.mkv +鲁绒旦珠-故乡木里,http://em.21dtv.com/songs/60128623.mkv +彭丽媛-故乡恋情,http://em.21dtv.com/songs/60019110.mkv +刘媛媛-故乡陇南,http://em.21dtv.com/songs/60104816.mkv +姚燕-故乡恋歌,http://em.21dtv.com/songs/60119401.mkv +张祥洪-孤星寂月,http://em.21dtv.com/songs/60082965.mkv +廖昌永-感谢寂寞,http://em.21dtv.com/songs/60018083.mkv +陈晓东-高兴就好,http://em.21dtv.com/songs/60018237.mkv +陈歌华-共享和谐,http://em.21dtv.com/songs/60018789.mkv +刘嘉亮-感谢华健,http://em.21dtv.com/songs/60018082.mkv +SING女团-恭喜恭喜,http://em.21dtv.com/songs/60119186.mkv +唐嫣-恭喜恭喜,http://em.21dtv.com/songs/60099892.mkv +吴依琳-恭喜恭喜,http://em.21dtv.com/songs/60075537.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-恭喜恭喜,http://em.21dtv.com/songs/60075536.mkv +何泽胜-恭喜恭喜,http://em.21dtv.com/songs/60071957.mkv +钟镇涛+林志颖-恭喜恭喜,http://em.21dtv.com/songs/60018752.mkv +佚名-恭喜恭喜,http://em.21dtv.com/songs/60018751.mkv +吴文煜-恭喜恭喜,http://em.21dtv.com/songs/60018750.mkv +魏绮清-恭喜恭喜,http://em.21dtv.com/songs/60018749.mkv +水晶乐坊-恭喜恭喜,http://em.21dtv.com/songs/60018748.mkv +牛欣欣+柳博+魏依曼+周凯文-恭喜恭喜,http://em.21dtv.com/songs/60018747.mkv +孙悦-恭喜恭喜(演唱会),http://em.21dtv.com/songs/60018746.mkv +卫东-广西姑娘,http://em.21dtv.com/songs/60094015.mkv +吴雨霏-各行各路(演唱会),http://em.21dtv.com/songs/60018452.mkv +曾玮中+林孟宗+郭忠佑-恭喜发财,http://em.21dtv.com/songs/60131482.mkv +连锦雄-感谢发财,http://em.21dtv.com/songs/60081404.mkv +龚洁影-恭喜发财,http://em.21dtv.com/songs/60075535.mkv +佚名-恭禧发财,http://em.21dtv.com/songs/60018757.mkv +卓依婷-恭喜发财,http://em.21dtv.com/songs/60018743.mkv +张德兰-恭喜发财,http://em.21dtv.com/songs/60018742.mkv +于文华-恭喜发财,http://em.21dtv.com/songs/60018741.mkv +佚名-恭喜发财,http://em.21dtv.com/songs/60018740.mkv +群星-恭喜发财,http://em.21dtv.com/songs/60018739.mkv +牛欣欣+柳博+魏依曼+周凯文-恭喜发财,http://em.21dtv.com/songs/60018738.mkv +刘德华-恭喜发财,http://em.21dtv.com/songs/60018737.mkv +吴俊飞+徐小清-故乡的云,http://em.21dtv.com/songs/60110917.mkv +韩红-故乡的云,http://em.21dtv.com/songs/60109729.mkv +李丹阳-故乡的雨,http://em.21dtv.com/songs/60105132.mkv +陈羽凡+陈俊豪-故乡的云,http://em.21dtv.com/songs/60095147.mkv +李宇春-故乡的云,http://em.21dtv.com/songs/60089953.mkv +何洁-故乡的云,http://em.21dtv.com/songs/60087307.mkv +汤非-故乡的云,http://em.21dtv.com/songs/60081156.mkv +孙健-故乡的云,http://em.21dtv.com/songs/60075576.mkv +梦之旅-故乡的云(演唱会),http://em.21dtv.com/songs/60075575.mkv +陈浩德-故乡的雨(演唱会),http://em.21dtv.com/songs/60075574.mkv +西部牛仔-故乡的云,http://em.21dtv.com/songs/60071968.mkv +庄学忠-故乡的云,http://em.21dtv.com/songs/60019106.mkv +张行+文章-故乡的云,http://em.21dtv.com/songs/60019105.mkv +费翔-故乡的云,http://em.21dtv.com/songs/60019104.mkv +满文军+文章-故乡的云(演唱会),http://em.21dtv.com/songs/60019103.mkv +费翔-故乡的云(演唱会),http://em.21dtv.com/songs/60019102.mkv +罗时丰-故乡的月,http://em.21dtv.com/songs/60019100.mkv +李干慧-故乡的月,http://em.21dtv.com/songs/60019099.mkv +陈雷-故乡的月,http://em.21dtv.com/songs/60019098.mkv +薰妮-故乡的雨,http://em.21dtv.com/songs/60019097.mkv +张伟文-故乡的雨(演唱会),http://em.21dtv.com/songs/60019096.mkv +徐小凤-故乡的雨(演唱会),http://em.21dtv.com/songs/60019095.mkv +许怀造(阿宝)-故乡的味,http://em.21dtv.com/songs/60104430.mkv +罗时丰-故乡的我,http://em.21dtv.com/songs/60075573.mkv +巴图-故乡的土,http://em.21dtv.com/songs/60019089.mkv +仲佐-感性的人,http://em.21dtv.com/songs/60081271.mkv +于文华-故乡爹娘,http://em.21dtv.com/songs/60019107.mkv +钟欣桐-惯性冬眠,http://em.21dtv.com/songs/60075597.mkv +唐文娟-故乡大理,http://em.21dtv.com/songs/60133512.mkv +陈宏斌-故乡的路,http://em.21dtv.com/songs/60085151.mkv +黄露仪-归乡的路,http://em.21dtv.com/songs/60019383.mkv +孟庭苇-勾心斗角,http://em.21dtv.com/songs/60090940.mkv +潘安邦-故乡的歌,http://em.21dtv.com/songs/60088241.mkv +江蕙-故乡的歌,http://em.21dtv.com/songs/60019077.mkv +亚东-故乡德格,http://em.21dtv.com/songs/60019064.mkv +张明敏-故乡的风,http://em.21dtv.com/songs/60019075.mkv +木吉他-故乡的风,http://em.21dtv.com/songs/60019074.mkv +陈淑芳-故乡的风,http://em.21dtv.com/songs/60019073.mkv +殷秀梅-感谢大地,http://em.21dtv.com/songs/60067022.mkv +张蓉蓉+蔡义德-故乡的爱,http://em.21dtv.com/songs/60064256.mkv +张秀卿-故乡的爱,http://em.21dtv.com/songs/60019067.mkv +天边-故乡草原,http://em.21dtv.com/songs/60085150.mkv +阿鲁阿卓-感谢春天,http://em.21dtv.com/songs/60018081.mkv +蔡依林-惯性背叛,http://em.21dtv.com/songs/60019267.mkv +李佳薇-感谢爱人,http://em.21dtv.com/songs/60100118.mkv +次真降措-故乡阿妈,http://em.21dtv.com/songs/60019061.mkv +KISS-给我自由,http://em.21dtv.com/songs/60018594.mkv +尹光-滚王之王(演唱会),http://em.21dtv.com/songs/60075615.mkv +罗时丰-怪我自己,http://em.21dtv.com/songs/60019187.mkv +孜玛组合-跟我走吧,http://em.21dtv.com/songs/60121573.mkv +潘玮柏-跟我走吧,http://em.21dtv.com/songs/60018647.mkv +阿习-过往云烟,http://em.21dtv.com/songs/60094322.mkv +罗志祥-国王游戏,http://em.21dtv.com/songs/60019459.mkv +TWINS-高温瑜珈,http://em.21dtv.com/songs/60092228.mkv +余文乐-给我一杯,http://em.21dtv.com/songs/60018564.mkv +李湘-给我新鲜,http://em.21dtv.com/songs/60018562.mkv +任贤齐-给我幸福(演唱会),http://em.21dtv.com/songs/60018563.mkv +任真-跟我跳舞,http://em.21dtv.com/songs/60018638.mkv +丁菲飞-购物天堂,http://em.21dtv.com/songs/60018803.mkv +BEYOND-鼓舞太空,http://em.21dtv.com/songs/60092148.mkv +周国贤-go with the flow,http://em.21dtv.com/songs/60073262.mkv +小逸岑-怪我太蠢,http://em.21dtv.com/songs/60122685.mkv +杨千桦-歌舞升平,http://em.21dtv.com/songs/60092839.mkv +陈百潭-甘味人生,http://em.21dtv.com/songs/60123317.mkv +陈百潭-甘味人生,http://em.21dtv.com/songs/60114220.mkv +叶时伟-歌舞青春,http://em.21dtv.com/songs/60068271.mkv +谢安琪-高温派对(演唱会),http://em.21dtv.com/songs/60018235.mkv +BEYOND-高温派对(演唱会),http://em.21dtv.com/songs/60018234.mkv +林吉玲-过往暖风(无原唱),http://em.21dtv.com/songs/60019532.mkv +三娃子-给我力量,http://em.21dtv.com/songs/60127695.mkv +叶佩雯-给我空间,http://em.21dtv.com/songs/60018551.mkv +罗志强-过完今天,http://em.21dtv.com/songs/60062745.mkv +蔡枫华-高温境界(演唱会),http://em.21dtv.com/songs/60061208.mkv +杨坤-跟我回家,http://em.21dtv.com/songs/60129273.mkv +黄鹤翔-跟我回家,http://em.21dtv.com/songs/60018629.mkv +大嘴巴-国王皇后,http://em.21dtv.com/songs/60019458.mkv +吴秀波-给我感觉(HD),http://em.21dtv.com/songs/10012735.mkv +吴秀波-给我感觉,http://em.21dtv.com/songs/60102034.mkv +张惠妹-给我感觉,http://em.21dtv.com/songs/60018546.mkv +蔡黄汝-给我乖乖,http://em.21dtv.com/songs/60067032.mkv +DIDO-girl who got away,http://em.21dtv.com/songs/60073245.mkv +宝丽金-鼓舞飞扬(特别精彩版),http://em.21dtv.com/songs/60092513.mkv +群星-鼓舞飞扬,http://em.21dtv.com/songs/60019019.mkv +李玟-过完冬季,http://em.21dtv.com/songs/60019531.mkv +陈小春-该我的爱,http://em.21dtv.com/songs/60017821.mkv +多亮-跟我出走,http://em.21dtv.com/songs/60096231.mkv +ECHO-高温赤裸,http://em.21dtv.com/songs/60018233.mkv +董卿-跟我出发,http://em.21dtv.com/songs/60067034.mkv +丝袜小姐-国王操场,http://em.21dtv.com/songs/60019452.mkv +王鹏-给我翅膀,http://em.21dtv.com/songs/60135577.mkv +谯帆-给我翅膀,http://em.21dtv.com/songs/60118062.mkv +李志强-给我翅膀,http://em.21dtv.com/songs/60061212.mkv +李震-顾我半生,http://em.21dtv.com/songs/60105167.mkv +锦绣二重唱-给我爱情(无原唱),http://em.21dtv.com/songs/60018538.mkv +MISSEY ELLIOT-get ur freak on,http://em.21dtv.com/songs/60001863.mkv +张柏芝-改天再聊,http://em.21dtv.com/songs/60017850.mkv +许冠杰-跟她做个FRIEND,http://em.21dtv.com/songs/60093142.mkv +中央少年广播合唱团-共同长大,http://em.21dtv.com/songs/60075545.mkv +儿唱团-共同长大,http://em.21dtv.com/songs/60070713.mkv +林宥嘉-感同身受,http://em.21dtv.com/songs/60018070.mkv +童唱-龟兔赛跑,http://em.21dtv.com/songs/60019391.mkv +童唱-龟兔赛跑(无原唱),http://em.21dtv.com/songs/60019390.mkv +詹雅雯-过头思念,http://em.21dtv.com/songs/60019530.mkv +冯建宇-钢铁森林,http://em.21dtv.com/songs/60131192.mkv +徐清波-感叹人生,http://em.21dtv.com/songs/60117762.mkv +贾立怡-骨头日记,http://em.21dtv.com/songs/60019004.mkv +台湾女孩-共同朋友,http://em.21dtv.com/songs/60071960.mkv +PINK-get the party started,http://em.21dtv.com/songs/60001861.mkv +伍佰-钢铁男子(演唱会),http://em.21dtv.com/songs/60018154.mkv +云龙-故土难离,http://em.21dtv.com/songs/60069428.mkv +佚名-故土难离,http://em.21dtv.com/songs/60019049.mkv +吕继宏-国泰民安,http://em.21dtv.com/songs/60019449.mkv +佚名-getting to know you,http://em.21dtv.com/songs/60001868.mkv +妞妞-归途恨晚,http://em.21dtv.com/songs/60097198.mkv +王丽达-高天厚土,http://em.21dtv.com/songs/60071947.mkv +黄耀明-光天化日,http://em.21dtv.com/songs/60019316.mkv +古巨基-光天化日,http://em.21dtv.com/songs/60019315.mkv +施文彬-鬼调歌头,http://em.21dtv.com/songs/60107759.mkv +林正-罐头工厂,http://em.21dtv.com/songs/60135440.mkv +佚名-钢铁的心(无原唱),http://em.21dtv.com/songs/60018153.mkv +零点乐队-共同的家,http://em.21dtv.com/songs/60018783.mkv +古巨基-共同渡过,http://em.21dtv.com/songs/60134975.mkv +张国荣-共同渡过(演唱会),http://em.21dtv.com/songs/60018786.mkv +张蓉蓉-甘甜的爱,http://em.21dtv.com/songs/60123953.mkv +佚名-got to be real,http://em.21dtv.com/songs/60002002.mkv +ENERGY-got to be real(演唱会),http://em.21dtv.com/songs/60002001.mkv +UNCLE KRACKER-good to be me,http://em.21dtv.com/songs/60001964.mkv +邓紫棋-good to be bad,http://em.21dtv.com/songs/60001963.mkv +浩轩-隔世之吻,http://em.21dtv.com/songs/60085125.mkv +钟一宪+麦贝夷-勾手指尾,http://em.21dtv.com/songs/60064244.mkv +云泉法师-古刹钟声,http://em.21dtv.com/songs/60075566.mkv +轻音乐-歌声醉人,http://em.21dtv.com/songs/60090239.mkv +尧尧-跟随着你(无原唱),http://em.21dtv.com/songs/60018624.mkv +刘斌-隔世之恋,http://em.21dtv.com/songs/60018437.mkv +张新海-国寿之魂,http://em.21dtv.com/songs/60063404.mkv +王力宏-盖世英雄(HD),http://em.21dtv.com/songs/10012695.mkv +王力宏-盖世英雄,http://em.21dtv.com/songs/60017857.mkv +张清芳-故事远去,http://em.21dtv.com/songs/60019047.mkv +张智霖-孤身一个,http://em.21dtv.com/songs/60018919.mkv +王建杰-甘是缘份,http://em.21dtv.com/songs/60017868.mkv +小歆-格桑云朵,http://em.21dtv.com/songs/60096061.mkv +詹雅雯-歌声心影,http://em.21dtv.com/songs/60018392.mkv +林俊杰-故事细腻,http://em.21dtv.com/songs/60064254.mkv +袁树雄-国仕无双,http://em.21dtv.com/songs/60094292.mkv +李玉刚-国色天香,http://em.21dtv.com/songs/60097317.mkv +彭丽媛-国色天香,http://em.21dtv.com/songs/60019448.mkv +夏韶声-高速世界(演唱会),http://em.21dtv.com/songs/60018229.mkv +张柏芝-该是时候,http://em.21dtv.com/songs/60068264.mkv +群星-鼓声若响,http://em.21dtv.com/songs/60097454.mkv +新宝岛康乐队-鼓声若响,http://em.21dtv.com/songs/60019015.mkv +江蕙-鼓声若响,http://em.21dtv.com/songs/60019014.mkv +陈升+黄连煜-鼓声若响,http://em.21dtv.com/songs/60019013.mkv +张惠妹-鼓声若响(演唱会),http://em.21dtv.com/songs/60019012.mkv +张宇-拱手让他,http://em.21dtv.com/songs/60018759.mkv +雨禾-隔世情人,http://em.21dtv.com/songs/60065991.mkv +羽泉-隔世情人,http://em.21dtv.com/songs/60018436.mkv +张启靓-格桑情歌,http://em.21dtv.com/songs/60018428.mkv +春妹-高山情歌,http://em.21dtv.com/songs/60018222.mkv +林子祥-盖世男儿,http://em.21dtv.com/songs/60017856.mkv +陈盈洁-歌是恁的,http://em.21dtv.com/songs/60018397.mkv +欧得洋-该是你的,http://em.21dtv.com/songs/60017815.mkv +余天-高山慕情(无原唱),http://em.21dtv.com/songs/60018216.mkv +陈升+李昀喜-告诉妈妈,http://em.21dtv.com/songs/60018289.mkv +张善为-搞什么鬼,http://em.21dtv.com/songs/60018262.mkv +泽旺多吉-格桑美朵(演唱会),http://em.21dtv.com/songs/60018426.mkv +黄乙玲-歌声泪影,http://em.21dtv.com/songs/60050604.mkv +黄洋-高山流水,http://em.21dtv.com/songs/60121180.mkv +曲丹-高山流水,http://em.21dtv.com/songs/60018215.mkv +张红旗-甘肃恋曲,http://em.21dtv.com/songs/60112691.mkv +罗时丰-歌声恋情,http://em.21dtv.com/songs/60075498.mkv +佚名-歌声恋情,http://em.21dtv.com/songs/60018387.mkv +陈小云-歌声恋情,http://em.21dtv.com/songs/60018386.mkv +佚名-歌声恋情(演唱会),http://em.21dtv.com/songs/60018385.mkv +吕继宏-甘肃老家,http://em.21dtv.com/songs/60120402.mkv +彭高平-甘肃老家,http://em.21dtv.com/songs/60116827.mkv +改编对唱-甘肃老家,http://em.21dtv.com/songs/60105088.mkv +吕继宏-甘肃老家,http://em.21dtv.com/songs/60104875.mkv +樱花姐妹-更深路顶,http://em.21dtv.com/songs/60072389.mkv +樱花姐妹-更深路顶(无原唱),http://em.21dtv.com/songs/60018676.mkv +TWINS-高手看招,http://em.21dtv.com/songs/60018227.mkv +李玉萍-姑嫂看灯(无原唱),http://em.21dtv.com/songs/60018970.mkv +何一-古顺酒赋,http://em.21dtv.com/songs/60117545.mkv +王进-孤山宏翔,http://em.21dtv.com/songs/60135570.mkv +CLIFF RICHARD-goodbye sam hello samantha,http://em.21dtv.com/songs/60001979.mkv +柯有伦-故事画面,http://em.21dtv.com/songs/60094180.mkv +仁青-格桑花开,http://em.21dtv.com/songs/60062857.mkv +刘宗-格桑花开,http://em.21dtv.com/songs/60061211.mkv +容中尔甲-格桑花开,http://em.21dtv.com/songs/60018422.mkv +韩红-格桑花开,http://em.21dtv.com/songs/60018421.mkv +钟舒漫-高手过招,http://em.21dtv.com/songs/60018226.mkv +黄耀明-广深公路,http://em.21dtv.com/songs/60019340.mkv +黄耀明-广深公路(演唱会),http://em.21dtv.com/songs/60019339.mkv +侯旭-高速公路(演唱会),http://em.21dtv.com/songs/60018228.mkv +刘小慧-隔世感觉,http://em.21dtv.com/songs/60018433.mkv +陈堃古月-股市风云,http://em.21dtv.com/songs/60114198.mkv +莫文蔚-光速飞翔,http://em.21dtv.com/songs/60019314.mkv +容中尔甲-格萨尔王,http://em.21dtv.com/songs/60018419.mkv +三多+四多-该S的雾霾,http://em.21dtv.com/songs/60099060.mkv +戴玉强-告诉大海,http://em.21dtv.com/songs/60098395.mkv +林奕匡-高山低谷,http://em.21dtv.com/songs/60120662.mkv +郑秀文-高山低谷,http://em.21dtv.com/songs/60110584.mkv +林奕匡-高山低谷,http://em.21dtv.com/songs/60103391.mkv +杨杰荃-光速电车,http://em.21dtv.com/songs/60085156.mkv +阳逸晨&箱子君&季天-该死的爱,http://em.21dtv.com/songs/60133023.mkv +阳光天使-歌颂春天,http://em.21dtv.com/songs/60071950.mkv +刘昱贤-盖世传说,http://em.21dtv.com/songs/60131209.mkv +安崇艺-跟上潮流,http://em.21dtv.com/songs/60114495.mkv +孙中亮-割舍不下,http://em.21dtv.com/songs/60068270.mkv +许巍-故事步升,http://em.21dtv.com/songs/60088642.mkv +佚名-故事背后,http://em.21dtv.com/songs/60019030.mkv +文恩澄-怪兽爱侣,http://em.21dtv.com/songs/60063071.mkv +刘浩龙-光荣之家(演唱会),http://em.21dtv.com/songs/60019313.mkv +区瑞强-工人之歌,http://em.21dtv.com/songs/60092375.mkv +黄征-光荣绽放,http://em.21dtv.com/songs/60068292.mkv +夏天Alex-个人原因,http://em.21dtv.com/songs/60106736.mkv +谭晶-光荣宣言,http://em.21dtv.com/songs/60019311.mkv +阿沁-光荣时刻,http://em.21dtv.com/songs/60019310.mkv +施孝荣-归人沙城,http://em.21dtv.com/songs/60019379.mkv +吴进法-骨肉情深,http://em.21dtv.com/songs/60070718.mkv +毕书尽+李玉玺-GROW,http://em.21dtv.com/songs/60124182.mkv +张靓颖-个人秘密(演唱会),http://em.21dtv.com/songs/60018446.mkv +王雪-个人空间,http://em.21dtv.com/songs/60018445.mkv +曹格-Greatest Love Of All,http://em.21dtv.com/songs/60096328.mkv +李佳璐-感人的歌,http://em.21dtv.com/songs/60067020.mkv +接厚芳-国旗之恋,http://em.21dtv.com/songs/60086576.mkv +曲丹-国旗之恋,http://em.21dtv.com/songs/60019447.mkv +朱海君-感情用事,http://em.21dtv.com/songs/60125680.mkv +郑伊健-感情用事,http://em.21dtv.com/songs/60018055.mkv +张樊-高清一班,http://em.21dtv.com/songs/60109313.mkv +卫诗-感情需要,http://em.21dtv.com/songs/60130146.mkv +郑秀文-感情线上,http://em.21dtv.com/songs/60018053.mkv +郑秀文-感情线上(演唱会),http://em.21dtv.com/songs/60018052.mkv +曾春年-该清醒了,http://em.21dtv.com/songs/60112728.mkv +陈茂丰-感情问题,http://em.21dtv.com/songs/60111496.mkv +杨哲-感情世界,http://em.21dtv.com/songs/60018039.mkv +王菲-感情生活,http://em.21dtv.com/songs/60018038.mkv +王菲-感情生活(演唱会),http://em.21dtv.com/songs/60018037.mkv +吴昊-感情日记,http://em.21dtv.com/songs/60061204.mkv +戴辛尉-过期情雪,http://em.21dtv.com/songs/60019511.mkv +蒋芳-国旗飘扬,http://em.21dtv.com/songs/60069439.mkv +佚名-感情漂白,http://em.21dtv.com/songs/60018035.mkv +阎维文-钢枪玫瑰(演唱会),http://em.21dtv.com/songs/60064221.mkv +李玉刚-归去来兮(演唱会),http://em.21dtv.com/songs/60066005.mkv +李建复-归去来兮,http://em.21dtv.com/songs/60019377.mkv +吴淑敏-感情列车,http://em.21dtv.com/songs/60018028.mkv +潘越云-感情结冰,http://em.21dtv.com/songs/60018024.mkv +七郎-感情护照,http://em.21dtv.com/songs/60082938.mkv +徐若瑄-感情核心,http://em.21dtv.com/songs/60018020.mkv +谭咏麟-感情回归(演唱会),http://em.21dtv.com/songs/60018023.mkv +王登雄-过去干杯(无原唱),http://em.21dtv.com/songs/60019521.mkv +叶启田-感情的债,http://em.21dtv.com/songs/60075205.mkv +佚名-感情的债,http://em.21dtv.com/songs/60018011.mkv +赫拉含青-钢琴大师,http://em.21dtv.com/songs/60124513.mkv +康士坦的变化球Constant + Change-搁浅的人,http://em.21dtv.com/songs/60131386.mkv +张袁媛-过去的你,http://em.21dtv.com/songs/60075627.mkv +佚名-感情到老,http://em.21dtv.com/songs/60017999.mkv +陈百强-感情到老,http://em.21dtv.com/songs/60017998.mkv +陈清+胡红利-归去的巢,http://em.21dtv.com/songs/60067043.mkv +林峰-歌曲串烧,http://em.21dtv.com/songs/60092868.mkv +刘子伊-感情备胎,http://em.21dtv.com/songs/60070699.mkv +孙淑媚-感情变天,http://em.21dtv.com/songs/60017994.mkv +张宇-贵气逼人(演唱会),http://em.21dtv.com/songs/60019408.mkv +林忆莲-感情不老(演唱会),http://em.21dtv.com/songs/60017995.mkv +吴旻欣-过期不候,http://em.21dtv.com/songs/60135014.mkv +梅艳芳-感情包袱,http://em.21dtv.com/songs/60017991.mkv +可歆+群可-过期爱人,http://em.21dtv.com/songs/60099854.mkv +雨宗林-过期爱情,http://em.21dtv.com/songs/60094340.mkv +阿超-给亲爱的,http://em.21dtv.com/songs/60018519.mkv +郭绍成-公仆之路,http://em.21dtv.com/songs/60018693.mkv +阎维文-公仆之歌,http://em.21dtv.com/songs/60135870.mkv +张其萍-公仆之歌,http://em.21dtv.com/songs/60135194.mkv +孙莞-古朴小镇,http://em.21dtv.com/songs/60105754.mkv +樱桃帮-公平交易,http://em.21dtv.com/songs/60018691.mkv +樱桃帮-公平交易(演唱会),http://em.21dtv.com/songs/60018690.mkv +陈雷-公平对待(无原唱),http://em.21dtv.com/songs/60018689.mkv +U2-get on your boots,http://em.21dtv.com/songs/60001853.mkv +THE BLACK KEYS-gold on the ceiling,http://em.21dtv.com/songs/60073268.mkv +佚名-girl on the bus,http://em.21dtv.com/songs/60001879.mkv +符致逸-Good Morning Hard City,http://em.21dtv.com/songs/60100365.mkv +陈芳语-GOOD GIRL赶快爱,http://em.21dtv.com/songs/60084675.mkv +林熙-go on my way,http://em.21dtv.com/songs/60001928.mkv +KYLIE MINOGUE-get outta my way,http://em.21dtv.com/songs/60001856.mkv +佚名-gentle on my mind,http://em.21dtv.com/songs/60001841.mkv +KIIARA-GOLD,http://em.21dtv.com/songs/60129953.mkv +马睿菈-给你自由,http://em.21dtv.com/songs/60018515.mkv +李杰-给你自由,http://em.21dtv.com/songs/60018514.mkv +邓紫棋-光年之外,http://em.21dtv.com/songs/60135792.mkv +邓紫棋-光年之外,http://em.21dtv.com/songs/60134288.mkv +邓紫棋-光年之外,http://em.21dtv.com/songs/60131866.mkv +林忆莲-给你自己,http://em.21dtv.com/songs/60091456.mkv +周璇-歌女之歌,http://em.21dtv.com/songs/60018383.mkv +美黛-歌女之歌(无原唱),http://em.21dtv.com/songs/60018382.mkv +付笛声+任静-姑娘月亮,http://em.21dtv.com/songs/60018967.mkv +容祖儿-故弄玄虚,http://em.21dtv.com/songs/60092524.mkv +金志文-给你幸福,http://em.21dtv.com/songs/60129676.mkv +任贤齐-给你幸福,http://em.21dtv.com/songs/60018507.mkv +黄品源-孤鸟呷茶(无原唱),http://em.21dtv.com/songs/60018915.mkv +高峰-给你微笑,http://em.21dtv.com/songs/60088999.mkv +铁子-给你温柔,http://em.21dtv.com/songs/60120050.mkv +慕容晓晓-隔年桃花,http://em.21dtv.com/songs/60097453.mkv +何勇-姑娘漂亮(演唱会),http://em.21dtv.com/songs/60018950.mkv +潘安邦-给你女孩,http://em.21dtv.com/songs/60089409.mkv +罗文聪-归年落雪,http://em.21dtv.com/songs/60019372.mkv +佚名-给您留念(无原唱),http://em.21dtv.com/songs/60018516.mkv +黄凯芹-给你留念,http://em.21dtv.com/songs/60018502.mkv +黄凯芹-给你留恋,http://em.21dtv.com/songs/60093527.mkv +莫文蔚-姑娘酒窝(演唱会),http://em.21dtv.com/songs/60018945.mkv +JW-挂念好友,http://em.21dtv.com/songs/60019149.mkv +佚名-给你好看,http://em.21dtv.com/songs/60018500.mkv +小崔健-姑娘贵姓,http://em.21dtv.com/songs/60085140.mkv +杨朗朗-过年过年,http://em.21dtv.com/songs/60108607.mkv +胡斌-姑娘姑娘,http://em.21dtv.com/songs/60070715.mkv +于文博-孤男寡女,http://em.21dtv.com/songs/60018912.mkv +郑秀文-孤男寡女(演唱会),http://em.21dtv.com/songs/60018911.mkv +李逸-姑娘的心,http://em.21dtv.com/songs/60018943.mkv +邓紫棋-给你的歌,http://em.21dtv.com/songs/60126254.mkv +邓紫棋-给你的歌,http://em.21dtv.com/songs/60122162.mkv +杨果-给你的歌,http://em.21dtv.com/songs/60094170.mkv +青桂贤-给你的歌,http://em.21dtv.com/songs/60064237.mkv +关喆-给你的歌,http://em.21dtv.com/songs/60018497.mkv +ENERGY-给你的歌,http://em.21dtv.com/songs/60018496.mkv +周传雄-给你的歌(演唱会),http://em.21dtv.com/songs/60018495.mkv +佚名-给你呆呆,http://em.21dtv.com/songs/60018493.mkv +张卫健-给你的爱,http://em.21dtv.com/songs/60091056.mkv +舞曲-挂念初吻(古巴特),http://em.21dtv.com/songs/60090132.mkv +李嘉石-姑娘别走,http://em.21dtv.com/songs/60064246.mkv +牛小龙-姑娘别走,http://em.21dtv.com/songs/60018939.mkv +佚名-孤女悲歌(无原唱),http://em.21dtv.com/songs/60095410.mkv +李玖哲-给你抱抱,http://em.21dtv.com/songs/60018492.mkv +吴德华-姑娘阿妹,http://em.21dtv.com/songs/60018937.mkv +黑豹乐队-光芒之神,http://em.21dtv.com/songs/60019297.mkv +梁咏琪-高妹正传,http://em.21dtv.com/songs/60018212.mkv +梁咏琪-高妹正传(演唱会),http://em.21dtv.com/songs/60018211.mkv +新宝岛康乐队-光明戏院,http://em.21dtv.com/songs/60071972.mkv +孙露-鬼迷心窍,http://em.21dtv.com/songs/60115857.mkv +誓言-鬼迷心窍,http://em.21dtv.com/songs/60019403.mkv +任贤齐+李宗盛-鬼迷心窍,http://em.21dtv.com/songs/60019402.mkv +周华健-鬼迷心窍(演唱会),http://em.21dtv.com/songs/60019401.mkv +李宗盛-鬼迷心窍(演唱会),http://em.21dtv.com/songs/60019400.mkv +曹格-刮目相看,http://em.21dtv.com/songs/60019138.mkv +严淑明-刮目相看(无原唱),http://em.21dtv.com/songs/60019137.mkv +田震-光芒万丈,http://em.21dtv.com/songs/60019296.mkv +TWINS-good morning to you,http://em.21dtv.com/songs/60001955.mkv +JVK-闺蜜甜心,http://em.21dtv.com/songs/60128680.mkv +云朵-光明使者,http://em.21dtv.com/songs/60075602.mkv +周京-光明使者,http://em.21dtv.com/songs/60019303.mkv +杨扎西-格姆山下,http://em.21dtv.com/songs/60127092.mkv +许冠杰-鬼马双星,http://em.21dtv.com/songs/60019399.mkv +韩丰-光明时刻,http://em.21dtv.com/songs/60135974.mkv +张学友-过敏世界(演唱会),http://em.21dtv.com/songs/60019503.mkv +高安-哥妹情缘,http://em.21dtv.com/songs/60062362.mkv +苏青山+晨彤-哥妹情歌,http://em.21dtv.com/songs/60120892.mkv +B.Gs-闺蜜情歌,http://em.21dtv.com/songs/60118246.mkv +彭英英-哥妹情歌,http://em.21dtv.com/songs/60082947.mkv +张奕-贡米飘香,http://em.21dtv.com/songs/60119512.mkv +达坡玛吉-格姆女神,http://em.21dtv.com/songs/60018418.mkv +BY2-闺蜜乐园,http://em.21dtv.com/songs/60093727.mkv +东方骏+谢孟伟+张子栋-国贸立交,http://em.21dtv.com/songs/60067044.mkv +佚名-goodbye my love goodbye,http://em.21dtv.com/songs/60001974.mkv +望海高歌-芥末花开,http://em.21dtv.com/songs/60113598.mkv +叶复台-怪模怪样,http://em.21dtv.com/songs/60067038.mkv +L.I.K.E-闺蜜城堡,http://em.21dtv.com/songs/60133224.mkv +孔令奇-干嘛悲伤,http://em.21dtv.com/songs/60090884.mkv +BREAKING BENJAMIN-give me a sign,http://em.21dtv.com/songs/60084716.mkv +THE CORRS-give me a reason,http://em.21dtv.com/songs/60001902.mkv +陈小春-古墓爱情,http://em.21dtv.com/songs/60018991.mkv +痛仰乐队-公路之歌(演唱会),http://em.21dtv.com/songs/60018687.mkv +新疆民歌-古丽娅茹,http://em.21dtv.com/songs/60089899.mkv +王梵瑞-鼓楼先生,http://em.21dtv.com/songs/60129401.mkv +郑源+郑东-光临天下,http://em.21dtv.com/songs/60114822.mkv +JAMES OTTO-groovy little summer song,http://em.21dtv.com/songs/60002038.mkv +魏佳庆-公路少年,http://em.21dtv.com/songs/60114285.mkv +祖海+火风-橄榄青青(演唱会),http://em.21dtv.com/songs/60018110.mkv +群星-给力青春,http://em.21dtv.com/songs/60018484.mkv +祖海+火风-橄榄青春,http://em.21dtv.com/songs/60018109.mkv +Hello Venus-Glow,http://em.21dtv.com/songs/60134695.mkv +Ella Henderson-Glow,http://em.21dtv.com/songs/60104668.mkv +SABRINA-greatest love of all(演唱会),http://em.21dtv.com/songs/60073291.mkv +侧田-greatest love of all(演唱会),http://em.21dtv.com/songs/60002023.mkv +蔡依林-greatest love of all(演唱会),http://em.21dtv.com/songs/60002022.mkv +群星-给力女生,http://em.21dtv.com/songs/60062851.mkv +闪亮三姐妹-古老魔咒,http://em.21dtv.com/songs/60018987.mkv +洪川+川乐队-够了没有,http://em.21dtv.com/songs/60124205.mkv +谢霆锋-够了没有,http://em.21dtv.com/songs/60018810.mkv +谢霆锋-够了没有(演唱会),http://em.21dtv.com/songs/60018809.mkv +曹轩宾-冈拉梅朵,http://em.21dtv.com/songs/60105119.mkv +降央卓玛-冈拉梅朵,http://em.21dtv.com/songs/60068267.mkv +日京江羽人-甘霖老苏,http://em.21dtv.com/songs/60098408.mkv +袁小迪-过了今夜,http://em.21dtv.com/songs/60019496.mkv +田振达-过了几年,http://em.21dtv.com/songs/60110429.mkv +辛晓琪-过了就好,http://em.21dtv.com/songs/60019498.mkv +艾伦+静如-古灵精怪,http://em.21dtv.com/songs/60018990.mkv +忢訫-阁楼红妆,http://em.21dtv.com/songs/60119579.mkv +BACK NUMBER-高岭の花子さん,http://em.21dtv.com/songs/60082939.mkv +任剑辉+白雪仙-观柳还琴,http://em.21dtv.com/songs/60019241.mkv +蒋文瑞-观柳还琴,http://em.21dtv.com/songs/60019240.mkv +蜜蜂少女队-鼓励鼓励,http://em.21dtv.com/songs/60124458.mkv +陈百祥-各领风骚,http://em.21dtv.com/songs/60018454.mkv +郑家星-公路电影,http://em.21dtv.com/songs/60080853.mkv +[Group] +groupName=十六万歌曲MV等 - 43 +谎言留声机-公路电影,http://em.21dtv.com/songs/60075526.mkv +王秀琪-过路的人,http://em.21dtv.com/songs/60124280.mkv +满文军-归来的梦,http://em.21dtv.com/songs/60091639.mkv +廖昌永-古老的歌,http://em.21dtv.com/songs/60123902.mkv +腾格尔-古老的歌,http://em.21dtv.com/songs/60089453.mkv +樊芳斌-广开先河,http://em.21dtv.com/songs/60130507.mkv +徐佳莹-高空弹跳,http://em.21dtv.com/songs/60103299.mkv +南拳妈妈-赶快认错,http://em.21dtv.com/songs/60017906.mkv +上明+简美雀-港口情影,http://em.21dtv.com/songs/60130033.mkv +佚名-港口情歌,http://em.21dtv.com/songs/60018187.mkv +PHIL COLLINS-groovy kind of love,http://em.21dtv.com/songs/60002037.mkv +张霖-公开恋情,http://em.21dtv.com/songs/60085135.mkv +A.SA 乐团-过客角色,http://em.21dtv.com/songs/60101720.mkv +张敬轩-过客别墅,http://em.21dtv.com/songs/60115908.mkv +洪俊扬-孤军作战,http://em.21dtv.com/songs/60075562.mkv +范逸臣-国境之南,http://em.21dtv.com/songs/60019446.mkv +屠洪纲-感觉自己,http://em.21dtv.com/songs/60017985.mkv +CL GIRLS-感觉真好,http://em.21dtv.com/songs/60090374.mkv +梅林组合-冠军中国,http://em.21dtv.com/songs/60069434.mkv +胡明-规矩左唱,http://em.21dtv.com/songs/60019392.mkv +亚帅公爵-公爵自白,http://em.21dtv.com/songs/60018684.mkv +林忆莲-感觉完美(演唱会),http://em.21dtv.com/songs/60017984.mkv +胡彦斌+郭凌霞-感觉特别,http://em.21dtv.com/songs/60017983.mkv +刘子毅-广结善缘,http://em.21dtv.com/songs/60105633.mkv +关键-关键是我,http://em.21dtv.com/songs/60019209.mkv +陈晓东-感觉瞬间,http://em.21dtv.com/songs/60017981.mkv +吴浩康-感觉苏豪,http://em.21dtv.com/songs/60017982.mkv +董贞-古剑情韵,http://em.21dtv.com/songs/60082967.mkv +梁雁翎-感激清风,http://em.21dtv.com/songs/60017965.mkv +伍思凯+纪敏佳-歌剧魅影,http://em.21dtv.com/songs/60094808.mkv +朱桦+费翔-歌剧魅影,http://em.21dtv.com/songs/60018381.mkv +KENT王健-感觉来了,http://em.21dtv.com/songs/60082937.mkv +阿勇泽让-高举吉祥,http://em.21dtv.com/songs/60018207.mkv +陈骅-感觉好吗,http://em.21dtv.com/songs/60017977.mkv +郑玉华-过季花开,http://em.21dtv.com/songs/60134315.mkv +李建科-各就各位,http://em.21dtv.com/songs/60120625.mkv +徐哲纬-各就各位,http://em.21dtv.com/songs/60018453.mkv +郑进一-孤家寡人,http://em.21dtv.com/songs/60018908.mkv +佚名-孤家寡人,http://em.21dtv.com/songs/60018907.mkv +许志安-孤家寡人,http://em.21dtv.com/songs/60018906.mkv +徐佳莹-咕叽咕叽,http://em.21dtv.com/songs/60119564.mkv +楼沁-咕叽咕叽,http://em.21dtv.com/songs/60102421.mkv +饶威-咕叽咕叽,http://em.21dtv.com/songs/60097318.mkv +孙燕姿-咕唧咕唧,http://em.21dtv.com/songs/60090927.mkv +孙燕姿-咕叽咕叽,http://em.21dtv.com/songs/60018815.mkv +陈慧琳-感激分手,http://em.21dtv.com/songs/60017963.mkv +王静莹-过境的心,http://em.21dtv.com/songs/60019482.mkv +刘美君-过境的心,http://em.21dtv.com/songs/60019481.mkv +华语群星-高级动物,http://em.21dtv.com/songs/60116607.mkv +窦唯-高级动物,http://em.21dtv.com/songs/60018206.mkv +谢霆锋-估计错误,http://em.21dtv.com/songs/60018814.mkv +谢霆锋-估计错误(演唱会),http://em.21dtv.com/songs/60018813.mkv +王铁-鬼街传说,http://em.21dtv.com/songs/60075613.mkv +Amoi-公鸡八宅,http://em.21dtv.com/songs/60131029.mkv +容祖儿-感激爱神,http://em.21dtv.com/songs/60092522.mkv +昌珉-give it to me,http://em.21dtv.com/songs/60073251.mkv +YDG-give it to me,http://em.21dtv.com/songs/60073250.mkv +2PM-give it to me,http://em.21dtv.com/songs/60073249.mkv +LEIGHTON MEESTER-give in to me(演唱会),http://em.21dtv.com/songs/60067891.mkv +BRITNEY SPEARS-girl in the mirror,http://em.21dtv.com/songs/60001878.mkv +秦基博-Girl,http://em.21dtv.com/songs/60135615.mkv +MADONNA-give it 2 me,http://em.21dtv.com/songs/60001900.mkv +ZAC BROWN BAND-goodbye in her eyes,http://em.21dtv.com/songs/60073283.mkv +ANGEL-go in go hard,http://em.21dtv.com/songs/60065593.mkv +TIMBALAND-give it a go,http://em.21dtv.com/songs/60082165.mkv +GROOVE COVERAGE-god is a girl,http://em.21dtv.com/songs/60001935.mkv +CHRISTINA AGUILERA-genie in a bottle,http://em.21dtv.com/songs/60001839.mkv +MP魔幻力量-光合作用,http://em.21dtv.com/songs/60095247.mkv +岳薇-光合作用,http://em.21dtv.com/songs/60075599.mkv +袁晓明-国华迎新,http://em.21dtv.com/songs/60135721.mkv +周晋进-光和效应,http://em.21dtv.com/songs/60075600.mkv +俏童年小童星-恭贺新禧,http://em.21dtv.com/songs/60132209.mkv +吴家辉+王莉莉-恭贺新禧,http://em.21dtv.com/songs/60075533.mkv +甘国卫+胡美仪-恭贺新喜,http://em.21dtv.com/songs/60018732.mkv +李天华+方季惟-隔海相望,http://em.21dtv.com/songs/60089335.mkv +昊麟-恭贺新春,http://em.21dtv.com/songs/60118625.mkv +姜鹏-感怀天心,http://em.21dtv.com/songs/60119403.mkv +佚名-god help the outcasts,http://em.21dtv.com/songs/60001934.mkv +王迅+梁超+于洋-光辉岁月,http://em.21dtv.com/songs/60132743.mkv +陈乐基+张心杰-光辉岁月,http://em.21dtv.com/songs/60104541.mkv +谭锡禧-光辉岁月(演唱会),http://em.21dtv.com/songs/60082980.mkv +陈奕迅-光辉岁月,http://em.21dtv.com/songs/60079887.mkv +佚名-光辉岁月,http://em.21dtv.com/songs/60019289.mkv +黄家强+苟伟-光辉岁月,http://em.21dtv.com/songs/60019288.mkv +BEYOND-光辉岁月,http://em.21dtv.com/songs/60019287.mkv +叶世荣-光辉岁月(演唱会),http://em.21dtv.com/songs/60019286.mkv +谢霆锋-光辉岁月(演唱会),http://em.21dtv.com/songs/60019285.mkv +林忆莲-光辉岁月(演唱会),http://em.21dtv.com/songs/60019284.mkv +BEYOND-光辉岁月(演唱会),http://em.21dtv.com/songs/60019283.mkv +黄凯芹-更好世界(演唱会),http://em.21dtv.com/songs/60018675.mkv +阚丽君-国花飘香,http://em.21dtv.com/songs/60066009.mkv +王祖蓝-歌和老街,http://em.21dtv.com/songs/60070706.mkv +尤国通-光辉历程,http://em.21dtv.com/songs/60104968.mkv +朱东升-哥很寂寞,http://em.21dtv.com/songs/60124039.mkv +阿牛-关怀方式,http://em.21dtv.com/songs/60097247.mkv +成龙+陈淑桦-关怀方式,http://em.21dtv.com/songs/60019208.mkv +祥帅-过好当下,http://em.21dtv.com/songs/60123049.mkv +KK-更好的事,http://em.21dtv.com/songs/60123494.mkv +朱元冰-更好的人,http://em.21dtv.com/songs/60122821.mkv +叶振棠-光辉不变(演唱会),http://em.21dtv.com/songs/60019282.mkv +林玉英-哥哥姊姊(无原唱),http://em.21dtv.com/songs/60018321.mkv +刘德华+张卫健-高高在下,http://em.21dtv.com/songs/60087393.mkv +刘德华+张卫健-高高在上,http://em.21dtv.com/songs/60018204.mkv +少女时代-哥哥真坏,http://em.21dtv.com/songs/60075482.mkv +童杰-光棍之歌,http://em.21dtv.com/songs/60088393.mkv +司文-光棍之歌,http://em.21dtv.com/songs/60087525.mkv +梁醒波+凤凰女-光棍姻缘,http://em.21dtv.com/songs/60019281.mkv +卢海鹏+吕珊-光棍姻缘(演唱会),http://em.21dtv.com/songs/60019280.mkv +王笑文-耿耿于怀,http://em.21dtv.com/songs/60124282.mkv +麦浚龙-耿耿于怀,http://em.21dtv.com/songs/60018672.mkv +刘凤瑶-高贵与丑,http://em.21dtv.com/songs/60121427.mkv +王嘉明-公告天下,http://em.21dtv.com/songs/60092977.mkv +龙智祥-光棍天堂,http://em.21dtv.com/songs/60118238.mkv +连诗雅-乖乖听话,http://em.21dtv.com/songs/60120003.mkv +卢巧音-感官世界,http://em.21dtv.com/songs/60017958.mkv +晶迪-光棍时代,http://em.21dtv.com/songs/60068289.mkv +栾添翔-光棍情歌,http://em.21dtv.com/songs/60071971.mkv +BLAKE SHELTON-god gave me you,http://em.21dtv.com/songs/60063606.mkv +DAVE BARNES-god gave me you,http://em.21dtv.com/songs/60060807.mkv +门丽+胡小宝-哥哥妹妹,http://em.21dtv.com/songs/60061209.mkv +易欣-给个理由,http://em.21dtv.com/songs/60018482.mkv +郭雅琪-咕咕露妮,http://em.21dtv.com/songs/60088792.mkv +范冰冰-刚刚开始,http://em.21dtv.com/songs/60018145.mkv +司文-光棍快乐,http://em.21dtv.com/songs/60019278.mkv +可岚-感官记忆,http://em.21dtv.com/songs/60017957.mkv +任妙音-关关雎鸠,http://em.21dtv.com/songs/60098092.mkv +林玉英-哥哥姐姐(无原唱),http://em.21dtv.com/songs/60095690.mkv +夏雪飞-乖乖就范,http://em.21dtv.com/songs/60019161.mkv +倪金威-光棍好苦,http://em.21dtv.com/songs/60119267.mkv +司文-光棍好苦(新版),http://em.21dtv.com/songs/60086574.mkv +司文-光棍很酷,http://em.21dtv.com/songs/60075598.mkv +司文-光棍好苦,http://em.21dtv.com/songs/60019276.mkv +吉克皓-滚滚红尘,http://em.21dtv.com/songs/60127807.mkv +常石磊+萨顶顶-滚滚红尘,http://em.21dtv.com/songs/60098314.mkv +萨顶顶+常石磊-滚滚红尘,http://em.21dtv.com/songs/60097469.mkv +香香-滚滚红尘,http://em.21dtv.com/songs/60097468.mkv +卓依婷-滚滚红尘,http://em.21dtv.com/songs/60086575.mkv +袁娅维-滚滚红尘,http://em.21dtv.com/songs/60069438.mkv +袁凤瑛-滚滚红尘,http://em.21dtv.com/songs/60019431.mkv +陈淑桦-滚滚红尘,http://em.21dtv.com/songs/60019430.mkv +罗大佑+袁凤瑛-滚滚红尘(演唱会),http://em.21dtv.com/songs/60019429.mkv +闫江东-光棍光荣,http://em.21dtv.com/songs/60129703.mkv +刘子毅-光棍光荣,http://em.21dtv.com/songs/60082979.mkv +阿雅-go go go go,http://em.21dtv.com/songs/60001925.mkv +RIHANNA-good girl gone bad(演唱会),http://em.21dtv.com/songs/60067897.mkv +安珍庆-尴尬的爱,http://em.21dtv.com/songs/60075448.mkv +黄乙玲-甘甘的爱,http://em.21dtv.com/songs/60017858.mkv +吕方-该给的爱,http://em.21dtv.com/songs/60017811.mkv +成镓羽-干干脆脆,http://em.21dtv.com/songs/60119581.mkv +苏佩卿-格格不入,http://em.21dtv.com/songs/60098715.mkv +王喆-贵妃醉酒(演唱会),http://em.21dtv.com/songs/60069437.mkv +李玉刚-贵妃醉酒,http://em.21dtv.com/songs/60019407.mkv +红霞-贵妃醉酒,http://em.21dtv.com/songs/60019406.mkv +郑允武-国防之歌,http://em.21dtv.com/songs/60113009.mkv +中国说唱兄弟-功夫一首,http://em.21dtv.com/songs/60090482.mkv +成龙+张一山+杨紫-功夫瑜伽,http://em.21dtv.com/songs/60131455.mkv +原子霏-功夫小妞,http://em.21dtv.com/songs/60130154.mkv +代小波-功夫熊猫,http://em.21dtv.com/songs/60018726.mkv +黄小琥-该放手了,http://em.21dtv.com/songs/60065979.mkv +关颖-关方说法,http://em.21dtv.com/songs/60019205.mkv +任贤齐-功夫恰恰,http://em.21dtv.com/songs/60018725.mkv +北原山猫-高峰情怀(无原唱),http://em.21dtv.com/songs/60018198.mkv +李文赫+崔莲姬-功夫女孩,http://em.21dtv.com/songs/60132540.mkv +崔莲姬+李文赫-功夫女孩,http://em.21dtv.com/songs/60131375.mkv +刘国强-国富民强,http://em.21dtv.com/songs/60108336.mkv +李池湘-贵妃登殿,http://em.21dtv.com/songs/60092809.mkv +曾雨轩-感恩有你,http://em.21dtv.com/songs/60122813.mkv +小臭臭-感恩有你,http://em.21dtv.com/songs/60120477.mkv +张浩-感恩兄弟,http://em.21dtv.com/songs/60130326.mkv +李殊-感恩无限,http://em.21dtv.com/songs/60122867.mkv +李思琳-感恩世界,http://em.21dtv.com/songs/60097458.mkv +白雪-感恩妈妈,http://em.21dtv.com/songs/60080080.mkv +卓依婷-孤儿乐园,http://em.21dtv.com/songs/60018901.mkv +童唱-孤儿乐园,http://em.21dtv.com/songs/60018900.mkv +SEAN PAUL FT ALEXIS JORDAN-got 2 luv u,http://em.21dtv.com/songs/60073289.mkv +阎维文-嘎俄丽泰,http://em.21dtv.com/songs/60017798.mkv +郭乔伊-感恩老师,http://em.21dtv.com/songs/60121010.mkv +吴娜-感恩老师,http://em.21dtv.com/songs/60075455.mkv +佚名-国恩家庆,http://em.21dtv.com/songs/60019439.mkv +佚名-国恩家庆(无原唱),http://em.21dtv.com/songs/60019438.mkv +游美灵-感恩哈达,http://em.21dtv.com/songs/60133950.mkv +游美灵-感恩哈达,http://em.21dtv.com/songs/60114668.mkv +张满强-感恩恩师,http://em.21dtv.com/songs/60098356.mkv +王典-感恩的心,http://em.21dtv.com/songs/60135530.mkv +陈佳-感恩的心,http://em.21dtv.com/songs/60127538.mkv +舒浩炀+向小康+杨钰莹-感恩的心,http://em.21dtv.com/songs/60112162.mkv +蔡依林-感恩的心,http://em.21dtv.com/songs/60090202.mkv +暴风-感恩的心,http://em.21dtv.com/songs/60085106.mkv +李代沫-感恩的心,http://em.21dtv.com/songs/60071942.mkv +易帆-感恩的心,http://em.21dtv.com/songs/60067018.mkv +佚名-感恩的心,http://em.21dtv.com/songs/60017956.mkv +杨培安-感恩的心,http://em.21dtv.com/songs/60017955.mkv +欧阳菲菲-感恩的心,http://em.21dtv.com/songs/60017954.mkv +陈红-感恩的心(演唱会),http://em.21dtv.com/songs/60017953.mkv +郑源+郑东-感恩爸妈,http://em.21dtv.com/songs/60094311.mkv +蓝雨-孤儿不孤,http://em.21dtv.com/songs/60093631.mkv +袁权-孤独之舞,http://em.21dtv.com/songs/60080347.mkv +蒙面哥-孤独中秋,http://em.21dtv.com/songs/60102704.mkv +莫文蔚-广岛之恋,http://em.21dtv.com/songs/60019335.mkv +莫文蔚+张洪量-广岛之恋,http://em.21dtv.com/songs/60019334.mkv +张洪量-广岛之恋(演唱会),http://em.21dtv.com/songs/60019333.mkv +莫文蔚+张智霖-广岛之恋(演唱会),http://em.21dtv.com/songs/60019332.mkv +姜育恒-孤独之旅,http://em.21dtv.com/songs/60018899.mkv +谭圳-感动中国,http://em.21dtv.com/songs/60075452.mkv +阿丽玛-感动中国,http://em.21dtv.com/songs/60017947.mkv +金波-感动中国(演唱会),http://em.21dtv.com/songs/60017946.mkv +刘美君+SWING-怪诞之城(HD演唱会),http://em.21dtv.com/songs/60019166.mkv +庄心妍-孤单坠爱,http://em.21dtv.com/songs/60127947.mkv +曾超-孤单月影,http://em.21dtv.com/songs/60132508.mkv +阿may-孤单月影,http://em.21dtv.com/songs/60118993.mkv +罗时丰-港都夜雨,http://em.21dtv.com/songs/60075468.mkv +佚名-港都夜雨,http://em.21dtv.com/songs/60018183.mkv +齐秦-港都夜雨,http://em.21dtv.com/songs/60018182.mkv +洪荣宏-港都夜雨(无原唱),http://em.21dtv.com/songs/60018181.mkv +陈方方-孤单英雄,http://em.21dtv.com/songs/60018873.mkv +BEYOND-孤单一吻,http://em.21dtv.com/songs/60018872.mkv +谭咏麟-高低一起(演唱会),http://em.21dtv.com/songs/60018195.mkv +佚名-港都夜曲(无原唱),http://em.21dtv.com/songs/60018180.mkv +张宇-功德圆满,http://em.21dtv.com/songs/60018718.mkv +程飞鸣-孤单一边,http://em.21dtv.com/songs/60018870.mkv +叶丽仪-肝胆相照,http://em.21dtv.com/songs/60092402.mkv +余天-关渡小站,http://em.21dtv.com/songs/60019203.mkv +谭咏麟+陈百祥-肝胆相照,http://em.21dtv.com/songs/60017899.mkv +SUPPER MOMENT-孤独先生,http://em.21dtv.com/songs/60123542.mkv +蓝又时-孤单心事,http://em.21dtv.com/songs/60018869.mkv +葛仲珊-搞定小姐,http://em.21dtv.com/songs/60132849.mkv +葛仲珊-搞定小姐,http://em.21dtv.com/songs/60131773.mkv +郑志勇-关帝雄风,http://em.21dtv.com/songs/60134302.mkv +张启辉-孤独无罪,http://em.21dtv.com/songs/60119509.mkv +颜裕林-孤独无罪,http://em.21dtv.com/songs/60110679.mkv +潘长江-光腚娃娃,http://em.21dtv.com/songs/60019274.mkv +张峡浩-孤独完美,http://em.21dtv.com/songs/60110191.mkv +陈慧琳-感动味蕾,http://em.21dtv.com/songs/60093458.mkv +谭朱格格-孤独天使,http://em.21dtv.com/songs/60130763.mkv +杨静-孤单探戈,http://em.21dtv.com/songs/60131536.mkv +许志安-孤独探戈(演唱会),http://em.21dtv.com/songs/60018898.mkv +陈奕迅-孤独探戈(演唱会),http://em.21dtv.com/songs/60018897.mkv +王二妮-鼓动天地,http://em.21dtv.com/songs/60118772.mkv +蜜雪薇琪-过渡时期,http://em.21dtv.com/songs/60019475.mkv +蜜雪薇琪-过度时期,http://em.21dtv.com/songs/60019472.mkv +佚名-搁等三年,http://em.21dtv.com/songs/60018339.mkv +沈文程-搁等三年,http://em.21dtv.com/songs/60018338.mkv +汤灿-感动世界,http://em.21dtv.com/songs/60017943.mkv +荣联合-感动人生,http://em.21dtv.com/songs/60071941.mkv +乔乔-孤单起舞,http://em.21dtv.com/songs/60128744.mkv +刘爽-过度情人,http://em.21dtv.com/songs/60109190.mkv +何润东-孤单情人(演唱会)(无原唱),http://em.21dtv.com/songs/60018866.mkv +潘佩莉-孤单恰恰,http://em.21dtv.com/songs/60071964.mkv +潘长江+王平-工地情歌,http://em.21dtv.com/songs/60090070.mkv +陈洁仪-孤独频盗(无原唱),http://em.21dtv.com/songs/60018894.mkv +羽翘-港大女生,http://em.21dtv.com/songs/60093056.mkv +香香童彤-孤独女人,http://em.21dtv.com/songs/60018893.mkv +Ice Lady-关掉脑袋,http://em.21dtv.com/songs/60118259.mkv +格格-嘎达梅林,http://em.21dtv.com/songs/60131565.mkv +童丽-嘎达梅林,http://em.21dtv.com/songs/60075437.mkv +孙健-嘎达梅林,http://em.21dtv.com/songs/60075436.mkv +梅林组合-嘎达梅林(演唱会),http://em.21dtv.com/songs/60069401.mkv +腾格尔-嘎达默林,http://em.21dtv.com/songs/60017797.mkv +大风-嘎达默林,http://em.21dtv.com/songs/60017796.mkv +腾格尔-嘎达梅林,http://em.21dtv.com/songs/60017795.mkv +彭丽媛-嘎达梅林,http://em.21dtv.com/songs/60017794.mkv +黎岩-嘎达梅林,http://em.21dtv.com/songs/60017793.mkv +郑锦昌-孤灯泪影,http://em.21dtv.com/songs/60018877.mkv +陈才超-孤独理想,http://em.21dtv.com/songs/60104560.mkv +何耀珊-孤单旅行,http://em.21dtv.com/songs/60018864.mkv +莫小娘+B.ZL轮子-孤单旅途,http://em.21dtv.com/songs/60082962.mkv +厉娜-孤独恋人,http://em.21dtv.com/songs/60123720.mkv +江蕙-港都恋歌,http://em.21dtv.com/songs/60018179.mkv +曾心梅-港都恋歌,http://em.21dtv.com/songs/60018178.mkv +蔡幸娟-港都恋歌,http://em.21dtv.com/songs/60018177.mkv +金城武-孤单里等,http://em.21dtv.com/songs/60018863.mkv +卢巧音-够胆恋爱(演唱会),http://em.21dtv.com/songs/60018806.mkv +刘依纯-该丢就丢,http://em.21dtv.com/songs/60114418.mkv +陈奕迅-孤独患者,http://em.21dtv.com/songs/60075558.mkv +王龙-孤单回忆,http://em.21dtv.com/songs/60071963.mkv +王涛-过得好些,http://em.21dtv.com/songs/60068298.mkv +郑伊健-感动害人,http://em.21dtv.com/songs/60017940.mkv +火星电台-港岛荒觉,http://em.21dtv.com/songs/60133960.mkv +方大同-孤独孩儿(演唱会),http://em.21dtv.com/songs/60075557.mkv +亚东-古道古镇,http://em.21dtv.com/songs/60018980.mkv +张敬轩-孤单公园,http://em.21dtv.com/songs/60018859.mkv +张敬轩-孤单公园(演唱会),http://em.21dtv.com/songs/60018858.mkv +张敬轩+王菀之-孤单公园(演唱会),http://em.21dtv.com/songs/60018857.mkv +罗逻圣-哥的告白,http://em.21dtv.com/songs/60106194.mkv +农夫-跟队唔该,http://em.21dtv.com/songs/60092332.mkv +陈星-孤单地走(演唱会),http://em.21dtv.com/songs/60018855.mkv +陈星-孤单的走,http://em.21dtv.com/songs/60018854.mkv +郭斯炫-孤独的夜,http://em.21dtv.com/songs/60082963.mkv +张萌-孤独的鱼,http://em.21dtv.com/songs/60063387.mkv +郭健一-孤单的夜,http://em.21dtv.com/songs/60018850.mkv +申菲-孤单岛屿,http://em.21dtv.com/songs/60018836.mkv +七郎-港都的月,http://em.21dtv.com/songs/60018175.mkv +鸿飞-孤独的心,http://em.21dtv.com/songs/60118202.mkv +刘航-孤独的我,http://em.21dtv.com/songs/60113302.mkv +黄艺明-孤单的我,http://em.21dtv.com/songs/60106505.mkv +郑梓浩-孤单的我,http://em.21dtv.com/songs/60018845.mkv +李杨飞-孤岛电台,http://em.21dtv.com/songs/60109425.mkv +郝月华-孤独的睡,http://em.21dtv.com/songs/60118100.mkv +刘晓春-孤独的你,http://em.21dtv.com/songs/60089674.mkv +任静-孤独的梦,http://em.21dtv.com/songs/60018885.mkv +杨家辉-孤独的狼,http://em.21dtv.com/songs/60128111.mkv +李岗霖-孤单东路,http://em.21dtv.com/songs/60018856.mkv +周传雄-孤单大街,http://em.21dtv.com/songs/60018835.mkv +王潇潇-孤单的城,http://em.21dtv.com/songs/60119821.mkv +ON OFF-ふたつの鼓动と赤い罪,http://em.21dtv.com/songs/60082430.mkv +徐鑫-孤单城市,http://em.21dtv.com/songs/60130351.mkv +天威-孤单城堡,http://em.21dtv.com/songs/60135092.mkv +佚名-孤单背影,http://em.21dtv.com/songs/60018832.mkv +陈慧娴-孤单背影,http://em.21dtv.com/songs/60018831.mkv +蒋雪儿-孤单巴黎,http://em.21dtv.com/songs/60075553.mkv +蒋雪儿-孤单巴黎(演唱会),http://em.21dtv.com/songs/60071962.mkv +陈慧姗+苏永康-固定伴侣,http://em.21dtv.com/songs/60019020.mkv +许慧欣-孤单芭蕾,http://em.21dtv.com/songs/60018827.mkv +张卫健-孤独不苦,http://em.21dtv.com/songs/60018879.mkv +喻言-格斗宝贝,http://em.21dtv.com/songs/60110100.mkv +和文军-古城之恋,http://em.21dtv.com/songs/60018978.mkv +张明敏-歌唱祖国,http://em.21dtv.com/songs/60129087.mkv +贾璨璨-歌唱祖国,http://em.21dtv.com/songs/60101517.mkv +中央乐团-歌唱祖国,http://em.21dtv.com/songs/60018374.mkv +佚名-歌唱祖国,http://em.21dtv.com/songs/60018373.mkv +杨沛宜-歌唱祖国,http://em.21dtv.com/songs/60018372.mkv +杨沛宜-歌唱祖国(60周年国庆版),http://em.21dtv.com/songs/60018371.mkv +杨培安-干脆一点,http://em.21dtv.com/songs/60097130.mkv +刘姝辰-歌唱新年,http://em.21dtv.com/songs/60075494.mkv +金美儿-古城小唱,http://em.21dtv.com/songs/60075565.mkv +杨光-广场舞曲,http://em.21dtv.com/songs/60124101.mkv +黄艺明-高唱我歌,http://em.21dtv.com/songs/60018193.mkv +钟舒漫+MC仁-改潮玩代,http://em.21dtv.com/songs/60111466.mkv +Yellow-跟车太贴,http://em.21dtv.com/songs/60125057.mkv +YELLOW-跟车太贴,http://em.21dtv.com/songs/60123571.mkv +佚名-歌唱情侣,http://em.21dtv.com/songs/60018367.mkv +何佳-古茶飘香,http://em.21dtv.com/songs/60094397.mkv +燕妮-共创明天,http://em.21dtv.com/songs/60018769.mkv +冷漠-孤城简爱,http://em.21dtv.com/songs/60105624.mkv +J.CAIN+S.PERRY+N.J.SCHON-girl cant help it(无原唱),http://em.21dtv.com/songs/60001876.mkv +于洋-共创辉煌,http://em.21dtv.com/songs/60116531.mkv +猪哥亮-归丛好好,http://em.21dtv.com/songs/60019358.mkv +陈沛轩-古城歌姬,http://em.21dtv.com/songs/60111488.mkv +杜春梅-共产党员,http://em.21dtv.com/songs/60070712.mkv +佚名-共产党员,http://em.21dtv.com/songs/60018764.mkv +张津涤-高处的水,http://em.21dtv.com/songs/60117738.mkv +谭晶-共产党颂,http://em.21dtv.com/songs/60075541.mkv +王霞-共产党人,http://em.21dtv.com/songs/60018763.mkv +李魏西-改变自我,http://em.21dtv.com/songs/60065981.mkv +刘珂+陈冰-告别昨天,http://em.21dtv.com/songs/60115724.mkv +梁雁翎-告别昨日,http://em.21dtv.com/songs/60018283.mkv +陈柏宇-告别之前,http://em.21dtv.com/songs/60119014.mkv +陈柏宇-告别之前,http://em.21dtv.com/songs/60118163.mkv +金志文+白雪+千斤组合-改变自己,http://em.21dtv.com/songs/60135850.mkv +黄致列-改变自己,http://em.21dtv.com/songs/60121182.mkv +艾菲+赵卓能-改变自己,http://em.21dtv.com/songs/60106223.mkv +魏然-改变自己,http://em.21dtv.com/songs/60104621.mkv +最美和声八强学员-改变自己,http://em.21dtv.com/songs/60094527.mkv +艾怡良-改变自己,http://em.21dtv.com/songs/60082934.mkv +吴莫愁-改变自己,http://em.21dtv.com/songs/60064325.mkv +王力宏-改变自己,http://em.21dtv.com/songs/60017846.mkv +李霄云-改变自己,http://em.21dtv.com/songs/60017845.mkv +王力宏-改变自己(演唱会),http://em.21dtv.com/songs/60017844.mkv +常颖-干杯中国,http://em.21dtv.com/songs/60105803.mkv +吴淑敏-good bye真爱,http://em.21dtv.com/songs/60001946.mkv +林志炫-告别忧伤,http://em.21dtv.com/songs/60092875.mkv +刘梦逐-改变一切,http://em.21dtv.com/songs/60089168.mkv +TENSION-gotta be your man,http://em.21dtv.com/songs/60002006.mkv +谢霆锋-个别意见(演唱会),http://em.21dtv.com/songs/60018442.mkv +佚名-关白宣言,http://em.21dtv.com/songs/60019192.mkv +火雅-戈壁兄弟,http://em.21dtv.com/songs/60108691.mkv +江蕙-港边惜别,http://em.21dtv.com/songs/60095742.mkv +佚名-港边惜别,http://em.21dtv.com/songs/60018172.mkv +陈雷-港边惜别,http://em.21dtv.com/songs/60018171.mkv +肖烔-根本问题,http://em.21dtv.com/songs/60132812.mkv +群星-告别天堂,http://em.21dtv.com/songs/60075477.mkv +陈奕迅-告别娑婆,http://em.21dtv.com/songs/60080917.mkv +黄得伟-改变世界(无原唱),http://em.21dtv.com/songs/60017842.mkv +文夏-港边送别,http://em.21dtv.com/songs/60018170.mkv +佚名-狗比人贵,http://em.21dtv.com/songs/60018798.mkv +网络歌手-狗比人富,http://em.21dtv.com/songs/60088419.mkv +周二珂-告白气球,http://em.21dtv.com/songs/60127839.mkv +周杰伦+低调组合-告白气球,http://em.21dtv.com/songs/60127853.mkv +璃猫-告白气球,http://em.21dtv.com/songs/60134018.mkv +吴兆钧-告白气球,http://em.21dtv.com/songs/60133468.mkv +周杰伦-告白气球,http://em.21dtv.com/songs/60127851.mkv +周杰伦-告白气球,http://em.21dtv.com/songs/60126721.mkv +周杰伦-告白气球,http://em.21dtv.com/songs/60123758.mkv +田震-干杯朋友,http://em.21dtv.com/songs/60018126.mkv +佚名-great balls of fire,http://em.21dtv.com/songs/60002015.mkv +佚名-告别南洋,http://em.21dtv.com/songs/60018280.mkv +王旭鹏-隔壁女人,http://em.21dtv.com/songs/60121918.mkv +卢广仲-港边男儿,http://em.21dtv.com/songs/60062724.mkv +宗成玮-改变命运,http://em.21dtv.com/songs/60075442.mkv +孔令奇-隔壁某某,http://em.21dtv.com/songs/60093759.mkv +王钰钧-隔壁老王,http://em.21dtv.com/songs/60121956.mkv +关淑怡-告别恋曲,http://em.21dtv.com/songs/60018279.mkv +陈一郎-港边恋情,http://em.21dtv.com/songs/60018168.mkv +林翠萍-告别记忆,http://em.21dtv.com/songs/60091490.mkv +王莹-告别军营,http://em.21dtv.com/songs/60075476.mkv +刘和刚-告别军营,http://em.21dtv.com/songs/60018277.mkv +陶喆-宫保鸡丁(演唱会),http://em.21dtv.com/songs/60018729.mkv +红旗+央金-贡布汉子,http://em.21dtv.com/songs/60088402.mkv +紫琴-告别回忆,http://em.21dtv.com/songs/60075475.mkv +王力宏-告别黑暗,http://em.21dtv.com/songs/60018276.mkv +周杰伦+吴建豪-该不该说,http://em.21dtv.com/songs/60017808.mkv +南拳妈妈-good bye good luck,http://em.21dtv.com/songs/60001944.mkv +佚名-港边干杯,http://em.21dtv.com/songs/60018167.mkv +文夏-港边干杯,http://em.21dtv.com/songs/60018166.mkv +胡歌-敢不敢爱,http://em.21dtv.com/songs/60017927.mkv +陶喆-告别飞行,http://em.21dtv.com/songs/60105502.mkv +吴丹妮-告别飞行,http://em.21dtv.com/songs/60097270.mkv +郑秀文-搞不懂爱,http://em.21dtv.com/songs/60018258.mkv +掠琼-告别曾经,http://em.21dtv.com/songs/60129162.mkv +苏富权-告别爱情,http://em.21dtv.com/songs/60082941.mkv +李英贤-告别爱情,http://em.21dtv.com/songs/60070702.mkv +潘建义-哥邦 情,http://em.21dtv.com/songs/60093851.mkv +范武雄+朱佩佩-哥邦 情,http://em.21dtv.com/songs/60080962.mkv +国金萍-更爱祖国,http://em.21dtv.com/songs/60098220.mkv +B.GIBBONS D.HILL-F.BEARD-gimme all your lovin(无原唱),http://em.21dtv.com/songs/60001871.mkv +KELIS-get along with you,http://em.21dtv.com/songs/60073237.mkv +关菊英-各安天命,http://em.21dtv.com/songs/60064235.mkv +TWINS-给爱丽丝,http://em.21dtv.com/songs/60087188.mkv +陈奕迅-给爱丽斯,http://em.21dtv.com/songs/60018465.mkv +陈奕迅-给爱丽斯(演唱会),http://em.21dtv.com/songs/60018464.mkv +陈奕迅+TWINS-给爱丽斯(演唱会),http://em.21dtv.com/songs/60018463.mkv +MAROON 5-give a little more,http://em.21dtv.com/songs/60073247.mkv +CAROL KING-go away little girl,http://em.21dtv.com/songs/60001918.mkv +SUPERTRAMP-give a little bit,http://em.21dtv.com/songs/60001897.mkv +GOO GOO DOLLS-give a little bit,http://em.21dtv.com/songs/60001896.mkv +伍思凯-该爱就爱,http://em.21dtv.com/songs/60017804.mkv +华语群星-敢爱敢战,http://em.21dtv.com/songs/60122546.mkv +林子祥-敢爱敢做,http://em.21dtv.com/songs/60017924.mkv +叶倩文+陈奕迅+林子祥-敢爱敢做(演唱会),http://em.21dtv.com/songs/60017923.mkv +赵华-敢爱敢当,http://em.21dtv.com/songs/60102762.mkv +丁当-敢爱敢当,http://em.21dtv.com/songs/60101850.mkv +丁丁-敢爱敢当,http://em.21dtv.com/songs/60080489.mkv +萧玉芬-敢爱的人,http://em.21dtv.com/songs/60017922.mkv +NMB48-甘噛み姫,http://em.21dtv.com/songs/60121296.mkv +佚名-风中之火,http://em.21dtv.com/songs/60017524.mkv +庄伟斌-发仔之歌,http://em.21dtv.com/songs/60121635.mkv +蔡枫华-风中追风(演唱会),http://em.21dtv.com/songs/60061194.mkv +老夫子+大蕃薯+秦先生-夫子自道(无原唱),http://em.21dtv.com/songs/60017645.mkv +佚名-风中之爱,http://em.21dtv.com/songs/60017523.mkv +张翰-风中英雄,http://em.21dtv.com/songs/60109332.mkv +巫启贤-风中有你,http://em.21dtv.com/songs/60017520.mkv +TWINS-风筝与风,http://em.21dtv.com/songs/60017474.mkv +苏永康+许志安-风筝与风(演唱会),http://em.21dtv.com/songs/60017473.mkv +TWINS-风筝与风(演唱会),http://em.21dtv.com/songs/60017472.mkv +苏路-风怎样吹,http://em.21dtv.com/songs/60085093.mkv +马剑芬+家家-放纵想念,http://em.21dtv.com/songs/60086543.mkv +吴淑敏-放在心肝,http://em.21dtv.com/songs/60016750.mkv +伍卫中-风中往事,http://em.21dtv.com/songs/60107488.mkv +李琦-风中少年,http://em.21dtv.com/songs/60105152.mkv +元气乐团-风中少林,http://em.21dtv.com/songs/60017517.mkv +袁晓明-风中守护,http://em.21dtv.com/songs/60127378.mkv +张翠萍-风中守护,http://em.21dtv.com/songs/60126897.mkv +林昭宇-反正是爱,http://em.21dtv.com/songs/60097172.mkv +徐飞+小沈龙-复杂人心,http://em.21dtv.com/songs/60125583.mkv +魏晨-复杂人生,http://em.21dtv.com/songs/60133117.mkv +西单女孩-风中奇缘,http://em.21dtv.com/songs/60067005.mkv +佚名-父子情深,http://em.21dtv.com/songs/60095431.mkv +佚名-父子情深(无原唱),http://em.21dtv.com/songs/60017740.mkv +张国荣-风再起时,http://em.21dtv.com/songs/60017453.mkv +张国荣-风再起时(演唱会),http://em.21dtv.com/songs/60017452.mkv +谢雷+谢小鱼-父子情份,http://em.21dtv.com/songs/60097173.mkv +张翰-风之诺言,http://em.21dtv.com/songs/60102238.mkv +蔡国权-风中暖流,http://em.21dtv.com/songs/60017513.mkv +麦子杰-风中麦田,http://em.21dtv.com/songs/60094358.mkv +郭富城-复制灵魂,http://em.21dtv.com/songs/60017780.mkv +郭富城-复制灵魂(演唱会),http://em.21dtv.com/songs/60017779.mkv +伊风-风中兰花,http://em.21dtv.com/songs/60017511.mkv +黄荻钧-复制快乐,http://em.21dtv.com/songs/60124759.mkv +谭咏麟-风中劲草(演唱会),http://em.21dtv.com/songs/60017510.mkv +张炜-风姿花传,http://em.21dtv.com/songs/60123936.mkv +谢雷+谢小鱼-父子关系,http://em.21dtv.com/songs/60070695.mkv +宋嘉其+东山少爷-肥仔个头,http://em.21dtv.com/songs/60111012.mkv +阿迪雅+程晨-纺织姑娘,http://em.21dtv.com/songs/60119004.mkv +佚名-纺织姑娘,http://em.21dtv.com/songs/60016559.mkv +苏小明+张暴默-纺织姑娘(演唱会),http://em.21dtv.com/songs/60016558.mkv +佚名-纺织姑娘(快三),http://em.21dtv.com/songs/60016557.mkv +荀佰争-风中的雨,http://em.21dtv.com/songs/60131763.mkv +王祝海-浮躁的心,http://em.21dtv.com/songs/60113873.mkv +FUN4乐团-反转地球,http://em.21dtv.com/songs/60080396.mkv +潘玮柏-反转地球,http://em.21dtv.com/songs/60016502.mkv +廖百威+肖淑平-风中的梦,http://em.21dtv.com/songs/60017494.mkv +刘小慧-风中的梦(演唱会),http://em.21dtv.com/songs/60017493.mkv +周雅芳-风中的花(无原唱),http://em.21dtv.com/songs/60017488.mkv +刘德华-风中的歌,http://em.21dtv.com/songs/60017486.mkv +良一+吴幸妏-风中的爱,http://em.21dtv.com/songs/60135649.mkv +庄伟斌-风中翅膀,http://em.21dtv.com/songs/60116767.mkv +郁可唯-风中芭蕾,http://em.21dtv.com/songs/60127455.mkv +林峰-非走不可(演唱会),http://em.21dtv.com/songs/60062641.mkv +谢霆锋-非走不可,http://em.21dtv.com/songs/60016954.mkv +彭羚-非走不可,http://em.21dtv.com/songs/60016953.mkv +梁咏琪-非走不可(演唱会),http://em.21dtv.com/songs/60016952.mkv +达明一派-非走不可(演唱会),http://em.21dtv.com/songs/60016951.mkv +陈奕迅-非走不可(演唱会),http://em.21dtv.com/songs/60016950.mkv +佚名-风中奔驰,http://em.21dtv.com/songs/60017479.mkv +解伟苓-放逐爱情,http://em.21dtv.com/songs/60016756.mkv +良一-风雨战神,http://em.21dtv.com/songs/60112166.mkv +庄振凯-风云再起,http://em.21dtv.com/songs/60110177.mkv +陈雷-风云再起,http://em.21dtv.com/songs/60017451.mkv +韦唯-风雨真情,http://em.21dtv.com/songs/60017433.mkv +钟丽燕-枫叶之恋,http://em.21dtv.com/songs/60075400.mkv +超跃-枫叶之歌,http://em.21dtv.com/songs/60061195.mkv +周汤豪-翻页作废,http://em.21dtv.com/songs/60075295.mkv +徐海星-飞檐走壁,http://em.21dtv.com/songs/60105079.mkv +陈明韶-浮云游子(无原唱),http://em.21dtv.com/songs/60017685.mkv +李维-风与叶子,http://em.21dtv.com/songs/60017396.mkv +王翔-飞越一切,http://em.21dtv.com/songs/60064175.mkv +佚名-风雨夜曲,http://em.21dtv.com/songs/60017432.mkv +韦嘉-风雨斜阳,http://em.21dtv.com/songs/60017430.mkv +梁玉嵘-风雨相思(戏曲),http://em.21dtv.com/songs/60092925.mkv +马靖轩-风雨兄弟,http://em.21dtv.com/songs/60105525.mkv +周华健-风雨无阻,http://em.21dtv.com/songs/60017429.mkv +周华健-风雨无阻(演唱会),http://em.21dtv.com/songs/60017428.mkv +梅艳芳-飞跃舞台,http://em.21dtv.com/songs/60092944.mkv +杨千桦+何韵诗+许志安-飞跃舞台,http://em.21dtv.com/songs/60092826.mkv +草蜢-飞跃舞台(演唱会),http://em.21dtv.com/songs/60016895.mkv +杨千嬅+许志安-飞耀舞台(演唱会),http://em.21dtv.com/songs/60016887.mkv +黄妃-风雨无情,http://em.21dtv.com/songs/60017427.mkv +蔡小虎-风雨无情,http://em.21dtv.com/songs/60017426.mkv +许晓杰-风雨同舟,http://em.21dtv.com/songs/60097180.mkv +于乃久-风雨同舟,http://em.21dtv.com/songs/60061193.mkv +林丽-风雨同舟,http://em.21dtv.com/songs/60017425.mkv +金迈-福韵天香,http://em.21dtv.com/songs/60113026.mkv +杨东煜-风云天下,http://em.21dtv.com/songs/60075394.mkv +徐小凤-风雨同路,http://em.21dtv.com/songs/60017424.mkv +徐小凤-风雨同路(演唱会),http://em.21dtv.com/songs/60017423.mkv +吕珊-风雨同路(演唱会),http://em.21dtv.com/songs/60017422.mkv +刘雅丽-风雨同路(演唱会),http://em.21dtv.com/songs/60017421.mkv +黄耀明-风雨同路(演唱会),http://em.21dtv.com/songs/60017420.mkv +黄征-浮游童话(演唱会),http://em.21dtv.com/songs/60017679.mkv +陈秀雯-风云岁月,http://em.21dtv.com/songs/60093493.mkv +郑怡-风有时停,http://em.21dtv.com/songs/60017395.mkv +苏勒亚其其格-风云神话,http://em.21dtv.com/songs/60071932.mkv +VP1-浮游人生,http://em.21dtv.com/songs/60123565.mkv +孙艳-风雨人生,http://em.21dtv.com/songs/60017416.mkv +韩磊-风雨人生,http://em.21dtv.com/songs/60017415.mkv +天籁天+枫舞-风雨情缘,http://em.21dtv.com/songs/60126754.mkv +蔡国权-烽烟情焰,http://em.21dtv.com/songs/60017575.mkv +沪剧-繁漪求萍,http://em.21dtv.com/songs/60066986.mkv +王菲-风雨飘扬,http://em.21dtv.com/songs/60091746.mkv +邓丽君-枫叶飘飘,http://em.21dtv.com/songs/60095100.mkv +佚名-枫叶飘飘,http://em.21dtv.com/songs/60017535.mkv +王军-飞越梦想,http://em.21dtv.com/songs/60075339.mkv +张军-风雨马嵬,http://em.21dtv.com/songs/60117721.mkv +周华健-飞跃迷雾,http://em.21dtv.com/songs/60087579.mkv +周华健-飞越迷雾,http://em.21dtv.com/songs/60016900.mkv +佚名-风雨恋情,http://em.21dtv.com/songs/60095451.mkv +江蕙-风雨恋情(无原唱),http://em.21dtv.com/songs/60017411.mkv +杜德伟-放一颗心(演唱会),http://em.21dtv.com/songs/60016746.mkv +AKI阿杰+小曲儿-凤于九天,http://em.21dtv.com/songs/60128663.mkv +薛之谦-方圆几里,http://em.21dtv.com/songs/60075301.mkv +于樱樱-飞燕驾龙(无原唱),http://em.21dtv.com/songs/60016883.mkv +范春梅-风雨兼程,http://em.21dtv.com/songs/60017410.mkv +程琳-风雨兼程(演唱会),http://em.21dtv.com/songs/60017409.mkv +佚名-for you i will,http://em.21dtv.com/songs/60073221.mkv +何小笙-飞越环宇,http://em.21dtv.com/songs/60093972.mkv +孙楠-飞越海洋(演唱会),http://em.21dtv.com/songs/60016899.mkv +庄学忠-风云豪情,http://em.21dtv.com/songs/60087769.mkv +孙楠-风雨豪情,http://em.21dtv.com/songs/60017408.mkv +陈丽媛-凤阳花鼓,http://em.21dtv.com/songs/60111479.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-凤阳花鼓,http://em.21dtv.com/songs/60075406.mkv +佚名-凤阳花鼓,http://em.21dtv.com/songs/60017612.mkv +吴琼-凤阳花鼓,http://em.21dtv.com/songs/60017611.mkv +周华健-凤阳花鼓(演唱会),http://em.21dtv.com/songs/60017610.mkv +吕珊-凤阳花鼓(演唱会),http://em.21dtv.com/songs/60017609.mkv +上明-帆摇海岸,http://em.21dtv.com/songs/60075294.mkv +刘慧湘-风雨过后,http://em.21dtv.com/songs/60085091.mkv +周俊伟-疯言疯语,http://em.21dtv.com/songs/60017568.mkv +佚名-for your eyes only,http://em.21dtv.com/songs/60001757.mkv +孙楠-飞跃的心,http://em.21dtv.com/songs/60125381.mkv +孙楠-飞越的心(HD),http://em.21dtv.com/songs/10012776.mkv +孙楠组学员-飞越的心,http://em.21dtv.com/songs/60102123.mkv +王梓鑫+郭梦瑶-方言达人,http://em.21dtv.com/songs/60113867.mkv +洪荣宏-风雨断情,http://em.21dtv.com/songs/60100915.mkv +佚名-飞扬的梦(无原唱),http://em.21dtv.com/songs/60016886.mkv +陈瑞-风月渡口,http://em.21dtv.com/songs/60106419.mkv +陈瑞-风月渡口,http://em.21dtv.com/songs/60082917.mkv +阿海-飞跃巅峰,http://em.21dtv.com/songs/60068248.mkv +安博教育-飞扬的a,http://em.21dtv.com/songs/60016885.mkv +郑进一-风雨城市,http://em.21dtv.com/songs/60017405.mkv +群星-风雨操场,http://em.21dtv.com/songs/60017404.mkv +胡美仪-浮云抱月(演唱会),http://em.21dtv.com/songs/60017682.mkv +5566+K NONE-风云变色,http://em.21dtv.com/songs/60017446.mkv +金玲-风雨悲情(无原唱),http://em.21dtv.com/songs/60017401.mkv +黄耀明-风月宝鉴,http://em.21dtv.com/songs/60017439.mkv +薛家燕+合唱团-风雨不改(演唱会),http://em.21dtv.com/songs/60075392.mkv +李翊君-风雨爱人,http://em.21dtv.com/songs/60017400.mkv +徐千雅-芳香之城,http://em.21dtv.com/songs/60016538.mkv +陈司翰-飞行座标,http://em.21dtv.com/songs/60016808.mkv +黑豹乐队-放心走吧,http://em.21dtv.com/songs/60016742.mkv +李大卫+韦小天-封心锁爱,http://em.21dtv.com/songs/60075401.mkv +明道+祝钒刚+黄玉荣-发现真爱,http://em.21dtv.com/songs/60016454.mkv +袁宇-发现袁宇,http://em.21dtv.com/songs/60122099.mkv +张勇-奉献一生,http://em.21dtv.com/songs/60091052.mkv +于台烟-放下一切,http://em.21dtv.com/songs/60016736.mkv +张德兰-焚心以火(演唱会),http://em.21dtv.com/songs/60068253.mkv +叶倩文-焚心以火,http://em.21dtv.com/songs/60017161.mkv +叶德娴-焚心以火(演唱会),http://em.21dtv.com/songs/60017160.mkv +梅艳芳-焚心以火(演唱会),http://em.21dtv.com/songs/60017159.mkv +陈洁灵-焚心以火(演唱会),http://em.21dtv.com/songs/60017158.mkv +胡艾莲-飞向远方,http://em.21dtv.com/songs/60117146.mkv +莫熙儿-飞行云端,http://em.21dtv.com/songs/60064173.mkv +林心如-放心一搏,http://em.21dtv.com/songs/60016741.mkv +洛桑扎西-飞向西藏,http://em.21dtv.com/songs/60016874.mkv +信-风萧萧兮,http://em.21dtv.com/songs/60109985.mkv +信-风萧萧兮,http://em.21dtv.com/songs/60109157.mkv +钟芝铭+赖一心-风雪寻亲,http://em.21dtv.com/songs/60109669.mkv +南拳妈妈-风雪梧桐,http://em.21dtv.com/songs/60017392.mkv +王凡-飞向未来(演唱会),http://em.21dtv.com/songs/60016871.mkv +叶倩文-焚心似火,http://em.21dtv.com/songs/60017157.mkv +祁隆-封心锁爱,http://em.21dtv.com/songs/60082910.mkv +林洪辉+李大卫-封心锁爱,http://em.21dtv.com/songs/60082909.mkv +镜喜-封心锁爱,http://em.21dtv.com/songs/60065969.mkv +十永-放下容下,http://em.21dtv.com/songs/60107552.mkv +SNH48-飞翔入手,http://em.21dtv.com/songs/60085080.mkv +SE7EN-风雪日记,http://em.21dtv.com/songs/60017391.mkv +应昌佑+CHARLES-逢星期四,http://em.21dtv.com/songs/60017578.mkv +童丽-飞雪千年,http://em.21dtv.com/songs/60075337.mkv +小虎队-放心去飞,http://em.21dtv.com/songs/60115114.mkv +群星-放心去飞,http://em.21dtv.com/songs/60112145.mkv +欧豪+杨洋+胡夏-放心去飞,http://em.21dtv.com/songs/60109473.mkv +孙浩+付笛声-放心去飞,http://em.21dtv.com/songs/60089238.mkv +苏有朋-放心去飞,http://em.21dtv.com/songs/60016740.mkv +暴风-风雪飘心,http://em.21dtv.com/songs/60093581.mkv +吴大卫-飞行男人(无原唱),http://em.21dtv.com/songs/60016806.mkv +李玉玺-放下旅行,http://em.21dtv.com/songs/60103364.mkv +王中平-飞向蓝天,http://em.21dtv.com/songs/60109511.mkv +陈慧琳-飞行里数,http://em.21dtv.com/songs/60016805.mkv +芭比-飞翔境界,http://em.21dtv.com/songs/60016864.mkv +双星-福星高照,http://em.21dtv.com/songs/60075417.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-福星高照,http://em.21dtv.com/songs/60075416.mkv +于文华-福星高照,http://em.21dtv.com/songs/60017703.mkv +群星-福星高照,http://em.21dtv.com/songs/60017702.mkv +HAYA乐团-飞翔的鹰,http://em.21dtv.com/songs/60118258.mkv +李利依-飞翔的鹰(演唱会),http://em.21dtv.com/songs/60064172.mkv +王天丽-负心的人(演唱会),http://em.21dtv.com/songs/60082931.mkv +青山-负心的人(演唱会),http://em.21dtv.com/songs/60082930.mkv +潘秀琼+谢雷-负心的人(演唱会),http://em.21dtv.com/songs/60075430.mkv +佚名-负心的人,http://em.21dtv.com/songs/60017762.mkv +龙飘飘-负心的人,http://em.21dtv.com/songs/60017761.mkv +谢雷-负心的人(演唱会),http://em.21dtv.com/songs/60017760.mkv +汪明荃-负心的人(演唱会),http://em.21dtv.com/songs/60017759.mkv +刘明珠-负心的人(演唱会),http://em.21dtv.com/songs/60017758.mkv +余天-负心的人(无原唱),http://em.21dtv.com/songs/60017757.mkv +林翠萍-负心的你,http://em.21dtv.com/songs/60061199.mkv +谷亚潼-繁星点点,http://em.21dtv.com/songs/60120951.mkv +庄心妍-繁星点点,http://em.21dtv.com/songs/60071914.mkv +星弟-放学别走,http://em.21dtv.com/songs/60111133.mkv +黄小琥-放心不下,http://em.21dtv.com/songs/60079928.mkv +动静乐团-放心不下,http://em.21dtv.com/songs/60016739.mkv +F.I.R-飞行部落,http://em.21dtv.com/songs/60016803.mkv +牛朝阳-放心宝贝,http://em.21dtv.com/songs/60016738.mkv +黄乙玲-放我去飞,http://em.21dtv.com/songs/60016728.mkv +刘浩龙-绯闻男友,http://em.21dtv.com/songs/60016958.mkv +宇桐非-非我莫属,http://em.21dtv.com/songs/60016943.mkv +黎明-非我莫属,http://em.21dtv.com/songs/60016942.mkv +黎明-非我莫属(演唱会),http://em.21dtv.com/songs/60016941.mkv +回音哥-废物利用,http://em.21dtv.com/songs/60105720.mkv +吕雪-凤舞九天,http://em.21dtv.com/songs/60100787.mkv +胡红艳-凤舞东方,http://em.21dtv.com/songs/60017608.mkv +樊凡-非我不可,http://em.21dtv.com/songs/60116080.mkv +孙楠-风往北吹,http://em.21dtv.com/songs/60017382.mkv +孙楠-风往北吹(演唱会),http://em.21dtv.com/songs/60017381.mkv +IRENE CARA-flashdance what a feeling,http://em.21dtv.com/songs/60001701.mkv +杜丽莎+陈洁灵-flashdance what a feeling(演唱会),http://em.21dtv.com/songs/60001700.mkv +郑伊健-for u and me,http://em.21dtv.com/songs/60069080.mkv +陈思思-风调雨顺,http://em.21dtv.com/songs/60017380.mkv +李韵菲-菲同一般,http://em.21dtv.com/songs/60132569.mkv +伍佰-风台心情,http://em.21dtv.com/songs/60017379.mkv +陆毅-非同寻常,http://em.21dtv.com/songs/60016940.mkv +陆毅-非同寻常(演唱会),http://em.21dtv.com/songs/60016939.mkv +陈慧琳-飞天舞会,http://em.21dtv.com/songs/60016854.mkv +陈升-发条兔子(无原唱),http://em.21dtv.com/songs/60016444.mkv +刘晶-飞天神韵,http://em.21dtv.com/songs/60110028.mkv +老五-飞天盛世,http://em.21dtv.com/songs/60069384.mkv +SHANIA TWAIN-from this moment on,http://em.21dtv.com/songs/60001811.mkv +谭晶-飞天利箭,http://em.21dtv.com/songs/60129620.mkv +李逸郎+将雅文-风头火势,http://em.21dtv.com/songs/60092816.mkv +K.KRISTOFFERSON-for the good times,http://em.21dtv.com/songs/60001750.mkv +佚名-for the first time,http://em.21dtv.com/songs/60001747.mkv +THE SCRIPT-for the first time,http://em.21dtv.com/songs/60001746.mkv +VICTORIOUS CAST & VICTORIA JUS-freak the freak out,http://em.21dtv.com/songs/60073224.mkv +林欣彤-非同儿戏(演唱会),http://em.21dtv.com/songs/60064177.mkv +宇桐非-赴汤蹈火,http://em.21dtv.com/songs/60017770.mkv +郎军-分手之前,http://em.21dtv.com/songs/60106321.mkv +于台烟-分手之前,http://em.21dtv.com/songs/60017130.mkv +王中平-蕃薯仔命,http://em.21dtv.com/songs/60064163.mkv +满溢+小馨-付送折磨,http://em.21dtv.com/songs/60017750.mkv +泳儿-浮沙之路,http://em.21dtv.com/songs/60128170.mkv +泳儿-浮沙之路,http://em.21dtv.com/songs/60121862.mkv +谷峰-放松自己,http://em.21dtv.com/songs/60092125.mkv +柯有伦-放手之后,http://em.21dtv.com/songs/60106994.mkv +Davichi-分手再会,http://em.21dtv.com/songs/60101749.mkv +音乐铁人-分手之后,http://em.21dtv.com/songs/60075367.mkv +佚名-丰收之歌,http://em.21dtv.com/songs/60017203.mkv +黄征-风尚征程,http://em.21dtv.com/songs/60017359.mkv +李行亮-放手重爱,http://em.21dtv.com/songs/60106960.mkv +福茂女朋友-放肆一下,http://em.21dtv.com/songs/60113915.mkv +陈明-浮世英雄,http://em.21dtv.com/songs/60093474.mkv +钟洁-分手游戏,http://em.21dtv.com/songs/60082905.mkv +周子寒-放肆一下(无原唱),http://em.21dtv.com/songs/60016723.mkv +Rill+陌小聪-分手意外,http://em.21dtv.com/songs/60129981.mkv +陈势安-分手艺术,http://em.21dtv.com/songs/60103673.mkv +佚名-风声雨声,http://em.21dtv.com/songs/60017371.mkv +区瑞强-风声雨声,http://em.21dtv.com/songs/60017370.mkv +东方依依-分手以前,http://em.21dtv.com/songs/60120275.mkv +范小倩-分手以后,http://em.21dtv.com/songs/60114745.mkv +望海高歌-分手以后,http://em.21dtv.com/songs/60109408.mkv +涓子-分手以后,http://em.21dtv.com/songs/60101660.mkv +黄永兴-分手以后,http://em.21dtv.com/songs/60097176.mkv +海哲明-分手以后,http://em.21dtv.com/songs/60071927.mkv +王小尧-分手以后,http://em.21dtv.com/songs/60070681.mkv +子夕-分手以后,http://em.21dtv.com/songs/60067001.mkv +叶倩文-焚身以火(演唱会),http://em.21dtv.com/songs/60061190.mkv +张爽-分手以后,http://em.21dtv.com/songs/60017120.mkv +张杰-分手以后,http://em.21dtv.com/songs/60017119.mkv +彤杰-分手以后,http://em.21dtv.com/songs/60017118.mkv +阿当失忆-分手以后,http://em.21dtv.com/songs/60017117.mkv +吴雨霏-分手要狠,http://em.21dtv.com/songs/60017112.mkv +三郎-放手一搏,http://em.21dtv.com/songs/60133319.mkv +谢伟伦-放手一搏,http://em.21dtv.com/songs/60124486.mkv +钟镇宇-放手一搏,http://em.21dtv.com/songs/60116321.mkv +林晓培-放手一搏,http://em.21dtv.com/songs/60016719.mkv +5566-放手一搏,http://em.21dtv.com/songs/60016718.mkv +游媄镁-放松心情(无原唱),http://em.21dtv.com/songs/60016725.mkv +许嵩-粉色信笺,http://em.21dtv.com/songs/60017180.mkv +谢天笑-风是外衣,http://em.21dtv.com/songs/60110538.mkv +艺涛-分手无言,http://em.21dtv.com/songs/60075364.mkv +毕书尽-浮生未歇,http://em.21dtv.com/songs/60086549.mkv +墨明棋妙-浮生未歇,http://em.21dtv.com/songs/60069397.mkv +佚名-丰收舞曲,http://em.21dtv.com/songs/60017202.mkv +李逸朗-粉饰太平,http://em.21dtv.com/songs/60017181.mkv +赵心怡-放手太难,http://em.21dtv.com/songs/60135773.mkv +坤少-放手太难,http://em.21dtv.com/songs/60131300.mkv +苏永康-分手天才,http://em.21dtv.com/songs/60101487.mkv +糖兄+龚柯允-富士山下,http://em.21dtv.com/songs/60124334.mkv +李克勤-富士山下,http://em.21dtv.com/songs/60112744.mkv +陈奕迅-富士山下,http://em.21dtv.com/songs/60017788.mkv +刘美君-富士山下(演唱会),http://em.21dtv.com/songs/60017787.mkv +陈奕迅-富士山下(HD演唱会),http://em.21dtv.com/songs/60017786.mkv +杜歌+令狐+耀阳-风生水起,http://em.21dtv.com/songs/60133833.mkv +李潮-风生水起,http://em.21dtv.com/songs/60070686.mkv +农夫-风生水起(演唱会),http://em.21dtv.com/songs/60017362.mkv +农夫+王祖蓝-风生水起(演唱会),http://em.21dtv.com/songs/60017361.mkv +农夫+麦玲玲-风生水起(演唱会),http://em.21dtv.com/songs/60017360.mkv +王祖蓝+农夫-风山水起(演唱会),http://em.21dtv.com/songs/60017358.mkv +菲儿-分手算了,http://em.21dtv.com/songs/60017110.mkv +倪尔萍-粉身碎骨,http://em.21dtv.com/songs/60068254.mkv +林峰-浮生若水(演唱会),http://em.21dtv.com/songs/60017675.mkv +李青菁-分手日期,http://em.21dtv.com/songs/60100170.mkv +谢莉婷-浮生若梦,http://em.21dtv.com/songs/60126204.mkv +娅琳-浮生若梦,http://em.21dtv.com/songs/60122647.mkv +孔雀哥哥-浮生若梦,http://em.21dtv.com/songs/60106763.mkv +DJ Black仔哥-浮生如梦,http://em.21dtv.com/songs/60098986.mkv +一绫+周慧璇-浮世如梦,http://em.21dtv.com/songs/60017677.mkv +黄瑜娴-浮生若梦(无原唱),http://em.21dtv.com/songs/60017674.mkv +高娅媛-分手日记,http://em.21dtv.com/songs/60017108.mkv +文君-枫思秋月,http://em.21dtv.com/songs/60101356.mkv +魏晨-分身情人,http://em.21dtv.com/songs/60017026.mkv +凤飞飞-浮世情怀,http://em.21dtv.com/songs/60017676.mkv +风语-分手情歌,http://em.21dtv.com/songs/60133101.mkv +王强-分手情歌,http://em.21dtv.com/songs/60075363.mkv +吴思贤-放手去爱,http://em.21dtv.com/songs/60127829.mkv +尹熙水-放手去爱,http://em.21dtv.com/songs/60082893.mkv +吴紫涵-放手去爱,http://em.21dtv.com/songs/60016714.mkv +迪克牛仔-放手去爱,http://em.21dtv.com/songs/60016713.mkv +李度+郭子-放手去爱(演唱会),http://em.21dtv.com/songs/60016712.mkv +郭子+李度-放手去爱(无原唱),http://em.21dtv.com/songs/60016711.mkv +BOYZ II MEN-four seasons of loneliness,http://em.21dtv.com/songs/60001786.mkv +于文文-分手那天,http://em.21dtv.com/songs/60105562.mkv +徐靖博-分手那天,http://em.21dtv.com/songs/60017101.mkv +宁菲儿-分手那天,http://em.21dtv.com/songs/60017100.mkv +郭玲-分手那天,http://em.21dtv.com/songs/60017099.mkv +萧全-覆水难收(舞曲版),http://em.21dtv.com/songs/60067013.mkv +彭丽丽-覆水难收,http://em.21dtv.com/songs/60065978.mkv +萧全-覆水难收,http://em.21dtv.com/songs/60017789.mkv +尹光-飞甩名模(演唱会),http://em.21dtv.com/songs/60061180.mkv +刘贤维-分手练习,http://em.21dtv.com/songs/60093642.mkv +万芳-分手旅行,http://em.21dtv.com/songs/60017098.mkv +左光平+张芷榕-分手礼物,http://em.21dtv.com/songs/60017097.mkv +陈慧琳-飞沙流情,http://em.21dtv.com/songs/60093470.mkv +带泪的鱼+蝎子-放手了吗,http://em.21dtv.com/songs/60075320.mkv +熊猫团-分手路口,http://em.21dtv.com/songs/60128197.mkv +叶振棠-浮生六劫,http://em.21dtv.com/songs/60017672.mkv +关正杰-浮生六劫,http://em.21dtv.com/songs/60017671.mkv +胡灵+苏醒-分手恋爱(演唱会),http://em.21dtv.com/songs/60071924.mkv +冰淇-分手快乐,http://em.21dtv.com/songs/60082904.mkv +咪依鲁江-放手快乐,http://em.21dtv.com/songs/60075319.mkv +动力火车-分手快乐,http://em.21dtv.com/songs/60068251.mkv +群星-分手快乐,http://em.21dtv.com/songs/60017088.mkv +聂云-分手快乐,http://em.21dtv.com/songs/60017087.mkv +梁静茹-分手快乐,http://em.21dtv.com/songs/60017086.mkv +梁静茹+黄嘉千+汪佩蓉-分手快乐,http://em.21dtv.com/songs/60017085.mkv +郭静-分手看看,http://em.21dtv.com/songs/60131892.mkv +钟洁-分手假期,http://em.21dtv.com/songs/60063453.mkv +魏然+可可-分手寂寞,http://em.21dtv.com/songs/60075359.mkv +汪苏泷-分手季节,http://em.21dtv.com/songs/60066999.mkv +阿浩-分手季节,http://em.21dtv.com/songs/60017082.mkv +婷婷-分手剪刀(无原唱),http://em.21dtv.com/songs/60017083.mkv +阿庆+SHELLY佳-分手合约,http://em.21dtv.com/songs/60085085.mkv +淡迷恋-分手合约,http://em.21dtv.com/songs/60082902.mkv +关心妍-浮生花园,http://em.21dtv.com/songs/60017670.mkv +芭比-放肆黑夜,http://em.21dtv.com/songs/60016722.mkv +徐颢菲-风色幻想,http://em.21dtv.com/songs/60017354.mkv +张津涤+云菲菲-泛水荷塘,http://em.21dtv.com/songs/60110203.mkv +小琢-泛水荷塘,http://em.21dtv.com/songs/60108457.mkv +小琢-泛水荷塘,http://em.21dtv.com/songs/60106790.mkv +蓝雨-风声鹤起,http://em.21dtv.com/songs/60017368.mkv +蓝雨-风声鹤淚,http://em.21dtv.com/songs/60088593.mkv +蓝雨-风声鹤唳(演唱会),http://em.21dtv.com/songs/60017367.mkv +杨东煜-分手感言,http://em.21dtv.com/songs/60017068.mkv +孙楠-防守孤单,http://em.21dtv.com/songs/60016545.mkv +孙浩雨-放声高唱,http://em.21dtv.com/songs/60110986.mkv +苏永康-分手分手,http://em.21dtv.com/songs/60100947.mkv +王星星+鱼儿-分手的鱼,http://em.21dtv.com/songs/60097177.mkv +佚名-翻身道情,http://em.21dtv.com/songs/60016462.mkv +Super Girls-分手的美,http://em.21dtv.com/songs/60128706.mkv +Super Girls-分手的美,http://em.21dtv.com/songs/60126551.mkv +上官晓懿+常闻迪+罗小虎-分手典礼,http://em.21dtv.com/songs/60103055.mkv +庄妮-放声大哭,http://em.21dtv.com/songs/60016691.mkv +张瀛仁-分手的话,http://em.21dtv.com/songs/60017051.mkv +佚名-分手的话(无原唱),http://em.21dtv.com/songs/60017050.mkv +汤加丽-分手对白,http://em.21dtv.com/songs/60017067.mkv +乔洋-分手潮流,http://em.21dtv.com/songs/60075353.mkv +吴陌川-分手不哭,http://em.21dtv.com/songs/60135032.mkv +大支-非死不可(HD),http://em.21dtv.com/songs/10012754.mkv +大支-非死不可,http://em.21dtv.com/songs/60099174.mkv +吴炜-分手不哭,http://em.21dtv.com/songs/60087565.mkv +羽泉-风声边界,http://em.21dtv.com/songs/60017365.mkv +刘美君+麦家瑜-妇人之见(演唱会),http://em.21dtv.com/songs/60017768.mkv +王子沐-浮若余生,http://em.21dtv.com/songs/60100309.mkv +冷漠,云菲菲-芙蓉小镇,http://em.21dtv.com/songs/60105625.mkv +冷漠+云菲菲-芙蓉小镇,http://em.21dtv.com/songs/60017651.mkv +古天乐-放任天堂,http://em.21dtv.com/songs/60092395.mkv +邹文正-非人生活,http://em.21dtv.com/songs/60075342.mkv +阿九-仿若千年,http://em.21dtv.com/songs/60106364.mkv +郑秀文-From Ashes To Beauty,http://em.21dtv.com/songs/60096512.mkv +王蓉-芙蓉姐夫,http://em.21dtv.com/songs/60017650.mkv +彭羚-彷如隔世,http://em.21dtv.com/songs/60033182.mkv +彭羚-彷如隔世(演唱会),http://em.21dtv.com/songs/60033181.mkv +彭羚-仿如隔世,http://em.21dtv.com/songs/60016550.mkv +戴梅君-放阮孤单,http://em.21dtv.com/songs/60016680.mkv +郑秀文-发热发亮,http://em.21dtv.com/songs/60016435.mkv +郑秀文-发热发亮(演唱会),http://em.21dtv.com/songs/60016434.mkv +许志安+陈慧琳+ON+LIN-发热发亮(演唱会),http://em.21dtv.com/songs/60016433.mkv +陈奕迅+梁汉文-发热发亮(演唱会),http://em.21dtv.com/songs/60016432.mkv +田媛-烦人的雨,http://em.21dtv.com/songs/60097407.mkv +庄学忠-负人的心,http://em.21dtv.com/songs/60087767.mkv +李贤-芙蓉出水,http://em.21dtv.com/songs/60017649.mkv +张美仪-疯人不癫,http://em.21dtv.com/songs/60130333.mkv +余天+李亚萍-夫妻之歌,http://em.21dtv.com/songs/60017644.mkv +张智霖-风起云涌,http://em.21dtv.com/songs/60113470.mkv +吴启华-风起云涌,http://em.21dtv.com/songs/60095272.mkv +侯旭-放弃一切,http://em.21dtv.com/songs/60123632.mkv +张宇-放弃一切,http://em.21dtv.com/songs/60016673.mkv +流苏-风清云淡,http://em.21dtv.com/songs/60110345.mkv +陈慧琳-放轻一点,http://em.21dtv.com/songs/60016676.mkv +MODS-枫桥夜泊,http://em.21dtv.com/songs/60075397.mkv +童唱-枫桥夜泊,http://em.21dtv.com/songs/60017532.mkv +小文-风清向晚,http://em.21dtv.com/songs/60070685.mkv +王爱华-风清向晚,http://em.21dtv.com/songs/60068258.mkv +苏阳-夫妻小唱(演唱会),http://em.21dtv.com/songs/60067011.mkv +HITA-风情万种,http://em.21dtv.com/songs/60101596.mkv +曾雨轩-风情万种,http://em.21dtv.com/songs/60097181.mkv +河图-风起天阑,http://em.21dtv.com/songs/60017351.mkv +王昆-夫妻识字,http://em.21dtv.com/songs/60116143.mkv +魏金栋+周灵燕-夫妻识字,http://em.21dtv.com/songs/60017639.mkv +任军太-父亲是山,http://em.21dtv.com/songs/60099078.mkv +任军太-父亲是山(演唱会),http://em.21dtv.com/songs/60062861.mkv +伦永亮+雷颂德-放弃世界,http://em.21dtv.com/songs/60097329.mkv +许志安-放弃世界,http://em.21dtv.com/songs/60016663.mkv +雷颂德-放弃世界(演唱会),http://em.21dtv.com/songs/60016662.mkv +韦嘉-风轻轻吹,http://em.21dtv.com/songs/60017352.mkv +佚名-繁绮盘凤,http://em.21dtv.com/songs/60016483.mkv +黄宇涛-父亲母亲,http://em.21dtv.com/songs/60122303.mkv +永邦-放弃了她,http://em.21dtv.com/songs/60091578.mkv +腾格尔-父亲和我,http://em.21dtv.com/songs/60017735.mkv +伍佰-返去故乡,http://em.21dtv.com/songs/60016510.mkv +伍佰-返去故乡(演唱会),http://em.21dtv.com/songs/60016509.mkv +童丽-夫妻观灯,http://em.21dtv.com/songs/60075408.mkv +韩再芬+李迎春-夫妻观灯,http://em.21dtv.com/songs/60017635.mkv +刘和刚-父亲的手,http://em.21dtv.com/songs/60125176.mkv +佚名-夫妻逗趣,http://em.21dtv.com/songs/60017634.mkv +婧-放弃爱你,http://em.21dtv.com/songs/60016658.mkv +INFERNAL-from paris to berlin,http://em.21dtv.com/songs/60001807.mkv +赵学而-反叛情歌,http://em.21dtv.com/songs/60016497.mkv +思卫(Sway)-反拍女孩,http://em.21dtv.com/songs/60132482.mkv +夏婉安+上官晓懿-反叛恋爱,http://em.21dtv.com/songs/60121530.mkv +彭炽权+曾慧-放裴恨别(戏曲),http://em.21dtv.com/songs/60092665.mkv +吉杰-返璞归真,http://em.21dtv.com/songs/60094842.mkv +邰正宵-返朴归真,http://em.21dtv.com/songs/60016508.mkv +WINNER-FOOL,http://em.21dtv.com/songs/60134822.mkv +GIN BLOSSOMS-found out about you,http://em.21dtv.com/songs/60001785.mkv +叶胜钦-放你自由,http://em.21dtv.com/songs/60016649.mkv +王雅洁-放你自由,http://em.21dtv.com/songs/60016648.mkv +王雅-放你自由,http://em.21dtv.com/songs/60016647.mkv +杨千嬅-飞女正传,http://em.21dtv.com/songs/60016841.mkv +邓建明+黄丹仪-飞女正传,http://em.21dtv.com/songs/60016840.mkv +杨千嬅+丁子高-飞女正传(演唱会),http://em.21dtv.com/songs/60016839.mkv +吴雨霏-飞女正传(演唱会),http://em.21dtv.com/songs/60016838.mkv +孙耀威-飞女正传(演唱会),http://em.21dtv.com/songs/60016837.mkv +齐豫-飞鸟与鱼,http://em.21dtv.com/songs/60016836.mkv +齐豫-飞鸟与鱼(演唱会),http://em.21dtv.com/songs/60016835.mkv +海俊杰-愤怒时速,http://em.21dtv.com/songs/60017198.mkv +佚名-friends never say goodbye,http://em.21dtv.com/songs/60001801.mkv +吴进法+肖惠文-父女情深,http://em.21dtv.com/songs/60104881.mkv +叶胜钦-放你去飞,http://em.21dtv.com/songs/60075313.mkv +陈慧琳-烦恼配方,http://em.21dtv.com/songs/60016477.mkv +王渝+林志炫-非你莫属,http://em.21dtv.com/songs/60016938.mkv +林依晨-非你莫属,http://em.21dtv.com/songs/60016937.mkv +TANK-非你莫属,http://em.21dtv.com/songs/60016936.mkv +陈兴瑜-非你莫嫁,http://em.21dtv.com/songs/60098853.mkv +雪崩乐队-菲尼克斯,http://em.21dtv.com/songs/60128573.mkv +邱锋泽-菲尼克斯,http://em.21dtv.com/songs/60101527.mkv +吕雯-飞鸟和鱼,http://em.21dtv.com/songs/60103974.mkv +萨顶顶-飞鸟和花,http://em.21dtv.com/songs/60016833.mkv +新宝岛康乐队-粉鸟工厂,http://em.21dtv.com/songs/60105092.mkv +郑秀文-非男非女,http://em.21dtv.com/songs/60111448.mkv +郑秀文-非男非女,http://em.21dtv.com/songs/60016933.mkv +郑秀文-非男非女(演唱会),http://em.21dtv.com/songs/60016932.mkv +郁可唯-福难不难,http://em.21dtv.com/songs/60069399.mkv +张瀛仁-非你不可,http://em.21dtv.com/songs/60135221.mkv +V、Jin-非你不可,http://em.21dtv.com/songs/60131119.mkv +陈势安-非你不可,http://em.21dtv.com/songs/60081857.mkv +顾莉雅-非你不可,http://em.21dtv.com/songs/60080965.mkv +艺声-非你不可,http://em.21dtv.com/songs/60070675.mkv +辛晓琪-非你不等,http://em.21dtv.com/songs/60016935.mkv +弦子-非你不爱,http://em.21dtv.com/songs/60016934.mkv +徐晶晶-父母祖国,http://em.21dtv.com/songs/60094116.mkv +周怡然-父母之爱,http://em.21dtv.com/songs/60075423.mkv +卓义峰-贩卖温柔,http://em.21dtv.com/songs/60016523.mkv +黄妃-反面无情,http://em.21dtv.com/songs/60102964.mkv +THE BEATLES-from me to you,http://em.21dtv.com/songs/60001805.mkv +玖月奇迹-放马山歌(演唱会),http://em.21dtv.com/songs/60085075.mkv +玖月奇迹-放马山歌,http://em.21dtv.com/songs/60082888.mkv +佚名-放马山歌,http://em.21dtv.com/songs/60016640.mkv +圣雨-粉墨散场,http://em.21dtv.com/songs/60075370.mkv +陈志明-父母生成,http://em.21dtv.com/songs/60017717.mkv +卫东-封面人物,http://em.21dtv.com/songs/60094014.mkv +李昱和-粉墨人生,http://em.21dtv.com/songs/60081071.mkv +零点乐队-粉墨人生(演唱会),http://em.21dtv.com/songs/60017179.mkv +黑鸭子演唱组-福满人间,http://em.21dtv.com/songs/60017694.mkv +张也-粉墨情缘,http://em.21dtv.com/songs/60017178.mkv +刘一祯-父母情深,http://em.21dtv.com/songs/60017716.mkv +汤媛媛-放牧情歌,http://em.21dtv.com/songs/60064169.mkv +唐大聪-父命难为,http://em.21dtv.com/songs/60133504.mkv +梅艳芳-封面女郎,http://em.21dtv.com/songs/60017538.mkv +杨千嬅-封面女郎(演唱会),http://em.21dtv.com/songs/60017537.mkv +李雪-福满农家,http://em.21dtv.com/songs/60069398.mkv +李雪-福满农家(演唱会),http://em.21dtv.com/songs/60064209.mkv +罗时丰-放袂落心,http://em.21dtv.com/songs/60016644.mkv +魏晨-封面恋人,http://em.21dtv.com/songs/60081192.mkv +林少纬-放袂记你,http://em.21dtv.com/songs/60112022.mkv +TWINS-分秒紧记,http://em.21dtv.com/songs/60092208.mkv +瑶瑶-非梦非花,http://em.21dtv.com/songs/60113894.mkv +赵传-粉墨登场,http://em.21dtv.com/songs/60017177.mkv +佚名-粉墨登场,http://em.21dtv.com/songs/60017176.mkv +宋伶俐-父母草原,http://em.21dtv.com/songs/60071937.mkv +丁晓红-凤鸣朝阳,http://em.21dtv.com/songs/60017605.mkv +丁晓红-凤鸣朝阳(演唱会),http://em.21dtv.com/songs/60017604.mkv +谭晶-粉墨春秋,http://em.21dtv.com/songs/60075369.mkv +成于申-飞龙在天,http://em.21dtv.com/songs/60116844.mkv +贾静雯+江宏恩-飞龙在天,http://em.21dtv.com/songs/60095931.mkv +群星-飞龙在天,http://em.21dtv.com/songs/60016825.mkv +佚名-飞龙在天(无原唱),http://em.21dtv.com/songs/60016824.mkv +田芯儿-风铃在哭,http://em.21dtv.com/songs/60061192.mkv +魔幻力量-放了自己(演唱会),http://em.21dtv.com/songs/60062772.mkv +MP魔幻力量-放了自己,http://em.21dtv.com/songs/60062114.mkv +杨静-返来作伴,http://em.21dtv.com/songs/60130476.mkv +胡美仪-风流韵事(演唱会),http://em.21dtv.com/songs/60017343.mkv +苏姗-风里有歌(演唱会),http://em.21dtv.com/songs/60075387.mkv +彭丽媛-父老乡亲,http://em.21dtv.com/songs/60017712.mkv +彭丽媛-父老乡亲(演唱会),http://em.21dtv.com/songs/60017711.mkv +佚名-枫林小桥,http://em.21dtv.com/songs/60017531.mkv +江蕾-枫林小桥,http://em.21dtv.com/songs/60017530.mkv +欧霖-放浪形骸,http://em.21dtv.com/songs/60124172.mkv +伍佰+China Blue-放浪舞者,http://em.21dtv.com/songs/60131157.mkv +尹光+曾慧-风流天子,http://em.21dtv.com/songs/60064199.mkv +邓志驹-风流天子,http://em.21dtv.com/songs/60017341.mkv +秀兰玛雅-放浪人生,http://em.21dtv.com/songs/60093905.mkv +佚名-放浪人生,http://em.21dtv.com/songs/60016634.mkv +叶启田-放浪人生,http://em.21dtv.com/songs/60016633.mkv +洪一峰-放浪人生,http://em.21dtv.com/songs/60016632.mkv +方大同+王力宏-FLOW,http://em.21dtv.com/songs/60125615.mkv +彭佳慧-风流女生,http://em.21dtv.com/songs/60017340.mkv +郭富城-风里密码,http://em.21dtv.com/songs/60017318.mkv +郭富城-风里密码(演唱会),http://em.21dtv.com/songs/60017317.mkv +E.MCDANIELS-feel like making love(无原唱),http://em.21dtv.com/songs/60001651.mkv +卓依婷+郑怡萍-风流哥哥,http://em.21dtv.com/songs/60056276.mkv +丁菲飞-飞来飞去,http://em.21dtv.com/songs/60092232.mkv +黑龙-疯了疯了,http://em.21dtv.com/songs/60110736.mkv +卓文萱-疯了疯了,http://em.21dtv.com/songs/60017564.mkv +谢峥-伏龙凤雏,http://em.21dtv.com/songs/60134230.mkv +杨千嬅-芬梨道上,http://em.21dtv.com/songs/60017148.mkv +孟庭苇-风里的梦,http://em.21dtv.com/songs/60017316.mkv +王星+小豆-飞来的爱,http://em.21dtv.com/songs/60098642.mkv +伍华+俞文靖-枫林残忆,http://em.21dtv.com/songs/60082911.mkv +KENNY CHESNEY-feel like a rockstar,http://em.21dtv.com/songs/60067885.mkv +佚名-fly like an eagle,http://em.21dtv.com/songs/60001718.mkv +黄铃-疯狂着迷,http://em.21dtv.com/songs/60017557.mkv +黄淇-疯狂着迷(无原唱),http://em.21dtv.com/songs/60017556.mkv +FUYING+SAM-分开以后,http://em.21dtv.com/songs/60085084.mkv +王赴颖+沉展宁-分开以后,http://em.21dtv.com/songs/60075349.mkv +郎恒-分开以后,http://em.21dtv.com/songs/60075348.mkv +唐禹哲-分开以后,http://em.21dtv.com/songs/60017016.mkv +孟文豪-疯狂西游(舞曲版),http://em.21dtv.com/songs/60017555.mkv +任军太-疯狂舞台(演唱会),http://em.21dtv.com/songs/60017554.mkv +谢霆锋-分开数年,http://em.21dtv.com/songs/60079991.mkv +罗忆诗-疯狂世界,http://em.21dtv.com/songs/60126034.mkv +周璇-疯狂世界,http://em.21dtv.com/songs/60017553.mkv +五月天-疯狂世界,http://em.21dtv.com/songs/60017552.mkv +程响-分开那天,http://em.21dtv.com/songs/60107934.mkv +程响-分开那天,http://em.21dtv.com/songs/60082900.mkv +刘若英+黄立行-分开旅行,http://em.21dtv.com/songs/60017012.mkv +云天组合+云开-放开了手,http://em.21dtv.com/songs/60016618.mkv +钟舒漫-放开镜头,http://em.21dtv.com/songs/60122203.mkv +谢雷-放开就飞(无原唱),http://em.21dtv.com/songs/60016617.mkv +薛凯琪+方大同-复刻回忆,http://em.21dtv.com/songs/60017777.mkv +杨东煜-疯狂歌曲,http://em.21dtv.com/songs/60017550.mkv +盖玺-疯狂的心,http://em.21dtv.com/songs/60128260.mkv +音乐走廊+歌一生-风卷珠帘,http://em.21dtv.com/songs/60121143.mkv +何韵诗-风见志郎,http://em.21dtv.com/songs/60092284.mkv +王文-凤姐之歌,http://em.21dtv.com/songs/60098641.mkv +刘梦涵-放假一天,http://em.21dtv.com/songs/60089167.mkv +李逸朗+郑敬基-风继续追,http://em.21dtv.com/songs/60111174.mkv +CHINABLUE+伍佰-风飓心情,http://em.21dtv.com/songs/60095370.mkv +古巨基-风继续吹,http://em.21dtv.com/songs/60134987.mkv +李克勤-风继续吹,http://em.21dtv.com/songs/60119652.mkv +晓月-风剪西窗,http://em.21dtv.com/songs/60098422.mkv +晓月+枫桥-风剪西窗,http://em.21dtv.com/songs/60064197.mkv +张国荣-风继续吹,http://em.21dtv.com/songs/60017311.mkv +张伟文-风继续吹(演唱会),http://em.21dtv.com/songs/60017310.mkv +张国荣-风继续吹(演唱会),http://em.21dtv.com/songs/60017309.mkv +农夫-富甲天下(演唱会),http://em.21dtv.com/songs/60017785.mkv +钟洁+王瑞淇-附近的人,http://em.21dtv.com/songs/60082932.mkv +钟欣桐-非君不嫁,http://em.21dtv.com/songs/60105448.mkv +THE LUMINEERS-flowers in your hair,http://em.21dtv.com/songs/60082157.mkv +TRAVIS-flowers in the window,http://em.21dtv.com/songs/60001708.mkv +萱萱-Footprints In The Sand,http://em.21dtv.com/songs/60081562.mkv +LEONA LEWIS-footprints in the sand,http://em.21dtv.com/songs/60001736.mkv +Conan O'Brien+朴振英+Steven Yeun-Fire,http://em.21dtv.com/songs/60134657.mkv +姜鹏-Fire,http://em.21dtv.com/songs/60133547.mkv +防弹少年团-FIRE,http://em.21dtv.com/songs/60126340.mkv +1931组合-Fire,http://em.21dtv.com/songs/60116428.mkv +佚名-friends in low place(无原唱),http://em.21dtv.com/songs/60001800.mkv +DAVID HASSELHOFF-fallinin love again,http://em.21dtv.com/songs/60001616.mkv +NEIL DIAMOND-forever in blue jeans,http://em.21dtv.com/songs/60001763.mkv +佚名-飞花逐月,http://em.21dtv.com/songs/60016815.mkv +陈思思-风华正茂,http://em.21dtv.com/songs/60064195.mkv +成于申-凤凰之恋,http://em.21dtv.com/songs/60105911.mkv +成于申-凤凰之恋,http://em.21dtv.com/songs/60094124.mkv +DJ舞曲-凤凰展翅(DJ),http://em.21dtv.com/songs/30000579.mkv +凤凰传奇-凤凰展翅,http://em.21dtv.com/songs/60113284.mkv +司徒兰芳-凤凰展翅,http://em.21dtv.com/songs/60017603.mkv +梦苇-凤凰于飞,http://em.21dtv.com/songs/60125821.mkv +孙俪-凤凰于飞(演唱会),http://em.21dtv.com/songs/60082923.mkv +华娃-凤凰于飞(演唱会),http://em.21dtv.com/songs/60082922.mkv +莫旭秋-凤凰于飞(演唱会),http://em.21dtv.com/songs/60075405.mkv +刘欢-凤凰于飞(演唱会),http://em.21dtv.com/songs/60069395.mkv +卓依婷-凤凰于飞,http://em.21dtv.com/songs/60017601.mkv +周璇-凤凰于飞,http://em.21dtv.com/songs/60017600.mkv +甄秀珍-凤凰于飞,http://em.21dtv.com/songs/60017599.mkv +费玉清-凤凰于飞,http://em.21dtv.com/songs/60017598.mkv +邱少英-风花雪月,http://em.21dtv.com/songs/60100499.mkv +张敬轩-风花雪语,http://em.21dtv.com/songs/60082916.mkv +赵云红-风花雪月,http://em.21dtv.com/songs/60069393.mkv +佚名-风花雪月,http://em.21dtv.com/songs/60017307.mkv +TIZZY BAC-饭后甜心,http://em.21dtv.com/songs/60085071.mkv +容中尔甲-凤凰天堂,http://em.21dtv.com/songs/60017597.mkv +容中尔甲-凤凰天堂(演唱会),http://em.21dtv.com/songs/60017596.mkv +ENGELBERT HUMPERDINC-from here to eternity,http://em.21dtv.com/songs/60001804.mkv +荒山亮-焚化誓言,http://em.21dtv.com/songs/60017155.mkv +苏亚-风华少年,http://em.21dtv.com/songs/60070684.mkv +刘若英-风和日丽,http://em.21dtv.com/songs/60017303.mkv +谭耀文-烽火情天,http://em.21dtv.com/songs/60017574.mkv +佚名-放乎轻松(无原唱),http://em.21dtv.com/songs/60016605.mkv +严龙+门丽-凤凰情歌,http://em.21dtv.com/songs/60117529.mkv +严龙+秦御峰-凤凰情歌,http://em.21dtv.com/songs/60065972.mkv +刘怡君-粉红女人,http://em.21dtv.com/songs/60081934.mkv +张寒-凤凰涅盘,http://em.21dtv.com/songs/60017595.mkv +刘德华-峰回路转,http://em.21dtv.com/songs/60094832.mkv +巫启贤-峰回路转,http://em.21dtv.com/songs/60017573.mkv +罗文-峰回路转,http://em.21dtv.com/songs/60017572.mkv +刘昱贤-烽火狼烟,http://em.21dtv.com/songs/60122523.mkv +吴浩康-浮华乱世,http://em.21dtv.com/songs/60017661.mkv +岳佳-风华佳月,http://em.21dtv.com/songs/60104088.mkv +陈奕迅-芳华绝代,http://em.21dtv.com/songs/60093407.mkv +陈瑞-风华绝代,http://em.21dtv.com/songs/60068257.mkv +梅艳芳-芳华绝代(演唱会),http://em.21dtv.com/songs/60016537.mkv +梅艳芳+张国荣-芳华绝代(演唱会),http://em.21dtv.com/songs/60016536.mkv +郝鹏鹏-凤凰花开,http://em.21dtv.com/songs/60130796.mkv +杨钰莹-凤凰姑娘,http://em.21dtv.com/songs/60017590.mkv +贯诗钦-繁华过后,http://em.21dtv.com/songs/60106298.mkv +群星-凤凰飞翔,http://em.21dtv.com/songs/60017589.mkv +郑少秋-峰火飞花(演唱会),http://em.21dtv.com/songs/60075402.mkv +陈盈洁-放乎风吹,http://em.21dtv.com/songs/60016604.mkv +梁欢-粉红大象,http://em.21dtv.com/songs/60107000.mkv +萧丽珠-枫红层层(无原唱),http://em.21dtv.com/songs/60017529.mkv +庄心妍-放过自己,http://em.21dtv.com/songs/60115892.mkv +胡栓栓-放歌中华,http://em.21dtv.com/songs/60119899.mkv +李志-梵高先生,http://em.21dtv.com/songs/60084681.mkv +丁丁-反骨星球,http://em.21dtv.com/songs/60098206.mkv +谭咏麟+陈百祥-分甘同味,http://em.21dtv.com/songs/60016999.mkv +陈明韶-风告诉我,http://em.21dtv.com/songs/60017296.mkv +张杰-发光时代,http://em.21dtv.com/songs/60119525.mkv +张杰-发光时代,http://em.21dtv.com/songs/60111074.mkv +董冬-佛光普照,http://em.21dtv.com/songs/60065973.mkv +动力火车-风光明媚,http://em.21dtv.com/songs/60017297.mkv +阿肆-浮光掠影,http://em.21dtv.com/songs/60085100.mkv +阎韦伶-浮光掠影,http://em.21dtv.com/songs/60070690.mkv +MIRANDA LAMBERT-fastest girl in town,http://em.21dtv.com/songs/60070334.mkv +王麟+安琥-富贵花开,http://em.21dtv.com/songs/60130613.mkv +音频怪物+Aki阿杰-风骨霸刀,http://em.21dtv.com/songs/60128585.mkv +蔡孟臻-非关爱情,http://em.21dtv.com/songs/60064176.mkv +LISA-非关爱情,http://em.21dtv.com/songs/60016925.mkv +羽泉-飞飞追追,http://em.21dtv.com/songs/60091880.mkv +刘仲仪-肺腑箴言,http://em.21dtv.com/songs/60016966.mkv +何嘉莉-非分之想,http://em.21dtv.com/songs/60087303.mkv +何嘉莉-非份之想,http://em.21dtv.com/songs/60016923.mkv +冰雪姐妹-放飞真情,http://em.21dtv.com/songs/60016592.mkv +彭丽媛-风帆之歌,http://em.21dtv.com/songs/60017280.mkv +刘和刚-放飞忠诚,http://em.21dtv.com/songs/60016593.mkv +范玮琪-范范之辈,http://em.21dtv.com/songs/60016521.mkv +吴克群-泛泛之辈,http://em.21dtv.com/songs/60016520.mkv +佚名-泛泛之辈(无原唱),http://em.21dtv.com/songs/60016519.mkv +小文-风风雨雨,http://em.21dtv.com/songs/60075384.mkv +吕方-风风雨雨,http://em.21dtv.com/songs/60017292.mkv +刘德华-风风雨雨,http://em.21dtv.com/songs/60017291.mkv +JAMIE FOXX-fall for your type,http://em.21dtv.com/songs/60001608.mkv +林保怡-彷佛一生,http://em.21dtv.com/songs/60033179.mkv +侧田-fight for your right(演唱会),http://em.21dtv.com/songs/60001668.mkv +央宗卓嘎-放飞心情,http://em.21dtv.com/songs/60063242.mkv +望海高歌-芬芳五月,http://em.21dtv.com/songs/60075368.mkv +郑进一-佛法无边(无原唱),http://em.21dtv.com/songs/60017624.mkv +殷秀梅-放飞神舟,http://em.21dtv.com/songs/60016591.mkv +张星唯-反复受伤,http://em.21dtv.com/songs/60122730.mkv +南征北战-非凡时代,http://em.21dtv.com/songs/60133433.mkv +解晓东-纷纷扰扰,http://em.21dtv.com/songs/60017150.mkv +LADY-非法入侵(无原唱),http://em.21dtv.com/songs/60016922.mkv +汪佩蓉-非法入境,http://em.21dtv.com/songs/60101129.mkv +汪佩蓉-非法入境(演唱会),http://em.21dtv.com/songs/60016921.mkv +群星-放飞你我,http://em.21dtv.com/songs/60016590.mkv +翁琳-放飞梦想,http://em.21dtv.com/songs/60111354.mkv +肖琬露-放飞梦想,http://em.21dtv.com/songs/60085073.mkv +谢磊+吴沁悦+王潇宇+熊春兰-放飞梦想,http://em.21dtv.com/songs/60016589.mkv +谭咏麟+李伟菘+陈秋霞-放飞梦想,http://em.21dtv.com/songs/60016588.mkv +李强-方方面面,http://em.21dtv.com/songs/60116905.mkv +戴爱玲-分分秒秒,http://em.21dtv.com/songs/60016996.mkv +蔡琴-分分秒秒,http://em.21dtv.com/songs/60016995.mkv +刘亦菲-放飞美丽,http://em.21dtv.com/songs/60016587.mkv +石雪峰-放飞理想,http://em.21dtv.com/songs/60127240.mkv +蔡依林-反覆记号,http://em.21dtv.com/songs/60088594.mkv +蔡依林-反复记号,http://em.21dtv.com/songs/60016492.mkv +庄心妍+萧全-分分合合,http://em.21dtv.com/songs/60085082.mkv +汤宝如-反反覆覆,http://em.21dtv.com/songs/60092953.mkv +汤宝如-反反复复,http://em.21dtv.com/songs/60016490.mkv +苏唯-飞蛾扑火,http://em.21dtv.com/songs/60122053.mkv +彭丽丽-飞蛾扑火,http://em.21dtv.com/songs/60105892.mkv +彭丽丽-飞蛾扑火,http://em.21dtv.com/songs/60065960.mkv +王键-飞蛾扑火,http://em.21dtv.com/songs/60016799.mkv +韩庚-飞蛾扑火,http://em.21dtv.com/songs/60016798.mkv +邓福如-福尔摩斯,http://em.21dtv.com/songs/60085101.mkv +周笔畅-福尔摩斯,http://em.21dtv.com/songs/60082927.mkv +萧敬腾-福尔摩斯,http://em.21dtv.com/songs/60070693.mkv +黄湘怡-福尔摩斯,http://em.21dtv.com/songs/60017693.mkv +苏儿真-福尔摩沙,http://em.21dtv.com/songs/60017692.mkv +Suran-风儿寒冷,http://em.21dtv.com/songs/60133290.mkv +王若琳-Feet,http://em.21dtv.com/songs/60113877.mkv +阿鲁阿卓-风带走的,http://em.21dtv.com/songs/60105463.mkv +DINO-风的终点,http://em.21dtv.com/songs/60017273.mkv +SOLER-风的终点(演唱会),http://em.21dtv.com/songs/60017272.mkv +1983-风打雨下,http://em.21dtv.com/songs/60017257.mkv +赵咏华-风的颜色,http://em.21dtv.com/songs/60017271.mkv +梅艳芳-发电一千W(无原唱),http://em.21dtv.com/songs/60092937.mkv +张津涤-分道扬镳,http://em.21dtv.com/songs/60132448.mkv +刘是非-分道扬镳,http://em.21dtv.com/songs/60115024.mkv +张智霖-反斗奇兵,http://em.21dtv.com/songs/60061177.mkv +游鸿明+伍浩哲+霍正奇-风的朋友(无原唱),http://em.21dtv.com/songs/60017269.mkv +林忆莲-飞的理由,http://em.21dtv.com/songs/60016795.mkv +周蔚倩-蜚短流长(无原唱),http://em.21dtv.com/songs/60016959.mkv +樊凡+王路遥-风的尽头,http://em.21dtv.com/songs/60132649.mkv +轮回乐队-风的精灵(演唱会),http://em.21dtv.com/songs/60017266.mkv +邓瑞霞-风的季节(演唱会),http://em.21dtv.com/songs/60075383.mkv +李丽霞-风的季节(演唱会),http://em.21dtv.com/songs/60068256.mkv +黎瑞恩-风的季节,http://em.21dtv.com/songs/60017264.mkv +SOLER-风的季节,http://em.21dtv.com/songs/60017263.mkv +张伟文-风的季节(演唱会),http://em.21dtv.com/songs/60017262.mkv +徐小凤-风的季节(演唱会),http://em.21dtv.com/songs/60017261.mkv +黄晓明-风的孩子,http://em.21dtv.com/songs/60017260.mkv +余天-风的故乡,http://em.21dtv.com/songs/60017259.mkv +赵传-飞得更高,http://em.21dtv.com/songs/60118934.mkv +超级女声+纪敏佳-飞的更高,http://em.21dtv.com/songs/60088721.mkv +汪峰-飞得更高(演唱会),http://em.21dtv.com/songs/60016794.mkv +佚名-风的独白,http://em.21dtv.com/songs/60017258.mkv +许巧盈-放电的爱(无原唱),http://em.21dtv.com/songs/60016583.mkv +胡艾莲-风的传说,http://em.21dtv.com/songs/60123094.mkv +于水-风的翅膀,http://em.21dtv.com/songs/60112494.mkv +关心妍-负担不起,http://em.21dtv.com/songs/60017754.mkv +关心妍-负担不起(演唱会),http://em.21dtv.com/songs/60017753.mkv +本兮-逢场作戏,http://em.21dtv.com/songs/60082920.mkv +城市姐妹-风吹着花,http://em.21dtv.com/songs/60017252.mkv +[Group] +groupName=十六万歌曲MV等 - 42 +阎琰-凤城之歌,http://em.21dtv.com/songs/60075404.mkv +张卫健-风车寓言,http://em.21dtv.com/songs/60017228.mkv +张明敏-风采依然,http://em.21dtv.com/songs/60091114.mkv +王国俊-付出以后,http://em.21dtv.com/songs/60017749.mkv +黄国俊-付出以后,http://em.21dtv.com/songs/60017748.mkv +魏新雨-翡翠心语,http://em.21dtv.com/songs/60120154.mkv +张学友+王菲-非常夏日,http://em.21dtv.com/songs/60016917.mkv +张学友-非常夏日(演唱会),http://em.21dtv.com/songs/60016916.mkv +张敬轩+王菀之-非常夏日(演唱会),http://em.21dtv.com/songs/60016915.mkv +泳儿-非常夏日(演唱会),http://em.21dtv.com/songs/60016914.mkv +风采轮-风尘续曲,http://em.21dtv.com/songs/60104593.mkv +李蕙敏-非常幸会,http://em.21dtv.com/songs/60016918.mkv +戴佩妮-非诚勿扰,http://em.21dtv.com/songs/60128030.mkv +戴佩妮-非诚勿扰,http://em.21dtv.com/songs/60125600.mkv +张啸+乌兰托娅-非诚勿扰,http://em.21dtv.com/songs/60061185.mkv +张瀚元-非诚勿扰,http://em.21dtv.com/songs/60016920.mkv +巩新亮-非诚勿扰,http://em.21dtv.com/songs/60016919.mkv +卓依婷-芳草无情,http://em.21dtv.com/songs/60016535.mkv +李芳蕊-非常完美,http://em.21dtv.com/songs/60131510.mkv +庾澄庆+张韶涵-非常完美,http://em.21dtv.com/songs/60016913.mkv +林海峰-废柴同盟(演唱会),http://em.21dtv.com/songs/60016967.mkv +GERRY+THE PACEMAKERS-ferry cross the mersey,http://em.21dtv.com/songs/60001665.mkv +梁家辉+梁朝伟+郑月瑞-风尘三侠,http://em.21dtv.com/songs/60017236.mkv +谢高峰-浮沉人生,http://em.21dtv.com/songs/60102747.mkv +谢常清-凡尘情缘,http://em.21dtv.com/songs/60085069.mkv +成于申-风尘女子,http://em.21dtv.com/songs/60105919.mkv +成于申-风尘女子,http://em.21dtv.com/songs/60093587.mkv +张秀卿-非常男女,http://em.21dtv.com/songs/60066997.mkv +李健+孙俪-风吹麦浪,http://em.21dtv.com/songs/60096342.mkv +李健+孙俪-风吹麦浪(演唱会),http://em.21dtv.com/songs/60082914.mkv +叶一茜-风吹麦浪,http://em.21dtv.com/songs/60069392.mkv +李健-风吹麦浪(演唱会),http://em.21dtv.com/songs/60017251.mkv +苏新华-翡翠恋人,http://em.21dtv.com/songs/60129539.mkv +周蕙-分岔路口,http://em.21dtv.com/songs/60016985.mkv +芭比-非常境界,http://em.21dtv.com/songs/60016910.mkv +戏曲-法场祭夫,http://em.21dtv.com/songs/60089306.mkv +黄耀明-翡翠剧场(演唱会),http://em.21dtv.com/songs/60064178.mkv +黄耀明-翡翠剧场,http://em.21dtv.com/songs/60016964.mkv +隆兄弟-非常高兴(无原唱),http://em.21dtv.com/songs/60016976.mkv +陈咏+云菲菲-妇唱夫随,http://em.21dtv.com/songs/60085104.mkv +佚名-风吹风吹,http://em.21dtv.com/songs/60017247.mkv +南方二重唱-风吹风吹,http://em.21dtv.com/songs/60017246.mkv +江蕙-风吹风吹,http://em.21dtv.com/songs/60017245.mkv +宁可-风吹稻浪,http://em.21dtv.com/songs/60075379.mkv +小雪+叶文辉-方寸大乱,http://em.21dtv.com/songs/60016526.mkv +王莉-粉彩瓷艺,http://em.21dtv.com/songs/60108733.mkv +德德玛-风吹草原,http://em.21dtv.com/songs/60017241.mkv +额尔古纳乐队-风吹草浪,http://em.21dtv.com/songs/60075378.mkv +FABEL-风吹草动,http://em.21dtv.com/songs/60098025.mkv +蓝琪儿-风吹草低,http://em.21dtv.com/songs/60068255.mkv +林慧萍-风吹草动,http://em.21dtv.com/songs/60017240.mkv +陈好-风吹草动,http://em.21dtv.com/songs/60017239.mkv +陈晓东-风吹草动(演唱会),http://em.21dtv.com/songs/60017238.mkv +千童张海松-佛唱伴梦,http://em.21dtv.com/songs/60085099.mkv +奇志大兵-非常爱心,http://em.21dtv.com/songs/60089767.mkv +任贤齐-非常爱你,http://em.21dtv.com/songs/60080249.mkv +方明-飞吧祖国,http://em.21dtv.com/songs/60085078.mkv +M.I.C.男团-风暴夏天,http://em.21dtv.com/songs/60064191.mkv +李成-放不下你,http://em.21dtv.com/songs/60101382.mkv +梁晨-放不下你,http://em.21dtv.com/songs/60069379.mkv +年少-放不下你,http://em.21dtv.com/songs/60016576.mkv +陈奕迅-防不胜防(演唱会),http://em.21dtv.com/songs/60016539.mkv +钟兴叡-飞吧青春,http://em.21dtv.com/songs/60016786.mkv +秦锋-飞吧梦想,http://em.21dtv.com/songs/60109557.mkv +陈慧琳-放不开手,http://em.21dtv.com/songs/60016568.mkv +XY兄弟-粉笔记忆,http://em.21dtv.com/songs/60130015.mkv +BLUE-fly by ii club,http://em.21dtv.com/songs/60001715.mkv +郑绪岚-飞吧鸽子,http://em.21dtv.com/songs/60016784.mkv +杨勇-奋不顾身,http://em.21dtv.com/songs/60112004.mkv +刘欢+吉克隽逸-奋不顾身,http://em.21dtv.com/songs/60107537.mkv +崔子格-奋不顾身,http://em.21dtv.com/songs/60075371.mkv +萧敬腾-奋不顾身,http://em.21dtv.com/songs/60017186.mkv +吴雨霏-奋不顾身,http://em.21dtv.com/songs/60017185.mkv +洪晓源-飞吧大叔,http://em.21dtv.com/songs/60112833.mkv +苏有朋-放爱自由,http://em.21dtv.com/songs/60091930.mkv +SUNNY SWEENEY-from a table away,http://em.21dtv.com/songs/60001803.mkv +任军太-父爱是山,http://em.21dtv.com/songs/60094393.mkv +吴灿涛-父爱如伞,http://em.21dtv.com/songs/60131262.mkv +小小-父爱如山,http://em.21dtv.com/songs/60065976.mkv +YOUNG JEEZY+T.I-f a m e,http://em.21dtv.com/songs/60063589.mkv +李霞-放爱飞翔,http://em.21dtv.com/songs/60070666.mkv +GROOVE COVERAGE-far away from home,http://em.21dtv.com/songs/60067884.mkv +SHANIA TWAIN-forever and for always,http://em.21dtv.com/songs/60001759.mkv +Alan Walke-Fade,http://em.21dtv.com/songs/60123432.mkv +NU'EST-Face,http://em.21dtv.com/songs/60103032.mkv +钟欣桐+关智斌-非爱不可,http://em.21dtv.com/songs/60061184.mkv +彭于晏-非爱不可,http://em.21dtv.com/songs/60016908.mkv +林忆莲-非爱不可,http://em.21dtv.com/songs/60016907.mkv +THE BEATLES-free as a bird(无原唱),http://em.21dtv.com/songs/60001788.mkv +ALAN-风の手纸,http://em.21dtv.com/songs/60017219.mkv +YUA-逢いたい,http://em.21dtv.com/songs/60017577.mkv +庄淑君-二张戏票(无原唱),http://em.21dtv.com/songs/60016413.mkv +李嘉石-儿在天涯,http://em.21dtv.com/songs/60065952.mkv +李丹阳+胡量-恩重如山,http://em.21dtv.com/songs/60100112.mkv +王艺清-恩重如山,http://em.21dtv.com/songs/60071906.mkv +姜孝萌-恩重如山(演唱会),http://em.21dtv.com/songs/60070660.mkv +深蓝乐队-二月十四,http://em.21dtv.com/songs/60066981.mkv +郑中基-二月三日,http://em.21dtv.com/songs/60016407.mkv +FRAGMA FEAT+MARIA RU-everytime you need me,http://em.21dtv.com/songs/60001586.mkv +刘玉婉+魏金栋-二月里来,http://em.21dtv.com/songs/60016406.mkv +李光义-二月里来,http://em.21dtv.com/songs/60016405.mkv +佚名-everytime you go away,http://em.21dtv.com/songs/60001585.mkv +梁静茹-恶性循环,http://em.21dtv.com/songs/60016280.mkv +尤国通-儿行千里,http://em.21dtv.com/songs/60104967.mkv +王宏伟-儿行千里,http://em.21dtv.com/songs/60016306.mkv +戴玉强-儿行千里,http://em.21dtv.com/songs/60016305.mkv +刘和刚-儿行千里(演唱会),http://em.21dtv.com/songs/60016304.mkv +五月天-而我知道,http://em.21dtv.com/songs/60016314.mkv +林腾达-E网情深,http://em.21dtv.com/songs/60109461.mkv +林腾达-E网情深,http://em.21dtv.com/songs/60108625.mkv +心跳男孩-e网情深,http://em.21dtv.com/songs/60001602.mkv +刘斯远-蛾舞阑珊,http://em.21dtv.com/songs/60119298.mkv +黄崇旭-Everything's Gonna Be Alright,http://em.21dtv.com/songs/60100675.mkv +MANA+PRINCE ROYCE-el verdadero amor perdona,http://em.21dtv.com/songs/60065578.mkv +佚名-el ul timo cafe,http://em.21dtv.com/songs/60001482.mkv +郑伊健-儿童乐园,http://em.21dtv.com/songs/60016311.mkv +MOULIN ROUGE-el tango de roxanne,http://em.21dtv.com/songs/60073169.mkv +草蜢-儿童不宜(演唱会),http://em.21dtv.com/songs/60016310.mkv +仓木麻衣-24 xmas time,http://em.21dtv.com/songs/60000014.mkv +天津饭-二十五岁,http://em.21dtv.com/songs/60075284.mkv +刘若英+杨坤-二十四楼,http://em.21dtv.com/songs/60016393.mkv +莫文蔚-二十四hrs,http://em.21dtv.com/songs/60016391.mkv +棉花糖-二三七五,http://em.21dtv.com/songs/60088152.mkv +何晟铭-二十年后,http://em.21dtv.com/songs/60130078.mkv +何晟铭-二十年后,http://em.21dtv.com/songs/60128779.mkv +郭蘅祈-二十年后,http://em.21dtv.com/songs/60101689.mkv +赵小兵-二十年后,http://em.21dtv.com/songs/60064162.mkv +马云龙-儿时伙伴,http://em.21dtv.com/songs/60133104.mkv +渡辺麻友-2人の夜明け(演唱会),http://em.21dtv.com/songs/60062786.mkv +EXILE ATSUSHI-二人の未来,http://em.21dtv.com/songs/60075281.mkv +钟嘉欣-二人世界,http://em.21dtv.com/songs/60016377.mkv +草蜢-二人世界,http://em.21dtv.com/songs/60016376.mkv +陈慧娴-二人时间(演唱会),http://em.21dtv.com/songs/60016375.mkv +2个女生-二人三角,http://em.21dtv.com/songs/60016374.mkv +谭晴-二人期限,http://em.21dtv.com/songs/60064160.mkv +叶佩雯-二人默剧,http://em.21dtv.com/songs/60016373.mkv +小贱-二人故事,http://em.21dtv.com/songs/60097125.mkv +群星-二人传六,http://em.21dtv.com/songs/60090115.mkv +其他-二泉映月,http://em.21dtv.com/songs/60089648.mkv +彭丽媛-二泉映月,http://em.21dtv.com/songs/60016367.mkv +程燕-二泉映月,http://em.21dtv.com/songs/60016366.mkv +蔡义德-恩情似海,http://em.21dtv.com/songs/60079871.mkv +张薇-恩情如花,http://em.21dtv.com/songs/60131420.mkv +女声-end of the world,http://em.21dtv.com/songs/60001506.mkv +男声-end of the world,http://em.21dtv.com/songs/60001505.mkv +顺子-Eye Of The Tiger,http://em.21dtv.com/songs/60081680.mkv +佚名-eye of the tiger(无原唱),http://em.21dtv.com/songs/60001596.mkv +BOYZ II MEN-end of the road,http://em.21dtv.com/songs/60001504.mkv +KEYSHIA COLE+LIL WAY-enough of no love,http://em.21dtv.com/songs/60070327.mkv +Schoolboy Q+Tinashe-2 On,http://em.21dtv.com/songs/60133277.mkv +UNIQ-EOEO,http://em.21dtv.com/songs/60111661.mkv +UNIQ-EOEO,http://em.21dtv.com/songs/60110803.mkv +李克勤-儿女私情,http://em.21dtv.com/songs/60016309.mkv +汤非-儿女情长,http://em.21dtv.com/songs/60110331.mkv +王艺清-儿女情长,http://em.21dtv.com/songs/60071907.mkv +佚名-儿女情长,http://em.21dtv.com/songs/60016308.mkv +杨晓霞-儿女情长,http://em.21dtv.com/songs/60016307.mkv +佚名-esta noche me emborracho,http://em.21dtv.com/songs/60001519.mkv +SSIDOL-噩梦无边,http://em.21dtv.com/songs/60128705.mkv +尚雯婕-EMPIRE STATE OF MIND,http://em.21dtv.com/songs/60099977.mkv +NEWS-EMMA,http://em.21dtv.com/songs/60132113.mkv +郁钧剑-峨嵋酒家,http://em.21dtv.com/songs/60016267.mkv +范玉阳-峨眉独酌,http://em.21dtv.com/songs/60130695.mkv +李宏毅+李明霖-恶魔的爱,http://em.21dtv.com/songs/60133795.mkv +张智成-二零一三,http://em.21dtv.com/songs/60065954.mkv +张继聪-二零一三,http://em.21dtv.com/songs/60061172.mkv +乔洋-二零一二,http://em.21dtv.com/songs/60075278.mkv +五月天-二零一二(演唱会),http://em.21dtv.com/songs/60065953.mkv +杨东煜-二零一二,http://em.21dtv.com/songs/60016357.mkv +卫兰-二零一二,http://em.21dtv.com/songs/60016356.mkv +JAY SEAN-二零一二,http://em.21dtv.com/songs/60016355.mkv +CHOCO-everybody listen to me,http://em.21dtv.com/songs/60073186.mkv +太极乐队-二零三十(演唱会),http://em.21dtv.com/songs/60016353.mkv +李泉-二零四六(演唱会),http://em.21dtv.com/songs/60016354.mkv +王力宏-二零零零,http://em.21dtv.com/songs/60016344.mkv +柳影虹-二零零度(演唱会),http://em.21dtv.com/songs/60075276.mkv +杨坤-二零零八,http://em.21dtv.com/songs/60016341.mkv +本兮-20分钟,http://em.21dtv.com/songs/60080424.mkv +张靓颖-饿狼传说,http://em.21dtv.com/songs/60107728.mkv +胡琳-饿狼传说,http://em.21dtv.com/songs/60097404.mkv +黑妹+郑世豪-饿狼传说(演唱会),http://em.21dtv.com/songs/60075273.mkv +张学友-饿狼传说,http://em.21dtv.com/songs/60016284.mkv +张学友-饿狼传说(演唱会),http://em.21dtv.com/songs/60016283.mkv +E GIRLS-essential love纯爱,http://em.21dtv.com/songs/60001518.mkv +梁汉文-二见钟情(演唱会),http://em.21dtv.com/songs/60016334.mkv +孙子涵-耳机分半,http://em.21dtv.com/songs/60082874.mkv +区俊涛-恩将仇报,http://em.21dtv.com/songs/60016296.mkv +陈凯彤-二见不合,http://em.21dtv.com/songs/60123283.mkv +K.WILL+CHAKUN-even if u play,http://em.21dtv.com/songs/60073181.mkv +曲婉婷-everything in the world,http://em.21dtv.com/songs/60073187.mkv +佚名-eye in the sky,http://em.21dtv.com/songs/60001595.mkv +NEW KIDS ON THE BLOCK-2 in the morning,http://em.21dtv.com/songs/60000012.mkv +林俊杰-2infinity And Beyond,http://em.21dtv.com/songs/60128122.mkv +刘德华-everyone is no 1,http://em.21dtv.com/songs/60001566.mkv +刘德华-everyone is no 1(HD演唱会),http://em.21dtv.com/songs/60001565.mkv +ENERGY-everything in my heart,http://em.21dtv.com/songs/60001572.mkv +フレンチキス-カッコ悪い i love you,http://em.21dtv.com/songs/60074226.mkv +徐誉滕-二话西游,http://em.21dtv.com/songs/60080316.mkv +岑天勇-2号车票,http://em.21dtv.com/songs/60120487.mkv +陈慧琳-唔关你事(HD),http://em.21dtv.com/songs/10012551.mkv +吉星+刘书源-二哥驾到,http://em.21dtv.com/songs/60134996.mkv +吉星-二哥驾到,http://em.21dtv.com/songs/60134995.mkv +炎亚纶+G.NA-二分之一,http://em.21dtv.com/songs/60110357.mkv +炎亚纶+G.NA-二分之一,http://em.21dtv.com/songs/60101138.mkv +ATOMIC KITTEN-eternal flame single version,http://em.21dtv.com/songs/60001520.mkv +费玉清-二分明月,http://em.21dtv.com/songs/60111411.mkv +佚名-en esta tarde gris,http://em.21dtv.com/songs/60001501.mkv +佚名-厄尔嘎兹,http://em.21dtv.com/songs/60016272.mkv +佚名-厄尔嘎兹(伦巴),http://em.21dtv.com/songs/60016271.mkv +语录-额尔古纳,http://em.21dtv.com/songs/60106284.mkv +周扬-额尔古纳,http://em.21dtv.com/songs/60075271.mkv +刘浩龙-二等天使,http://em.21dtv.com/songs/60016327.mkv +刘浩龙-二等天使(演唱会),http://em.21dtv.com/songs/60016326.mkv +侧田-二等天使(演唱会),http://em.21dtv.com/songs/60016325.mkv +彭健新-二等良民(演唱会),http://em.21dtv.com/songs/60016324.mkv +何欣穗-every days a holiday,http://em.21dtv.com/songs/60001542.mkv +Foxes-Echo,http://em.21dtv.com/songs/60117454.mkv +蔡健雅+MC HOTDOG-Easy Come Easy Go,http://em.21dtv.com/songs/60081606.mkv +蔡健雅+MC HOT DOG-Easy Come Easy Go,http://em.21dtv.com/songs/60079870.mkv +MC HOTDOG+蔡健雅-easy come easy go,http://em.21dtv.com/songs/60073165.mkv +5566-easy come easy go,http://em.21dtv.com/songs/60001464.mkv +张智成-easy come easy go(演唱会),http://em.21dtv.com/songs/60001463.mkv +田园+唐荭菲-every breath you take,http://em.21dtv.com/songs/60081467.mkv +THE POLICE-every breath you take,http://em.21dtv.com/songs/60001540.mkv +邓丽君-every breath you take(演唱会),http://em.21dtv.com/songs/60001539.mkv +陈怡婷-二八青春,http://em.21dtv.com/songs/60086537.mkv +CHRISTINA AGUILERA-el beso del final,http://em.21dtv.com/songs/60001478.mkv +东方依依+刘恺名-恩爱一生,http://em.21dtv.com/songs/60122457.mkv +蓝沁-Easy Come Easy Go,http://em.21dtv.com/songs/60101497.mkv +邓丽君-恩爱夫妻,http://em.21dtv.com/songs/60102772.mkv +KAN JONG WOOK+RAINA-even after a day,http://em.21dtv.com/songs/60073180.mkv +简宗旭+RAINA-even after a day,http://em.21dtv.com/songs/60062503.mkv +郑君绵-赌仔自叹,http://em.21dtv.com/songs/60093274.mkv +卢海潮-赌仔自叹,http://em.21dtv.com/songs/60015859.mkv +谢雷-赌仔自叹(演唱会),http://em.21dtv.com/songs/60015858.mkv +大AL-赌仔自叹(演唱会),http://em.21dtv.com/songs/60015857.mkv +陈晓东-东芝月色,http://em.21dtv.com/songs/60015568.mkv +刘德华-当中有你,http://em.21dtv.com/songs/60014657.mkv +戴佩妮-躲在夜里,http://em.21dtv.com/songs/60016256.mkv +郑秀文-滴着眼泪,http://em.21dtv.com/songs/60015080.mkv +郑秀文-当做闲事,http://em.21dtv.com/songs/60093305.mkv +袁小迪+郭东圣-逗阵兄弟,http://em.21dtv.com/songs/60131801.mkv +陶喆-逗阵兄弟,http://em.21dtv.com/songs/60075229.mkv +陈怡婷-到这为止,http://em.21dtv.com/songs/60123297.mkv +孙淑媚-到这为止,http://em.21dtv.com/songs/60014767.mkv +荒山亮-独尊唯我,http://em.21dtv.com/songs/60097355.mkv +林汇敏-稻仔望花,http://em.21dtv.com/songs/60111198.mkv +北方狼-独自守候,http://em.21dtv.com/songs/60118403.mkv +蔡依林-独占神话,http://em.21dtv.com/songs/60015820.mkv +炎亚纶-大智若娱,http://em.21dtv.com/songs/60106083.mkv +炎亚纶-大智若娱,http://em.21dtv.com/songs/60102508.mkv +宇宙人-大志若鱼,http://em.21dtv.com/songs/60080343.mkv +平安-倒转人生,http://em.21dtv.com/songs/60120493.mkv +平安-倒转人生,http://em.21dtv.com/songs/60115891.mkv +阿良伟-独卒擒王,http://em.21dtv.com/songs/60071895.mkv +陶晶莹-电子情人,http://em.21dtv.com/songs/60015358.mkv +吴陌川-大众情歌,http://em.21dtv.com/songs/60135033.mkv +苏振华+洪百慧-逗阵念歌,http://em.21dtv.com/songs/60134168.mkv +少杰-独自买醉,http://em.21dtv.com/songs/60125439.mkv +方怡萍-当做没见(无原唱),http://em.21dtv.com/songs/60014665.mkv +方怡萍-当作没见(无原唱),http://em.21dtv.com/songs/60014662.mkv +岩宰仑-傣字母歌,http://em.21dtv.com/songs/60124797.mkv +廖孟君-独自旅行,http://em.21dtv.com/songs/60111049.mkv +CLOWN-独自旅行,http://em.21dtv.com/songs/60061984.mkv +邓丽君-冬之恋情,http://em.21dtv.com/songs/60015619.mkv +九天-独自哭泣,http://em.21dtv.com/songs/60066973.mkv +晓田-独自K歌,http://em.21dtv.com/songs/60125645.mkv +谭咏麟-独醉街头,http://em.21dtv.com/songs/60015828.mkv +谭咏麟-独醉街头(演唱会),http://em.21dtv.com/songs/60015827.mkv +陈淑桦+张国荣-当真就好,http://em.21dtv.com/songs/60014656.mkv +韩磊-道在何方,http://em.21dtv.com/songs/60120128.mkv +冯巩+牛群-点子公司,http://em.21dtv.com/songs/60089661.mkv +林忆莲-笛子姑娘,http://em.21dtv.com/songs/60120668.mkv +叶振棠-笛子姑娘,http://em.21dtv.com/songs/60015086.mkv +叶振棠-笛子姑娘(演唱会),http://em.21dtv.com/songs/60015085.mkv +望海高歌-点赞枫桥,http://em.21dtv.com/songs/60115982.mkv +杨梓-打住打住,http://em.21dtv.com/songs/60098511.mkv +刘德华-倒转地球(HD),http://em.21dtv.com/songs/10012634.mkv +弦子-对猪弹琴,http://em.21dtv.com/songs/60016090.mkv +孙羡真-对猪弹琴,http://em.21dtv.com/songs/60016089.mkv +刘德华-倒转地球,http://em.21dtv.com/songs/60014722.mkv +周渝民-倒转地球(演唱会),http://em.21dtv.com/songs/60014721.mkv +刘德华-倒转地球(演唱会),http://em.21dtv.com/songs/60014720.mkv +李克勤-当找到你,http://em.21dtv.com/songs/60014653.mkv +李克勤-当找到你(演唱会),http://em.21dtv.com/songs/60014652.mkv +林子祥-独自畅饮,http://em.21dtv.com/songs/60015822.mkv +潘广益-独自承受,http://em.21dtv.com/songs/60082858.mkv +陈奂仁+王梓轩-点止冰冰,http://em.21dtv.com/songs/60114199.mkv +SWING-点止兵兵,http://em.21dtv.com/songs/60092197.mkv +魏雪漫-定制爱情,http://em.21dtv.com/songs/60129823.mkv +J.ARIE-第一志愿,http://em.21dtv.com/songs/60080888.mkv +雷琛瑜-第一志愿,http://em.21dtv.com/songs/60075190.mkv +佚名-点一支烟,http://em.21dtv.com/songs/60015327.mkv +王绎龙-电音之王,http://em.21dtv.com/songs/60075198.mkv +穆罕默德.金山-大禹治水,http://em.21dtv.com/songs/60088374.mkv +徐菲-得意之恋,http://em.21dtv.com/songs/60126918.mkv +李日詹-第一直觉,http://em.21dtv.com/songs/60122861.mkv +陈小春-多于自己,http://em.21dtv.com/songs/60093415.mkv +越剧-黛玉葬花,http://em.21dtv.com/songs/60090232.mkv +丁思剑-东运之魂,http://em.21dtv.com/songs/60015567.mkv +佚名-黛玉葬花,http://em.21dtv.com/songs/60014310.mkv +林锦屏-黛玉葬花,http://em.21dtv.com/songs/60014309.mkv +徐少楠-打野之歌,http://em.21dtv.com/songs/60105895.mkv +张瀚元-得意洋洋,http://em.21dtv.com/songs/60110204.mkv +方芳-得意洋洋,http://em.21dtv.com/songs/60014807.mkv +蔡依林-第一优先(演唱会),http://em.21dtv.com/songs/60015289.mkv +田振达-当有一天,http://em.21dtv.com/songs/60110424.mkv +亦帆-大雨欲来,http://em.21dtv.com/songs/60096038.mkv +萧亚轩-电影预告,http://em.21dtv.com/songs/60091995.mkv +古巨基-倒影先生,http://em.21dtv.com/songs/60014719.mkv +泥泥-等一下呢,http://em.21dtv.com/songs/60095767.mkv +妞妞姐妹-等一下呢,http://em.21dtv.com/songs/60095499.mkv +罗时丰+陈小云-等一下呢,http://em.21dtv.com/songs/60075165.mkv +佚名-等一下呢,http://em.21dtv.com/songs/60015052.mkv +泳儿-黛玉笑了,http://em.21dtv.com/songs/60014308.mkv +泳儿-黛玉笑了(演唱会),http://em.21dtv.com/songs/60014307.mkv +林凡-do you wanna play,http://em.21dtv.com/songs/60001286.mkv +子安圣皓-定义完美,http://em.21dtv.com/songs/60063478.mkv +AGA+李幸倪-独一无二,http://em.21dtv.com/songs/60127642.mkv +罗志祥-独一无二,http://em.21dtv.com/songs/60061164.mkv +郑秀文-独一无二,http://em.21dtv.com/songs/60015818.mkv +谢金燕-独一无二,http://em.21dtv.com/songs/60015817.mkv +陈茂丰-独一无二,http://em.21dtv.com/songs/60015816.mkv +陈坤-独一无二,http://em.21dtv.com/songs/60015815.mkv +陈伟霆-do you wanna dance,http://em.21dtv.com/songs/60060788.mkv +佚名-do you wanna dance,http://em.21dtv.com/songs/60001285.mkv +威利-do you wanna dance(演唱会),http://em.21dtv.com/songs/60001284.mkv +林少纬-答应我吧,http://em.21dtv.com/songs/60082767.mkv +叶倩文-地狱天堂,http://em.21dtv.com/songs/60092404.mkv +郭富城-地狱天堂,http://em.21dtv.com/songs/60015137.mkv +郭富城-地狱天堂(演唱会),http://em.21dtv.com/songs/60015136.mkv +温岚-地狱天使,http://em.21dtv.com/songs/60015135.mkv +杨淑懿-单翼天使,http://em.21dtv.com/songs/60014403.mkv +SWITCHFOOT-dare you to move,http://em.21dtv.com/songs/60001161.mkv +灭火器乐团-岛屿天光(演唱会),http://em.21dtv.com/songs/60100292.mkv +金波-德艺双馨,http://em.21dtv.com/songs/60134354.mkv +徐再明-对月思亲,http://em.21dtv.com/songs/60109353.mkv +李卓庭-地狱少女,http://em.21dtv.com/songs/60015134.mkv +ROBYNN+KENDY-大艺术家,http://em.21dtv.com/songs/60128695.mkv +京剧-打渔杀家,http://em.21dtv.com/songs/60089117.mkv +曾静玟-第一时间,http://em.21dtv.com/songs/60081769.mkv +蔡依林-大艺术家,http://em.21dtv.com/songs/60068208.mkv +F4-第一时间,http://em.21dtv.com/songs/60015277.mkv +F4-第一时间(演唱会),http://em.21dtv.com/songs/60015276.mkv +常东+徐潇玲-打渔杀家,http://em.21dtv.com/songs/60013832.mkv +洪爱莉-第一首歌,http://em.21dtv.com/songs/60088225.mkv +毛宁-点一首歌,http://em.21dtv.com/songs/60015326.mkv +毛宁+张信哲-点一首歌,http://em.21dtv.com/songs/60015325.mkv +何俐恩-第一人选,http://em.21dtv.com/songs/60015275.mkv +SHINE-东涌日和,http://em.21dtv.com/songs/60015566.mkv +陈浩民-电影情歌,http://em.21dtv.com/songs/60080454.mkv +郑虹+袁惟仁-电影票根,http://em.21dtv.com/songs/60101531.mkv +地铁兄弟-大雁南飞,http://em.21dtv.com/songs/60014200.mkv +吴克群-第一秒钟,http://em.21dtv.com/songs/60069353.mkv +基地小虎+俞子欣-等一秒钟,http://em.21dtv.com/songs/60066955.mkv +ABBA-does your mother know(演唱会),http://em.21dtv.com/songs/60001291.mkv +郑嘉颖-地狱恋曲,http://em.21dtv.com/songs/60015133.mkv +佚名-do you love me,http://em.21dtv.com/songs/60001280.mkv +徐佳莹-大雨将至,http://em.21dtv.com/songs/60121697.mkv +徐佳莹-大雨将至,http://em.21dtv.com/songs/60107741.mkv +阿修罗-大雨将至,http://em.21dtv.com/songs/60086515.mkv +爱乐团-电影胶片,http://em.21dtv.com/songs/60015357.mkv +佚名-黛玉进府,http://em.21dtv.com/songs/60014306.mkv +许志安-第一回合(演唱会),http://em.21dtv.com/songs/60015267.mkv +邓紫棋-等一个他,http://em.21dtv.com/songs/60015051.mkv +吴俊余-等一个人,http://em.21dtv.com/songs/60127825.mkv +杨晓峰-等一个人,http://em.21dtv.com/songs/60119692.mkv +沈曼-等一个人,http://em.21dtv.com/songs/60118739.mkv +林芯仪-等一个人,http://em.21dtv.com/songs/60104248.mkv +殷正洋-等一个人,http://em.21dtv.com/songs/60015049.mkv +彭莉-等一个人,http://em.21dtv.com/songs/60015048.mkv +佚名-第一个梦,http://em.21dtv.com/songs/60015260.mkv +涂杰荣-第一感觉,http://em.21dtv.com/songs/60064135.mkv +潘萍英+天骄-第一感觉,http://em.21dtv.com/songs/60064134.mkv +黄刚+谢珊-第一感觉,http://em.21dtv.com/songs/60015257.mkv +E+KIDS-第一个唱,http://em.21dtv.com/songs/60092166.mkv +翁立友-等一个伴,http://em.21dtv.com/songs/60113957.mkv +网络歌手+徐誉滕-等一分钟,http://em.21dtv.com/songs/60091816.mkv +徐誉滕-等一分钟,http://em.21dtv.com/songs/60015046.mkv +张杰-第一夫人,http://em.21dtv.com/songs/60063377.mkv +佚名-黛玉焚稿,http://em.21dtv.com/songs/60014305.mkv +天籁天-独饮独醉,http://em.21dtv.com/songs/60130225.mkv +贾玲-得意的笑,http://em.21dtv.com/songs/60128421.mkv +章小军-第一滴血,http://em.21dtv.com/songs/60128281.mkv +章小军-第一滴血,http://em.21dtv.com/songs/60121984.mkv +李丽芬-得意的笑,http://em.21dtv.com/songs/60014805.mkv +炎亚纶-多余的我,http://em.21dtv.com/songs/60105229.mkv +张牧阅-等雨等你,http://em.21dtv.com/songs/60106859.mkv +叶玉卿-多一点暖,http://em.21dtv.com/songs/60016231.mkv +倪鹏-第一滴泪,http://em.21dtv.com/songs/60081529.mkv +动力火车-第一滴泪,http://em.21dtv.com/songs/60015255.mkv +谭咏麟-第一滴泪(演唱会),http://em.21dtv.com/songs/60015254.mkv +宋孟君-多一点点,http://em.21dtv.com/songs/60094465.mkv +丁思忖-多一点点,http://em.21dtv.com/songs/60082871.mkv +EO2-大摇大摆,http://em.21dtv.com/songs/60092171.mkv +梁汉文-大摇大摆(演唱会),http://em.21dtv.com/songs/60014202.mkv +石梅-等一等爱,http://em.21dtv.com/songs/60069348.mkv +佚名-但愿长醉,http://em.21dtv.com/songs/60014445.mkv +姜育恒-但愿长醉,http://em.21dtv.com/songs/60014444.mkv +娅琳-等一场雪,http://em.21dtv.com/songs/60115781.mkv +群星-得意春风(演唱会),http://em.21dtv.com/songs/60075137.mkv +赵小南-断垣碑拓,http://em.21dtv.com/songs/60015953.mkv +腾格尔-达亚波尔,http://em.21dtv.com/songs/60013717.mkv +安与骑兵-断羽傲飞,http://em.21dtv.com/songs/60075248.mkv +丢火车乐队-凋谢之前,http://em.21dtv.com/songs/60085048.mkv +王彩桦-多谢照顾(演唱会),http://em.21dtv.com/songs/60016224.mkv +胡渭康-多谢有心(演唱会),http://em.21dtv.com/songs/60075269.mkv +孙祖君-地心引力,http://em.21dtv.com/songs/60115793.mkv +言承旭-地心引力,http://em.21dtv.com/songs/60015132.mkv +姜华-地心引力,http://em.21dtv.com/songs/60015131.mkv +黄莺莺-地心引力(无原唱),http://em.21dtv.com/songs/60015130.mkv +向银莹-大秀演技,http://em.21dtv.com/songs/60131243.mkv +熊琛+小夕-大熊小夕,http://em.21dtv.com/songs/60120741.mkv +童唱-大象先生,http://em.21dtv.com/songs/60014168.mkv +苏永康+谢安琪-独行侠侣,http://em.21dtv.com/songs/60070654.mkv +林宥嘉+陈升-大象舞台(演唱会),http://em.21dtv.com/songs/60101122.mkv +郑源-多想是他,http://em.21dtv.com/songs/60090258.mkv +佚名-独行少女,http://em.21dtv.com/songs/60015784.mkv +雷有辉-多谢失恋,http://em.21dtv.com/songs/60016223.mkv +TWINS-多谢失恋,http://em.21dtv.com/songs/60016222.mkv +TWINS-多谢失恋(演唱会),http://em.21dtv.com/songs/60016221.mkv +梦成-滴血伤口(舞曲版),http://em.21dtv.com/songs/60070633.mkv +梦成-滴血伤口,http://em.21dtv.com/songs/60069349.mkv +爱朵女孩-大小世界,http://em.21dtv.com/songs/60075085.mkv +十三狼-大喜日子,http://em.21dtv.com/songs/60108353.mkv +何伟图-地下情人,http://em.21dtv.com/songs/60082838.mkv +大芭-地下情人,http://em.21dtv.com/songs/60015125.mkv +心大俊-兑现诺言,http://em.21dtv.com/songs/60129146.mkv +林忆莲-多些那些,http://em.21dtv.com/songs/60016214.mkv +刘德华-多想你好,http://em.21dtv.com/songs/60016209.mkv +枫桥-滴血玫瑰,http://em.21dtv.com/songs/60110310.mkv +孙晓雨-滴血玫瑰,http://em.21dtv.com/songs/60110142.mkv +山鹰组合-大小凉山(演唱会),http://em.21dtv.com/songs/60014176.mkv +江蕙-灯下恋情,http://em.21dtv.com/songs/60014829.mkv +陈歌华-大喜临门,http://em.21dtv.com/songs/60014153.mkv +张瀚元-大笑江湖,http://em.21dtv.com/songs/60014181.mkv +小沈阳-大笑江湖,http://em.21dtv.com/songs/60014180.mkv +小贱-多喜欢你(DVD原伴双轨),http://em.21dtv.com/songs/60096257.mkv +张智霖+张柏芝-多谢关心(演唱会),http://em.21dtv.com/songs/60064158.mkv +张智霖-多谢关心,http://em.21dtv.com/songs/60016217.mkv +孙辉-断线风筝,http://em.21dtv.com/songs/60116708.mkv +郭少杰-大写的书,http://em.21dtv.com/songs/60129669.mkv +王馨-灯下读你,http://em.21dtv.com/songs/60131683.mkv +童唱-大象拔河,http://em.21dtv.com/songs/60014167.mkv +动画-大象拔河,http://em.21dtv.com/songs/60014166.mkv +彭羚+卢巧音-多谢芭比(演唱会),http://em.21dtv.com/songs/60016216.mkv +谢有才-滴血爱情,http://em.21dtv.com/songs/60015079.mkv +徐明忠-当我在走,http://em.21dtv.com/songs/60082809.mkv +李贵府-帝王之恋,http://em.21dtv.com/songs/60015161.mkv +张恒远-当我走过(现场版),http://em.21dtv.com/songs/60103273.mkv +周迅-带我走吧(演唱会),http://em.21dtv.com/songs/60014285.mkv +夏天-等我先说,http://em.21dtv.com/songs/60082834.mkv +王绎龙-dj万万岁,http://em.21dtv.com/songs/60073124.mkv +王亚东-独吻天下,http://em.21dtv.com/songs/60110379.mkv +RIZZLE KICKS-down with the trumpets,http://em.21dtv.com/songs/60063581.mkv +DISTURBED-down with the sickness(演唱会),http://em.21dtv.com/songs/60001403.mkv +TANGERINE KITTY-dumb ways to die,http://em.21dtv.com/songs/60073163.mkv +METRO TRAINS-dumb ways to die,http://em.21dtv.com/songs/60073162.mkv +赵姝-东吴水师,http://em.21dtv.com/songs/60131846.mkv +范玮琪-动物森林,http://em.21dtv.com/songs/60111376.mkv +薛之谦-动物世界,http://em.21dtv.com/songs/60135712.mkv +Younha-对我热情,http://em.21dtv.com/songs/60107454.mkv +女声-到吴起镇,http://em.21dtv.com/songs/60014765.mkv +男声-到吴起镇,http://em.21dtv.com/songs/60014764.mkv +群星-带我去飞,http://em.21dtv.com/songs/60088455.mkv +腾格尔+满文军+含笑+洪泉-带我去飞,http://em.21dtv.com/songs/60014277.mkv +吕雯-带我去飞,http://em.21dtv.com/songs/60014276.mkv +胡美仪-蝶舞翩翩(演唱会),http://em.21dtv.com/songs/60015417.mkv +扎西-达娃娜姆,http://em.21dtv.com/songs/60089893.mkv +OLLY MURS-dance with me tonight,http://em.21dtv.com/songs/60065566.mkv +吴建豪-dance with me tonight(演唱会),http://em.21dtv.com/songs/60001137.mkv +LUTHER VANDROSS-dance with my father,http://em.21dtv.com/songs/60084701.mkv +CELINE DION-dance with my father,http://em.21dtv.com/songs/60067869.mkv +LIONEL RICHIE-dont wanna lose you,http://em.21dtv.com/songs/60001389.mkv +郭津彤-蝶舞流觞,http://em.21dtv.com/songs/60114834.mkv +山东-对我来说,http://em.21dtv.com/songs/60069369.mkv +阳光-当我老了,http://em.21dtv.com/songs/60014611.mkv +ZEN-带我离开,http://em.21dtv.com/songs/60014274.mkv +BY2-带我离开,http://em.21dtv.com/songs/60014273.mkv +谭咏麟-都为了爱,http://em.21dtv.com/songs/60015723.mkv +佚名-等我凯旋,http://em.21dtv.com/songs/60015035.mkv +陈娟儿-低温交流,http://em.21dtv.com/songs/60127546.mkv +一灯-大悟江湖,http://em.21dtv.com/songs/60133316.mkv +张智成-带我回去,http://em.21dtv.com/songs/60065924.mkv +易帆-等我回来,http://em.21dtv.com/songs/60075163.mkv +蘑菇团-等我回来,http://em.21dtv.com/songs/60075162.mkv +双双-等我回来,http://em.21dtv.com/songs/60015034.mkv +路遥-等我回来,http://em.21dtv.com/songs/60015033.mkv +郭富城-等我回来,http://em.21dtv.com/songs/60015032.mkv +曾轶可-等我回来,http://em.21dtv.com/songs/60015031.mkv +周葆元-等我回来(无原唱),http://em.21dtv.com/songs/60015030.mkv +群星-带我回家,http://em.21dtv.com/songs/60102633.mkv +薛之谦-等我回家,http://em.21dtv.com/songs/60097447.mkv +林逸欣-带我回家,http://em.21dtv.com/songs/60082796.mkv +傅振辉-等我回航,http://em.21dtv.com/songs/60109159.mkv +阿吉太组合-达瓦更扎,http://em.21dtv.com/songs/60115473.mkv +阿里郎-带我飞吧,http://em.21dtv.com/songs/60088844.mkv +王又萱-懂我的心,http://em.21dtv.com/songs/60135537.mkv +林立洋-当我懂得(无原唱),http://em.21dtv.com/songs/60014603.mkv +战犯+春艳-当我穿着,http://em.21dtv.com/songs/60113530.mkv +潘玮仪-dreams will come true,http://em.21dtv.com/songs/60001432.mkv +许婉琳-独望苍穹,http://em.21dtv.com/songs/60124470.mkv +佚名-dont worry be happy,http://em.21dtv.com/songs/60001391.mkv +彩虹姐姐-动物爸爸(无原唱),http://em.21dtv.com/songs/60015664.mkv +林冰冰-D Va,http://em.21dtv.com/songs/60125769.mkv +DAVID GUETTA-do u like me,http://em.21dtv.com/songs/60062002.mkv +ADELE-dont you remember(演唱会),http://em.21dtv.com/songs/60065572.mkv +黄秋生-地踏摇滚,http://em.21dtv.com/songs/60015116.mkv +风火海-眈天望地,http://em.21dtv.com/songs/60014404.mkv +GENTLEMAN-代替太阳,http://em.21dtv.com/songs/60108224.mkv +林芯仪-道听涂说,http://em.21dtv.com/songs/60120672.mkv +林芯仪-道听涂说,http://em.21dtv.com/songs/60119715.mkv +S.STEWART-dance to the music(无原唱),http://em.21dtv.com/songs/60001135.mkv +CHRIS BROWN+AALIYAH-dont think they know,http://em.21dtv.com/songs/60082138.mkv +丁凡+蒋文端-洞庭十送,http://em.21dtv.com/songs/60015676.mkv +七郎-对天撒乃,http://em.21dtv.com/songs/60016068.mkv +HAIM-dont save me,http://em.21dtv.com/songs/60073142.mkv +郑智化-大同世界,http://em.21dtv.com/songs/60014137.mkv +DAVICHI-dont say goodbye,http://em.21dtv.com/songs/60062001.mkv +姜昆+唐杰忠-电梯奇遇,http://em.21dtv.com/songs/60089782.mkv +王雅洁-电台情歌,http://em.21dtv.com/songs/60131682.mkv +邓超-电台情歌,http://em.21dtv.com/songs/60128450.mkv +邱芸子-电台情歌,http://em.21dtv.com/songs/60064138.mkv +莫文蔚-电台情歌,http://em.21dtv.com/songs/60015351.mkv +莫文蔚-电台情歌(演唱会),http://em.21dtv.com/songs/60015350.mkv +韩晓-大头皮鞋,http://em.21dtv.com/songs/60014139.mkv +玛希-道特淖尔,http://em.21dtv.com/songs/60014778.mkv +彭佳慧-dont tell me why(演唱会),http://em.21dtv.com/songs/60001381.mkv +佚名-dont tell me goodnight,http://em.21dtv.com/songs/60001380.mkv +LLOYD+ANDRE 3000-dedication to my ex,http://em.21dtv.com/songs/60066633.mkv +ALICIA KEYS-doesnt mean anything,http://em.21dtv.com/songs/60073128.mkv +金婷婷-冬天来了(演唱会),http://em.21dtv.com/songs/60099548.mkv +权振东+佳宁组合-冬天来了,http://em.21dtv.com/songs/60081137.mkv +佳宁组合+权振东-冬天来了,http://em.21dtv.com/songs/60069361.mkv +佑璇-冬天来了(无原唱),http://em.21dtv.com/songs/60015605.mkv +太极乐队-顶天立地,http://em.21dtv.com/songs/60015448.mkv +雷有辉+邓建明-顶天立地,http://em.21dtv.com/songs/60015447.mkv +太极乐队-顶天立地(演唱会),http://em.21dtv.com/songs/60015446.mkv +李宇春-冬天快乐,http://em.21dtv.com/songs/60015604.mkv +CHRIS BROWN-dont judge me,http://em.21dtv.com/songs/60073140.mkv +佚名-dont think im not,http://em.21dtv.com/songs/60001385.mkv +T-RUSH-dont think im not(演唱会),http://em.21dtv.com/songs/60001384.mkv +EPIK HIGH-dont hate me,http://em.21dtv.com/songs/60073138.mkv +GD+TOP-dont go home,http://em.21dtv.com/songs/60062034.mkv +任剑辉-登坛鬼辩,http://em.21dtv.com/songs/60014833.mkv +GIRL'S DAY-dont forget me,http://em.21dtv.com/songs/60073135.mkv +张佑钱-冬天的雪,http://em.21dtv.com/songs/60114522.mkv +储维-冬天的雪,http://em.21dtv.com/songs/60101912.mkv +周华健-当天的心,http://em.21dtv.com/songs/60014596.mkv +戚薇-冬天的树,http://em.21dtv.com/songs/60107751.mkv +幸福大街-冬天的树,http://em.21dtv.com/songs/60069360.mkv +阿峻-当天的梦,http://em.21dtv.com/songs/60075116.mkv +陈慧琳-得天独厚,http://em.21dtv.com/songs/60014804.mkv +胡夏-刀塔传奇,http://em.21dtv.com/songs/60106208.mkv +沈浩天-冬天不在,http://em.21dtv.com/songs/60071890.mkv +群星-低碳贝贝,http://em.21dtv.com/songs/60075168.mkv +佚名-deeper than a river(无原唱),http://em.21dtv.com/songs/60001205.mkv +2R-第29天,http://em.21dtv.com/songs/60015162.mkv +斯琴巴图-东胜之约,http://em.21dtv.com/songs/60113540.mkv +郑钧-第三只眼,http://em.21dtv.com/songs/60015217.mkv +南拳妈妈-东山再起,http://em.21dtv.com/songs/60121467.mkv +许美静-多事之秋,http://em.21dtv.com/songs/60016203.mkv +猪哥亮-东山再起,http://em.21dtv.com/songs/60015561.mkv +古巨基-大师作品,http://em.21dtv.com/songs/60014126.mkv +古巨基-大师作品(演唱会),http://em.21dtv.com/songs/60014125.mkv +任贤齐-动绳之恋,http://em.21dtv.com/songs/60090546.mkv +张曼-滴水之恩,http://em.21dtv.com/songs/60085366.mkv +侯湘婷-都是真的,http://em.21dtv.com/songs/60015722.mkv +康康-定时炸弹,http://em.21dtv.com/songs/60015462.mkv +佚名-单身一族,http://em.21dtv.com/songs/60014393.mkv +谭咏麟-单身一族,http://em.21dtv.com/songs/60014392.mkv +姚瑶-都市月夜,http://em.21dtv.com/songs/60061161.mkv +秀兰玛雅-第三月台,http://em.21dtv.com/songs/60075184.mkv +刘金-第十一年,http://em.21dtv.com/songs/60080539.mkv +张霖-dont say you know,http://em.21dtv.com/songs/60084704.mkv +江蕙-当时欲嫁,http://em.21dtv.com/songs/60014593.mkv +刘若英-多少遗憾,http://em.21dtv.com/songs/60090724.mkv +李韦-单身月会,http://em.21dtv.com/songs/60069332.mkv +许志安-单手拥抱,http://em.21dtv.com/songs/60093153.mkv +陈鹰-淡水小镇(无原唱),http://em.21dtv.com/songs/60014462.mkv +沈丹丹-独身宣言,http://em.21dtv.com/songs/60116999.mkv +邓妙华-独守斜阳,http://em.21dtv.com/songs/60082856.mkv +F.I.R-第十行星,http://em.21dtv.com/songs/60015218.mkv +张杰+谢娜-大手小手,http://em.21dtv.com/songs/60085020.mkv +许秋怡-低声下气,http://em.21dtv.com/songs/60015070.mkv +王馨平-打碎心瓶,http://em.21dtv.com/songs/60013826.mkv +国巍-都市寻梦,http://em.21dtv.com/songs/60061160.mkv +宋孟君+蓝卓彬-独上西楼,http://em.21dtv.com/songs/60125411.mkv +李玉刚(绝代歌姬)-独上西楼,http://em.21dtv.com/songs/60114607.mkv +朗嘎拉姆-独上西楼,http://em.21dtv.com/songs/60113584.mkv +方伊琪-独上西楼,http://em.21dtv.com/songs/60075234.mkv +张玉霞-独上西楼,http://em.21dtv.com/songs/60069364.mkv +刘家昌-独上西楼,http://em.21dtv.com/songs/60015805.mkv +姜育恒-独上西楼,http://em.21dtv.com/songs/60015804.mkv +邓丽君-独上西楼,http://em.21dtv.com/songs/60015803.mkv +容祖儿-独上西楼(演唱会),http://em.21dtv.com/songs/60015802.mkv +邓丽君-独上西楼(演唱会),http://em.21dtv.com/songs/60015801.mkv +高明骏-都市峡谷,http://em.21dtv.com/songs/60089002.mkv +浩天-都是兄弟,http://em.21dtv.com/songs/60128178.mkv +艾福杰尼+黄旭-都市物语,http://em.21dtv.com/songs/60132825.mkv +赵奕欢+莫熙儿+田晓天+王紫潼+宋-登上舞台,http://em.21dtv.com/songs/60075142.mkv +群星-登上舞台(演唱会),http://em.21dtv.com/songs/60075141.mkv +SMLLE GUEEN-登上舞台(演唱会),http://em.21dtv.com/songs/60064121.mkv +方梓媛-单身舞步(演唱会),http://em.21dtv.com/songs/60014391.mkv +高楠-德善天下,http://em.21dtv.com/songs/60118195.mkv +郑智化-单身逃亡,http://em.21dtv.com/songs/60014388.mkv +陈楚生-丹书铁契,http://em.21dtv.com/songs/60014313.mkv +RIHANNA-dont stop the music,http://em.21dtv.com/songs/60001374.mkv +秦伟-单身通告(无原唱),http://em.21dtv.com/songs/60014389.mkv +梅艳芳-第四十夜,http://em.21dtv.com/songs/60015221.mkv +达与璐-丢失随想,http://em.21dtv.com/songs/60015484.mkv +大兵+奇志-电视速配,http://em.21dtv.com/songs/60089762.mkv +马天佑-倒数三秒,http://em.21dtv.com/songs/60124709.mkv +张惠妹-倒数三秒,http://em.21dtv.com/songs/60014714.mkv +杨千嬅-的士司机(演唱会),http://em.21dtv.com/songs/60014818.mkv +包伟铭-大叔时代,http://em.21dtv.com/songs/60105659.mkv +吴若萱-单身时代,http://em.21dtv.com/songs/60102041.mkv +徐莹-屌丝时代,http://em.21dtv.com/songs/60100054.mkv +雨中百合-独守伤悲,http://em.21dtv.com/songs/60111512.mkv +郭美美-大声说爱,http://em.21dtv.com/songs/60014121.mkv +安心亚-单身日记,http://em.21dtv.com/songs/60071864.mkv +许茹芸-单身日记,http://em.21dtv.com/songs/60014387.mkv +蔡依林-第三人称,http://em.21dtv.com/songs/60107191.mkv +蔡依林-第三人称,http://em.21dtv.com/songs/60106261.mkv +江潮-第三人称,http://em.21dtv.com/songs/60104270.mkv +倪安东-第三人称,http://em.21dtv.com/songs/60094812.mkv +HUSH-第三人称,http://em.21dtv.com/songs/60071882.mkv +云菲菲-都市情缘,http://em.21dtv.com/songs/60104771.mkv +佚名-单双气象,http://em.21dtv.com/songs/60014397.mkv +薛凯琪-点水蜻蜓,http://em.21dtv.com/songs/60117204.mkv +叶乃文-点水蜻蜓,http://em.21dtv.com/songs/60015321.mkv +戴佩妮-单身潜逃,http://em.21dtv.com/songs/60014382.mkv +田馥甄-独善其身,http://em.21dtv.com/songs/60125971.mkv +郭达+蔡明+李文启+刘-都是亲人,http://em.21dtv.com/songs/60090272.mkv +戈浪-德善奇迹,http://em.21dtv.com/songs/60111112.mkv +林正-单身情歌,http://em.21dtv.com/songs/60112027.mkv +四个朋友-单身情歌,http://em.21dtv.com/songs/60111788.mkv +陈俊豪+陈羽凡-单身情歌,http://em.21dtv.com/songs/60095129.mkv +紫海-屌丝情歌(舞曲版),http://em.21dtv.com/songs/60085050.mkv +卓依婷-单身情歌,http://em.21dtv.com/songs/60014386.mkv +小玉荣子-单身情歌,http://em.21dtv.com/songs/60014385.mkv +林志炫-单身情歌,http://em.21dtv.com/songs/60014384.mkv +林志炫-单身情歌(演唱会),http://em.21dtv.com/songs/60014383.mkv +林子祥-单手拍掌,http://em.21dtv.com/songs/60014394.mkv +强歌-都是朋友,http://em.21dtv.com/songs/60117748.mkv +岚戈-都是朋友,http://em.21dtv.com/songs/60108464.mkv +许靖韵-单身派对,http://em.21dtv.com/songs/60107216.mkv +STEPS-deeper shade of blue,http://em.21dtv.com/songs/60001204.mkv +叶玉卿-独身女子,http://em.21dtv.com/songs/60015808.mkv +江蕙-独身女子,http://em.21dtv.com/songs/60015807.mkv +左成-多少你我,http://em.21dtv.com/songs/60130279.mkv +黑妹-单身女人(演唱会),http://em.21dtv.com/songs/60075102.mkv +郑秀文+梅艳芳-单身女人,http://em.21dtv.com/songs/60014380.mkv +李娜-单身女人,http://em.21dtv.com/songs/60014379.mkv +Sparkling Girls-单身女皇,http://em.21dtv.com/songs/60107443.mkv +SKG女团-单身女皇,http://em.21dtv.com/songs/60097330.mkv +余天-多少年后(无原唱),http://em.21dtv.com/songs/60016194.mkv +林姝涵-都是你的,http://em.21dtv.com/songs/60114623.mkv +清响-当时明月,http://em.21dtv.com/songs/60101427.mkv +罗时丰-淡水暮色,http://em.21dtv.com/songs/60095860.mkv +佚名-淡水暮色,http://em.21dtv.com/songs/60014461.mkv +奥杰阿格-东山美人,http://em.21dtv.com/songs/60110121.mkv +郭静-单身美好,http://em.21dtv.com/songs/60075101.mkv +宋熙铭-都是梦啊,http://em.21dtv.com/songs/60064148.mkv +风采轮-独上兰舟,http://em.21dtv.com/songs/60082065.mkv +BBF-单身练习,http://em.21dtv.com/songs/60129888.mkv +薇薇-单身练习,http://em.21dtv.com/songs/60069331.mkv +胡杏儿-单身旅行,http://em.21dtv.com/songs/60014377.mkv +赵凯-单身礼物,http://em.21dtv.com/songs/60014376.mkv +张曼莉-都市丽人,http://em.21dtv.com/songs/60015693.mkv +陈星-dont say love me,http://em.21dtv.com/songs/60001366.mkv +陶晶莹-单身旅记,http://em.21dtv.com/songs/60014378.mkv +张道儒-单身旅行,http://em.21dtv.com/songs/60097332.mkv +吕方-都市恋歌,http://em.21dtv.com/songs/60015696.mkv +谭咏麟-都市恋歌(HD演唱会),http://em.21dtv.com/songs/60015695.mkv +央金兰泽-旦史拉措,http://em.21dtv.com/songs/60075103.mkv +单色凌-单色戒指,http://em.21dtv.com/songs/60068210.mkv +花世纪-倒数计时,http://em.21dtv.com/songs/60111369.mkv +辛子奇-倒数计时,http://em.21dtv.com/songs/60014713.mkv +韦小天-单身久了,http://em.21dtv.com/songs/60075100.mkv +司徒兰芳-大叔很拽,http://em.21dtv.com/songs/60113324.mkv +ROBYNN+KENDY-第十行星,http://em.21dtv.com/songs/60097423.mkv +MC九局-刀山火海,http://em.21dtv.com/songs/60128683.mkv +李基灿-大声呼喊,http://em.21dtv.com/songs/60071859.mkv +罗时丰-淡水河边,http://em.21dtv.com/songs/60134104.mkv +余天-淡水河边,http://em.21dtv.com/songs/60014459.mkv +齐秦-淡水河边,http://em.21dtv.com/songs/60014458.mkv +女声-淡水河边,http://em.21dtv.com/songs/60014457.mkv +合唱-淡水河边,http://em.21dtv.com/songs/60014456.mkv +戴佩妮-淡水河边,http://em.21dtv.com/songs/60014455.mkv +司徒兰芳-大叔很跩,http://em.21dtv.com/songs/60111740.mkv +张霖-单身贵族,http://em.21dtv.com/songs/60085025.mkv +婷婷-单身贵族,http://em.21dtv.com/songs/60063005.mkv +陈小云-单身贵族,http://em.21dtv.com/songs/60014375.mkv +莎莎-单身公主,http://em.21dtv.com/songs/60014373.mkv +邓百成-单身哥仔,http://em.21dtv.com/songs/60014366.mkv +詹雅雯-单身孤影,http://em.21dtv.com/songs/60014374.mkv +黄品冠-单身公寓,http://em.21dtv.com/songs/60014372.mkv +佚名-第三个人,http://em.21dtv.com/songs/60015205.mkv +陆虎-单身Go,http://em.21dtv.com/songs/60116330.mkv +蔡依林-单身公害,http://em.21dtv.com/songs/60014371.mkv +蔡依林-单身公害(演唱会),http://em.21dtv.com/songs/60014370.mkv +林海峰-的士够格(演唱会),http://em.21dtv.com/songs/60014817.mkv +姜木-都市孤儿,http://em.21dtv.com/songs/60075224.mkv +包伟铭-单身告白,http://em.21dtv.com/songs/60105658.mkv +邰正宵-dont say good bye,http://em.21dtv.com/songs/60001358.mkv +李杨飞-大三电音,http://em.21dtv.com/songs/60085018.mkv +詹雅雯-淡水的雨,http://em.21dtv.com/songs/60014454.mkv +万芳-多事的秋,http://em.21dtv.com/songs/60016202.mkv +王识贤-都市的梦,http://em.21dtv.com/songs/60079465.mkv +广智-抵死的爱,http://em.21dtv.com/songs/60066957.mkv +佚名-多少残月,http://em.21dtv.com/songs/60016190.mkv +范晓萱-大声唱歌,http://em.21dtv.com/songs/60014116.mkv +佚名-得失错对,http://em.21dtv.com/songs/60014803.mkv +萧亚轩-多少次爱,http://em.21dtv.com/songs/60091983.mkv +陈美安-第三杯酒,http://em.21dtv.com/songs/60068223.mkv +佚名-第三杯酒,http://em.21dtv.com/songs/60015203.mkv +龙千玉-第三杯酒,http://em.21dtv.com/songs/60015202.mkv +陈美安-第三杯酒(演唱会),http://em.21dtv.com/songs/60015201.mkv +风之翼-单身部队(演唱会),http://em.21dtv.com/songs/60014363.mkv +刘心-打扰一下,http://em.21dtv.com/songs/60075033.mkv +于立成+曾治豪-大人小孩,http://em.21dtv.com/songs/60014110.mkv +邱锋泽-单人套房,http://em.21dtv.com/songs/60102788.mkv +派伟俊-敌人是谁,http://em.21dtv.com/songs/60130547.mkv +金贵晟+艾怡良-大人情歌,http://em.21dtv.com/songs/60107289.mkv +艾怡良+金贵晟-大人情歌,http://em.21dtv.com/songs/60106222.mkv +许嵩-单人旅途,http://em.21dtv.com/songs/60014361.mkv +周慧敏-冬日浪漫,http://em.21dtv.com/songs/60015592.mkv +龙奔-冬日恋歌,http://em.21dtv.com/songs/60075216.mkv +单色凌+伽菲珈而-单人季节,http://em.21dtv.com/songs/60102008.mkv +夏沙-单人回忆,http://em.21dtv.com/songs/60112591.mkv +吴彤-对人欢笑,http://em.21dtv.com/songs/60016062.mkv +周慧敏-动人黄昏,http://em.21dtv.com/songs/60015663.mkv +金艺林-大人对吗,http://em.21dtv.com/songs/60110594.mkv +邱心仪-单人芭蕾(无原唱),http://em.21dtv.com/songs/60014357.mkv +思予-多日不见,http://em.21dtv.com/songs/60132481.mkv +周传雄-打扰爱情,http://em.21dtv.com/songs/60070613.mkv +佚名-杜丘之歌,http://em.21dtv.com/songs/60015873.mkv +陈冠希-担起宇宙,http://em.21dtv.com/songs/60093387.mkv +李成-独缺一友,http://em.21dtv.com/songs/60102341.mkv +潘宝新-断桥吟月,http://em.21dtv.com/songs/60071897.mkv +王庆爽-断桥遗梦,http://em.21dtv.com/songs/60075244.mkv +林慧萍-多情也害,http://em.21dtv.com/songs/60095667.mkv +林慧萍-多情吔害,http://em.21dtv.com/songs/60016176.mkv +符号-断桥约会,http://em.21dtv.com/songs/60015940.mkv +宿雨涵-地球乡音,http://em.21dtv.com/songs/60062944.mkv +张莹-地球先生,http://em.21dtv.com/songs/60089866.mkv +薛启超+王彩艳-多情许郎,http://em.21dtv.com/songs/60112948.mkv +郭采洁-单曲循环,http://em.21dtv.com/songs/60068209.mkv +星弟-单曲循环,http://em.21dtv.com/songs/60014356.mkv +关心妍-地球兄弟,http://em.21dtv.com/songs/60015114.mkv +叶德娴-冬青树下,http://em.21dtv.com/songs/60092427.mkv +佚名-多情世界,http://em.21dtv.com/songs/60016173.mkv +汶麟-多情世界,http://em.21dtv.com/songs/60016172.mkv +沙宝亮-多情人间,http://em.21dtv.com/songs/60091601.mkv +海无颜-多情人间,http://em.21dtv.com/songs/60016169.mkv +宗庸卓玛-德钦情歌,http://em.21dtv.com/songs/60014814.mkv +祖海-党旗飘飘,http://em.21dtv.com/songs/60014681.mkv +杨静-多情女子,http://em.21dtv.com/songs/60130472.mkv +于寇华-多情男子,http://em.21dtv.com/songs/60016167.mkv +阿尔法+王羽彤-地球母亲,http://em.21dtv.com/songs/60094324.mkv +陈浩德+方伊琪-打情骂俏(演唱会),http://em.21dtv.com/songs/60013817.mkv +顾莉雅-地球妈妈,http://em.21dtv.com/songs/60015107.mkv +于文华-单亲妈妈,http://em.21dtv.com/songs/60014354.mkv +张蓉蓉-多情玫瑰,http://em.21dtv.com/songs/60110211.mkv +姚贝娜-断桥离情,http://em.21dtv.com/songs/60094454.mkv +文章-德清老家,http://em.21dtv.com/songs/60125609.mkv +静物乐团-第七灵感,http://em.21dtv.com/songs/60015198.mkv +0086男团-地球两边(演唱会),http://em.21dtv.com/songs/60071880.mkv +群星-地球家园,http://em.21dtv.com/songs/60069350.mkv +黄淇-东区街头(无原唱),http://em.21dtv.com/songs/60015553.mkv +雨侨-大奇迹日,http://em.21dtv.com/songs/60128566.mkv +王雯-断情绝爱,http://em.21dtv.com/songs/60088345.mkv +王雯-断情决爱,http://em.21dtv.com/songs/60015942.mkv +魏新雨-丹青古寨,http://em.21dtv.com/songs/60107369.mkv +此追-德钦姑娘,http://em.21dtv.com/songs/60075140.mkv +艾梦萌-单亲房子,http://em.21dtv.com/songs/60014353.mkv +夜郎金鑫-多情的吻,http://em.21dtv.com/songs/60107625.mkv +张蓉蓉-多情的人(无原唱),http://em.21dtv.com/songs/60016149.mkv +群星-大桥大桥,http://em.21dtv.com/songs/60135632.mkv +八三夭-东区东区,http://em.21dtv.com/songs/60066966.mkv +刘其贤-多情的风,http://em.21dtv.com/songs/60094827.mkv +许嵩-断桥残雪,http://em.21dtv.com/songs/60015937.mkv +陈洁灵-刀枪不入,http://em.21dtv.com/songs/60061143.mkv +卢巧音-刀枪不入,http://em.21dtv.com/songs/60014696.mkv +卢巧音-刀枪不入(演唱会),http://em.21dtv.com/songs/60014695.mkv +姜育恒-多情不悔,http://em.21dtv.com/songs/60016143.mkv +蔡小虎-赌情博爱,http://em.21dtv.com/songs/60015853.mkv +李盈萱-东埔之恋(无原唱),http://em.21dtv.com/songs/60015551.mkv +刘德华-短篇小说,http://em.21dtv.com/songs/60015894.mkv +张志良+朱跃明-大炮醒了,http://em.21dtv.com/songs/60069321.mkv +李龙-盾牌青春,http://em.21dtv.com/songs/60111178.mkv +祝友-打耙归来,http://em.21dtv.com/songs/60091797.mkv +MR.MR-Do You Feel Me,http://em.21dtv.com/songs/60100740.mkv +ANDY WILLIAMS-days of wine roses,http://em.21dtv.com/songs/60001179.mkv +挂在盒子上-Down By The Water,http://em.21dtv.com/songs/60100065.mkv +Marian Hill-Down,http://em.21dtv.com/songs/60133241.mkv +Emilio Romero+Pepe Gordillo-Down,http://em.21dtv.com/songs/60123466.mkv +佚名-down on the corner,http://em.21dtv.com/songs/60001398.mkv +佚名-dancing on the ceiling,http://em.21dtv.com/songs/60001147.mkv +李聪-DOPE,http://em.21dtv.com/songs/60135374.mkv +egoist-Door,http://em.21dtv.com/songs/60116445.mkv +爱戴-Don't You Let Me,http://em.21dtv.com/songs/60100297.mkv +森高千里-Don't Stop The Music,http://em.21dtv.com/songs/60100246.mkv +佚名-dance on little girl,http://em.21dtv.com/songs/60001134.mkv +SUNNY HILL-darling of all hearts,http://em.21dtv.com/songs/60082129.mkv +李克勤-等你愿意,http://em.21dtv.com/songs/60015019.mkv +陈秋实+蔡照-当你远行,http://em.21dtv.com/songs/60133050.mkv +邝美云-等你一生,http://em.21dtv.com/songs/60015017.mkv +黄乙玲-多年以前,http://em.21dtv.com/songs/60016135.mkv +游鸿明-对你依恋,http://em.21dtv.com/songs/60091630.mkv +南玛子呷-多年以后,http://em.21dtv.com/songs/60131227.mkv +张超-多年以后,http://em.21dtv.com/songs/60121679.mkv +黄启铭-多年以后,http://em.21dtv.com/songs/60104795.mkv +孔雀哥哥-多年以后,http://em.21dtv.com/songs/60104031.mkv +姜育恒-多年以后,http://em.21dtv.com/songs/60016134.mkv +阿妹妹-大闹一场(演唱会),http://em.21dtv.com/songs/60014080.mkv +大嘴巴-da now一场(演唱会),http://em.21dtv.com/songs/60001127.mkv +李克勤-冬暖夏凉,http://em.21dtv.com/songs/60015590.mkv +李克勤-冬暖夏凉(演唱会),http://em.21dtv.com/songs/60015589.mkv +谭湘子-多难兴邦,http://em.21dtv.com/songs/60100468.mkv +张翠萍-独你唯一,http://em.21dtv.com/songs/60119544.mkv +929-当你忘记,http://em.21dtv.com/songs/60104648.mkv +莫文蔚-对你讨好,http://em.21dtv.com/songs/60091965.mkv +沈懿-大闹天宫,http://em.21dtv.com/songs/60130535.mkv +何润东-大闹天宫,http://em.21dtv.com/songs/60100765.mkv +千童-等你上线,http://em.21dtv.com/songs/60062821.mkv +何东-大年三十,http://em.21dtv.com/songs/60120304.mkv +伊扬-大年三十,http://em.21dtv.com/songs/60087283.mkv +群星-大年三十(演唱会),http://em.21dtv.com/songs/60014084.mkv +王海玲-当你生日,http://em.21dtv.com/songs/60014561.mkv +韩晓辉-读你如诗,http://em.21dtv.com/songs/60116371.mkv +林良欢+许志豪-等你入梦,http://em.21dtv.com/songs/60015009.mkv +佚名-大内群英,http://em.21dtv.com/songs/60014082.mkv +叶振棠-大内群英,http://em.21dtv.com/songs/60014081.mkv +贺世哲+张晓明-等你娶我,http://em.21dtv.com/songs/60124506.mkv +贺世哲+张晓明-等你娶我,http://em.21dtv.com/songs/60108898.mkv +王识贤-带你去玩,http://em.21dtv.com/songs/60014270.mkv +陈雅珍-等你来疼(无原唱),http://em.21dtv.com/songs/60080913.mkv +高夫-当你老了,http://em.21dtv.com/songs/60129814.mkv +侃侃-当你老了,http://em.21dtv.com/songs/60116550.mkv +莫文蔚-当你老了,http://em.21dtv.com/songs/60109600.mkv +莫文蔚-当你老了,http://em.21dtv.com/songs/60108856.mkv +李健-当你老了,http://em.21dtv.com/songs/60108561.mkv +赵照-当你老了,http://em.21dtv.com/songs/60108022.mkv +阳光-当你老了,http://em.21dtv.com/songs/60088826.mkv +赵照-当你老了,http://em.21dtv.com/songs/60082048.mkv +巴桑拉姆-等你来爱,http://em.21dtv.com/songs/60116759.mkv +曹璐-等你开口,http://em.21dtv.com/songs/60122801.mkv +彭羚-等你开口,http://em.21dtv.com/songs/60015001.mkv +蓝羽-当你开口,http://em.21dtv.com/songs/60014556.mkv +谢金燕-等你靠岸,http://em.21dtv.com/songs/60015003.mkv +郭富城-当年旧事,http://em.21dtv.com/songs/60014573.mkv +杨烈-等你回头,http://em.21dtv.com/songs/60096095.mkv +王雨馨-等你回头,http://em.21dtv.com/songs/60014997.mkv +蔡小虎-等你回头,http://em.21dtv.com/songs/60014996.mkv +沙宝亮-多瑙河畔,http://em.21dtv.com/songs/60131605.mkv +白雪-等你回来,http://em.21dtv.com/songs/60125978.mkv +陈林波-等你回来,http://em.21dtv.com/songs/60114868.mkv +海阔-等你回来,http://em.21dtv.com/songs/60112837.mkv +王晓敏-等你回来,http://em.21dtv.com/songs/60112111.mkv +宋沛江-等你回来,http://em.21dtv.com/songs/60111821.mkv +办桌二人组-等你回来,http://em.21dtv.com/songs/60111727.mkv +刘杰-等你回来,http://em.21dtv.com/songs/60110031.mkv +言承旭-等你回来,http://em.21dtv.com/songs/60097448.mkv +超级女声+李娜-等你回来,http://em.21dtv.com/songs/60088719.mkv +刘杰-等你回来,http://em.21dtv.com/songs/60075158.mkv +彭丽丽-等你回来,http://em.21dtv.com/songs/60070631.mkv +林峰-等你回来,http://em.21dtv.com/songs/60069347.mkv +陈后华-等你回来,http://em.21dtv.com/songs/60064126.mkv +刘昱-等你回来,http://em.21dtv.com/songs/60062683.mkv +张学友-等你回来,http://em.21dtv.com/songs/60014995.mkv +张艾文-等你回来,http://em.21dtv.com/songs/60014994.mkv +戴佩妮-等你回来(演唱会),http://em.21dtv.com/songs/60014993.mkv +周占超-等你回家,http://em.21dtv.com/songs/60119356.mkv +合力-等你回家,http://em.21dtv.com/songs/60118425.mkv +李虎-等你回家,http://em.21dtv.com/songs/60082830.mkv +苏丹-等你回家,http://em.21dtv.com/songs/60071878.mkv +黄格选-等你回家,http://em.21dtv.com/songs/60014992.mkv +格格-等你回家,http://em.21dtv.com/songs/60014991.mkv +洪禄云+陈水林-等你回航,http://em.21dtv.com/songs/60082829.mkv +韩宝仪-等你回航,http://em.21dtv.com/songs/60075157.mkv +龙飘飘-等你回航,http://em.21dtv.com/songs/60014990.mkv +刘辉兵-当年故事,http://em.21dtv.com/songs/60123692.mkv +ASTRO12-等你归来,http://em.21dtv.com/songs/60126514.mkv +岩罕建-等你归来,http://em.21dtv.com/songs/60124830.mkv +小贱-对你告白,http://em.21dtv.com/songs/60082866.mkv +卢巧音-代你发梦,http://em.21dtv.com/songs/60014256.mkv +袁小迪+萧蔓萱-等你返来,http://em.21dtv.com/songs/60014985.mkv +吴淑敏-等你返来,http://em.21dtv.com/songs/60014984.mkv +马浚伟+佘诗曼-帝女芳魂,http://em.21dtv.com/songs/60015146.mkv +江美琪-对你而言,http://em.21dtv.com/songs/60016044.mkv +无印良品-等你的心,http://em.21dtv.com/songs/60014976.mkv +黄品冠-等你的心,http://em.21dtv.com/songs/60014975.mkv +吴国敬-等你的我,http://em.21dtv.com/songs/60014974.mkv +陈国华-等你点头,http://em.21dtv.com/songs/60014983.mkv +远方-懂你的人,http://em.21dtv.com/songs/60015637.mkv +领航者乐队-对牛弹琴,http://em.21dtv.com/songs/60016061.mkv +曾宝仪-等你道歉,http://em.21dtv.com/songs/60014973.mkv +安又琪-等你懂了,http://em.21dtv.com/songs/60071877.mkv +林良欢-等你电话,http://em.21dtv.com/songs/60085038.mkv +王梓旭-等你到底,http://em.21dtv.com/songs/60014972.mkv +晓月-等你的爱,http://em.21dtv.com/songs/60084680.mkv +许强-等你的爱,http://em.21dtv.com/songs/60081136.mkv +卓文萱-对你的爱,http://em.21dtv.com/songs/60016035.mkv +常定晨-第N次印象,http://em.21dtv.com/songs/60127943.mkv +LA组合-等你出现,http://em.21dtv.com/songs/60101787.mkv +思念-等你出现,http://em.21dtv.com/songs/60075155.mkv +冯文女-等你出现,http://em.21dtv.com/songs/60014968.mkv +钟舒漫-代你出手,http://em.21dtv.com/songs/60069326.mkv +王铮亮-等你长大,http://em.21dtv.com/songs/60112123.mkv +EO2-大难不死,http://em.21dtv.com/songs/60014079.mkv +德龙+山丹-达那巴拉,http://em.21dtv.com/songs/60111108.mkv +木棉-等你不回,http://em.21dtv.com/songs/60087964.mkv +李炜+江映蓉-等你爱我,http://em.21dtv.com/songs/60098480.mkv +刘惜君-等你爱我,http://em.21dtv.com/songs/60090711.mkv +王晓娟-等你爱我,http://em.21dtv.com/songs/60085037.mkv +王晓娟-等你爱我(演唱会),http://em.21dtv.com/songs/60085036.mkv +王琪玮+多亮-等你爱我,http://em.21dtv.com/songs/60069345.mkv +陈奕迅-等你爱我,http://em.21dtv.com/songs/60014965.mkv +陈明-等你爱我,http://em.21dtv.com/songs/60014964.mkv +陈明-等你爱我(演唱会),http://em.21dtv.com/songs/60014963.mkv +爱歌-懂你爱你,http://em.21dtv.com/songs/60106088.mkv +王喆-大美中华,http://em.21dtv.com/songs/60071856.mkv +江涛-大梦中国,http://em.21dtv.com/songs/60085016.mkv +郑海燕-大美中国,http://em.21dtv.com/songs/60082781.mkv +成龙-大漠英雄,http://em.21dtv.com/songs/60131453.mkv +群星-大美义乌,http://em.21dtv.com/songs/60127280.mkv +TFBOYS-大梦想家,http://em.21dtv.com/songs/60114959.mkv +合力+乌兰图雅-大美兴和,http://em.21dtv.com/songs/60128874.mkv +旺姆-大美西藏,http://em.21dtv.com/songs/60110238.mkv +苏亚-大漠天籁,http://em.21dtv.com/songs/60103531.mkv +金婷婷-大漠深处(演唱会),http://em.21dtv.com/songs/60099549.mkv +宋祖英-大漠深处(演唱会),http://em.21dtv.com/songs/60075069.mkv +夏天Alex-倒梦如流,http://em.21dtv.com/songs/60121525.mkv +凤凰传奇-大漠情人,http://em.21dtv.com/songs/60014072.mkv +佚名-当面赔罪,http://em.21dtv.com/songs/60014540.mkv +侯丽娟-大美南海,http://em.21dtv.com/songs/60126606.mkv +李心洁-dont make me cry,http://em.21dtv.com/songs/60001350.mkv +李心洁+DEAR MOM-dont make me cry,http://em.21dtv.com/songs/60001349.mkv +王城-多美丽呀,http://em.21dtv.com/songs/60016130.mkv +刘栋升-大漠狼啸,http://em.21dtv.com/songs/60108342.mkv +拾音社-盗梦空间,http://em.21dtv.com/songs/60097425.mkv +李鸿玉-大美金寨,http://em.21dtv.com/songs/60118692.mkv +阿吉仔-歹命囝仔(无原唱),http://em.21dtv.com/songs/60014246.mkv +贾乃亮+李小璐-多面娇娃,http://em.21dtv.com/songs/60118066.mkv +苏春梅+梁耀安-刁蛮公主,http://em.21dtv.com/songs/60015365.mkv +金波-大漠戈壁,http://em.21dtv.com/songs/60108936.mkv +林心如-冬眠地图,http://em.21dtv.com/songs/60015587.mkv +萨顶顶-大名顶顶,http://em.21dtv.com/songs/60117179.mkv +羽泉-冬眠城市(演唱会),http://em.21dtv.com/songs/60015586.mkv +斯琴巴图-大漠传奇,http://em.21dtv.com/songs/60113542.mkv +零点乐队-多么爱你,http://em.21dtv.com/songs/60105505.mkv +刘欢-大连之恋,http://em.21dtv.com/songs/60130122.mkv +郑晓飞-丢了自己,http://em.21dtv.com/songs/60085053.mkv +王丽达-动力之都,http://em.21dtv.com/songs/60104297.mkv +连诗雅-大了一岁,http://em.21dtv.com/songs/60116270.mkv +许志安-第六元素(演唱会),http://em.21dtv.com/songs/60015196.mkv +孙家山+门丽-躲了又躲,http://em.21dtv.com/songs/60115789.mkv +孙家山-躲了又躲,http://em.21dtv.com/songs/60115788.mkv +陈洁仪-等了又等,http://em.21dtv.com/songs/60014950.mkv +叶文辉-等了又等(演唱会),http://em.21dtv.com/songs/60014949.mkv +陈慧娴-等了又等(演唱会),http://em.21dtv.com/songs/60014948.mkv +佚名-独立宣言,http://em.21dtv.com/songs/60015797.mkv +苏永康-独立宣言,http://em.21dtv.com/songs/60015796.mkv +苏永康-独立宣言(演唱会),http://em.21dtv.com/songs/60015795.mkv +镐天-点亮希望,http://em.21dtv.com/songs/60112327.mkv +叶玉卿-对来寻梦,http://em.21dtv.com/songs/60089717.mkv +莫文蔚-到了晚上,http://em.21dtv.com/songs/60093101.mkv +张学友-堕落天堂,http://em.21dtv.com/songs/60016266.mkv +郑智化-堕落天使,http://em.21dtv.com/songs/60016265.mkv +依稀-堕落天使,http://em.21dtv.com/songs/60016264.mkv +徐怀钰-堕落天使,http://em.21dtv.com/songs/60016263.mkv +郑智化-堕落天使(演唱会)(无原唱),http://em.21dtv.com/songs/60016262.mkv +毛宁-大浪淘沙(演唱会),http://em.21dtv.com/songs/60014056.mkv +黄大炜-地老天荒,http://em.21dtv.com/songs/60015098.mkv +关淑怡-地老天荒(演唱会),http://em.21dtv.com/songs/60015097.mkv +灭火器乐团-顶楼天光,http://em.21dtv.com/songs/60082846.mkv +评弹-答李淑一,http://em.21dtv.com/songs/60090217.mkv +信乐团-断了思念,http://em.21dtv.com/songs/60015928.mkv +谢珊-断了算了,http://em.21dtv.com/songs/60118052.mkv +小琴儿-断了算了,http://em.21dtv.com/songs/60015929.mkv +TWINS-冬令时间(演唱会),http://em.21dtv.com/songs/60064146.mkv +TWINS-冬令时间,http://em.21dtv.com/songs/60015583.mkv +何韵诗-丹赖斯队,http://em.21dtv.com/songs/60014312.mkv +罗文聪-堕落情海,http://em.21dtv.com/songs/60095844.mkv +蔡小虎-堕落情话,http://em.21dtv.com/songs/60016261.mkv +陈瑞+冷漠-灯笼情歌,http://em.21dtv.com/songs/60108987.mkv +葛本军-动力澎湃,http://em.21dtv.com/songs/60075221.mkv +王秀琳-独立品牌(演唱会)(无原唱),http://em.21dtv.com/songs/60015793.mkv +彭佳慧-大龄女子,http://em.21dtv.com/songs/60135269.mkv +彭佳慧-大龄女子,http://em.21dtv.com/songs/60111905.mkv +SUPER JUNIOR-M-到了明天,http://em.21dtv.com/songs/60061145.mkv +SJM-到了明天(演唱会),http://em.21dtv.com/songs/60014756.mkv +PHIL COLLINS-dont lose my number,http://em.21dtv.com/songs/60001347.mkv +周林灯-哆来咪发,http://em.21dtv.com/songs/60097347.mkv +陈慧琳-多啦a梦,http://em.21dtv.com/songs/60016126.mkv +唐韦琪-多啦a梦(演唱会),http://em.21dtv.com/songs/60016125.mkv +海生-断了联系,http://em.21dtv.com/songs/60129352.mkv +松浦亚弥-渡良濑桥,http://em.21dtv.com/songs/60015886.mkv +罗中旭-动了离念,http://em.21dtv.com/songs/60015652.mkv +庄心妍-断了乱了,http://em.21dtv.com/songs/60109293.mkv +苗苗-大乐莲花,http://em.21dtv.com/songs/60096456.mkv +王铮亮-点亮亮点,http://em.21dtv.com/songs/60015313.mkv +裘海正+JOHN FARNHAM-dont let it end,http://em.21dtv.com/songs/60001337.mkv +荒山亮-点亮荒山,http://em.21dtv.com/songs/60015312.mkv +动力火车-动力火车,http://em.21dtv.com/songs/60015654.mkv +陈冠希-单恋高校,http://em.21dtv.com/songs/60014347.mkv +高洪章-大理姑娘(演唱会),http://em.21dtv.com/songs/60061128.mkv +杜德伟-独领风骚,http://em.21dtv.com/songs/60015798.mkv +带泪的鱼-带泪的鱼,http://em.21dtv.com/songs/60082795.mkv +周杰伦-断了的弦,http://em.21dtv.com/songs/60015926.mkv +罗嘉良-独来独往,http://em.21dtv.com/songs/60134073.mkv +蔡济文-独来独往,http://em.21dtv.com/songs/60015791.mkv +东来东往-东来东往,http://em.21dtv.com/songs/60015543.mkv +许景淳-答啦滴啦,http://em.21dtv.com/songs/60092063.mkv +童唱-嘀哩嘀哩,http://em.21dtv.com/songs/60015072.mkv +许景淳-答啦嘀啦,http://em.21dtv.com/songs/60013728.mkv +许景淳-da la di la,http://em.21dtv.com/songs/60001126.mkv +黄名伟-淡蓝的街(无原唱),http://em.21dtv.com/songs/60014452.mkv +群星-打锣打鼓,http://em.21dtv.com/songs/60075031.mkv +巧千金-打锣打鼓,http://em.21dtv.com/songs/60075030.mkv +卓依婷-打锣打鼓,http://em.21dtv.com/songs/60013803.mkv +罗时丰-对了错了,http://em.21dtv.com/songs/60123069.mkv +李茂山-得来不易,http://em.21dtv.com/songs/60102354.mkv +梁家辉-得来不易(无原唱),http://em.21dtv.com/songs/60014798.mkv +童可可-多莉宝贝,http://em.21dtv.com/songs/60080277.mkv +董永鹏-哆啦a梦,http://em.21dtv.com/songs/60069374.mkv +CRYSTAL-大开眼戒,http://em.21dtv.com/songs/60092160.mkv +魔幻1加1-大开眼界,http://em.21dtv.com/songs/60014049.mkv +AT17-大开眼界(演唱会),http://em.21dtv.com/songs/60014048.mkv +陈奕迅-大开眼戒,http://em.21dtv.com/songs/60014047.mkv +张国荣-打开信箱,http://em.21dtv.com/songs/60013799.mkv +张国荣-打开信箱(演唱会),http://em.21dtv.com/songs/60013798.mkv +黎明诗-打开心窗,http://em.21dtv.com/songs/60013797.mkv +陈慧琳+陈晓东-打开天空,http://em.21dtv.com/songs/60097190.mkv +群星-打开天空,http://em.21dtv.com/songs/60013796.mkv +动力火车-打开天空,http://em.21dtv.com/songs/60013795.mkv +邹俊峰-打开天窗,http://em.21dtv.com/songs/60089503.mkv +花世纪-抵抗世界,http://em.21dtv.com/songs/60124394.mkv +刘美君+林海峰-大开色界,http://em.21dtv.com/songs/60014046.mkv +刘美君+林海峰-打开色界,http://em.21dtv.com/songs/60013793.mkv +水鸿-雕刻结局,http://em.21dtv.com/songs/60116987.mkv +解晓东-打开电视(演唱会),http://em.21dtv.com/songs/60013788.mkv +李晖-打开春天,http://em.21dtv.com/songs/60082773.mkv +李晖-打开春天(演唱会),http://em.21dtv.com/songs/60082772.mkv +曹智贤-得计之后,http://em.21dtv.com/songs/60085033.mkv +姚浩+江洋-东进之歌,http://em.21dtv.com/songs/60133543.mkv +东进农牧团队-东进之歌,http://em.21dtv.com/songs/60133325.mkv +阎维文-大江之歌,http://em.21dtv.com/songs/60111472.mkv +佚名-电机之春,http://em.21dtv.com/songs/60015348.mkv +苏唯-东京一夜,http://em.21dtv.com/songs/60085055.mkv +孙楠-刀剑英雄(演唱会),http://em.21dtv.com/songs/60014690.mkv +方怡萍-第九月台,http://em.21dtv.com/songs/60082839.mkv +孟刚-剁椒鱼头,http://em.21dtv.com/songs/60071904.mkv +狼啸-剁椒鱼头,http://em.21dtv.com/songs/60016257.mkv +林俊杰-豆浆油条,http://em.21dtv.com/songs/60015759.mkv +罗启聪+INSPRING-东角游民,http://em.21dtv.com/songs/60110452.mkv +高山峰-大家要快,http://em.21dtv.com/songs/60014025.mkv +BBF-独家献映,http://em.21dtv.com/songs/60132051.mkv +老狼+高晓松-冬季校园,http://em.21dtv.com/songs/60120865.mkv +李晓东-冬季校园,http://em.21dtv.com/songs/60015576.mkv +萧全-DJ先生,http://em.21dtv.com/songs/60132845.mkv +张心杰-大惊小怪,http://em.21dtv.com/songs/60103272.mkv +信乐团-大惊小怪,http://em.21dtv.com/songs/60014044.mkv +吴佩慈+张洪量-东京物语,http://em.21dtv.com/songs/60015542.mkv +ALAN-东京未明,http://em.21dtv.com/songs/60015541.mkv +张霖-独家舞步,http://em.21dtv.com/songs/60085062.mkv +高枫-地久天长,http://em.21dtv.com/songs/60081882.mkv +关智斌-东京特急,http://em.21dtv.com/songs/60015539.mkv +吕方-地久天长,http://em.21dtv.com/songs/60015094.mkv +邓丽君-地久天长,http://em.21dtv.com/songs/60015093.mkv +吕方-地久天长(演唱会),http://em.21dtv.com/songs/60015092.mkv +梁剑东-独家岁月,http://em.21dtv.com/songs/60135453.mkv +吴雨霏-东京三月,http://em.21dtv.com/songs/60064143.mkv +佚名-杜鹃时节,http://em.21dtv.com/songs/60015872.mkv +郑秀文-独家试唱,http://em.21dtv.com/songs/60015788.mkv +吴亦凡-刀剑如梦,http://em.21dtv.com/songs/60126688.mkv +柳畅源+陈梓童-刀剑如梦,http://em.21dtv.com/songs/60115246.mkv +陈梓童+柳畅源-刀剑如梦,http://em.21dtv.com/songs/60114870.mkv +平安-刀剑如梦,http://em.21dtv.com/songs/60099216.mkv +周华健-刀剑若梦,http://em.21dtv.com/songs/60014688.mkv +周华健-刀剑如梦,http://em.21dtv.com/songs/60014687.mkv +董贞-刀剑如梦,http://em.21dtv.com/songs/60014686.mkv +伴都 美子-东京日和,http://em.21dtv.com/songs/60015538.mkv +KISS-当机情人,http://em.21dtv.com/songs/60014533.mkv +金灿-杜鹃情歌,http://em.21dtv.com/songs/60129678.mkv +冷漠-独家情歌,http://em.21dtv.com/songs/60094824.mkv +黎明-堆积情感,http://em.21dtv.com/songs/60015959.mkv +邝美云-堆积情感,http://em.21dtv.com/songs/60015958.mkv +陈洁丽-堆积情感,http://em.21dtv.com/songs/60015957.mkv +郑怡-对街男子,http://em.21dtv.com/songs/60016015.mkv +陈柏宇-断绝来往,http://em.21dtv.com/songs/60015922.mkv +BIG FOUR-大家利事,http://em.21dtv.com/songs/60075064.mkv +颜志文-大家来唱(无原唱),http://em.21dtv.com/songs/60014010.mkv +汤灿-杜鹃开了,http://em.21dtv.com/songs/60015866.mkv +卓文萱-独家快乐,http://em.21dtv.com/songs/60015787.mkv +陈小霞-大脚姐仔,http://em.21dtv.com/songs/60014038.mkv +陈籽允-独角际遇,http://em.21dtv.com/songs/60134417.mkv +陈小春-独家记忆,http://em.21dtv.com/songs/60015786.mkv +罗孝勇-等价交换,http://em.21dtv.com/songs/60124345.mkv +佚名-DJ黑毒,http://em.21dtv.com/songs/60131173.mkv +纪晓斌-当家花旦,http://em.21dtv.com/songs/60115326.mkv +双星-大家恭喜,http://em.21dtv.com/songs/60075060.mkv +卓依婷-大家恭喜,http://em.21dtv.com/songs/60014006.mkv +张德兰-大家恭喜,http://em.21dtv.com/songs/60014005.mkv +张德兰+区瑞强-大家恭喜,http://em.21dtv.com/songs/60014004.mkv +小神鹰+蒋文端-大家恭喜,http://em.21dtv.com/songs/60014003.mkv +群星-大家恭喜,http://em.21dtv.com/songs/60014002.mkv +蒋文端+文千岁-大家恭喜,http://em.21dtv.com/songs/60014001.mkv +COOKIES-大家归瘦,http://em.21dtv.com/songs/60092157.mkv +梁汉文-大家归瘦(演唱会),http://em.21dtv.com/songs/60014007.mkv +符致逸-多加点真,http://em.21dtv.com/songs/60127257.mkv +自由发挥-得奖的是,http://em.21dtv.com/songs/60082817.mkv +沙宝亮-多久多少,http://em.21dtv.com/songs/60016122.mkv +姚莉-大江东去,http://em.21dtv.com/songs/60014035.mkv +轮回乐队-大江东去,http://em.21dtv.com/songs/60014034.mkv +ALAN-大江东去,http://em.21dtv.com/songs/60014033.mkv +土土-大鸡大利,http://em.21dtv.com/songs/60131299.mkv +刘文涛-大吉大利,http://em.21dtv.com/songs/60121443.mkv +雨金-大吉大利,http://em.21dtv.com/songs/60106435.mkv +恭僖禧-大吉大利,http://em.21dtv.com/songs/60013993.mkv +徐千雅-大吉大吉,http://em.21dtv.com/songs/60131431.mkv +BEYOND-点解点解,http://em.21dtv.com/songs/60015306.mkv +屠洪纲-对酒当歌,http://em.21dtv.com/songs/60016018.mkv +满文军-对酒当歌,http://em.21dtv.com/songs/60016017.mkv +陈百强-对酒当歌(演唱会),http://em.21dtv.com/songs/60016016.mkv +宰岩席-傣家传统,http://em.21dtv.com/songs/60124780.mkv +群星-点击春天,http://em.21dtv.com/songs/60091858.mkv +郑融-东京百货,http://em.21dtv.com/songs/60015537.mkv +大勇-打劫爱情,http://em.21dtv.com/songs/60013785.mkv +佚名-东京安娜(无原唱),http://em.21dtv.com/songs/60015536.mkv +萧闳仁-第89键,http://em.21dtv.com/songs/60015165.mkv +佚名-dust in the wind,http://em.21dtv.com/songs/60001458.mkv +KANSAS-dust in the wind,http://em.21dtv.com/songs/60001457.mkv +佚名-dancing in the street,http://em.21dtv.com/songs/60001146.mkv +水木年华-dancing in the rain,http://em.21dtv.com/songs/60001145.mkv +LIONEL RICHIE-do it to me,http://em.21dtv.com/songs/60001261.mkv +佚名-dancing in the moonlight,http://em.21dtv.com/songs/60001144.mkv +OWL CITY-deer in the headlights,http://em.21dtv.com/songs/60060785.mkv +ALESHA DIXON-do it our way,http://em.21dtv.com/songs/60066635.mkv +NICKI MINAJ-did it on em,http://em.21dtv.com/songs/60060786.mkv +佚名-do it or die,http://em.21dtv.com/songs/60001260.mkv +ERIC TURNER-dancing in my head,http://em.21dtv.com/songs/60073101.mkv +ERIC CHURCH-drink in my hand,http://em.21dtv.com/songs/60065576.mkv +KIRKO BANGZ-drank in my cup,http://em.21dtv.com/songs/60066637.mkv +佚名-do i love you,http://em.21dtv.com/songs/60001258.mkv +董事长乐团+颜正国-电火柱仔,http://em.21dtv.com/songs/60128362.mkv +佚名-电火柱仔,http://em.21dtv.com/songs/60015347.mkv +刘愉愉-电话占线,http://em.21dtv.com/songs/60064137.mkv +田丰+阿正+晶晶-大海之南,http://em.21dtv.com/songs/60085014.mkv +放射空间-大海之名,http://em.21dtv.com/songs/60110232.mkv +朱含芳-敦煌之恋,http://em.21dtv.com/songs/60016093.mkv +仙后-豆花之歌,http://em.21dtv.com/songs/60015758.mkv +李思音+潘旭-灯红月圆,http://em.21dtv.com/songs/60108568.mkv +陈奕迅-打回原形,http://em.21dtv.com/songs/60013780.mkv +陈奕迅-打回原形(HD演唱会),http://em.21dtv.com/songs/60013779.mkv +张启靓+贝若德华-敦煌一梦,http://em.21dtv.com/songs/60016092.mkv +宁桓宇-大谎言家,http://em.21dtv.com/songs/60125399.mkv +张继聪-大话西游,http://em.21dtv.com/songs/60101633.mkv +杨臣刚-大话西游,http://em.21dtv.com/songs/60070615.mkv +佚名-大火熊熊,http://em.21dtv.com/songs/60013990.mkv +袁小迪+许世凭-打火兄弟,http://em.21dtv.com/songs/60013784.mkv +王健树+网络歌手-大话网络,http://em.21dtv.com/songs/60088273.mkv +宋岳庭-daydream好无聊(无原唱),http://em.21dtv.com/songs/60001177.mkv +回声乐团-夺回天空,http://em.21dtv.com/songs/60099894.mkv +陈琪+郑家骐+吴铭听-地厚天高,http://em.21dtv.com/songs/60015090.mkv +佚名-订婚手指,http://em.21dtv.com/songs/60015450.mkv +杨子荣-打虎上山,http://em.21dtv.com/songs/60088064.mkv +杭天琪-打虎上山,http://em.21dtv.com/songs/60086508.mkv +王云帆-打虎上山,http://em.21dtv.com/songs/60069319.mkv +京剧-打虎上山,http://em.21dtv.com/songs/60013777.mkv +S.H.E-对号入座,http://em.21dtv.com/songs/60016010.mkv +孙楠-敦煌日月,http://em.21dtv.com/songs/60016091.mkv +曾心梅-大海入港,http://em.21dtv.com/songs/60095583.mkv +米娜-电话情缘,http://em.21dtv.com/songs/60015345.mkv +格格也逃-电话情思,http://em.21dtv.com/songs/60062385.mkv +朱英-电话情思,http://em.21dtv.com/songs/60015344.mkv +伊扬-电话情思(演唱会),http://em.21dtv.com/songs/60015343.mkv +李蕙敏-大话情人,http://em.21dtv.com/songs/60013983.mkv +童唱-登鹤雀楼,http://em.21dtv.com/songs/60014831.mkv +张清芳-对话练习,http://em.21dtv.com/songs/60016014.mkv +蓝乐-灯火阑珊,http://em.21dtv.com/songs/60094283.mkv +许嵩-对话老师,http://em.21dtv.com/songs/60069368.mkv +羽翘-大华丽家,http://em.21dtv.com/songs/60066942.mkv +羽翘-大华丽家(HD高清),http://em.21dtv.com/songs/60061127.mkv +苏玮-敦煌恋歌,http://em.21dtv.com/songs/60108840.mkv +吴品淳-大话李白,http://em.21dtv.com/songs/60090807.mkv +卢磊-大汉刘邦,http://em.21dtv.com/songs/60068202.mkv +佚名-灯红酒绿,http://em.21dtv.com/songs/60014822.mkv +蔡依林-电话皇后,http://em.21dtv.com/songs/60107984.mkv +蔡依林-电话皇后,http://em.21dtv.com/songs/60105337.mkv +王宏伟-敦煌故事,http://em.21dtv.com/songs/60082869.mkv +佚名-driving home for christmas,http://em.21dtv.com/songs/60001444.mkv +常思思-大河儿女,http://em.21dtv.com/songs/60107699.mkv +TWINS-大红大紫,http://em.21dtv.com/songs/60013971.mkv +韩宝仪-等候的心(无原唱),http://em.21dtv.com/songs/60017835.mkv +群星-大红灯笼,http://em.21dtv.com/songs/60088452.mkv +大庆小芳-大火的歌,http://em.21dtv.com/songs/60097131.mkv +徐一丹-蝶化成茧,http://em.21dtv.com/songs/60087874.mkv +[Group] +groupName=十六万歌曲MV等 - 41 +陈琳-大话爱情,http://em.21dtv.com/songs/60013981.mkv +培圣-打工在外,http://em.21dtv.com/songs/60103175.mkv +龙思雨-定格昨天,http://em.21dtv.com/songs/60130951.mkv +垃圾猫-打工赚钱,http://em.21dtv.com/songs/60070611.mkv +李佳璐+龙飞龙泽-大国之风,http://em.21dtv.com/songs/60108558.mkv +MUMSTER-打工野仔,http://em.21dtv.com/songs/60092184.mkv +陈浩德-德哥有钱(演唱会),http://em.21dtv.com/songs/60075139.mkv +雷龙+陈玉建-大哥小弟,http://em.21dtv.com/songs/60066941.mkv +阿权-赌鬼外传,http://em.21dtv.com/songs/60103651.mkv +张祥洪-大哥太累,http://em.21dtv.com/songs/60082778.mkv +乱弹阿翔-电光水母,http://em.21dtv.com/songs/60109946.mkv +乱弹阿翔-电光水母,http://em.21dtv.com/songs/60097200.mkv +巩汉林+赵丽蓉-打工奇遇,http://em.21dtv.com/songs/60089835.mkv +宋宇宁-独孤求帅,http://em.21dtv.com/songs/60130258.mkv +庞龙-嘟咯情歌,http://em.21dtv.com/songs/60087774.mkv +陈星-打工情歌,http://em.21dtv.com/songs/60013768.mkv +西子-当个啷当,http://em.21dtv.com/songs/60086523.mkv +巴特尔-东归记忆,http://em.21dtv.com/songs/60133623.mkv +郑伊健+风火海-刀光剑影,http://em.21dtv.com/songs/60014684.mkv +EDDIE@EO2+郑颖芝-电光火石,http://em.21dtv.com/songs/60015337.mkv +春雷(吉祥)-多嘎多耶,http://em.21dtv.com/songs/60104170.mkv +袁泉-读过的诗,http://em.21dtv.com/songs/60015832.mkv +秋裤大叔-打工的人,http://em.21dtv.com/songs/60108763.mkv +群星-打个电话,http://em.21dtv.com/songs/60088461.mkv +满文军-打个电话,http://em.21dtv.com/songs/60088235.mkv +林志炫+黄格选+满江+满文军-打个电话(演唱会),http://em.21dtv.com/songs/60013764.mkv +汤潮-大哥大哥,http://em.21dtv.com/songs/60129331.mkv +陈小春-动感超人,http://em.21dtv.com/songs/60015650.mkv +胡玮琪-蛋糕城堡,http://em.21dtv.com/songs/60014476.mkv +蔡宗强-打狗棒法,http://em.21dtv.com/songs/60131791.mkv +吴俊飞+宫瑜聪-东方之珠,http://em.21dtv.com/songs/60111752.mkv +群星-东方之珠,http://em.21dtv.com/songs/60099448.mkv +张江+馨梓-东方之珠,http://em.21dtv.com/songs/60091120.mkv +含笑+馨梓-东方之珠,http://em.21dtv.com/songs/60089729.mkv +罗大佑-东方之珠,http://em.21dtv.com/songs/60015529.mkv +刘德华+那英-东方之珠,http://em.21dtv.com/songs/60015528.mkv +甄妮-东方之珠(演唱会),http://em.21dtv.com/songs/60015527.mkv +张伟文-东方之珠(演唱会),http://em.21dtv.com/songs/60015526.mkv +罗大佑-东方之珠(演唱会),http://em.21dtv.com/songs/60015525.mkv +刘德华+那英-东方之珠(演唱会),http://em.21dtv.com/songs/60015524.mkv +关菊英+仙杜拉+叶振棠-东方之珠(演唱会),http://em.21dtv.com/songs/60015523.mkv +吕俊杰-东方紫玉,http://em.21dtv.com/songs/60101287.mkv +郑秀文-登峰造极,http://em.21dtv.com/songs/60014830.mkv +常健鸿-东方之光,http://em.21dtv.com/songs/60121626.mkv +亚洲爱乐合唱团-东方先锋,http://em.21dtv.com/songs/60015521.mkv +李菓-打发无聊,http://em.21dtv.com/songs/60081038.mkv +佚名-dont forget to remember,http://em.21dtv.com/songs/60001325.mkv +CALVIN HARRIS-drinking from the bottle,http://em.21dtv.com/songs/60073159.mkv +周燕君-东方神韵,http://em.21dtv.com/songs/60075212.mkv +杜菲菲-东方商人,http://em.21dtv.com/songs/60015519.mkv +李菲菲-东方神话,http://em.21dtv.com/songs/60015520.mkv +常思思-东方情歌(演唱会),http://em.21dtv.com/songs/60015518.mkv +李宇春-刀锋偏冷,http://em.21dtv.com/songs/60070625.mkv +林子良-东方牛仔,http://em.21dtv.com/songs/60015515.mkv +张也-东方女郎,http://em.21dtv.com/songs/60015517.mkv +佚名-东方女孩(无原唱),http://em.21dtv.com/songs/60015516.mkv +彤杰-东方明珠,http://em.21dtv.com/songs/60113505.mkv +彤杰-东方明珠,http://em.21dtv.com/songs/60085054.mkv +群星-东方魅力,http://em.21dtv.com/songs/60015512.mkv +关贵敏-东方魔笛,http://em.21dtv.com/songs/60015514.mkv +腾格尔-东方骆驼,http://em.21dtv.com/songs/60015510.mkv +肖丹-东方卡门,http://em.21dtv.com/songs/60119889.mkv +薛家燕+合唱团-东方巨龙(演唱会),http://em.21dtv.com/songs/60075211.mkv +胥拉齐-东方巨龙,http://em.21dtv.com/songs/60070648.mkv +金灿-德风花雨,http://em.21dtv.com/songs/60124584.mkv +刘和刚-东方花园(演唱会),http://em.21dtv.com/songs/60015509.mkv +宋祖英-东方姑娘,http://em.21dtv.com/songs/60015506.mkv +陈晓东-东方的红,http://em.21dtv.com/songs/60015502.mkv +动力火车-东方的光,http://em.21dtv.com/songs/60082849.mkv +郭炳坚-大富大贵,http://em.21dtv.com/songs/60075051.mkv +范玉阳-杜甫草堂,http://em.21dtv.com/songs/60130698.mkv +楚红秋-东方滨海,http://em.21dtv.com/songs/60111211.mkv +苏运莹-东方不败,http://em.21dtv.com/songs/60122061.mkv +古巨基-第二最爱,http://em.21dtv.com/songs/60015183.mkv +古巨基-第二最爱(演唱会),http://em.21dtv.com/songs/60015182.mkv +动力火车-淡而无味,http://em.21dtv.com/songs/60090751.mkv +林俊杰-第二天堂,http://em.21dtv.com/songs/60015180.mkv +夏后-第二顺位,http://em.21dtv.com/songs/60085043.mkv +罗志祥-第二顺位(演唱会),http://em.21dtv.com/songs/60015179.mkv +群星-蝶儿双双,http://em.21dtv.com/songs/60015400.mkv +向洋-Desperado^忘不了,http://em.21dtv.com/songs/60127812.mkv +五月天-第二人生,http://em.21dtv.com/songs/60065938.mkv +简一+JY-大二江湖,http://em.21dtv.com/songs/60119864.mkv +谢安琪-第二个家,http://em.21dtv.com/songs/60015176.mkv +王莹-大地之子,http://em.21dtv.com/songs/60013909.mkv +赵敬一-懂得珍惜,http://em.21dtv.com/songs/60086532.mkv +吴淑敏+周韦杰-等待真心,http://em.21dtv.com/songs/60004917.mkv +迪迪-等待着你,http://em.21dtv.com/songs/60095224.mkv +阿福-等待卓玛,http://em.21dtv.com/songs/60014925.mkv +杨丞琳-懂得自己,http://em.21dtv.com/songs/60125732.mkv +乔军-担当之歌,http://em.21dtv.com/songs/60115672.mkv +王丽达-大地之歌,http://em.21dtv.com/songs/60075045.mkv +群星-大地之歌(无原唱),http://em.21dtv.com/songs/60013908.mkv +高宇-等待绽放,http://em.21dtv.com/songs/60082824.mkv +黄凤仪-等待月圆,http://em.21dtv.com/songs/60014924.mkv +陈坤-淡淡忧郁,http://em.21dtv.com/songs/60014450.mkv +久美旺甲-等待一生,http://em.21dtv.com/songs/60126574.mkv +王中平-大地勇士,http://em.21dtv.com/songs/60115284.mkv +海哲明-独当一面,http://em.21dtv.com/songs/60120722.mkv +三块石-大大学校,http://em.21dtv.com/songs/60013878.mkv +温兆伦-得到心痛,http://em.21dtv.com/songs/60088229.mkv +温兆伦-等到心痛,http://em.21dtv.com/songs/60014934.mkv +央金兰泽-等待相聚,http://em.21dtv.com/songs/60068214.mkv +岳太阳-等待幸福,http://em.21dtv.com/songs/60123865.mkv +岳太阳-等待幸福,http://em.21dtv.com/songs/60063331.mkv +江映蓉-点到为止,http://em.21dtv.com/songs/60085045.mkv +曹颖-嘟嘟娃娃,http://em.21dtv.com/songs/60015766.mkv +杨霞-等待无悔,http://em.21dtv.com/songs/60121812.mkv +亚东-等待无悔,http://em.21dtv.com/songs/60090520.mkv +江蕙-等待舞伴,http://em.21dtv.com/songs/60014920.mkv +佚名-丢丢铜仔,http://em.21dtv.com/songs/60015471.mkv +童唱-丢丢铜仔,http://em.21dtv.com/songs/60015470.mkv +刘恩佑+何明翰-大道天行,http://em.21dtv.com/songs/60125192.mkv +王键-等的太久,http://em.21dtv.com/songs/60098655.mkv +彭羚-等得太久,http://em.21dtv.com/songs/60014937.mkv +彭羚-等得太久(演唱会),http://em.21dtv.com/songs/60014936.mkv +汪苏泷-地动山摇,http://em.21dtv.com/songs/60116995.mkv +梁汉文-多多少少,http://em.21dtv.com/songs/60016119.mkv +何沛璇-对的时刻,http://em.21dtv.com/songs/60103882.mkv +夏天-颠倒世界,http://em.21dtv.com/songs/60106735.mkv +庞龙-当地时间,http://em.21dtv.com/songs/60081957.mkv +谭咏麟-大大时代,http://em.21dtv.com/songs/60013877.mkv +廖名扬-大德如阳,http://em.21dtv.com/songs/60065915.mkv +陈珊妮-低调人生,http://em.21dtv.com/songs/60085041.mkv +陈奕迅-倒带人生,http://em.21dtv.com/songs/60014707.mkv +沈芳如-滴滴情泪,http://em.21dtv.com/songs/60015075.mkv +S.H.E-等待奇迹,http://em.21dtv.com/songs/60090436.mkv +陈建年-大地情怀(无原唱),http://em.21dtv.com/songs/60013907.mkv +吴淑敏-等待青春,http://em.21dtv.com/songs/60070629.mkv +林志颖-等待男孩,http://em.21dtv.com/songs/60014911.mkv +刘燕-迪迪娜版,http://em.21dtv.com/songs/60110037.mkv +麦浚龙-癫倒梦想,http://em.21dtv.com/songs/60015294.mkv +张玲(滴滴)-滴滴泪雨,http://em.21dtv.com/songs/60108502.mkv +兰天-滴滴泪雨,http://em.21dtv.com/songs/60097472.mkv +李健-等待黎明,http://em.21dtv.com/songs/60114591.mkv +杜德伟-等待黎明(演唱会),http://em.21dtv.com/songs/60014909.mkv +陈笑玮-当代雷锋,http://em.21dtv.com/songs/60065928.mkv +星月组合-点点离愁,http://em.21dtv.com/songs/60133754.mkv +李岗霖-第3定律,http://em.21dtv.com/songs/60015164.mkv +单色凌-颠倒记忆,http://em.21dtv.com/songs/60082843.mkv +黎瑞恩-等到今夜,http://em.21dtv.com/songs/60014927.mkv +苍茫-懂得寂寞(演唱会),http://em.21dtv.com/songs/60015633.mkv +李玟-等待降落,http://em.21dtv.com/songs/60089342.mkv +罗志强-等待旧爱,http://em.21dtv.com/songs/60014908.mkv +佚名-dont dream its over,http://em.21dtv.com/songs/60001319.mkv +七郎+乔幼-地动海啸,http://em.21dtv.com/songs/60068222.mkv +群星-打得火热,http://em.21dtv.com/songs/60093040.mkv +陈奕迅-打得火热,http://em.21dtv.com/songs/60013756.mkv +陈奕迅-打得火热(演唱会),http://em.21dtv.com/songs/60013755.mkv +萧闳仁-惦惦好吗,http://em.21dtv.com/songs/60015360.mkv +付春霞-等待花开,http://em.21dtv.com/songs/60130066.mkv +孟庭苇-等待花开,http://em.21dtv.com/songs/60014907.mkv +巧千金-大地回春,http://em.21dtv.com/songs/60108466.mkv +群星-大地回春,http://em.21dtv.com/songs/60075043.mkv +庄学忠-大地回春,http://em.21dtv.com/songs/60013904.mkv +张薇-大地回春,http://em.21dtv.com/songs/60013903.mkv +佚名-大地回春,http://em.21dtv.com/songs/60013902.mkv +陈小春-大地回春,http://em.21dtv.com/songs/60013901.mkv +马天宇-冬的故事,http://em.21dtv.com/songs/60088980.mkv +雪山阿佳组合-咚咚鼓声(演唱会),http://em.21dtv.com/songs/60015623.mkv +AT17-大大公司,http://em.21dtv.com/songs/60013876.mkv +龙千玉-等待归暝,http://em.21dtv.com/songs/60079391.mkv +杨紫燃-懂得放手,http://em.21dtv.com/songs/60068228.mkv +陈淑桦-等待风起,http://em.21dtv.com/songs/60014905.mkv +陈淑桦-等待风起(演唱会),http://em.21dtv.com/songs/60014904.mkv +夏月-大地飞歌,http://em.21dtv.com/songs/60130211.mkv +宋祖英-大地飞歌,http://em.21dtv.com/songs/60013900.mkv +张燕-大地芳菲,http://em.21dtv.com/songs/60091140.mkv +刘德华-大地恩情,http://em.21dtv.com/songs/60013899.mkv +关正杰-大地恩情,http://em.21dtv.com/songs/60013898.mkv +叶振棠-大地恩情(演唱会),http://em.21dtv.com/songs/60013897.mkv +刘德华-大地恩情(演唱会),http://em.21dtv.com/songs/60013896.mkv +李铮+梦沁馨-等待的缘,http://em.21dtv.com/songs/60086526.mkv +孙楠-淡淡的忧,http://em.21dtv.com/songs/60014449.mkv +朴树-动荡的心,http://em.21dtv.com/songs/60015648.mkv +黄思婷-等待的心,http://em.21dtv.com/songs/60014902.mkv +陈奕迅-低等动物,http://em.21dtv.com/songs/60015068.mkv +陈奕迅-低等动物(HD演唱会),http://em.21dtv.com/songs/60015066.mkv +SHINE-鼎鼎大名,http://em.21dtv.com/songs/60015449.mkv +黄义达-到底多久,http://em.21dtv.com/songs/60014739.mkv +许飞-淡淡的歌,http://em.21dtv.com/songs/60014447.mkv +周巽初-滴答滴答,http://em.21dtv.com/songs/60132297.mkv +金久哲-单打独斗,http://em.21dtv.com/songs/60122185.mkv +逗吧三人组-灯灯呆滴,http://em.21dtv.com/songs/60117267.mkv +沈震轩-单打独斗,http://em.21dtv.com/songs/60112064.mkv +张敬轩-单打独斗,http://em.21dtv.com/songs/60095300.mkv +廖隽嘉-等等等等,http://em.21dtv.com/songs/60089262.mkv +木子烁-di da di da,http://em.21dtv.com/songs/60086338.mkv +黄磊-等等等等,http://em.21dtv.com/songs/60014941.mkv +群星-等待春天,http://em.21dtv.com/songs/60066953.mkv +旭日阳刚-等待春天,http://em.21dtv.com/songs/60064123.mkv +办桌二人组-等待春天,http://em.21dtv.com/songs/60014897.mkv +周上允-等待彩虹,http://em.21dtv.com/songs/60107587.mkv +佚名-等待出航,http://em.21dtv.com/songs/60014896.mkv +戴玉强-大地春潮,http://em.21dtv.com/songs/60091244.mkv +蒋蒋+胡丹丹-对对错错,http://em.21dtv.com/songs/60085066.mkv +丘采桦-对对错错,http://em.21dtv.com/songs/60016006.mkv +谢安琪-大地+长城(演唱会),http://em.21dtv.com/songs/60013886.mkv +中国娃娃-弟弟不在,http://em.21dtv.com/songs/60015141.mkv +小歆-朵朵白云,http://em.21dtv.com/songs/60099204.mkv +赵炳文-到底爱谁(无原唱),http://em.21dtv.com/songs/60014735.mkv +尚雯婕-dog days are over,http://em.21dtv.com/songs/60073129.mkv +FLORENCE+THE MACHINE-dog days are over,http://em.21dtv.com/songs/60001293.mkv +马天宇-单车之恋,http://em.21dtv.com/songs/60014326.mkv +大嘴巴-大创作家,http://em.21dtv.com/songs/60013873.mkv +艺林+小滕-督察之魂,http://em.21dtv.com/songs/60099455.mkv +田磊-东川之歌,http://em.21dtv.com/songs/60127227.mkv +林霞+田磊-东川之歌,http://em.21dtv.com/songs/60127111.mkv +林霞-东川之歌,http://em.21dtv.com/songs/60127110.mkv +周华健-大城之光,http://em.21dtv.com/songs/60013867.mkv +张津涤-到此一游,http://em.21dtv.com/songs/60123930.mkv +陈姿言-到此一游,http://em.21dtv.com/songs/60069338.mkv +陈奕迅-到此一游,http://em.21dtv.com/songs/60014731.mkv +曾雨轩-独处一角,http://em.21dtv.com/songs/60100100.mkv +佚名-dont close your eyes(无原唱),http://em.21dtv.com/songs/60001308.mkv +陈柏宇-多此一爱,http://em.21dtv.com/songs/60016113.mkv +叶德娴-大城小事,http://em.21dtv.com/songs/60092428.mkv +黄妃-断肠相思,http://em.21dtv.com/songs/60079912.mkv +黎明-大城小事(演唱会),http://em.21dtv.com/songs/60013866.mkv +晖倪-单纯幸福,http://em.21dtv.com/songs/60070622.mkv +王小荣-多彩湘东,http://em.21dtv.com/songs/60130580.mkv +王力宏-大城小爱(HD),http://em.21dtv.com/songs/10012693.mkv +李祥祥-大城小爱,http://em.21dtv.com/songs/60085012.mkv +王力宏-大城小爱,http://em.21dtv.com/songs/60013865.mkv +强歌-到此为止,http://em.21dtv.com/songs/60129132.mkv +朱雅-到此为止,http://em.21dtv.com/songs/60124050.mkv +潘七魁-到此为止,http://em.21dtv.com/songs/60119782.mkv +DEAR JANE-到此为止,http://em.21dtv.com/songs/60075131.mkv +连诗雅-到此为止,http://em.21dtv.com/songs/60066951.mkv +水木年华-单车岁月(演唱会),http://em.21dtv.com/songs/60014324.mkv +周品-淡出少年,http://em.21dtv.com/songs/60127843.mkv +佚名-单车少女,http://em.21dtv.com/songs/60014323.mkv +李思琳-单纯时刻,http://em.21dtv.com/songs/60082797.mkv +钟天富+高英-单车世界,http://em.21dtv.com/songs/60094319.mkv +杨千嬅-大慈善家(演唱会),http://em.21dtv.com/songs/60013874.mkv +吴梵-多愁善感,http://em.21dtv.com/songs/60016111.mkv +刘德华-多愁善感,http://em.21dtv.com/songs/60016110.mkv +陈黎明-独唱伤悲,http://em.21dtv.com/songs/60015780.mkv +林二汶-道成肉身,http://em.21dtv.com/songs/60132598.mkv +江蕙-大船入港,http://em.21dtv.com/songs/60013872.mkv +曾心梅-大船入港,http://em.21dtv.com/songs/60013871.mkv +冷漠+司徒兰芳-对唱情歌,http://em.21dtv.com/songs/60115710.mkv +周澎+吴为为-独唱情歌,http://em.21dtv.com/songs/60111774.mkv +TANK+SELINA-独唱情歌,http://em.21dtv.com/songs/60015779.mkv +江蕙-电车内面,http://em.21dtv.com/songs/60015331.mkv +刘德华-单纯女孩,http://em.21dtv.com/songs/60014337.mkv +安琪-多刺玫瑰,http://em.21dtv.com/songs/60016114.mkv +顾莉雅-带刺玫瑰(演唱会),http://em.21dtv.com/songs/60014265.mkv +刘若英-到处乱走,http://em.21dtv.com/songs/60014728.mkv +柏栩栩-单程旅行,http://em.21dtv.com/songs/60014329.mkv +后弦-单车恋人,http://em.21dtv.com/songs/60014322.mkv +张信哲-到处留情,http://em.21dtv.com/songs/60014727.mkv +陈慧娴-到处留情,http://em.21dtv.com/songs/60014726.mkv +张信哲-到处留情(演唱会),http://em.21dtv.com/songs/60014725.mkv +羊进达-到此结束,http://em.21dtv.com/songs/60080800.mkv +陈文婷-单程机票,http://em.21dtv.com/songs/60064107.mkv +曾轶可-电车计划,http://em.21dtv.com/songs/60087961.mkv +次真降措-稻城酒歌,http://em.21dtv.com/songs/60083086.mkv +陈洁仪-得寸进尺(无原唱),http://em.21dtv.com/songs/60014792.mkv +张倾城-断翅蝴蝶,http://em.21dtv.com/songs/60015916.mkv +丁薇-断翅蝴蝶,http://em.21dtv.com/songs/60015915.mkv +陈翰+景莉-多彩贵州,http://em.21dtv.com/songs/60098892.mkv +阿幼朵-多彩贵州,http://em.21dtv.com/songs/60016108.mkv +佚名-dont cry for me,http://em.21dtv.com/songs/60001313.mkv +佚名-单纯的心,http://em.21dtv.com/songs/60014336.mkv +林义忠-单纯的心,http://em.21dtv.com/songs/60014335.mkv +乌吉斯古楞-大彻大悟,http://em.21dtv.com/songs/60110827.mkv +徐一鸣-大彻大悟,http://em.21dtv.com/songs/60105066.mkv +杨千桦-大城大事,http://em.21dtv.com/songs/60091393.mkv +杨千嬅-大城大事,http://em.21dtv.com/songs/60091390.mkv +杨千嬅-大城小事,http://em.21dtv.com/songs/60013863.mkv +夏韶声-打错电话(演唱会),http://em.21dtv.com/songs/60013753.mkv +阿淡-带刺的爱,http://em.21dtv.com/songs/60066945.mkv +伍佰-单程车票,http://em.21dtv.com/songs/60063109.mkv +佚名-单程车票,http://em.21dtv.com/songs/60014328.mkv +动力火车-单程车票(演唱会),http://em.21dtv.com/songs/60014327.mkv +林志颖-挡不住我,http://em.21dtv.com/songs/60014671.mkv +多亮-大病一场,http://em.21dtv.com/songs/60087624.mkv +唐僧王永-大步向前,http://em.21dtv.com/songs/60128918.mkv +新七小福-大兵小将,http://em.21dtv.com/songs/60013855.mkv +史小龙-大兵小将,http://em.21dtv.com/songs/60013854.mkv +贾乃亮+李小璐-东北味儿,http://em.21dtv.com/songs/60131830.mkv +朱业晋-断臂天使,http://em.21dtv.com/songs/60115991.mkv +彭三-大白替换,http://em.21dtv.com/songs/60111902.mkv +黄义达-等边三角(演唱会),http://em.21dtv.com/songs/60014866.mkv +郑锦昌-赌不如醉(演唱会),http://em.21dtv.com/songs/60075236.mkv +汤非-都不容易,http://em.21dtv.com/songs/60119752.mkv +王建荣-迪拜乞丐,http://em.21dtv.com/songs/60124257.mkv +李鸣-独白情歌,http://em.21dtv.com/songs/60015776.mkv +周杰伦-对不起baby,http://em.21dtv.com/songs/60015981.mkv +汪峰-东北偏北,http://em.21dtv.com/songs/60101414.mkv +黑豹乐队-dont break my heart,http://em.21dtv.com/songs/60001307.mkv +何以奇+刘允乐-dont break my heart,http://em.21dtv.com/songs/60001306.mkv +动力火车-dont break my heart,http://em.21dtv.com/songs/60001305.mkv +关浩+丹丹-东北嗑儿,http://em.21dtv.com/songs/60107510.mkv +DIDO-dont believe in love,http://em.21dtv.com/songs/60001304.mkv +唐恩-等不回来,http://em.21dtv.com/songs/60089222.mkv +何跃-等不回来,http://em.21dtv.com/songs/60014873.mkv +江若琳-大步喊过,http://em.21dtv.com/songs/60013859.mkv +江若琳-大步喊过(演唱会),http://em.21dtv.com/songs/60013858.mkv +百慕三石-东北姑爷,http://em.21dtv.com/songs/60099430.mkv +宋祖英-当兵光荣,http://em.21dtv.com/songs/60087688.mkv +佚名-打靶归来,http://em.21dtv.com/songs/60013744.mkv +阎维文-打靶归来,http://em.21dtv.com/songs/60013743.mkv +谭晶-打靶归来(演唱会),http://em.21dtv.com/songs/60013742.mkv +贾世骏-打靶归来(演唱会),http://em.21dtv.com/songs/60013741.mkv +胡宇崴+AGGIE-单边耳机,http://em.21dtv.com/songs/60061134.mkv +刘斌-当兵的人,http://em.21dtv.com/songs/60014508.mkv +刘斌-当兵的人(演唱会),http://em.21dtv.com/songs/60014507.mkv +夏天Alex-等不到你,http://em.21dtv.com/songs/60123795.mkv +汪苏泷-等不到你,http://em.21dtv.com/songs/60014869.mkv +姚林辉-当兵的梦,http://em.21dtv.com/songs/60014504.mkv +满江-多变的海,http://em.21dtv.com/songs/60091646.mkv +张冬玲-东北东北,http://em.21dtv.com/songs/60097196.mkv +徐良-大步大步,http://em.21dtv.com/songs/60085011.mkv +陈军委-当兵的爱,http://em.21dtv.com/songs/60061138.mkv +叶麟-躲避的爱,http://em.21dtv.com/songs/60016247.mkv +袁震-东北成语,http://em.21dtv.com/songs/60134210.mkv +高向鹏-大阪の爱人,http://em.21dtv.com/songs/60101003.mkv +郑中基-多爱一点,http://em.21dtv.com/songs/60016100.mkv +杰子-大爱无言,http://em.21dtv.com/songs/60129285.mkv +舜文齐-大爱无声,http://em.21dtv.com/songs/60013840.mkv +钟彩媚-大爱无疆,http://em.21dtv.com/songs/60129683.mkv +金波-大爱无疆,http://em.21dtv.com/songs/60122192.mkv +接厚芳-大爱无疆,http://em.21dtv.com/songs/60086510.mkv +沙莎-大爱无疆,http://em.21dtv.com/songs/60075036.mkv +孙伟-大爱无疆,http://em.21dtv.com/songs/60061125.mkv +章小军-大爱无边,http://em.21dtv.com/songs/60088378.mkv +黑鸭子演唱组-大爱无边,http://em.21dtv.com/songs/60013839.mkv +张惠妹-对爱投降,http://em.21dtv.com/songs/60015968.mkv +张惠妹-对爱投降(演唱会),http://em.21dtv.com/songs/60015967.mkv +丁当-多爱少怪,http://em.21dtv.com/songs/60016098.mkv +陈思思-大爱如海,http://em.21dtv.com/songs/60013838.mkv +顺子-对爱期待,http://em.21dtv.com/songs/60094776.mkv +黄小琥-对爱期待,http://em.21dtv.com/songs/60065948.mkv +谢常清-大爱清尘,http://em.21dtv.com/songs/60097133.mkv +封语-对爱渴望,http://em.21dtv.com/songs/60097214.mkv +吴木兰-对爱渴望,http://em.21dtv.com/songs/60081573.mkv +杨宗纬-对爱渴望,http://em.21dtv.com/songs/60015964.mkv +林峯-当爱靠近,http://em.21dtv.com/songs/60119702.mkv +李玟-等爱降落,http://em.21dtv.com/songs/60014862.mkv +谢安琪-大爱感动,http://em.21dtv.com/songs/60013837.mkv +叶倩文-等爱的心,http://em.21dtv.com/songs/60014861.mkv +何龙雨-等爱的人,http://em.21dtv.com/songs/60127739.mkv +李克勤-等爱的人,http://em.21dtv.com/songs/60113616.mkv +阿苗千千-大爱的人,http://em.21dtv.com/songs/60109686.mkv +施文彬-当爱的人,http://em.21dtv.com/songs/60095565.mkv +张祥洪-等爱的人,http://em.21dtv.com/songs/60082820.mkv +誓言-等爱的人,http://em.21dtv.com/songs/60062912.mkv +裘海正-懂爱的人,http://em.21dtv.com/songs/60015627.mkv +詹曼铃-等爱的人,http://em.21dtv.com/songs/60014859.mkv +龙千玉+蔡小虎-等爱的人,http://em.21dtv.com/songs/60014858.mkv +胡力-等爱的人,http://em.21dtv.com/songs/60014857.mkv +潘美辰-对爱痴情,http://em.21dtv.com/songs/60015963.mkv +王爵ALSTON-当爱成歌,http://em.21dtv.com/songs/60086519.mkv +德永英明-春なのに,http://em.21dtv.com/songs/60105082.mkv +陈佳-车在囧途,http://em.21dtv.com/songs/60098850.mkv +曾瑞体-曾子之歌,http://em.21dtv.com/songs/60118647.mkv +佚名-长征组歌,http://em.21dtv.com/songs/60057626.mkv +李芊慧-车站夜雨(无原唱),http://em.21dtv.com/songs/60012474.mkv +克拉克(Mr.C)-创造现在,http://em.21dtv.com/songs/60126616.mkv +杨珺婷+牛马丁-潮州小调,http://em.21dtv.com/songs/60095639.mkv +陈学圣-纯属虚构,http://em.21dtv.com/songs/60075005.mkv +陈盈洁+陈一郎-车站惜别,http://em.21dtv.com/songs/60012473.mkv +谢霆锋-成者为王,http://em.21dtv.com/songs/60012584.mkv +蔡依林-唱这首歌,http://em.21dtv.com/songs/60012361.mkv +罗嘉良-创造晴天,http://em.21dtv.com/songs/60013207.mkv +王丽达-赤子情怀,http://em.21dtv.com/songs/60012826.mkv +老狼+刘芳-纯真年代,http://em.21dtv.com/songs/60120864.mkv +叶蓓-纯真年代,http://em.21dtv.com/songs/60087521.mkv +刘孟哲-纯真年代,http://em.21dtv.com/songs/60086501.mkv +爱朵女孩-纯真年代,http://em.21dtv.com/songs/60075004.mkv +伍佰-纯真年代,http://em.21dtv.com/songs/60013413.mkv +丁薇-纯真年代,http://em.21dtv.com/songs/60013412.mkv +张惠妹-纯真年代(演唱会),http://em.21dtv.com/songs/60013411.mkv +李宇春-纯真年代(演唱会),http://em.21dtv.com/songs/60013410.mkv +DJ舞曲-车载慢摇,http://em.21dtv.com/songs/50000189.mkv +孙子涵-初衷模样,http://em.21dtv.com/songs/60107650.mkv +谭咏麟-创造命运(演唱会),http://em.21dtv.com/songs/60013206.mkv +张木易-出租浪漫,http://em.21dtv.com/songs/60101632.mkv +扎西尼玛-次真拉姆,http://em.21dtv.com/songs/60071846.mkv +张曼莉-纯真戒指,http://em.21dtv.com/songs/60123924.mkv +群星-才子佳人,http://em.21dtv.com/songs/60011887.mkv +胡美仪+大AL-才子佳人(演唱会),http://em.21dtv.com/songs/60011886.mkv +次真降措-次真降措,http://em.21dtv.com/songs/60089376.mkv +邵峰-沧州好人,http://em.21dtv.com/songs/60134292.mkv +陈小春-叱咤红人,http://em.21dtv.com/songs/60118155.mkv +阿吉仔-船只海岸,http://em.21dtv.com/songs/60013166.mkv +TWINS-趁早高兴,http://em.21dtv.com/songs/60092226.mkv +张文成-纯真姑娘,http://em.21dtv.com/songs/60132437.mkv +铁热沁夫-藏族姑娘,http://em.21dtv.com/songs/60121043.mkv +王亚东-陈砦姑娘,http://em.21dtv.com/songs/60110381.mkv +林宗兴-叱吒风云,http://em.21dtv.com/songs/60114624.mkv +林宗兴-叱咤风云,http://em.21dtv.com/songs/60113698.mkv +A ONE-虫族风暴,http://em.21dtv.com/songs/60065903.mkv +F4-纯真的心,http://em.21dtv.com/songs/60090407.mkv +梁朝伟-错在多情,http://em.21dtv.com/songs/60013701.mkv +糖果枪-成长的街,http://em.21dtv.com/songs/60012580.mkv +吴礼红-诚挚的爱,http://em.21dtv.com/songs/60084984.mkv +吴国敬-纯真传说,http://em.21dtv.com/songs/60092451.mkv +郭富城-纯真传说,http://em.21dtv.com/songs/60013409.mkv +古巨基-纯真传说,http://em.21dtv.com/songs/60013408.mkv +郭富城-纯真传说(演唱会),http://em.21dtv.com/songs/60013407.mkv +回音哥-趁着不深,http://em.21dtv.com/songs/60066912.mkv +郑培钦-处州白莲,http://em.21dtv.com/songs/60111438.mkv +麦卉-潮州阿兄,http://em.21dtv.com/songs/60095286.mkv +胡斌-草原之夜,http://em.21dtv.com/songs/60127308.mkv +朱明瑛-彩云追月,http://em.21dtv.com/songs/60121756.mkv +腾格尔-草原之夜,http://em.21dtv.com/songs/60106215.mkv +杨紫萍-彩云追月,http://em.21dtv.com/songs/60100185.mkv +陈水林-草原之夜,http://em.21dtv.com/songs/60084964.mkv +乌兰托娅-草原之月,http://em.21dtv.com/songs/60082700.mkv +富春山居女子乐坊-草原之夜(演唱会),http://em.21dtv.com/songs/60069290.mkv +吴涤清-草原之夜(演唱会),http://em.21dtv.com/songs/60066903.mkv +周强-草原之夜,http://em.21dtv.com/songs/60012131.mkv +乌兰托娅-草原之夜,http://em.21dtv.com/songs/60012130.mkv +李双江-草原之夜,http://em.21dtv.com/songs/60012129.mkv +降央卓玛-草原之夜,http://em.21dtv.com/songs/60012128.mkv +关贵敏-草原之夜,http://em.21dtv.com/songs/60012127.mkv +费玉清-草原之夜,http://em.21dtv.com/songs/60012126.mkv +刀郎-草原之夜,http://em.21dtv.com/songs/60012125.mkv +藏玉炎+关贵敏-草原之夜,http://em.21dtv.com/songs/60012124.mkv +佟铁鑫-草原之夜(演唱会),http://em.21dtv.com/songs/60012123.mkv +天唱组合-草原之夜(演唱会),http://em.21dtv.com/songs/60012122.mkv +佚名-彩云追月,http://em.21dtv.com/songs/60011974.mkv +苏畅-彩云追月,http://em.21dtv.com/songs/60011973.mkv +梁耀安+蒋文端-彩云追月,http://em.21dtv.com/songs/60011972.mkv +关群英-彩云追月,http://em.21dtv.com/songs/60011971.mkv +崔妙芝-彩云追月,http://em.21dtv.com/songs/60011970.mkv +爱戴-彩云追月,http://em.21dtv.com/songs/60011969.mkv +雷安娜-彩云再现(演唱会),http://em.21dtv.com/songs/60011966.mkv +刘晓-草原之吻,http://em.21dtv.com/songs/60093644.mkv +吴庆国-创业征途,http://em.21dtv.com/songs/60127828.mkv +郑少秋-禅院钟声(无原唱),http://em.21dtv.com/songs/60093287.mkv +郑锦昌-禅院钟声(演唱会),http://em.21dtv.com/songs/60074874.mkv +易灵汐-草原之上,http://em.21dtv.com/songs/60070577.mkv +白玛多吉-彩云之南,http://em.21dtv.com/songs/60106161.mkv +央金兰泽-彩云之南,http://em.21dtv.com/songs/60074832.mkv +徐千雅-彩云之南,http://em.21dtv.com/songs/60011968.mkv +徐千雅-彩云之南(演唱会),http://em.21dtv.com/songs/60011967.mkv +范春梅-草原走马,http://em.21dtv.com/songs/60080495.mkv +梅林组合-草原走马,http://em.21dtv.com/songs/60068164.mkv +阿万-草原之恋,http://em.21dtv.com/songs/60108108.mkv +乌兰托娅-草原之恋,http://em.21dtv.com/songs/60070576.mkv +乌兰托娅-草原之恋(演唱会),http://em.21dtv.com/songs/60064043.mkv +苗雨-苍鹰之恋,http://em.21dtv.com/songs/60012031.mkv +阿强-超越自己,http://em.21dtv.com/songs/60118998.mkv +连天-穿越自己,http://em.21dtv.com/songs/60118084.mkv +彭伟家-超越自己,http://em.21dtv.com/songs/60111904.mkv +许云上+蕾雨-草原之家,http://em.21dtv.com/songs/60098768.mkv +许云上+韦琪-草原之家,http://em.21dtv.com/songs/60084962.mkv +许云上+韦琪-草原之家(演唱会),http://em.21dtv.com/songs/60082699.mkv +苏泉-超越自己,http://em.21dtv.com/songs/60070583.mkv +韩晓辉-草原醉歌,http://em.21dtv.com/songs/60102931.mkv +何杰-唱游中国,http://em.21dtv.com/songs/60097420.mkv +佚名-草原赞歌,http://em.21dtv.com/songs/60012121.mkv +胡松华-草原赞歌,http://em.21dtv.com/songs/60012120.mkv +豪图-草原祝福,http://em.21dtv.com/songs/60012132.mkv +超月组合-超月之爱,http://em.21dtv.com/songs/60114109.mkv +寂悸-尘缘有约,http://em.21dtv.com/songs/60121596.mkv +曲儿甲-草原越野,http://em.21dtv.com/songs/60012117.mkv +佚名-草原英雄,http://em.21dtv.com/songs/60012114.mkv +谭耀文-长夜怨曲,http://em.21dtv.com/songs/60057623.mkv +胡斌-草原忆恋,http://em.21dtv.com/songs/60117144.mkv +乌云其米格-草原月亮,http://em.21dtv.com/songs/60090486.mkv +胡斌-草原忆恋,http://em.21dtv.com/songs/60070575.mkv +洪禄云+陈水林-草原夜歌,http://em.21dtv.com/songs/60094204.mkv +苏勒亚其其格-禅意云冈,http://em.21dtv.com/songs/60093788.mkv +燕尾蝶-草原月光,http://em.21dtv.com/songs/60068163.mkv +胡松华-草原夜歌,http://em.21dtv.com/songs/60012111.mkv +伊人佳人组合-春夜喜雨,http://em.21dtv.com/songs/60068195.mkv +豪图-草原雄鹰,http://em.21dtv.com/songs/60012110.mkv +阿海+查慎+赵震宇-超越想像,http://em.21dtv.com/songs/60012418.mkv +群星-超越想象,http://em.21dtv.com/songs/60012417.mkv +罗大佑-穿越漩涡,http://em.21dtv.com/songs/60112884.mkv +洪禄云+陈水林-潮涌萧山,http://em.21dtv.com/songs/60082715.mkv +陈浩德-船员心声(演唱会),http://em.21dtv.com/songs/60074984.mkv +郭旭岗-穿越午夜,http://em.21dtv.com/songs/60098812.mkv +林俊杰-超越无限,http://em.21dtv.com/songs/60127101.mkv +王铮亮-穿越无限,http://em.21dtv.com/songs/60125956.mkv +林俊杰-超越无限,http://em.21dtv.com/songs/60124121.mkv +阿宝+张冬玲-草原舞曲,http://em.21dtv.com/songs/60082698.mkv +戴辛尉-出于污泥,http://em.21dtv.com/songs/60012976.mkv +邝美云-彻夜未眠,http://em.21dtv.com/songs/60012480.mkv +胡兵-彻夜未眠,http://em.21dtv.com/songs/60012479.mkv +黄耀明-春雨弯刀(演唱会),http://em.21dtv.com/songs/60064078.mkv +甄妮-春雨弯刀,http://em.21dtv.com/songs/60013372.mkv +唐玮-川语无敌,http://em.21dtv.com/songs/60013095.mkv +阿香-草原天堂,http://em.21dtv.com/songs/60103663.mkv +游美灵-草原天堂,http://em.21dtv.com/songs/60068159.mkv +罗渝淞-草原天堂,http://em.21dtv.com/songs/60012105.mkv +李嘉石-穿越童年,http://em.21dtv.com/songs/60065907.mkv +嘿羽-草原天路,http://em.21dtv.com/songs/60125331.mkv +张艳君-草原天籁,http://em.21dtv.com/songs/60122748.mkv +王明-草原天空,http://em.21dtv.com/songs/60064041.mkv +燕尾蝶-草原探戈,http://em.21dtv.com/songs/60091676.mkv +吴君如+黄伟文-初一十五,http://em.21dtv.com/songs/60013041.mkv +张蓉蓉-春雨思情,http://em.21dtv.com/songs/60074449.mkv +石康军-穿越时空,http://em.21dtv.com/songs/60013111.mkv +ZIP-超越时空(无原唱),http://em.21dtv.com/songs/60012416.mkv +申琦-草原神话,http://em.21dtv.com/songs/60064040.mkv +郑元畅-畅一首歌,http://em.21dtv.com/songs/60012298.mkv +冷酷-草原柔情,http://em.21dtv.com/songs/60108328.mkv +司文-尘缘如梦,http://em.21dtv.com/songs/60074925.mkv +游美灵-草原人家,http://em.21dtv.com/songs/60132689.mkv +游美灵-草原人家,http://em.21dtv.com/songs/60070571.mkv +张杰-穿越人海,http://em.21dtv.com/songs/60013110.mkv +张杰-穿越人海(演唱会),http://em.21dtv.com/songs/60013109.mkv +巫淑琳-翠玉情缘,http://em.21dtv.com/songs/60064084.mkv +冷酷-草原秋色,http://em.21dtv.com/songs/60121418.mkv +熊七梅-草原情思,http://em.21dtv.com/songs/60074860.mkv +苏勒亚其其格-草原情思(演唱会),http://em.21dtv.com/songs/60074859.mkv +齐峰-草原情思,http://em.21dtv.com/songs/60064039.mkv +唐冰冰-草原情人,http://em.21dtv.com/songs/60074858.mkv +江淑娜-长夜悄悄,http://em.21dtv.com/songs/60057622.mkv +郭春成-穿越千年,http://em.21dtv.com/songs/60068187.mkv +朱贝贝-草原情郎,http://em.21dtv.com/songs/60080202.mkv +圆圆-穿越奇迹,http://em.21dtv.com/songs/60100803.mkv +曹秀琴-残夜泣笺,http://em.21dtv.com/songs/60012011.mkv +司徒兰芳-草原情花,http://em.21dtv.com/songs/60065888.mkv +拉毛王旭-草原情歌,http://em.21dtv.com/songs/60111123.mkv +刘坤-尘缘情歌,http://em.21dtv.com/songs/60110018.mkv +降央卓玛-草原情歌,http://em.21dtv.com/songs/60108994.mkv +谢军-草原情歌,http://em.21dtv.com/songs/60107219.mkv +谢军-草原情歌,http://em.21dtv.com/songs/60105370.mkv +任军太-草原情歌,http://em.21dtv.com/songs/60094394.mkv +殷瑛+老猫-草原情歌,http://em.21dtv.com/songs/60082035.mkv +孙蓝+唐冰冰-草原情歌,http://em.21dtv.com/songs/60081849.mkv +苏富权+楚红秋-茶缘情歌,http://em.21dtv.com/songs/60074870.mkv +索南扎西-草原情歌,http://em.21dtv.com/songs/60074857.mkv +佚名-草原情歌,http://em.21dtv.com/songs/60012087.mkv +姚绿绿-草原情歌,http://em.21dtv.com/songs/60012086.mkv +吕金蔓-彩云飘飘,http://em.21dtv.com/songs/60011964.mkv +佚名-彩云片片,http://em.21dtv.com/songs/60011963.mkv +夏天Alex-草与柠檬,http://em.21dtv.com/songs/60126734.mkv +糯米团-苍蝇女郎(无原唱),http://em.21dtv.com/songs/60095834.mkv +尕让邓真-草原女孩,http://em.21dtv.com/songs/60012084.mkv +王绎龙-穿越魔咒,http://em.21dtv.com/songs/60111285.mkv +萨娜-草原妹子,http://em.21dtv.com/songs/60100439.mkv +吴涤清-朝云暮雨,http://em.21dtv.com/songs/60012437.mkv +田丰-超越梦想,http://em.21dtv.com/songs/60081163.mkv +太子-穿越梦想,http://em.21dtv.com/songs/60013108.mkv +汪正正-超越梦想,http://em.21dtv.com/songs/60012415.mkv +汪正正+杨竹菁-超越梦想(演唱会),http://em.21dtv.com/songs/60012414.mkv +斯琴高丽-穿越迷雾,http://em.21dtv.com/songs/60074977.mkv +乌兰图雅-草原妹妹,http://em.21dtv.com/songs/60109936.mkv +默契-春雨蒙蒙,http://em.21dtv.com/songs/60099637.mkv +潘秀琼-春雨绵绵,http://em.21dtv.com/songs/60013371.mkv +千荷-草原牧歌,http://em.21dtv.com/songs/60089695.mkv +王宏伟-草原牧歌,http://em.21dtv.com/songs/60082695.mkv +佚名-草原牧歌,http://em.21dtv.com/songs/60012083.mkv +青燕子演唱组-草原牧歌,http://em.21dtv.com/songs/60012082.mkv +王文浩-草原浪人,http://em.21dtv.com/songs/60129398.mkv +阿香-草原恋人,http://em.21dtv.com/songs/60103664.mkv +乌兰托娅-草原恋人,http://em.21dtv.com/songs/60070569.mkv +好旺角-草原恋曲,http://em.21dtv.com/songs/60071817.mkv +周鼎棋-草原绿浪,http://em.21dtv.com/songs/60125322.mkv +曲旦卓玛-草原绿了,http://em.21dtv.com/songs/60102293.mkv +兰卡措-草原绿了,http://em.21dtv.com/songs/60101921.mkv +李晓东-草原恋歌,http://em.21dtv.com/songs/60122864.mkv +周华健-从一开始,http://em.21dtv.com/songs/60013591.mkv +罗晓明-从一开始,http://em.21dtv.com/songs/60013590.mkv +刘美麟-超越可能,http://em.21dtv.com/songs/60084978.mkv +火雅-草原嫁衣,http://em.21dtv.com/songs/60012078.mkv +南征北战-超越极限,http://em.21dtv.com/songs/60106665.mkv +亚东-草原吉祥,http://em.21dtv.com/songs/60012077.mkv +王莉-彩翼九天,http://em.21dtv.com/songs/60084951.mkv +关智斌-次要角色,http://em.21dtv.com/songs/60121398.mkv +布仁巴雅尔-草原酒歌,http://em.21dtv.com/songs/60104991.mkv +刘蕊绮-草原汉子,http://em.21dtv.com/songs/60110047.mkv +童安格-畅饮回忆(演唱会),http://em.21dtv.com/songs/60012299.mkv +谢霆锋-穿越火线,http://em.21dtv.com/songs/60103576.mkv +龚格尔-穿越火线,http://em.21dtv.com/songs/60101588.mkv +阿修罗-穿越火线,http://em.21dtv.com/songs/60082738.mkv +ENRIQUE IGLESIAS-can you hear me,http://em.21dtv.com/songs/60066334.mkv +蔡旻佑-can you hear me,http://em.21dtv.com/songs/60000798.mkv +崔子格-草雨花河,http://em.21dtv.com/songs/60097338.mkv +洛天依+心华+乐正绫-春意红包,http://em.21dtv.com/songs/60133935.mkv +Days-春意红包,http://em.21dtv.com/songs/60132066.mkv +苏西-草原姑娘,http://em.21dtv.com/songs/60135674.mkv +卓玛央宗-察隅姑娘,http://em.21dtv.com/songs/60134959.mkv +陈玉建-草原姑娘,http://em.21dtv.com/songs/60103690.mkv +卫东-草原姑娘,http://em.21dtv.com/songs/60094017.mkv +新宝岛康乐队-蟾蜍姑娘,http://em.21dtv.com/songs/60071824.mkv +董夏娟-彩云姑娘,http://em.21dtv.com/songs/60066900.mkv +牛小龙-草原姑娘,http://em.21dtv.com/songs/60012076.mkv +水果哥-财源广进,http://em.21dtv.com/songs/60122941.mkv +曾敏-财源广进,http://em.21dtv.com/songs/60118645.mkv +音乐走廊-草原篝火,http://em.21dtv.com/songs/60093704.mkv +王嘉明-差一分钟,http://em.21dtv.com/songs/60092978.mkv +无级生-can you feel me,http://em.21dtv.com/songs/60000794.mkv +TIMOMATIC-can you feel it,http://em.21dtv.com/songs/60070314.mkv +李爱-can you feel it,http://em.21dtv.com/songs/60062584.mkv +凤凰传奇-草原凤凰(演唱会),http://em.21dtv.com/songs/60012075.mkv +游美灵-草原放歌,http://em.21dtv.com/songs/60070568.mkv +郭欢+悟义-草原的夜,http://em.21dtv.com/songs/60074852.mkv +周怡然-草原达人,http://em.21dtv.com/songs/60063472.mkv +吴易航-草原的你,http://em.21dtv.com/songs/60115751.mkv +民歌-草原的路,http://em.21dtv.com/songs/60091558.mkv +张海松-草原的家,http://em.21dtv.com/songs/60063368.mkv +千童-草原的家,http://em.21dtv.com/songs/60062820.mkv +枫舞-草原的河,http://em.21dtv.com/songs/60098525.mkv +张冬玲-草原的风,http://em.21dtv.com/songs/60102203.mkv +张卫健-超越颠峰,http://em.21dtv.com/songs/60089268.mkv +张卫健+王韵婵-超越颠峰,http://em.21dtv.com/songs/60087795.mkv +韩磊-潮涌东方,http://em.21dtv.com/songs/60074920.mkv +群星-超越巅峰,http://em.21dtv.com/songs/60012413.mkv +索朗扎西-草原的爱,http://em.21dtv.com/songs/60074849.mkv +赤子-草原赤子,http://em.21dtv.com/songs/60074848.mkv +佚名-草原晨曲,http://em.21dtv.com/songs/60012073.mkv +关贵敏-草原晨曲,http://em.21dtv.com/songs/60012072.mkv +许志安-彻夜缠绵(演唱会),http://em.21dtv.com/songs/60012478.mkv +杭盖乐队-超越才酷,http://em.21dtv.com/songs/60131538.mkv +邝美云-长夜抱琴,http://em.21dtv.com/songs/60057618.mkv +黄伊汶+李国能-长夜不眠(演唱会),http://em.21dtv.com/songs/60057619.mkv +格根其木格-草原百灵,http://em.21dtv.com/songs/60074846.mkv +谢旦-草原百灵,http://em.21dtv.com/songs/60012071.mkv +歌浴森-冲一杯茶,http://em.21dtv.com/songs/60080514.mkv +必爱-冲一杯茶(无原唱),http://em.21dtv.com/songs/60012868.mkv +张文娟-草原宝贝,http://em.21dtv.com/songs/60074847.mkv +海涵-穿越爱恋,http://em.21dtv.com/songs/60064072.mkv +牧兰+贡布-草原爱歌,http://em.21dtv.com/songs/60119793.mkv +保利群星-除夕之夜,http://em.21dtv.com/songs/60013062.mkv +紫海-车行之王,http://em.21dtv.com/songs/60102612.mkv +梁川宇-陈香之恋,http://em.21dtv.com/songs/60131571.mkv +李美-茶香中华,http://em.21dtv.com/songs/60100155.mkv +王晓青-诚信中国,http://em.21dtv.com/songs/60132734.mkv +全国少儿歌曲-朝霞之歌,http://em.21dtv.com/songs/60101915.mkv +雷佳-茶香中国,http://em.21dtv.com/songs/60094760.mkv +朱丽婷-唱响中国,http://em.21dtv.com/songs/60064052.mkv +刘捷-茶香中国,http://em.21dtv.com/songs/60061095.mkv +许廷铿-重新长大,http://em.21dtv.com/songs/60071531.mkv +高夫-初心依然,http://em.21dtv.com/songs/60134468.mkv +百曦-痴心眼泪,http://em.21dtv.com/songs/60030560.mkv +凌志辉-春宵一刻,http://em.21dtv.com/songs/60075002.mkv +三木科-藏香依旧,http://em.21dtv.com/songs/60089104.mkv +翁汕汕-残血夕阳,http://em.21dtv.com/songs/60084955.mkv +佩希-初雪想你,http://em.21dtv.com/songs/60099089.mkv +韩宝仪-痴心小妹,http://em.21dtv.com/songs/60012770.mkv +高利虹+邓海-唱响幸福,http://em.21dtv.com/songs/60107367.mkv +绯村柯北-寸心笑傲,http://em.21dtv.com/songs/60082766.mkv +五洲唱响乐团-唱响五洲,http://em.21dtv.com/songs/60012351.mkv +孟杨-痴心妄想,http://em.21dtv.com/songs/60012768.mkv +佚名-痴心误会,http://em.21dtv.com/songs/60012769.mkv +蔡凤凰-春宵舞伴,http://em.21dtv.com/songs/60095891.mkv +佚名-春宵舞伴,http://em.21dtv.com/songs/60095423.mkv +五月天-雌雄同体,http://em.21dtv.com/songs/60013442.mkv +王梓旭-痴心太累,http://em.21dtv.com/songs/60111274.mkv +吕莹晶-唱响天籁,http://em.21dtv.com/songs/60103973.mkv +许富凯-痴心探戈,http://em.21dtv.com/songs/60128395.mkv +TONICK-长相厮守,http://em.21dtv.com/songs/60133301.mkv +群星-唱响世界,http://em.21dtv.com/songs/60012350.mkv +枫舞+囚鸟-痴心守侯,http://em.21dtv.com/songs/60106028.mkv +囚鸟+枫舞-痴心守候,http://em.21dtv.com/songs/60103991.mkv +许霖-诚信是福,http://em.21dtv.com/songs/60129612.mkv +萧福德-春夏秋冬(无原唱),http://em.21dtv.com/songs/60080667.mkv +陈慧琳-春夏秋冬,http://em.21dtv.com/songs/60068194.mkv +张国荣-春夏秋冬,http://em.21dtv.com/songs/60013360.mkv +佚名-春夏秋冬,http://em.21dtv.com/songs/60013359.mkv +刘文正-春夏秋冬,http://em.21dtv.com/songs/60013358.mkv +蔡小虎-春夏秋冬,http://em.21dtv.com/songs/60013357.mkv +张国荣-春夏秋冬(演唱会),http://em.21dtv.com/songs/60013356.mkv +群星-唱响全城(演唱会),http://em.21dtv.com/songs/60069298.mkv +杨子军-沉香男人,http://em.21dtv.com/songs/60112788.mkv +庄振凯-痴心梦想,http://em.21dtv.com/songs/60111845.mkv +谭嘉仪-扯线木偶,http://em.21dtv.com/songs/60128409.mkv +孙俪-扯线木偶,http://em.21dtv.com/songs/60012477.mkv +杨冰冰-重新来过,http://em.21dtv.com/songs/60079670.mkv +夏膺-重新来过,http://em.21dtv.com/songs/60067808.mkv +郎军-重新来过,http://em.21dtv.com/songs/60066602.mkv +赵泳鑫+沈梦辰-超想见你,http://em.21dtv.com/songs/60115423.mkv +李圣杰-痴心绝对,http://em.21dtv.com/songs/60012767.mkv +阿生-痴心绝对,http://em.21dtv.com/songs/60012766.mkv +李圣杰-痴心绝对(演唱会),http://em.21dtv.com/songs/60012765.mkv +薛启超-痴笑今朝,http://em.21dtv.com/songs/60120934.mkv +钟sir-痴心汉子,http://em.21dtv.com/songs/60116317.mkv +谢朋举-唱响杭州,http://em.21dtv.com/songs/60012349.mkv +飞轮海-超喜欢你,http://em.21dtv.com/songs/60012408.mkv +叶玉卿-痴心共证,http://em.21dtv.com/songs/60012761.mkv +刘长锁-藏乡姑娘,http://em.21dtv.com/songs/60132257.mkv +YAN-扯线风筝,http://em.21dtv.com/songs/60012476.mkv +傅羽-趁虚而入,http://em.21dtv.com/songs/60110850.mkv +苏永康-趁虚而入,http://em.21dtv.com/songs/60091945.mkv +王柏森-乘虚而入,http://em.21dtv.com/songs/60012644.mkv +苏永康-乘虚而入,http://em.21dtv.com/songs/60012643.mkv +张书瑶-穿心而过,http://em.21dtv.com/songs/60129063.mkv +陈浩民-擦心而过,http://em.21dtv.com/songs/60066898.mkv +饥饿艺术家-雌性动物,http://em.21dtv.com/songs/60075007.mkv +张国荣-痴心的我,http://em.21dtv.com/songs/60012758.mkv +邰正宵-痴心的我,http://em.21dtv.com/songs/60012757.mkv +王秀琪-刺心的痛,http://em.21dtv.com/songs/60124273.mkv +彭三-吹箫的人,http://em.21dtv.com/songs/60114554.mkv +孙楠-冲向巅峰,http://em.21dtv.com/songs/60119416.mkv +刘航-称兄道弟,http://em.21dtv.com/songs/60127781.mkv +佚名-痴心等待,http://em.21dtv.com/songs/60012760.mkv +王凯-赤血长殷,http://em.21dtv.com/songs/60113851.mkv +洪荣宏-痴心痴情,http://em.21dtv.com/songs/60012751.mkv +群星-从心出发,http://em.21dtv.com/songs/60135631.mkv +庄心妍-从心出发,http://em.21dtv.com/songs/60135181.mkv +林萍-从心出发,http://em.21dtv.com/songs/60121823.mkv +佚名-痴心错付,http://em.21dtv.com/songs/60012753.mkv +黑龙-痴心错对(演唱会),http://em.21dtv.com/songs/60012752.mkv +赵薇-车厢包厢,http://em.21dtv.com/songs/60012463.mkv +张双舞-唱响北京,http://em.21dtv.com/songs/60115146.mkv +ABBY组合-痴心不悔,http://em.21dtv.com/songs/60066917.mkv +小倩-痴心不改,http://em.21dtv.com/songs/60129001.mkv +薛启超-痴心不改,http://em.21dtv.com/songs/60120933.mkv +金池-痴心不改,http://em.21dtv.com/songs/60074950.mkv +金池-痴心不改(演唱会),http://em.21dtv.com/songs/60071839.mkv +黄翊-痴心不变,http://em.21dtv.com/songs/60093543.mkv +陈晓东-从心爱你,http://em.21dtv.com/songs/60013588.mkv +钟镇涛-痴心爱你,http://em.21dtv.com/songs/60012748.mkv +布一贤-粗心 爱,http://em.21dtv.com/songs/60126826.mkv +陈俞静-从我做起,http://em.21dtv.com/songs/60120069.mkv +阎维文-从我做起,http://em.21dtv.com/songs/60013586.mkv +袁小迪-出外英雄,http://em.21dtv.com/songs/60065905.mkv +胡诺言-错误引导,http://em.21dtv.com/songs/60093070.mkv +戊道子-茶味you can(演唱会),http://em.21dtv.com/songs/60066905.mkv +莫熙儿-刺猬效应,http://em.21dtv.com/songs/60064082.mkv +罗力威-从未忘记(演唱会),http://em.21dtv.com/songs/60075014.mkv +高向鹏-出外人生,http://em.21dtv.com/songs/60093518.mkv +℃ UTE-crazy完全な大人,http://em.21dtv.com/songs/60082127.mkv +李玟-宠物男孩,http://em.21dtv.com/songs/60012883.mkv +RASCAL FLATTS-come wake me up,http://em.21dtv.com/songs/60073071.mkv +伦永亮+林忆莲-come what may cnaser(演唱会),http://em.21dtv.com/songs/60001009.mkv +单色凌+何艺纱-错误节拍,http://em.21dtv.com/songs/60075023.mkv +小琢-春望江南,http://em.21dtv.com/songs/60135140.mkv +邓婧媛-宠物精灵,http://em.21dtv.com/songs/60012882.mkv +紫琴-从未后悔,http://em.21dtv.com/songs/60084999.mkv +巫启贤-从未改变,http://em.21dtv.com/songs/60013581.mkv +孟文豪-窗外的雨,http://em.21dtv.com/songs/60122664.mkv +王中平-窗外的雨,http://em.21dtv.com/songs/60094801.mkv +佚名-窗外的雨,http://em.21dtv.com/songs/60013190.mkv +佚名-出外的人,http://em.21dtv.com/songs/60012971.mkv +黄乙玲-出外的人,http://em.21dtv.com/songs/60012970.mkv +徐嘉良-出外的人(无原唱),http://em.21dtv.com/songs/60012969.mkv +杨哲-出外的歌,http://em.21dtv.com/songs/60113663.mkv +孙艳-错误的爱,http://em.21dtv.com/songs/60090937.mkv +洪禄云+枫舞-错误的爱,http://em.21dtv.com/songs/60085004.mkv +韩宝仪-错误的爱,http://em.21dtv.com/songs/60013695.mkv +林奕匡-查无此字,http://em.21dtv.com/songs/60132604.mkv +陈奕迅-从未痴心,http://em.21dtv.com/songs/60110614.mkv +黄玮亦-查无此人,http://em.21dtv.com/songs/60126485.mkv +郭富城-查无此人,http://em.21dtv.com/songs/60012232.mkv +陈小霞-查无此人,http://em.21dtv.com/songs/60012231.mkv +陈小春-成王败寇,http://em.21dtv.com/songs/60012577.mkv +陈小春-成王败寇(演唱会),http://em.21dtv.com/songs/60012576.mkv +群星-唱旺09,http://em.21dtv.com/songs/60061098.mkv +DARREN HAYES-creepin up on you,http://em.21dtv.com/songs/60073087.mkv +温岚-can u feel it,http://em.21dtv.com/songs/60000789.mkv +郑钧-苍天在上,http://em.21dtv.com/songs/60012028.mkv +何家劲-从头做起,http://em.21dtv.com/songs/60013580.mkv +崔健-从头再来,http://em.21dtv.com/songs/60116757.mkv +黄勇+林燕-从头再来,http://em.21dtv.com/songs/60114294.mkv +中三舞曲-从头再来,http://em.21dtv.com/songs/60089585.mkv +孙楠-从头再来,http://em.21dtv.com/songs/60086504.mkv +谢旦-从头再来,http://em.21dtv.com/songs/60013579.mkv +刘欢-从头再来,http://em.21dtv.com/songs/60013578.mkv +刘欢-从头再来(演唱会),http://em.21dtv.com/songs/60013577.mkv +顾莉雅-从头再来(演唱会),http://em.21dtv.com/songs/60013576.mkv +华晨宇-拆弹专家,http://em.21dtv.com/songs/60103949.mkv +吕薇-春天中国,http://em.21dtv.com/songs/60086499.mkv +杉籽伽-苍天知道,http://em.21dtv.com/songs/60104190.mkv +谭咏麟+杜丽莎-重投再爱,http://em.21dtv.com/songs/60070258.mkv +陈小春-苍天有梦,http://em.21dtv.com/songs/60012027.mkv +风采轮(阿轮)-苍天一笔,http://em.21dtv.com/songs/60118186.mkv +黄乙玲-柴头尢仔(无原唱),http://em.21dtv.com/songs/60012251.mkv +吴涤清-重提往事,http://em.21dtv.com/songs/60069018.mkv +30 SECONDS TO MARS-closer to the edge,http://em.21dtv.com/songs/60000957.mkv +MARIAH CAREY-cant take that away,http://em.21dtv.com/songs/60000848.mkv +GLORIANA-cant shake you,http://em.21dtv.com/songs/60073034.mkv +白雅言-长腿叔叔,http://em.21dtv.com/songs/60074884.mkv +DARIN ZANYAR-cant stop love,http://em.21dtv.com/songs/60073035.mkv +DARIN-cant stop love,http://em.21dtv.com/songs/60065558.mkv +徐秋菊+王映楼-唱条山歌,http://em.21dtv.com/songs/60012344.mkv +G.NA-count on me,http://em.21dtv.com/songs/60073079.mkv +MELISSA ETHERIDGE-come to my window,http://em.21dtv.com/songs/60001005.mkv +张信哲-长途旅行,http://em.21dtv.com/songs/60063409.mkv +七烽-车头恋情(无原唱),http://em.21dtv.com/songs/60095374.mkv +佚名-车头恋情(无原唱),http://em.21dtv.com/songs/60012462.mkv +寒星-春天来了,http://em.21dtv.com/songs/60135132.mkv +夏辉+谢艳-春天来临,http://em.21dtv.com/songs/60106738.mkv +翁琳-春天来了,http://em.21dtv.com/songs/60100388.mkv +春天-春天来了,http://em.21dtv.com/songs/60094037.mkv +王雪晶+庄群诗-春天来了,http://em.21dtv.com/songs/60088337.mkv +巧千金-春天来了,http://em.21dtv.com/songs/60013339.mkv +孙淑媚-苍天了解,http://em.21dtv.com/songs/60095513.mkv +叶倩文-从头开始(演唱会),http://em.21dtv.com/songs/60013575.mkv +郭富城-成田空港,http://em.21dtv.com/songs/60093358.mkv +佚名-船头可爱,http://em.21dtv.com/songs/60095439.mkv +旺旺-春天花开,http://em.21dtv.com/songs/60075001.mkv +胡宏进-春天花开,http://em.21dtv.com/songs/60064077.mkv +J.COLE+TREY SONGZ-cant get enough,http://em.21dtv.com/songs/60062049.mkv +阿斯根-从天而来,http://em.21dtv.com/songs/60013571.mkv +程志+顾欣+魏松-春天的钟,http://em.21dtv.com/songs/60088371.mkv +易齐-从头到尾(无原唱),http://em.21dtv.com/songs/60013574.mkv +卫兰-长痛短痛,http://em.21dtv.com/songs/60107559.mkv +张津涤-春天的泪,http://em.21dtv.com/songs/60132452.mkv +张津涤-春天的泪,http://em.21dtv.com/songs/60123931.mkv +张惠妹-冲突得很,http://em.21dtv.com/songs/60114535.mkv +张惠妹-冲突得很,http://em.21dtv.com/songs/60113465.mkv +张蓉蓉-春天的风,http://em.21dtv.com/songs/60135236.mkv +陈奕迅-床头床尾,http://em.21dtv.com/songs/60098867.mkv +梁咏琪-长痛长爱(演唱会),http://em.21dtv.com/songs/60057604.mkv +赵真-寸土不让,http://em.21dtv.com/songs/60124523.mkv +刘德华-长途伴侣,http://em.21dtv.com/songs/60057607.mkv +JENNIFER LOPEZ-could this be love,http://em.21dtv.com/songs/60001048.mkv +李茂山-从头爱起,http://em.21dtv.com/songs/60013573.mkv +吴涛-此生足矣,http://em.21dtv.com/songs/60130184.mkv +徐小凤-城市足印,http://em.21dtv.com/songs/60012635.mkv +黄韵玲-初熟之物,http://em.21dtv.com/songs/60118220.mkv +任贤齐-冲绳之恋,http://em.21dtv.com/songs/60012867.mkv +张学友+崔始源-赤色壮举,http://em.21dtv.com/songs/60111068.mkv +徐小凤-城市足迹,http://em.21dtv.com/songs/60092711.mkv +胡东清-常山战鼓,http://em.21dtv.com/songs/60110472.mkv +李志洲-厨师之歌,http://em.21dtv.com/songs/60084989.mkv +佚名-船上月夜,http://em.21dtv.com/songs/60013162.mkv +陈淑芳+李宝珍-茶山姻缘,http://em.21dtv.com/songs/60012214.mkv +黄家强-曾是拥有(演唱会),http://em.21dtv.com/songs/60012189.mkv +林子祥-冲上云宵,http://em.21dtv.com/songs/60100204.mkv +黄伊汶-纯属印象,http://em.21dtv.com/songs/60093524.mkv +吴宗宪-城市英雄,http://em.21dtv.com/songs/60087557.mkv +陈奕迅-冲上云霄,http://em.21dtv.com/songs/60084986.mkv +黄家强-冲上云霄(演唱会),http://em.21dtv.com/songs/60012866.mkv +陈冠希-超速游戏,http://em.21dtv.com/songs/60012407.mkv +戴佩妮-纯属意外,http://em.21dtv.com/songs/60082752.mkv +许慧欣-纯属意外,http://em.21dtv.com/songs/60013400.mkv +罗嘉良-纯属意外,http://em.21dtv.com/songs/60013399.mkv +CLOWN-穿梭雨天,http://em.21dtv.com/songs/60087184.mkv +九九-尝试一切,http://em.21dtv.com/songs/60119237.mkv +启韵群星-财神又到,http://em.21dtv.com/songs/60117610.mkv +铁木隆-朝圣西藏,http://em.21dtv.com/songs/60065896.mkv +覃飞宇+谭缓缓-岑山秀水,http://em.21dtv.com/songs/60126173.mkv +蔡依林-彩色相片,http://em.21dtv.com/songs/60070562.mkv +鲍蓉-采桑小路(风景),http://em.21dtv.com/songs/60102955.mkv +牛选天-纯属虚构,http://em.21dtv.com/songs/60120742.mkv +何嘉茵-纯属虚构,http://em.21dtv.com/songs/60119255.mkv +卢学睿-纯属虚构,http://em.21dtv.com/songs/60066929.mkv +荒山亮-纯属虚构,http://em.21dtv.com/songs/60013398.mkv +高登-城市小丑,http://em.21dtv.com/songs/60104613.mkv +晓月-此生无缘,http://em.21dtv.com/songs/60068197.mkv +BARRY MANILOW-cant smile without you,http://em.21dtv.com/songs/60000836.mkv +蔡济文-朝思晚想,http://em.21dtv.com/songs/60093123.mkv +赵炳文-曾伤我心(无原唱),http://em.21dtv.com/songs/60012187.mkv +程琳-春水弯弯,http://em.21dtv.com/songs/60013313.mkv +巧千金-财神娃娃,http://em.21dtv.com/songs/60011897.mkv +王檀-此生无悔,http://em.21dtv.com/songs/60133990.mkv +罗凯莹-初试啼声,http://em.21dtv.com/songs/60115330.mkv +G.CHRISTOPHER+B.ELLI-come softly to me(无原唱),http://em.21dtv.com/songs/60001001.mkv +戴梦梦-厨师推介,http://em.21dtv.com/songs/60092740.mkv +崎君-城市森林,http://em.21dtv.com/songs/60012634.mkv +黄贯中-彩色世界,http://em.21dtv.com/songs/60011955.mkv +车婉婉-彩色世界,http://em.21dtv.com/songs/60011954.mkv +肖景泽-此生守候,http://em.21dtv.com/songs/60128320.mkv +满文军+周莉-长寿是福,http://em.21dtv.com/songs/60057598.mkv +容祖儿-吹沙入眼,http://em.21dtv.com/songs/60092519.mkv +詹雅雯-彩色人生,http://em.21dtv.com/songs/60011953.mkv +周笔畅+陈珊妮-城市人间,http://em.21dtv.com/songs/60074940.mkv +王美莲-出神入化,http://em.21dtv.com/songs/60088313.mkv +飞轮海-出神入化,http://em.21dtv.com/songs/60012960.mkv +王唯侨-尘世情缘,http://em.21dtv.com/songs/60100304.mkv +RUBBER BAND-擦身情缘(演唱会),http://em.21dtv.com/songs/60061086.mkv +杜德伟-擦身情缘(演唱会),http://em.21dtv.com/songs/60011860.mkv +龙庚-沧桑情人,http://em.21dtv.com/songs/60081103.mkv +秋裤大叔-沧桑情歌,http://em.21dtv.com/songs/60110438.mkv +秋裤大叔-沧桑情歌,http://em.21dtv.com/songs/60108767.mkv +雷佳-茶山情歌,http://em.21dtv.com/songs/60106441.mkv +WK+ME-茶山情歌,http://em.21dtv.com/songs/60099708.mkv +张雷-沧桑情歌,http://em.21dtv.com/songs/60081441.mkv +冷漠-沧桑情歌,http://em.21dtv.com/songs/60070563.mkv +赵小兵-沧桑情歌,http://em.21dtv.com/songs/60064033.mkv +卓依婷-茶山情歌,http://em.21dtv.com/songs/60012213.mkv +佚名-茶山情歌,http://em.21dtv.com/songs/60012212.mkv +杨钰莹-茶山情歌,http://em.21dtv.com/songs/60012211.mkv +曾桂英-茶山情歌,http://em.21dtv.com/songs/60012210.mkv +周冰倩-沧桑情歌,http://em.21dtv.com/songs/60012042.mkv +F.I.R-彩色拼图,http://em.21dtv.com/songs/60011952.mkv +李克勤-C3PO,http://em.21dtv.com/songs/60133792.mkv +汤骏业-草食男女,http://em.21dtv.com/songs/60097339.mkv +野马-长沙女孩,http://em.21dtv.com/songs/60084968.mkv +徐晶晶-春色满园,http://em.21dtv.com/songs/60094114.mkv +王识贤-春树暮云,http://em.21dtv.com/songs/60013308.mkv +天津阿明-朝思暮想(演唱会),http://em.21dtv.com/songs/60082713.mkv +张靓颖-朝思暮想,http://em.21dtv.com/songs/60012426.mkv +艾莉莎+晓田-城市名片,http://em.21dtv.com/songs/60071838.mkv +区瑞强-城市民歌,http://em.21dtv.com/songs/60092374.mkv +范潇匀-唱什么歌,http://em.21dtv.com/songs/60062344.mkv +汪苏泷-传世乐章,http://em.21dtv.com/songs/60102469.mkv +PHIL COLLINS-cant stop loving you,http://em.21dtv.com/songs/60000840.mkv +THE POLICE-cant stand losing you,http://em.21dtv.com/songs/60000837.mkv +骆驼强子-城市骆驼(演唱会),http://em.21dtv.com/songs/60074939.mkv +阿牛-城市蓝天,http://em.21dtv.com/songs/60012628.mkv +阿牛-城市蓝天(演唱会),http://em.21dtv.com/songs/60012627.mkv +阳帆-城市猎人,http://em.21dtv.com/songs/60012631.mkv +刘德华-城市猎人,http://em.21dtv.com/songs/60012630.mkv +佚名-城市丽人,http://em.21dtv.com/songs/60012629.mkv +童唱-春神来了,http://em.21dtv.com/songs/60013306.mkv +钟明秋+林琳-赤色空间,http://em.21dtv.com/songs/60110597.mkv +王力宏-畅爽开怀,http://em.21dtv.com/songs/60012297.mkv +解晓东-城市节奏,http://em.21dtv.com/songs/60012626.mkv +郑秀文-超速驾驶,http://em.21dtv.com/songs/60093320.mkv +黄美珍-串烧金曲,http://em.21dtv.com/songs/60124753.mkv +方婉真+方顺吉-彩色精灵,http://em.21dtv.com/songs/60095539.mkv +合唱-彩色精灵,http://em.21dtv.com/songs/60095493.mkv +明骏女孩-彩色季节,http://em.21dtv.com/songs/60011951.mkv +蔡炆天-财神驾到,http://em.21dtv.com/songs/60114761.mkv +曹越+门丽-财神驾到,http://em.21dtv.com/songs/60108547.mkv +枫舞-错上加错,http://em.21dtv.com/songs/60106991.mkv +黄雅莉-彩色幻想,http://em.21dtv.com/songs/60070561.mkv +张楚-厕所和床,http://em.21dtv.com/songs/60089279.mkv +龙飘飘-茶山姑娘,http://em.21dtv.com/songs/60012209.mkv +卓依婷-出水芙蓉,http://em.21dtv.com/songs/60012962.mkv +张璞+樊亚军-城市飞鸟,http://em.21dtv.com/songs/60082722.mkv +徐誉滕-彩色粉笔,http://em.21dtv.com/songs/60011950.mkv +SALLY田田-擦身而去,http://em.21dtv.com/songs/60071812.mkv +游鸿明-插身而过,http://em.21dtv.com/songs/60091631.mkv +林心如-擦身而过,http://em.21dtv.com/songs/60011858.mkv +卓依婷-潮湿的心,http://em.21dtv.com/songs/60012447.mkv +李艳秋-潮湿的心,http://em.21dtv.com/songs/60012446.mkv +甘萍-潮湿的心,http://em.21dtv.com/songs/60012445.mkv +张信哲-彩色的我,http://em.21dtv.com/songs/60011949.mkv +杨然-彩色的梦,http://em.21dtv.com/songs/60106972.mkv +黄鸿升-村上的猫,http://em.21dtv.com/songs/60080169.mkv +夏兰-财神到来,http://em.21dtv.com/songs/60132319.mkv +亚东-朝圣的路,http://em.21dtv.com/songs/60012425.mkv +吉克隽逸-彩色的黑,http://em.21dtv.com/songs/60071814.mkv +余翠芝-传诵的歌,http://em.21dtv.com/songs/60081821.mkv +潘越云-茶室春秋,http://em.21dtv.com/songs/60012215.mkv +吴陌川-此时此刻,http://em.21dtv.com/songs/60135038.mkv +许巍-此时此刻,http://em.21dtv.com/songs/60082757.mkv +薛凯琪-此时此刻,http://em.21dtv.com/songs/60075009.mkv +吕继宏-此时此刻,http://em.21dtv.com/songs/60013452.mkv +詹曼铃+陈茂丰-成双成对,http://em.21dtv.com/songs/60086490.mkv +谭维维-城市病人,http://em.21dtv.com/songs/60127414.mkv +姚政-城市冰人,http://em.21dtv.com/songs/60104028.mkv +陈瑞-此生不见,http://em.21dtv.com/songs/60117348.mkv +金玟岐-城市背后,http://em.21dtv.com/songs/60114839.mkv +青鸟飞鱼-此生不换,http://em.21dtv.com/songs/60013451.mkv +依稀-测试爱之DJ,http://em.21dtv.com/songs/60089620.mkv +林子娟-城市暗夜,http://em.21dtv.com/songs/60012622.mkv +林昕阳-诚实爱过,http://em.21dtv.com/songs/60012586.mkv +郑智化-成熟1/2,http://em.21dtv.com/songs/60012575.mkv +赵颂茹-成人玩意,http://em.21dtv.com/songs/60012572.mkv +罗逻圣-出人头地,http://em.21dtv.com/songs/60122005.mkv +伊犁哈穆-出人头地,http://em.21dtv.com/songs/60097211.mkv +吕珊-出人头地(演唱会),http://em.21dtv.com/songs/60082734.mkv +王士次+小语-出人头地,http://em.21dtv.com/songs/60069309.mkv +钱小寒-出人头地,http://em.21dtv.com/songs/60012955.mkv +大哲-出人头地,http://em.21dtv.com/songs/60012954.mkv +蔡琴-出人头地,http://em.21dtv.com/songs/60012953.mkv +小肥-出人头地(演唱会),http://em.21dtv.com/songs/60012952.mkv +陈依然-脆弱男人,http://em.21dtv.com/songs/60061119.mkv +胡斌-次仁拉索,http://em.21dtv.com/songs/60127305.mkv +高原红组合-次仁拉索,http://em.21dtv.com/songs/60088991.mkv +沁心小筑-春日恋曲,http://em.21dtv.com/songs/60080686.mkv +李大海-残忍离开,http://em.21dtv.com/songs/60130413.mkv +陈冠希-超人佳亚,http://em.21dtv.com/songs/60093388.mkv +曾慧-春日郊游,http://em.21dtv.com/songs/60013305.mkv +刘家聪-超人佳亚(演唱会),http://em.21dtv.com/songs/60012402.mkv +PUFF NATION-超人接力,http://em.21dtv.com/songs/60101028.mkv +陈百强-成日甘叻,http://em.21dtv.com/songs/60093489.mkv +朱文-脆弱的心,http://em.21dtv.com/songs/60013610.mkv +叶时伟-残忍的吻,http://em.21dtv.com/songs/60012009.mkv +陈奕迅-超人迪加,http://em.21dtv.com/songs/60093409.mkv +郑锦昌-成日扮靓(演唱会),http://em.21dtv.com/songs/60074933.mkv +佚名-成日扮靓,http://em.21dtv.com/songs/60012573.mkv +李行亮-超人爸爸,http://em.21dtv.com/songs/60110288.mkv +甲子惠-承认爱你(无原唱),http://em.21dtv.com/songs/60012604.mkv +张蓉蓉-痴情赚醉,http://em.21dtv.com/songs/60064060.mkv +苏有朋-出去走走,http://em.21dtv.com/songs/60012951.mkv +郭欢-此情知谁,http://em.21dtv.com/songs/60066930.mkv +王洁+夏辉-常青之歌,http://em.21dtv.com/songs/60107077.mkv +泳儿-纯情有罪,http://em.21dtv.com/songs/60013396.mkv +张静-春曲悠悠,http://em.21dtv.com/songs/60121687.mkv +李克勤-痴情意外,http://em.21dtv.com/songs/60125695.mkv +陈慧娴-痴情意外,http://em.21dtv.com/songs/60012741.mkv +陈慧娴-痴情意外(演唱会),http://em.21dtv.com/songs/60012740.mkv +刘着-从前以后,http://em.21dtv.com/songs/60082761.mkv +谢霆锋-从前以后,http://em.21dtv.com/songs/60013565.mkv +动力火车-从前以后,http://em.21dtv.com/songs/60013564.mkv +谢霆锋-从前以后(演唱会),http://em.21dtv.com/songs/60013563.mkv +孙淑媚-痴情有毒,http://em.21dtv.com/songs/60108428.mkv +容祖儿-出前一丁,http://em.21dtv.com/songs/60012948.mkv +苗鑫-痴情旋律,http://em.21dtv.com/songs/60101162.mkv +汤宝如-春去夏来,http://em.21dtv.com/songs/60013304.mkv +林俊吉-痴情无效,http://em.21dtv.com/songs/60064059.mkv +成泉-成全我吧,http://em.21dtv.com/songs/60115955.mkv +萧亚轩-逞强无标,http://em.21dtv.com/songs/60064056.mkv +陈雷-痴情无伴,http://em.21dtv.com/songs/60012731.mkv +刘德华-痴情岁月,http://em.21dtv.com/songs/60012730.mkv +蓝沁-传奇世界,http://em.21dtv.com/songs/60013126.mkv +于浩宸-传奇人生,http://em.21dtv.com/songs/60065908.mkv +吴淑敏-纯情恰恰,http://em.21dtv.com/songs/60013392.mkv +吕薇-春去秋来,http://em.21dtv.com/songs/60013303.mkv +郑伊健-此情难再,http://em.21dtv.com/songs/60013447.mkv +金城-痴情男孩(演唱会),http://em.21dtv.com/songs/60012724.mkv +施文彬-痴情男儿,http://em.21dtv.com/songs/60012723.mkv +陈雷-痴情男儿,http://em.21dtv.com/songs/60012722.mkv +蔡小虎-痴情男儿,http://em.21dtv.com/songs/60012721.mkv +林姗-痴情恋梦,http://em.21dtv.com/songs/60065900.mkv +陈琼-痴情苦恋(戏曲),http://em.21dtv.com/songs/60096012.mkv +范孝洪-痴情苦恋,http://em.21dtv.com/songs/60074947.mkv +晓月-痴情苦恋,http://em.21dtv.com/songs/60063157.mkv +轻舞飞扬-痴情苦恋,http://em.21dtv.com/songs/60061103.mkv +阿强-此情可待,http://em.21dtv.com/songs/60082754.mkv +韩平+贺军-此情可待,http://em.21dtv.com/songs/60071845.mkv +赵一燕-传奇军团,http://em.21dtv.com/songs/60128423.mkv +初晨-传奇军团,http://em.21dtv.com/songs/60125227.mkv +唐俪-痴情憨梦,http://em.21dtv.com/songs/60130203.mkv +翁立友-痴情何苦,http://em.21dtv.com/songs/60081796.mkv +郭富城-痴情画家,http://em.21dtv.com/songs/60093363.mkv +甲子慧-痴情过重,http://em.21dtv.com/songs/60111313.mkv +杨哲-痴情孤鸟,http://em.21dtv.com/songs/60135394.mkv +金卓然-朝前宫后,http://em.21dtv.com/songs/60115457.mkv +张津涤-痴情的鱼,http://em.21dtv.com/songs/60121657.mkv +黎明-传情达意,http://em.21dtv.com/songs/60013128.mkv +邵大伦-痴情的我,http://em.21dtv.com/songs/60128466.mkv +陈洁仪-从前的我,http://em.21dtv.com/songs/60113061.mkv +曾巍-传奇东莞,http://em.21dtv.com/songs/60105951.mkv +叶德娴-从前的我,http://em.21dtv.com/songs/60092426.mkv +伊雪-从前的事,http://em.21dtv.com/songs/60013558.mkv +佚名-痴情的人,http://em.21dtv.com/songs/60095435.mkv +林姗-痴情的梦,http://em.21dtv.com/songs/60012697.mkv +王啸坤-残缺的歌,http://em.21dtv.com/songs/60012006.mkv +兰馨-擦去的爱,http://em.21dtv.com/songs/60084949.mkv +叶复台-痴情的爱,http://em.21dtv.com/songs/60012692.mkv +韩宝仪-痴情的爱,http://em.21dtv.com/songs/60012691.mkv +刘清沨-刺青刺情,http://em.21dtv.com/songs/60110886.mkv +陈一郎-痴情痴情,http://em.21dtv.com/songs/60095971.mkv +孙悦-痴情痴迷,http://em.21dtv.com/songs/60012689.mkv +佚名-痴情痴梦,http://em.21dtv.com/songs/60012688.mkv +吕薇-春去春来,http://em.21dtv.com/songs/60087548.mkv +轮回乐队-春去春来,http://em.21dtv.com/songs/60013300.mkv +李克勤-此情此境(无原唱),http://em.21dtv.com/songs/60092794.mkv +佚名-此情此景,http://em.21dtv.com/songs/60013446.mkv +黄磊-此情此景,http://em.21dtv.com/songs/60013445.mkv +于台烟-痴情痴爱,http://em.21dtv.com/songs/60012687.mkv +吴奇隆-冲破万变,http://em.21dtv.com/songs/60092452.mkv +周杰伦-超跑女神,http://em.21dtv.com/songs/60064053.mkv +陈慧珊-colour of the wind(演唱会),http://em.21dtv.com/songs/60000975.mkv +佚名-colors of the wind,http://em.21dtv.com/songs/60000974.mkv +佚名-carry on till tomorrow,http://em.21dtv.com/songs/60000863.mkv +KATIE MALUA-call of the search,http://em.21dtv.com/songs/60000780.mkv +陈奕迅-corner of the earth(演唱会),http://em.21dtv.com/songs/60001039.mkv +KENNY ROGERS-coward of the county,http://em.21dtv.com/songs/60001053.mkv +Alesso+Roy English-Cool,http://em.21dtv.com/songs/60115564.mkv +Roy English+Alesso-Cool,http://em.21dtv.com/songs/60111645.mkv +CARPENTERS-calling occupants of interplan,http://em.21dtv.com/songs/60000782.mkv +佚名-centle on my mind,http://em.21dtv.com/songs/60000885.mkv +EMINEM-cleaning out my closet,http://em.21dtv.com/songs/60000949.mkv +VANESSA WILLIAMS-Colours Of The Wind,http://em.21dtv.com/songs/60099707.mkv +Maroon 5+Future-Cold,http://em.21dtv.com/songs/60132102.mkv +Lana Del Rey-Cola,http://em.21dtv.com/songs/60124932.mkv +MATT NATHANSON-come on get higher,http://em.21dtv.com/songs/60073068.mkv +MARIO-cring out for me,http://em.21dtv.com/songs/60001085.mkv +DANCE FLOW-come on come on,http://em.21dtv.com/songs/60000993.mkv +CASEY JAMES-crying on a suitcase,http://em.21dtv.com/songs/60073091.mkv +苏耀光-残念之书,http://em.21dtv.com/songs/60134169.mkv +罗志祥-潮男正传,http://em.21dtv.com/songs/60012442.mkv +易天晴-菜鸟仔兵(无原唱),http://em.21dtv.com/songs/60011982.mkv +郑伊健-从你眼中,http://em.21dtv.com/songs/60013554.mkv +舒方-除你以外,http://em.21dtv.com/songs/60128332.mkv +夏天Alex-承诺有时,http://em.21dtv.com/songs/60120426.mkv +杨乐-从那以后,http://em.21dtv.com/songs/60117826.mkv +静雯-从那以后,http://em.21dtv.com/songs/60115518.mkv +陈雨霈-菜鸟探戈,http://em.21dtv.com/songs/60011981.mkv +一东-痴男傻女,http://em.21dtv.com/songs/60094790.mkv +渡辺麻友-残念少女(演唱会),http://em.21dtv.com/songs/60074836.mkv +SUPER GIRLS-超女时代(演唱会),http://em.21dtv.com/songs/60074912.mkv +陈瑞-陈年瑞雪,http://em.21dtv.com/songs/60114218.mkv +侯明昊-超能奶爸,http://em.21dtv.com/songs/60125140.mkv +SARA-潮女密咒,http://em.21dtv.com/songs/60012443.mkv +回声乐团-处女空气,http://em.21dtv.com/songs/60013079.mkv +那英-春暖花开,http://em.21dtv.com/songs/60104473.mkv +李玲玉-春暖花开,http://em.21dtv.com/songs/60086496.mkv +那英-春暖花开(演唱会),http://em.21dtv.com/songs/60074999.mkv +谢金燕-春暖花开,http://em.21dtv.com/songs/60064075.mkv +伊能静-春暖花开,http://em.21dtv.com/songs/60061114.mkv +周艳泓-春暖花开,http://em.21dtv.com/songs/60013296.mkv +群星-春暖花开,http://em.21dtv.com/songs/60013295.mkv +黄韵玲-春暖花开,http://em.21dtv.com/songs/60013294.mkv +纪海星-吹牛大侠,http://em.21dtv.com/songs/60112880.mkv +NORA SAYS-厝内的门,http://em.21dtv.com/songs/60124961.mkv +王玲-窗内窗外(无原唱),http://em.21dtv.com/songs/60013178.mkv +吴菁-出门在外,http://em.21dtv.com/songs/60108385.mkv +雪村-出门在外,http://em.21dtv.com/songs/60012946.mkv +吕飞-出门在外,http://em.21dtv.com/songs/60012945.mkv +高枫-出门在外(演唱会),http://em.21dtv.com/songs/60012944.mkv +麦浚龙-成魔之路,http://em.21dtv.com/songs/60012564.mkv +徐罗斌-缠绵之后,http://em.21dtv.com/songs/60012264.mkv +王建芳-初梦已醒,http://em.21dtv.com/songs/60102520.mkv +王菀之-缠绵游戏,http://em.21dtv.com/songs/60092997.mkv +梁汉文+苏永康-缠绵游戏(演唱会),http://em.21dtv.com/songs/60082701.mkv +梁汉文-缠绵游戏,http://em.21dtv.com/songs/60012263.mkv +杨千嬅-缠绵游戏(演唱会),http://em.21dtv.com/songs/60012262.mkv +梁汉文-缠绵游戏(演唱会),http://em.21dtv.com/songs/60012261.mkv +BBF-沉默淹没,http://em.21dtv.com/songs/60132050.mkv +哈布日其其格-沉默眼泪,http://em.21dtv.com/songs/60135055.mkv +徐维斌-缠绵以后,http://em.21dtv.com/songs/60087887.mkv +凤凰传奇-策马扬鞭,http://em.21dtv.com/songs/60110013.mkv +韭菜姑娘-充满希望,http://em.21dtv.com/songs/60065902.mkv +迪克牛仔-出卖心碎,http://em.21dtv.com/songs/60012941.mkv +叶幼琪+蒋文端-春满香江(戏曲),http://em.21dtv.com/songs/60092411.mkv +林美-查某兄弟(无原唱),http://em.21dtv.com/songs/60095706.mkv +曹格-沉默玩具,http://em.21dtv.com/songs/60012517.mkv +张国荣-沉默是金,http://em.21dtv.com/songs/60109302.mkv +陈浩德+金兴贤-沉默是金(演唱会),http://em.21dtv.com/songs/60074927.mkv +佚名-沉默是金,http://em.21dtv.com/songs/60012516.mkv +雷有辉+雷有曜-沉默是金,http://em.21dtv.com/songs/60012515.mkv +张国荣-沉默是金(演唱会),http://em.21dtv.com/songs/60012514.mkv +杨丞琳-匆忙人生,http://em.21dtv.com/songs/60081425.mkv +阿悄-沉默如你,http://em.21dtv.com/songs/60128501.mkv +西子+戴千秋-茶马情歌,http://em.21dtv.com/songs/60112228.mkv +佚名-缠绵千遍,http://em.21dtv.com/songs/60012259.mkv +龚柯允-沉默秘密,http://em.21dtv.com/songs/60089091.mkv +戴佩妮-草莓面包,http://em.21dtv.com/songs/60084959.mkv +黄伊汶-从没离开,http://em.21dtv.com/songs/60013547.mkv +蔡凤凰-慈母泪痕,http://em.21dtv.com/songs/60013433.mkv +陈艺丹-出门见喜,http://em.21dtv.com/songs/60070596.mkv +廖鸿飞-出卖寂寞,http://em.21dtv.com/songs/60070595.mkv +曹琳-草莓红了,http://em.21dtv.com/songs/60084958.mkv +皓宇-臭美姑娘,http://em.21dtv.com/songs/60106169.mkv +熊七梅-茶马古道,http://em.21dtv.com/songs/60111255.mkv +孙维良+蝌蚪合唱团-茶马古道(演唱会),http://em.21dtv.com/songs/60066904.mkv +韩红-茶马古道,http://em.21dtv.com/songs/60012207.mkv +阿桑古卡-茶马古道,http://em.21dtv.com/songs/60012206.mkv +蔡义德+黄芭乐-吃米粉吪烧,http://em.21dtv.com/songs/60069305.mkv +尹光-柴米夫妻(演唱会),http://em.21dtv.com/songs/60074872.mkv +龚天齐-沉默的疼,http://em.21dtv.com/songs/60012510.mkv +思卫-猜谜大师,http://em.21dtv.com/songs/60135292.mkv +小北-沉默的诗,http://em.21dtv.com/songs/60126808.mkv +洪煜祺+叶雅霖-沉默祷告,http://em.21dtv.com/songs/60070586.mkv +张胜淼-痴迷的爱,http://em.21dtv.com/songs/60012680.mkv +凤凰传奇-策马奔腾,http://em.21dtv.com/songs/60061093.mkv +张萍-沉默不说,http://em.21dtv.com/songs/60111895.mkv +王杰-沉默暴风,http://em.21dtv.com/songs/60012505.mkv +蔡卓妍-聪明笨伯,http://em.21dtv.com/songs/60080435.mkv +王艺醒-春梅傲雪,http://em.21dtv.com/songs/60099414.mkv +JUSTIN TIMBERLAKE-cry me a river,http://em.21dtv.com/songs/60001098.mkv +JULIE LONDON-cry me a river,http://em.21dtv.com/songs/60001097.mkv +嘉旗-出来走走,http://em.21dtv.com/songs/60123790.mkv +樱花姐妹-初恋滋味(无原唱),http://em.21dtv.com/songs/60013025.mkv +黄勇-沧浪之歌,http://em.21dtv.com/songs/60115543.mkv +黄勇-沧浪之歌,http://em.21dtv.com/songs/60110726.mkv +汪峰-沧浪之歌,http://em.21dtv.com/songs/60109489.mkv +汪峰-沧浪之歌,http://em.21dtv.com/songs/60108671.mkv +汪峰-沧浪之歌,http://em.21dtv.com/songs/60107022.mkv +张栋梁-错了再错,http://em.21dtv.com/songs/60013687.mkv +孙协志-痴恋一生,http://em.21dtv.com/songs/60095502.mkv +胡彦斌-丛林一角(演唱会),http://em.21dtv.com/songs/60013594.mkv +张也-灿烂阳光,http://em.21dtv.com/songs/60091042.mkv +佚名-cant let you go,http://em.21dtv.com/songs/60000833.mkv +肖飞-重来一遍,http://em.21dtv.com/songs/60079669.mkv +韦唯-灿烂星空(演唱会),http://em.21dtv.com/songs/60012019.mkv +许冠杰-潮流兴夹BAND,http://em.21dtv.com/songs/60093140.mkv +SNH48-初恋小盗,http://em.21dtv.com/songs/60097302.mkv +曹轩宾+张含韵-初恋未满,http://em.21dtv.com/songs/60096333.mkv +张含韵+曹轩宾-初恋未满,http://em.21dtv.com/songs/60080842.mkv +屠洪纲-藏龙卧虎,http://em.21dtv.com/songs/60012049.mkv +何韵诗-查理淑仪,http://em.21dtv.com/songs/60012223.mkv +七郎-船螺三声,http://em.21dtv.com/songs/60013155.mkv +洪玮-错了算了(无原唱),http://em.21dtv.com/songs/60013686.mkv +南合文斗-初恋时代,http://em.21dtv.com/songs/60013024.mkv +罗维帅-初恋情缘,http://em.21dtv.com/songs/60069310.mkv +刘小慧-初恋情人,http://em.21dtv.com/songs/60013023.mkv +CLOSER-惨绿青年,http://em.21dtv.com/songs/60068153.mkv +航宇-初恋情歌,http://em.21dtv.com/songs/60114733.mkv +张津涤-初恋女孩,http://em.21dtv.com/songs/60125519.mkv +糖糖乐团+艾伦-初恋女孩,http://em.21dtv.com/songs/60105287.mkv +高明骏-丛林男孩,http://em.21dtv.com/songs/60013593.mkv +SUNBOY'Z-冲浪男孩,http://em.21dtv.com/songs/60012865.mkv +SO WHAT-冲浪男孩,http://em.21dtv.com/songs/60012864.mkv +龙雨-灿烂年华,http://em.21dtv.com/songs/60012018.mkv +孙露-赤裸离开,http://em.21dtv.com/songs/60115850.mkv +红尘独舞-赤裸离开,http://em.21dtv.com/songs/60061104.mkv +马健涛-赤裸离开,http://em.21dtv.com/songs/60012816.mkv +许先-乘龙快婿,http://em.21dtv.com/songs/60134216.mkv +零点乐队-从零开始(演唱会),http://em.21dtv.com/songs/60013544.mkv +王莹-灿烂家园,http://em.21dtv.com/songs/60012017.mkv +于文华-草绿军被,http://em.21dtv.com/songs/60012059.mkv +王思乔-沉落黄昏,http://em.21dtv.com/songs/60070585.mkv +SNH48-初恋蝴蝶,http://em.21dtv.com/songs/60117487.mkv +Gentlemen-初恋告示,http://em.21dtv.com/songs/60128679.mkv +彩贝与海-初恋故事,http://em.21dtv.com/songs/60109343.mkv +SNH48-潮流冠军,http://em.21dtv.com/songs/60125000.mkv +杨宝心-丛林法则,http://em.21dtv.com/songs/60125740.mkv +斯琴格日乐-错了对了,http://em.21dtv.com/songs/60013684.mkv +HAYA乐团-苍狼大地,http://em.21dtv.com/songs/60117460.mkv +腾格尔-苍狼大地,http://em.21dtv.com/songs/60012022.mkv +腾格尔-苍狼大地(演唱会),http://em.21dtv.com/songs/60012021.mkv +红蔷薇-迟来的爱,http://em.21dtv.com/songs/60103515.mkv +阴霾娃娃-赤裸的爱,http://em.21dtv.com/songs/60100536.mkv +王瑞霞-初恋的爱,http://em.21dtv.com/songs/60013006.mkv +卓依婷-迟来的爱,http://em.21dtv.com/songs/60012788.mkv +庄学忠-迟来的爱,http://em.21dtv.com/songs/60012787.mkv +佚名-迟来的爱,http://em.21dtv.com/songs/60012786.mkv +李茂山-迟来的爱,http://em.21dtv.com/songs/60012785.mkv +罗时丰-迟来的爱(演唱会),http://em.21dtv.com/songs/60012784.mkv +李茂山+林淑容-迟来的爱(演唱会),http://em.21dtv.com/songs/60012783.mkv +金波-常来常往,http://em.21dtv.com/songs/60111462.mkv +[Group] +groupName=十六万歌曲MV等 - 40 +金磊鑫-常来常往,http://em.21dtv.com/songs/60080593.mkv +金波-常来常往(演唱会),http://em.21dtv.com/songs/60066907.mkv +王莹-春来茶楼,http://em.21dtv.com/songs/60130601.mkv +刘一祯-采莲船调(演唱会),http://em.21dtv.com/songs/60074826.mkv +张学友+黎瑞恩-长流不息,http://em.21dtv.com/songs/60057594.mkv +张学友+黎瑞恩-长流不息(演唱会),http://em.21dtv.com/songs/60057593.mkv +梦飞船-除了爱情,http://em.21dtv.com/songs/60090023.mkv +王洪迪+王江-创客之歌,http://em.21dtv.com/songs/60128233.mkv +安心亚-残酷游戏,http://em.21dtv.com/songs/60074835.mkv +BEYOND-冲开一切,http://em.21dtv.com/songs/60012859.mkv +王源-残酷月光,http://em.21dtv.com/songs/60110405.mkv +萱萱-残酷月光,http://em.21dtv.com/songs/60081463.mkv +林宥嘉-残酷月光(演唱会),http://em.21dtv.com/songs/60011997.mkv +何龙雨-吃亏是福,http://em.21dtv.com/songs/60114391.mkv +佚名-错看了你,http://em.21dtv.com/songs/60013682.mkv +高胜美-错看了你,http://em.21dtv.com/songs/60013681.mkv +邓紫棋-查克靠近,http://em.21dtv.com/songs/60116282.mkv +陈奕迅-冲口而出,http://em.21dtv.com/songs/60012863.mkv +叶倩文+陈奕迅-冲口而出(演唱会),http://em.21dtv.com/songs/60012862.mkv +王祖蓝-冲口而出(演唱会),http://em.21dtv.com/songs/60012861.mkv +陈奕迅-冲口而出(HD演唱会),http://em.21dtv.com/songs/60012860.mkv +张蓉蓉+庄振凯-诚恳斗阵,http://em.21dtv.com/songs/60123956.mkv +李爱绮+马念先-诚恳逗阵,http://em.21dtv.com/songs/60074937.mkv +熊照华-残酷的你,http://em.21dtv.com/songs/60120737.mkv +张祥洪-此刻的你,http://em.21dtv.com/songs/60082753.mkv +张寒-残酷的美,http://em.21dtv.com/songs/60011991.mkv +蔡小虎+林姍-吃亏的爱,http://em.21dtv.com/songs/60095892.mkv +花儿(林佳音)-触控爱情,http://em.21dtv.com/songs/60117151.mkv +林佳音-触控爱情,http://em.21dtv.com/songs/60116955.mkv +张学友+陈洁仪-醇酒醉影,http://em.21dtv.com/songs/60013418.mkv +王宏伟-长江之头,http://em.21dtv.com/songs/60129388.mkv +曹娟-长江之头,http://em.21dtv.com/songs/60129188.mkv +朱铭捷-曾经最美,http://em.21dtv.com/songs/60130397.mkv +2R-赤角之恋,http://em.21dtv.com/songs/60086493.mkv +佚名-吵架之后,http://em.21dtv.com/songs/60012454.mkv +力量之声组合-长江之歌,http://em.21dtv.com/songs/60131221.mkv +接厚芳-长江之歌,http://em.21dtv.com/songs/60086485.mkv +李潮-长江之歌,http://em.21dtv.com/songs/60070578.mkv +殷秀梅-长江之歌,http://em.21dtv.com/songs/60057587.mkv +佚名-长江之歌,http://em.21dtv.com/songs/60057586.mkv +程志-长江之歌(演唱会),http://em.21dtv.com/songs/60057585.mkv +谢雷+谢小琪-曾经拥有,http://em.21dtv.com/songs/60135756.mkv +王爱华+安俊旭-春江月夜,http://em.21dtv.com/songs/60082747.mkv +王爱华-春江月夜,http://em.21dtv.com/songs/60070604.mkv +枫舞-春江月夜,http://em.21dtv.com/songs/60070603.mkv +刘钰华+林汉扬-曾经拥有,http://em.21dtv.com/songs/60012180.mkv +金子嫣+麦德罗-曾经拥有,http://em.21dtv.com/songs/60012179.mkv +蔡小虎-曾经拥有,http://em.21dtv.com/songs/60012178.mkv +跑男兄弟团-超级英雄,http://em.21dtv.com/songs/60118944.mkv +邓超-超级英雄,http://em.21dtv.com/songs/60112999.mkv +邓超-超级英雄,http://em.21dtv.com/songs/60106319.mkv +MG魔幻力量-超级英雄,http://em.21dtv.com/songs/60084976.mkv +阿才+龚洁影-除旧迎新,http://em.21dtv.com/songs/60074968.mkv +范婧-曾经以为,http://em.21dtv.com/songs/60103536.mkv +蔡昱佑-超级右脑,http://em.21dtv.com/songs/60074911.mkv +SUPER GIRLS-从今以后,http://em.21dtv.com/songs/60134803.mkv +马常宝-从今以后,http://em.21dtv.com/songs/60084998.mkv +佚名-从今以后,http://em.21dtv.com/songs/60013524.mkv +阳一-从今以后,http://em.21dtv.com/songs/60013523.mkv +信乐团-从今以后,http://em.21dtv.com/songs/60013522.mkv +黄红英-从今以后,http://em.21dtv.com/songs/60013521.mkv +陈百强-从今以后,http://em.21dtv.com/songs/60013520.mkv +谢雷-从今以后(无原唱),http://em.21dtv.com/songs/60013519.mkv +熊汝霖-长街宴歌,http://em.21dtv.com/songs/60068168.mkv +张柏芝-尺距一寸,http://em.21dtv.com/songs/60012794.mkv +蔡健雅-晨间新闻,http://em.21dtv.com/songs/60012527.mkv +王力可-曾经心痛,http://em.21dtv.com/songs/60090081.mkv +叶倩文-曾经心痛,http://em.21dtv.com/songs/60012177.mkv +卓依婷-曾经心疼,http://em.21dtv.com/songs/60012176.mkv +于文华+尹相杰-春节序曲,http://em.21dtv.com/songs/60013286.mkv +卓文萱-超级喜欢,http://em.21dtv.com/songs/60012388.mkv +卓文萱-超级喜欢(演唱会),http://em.21dtv.com/songs/60012384.mkv +洪学文-朝集星光,http://em.21dtv.com/songs/60127169.mkv +金泽-曾经相爱,http://em.21dtv.com/songs/60012174.mkv +宿雨涵-超级娃娃,http://em.21dtv.com/songs/60082711.mkv +郑进一-曾经为你(无原唱),http://em.21dtv.com/songs/60012173.mkv +王啸坤+范伟+赵英俊-超级舞林,http://em.21dtv.com/songs/60133981.mkv +IU-曾经蔚蓝,http://em.21dtv.com/songs/60115598.mkv +钟舒漫-朝九晚八,http://em.21dtv.com/songs/60074916.mkv +张崇德-从今天起,http://em.21dtv.com/songs/60092602.mkv +谈欣-超级土豪,http://em.21dtv.com/songs/60097439.mkv +蓝梦-曾经誓言,http://em.21dtv.com/songs/60119949.mkv +高利虹-曾经是我,http://em.21dtv.com/songs/60121154.mkv +高利虹-曾经是我,http://em.21dtv.com/songs/60071504.mkv +罗大佑-超级市民,http://em.21dtv.com/songs/60107111.mkv +佚名-超级市民,http://em.21dtv.com/songs/60012383.mkv +张碧晨-曾经守候,http://em.21dtv.com/songs/60133682.mkv +张碧晨-曾经守候,http://em.21dtv.com/songs/60131418.mkv +张碧晨-曾经守候,http://em.21dtv.com/songs/60130330.mkv +朱跃明-成吉思汗,http://em.21dtv.com/songs/60129218.mkv +蒙克-成吉思汗,http://em.21dtv.com/songs/60097229.mkv +孟文豪-成吉思汗,http://em.21dtv.com/songs/60074932.mkv +男人唐潮-成吉思汗,http://em.21dtv.com/songs/60071837.mkv +腾格尔-成吉思汗,http://em.21dtv.com/songs/60012560.mkv +黄立行-成吉思汗,http://em.21dtv.com/songs/60012559.mkv +侯强-成吉思汗,http://em.21dtv.com/songs/60012558.mkv +林子祥-成吉思汗(演唱会),http://em.21dtv.com/songs/60012557.mkv +李松-曾经说过,http://em.21dtv.com/songs/60118681.mkv +卜学亮-超级任务,http://em.21dtv.com/songs/60012382.mkv +张靓颖-出境入境,http://em.21dtv.com/songs/60012928.mkv +欧阳菲菲-出境入境,http://em.21dtv.com/songs/60012927.mkv +程志-闯进羌塘,http://em.21dtv.com/songs/60088372.mkv +邝祖德-唱尽情歌,http://em.21dtv.com/songs/60012335.mkv +八三夭-超级偶像,http://em.21dtv.com/songs/60123641.mkv +吴海文-超级偶像,http://em.21dtv.com/songs/60012381.mkv +谢晓艳-超级女神,http://em.21dtv.com/songs/60131816.mkv +王子皓-超级男神,http://em.21dtv.com/songs/60106106.mkv +邵雨涵-超级女声,http://em.21dtv.com/songs/60012380.mkv +张玮琪-超级奶爸,http://em.21dtv.com/songs/60080848.mkv +田馥甄-超级玛丽,http://em.21dtv.com/songs/60012378.mkv +孙维良-成家立业,http://em.21dtv.com/songs/60110144.mkv +居子涵-曾经流年,http://em.21dtv.com/songs/60122688.mkv +罗嘉豪+AJ+祖丝-超级联盟,http://em.21dtv.com/songs/60134074.mkv +赵姝-超级萝莉,http://em.21dtv.com/songs/60101180.mkv +王杰-从今开始,http://em.21dtv.com/songs/60013516.mkv +黎明-从今开始,http://em.21dtv.com/songs/60013515.mkv +陈赫-超级快递,http://em.21dtv.com/songs/60129759.mkv +严爵-超级巨星,http://em.21dtv.com/songs/60094798.mkv +YOUNG PEACH-超级巨星,http://em.21dtv.com/songs/60084975.mkv +冰雪姐妹-藏家吉祥,http://em.21dtv.com/songs/60070565.mkv +甘国卫+胡美仪-除旧接新,http://em.21dtv.com/songs/60013050.mkv +马浚伟-曾经几许,http://em.21dtv.com/songs/60012168.mkv +程志-闯进姜塘,http://em.21dtv.com/songs/60013200.mkv +张也-春江花月(演唱会),http://em.21dtv.com/songs/60013284.mkv +齐秦-曾几何时(演唱会),http://em.21dtv.com/songs/60012144.mkv +荆涛-春节回家,http://em.21dtv.com/songs/60118012.mkv +夏韶声-长街故事,http://em.21dtv.com/songs/60057589.mkv +罗布仁青-藏家姑娘,http://em.21dtv.com/songs/60128305.mkv +鹿晗-超级冠军,http://em.21dtv.com/songs/60117402.mkv +鹿晗-超级冠军,http://em.21dtv.com/songs/60116406.mkv +灭火器乐团-曾经疯狂,http://em.21dtv.com/songs/60129366.mkv +媚儿菲菲+后来者-擦肩而过,http://em.21dtv.com/songs/60119410.mkv +韩红-擦肩而过,http://em.21dtv.com/songs/60074818.mkv +郑源-擦肩而过,http://em.21dtv.com/songs/60011855.mkv +宇桐非-擦肩而过,http://em.21dtv.com/songs/60011854.mkv +宇桐非+胡雯-擦肩而过,http://em.21dtv.com/songs/60011853.mkv +苏有朋-擦肩而过,http://em.21dtv.com/songs/60011852.mkv +张继聪-超级队长,http://em.21dtv.com/songs/60074910.mkv +萧敬腾-纯金打造(演唱会),http://em.21dtv.com/songs/60071843.mkv +超人-赤脚大仙,http://em.21dtv.com/songs/60107252.mkv +MC天佑-曾经的王,http://em.21dtv.com/songs/60114954.mkv +金美儿-曾经的我(演唱会),http://em.21dtv.com/songs/60067781.mkv +赵传-曾经的你,http://em.21dtv.com/songs/60120975.mkv +别日克+许哲-曾经的你,http://em.21dtv.com/songs/60113307.mkv +许明明-曾经的你,http://em.21dtv.com/songs/60095088.mkv +刘明辉-曾经的你,http://em.21dtv.com/songs/60081096.mkv +许巍-曾经的你,http://em.21dtv.com/songs/60012167.mkv +王晓敏-曾经的美,http://em.21dtv.com/songs/60112107.mkv +孙英男-采菊东篱,http://em.21dtv.com/songs/60123828.mkv +李菓-曾经的爱,http://em.21dtv.com/songs/60130437.mkv +正月十五-曾经的爱,http://em.21dtv.com/songs/60097450.mkv +苏富权-曾经的爱,http://em.21dtv.com/songs/60079507.mkv +白龙-曾经的爱,http://em.21dtv.com/songs/60012164.mkv +朱铭捷-曾经最美,http://em.21dtv.com/songs/60012186.mkv +金梅-曾经最美,http://em.21dtv.com/songs/60012185.mkv +金智娟-曾经沧海,http://em.21dtv.com/songs/60012162.mkv +吴雁泽-川江船歌,http://em.21dtv.com/songs/60013094.mkv +MISSTER-超级爱人,http://em.21dtv.com/songs/60012377.mkv +少峰-曾经爱情,http://em.21dtv.com/songs/60130272.mkv +张信哲-曾经爱过,http://em.21dtv.com/songs/60012155.mkv +伊雪-曾经爱过,http://em.21dtv.com/songs/60012154.mkv +李明翰-曾经爱过,http://em.21dtv.com/songs/60012153.mkv +邝美云-曾经爱过,http://em.21dtv.com/songs/60012152.mkv +李茂山-曾经爱过(演唱会),http://em.21dtv.com/songs/60012151.mkv +ELTON JOHN-candle in the wind,http://em.21dtv.com/songs/60000805.mkv +李乐诗-candle in the wind(演唱会),http://em.21dtv.com/songs/60000804.mkv +THE EVERLY BROTHERS-crying in the rain,http://em.21dtv.com/songs/60001106.mkv +CAROLE KING-crying in the rain,http://em.21dtv.com/songs/60001105.mkv +陈奕迅-crying in the party,http://em.21dtv.com/songs/60001104.mkv +陈奕迅-crying in the party(演唱会),http://em.21dtv.com/songs/60001103.mkv +A1-caught in the middle,http://em.21dtv.com/songs/60000874.mkv +HOOBASTANK-crawling in the dark,http://em.21dtv.com/songs/60063564.mkv +佚名-crying in the chapel,http://em.21dtv.com/songs/60001102.mkv +佚名-could it be magic,http://em.21dtv.com/songs/60001047.mkv +BARRY MANILOW-could it be magic,http://em.21dtv.com/songs/60001046.mkv +林俊杰-cries in a distance,http://em.21dtv.com/songs/60001083.mkv +达娃卓玛-彩虹之路,http://em.21dtv.com/songs/60128442.mkv +乐团双鱼座-彩虹之路,http://em.21dtv.com/songs/60105550.mkv +叶顺有+卜庆振-潮河之恋,http://em.21dtv.com/songs/60074919.mkv +陶光才-潮河之恋,http://em.21dtv.com/songs/60069300.mkv +吴佩珊-彩虹之恋,http://em.21dtv.com/songs/60011947.mkv +五姐妹乐队-彩虹之光,http://em.21dtv.com/songs/60121354.mkv +刘浩龙+谢安琪-沧海遗珠,http://em.21dtv.com/songs/60012039.mkv +谢安琪+刘浩龙-沧海遗珠(演唱会),http://em.21dtv.com/songs/60012038.mkv +刘浩龙-沧海遗珠(演唱会),http://em.21dtv.com/songs/60012037.mkv +山风点伙-出乎意料,http://em.21dtv.com/songs/60087732.mkv +高以爱+潘玮柏-出乎意料,http://em.21dtv.com/songs/60012920.mkv +SWEETY-彩虹眼泪,http://em.21dtv.com/songs/60011945.mkv +谢笙东野-彩虹心约,http://em.21dtv.com/songs/60105373.mkv +郑晟+胡瑶+华少翌-超乎想象,http://em.21dtv.com/songs/60074909.mkv +羽泉-超乎想像,http://em.21dtv.com/songs/60012376.mkv +西子-朝花夕拾,http://em.21dtv.com/songs/60074915.mkv +张德兰-朝花夕拾,http://em.21dtv.com/songs/60065895.mkv +徐浩+朱元冰-彩虹物语,http://em.21dtv.com/songs/60111915.mkv +秀兰玛雅-春花望露,http://em.21dtv.com/songs/60013282.mkv +CHRISTINA AGUILERA-cant hold us down,http://em.21dtv.com/songs/60000832.mkv +刘畊宏-彩虹天堂,http://em.21dtv.com/songs/60011943.mkv +孙悦-沧海桑田,http://em.21dtv.com/songs/60090901.mkv +于希平-从何说起(无原唱),http://em.21dtv.com/songs/60013512.mkv +RTA少年组-彩虹少年,http://em.21dtv.com/songs/60084950.mkv +任贤齐-彩虹沙漠,http://em.21dtv.com/songs/60101893.mkv +BEYOND-赤红热血,http://em.21dtv.com/songs/60092147.mkv +黄贯中-赤红热血(演唱会),http://em.21dtv.com/songs/60012810.mkv +方瑞娥-春花秋月,http://em.21dtv.com/songs/60124011.mkv +王莹-春花秋月,http://em.21dtv.com/songs/60113883.mkv +王莹-春花秋月,http://em.21dtv.com/songs/60112118.mkv +柳影虹-春花秋月(演唱会),http://em.21dtv.com/songs/60062692.mkv +谢佳佳-春花秋月,http://em.21dtv.com/songs/60013280.mkv +黄乙玲-春花秋月,http://em.21dtv.com/songs/60013279.mkv +黄乙玲+郑君威+许窝HQY-春花秋月,http://em.21dtv.com/songs/60013278.mkv +伍佰-春花秋月(演唱会),http://em.21dtv.com/songs/60013276.mkv +陈浩德-春花秋月(演唱会),http://em.21dtv.com/songs/60013275.mkv +林吉玲-彩虹汽水(无原唱),http://em.21dtv.com/songs/60011941.mkv +曹方-春花秋开,http://em.21dtv.com/songs/60087950.mkv +李福山+杨迎-春花齐放,http://em.21dtv.com/songs/60013274.mkv +李畅俊-慈航普渡,http://em.21dtv.com/songs/60129241.mkv +蔡幸娟-春花梦露,http://em.21dtv.com/songs/60013273.mkv +吴淑敏-春花露水,http://em.21dtv.com/songs/60013272.mkv +丁薇-茶和咖啡(演唱会),http://em.21dtv.com/songs/60012203.mkv +孙燕姿-彩虹金刚,http://em.21dtv.com/songs/60127902.mkv +白智英+黄真伊-唱慧荤恩,http://em.21dtv.com/songs/60012333.mkv +卫兰-穿花蝴蝶,http://em.21dtv.com/songs/60119330.mkv +容祖儿-穿花蝴蝶,http://em.21dtv.com/songs/60013102.mkv +容祖儿-穿花蝴蝶(演唱会),http://em.21dtv.com/songs/60013101.mkv +艾尔肯-茶花姑娘(演唱会),http://em.21dtv.com/songs/60012204.mkv +杨千嬅-长恨哥哥,http://em.21dtv.com/songs/60057575.mkv +巴桑+泽旺多吉-彩虹儿女(演唱会),http://em.21dtv.com/songs/60082691.mkv +易欣-春花儿开,http://em.21dtv.com/songs/60097335.mkv +张春海-春海的心,http://em.21dtv.com/songs/60097336.mkv +萧亚轩-长话短说,http://em.21dtv.com/songs/60057579.mkv +陈升-彩虹的你,http://em.21dtv.com/songs/60081854.mkv +盛靖涵-彩虹的梦,http://em.21dtv.com/songs/60132771.mkv +郑锦昌-春回大地,http://em.21dtv.com/songs/60093338.mkv +林霈柔-春回大地,http://em.21dtv.com/songs/60088129.mkv +伦永亮+张敬轩-从何唱起,http://em.21dtv.com/songs/60013511.mkv +C AllStar-城惶城恐,http://em.21dtv.com/songs/60104657.mkv +佚名-春红报喜,http://em.21dtv.com/songs/60013270.mkv +TREY SONGZ-cant help but wait,http://em.21dtv.com/songs/60000827.mkv +海鸣威-彩虹背后,http://em.21dtv.com/songs/60011936.mkv +彭炽权+倪惠英-陈姑追舟(戏曲),http://em.21dtv.com/songs/60092660.mkv +达明一派-春光乍洩,http://em.21dtv.com/songs/60093233.mkv +江美琪-春光乍洩,http://em.21dtv.com/songs/60088197.mkv +四千金-春光照耀,http://em.21dtv.com/songs/60074995.mkv +范忆堂-春光乍泄,http://em.21dtv.com/songs/60135679.mkv +张国荣-春光乍泄,http://em.21dtv.com/songs/60111065.mkv +刘美君-春光乍泄,http://em.21dtv.com/songs/60069314.mkv +江美琪-春光乍泄,http://em.21dtv.com/songs/60013267.mkv +黄耀明-春光乍泄,http://em.21dtv.com/songs/60013265.mkv +言承旭-春光乍泄(演唱会),http://em.21dtv.com/songs/60013263.mkv +陈奕迅-春光乍泄(演唱会),http://em.21dtv.com/songs/60013262.mkv +汤浩平-成功之路,http://em.21dtv.com/songs/60069304.mkv +高林生-成功之路,http://em.21dtv.com/songs/60062367.mkv +林峰-赤过转机,http://em.21dtv.com/songs/60012809.mkv +腾格尔-长歌一曲,http://em.21dtv.com/songs/60074881.mkv +卓依婷-擦干眼泪,http://em.21dtv.com/songs/60011851.mkv +面具-挫骨扬灰,http://em.21dtv.com/songs/60098917.mkv +STYLISTICS-cant give you anything,http://em.21dtv.com/songs/60000826.mkv +蔡秋凤-菜瓜旋藤,http://em.21dtv.com/songs/60011980.mkv +张祥洪-错过相守,http://em.21dtv.com/songs/60013677.mkv +L.A.MARTINEE-come go with me(无原唱),http://em.21dtv.com/songs/60000989.mkv +C.E.QUICK-come go with me(无原唱),http://em.21dtv.com/songs/60000988.mkv +亚东-唱给太阳,http://em.21dtv.com/songs/60012332.mkv +林海峰+杨千桦-吃个痛快,http://em.21dtv.com/songs/60092878.mkv +许嵩-唱给谁听,http://em.21dtv.com/songs/60012331.mkv +佚名-cant get over you,http://em.21dtv.com/songs/60000822.mkv +LIONEL RICHIE-cant get over you(无原唱),http://em.21dtv.com/songs/60000821.mkv +牛会龙-唱给你听,http://em.21dtv.com/songs/60121896.mkv +老狼-穿过流水,http://em.21dtv.com/songs/60091888.mkv +余润泽-错怪了你,http://em.21dtv.com/songs/60013658.mkv +张冬晨-晨歌嘹亮,http://em.21dtv.com/songs/60116781.mkv +白里格-晨光金阳,http://em.21dtv.com/songs/60127235.mkv +MIS+TEEP-cant get it back,http://em.21dtv.com/songs/60000820.mkv +金岩-船工号子,http://em.21dtv.com/songs/60104512.mkv +佚名-船工号子,http://em.21dtv.com/songs/60013151.mkv +李双江-船工号子,http://em.21dtv.com/songs/60013150.mkv +顾芮宁-撑过黑暗,http://em.21dtv.com/songs/60123367.mkv +龙奔-错过的缘,http://em.21dtv.com/songs/60075019.mkv +张雷-炒股的人,http://em.21dtv.com/songs/60113500.mkv +陈飞彤-错过的人,http://em.21dtv.com/songs/60013671.mkv +罗时丰-唱歌的人(无原唱),http://em.21dtv.com/songs/60012320.mkv +宋熙铭-唱给爱情,http://em.21dtv.com/songs/60074896.mkv +李池湘-柴房自叹(戏曲),http://em.21dtv.com/songs/60092808.mkv +吴浩康-惩罚自己,http://em.21dtv.com/songs/60012653.mkv +河图-春风一顾,http://em.21dtv.com/songs/60104277.mkv +黎明-冲锋陷阵,http://em.21dtv.com/songs/60012858.mkv +王又萱-采枫仙境,http://em.21dtv.com/songs/60131648.mkv +清响-长风万里,http://em.21dtv.com/songs/60102487.mkv +黎安莱姆丝-cant fight the moonlight(无原唱),http://em.21dtv.com/songs/60000814.mkv +EVAN+JARON-crazy for this girl,http://em.21dtv.com/songs/60001059.mkv +REO SPEEDWAGON-cant fight this feeling,http://em.21dtv.com/songs/60000816.mkv +K.CRONIN-cant fight this feeling(无原唱),http://em.21dtv.com/songs/60000815.mkv +丰崎爱生-春风shun pu,http://em.21dtv.com/songs/60074991.mkv +刘德华-除非是你,http://em.21dtv.com/songs/60013048.mkv +刘德华-除非是你(演唱会),http://em.21dtv.com/songs/60013047.mkv +鹿先森乐队-春风十里,http://em.21dtv.com/songs/60122298.mkv +林慧萍-春风若来(演唱会),http://em.21dtv.com/songs/60013242.mkv +崔京浩-赐福千载,http://em.21dtv.com/songs/60013472.mkv +佚名-春风秋雨,http://em.21dtv.com/songs/60013241.mkv +张学友-春风秋雨(演唱会),http://em.21dtv.com/songs/60013240.mkv +桑兰-长发飘香,http://em.21dtv.com/songs/60065891.mkv +夏天Alex-乘风破浪,http://em.21dtv.com/songs/60133523.mkv +林志炫-乘风破浪,http://em.21dtv.com/songs/60091460.mkv +杨诗蒂-乘风破浪,http://em.21dtv.com/songs/60012641.mkv +麦洁文+张德兰-乘风破浪(演唱会),http://em.21dtv.com/songs/60012640.mkv +徐海星-沉浮年少,http://em.21dtv.com/songs/60113524.mkv +杨钰莹-春风流水,http://em.21dtv.com/songs/60013238.mkv +黄乙玲-春风恋情,http://em.21dtv.com/songs/60070081.mkv +佚名-春风恋情,http://em.21dtv.com/songs/60013237.mkv +陈豪+吴卓羲-春风化雨,http://em.21dtv.com/songs/60061112.mkv +曾晓薇-春风歌声,http://em.21dtv.com/songs/60095598.mkv +佚名-春风歌声,http://em.21dtv.com/songs/60013235.mkv +曾淑勤-春风歌声,http://em.21dtv.com/songs/60013234.mkv +潘安邦-乘风归去,http://em.21dtv.com/songs/60089408.mkv +廖芊芊-乘风而来,http://em.21dtv.com/songs/60117711.mkv +屠洪纲-乘风而来(演唱会),http://em.21dtv.com/songs/60012639.mkv +儿歌-茶坊斗智,http://em.21dtv.com/songs/60090646.mkv +佚名-茶坊斗智,http://em.21dtv.com/songs/60012202.mkv +李丽霞+妈咪-春风得意(演唱会),http://em.21dtv.com/songs/60068191.mkv +佚名-春风得意,http://em.21dtv.com/songs/60013232.mkv +梁玉嵘+粤剧-彩凤丹青(戏曲),http://em.21dtv.com/songs/60092909.mkv +谢常清-尘封的街,http://em.21dtv.com/songs/60074922.mkv +常思思-春风的话,http://em.21dtv.com/songs/60099992.mkv +黄汐源+南方-长发短发,http://em.21dtv.com/songs/60112408.mkv +费玉清-春风春雨,http://em.21dtv.com/songs/60090223.mkv +傅秋英-春风传情,http://em.21dtv.com/songs/60013230.mkv +马浚伟+黎姿-春风报喜,http://em.21dtv.com/songs/60013228.mkv +雷佳-春风不忘,http://em.21dtv.com/songs/60013229.mkv +艳阳天-船儿悠悠,http://em.21dtv.com/songs/60013143.mkv +孟扬-嫦娥舞动,http://em.21dtv.com/songs/60012296.mkv +CHRISTINA AGUILERA-contigo en la distancia,http://em.21dtv.com/songs/60001027.mkv +TIESTO AND DIPLO-catch em by surprise,http://em.21dtv.com/songs/60073037.mkv +张羽伟-残而不废,http://em.21dtv.com/songs/60011987.mkv +千百惠-窗的追忆,http://em.21dtv.com/songs/60013176.mkv +林峰-赤地转机(演唱会),http://em.21dtv.com/songs/60012808.mkv +蓝雨-成都之歌,http://em.21dtv.com/songs/60093630.mkv +宋祖英-春的祝福,http://em.21dtv.com/songs/60087689.mkv +费益丰-长大以后,http://em.21dtv.com/songs/60116251.mkv +张学友-赤的疑惑,http://em.21dtv.com/songs/60097261.mkv +莫旭秋-赤的疑惑(演唱会),http://em.21dtv.com/songs/60074958.mkv +罗敏庄-赤的疑惑(演唱会),http://em.21dtv.com/songs/60074957.mkv +邓瑞霞-赤的疑惑(演唱会),http://em.21dtv.com/songs/60074956.mkv +梅艳芳-赤的疑惑,http://em.21dtv.com/songs/60012806.mkv +吕珊-赤的疑惑(演唱会),http://em.21dtv.com/songs/60012805.mkv +杨卿俪-春的消息,http://em.21dtv.com/songs/60108595.mkv +儿歌-唱得响亮,http://em.21dtv.com/songs/60083918.mkv +群星-唱得响亮,http://em.21dtv.com/songs/60012316.mkv +李宇春-唱得响亮,http://em.21dtv.com/songs/60012315.mkv +超级女声-唱得响亮,http://em.21dtv.com/songs/60012314.mkv +安又琪-唱得响亮,http://em.21dtv.com/songs/60012313.mkv +靳海涛-彻底忘记,http://em.21dtv.com/songs/60099603.mkv +谭圳-传递书香,http://em.21dtv.com/songs/60074980.mkv +南迪-彻底死心,http://em.21dtv.com/songs/60062778.mkv +常红刚-错的是我,http://em.21dtv.com/songs/60109289.mkv +莫艳琳-错的是我,http://em.21dtv.com/songs/60108864.mkv +GALA-出道四年,http://em.21dtv.com/songs/60061106.mkv +丢火车乐队-茶底世界,http://em.21dtv.com/songs/60095254.mkv +张宇轩-coco的时代,http://em.21dtv.com/songs/60073060.mkv +苏打绿-迟到千年,http://em.21dtv.com/songs/60088531.mkv +许志安+胡杏儿-丑得漂亮,http://em.21dtv.com/songs/60012902.mkv +BOY'Z-冲动男孩,http://em.21dtv.com/songs/60012857.mkv +枫舞+相容-春的梦想,http://em.21dtv.com/songs/60110311.mkv +郭海波-茶的故乡,http://em.21dtv.com/songs/60090269.mkv +胡东清-春的港湾,http://em.21dtv.com/songs/60108819.mkv +关心妍-惨的过我,http://em.21dtv.com/songs/60092308.mkv +夜郎金鑫-唇的故事,http://em.21dtv.com/songs/60107624.mkv +野仔-chok的故事,http://em.21dtv.com/songs/60063264.mkv +王文博-成都姑娘,http://em.21dtv.com/songs/60080288.mkv +群星-春到福来,http://em.21dtv.com/songs/60119885.mkv +轩艺桐-春到福到,http://em.21dtv.com/songs/60013221.mkv +佚名-赤道的风(无原唱),http://em.21dtv.com/songs/60012803.mkv +潘协庆-彻底的错,http://em.21dtv.com/songs/60089407.mkv +郑秀文-冲动点唱,http://em.21dtv.com/songs/60012856.mkv +郑秀文-冲动点唱(演唱会),http://em.21dtv.com/songs/60012855.mkv +王菲+黄怡-迟到的爱,http://em.21dtv.com/songs/60113886.mkv +梅艳芳-赤的冲击,http://em.21dtv.com/songs/60092943.mkv +LUNAFLY-clear day cloudy day,http://em.21dtv.com/songs/60073050.mkv +范逸臣-除此之外,http://em.21dtv.com/songs/60013042.mkv +莫少聪-匆匆走过,http://em.21dtv.com/songs/60129552.mkv +潘田果-长城赞歌,http://em.21dtv.com/songs/60129360.mkv +卓依婷-串串珠儿,http://em.21dtv.com/songs/60013169.mkv +卫东-茶禅一味,http://em.21dtv.com/songs/60133442.mkv +柴俊-从此以后,http://em.21dtv.com/songs/60131562.mkv +刘宗-从此以后,http://em.21dtv.com/songs/60131203.mkv +吴亦凡-从此以后,http://em.21dtv.com/songs/60125284.mkv +格格+三强-从此以后,http://em.21dtv.com/songs/60100237.mkv +周传雄-匆匆远行,http://em.21dtv.com/songs/60090825.mkv +杨浩-从此以后,http://em.21dtv.com/songs/60082758.mkv +酒吧伤心人-从此以后,http://em.21dtv.com/songs/60061117.mkv +彭佳慧-从此以后,http://em.21dtv.com/songs/60013508.mkv +SUNBOY'Z-初次约会,http://em.21dtv.com/songs/60012989.mkv +王力宏-蠢蠢欲动,http://em.21dtv.com/songs/60013419.mkv +蔡依林-唇唇欲动,http://em.21dtv.com/songs/60013414.mkv +LABOUM-超出想象,http://em.21dtv.com/songs/60120221.mkv +余天-层层相思,http://em.21dtv.com/songs/60012142.mkv +群星-璀璨星光,http://em.21dtv.com/songs/60013603.mkv +李玲玉-采茶舞曲,http://em.21dtv.com/songs/60117820.mkv +陶慧敏-采茶舞曲,http://em.21dtv.com/songs/60011909.mkv +黎明-纯粹误会(演唱会),http://em.21dtv.com/songs/60013386.mkv +四大天王+POSTMEN-cha cha舞池,http://em.21dtv.com/songs/60000892.mkv +FLO RIDA-club cant handle me,http://em.21dtv.com/songs/60060754.mkv +张燕-采茶少女,http://em.21dtv.com/songs/60091145.mkv +谭咏麟+李克勤-冲出世界,http://em.21dtv.com/songs/60093200.mkv +汪明荃-采茶山歌(演唱会),http://em.21dtv.com/songs/60011920.mkv +汪明荃-采茶山歌,http://em.21dtv.com/songs/60011908.mkv +张德兰+区瑞强-采茶山歌(演唱会),http://em.21dtv.com/songs/60011907.mkv +赵咏华-璀灿如星,http://em.21dtv.com/songs/60085001.mkv +赵咏华-璀璨如星,http://em.21dtv.com/songs/60080050.mkv +可岚-匆匆人生,http://em.21dtv.com/songs/60123723.mkv +周国贤-赤城千叶,http://em.21dtv.com/songs/60012802.mkv +佚名-采茶情歌,http://em.21dtv.com/songs/60011906.mkv +韩磊-长城内外,http://em.21dtv.com/songs/60116372.mkv +古巨基-匆匆那年,http://em.21dtv.com/songs/60108364.mkv +王菲-匆匆那年,http://em.21dtv.com/songs/60106141.mkv +李娅莎-插翅难飞,http://em.21dtv.com/songs/60074868.mkv +含瑞-插翅难飞,http://em.21dtv.com/songs/60061094.mkv +彤杰+戴月-唱出梦想,http://em.21dtv.com/songs/60113506.mkv +梅艳芳-朝朝暮暮,http://em.21dtv.com/songs/60012423.mkv +零点乐队-冲出霾伏,http://em.21dtv.com/songs/60105504.mkv +周慧敏-处处留情,http://em.21dtv.com/songs/60013075.mkv +余润泽+徐铵-村长开会,http://em.21dtv.com/songs/60106603.mkv +雷佳-长城脚下,http://em.21dtv.com/songs/60057562.mkv +张宇-长长久久,http://em.21dtv.com/songs/60057624.mkv +佚名-痴痴眷眷,http://em.21dtv.com/songs/60012674.mkv +余天-串串回忆,http://em.21dtv.com/songs/60013167.mkv +西子-磁场感应,http://em.21dtv.com/songs/60068196.mkv +岩罕建-采茶姑娘,http://em.21dtv.com/songs/60124834.mkv +李萧寒-赤诚的心,http://em.21dtv.com/songs/60074955.mkv +吴琼-春蚕到死,http://em.21dtv.com/songs/60099147.mkv +徐艺祺-成长的烦,http://em.21dtv.com/songs/60105900.mkv +梁山山+陈信成-错错对对,http://em.21dtv.com/songs/60135456.mkv +田维英-痴痴的等,http://em.21dtv.com/songs/60118808.mkv +潘秀琼-痴痴地等,http://em.21dtv.com/songs/60090060.mkv +佚名-春愁点点,http://em.21dtv.com/songs/60013219.mkv +静婷-痴痴地等,http://em.21dtv.com/songs/60012673.mkv +方逸华-痴痴地等,http://em.21dtv.com/songs/60012672.mkv +佚名-痴痴的等,http://em.21dtv.com/songs/60012671.mkv +阿信-痴痴的等,http://em.21dtv.com/songs/60012670.mkv +杜德伟-痴痴的等,http://em.21dtv.com/songs/60012669.mkv +张伟文-痴痴的等(演唱会),http://em.21dtv.com/songs/60012668.mkv +佚名-痴痴的等(慢四),http://em.21dtv.com/songs/60012667.mkv +尚芸菲-纯醇的爱,http://em.21dtv.com/songs/60107691.mkv +伍卫中-痴痴的爱,http://em.21dtv.com/songs/60099742.mkv +木禾-长长的爱,http://em.21dtv.com/songs/60082704.mkv +佚名-纯纯的爱,http://em.21dtv.com/songs/60013382.mkv +费玉清-纯纯的爱,http://em.21dtv.com/songs/60013381.mkv +卢胜林-错错错轨,http://em.21dtv.com/songs/60121474.mkv +何宗龙-吵吵吵吵,http://em.21dtv.com/songs/60069301.mkv +佚名-chirpy chirpy cheep cheep,http://em.21dtv.com/songs/60000923.mkv +潘安邦-匆匆别后,http://em.21dtv.com/songs/60013482.mkv +巨姗姗-匆匆别后,http://em.21dtv.com/songs/60013481.mkv +张清芳-错不在你,http://em.21dtv.com/songs/60013643.mkv +张婷-崇拜自己,http://em.21dtv.com/songs/60012874.mkv +动力火车-翅膀之歌,http://em.21dtv.com/songs/60090756.mkv +塔斯肯-翅膀之歌,http://em.21dtv.com/songs/60081527.mkv +BLACK BOX-从不知道,http://em.21dtv.com/songs/60013503.mkv +陈柔希-冲吧勇士,http://em.21dtv.com/songs/60068179.mkv +彩贝与海-彩贝与海,http://em.21dtv.com/songs/60103293.mkv +佚名-城堡小妖,http://em.21dtv.com/songs/60012613.mkv +帅霖-慈悲为坏,http://em.21dtv.com/songs/60131379.mkv +官恩娜-慈悲为怀,http://em.21dtv.com/songs/60013429.mkv +DAUGHTRY-crawling back to you,http://em.21dtv.com/songs/60063563.mkv +毕书尽-come back to me,http://em.21dtv.com/songs/60073067.mkv +宇多田光-come back to me,http://em.21dtv.com/songs/60000985.mkv +佚名-come back to me,http://em.21dtv.com/songs/60000984.mkv +UTADA HIKARU-come back to me,http://em.21dtv.com/songs/60000983.mkv +MARK DINNING-come back to me,http://em.21dtv.com/songs/60000982.mkv +费玉清-长白山上,http://em.21dtv.com/songs/60094304.mkv +佚名-长白山上,http://em.21dtv.com/songs/60057554.mkv +傅振辉-厝边尚亲,http://em.21dtv.com/songs/60128798.mkv +傅振辉-厝边尚亲,http://em.21dtv.com/songs/60128797.mkv +曾辉彬-从不认输,http://em.21dtv.com/songs/60013496.mkv +岚戈+田恬-唱吧情缘,http://em.21dtv.com/songs/60111031.mkv +王建杰-寸步难行,http://em.21dtv.com/songs/60013624.mkv +THE BEATLES-cant buy me love,http://em.21dtv.com/songs/60000813.mkv +佚名-cant buy me love(演唱会),http://em.21dtv.com/songs/60000812.mkv +薛佩洁-吃饱困饱,http://em.21dtv.com/songs/60064057.mkv +周杰伦-床边故事,http://em.21dtv.com/songs/60123760.mkv +周杰伦-床边故事,http://em.21dtv.com/songs/60122600.mkv +张韶涵-床边故事,http://em.21dtv.com/songs/60013193.mkv +郑少秋-从不放弃,http://em.21dtv.com/songs/60013491.mkv +林忆莲-词不达意(演唱会),http://em.21dtv.com/songs/60075006.mkv +李克勤-长伴到老,http://em.21dtv.com/songs/60057555.mkv +PAUL YOUNG-come back and stay,http://em.21dtv.com/songs/60000981.mkv +邬爱婷-宠爱之名,http://em.21dtv.com/songs/60104474.mkv +PHANTOM-come as you are,http://em.21dtv.com/songs/60073066.mkv +CHINA ANNE MCCLAIN-callin all the monsters,http://em.21dtv.com/songs/60066281.mkv +西部牛仔-慈爱天地,http://em.21dtv.com/songs/60071844.mkv +黄可门-错爱情缘,http://em.21dtv.com/songs/60126470.mkv +杨语莲-错爱情深,http://em.21dtv.com/songs/60119698.mkv +朱俐静-出爱情记,http://em.21dtv.com/songs/60082733.mkv +张静-长安情歌,http://em.21dtv.com/songs/60115169.mkv +庄心妍-错爱情歌,http://em.21dtv.com/songs/60086507.mkv +MIGUEL-Candles In The Sun,http://em.21dtv.com/songs/60100738.mkv +香蝶公主-错爱了谁,http://em.21dtv.com/songs/60107359.mkv +佚名-christmas auld lang syne,http://em.21dtv.com/songs/60000934.mkv +何思谕-初爱恋歌,http://em.21dtv.com/songs/60068185.mkv +张敬轩-尘埃落定,http://em.21dtv.com/songs/60119521.mkv +张敬轩-尘埃落定,http://em.21dtv.com/songs/60097231.mkv +Flo Rida+99 Percent-Cake,http://em.21dtv.com/songs/60133199.mkv +汪峰-长安街上,http://em.21dtv.com/songs/60102468.mkv +杨千桦-出埃及记,http://em.21dtv.com/songs/60100177.mkv +SELENA-come and get it(演唱会),http://em.21dtv.com/songs/60082126.mkv +佚名-catch a falling star,http://em.21dtv.com/songs/60000868.mkv +罗志祥-从爱发落,http://em.21dtv.com/songs/60117965.mkv +吴勇滨-纯爱打造(HD),http://em.21dtv.com/songs/10012729.mkv +吴勇滨-纯爱打造,http://em.21dtv.com/songs/60101297.mkv +晨熙-错爱的人,http://em.21dtv.com/songs/60128056.mkv +郑钧-长安长安,http://em.21dtv.com/songs/60069291.mkv +林一峰-cl411(演唱会),http://em.21dtv.com/songs/60000946.mkv +林宥嘉-白昼之月,http://em.21dtv.com/songs/60131548.mkv +紫龙-不在重要,http://em.21dtv.com/songs/60011777.mkv +伍咏薇-不再在乎,http://em.21dtv.com/songs/60011767.mkv +爱朵女孩-别再长大,http://em.21dtv.com/songs/60074698.mkv +严城-不曾远走,http://em.21dtv.com/songs/60086476.mkv +Beyond-不再犹豫,http://em.21dtv.com/songs/60117435.mkv +黄家强+太极乐队-不再犹豫(演唱会),http://em.21dtv.com/songs/60011765.mkv +BEYOND-不再犹豫(演唱会),http://em.21dtv.com/songs/60011764.mkv +群星-不再犹豫(HD演唱会),http://em.21dtv.com/songs/60011763.mkv +闻君-不再拥有,http://em.21dtv.com/songs/60011762.mkv +韩磊-百战英雄,http://em.21dtv.com/songs/60009799.mkv +林文隆-彼支烟筒,http://em.21dtv.com/songs/60095669.mkv +崔健-不再掩饰,http://em.21dtv.com/songs/60082682.mkv +周晓鸥-不再掩饰,http://em.21dtv.com/songs/60074801.mkv +棠星琪-不再有你,http://em.21dtv.com/songs/60135462.mkv +张镐哲-不再遗憾,http://em.21dtv.com/songs/60011761.mkv +戊道子-播种希望(演唱会),http://em.21dtv.com/songs/60066872.mkv +蒋雪儿-别再想他,http://em.21dtv.com/songs/60119944.mkv +瞿颖-不再想他,http://em.21dtv.com/songs/60091786.mkv +胡建烽-别做小三,http://em.21dtv.com/songs/60107952.mkv +洪煜祺+刘菲菲-不止心伤,http://em.21dtv.com/songs/60074809.mkv +SHELLY佳+万轩严-不止心伤,http://em.21dtv.com/songs/60068149.mkv +陈瑞-不再想念,http://em.21dtv.com/songs/60084946.mkv +高利虹-不再想念,http://em.21dtv.com/songs/60071808.mkv +陶晶莹-不再想念,http://em.21dtv.com/songs/60011760.mkv +顺子-不再想念,http://em.21dtv.com/songs/60011759.mkv +鸿飞-不再相见,http://em.21dtv.com/songs/60122295.mkv +佚名-不再相见,http://em.21dtv.com/songs/60011757.mkv +张蓉蓉-白贼无影,http://em.21dtv.com/songs/60063955.mkv +黎明-不醉舞夜,http://em.21dtv.com/songs/60011812.mkv +郭欢-不再挽留,http://em.21dtv.com/songs/60062403.mkv +何超仪-标准太太,http://em.21dtv.com/songs/60010541.mkv +石头-不再停留,http://em.21dtv.com/songs/60120823.mkv +王友良-不再同哭,http://em.21dtv.com/songs/60011748.mkv +任贤齐-不止伤心,http://em.21dtv.com/songs/60089118.mkv +小刚-不再奢望,http://em.21dtv.com/songs/60090978.mkv +周传雄-不再奢望,http://em.21dtv.com/songs/60090821.mkv +小刚-不在伤痛,http://em.21dtv.com/songs/60090979.mkv +周传雄-不再伤痛,http://em.21dtv.com/songs/60090820.mkv +杨臣刚-保重身体,http://em.21dtv.com/songs/60089987.mkv +毛泽少-爆炸少女,http://em.21dtv.com/songs/60130518.mkv +王荣-不再思念,http://em.21dtv.com/songs/60127206.mkv +张学友-不再是梦,http://em.21dtv.com/songs/60091064.mkv +不辣-不再守侯,http://em.21dtv.com/songs/60128723.mkv +妲己-不知所措,http://em.21dtv.com/songs/60126767.mkv +何浩文-不知所措,http://em.21dtv.com/songs/60119258.mkv +赖伟锋-不知所措,http://em.21dtv.com/songs/60118930.mkv +宋飞-不知所措,http://em.21dtv.com/songs/60103212.mkv +优客李林-不知所措,http://em.21dtv.com/songs/60011800.mkv +蔡秋凤-半醉人生,http://em.21dtv.com/songs/60129585.mkv +周国贤-半醉人间,http://em.21dtv.com/songs/60074616.mkv +童可可-别再让步,http://em.21dtv.com/songs/60127255.mkv +梁博-不知去向(演唱会),http://em.21dtv.com/songs/60100241.mkv +金城武-标准情人,http://em.21dtv.com/songs/60010540.mkv +陈松伶+温兆伦-扁舟情侣,http://em.21dtv.com/songs/60010482.mkv +蒙面哥-搬砖情歌,http://em.21dtv.com/songs/60102706.mkv +肖月-不再牵挂,http://em.21dtv.com/songs/60101160.mkv +张祥洪-不再期待,http://em.21dtv.com/songs/60082681.mkv +白嘎力-别走青春,http://em.21dtv.com/songs/60116177.mkv +黑龙-别再骗我,http://em.21dtv.com/songs/60061057.mkv +安志杰-不再怕黑,http://em.21dtv.com/songs/60011742.mkv +许茹芸-标准配备,http://em.21dtv.com/songs/60010539.mkv +焦庆军-抱着你哭,http://em.21dtv.com/songs/60074631.mkv +王心凌-抱着你哭,http://em.21dtv.com/songs/60010079.mkv +佚名-包子面条,http://em.21dtv.com/songs/60009957.mkv +林宇中-不转木马,http://em.21dtv.com/songs/60011803.mkv +程响-不再联系,http://em.21dtv.com/songs/60117956.mkv +程响-不再联系,http://em.21dtv.com/songs/60107932.mkv +程响-不再联系[升级版],http://em.21dtv.com/songs/60100351.mkv +夏天ALEX+崔子格-不再联系,http://em.21dtv.com/songs/60081711.mkv +夏天-不再联系,http://em.21dtv.com/songs/60066893.mkv +程响-不再联系,http://em.21dtv.com/songs/60066892.mkv +曾明莉-杯中恋情,http://em.21dtv.com/songs/60095595.mkv +佚名-杯中恋情,http://em.21dtv.com/songs/60010103.mkv +李石-不再冷漠,http://em.21dtv.com/songs/60065873.mkv +耿云飞-不再留恋,http://em.21dtv.com/songs/60102635.mkv +罗志强-不再留恋,http://em.21dtv.com/songs/60062744.mkv +刘晓春-不再流泪,http://em.21dtv.com/songs/60011741.mkv +张芸京-不再联络,http://em.21dtv.com/songs/60011740.mkv +黎明-别再流泪,http://em.21dtv.com/songs/60010763.mkv +孔令奇-不曾离开,http://em.21dtv.com/songs/60086475.mkv +李文东-不曾离开,http://em.21dtv.com/songs/60062604.mkv +郑嘉颖+周丽淇-抱着空气,http://em.21dtv.com/songs/60010075.mkv +罗忆诗-别再哭了,http://em.21dtv.com/songs/60010762.mkv +家家-不置可否,http://em.21dtv.com/songs/60097164.mkv +炎黄赤子-别在金秋,http://em.21dtv.com/songs/60010783.mkv +伍思凯-不准寂寞,http://em.21dtv.com/songs/60087291.mkv +SUMMER GRACE-不准接近,http://em.21dtv.com/songs/60011805.mkv +ECHO-不再纠缠,http://em.21dtv.com/songs/60011739.mkv +蓝又时-白纸黑字,http://em.21dtv.com/songs/60130724.mkv +许茹芸-白纸黑字,http://em.21dtv.com/songs/60009764.mkv +候湘婷-白纸黑夜,http://em.21dtv.com/songs/60090629.mkv +张惠妹-不在乎他,http://em.21dtv.com/songs/60011774.mkv +张惠妹-不在乎他(演唱会),http://em.21dtv.com/songs/60011773.mkv +王梓旭-不再回头,http://em.21dtv.com/songs/60011738.mkv +广智-不再回头,http://em.21dtv.com/songs/60011737.mkv +广智-不再回头(演唱会),http://em.21dtv.com/songs/60011736.mkv +刘锦明-不再回首,http://em.21dtv.com/songs/60130128.mkv +游国维-不再回首(无原唱),http://em.21dtv.com/songs/60011735.mkv +黑龙-不再怀念,http://em.21dtv.com/songs/60132020.mkv +李佑晨-不再怀念,http://em.21dtv.com/songs/60119647.mkv +邓丽君-不着痕迹,http://em.21dtv.com/songs/60011778.mkv +骆超勇-不再后悔,http://em.21dtv.com/songs/60011734.mkv +林晓培-不知好歹,http://em.21dtv.com/songs/60011794.mkv +蕊蕊+SUPER GEAR-不做公主,http://em.21dtv.com/songs/60074813.mkv +天籁天-不再挂牵,http://em.21dtv.com/songs/60074797.mkv +佚名-不再孤寂,http://em.21dtv.com/songs/60011733.mkv +吴光明-不再孤单,http://em.21dtv.com/songs/60084944.mkv +高翊菲-不再改变,http://em.21dtv.com/songs/60117394.mkv +可风-不再改变(演唱会),http://em.21dtv.com/songs/60084943.mkv +少年霜-帮主夫人,http://em.21dtv.com/songs/60082588.mkv +王铮亮-不曾放弃,http://em.21dtv.com/songs/60064025.mkv +李幸倪-不再分离,http://em.21dtv.com/songs/60116901.mkv +叶德娴-不再分离,http://em.21dtv.com/songs/60011732.mkv +杨廷廷-不再分开,http://em.21dtv.com/songs/60069282.mkv +苏小花+刘冲-不再犯错,http://em.21dtv.com/songs/60099459.mkv +王菲-不再儿戏,http://em.21dtv.com/songs/60011731.mkv +佚名-不再儿嬉,http://em.21dtv.com/songs/60011730.mkv +彭溪曈-别再担忧,http://em.21dtv.com/songs/60120555.mkv +蔡明顺-别再担忧,http://em.21dtv.com/songs/60074699.mkv +张才人-不知道吗,http://em.21dtv.com/songs/60118560.mkv +DAVICHI-不知道吗,http://em.21dtv.com/songs/60074807.mkv +吴涤清-杯中的酒(演唱会),http://em.21dtv.com/songs/60066860.mkv +金志文-不再沉睡,http://em.21dtv.com/songs/60106336.mkv +黑豹乐队-不再沉默(演唱会),http://em.21dtv.com/songs/60084942.mkv +罗映庭-不再缠绵(无原唱),http://em.21dtv.com/songs/60011728.mkv +安心亚-别再撑了,http://em.21dtv.com/songs/60128984.mkv +安心亚-别再撑了,http://em.21dtv.com/songs/60127909.mkv +淡然-不再错过,http://em.21dtv.com/songs/60129353.mkv +韩春雨-别走别走,http://em.21dtv.com/songs/60130878.mkv +郭健一-半醉半醒,http://em.21dtv.com/songs/60009909.mkv +KILLERSOAP-不知不觉,http://em.21dtv.com/songs/60074805.mkv +小贱-不知不觉,http://em.21dtv.com/songs/60066895.mkv +许茹芸-不知不觉,http://em.21dtv.com/songs/60011785.mkv +胡兵+蒋曦儿-不知不觉,http://em.21dtv.com/songs/60011784.mkv +韩冬韵+李心怡-不知不觉,http://em.21dtv.com/songs/60011783.mkv +仇云峰-半真半假,http://em.21dtv.com/songs/60009907.mkv +徐佳莹-不醉不会,http://em.21dtv.com/songs/60126911.mkv +徐佳莹-不醉不会,http://em.21dtv.com/songs/60118576.mkv +田馥甄-不醉不会,http://em.21dtv.com/songs/60081899.mkv +华生-不醉不归,http://em.21dtv.com/songs/60110897.mkv +陈绘忆-不醉不归,http://em.21dtv.com/songs/60101562.mkv +马浚伟-不再悲观,http://em.21dtv.com/songs/60093513.mkv +佚名-不醉不归,http://em.21dtv.com/songs/60011811.mkv +陈振云-不醉不归,http://em.21dtv.com/songs/60011810.mkv +易丹-不醉不归(演唱会),http://em.21dtv.com/songs/60011809.mkv +汪峰-边走边唱,http://em.21dtv.com/songs/60102467.mkv +王兆祥-边走边唱,http://em.21dtv.com/songs/60070532.mkv +黄磊-边走边唱,http://em.21dtv.com/songs/60010474.mkv +房祖名-边走边唱,http://em.21dtv.com/songs/60010473.mkv +黄耀明-边走边唱(演唱会),http://em.21dtv.com/songs/60010472.mkv +陈旭-边做边爱,http://em.21dtv.com/songs/60010475.mkv +张信哲-边走边爱,http://em.21dtv.com/songs/60010471.mkv +谢霆锋-边走边爱,http://em.21dtv.com/songs/60010470.mkv +谢霆锋-边走边爱(演唱会),http://em.21dtv.com/songs/60010468.mkv +小刘欢-不再爱我,http://em.21dtv.com/songs/60133590.mkv +面具-别再爱我,http://em.21dtv.com/songs/60098909.mkv +区文诗-不只爱情,http://em.21dtv.com/songs/60065874.mkv +慕容晓晓-不再爱你,http://em.21dtv.com/songs/60082680.mkv +张贤赫-不再爱了,http://em.21dtv.com/songs/60120528.mkv +张信哲-不由自主,http://em.21dtv.com/songs/60111852.mkv +赵薇-不由自主,http://em.21dtv.com/songs/60011702.mkv +张信哲-不由自主,http://em.21dtv.com/songs/60011701.mkv +徐若瑄-不由自主,http://em.21dtv.com/songs/60011700.mkv +张学友-不要再问,http://em.21dtv.com/songs/60091065.mkv +香儿-不要再说,http://em.21dtv.com/songs/60069281.mkv +王建杰-不要再说(无原唱),http://em.21dtv.com/songs/60011642.mkv +韦小波-布依族人,http://em.21dtv.com/songs/60123356.mkv +刘尊-八月中秋,http://em.21dtv.com/songs/60009498.mkv +范宏伟-不要再哭,http://em.21dtv.com/songs/60080137.mkv +N SONIC-不要再见,http://em.21dtv.com/songs/60124957.mkv +陈雅珍-不由自己,http://em.21dtv.com/songs/60011699.mkv +陈晓琪-别有用心,http://em.21dtv.com/songs/60068124.mkv +庄心妍-不要以为,http://em.21dtv.com/songs/60123890.mkv +郑箫-不要隐身,http://em.21dtv.com/songs/60011634.mkv +韦郎加虎-布依夜郎,http://em.21dtv.com/songs/60134443.mkv +许茹芸-不一样了,http://em.21dtv.com/songs/60011681.mkv +frank秋枫-白夜诱惑,http://em.21dtv.com/songs/60098028.mkv +余韬-佰业兴旺,http://em.21dtv.com/songs/60063295.mkv +李琛-不要问我,http://em.21dtv.com/songs/60091344.mkv +辛隆-不要问我(无原唱),http://em.21dtv.com/songs/60011630.mkv +王馨平-不要慰问,http://em.21dtv.com/songs/60011628.mkv +陈慧琳-不愿为你,http://em.21dtv.com/songs/60011717.mkv +游艾迪-不要为难(无原唱),http://em.21dtv.com/songs/60011627.mkv +平安-不远万里,http://em.21dtv.com/songs/60108470.mkv +SISP-毕业舞会,http://em.21dtv.com/songs/60123535.mkv +杨宗纬-被遗忘的,http://em.21dtv.com/songs/60063252.mkv +于文华-白衣天使,http://em.21dtv.com/songs/60009749.mkv +佚名-白衣天使,http://em.21dtv.com/songs/60009748.mkv +小龙-白衣天使,http://em.21dtv.com/songs/60009747.mkv +郭峰-不要太久,http://em.21dtv.com/songs/60127488.mkv +孟庭苇-不要太多,http://em.21dtv.com/songs/60011624.mkv +英智-不要疏远,http://em.21dtv.com/songs/60115350.mkv +蓝首峰-白云山下,http://em.21dtv.com/songs/60099478.mkv +苏打绿-被雨伤透(演唱会),http://em.21dtv.com/songs/60074656.mkv +本兮+谭炜星-表演时间,http://em.21dtv.com/songs/60081767.mkv +郑秀文-表演时间,http://em.21dtv.com/songs/60010556.mkv +郑秀文-表演时间(演唱会),http://em.21dtv.com/songs/60010555.mkv +TFBOYS-不要说话,http://em.21dtv.com/songs/60114361.mkv +谢霆锋-不要说谎,http://em.21dtv.com/songs/60011613.mkv +谢霆锋-不要说谎(演唱会),http://em.21dtv.com/songs/60011612.mkv +陈奕迅-不要说话,http://em.21dtv.com/songs/60011611.mkv +曹方-别样生活,http://em.21dtv.com/songs/60010746.mkv +林良欢+许志豪-比翼双飞,http://em.21dtv.com/songs/60061051.mkv +许志安-比翼双飞,http://em.21dtv.com/songs/60010389.mkv +卢伟+龙丹丹-比翼双飞,http://em.21dtv.com/songs/60010388.mkv +廖百威-白云深处,http://em.21dtv.com/songs/60089261.mkv +李贞贤-不要惹我,http://em.21dtv.com/songs/60089967.mkv +蔡义德-不愿认输,http://em.21dtv.com/songs/60104411.mkv +刘德华-不用人陪(无原唱),http://em.21dtv.com/songs/60011696.mkv +任贤齐-不要轻易,http://em.21dtv.com/songs/60089119.mkv +乱弹阿翔-不用奇怪(无原唱),http://em.21dtv.com/songs/60011695.mkv +SNH48-比翼齐飞,http://em.21dtv.com/songs/60127678.mkv +潘成+格子兮-半妖倾城,http://em.21dtv.com/songs/60125882.mkv +格子兮+潘成-半妖倾城,http://em.21dtv.com/songs/60125803.mkv +易云飞-毕业青春,http://em.21dtv.com/songs/60099264.mkv +湘唯一-不要骗我,http://em.21dtv.com/songs/60074787.mkv +张惠妹-不要骗我,http://em.21dtv.com/songs/60011594.mkv +余炳轩-不要骗我,http://em.21dtv.com/songs/60011593.mkv +佚名-不要骗我,http://em.21dtv.com/songs/60011592.mkv +谭晶-白云飘飘,http://em.21dtv.com/songs/60009758.mkv +唐古-毕业那天,http://em.21dtv.com/songs/60102061.mkv +陈志红-毕业那年,http://em.21dtv.com/songs/60128526.mkv +李建科-别样年华,http://em.21dtv.com/songs/60120624.mkv +小虎队-不要难过,http://em.21dtv.com/songs/60115109.mkv +小虎队-不要难过,http://em.21dtv.com/songs/60103235.mkv +沙玛学锋-布依妹妹,http://em.21dtv.com/songs/60061085.mkv +BOX-毕业留言,http://em.21dtv.com/songs/60081284.mkv +黄湘怡-毕业旅行,http://em.21dtv.com/songs/60010425.mkv +陈一玲-不要乱说,http://em.21dtv.com/songs/60080916.mkv +张惠妹-不要乱说,http://em.21dtv.com/songs/60011581.mkv +韩枫-不要离去,http://em.21dtv.com/songs/60129784.mkv +林翠萍-不要离去,http://em.21dtv.com/songs/60091489.mkv +CELINE DION-because you loved me,http://em.21dtv.com/songs/60000531.mkv +群星-不要流泪,http://em.21dtv.com/songs/60090114.mkv +北原山猫-不要乱抠,http://em.21dtv.com/songs/60087438.mkv +T ARA-不要离开,http://em.21dtv.com/songs/60074783.mkv +BEN-不要离开,http://em.21dtv.com/songs/60011572.mkv +小沈阳-不亦乐乎(演唱会),http://em.21dtv.com/songs/60011682.mkv +李宇林-毕业卡片,http://em.21dtv.com/songs/60010423.mkv +麦浚龙-不要哭了,http://em.21dtv.com/songs/60011571.mkv +郑伊健-不要哭了(演唱会),http://em.21dtv.com/songs/60011570.mkv +越剧-宝玉哭灵,http://em.21dtv.com/songs/60010014.mkv +HIGHWAYy-别要恐慌,http://em.21dtv.com/songs/60092178.mkv +王力宏-不要开灯,http://em.21dtv.com/songs/60011566.mkv +筷子兄弟-暴雨将至,http://em.21dtv.com/songs/60103509.mkv +齐秦-暴雨将至,http://em.21dtv.com/songs/60084888.mkv +张铁-暴雨将至,http://em.21dtv.com/songs/60010090.mkv +王力宏-伯牙绝弦,http://em.21dtv.com/songs/60010923.mkv +简美妍-不要见面,http://em.21dtv.com/songs/60062502.mkv +赵慧仙-不要记得,http://em.21dtv.com/songs/60124516.mkv +叶德娴-边缘回望,http://em.21dtv.com/songs/60010467.mkv +南征北战-不愿回头,http://em.21dtv.com/songs/60122548.mkv +崔振赫-不要回头,http://em.21dtv.com/songs/60094078.mkv +周雨菲-不要害怕,http://em.21dtv.com/songs/60122607.mkv +杨光-不要害怕,http://em.21dtv.com/songs/60082670.mkv +王力宏-不要害怕,http://em.21dtv.com/songs/60011559.mkv +黄品源-不要害怕,http://em.21dtv.com/songs/60011558.mkv +杰毅-不要回家,http://em.21dtv.com/songs/60104236.mkv +GD+TOP-不要回家,http://em.21dtv.com/songs/60061078.mkv +萧亚轩-不要后悔,http://em.21dtv.com/songs/60091976.mkv +佚名-白云故乡,http://em.21dtv.com/songs/60009757.mkv +王杰-不要管我,http://em.21dtv.com/songs/60091705.mkv +动力火车-不要怪我,http://em.21dtv.com/songs/60011555.mkv +颜振豪-布依姑娘,http://em.21dtv.com/songs/60134451.mkv +耿斯汉-不要告别,http://em.21dtv.com/songs/60105303.mkv +高旗-不要告别,http://em.21dtv.com/songs/60074781.mkv +平安+倪雅丰-不要告别,http://em.21dtv.com/songs/60069271.mkv +张惠妹-不要告别,http://em.21dtv.com/songs/60011553.mkv +杨乃文-不要告别,http://em.21dtv.com/songs/60011552.mkv +杨坤-不要告别,http://em.21dtv.com/songs/60011551.mkv +谢雷-不要告别,http://em.21dtv.com/songs/60011550.mkv +林长金-不要分手,http://em.21dtv.com/songs/60124140.mkv +董恒-不愿放手,http://em.21dtv.com/songs/60098740.mkv +HOTCHA-不要防晒,http://em.21dtv.com/songs/60011544.mkv +佚名-不愿放弃,http://em.21dtv.com/songs/60095389.mkv +邓福如-不要放弃,http://em.21dtv.com/songs/60080483.mkv +吴奇隆-不愿分离,http://em.21dtv.com/songs/60011711.mkv +庄学忠-不要分离,http://em.21dtv.com/songs/60011549.mkv +童安格-不要分离,http://em.21dtv.com/songs/60011548.mkv +青山-不要分离,http://em.21dtv.com/songs/60011547.mkv +关心妍-不要废话,http://em.21dtv.com/songs/60074780.mkv +邓小巧-不药而愈,http://em.21dtv.com/songs/60134285.mkv +邓小巧-不药而愈,http://em.21dtv.com/songs/60132967.mkv +郭静-不药而愈,http://em.21dtv.com/songs/60011514.mkv +小老鹰乐团-BYE BYE 单身,http://em.21dtv.com/songs/60096253.mkv +柯有纶-不用担心,http://em.21dtv.com/songs/60011693.mkv +张柏芝-不用多说(演唱会),http://em.21dtv.com/songs/60011694.mkv +徐良-表演的人,http://em.21dtv.com/songs/60123979.mkv +梁雁翎-不要道歉,http://em.21dtv.com/songs/60090018.mkv +小歆-白云朵朵,http://em.21dtv.com/songs/60099971.mkv +佚名-不愿长醉,http://em.21dtv.com/songs/60011725.mkv +姜育恒-不愿长醉,http://em.21dtv.com/songs/60011724.mkv +沙宝亮-不要痴迷,http://em.21dtv.com/songs/60091599.mkv +骅梓-不要匆忙,http://em.21dtv.com/songs/60011532.mkv +天亮-白音查干,http://em.21dtv.com/songs/60100824.mkv +李乐诗-不要冲动,http://em.21dtv.com/songs/60011531.mkv +佚名-不要唱吧,http://em.21dtv.com/songs/60011528.mkv +GOT7-不要不要,http://em.21dtv.com/songs/60108226.mkv +卓文萱-不要不要(演唱会),http://em.21dtv.com/songs/60064017.mkv +杨雯茜-不要不要,http://em.21dtv.com/songs/60011527.mkv +王丽达+汤子星-不依不饶,http://em.21dtv.com/songs/60094589.mkv +文博-八音波罗,http://em.21dtv.com/songs/60070511.mkv +佚名-不要变老,http://em.21dtv.com/songs/60011526.mkv +李嘉文-不要爱我,http://em.21dtv.com/songs/60128088.mkv +林贞熙-不要爱我,http://em.21dtv.com/songs/60071800.mkv +李雨环-不要爱我(无原唱),http://em.21dtv.com/songs/60011521.mkv +张国荣-不要爱他(演唱会),http://em.21dtv.com/songs/60011520.mkv +五月天-八月爱人,http://em.21dtv.com/songs/60104772.mkv +梁咏琪-不想占有,http://em.21dtv.com/songs/60091515.mkv +韩博-奔向自由,http://em.21dtv.com/songs/60065844.mkv +黑雨-冰雪之梦,http://em.21dtv.com/songs/60114309.mkv +赵薇+陈一凡-把心照亮,http://em.21dtv.com/songs/60086442.mkv +雷琛瑜-不想再见,http://em.21dtv.com/songs/60110663.mkv +J.Arie(雷琛瑜)-不想再见,http://em.21dtv.com/songs/60106542.mkv +杨坤-不息之河,http://em.21dtv.com/songs/60130455.mkv +TFBOYS-不息之河,http://em.21dtv.com/songs/60128709.mkv +杨坤-不息之河,http://em.21dtv.com/songs/60128109.mkv +ZEN-不熄之火,http://em.21dtv.com/songs/60011439.mkv +大哲-不朽之光,http://em.21dtv.com/songs/60119384.mkv +李玉和-报效祖国,http://em.21dtv.com/songs/60010047.mkv +童一首歌-不想长大,http://em.21dtv.com/songs/60011489.mkv +S.H.E-不想长大,http://em.21dtv.com/songs/60011488.mkv +刘韵-不想又想(演唱会),http://em.21dtv.com/songs/60082668.mkv +曹永濂-不惜一切,http://em.21dtv.com/songs/60011437.mkv +甲子惠-不屑一顾(无原唱),http://em.21dtv.com/songs/60011498.mkv +Robynn&Kendy-不想想你,http://em.21dtv.com/songs/60115623.mkv +潘玮柏-不想醒来,http://em.21dtv.com/songs/60068144.mkv +郑秀文-不想性感,http://em.21dtv.com/songs/60093297.mkv +詹雅雯-变心无罪,http://em.21dtv.com/songs/60010525.mkv +林逸超-半夏微凉,http://em.21dtv.com/songs/60112029.mkv +晓雨-不想太累,http://em.21dtv.com/songs/60061074.mkv +潘美辰-把心掏开,http://em.21dtv.com/songs/60009603.mkv +袁威-别想太多,http://em.21dtv.com/songs/60094288.mkv +刘之烁-不想上学,http://em.21dtv.com/songs/60126629.mkv +CIRCUS-不想say goodbye,http://em.21dtv.com/songs/60011451.mkv +蔡恒-把心死掉,http://em.21dtv.com/songs/60009602.mkv +团风依依-不想删除,http://em.21dtv.com/songs/60101055.mkv +黄明志+肖央-不想上班,http://em.21dtv.com/songs/60133133.mkv +张燕-百姓日子,http://em.21dtv.com/songs/60091142.mkv +李坤-背信弃义,http://em.21dtv.com/songs/60111964.mkv +小贱-不像情歌,http://em.21dtv.com/songs/60074776.mkv +王洋-不想你走,http://em.21dtv.com/songs/60102537.mkv +林采缇-拜心女王,http://em.21dtv.com/songs/60081659.mkv +乔玲儿-不许你哭,http://em.21dtv.com/songs/60127711.mkv +苏芮-北西南东,http://em.21dtv.com/songs/60091946.mkv +佚名-北西南东(无原唱),http://em.21dtv.com/songs/60010234.mkv +何韵诗-波西米亚,http://em.21dtv.com/songs/60074707.mkv +赵福伟-奔向明天,http://em.21dtv.com/songs/60010319.mkv +易帆-把心留住,http://em.21dtv.com/songs/60074575.mkv +姜青涛-不想离开,http://em.21dtv.com/songs/60074772.mkv +吴克群-把心拉近,http://em.21dtv.com/songs/60009600.mkv +赵泳鑫-不想见你,http://em.21dtv.com/songs/60105394.mkv +吴克群-不屑纪念,http://em.21dtv.com/songs/60011497.mkv +丁于-变形金刚,http://em.21dtv.com/songs/60010527.mkv +凯歌-不想记得,http://em.21dtv.com/songs/60097163.mkv +黄品戬-不想记得,http://em.21dtv.com/songs/60086471.mkv +周晏伊-不想回家,http://em.21dtv.com/songs/60117620.mkv +容祖儿-不想回家,http://em.21dtv.com/songs/60011458.mkv +段丽阳-白雪公主,http://em.21dtv.com/songs/60100904.mkv +萧宝钟-白雪公主,http://em.21dtv.com/songs/60084881.mkv +张真菲-白雪公主,http://em.21dtv.com/songs/60063425.mkv +傅松-白雪公主,http://em.21dtv.com/songs/60009744.mkv +姜育恒-把心给你,http://em.21dtv.com/songs/60009599.mkv +超级女声+郑静雯-八仙过海,http://em.21dtv.com/songs/60090231.mkv +郑靖雯-八仙过海,http://em.21dtv.com/songs/60088780.mkv +千歌未央音乐团队-笔下风烟,http://em.21dtv.com/songs/60113310.mkv +俊锋-不想放手,http://em.21dtv.com/songs/60128790.mkv +涓子-不想放手,http://em.21dtv.com/songs/60074769.mkv +井柏然-不想放手,http://em.21dtv.com/songs/60074768.mkv +楼宏章-不想分手,http://em.21dtv.com/songs/60070549.mkv +周高杰-不想分手,http://em.21dtv.com/songs/60064011.mkv +邓志驹+苏春梅-逼写分书,http://em.21dtv.com/songs/60010365.mkv +TANK-不想放弃,http://em.21dtv.com/songs/60011456.mkv +施文彬-薄幸的人,http://em.21dtv.com/songs/60095574.mkv +张韶涵-不想懂得,http://em.21dtv.com/songs/60011453.mkv +林志颖-不熄的灯,http://em.21dtv.com/songs/60011438.mkv +罗美仪-不想承认,http://em.21dtv.com/songs/60126037.mkv +佚名-奔向彩虹,http://em.21dtv.com/songs/60010318.mkv +欧霖-不想迟到,http://em.21dtv.com/songs/60119741.mkv +伊光-摆吓摆吓,http://em.21dtv.com/songs/60089604.mkv +戴爱玲-不屑悲伤,http://em.21dtv.com/songs/60080472.mkv +许晓杰-冰雪芭蕾,http://em.21dtv.com/songs/60086463.mkv +杨瑞代-剥削爱情,http://em.21dtv.com/songs/60074708.mkv +张斌-百姓爱你,http://em.21dtv.com/songs/60105851.mkv +牧野由依-碧の香り,http://em.21dtv.com/songs/60106091.mkv +范萱蔚-比武招亲,http://em.21dtv.com/songs/60093092.mkv +何润东-白屋之恋,http://em.21dtv.com/songs/60063954.mkv +果味VC-把握战机,http://em.21dtv.com/songs/60120675.mkv +邝美云-伴我一生,http://em.21dtv.com/songs/60009930.mkv +佚名-别无选择,http://em.21dtv.com/songs/60010738.mkv +高明骏+李泉+黄龄-比我幸福,http://em.21dtv.com/songs/60082618.mkv +孙俪-比我幸福,http://em.21dtv.com/songs/60010384.mkv +陈晓东-比我幸福,http://em.21dtv.com/songs/60010383.mkv +施文彬-把我忘掉(演唱会),http://em.21dtv.com/songs/60009591.mkv +THE ONE-best wishes to you,http://em.21dtv.com/songs/60082096.mkv +谢霆锋-伴我同行,http://em.21dtv.com/songs/60009929.mkv +林海峰-伴我同行(演唱会),http://em.21dtv.com/songs/60009928.mkv +姜鹏-别无它求,http://em.21dtv.com/songs/60087642.mkv +姜鹏-别无他求,http://em.21dtv.com/songs/60010737.mkv +卢广仲-把我踢开,http://em.21dtv.com/songs/60070516.mkv +林依伦-伴我同行,http://em.21dtv.com/songs/60091420.mkv +叶瑷菱-别问伤心,http://em.21dtv.com/songs/60010729.mkv +Mc阿哲-别无所求,http://em.21dtv.com/songs/60124945.mkv +小刚-别无所求,http://em.21dtv.com/songs/60087703.mkv +刘怡君-别无所求,http://em.21dtv.com/songs/60081355.mkv +于文博-别无奢求,http://em.21dtv.com/songs/60063983.mkv +郑源-别无所求,http://em.21dtv.com/songs/60010736.mkv +黄宗泽-伴我启航,http://em.21dtv.com/songs/60093532.mkv +项玉+蔡向鹏-不忘诺言,http://em.21dtv.com/songs/60114255.mkv +TWINS-抱无可抱,http://em.21dtv.com/songs/60092215.mkv +农夫-八无禁忌,http://em.21dtv.com/songs/60092328.mkv +中央乐团合唱队-保卫黄河,http://em.21dtv.com/songs/60010030.mkv +陈明真-百万个吻,http://em.21dtv.com/songs/60009795.mkv +谭咏麟-伴我飞翔,http://em.21dtv.com/songs/60009927.mkv +满江-百万富翁,http://em.21dtv.com/songs/60009794.mkv +办桌二人组-把握当下,http://em.21dtv.com/songs/60098161.mkv +胡彦斌-保卫地球,http://em.21dtv.com/songs/60074626.mkv +郑中基-不完的歌,http://em.21dtv.com/songs/60011429.mkv +万一-卑微的爱,http://em.21dtv.com/songs/60116495.mkv +韩磊+谭维维-不忘初心,http://em.21dtv.com/songs/60133078.mkv +陈思思-不忘初心,http://em.21dtv.com/songs/60128531.mkv +李行亮-不忘初心,http://em.21dtv.com/songs/60080628.mkv +郑嘉颖-不枉此生,http://em.21dtv.com/songs/60093275.mkv +钟欣桐+谭耀明-不枉此生,http://em.21dtv.com/songs/60082665.mkv +梅艳芳-不枉此生,http://em.21dtv.com/songs/60011433.mkv +PUMPKINS-bullet with butterfly wings,http://em.21dtv.com/songs/60063551.mkv +春天-霸王别姬,http://em.21dtv.com/songs/60096326.mkv +陶喆+王复蓉-霸王别姬,http://em.21dtv.com/songs/60086446.mkv +储兰兰-霸王别姬,http://em.21dtv.com/songs/60074582.mkv +张学友+夏妙然-霸王别姬,http://em.21dtv.com/songs/60009644.mkv +屠洪纲-霸王别姬,http://em.21dtv.com/songs/60009643.mkv +梅葆玖-霸王别姬,http://em.21dtv.com/songs/60009642.mkv +屠洪纲-霸王别姬(演唱会),http://em.21dtv.com/songs/60009641.mkv +王梓潼-边舞边唱,http://em.21dtv.com/songs/60097212.mkv +PAULINA RUBIO-boys will be boys,http://em.21dtv.com/songs/60072995.mkv +BACKSTREET BOYS-boys will be boys,http://em.21dtv.com/songs/60000679.mkv +BETTE MIDLER-boogie woogie bugle boy,http://em.21dtv.com/songs/60000648.mkv +黄思婷-别问爱情,http://em.21dtv.com/songs/60079924.mkv +张秀卿+林垂立-baby我爱你,http://em.21dtv.com/songs/60000419.mkv +李志洲-baby我爱你,http://em.21dtv.com/songs/60000418.mkv +S.H.E-beauty up my life,http://em.21dtv.com/songs/60000515.mkv +S.H.E-半糖主义,http://em.21dtv.com/songs/60009898.mkv +王秀琪-白头偕老,http://em.21dtv.com/songs/60124278.mkv +陈玉建+王诗雨-白头偕老,http://em.21dtv.com/songs/60069237.mkv +任贤齐-冰透心房,http://em.21dtv.com/songs/60010850.mkv +钟汉良-不太温柔,http://em.21dtv.com/songs/60011408.mkv +吴克群-别太温柔,http://em.21dtv.com/songs/60010718.mkv +江惠仪-把他忘掉,http://em.21dtv.com/songs/60128156.mkv +刘嘉亮-把他忘掉,http://em.21dtv.com/songs/60071766.mkv +COLBIE CAILLAT-brighter than the sun,http://em.21dtv.com/songs/60061994.mkv +阿吉仔-不通天光,http://em.21dtv.com/songs/60095949.mkv +秀兰玛雅-不通伤心,http://em.21dtv.com/songs/60011418.mkv +黎明-别舔伤口,http://em.21dtv.com/songs/60010721.mkv +叶启田-不通认输,http://em.21dtv.com/songs/60011417.mkv +有感觉-遍体鳞伤,http://em.21dtv.com/songs/60122815.mkv +彭筝-遍体鳞伤,http://em.21dtv.com/songs/60115172.mkv +叶顺有-遍体鳞伤,http://em.21dtv.com/songs/60010537.mkv +古皓-遍体鳞伤,http://em.21dtv.com/songs/60010536.mkv +司马凤-彼条恋歌(演唱会)(无原唱),http://em.21dtv.com/songs/60010404.mkv +吴晋准-碧潭假期,http://em.21dtv.com/songs/60010439.mkv +乐洋-不谈寂寞,http://em.21dtv.com/songs/60103859.mkv +水木年华-burning till i die,http://em.21dtv.com/songs/60000732.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-冰糖葫芦,http://em.21dtv.com/songs/60074705.mkv +卓依婷-冰糖葫芦,http://em.21dtv.com/songs/60010849.mkv +佚名-冰糖葫芦,http://em.21dtv.com/songs/60010848.mkv +童唱-冰糖葫芦,http://em.21dtv.com/songs/60010847.mkv +冯晓泉-冰糖葫芦,http://em.21dtv.com/songs/60010846.mkv +佚名-冰糖葫芦(中四),http://em.21dtv.com/songs/60010845.mkv +CASSADEE POPE-behind these hazel eyes(演唱会),http://em.21dtv.com/songs/60072959.mkv +KELLY CLARKSON-behind these hazel eyes,http://em.21dtv.com/songs/60062079.mkv +岳思思-北塘古镇,http://em.21dtv.com/songs/60082610.mkv +陈虹宇-比痛更痛,http://em.21dtv.com/songs/60098897.mkv +艾莉莎+孙一娇-把他给你,http://em.21dtv.com/songs/60009585.mkv +程思佳-不同凡想,http://em.21dtv.com/songs/60126002.mkv +王菲-半途而废,http://em.21dtv.com/songs/60009903.mkv +龙啸-不痛的伤,http://em.21dtv.com/songs/60065867.mkv +蔡卓妍-白头到老,http://em.21dtv.com/songs/60068095.mkv +金木-白头到老,http://em.21dtv.com/songs/60009741.mkv +罗美玲-不痛多好,http://em.21dtv.com/songs/60011424.mkv +刘佳轩-变调的爱,http://em.21dtv.com/songs/60095461.mkv +佚名-born to be wild,http://em.21dtv.com/songs/60000663.mkv +STEPPENWOLF-born to be wild,http://em.21dtv.com/songs/60000662.mkv +程欣-拜托拜托,http://em.21dtv.com/songs/60129460.mkv +JUSTIN BIEBER-born to be somebody,http://em.21dtv.com/songs/60086329.mkv +RASCAL FLATTS-bless the broken road,http://em.21dtv.com/songs/60000610.mkv +郑秀文-不拖不欠,http://em.21dtv.com/songs/60011428.mkv +GIRL FRIENDS-不拖不欠,http://em.21dtv.com/songs/60011427.mkv +郑秀文-不拖不欠(演唱会),http://em.21dtv.com/songs/60011426.mkv +林凡-不痛不快,http://em.21dtv.com/songs/60074763.mkv +张敬轩-不吐不快,http://em.21dtv.com/songs/60011425.mkv +THE MAVERICKS-born to be blue,http://em.21dtv.com/songs/60072990.mkv +东南-不谈爱情,http://em.21dtv.com/songs/60071799.mkv +邓丽欣-不速之约,http://em.21dtv.com/songs/60011407.mkv +金小曦-不死之心,http://em.21dtv.com/songs/60127501.mkv +林俊杰-不死之身,http://em.21dtv.com/songs/60011404.mkv +飞轮海-不死之谜,http://em.21dtv.com/songs/60088970.mkv +刘嘉亮-白水之恋,http://em.21dtv.com/songs/60009732.mkv +乐桐-不速之客,http://em.21dtv.com/songs/60074760.mkv +江美琪-不速之客,http://em.21dtv.com/songs/60011406.mkv +王小婉-别说再见,http://em.21dtv.com/songs/60135547.mkv +张津涤-不说再见,http://em.21dtv.com/songs/60132445.mkv +许飞-不说再见,http://em.21dtv.com/songs/60120943.mkv +好妹妹乐队-不说再见,http://em.21dtv.com/songs/60117646.mkv +谢名-不说再见,http://em.21dtv.com/songs/60114777.mkv +林玉英-別说再见(无原唱),http://em.21dtv.com/songs/60095686.mkv +S.H.E-不说再见,http://em.21dtv.com/songs/60079852.mkv +韩磊-别说再见,http://em.21dtv.com/songs/60068122.mkv +郭采洁-不说再见,http://em.21dtv.com/songs/60065866.mkv +周冰倩-别说再见,http://em.21dtv.com/songs/60010715.mkv +佚名-别说再见,http://em.21dtv.com/songs/60010714.mkv +周丹琳+高歌-别说再见(演唱会),http://em.21dtv.com/songs/60010713.mkv +苏永康-悲伤止步,http://em.21dtv.com/songs/60010148.mkv +苏永康-悲伤止步(演唱会),http://em.21dtv.com/songs/60010147.mkv +兄弟本色-背水一战,http://em.21dtv.com/songs/60122502.mkv +潘玮柏-背水一战,http://em.21dtv.com/songs/60102502.mkv +王宏健-悲伤寓言,http://em.21dtv.com/songs/60100313.mkv +黄圣依-不胜依依,http://em.21dtv.com/songs/60011354.mkv +李进-巴山夜雨,http://em.21dtv.com/songs/60009519.mkv +方静-不属于我,http://em.21dtv.com/songs/60011394.mkv +果味VC-白色羽毛,http://em.21dtv.com/songs/60111200.mkv +馨梓-白色羽毛,http://em.21dtv.com/songs/60090321.mkv +芮恩-白色羽毛,http://em.21dtv.com/songs/60009723.mkv +蜜雪薇琪-白色羽毛,http://em.21dtv.com/songs/60009722.mkv +陈珂冰-冰山一角,http://em.21dtv.com/songs/60074703.mkv +陈晓东-闭上眼睛,http://em.21dtv.com/songs/60010429.mkv +许志安-冰山一对,http://em.21dtv.com/songs/60074702.mkv +Beast-不是现在,http://em.21dtv.com/songs/60101731.mkv +杨丞琳-半熟宣言(演唱会),http://em.21dtv.com/songs/60009897.mkv +刘沛洋-巴蜀笑星,http://em.21dtv.com/songs/60104834.mkv +印子月-别说想我,http://em.21dtv.com/songs/60104865.mkv +王洁实+谢莉斯-冰山雪莲,http://em.21dtv.com/songs/60010842.mkv +C ALLSTAR-白色信件(演唱会),http://em.21dtv.com/songs/60074594.mkv +钟洁+RILL-白色雪花,http://em.21dtv.com/songs/60082578.mkv +COOKIES-不是校花,http://em.21dtv.com/songs/60011390.mkv +吴雨霏-不是校花(演唱会),http://em.21dtv.com/songs/60011389.mkv +梁洛施-不是兄弟,http://em.21dtv.com/songs/60092906.mkv +黎姿-不是娃娃,http://em.21dtv.com/songs/60011378.mkv +江若琳-不是娃娃(演唱会),http://em.21dtv.com/songs/60011377.mkv +张琪玮-白色外套,http://em.21dtv.com/songs/60119538.mkv +姚匡玉-别说我傻(无原唱),http://em.21dtv.com/songs/60010711.mkv +向蕙玲-播送温柔,http://em.21dtv.com/songs/60010919.mkv +陈凤-别说我笨,http://em.21dtv.com/songs/60010705.mkv +范晓萱+卜星慧-别说晚安,http://em.21dtv.com/songs/60129543.mkv +柯有伦+Ryan B-不说晚安,http://em.21dtv.com/songs/60106995.mkv +瞿颖-不算太坏,http://em.21dtv.com/songs/60091787.mkv +吴庆国-兵圣孙武,http://em.21dtv.com/songs/60122582.mkv +路绮欧-悲伤森林,http://em.21dtv.com/songs/60088731.mkv +HOTCHA-白色手机(演唱会),http://em.21dtv.com/songs/60009721.mkv +关正明-八十书怀,http://em.21dtv.com/songs/60090662.mkv +谭咏麟-八十岁后,http://em.21dtv.com/songs/60009491.mkv +谭咏麟-八十岁后(演唱会),http://em.21dtv.com/songs/60009490.mkv +寂悸-别说如果,http://em.21dtv.com/songs/60084910.mkv +陈奕迅-白色球鞋,http://em.21dtv.com/songs/60095356.mkv +曾轶可-白色秋天,http://em.21dtv.com/songs/60087962.mkv +玺晨-半世情伤,http://em.21dtv.com/songs/60135580.mkv +安小墨-悲伤情话,http://em.21dtv.com/songs/60070524.mkv +屈玲琳-悲伤情歌,http://em.21dtv.com/songs/60133608.mkv +冷漠-冰水情歌,http://em.21dtv.com/songs/60115701.mkv +刘佳轩-悲伤情歌,http://em.21dtv.com/songs/60010145.mkv +蔡恒-悲伤情歌,http://em.21dtv.com/songs/60010144.mkv +庞龙-杯水情歌,http://em.21dtv.com/songs/60010101.mkv +TWINS-变身派对,http://em.21dtv.com/songs/60010510.mkv +八三夭-不是男人,http://em.21dtv.com/songs/60069275.mkv +樊凡-别说男人,http://em.21dtv.com/songs/60010699.mkv +胡艾莲-巴蜀女郎,http://em.21dtv.com/songs/60116211.mkv +傅颖-悲伤女孩,http://em.21dtv.com/songs/60010143.mkv +马旭东-悲伤蔓延,http://em.21dtv.com/songs/60082599.mkv +余文乐-不是明星,http://em.21dtv.com/songs/60011372.mkv +清雅-白色魔怪,http://em.21dtv.com/songs/60133947.mkv +罗力威-白色玫瑰(演唱会),http://em.21dtv.com/songs/60074591.mkv +王键-悲伤礼物,http://em.21dtv.com/songs/60081180.mkv +金姗姗-碧水蓝天,http://em.21dtv.com/songs/60127495.mkv +金姗姗-碧水蓝天,http://em.21dtv.com/songs/60112316.mkv +陈劲-逼上梁山,http://em.21dtv.com/songs/60010364.mkv +AJ+祖丝-毕氏恋人,http://em.21dtv.com/songs/60116432.mkv +游鸿明-白色恋人,http://em.21dtv.com/songs/60009718.mkv +南拳妈妈-白色裂痕,http://em.21dtv.com/songs/60009719.mkv +大巴山民歌团-巴山恋歌,http://em.21dtv.com/songs/60132324.mkv +S.H.E-白色恋歌,http://em.21dtv.com/songs/60009717.mkv +陈淑桦-别说可惜,http://em.21dtv.com/songs/60010697.mkv +段千寻-白色距离,http://em.21dtv.com/songs/60009716.mkv +张冬玲-备受煎熬,http://em.21dtv.com/songs/60131395.mkv +5566-白色花样,http://em.21dtv.com/songs/60087172.mkv +戴爱玲-白色谎言,http://em.21dtv.com/songs/60009714.mkv +5566-白色花漾,http://em.21dtv.com/songs/60009713.mkv +祁隆-别伤害我,http://em.21dtv.com/songs/60127241.mkv +齐士扬-别伤害我,http://em.21dtv.com/songs/60061055.mkv +许哲佩-白色婚礼,http://em.21dtv.com/songs/60009715.mkv +承利-本色火花,http://em.21dtv.com/songs/60126940.mkv +BY2-不是故意,http://em.21dtv.com/songs/60064007.mkv +林佳仪-不伤感情,http://em.21dtv.com/songs/60011348.mkv +徐小凤-变色感情,http://em.21dtv.com/songs/60010506.mkv +央金兰泽-背水姑娘,http://em.21dtv.com/songs/60068108.mkv +容中尔甲-背水姑娘,http://em.21dtv.com/songs/60010258.mkv +谢霆锋-巴斯光年,http://em.21dtv.com/songs/60009520.mkv +REDNOON-八十革命,http://em.21dtv.com/songs/60065829.mkv +许志安-不是过客,http://em.21dtv.com/songs/60011365.mkv +佳小宇-不说放弃,http://em.21dtv.com/songs/60074759.mkv +陈奂仁-不是富豪,http://em.21dtv.com/songs/60080092.mkv +周杰伦-白色风车,http://em.21dtv.com/songs/60009712.mkv +唐大聪-拜寿风波,http://em.21dtv.com/songs/60109234.mkv +阿才-不说而已,http://em.21dtv.com/songs/60104526.mkv +王鸣飞-悲伤电影,http://em.21dtv.com/songs/60120796.mkv +王鸣飞-悲伤电影,http://em.21dtv.com/songs/60099420.mkv +斯琴高丽-白色的雪,http://em.21dtv.com/songs/60009710.mkv +RED HOT CHILI PEPPERS-brendans death song,http://em.21dtv.com/songs/60070309.mkv +李圣杰-不是对手(演唱会),http://em.21dtv.com/songs/60011364.mkv +佚名-不舍得你,http://em.21dtv.com/songs/60011352.mkv +吕方-不舍得你(演唱会),http://em.21dtv.com/songs/60011351.mkv +江蕙-白色的梦(无原唱),http://em.21dtv.com/songs/60095748.mkv +窦唯-悲伤的梦(演唱会),http://em.21dtv.com/songs/60010138.mkv +谢霆锋-不是定理(演唱会),http://em.21dtv.com/songs/60011363.mkv +张国荣-冰山大火,http://em.21dtv.com/songs/60130301.mkv +张国荣-冰山大火,http://em.21dtv.com/songs/60127968.mkv +杜德伟-冰山大火,http://em.21dtv.com/songs/60097243.mkv +梅艳芳+梁汉文-冰山大火(演唱会),http://em.21dtv.com/songs/60010837.mkv +蔡小虎-变色的爱,http://em.21dtv.com/songs/60095898.mkv +詹雅雯-白色的爱,http://em.21dtv.com/songs/60009706.mkv +佚名-白色的爱(演唱会),http://em.21dtv.com/songs/60009705.mkv +甲子蕙-白色抽屉(无原唱),http://em.21dtv.com/songs/60009704.mkv +洪百慧-白蛇传说,http://em.21dtv.com/songs/60135505.mkv +张皓然-变身潮男,http://em.21dtv.com/songs/60104140.mkv +TWINS-百试不厌,http://em.21dtv.com/songs/60009793.mkv +咻比嘟哗-不是不想,http://em.21dtv.com/songs/60011360.mkv +胡彦斌-不是不想,http://em.21dtv.com/songs/60011359.mkv +崔子格-不失不忘,http://em.21dtv.com/songs/60127934.mkv +威仔+奶兔-别说抱歉,http://em.21dtv.com/songs/60118491.mkv +林忆莲-不舍不弃(演唱会),http://em.21dtv.com/songs/60011350.mkv +黄祺铭-别说抱歉,http://em.21dtv.com/songs/60010693.mkv +廖伟雄-白衫白裤,http://em.21dtv.com/songs/60092554.mkv +陈浩德-白衫白裤(演唱会),http://em.21dtv.com/songs/60082579.mkv +张碧晨-不散不见,http://em.21dtv.com/songs/60135228.mkv +莫文蔚-不散不见,http://em.21dtv.com/songs/60107156.mkv +王浩信-不散不见,http://em.21dtv.com/songs/60092988.mkv +赵芊羽-不散不见(演唱会),http://em.21dtv.com/songs/60069274.mkv +许美静-不散不见,http://em.21dtv.com/songs/60011346.mkv +群星-别舍不得,http://em.21dtv.com/songs/60124355.mkv +陈佳妮-别舍不得,http://em.21dtv.com/songs/60123280.mkv +梦飞船-别舍不得,http://em.21dtv.com/songs/60091533.mkv +伯阳-不是不爱,http://em.21dtv.com/songs/60011357.mkv +黑雨-别说不爱,http://em.21dtv.com/songs/60010694.mkv +游鸿明-别说爱我,http://em.21dtv.com/songs/60010692.mkv +容祖儿-别说爱我,http://em.21dtv.com/songs/60010691.mkv +张新海-变速爱情,http://em.21dtv.com/songs/60063403.mkv +陈奕迅-不如这样,http://em.21dtv.com/songs/60011342.mkv +陈奕迅-不如这样(演唱会),http://em.21dtv.com/songs/60011341.mkv +邰枫-伴阮一生(无原唱),http://em.21dtv.com/songs/60079999.mkv +HITA+CCCCES-不若相忘,http://em.21dtv.com/songs/60082661.mkv +HALYOSY+初音-般若心经,http://em.21dtv.com/songs/60087196.mkv +胡力-别让我走,http://em.21dtv.com/songs/60010668.mkv +林姗+罗时丰-别让我哭,http://em.21dtv.com/songs/60010658.mkv +陈升-别让我哭,http://em.21dtv.com/songs/60010657.mkv +陈升+任贤齐-别让我哭(演唱会),http://em.21dtv.com/songs/60010656.mkv +斯琴格日乐-别让我猜,http://em.21dtv.com/songs/60010650.mkv +刘恩铄-别让她走,http://em.21dtv.com/songs/60103928.mkv +陈慧琳-不如跳舞,http://em.21dtv.com/songs/60011336.mkv +陈慧琳-不如跳舞(演唱会),http://em.21dtv.com/songs/60011335.mkv +康康-不如使力,http://em.21dtv.com/songs/60064005.mkv +易丹-不如去嗨,http://em.21dtv.com/songs/60091267.mkv +甄真-不让你走,http://em.21dtv.com/songs/60011313.mkv +阿杜-不让你走,http://em.21dtv.com/songs/60011312.mkv +丁于-不让你哭,http://em.21dtv.com/songs/60011311.mkv +郭静-别惹哭我,http://em.21dtv.com/songs/60121016.mkv +陈慧琳+郑伊健+梁家辉-不如今晚,http://em.21dtv.com/songs/60098878.mkv +卢巧音-半日假期,http://em.21dtv.com/songs/60092386.mkv +陈楚生-不如怀念,http://em.21dtv.com/songs/60119015.mkv +格格-不如怀念,http://em.21dtv.com/songs/60100235.mkv +陈绍楠-不惹红尘,http://em.21dtv.com/songs/60068137.mkv +余天-不如归去,http://em.21dtv.com/songs/60011333.mkv +谢雷-不如归去,http://em.21dtv.com/songs/60011332.mkv +李茂山-不如归去,http://em.21dtv.com/songs/60011331.mkv +韩宝仪-不如归去,http://em.21dtv.com/songs/60011330.mkv +麦家瑜-病入膏肓,http://em.21dtv.com/songs/60080672.mkv +许靖韵-不如告白,http://em.21dtv.com/songs/60106276.mkv +李芊慧-别人的尪(无原唱),http://em.21dtv.com/songs/60010680.mkv +邓芷茵-不认得你,http://em.21dtv.com/songs/60074752.mkv +陈德彰-别人的歌(演唱会),http://em.21dtv.com/songs/60082627.mkv +AMAN FONG-别人的歌(演唱会),http://em.21dtv.com/songs/60074693.mkv +RAIDAS-别人的歌,http://em.21dtv.com/songs/60010675.mkv +容祖儿-不容错失(演唱会),http://em.21dtv.com/songs/60011321.mkv +谭欣懿+贾晓龙-不如残忍,http://em.21dtv.com/songs/60082660.mkv +孙燕姿-不如不要,http://em.21dtv.com/songs/60011329.mkv +巫奇-不如不说,http://em.21dtv.com/songs/60011328.mkv +彭家丽-不如不见,http://em.21dtv.com/songs/60112699.mkv +梅艳芳-不如不见(演唱会),http://em.21dtv.com/songs/60011327.mkv +陈奕迅-不如不见(HD演唱会),http://em.21dtv.com/songs/60011326.mkv +谭晶-八荣不耻,http://em.21dtv.com/songs/60088673.mkv +丁紫-不如不爱,http://em.21dtv.com/songs/60125059.mkv +兰雨-不如不爱,http://em.21dtv.com/songs/60104798.mkv +刘超华-不如不爱,http://em.21dtv.com/songs/60011325.mkv +[Group] +groupName=十六万歌曲MV等 - 39 +吴雨霏-不如不爱(演唱会),http://em.21dtv.com/songs/60011324.mkv +黑豹乐队-别去糟踏,http://em.21dtv.com/songs/60010644.mkv +吴莫愁-不请自来,http://em.21dtv.com/songs/60086469.mkv +BOY'Z-不请自来,http://em.21dtv.com/songs/60011304.mkv +洪卓立-悲情主角,http://em.21dtv.com/songs/60074639.mkv +张智霖-不请自爱,http://em.21dtv.com/songs/60121654.mkv +程少筹-冰清玉洁,http://em.21dtv.com/songs/60104350.mkv +陈晓-悲前喜剧,http://em.21dtv.com/songs/60134405.mkv +朴树-别千万别,http://em.21dtv.com/songs/60010641.mkv +蔡秋凤-悲情探戈,http://em.21dtv.com/songs/60095917.mkv +佚名-悲情探戈,http://em.21dtv.com/songs/60095412.mkv +张洪波-被情所伤,http://em.21dtv.com/songs/60061049.mkv +佚名-边曲十唱,http://em.21dtv.com/songs/60010465.mkv +潘莎-败犬女生,http://em.21dtv.com/songs/60088253.mkv +影视歌曲-悲情面具,http://em.21dtv.com/songs/60087871.mkv +王腾宇-不求来生,http://em.21dtv.com/songs/60102542.mkv +张秀卿+贺一航-悲情海岸,http://em.21dtv.com/songs/60074638.mkv +江蕙-悲情歌声,http://em.21dtv.com/songs/60010133.mkv +书画-不期而遇,http://em.21dtv.com/songs/60093657.mkv +陆平-不期而遇,http://em.21dtv.com/songs/60081105.mkv +苏小艾-不清的缘,http://em.21dtv.com/songs/60111373.mkv +陈思安-悲情的sakura(无原唱),http://em.21dtv.com/songs/60010128.mkv +佚名-不情不愿,http://em.21dtv.com/songs/60011303.mkv +羽泉-不弃不离,http://em.21dtv.com/songs/60088482.mkv +丁于-不弃不离,http://em.21dtv.com/songs/60011301.mkv +杨语莲-背叛之前,http://em.21dtv.com/songs/60010256.mkv +李翊君-背叛自己,http://em.21dtv.com/songs/60091362.mkv +冯泽雨-别骗自己,http://em.21dtv.com/songs/60010639.mkv +金大为-背叛之后,http://em.21dtv.com/songs/60130807.mkv +DK金大为-背叛之后,http://em.21dtv.com/songs/60129923.mkv +陈琳-别怕有我,http://em.21dtv.com/songs/60010638.mkv +李池湘-鞭炮迎春,http://em.21dtv.com/songs/60091323.mkv +陈慧琳+林保怡-不配相拥,http://em.21dtv.com/songs/60093445.mkv +关喆-半瓶香水,http://em.21dtv.com/songs/60082586.mkv +陈柏宇-别怕失去,http://em.21dtv.com/songs/60010635.mkv +徐佳莹-不怕庆祝(HD),http://em.21dtv.com/songs/10012788.mkv +徐佳莹-不怕庆祝,http://em.21dtv.com/songs/60068136.mkv +纪敏佳-背叛情歌,http://em.21dtv.com/songs/60079933.mkv +动力火车-背叛情歌,http://em.21dtv.com/songs/60010255.mkv +TAKE 6-biggest part of me,http://em.21dtv.com/songs/60000584.mkv +安仕伟-奔跑梦想,http://em.21dtv.com/songs/60108438.mkv +韩庚-背叛灵魂,http://em.21dtv.com/songs/60069250.mkv +一晨-不怕枯萎,http://em.21dtv.com/songs/60112478.mkv +古巨基-不怕寂寞,http://em.21dtv.com/songs/60134972.mkv +堂娜-不怕寂寞,http://em.21dtv.com/songs/60011291.mkv +张国荣-不怕寂寞(演唱会),http://em.21dtv.com/songs/60011290.mkv +金素梅-背叛风情(无原唱),http://em.21dtv.com/songs/60095947.mkv +蓝心湄-不怕付出,http://em.21dtv.com/songs/60011288.mkv +佚名-背叛的舞,http://em.21dtv.com/songs/60010254.mkv +龙啸-背叛承诺,http://em.21dtv.com/songs/60065842.mkv +张三李四-叭噗叭噗,http://em.21dtv.com/songs/60123912.mkv +杨伯致-北漂北漂,http://em.21dtv.com/songs/60074649.mkv +T ARA-bo peep bo peep,http://em.21dtv.com/songs/60062166.mkv +郭美美-不怕不怕,http://em.21dtv.com/songs/60011287.mkv +郑希怡-背叛被判,http://em.21dtv.com/songs/60010253.mkv +小肥-不平安夜,http://em.21dtv.com/songs/60011297.mkv +佚名-bridge over troubled water,http://em.21dtv.com/songs/60000710.mkv +PAUL MCCARTNEY-band on the run,http://em.21dtv.com/songs/60000454.mkv +FAITH HILL-bringing out the elvis,http://em.21dtv.com/songs/60000713.mkv +吉克隽逸-BOSS,http://em.21dtv.com/songs/60123731.mkv +吉克隽逸-BOSS,http://em.21dtv.com/songs/60121484.mkv +S.H.E-北欧神话,http://em.21dtv.com/songs/60010231.mkv +Simple Plan-Boom,http://em.21dtv.com/songs/60132131.mkv +邹晶晶-BOOM,http://em.21dtv.com/songs/60114123.mkv +BRITNEY SPEARS-baby one more time,http://em.21dtv.com/songs/60000409.mkv +佚名-best of my love,http://em.21dtv.com/songs/60000558.mkv +佚名-best of my love(无原唱),http://em.21dtv.com/songs/60000557.mkv +Ravi+San e-BOMB,http://em.21dtv.com/songs/60131099.mkv +刘忻-because of 25,http://em.21dtv.com/songs/60070303.mkv +刘忻-because+of+25,http://em.21dtv.com/songs/60069059.mkv +宋闵浩-BODY,http://em.21dtv.com/songs/60133583.mkv +BLOODHOUND GANG-ballad of chasey lain,http://em.21dtv.com/songs/60000450.mkv +GREEN DAY-boulevard of broken dreams,http://em.21dtv.com/songs/60000670.mkv +Fifth Harmony-BO$$,http://em.21dtv.com/songs/60101764.mkv +佚名-不能言语,http://em.21dtv.com/songs/60011281.mkv +王馨平-伴你一生,http://em.21dtv.com/songs/60009924.mkv +宇希-百年一梦,http://em.21dtv.com/songs/60009792.mkv +彭羚-把你怨恨,http://em.21dtv.com/songs/60089879.mkv +张韶涵-把你信仰,http://em.21dtv.com/songs/60126906.mkv +张韶涵-把你信仰,http://em.21dtv.com/songs/60118572.mkv +金学峰-笨鸟先飞(演唱会),http://em.21dtv.com/songs/60010338.mkv +七郎-包你幸福(无原唱),http://em.21dtv.com/songs/60009948.mkv +李迪文-北南西东,http://em.21dtv.com/songs/60092815.mkv +高夫-把你忘记,http://em.21dtv.com/songs/60009576.mkv +望海高歌-把你忘掉,http://em.21dtv.com/songs/60115211.mkv +魏枫-把你删除,http://em.21dtv.com/songs/60063951.mkv +张赫宣-抱你入怀,http://em.21dtv.com/songs/60093810.mkv +林忆莲-被你牵引,http://em.21dtv.com/songs/60092874.mkv +游鸿明-不能平凡,http://em.21dtv.com/songs/60011271.mkv +泽郎金+真知-把你陪伴,http://em.21dtv.com/songs/60074573.mkv +陈治-比你难过,http://em.21dtv.com/songs/60101194.mkv +包贝尔-包你满意,http://em.21dtv.com/songs/60130132.mkv +罗时丰-不能没你,http://em.21dtv.com/songs/60011265.mkv +法瑷-笨鸟慢飞(无原唱),http://em.21dtv.com/songs/60010337.mkv +杨杰荃-不能明白,http://em.21dtv.com/songs/60097162.mkv +游媄镁-把你留住(无原唱),http://em.21dtv.com/songs/60009572.mkv +冯绍峰-百年轮回,http://em.21dtv.com/songs/60066845.mkv +傅颖-不能哭了,http://em.21dtv.com/songs/60011264.mkv +王旭鹏-百年寂寞,http://em.21dtv.com/songs/60121916.mkv +彭于晏-不能拒绝,http://em.21dtv.com/songs/60091177.mkv +潘裕文-帮你记得,http://em.21dtv.com/songs/60088254.mkv +孙耀威-不能呼吸,http://em.21dtv.com/songs/60011262.mkv +方治权-不能害怕,http://em.21dtv.com/songs/60124000.mkv +邱永传-百年好合,http://em.21dtv.com/songs/60127453.mkv +天喜果组合-百年好合,http://em.21dtv.com/songs/60111797.mkv +丁于+袁哲-百年好合,http://em.21dtv.com/songs/60074604.mkv +郑秀文-百年好合,http://em.21dtv.com/songs/60009791.mkv +狮子合唱团-百年孤寂,http://em.21dtv.com/songs/60132704.mkv +王菲-百年孤寂,http://em.21dtv.com/songs/60009790.mkv +王力宏-比你更好,http://em.21dtv.com/songs/60010377.mkv +曾文-把你fire掉(无原唱),http://em.21dtv.com/songs/60009560.mkv +晓依-把你等待,http://em.21dtv.com/songs/60070515.mkv +佚名-把你唱醉,http://em.21dtv.com/songs/60009566.mkv +正月十五-把你宠坏,http://em.21dtv.com/songs/60097262.mkv +杜德伟-把你宠坏,http://em.21dtv.com/songs/60009567.mkv +苏勒亚其其格-百鸟朝凤,http://em.21dtv.com/songs/60111372.mkv +白挺-伴你成长,http://em.21dtv.com/songs/60120813.mkv +赵鑫-把你抱住,http://em.21dtv.com/songs/60120982.mkv +赵真-百年百色,http://em.21dtv.com/songs/60122146.mkv +周柏豪-百年不合,http://em.21dtv.com/songs/60110941.mkv +棻兰+山风点火-不能不爱(无原唱),http://em.21dtv.com/songs/60011247.mkv +王识贤-彼呢爱你,http://em.21dtv.com/songs/60078903.mkv +江蕙-彼呢爱你,http://em.21dtv.com/songs/60010403.mkv +图腾-巴奈19,http://em.21dtv.com/songs/60009517.mkv +段丽阳-拔苗助长,http://em.21dtv.com/songs/60088170.mkv +李策-不明真相,http://em.21dtv.com/songs/60074746.mkv +詹雅雯-不免想我,http://em.21dtv.com/songs/60069272.mkv +周越洪-不灭星光,http://em.21dtv.com/songs/60099163.mkv +韩一菲+贺一航-白马王子,http://em.21dtv.com/songs/60126435.mkv +南台湾小姑娘-白马王子(无原唱),http://em.21dtv.com/songs/60095488.mkv +蔡枫华-白马王子(演唱会),http://em.21dtv.com/songs/60061037.mkv +EVANESCENCE-bring me to life,http://em.21dtv.com/songs/60062019.mkv +佚名-bring me to life,http://em.21dtv.com/songs/60000712.mkv +S.ENGLISH+L.WEISS-bend me shape me(无原唱),http://em.21dtv.com/songs/60000550.mkv +后弦-笔墨伺候,http://em.21dtv.com/songs/60010409.mkv +缘分心儿-把梦烧光,http://em.21dtv.com/songs/60105292.mkv +郑中基-闭目入神,http://em.21dtv.com/songs/60010428.mkv +朗尼阿彬-巴姆情歌,http://em.21dtv.com/songs/60091283.mkv +詹雅雯-不免骗我,http://em.21dtv.com/songs/60011243.mkv +谢安琪-俾面派对,http://em.21dtv.com/songs/60089472.mkv +BEYOND-俾面派对(演唱会),http://em.21dtv.com/songs/60010410.mkv +佚名-bicara manis menghiris kalbu,http://em.21dtv.com/songs/60000576.mkv +达杰丁增-白玛梅朵,http://em.21dtv.com/songs/60062304.mkv +胡苏-爸妈老了,http://em.21dtv.com/songs/60131748.mkv +益初措-白马恋歌,http://em.21dtv.com/songs/60110434.mkv +傲艺-八面来风,http://em.21dtv.com/songs/60103086.mkv +詹雅雯-半暝两点,http://em.21dtv.com/songs/60074612.mkv +戚宝-不明觉厉,http://em.21dtv.com/songs/60131456.mkv +天织堂-白猫黑猫,http://em.21dtv.com/songs/60009688.mkv +中国力量-宝马会FOLLOW_ME,http://em.21dtv.com/songs/60090479.mkv +蔡黄汝-白马公主,http://em.21dtv.com/songs/60066842.mkv +周冰倩-被梦感召,http://em.21dtv.com/songs/60010297.mkv +许嵩-白马非马,http://em.21dtv.com/songs/60061036.mkv +泳儿-爸妈的话,http://em.21dtv.com/songs/60009638.mkv +霍正奇-b面的歌(无原唱),http://em.21dtv.com/songs/60000762.mkv +胡彦斌-笔墨登场,http://em.21dtv.com/songs/60010408.mkv +梁剑东-爸妈的爱,http://em.21dtv.com/songs/60119728.mkv +谭咏麟-不灭的爱,http://em.21dtv.com/songs/60011244.mkv +李明洋-彼瞑残梦,http://em.21dtv.com/songs/60132543.mkv +谭咏麟-半梦半醒(演唱会),http://em.21dtv.com/songs/60009882.mkv +谭咏麟+李克勤-半梦半醒(演唱会),http://em.21dtv.com/songs/60009881.mkv +侃侃-斑马斑马,http://em.21dtv.com/songs/60116551.mkv +谭维维+妙音汉子-斑马斑马,http://em.21dtv.com/songs/60112250.mkv +宋冬野-斑马斑马,http://em.21dtv.com/songs/60104947.mkv +刘德华-不盲不爱,http://em.21dtv.com/songs/60080643.mkv +GIT FRESH-blow me a kiss,http://em.21dtv.com/songs/60069064.mkv +周祥-别了战友,http://em.21dtv.com/songs/60069256.mkv +陈洁仪+潘协庆-变了真心,http://em.21dtv.com/songs/60010502.mkv +卫东-变脸之王,http://em.21dtv.com/songs/60125247.mkv +何佳骏-别了昨天,http://em.21dtv.com/songs/60074690.mkv +沈芳如-别来这套,http://em.21dtv.com/songs/60010615.mkv +古巨基-玻璃之情,http://em.21dtv.com/songs/60134984.mkv +黄耀明-玻璃之情,http://em.21dtv.com/songs/60095366.mkv +钟舒漫-八零之后,http://em.21dtv.com/songs/60009484.mkv +钟舒漫-八零之后(演唱会),http://em.21dtv.com/songs/60009483.mkv +孙子涵-巴黎夜雨,http://em.21dtv.com/songs/60101319.mkv +冷漠-别来有恙,http://em.21dtv.com/songs/60071783.mkv +佚名-甭来一套,http://em.21dtv.com/songs/60010359.mkv +刘嘉玲-不留余情,http://em.21dtv.com/songs/60011235.mkv +陈文清-别离雨季,http://em.21dtv.com/songs/60110637.mkv +阿梓苏俹-巴黎雨季,http://em.21dtv.com/songs/60088838.mkv +曹宇-玻璃夕阳,http://em.21dtv.com/songs/60010908.mkv +TIMMY-槟榔西施,http://em.21dtv.com/songs/60086462.mkv +佚名-槟榔西施,http://em.21dtv.com/songs/60010806.mkv +郭桂彬-槟榔西施,http://em.21dtv.com/songs/60010805.mkv +董事长乐团-槟榔西施(演唱会),http://em.21dtv.com/songs/60010804.mkv +九天-八零小调,http://em.21dtv.com/songs/60061031.mkv +许哲佩-芭蕾舞者,http://em.21dtv.com/songs/60009524.mkv +陈柏宇-别来无恙,http://em.21dtv.com/songs/60121082.mkv +范玮琪+韦礼安-别来无恙,http://em.21dtv.com/songs/60119923.mkv +陈柏宇-别来无恙,http://em.21dtv.com/songs/60114214.mkv +陈柏宇-别来无恙,http://em.21dtv.com/songs/60113058.mkv +李佳薇-别来无恙,http://em.21dtv.com/songs/60109415.mkv +孙佳-别来无恙,http://em.21dtv.com/songs/60084909.mkv +张宇+张清芳-别来无恙,http://em.21dtv.com/songs/60010614.mkv +黎明-别来无恙,http://em.21dtv.com/songs/60010613.mkv +大地乐团-别来无恙,http://em.21dtv.com/songs/60010612.mkv +陈慧琳-别来无恙,http://em.21dtv.com/songs/60010611.mkv +谢霆锋-别来无恙(演唱会),http://em.21dtv.com/songs/60010610.mkv +陈慧琳-别来无恙(演唱会),http://em.21dtv.com/songs/60010609.mkv +徐熙娣-Blue,http://em.21dtv.com/songs/60106880.mkv +胡彦斌-巴黎铁塔,http://em.21dtv.com/songs/60009516.mkv +张馨予-半路童话,http://em.21dtv.com/songs/60087859.mkv +何超仪+The Uni Boys-80'S再玩,http://em.21dtv.com/songs/60099087.mkv +任贤齐-冰力十足,http://em.21dtv.com/songs/60010834.mkv +任贤齐-冰力十足(演唱会),http://em.21dtv.com/songs/60010833.mkv +许哲佩-玻璃丝袜,http://em.21dtv.com/songs/60010907.mkv +梁子明-玻璃少女,http://em.21dtv.com/songs/60010906.mkv +BOY'Z-玻璃少女,http://em.21dtv.com/songs/60010905.mkv +慕容晓晓-冰冷沙漠,http://em.21dtv.com/songs/60097244.mkv +陈奕迅-不良嗜好,http://em.21dtv.com/songs/60011232.mkv +尚桐-灞柳送别,http://em.21dtv.com/songs/60125444.mkv +黄杰-汴梁人家,http://em.21dtv.com/songs/60063974.mkv +卫东-不老情缘,http://em.21dtv.com/songs/60115736.mkv +自由发挥-宝莱情缘,http://em.21dtv.com/songs/60063963.mkv +吕方-别了秋天(演唱会),http://em.21dtv.com/songs/60010618.mkv +樱花姐妹-悲恋情路,http://em.21dtv.com/songs/60010126.mkv +王莱-不老情歌,http://em.21dtv.com/songs/60121946.mkv +吕小毅-不老情歌,http://em.21dtv.com/songs/60099862.mkv +赵新-别了朋友,http://em.21dtv.com/songs/60124517.mkv +佚名-better love next time,http://em.21dtv.com/songs/60000566.mkv +教练-芭蕾女孩,http://em.21dtv.com/songs/60009523.mkv +江风-八零年代,http://em.21dtv.com/songs/60071763.mkv +青鸟飞鱼-八零年代,http://em.21dtv.com/songs/60069234.mkv +白银时代-波罗密语,http://em.21dtv.com/songs/60063990.mkv +翁虹-变了模样,http://em.21dtv.com/songs/60010498.mkv +彭钧+李柏凝-不了了之,http://em.21dtv.com/songs/60135274.mkv +冰淇-不了了之,http://em.21dtv.com/songs/60011222.mkv +刘珂-860天,http://em.21dtv.com/songs/60119308.mkv +林小龙-别离开我,http://em.21dtv.com/songs/60116965.mkv +田震-别离开我,http://em.21dtv.com/songs/60091765.mkv +黄品源-别离开我(演唱会),http://em.21dtv.com/songs/60010626.mkv +李娜-别离家乡,http://em.21dtv.com/songs/60010623.mkv +周觅-不留纪念,http://em.21dtv.com/songs/60074741.mkv +佚名-巴黎机场,http://em.21dtv.com/songs/60009514.mkv +小人+MC HOTDOG+大支+J.WU-变了好多,http://em.21dtv.com/songs/60101327.mkv +群星-巴拉格宗,http://em.21dtv.com/songs/60106199.mkv +齐旦布+扎西尼玛+兰卡措-巴拉格宗,http://em.21dtv.com/songs/60068092.mkv +张惠妹+王宏恩-巴冷公主,http://em.21dtv.com/songs/60009509.mkv +叶复台-不老骨头,http://em.21dtv.com/songs/60066881.mkv +王维平-巴黎归来,http://em.21dtv.com/songs/60131667.mkv +楼兰+张峰-巴黎归来,http://em.21dtv.com/songs/60131580.mkv +楼兰-巴黎归来,http://em.21dtv.com/songs/60131579.mkv +王维平-巴黎归来,http://em.21dtv.com/songs/60125943.mkv +楼兰+张峰-巴黎归来,http://em.21dtv.com/songs/60125834.mkv +楼兰-巴黎归来,http://em.21dtv.com/songs/60125832.mkv +陈奕迅-八里公路,http://em.21dtv.com/songs/60009475.mkv +梁汉文-八里公路(演唱会),http://em.21dtv.com/songs/60009474.mkv +王杰-别了疯子,http://em.21dtv.com/songs/60010617.mkv +林宇杰-别来烦我,http://em.21dtv.com/songs/60100205.mkv +林子娟-冰冷的心(无原唱),http://em.21dtv.com/songs/60010831.mkv +陈宏庆-八零的我,http://em.21dtv.com/songs/60074562.mkv +李沁怡-别了丹尼,http://em.21dtv.com/songs/60010616.mkv +袁野-八零的歌,http://em.21dtv.com/songs/60063310.mkv +王爱华-别离的爱,http://em.21dtv.com/songs/60124264.mkv +黄思婷+吴俊宏-不老的爱,http://em.21dtv.com/songs/60115549.mkv +刘斌-不老的爱,http://em.21dtv.com/songs/60011217.mkv +许茹芸-巴黎草莓,http://em.21dtv.com/songs/60063947.mkv +糯米团-巴黎草莓,http://em.21dtv.com/songs/60009512.mkv +糯米团-巴黎草莓(演唱会),http://em.21dtv.com/songs/60009511.mkv +王杰-冰冷长街,http://em.21dtv.com/songs/60010832.mkv +涓子-不离不散,http://em.21dtv.com/songs/60130551.mkv +陈威全-不离不弃,http://em.21dtv.com/songs/60134399.mkv +李智-不离不弃,http://em.21dtv.com/songs/60100884.mkv +艾歌+丁童-不离不弃,http://em.21dtv.com/songs/60100405.mkv +黄凯-不离不弃,http://em.21dtv.com/songs/60094359.mkv +戈浪-不离不弃,http://em.21dtv.com/songs/60094123.mkv +沈昊飞-不离不弃,http://em.21dtv.com/songs/60086468.mkv +羽泉-不离不弃(演唱会),http://em.21dtv.com/songs/60084928.mkv +刘威煌-不离不弃,http://em.21dtv.com/songs/60011231.mkv +黄耀明+杨千嬅-不落不明,http://em.21dtv.com/songs/60011238.mkv +杨溢升+刘京永+杨凡-哔哩叭啦,http://em.21dtv.com/songs/60125758.mkv +王洪迪-罢了罢了,http://em.21dtv.com/songs/60121928.mkv +林心如-叭啦叭啦,http://em.21dtv.com/songs/60091442.mkv +张欣奕-不乐不活,http://em.21dtv.com/songs/60102228.mkv +L.B.C-变了不多,http://em.21dtv.com/songs/60107416.mkv +L.B.C.喇叭嘴爱装熟-变了不多,http://em.21dtv.com/songs/60097326.mkv +小贱-别来爱我,http://em.21dtv.com/songs/60074689.mkv +甄妮-别了爱人,http://em.21dtv.com/songs/60088350.mkv +林木-玻璃爱情,http://em.21dtv.com/songs/60010899.mkv +鸿飞-不可阻挡,http://em.21dtv.com/songs/60126460.mkv +卫兰-不可一世,http://em.21dtv.com/songs/60074736.mkv +郑秀文-不可一世,http://em.21dtv.com/songs/60011202.mkv +黎明-不可一世,http://em.21dtv.com/songs/60011201.mkv +谢霆锋-不可一世(演唱会),http://em.21dtv.com/songs/60011200.mkv +侧田-不可一世(演唱会),http://em.21dtv.com/songs/60011199.mkv +BEYOND-不可一世(演唱会),http://em.21dtv.com/songs/60011198.mkv +欧姐-不可以哭,http://em.21dtv.com/songs/60132651.mkv +梁博-不堪一击,http://em.21dtv.com/songs/60116062.mkv +杜元竣-不堪伊击(演唱会),http://em.21dtv.com/songs/60084430.mkv +康康-不堪一击,http://em.21dtv.com/songs/60069270.mkv +张科-不可以爱,http://em.21dtv.com/songs/60115920.mkv +黄伟文-别看小我,http://em.21dtv.com/songs/60010594.mkv +张祥洪-别哭小孩,http://em.21dtv.com/songs/60082624.mkv +大哲-别哭小孩,http://em.21dtv.com/songs/60010605.mkv +丁乐-不哭我们,http://em.21dtv.com/songs/60063999.mkv +黎明-不可推搪,http://em.21dtv.com/songs/60011197.mkv +李治廷-不可思议,http://em.21dtv.com/songs/60093773.mkv +汪苏泷-不可思议,http://em.21dtv.com/songs/60074735.mkv +金莎-不可思议,http://em.21dtv.com/songs/60011196.mkv +草蜢-不可思议,http://em.21dtv.com/songs/60011195.mkv +刘德华-不可失控,http://em.21dtv.com/songs/60011194.mkv +刘玉东-边卡情深,http://em.21dtv.com/songs/60117587.mkv +谢铭佑-彼卡皮箱,http://em.21dtv.com/songs/60132891.mkv +罗文聪-百口莫辩,http://em.21dtv.com/songs/60082584.mkv +黄湘怡-不考虑了,http://em.21dtv.com/songs/60011185.mkv +孟瑞-不可抗力,http://em.21dtv.com/songs/60128975.mkv +安又琪-别靠近我,http://em.21dtv.com/songs/60010595.mkv +周杰伦-不堪回首,http://em.21dtv.com/songs/60090840.mkv +刘惜君-贝壳风铃,http://em.21dtv.com/songs/60010238.mkv +老猫+杨望-八块腹肌,http://em.21dtv.com/songs/60112891.mkv +杜德伟-不可吩咐,http://em.21dtv.com/songs/60092820.mkv +陈雅森+贺世哲-百看不厌,http://em.21dtv.com/songs/60124660.mkv +梅艳芳-不快不吐,http://em.21dtv.com/songs/60092935.mkv +廖晶-别哭宝贝,http://em.21dtv.com/songs/60010599.mkv +韦唯-北京之约,http://em.21dtv.com/songs/60010230.mkv +田震-北京之雪,http://em.21dtv.com/songs/60010229.mkv +梁咏琪-北京之夏,http://em.21dtv.com/songs/60010228.mkv +EVER-必经之路,http://em.21dtv.com/songs/60092173.mkv +孙燕姿-半句再见,http://em.21dtv.com/songs/60123825.mkv +万芳-北极之光,http://em.21dtv.com/songs/60010188.mkv +应豪-北京一夜,http://em.21dtv.com/songs/60091018.mkv +张韶涵-北京一夜,http://em.21dtv.com/songs/60086454.mkv +薛祺+赵姗姗-北京一夜,http://em.21dtv.com/songs/60010226.mkv +陈升+刘佳慧-北京一夜,http://em.21dtv.com/songs/60010225.mkv +郭津彤-八九雁来,http://em.21dtv.com/songs/60114827.mkv +汪峰-不经意间,http://em.21dtv.com/songs/60065859.mkv +梦然-北京烟火,http://em.21dtv.com/songs/60068106.mkv +高一格-别具一格,http://em.21dtv.com/songs/60123376.mkv +堂娜-抱紧一点,http://em.21dtv.com/songs/60010067.mkv +马博+汪茜-北京以北,http://em.21dtv.com/songs/60130897.mkv +罗时丰-甭讲也罢(无原唱),http://em.21dtv.com/songs/60010357.mkv +刘晨洁-北京悉尼,http://em.21dtv.com/songs/60128831.mkv +齐浚羽-北京悉尼,http://em.21dtv.com/songs/60126497.mkv +徐良-北京巷弄,http://em.21dtv.com/songs/60082609.mkv +BOY'Z-拜金小姐(演唱会),http://em.21dtv.com/songs/60009821.mkv +孙燕姿-比较幸福,http://em.21dtv.com/songs/60097168.mkv +于文华-北京小吃,http://em.21dtv.com/songs/60010222.mkv +李宇春-冰菊物雨,http://em.21dtv.com/songs/60088003.mkv +李宇春-冰菊物语,http://em.21dtv.com/songs/60010828.mkv +李宇春-冰菊物语(演唱会),http://em.21dtv.com/songs/60010827.mkv +张智霖+许秋怡-抱紧我心,http://em.21dtv.com/songs/60010064.mkv +张智霖+许秋怡-抱紧我心(演唱会),http://em.21dtv.com/songs/60010063.mkv +黎明-不羁舞台(演唱会),http://em.21dtv.com/songs/60011172.mkv +张伯宏-北京土着,http://em.21dtv.com/songs/60010218.mkv +林依轮-北京童谣,http://em.21dtv.com/songs/60081931.mkv +古天乐-并肩同行,http://em.21dtv.com/songs/60010878.mkv +杨峰-并肩岁月,http://em.21dtv.com/songs/60129275.mkv +张萌萌-北京四月,http://em.21dtv.com/songs/60063969.mkv +万海东-八戒神曲,http://em.21dtv.com/songs/60126568.mkv +阿浩+王杨-北京时间,http://em.21dtv.com/songs/60071778.mkv +曲泉丞-北京时间,http://em.21dtv.com/songs/60010214.mkv +李潮-北京颂歌,http://em.21dtv.com/songs/60070527.mkv +宋祖英-边疆颂歌,http://em.21dtv.com/songs/60061053.mkv +郑莉-北京颂歌,http://em.21dtv.com/songs/60010217.mkv +李双江-北京颂歌,http://em.21dtv.com/songs/60010216.mkv +马旭东-悲剧收场,http://em.21dtv.com/songs/60082597.mkv +张敬轩-悲剧人物,http://em.21dtv.com/songs/60074637.mkv +徐千雅-北京情人,http://em.21dtv.com/songs/60065841.mkv +吕薇-八角飘香,http://em.21dtv.com/songs/60009473.mkv +赵鑫-北京南站,http://em.21dtv.com/songs/60135776.mkv +周慧敏-不羁女神(无原唱),http://em.21dtv.com/songs/60011171.mkv +7朵花+183CLUB-拜金女郎,http://em.21dtv.com/songs/60009820.mkv +翁琳-北京女孩,http://em.21dtv.com/songs/60113950.mkv +望海高歌-北京女孩,http://em.21dtv.com/songs/60113590.mkv +黄勇-北京男孩,http://em.21dtv.com/songs/60089032.mkv +傅颖-悲剧女孩,http://em.21dtv.com/songs/60010117.mkv +芭比-拜金女孩,http://em.21dtv.com/songs/60009819.mkv +刘晓华-不羁年代,http://em.21dtv.com/songs/60121446.mkv +王碎林-背井离乡,http://em.21dtv.com/songs/60124269.mkv +高金龙-背井离乡,http://em.21dtv.com/songs/60110710.mkv +袁泉-北京long stay,http://em.21dtv.com/songs/60010191.mkv +陈慧娴-不羁恋人(演唱会),http://em.21dtv.com/songs/60011170.mkv +释小虎-北京力量,http://em.21dtv.com/songs/60108068.mkv +李索-北京恋歌,http://em.21dtv.com/songs/60112764.mkv +赵真-北京记忆,http://em.21dtv.com/songs/60010212.mkv +常思思-北京精神,http://em.21dtv.com/songs/60096259.mkv +韩琳-北京精神,http://em.21dtv.com/songs/60065840.mkv +童唱-斑鸠呼友,http://em.21dtv.com/songs/60009836.mkv +肖梦婷-北京胡同,http://em.21dtv.com/songs/60094645.mkv +谭晶-北京画廊,http://em.21dtv.com/songs/60080266.mkv +IM乐队-北京姑娘,http://em.21dtv.com/songs/60090409.mkv +佚名-杯酒高歌,http://em.21dtv.com/songs/60010098.mkv +山风点火-不解风情,http://em.21dtv.com/songs/60011182.mkv +顾建华-北京的夜,http://em.21dtv.com/songs/60135988.mkv +易欣+孙莺-北京的雪,http://em.21dtv.com/songs/60010203.mkv +张俊-北京地铁,http://em.21dtv.com/songs/60010206.mkv +佚名-北京的士,http://em.21dtv.com/songs/60010201.mkv +林良欢-磅见的人,http://em.21dtv.com/songs/60130484.mkv +蔡国庆-北京的桥,http://em.21dtv.com/songs/60010200.mkv +蔡国庆-北京的桥(演唱会),http://em.21dtv.com/songs/60010199.mkv +李晓杰-把酒倒满,http://em.21dtv.com/songs/60133802.mkv +李晓杰-把酒倒满,http://em.21dtv.com/songs/60132551.mkv +李创-北京的梦,http://em.21dtv.com/songs/60122842.mkv +李晓杰-把酒倒满,http://em.21dtv.com/songs/60120632.mkv +李晓杰-把酒倒满,http://em.21dtv.com/songs/60116009.mkv +李创-北京的梦,http://em.21dtv.com/songs/60069248.mkv +黄小琥-不讲道理,http://em.21dtv.com/songs/60066880.mkv +许冠杰-杯酒当歌,http://em.21dtv.com/songs/60010097.mkv +邓建明-杯酒当歌,http://em.21dtv.com/songs/60010096.mkv +吴涤清-把酒当歌,http://em.21dtv.com/songs/60009557.mkv +张国荣-不羁的风,http://em.21dtv.com/songs/60011168.mkv +张国荣-不羁的风(演唱会),http://em.21dtv.com/songs/60011167.mkv +陈瑞-半句承诺,http://em.21dtv.com/songs/60097208.mkv +河图-不见长安,http://em.21dtv.com/songs/60061065.mkv +梁立-不假不真,http://em.21dtv.com/songs/60088142.mkv +孙楠-北京榜样,http://em.21dtv.com/songs/60084748.mkv +古巨基-不聚不散,http://em.21dtv.com/songs/60115740.mkv +李炜+江映蓉-不见不散,http://em.21dtv.com/songs/60097161.mkv +李佳璐-不见不散,http://em.21dtv.com/songs/60084922.mkv +崔兰花-不见不散,http://em.21dtv.com/songs/60081462.mkv +柯以敏-不见不散,http://em.21dtv.com/songs/60011179.mkv +BEYOND-不见不散,http://em.21dtv.com/songs/60011178.mkv +谭咏麟-不见不散(演唱会),http://em.21dtv.com/songs/60011177.mkv +孙楠-不见不散(演唱会),http://em.21dtv.com/songs/60011176.mkv +黄贯中-不见不散(演唱会),http://em.21dtv.com/songs/60011175.mkv +回音哥-不见不念,http://em.21dtv.com/songs/60080182.mkv +莫智钦-不见不恋,http://em.21dtv.com/songs/60099465.mkv +许怀欣-半斤八两,http://em.21dtv.com/songs/60009877.mkv +BEYOND-半斤八两,http://em.21dtv.com/songs/60009876.mkv +张学友-半斤八两(演唱会),http://em.21dtv.com/songs/60009875.mkv +温拿乐队-半斤八两(演唱会),http://em.21dtv.com/songs/60009874.mkv +邓紫棋-北京北京,http://em.21dtv.com/songs/60118953.mkv +小沈阳-八戒八戒,http://em.21dtv.com/songs/60115870.mkv +小沈阳-八戒八戒,http://em.21dtv.com/songs/60115106.mkv +李克勤-北京北角,http://em.21dtv.com/songs/60104194.mkv +周澎-北京北京(演),http://em.21dtv.com/songs/60099158.mkv +韩磊-北京北京,http://em.21dtv.com/songs/60098924.mkv +陈羽凡+萧敬腾-北京北京,http://em.21dtv.com/songs/60095141.mkv +尹熙水-北京北京,http://em.21dtv.com/songs/60082605.mkv +杨永聪-北京北京,http://em.21dtv.com/songs/60082604.mkv +黄勇+梁博-北京北京,http://em.21dtv.com/songs/60069247.mkv +张学友-不经不觉(演唱会),http://em.21dtv.com/songs/60011183.mkv +北原山猫-不急不急,http://em.21dtv.com/songs/60011173.mkv +汪峰-北京北京,http://em.21dtv.com/songs/60010193.mkv +天天-不见不爱,http://em.21dtv.com/songs/60103182.mkv +孙露-北京爱情,http://em.21dtv.com/songs/60115805.mkv +小柯-北京爱情(HD),http://em.21dtv.com/songs/10012777.mkv +小柯-北京爱情,http://em.21dtv.com/songs/60097197.mkv +王杰-baby im your man,http://em.21dtv.com/songs/60000404.mkv +佚名-blowing in the wind,http://em.21dtv.com/songs/60000618.mkv +佚名-back in the ussr(演唱会),http://em.21dtv.com/songs/60000427.mkv +LINKIN PARK-burning in the skies,http://em.21dtv.com/songs/60073018.mkv +KIX BROOKS-bring it on home,http://em.21dtv.com/songs/60073006.mkv +HOMME-because im sorry,http://em.21dtv.com/songs/60072950.mkv +B1A4-baby im sorry,http://em.21dtv.com/songs/60065660.mkv +佚名-beautiful in my eyes(无原唱),http://em.21dtv.com/songs/60000497.mkv +金贵晟-baby i love you,http://em.21dtv.com/songs/60082076.mkv +佚名-because i love you,http://em.21dtv.com/songs/60000522.mkv +陈淑桦-because i love you,http://em.21dtv.com/songs/60000521.mkv +GORDON CAMPBELL-because i love you,http://em.21dtv.com/songs/60000520.mkv +杜德伟-because i love you(演唱会),http://em.21dtv.com/songs/60000519.mkv +佚名-because i got high,http://em.21dtv.com/songs/60000518.mkv +MAL KEARNEY-breathe in breathe out,http://em.21dtv.com/songs/60000703.mkv +GRANRODEO-变幻自在のマジカルスター,http://em.21dtv.com/songs/60099662.mkv +冈林-不会遗忘,http://em.21dtv.com/songs/60011162.mkv +宰耿-不会消失,http://em.21dtv.com/songs/60124784.mkv +阿雅-壁花小姐,http://em.21dtv.com/songs/60010445.mkv +陈瑞-白狐-新版,http://em.21dtv.com/songs/60009671.mkv +江美琪-不会太久,http://em.21dtv.com/songs/60011160.mkv +王芷蕾-悲欢岁月,http://em.21dtv.com/songs/60010114.mkv +刘伊心-bf还是fb,http://em.21dtv.com/songs/60071576.mkv +王晓娟-百花深处,http://em.21dtv.com/songs/60084882.mkv +万芳-碧海情天,http://em.21dtv.com/songs/60010437.mkv +佚名-碧海青天,http://em.21dtv.com/songs/60010436.mkv +阿文+刘颖-冰火情歌,http://em.21dtv.com/songs/60135883.mkv +大哲-不悔情歌,http://em.21dtv.com/songs/60011153.mkv +双星-百花齐放,http://em.21dtv.com/songs/60074603.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-百花齐放,http://em.21dtv.com/songs/60074602.mkv +卓依婷-百花齐放,http://em.21dtv.com/songs/60009783.mkv +谭咏麟-背后拍掌,http://em.21dtv.com/songs/60010246.mkv +谭咏麟-背后拍掌(演唱会),http://em.21dtv.com/songs/60010245.mkv +李维-白狐-男声,http://em.21dtv.com/songs/60009670.mkv +潘玮柏-壁虎漫步,http://em.21dtv.com/songs/60010444.mkv +刘金洁-白桦林中,http://em.21dtv.com/songs/60113304.mkv +张智霖+许秋怡-悲欢离合,http://em.21dtv.com/songs/60010113.mkv +刘孟哲-滨海恋歌(演唱会),http://em.21dtv.com/songs/60086461.mkv +梁耀安-碧海狂僧(戏曲),http://em.21dtv.com/songs/60092928.mkv +郑锦昌-碧海狂僧(演唱会),http://em.21dtv.com/songs/60074673.mkv +尹光-碧海狂僧(演唱会),http://em.21dtv.com/songs/60010435.mkv +徐小凤-碧海狂僧(演唱会),http://em.21dtv.com/songs/60010434.mkv +汪苏泷-巴赫旧约,http://em.21dtv.com/songs/60009506.mkv +张莉莎+杨政-白鹤降临,http://em.21dtv.com/songs/60103285.mkv +西域胡杨-琥珀之泪,http://em.21dtv.com/songs/60034201.mkv +佚名-百花公主,http://em.21dtv.com/songs/60009782.mkv +谢天笑-不会改变,http://em.21dtv.com/songs/60110528.mkv +潘宝新-不会分手,http://em.21dtv.com/songs/60062796.mkv +陈奕迅-八号风球,http://em.21dtv.com/songs/60113048.mkv +光良-不会分离,http://em.21dtv.com/songs/60011156.mkv +陈小春-不欢而散,http://em.21dtv.com/songs/60011146.mkv +陈小春-不欢而散(演唱会),http://em.21dtv.com/songs/60011145.mkv +游子组合-不会低头,http://em.21dtv.com/songs/60107875.mkv +SS501-不会胆怯,http://em.21dtv.com/songs/60082648.mkv +赵学而-不悔当初,http://em.21dtv.com/songs/60011152.mkv +中川翔子-綼 混沌,http://em.21dtv.com/songs/60086457.mkv +梁咏琪-拔河比赛,http://em.21dtv.com/songs/60009529.mkv +李晓东-不惑爱情,http://em.21dtv.com/songs/60124082.mkv +王力宏-不管怎样(演唱会),http://em.21dtv.com/songs/60011128.mkv +杨千嬅-悲歌之王,http://em.21dtv.com/songs/60010112.mkv +林一峰-悲歌之王(演唱会),http://em.21dtv.com/songs/60010111.mkv +张竞予-捕光者说,http://em.21dtv.com/songs/60085373.mkv +蔡琴-白光组曲,http://em.21dtv.com/songs/60009665.mkv +张煜枫-不攻自破,http://em.21dtv.com/songs/60123938.mkv +张煜枫-不攻自破,http://em.21dtv.com/songs/60122738.mkv +阎维文-报告祖国,http://em.21dtv.com/songs/60010045.mkv +刘斌-报告祖国,http://em.21dtv.com/songs/60010044.mkv +张江-北国之春,http://em.21dtv.com/songs/60091126.mkv +佚名-北国之春,http://em.21dtv.com/songs/60010178.mkv +叶启田-北国之春,http://em.21dtv.com/songs/60010177.mkv +蒋大为-北国之春,http://em.21dtv.com/songs/60010176.mkv +余天-北国之春(演唱会),http://em.21dtv.com/songs/60010175.mkv +邓丽君-北国之春(演唱会),http://em.21dtv.com/songs/60010174.mkv +刘波-不敢再爱,http://em.21dtv.com/songs/60061064.mkv +己龙-百鬼夜行,http://em.21dtv.com/songs/60123883.mkv +降央卓玛-边关有我,http://em.21dtv.com/songs/60074674.mkv +翁航融-不过意外,http://em.21dtv.com/songs/60011137.mkv +钟嘉欣-不顾一切,http://em.21dtv.com/songs/60113028.mkv +张惠妹-不顾一切,http://em.21dtv.com/songs/60011116.mkv +巫奇-不顾一切,http://em.21dtv.com/songs/60011115.mkv +王识贤-不顾一切,http://em.21dtv.com/songs/60011114.mkv +林志颖-不顾一切,http://em.21dtv.com/songs/60011113.mkv +黄乙玲-不顾一切,http://em.21dtv.com/songs/60011112.mkv +梁静茹-半个月亮,http://em.21dtv.com/songs/60009869.mkv +陈明-半个月亮,http://em.21dtv.com/songs/60009868.mkv +丁当-不够勇敢,http://em.21dtv.com/songs/60099058.mkv +-不够勇敢,http://em.21dtv.com/songs/60090380.mkv +秋裤大叔-八个小时,http://em.21dtv.com/songs/60128271.mkv +储毅-别跟我装,http://em.21dtv.com/songs/60125146.mkv +佚名-八个娃娃,http://em.21dtv.com/songs/60009464.mkv +王雯-不够温柔(舞曲版),http://em.21dtv.com/songs/60084921.mkv +王雯-不够温柔,http://em.21dtv.com/songs/60011110.mkv +J.CAIN+S.PERRY+N.J.-be good to yourself(无原唱),http://em.21dtv.com/songs/60000470.mkv +关淑怡-把歌谈心,http://em.21dtv.com/songs/60092321.mkv +吴若希-把歌谈心,http://em.21dtv.com/songs/60082569.mkv +孙淑媚-甭搁提起,http://em.21dtv.com/songs/60095512.mkv +汪苏泷-不过是想,http://em.21dtv.com/songs/60074727.mkv +张栋梁-不甘示弱,http://em.21dtv.com/songs/60011095.mkv +陈咏谦-不赶时间,http://em.21dtv.com/songs/60131931.mkv +陈中-不敢say goodbye,http://em.21dtv.com/songs/60011098.mkv +潘协庆-不该认真,http://em.21dtv.com/songs/60088239.mkv +王紫伊-不过如此,http://em.21dtv.com/songs/60074726.mkv +莫少聪-半个情人,http://em.21dtv.com/songs/60009864.mkv +黄凯芹-不敢去爱,http://em.21dtv.com/songs/60011103.mkv +余天龙+谢莉婷-不甘你醉,http://em.21dtv.com/songs/60108301.mkv +黄妃-不甘你走,http://em.21dtv.com/songs/60011093.mkv +刘玉翠-不关你事,http://em.21dtv.com/songs/60011120.mkv +花哥-半个男人,http://em.21dtv.com/songs/60080560.mkv +张秀卿+罗时丰-不甘你哭,http://em.21dtv.com/songs/60011091.mkv +陈小汉+曾慧-别馆盟心(戏曲),http://em.21dtv.com/songs/60093418.mkv +刘子涵-不敢面对,http://em.21dtv.com/songs/60116582.mkv +于童-把根留住,http://em.21dtv.com/songs/60090509.mkv +佚名-把根留住,http://em.21dtv.com/songs/60009554.mkv +童安格-把根留住,http://em.21dtv.com/songs/60009553.mkv +金悦-把根留住,http://em.21dtv.com/songs/60009552.mkv +郑志勇-不甘离开,http://em.21dtv.com/songs/60127459.mkv +严爵-悲观乐观(演唱会),http://em.21dtv.com/songs/60071777.mkv +陈少平-不该来过,http://em.21dtv.com/songs/60069267.mkv +陈嘉唯-半罐可乐,http://em.21dtv.com/songs/60009873.mkv +南拳妈妈-不该结束,http://em.21dtv.com/songs/60011071.mkv +谈芳兵-北国江南,http://em.21dtv.com/songs/60061047.mkv +孙露-不甘寂寞,http://em.21dtv.com/songs/60135107.mkv +苏打绿-不甘寂寞,http://em.21dtv.com/songs/60084920.mkv +张宇-不甘寂寞,http://em.21dtv.com/songs/60011088.mkv +王中平-不甘寂寞,http://em.21dtv.com/songs/60011087.mkv +CONNIE吕莘-不甘寂寞,http://em.21dtv.com/songs/60011086.mkv +王琳玲-边关军魂,http://em.21dtv.com/songs/60108723.mkv +甘萍-边关军魂,http://em.21dtv.com/songs/60069255.mkv +群星-般工号子,http://em.21dtv.com/songs/60091862.mkv +B.A.D-半个海洋,http://em.21dtv.com/songs/60009862.mkv +刘隋山-不该放手,http://em.21dtv.com/songs/60071790.mkv +陈天红-不该放手,http://em.21dtv.com/songs/60066879.mkv +办桌二人组-不甘放手,http://em.21dtv.com/songs/60063997.mkv +南方二重唱-不告而别,http://em.21dtv.com/songs/60011106.mkv +高胜美-不告而别,http://em.21dtv.com/songs/60011105.mkv +成泉-北国的冬,http://em.21dtv.com/songs/60131450.mkv +佚名-big girls dont cry,http://em.21dtv.com/songs/60000581.mkv +罗中旭-不改初衷,http://em.21dtv.com/songs/60081941.mkv +罗中旭-不改初衷(演唱会),http://em.21dtv.com/songs/60011084.mkv +庄心妍-不够诚实,http://em.21dtv.com/songs/60129044.mkv +庄心妍-不够诚实,http://em.21dtv.com/songs/60120494.mkv +BY2-不够成熟,http://em.21dtv.com/songs/60011109.mkv +孙盛希-不该不该,http://em.21dtv.com/songs/60103202.mkv +张雨生-不管不管,http://em.21dtv.com/songs/60011122.mkv +苏永康-不敢不敢,http://em.21dtv.com/songs/60011100.mkv +六甲乐团-半工半读,http://em.21dtv.com/songs/60009872.mkv +庾澄庆-报告班长,http://em.21dtv.com/songs/60061045.mkv +曾春年-败给爱情,http://em.21dtv.com/songs/60112729.mkv +李剑-半个爱情,http://em.21dtv.com/songs/60009861.mkv +杨坤-不敢爱你,http://em.21dtv.com/songs/60074724.mkv +千 昌夫-北国の春,http://em.21dtv.com/songs/60010173.mkv +邓丽君-北国の春(演唱会),http://em.21dtv.com/songs/60010172.mkv +卓依婷-捕风捉影,http://em.21dtv.com/songs/60010945.mkv +J.A.M-捕风捉影,http://em.21dtv.com/songs/60010944.mkv +糖兄妹-别烦着我,http://em.21dtv.com/songs/60065850.mkv +刘烨+张译-不法之徒,http://em.21dtv.com/songs/60125206.mkv +谢安琪-八分之三,http://em.21dtv.com/songs/60093172.mkv +天堂乐队-北方之都,http://em.21dtv.com/songs/60120437.mkv +草蜢-暴风一族(演唱会),http://em.21dtv.com/songs/60074632.mkv +张国荣-暴风一族(演唱会),http://em.21dtv.com/songs/60010086.mkv +舞曲-白发亲娘(快四),http://em.21dtv.com/songs/60090137.mkv +王庆爽+咏峰-白发亲娘(演唱会),http://em.21dtv.com/songs/60070517.mkv +彭丽媛-白发亲娘,http://em.21dtv.com/songs/60009656.mkv +刘芳-白发亲娘,http://em.21dtv.com/songs/60009655.mkv +毕夏-暴风女王,http://em.21dtv.com/songs/60121850.mkv +李维真-北方南山,http://em.21dtv.com/songs/60118687.mkv +木吉吉-北方女孩,http://em.21dtv.com/songs/60010164.mkv +庞博-缤纷年代,http://em.21dtv.com/songs/60071785.mkv +荒山亮-百夫军歌,http://em.21dtv.com/songs/60065835.mkv +佚名-北方机场,http://em.21dtv.com/songs/60095402.mkv +太极乐队-暴风红唇(演唱会),http://em.21dtv.com/songs/60010083.mkv +郑欣宜-半份关心,http://em.21dtv.com/songs/60009860.mkv +伊然-冰封的心,http://em.21dtv.com/songs/60123622.mkv +陈百强-冰封的心,http://em.21dtv.com/songs/60010822.mkv +佚名-北方的星,http://em.21dtv.com/songs/60010162.mkv +齐秦-北方的狼,http://em.21dtv.com/songs/60010160.mkv +高枫-北方的狼(演唱会),http://em.21dtv.com/songs/60010159.mkv +王莹-北方的湖,http://em.21dtv.com/songs/60068102.mkv +佚名-拜访春天,http://em.21dtv.com/songs/60009817.mkv +万芳-拜访春天,http://em.21dtv.com/songs/60009816.mkv +李蕙敏-不分不散,http://em.21dtv.com/songs/60125721.mkv +潘越云-奔放奔放,http://em.21dtv.com/songs/60090065.mkv +张星唯-冰封爱恋,http://em.21dtv.com/songs/60129088.mkv +天喜果-啵儿一个,http://em.21dtv.com/songs/60121539.mkv +S.I.N.G女团-不二情书,http://em.21dtv.com/songs/60121305.mkv +何慕男-别尔那呦,http://em.21dtv.com/songs/60010575.mkv +B.I-BE I,http://em.21dtv.com/songs/60115567.mkv +张惠妹-不二法门(演唱会),http://em.21dtv.com/songs/60011056.mkv +SHANIA TWAIN-black eyes blue tears,http://em.21dtv.com/songs/60000596.mkv +徐仁国-BeBe,http://em.21dtv.com/songs/60131429.mkv +DAVICHI-八二八二,http://em.21dtv.com/songs/60009460.mkv +顽童MJ116+茫去+听不到-Beats Myself And I,http://em.21dtv.com/songs/60101570.mkv +天天-不懂自己(HD),http://em.21dtv.com/songs/10012758.mkv +王丽达-报答祖国,http://em.21dtv.com/songs/60082593.mkv +丁晓红-报答祖国,http://em.21dtv.com/songs/60010042.mkv +张致恒-彼得与王,http://em.21dtv.com/songs/60069253.mkv +麦克白乐团-蹦的一声,http://em.21dtv.com/songs/60106487.mkv +BEYOND-报答一生,http://em.21dtv.com/songs/60010041.mkv +大火-别掉眼泪,http://em.21dtv.com/songs/60104011.mkv +秀兰玛雅-冰岛渔夫,http://em.21dtv.com/songs/60010810.mkv +罗时丰-博多夜船,http://em.21dtv.com/songs/60074709.mkv +佚名-博多夜船,http://em.21dtv.com/songs/60010927.mkv +易琴-别丢下我,http://em.21dtv.com/songs/60130379.mkv +游子组合-本兜心经,http://em.21dtv.com/songs/60107886.mkv +关喆-不懂小姐,http://em.21dtv.com/songs/60103889.mkv +李克勤-不懂温柔,http://em.21dtv.com/songs/60011053.mkv +黄立行-不断跳舞,http://em.21dtv.com/songs/60011055.mkv +陈洁仪-逼的太紧,http://em.21dtv.com/songs/60010363.mkv +吴雨霏-逼得太紧(演唱会),http://em.21dtv.com/songs/60010362.mkv +周杰伦-半岛铁盒,http://em.21dtv.com/songs/60009853.mkv +TOM JONES+THE CARDIG-burning down the house,http://em.21dtv.com/songs/60000730.mkv +陈伟霆-baby dont cry,http://em.21dtv.com/songs/60060758.mkv +苏琛-不懂抒情,http://em.21dtv.com/songs/60127332.mkv +张钧喻-冰冻三尺,http://em.21dtv.com/songs/60010820.mkv +满江+叶蓓-冰点柔情,http://em.21dtv.com/songs/60074701.mkv +王莹-宝黛情殇,http://em.21dtv.com/songs/60119826.mkv +关正杰+卢冠廷-蚌的启示,http://em.21dtv.com/songs/60092316.mkv +CLC-变得漂亮,http://em.21dtv.com/songs/60120200.mkv +佚名-beo dat may trol,http://em.21dtv.com/songs/60000553.mkv +叶启田-宝岛曼波,http://em.21dtv.com/songs/60074544.mkv +张秀卿-宝岛曼波(无原唱),http://em.21dtv.com/songs/60069427.mkv +卓依婷-宝岛曼波,http://em.21dtv.com/songs/60060806.mkv +新宝岛康乐队-宝岛曼波(演唱会),http://em.21dtv.com/songs/60010010.mkv +何晟铭-遍地狼烟,http://em.21dtv.com/songs/60063976.mkv +艾伦+王嘉诚+佐依-病毒流感,http://em.21dtv.com/songs/60134152.mkv +鲍勃-布达拉宫,http://em.21dtv.com/songs/60127614.mkv +解亚娇-布达拉宫,http://em.21dtv.com/songs/60074815.mkv +郎玛-布达拉宫,http://em.21dtv.com/songs/60011819.mkv +澎恰恰-变调恋歌,http://em.21dtv.com/songs/60010515.mkv +郭采洁-笨的可以,http://em.21dtv.com/songs/60010335.mkv +棉花糖-遍地开花,http://em.21dtv.com/songs/60063975.mkv +苏慧伦-变得坚强,http://em.21dtv.com/songs/60010489.mkv +罗美玲-不懂寂寞,http://em.21dtv.com/songs/60100382.mkv +湘佛莲-并蒂花开,http://em.21dtv.com/songs/60084916.mkv +王祖蓝-别低估我,http://em.21dtv.com/songs/60010571.mkv +业枫-变得更好,http://em.21dtv.com/songs/60105542.mkv +梁洛施-变的更好,http://em.21dtv.com/songs/60010490.mkv +沙宝亮-比多更多,http://em.21dtv.com/songs/60010373.mkv +李玟-baby对不起,http://em.21dtv.com/songs/60000417.mkv +一单上达-不得不服,http://em.21dtv.com/songs/60099050.mkv +杨树林+石头+男光音组合-不得不爱,http://em.21dtv.com/songs/60135400.mkv +杨树林+石头+男光音组合-不得不爱,http://em.21dtv.com/songs/60133848.mkv +潘玮柏+弦子-不得不爱,http://em.21dtv.com/songs/60011035.mkv +谢霆锋-不曾走远,http://em.21dtv.com/songs/60092103.mkv +君竹-冰城之恋,http://em.21dtv.com/songs/60063989.mkv +胡力-冰城之恋,http://em.21dtv.com/songs/60010809.mkv +王紫-半城烟雨,http://em.21dtv.com/songs/60103461.mkv +许嵩-半城烟沙,http://em.21dtv.com/songs/60096495.mkv +沙宝亮-半城月光,http://em.21dtv.com/songs/60081381.mkv +郭津彤-白茶仙子,http://em.21dtv.com/songs/60114832.mkv +曾航生-彼此欣赏(演唱会),http://em.21dtv.com/songs/60010400.mkv +奕丹-别出心裁,http://em.21dtv.com/songs/60010569.mkv +李恕权-彼此相爱(无原唱),http://em.21dtv.com/songs/60010399.mkv +S.H.E-保持微笑,http://em.21dtv.com/songs/60010022.mkv +MIKE POSNER-bow chicka wow wow,http://em.21dtv.com/songs/60000671.mkv +佚名-baby come to me,http://em.21dtv.com/songs/60000391.mkv +乐缤灵+韦小天-不唱情歌,http://em.21dtv.com/songs/60110828.mkv +姚贝娜-不唱情歌,http://em.21dtv.com/songs/60094867.mkv +NMB48-北川谦二,http://em.21dtv.com/songs/60074642.mkv +孟丰敏-冰城恋雪,http://em.21dtv.com/songs/60099943.mkv +谢楠+大左-保持联络,http://em.21dtv.com/songs/60010021.mkv +宇桐非-保持距离,http://em.21dtv.com/songs/60097351.mkv +管罄-保持距离(无原唱),http://em.21dtv.com/songs/60010020.mkv +单色凌+本兮-变成回忆,http://em.21dtv.com/songs/60062312.mkv +荒山亮-边城好汉,http://em.21dtv.com/songs/60106231.mkv +胡彦斌-不曾后悔,http://em.21dtv.com/songs/60011020.mkv +群星-百尺竿头,http://em.21dtv.com/songs/60009767.mkv +周杰伦-本草纲目,http://em.21dtv.com/songs/60010323.mkv +谭圳-不曾放弃,http://em.21dtv.com/songs/60062979.mkv +罗钢-不辞而别,http://em.21dtv.com/songs/60011030.mkv +谢承佑-保持低调,http://em.21dtv.com/songs/60127407.mkv +艾丽雅-保持单身,http://em.21dtv.com/songs/60134151.mkv +温岚-不吵不闹,http://em.21dtv.com/songs/60011027.mkv +林冠吟-不成比例,http://em.21dtv.com/songs/60011028.mkv +伍思凯-better city better life,http://em.21dtv.com/songs/60000564.mkv +陈小宇-掰扯掰扯,http://em.21dtv.com/songs/60107316.mkv +TRACE ADKINS-brown chicken brown cow,http://em.21dtv.com/songs/60073012.mkv +陈雨霈-苞菜阿爸,http://em.21dtv.com/songs/60009958.mkv +B2Y-be cra2y,http://em.21dtv.com/songs/60000469.mkv +田跃君-笨笨猪猪,http://em.21dtv.com/songs/60010333.mkv +刘嘉亮-宝贝之歌,http://em.21dtv.com/songs/60127762.mkv +石文-磅礴之光,http://em.21dtv.com/songs/60097474.mkv +王杰-不必再躲,http://em.21dtv.com/songs/60011006.mkv +严当当-半边月亮,http://em.21dtv.com/songs/60107464.mkv +严当当-半边月亮(演唱会),http://em.21dtv.com/songs/60074610.mkv +凤娘-宝贝心肝,http://em.21dtv.com/songs/60010004.mkv +傅振辉-步步为营,http://em.21dtv.com/songs/60070560.mkv +巴萨亚-芭比娃娃,http://em.21dtv.com/songs/60127940.mkv +李春波-不必挽留,http://em.21dtv.com/songs/60011003.mkv +王心凌-baby baby tell me,http://em.21dtv.com/songs/60000379.mkv +梁汉文-半边生命,http://em.21dtv.com/songs/60107840.mkv +轻松玩乐团-不必守候,http://em.21dtv.com/songs/60011000.mkv +孙辉+蓝若兮-蹦蹦时代,http://em.21dtv.com/songs/60094459.mkv +李辉-表白说唱,http://em.21dtv.com/songs/60131511.mkv +车婉婉-不必刹掣,http://em.21dtv.com/songs/60010994.mkv +LLOYD BANKS+JUELZ SA-beamer benz or bentley,http://em.21dtv.com/songs/60000486.mkv +飘飘-芭比女王,http://em.21dtv.com/songs/60128593.mkv +泳儿-百变女王(演唱会),http://em.21dtv.com/songs/60063956.mkv +何嘉莉-bb保你大,http://em.21dtv.com/songs/60000462.mkv +佚名-不必勉强,http://em.21dtv.com/songs/60010998.mkv +齐秦-不必勉强,http://em.21dtv.com/songs/60010997.mkv +张靓颖-宝贝妈妈,http://em.21dtv.com/songs/60121684.mkv +文君-爸爸妈妈,http://em.21dtv.com/songs/60119597.mkv +李荣浩-爸爸妈妈,http://em.21dtv.com/songs/60118690.mkv +文君-爸爸妈妈,http://em.21dtv.com/songs/60104166.mkv +张丹-爸爸妈妈,http://em.21dtv.com/songs/60084876.mkv +超泉RZ组合-爸爸妈妈,http://em.21dtv.com/songs/60084875.mkv +王贞心-爸爸妈妈,http://em.21dtv.com/songs/60082572.mkv +韩琳-爸爸妈妈,http://em.21dtv.com/songs/60065832.mkv +张秀卿-爸爸妈妈,http://em.21dtv.com/songs/60009629.mkv +佚名-爸爸妈妈,http://em.21dtv.com/songs/60009628.mkv +王蓉-爸爸妈妈,http://em.21dtv.com/songs/60009627.mkv +乔军-爸爸妈妈,http://em.21dtv.com/songs/60009626.mkv +BEYOND-爸爸妈妈,http://em.21dtv.com/songs/60009625.mkv +谢安琪-爸爸妈妈(演唱会),http://em.21dtv.com/songs/60009624.mkv +黄家强-爸爸妈妈(演唱会),http://em.21dtv.com/songs/60009623.mkv +AT17-爸爸妈妈(演唱会),http://em.21dtv.com/songs/60009622.mkv +张克帆-bye bye my love,http://em.21dtv.com/songs/60000757.mkv +吴梵-bye bye my love,http://em.21dtv.com/songs/60000756.mkv +陈奕+付辛博+沈建宏+唐振刚+刘忻+任容萱+传颖-北鼻麻吉,http://em.21dtv.com/songs/60101555.mkv +黑龙-半边恋人,http://em.21dtv.com/songs/60136037.mkv +轲然-宝贝老婆,http://em.21dtv.com/songs/60099514.mkv +海生-不必流泪,http://em.21dtv.com/songs/60010996.mkv +佚名-巴比伦河,http://em.21dtv.com/songs/60009504.mkv +佚名-巴比伦河(迪斯科),http://em.21dtv.com/songs/60009503.mkv +5566-宝贝快睡,http://em.21dtv.com/songs/60009995.mkv +5566-宝贝快乐,http://em.21dtv.com/songs/60087171.mkv +段博文+赵晓璐-抱抱靠靠,http://em.21dtv.com/songs/60112817.mkv +金子嫣+麦德罗-宝贝接招,http://em.21dtv.com/songs/60009994.mkv +张冬玲-半壁江山,http://em.21dtv.com/songs/60118553.mkv +JAKE OWEN-barefoot blue jean night,http://em.21dtv.com/songs/60063538.mkv +SUNBOY'Z-步步进逼,http://em.21dtv.com/songs/60011842.mkv +童唱-波比换牙,http://em.21dtv.com/songs/60010885.mkv +李奕强-不必回头,http://em.21dtv.com/songs/60062606.mkv +钟彩媚-宝贝回家,http://em.21dtv.com/songs/60108083.mkv +MATZKA-宝贝坏坏,http://em.21dtv.com/songs/60074622.mkv +双星-步步高升,http://em.21dtv.com/songs/60074817.mkv +朱咪咪-步步高升(演唱会),http://em.21dtv.com/songs/60011840.mkv +王祖蓝-百变怪咖,http://em.21dtv.com/songs/60071769.mkv +萧亚轩-不必发言,http://em.21dtv.com/songs/60091975.mkv +唐笑-八八烦恼,http://em.21dtv.com/songs/60009452.mkv +周璇-不变的心,http://em.21dtv.com/songs/60011017.mkv +苏芮-不变的心,http://em.21dtv.com/songs/60011016.mkv +赵传-不必等我,http://em.21dtv.com/songs/60090224.mkv +遥远-爸爸的手,http://em.21dtv.com/songs/60096503.mkv +郭斯炫-不必多说,http://em.21dtv.com/songs/60074716.mkv +巴萨亚-芭比的梦,http://em.21dtv.com/songs/60135178.mkv +钟镇涛+钟懿-爸爸的话,http://em.21dtv.com/songs/60068093.mkv +芭比-芭比电话,http://em.21dtv.com/songs/60009522.mkv +谢金燕-波波的茶,http://em.21dtv.com/songs/60010886.mkv +褚桐羽-爸爸的爱,http://em.21dtv.com/songs/60129597.mkv +佚名-不变的爱,http://em.21dtv.com/songs/60011011.mkv +钱红-百变成妖,http://em.21dtv.com/songs/60082583.mkv +黄大炜+沙宝亮-宝贝别走,http://em.21dtv.com/songs/60134498.mkv +安神-宝贝别走,http://em.21dtv.com/songs/60074621.mkv +童唱-baa baa black sheep,http://em.21dtv.com/songs/60000372.mkv +TWINS-baa baa black sheep,http://em.21dtv.com/songs/60000371.mkv +陈宇凡-不必抱歉,http://em.21dtv.com/songs/60010993.mkv +尚杰-宝贝不哭,http://em.21dtv.com/songs/60132402.mkv +王玉玺-爸爸别哭,http://em.21dtv.com/songs/60125934.mkv +阿军-宝贝不哭,http://em.21dtv.com/songs/60118125.mkv +庞晓宇-宝贝不哭,http://em.21dtv.com/songs/60009988.mkv +阿弟仔-宝贝别哭,http://em.21dtv.com/songs/60009987.mkv +陈一玲-宝贝宝贝,http://em.21dtv.com/songs/60128513.mkv +陈光标-爸爸爸爸,http://em.21dtv.com/songs/60123281.mkv +崔天琪+钟伟强-爸比宝贝,http://em.21dtv.com/songs/60097324.mkv +孙萌-宝宝贝贝,http://em.21dtv.com/songs/60090938.mkv +陆虎-宝贝宝贝,http://em.21dtv.com/songs/60088846.mkv +VENGABOYS-boom boom boom boom,http://em.21dtv.com/songs/60082109.mkv +戚剑强-宝贝爱人,http://em.21dtv.com/songs/60071775.mkv +束方琪+张小清-爸爸爱你,http://em.21dtv.com/songs/60131519.mkv +佚名-be bop a lula,http://em.21dtv.com/songs/60000463.mkv +朱立峰-拜拜爱过,http://em.21dtv.com/songs/60082585.mkv +SARA-拜拜爱过,http://em.21dtv.com/songs/60061039.mkv +刘嘉玲-被爱捉弄,http://em.21dtv.com/songs/60066864.mkv +林心如-被爱捉弄,http://em.21dtv.com/songs/60010288.mkv +牙牙乐+小小浩+赵琬颖-把爱终结,http://em.21dtv.com/songs/60116129.mkv +小小浩-把爱终结,http://em.21dtv.com/songs/60111824.mkv +TWINS-不爱之恩,http://em.21dtv.com/songs/60123553.mkv +黄小琥-不爱最大,http://em.21dtv.com/songs/60082640.mkv +弦子-不爱最大,http://em.21dtv.com/songs/60010982.mkv +秦杨+方馨-不爱英雄,http://em.21dtv.com/songs/60010981.mkv +常皓+陆平-被爱掩埋,http://em.21dtv.com/songs/60063970.mkv +林俊杰-不爱也好,http://em.21dtv.com/songs/60091430.mkv +佚名-不爱也罢,http://em.21dtv.com/songs/60010978.mkv +徐佳莹-不安小姐,http://em.21dtv.com/songs/60102260.mkv +何东-博爱天下,http://em.21dtv.com/songs/60120303.mkv +谢霆锋-不爱跳舞,http://em.21dtv.com/songs/60010972.mkv +采凤翔-被爱套牢,http://em.21dtv.com/songs/60062234.mkv +李宇春-beauty and the beast,http://em.21dtv.com/songs/60000514.mkv +于洋-彼岸时光,http://em.21dtv.com/songs/60123610.mkv +侃侃-把爱深藏,http://em.21dtv.com/songs/60094407.mkv +侃侃-把爱深藏(演唱会),http://em.21dtv.com/songs/60074569.mkv +冷漠-把爱深藏,http://em.21dtv.com/songs/60063949.mkv +旋子谢有才-博爱人生,http://em.21dtv.com/songs/60086465.mkv +旋子+谢有才-博爱人生,http://em.21dtv.com/songs/60086464.mkv +草蜢-不安全感,http://em.21dtv.com/songs/60010987.mkv +段千寻-不爱你走,http://em.21dtv.com/songs/60010970.mkv +李玟-不爱你了,http://em.21dtv.com/songs/60010969.mkv +卓依婷-不爱你啊,http://em.21dtv.com/songs/60010968.mkv +孙燕姿-被爱迷惑,http://em.21dtv.com/songs/60090933.mkv +朱娜-把爱留住,http://em.21dtv.com/songs/60087969.mkv +胡灵-不爱拉到(演唱会),http://em.21dtv.com/songs/60071787.mkv +胡灵-不爱拉倒,http://em.21dtv.com/songs/60010961.mkv +南天-不爱就散,http://em.21dtv.com/songs/60093652.mkv +陈瑞-彼岸花语,http://em.21dtv.com/songs/60134412.mkv +瑶瑶-彼岸花开,http://em.21dtv.com/songs/60121964.mkv +王雁-把爱给你,http://em.21dtv.com/songs/60128244.mkv +阎维文+王雁-把爱给你,http://em.21dtv.com/songs/60117305.mkv +邱暐议-比爱更爱,http://em.21dtv.com/songs/60089502.mkv +黄征-比爱更爱,http://em.21dtv.com/songs/60010367.mkv +怕黑-把爱放逐,http://em.21dtv.com/songs/60070512.mkv +沉志仲-把爱放下,http://em.21dtv.com/songs/60074565.mkv +F.I.R-把爱放开,http://em.21dtv.com/songs/60009533.mkv +易秒英-把爱传递,http://em.21dtv.com/songs/60009532.mkv +张信哲-边爱边走,http://em.21dtv.com/songs/60010455.mkv +Anton Powers+Pixie Lott-Baby,http://em.21dtv.com/songs/60134637.mkv +刘庆辉-Baby,http://em.21dtv.com/songs/60133403.mkv +平安-Baby,http://em.21dtv.com/songs/60125469.mkv +Justin Bieber-Baby,http://em.21dtv.com/songs/60121257.mkv +乔冬宇+吴海燕-被爱包围,http://em.21dtv.com/songs/60122467.mkv +张静-不爱不伤,http://em.21dtv.com/songs/60121686.mkv +邓丽欣-不爱不散,http://em.21dtv.com/songs/60070539.mkv +茅小勇-不爱不恨,http://em.21dtv.com/songs/60102666.mkv +康正昊-不爱不归,http://em.21dtv.com/songs/60133638.mkv +蔡日轩-不爱别的,http://em.21dtv.com/songs/60061060.mkv +JUSTIN BIEBER+NICKI MINAJ-beauty and a beat,http://em.21dtv.com/songs/60072948.mkv +沈丹丹-爱在昨天,http://em.21dtv.com/songs/60131604.mkv +唐美华-爱在指尖,http://em.21dtv.com/songs/60122627.mkv +赵骏-爱在曾经,http://em.21dtv.com/songs/60082559.mkv +张天甫-爱在中国,http://em.21dtv.com/songs/60108494.mkv +枫舞+晓依-爱在永远,http://em.21dtv.com/songs/60113730.mkv +文婷-爱在延续,http://em.21dtv.com/songs/60123992.mkv +谢迪-爱在一心,http://em.21dtv.com/songs/60096130.mkv +叶胜钦+林秀琴-爱在一起,http://em.21dtv.com/songs/60074538.mkv +林佳仪+陈晓东-爱只有你,http://em.21dtv.com/songs/60009259.mkv +刘牧-爱在雨季,http://em.21dtv.com/songs/60069227.mkv +高翊菲-爱在远方,http://em.21dtv.com/songs/60117396.mkv +海威-爱在原地,http://em.21dtv.com/songs/60113815.mkv +次真降措-爱在亚丁,http://em.21dtv.com/songs/60009215.mkv +云龙-爱在西藏,http://em.21dtv.com/songs/60068085.mkv +佚名-爱在旋转,http://em.21dtv.com/songs/60009214.mkv +蔡勇-爱在夕阳,http://em.21dtv.com/songs/60009200.mkv +易影峰-爱在心田,http://em.21dtv.com/songs/60069226.mkv +孟杨-爱在夏天,http://em.21dtv.com/songs/60009205.mkv +刘孟哲-爱在茜廉,http://em.21dtv.com/songs/60131202.mkv +刘思媛-爱在心里,http://em.21dtv.com/songs/60110026.mkv +于爽+王燕-爱在心间,http://em.21dtv.com/songs/60084864.mkv +常健鸿-爱在心间,http://em.21dtv.com/songs/60062249.mkv +谭晶-爱在心间,http://em.21dtv.com/songs/60009209.mkv +望海高歌-爱在心怀,http://em.21dtv.com/songs/60131485.mkv +枫舞+王爱华-爱在心怀,http://em.21dtv.com/songs/60105191.mkv +徐宁-爱在西湖,http://em.21dtv.com/songs/60070508.mkv +容祖儿+李克勤-爱在香港(演唱会),http://em.21dtv.com/songs/60009208.mkv +小琴儿-爱在西藏,http://em.21dtv.com/songs/60065822.mkv +文欣-爱在万州,http://em.21dtv.com/songs/60009197.mkv +张纹铭-爱之物语,http://em.21dtv.com/songs/60071757.mkv +佚名-爱之无奈,http://em.21dtv.com/songs/60009252.mkv +刘欢-爱之无奈,http://em.21dtv.com/songs/60009251.mkv +刘欢-爱之无奈(演唱会),http://em.21dtv.com/songs/60009250.mkv +苏振华+戴梅君-爱在天涯,http://em.21dtv.com/songs/60134165.mkv +谭晶-爱在他乡,http://em.21dtv.com/songs/60009194.mkv +王莹-爱在天堂,http://em.21dtv.com/songs/60009196.mkv +许罡-爱在天国,http://em.21dtv.com/songs/60110525.mkv +汪明荃-爱在天边,http://em.21dtv.com/songs/60091596.mkv +孟文豪-爱在天边,http://em.21dtv.com/songs/60071754.mkv +古品-爱在沈阳,http://em.21dtv.com/songs/60065820.mkv +罗孝勇-爱怎说起,http://em.21dtv.com/songs/60107112.mkv +蔚雨芯-爱在深秋,http://em.21dtv.com/songs/60068082.mkv +谭咏麟-爱在深秋,http://em.21dtv.com/songs/60009189.mkv +陈慧娴-爱在深秋,http://em.21dtv.com/songs/60009188.mkv +谭咏麟+李克勤-爱在深秋(演唱会),http://em.21dtv.com/songs/60009187.mkv +陈慧娴-爱在深秋(演唱会),http://em.21dtv.com/songs/60009186.mkv +谭咏麟-爱在深秋(HD演唱会),http://em.21dtv.com/songs/60009185.mkv +江蕙-爱着什么,http://em.21dtv.com/songs/60009235.mkv +徐晶晶-爱在四季,http://em.21dtv.com/songs/60094115.mkv +萧煌奇-爱这首歌,http://em.21dtv.com/songs/60080356.mkv +周兴哲+杨凯琳-爱在圣诞,http://em.21dtv.com/songs/60107590.mkv +尧尧-爱在圣诞,http://em.21dtv.com/songs/60009190.mkv +周兴哲-爱在身边,http://em.21dtv.com/songs/60133481.mkv +周兴哲-爱在身边,http://em.21dtv.com/songs/60131265.mkv +佚名-爱总是爱(无原唱),http://em.21dtv.com/songs/60009283.mkv +庞龙-爱在人间,http://em.21dtv.com/songs/60087775.mkv +满文军-爱在人间,http://em.21dtv.com/songs/60062756.mkv +泳儿-爱自然爱,http://em.21dtv.com/songs/60009277.mkv +闫凤梅-爱在七夕,http://em.21dtv.com/songs/60108950.mkv +甜美真-爱在秋天,http://em.21dtv.com/songs/60098662.mkv +刘舫-爱在平落,http://em.21dtv.com/songs/60116596.mkv +刘舫-爱在平乐,http://em.21dtv.com/songs/60115726.mkv +毛阿敏-爱在平凡,http://em.21dtv.com/songs/60125844.mkv +谭圳+吴谦-爱在南天,http://em.21dtv.com/songs/60074536.mkv +李玉雯-爱在那年,http://em.21dtv.com/songs/60119663.mkv +金波-爱在鸟巢(演唱会),http://em.21dtv.com/songs/60062520.mkv +王又萱-爱在蔓延,http://em.21dtv.com/songs/60135540.mkv +天孪兄弟-爱这么难,http://em.21dtv.com/songs/60009223.mkv +岩光渤-爱在勐龙,http://em.21dtv.com/songs/60124793.mkv +杨春丽+梦杨-爱在梦里,http://em.21dtv.com/songs/60114618.mkv +李佳羽-爱怎么了,http://em.21dtv.com/songs/60103349.mkv +高登-爱在梦里,http://em.21dtv.com/songs/60084863.mkv +吴是闳-爱怎么会,http://em.21dtv.com/songs/60109219.mkv +国巍-爱在兰州,http://em.21dtv.com/songs/60128933.mkv +徐誉滕+肖燕-爱在旅途,http://em.21dtv.com/songs/60069225.mkv +雪域格桑+别那-爱在奎香,http://em.21dtv.com/songs/60117364.mkv +姜育恒-爱在酒中(演唱会),http://em.21dtv.com/songs/60009171.mkv +司文+丢丢-爱在囧途,http://em.21dtv.com/songs/60074534.mkv +黑虎-爱在江南,http://em.21dtv.com/songs/60009170.mkv +许茹芸-爱在黑夜,http://em.21dtv.com/songs/60009164.mkv +万芳-阿兹海默,http://em.21dtv.com/songs/60070445.mkv +望海高歌-爱在红尘,http://em.21dtv.com/songs/60117792.mkv +蔡婧-爱在花城,http://em.21dtv.com/songs/60107195.mkv +门丽-爱中过枪,http://em.21dtv.com/songs/60102846.mkv +良一-爱在港岸,http://em.21dtv.com/songs/60112165.mkv +甄妮-爱在飞扬,http://em.21dtv.com/songs/60009160.mkv +石康军+阿信-爱中飞行,http://em.21dtv.com/songs/60009263.mkv +杨烈-爱在沸腾,http://em.21dtv.com/songs/60009161.mkv +莫龙丹-爱在发烧,http://em.21dtv.com/songs/60099467.mkv +董事长乐团-爱在发烧,http://em.21dtv.com/songs/60095882.mkv +罗百吉-爱在发烧,http://em.21dtv.com/songs/60009159.mkv +许嘉文-爱在当下,http://em.21dtv.com/songs/60135734.mkv +邰正宵-爱在当下,http://em.21dtv.com/songs/60131869.mkv +许嘉文-爱在当下,http://em.21dtv.com/songs/60130741.mkv +严波-爱在冬天,http://em.21dtv.com/songs/60095257.mkv +元强-爱在冬天,http://em.21dtv.com/songs/60093894.mkv +杨成瑞-爱在当时,http://em.21dtv.com/songs/60084862.mkv +蓝芷儿-爱在冬眠,http://em.21dtv.com/songs/60069224.mkv +冷漠-爱在冬季,http://em.21dtv.com/songs/60063942.mkv +天人一合-爱在草原,http://em.21dtv.com/songs/60119392.mkv +蒋婴-爱在草原,http://em.21dtv.com/songs/60114021.mkv +王莹-爱在草原,http://em.21dtv.com/songs/60109538.mkv +宋健+洪禄云-爱在草原,http://em.21dtv.com/songs/60104054.mkv +范海荣-爱在草原,http://em.21dtv.com/songs/60094265.mkv +郭玲-爱在草原,http://em.21dtv.com/songs/60086438.mkv +英格玛海荣-爱在草原,http://em.21dtv.com/songs/60063941.mkv +张恺彤-爱在春天,http://em.21dtv.com/songs/60082557.mkv +俞灏明-爱在春天,http://em.21dtv.com/songs/60082556.mkv +红月-爱在唱歌,http://em.21dtv.com/songs/60071752.mkv +信-爱在边缘,http://em.21dtv.com/songs/60082555.mkv +大巴山民歌团-爱在巴山,http://em.21dtv.com/songs/60132327.mkv +孙楠-爱在北京,http://em.21dtv.com/songs/60009157.mkv +艾可儿+铁面人-爱之悲哀,http://em.21dtv.com/songs/60084865.mkv +周渝民-爱在爱你,http://em.21dtv.com/songs/60009155.mkv +周渝民-爱在爱你(演唱会),http://em.21dtv.com/songs/60009154.mkv +宋孟君-暗影主宰,http://em.21dtv.com/songs/60133579.mkv +苏晴-爱已走远,http://em.21dtv.com/songs/60082552.mkv +乐之翼-爱已走远,http://em.21dtv.com/songs/60009085.mkv +张信哲-爱与折磨,http://em.21dtv.com/songs/60009139.mkv +何凡-爱已着魔,http://em.21dtv.com/songs/60009084.mkv +高峰-奥运中国,http://em.21dtv.com/songs/60088994.mkv +云飞儿-爱与愿违,http://em.21dtv.com/songs/60128758.mkv +高慧君-爱与愿违,http://em.21dtv.com/songs/60009138.mkv +望海高歌-爱已远逝,http://em.21dtv.com/songs/60129205.mkv +李宇春-爱有引力,http://em.21dtv.com/songs/60116900.mkv +朱宇-爱已厌倦,http://em.21dtv.com/songs/60121755.mkv +林俊杰-爱与希望,http://em.21dtv.com/songs/60009137.mkv +林俊杰-爱与希望(演唱会),http://em.21dtv.com/songs/60009136.mkv +刘德华-爱意香槟,http://em.21dtv.com/songs/60009091.mkv +吴俊宏-哎呦喂呀,http://em.21dtv.com/songs/60126690.mkv +张震岳-唉唷喂呀,http://em.21dtv.com/songs/60094903.mkv +张清芳-哎哟喂呀,http://em.21dtv.com/songs/60067050.mkv +张清芳-哎呦喂呀,http://em.21dtv.com/songs/60006889.mkv +佚名-奥运万岁,http://em.21dtv.com/songs/60009445.mkv +伊龙-哎呀我去,http://em.21dtv.com/songs/60122477.mkv +戴洛-are you with me,http://em.21dtv.com/songs/60000329.mkv +张清芳-哎哟喂开,http://em.21dtv.com/songs/60067321.mkv +广智-爱有天意,http://em.21dtv.com/songs/60074530.mkv +艾图兰-阿依图兰,http://em.21dtv.com/songs/60006840.mkv +许嵩-爱已停机,http://em.21dtv.com/songs/60009083.mkv +栗雅馨-爱已上瘾,http://em.21dtv.com/songs/60068080.mkv +黄嘉千-爱已升天,http://em.21dtv.com/songs/60009081.mkv +谢世超-爱已撕碎,http://em.21dtv.com/songs/60131812.mkv +金久哲-爱已失联,http://em.21dtv.com/songs/60127492.mkv +庄心妍-爱要舍得,http://em.21dtv.com/songs/60098332.mkv +小峰峰-爱有时差,http://em.21dtv.com/songs/60099967.mkv +刀刀刀-暗夜如花,http://em.21dtv.com/songs/60110871.mkv +王旭鹏-爱有千秋,http://em.21dtv.com/songs/60121915.mkv +迪克牛仔-爱有奇迹,http://em.21dtv.com/songs/60107256.mkv +艺心+嘉悦-爱有奇迹(演唱会),http://em.21dtv.com/songs/60009108.mkv +赵鑫-爱已欠费,http://em.21dtv.com/songs/60061025.mkv +萧亚轩-爱已缺堤,http://em.21dtv.com/songs/60088569.mkv +萧希榆-遨游蓬莱,http://em.21dtv.com/songs/60009425.mkv +DOT ROTTEN-are you not entertained,http://em.21dtv.com/songs/60065597.mkv +张惠妹-爱已蔓延,http://em.21dtv.com/songs/60009080.mkv +林淑鹃-爱有明天,http://em.21dtv.com/songs/60091484.mkv +张爱-哎哟妈妈,http://em.21dtv.com/songs/60089280.mkv +民歌-哎呦妈妈,http://em.21dtv.com/songs/60088183.mkv +女声-哎哟妈妈,http://em.21dtv.com/songs/60006886.mkv +男声-哎哟妈妈,http://em.21dtv.com/songs/60006885.mkv +哈里+怡音-哎哟妈妈(演唱会),http://em.21dtv.com/songs/60006884.mkv +佚名-哎哟妈妈(恰恰),http://em.21dtv.com/songs/60006883.mkv +张爱-哎呀妈妈(演唱会),http://em.21dtv.com/songs/60006871.mkv +林保怡-爱欲迷宫,http://em.21dtv.com/songs/60009140.mkv +孙艳-暗夜流星,http://em.21dtv.com/songs/60126781.mkv +李梓菡-暗夜留香,http://em.21dtv.com/songs/60065827.mkv +TOP TWINZ-爱有灵犀,http://em.21dtv.com/songs/60009104.mkv +T.R.Y-爱有灵犀,http://em.21dtv.com/songs/60009103.mkv +佚名-are you lonesome tonight,http://em.21dtv.com/songs/60000325.mkv +阿坤-爱有来生,http://em.21dtv.com/songs/60108961.mkv +刘锡明-爱已落空,http://em.21dtv.com/songs/60090732.mkv +苏永康-爱已离开,http://em.21dtv.com/songs/60009079.mkv +奥迪-爱已降温,http://em.21dtv.com/songs/60074526.mkv +梦然-爱已结束,http://em.21dtv.com/songs/60128142.mkv +孙家山-爱已结束,http://em.21dtv.com/songs/60104039.mkv +BRAIN-爱已结束,http://em.21dtv.com/songs/60061024.mkv +萧亚轩-爱已决堤,http://em.21dtv.com/songs/60091990.mkv +方育琪-爱伊恨伊,http://em.21dtv.com/songs/60081622.mkv +MR.-爱与和平,http://em.21dtv.com/songs/60098044.mkv +希亚-爱与和平,http://em.21dtv.com/songs/60009126.mkv +希亚+董炯-爱与和平,http://em.21dtv.com/songs/60009125.mkv +陈慧琳-爱与和平(演唱会),http://em.21dtv.com/songs/60009124.mkv +CASSADEE POPE-are you happy now,http://em.21dtv.com/songs/60072901.mkv +佚名-are you happy now,http://em.21dtv.com/songs/60000324.mkv +冷漠-爱一个人,http://em.21dtv.com/songs/60081030.mkv +张秀卿+江志丰-爱一个人,http://em.21dtv.com/songs/60074523.mkv +斯琴高丽-爱一个人,http://em.21dtv.com/songs/60009039.mkv +李克勤+陈慧琳-爱一个人,http://em.21dtv.com/songs/60009038.mkv +李克勤-爱一个人(演唱会),http://em.21dtv.com/songs/60009037.mkv +陈慧琳+李克勤-爱一个人(HD演唱会),http://em.21dtv.com/songs/60009036.mkv +黄勇-哎呀姑娘,http://em.21dtv.com/songs/60074289.mkv +云飞-阿依古丽,http://em.21dtv.com/songs/60110834.mkv +甜妹紫烟-爱要过河,http://em.21dtv.com/songs/60096416.mkv +田正-爱与分担,http://em.21dtv.com/songs/60134025.mkv +由美-爱已打烊,http://em.21dtv.com/songs/60111307.mkv +黄格选-爱有多远,http://em.21dtv.com/songs/60009101.mkv +张仰华+杜绍颖-艾伊达尼,http://em.21dtv.com/songs/60127959.mkv +邓丽欣-爱与妒忌[消伴],http://em.21dtv.com/songs/60100975.mkv +阿悄-爱与妒忌,http://em.21dtv.com/songs/60094734.mkv +苏朵-爱有多久,http://em.21dtv.com/songs/60074528.mkv +GALA-爱要多久,http://em.21dtv.com/songs/60074521.mkv +游鸿明-爱已到底(演唱会),http://em.21dtv.com/songs/60009072.mkv +伊雪-爱要懂得,http://em.21dtv.com/songs/60009012.mkv +望海高歌-爱有多长,http://em.21dtv.com/songs/60129206.mkv +尹光-奥运超人(演唱会),http://em.21dtv.com/songs/60009442.mkv +龙晓-爱已成灰,http://em.21dtv.com/songs/60128652.mkv +伊雪-爱已成灰,http://em.21dtv.com/songs/60009071.mkv +马常宝-爱已成歌,http://em.21dtv.com/songs/60129797.mkv +王柯淇-爱要彻底,http://em.21dtv.com/songs/60074520.mkv +王括-爱已不在,http://em.21dtv.com/songs/60123003.mkv +安俊宁-爱已不在,http://em.21dtv.com/songs/60099949.mkv +小昭-爱已不再,http://em.21dtv.com/songs/60089821.mkv +和汇慧+王梓同-爱已不在,http://em.21dtv.com/songs/60081781.mkv +男人唐潮-奥运北京,http://em.21dtv.com/songs/60071761.mkv +天籁天-爱永不变,http://em.21dtv.com/songs/60126752.mkv +雨鸣-爱与被爱,http://em.21dtv.com/songs/60112373.mkv +谢霆锋-爱与不爱,http://em.21dtv.com/songs/60092116.mkv +吴贞-爱与不爱,http://em.21dtv.com/songs/60009117.mkv +黄威尔-爱与不爱,http://em.21dtv.com/songs/60009116.mkv +韩晶-爱与不爱,http://em.21dtv.com/songs/60009115.mkv +佚名-爱与被爱,http://em.21dtv.com/songs/60009114.mkv +王浩信+梁晴晴-爱与被爱,http://em.21dtv.com/songs/60009113.mkv +SNH48-哎哟爱哟,http://em.21dtv.com/songs/60128700.mkv +张皓玥-哎呀爱呀,http://em.21dtv.com/songs/60107722.mkv +柳飞-爱哟哎哟,http://em.21dtv.com/songs/60100895.mkv +张文绮-哎呦哎呦,http://em.21dtv.com/songs/60074290.mkv +张文绮-唉呦唉呦,http://em.21dtv.com/songs/60071705.mkv +BY2-爱丫爱丫,http://em.21dtv.com/songs/60009007.mkv +江蕙-唉哟唉哟,http://em.21dtv.com/songs/60006898.mkv +蟑螂乐队-哎呦哎呦,http://em.21dtv.com/songs/60006888.mkv +郭宴-爱与哀愁,http://em.21dtv.com/songs/60127483.mkv +童安格-爱与哀愁,http://em.21dtv.com/songs/60009112.mkv +子祺-爱心永在,http://em.21dtv.com/songs/60087643.mkv +莫熙儿-爱悬一线,http://em.21dtv.com/songs/60097397.mkv +陈威全-爱小于三,http://em.21dtv.com/songs/60082549.mkv +旺福乐团-爱洗虾米,http://em.21dtv.com/songs/60084856.mkv +李玉和-爱心相连,http://em.21dtv.com/songs/60074519.mkv +杨志-爱像小船,http://em.21dtv.com/songs/60086437.mkv +郑雪儿-爱像太阳(无原唱),http://em.21dtv.com/songs/60008989.mkv +佚名-阿细跳月,http://em.21dtv.com/songs/60006832.mkv +陈依桐-爱心同行,http://em.21dtv.com/songs/60068078.mkv +ING-爱像傻瓜,http://em.21dtv.com/songs/60008988.mkv +徐子崴-安心莫惧,http://em.21dtv.com/songs/60131432.mkv +春雷-阿西里西,http://em.21dtv.com/songs/60130380.mkv +许千千-爱像流星,http://em.21dtv.com/songs/60074517.mkv +容中尔甲-阿咻罗罗,http://em.21dtv.com/songs/60087696.mkv +张萌-爱像空气,http://em.21dtv.com/songs/60087839.mkv +张可欣+周冠宇-爱像空气,http://em.21dtv.com/songs/60008985.mkv +Apple5-爱像咖啡,http://em.21dtv.com/songs/60090390.mkv +群星-爱心互联,http://em.21dtv.com/songs/60009001.mkv +李梓菡-安心放手,http://em.21dtv.com/songs/60074549.mkv +傅振辉-爱相扶持,http://em.21dtv.com/songs/60070503.mkv +黎齐-爱像毒药,http://em.21dtv.com/songs/60008984.mkv +姚斯婷-爱像大海,http://em.21dtv.com/songs/60113387.mkv +李心洁-爱像大海,http://em.21dtv.com/songs/60008983.mkv +双子组合-爱心传递(演唱会),http://em.21dtv.com/songs/60009000.mkv +阿兰-爱未走远,http://em.21dtv.com/songs/60100538.mkv +杨乃文-爱我自己,http://em.21dtv.com/songs/60097382.mkv +柯以敏-爱无止尽,http://em.21dtv.com/songs/60008969.mkv +刘德华-爱我之后,http://em.21dtv.com/songs/60092355.mkv +孔莹-爱我中华,http://em.21dtv.com/songs/60087646.mkv +宋祖英-爱我中华,http://em.21dtv.com/songs/60008945.mkv +陈思思+张燕-爱我中华(演唱会),http://em.21dtv.com/songs/60008944.mkv +祁隆-爱我中国,http://em.21dtv.com/songs/60098677.mkv +詹曼铃-爱无值得,http://em.21dtv.com/songs/60008968.mkv +马雨贤-爱未远离,http://em.21dtv.com/songs/60008874.mkv +罗永娟-阿佤新歌,http://em.21dtv.com/songs/60088442.mkv +元若蓝-爱×无限大,http://em.21dtv.com/songs/60089141.mkv +元若蓝-爱无限大,http://em.21dtv.com/songs/60087346.mkv +PETER+GORDEN-a world without love,http://em.21dtv.com/songs/60000083.mkv +JACK WHITE-another way to die,http://em.21dtv.com/songs/60000298.mkv +许浩-爱无所求,http://em.21dtv.com/songs/60074515.mkv +MIXION-爱你为什么,http://em.21dtv.com/songs/60070469.mkv +佚名-and when she danced,http://em.21dtv.com/songs/60000252.mkv +PABLO BRYSON-a whole new world,http://em.21dtv.com/songs/60000080.mkv +荣忠豪-爱温暖爱,http://em.21dtv.com/songs/60124418.mkv +林晏如-爱袜落心,http://em.21dtv.com/songs/60008870.mkv +江若琳-爱无可忍(演唱会),http://em.21dtv.com/songs/60008956.mkv +毕玉凝-爱我家园,http://em.21dtv.com/songs/60065814.mkv +李欣+尹青山+丁晓峪+张曙亮-爱我井陉,http://em.21dtv.com/songs/60100147.mkv +顾莉雅-爱无尽头,http://em.21dtv.com/songs/60008955.mkv +望海高歌-爱无结局,http://em.21dtv.com/songs/60108550.mkv +阿牛-爱我久久,http://em.21dtv.com/songs/60008919.mkv +L.NYRO-and when i die(无原唱),http://em.21dtv.com/songs/60000251.mkv +吴克群-爱我恨我,http://em.21dtv.com/songs/60008917.mkv +卓文萱-爱我好吗(HD),http://em.21dtv.com/songs/10012719.mkv +卓文萱-爱我好吗,http://em.21dtv.com/songs/60097383.mkv +苏慧伦-爱我好吗,http://em.21dtv.com/songs/60089456.mkv +谢金燕-爱我好呒,http://em.21dtv.com/songs/60063927.mkv +佚名-爱我好吗(无原唱),http://em.21dtv.com/songs/60008916.mkv +林姗+翁立友-爱无后悔,http://em.21dtv.com/songs/60008951.mkv +刘欢-爱我黄河,http://em.21dtv.com/songs/60008918.mkv +孙淑媚-爱无公平,http://em.21dtv.com/songs/60074512.mkv +降央卓玛-阿瓦古丽,http://em.21dtv.com/songs/60074284.mkv +腾格尔-阿瓦古丽,http://em.21dtv.com/songs/60006826.mkv +斯琴高丽+顾峰-爱无隔绝,http://em.21dtv.com/songs/60063932.mkv +萧敬腾-爱无反顾,http://em.21dtv.com/songs/60109603.mkv +高向鹏-爱无分寸,http://em.21dtv.com/songs/60008949.mkv +于文文-爱我的人,http://em.21dtv.com/songs/60105566.mkv +心跳男孩-爱我多好,http://em.21dtv.com/songs/60091220.mkv +王力宏-爱我的歌,http://em.21dtv.com/songs/60008897.mkv +童话里不是骗人的-爱我别走,http://em.21dtv.com/songs/60128283.mkv +帕朗+萧敬腾-爱我别走,http://em.21dtv.com/songs/60111041.mkv +李琪-爱我别走,http://em.21dtv.com/songs/60103370.mkv +黄崇旭-爱我别走,http://em.21dtv.com/songs/60097384.mkv +范玮琪+王矜霖-爱我别走,http://em.21dtv.com/songs/60095077.mkv +周笔畅+李宇春+何炅-爱我别走,http://em.21dtv.com/songs/60089747.mkv +张韶涵-爱我别走,http://em.21dtv.com/songs/60081750.mkv +草蜢-爱我别走(演唱会),http://em.21dtv.com/songs/60074504.mkv +JKAI-爱我别走,http://em.21dtv.com/songs/60070502.mkv +韩庚-爱我别走(演唱会),http://em.21dtv.com/songs/60062424.mkv +周杰伦-爱我别走(演唱会),http://em.21dtv.com/songs/60008890.mkv +张震岳-爱我别走(演唱会),http://em.21dtv.com/songs/60008889.mkv +张学友-爱我别走(演唱会),http://em.21dtv.com/songs/60008888.mkv +梁咏琪-爱我别走(演唱会),http://em.21dtv.com/songs/60008887.mkv +光良-爱我别走(演唱会),http://em.21dtv.com/songs/60008886.mkv +叶瑷菱+孙建平-爱我别走(无原唱),http://em.21dtv.com/songs/60008885.mkv +弦子-爱无不胜,http://em.21dtv.com/songs/60095199.mkv +潘春春-爱我不够,http://em.21dtv.com/songs/60084854.mkv +佚名-爱我不爱,http://em.21dtv.com/songs/60008892.mkv +陈慧琳-爱我不爱,http://em.21dtv.com/songs/60008891.mkv +杨海彪-爱我爱我,http://em.21dtv.com/songs/60119695.mkv +任贤齐+莫文蔚-爱我爱我,http://em.21dtv.com/songs/60008883.mkv +范逸臣-爱太遥远,http://em.21dtv.com/songs/60008862.mkv +温兆伦-爱他一生,http://em.21dtv.com/songs/60008847.mkv +曾慧+邓志驹-庵堂相认,http://em.21dtv.com/songs/60009344.mkv +ACE OF BASE-all that she wants,http://em.21dtv.com/songs/60000176.mkv +BLINK 182-all the small things,http://em.21dtv.com/songs/60000178.mkv +江智民-爱太任性,http://em.21dtv.com/songs/60008858.mkv +佚名-庵堂认母,http://em.21dtv.com/songs/60009341.mkv +林欣彤-aint no sunshine(演唱会),http://em.21dtv.com/songs/60063522.mkv +罗志祥-爱投罗网,http://em.21dtv.com/songs/60081935.mkv +BOYZONE-all that i need,http://em.21dtv.com/songs/60000175.mkv +商天娥-as time goes by,http://em.21dtv.com/songs/60000346.mkv +[Group] +groupName=十六万歌曲MV等 - 38 +蔡琴-as time goes by(演唱会),http://em.21dtv.com/songs/60000345.mkv +ROLLING STONES-as tears go by,http://em.21dtv.com/songs/60000344.mkv +MONICA+RICK ROSS-anything to find you,http://em.21dtv.com/songs/60062113.mkv +佚名-a time for us,http://em.21dtv.com/songs/60000074.mkv +徐怀钰-爱太沉重,http://em.21dtv.com/songs/60091195.mkv +黄清元-爱她爱她,http://em.21dtv.com/songs/60090359.mkv +佚名-aint that a shame,http://em.21dtv.com/songs/60000129.mkv +黎明-爱天爱地,http://em.21dtv.com/songs/60008866.mkv +艾怡良-爱是这样,http://em.21dtv.com/songs/60128336.mkv +艾怡良-爱是这样,http://em.21dtv.com/songs/60127324.mkv +艾怡良-爱是这样,http://em.21dtv.com/songs/60123105.mkv +袁小迪-爱伤着心,http://em.21dtv.com/songs/60008625.mkv +关智斌+梁洛施-爱神之箭,http://em.21dtv.com/songs/60008749.mkv +520女子演唱组-爱神之箭,http://em.21dtv.com/songs/60008748.mkv +巫奇-爱上自己,http://em.21dtv.com/songs/60008737.mkv +魏如萱-暗室之后,http://em.21dtv.com/songs/60101580.mkv +张宇-爱是真的,http://em.21dtv.com/songs/60092594.mkv +虞笙-爱是野兽,http://em.21dtv.com/songs/60061017.mkv +记言恺+阿喜(林育品)-爱上游乐,http://em.21dtv.com/songs/60112957.mkv +杜丽莎-爱是永恒,http://em.21dtv.com/songs/60132573.mkv +郑淳元-爱是永恒,http://em.21dtv.com/songs/60121002.mkv +李幸倪-爱是永恒,http://em.21dtv.com/songs/60114602.mkv +古巨基-爱是永恒,http://em.21dtv.com/songs/60109207.mkv +秋裤大叔-爱似烟火,http://em.21dtv.com/songs/60108768.mkv +谭芷昀-爱是永恒,http://em.21dtv.com/songs/60105383.mkv +苏永康+许志安-爱是永恒,http://em.21dtv.com/songs/60093078.mkv +泳儿-爱是永恒,http://em.21dtv.com/songs/60092965.mkv +容祖儿-爱是永恒,http://em.21dtv.com/songs/60092529.mkv +刘美麟-爱是引号,http://em.21dtv.com/songs/60082539.mkv +李丽霞-爱是永恒(演唱会),http://em.21dtv.com/songs/60074496.mkv +张学友-爱是永恒,http://em.21dtv.com/songs/60008819.mkv +张学友-爱是永恒(演唱会),http://em.21dtv.com/songs/60008818.mkv +张学友+许慧欣-爱是永恒(演唱会),http://em.21dtv.com/songs/60008816.mkv +贺燕-爱似月光,http://em.21dtv.com/songs/60134249.mkv +哈辉-爱是阳光,http://em.21dtv.com/songs/60008807.mkv +丁晓红-爱上宜昌,http://em.21dtv.com/songs/60106567.mkv +侯奕辰+刘尊+解晓慧-爱是相遇,http://em.21dtv.com/songs/60121387.mkv +侯奕辰-爱是相遇,http://em.21dtv.com/songs/60121386.mkv +林昕阳-爱是信仰,http://em.21dtv.com/songs/60110307.mkv +一单上达-爱是信仰,http://em.21dtv.com/songs/60099056.mkv +任贤齐-爱上夏天,http://em.21dtv.com/songs/60113248.mkv +姜玉阳-爱属虚构,http://em.21dtv.com/songs/60114473.mkv +曾航生-爱是无罪,http://em.21dtv.com/songs/60008804.mkv +佚名-爱是无涯,http://em.21dtv.com/songs/60008803.mkv +刘美君-爱是无涯,http://em.21dtv.com/songs/60008802.mkv +叶丽仪-爱是无涯(演唱会),http://em.21dtv.com/songs/60008801.mkv +刘美君-爱是无涯(演唱会),http://em.21dtv.com/songs/60008800.mkv +张惠妹-爱是唯一,http://em.21dtv.com/songs/60008797.mkv +许安安+沈建宏-爱是唯一,http://em.21dtv.com/songs/60008796.mkv +吴涤清-爱是唯一,http://em.21dtv.com/songs/60008795.mkv +汤灿-昂首未来,http://em.21dtv.com/songs/60009416.mkv +刘冯合欢-爱是我的,http://em.21dtv.com/songs/60123669.mkv +佚名-爱是我的,http://em.21dtv.com/songs/60008799.mkv +ZAC-as shes walking away,http://em.21dtv.com/songs/60000343.mkv +郑秀文-唉声叹气,http://em.21dtv.com/songs/60006897.mkv +郑秀文-唉声叹气(演唱会),http://em.21dtv.com/songs/60006896.mkv +王金金-爱似水仙,http://em.21dtv.com/songs/60131680.mkv +金海心-爱似水仙,http://em.21dtv.com/songs/60008755.mkv +王蓉-爱似神仙,http://em.21dtv.com/songs/60008754.mkv +王馨-爱谁谁谁,http://em.21dtv.com/songs/60130611.mkv +麦浚龙-爱上杀手,http://em.21dtv.com/songs/60093522.mkv +佚名-爱谁是谁,http://em.21dtv.com/songs/60008832.mkv +郑少秋-爱上杀手(演唱会),http://em.21dtv.com/songs/60008707.mkv +孔媛-爱是什么,http://em.21dtv.com/songs/60132350.mkv +林恺伦-爱是什么,http://em.21dtv.com/songs/60125780.mkv +刘沛洋+高宝宝-爱是什么,http://em.21dtv.com/songs/60117583.mkv +王建芳-爱是什么,http://em.21dtv.com/songs/60102521.mkv +鸡排妹-爱是神马,http://em.21dtv.com/songs/60101008.mkv +郑家纯-爱是神马,http://em.21dtv.com/songs/60097394.mkv +吴淑敏-爱是啥咪,http://em.21dtv.com/songs/60096049.mkv +李泉-爱是什么,http://em.21dtv.com/songs/60084852.mkv +梁文音-爱是什么,http://em.21dtv.com/songs/60071745.mkv +张牧阅-爱是什么,http://em.21dtv.com/songs/60063922.mkv +周鹏+刘岚-爱是什么,http://em.21dtv.com/songs/60008790.mkv +李俊旭-爱是什么,http://em.21dtv.com/songs/60008789.mkv +秦博-爱似水晶,http://em.21dtv.com/songs/60117955.mkv +古巨基+王丽达-爱是神话,http://em.21dtv.com/songs/60008791.mkv +泳儿-爱杀死爱,http://em.21dtv.com/songs/60061005.mkv +冰淇-爱上青蛙,http://em.21dtv.com/songs/60008706.mkv +周彦希-爱上骑士,http://em.21dtv.com/songs/60071743.mkv +李思琳-爱是奇迹,http://em.21dtv.com/songs/60097393.mkv +曾星瑜-爱上情歌,http://em.21dtv.com/songs/60126971.mkv +陈奕迅-阿士匹灵(演唱会),http://em.21dtv.com/songs/60006824.mkv +陈奕迅+陈负仁-阿士匹灵(演唱会),http://em.21dtv.com/songs/60006823.mkv +石头+云朵-爱是你我,http://em.21dtv.com/songs/60120831.mkv +塔琳-爱是你我,http://em.21dtv.com/songs/60118467.mkv +小沈阳+沈春阳-爱是你我,http://em.21dtv.com/songs/60087716.mkv +王晓娟-爱是你我,http://em.21dtv.com/songs/60084851.mkv +李维真+谢丹-爱是你我,http://em.21dtv.com/songs/60069217.mkv +刀郎+云朵+王翰仪-爱是你我,http://em.21dtv.com/songs/60008783.mkv +徐海丰-俺是农民,http://em.21dtv.com/songs/60074550.mkv +张柏芝+黄维德-爱上你了,http://em.21dtv.com/songs/60069209.mkv +佚名-爱逝难离,http://em.21dtv.com/songs/60008831.mkv +陈好-爱上冒险,http://em.21dtv.com/songs/60008650.mkv +吕雯-爱是迷途,http://em.21dtv.com/songs/60069216.mkv +桂莹莹-爱上了瘾,http://em.21dtv.com/songs/60132636.mkv +陶建阿成-爱是良药,http://em.21dtv.com/songs/60118176.mkv +胡杨林-爱上了瘾,http://em.21dtv.com/songs/60062476.mkv +吉娃斯杜岚-爱上了瘾,http://em.21dtv.com/songs/60008648.mkv +杨紫琼-爱似流星,http://em.21dtv.com/songs/60008753.mkv +贾婷婷-爱是辣舞,http://em.21dtv.com/songs/60103581.mkv +胥拉齐-爱是领悟,http://em.21dtv.com/songs/60070498.mkv +李志敏-爱受了伤,http://em.21dtv.com/songs/60132531.mkv +孙艳-爱上了谁,http://em.21dtv.com/songs/60066824.mkv +佚名-another sad love song,http://em.21dtv.com/songs/60000296.mkv +TONI BRAXTON-another sad love song,http://em.21dtv.com/songs/60000295.mkv +赤龙-爱上了你,http://em.21dtv.com/songs/60086430.mkv +纪晓斌-爱上了你,http://em.21dtv.com/songs/60070495.mkv +陈美惠-爱上辣妹,http://em.21dtv.com/songs/60065807.mkv +陈咏-爱是烈酒,http://em.21dtv.com/songs/60008779.mkv +B.A.D-爱上了坏,http://em.21dtv.com/songs/60008645.mkv +陈慧娴-爱是空气(演唱会),http://em.21dtv.com/songs/60008777.mkv +苏永康-爱似狂潮,http://em.21dtv.com/songs/60008752.mkv +群星-爱是家乡(演唱会),http://em.21dtv.com/songs/60008776.mkv +带泪的鱼-爱逝枷锁,http://em.21dtv.com/songs/60082535.mkv +何杰-爱上寂寞,http://em.21dtv.com/songs/60068066.mkv +蜜雪薇琪-爱斯基摩,http://em.21dtv.com/songs/60008837.mkv +袁娅维-爱是怀疑,http://em.21dtv.com/songs/60135720.mkv +许志安-爱是怀疑,http://em.21dtv.com/songs/60118042.mkv +萧敬腾+宋宇-爱是怀疑,http://em.21dtv.com/songs/60114016.mkv +魏然-爱是怀疑,http://em.21dtv.com/songs/60105536.mkv +李炜+江映蓉-爱是怀疑,http://em.21dtv.com/songs/60098479.mkv +潘虹樾-爱是怀疑,http://em.21dtv.com/songs/60091665.mkv +周笔畅-爱是怀疑,http://em.21dtv.com/songs/60087600.mkv +肖飞-爱上回忆,http://em.21dtv.com/songs/60074475.mkv +吴莫愁-爱是怀疑,http://em.21dtv.com/songs/60065436.mkv +陈奕迅-爱是怀疑,http://em.21dtv.com/songs/60008774.mkv +叶倩文+陈奕迅-爱是怀疑(演唱会),http://em.21dtv.com/songs/60008773.mkv +吴浩康-爱是怀疑(演唱会),http://em.21dtv.com/songs/60008772.mkv +陈奕迅-爱是怀疑(演唱会),http://em.21dtv.com/songs/60008771.mkv +孙佳+刘亮-爱洒海天,http://em.21dtv.com/songs/60084847.mkv +袁咏琳-爱是黑白,http://em.21dtv.com/songs/60126164.mkv +兰均-爱上贵州,http://em.21dtv.com/songs/60123647.mkv +彭钰雯-阿舍公子,http://em.21dtv.com/songs/60006822.mkv +崔苗-爱死个你,http://em.21dtv.com/songs/60123874.mkv +李国毅-爱是关键,http://em.21dtv.com/songs/60008770.mkv +李泉-爱是孤独,http://em.21dtv.com/songs/60120634.mkv +孙楠-爱是个错,http://em.21dtv.com/songs/60008766.mkv +佚名-a song for you,http://em.21dtv.com/songs/60000069.mkv +红蔷薇-爱随风逝,http://em.21dtv.com/songs/60116188.mkv +佚名-a song for mama,http://em.21dtv.com/songs/60000068.mkv +佚名-岸上的心,http://em.21dtv.com/songs/60009355.mkv +魏文超-爱上东莞,http://em.21dtv.com/songs/60104619.mkv +BUTLER+MOMAN-another somebody done somebody,http://em.21dtv.com/songs/60000297.mkv +晓华-爱神的箭(演唱会),http://em.21dtv.com/songs/60074490.mkv +周璇-爱神的箭,http://em.21dtv.com/songs/60008746.mkv +凤娘-爱神的箭,http://em.21dtv.com/songs/60008745.mkv +超口爱乐团-爱神的箭,http://em.21dtv.com/songs/60008744.mkv +蔡旻佑-爱是对的,http://em.21dtv.com/songs/60088601.mkv +邰正宵-爱是动词,http://em.21dtv.com/songs/60103614.mkv +小琴儿-爱上草原,http://em.21dtv.com/songs/60087717.mkv +佚名-a spaceman came travelling,http://em.21dtv.com/songs/60000070.mkv +李超越-爱是传奇,http://em.21dtv.com/songs/60109442.mkv +裘海正-爱是惩罚,http://em.21dtv.com/songs/60008762.mkv +孙敬媛-爱是把枪(演唱会),http://em.21dtv.com/songs/60082536.mkv +曾庆瑜-爱上别离,http://em.21dtv.com/songs/60089942.mkv +曾春年-安守本份,http://em.21dtv.com/songs/60097250.mkv +陈奕迅-安守本份,http://em.21dtv.com/songs/60009336.mkv +张崇基+张崇德-爱是不保(演唱会),http://em.21dtv.com/songs/60063921.mkv +范英楠-爱_Say_Good_Ba,http://em.21dtv.com/songs/60088556.mkv +周艳泓-爱上爱情(演唱会),http://em.21dtv.com/songs/60008629.mkv +陈雷-爱人仔喂,http://em.21dtv.com/songs/60005491.mkv +索南扎西-爱人卓玛,http://em.21dtv.com/songs/60068064.mkv +苏又熔-爱人再会,http://em.21dtv.com/songs/60008596.mkv +孟杨-爱若云烟,http://em.21dtv.com/songs/60122667.mkv +千龙+佳颖-爱如云烟,http://em.21dtv.com/songs/60112551.mkv +林峰-爱人与海,http://em.21dtv.com/songs/60008593.mkv +黄文华+何钧源-爱人与海,http://em.21dtv.com/songs/60008592.mkv +林峰-爱人与海(演唱会),http://em.21dtv.com/songs/60008591.mkv +群星-爱如阳光,http://em.21dtv.com/songs/60105299.mkv +林佳仪-爱人小心,http://em.21dtv.com/songs/60008589.mkv +孙悦-爱人辛苦,http://em.21dtv.com/songs/60008590.mkv +XL特大号乐团-黯然销魂,http://em.21dtv.com/songs/60009414.mkv +张克帆-爱人无罪,http://em.21dtv.com/songs/60008588.mkv +佚名-爱人危险,http://em.21dtv.com/songs/60008587.mkv +陈琳-爱人危险,http://em.21dtv.com/songs/60008586.mkv +罗大佑-爱人同志,http://em.21dtv.com/songs/60008585.mkv +罗大佑-爱人同志(演唱会),http://em.21dtv.com/songs/60008584.mkv +枫桥-爱如昙花,http://em.21dtv.com/songs/60128131.mkv +金奕萱-爱若童话,http://em.21dtv.com/songs/60086429.mkv +魏然-爱若童话,http://em.21dtv.com/songs/60074471.mkv +邱芸子-爱人探戈,http://em.21dtv.com/songs/60123223.mkv +邱芸子-爱人探戈,http://em.21dtv.com/songs/60109653.mkv +刘若英-爱人说话,http://em.21dtv.com/songs/60008583.mkv +罗欣-爱人是灯(无原唱),http://em.21dtv.com/songs/60095865.mkv +王瑞霞-爱人是灯(无原唱),http://em.21dtv.com/songs/60070807.mkv +王铮亮-爱 燃烧,http://em.21dtv.com/songs/60114696.mkv +王力-爱让人累,http://em.21dtv.com/songs/60008520.mkv +徐誉滕-爱若去了,http://em.21dtv.com/songs/60008617.mkv +白龙传说+燕儿-爱人情歌,http://em.21dtv.com/songs/60111323.mkv +冷漠-爱如情歌,http://em.21dtv.com/songs/60099787.mkv +王昊-爱人情歌,http://em.21dtv.com/songs/60008577.mkv +邓丽君+谭咏麟-爱人女神,http://em.21dtv.com/songs/60008576.mkv +谢安琪-爱人女神(演唱会),http://em.21dtv.com/songs/60008575.mkv +Ellie Goulding-Army,http://em.21dtv.com/songs/60118254.mkv +李俊熙-爱人路人,http://em.21dtv.com/songs/60065806.mkv +高翊菲-爱如莲花,http://em.21dtv.com/songs/60126455.mkv +熊胡杰-矮人看戏,http://em.21dtv.com/songs/60069168.mkv +孙俪-爱如空气,http://em.21dtv.com/songs/60008610.mkv +孙俪-爱如空气(演唱会),http://em.21dtv.com/songs/60008609.mkv +多吉+索拉旺姆-啊若康巴,http://em.21dtv.com/songs/60093765.mkv +邓小龙-爱人好累,http://em.21dtv.com/songs/60108029.mkv +中坚份子-爱人好累,http://em.21dtv.com/songs/60008567.mkv +刘德华-爱人皇后(演唱会),http://em.21dtv.com/songs/60008568.mkv +小辣椒-爱人感谢(无原唱),http://em.21dtv.com/songs/60008561.mkv +罗志祥-爱入非非,http://em.21dtv.com/songs/60082523.mkv +秦影-爱人的心,http://em.21dtv.com/songs/60100348.mkv +苏有朋-爱人的心,http://em.21dtv.com/songs/60091932.mkv +沈芳如-爱人的心,http://em.21dtv.com/songs/60008556.mkv +许茹芸-爱人动物,http://em.21dtv.com/songs/60008560.mkv +苏打绿-爱人动物,http://em.21dtv.com/songs/60008559.mkv +詹曼铃-爱阮的人,http://em.21dtv.com/songs/60086428.mkv +洪百慧-爱阮的歌,http://em.21dtv.com/songs/60135503.mkv +胡艾莲-爱如潮涌,http://em.21dtv.com/songs/60112903.mkv +燕尾蝶-爱人草原,http://em.21dtv.com/songs/60063911.mkv +莫龙丹-爱如潮水,http://em.21dtv.com/songs/60097380.mkv +胡彦斌-爱如潮水,http://em.21dtv.com/songs/60094256.mkv +袁媛-爱如潮水(演唱会),http://em.21dtv.com/songs/60063318.mkv +张信哲-爱如潮水,http://em.21dtv.com/songs/60008607.mkv +刘德华-爱如潮水,http://em.21dtv.com/songs/60008606.mkv +高胜美-爱如潮水,http://em.21dtv.com/songs/60008605.mkv +蔡淳佳-爱如潮水,http://em.21dtv.com/songs/60008604.mkv +张学友-爱如潮水(演唱会),http://em.21dtv.com/songs/60008603.mkv +迪克牛仔-爱如潮水(演唱会),http://em.21dtv.com/songs/60008602.mkv +陈晓+陈妍希-爱如初见,http://em.21dtv.com/songs/60114863.mkv +赵新-爱若春风,http://em.21dtv.com/songs/60124519.mkv +刘洺瑒-爱若不在,http://em.21dtv.com/songs/60126652.mkv +孙露-爱人别走,http://em.21dtv.com/songs/60099939.mkv +金南玲-爱人别走,http://em.21dtv.com/songs/60069201.mkv +丁汀-爱人别走,http://em.21dtv.com/songs/60008550.mkv +金久哲-爱如匕首,http://em.21dtv.com/songs/60084845.mkv +紫龙-爱人不哭,http://em.21dtv.com/songs/60008551.mkv +苏小花-爱人爱人,http://em.21dtv.com/songs/60074466.mkv +程响-爱人爱情,http://em.21dtv.com/songs/60130635.mkv +李明洋-爱情真言,http://em.21dtv.com/songs/60132547.mkv +陈文清-爱情主演,http://em.21dtv.com/songs/60131944.mkv +莫露露-爱情主演,http://em.21dtv.com/songs/60082521.mkv +陈黎明-爱情左右,http://em.21dtv.com/songs/60008512.mkv +陈奕迅-爱情转移,http://em.21dtv.com/songs/60008502.mkv +萧亚轩-爱情专用,http://em.21dtv.com/songs/60008499.mkv +陈司翰-爱情主义,http://em.21dtv.com/songs/60008498.mkv +林凡-爱情骤雨,http://em.21dtv.com/songs/60008497.mkv +南宫苡彤-爱情侦探,http://em.21dtv.com/songs/60103956.mkv +赵真-爱情诊所,http://em.21dtv.com/songs/60066823.mkv +孙燕姿-爱情证书,http://em.21dtv.com/songs/60008493.mkv +陈司翰-爱情最强,http://em.21dtv.com/songs/60008511.mkv +温拿乐队-爱情组曲,http://em.21dtv.com/songs/60008510.mkv +甄妮-爱情长跑,http://em.21dtv.com/songs/60091753.mkv +谢采云-爱情长跑,http://em.21dtv.com/songs/60089476.mkv +佳悦-爱情指南,http://em.21dtv.com/songs/60065803.mkv +贺一航-爱情之门,http://em.21dtv.com/songs/60122131.mkv +井恩然-爱情专卖,http://em.21dtv.com/songs/60106592.mkv +珍妮+欧恒-爱情证明,http://em.21dtv.com/songs/60097401.mkv +蔡妍-爱情真经(演唱会),http://em.21dtv.com/songs/60008491.mkv +陈雷-爱情再会,http://em.21dtv.com/songs/60088915.mkv +伊人佳人组合-安琪之歌,http://em.21dtv.com/songs/60068088.mkv +花美男株式会社-爱情赞歌,http://em.21dtv.com/songs/60008481.mkv +王绎龙-爱情终点,http://em.21dtv.com/songs/60088311.mkv +孙燕姿-爱情字典,http://em.21dtv.com/songs/60008504.mkv +石梅-爱情重点,http://em.21dtv.com/songs/60008496.mkv +辛龙-爱情追兵,http://em.21dtv.com/songs/60080307.mkv +陈法拉-爱情转驳,http://em.21dtv.com/songs/60008500.mkv +马剑芬+宋马超-爱情预约,http://em.21dtv.com/songs/60086427.mkv +周子轩-爱情1+1,http://em.21dtv.com/songs/60063885.mkv +苏暮+夏凌兮-爱情游戏,http://em.21dtv.com/songs/60129540.mkv +大哲-爱情游戏,http://em.21dtv.com/songs/60084842.mkv +扬哲-爱情英雄,http://em.21dtv.com/songs/60070490.mkv +蔡晓-爱情游戏,http://em.21dtv.com/songs/60066820.mkv +毛阿敏-爱情游戏,http://em.21dtv.com/songs/60008467.mkv +伯阳-爱情游戏,http://em.21dtv.com/songs/60008466.mkv +扬扬-爱情游戏(无原唱),http://em.21dtv.com/songs/60008465.mkv +张信哲-爱情余味,http://em.21dtv.com/songs/60008472.mkv +辛晓琪-爱情余味,http://em.21dtv.com/songs/60008471.mkv +龙世杰+罗凯莹-爱情元素,http://em.21dtv.com/songs/60115554.mkv +孙歆亚-爱情余数,http://em.21dtv.com/songs/60070491.mkv +张智霖-爱情已死(演唱会),http://em.21dtv.com/songs/60063908.mkv +庾澄庆-爱情御守(演唱会),http://em.21dtv.com/songs/60008479.mkv +张智霖-爱情已死,http://em.21dtv.com/songs/60008460.mkv +袁惟仁-爱情遗书(无原唱),http://em.21dtv.com/songs/60008459.mkv +玉面天使-爱情疫苗,http://em.21dtv.com/songs/60108698.mkv +孙更俊-爱情妖魔,http://em.21dtv.com/songs/60070489.mkv +黄小琥-爱情原来,http://em.21dtv.com/songs/60117413.mkv +唐嫣-爱情引力,http://em.21dtv.com/songs/60099893.mkv +山风-爱情烟火,http://em.21dtv.com/songs/60127932.mkv +冰川-爱情烟火,http://em.21dtv.com/songs/60105622.mkv +六仔-爱情诱惑,http://em.21dtv.com/songs/60074463.mkv +李行亮-爱情约定,http://em.21dtv.com/songs/60097399.mkv +陈百潭-爱钱有道,http://em.21dtv.com/songs/60008074.mkv +赵真-爱情小镇,http://em.21dtv.com/songs/60063907.mkv +刘航-爱情下载,http://em.21dtv.com/songs/60008421.mkv +卢广仲-爱情习作,http://em.21dtv.com/songs/60008418.mkv +王奕心-爱情信仰,http://em.21dtv.com/songs/60113853.mkv +李致贤+申钰林-爱情宣言,http://em.21dtv.com/songs/60104223.mkv +周杰伦-爱情悬崖,http://em.21dtv.com/songs/60008445.mkv +齐秦-爱情宣言,http://em.21dtv.com/songs/60008444.mkv +刘超华-爱情香烟,http://em.21dtv.com/songs/60008432.mkv +郭静-爱情讯息,http://em.21dtv.com/songs/60008449.mkv +张芸京-爱情选项,http://em.21dtv.com/songs/60008447.mkv +孙兴-爱情漩涡,http://em.21dtv.com/songs/60008446.mkv +汤潮-爱情小偷,http://em.21dtv.com/songs/60008437.mkv +爱东-爱情心锁,http://em.21dtv.com/songs/60074460.mkv +冷酷-爱情心锁,http://em.21dtv.com/songs/60071735.mkv +宋熙铭-爱情小说,http://em.21dtv.com/songs/60063906.mkv +林奕匡-爱情小品,http://em.21dtv.com/songs/60128123.mkv +林奕匡-爱情小品,http://em.21dtv.com/songs/60124125.mkv +薛之谦-爱情宣判,http://em.21dtv.com/songs/60008443.mkv +焦作风景+蒋婴-爱情小路,http://em.21dtv.com/songs/60132698.mkv +蒋婴+焦作风景-爱情小路,http://em.21dtv.com/songs/60131782.mkv +陈思安-爱情小路,http://em.21dtv.com/songs/60129739.mkv +辉仔-爱情陷阱,http://em.21dtv.com/songs/60120001.mkv +日京江羽人-爱情喜剧,http://em.21dtv.com/songs/60119605.mkv +谭咏麟-爱情陷阱,http://em.21dtv.com/songs/60008429.mkv +谭咏麟-爱情陷阱(演唱会),http://em.21dtv.com/songs/60008428.mkv +谭咏麟+李克勤-爱情陷阱(演唱会),http://em.21dtv.com/songs/60008427.mkv +黄耀明+刘以达-爱情陷阱(演唱会),http://em.21dtv.com/songs/60008426.mkv +陈晓东-爱情陷阱(演唱会),http://em.21dtv.com/songs/60008425.mkv +苏小龙-爱情邂逅,http://em.21dtv.com/songs/60100946.mkv +棒棒堂-爱情学测,http://em.21dtv.com/songs/60008448.mkv +杨子一-爱情网站,http://em.21dtv.com/songs/60063904.mkv +李勇-爱情网语,http://em.21dtv.com/songs/60084841.mkv +侃侃-爱情物语,http://em.21dtv.com/songs/60082520.mkv +李翊君-爱情无用,http://em.21dtv.com/songs/60008417.mkv +徐申东-爱情危险,http://em.21dtv.com/songs/60082024.mkv +张秀卿-爱情问题,http://em.21dtv.com/songs/60008415.mkv +钟立风-爱情万岁,http://em.21dtv.com/songs/60131912.mkv +宁桓宇-爱情往事,http://em.21dtv.com/songs/60127907.mkv +魏如萱-爱情万岁,http://em.21dtv.com/songs/60114289.mkv +玫瑰神话-爱情万岁(HD),http://em.21dtv.com/songs/10012804.mkv +玫瑰神话-爱情万岁,http://em.21dtv.com/songs/60096414.mkv +尹子-爱情往事,http://em.21dtv.com/songs/60074458.mkv +吕雯+格杨+胡雯+赵多娜-爱情万岁,http://em.21dtv.com/songs/60074457.mkv +姜淮海-爱情万岁,http://em.21dtv.com/songs/60065801.mkv +薛凯琪+森美-爱情万岁,http://em.21dtv.com/songs/60008412.mkv +五月天-爱情万岁,http://em.21dtv.com/songs/60008411.mkv +五月天-爱情万岁(演唱会),http://em.21dtv.com/songs/60008410.mkv +吴宏彬-爱情玩偶,http://em.21dtv.com/songs/60107574.mkv +杜德伟+文佩玲-爱全为你,http://em.21dtv.com/songs/60092819.mkv +佚名-爱全为你,http://em.21dtv.com/songs/60008517.mkv +梦然-爱情雾霾,http://em.21dtv.com/songs/60128144.mkv +张正扬-爱情味道,http://em.21dtv.com/songs/60115156.mkv +龚淑均-爱情围城,http://em.21dtv.com/songs/60074459.mkv +陈泳泼-爱情舞步,http://em.21dtv.com/songs/60117345.mkv +PARK HANA-爱情停止,http://em.21dtv.com/songs/60074456.mkv +张宇-爱情条约,http://em.21dtv.com/songs/60008405.mkv +张涵雅-爱情汤味,http://em.21dtv.com/songs/60125523.mkv +唐古+贺一航-爱情天堂,http://em.21dtv.com/songs/60131278.mkv +曾雨轩+韩智东-爱情天堂,http://em.21dtv.com/songs/60130390.mkv +曾雨轩-爱情天堂,http://em.21dtv.com/songs/60130389.mkv +罗逻圣-爱情天梯,http://em.21dtv.com/songs/60129487.mkv +曾雨轩+韩智东-爱情天堂,http://em.21dtv.com/songs/60125658.mkv +晓晓-爱情天梯,http://em.21dtv.com/songs/60082518.mkv +宇恒-爱情天气,http://em.21dtv.com/songs/60008403.mkv +183CLUB-爱情特卖,http://em.21dtv.com/songs/60008401.mkv +马旭东-爱情太假,http://em.21dtv.com/songs/60104603.mkv +TWINS-爱情突击,http://em.21dtv.com/songs/60008408.mkv +白冰冰-爱情探戈,http://em.21dtv.com/songs/60095820.mkv +安心亚+SUPER131-爱情天敌,http://em.21dtv.com/songs/60074455.mkv +安心亚-爱情天敌,http://em.21dtv.com/songs/60071731.mkv +羽泉-爱情天窗,http://em.21dtv.com/songs/60091875.mkv +王建杰-爱情守则(无原唱),http://em.21dtv.com/songs/60079656.mkv +伍思凯-爱情缩影,http://em.21dtv.com/songs/60008399.mkv +郑伊健-爱情岁月,http://em.21dtv.com/songs/60008398.mkv +黄迎迎-爱情散文,http://em.21dtv.com/songs/60082515.mkv +李宗盛-爱情少尉,http://em.21dtv.com/songs/60008377.mkv +杨新旭-爱情沙滩,http://em.21dtv.com/songs/60116944.mkv +胡夏-爱情生态,http://em.21dtv.com/songs/60111360.mkv +汪佩蓉-爱情杀手,http://em.21dtv.com/songs/60131597.mkv +刘嘉亮-爱情杀手,http://em.21dtv.com/songs/60070487.mkv +韦嘉-爱情杀手,http://em.21dtv.com/songs/60008369.mkv +崎君-爱情杀手,http://em.21dtv.com/songs/60008368.mkv +王杰-爱情杀手(演唱会),http://em.21dtv.com/songs/60008367.mkv +李东-爱情诗篇,http://em.21dtv.com/songs/60119643.mkv +香香-爱情砂砾,http://em.21dtv.com/songs/60123372.mkv +大厨-爱情沙漏,http://em.21dtv.com/songs/60121535.mkv +崔琰-爱情水晶,http://em.21dtv.com/songs/60063827.mkv +刘雁-爱情四季,http://em.21dtv.com/songs/60008396.mkv +刘尊-爱情四季(演唱会),http://em.21dtv.com/songs/60008395.mkv +飘飘-爱情深海,http://em.21dtv.com/songs/60129795.mkv +乌兰托娅+何军-爱情神话,http://em.21dtv.com/songs/60099722.mkv +卓依婷-爱情神话,http://em.21dtv.com/songs/60087480.mkv +孟杨-爱情神话,http://em.21dtv.com/songs/60062763.mkv +西风-爱情傻瓜,http://em.21dtv.com/songs/60118902.mkv +李艾娜-爱情傻瓜,http://em.21dtv.com/songs/60112765.mkv +宇桐非-爱情傻瓜,http://em.21dtv.com/songs/60008374.mkv +黄征-爱情傻瓜,http://em.21dtv.com/songs/60008373.mkv +苏晴-爱情市场,http://em.21dtv.com/songs/60082517.mkv +张可儿-爱情伤悲,http://em.21dtv.com/songs/60066816.mkv +曾春年-爱情伤兵,http://em.21dtv.com/songs/60008376.mkv +佚名-爱情人生(无原唱),http://em.21dtv.com/songs/60008359.mkv +赵本水-爱情如梦,http://em.21dtv.com/songs/60065800.mkv +刘恺威-爱情软件,http://em.21dtv.com/songs/60092364.mkv +于烈-爱情日记,http://em.21dtv.com/songs/60060999.mkv +周祥-爱情圈套,http://em.21dtv.com/songs/60126725.mkv +马云龙-爱情囚徒,http://em.21dtv.com/songs/60088977.mkv +周祥-爱情圈套(舞曲版),http://em.21dtv.com/songs/60066815.mkv +周祥-爱情圈套,http://em.21dtv.com/songs/60063465.mkv +SUPER GIRLS-爱情潜水,http://em.21dtv.com/songs/60069198.mkv +妞妞姐妹-爱情恰恰,http://em.21dtv.com/songs/60095498.mkv +蓝沁-啊777,http://em.21dtv.com/songs/60088589.mkv +佚名-爱情恰恰,http://em.21dtv.com/songs/60008353.mkv +陈小云-爱情恰恰,http://em.21dtv.com/songs/60008352.mkv +蓝沁-啊七七七,http://em.21dtv.com/songs/60006862.mkv +MARC ANTHONY-a quien quiero mentirle,http://em.21dtv.com/songs/60072861.mkv +南台湾小姑娘-爱情切啦,http://em.21dtv.com/songs/60008354.mkv +恩炀-爱情气候,http://em.21dtv.com/songs/60008351.mkv +校园快乐帮+卓义峰-爱情乞丐,http://em.21dtv.com/songs/60091504.mkv +卓义峰-爱情乞丐,http://em.21dtv.com/songs/60087447.mkv +牛朝阳-爱情乞丐,http://em.21dtv.com/songs/60008350.mkv +于寇华-爱情囚犯,http://em.21dtv.com/songs/60008356.mkv +赵紫轩-爱情骗子,http://em.21dtv.com/songs/60066813.mkv +红月-爱情骗子,http://em.21dtv.com/songs/60065798.mkv +丁酉酉-爱情骗子,http://em.21dtv.com/songs/60063903.mkv +陈明-爱情扑捉,http://em.21dtv.com/songs/60008348.mkv +阿温-爱情泡汤,http://em.21dtv.com/songs/60124604.mkv +阿温-爱情泡汤,http://em.21dtv.com/songs/60086425.mkv +覃飞宇-爱情叛徒,http://em.21dtv.com/songs/60081153.mkv +龙奔-爱情泡沫(演唱会),http://em.21dtv.com/songs/60008342.mkv +熊汝霖-爱情疲劳,http://em.21dtv.com/songs/60008344.mkv +许富凯-爱情啤酒,http://em.21dtv.com/songs/60070484.mkv +容祖儿-爱情苹果,http://em.21dtv.com/songs/60008347.mkv +阿勇-爱情配方,http://em.21dtv.com/songs/60062205.mkv +于立成-爱情片段,http://em.21dtv.com/songs/60008345.mkv +木棉-爱情泥沼,http://em.21dtv.com/songs/60008330.mkv +高原-爱情难题,http://em.21dtv.com/songs/60088990.mkv +郭美美-爱情女神,http://em.21dtv.com/songs/60008341.mkv +游鸿明-爱情男女,http://em.21dtv.com/songs/60008329.mkv +可风-爱情奴隶,http://em.21dtv.com/songs/60008338.mkv +李小璐-爱情魔咒,http://em.21dtv.com/songs/60008323.mkv +白婧-爱情秘语,http://em.21dtv.com/songs/60097403.mkv +西子-爱情模样,http://em.21dtv.com/songs/60074451.mkv +于立成-爱情模样,http://em.21dtv.com/songs/60008318.mkv +5566-爱情漫游,http://em.21dtv.com/songs/60008309.mkv +常艾非-爱情迷雾,http://em.21dtv.com/songs/60068059.mkv +洪立-爱情木屋,http://em.21dtv.com/songs/60008326.mkv +李菲菲-爱情迷雾,http://em.21dtv.com/songs/60008315.mkv +叶颖-爱情门徒,http://em.21dtv.com/songs/60074450.mkv +郑源-爱情码头,http://em.21dtv.com/songs/60008307.mkv +周乔伟-爱情末日,http://em.21dtv.com/songs/60074452.mkv +轲然-爱情木偶,http://em.21dtv.com/songs/60095099.mkv +费玉清-爱情买卖,http://em.21dtv.com/songs/60130765.mkv +清清儿-爱情密码,http://em.21dtv.com/songs/60128181.mkv +慕容晓晓-爱情买卖,http://em.21dtv.com/songs/60008308.mkv +叶玉卿-爱情魔力,http://em.21dtv.com/songs/60008321.mkv +丁力-爱情魔力(无原唱),http://em.21dtv.com/songs/60008320.mkv +冷漠-爱情麻将,http://em.21dtv.com/songs/60065797.mkv +徐小鹏-爱情玫瑰,http://em.21dtv.com/songs/60080786.mkv +1983-爱情木瓜,http://em.21dtv.com/songs/60008325.mkv +李维-爱情魔法(无原唱),http://em.21dtv.com/songs/60008319.mkv +ALEJANDRO SANZ-aquello que me diste(演唱会),http://em.21dtv.com/songs/60063531.mkv +谢峥-爱情面包,http://em.21dtv.com/songs/60130756.mkv +白冰冰-爱情曼波,http://em.21dtv.com/songs/60095821.mkv +何超仪-爱情灵药,http://em.21dtv.com/songs/60063901.mkv +王羽泽-爱情礼物,http://em.21dtv.com/songs/60125944.mkv +S.I.N.G女团-爱情猎手,http://em.21dtv.com/songs/60124984.mkv +陈茂丰-爱情路上,http://em.21dtv.com/songs/60111499.mkv +许富凯-爱情露水,http://em.21dtv.com/songs/60104423.mkv +林忆莲-爱情恋曲,http://em.21dtv.com/songs/60091455.mkv +琼雯-爱情流年(无原唱),http://em.21dtv.com/songs/60008300.mkv +吕梓铷-爱情落幕,http://em.21dtv.com/songs/60118437.mkv +谭扬+李姝漫-爱情落幕,http://em.21dtv.com/songs/60068058.mkv +门丽-爱情流量,http://em.21dtv.com/songs/60134370.mkv +桂莹莹-爱情来了,http://em.21dtv.com/songs/60132637.mkv +魏宗武-爱情老了,http://em.21dtv.com/songs/60110716.mkv +李晓-爱情来临,http://em.21dtv.com/songs/60097400.mkv +张信哲-爱情力量,http://em.21dtv.com/songs/60091046.mkv +叶明珠-爱情来了,http://em.21dtv.com/songs/60084834.mkv +MAKIYO-爱情来哩,http://em.21dtv.com/songs/60008295.mkv +陈慧琳-爱情来了,http://em.21dtv.com/songs/60008294.mkv +陈慧琳-爱情来了(演唱会),http://em.21dtv.com/songs/60008293.mkv +许慧欣-爱情轮廓,http://em.21dtv.com/songs/60008304.mkv +孙宝奇-爱情烈酒,http://em.21dtv.com/songs/60060997.mkv +孙宝奇-爱情烈酒(舞曲版),http://em.21dtv.com/songs/60060996.mkv +蔡小虎-爱情炉丹,http://em.21dtv.com/songs/60008302.mkv +邹伟龙-爱情旅程,http://em.21dtv.com/songs/60070483.mkv +张韶涵-爱情旅程,http://em.21dtv.com/songs/60008305.mkv +张冬玲-爱情空调,http://em.21dtv.com/songs/60097402.mkv +许慧欣-爱情抗体,http://em.21dtv.com/songs/60008285.mkv +许慧欣-爱情抗体(演唱会),http://em.21dtv.com/songs/60008284.mkv +蔡忆雯-爱情傀儡,http://em.21dtv.com/songs/60105341.mkv +宋飞-爱情傀儡,http://em.21dtv.com/songs/60103213.mkv +金丹-爱情傀儡,http://em.21dtv.com/songs/60101536.mkv +靳海涛-爱情傀儡,http://em.21dtv.com/songs/60099605.mkv +巫启贤-爱情傀儡,http://em.21dtv.com/songs/60008291.mkv +易欣-爱情哭了,http://em.21dtv.com/songs/60008288.mkv +沈世爱-爱情苦酒,http://em.21dtv.com/songs/60116997.mkv +月光星子-爱情苦酒,http://em.21dtv.com/songs/60008289.mkv +陈依依-爱情考卷,http://em.21dtv.com/songs/60008286.mkv +储毅-爱情口号,http://em.21dtv.com/songs/60108315.mkv +覃飞宇-爱情苦海,http://em.21dtv.com/songs/60084833.mkv +林雨-爱情苦果,http://em.21dtv.com/songs/60063898.mkv +游美灵-爱情快餐,http://em.21dtv.com/songs/60082510.mkv +吴婷-爱情教主,http://em.21dtv.com/songs/60070481.mkv +婧-爱情剧终,http://em.21dtv.com/songs/60008280.mkv +安以轩-爱情剧终,http://em.21dtv.com/songs/60008279.mkv +张琳+王娜-爱情结缘,http://em.21dtv.com/songs/60135227.mkv +郑劲松-爱情寄寓,http://em.21dtv.com/songs/60108045.mkv +杨建-爱情解药,http://em.21dtv.com/songs/60070482.mkv +阿松-爱情寄寓,http://em.21dtv.com/songs/60008265.mkv +王新莲-安全界线,http://em.21dtv.com/songs/60090084.mkv +王心凌-爱情句型,http://em.21dtv.com/songs/60071727.mkv +孙浩雨-爱情枷锁,http://em.21dtv.com/songs/60087662.mkv +易秀明珠-爱情救赎,http://em.21dtv.com/songs/60063896.mkv +GOGO+MEME-爱情假期,http://em.21dtv.com/songs/60008268.mkv +唐尧麟-爱情胶片,http://em.21dtv.com/songs/60008270.mkv +许慧欣-爱情精灵,http://em.21dtv.com/songs/60092058.mkv +芭比-爱情结局,http://em.21dtv.com/songs/60008271.mkv +周敬-爱情剧本,http://em.21dtv.com/songs/60065795.mkv +张强-爱情谎言,http://em.21dtv.com/songs/60086420.mkv +魏新雨-爱情火焰(演唱会),http://em.21dtv.com/songs/60071726.mkv +高林生+石云岚-爱情花园,http://em.21dtv.com/songs/60062227.mkv +刘惜君-爱情花园,http://em.21dtv.com/songs/60008258.mkv +于冠华-爱情合约(无原唱),http://em.21dtv.com/songs/60008241.mkv +蒋大为-啊秋海棠,http://em.21dtv.com/songs/60006863.mkv +阿文-爱情火苗,http://em.21dtv.com/songs/60110603.mkv +王爱华+韩风-爱情花开,http://em.21dtv.com/songs/60066810.mkv +刘依纯-爱情花开,http://em.21dtv.com/songs/60008257.mkv +HIT-5-爱情换季,http://em.21dtv.com/songs/60086419.mkv +蓝正龙-爱情黑洞,http://em.21dtv.com/songs/60008247.mkv +芭比-爱情黑洞,http://em.21dtv.com/songs/60008246.mkv +张津涤-爱情观众,http://em.21dtv.com/songs/60119532.mkv +李小米-爱情规则,http://em.21dtv.com/songs/60102335.mkv +山野-爱情公寓,http://em.21dtv.com/songs/60104986.mkv +群星-爱情公寓,http://em.21dtv.com/songs/60068056.mkv +黄崇旭-爱情关系,http://em.21dtv.com/songs/60008234.mkv +袁智勇-爱情怪胎,http://em.21dtv.com/songs/60008233.mkv +李力-爱情故事,http://em.21dtv.com/songs/60089948.mkv +储毅-爱情故事,http://em.21dtv.com/songs/60086418.mkv +孙豆尔-爱情故事,http://em.21dtv.com/songs/60084829.mkv +郑秀文-爱情故事,http://em.21dtv.com/songs/60008232.mkv +佚名-爱情故事,http://em.21dtv.com/songs/60008231.mkv +辛晓琪-爱情故事,http://em.21dtv.com/songs/60008230.mkv +林子祥-爱情故事,http://em.21dtv.com/songs/60008229.mkv +林子良-爱情故事,http://em.21dtv.com/songs/60008228.mkv +方季惟-爱情故事,http://em.21dtv.com/songs/60008227.mkv +办桌阿杰+苏路-爱情故事,http://em.21dtv.com/songs/60008226.mkv +施易男-爱情高手,http://em.21dtv.com/songs/60008223.mkv +钟子炫-爱情过客,http://em.21dtv.com/songs/60111464.mkv +赵齐-爱情过客,http://em.21dtv.com/songs/60094706.mkv +海生-爱情过客,http://em.21dtv.com/songs/60074442.mkv +凌毅-爱情港口,http://em.21dtv.com/songs/60063893.mkv +雨天-爱情孤岛,http://em.21dtv.com/songs/60074441.mkv +刘轩瑞-爱情浮云,http://em.21dtv.com/songs/60095267.mkv +储毅-爱情废墟,http://em.21dtv.com/songs/60108316.mkv +秦艺天-爱情飞雪,http://em.21dtv.com/songs/60101150.mkv +虎妞-爱情废墟,http://em.21dtv.com/songs/60070479.mkv +容祖儿-爱情复兴,http://em.21dtv.com/songs/60008220.mkv +正月十五-爱情防卫,http://em.21dtv.com/songs/60097398.mkv +王雪娥-爱情俘虏,http://em.21dtv.com/songs/60008219.mkv +孙悦-爱情俘虏,http://em.21dtv.com/songs/60008218.mkv +韩磊-爱情飞蛾,http://em.21dtv.com/songs/60008215.mkv +侯志斌-爱情废柴,http://em.21dtv.com/songs/60125139.mkv +周杰伦-爱情废柴,http://em.21dtv.com/songs/60123761.mkv +杨一郎-爱情赌注,http://em.21dtv.com/songs/60118696.mkv +郭燕-爱情冬至,http://em.21dtv.com/songs/60008206.mkv +爱嗑瓜子的猫+进击的女帝-爱情电影,http://em.21dtv.com/songs/60128198.mkv +范冰冰+李晨-爱情电影,http://em.21dtv.com/songs/60118872.mkv +曹锦-爱情毒药,http://em.21dtv.com/songs/60117779.mkv +周兴哲-爱情导演,http://em.21dtv.com/songs/60112573.mkv +刘涛-爱情毒药,http://em.21dtv.com/songs/60074440.mkv +许茹芸+熊天平-爱情电影,http://em.21dtv.com/songs/60008203.mkv +满江-爱情电影(演唱会),http://em.21dtv.com/songs/60008202.mkv +林姗-爱情的夜(无原唱),http://em.21dtv.com/songs/60008193.mkv +郭淑贤-爱情点心(无原唱),http://em.21dtv.com/songs/60008200.mkv +陈淑芳-爱情的舞,http://em.21dtv.com/songs/60008188.mkv +秋裤大叔-爱情的托,http://em.21dtv.com/songs/60108769.mkv +赵小兵-爱情的托,http://em.21dtv.com/songs/60070477.mkv +办桌二人组-爱情的甜,http://em.21dtv.com/songs/60070476.mkv +杨幂-爱情地图,http://em.21dtv.com/songs/60066807.mkv +龙啸-爱情赌徒,http://em.21dtv.com/songs/60008209.mkv +黄湘怡-爱情地图,http://em.21dtv.com/songs/60008198.mkv +石圣彬-爱情地铁,http://em.21dtv.com/songs/60008197.mkv +王中平+向蕙玲-爱情的tempo,http://em.21dtv.com/songs/60008145.mkv +许绍洋-爱情倒退,http://em.21dtv.com/songs/60008142.mkv +崔子格+老猫-爱情大师,http://em.21dtv.com/songs/60108465.mkv +陈升+左小祖咒-爱情的枪,http://em.21dtv.com/songs/60074432.mkv +潘协庆-爱情当铺(无原唱),http://em.21dtv.com/songs/60008138.mkv +佚名-爱情的梦,http://em.21dtv.com/songs/60095429.mkv +林东松-爱情大梦,http://em.21dtv.com/songs/60008132.mkv +阿淡-爱情的牢,http://em.21dtv.com/songs/60113045.mkv +杨静+罗时丰-爱情的路,http://em.21dtv.com/songs/60106976.mkv +蔡健雅-爱情的路,http://em.21dtv.com/songs/60008171.mkv +乔幼-爱情代价,http://em.21dtv.com/songs/60130051.mkv +回来娶你-爱情单价,http://em.21dtv.com/songs/60094447.mkv +沈芳如-爱情赌局(无原唱),http://em.21dtv.com/songs/60008208.mkv +陈小云-爱情的酒,http://em.21dtv.com/songs/60008166.mkv +佚名-爱情的酒(演唱会),http://em.21dtv.com/songs/60008165.mkv +陈盈洁-爱情的酒,http://em.21dtv.com/songs/60002382.mkv +周启生+叶世荣-爱情的歌,http://em.21dtv.com/songs/60074429.mkv +郭采洁-爱情定格,http://em.21dtv.com/songs/60008205.mkv +林知卉+王尚宏-爱情的风,http://em.21dtv.com/songs/60113717.mkv +林知卉-爱情的风,http://em.21dtv.com/songs/60113715.mkv +佚名-爱情的风,http://em.21dtv.com/songs/60008154.mkv +陈晓东-愛情第二,http://em.21dtv.com/songs/60093475.mkv +文恩澄+陈晓东-爱情第二,http://em.21dtv.com/songs/60008199.mkv +林欣彤-安全地带,http://em.21dtv.com/songs/60105186.mkv +叶瑷菱-爱情对策(无原唱),http://em.21dtv.com/songs/60008211.mkv +陈崴-安全的爱,http://em.21dtv.com/songs/60009329.mkv +罗中旭-爱情侧写,http://em.21dtv.com/songs/60008124.mkv +范思威-爱情错位(演唱会),http://em.21dtv.com/songs/60008130.mkv +贺娜-爱情传说,http://em.21dtv.com/songs/60128414.mkv +李果-爱情传说,http://em.21dtv.com/songs/60063889.mkv +范逸臣-爱情程式,http://em.21dtv.com/songs/60008126.mkv +海生-爱情城墙,http://em.21dtv.com/songs/60124211.mkv +张志林-爱情厨男,http://em.21dtv.com/songs/60082506.mkv +张德力-爱情筹码,http://em.21dtv.com/songs/60119519.mkv +何静-爱情岔口,http://em.21dtv.com/songs/60068054.mkv +何老妖-爱情岔口,http://em.21dtv.com/songs/60062444.mkv +高斌-爱情出口,http://em.21dtv.com/songs/60008128.mkv +罗逻圣-爱情错觉,http://em.21dtv.com/songs/60106196.mkv +Frank秋枫-爱情错觉,http://em.21dtv.com/songs/60103776.mkv +李明翰-爱情错觉,http://em.21dtv.com/songs/60081339.mkv +王娅-爱情错觉,http://em.21dtv.com/songs/60008129.mkv +岳琦-爱情出轨,http://em.21dtv.com/songs/60060990.mkv +王程程-爱情菜单,http://em.21dtv.com/songs/60135563.mkv +谢容儿-爱情城堡,http://em.21dtv.com/songs/60066806.mkv +田跃君-爱情保险,http://em.21dtv.com/songs/60065789.mkv +陈星-爱情保险,http://em.21dtv.com/songs/60008102.mkv +刘维刚-爱情备胎,http://em.21dtv.com/songs/60107545.mkv +阿权-阿权本色,http://em.21dtv.com/songs/60101695.mkv +沈世爱-爱情冰山,http://em.21dtv.com/songs/60008110.mkv +那英-爱情变迁,http://em.21dtv.com/songs/60008107.mkv +阿Ben+墨北-爱情背叛,http://em.21dtv.com/songs/60105451.mkv +茅小勇-爱情悲剧,http://em.21dtv.com/songs/60102672.mkv +张秀卿+许志豪+吴俊宏-爱情白酒,http://em.21dtv.com/songs/60063886.mkv +ENERGY-爱情半径(演唱会),http://em.21dtv.com/songs/60008098.mkv +海浪-爱情保单,http://em.21dtv.com/songs/60062416.mkv +周杰伦-爱情编程,http://em.21dtv.com/songs/60087585.mkv +程海星-爱情宝贝,http://em.21dtv.com/songs/60008101.mkv +何洁+金东万-爱情彼岸,http://em.21dtv.com/songs/60008105.mkv +陈思安-爱情爱情,http://em.21dtv.com/songs/60095999.mkv +杨幂-爱情爱情,http://em.21dtv.com/songs/60074424.mkv +陈思安-安平之恋,http://em.21dtv.com/songs/60116340.mkv +MICHAEL JACKSON-another part of me,http://em.21dtv.com/songs/60072895.mkv +THRIVING IVORY-angels on the moon,http://em.21dtv.com/songs/60063529.mkv +CHIP TAYLOR-angel of the morning,http://em.21dtv.com/songs/60000257.mkv +KANYE WEST-all of the lights,http://em.21dtv.com/songs/60072880.mkv +WESTLIFE+DELTA-all out of love(演唱会),http://em.21dtv.com/songs/60082068.mkv +AIR SUPPLY-all out of love(演唱会),http://em.21dtv.com/songs/60000170.mkv +佚名-always on my mind,http://em.21dtv.com/songs/60000202.mkv +S.H.E-always on my mind,http://em.21dtv.com/songs/60000201.mkv +PHIL COLLINS-all of my life,http://em.21dtv.com/songs/60000168.mkv +ZPZG-AOAO,http://em.21dtv.com/songs/60120257.mkv +詹雅雯-爱你这深,http://em.21dtv.com/songs/60008049.mkv +朱海君-爱你之前,http://em.21dtv.com/songs/60074416.mkv +何俊明-爱你之前,http://em.21dtv.com/songs/60008055.mkv +张嘉洵-爱你最美,http://em.21dtv.com/songs/60008057.mkv +朱海君-爱你之后,http://em.21dtv.com/songs/60074415.mkv +崎君-爱你真好,http://em.21dtv.com/songs/60008052.mkv +王少峰-爱你永远,http://em.21dtv.com/songs/60074412.mkv +DJ舞曲-爱你一生Dj,http://em.21dtv.com/songs/30000578.mkv +秀兰玛雅-爱你一生,http://em.21dtv.com/songs/60123053.mkv +秀兰玛雅-爱你一生,http://em.21dtv.com/songs/60113919.mkv +祁隆+乐凡-爱你一生,http://em.21dtv.com/songs/60105280.mkv +陈随意-爱你一生,http://em.21dtv.com/songs/60100605.mkv +吴淑敏-爱你一生,http://em.21dtv.com/songs/60070473.mkv +杨哲-爱你一生,http://em.21dtv.com/songs/60008010.mkv +李艳-爱你依然,http://em.21dtv.com/songs/60125720.mkv +文阳-爱你一人(无原唱),http://em.21dtv.com/songs/60008009.mkv +黄家强-爱你一切,http://em.21dtv.com/songs/60136022.mkv +俞静-爱你也难,http://em.21dtv.com/songs/60008005.mkv +马健南-爱你依旧,http://em.21dtv.com/songs/60120136.mkv +陈涛-爱难永恒,http://em.21dtv.com/songs/60007761.mkv +陈一畅-爱你要爱,http://em.21dtv.com/songs/60070472.mkv +佚名-爱你想你,http://em.21dtv.com/songs/60008001.mkv +黄思婷-爱你想你,http://em.21dtv.com/songs/60008000.mkv +动静乐团-爱你想你,http://em.21dtv.com/songs/60007999.mkv +于文博-爱你无罪,http://em.21dtv.com/songs/60007998.mkv +蔡小虎-爱你无罪,http://em.21dtv.com/songs/60007997.mkv +黄思婷-爱你无心,http://em.21dtv.com/songs/60007995.mkv +苏青山-爱你无悔,http://em.21dtv.com/songs/60120888.mkv +王英俊-爱你无悔,http://em.21dtv.com/songs/60107910.mkv +青山-爱你无悔,http://em.21dtv.com/songs/60074408.mkv +梁昕-爱你无悔,http://em.21dtv.com/songs/60070470.mkv +张宇-爱你无悔,http://em.21dtv.com/songs/60007990.mkv +佚名-爱你无变(无原唱),http://em.21dtv.com/songs/60007986.mkv +董事长乐团-啊娘喂!,http://em.21dtv.com/songs/60084786.mkv +孟庭苇-爱你太真,http://em.21dtv.com/songs/60007979.mkv +佚名-爱你太深,http://em.21dtv.com/songs/60007978.mkv +刘德华-爱你太深,http://em.21dtv.com/songs/60007977.mkv +谭咏麟-爱你太深(演唱会),http://em.21dtv.com/songs/60007976.mkv +蔡琴-爱你太浓,http://em.21dtv.com/songs/60007975.mkv +蟑螂乐队-爱你太难,http://em.21dtv.com/songs/60007974.mkv +东来东往-爱你太多,http://em.21dtv.com/songs/60089584.mkv +大卫+一绫-爱你咁通,http://em.21dtv.com/songs/60112598.mkv +龙千玉-爱你尚深,http://em.21dtv.com/songs/60007953.mkv +曹锦-爱你什么,http://em.21dtv.com/songs/60119626.mkv +阿鲁阿卓-爱你如命,http://em.21dtv.com/songs/60097385.mkv +郭金发-爱你入骨,http://em.21dtv.com/songs/60095945.mkv +卓依婷-爱你入骨,http://em.21dtv.com/songs/60062394.mkv +余天-爱你入骨(无原唱),http://em.21dtv.com/songs/60007951.mkv +徐红光-爱你如初,http://em.21dtv.com/songs/60116835.mkv +邱英杰-爱你千年,http://em.21dtv.com/songs/60007941.mkv +祁隆-爱你情歌,http://em.21dtv.com/songs/60128268.mkv +何建清-爱你情歌,http://em.21dtv.com/songs/60100764.mkv +巫启贤-爱那么重,http://em.21dtv.com/songs/60007752.mkv +罗时丰-爱那么痛,http://em.21dtv.com/songs/60123070.mkv +高进-爱那么轻,http://em.21dtv.com/songs/60068045.mkv +扎西尼玛-阿尼玛卿(演唱会),http://em.21dtv.com/songs/60006812.mkv +张信哲-爱你没错,http://em.21dtv.com/songs/60111860.mkv +张信哲-爱你没错,http://em.21dtv.com/songs/60102198.mkv +周杰伦-爱你没差,http://em.21dtv.com/songs/60071723.mkv +张倾城-爱难两全,http://em.21dtv.com/songs/60007753.mkv +丸子-爱你卡侬,http://em.21dtv.com/songs/60087246.mkv +丸子-爱你卡农,http://em.21dtv.com/songs/60007924.mkv +周诗雅-爱难抗拒,http://em.21dtv.com/songs/60125321.mkv +宜璇-爱你距离,http://em.21dtv.com/songs/60007923.mkv +九九-爱你久久,http://em.21dtv.com/songs/60118306.mkv +王梓蘅-爱你恨你(演唱会),http://em.21dtv.com/songs/60074404.mkv +周渝民-爱你恨你,http://em.21dtv.com/songs/60007909.mkv +余天-爱你恨你,http://em.21dtv.com/songs/60007908.mkv +孙淑媚-爱你恨你,http://em.21dtv.com/songs/60007907.mkv +关心妍-爱你很难,http://em.21dtv.com/songs/60007906.mkv +司文-爱你个头,http://em.21dtv.com/songs/60087529.mkv +李蕴-爱你更多(演唱会),http://em.21dtv.com/songs/60074403.mkv +罗百吉-爱你更多,http://em.21dtv.com/songs/60007897.mkv +佚名-阿娜尔汗,http://em.21dtv.com/songs/60006811.mkv +张津涤-爱你的猪,http://em.21dtv.com/songs/60100026.mkv +凤娘-爱你到这,http://em.21dtv.com/songs/60007845.mkv +李玲玉-爱你的心,http://em.21dtv.com/songs/60109430.mkv +张雷-爱你的心,http://em.21dtv.com/songs/60107724.mkv +叶瑗菱-爱你的心,http://em.21dtv.com/songs/60079384.mkv +嘎妮早-爱你的心,http://em.21dtv.com/songs/60062360.mkv +许志安-爱你的心,http://em.21dtv.com/songs/60007875.mkv +群星-爱你的心,http://em.21dtv.com/songs/60007874.mkv +陆毅-爱你的心,http://em.21dtv.com/songs/60007873.mkv +江志文+黄思婷-爱你的心,http://em.21dtv.com/songs/60007872.mkv +洪百慧-爱你的心,http://em.21dtv.com/songs/60007871.mkv +办桌二人组-爱你的心,http://em.21dtv.com/songs/60007870.mkv +佚名-爱你的心(无原唱),http://em.21dtv.com/songs/60007869.mkv +蔡秋凤-爱你的心(无原唱),http://em.21dtv.com/songs/60007868.mkv +张秀卿-爱你的我,http://em.21dtv.com/songs/60007866.mkv +游曜徽-爱你的人,http://em.21dtv.com/songs/60117011.mkv +萧煌奇-爱你的人,http://em.21dtv.com/songs/60080060.mkv +龙千玉-爱你的人,http://em.21dtv.com/songs/60078623.mkv +候美仪-爱你的人,http://em.21dtv.com/songs/60007859.mkv +陈晓东-爱你躲你(演唱会),http://em.21dtv.com/songs/60007893.mkv +周慧敏-爱你多年,http://em.21dtv.com/songs/60007891.mkv +卓依婷-阿娘的梦,http://em.21dtv.com/songs/60006813.mkv +龙奔-爱你的路,http://em.21dtv.com/songs/60089088.mkv +韩宝仪-爱你到老,http://em.21dtv.com/songs/60017659.mkv +蔡小虎-爱你到老,http://em.21dtv.com/songs/60007840.mkv +长春虫子-爱你的苦,http://em.21dtv.com/songs/60068048.mkv +布丁-爱你的歌,http://em.21dtv.com/songs/60007849.mkv +龙泽雨-爱你到底,http://em.21dtv.com/songs/60114928.mkv +罗百吉-爱你到底,http://em.21dtv.com/songs/60007839.mkv +李雪-爱你成歌(演唱会),http://em.21dtv.com/songs/60063874.mkv +张驰-爱你不悔,http://em.21dtv.com/songs/60084817.mkv +何韵诗-安妮宝贝,http://em.21dtv.com/songs/60092272.mkv +骆超勇-爱你不变,http://em.21dtv.com/songs/60007825.mkv +王浩信-爱你便爱,http://em.21dtv.com/songs/60092989.mkv +林姍-爱你爱伊,http://em.21dtv.com/songs/60095655.mkv +张蓉蓉-爱你爱伊,http://em.21dtv.com/songs/60074732.mkv +陈怡婷+蔡佳麟-爱你爱我,http://em.21dtv.com/songs/60123298.mkv +周子龙-爱你爱我,http://em.21dtv.com/songs/60116651.mkv +罗文聪-爱你爱我,http://em.21dtv.com/songs/60007810.mkv +阿帕队-阿女阿女(无原唱),http://em.21dtv.com/songs/60095958.mkv +董璇+高云翔-爱你爱你,http://em.21dtv.com/songs/60070466.mkv +陈威全-爱你爱你,http://em.21dtv.com/songs/60068046.mkv +翁立友+大芭-爱你爱你,http://em.21dtv.com/songs/60007806.mkv +黄品源-爱你爱你,http://em.21dtv.com/songs/60007767.mkv +群星-阿女阿女(无原唱),http://em.21dtv.com/songs/60006818.mkv +张智成-爱你爱的,http://em.21dtv.com/songs/60093813.mkv +海峰-爱你爱的,http://em.21dtv.com/songs/60082497.mkv +陈慧琳-爱你爱的,http://em.21dtv.com/songs/60007799.mkv +李玟-爱你爱到,http://em.21dtv.com/songs/60007783.mkv +郑凡-爱没这样,http://em.21dtv.com/songs/60069187.mkv +朴野-爱没走过,http://em.21dtv.com/songs/60098438.mkv +刘德华-澳门之歌,http://em.21dtv.com/songs/60009449.mkv +唐磊-爱没有屋,http://em.21dtv.com/songs/60074389.mkv +荒山亮-爱没遗憾,http://em.21dtv.com/songs/60130701.mkv +张韶涵-爱没有错,http://em.21dtv.com/songs/60098376.mkv +代小波-爱没有错,http://em.21dtv.com/songs/60007734.mkv +周慧敏-阿玛逊河(演唱会),http://em.21dtv.com/songs/60006789.mkv +庄心妍-爱美无罪,http://em.21dtv.com/songs/60094090.mkv +佚名-a man without love,http://em.21dtv.com/songs/60000059.mkv +MARIO PANZERI-a man without love,http://em.21dtv.com/songs/60000058.mkv +果阳法师-阿弥陀佛,http://em.21dtv.com/songs/60127114.mkv +左小祖咒-阿弥陀佛,http://em.21dtv.com/songs/60125456.mkv +苏亚-阿弥陀佛,http://em.21dtv.com/songs/60117153.mkv +白玛多吉-阿弥陀佛,http://em.21dtv.com/songs/60106164.mkv +男人唐潮-阿弥陀佛(演唱会),http://em.21dtv.com/songs/60074283.mkv +北原山猫-阿弥陀佛,http://em.21dtv.com/songs/60006798.mkv +五月天-阿姆斯壮,http://em.21dtv.com/songs/60006808.mkv +醉美-爱满人间,http://em.21dtv.com/songs/60108067.mkv +李强年-爱满人间,http://em.21dtv.com/songs/60086404.mkv +黑鸭子演唱组-爱满人间,http://em.21dtv.com/songs/60007728.mkv +郑欣宜-爱没如果,http://em.21dtv.com/songs/60063868.mkv +花小贱-暧昧气息,http://em.21dtv.com/songs/60098714.mkv +张靓颖-any man of mine(演唱会),http://em.21dtv.com/songs/60071568.mkv +佚名-any man of mine,http://em.21dtv.com/songs/60000307.mkv +谭咏麟-爱莫能助,http://em.21dtv.com/songs/60084815.mkv +BIG FOUR-爱莫能助,http://em.21dtv.com/songs/60061962.mkv +刘德华-按摩女郎,http://em.21dtv.com/songs/60009357.mkv +刘德华-按摩女郎(演唱会),http://em.21dtv.com/songs/60009356.mkv +佚名-answer me my love,http://em.21dtv.com/songs/60000299.mkv +佚名-爱袂落心,http://em.21dtv.com/songs/60007742.mkv +茜拉+十二强学员-a moment like this,http://em.21dtv.com/songs/60086318.mkv +LEONA LEWIS-a moment like this,http://em.21dtv.com/songs/60000063.mkv +KELLY CLARKSON-a moment like this,http://em.21dtv.com/songs/60000062.mkv +林育群-a moment like this,http://em.21dtv.com/songs/60000061.mkv +容中尔甲-阿咪罗罗,http://em.21dtv.com/songs/60006797.mkv +官确嘉措-阿妈啰啰,http://em.21dtv.com/songs/60006787.mkv +才旦卓玛-阿玛勒火,http://em.21dtv.com/songs/60087906.mkv +谢霆锋+叶佩雯-爱没疆界,http://em.21dtv.com/songs/60093181.mkv +芭比-暧昧关系,http://em.21dtv.com/songs/60009305.mkv +孙维良+蝌蚪合唱团-阿美姑娘(演唱会),http://em.21dtv.com/songs/60066770.mkv +琪琪格-阿木古郎,http://em.21dtv.com/songs/60117055.mkv +李雨伦-暧昧过后,http://em.21dtv.com/songs/60129254.mkv +贺敬轩+雨宗林-暧昧的夜,http://em.21dtv.com/songs/60127429.mkv +关牧村-阿妹的心,http://em.21dtv.com/songs/60090669.mkv +詹雅雯-阿母的手,http://em.21dtv.com/songs/60006806.mkv +黄妃-阿母的手,http://em.21dtv.com/songs/60006805.mkv +孙淑媚-爱袂到你,http://em.21dtv.com/songs/60007740.mkv +朱海君-阿嬷的名,http://em.21dtv.com/songs/60125684.mkv +于立成-阿嬷的脸,http://em.21dtv.com/songs/60006800.mkv +阿幼朵-阿妈的泪,http://em.21dtv.com/songs/60006782.mkv +古小伟-阿母的话,http://em.21dtv.com/songs/60113317.mkv +萧煌奇-阿姆的话,http://em.21dtv.com/songs/60080574.mkv +洪百慧-阿母的话,http://em.21dtv.com/songs/60006803.mkv +萧煌奇-阿嬷的话,http://em.21dtv.com/songs/60006799.mkv +邓丽君-阿妈的话(演唱会),http://em.21dtv.com/songs/60006781.mkv +ENGELBERT HUMPERDINC-a man a woman,http://em.21dtv.com/songs/60000057.mkv +张行-阿美阿美,http://em.21dtv.com/songs/60091157.mkv +朱玉潍-啊莫啊莫,http://em.21dtv.com/songs/60006858.mkv +佚名-阿美阿美,http://em.21dtv.com/songs/60006792.mkv +王梦麟+张行-阿美阿美(演唱会),http://em.21dtv.com/songs/60006791.mkv +枫桥-啊 母爱,http://em.21dtv.com/songs/60101402.mkv +梁雁翎-爱了再说,http://em.21dtv.com/songs/60089373.mkv +佚名-爱了再说(无原唱),http://em.21dtv.com/songs/60007713.mkv +王泽坤-爱恋之美,http://em.21dtv.com/songs/60063049.mkv +刘德华-暗里着迷,http://em.21dtv.com/songs/60009371.mkv +刘德华-暗里着迷(演唱会),http://em.21dtv.com/songs/60009370.mkv +林威辰-爱恋专家,http://em.21dtv.com/songs/60007721.mkv +周华健+苏慧伦-爱了再爱,http://em.21dtv.com/songs/60007712.mkv +汪明荃-安拉我主(演唱会),http://em.21dtv.com/songs/60009317.mkv +吉娜-爱了无忧,http://em.21dtv.com/songs/60111744.mkv +辰亦儒-爱来无恙,http://em.21dtv.com/songs/60106318.mkv +吉娜-爱了无忧,http://em.21dtv.com/songs/60063867.mkv +李日詹-爱里逃生,http://em.21dtv.com/songs/60124077.mkv +北方狼-爱了痛了,http://em.21dtv.com/songs/60118402.mkv +王冰洋-爱了痛了,http://em.21dtv.com/songs/60007710.mkv +金城-爱了伤了,http://em.21dtv.com/songs/60007709.mkv +黄勇-爱了散了,http://em.21dtv.com/songs/60007708.mkv +大地乐团-爱了散了,http://em.21dtv.com/songs/60007707.mkv +林知卉+蔡旻书-爱恋三国,http://em.21dtv.com/songs/60113720.mkv +俞思远+B.I.Z乐团-暗恋情书,http://em.21dtv.com/songs/60009389.mkv +煜煊-暗恋情歌,http://em.21dtv.com/songs/60101667.mkv +I LOVE U BOYZ-艾粒情歌,http://em.21dtv.com/songs/60006900.mkv +洛天依-阿狸朋友,http://em.21dtv.com/songs/60100275.mkv +李虎-爱路漫漫,http://em.21dtv.com/songs/60082489.mkv +赵薇-暗恋猫咪,http://em.21dtv.com/songs/60009385.mkv +花世纪-暗恋秘笈,http://em.21dtv.com/songs/60062479.mkv +张宏声-阿拉木罕,http://em.21dtv.com/songs/60089857.mkv +女子十二乐坊-阿拉木汗,http://em.21dtv.com/songs/60089777.mkv +张宏声-阿拉木汗,http://em.21dtv.com/songs/60006753.mkv +阎维文-阿拉木汗,http://em.21dtv.com/songs/60006752.mkv +巴郎百川-阿拉木汗,http://em.21dtv.com/songs/60006751.mkv +毕书尽-爱恋魔法,http://em.21dtv.com/songs/60124180.mkv +毕书尽-爱恋魔法,http://em.21dtv.com/songs/60122936.mkv +陈僖仪-爱恋魔法,http://em.21dtv.com/songs/60080099.mkv +艾龙勐傣-艾龙勐傣,http://em.21dtv.com/songs/60124846.mkv +羽泉-爱浪漫的(演唱会),http://em.21dtv.com/songs/60007691.mkv +子祺-阿拉里呦,http://em.21dtv.com/songs/60063483.mkv +李娜-啊啦里哟,http://em.21dtv.com/songs/60006856.mkv +李娜-阿啦里哟,http://em.21dtv.com/songs/60006755.mkv +许冠杰-阿郎恋曲,http://em.21dtv.com/songs/60006759.mkv +周子零-爱了累了,http://em.21dtv.com/songs/60087580.mkv +AUSTIN MAHONE-All I Ever Need,http://em.21dtv.com/songs/60100707.mkv +张德力-阿庐恋歌,http://em.21dtv.com/songs/60110194.mkv +阿斯根-阿啦家园,http://em.21dtv.com/songs/60006754.mkv +郑秀文+成龙-爱了就算,http://em.21dtv.com/songs/60007703.mkv +成龙+苏慧伦-爱了就算,http://em.21dtv.com/songs/60007702.mkv +欢子+王奕心-爱亮晶晶,http://em.21dtv.com/songs/60088157.mkv +许富凯-阿里加多,http://em.21dtv.com/songs/60082450.mkv +裴紫绮-爱老虎油,http://em.21dtv.com/songs/60066790.mkv +脱拉库-爱老虎油(演唱会),http://em.21dtv.com/songs/60007692.mkv +罗中旭-爱了恨了,http://em.21dtv.com/songs/60007695.mkv +官恩娜-暗恋航空,http://em.21dtv.com/songs/60092512.mkv +苏亚-阿兰高娃,http://em.21dtv.com/songs/60068028.mkv +林良欢-爱了过头,http://em.21dtv.com/songs/60060985.mkv +刘小慧-爱恋革命,http://em.21dtv.com/songs/60007720.mkv +范冰冰+范涛-爱里的心,http://em.21dtv.com/songs/60132835.mkv +李雨儿-爱郎的心,http://em.21dtv.com/songs/60094547.mkv +李雨伦-爱了多久,http://em.21dtv.com/songs/60099326.mkv +肖亮-爱恋草原,http://em.21dtv.com/songs/60109579.mkv +晓雨-爱了错了,http://em.21dtv.com/songs/60060984.mkv +黄义达-爱了才懂,http://em.21dtv.com/songs/60007693.mkv +李玟-a love before time,http://em.21dtv.com/songs/60000055.mkv +芭比-阿里巴斯,http://em.21dtv.com/songs/60006764.mkv +911-a little bit more,http://em.21dtv.com/songs/60000048.mkv +吴涤清-阿里巴巴(演唱会),http://em.21dtv.com/songs/60066768.mkv +佚名-阿里巴巴(无原唱),http://em.21dtv.com/songs/60006763.mkv +李克勤-阿李爸爸,http://em.21dtv.com/songs/60006761.mkv +林薇琪-爱来爱去(HD),http://em.21dtv.com/songs/10012801.mkv +林薇琪-爱来爱去,http://em.21dtv.com/songs/60097381.mkv +佚名-爱来爱去,http://em.21dtv.com/songs/60007685.mkv +谢金燕-爱来爱去,http://em.21dtv.com/songs/60007684.mkv +李心洁-爱来爱去,http://em.21dtv.com/songs/60007683.mkv +李贞贤-阿里阿里,http://em.21dtv.com/songs/60006762.mkv +陈一郎-阿郎阿郎,http://em.21dtv.com/songs/60006758.mkv +游鸿明-爱困思念,http://em.21dtv.com/songs/60091633.mkv +冯千芮-爱客任务,http://em.21dtv.com/songs/60123654.mkv +TAYLOR-a kind of magic,http://em.21dtv.com/songs/60000047.mkv +佚名-all kinds of everything,http://em.21dtv.com/songs/60000161.mkv +阿兰-爱看得见,http://em.21dtv.com/songs/60084812.mkv +佚名-爱卡惨死,http://em.21dtv.com/songs/60007670.mkv +卓玛拉初-阿卡巴拉,http://em.21dtv.com/songs/60090761.mkv +龙梅子-爱就这样,http://em.21dtv.com/songs/60124773.mkv +林珊茹-爱甲抓狂(无原唱),http://em.21dtv.com/songs/60095703.mkv +王正银-安检之歌,http://em.21dtv.com/songs/60103452.mkv +李建衡-爱就足够,http://em.21dtv.com/songs/60007667.mkv +杨宗宪+徐嘉良-啊讲这多,http://em.21dtv.com/songs/60006855.mkv +张惠妹-a级娱乐,http://em.21dtv.com/songs/60000365.mkv +谢宜君-啊!今夜,http://em.21dtv.com/songs/60114788.mkv +谢金燕-爱甲心痛,http://em.21dtv.com/songs/60007634.mkv +毕夏-安静下来,http://em.21dtv.com/songs/60099359.mkv +陈凯欣-爱甲心惊,http://em.21dtv.com/songs/60133037.mkv +孙淑媚-爱甲心惊,http://em.21dtv.com/songs/60007633.mkv +ALAN-爱就是手,http://em.21dtv.com/songs/60007659.mkv +K.WILL-爱就是你,http://em.21dtv.com/songs/60074381.mkv +佚名-爱就是你,http://em.21dtv.com/songs/60007658.mkv +郭峰-爱叫什么,http://em.21dtv.com/songs/60007643.mkv +张羿凡+郑含嫣-安静时刻,http://em.21dtv.com/songs/60129115.mkv +琪淇姐妹花-爱就是爱,http://em.21dtv.com/songs/60082487.mkv +刘德华-爱君如梦,http://em.21dtv.com/songs/60007669.mkv +谭咏麟-爱唧热力(演唱会),http://em.21dtv.com/songs/60007625.mkv +正皓玄-安静情歌,http://em.21dtv.com/songs/60124177.mkv +顾又铭-阿基里斯,http://em.21dtv.com/songs/60102936.mkv +动力火车-爱就够了,http://em.21dtv.com/songs/60090752.mkv +本兮-安静的夜,http://em.21dtv.com/songs/60129212.mkv +任贤齐-安静的人,http://em.21dtv.com/songs/60009312.mkv +S.H.E-爱就对了,http://em.21dtv.com/songs/60007653.mkv +张进鹏-爱 简单,http://em.21dtv.com/songs/60122752.mkv +叶启田-爱就趁早,http://em.21dtv.com/songs/60007652.mkv +向蕙玲-爱甲超过,http://em.21dtv.com/songs/60007630.mkv +刀郎-爱就爱了,http://em.21dtv.com/songs/60090679.mkv +陈琳-爱就爱了,http://em.21dtv.com/songs/60007649.mkv +张艾嘉-艾嘉 爱家,http://em.21dtv.com/songs/60087837.mkv +司徒兰芳-爱就爱疯,http://em.21dtv.com/songs/60074378.mkv +路阳阳-爱就爱吧,http://em.21dtv.com/songs/60074377.mkv +佚名-all i wanna do,http://em.21dtv.com/songs/60000157.mkv +邓紫棋-a i n y (演唱会),http://em.21dtv.com/songs/60072863.mkv +TEVIN CAMPBELL-always in my heart,http://em.21dtv.com/songs/60000199.mkv +佚名-and i love her,http://em.21dtv.com/songs/60000241.mkv +THE BEATLES-and i love her,http://em.21dtv.com/songs/60000240.mkv +黄凯芹+李乐诗-爱火重燃,http://em.21dtv.com/songs/60093525.mkv +吴奇隆-爱恨之间,http://em.21dtv.com/songs/60126694.mkv +吴奇隆-爱恨之间,http://em.21dtv.com/songs/60114446.mkv +刘小幻-爱会永远(演唱会),http://em.21dtv.com/songs/60007614.mkv +谢霆锋-爱后余生,http://em.21dtv.com/songs/60007607.mkv +谢霆锋-爱后余生(演唱会),http://em.21dtv.com/songs/60007606.mkv +许景淳-爱河月光(无原唱),http://em.21dtv.com/songs/60007583.mkv +陈亚兰+李宣榕-爱恨无双,http://em.21dtv.com/songs/60084808.mkv +陈浩民-爱海滔滔,http://em.21dtv.com/songs/60007574.mkv +唐丹-爱恨随心,http://em.21dtv.com/songs/60105706.mkv +郑宜涵-爱会受伤,http://em.21dtv.com/songs/60081269.mkv +阿灯-爱恨是你,http://em.21dtv.com/songs/60007605.mkv +侯延彬-爱 火烧,http://em.21dtv.com/songs/60113266.mkv +潘玮柏-爱很容易,http://em.21dtv.com/songs/60007592.mkv +陈淑萍-爱恨入心,http://em.21dtv.com/songs/60130848.mkv +龙梅子+陈雅森-爱恨如梦,http://em.21dtv.com/songs/60132032.mkv +陈雅森+龙梅子-爱恨如梦,http://em.21dtv.com/songs/60130863.mkv +枫舞,绿昕-爱恨情缘,http://em.21dtv.com/songs/60106030.mkv +枫舞+绿昕-爱恨情缘,http://em.21dtv.com/songs/60105192.mkv +上明-爱河桥畔,http://em.21dtv.com/songs/60074368.mkv +高峰-爱恨情梦(无原唱),http://em.21dtv.com/songs/60007603.mkv +龙飞-爱恨情歌,http://em.21dtv.com/songs/60097395.mkv +冷漠+张冬玲-爱恨情歌,http://em.21dtv.com/songs/60062576.mkv +安乐-爱恨情愁,http://em.21dtv.com/songs/60007602.mkv +林立洋-爱恨情愁(无原唱),http://em.21dtv.com/songs/60007601.mkv +霍正奇-爱和朋友(无原唱),http://em.21dtv.com/songs/60017444.mkv +曾宪元-爱和梦想,http://em.21dtv.com/songs/60121743.mkv +王羽泽-爱毁灭了,http://em.21dtv.com/songs/60007613.mkv +欢子-爱昏了头,http://em.21dtv.com/songs/60007615.mkv +许强-爱或离开,http://em.21dtv.com/songs/60007624.mkv +蔡小虎-爱河恋歌,http://em.21dtv.com/songs/60007582.mkv +中国娃娃-啊happy little eye,http://em.21dtv.com/songs/60006848.mkv +萧敬腾+唐一嘉-爱很简单,http://em.21dtv.com/songs/60094666.mkv +苏姗-爱很简单(演唱会),http://em.21dtv.com/songs/60074369.mkv +许飞+阿穆隆+韩真真-爱很简单(演唱会),http://em.21dtv.com/songs/60071718.mkv +梦成-爱很简单,http://em.21dtv.com/songs/60070462.mkv +晗月-爱很简单,http://em.21dtv.com/songs/60007589.mkv +张学友-爱很简单(演唱会),http://em.21dtv.com/songs/60007588.mkv +陶喆-爱很简单(演唱会),http://em.21dtv.com/songs/60007587.mkv +梁咏琪-爱很简单(演唱会),http://em.21dtv.com/songs/60007586.mkv +黄凯芹-爱很简单(演唱会),http://em.21dtv.com/songs/60007585.mkv +予豪-爱恨纠缠,http://em.21dtv.com/songs/60126579.mkv +林翠萍-爱恨纠缠,http://em.21dtv.com/songs/60091494.mkv +周迅-爱恨恢恢,http://em.21dtv.com/songs/60007597.mkv +曾仕贤-爱海高飞,http://em.21dtv.com/songs/60007573.mkv +吴淑敏-爱恨分明,http://em.21dtv.com/songs/60007596.mkv +刘媛媛-啊哈嘟呀(演唱会),http://em.21dtv.com/songs/60006853.mkv +张学友+陈慧娴-爱和承诺,http://em.21dtv.com/songs/60007578.mkv +张宇-爱很缠绵,http://em.21dtv.com/songs/60091080.mkv +伍佰-爱和痴迷,http://em.21dtv.com/songs/60090589.mkv +陈星-爱恨缠绵,http://em.21dtv.com/songs/60007595.mkv +关淑怡-爱恨缠绵(演唱会),http://em.21dtv.com/songs/60007594.mkv +方文琳-爱恨边缘,http://em.21dtv.com/songs/60007593.mkv +汪贤祖-爱回不来,http://em.21dtv.com/songs/60082486.mkv +木禾-爱恨宝贝,http://em.21dtv.com/songs/60082484.mkv +许志安-安哥之歌,http://em.21dtv.com/songs/60093155.mkv +范振锋+梁奕伦-安哥之歌(演唱会),http://em.21dtv.com/songs/60009308.mkv +大芭-abc狗咬猪,http://em.21dtv.com/songs/60072867.mkv +易天晴-爱过拥有(无原唱),http://em.21dtv.com/songs/60007565.mkv +小刚-爱过以后,http://em.21dtv.com/songs/60090987.mkv +孙楠-爱过以后,http://em.21dtv.com/songs/60089792.mkv +李嘉石-爱过以后,http://em.21dtv.com/songs/60065781.mkv +冷漠+云菲菲-爱过以后,http://em.21dtv.com/songs/60060978.mkv +毛宁+杨钰莹-爱过以后,http://em.21dtv.com/songs/60007564.mkv +吴雨霏-爱过一场,http://em.21dtv.com/songs/60007562.mkv +王非非-爱过一场,http://em.21dtv.com/songs/60007561.mkv +吴雨霏-爱过一场(演唱会),http://em.21dtv.com/songs/60007560.mkv +翁立友-爱过无心,http://em.21dtv.com/songs/60100390.mkv +谢世超-爱过痛过,http://em.21dtv.com/songs/60084807.mkv +猪头皮-傲骨人生,http://em.21dtv.com/songs/60009431.mkv +金池-爱过了站,http://em.21dtv.com/songs/60121038.mkv +郑暠天-爱过了头,http://em.21dtv.com/songs/60124564.mkv +萧敬腾-爱过了头,http://em.21dtv.com/songs/60007547.mkv +崔子格+刘雨潼-爱过留情,http://em.21dtv.com/songs/60101074.mkv +黄俊渊-爱过了你,http://em.21dtv.com/songs/60007546.mkv +金中孥仔一棚戏-俺个金中,http://em.21dtv.com/songs/60135839.mkv +草蜢-爱过就忘(演唱会),http://em.21dtv.com/songs/60007544.mkv +张宇-爱过境迁,http://em.21dtv.com/songs/60095299.mkv +伍薪蓓-爱过就好,http://em.21dtv.com/songs/60087294.mkv +粟正奇-爱过就好,http://em.21dtv.com/songs/60074357.mkv +李紫涵+沈艾莎-爱过就好,http://em.21dtv.com/songs/60007541.mkv +郝月华-爱过就够,http://em.21dtv.com/songs/60118101.mkv +王建杰-爱过恨过,http://em.21dtv.com/songs/60107072.mkv +洪百慧-爱过恨过,http://em.21dtv.com/songs/60007538.mkv +陈泳泼-爱光棍儿,http://em.21dtv.com/songs/60115503.mkv +杨春明-爱过的人,http://em.21dtv.com/songs/60102371.mkv +郑源-爱过的人(演唱会),http://em.21dtv.com/songs/60069180.mkv +林姗-爱过的人(无原唱),http://em.21dtv.com/songs/60007537.mkv +何洁-爱过的你,http://em.21dtv.com/songs/60065778.mkv +云丹久美-阿古顿巴,http://em.21dtv.com/songs/60006739.mkv +邓子霆-爱过错过,http://em.21dtv.com/songs/60082481.mkv +谢军-阿哥阿妹,http://em.21dtv.com/songs/60128403.mkv +龙飞+贺世哲-阿哥阿妹,http://em.21dtv.com/songs/60100698.mkv +谢军-阿哥阿妹,http://em.21dtv.com/songs/60082449.mkv +朱玉好-阿哥阿妹,http://em.21dtv.com/songs/60074276.mkv +张国荣-阿飞正传,http://em.21dtv.com/songs/60087799.mkv +李骏宇-案发现场,http://em.21dtv.com/songs/60068089.mkv +陈慧琳-安份守己,http://em.21dtv.com/songs/60009307.mkv +田维英-爱非所爱,http://em.21dtv.com/songs/60123038.mkv +田维英-爱非所爱,http://em.21dtv.com/songs/60096417.mkv +黄威尔-爱犯了错,http://em.21dtv.com/songs/60070461.mkv +林志颖-爱的主张,http://em.21dtv.com/songs/60091475.mkv +周丽淇-爱的作战,http://em.21dtv.com/songs/60089736.mkv +明阳-爱的种子,http://em.21dtv.com/songs/60060976.mkv +铁石-爱的最真,http://em.21dtv.com/songs/60007471.mkv +佚名-爱的种籽(无原唱),http://em.21dtv.com/songs/60007460.mkv +圣诞老人不在家的驯鹿-爱的箴言,http://em.21dtv.com/songs/60127876.mkv +郭宴-爱的箴言,http://em.21dtv.com/songs/60135831.mkv +萧敬腾-爱的箴言,http://em.21dtv.com/songs/60126126.mkv +马智宇-爱的箴言,http://em.21dtv.com/songs/60110698.mkv +黄绮珊-爱的箴言,http://em.21dtv.com/songs/60106501.mkv +邓超+董洁-爱的箴言,http://em.21dtv.com/songs/60102781.mkv +周子琰-爱的箴言,http://em.21dtv.com/songs/60097392.mkv +韩磊-爱的箴言,http://em.21dtv.com/songs/60097391.mkv +潘越云-爱的箴言,http://em.21dtv.com/songs/60090066.mkv +朱克-爱的箴言,http://em.21dtv.com/songs/60081523.mkv +陈慧琳-爱的自由,http://em.21dtv.com/songs/60007469.mkv +郭富城-爱的咒语,http://em.21dtv.com/songs/60007461.mkv +韩红-爱的箴言,http://em.21dtv.com/songs/60007457.mkv +邓丽君-爱的箴言,http://em.21dtv.com/songs/60007456.mkv +黑豹乐队-爱的箴言(演唱会),http://em.21dtv.com/songs/60007455.mkv +许景淳-爱的箴言(无原唱),http://em.21dtv.com/songs/60007454.mkv +张宇-爱到这样,http://em.21dtv.com/songs/60007125.mkv +流苏-爱的滋味,http://em.21dtv.com/songs/60107871.mkv +蔡小虎-爱的滋味,http://em.21dtv.com/songs/60105339.mkv +尤雅-爱的滋味(无原唱),http://em.21dtv.com/songs/60080694.mkv +孙淑媚-爱的滋味,http://em.21dtv.com/songs/60007467.mkv +金梓+林剑衡-爱的主题,http://em.21dtv.com/songs/60096520.mkv +舒心翼语+舒晓晓-爱到最深,http://em.21dtv.com/songs/60080491.mkv +张祥洪-爱的责任,http://em.21dtv.com/songs/60082476.mkv +黄凯芹-爱的自然,http://em.21dtv.com/songs/60007468.mkv +黄凯芹-爱得自然,http://em.21dtv.com/songs/60007163.mkv +陈后华+霜霜-爱的执念,http://em.21dtv.com/songs/60120071.mkv +王晓敏-爱的折磨,http://em.21dtv.com/songs/60112108.mkv +熊思嘉-爱的折磨,http://em.21dtv.com/songs/60094215.mkv +郎军-爱都走了,http://em.21dtv.com/songs/60120021.mkv +李千娜-爱到站了,http://em.21dtv.com/songs/60100132.mkv +陈盈洁-爱的珠泪,http://em.21dtv.com/songs/60003419.mkv +欧霖-爱的站口,http://em.21dtv.com/songs/60119745.mkv +黄思婷+翁立友-爱的证据,http://em.21dtv.com/songs/60065775.mkv +谢金晶-爱到最后,http://em.21dtv.com/songs/60135747.mkv +刘子毅+王小尧-爱的指环,http://em.21dtv.com/songs/60084806.mkv +安东阳-爱到最后,http://em.21dtv.com/songs/60081840.mkv +祁隆-爱到最后,http://em.21dtv.com/songs/60074316.mkv +金志文+胡雯-爱到最后,http://em.21dtv.com/songs/60074315.mkv +董夏娟-爱到最后,http://em.21dtv.com/songs/60066777.mkv +陈洁仪-爱的正好,http://em.21dtv.com/songs/60007458.mkv +苏永康+陈洁仪-爱得正好,http://em.21dtv.com/songs/60007162.mkv +臧逸文-爱到最后,http://em.21dtv.com/songs/60007130.mkv +黎明+周慧敏-爱到最后,http://em.21dtv.com/songs/60007129.mkv +郭富城-爱到最后,http://em.21dtv.com/songs/60007128.mkv +阿BEN-安达之歌,http://em.21dtv.com/songs/60071758.mkv +庄心妍-爱的祝福,http://em.21dtv.com/songs/60116770.mkv +云菲菲-爱的绽放,http://em.21dtv.com/songs/60082477.mkv +陈瑞-爱到终点,http://em.21dtv.com/songs/60114217.mkv +黄鹏-爱的真谛,http://em.21dtv.com/songs/60099631.mkv +郑知文-爱的忠诚,http://em.21dtv.com/songs/60124568.mkv +商东茜-爱的助词,http://em.21dtv.com/songs/60007466.mkv +佚名-爱的影子,http://em.21dtv.com/songs/60007437.mkv +秦御峰+天籁天-爱到永远,http://em.21dtv.com/songs/60127252.mkv +董芹-爱到永远,http://em.21dtv.com/songs/60112928.mkv +罗锡贵-爱到永远,http://em.21dtv.com/songs/60112889.mkv +SNH48-爱的意义,http://em.21dtv.com/songs/60104730.mkv +孙楠-爱都一样,http://em.21dtv.com/songs/60089793.mkv +臧天朔-爱到永远,http://em.21dtv.com/songs/60088509.mkv +涓子-爱的牙印,http://em.21dtv.com/songs/60063856.mkv +袁小迪+小梅-爱到永远,http://em.21dtv.com/songs/60007122.mkv +马晓鹏+王云川-爱的余味,http://em.21dtv.com/songs/60127596.mkv +何杰-爱的原味,http://em.21dtv.com/songs/60095185.mkv +刘美冰-爱的原味,http://em.21dtv.com/songs/60082475.mkv +路宏-爱的原味,http://em.21dtv.com/songs/60081107.mkv +许慧欣-爱的原味,http://em.21dtv.com/songs/60007445.mkv +陈晨+姜萌轩+喏喏+萱萱-爱的硬伤,http://em.21dtv.com/songs/60110640.mkv +湘唯一-爱定一生,http://em.21dtv.com/songs/60094211.mkv +周历城-爱的勇气,http://em.21dtv.com/songs/60123753.mkv +范婧-爱的夜曲,http://em.21dtv.com/songs/60103537.mkv +曲婉婷-爱的勇气,http://em.21dtv.com/songs/60103328.mkv +钟子炫-爱的预期,http://em.21dtv.com/songs/60102834.mkv +林垂立+彭莉-爱的勇气,http://em.21dtv.com/songs/60007440.mkv +赖雅妍-爱的勇气,http://em.21dtv.com/songs/60007439.mkv +吴俅-爱的勇气(无原唱),http://em.21dtv.com/songs/60007438.mkv +张强-爱的印记,http://em.21dtv.com/songs/60131397.mkv +红蔷薇-爱的印记,http://em.21dtv.com/songs/60129474.mkv +方薇-爱的印记,http://em.21dtv.com/songs/60007436.mkv +蓝月心-爱的诱惑,http://em.21dtv.com/songs/60109609.mkv +王丽萍-爱的阳光,http://em.21dtv.com/songs/60101441.mkv +汤灿-爱的月光,http://em.21dtv.com/songs/60007447.mkv +祁隆-爱的音符[消伴],http://em.21dtv.com/songs/60100935.mkv +祁隆-爱的音符,http://em.21dtv.com/songs/60100934.mkv +高安-爱的音符,http://em.21dtv.com/songs/60007435.mkv +德吉才仁+丹巴旺姆-爱的约定,http://em.21dtv.com/songs/60123981.mkv +徐方-爱的原点,http://em.21dtv.com/songs/60105078.mkv +梁咏琪-爱多一点,http://em.21dtv.com/songs/60092893.mkv +佚名-爱的约定,http://em.21dtv.com/songs/60007446.mkv +卢广仲-啊大岩壁(演唱会),http://em.21dtv.com/songs/60006851.mkv +高向鹏+傅振辉+邱淑君-爱的选择,http://em.21dtv.com/songs/60007434.mkv +佚名-爱的星座,http://em.21dtv.com/songs/60007428.mkv +刘文正-爱的星座,http://em.21dtv.com/songs/60007427.mkv +侯心琪-爱的信仰,http://em.21dtv.com/songs/60119263.mkv +王铮亮-爱的信仰,http://em.21dtv.com/songs/60112858.mkv +姜波-爱的心语,http://em.21dtv.com/songs/60111801.mkv +大嘴巴-爱的宣言,http://em.21dtv.com/songs/60007432.mkv +天堂飘雪-爱的信息,http://em.21dtv.com/songs/60101060.mkv +云菲菲-爱的旋涡,http://em.21dtv.com/songs/60095258.mkv +李腾-爱的小屋,http://em.21dtv.com/songs/60088041.mkv +囚鸟-爱到虚无,http://em.21dtv.com/songs/60063841.mkv +云菲菲-爱的漩涡,http://em.21dtv.com/songs/60007433.mkv +张蓉蓉-爱的希望,http://em.21dtv.com/songs/60007413.mkv +张津涤-爱的信徒,http://em.21dtv.com/songs/60121656.mkv +王家顺-爱的想逃,http://em.21dtv.com/songs/60007418.mkv +高向鹏-爱到心痛(无原唱),http://em.21dtv.com/songs/60007119.mkv +林姗-爱到心疼,http://em.21dtv.com/songs/60007118.mkv +晓月-爱到心碎,http://em.21dtv.com/songs/60105110.mkv +孙燕姿-爱的线索,http://em.21dtv.com/songs/60090932.mkv +司文-爱到心碎,http://em.21dtv.com/songs/60074314.mkv +张国荣-爱的凶手(演唱会),http://em.21dtv.com/songs/60007431.mkv +佚名-爱的凶手(无原唱),http://em.21dtv.com/songs/60007430.mkv +佚名-爱的醒思,http://em.21dtv.com/songs/60007429.mkv +费玉清-爱的心声,http://em.21dtv.com/songs/60007424.mkv +代小波-爱到心碎,http://em.21dtv.com/songs/60007116.mkv +陈盈洁-爱的笑容,http://em.21dtv.com/songs/60007423.mkv +罗孝勇-爱的信念,http://em.21dtv.com/songs/60131728.mkv +阳一-爱的信念,http://em.21dtv.com/songs/60007426.mkv +余天-爱的小路,http://em.21dtv.com/songs/60007420.mkv +洪荣宏-爱的小路,http://em.21dtv.com/songs/60007419.mkv +谢金燕-爱的辛苦,http://em.21dtv.com/songs/60089477.mkv +许志安-爱得辛苦,http://em.21dtv.com/songs/60007157.mkv +谢金燕-爱得辛苦,http://em.21dtv.com/songs/60007156.mkv +琪琪格-爱的心经,http://em.21dtv.com/songs/60127222.mkv +安又琪-安大小姐,http://em.21dtv.com/songs/60071759.mkv +张学友-爱的星火,http://em.21dtv.com/songs/60092589.mkv +李登威-爱的笑话(无原唱),http://em.21dtv.com/songs/60007422.mkv +周斌华-爱的习惯,http://em.21dtv.com/songs/60097386.mkv +侧田-爱的习惯(演唱会),http://em.21dtv.com/songs/60007414.mkv +陈小春-爱的相反,http://em.21dtv.com/songs/60080914.mkv +侯强-安达兄弟,http://em.21dtv.com/songs/60099092.mkv +龙军+彭筝-爱的位置,http://em.21dtv.com/songs/60094363.mkv +FUTURES LADY-爱的温毯,http://em.21dtv.com/songs/60123471.mkv +黄圣依-爱的纹身,http://em.21dtv.com/songs/60007407.mkv +徐宁-爱的无情,http://em.21dtv.com/songs/60091192.mkv +佚名-爱到无情(无原唱),http://em.21dtv.com/songs/60007115.mkv +SNH48-爱的舞娘(演唱会),http://em.21dtv.com/songs/60104731.mkv +刘庭羽+蒲巴甲-爱到万年,http://em.21dtv.com/songs/60007109.mkv +谢采妘-爱的涡流,http://em.21dtv.com/songs/60007408.mkv +谢华-爱得忘了,http://em.21dtv.com/songs/60007154.mkv +程远+梁安琪-爱的王国,http://em.21dtv.com/songs/60063854.mkv +张瑶-爱的无辜,http://em.21dtv.com/songs/60007409.mkv +郑秀文-爱的挽歌,http://em.21dtv.com/songs/60007404.mkv +郑秀文-爱的挽歌(演唱会),http://em.21dtv.com/songs/60007403.mkv +谢霆锋+林忆莲-爱的味道,http://em.21dtv.com/songs/60116248.mkv +毕渤-爱的味道,http://em.21dtv.com/songs/60105203.mkv +飞轮海-爱的王道,http://em.21dtv.com/songs/60082474.mkv +杨韵禾-爱的味道,http://em.21dtv.com/songs/60007405.mkv +于台烟-爱的舞伴,http://em.21dtv.com/songs/60007412.mkv +佚名-爱的舞伴,http://em.21dtv.com/songs/60007411.mkv +[Group] +groupName=十六万歌曲MV等 - 37 +王建杰-爱到天涯,http://em.21dtv.com/songs/60007107.mkv +闫凤梅-爱的眺望,http://em.21dtv.com/songs/60108951.mkv +古巨基-爱得太晚,http://em.21dtv.com/songs/60087508.mkv +王雯-爱的突围,http://em.21dtv.com/songs/60074349.mkv +夏丹丹-爱的天堂,http://em.21dtv.com/songs/60132317.mkv +张冬玲-爱的天堂,http://em.21dtv.com/songs/60100009.mkv +孙百慧-爱的天堂,http://em.21dtv.com/songs/60086402.mkv +孙杰-爱的天堂,http://em.21dtv.com/songs/60007399.mkv +阿桑古卡-爱的天堂,http://em.21dtv.com/songs/60007398.mkv +张娟-爱的太深,http://em.21dtv.com/songs/60105826.mkv +金大喜-爱的天使,http://em.21dtv.com/songs/60101537.mkv +觉悟-爱的太傻,http://em.21dtv.com/songs/60097387.mkv +暴林-爱的太深,http://em.21dtv.com/songs/60087949.mkv +朱紫娆-爱得太少,http://em.21dtv.com/songs/60074324.mkv +KHLOE CHU-爱得太少,http://em.21dtv.com/songs/60069173.mkv +蔡枫华-爱得太深(演唱会),http://em.21dtv.com/songs/60060973.mkv +蔡依林+安志杰-爱的天使,http://em.21dtv.com/songs/60007397.mkv +太极乐队-爱的替身,http://em.21dtv.com/songs/60007393.mkv +太极乐队+谭咏麟-爱的替身,http://em.21dtv.com/songs/60007392.mkv +谭咏麟+李克勤-爱的替身(演唱会),http://em.21dtv.com/songs/60007390.mkv +太极乐队+谭咏麟-爱的替身(演唱会),http://em.21dtv.com/songs/60007389.mkv +李宇春-爱的太傻,http://em.21dtv.com/songs/60007382.mkv +李宇春-爱的太傻(演唱会),http://em.21dtv.com/songs/60007381.mkv +李宇春-爱得太傻,http://em.21dtv.com/songs/60007153.mkv +佚名-爱的突破,http://em.21dtv.com/songs/60007402.mkv +新疆民歌-爱的甜蜜,http://em.21dtv.com/songs/60089916.mkv +许廷铿-爱到透明,http://em.21dtv.com/songs/60074313.mkv +孙露-爱得太累,http://em.21dtv.com/songs/60115838.mkv +葛笑-爱得太累,http://em.21dtv.com/songs/60100445.mkv +沉默-爱得太累,http://em.21dtv.com/songs/60084794.mkv +孙露-爱的太累,http://em.21dtv.com/songs/60074348.mkv +陈珧-爱的铁栏,http://em.21dtv.com/songs/60007400.mkv +黑龙-爱的太累,http://em.21dtv.com/songs/60007380.mkv +拜尔-爱的太快,http://em.21dtv.com/songs/60091251.mkv +展翼-爱的坦克,http://em.21dtv.com/songs/60087728.mkv +ZAYIN-爱的坦克,http://em.21dtv.com/songs/60007383.mkv +李翊君-爱得太狂(无原唱),http://em.21dtv.com/songs/60007152.mkv +宋娜+高安-爱的童话,http://em.21dtv.com/songs/60107662.mkv +高安_宋娜-爱的童话,http://em.21dtv.com/songs/60095362.mkv +王心凌-爱的天国,http://em.21dtv.com/songs/60007395.mkv +佚名-爱的天地(无原唱),http://em.21dtv.com/songs/60007394.mkv +巫启贤-爱的太多,http://em.21dtv.com/songs/60007379.mkv +张亚飞-爱得太多,http://em.21dtv.com/songs/60007151.mkv +王杰-爱得太多,http://em.21dtv.com/songs/60007150.mkv +艾乐-爱的太蠢,http://em.21dtv.com/songs/60131756.mkv +王心凌-爱的套餐,http://em.21dtv.com/songs/60007386.mkv +古巨基-爱得太迟,http://em.21dtv.com/songs/60007149.mkv +古巨基+周慧敏-爱得太迟,http://em.21dtv.com/songs/60007148.mkv +古巨基-爱得太迟(演唱会),http://em.21dtv.com/songs/60007147.mkv +古巨基+周慧敏-爱得太迟(演唱会),http://em.21dtv.com/songs/60007146.mkv +李克勤-爱的逃兵,http://em.21dtv.com/songs/60114592.mkv +谢霆锋-爱的逃兵(演唱会),http://em.21dtv.com/songs/60007385.mkv +谭咏麟-爱的逃兵(演唱会),http://em.21dtv.com/songs/60007384.mkv +邓丽君-爱的使者,http://em.21dtv.com/songs/60007366.mkv +鸿飞-爱的深渊,http://em.21dtv.com/songs/60106484.mkv +郭斯炫-爱的圣言,http://em.21dtv.com/songs/60074346.mkv +晓月-爱的誓言,http://em.21dtv.com/songs/60060975.mkv +林玉英-爱的誓言,http://em.21dtv.com/songs/60007376.mkv +黄妃-爱的誓言,http://em.21dtv.com/songs/60007375.mkv +陈茂丰-爱的事业,http://em.21dtv.com/songs/60007371.mkv +叶晓红-爱的三问,http://em.21dtv.com/songs/60082473.mkv +成铭-爱的伤痛,http://em.21dtv.com/songs/60084804.mkv +陈笑玮-爱的诉说,http://em.21dtv.com/songs/60065774.mkv +榭霖-爱的神奇,http://em.21dtv.com/songs/60111213.mkv +乌兰托娅-爱的思念,http://em.21dtv.com/songs/60063077.mkv +央金兰泽-爱的思念,http://em.21dtv.com/songs/60007377.mkv +熊磊-爱的宿命,http://em.21dtv.com/songs/60117020.mkv +崔琰-爱的色盲,http://em.21dtv.com/songs/60080926.mkv +孙楠-爱的生命(演唱会)(无原唱),http://em.21dtv.com/songs/60007363.mkv +方瑞娥-爱的锁链,http://em.21dtv.com/songs/60007378.mkv +婷婷-爱的胜利,http://em.21dtv.com/songs/60007364.mkv +金城-爱的伤了,http://em.21dtv.com/songs/60007359.mkv +叶玉卿-爱的伤口,http://em.21dtv.com/songs/60007358.mkv +ALICIA KEYS-爱的时间,http://em.21dtv.com/songs/60100706.mkv +叶胜钦-爱的世界,http://em.21dtv.com/songs/60007370.mkv +任贤齐-爱的世界,http://em.21dtv.com/songs/60007369.mkv +B.A.D-爱的世界,http://em.21dtv.com/songs/60007368.mkv +林忆莲-爱的世界(演唱会),http://em.21dtv.com/songs/60007367.mkv +王小娟-爱的升华,http://em.21dtv.com/songs/60128222.mkv +李自强-爱的升华,http://em.21dtv.com/songs/60088044.mkv +李慧珍-爱的神话,http://em.21dtv.com/songs/60088014.mkv +谭晶-爱的神话(演唱会),http://em.21dtv.com/songs/60074345.mkv +金永-爱的守候,http://em.21dtv.com/songs/60070460.mkv +佚名-爱的伤痕,http://em.21dtv.com/songs/60007356.mkv +鸿晨-爱的伤痕,http://em.21dtv.com/songs/60007355.mkv +佚名-爱的伤害(无原唱),http://em.21dtv.com/songs/60007354.mkv +李自强-爱得升华,http://em.21dtv.com/songs/60007144.mkv +裘海正-爱到失魂,http://em.21dtv.com/songs/60007101.mkv +王力宏-爱的是非,http://em.21dtv.com/songs/60007372.mkv +王思佳-爱的时代,http://em.21dtv.com/songs/60123001.mkv +汪峰-爱的隧道,http://em.21dtv.com/songs/60102457.mkv +萧亚轩-爱第三次,http://em.21dtv.com/songs/60091993.mkv +罗钢-爱到深处,http://em.21dtv.com/songs/60007099.mkv +孙艳-爱的荣耀,http://em.21dtv.com/songs/60098247.mkv +柯有伦-爱的荣耀(演唱会),http://em.21dtv.com/songs/60007353.mkv +王坤城-爱的忍受(无原唱),http://em.21dtv.com/songs/60007351.mkv +蔡小虎-爱的人客,http://em.21dtv.com/songs/60007349.mkv +陈明真-爱到如今,http://em.21dtv.com/songs/60088883.mkv +孙佳星-爱的人间,http://em.21dtv.com/songs/60074344.mkv +佚名-爱的日记,http://em.21dtv.com/songs/60007352.mkv +王又萱-爱的泉源,http://em.21dtv.com/songs/60131645.mkv +张梅+泽仁伍波-爱的奇遇,http://em.21dtv.com/songs/60120515.mkv +祁隆-爱的期限,http://em.21dtv.com/songs/60106172.mkv +祁隆-爱的期限,http://em.21dtv.com/songs/60097390.mkv +郑少秋-爱的倾泻,http://em.21dtv.com/songs/60093285.mkv +华生-爱的期限,http://em.21dtv.com/songs/60084801.mkv +罗布顿珠-爱的羌塘,http://em.21dtv.com/songs/60128310.mkv +小琢-爱的情调,http://em.21dtv.com/songs/60120473.mkv +刘卓然-爱的晴天,http://em.21dtv.com/songs/60070457.mkv +朱纳-爱的倾诉,http://em.21dtv.com/songs/60115216.mkv +阿毛-爱断情殇,http://em.21dtv.com/songs/60062196.mkv +蔡琴-爱断情伤,http://em.21dtv.com/songs/60007483.mkv +咖啡因乐队-爱的气球,http://em.21dtv.com/songs/60007347.mkv +李菓-爱的权利,http://em.21dtv.com/songs/60081035.mkv +王佳佳-爱的奇迹,http://em.21dtv.com/songs/60131631.mkv +殷悦-爱的奇迹,http://em.21dtv.com/songs/60007344.mkv +杨培安-爱的奇迹,http://em.21dtv.com/songs/60007343.mkv +群星-爱的奇迹,http://em.21dtv.com/songs/60007342.mkv +陈嘉唯-爱的奇迹,http://em.21dtv.com/songs/60007341.mkv +183CLUB-爱的奇迹,http://em.21dtv.com/songs/60007340.mkv +张杰+许慧欣-爱的奇迹(演唱会),http://em.21dtv.com/songs/60007339.mkv +陈雷+甲子慧-爱的情火,http://em.21dtv.com/songs/60120108.mkv +孙淑媚-爱的情火,http://em.21dtv.com/songs/60119428.mkv +冷漠-爱的忏悔,http://em.21dtv.com/songs/60062577.mkv +张艳君-爱的祈福,http://em.21dtv.com/songs/60122746.mkv +陈奕冰-爱的祈祷,http://em.21dtv.com/songs/60130835.mkv +陈柯宇-爱的起点,http://em.21dtv.com/songs/60084802.mkv +刘晓东-爱短情长,http://em.21dtv.com/songs/60117580.mkv +谢霆锋-爱的翘板,http://em.21dtv.com/songs/60089480.mkv +谢霆锋-爱的跷板,http://em.21dtv.com/songs/60007348.mkv +庾澄庆-爱的叛动,http://em.21dtv.com/songs/60007338.mkv +高向鹏-爱的诺言,http://em.21dtv.com/songs/60007337.mkv +王琼-爱的呢喃,http://em.21dtv.com/songs/60123009.mkv +崔子格-爱的奴隶,http://em.21dtv.com/songs/60074341.mkv +欢子-爱的奴隶,http://em.21dtv.com/songs/60068039.mkv +爱朵女孩-爱的女孩,http://em.21dtv.com/songs/60074342.mkv +韩晓辉-爱的迷醉,http://em.21dtv.com/songs/60109010.mkv +于全莉-爱的迷醉,http://em.21dtv.com/songs/60108277.mkv +彭莉-爱的目睭,http://em.21dtv.com/songs/60007332.mkv +李嘉+周韦杰-爱的名字,http://em.21dtv.com/songs/60007324.mkv +杨乐-爱的名义,http://em.21dtv.com/songs/60118701.mkv +香儿-爱的蔓延,http://em.21dtv.com/songs/60069176.mkv +陈盈洁-爱的命运,http://em.21dtv.com/songs/60007325.mkv +许强-爱的迷雾,http://em.21dtv.com/songs/60007322.mkv +陈瑞-爱的迷雾,http://em.21dtv.com/songs/60007321.mkv +紫海-爱的迷途,http://em.21dtv.com/songs/60082050.mkv +崎君-爱的迷墙,http://em.21dtv.com/songs/60007320.mkv +王莱+郑乔安-爱的门牌,http://em.21dtv.com/songs/60121950.mkv +何遇程-爱的迷茫,http://em.21dtv.com/songs/60112510.mkv +甜美真-爱的密码,http://em.21dtv.com/songs/60069177.mkv +邓丽君-爱的秘密,http://em.21dtv.com/songs/60007323.mkv +马珂-爱冬眠了,http://em.21dtv.com/songs/60068041.mkv +夏国星-爱的魔力,http://em.21dtv.com/songs/60007330.mkv +王中平-爱的魔力,http://em.21dtv.com/songs/60007329.mkv +董冬-爱的魔力,http://em.21dtv.com/songs/60007328.mkv +翁倩玉-爱的迷恋(无原唱),http://em.21dtv.com/songs/60007319.mkv +一东-爱的目光,http://em.21dtv.com/songs/60084800.mkv +吴克羣-爱的秘方(HD),http://em.21dtv.com/songs/10012726.mkv +金莎-爱的魔法,http://em.21dtv.com/songs/60074340.mkv +吴克群-爱的秘方,http://em.21dtv.com/songs/60063100.mkv +杨采妮-爱的魔法,http://em.21dtv.com/songs/60007327.mkv +夏宇童-爱的魔法,http://em.21dtv.com/songs/60007326.mkv +何韵诗-爱德蒙多,http://em.21dtv.com/songs/60092280.mkv +范玮琪-爱的盲点,http://em.21dtv.com/songs/60007318.mkv +陈妍希+陈汉典+倪安东-爱的面包,http://em.21dtv.com/songs/60082472.mkv +潘秀琼-爱的泪珠,http://em.21dtv.com/songs/60090058.mkv +姜育恒-爱的泪珠,http://em.21dtv.com/songs/60089233.mkv +赵咏华-爱的泪珠,http://em.21dtv.com/songs/60007292.mkv +佚名-爱的乐章(无原唱),http://em.21dtv.com/songs/60007291.mkv +岳太阳-爱的涟漪,http://em.21dtv.com/songs/60119470.mkv +F4-爱的领域,http://em.21dtv.com/songs/60007302.mkv +艾丽雅-爱的涟漪,http://em.21dtv.com/songs/60007300.mkv +蔡昕彤-爱的理想,http://em.21dtv.com/songs/60127366.mkv +王语彤-爱到零下,http://em.21dtv.com/songs/60107915.mkv +赵斗堂-爱断了线,http://em.21dtv.com/songs/60065776.mkv +刘德华-爱的连线,http://em.21dtv.com/songs/60007299.mkv +邓丽君-爱的理想,http://em.21dtv.com/songs/60007294.mkv +孙中亮-爱的礼物,http://em.21dtv.com/songs/60106767.mkv +丁琪媛-爱的礼物,http://em.21dtv.com/songs/60093945.mkv +凤飞飞-爱的礼物,http://em.21dtv.com/songs/60007293.mkv +孤独浪子-爱的旅途,http://em.21dtv.com/songs/60102145.mkv +林慧萍-爱的旅途,http://em.21dtv.com/songs/60091480.mkv +陈思思-爱的旅途(演唱会),http://em.21dtv.com/songs/60063850.mkv +李翊君-爱的旅途,http://em.21dtv.com/songs/60007315.mkv +佚名-爱的铃声,http://em.21dtv.com/songs/60007301.mkv +秋雨-爱到离谱,http://em.21dtv.com/songs/60074311.mkv +官爱莎-爱的涟涟,http://em.21dtv.com/songs/60126792.mkv +雷琛瑜-爱的履历,http://em.21dtv.com/songs/60126423.mkv +雷琛瑜-爱的履历,http://em.21dtv.com/songs/60122257.mkv +徐新军+徐黄美琦-爱的力量,http://em.21dtv.com/songs/60107746.mkv +庞锟-爱的力量,http://em.21dtv.com/songs/60106817.mkv +王旭-爱的力量,http://em.21dtv.com/songs/60095210.mkv +潘秀琼-爱的留连,http://em.21dtv.com/songs/60090059.mkv +李明洋-爱的力量,http://em.21dtv.com/songs/60074339.mkv +朱文-爱的力量,http://em.21dtv.com/songs/60007298.mkv +王中平-爱的力量,http://em.21dtv.com/songs/60007297.mkv +群星-爱的力量,http://em.21dtv.com/songs/60007296.mkv +F.I.R-爱的力量(演唱会),http://em.21dtv.com/songs/60007295.mkv +张敬轩-爱的裂痕,http://em.21dtv.com/songs/60091106.mkv +远方-爱的轮回,http://em.21dtv.com/songs/60007313.mkv +李翊君-爱的恋歌,http://em.21dtv.com/songs/60069175.mkv +唐美华-爱的流放,http://em.21dtv.com/songs/60106730.mkv +王语心+陈玉建-爱的旅程,http://em.21dtv.com/songs/60134009.mkv +毛阿敏-爱的旅程,http://em.21dtv.com/songs/60091550.mkv +李心琪-爱的旅程,http://em.21dtv.com/songs/60007314.mkv +孙淑媚-爱到坎站,http://em.21dtv.com/songs/60007090.mkv +BIZ+俞思远-爱的狂野,http://em.21dtv.com/songs/60007289.mkv +陈一郎-爱的抗议,http://em.21dtv.com/songs/60007285.mkv +张学友-爱的渴望,http://em.21dtv.com/songs/60091071.mkv +候玉斌-爱的可能,http://em.21dtv.com/songs/60118361.mkv +凤凰传奇-爱的狂怒,http://em.21dtv.com/songs/60007288.mkv +叶倩文-爱的可能,http://em.21dtv.com/songs/60007286.mkv +陈奕迅-爱的傀儡,http://em.21dtv.com/songs/60007290.mkv +林淑娟-爱的苦酒(演唱会),http://em.21dtv.com/songs/60074338.mkv +佚名-爱的苦酒,http://em.21dtv.com/songs/60007287.mkv +徐莹-爱的困惑,http://em.21dtv.com/songs/60100055.mkv +小俊-爱的苦果,http://em.21dtv.com/songs/60084799.mkv +孙艺琪-爱的空城,http://em.21dtv.com/songs/60132366.mkv +沈丹丹-爱的开场,http://em.21dtv.com/songs/60088210.mkv +戴军+杨谩-爱的空白,http://em.21dtv.com/songs/60091236.mkv +娅琳-爱的见证,http://em.21dtv.com/songs/60126776.mkv +丁少华-爱的节奏,http://em.21dtv.com/songs/60104752.mkv +张国荣-爱的抉择(无原唱),http://em.21dtv.com/songs/60007283.mkv +陈洁丽-爱的见证,http://em.21dtv.com/songs/60007270.mkv +芊芳-爱到今夜,http://em.21dtv.com/songs/60135658.mkv +王爱华-爱的记忆,http://em.21dtv.com/songs/60065771.mkv +梅艳芳-爱的教育,http://em.21dtv.com/songs/60007274.mkv +何韵诗-爱的教育(演唱会),http://em.21dtv.com/songs/60007273.mkv +许景淳-爱的鉴言(无原唱),http://em.21dtv.com/songs/60007271.mkv +群星-爱的家园,http://em.21dtv.com/songs/60007268.mkv +陆毅-爱的记忆,http://em.21dtv.com/songs/60007264.mkv +李佳-爱的家乡,http://em.21dtv.com/songs/60007267.mkv +孙淑媚-爱到绝望,http://em.21dtv.com/songs/60095511.mkv +徐俊嵩-爱到尽头,http://em.21dtv.com/songs/60121698.mkv +小龙女-爱到尽头,http://em.21dtv.com/songs/60098294.mkv +雨天-爱到尽头,http://em.21dtv.com/songs/60007088.mkv +郑秀文-爱到尽时,http://em.21dtv.com/songs/60093314.mkv +古巨基-爱的解释,http://em.21dtv.com/songs/60007275.mkv +唐朝-爱的节拍,http://em.21dtv.com/songs/60133513.mkv +毛泓艳-爱的纪念,http://em.21dtv.com/songs/60074337.mkv +格格-爱的纪念,http://em.21dtv.com/songs/60007265.mkv +汪佳佳-爱的积累,http://em.21dtv.com/songs/60130531.mkv +张沛-爱的距离,http://em.21dtv.com/songs/60129096.mkv +SNH48-爱的降临(演),http://em.21dtv.com/songs/60099033.mkv +李国龙-爱的距离,http://em.21dtv.com/songs/60087994.mkv +谭晶-爱的接力,http://em.21dtv.com/songs/60070454.mkv +汤媛媛-爱的眷恋,http://em.21dtv.com/songs/60063849.mkv +JEAN SHEPHERD-a dear john letter,http://em.21dtv.com/songs/60000040.mkv +薛启超-爱的借口,http://em.21dtv.com/songs/60120932.mkv +蔡依林-爱的借口,http://em.21dtv.com/songs/60092020.mkv +李洪辉-爱的季节,http://em.21dtv.com/songs/60110282.mkv +夜莺-爱的季节,http://em.21dtv.com/songs/60110107.mkv +谢华-爱的季节,http://em.21dtv.com/songs/60063162.mkv +张蓉蓉-爱的记号,http://em.21dtv.com/songs/60086400.mkv +吴佩珊-爱的佳话,http://em.21dtv.com/songs/60007266.mkv +淡然-爱的祭奠,http://em.21dtv.com/songs/60129354.mkv +李明依-爱的决定,http://em.21dtv.com/songs/60007282.mkv +孙楠-爱的精彩,http://em.21dtv.com/songs/60007279.mkv +林姗+翁立友-爱的坚持,http://em.21dtv.com/songs/60007269.mkv +陈僖仪-爱的剧本,http://em.21dtv.com/songs/60079882.mkv +露滴轻寒-爱的脚步,http://em.21dtv.com/songs/60070453.mkv +佚名-another day in paradise,http://em.21dtv.com/songs/60000291.mkv +PHIL COLLINS-another day in paradise,http://em.21dtv.com/songs/60000290.mkv +朱培德-爱的谎言,http://em.21dtv.com/songs/60119639.mkv +曲婉婷-爱的海洋,http://em.21dtv.com/songs/60081675.mkv +罗时丰-爱的回忆,http://em.21dtv.com/songs/60065770.mkv +宋祖英+多明戈-爱的火焰,http://em.21dtv.com/songs/60007262.mkv +孙江枫-爱的回忆,http://em.21dtv.com/songs/60007260.mkv +蔡幸娟-爱的花园,http://em.21dtv.com/songs/60007253.mkv +苏慧伦-爱的呼应,http://em.21dtv.com/songs/60007252.mkv +自由发挥-爱的和弦,http://em.21dtv.com/songs/60074334.mkv +关德辉-爱到灰心,http://em.21dtv.com/songs/60007087.mkv +王龙-爱的回味,http://em.21dtv.com/songs/60106152.mkv +贺世哲-爱的好甜,http://em.21dtv.com/songs/60084796.mkv +罗时丰-爱的呼声,http://em.21dtv.com/songs/60134106.mkv +佚名-爱的呼声,http://em.21dtv.com/songs/60007251.mkv +赵真-爱的花期,http://em.21dtv.com/songs/60124525.mkv +伦永亮-爱的怀念(演唱会),http://em.21dtv.com/songs/60007256.mkv +张冬玲-爱的火苗,http://em.21dtv.com/songs/60120504.mkv +杨子军-爱的画面,http://em.21dtv.com/songs/60112789.mkv +瞿江锋-爱的好累,http://em.21dtv.com/songs/60007242.mkv +戊道子-爱到花开,http://em.21dtv.com/songs/60007086.mkv +戊道子-爱到花开(合唱版),http://em.21dtv.com/songs/60007085.mkv +忢訫-爱的画卷,http://em.21dtv.com/songs/60117765.mkv +万一-爱的痕迹,http://em.21dtv.com/songs/60116496.mkv +宋祖英+多明戈-爱的火炬,http://em.21dtv.com/songs/60087685.mkv +陈瑞-爱的痕迹,http://em.21dtv.com/songs/60074335.mkv +姜育恒-爱的痕迹,http://em.21dtv.com/songs/60066781.mkv +诺儿-爱的痕迹,http://em.21dtv.com/songs/60063848.mkv +林志美+C ALLSTAR-爱的火花,http://em.21dtv.com/songs/60113710.mkv +王丽达-爱的呼唤,http://em.21dtv.com/songs/60098625.mkv +熊立红-爱的呼唤,http://em.21dtv.com/songs/60084798.mkv +何刚-爱的呼唤,http://em.21dtv.com/songs/60084797.mkv +枫华+卢敏儿-爱的火花(演唱会),http://em.21dtv.com/songs/60074336.mkv +吴春燕-爱的呼唤(演唱会),http://em.21dtv.com/songs/60063084.mkv +蔡枫华+卢敏儿-爱的火花(演唱会),http://em.21dtv.com/songs/60060974.mkv +佚名-爱的火花,http://em.21dtv.com/songs/60007261.mkv +余天-爱的回航,http://em.21dtv.com/songs/60007259.mkv +郭富城-爱的呼唤,http://em.21dtv.com/songs/60007250.mkv +郭富城-爱的呼唤(演唱会),http://em.21dtv.com/songs/60007249.mkv +郭富城+郑秀文-爱的呼唤(演唱会),http://em.21dtv.com/songs/60007247.mkv +陈瑞-爱的回顾,http://em.21dtv.com/songs/60081611.mkv +张景擎-爱的回答,http://em.21dtv.com/songs/60127984.mkv +丹巴旺姆-爱的哈达,http://em.21dtv.com/songs/60123594.mkv +辛晓琪-爱的回答,http://em.21dtv.com/songs/60007258.mkv +佚名-爱的哈达,http://em.21dtv.com/songs/60007241.mkv +肖雨蒙-爱的怀抱,http://em.21dtv.com/songs/60116203.mkv +望海高歌-爱的歌谣,http://em.21dtv.com/songs/60129207.mkv +张杰+张靓颖-爱的供养,http://em.21dtv.com/songs/60125513.mkv +陆毅-爱的供养,http://em.21dtv.com/songs/60099574.mkv +谭锡禧-爱的根源(演唱会),http://em.21dtv.com/songs/60082470.mkv +何晟铭+杜淳-爱的供养,http://em.21dtv.com/songs/60063847.mkv +何晟铭-爱的供养,http://em.21dtv.com/songs/60007227.mkv +杨幂-爱的供养(演唱会),http://em.21dtv.com/songs/60007226.mkv +谭咏麟-爱的根源,http://em.21dtv.com/songs/60007225.mkv +谢安琪+谭咏麟-爱的根源(演唱会),http://em.21dtv.com/songs/60007223.mkv +谭咏麟+李克勤-爱的根源(演唱会),http://em.21dtv.com/songs/60007222.mkv +谭咏麟-爱的根源(HD演唱会),http://em.21dtv.com/songs/60007221.mkv +李玲-爱的归宿,http://em.21dtv.com/songs/60097388.mkv +余天-爱的归宿,http://em.21dtv.com/songs/60087330.mkv +黄嘉千+杜德伟-爱都给我,http://em.21dtv.com/songs/60007480.mkv +张迈-爱的港湾,http://em.21dtv.com/songs/60007216.mkv +白冰冰-爱的歌声,http://em.21dtv.com/songs/60117942.mkv +吕梓铷-爱的归宿,http://em.21dtv.com/songs/60118438.mkv +洪荣宏-爱的歌诗,http://em.21dtv.com/songs/60112074.mkv +储毅-爱的故事,http://em.21dtv.com/songs/60097389.mkv +叶蕴仪-爱的故事,http://em.21dtv.com/songs/60007234.mkv +林良欢+许志豪-爱的歌诗,http://em.21dtv.com/songs/60007220.mkv +韩浚易-爱的过去,http://em.21dtv.com/songs/60117377.mkv +群星-爱的光芒,http://em.21dtv.com/songs/60105300.mkv +杨美莲-爱的光芒,http://em.21dtv.com/songs/60089986.mkv +刘慧湘-爱的共鸣,http://em.21dtv.com/songs/60074333.mkv +林俊杰-爱的鼓励,http://em.21dtv.com/songs/60116039.mkv +王力宏-爱的鼓励,http://em.21dtv.com/songs/60088278.mkv +草蜢-爱的鼓励,http://em.21dtv.com/songs/60007229.mkv +蓝雨-爱的感觉,http://em.21dtv.com/songs/60007212.mkv +F4-爱的感觉,http://em.21dtv.com/songs/60007211.mkv +韩春雨-爱的蛊惑,http://em.21dtv.com/songs/60121119.mkv +伍思凯-爱的过火,http://em.21dtv.com/songs/60007240.mkv +曹超-爱的过错(演唱会),http://em.21dtv.com/songs/60007239.mkv +吴倩莲-爱的干脆,http://em.21dtv.com/songs/60007214.mkv +吴倩莲-爱得干脆,http://em.21dtv.com/songs/60007137.mkv +郭书瑶-爱的告白,http://em.21dtv.com/songs/60068037.mkv +邓妙华-爱的告白(无原唱),http://em.21dtv.com/songs/60007217.mkv +群星-爱的方舟,http://em.21dtv.com/songs/60007200.mkv +雨中百合-爱的方向,http://em.21dtv.com/songs/60111511.mkv +卓依婷-爱的奉献,http://em.21dtv.com/songs/60007209.mkv +佚名-爱的奉献,http://em.21dtv.com/songs/60007208.mkv +翁倩玉-爱的奉献,http://em.21dtv.com/songs/60007207.mkv +韦唯-爱的奉献,http://em.21dtv.com/songs/60007206.mkv +范春梅-爱的奉献,http://em.21dtv.com/songs/60007205.mkv +俞静-爱的废墟,http://em.21dtv.com/songs/60007203.mkv +佚名-爱的废墟,http://em.21dtv.com/songs/60007202.mkv +孙耀威-爱到发烫,http://em.21dtv.com/songs/60007081.mkv +林子祥-爱到发烧,http://em.21dtv.com/songs/60007080.mkv +林子祥-爱到发烧(演唱会),http://em.21dtv.com/songs/60007079.mkv +瑶瑶-爱到放弃,http://em.21dtv.com/songs/60123024.mkv +程芳-爱的负累,http://em.21dtv.com/songs/60111337.mkv +于全莉-爱的负累,http://em.21dtv.com/songs/60101881.mkv +李菲菲-爱到疯狂,http://em.21dtv.com/songs/60007084.mkv +动力火车-哀悼疯癫,http://em.21dtv.com/songs/60087436.mkv +动力火车-爱到疯癫,http://em.21dtv.com/songs/60007083.mkv +秀兰玛雅-爱的耳勾,http://em.21dtv.com/songs/60007197.mkv +胡艾莲-爱的赌注,http://em.21dtv.com/songs/60107146.mkv +杨志广-爱的赌注,http://em.21dtv.com/songs/60074332.mkv +范晓萱+100%-黯淡的夜,http://em.21dtv.com/songs/60095341.mkv +罗时丰-暗淡的月,http://em.21dtv.com/songs/60074551.mkv +秀兰玛雅-暗淡的月,http://em.21dtv.com/songs/60009364.mkv +齐秦-暗淡的月,http://em.21dtv.com/songs/60009363.mkv +扎西多吉-爱的殿堂,http://em.21dtv.com/songs/60118606.mkv +王力宏-爱得得体,http://em.21dtv.com/songs/60074318.mkv +朱海君-爱的当时,http://em.21dtv.com/songs/60029426.mkv +叶佳修+龙千玉-爱的等路,http://em.21dtv.com/songs/60007194.mkv +冯小刚+李易峰-爱的代价,http://em.21dtv.com/songs/60117567.mkv +石禄辉-爱的代价,http://em.21dtv.com/songs/60115322.mkv +张艾嘉-爱的代价,http://em.21dtv.com/songs/60111089.mkv +杨坤-爱的代价,http://em.21dtv.com/songs/60091396.mkv +秦妮-爱的代价,http://em.21dtv.com/songs/60082468.mkv +张艾嘉-爱的代价,http://em.21dtv.com/songs/60007192.mkv +温岚-爱的代价,http://em.21dtv.com/songs/60007191.mkv +王哲-爱的代价,http://em.21dtv.com/songs/60007190.mkv +梁咏琪-爱的代价,http://em.21dtv.com/songs/60007189.mkv +张伟文-爱的代价(演唱会),http://em.21dtv.com/songs/60007188.mkv +佚名-爱的代价(无原唱),http://em.21dtv.com/songs/60007187.mkv +孙江枫-爱的电话,http://em.21dtv.com/songs/60081389.mkv +郭富城-爱的祷告,http://em.21dtv.com/songs/60007193.mkv +徐怀钰-爱的叮咚,http://em.21dtv.com/songs/60007196.mkv +张力尹-爱的独白,http://em.21dtv.com/songs/60103266.mkv +胡梅-爱的沉醉,http://em.21dtv.com/songs/60074330.mkv +强力重拍-爱的存在,http://em.21dtv.com/songs/60007186.mkv +戈浪-爱的传说,http://em.21dtv.com/songs/60110227.mkv +佚名-爱的传说,http://em.21dtv.com/songs/60007185.mkv +冈林-爱的城墙,http://em.21dtv.com/songs/60126621.mkv +何龙雨-爱的传奇,http://em.21dtv.com/songs/60121372.mkv +阿才-爱的传奇,http://em.21dtv.com/songs/60104528.mkv +访玉-爱的成全,http://em.21dtv.com/songs/60062348.mkv +晓雨-爱的残缺,http://em.21dtv.com/songs/60007177.mkv +杨语浠+李才全-爱的承诺,http://em.21dtv.com/songs/60106974.mkv +孙江枫-爱的承诺,http://em.21dtv.com/songs/60081981.mkv +刀郎+云朵-爱的承诺,http://em.21dtv.com/songs/60074331.mkv +庄心妍+阿俏-爱的筹码,http://em.21dtv.com/songs/60086399.mkv +杨帆-爱的匆忙,http://em.21dtv.com/songs/60081231.mkv +张娜拉-爱的出口,http://em.21dtv.com/songs/60069174.mkv +孙砾-爱的长江,http://em.21dtv.com/songs/60112629.mkv +叶瑷菱-爱的憧憬,http://em.21dtv.com/songs/60089720.mkv +解晓东-爱的彩虹,http://em.21dtv.com/songs/60092043.mkv +陈尚依-爱的传递,http://em.21dtv.com/songs/60099581.mkv +关键-爱的彻底,http://em.21dtv.com/songs/60074329.mkv +刘转亮-爱的颤抖,http://em.21dtv.com/songs/60070451.mkv +罗嘉良+赵学而-爱多错多,http://em.21dtv.com/songs/60066784.mkv +宋祖英-爱的长城,http://em.21dtv.com/songs/60070452.mkv +海哲明-爱的翅膀,http://em.21dtv.com/songs/60119772.mkv +封雷-爱的翅膀,http://em.21dtv.com/songs/60068036.mkv +田丰-爱的翅膀,http://em.21dtv.com/songs/60007181.mkv +韩庚-爱的翅膀,http://em.21dtv.com/songs/60007180.mkv +卓文萱-爱的城堡,http://em.21dtv.com/songs/60007179.mkv +游鸿明-爱的城堡,http://em.21dtv.com/songs/60007178.mkv +田震-爱的尘埃,http://em.21dtv.com/songs/60091774.mkv +庄学忠-爱的波折,http://em.21dtv.com/songs/60007173.mkv +刘春云-爱的边缘(演唱会),http://em.21dtv.com/songs/60007170.mkv +江淑娜+林昕阳-爱到不行,http://em.21dtv.com/songs/60074310.mkv +秋裤大叔-爱的包围,http://em.21dtv.com/songs/60108770.mkv +柳絮-爱的包围,http://em.21dtv.com/songs/60098529.mkv +赵小兵-爱的包围,http://em.21dtv.com/songs/60071712.mkv +杨瞻-爱的备胎,http://em.21dtv.com/songs/60116031.mkv +佚名-爱的表示,http://em.21dtv.com/songs/60007171.mkv +孙耀威-爱的表情(无原唱),http://em.21dtv.com/songs/60095515.mkv +尚文祁-爱的背叛,http://em.21dtv.com/songs/60121602.mkv +卢巧音-爱到不能,http://em.21dtv.com/songs/60007068.mkv +陈琛-爱的蓓蕾,http://em.21dtv.com/songs/60108134.mkv +林胜天-爱的别离,http://em.21dtv.com/songs/60094176.mkv +根呷-爱的部落,http://em.21dtv.com/songs/60068035.mkv +瑶瑶-爱的不够,http://em.21dtv.com/songs/60121966.mkv +易帆-爱的不够,http://em.21dtv.com/songs/60113563.mkv +丁紫-爱的悲歌,http://em.21dtv.com/songs/60109918.mkv +秋裤大叔-爱的悲歌,http://em.21dtv.com/songs/60108771.mkv +赵小兵-爱的悲歌,http://em.21dtv.com/songs/60063440.mkv +顾凯-爱的报答,http://em.21dtv.com/songs/60080518.mkv +巴桑-爱的表白,http://em.21dtv.com/songs/60087740.mkv +郭书瑶-爱的抱抱,http://em.21dtv.com/songs/60007168.mkv +贾富营-爱的悲哀,http://em.21dtv.com/songs/60132909.mkv +红陌-爱的悲哀,http://em.21dtv.com/songs/60132789.mkv +马建涛-俺爹俺娘,http://em.21dtv.com/songs/60113091.mkv +张艺文-俺爹俺娘,http://em.21dtv.com/songs/60009349.mkv +张宇-爱都爱了,http://em.21dtv.com/songs/60007479.mkv +张宇-爱都爱了(演唱会),http://em.21dtv.com/songs/60007478.mkv +樱子-爱的安检,http://em.21dtv.com/songs/60063844.mkv +余润泽-爱的99,http://em.21dtv.com/songs/60007165.mkv +张纹铭-爱才知道,http://em.21dtv.com/songs/60068034.mkv +周游格-爱趁现在,http://em.21dtv.com/songs/60113344.mkv +冷漠+杨小曼-爱成叹息,http://em.21dtv.com/songs/60070449.mkv +晓依+淼淼-爱穿透情,http://em.21dtv.com/songs/60109395.mkv +李刚-爱从天降,http://em.21dtv.com/songs/60103352.mkv +P.SIMON-april comes she will,http://em.21dtv.com/songs/60000321.mkv +庄心妍-爱吹情散,http://em.21dtv.com/songs/60113446.mkv +孔兰兰-爱成流沙,http://em.21dtv.com/songs/60110973.mkv +徐一鸣-爱错了人,http://em.21dtv.com/songs/60107740.mkv +刘佳成-爱错了人,http://em.21dtv.com/songs/60103921.mkv +艳阳天-爱错了你,http://em.21dtv.com/songs/60007063.mkv +伍天宇-爱错了你,http://em.21dtv.com/songs/60007062.mkv +信-暗藏后悔,http://em.21dtv.com/songs/60069231.mkv +袁娅维-阿楚姑娘,http://em.21dtv.com/songs/60132871.mkv +李雨-阿楚姑娘,http://em.21dtv.com/songs/60128103.mkv +袁娅维-阿楚姑娘,http://em.21dtv.com/songs/60117208.mkv +龙奔-爱错的人,http://em.21dtv.com/songs/60007059.mkv +王建杰-哀愁的歌,http://em.21dtv.com/songs/60006892.mkv +AYA-爱错爱对,http://em.21dtv.com/songs/60074308.mkv +范怡文-爱不执着,http://em.21dtv.com/songs/60007042.mkv +马天宇-爱不自已,http://em.21dtv.com/songs/60060971.mkv +沈石磊-爱别转弯,http://em.21dtv.com/songs/60006961.mkv +常健鸿-爱不再美,http://em.21dtv.com/songs/60007035.mkv +冷漠-爱不再来,http://em.21dtv.com/songs/60074303.mkv +阿英-阿坝之恋,http://em.21dtv.com/songs/60074273.mkv +王健-爱不在了,http://em.21dtv.com/songs/60007041.mkv +罗志祥-爱不用说,http://em.21dtv.com/songs/60066774.mkv +张艳君+张生艳-爱不言悔,http://em.21dtv.com/songs/60122749.mkv +游艾迪-爱不用还,http://em.21dtv.com/songs/60007034.mkv +鸿飞-爱不宜迟,http://em.21dtv.com/songs/60115542.mkv +韦雄-爱不下去,http://em.21dtv.com/songs/60063057.mkv +大庆小芳-敖包相恋(演唱会),http://em.21dtv.com/songs/60063946.mkv +李昱和+梅林组合-敖包相会,http://em.21dtv.com/songs/60127039.mkv +胡斌-敖包相会,http://em.21dtv.com/songs/60117139.mkv +乌兰图雅+齐峰-敖包相会,http://em.21dtv.com/songs/60109939.mkv +蒙族民歌-敖包相会,http://em.21dtv.com/songs/60088586.mkv +腾格尔+萨日娜-敖包相会,http://em.21dtv.com/songs/60088503.mkv +蒋大为-敖包相会,http://em.21dtv.com/songs/60066838.mkv +卓依婷-敖包相会,http://em.21dtv.com/songs/60009424.mkv +张振富+耿莲凤-敖包相会,http://em.21dtv.com/songs/60009423.mkv +佚名-敖包相会,http://em.21dtv.com/songs/60009422.mkv +吕继宏+乌日娜-敖包相会,http://em.21dtv.com/songs/60009421.mkv +刀郎-敖包相会,http://em.21dtv.com/songs/60009420.mkv +蔡琴-敖包相会(演唱会),http://em.21dtv.com/songs/60009419.mkv +佚名-敖包相会(慢四),http://em.21dtv.com/songs/60009418.mkv +汤潮+岳思思-爱本无罪,http://em.21dtv.com/songs/60065763.mkv +干露露-爱不完美,http://em.21dtv.com/songs/60094081.mkv +胡美月-爱不完结,http://em.21dtv.com/songs/60112901.mkv +黄馨可-爱不停站,http://em.21dtv.com/songs/60080178.mkv +朱孝天-爱不停止,http://em.21dtv.com/songs/60007026.mkv +夜郎金鑫-爱不褪色,http://em.21dtv.com/songs/60104002.mkv +洪立-爱不停留,http://em.21dtv.com/songs/60118744.mkv +董青-爱不是罪,http://em.21dtv.com/songs/60107978.mkv +董青-爱不是罪,http://em.21dtv.com/songs/60007015.mkv +容祖儿+李克勤-爱不释手,http://em.21dtv.com/songs/60119443.mkv +钟汉良-爱不释手,http://em.21dtv.com/songs/60007022.mkv +李翊君-爱不释手,http://em.21dtv.com/songs/60007021.mkv +李丽芬-爱不释手,http://em.21dtv.com/songs/60007020.mkv +李克勤-爱不释手,http://em.21dtv.com/songs/60007019.mkv +钟汉良-爱不释手(演唱会),http://em.21dtv.com/songs/60007018.mkv +李克勤-爱不释手(演唱会),http://em.21dtv.com/songs/60007017.mkv +李克勤+谭咏麟-爱不释手(演唱会),http://em.21dtv.com/songs/60007016.mkv +白雪-爱不收回,http://em.21dtv.com/songs/60071709.mkv +顾凯-爱遍十方,http://em.21dtv.com/songs/60109024.mkv +王非非-爱不设防(无原唱),http://em.21dtv.com/songs/60007008.mkv +陈杉雨-爱不容易,http://em.21dtv.com/songs/60118162.mkv +关心妍-爱被抛弃,http://em.21dtv.com/songs/60092311.mkv +林心如+刘沁-爱不能停,http://em.21dtv.com/songs/60007003.mkv +张惠妹-爱不能收,http://em.21dtv.com/songs/60091093.mkv +莫文蔚-a brand new day,http://em.21dtv.com/songs/60000037.mkv +李菲菲-爱不明白,http://em.21dtv.com/songs/60007001.mkv +MARIAH CAREY-always be my baby,http://em.21dtv.com/songs/60000197.mkv +萧亚轩-爱不离手,http://em.21dtv.com/songs/60063839.mkv +武艺-爱不科学,http://em.21dtv.com/songs/60127148.mkv +赵鑫-爱不可及,http://em.21dtv.com/songs/60126239.mkv +王菲-爱不可及,http://em.21dtv.com/songs/60104320.mkv +真知-阿爸吉祥,http://em.21dtv.com/songs/60091785.mkv +张杰-爱不解释(演唱会),http://em.21dtv.com/songs/60086397.mkv +陈美惠-爱不见了,http://em.21dtv.com/songs/60060969.mkv +李强-爱不简单,http://em.21dtv.com/songs/60116906.mkv +何洁-爱不简单,http://em.21dtv.com/songs/60109964.mkv +刘杰洛-爱不简单,http://em.21dtv.com/songs/60107536.mkv +爱尔音乐团队-爱不简单,http://em.21dtv.com/songs/60105236.mkv +许慧欣-爱不简单,http://em.21dtv.com/songs/60006995.mkv +易欣-爱不会停,http://em.21dtv.com/songs/60103320.mkv +林军-爱不后悔,http://em.21dtv.com/songs/60125768.mkv +田震-爱不后悔,http://em.21dtv.com/songs/60006987.mkv +田震-爱不后悔(演唱会),http://em.21dtv.com/songs/60006986.mkv +格桑梅朵+多吉-阿坝锅庄,http://em.21dtv.com/songs/60088137.mkv +杨枫-爱被搁浅,http://em.21dtv.com/songs/60102373.mkv +赵采儿-爱不放手,http://em.21dtv.com/songs/60117262.mkv +木子桓-爱不放手,http://em.21dtv.com/songs/60065764.mkv +成威-阿爸乀手(无原唱),http://em.21dtv.com/songs/60006717.mkv +黄贯中-阿博二世,http://em.21dtv.com/songs/60093552.mkv +猪哥亮-阿爸的子,http://em.21dtv.com/songs/60063830.mkv +罗志祥-爱不单行,http://em.21dtv.com/songs/60006974.mkv +成威-阿爸的手(无原唱),http://em.21dtv.com/songs/60095536.mkv +游喧-爱不懂事,http://em.21dtv.com/songs/60063287.mkv +许景淳-爱不对人,http://em.21dtv.com/songs/60093782.mkv +江蕙-爱不对人,http://em.21dtv.com/songs/60006982.mkv +曾心梅-爱不对人,http://em.21dtv.com/songs/60006981.mkv +豪记大对唱-爱不对人(无原唱),http://em.21dtv.com/songs/60006980.mkv +赵齐-爱不到老,http://em.21dtv.com/songs/60099513.mkv +梁一贞-爱不动了,http://em.21dtv.com/songs/60084790.mkv +卓依婷-阿爸的话,http://em.21dtv.com/songs/60006713.mkv +方贵明-阿爸的厝,http://em.21dtv.com/songs/60105105.mkv +伍俊华-爱被催眠,http://em.21dtv.com/songs/60070446.mkv +胡静-爱不出卖,http://em.21dtv.com/songs/60006973.mkv +林保怡-爱不出口,http://em.21dtv.com/songs/60006972.mkv +ASOS-爱不持久,http://em.21dtv.com/songs/60006971.mkv +狮子合唱团-爱不爱我,http://em.21dtv.com/songs/60133970.mkv +储毅-爱不爱我,http://em.21dtv.com/songs/60086396.mkv +陆永+王菀之-爱不爱我,http://em.21dtv.com/songs/60074302.mkv +零点乐队-爱不爱我,http://em.21dtv.com/songs/60006968.mkv +大嘴巴-爱不爱我,http://em.21dtv.com/songs/60006967.mkv +零点乐队-爱不爱我(演唱会),http://em.21dtv.com/songs/60006966.mkv +阿香-阿爸阿妈,http://em.21dtv.com/songs/60103666.mkv +EGOIST-all alone with you,http://em.21dtv.com/songs/60082064.mkv +JUSTIN BIEBER-all around the world(演唱会),http://em.21dtv.com/songs/60067849.mkv +LISA STANSFIELD-all around the world,http://em.21dtv.com/songs/60000142.mkv +李玟-all around the world(演唱会),http://em.21dtv.com/songs/60000141.mkv +3秒乐团-爱爱狂想,http://em.21dtv.com/songs/60097396.mkv +王蓉-爱爱不爱,http://em.21dtv.com/songs/60088324.mkv +庞龙-爱爱爱情,http://em.21dtv.com/songs/60006942.mkv +王洪迪-爱爱爱爱,http://em.21dtv.com/songs/60081179.mkv +吴莫愁-爱爱爱爱,http://em.21dtv.com/songs/60074298.mkv +于台烟-爱へ舞伴,http://em.21dtv.com/songs/60006933.mkv +闪亮三姐妹-爱ㄟ世界,http://em.21dtv.com/songs/60006934.mkv +幸田来未-爱のうた,http://em.21dtv.com/songs/60006930.mkv +孙耀威-爱…不是,http://em.21dtv.com/songs/60094457.mkv +HARDPACK-唉,http://em.21dtv.com/songs/60079847.mkv +AKB48-3つの涙,http://em.21dtv.com/songs/60067845.mkv +清水翔太-三六六日,http://em.21dtv.com/songs/60072358.mkv +陈珊妮-ㄐ一ㄢ视,http://em.21dtv.com/songs/60006706.mkv +金正勋-サクラtears,http://em.21dtv.com/songs/60006661.mkv +游助-ミツバチ,http://em.21dtv.com/songs/60006699.mkv +大冢爱-ポケット,http://em.21dtv.com/songs/60006695.mkv +幸田来未-ふたりで,http://em.21dtv.com/songs/60006692.mkv +游助-ひまわり,http://em.21dtv.com/songs/60006688.mkv +大冢爱-バイバイ,http://em.21dtv.com/songs/60006681.mkv +邓丽君-つぐない(演唱会),http://em.21dtv.com/songs/60006677.mkv +大原樱子-ひらり,http://em.21dtv.com/songs/60133530.mkv +Aiko-もっと,http://em.21dtv.com/songs/60119097.mkv +SHINee-321,http://em.21dtv.com/songs/60101823.mkv +Miwa-441,http://em.21dtv.com/songs/60101803.mkv +RAINBOW-マッハ,http://em.21dtv.com/songs/60068027.mkv +KARA-ロスト,http://em.21dtv.com/songs/60070438.mkv +NO NAME-梦は何度も生まれ変わる,http://em.21dtv.com/songs/60070924.mkv +板野友美-ふいに,http://em.21dtv.com/songs/60060962.mkv +LENA-ヒカリ,http://em.21dtv.com/songs/60062091.mkv +NYC-ハイナ,http://em.21dtv.com/songs/60070432.mkv +NOT YET-西瓜baby,http://em.21dtv.com/songs/60068814.mkv +KARA-白昼梦,http://em.21dtv.com/songs/60070518.mkv +オレスカバンド-自行车,http://em.21dtv.com/songs/60066611.mkv +东京女子流-キラリ☆,http://em.21dtv.com/songs/60065746.mkv +FRENCH KISS-カッコ悪いi love you,http://em.21dtv.com/songs/60063820.mkv +MIWA-片想い,http://em.21dtv.com/songs/60066216.mkv +HI FI CAMP-数え切れないkiss,http://em.21dtv.com/songs/60064896.mkv +游助-雄叫び,http://em.21dtv.com/songs/60061790.mkv +スマイレージ-有顶天love,http://em.21dtv.com/songs/60062188.mkv +ALAN-生きる,http://em.21dtv.com/songs/60061947.mkv +新垣结衣-赤い糸,http://em.21dtv.com/songs/60068178.mkv +冰川清志-哀伤歌,http://em.21dtv.com/songs/60071704.mkv +朱贝贝-赞赞赞,http://em.21dtv.com/songs/60103345.mkv +翁立友-追追追,http://em.21dtv.com/songs/60101480.mkv +黄妃+苏慧伦-追追追,http://em.21dtv.com/songs/60097037.mkv +张驰-醉醉醉,http://em.21dtv.com/songs/60086308.mkv +浩轩-醉醉醉,http://em.21dtv.com/songs/60086307.mkv +辛若天-针针扎,http://em.21dtv.com/songs/60081322.mkv +藏古西烈-转转转,http://em.21dtv.com/songs/60079702.mkv +仇泽-执子坠,http://em.21dtv.com/songs/60070243.mkv +易白-走走走,http://em.21dtv.com/songs/60066615.mkv +张秀卿-醉醉醉,http://em.21dtv.com/songs/60065535.mkv +谢雷-醉醉醉(无原唱),http://em.21dtv.com/songs/60060553.mkv +黄妃-追追追,http://em.21dtv.com/songs/60059561.mkv +董事长乐团+螺丝钉-追追追,http://em.21dtv.com/songs/60059560.mkv +苏打绿-追追追(演唱会),http://em.21dtv.com/songs/60059559.mkv +袁智勇-转转转,http://em.21dtv.com/songs/60059461.mkv +张秀卿-赞赞赞,http://em.21dtv.com/songs/60057272.mkv +王曼芝-醉知音,http://em.21dtv.com/songs/60117037.mkv +枫桥-醉战友,http://em.21dtv.com/songs/60098524.mkv +灰原穷-醉纸鸢,http://em.21dtv.com/songs/60084632.mkv +ZIP发射乐团-争自由(演唱会),http://em.21dtv.com/songs/60058314.mkv +林欣彤-自主型,http://em.21dtv.com/songs/60096948.mkv +群星-作阵行,http://em.21dtv.com/songs/60060678.mkv +郑嘉颖-折子戏,http://em.21dtv.com/songs/60057744.mkv +黄阅-折子戏,http://em.21dtv.com/songs/60057743.mkv +刘伟仁-蜘蛛网,http://em.21dtv.com/songs/60058702.mkv +陈嘉唯-蜘蛛网,http://em.21dtv.com/songs/60058701.mkv +卢巧音-站站舞(演唱会),http://em.21dtv.com/songs/60057524.mkv +闽剧-珍珠塔,http://em.21dtv.com/songs/60090276.mkv +林宝英-珍珠塔,http://em.21dtv.com/songs/60089998.mkv +龚柯允-阵阵跳,http://em.21dtv.com/songs/60058294.mkv +王识贤-醉中沙,http://em.21dtv.com/songs/60135569.mkv +邱喜善-珍珠沙,http://em.21dtv.com/songs/60113003.mkv +苏阳-招招手(演唱会),http://em.21dtv.com/songs/60067786.mkv +容祖儿-走着睡(演唱会),http://em.21dtv.com/songs/60059987.mkv +王小利-走着瞧,http://em.21dtv.com/songs/60059985.mkv +李恕权-在之前(无原唱),http://em.21dtv.com/songs/60057216.mkv +李超-珍重朋,http://em.21dtv.com/songs/60119674.mkv +孙勇-张子楠,http://em.21dtv.com/songs/60087652.mkv +钟一宪+麦贝夷-自作孽,http://em.21dtv.com/songs/60079738.mkv +周国贤-最终幕,http://em.21dtv.com/songs/60110932.mkv +林泰燊-赵子龙,http://em.21dtv.com/songs/60079541.mkv +陈明-珍珠泪,http://em.21dtv.com/songs/60058021.mkv +陈明-珍珠泪(演唱会),http://em.21dtv.com/songs/60058020.mkv +孙楠-在这里,http://em.21dtv.com/songs/60057211.mkv +沈雁-在这里,http://em.21dtv.com/songs/60057210.mkv +黄义达-在这里,http://em.21dtv.com/songs/60057209.mkv +吉克皓-找自己,http://em.21dtv.com/songs/60127806.mkv +糖妹-在这家,http://em.21dtv.com/songs/60128293.mkv +吉克皓-找自己,http://em.21dtv.com/songs/60123730.mkv +方瑞娥-做自己,http://em.21dtv.com/songs/60113552.mkv +Robynn+Kendy-找自己,http://em.21dtv.com/songs/60109108.mkv +ALIN-找自己,http://em.21dtv.com/songs/60107393.mkv +Robynn&Kendy-找自己,http://em.21dtv.com/songs/60103813.mkv +朱雅-做自己,http://em.21dtv.com/songs/60101647.mkv +MIC男团+李龙-找自己,http://em.21dtv.com/songs/60096971.mkv +超级女声+李娜-找自己,http://em.21dtv.com/songs/60088718.mkv +周杰伦-找自己,http://em.21dtv.com/songs/60087583.mkv +吴克群-找自己,http://em.21dtv.com/songs/60087110.mkv +罗文聪+蔡佳麟-做自己,http://em.21dtv.com/songs/60086316.mkv +刘伊心-做自己,http://em.21dtv.com/songs/60071926.mkv +同恩-做自己,http://em.21dtv.com/songs/60060748.mkv +陶喆-找自己,http://em.21dtv.com/songs/60057720.mkv +陶喆-找自己(演唱会),http://em.21dtv.com/songs/60057719.mkv +三宝-走中华,http://em.21dtv.com/songs/60114965.mkv +蔡依林-最终话,http://em.21dtv.com/songs/60060458.mkv +刘若英-栀子花,http://em.21dtv.com/songs/60058696.mkv +黑龙-炸炸歌,http://em.21dtv.com/songs/60108191.mkv +阎维文+殷秀梅-致祖国,http://em.21dtv.com/songs/60079642.mkv +香香-猪之歌,http://em.21dtv.com/songs/60059229.mkv +网络歌曲-猪之歌,http://em.21dtv.com/songs/60059228.mkv +童一首歌-猪之歌,http://em.21dtv.com/songs/60059227.mkv +陈韦霖-猪之歌,http://em.21dtv.com/songs/60059226.mkv +宋祖英-致祖国,http://em.21dtv.com/songs/60058838.mkv +邓妙华+邵大伦-作阵飞,http://em.21dtv.com/songs/60066626.mkv +游媄镁-自在飞(无原唱),http://em.21dtv.com/songs/60059803.mkv +童丽-紫竹调,http://em.21dtv.com/songs/60079719.mkv +陶慧敏-紫竹调,http://em.21dtv.com/songs/60059659.mkv +オレスカバンド-自転车,http://em.21dtv.com/songs/60059810.mkv +新宝岛康乐队-自助餐(演唱会),http://em.21dtv.com/songs/60059809.mkv +陈俊华-竹枝词,http://em.21dtv.com/songs/60059242.mkv +王开城-枝仔冰,http://em.21dtv.com/songs/60058637.mkv +田雷-找找爱,http://em.21dtv.com/songs/60116175.mkv +王诗安-最最爱,http://em.21dtv.com/songs/60097089.mkv +范逸臣-最最爱,http://em.21dtv.com/songs/60060463.mkv +金莎-这种爱,http://em.21dtv.com/songs/60057953.mkv +张歆艺-真·真,http://em.21dtv.com/songs/60119528.mkv +张行+朱晓琳-在雨中,http://em.21dtv.com/songs/60133697.mkv +吴江-在雨中,http://em.21dtv.com/songs/60125295.mkv +于文文-在雨中,http://em.21dtv.com/songs/60123606.mkv +小林玉-做伊走(无原唱),http://em.21dtv.com/songs/60081982.mkv +金山-走一遭,http://em.21dtv.com/songs/60081937.mkv +云菲菲+皓天-在雨中,http://em.21dtv.com/songs/60081251.mkv +谭咏麟+杜丽莎-在雨中(演唱会),http://em.21dtv.com/songs/60071501.mkv +魏新雨-醉与罪,http://em.21dtv.com/songs/60070287.mkv +莫旭秋+魏秋桦-在雨中(演唱会),http://em.21dtv.com/songs/60065458.mkv +佚名-做伊走(无原唱),http://em.21dtv.com/songs/60060745.mkv +SHINE-祖与占,http://em.21dtv.com/songs/60060033.mkv +张德兰-紫玉坠(演唱会),http://em.21dtv.com/songs/60059658.mkv +卓依婷-在雨中,http://em.21dtv.com/songs/60057204.mkv +杨迎+刘家昌-在雨中,http://em.21dtv.com/songs/60057203.mkv +汪峰-在雨中,http://em.21dtv.com/songs/60057202.mkv +姜肓恒+梁一贞-在雨中,http://em.21dtv.com/songs/60057201.mkv +汪峰-在雨中(演唱会),http://em.21dtv.com/songs/60057200.mkv +刘家昌+尤雅-在雨中(演唱会),http://em.21dtv.com/songs/60057199.mkv +蔡秋凤+袁小迪-醉鸳鸯,http://em.21dtv.com/songs/60129587.mkv +吕家声-最遥远,http://em.21dtv.com/songs/60125279.mkv +张蓉蓉-纸云烟,http://em.21dtv.com/songs/60075327.mkv +林美美+李富强-醉鸳鸯(无原唱),http://em.21dtv.com/songs/60060542.mkv +袁小迪-纸云烟,http://em.21dtv.com/songs/60058778.mkv +刘德华-真永远,http://em.21dtv.com/songs/60058281.mkv +孙浩雨-真英雄,http://em.21dtv.com/songs/60110989.mkv +信乐团-真英雄,http://em.21dtv.com/songs/60110848.mkv +谭圳-真英雄,http://em.21dtv.com/songs/60097042.mkv +亦勋+钟春妍-装英雄,http://em.21dtv.com/songs/60094803.mkv +小沈阳-真英雄,http://em.21dtv.com/songs/60087120.mkv +张卫健-真英雄,http://em.21dtv.com/songs/60080359.mkv +迪子-自由行,http://em.21dtv.com/songs/60062318.mkv +陈子嘟-真英雄,http://em.21dtv.com/songs/60061891.mkv +高枫-做英雄,http://em.21dtv.com/songs/60060746.mkv +蔡秋凤-醉英雄(无原唱),http://em.21dtv.com/songs/60060541.mkv +杨千嬅-自由行(演唱会),http://em.21dtv.com/songs/60059776.mkv +ZIA-只有笑,http://em.21dtv.com/songs/60058616.mkv +胡彦斌-葬英雄,http://em.21dtv.com/songs/60057284.mkv +张俊熙-总以为,http://em.21dtv.com/songs/60110184.mkv +方大同+徐佳莹-自以为(HD),http://em.21dtv.com/songs/10012793.mkv +方大同+徐佳莹-自以为,http://em.21dtv.com/songs/60059747.mkv +ENERGY-只有我,http://em.21dtv.com/songs/60058613.mkv +言承旭-只有我(演唱会),http://em.21dtv.com/songs/60058612.mkv +黎瑞恩-祝英台,http://em.21dtv.com/songs/60133136.mkv +Lyn-只一天,http://em.21dtv.com/songs/60112446.mkv +张信哲-只因他,http://em.21dtv.com/songs/60092565.mkv +谢安琪-祝英台,http://em.21dtv.com/songs/60059405.mkv +谢安琪-祝英台(HD演唱会),http://em.21dtv.com/songs/60059404.mkv +梁咏琪-中意他,http://em.21dtv.com/songs/60058992.mkv +陈慧娴-这一天,http://em.21dtv.com/songs/60057948.mkv +梁静茹-这一天(演唱会),http://em.21dtv.com/songs/60057947.mkv +左左右右-左右手,http://em.21dtv.com/songs/60126824.mkv +陈洁仪-左右手,http://em.21dtv.com/songs/60109700.mkv +姚亦晴-自由式,http://em.21dtv.com/songs/60104913.mkv +胡杰夕-这一生,http://em.21dtv.com/songs/60079558.mkv +刘美君-左右手,http://em.21dtv.com/songs/60070288.mkv +史智-紫云砂,http://em.21dtv.com/songs/60069031.mkv +苏晴-左右手,http://em.21dtv.com/songs/60066624.mkv +张国荣-左右手,http://em.21dtv.com/songs/60060663.mkv +格里杰夫-左右手,http://em.21dtv.com/songs/60060662.mkv +张国荣-左右手(演唱会),http://em.21dtv.com/songs/60060661.mkv +陈慧娴-左右手(演唱会),http://em.21dtv.com/songs/60060660.mkv +佚名-钻与石,http://em.21dtv.com/songs/60060045.mkv +童安格+金素梅-钻与石,http://em.21dtv.com/songs/60060044.mkv +甄妮-针叶树(无原唱),http://em.21dtv.com/songs/60057972.mkv +南建雄-自由日,http://em.21dtv.com/songs/60128857.mkv +刘文涛-中原人,http://em.21dtv.com/songs/60079657.mkv +佚名-知音人,http://em.21dtv.com/songs/60058687.mkv +彭雅琦-在一起,http://em.21dtv.com/songs/60135275.mkv +朱主爱-在一起,http://em.21dtv.com/songs/60131489.mkv +谭嘉惠-在一起,http://em.21dtv.com/songs/60126212.mkv +黄明志+朱主爱-在一起,http://em.21dtv.com/songs/60124743.mkv +孟杨-在一起,http://em.21dtv.com/songs/60121578.mkv +姜文杰-在一起,http://em.21dtv.com/songs/60121557.mkv +鸿飞-在一起,http://em.21dtv.com/songs/60121172.mkv +王金超-在一起,http://em.21dtv.com/songs/60119831.mkv +王婷婷-在一起,http://em.21dtv.com/songs/60119801.mkv +曾春年-在一起,http://em.21dtv.com/songs/60111142.mkv +邓海-在一起,http://em.21dtv.com/songs/60108033.mkv +安心亚-在一起,http://em.21dtv.com/songs/60104942.mkv +欧豪-在一起,http://em.21dtv.com/songs/60103402.mkv +波拉-在一起,http://em.21dtv.com/songs/60087103.mkv +钟欣桐-在一起,http://em.21dtv.com/songs/60084515.mkv +庾澄庆-在一起,http://em.21dtv.com/songs/60072780.mkv +羽泉-在一起,http://em.21dtv.com/songs/60071500.mkv +胡彦斌-在一起,http://em.21dtv.com/songs/60071499.mkv +赵晨妍-在一起,http://em.21dtv.com/songs/60070220.mkv +张洋-在一起,http://em.21dtv.com/songs/60063417.mkv +禹择-在一起,http://em.21dtv.com/songs/60061874.mkv +蔡幸娟-转一圈,http://em.21dtv.com/songs/60059459.mkv +女声-在一起,http://em.21dtv.com/songs/60057194.mkv +男声-在一起,http://em.21dtv.com/songs/60057193.mkv +陈德容-在一起,http://em.21dtv.com/songs/60057192.mkv +草蜢-在一起,http://em.21dtv.com/songs/60057191.mkv +叶明果-醉营盘,http://em.21dtv.com/songs/60131237.mkv +李秋霞-正月牌,http://em.21dtv.com/songs/60058361.mkv +吴蕙君+黄伟霖-只有你,http://em.21dtv.com/songs/60135023.mkv +谈诗玲-只有你,http://em.21dtv.com/songs/60126195.mkv +崔始源-只有你,http://em.21dtv.com/songs/60115888.mkv +费玉清-只有你,http://em.21dtv.com/songs/60108013.mkv +金泰宇-只有你,http://em.21dtv.com/songs/60105444.mkv +王鑫-在意你,http://em.21dtv.com/songs/60095011.mkv +张信哲-只有你,http://em.21dtv.com/songs/60084566.mkv +黄绮珊-只有你,http://em.21dtv.com/songs/60079624.mkv +龚琳娜-自由鸟,http://em.21dtv.com/songs/60062390.mkv +蔡妍-只有你,http://em.21dtv.com/songs/60061899.mkv +谭咏麟-只有你,http://em.21dtv.com/songs/60058598.mkv +莫少聪-只有你,http://em.21dtv.com/songs/60058597.mkv +李香兰-只有你,http://em.21dtv.com/songs/60058596.mkv +江蕙-只有你,http://em.21dtv.com/songs/60058595.mkv +曾心梅-只有你,http://em.21dtv.com/songs/60058593.mkv +王杰-只有你(演唱会),http://em.21dtv.com/songs/60058592.mkv +郭富城-只有你(演唱会),http://em.21dtv.com/songs/60058591.mkv +王亚乔-这一秒,http://em.21dtv.com/songs/60113847.mkv +罗宝-昨夜梦,http://em.21dtv.com/songs/60102625.mkv +吴雨霏-座右铭,http://em.21dtv.com/songs/60060693.mkv +吴雨霏-座右铭(演唱会),http://em.21dtv.com/songs/60060692.mkv +周韦杰-醉一暝,http://em.21dtv.com/songs/60060540.mkv +贾立怡-自由猫,http://em.21dtv.com/songs/60059780.mkv +EO2-真要命,http://em.21dtv.com/songs/60058280.mkv +易钧喜-这一秒,http://em.21dtv.com/songs/60057926.mkv +汤钧禧-这一秒,http://em.21dtv.com/songs/60057925.mkv +彭靖惠-这一秒,http://em.21dtv.com/songs/60057924.mkv +马海生-这一秒,http://em.21dtv.com/songs/60057923.mkv +傅振辉-掌运命,http://em.21dtv.com/songs/60057644.mkv +张艺-走月亮,http://em.21dtv.com/songs/60121675.mkv +杨卿俪-走月亮,http://em.21dtv.com/songs/60108599.mkv +陈水林-醉月亮,http://em.21dtv.com/songs/60094329.mkv +戴佩妮-早预料,http://em.21dtv.com/songs/60091233.mkv +雨禾-醉月亮,http://em.21dtv.com/songs/60072844.mkv +黄格选-纸月亮,http://em.21dtv.com/songs/60058777.mkv +王进-这一刻,http://em.21dtv.com/songs/60116166.mkv +许佳慧-在一块,http://em.21dtv.com/songs/60110514.mkv +郑源-这一刻,http://em.21dtv.com/songs/60079555.mkv +棒棒堂-综艺咖,http://em.21dtv.com/songs/60059823.mkv +王婧-这一刻,http://em.21dtv.com/songs/60057920.mkv +爱乐团-这一刻,http://em.21dtv.com/songs/60057919.mkv +程梓捷-再遇见,http://em.21dtv.com/songs/60128279.mkv +陈沛轩-再遇见,http://em.21dtv.com/songs/60126390.mkv +刘德华-朱颜记,http://em.21dtv.com/songs/60087402.mkv +苏打绿-再遇见,http://em.21dtv.com/songs/60086206.mkv +杨瞻-中原魂,http://em.21dtv.com/songs/60120660.mkv +冈林-醉一回,http://em.21dtv.com/songs/60117563.mkv +蔡秋凤-醉烟花,http://em.21dtv.com/songs/60105349.mkv +盛云龙-醉一回,http://em.21dtv.com/songs/60103491.mkv +卓依婷-祝愿歌,http://em.21dtv.com/songs/60070263.mkv +张雨生-自由歌,http://em.21dtv.com/songs/60059775.mkv +陈晓东-自由港,http://em.21dtv.com/songs/60059774.mkv +佚名-祝愿歌,http://em.21dtv.com/songs/60059406.mkv +乌兰河-自由疯,http://em.21dtv.com/songs/60103854.mkv +沈庆-在远方,http://em.21dtv.com/songs/60096941.mkv +荣联合-中原风,http://em.21dtv.com/songs/60084696.mkv +郑秀文+24HERB-罪与罚(演唱会),http://em.21dtv.com/songs/60060479.mkv +袁小迪+小梅-自由飞,http://em.21dtv.com/songs/60059771.mkv +蔡健雅-障眼法,http://em.21dtv.com/songs/60057646.mkv +叶启田-正月调,http://em.21dtv.com/songs/60058363.mkv +周华健-在云端,http://em.21dtv.com/songs/60057205.mkv +刘浩楠-再一次,http://em.21dtv.com/songs/60133412.mkv +魏一宁-再一次,http://em.21dtv.com/songs/60124726.mkv +张鹏华邵-再一次,http://em.21dtv.com/songs/60121690.mkv +侯玉斌-再一次,http://em.21dtv.com/songs/60118346.mkv +小宇-再一次(演唱会),http://em.21dtv.com/songs/60071493.mkv +林峰-再一次(演唱会),http://em.21dtv.com/songs/60062648.mkv +王菲+梁朝伟-醉一场,http://em.21dtv.com/songs/60060539.mkv +童唱-竹叶船,http://em.21dtv.com/songs/60059240.mkv +J.A.M-这一次,http://em.21dtv.com/songs/60057905.mkv +张信哲-找钥匙,http://em.21dtv.com/songs/60057699.mkv +方大同-张永成,http://em.21dtv.com/songs/60057548.mkv +佚名-再一次,http://em.21dtv.com/songs/60057008.mkv +杨烈-再一次,http://em.21dtv.com/songs/60057007.mkv +方皓玟-再一次,http://em.21dtv.com/songs/60057006.mkv +灿多-再一步,http://em.21dtv.com/songs/60132696.mkv +品冠-再来一杯,http://em.21dtv.com/songs/60066573.mkv +冯曦妤-只眼闭,http://em.21dtv.com/songs/60058489.mkv +刘欢-这一拜,http://em.21dtv.com/songs/60057903.mkv +183CLUB-再一遍,http://em.21dtv.com/songs/60057005.mkv +BEYOND-总有爱,http://em.21dtv.com/songs/60059840.mkv +BEYOND-总有爱(演唱会),http://em.21dtv.com/songs/60059839.mkv +黄大炜-自由爱,http://em.21dtv.com/songs/60059765.mkv +蔡明+赵丽蓉-追星族,http://em.21dtv.com/songs/60090204.mkv +才仁卓玛+格绒格西-在西藏,http://em.21dtv.com/songs/60057178.mkv +彭美琪-醉夕阳,http://em.21dtv.com/songs/60135273.mkv +彭美琪-醉夕阳,http://em.21dtv.com/songs/60133712.mkv +郑源-醉逍遥,http://em.21dtv.com/songs/60108056.mkv +王笑文-醉逍遥,http://em.21dtv.com/songs/60105253.mkv +郑源-醉逍遥,http://em.21dtv.com/songs/60095352.mkv +田心蕾-纸星星,http://em.21dtv.com/songs/60116173.mkv +央金兰泽-扎西秀,http://em.21dtv.com/songs/60068987.mkv +卓文萱-脏兮兮,http://em.21dtv.com/songs/60065461.mkv +吴克群-周星星,http://em.21dtv.com/songs/60059189.mkv +谭维维-扎西秀(演唱会),http://em.21dtv.com/songs/60057418.mkv +张霖-左心跳,http://em.21dtv.com/songs/60086312.mkv +刘德华-左胸膛,http://em.21dtv.com/songs/60060656.mkv +新宝岛康乐队-猪血汤,http://em.21dtv.com/songs/60059225.mkv +王艺霏-锥心书,http://em.21dtv.com/songs/60113876.mkv +祁隆-醉相思,http://em.21dtv.com/songs/60096422.mkv +章若涵-长相守,http://em.21dtv.com/songs/60088379.mkv +双星-祝新岁,http://em.21dtv.com/songs/60079696.mkv +刘姝辰+何泽胜-祝新岁,http://em.21dtv.com/songs/60079695.mkv +阿才-祝新岁,http://em.21dtv.com/songs/60079694.mkv +赵柯-最相思,http://em.21dtv.com/songs/60060425.mkv +冯玮君+马志翔-抓凶手,http://em.21dtv.com/songs/60059412.mkv +张卫健+吕方-祝新岁,http://em.21dtv.com/songs/60059403.mkv +许志安-猪先生,http://em.21dtv.com/songs/60059224.mkv +黄乙玲-长相思,http://em.21dtv.com/songs/60057319.mkv +佚名-赚呷人(无原唱),http://em.21dtv.com/songs/60059463.mkv +沈文程-展笑容,http://em.21dtv.com/songs/60057453.mkv +侯旭-追心曲,http://em.21dtv.com/songs/60122494.mkv +伍浩哲-走下去,http://em.21dtv.com/songs/60121361.mkv +Selina-自选曲,http://em.21dtv.com/songs/60109109.mkv +任家萱-自选曲,http://em.21dtv.com/songs/60108296.mkv +罗时丰-针线情(无原唱),http://em.21dtv.com/songs/60095864.mkv +媛媛+小时-壮乡情,http://em.21dtv.com/songs/60084595.mkv +阿杜-走向前,http://em.21dtv.com/songs/60059963.mkv +庄淑君-针线情,http://em.21dtv.com/songs/60057971.mkv +佚名-针线情,http://em.21dtv.com/songs/60057970.mkv +小凤凤-针线情,http://em.21dtv.com/songs/60057969.mkv +王建杰-针线情,http://em.21dtv.com/songs/60057968.mkv +阿吉仔-针线情,http://em.21dtv.com/songs/60057967.mkv +刘刚-这些年,http://em.21dtv.com/songs/60125175.mkv +万一-这些年,http://em.21dtv.com/songs/60122454.mkv +尚文祁-这些年,http://em.21dtv.com/songs/60121603.mkv +姚剑-只想你,http://em.21dtv.com/songs/60079620.mkv +杨紫燃-这些年,http://em.21dtv.com/songs/60068997.mkv +古巨基-周星呢,http://em.21dtv.com/songs/60059188.mkv +蔡荣祖-找寻你,http://em.21dtv.com/songs/60057697.mkv +翁立友-真心泪,http://em.21dtv.com/songs/60100391.mkv +魏新雨-醉西楼,http://em.21dtv.com/songs/60097113.mkv +陈奕迅-主旋律,http://em.21dtv.com/songs/60086266.mkv +任贤齐-诛仙恋,http://em.21dtv.com/songs/60059205.mkv +刘之烁-自习课,http://em.21dtv.com/songs/60125173.mkv +李泉-走西口,http://em.21dtv.com/songs/60113637.mkv +阿宝-走西口,http://em.21dtv.com/songs/60102855.mkv +龚琳娜-走西口,http://em.21dtv.com/songs/60101589.mkv +谭晶-走西口,http://em.21dtv.com/songs/60101172.mkv +景仪-走西口,http://em.21dtv.com/songs/60089936.mkv +胡月-走西口,http://em.21dtv.com/songs/60088496.mkv +叶毛+廖莎-走西口,http://em.21dtv.com/songs/60059960.mkv +陈琳-走西口,http://em.21dtv.com/songs/60059959.mkv +陈琳+孟新洋-走西口,http://em.21dtv.com/songs/60059958.mkv +蔡琴-走西口(演唱会),http://em.21dtv.com/songs/60059957.mkv +林忆莲-转新+哭(演唱会),http://em.21dtv.com/songs/60059455.mkv +金润吉-摘星记,http://em.21dtv.com/songs/60131910.mkv +金润吉-摘星记,http://em.21dtv.com/songs/60130813.mkv +戈浪-张小姐,http://em.21dtv.com/songs/60111923.mkv +卢巧音-哲学家,http://em.21dtv.com/songs/60111737.mkv +张钰琪+柴恺能-再相见,http://em.21dtv.com/songs/60106871.mkv +天生一对-章小军,http://em.21dtv.com/songs/60106749.mkv +痞克四-诛仙剑,http://em.21dtv.com/songs/60059204.mkv +赵学而-谪仙记,http://em.21dtv.com/songs/60057746.mkv +范玮琪-哲学家,http://em.21dtv.com/songs/60057745.mkv +大庆小芳-知心话,http://em.21dtv.com/songs/60079600.mkv +臧一人-真心话,http://em.21dtv.com/songs/60079578.mkv +陈翔-真心话,http://em.21dtv.com/songs/60067791.mkv +袁小迪+龙千玉-再相会,http://em.21dtv.com/songs/60066575.mkv +谭晶-知心话,http://em.21dtv.com/songs/60058679.mkv +秀兰玛雅-真心话,http://em.21dtv.com/songs/60058248.mkv +王菀之-真心话,http://em.21dtv.com/songs/60058247.mkv +彭佳慧-真心话,http://em.21dtv.com/songs/60058246.mkv +刘德华-真心话,http://em.21dtv.com/songs/60058245.mkv +洪百慧-真心话,http://em.21dtv.com/songs/60058244.mkv +何润东-真心话,http://em.21dtv.com/songs/60058243.mkv +江蕙-再相会,http://em.21dtv.com/songs/60056994.mkv +张蓉蓉-追心肝,http://em.21dtv.com/songs/60123954.mkv +张蓉蓉-追心肝,http://em.21dtv.com/songs/60122751.mkv +金杨-炸学歌,http://em.21dtv.com/songs/60098817.mkv +王喆-忠孝歌,http://em.21dtv.com/songs/60072813.mkv +乔幼+杨哲-再相逢,http://em.21dtv.com/songs/60131143.mkv +乔幼+杨哲-再相逢,http://em.21dtv.com/songs/60130054.mkv +夏天Alex-张小帆,http://em.21dtv.com/songs/60127878.mkv +路绮欧-最幸福,http://em.21dtv.com/songs/60104464.mkv +朱海君-追幸福,http://em.21dtv.com/songs/60066607.mkv +费玉清-重相逢,http://em.21dtv.com/songs/60059160.mkv +陈绍瑀-重相逢,http://em.21dtv.com/songs/60059159.mkv +蔡琴-重相逢,http://em.21dtv.com/songs/60059158.mkv +小雪-找幸福,http://em.21dtv.com/songs/60057694.mkv +佚名-再相逢,http://em.21dtv.com/songs/60056993.mkv +办桌二人组-再相逢,http://em.21dtv.com/songs/60056992.mkv +王友良+长晓+文领+基地小虎-致兄弟,http://em.21dtv.com/songs/60133978.mkv +管辉+胡志鑫-致兄弟,http://em.21dtv.com/songs/60119868.mkv +谢艺-致兄弟,http://em.21dtv.com/songs/60114064.mkv +深海-真兄弟,http://em.21dtv.com/songs/60103423.mkv +刘佳-做兄弟,http://em.21dtv.com/songs/60094826.mkv +云飞-醉乡愁,http://em.21dtv.com/songs/60121353.mkv +邓超予-总想唱,http://em.21dtv.com/songs/60108914.mkv +郑仁+Gary-自行车,http://em.21dtv.com/songs/60106323.mkv +张明敏-真心帮,http://em.21dtv.com/songs/60087818.mkv +邓丽君-醉心变,http://em.21dtv.com/songs/60060537.mkv +林嘉欣-珍惜爱,http://em.21dtv.com/songs/60057991.mkv +钟舒漫-自信踭,http://em.21dtv.com/songs/60114161.mkv +谢安琪-载我走,http://em.21dtv.com/songs/60056711.mkv +谢安琪-钟无艳,http://em.21dtv.com/songs/60059066.mkv +谢安琪+张敬轩-钟无艳(演唱会),http://em.21dtv.com/songs/60059065.mkv +谢安琪-钟无艳(HD演唱会),http://em.21dtv.com/songs/60059064.mkv +罗时丰-找无伊,http://em.21dtv.com/songs/60057692.mkv +黎明-醉温馨(演唱会),http://em.21dtv.com/songs/60060535.mkv +蔡诗芸-紫外线,http://em.21dtv.com/songs/60059656.mkv +佚名-醉袜停,http://em.21dtv.com/songs/60060534.mkv +蔡秋凤-醉袜停,http://em.21dtv.com/songs/60060533.mkv +杨欣桦-找无你,http://em.21dtv.com/songs/60135409.mkv +黄乙玲-找无你(演唱会),http://em.21dtv.com/songs/60057687.mkv +吴奇隆-做完梦,http://em.21dtv.com/songs/60060734.mkv +东方神起-咒文mirotic,http://em.21dtv.com/songs/60059193.mkv +东方神起-呪文mrotic,http://em.21dtv.com/songs/60059192.mkv +黄西田+樱桃姐妹-走偎来,http://em.21dtv.com/songs/60059952.mkv +童唱-赠汪伦,http://em.21dtv.com/songs/60057413.mkv +仇泽-卓文君,http://em.21dtv.com/songs/60070269.mkv +陶大伟-长尾巴,http://em.21dtv.com/songs/60080410.mkv +陈明真-抓兔子,http://em.21dtv.com/songs/60059411.mkv +肖亮-走天涯,http://em.21dtv.com/songs/60134136.mkv +汤子星-在天涯,http://em.21dtv.com/songs/60103409.mkv +老猫+杨望-走天涯,http://em.21dtv.com/songs/60086283.mkv +康苗-醉天涯,http://em.21dtv.com/songs/60084629.mkv +毕福剑+苏丹-走天涯(演唱会),http://em.21dtv.com/songs/60079748.mkv +卓雅-走天涯,http://em.21dtv.com/songs/60069036.mkv +肖亮+叶贝文-走天涯,http://em.21dtv.com/songs/60063160.mkv +叶贝文-走天涯,http://em.21dtv.com/songs/60059948.mkv +降央卓玛-走天涯,http://em.21dtv.com/songs/60059947.mkv +大哲-走天涯,http://em.21dtv.com/songs/60059946.mkv +佚名-种太阳,http://em.21dtv.com/songs/60059074.mkv +一绫-枕头香,http://em.21dtv.com/songs/60116491.mkv +GOLDEN-重头戏,http://em.21dtv.com/songs/60070257.mkv +水木年华-在他乡,http://em.21dtv.com/songs/60057151.mkv +刘子毅-赞唐山,http://em.21dtv.com/songs/60105634.mkv +曾轶可-最天使(演唱会),http://em.21dtv.com/songs/60060421.mkv +陈小春-主题曲,http://em.21dtv.com/songs/60120075.mkv +石文-遭天谴,http://em.21dtv.com/songs/60107091.mkv +苏素-主题曲,http://em.21dtv.com/songs/60088543.mkv +关智斌-助听器,http://em.21dtv.com/songs/60059263.mkv +林宇中-主题曲,http://em.21dtv.com/songs/60059261.mkv +徐誉滕-致童年(演唱会),http://em.21dtv.com/songs/60086255.mkv +林楠-这条路,http://em.21dtv.com/songs/60119712.mkv +王旭刚-这条路,http://em.21dtv.com/songs/60113865.mkv +娅琳-这条路,http://em.21dtv.com/songs/60113396.mkv +叶世荣-重头来,http://em.21dtv.com/songs/60059151.mkv +夏国星-这条路,http://em.21dtv.com/songs/60057861.mkv +冷漠+云菲菲-这条街,http://em.21dtv.com/songs/60115709.mkv +王冠-昨天见,http://em.21dtv.com/songs/60107898.mkv +四分卫-止痛剂,http://em.21dtv.com/songs/60058757.mkv +冷漠+云菲菲-这条街,http://em.21dtv.com/songs/60057860.mkv +黄凤仪-醉桃花,http://em.21dtv.com/songs/60060531.mkv +韩雪-紫藤花,http://em.21dtv.com/songs/60059655.mkv +S.H.E-紫藤花,http://em.21dtv.com/songs/60059654.mkv +萧正楠-主题歌,http://em.21dtv.com/songs/60059260.mkv +尹相杰-醉天地,http://em.21dtv.com/songs/60060532.mkv +曾玮中-中头彩,http://em.21dtv.com/songs/60108548.mkv +吴淑敏-中头彩,http://em.21dtv.com/songs/60058985.mkv +谢昭光+阮云峰-直通车,http://em.21dtv.com/songs/60058743.mkv +袁小迪-枕头伴,http://em.21dtv.com/songs/60067793.mkv +张碧晨-自饰者,http://em.21dtv.com/songs/60130331.mkv +张碧晨-自饰者,http://em.21dtv.com/songs/60129110.mkv +孙艳-之所以,http://em.21dtv.com/songs/60108434.mkv +刘朝林-之所以,http://em.21dtv.com/songs/60103931.mkv +雨宗林-致岁月(故事情节),http://em.21dtv.com/songs/60101566.mkv +梁丽荣-长寿瑶,http://em.21dtv.com/songs/60081080.mkv +莫文蔚-众生缘,http://em.21dtv.com/songs/60059087.mkv +金佩珊-再世缘,http://em.21dtv.com/songs/60056970.mkv +蔡小虎+龙千玉-再生缘,http://em.21dtv.com/songs/60056955.mkv +秦博-最伤心,http://em.21dtv.com/songs/60132777.mkv +简红-壮士行,http://em.21dtv.com/songs/60113930.mkv +宋熙铭-樟树下,http://em.21dtv.com/songs/60070230.mkv +三个人-这是我,http://em.21dtv.com/songs/60132155.mkv +赵晨唏-至少我,http://em.21dtv.com/songs/60108021.mkv +萧亚轩-钻石糖,http://em.21dtv.com/songs/60060041.mkv +董贞-枕上书,http://em.21dtv.com/songs/60112930.mkv +汪子琳-妆水水(无原唱),http://em.21dtv.com/songs/60059467.mkv +江宏恩-真受伤,http://em.21dtv.com/songs/60058207.mkv +佚名-再生人(无原唱),http://em.21dtv.com/songs/60056953.mkv +寂悸-醉三秋,http://em.21dtv.com/songs/60129000.mkv +阿悄-在深秋,http://em.21dtv.com/songs/60067770.mkv +杨勇-中山桥,http://em.21dtv.com/songs/60066600.mkv +高向鹏+方怡萍-再世情,http://em.21dtv.com/songs/60061871.mkv +杨洪基-祝岁曲,http://em.21dtv.com/songs/60059396.mkv +凌晗-作死你,http://em.21dtv.com/songs/60084664.mkv +何润东-醉生梦,http://em.21dtv.com/songs/60060527.mkv +刘德华-真生命,http://em.21dtv.com/songs/60058194.mkv +周璇-真善美,http://em.21dtv.com/songs/60058193.mkv +谭晶-真善美,http://em.21dtv.com/songs/60058192.mkv +洛天依+乐正绫-杂思录,http://em.21dtv.com/songs/60131614.mkv +高斌-走散了,http://em.21dtv.com/songs/60113102.mkv +张也+刘斌-摘石榴,http://em.21dtv.com/songs/60091034.mkv +董贞-朱砂泪,http://em.21dtv.com/songs/60059203.mkv +林忆莲-再生恋(演唱会),http://em.21dtv.com/songs/60056952.mkv +阿吉仔-这世界,http://em.21dtv.com/songs/60109679.mkv +张祥洪+陈小龙-这世界,http://em.21dtv.com/songs/60086236.mkv +伍佰-真世界,http://em.21dtv.com/songs/60058204.mkv +张清芳-这世界,http://em.21dtv.com/songs/60057836.mkv +林渃晗-指上花,http://em.21dtv.com/songs/60129299.mkv +李宁-紫砂壶,http://em.21dtv.com/songs/60116004.mkv +韩磊-走山河,http://em.21dtv.com/songs/60059939.mkv +关淑怡-众生花(演唱会),http://em.21dtv.com/songs/60059086.mkv +罗嘉良-真说话,http://em.21dtv.com/songs/60058208.mkv +咖啡牛奶-早上好,http://em.21dtv.com/songs/60057312.mkv +陈慧琳-再生花,http://em.21dtv.com/songs/60056951.mkv +周巍-猪神歌,http://em.21dtv.com/songs/60130192.mkv +袁勇-这首歌,http://em.21dtv.com/songs/60128378.mkv +王玉玺-致三国,http://em.21dtv.com/songs/60124266.mkv +刘紫玲-祝寿歌,http://em.21dtv.com/songs/60107544.mkv +萧敬腾-这首歌,http://em.21dtv.com/songs/60103546.mkv +卓依婷-赞洒歌,http://em.21dtv.com/songs/60087486.mkv +卓依婷-祝洒歌,http://em.21dtv.com/songs/60087484.mkv +顾凯-祝寿歌,http://em.21dtv.com/songs/60080534.mkv +姜玉阳-子时过,http://em.21dtv.com/songs/60059614.mkv +佚名-祝寿歌,http://em.21dtv.com/songs/60059395.mkv +童唱-种树歌,http://em.21dtv.com/songs/60059073.mkv +张栋梁-这首歌,http://em.21dtv.com/songs/60057855.mkv +温拿乐队-这首歌,http://em.21dtv.com/songs/60057854.mkv +温拿乐队-这首歌(演唱会),http://em.21dtv.com/songs/60057853.mkv +韩磊-走四方,http://em.21dtv.com/songs/60128584.mkv +黄小琥-走四方,http://em.21dtv.com/songs/60114300.mkv +吴子安+邓子非-走四方,http://em.21dtv.com/songs/60110926.mkv +羽泉-走四方,http://em.21dtv.com/songs/60100387.mkv +曹寅+金志文-走四方,http://em.21dtv.com/songs/60071548.mkv +陈黎明-张三疯,http://em.21dtv.com/songs/60070229.mkv +韩磊-走四方,http://em.21dtv.com/songs/60059945.mkv +韩磊-走四方(演唱会),http://em.21dtv.com/songs/60059944.mkv +周璇-钟山春,http://em.21dtv.com/songs/60059061.mkv +杨燕-钟山春,http://em.21dtv.com/songs/60059060.mkv +谢采妘-钟山春,http://em.21dtv.com/songs/60059059.mkv +徐小凤-钟山春(演唱会),http://em.21dtv.com/songs/60059058.mkv +梁咏琪-再上车,http://em.21dtv.com/songs/60056947.mkv +李政飞-走三边,http://em.21dtv.com/songs/60111982.mkv +孙刚-走三边,http://em.21dtv.com/songs/60096972.mkv +孙刚-走三边(演唱会),http://em.21dtv.com/songs/60087152.mkv +郭美美-左手边,http://em.21dtv.com/songs/60060649.mkv +顺子-再说吧,http://em.21dtv.com/songs/60056974.mkv +林绫-这是爱,http://em.21dtv.com/songs/60079549.mkv +李东海+HENRY-这是爱,http://em.21dtv.com/songs/60066590.mkv +陈慧娴-正是爱,http://em.21dtv.com/songs/60058353.mkv +张国荣-这是爱,http://em.21dtv.com/songs/60057844.mkv +夏韶声-这是爱(演唱会),http://em.21dtv.com/songs/60057843.mkv +黄凯芹-这是爱(演唱会),http://em.21dtv.com/songs/60057842.mkv +关淑怡-这是爱(演唱会),http://em.21dtv.com/songs/60057841.mkv +林宥嘉-自然醒,http://em.21dtv.com/songs/60059733.mkv +马句-醉人生,http://em.21dtv.com/songs/60114889.mkv +黄安-做人难,http://em.21dtv.com/songs/60060725.mkv +唐俪-自然美,http://em.21dtv.com/songs/60113352.mkv +金学峰-在人间,http://em.21dtv.com/songs/60057127.mkv +夏国星-醉人歌(无原唱),http://em.21dtv.com/songs/60060526.mkv +张蓉蓉+蔡义德-走若飞,http://em.21dtv.com/songs/60059938.mkv +陈雷-自然风,http://em.21dtv.com/songs/60059728.mkv +高佳-中秋月,http://em.21dtv.com/songs/60111531.mkv +关承斌-挚情吟,http://em.21dtv.com/songs/60108322.mkv +门丽-醉情缘,http://em.21dtv.com/songs/60097114.mkv +王识贤-中秋夜,http://em.21dtv.com/songs/60058980.mkv +许美静-真情谊,http://em.21dtv.com/songs/60058178.mkv +朱海君-醉清香,http://em.21dtv.com/songs/60084628.mkv +冯瑞萍-紫蔷薇,http://em.21dtv.com/songs/60084600.mkv +施文彬-真情味,http://em.21dtv.com/songs/60058176.mkv +郭子煊-竹蜻蜓,http://em.21dtv.com/songs/60106333.mkv +李玉刚-致情人,http://em.21dtv.com/songs/60109427.mkv +谷慧子-致前任,http://em.21dtv.com/songs/60105384.mkv +超级女声+叶一茜-真情人,http://em.21dtv.com/songs/60088712.mkv +赵擎-作情人,http://em.21dtv.com/songs/60060676.mkv +王识贤+谢金燕-醉情人,http://em.21dtv.com/songs/60060518.mkv +佚名-醉情人(无原唱),http://em.21dtv.com/songs/60060517.mkv +叶一茜-真情人,http://em.21dtv.com/songs/60058172.mkv +李玟-真情人,http://em.21dtv.com/songs/60058171.mkv +黄中原-真情人(演唱会),http://em.21dtv.com/songs/60058170.mkv +梦然-转圈圈,http://em.21dtv.com/songs/60079699.mkv +梁静茹-转圈圈(演唱会),http://em.21dtv.com/songs/60059442.mkv +铭鑫+建华+成刚-赚钱难,http://em.21dtv.com/songs/60134367.mkv +蔡小虎+张秀卿-醉千年,http://em.21dtv.com/songs/60060512.mkv +洪荣宏-真情梦,http://em.21dtv.com/songs/60122956.mkv +洪荣宏-真情梦,http://em.21dtv.com/songs/60111239.mkv +蔡义德-走去觅,http://em.21dtv.com/songs/60066614.mkv +南征北战-站起来,http://em.21dtv.com/songs/60079522.mkv +林玉英-醉情泪,http://em.21dtv.com/songs/60065534.mkv +范逸臣-醉青楼,http://em.21dtv.com/songs/60060513.mkv +群星-站起来,http://em.21dtv.com/songs/60057507.mkv +零点乐队-站起来(演唱会),http://em.21dtv.com/songs/60057506.mkv +罗百吉-站起来(无原唱),http://em.21dtv.com/songs/60057505.mkv +李荣浩-作曲家,http://em.21dtv.com/songs/60108580.mkv +李荣浩-作曲家,http://em.21dtv.com/songs/60103375.mkv +川子-郑钱花,http://em.21dtv.com/songs/60113439.mkv +洪百慧+林俊吉-真情歌,http://em.21dtv.com/songs/60135506.mkv +黑龙+汤晓菲-最情歌,http://em.21dtv.com/songs/60079815.mkv +梁汉文-正气歌,http://em.21dtv.com/songs/60079591.mkv +白冰冰-醉情歌,http://em.21dtv.com/songs/60060516.mkv +阿兰-醉清风,http://em.21dtv.com/songs/60065533.mkv +依依-醉清风,http://em.21dtv.com/songs/60060515.mkv +弦子-醉清风,http://em.21dtv.com/songs/60060514.mkv +孙露-致青春,http://em.21dtv.com/songs/60115845.mkv +刘双双-致青春,http://em.21dtv.com/songs/60103923.mkv +李行亮-致青春,http://em.21dtv.com/songs/60100168.mkv +孙露-致青春,http://em.21dtv.com/songs/60099941.mkv +杨钰莹-致青春,http://em.21dtv.com/songs/60096097.mkv +程泽宇-致青春,http://em.21dtv.com/songs/60086254.mkv +郭燕-致青春,http://em.21dtv.com/songs/60084572.mkv +东方依依-致青春,http://em.21dtv.com/songs/60080130.mkv +王菲-致青春,http://em.21dtv.com/songs/60079640.mkv +佚名-在泉边,http://em.21dtv.com/songs/60057126.mkv +陈雷-真情爱,http://em.21dtv.com/songs/60058150.mkv +苏慧伦-左撇子,http://em.21dtv.com/songs/60060646.mkv +樊家瑞-真朋友,http://em.21dtv.com/songs/60121841.mkv +李利依-真朋友(演唱会),http://em.21dtv.com/songs/60065479.mkv +王鹤铮-真朋友,http://em.21dtv.com/songs/60061890.mkv +郑中基-真朋友,http://em.21dtv.com/songs/60058142.mkv +童唱-找朋友,http://em.21dtv.com/songs/60057682.mkv +吴克群-纸片人,http://em.21dtv.com/songs/60058775.mkv +顾莉雅-这片海,http://em.21dtv.com/songs/60065472.mkv +贾立怡-蒸苹果,http://em.21dtv.com/songs/60058331.mkv +王中平-早哪知,http://em.21dtv.com/songs/60099391.mkv +萧正楠-正男友,http://em.21dtv.com/songs/60093113.mkv +[Group] +groupName=十六万歌曲MV等 - 36 +郭峰-怎能忘,http://em.21dtv.com/songs/60057393.mkv +刘朋-真男人,http://em.21dtv.com/songs/60125200.mkv +彭小龙-真男人,http://em.21dtv.com/songs/60113512.mkv +张信哲-猪腩肉,http://em.21dtv.com/songs/60092566.mkv +叶倩文-真女人(演唱会),http://em.21dtv.com/songs/60058141.mkv +张蓉蓉-做你去,http://em.21dtv.com/songs/60060719.mkv +卓依婷-捉泥鳅,http://em.21dtv.com/songs/60059589.mkv +童唱-捉泥鳅,http://em.21dtv.com/songs/60059588.mkv +张寒-撞南墙,http://em.21dtv.com/songs/60059492.mkv +大哲-找你妹,http://em.21dtv.com/songs/60095280.mkv +王麟-找你妹,http://em.21dtv.com/songs/60081842.mkv +李漫荻-找你妹,http://em.21dtv.com/songs/60081054.mkv +郑顺鹏-正能量,http://em.21dtv.com/songs/60118967.mkv +JJCC-在哪里,http://em.21dtv.com/songs/60114340.mkv +河静静-正能量,http://em.21dtv.com/songs/60084550.mkv +萧全-正能量,http://em.21dtv.com/songs/60079590.mkv +沙宝亮-正能量,http://em.21dtv.com/songs/60079589.mkv +荣歌-正能量,http://em.21dtv.com/songs/60079588.mkv +萧全-正能量(舞曲版),http://em.21dtv.com/songs/60072804.mkv +陈淑芳-掌牛郎,http://em.21dtv.com/songs/60057627.mkv +康康-珍妮佛,http://em.21dtv.com/songs/60057980.mkv +盛云龙-真男儿,http://em.21dtv.com/songs/60117100.mkv +陈夏莲-屘仔囝,http://em.21dtv.com/songs/60123288.mkv +张岚兴-追梦者,http://em.21dtv.com/songs/60127972.mkv +焯皓-追梦者,http://em.21dtv.com/songs/60120735.mkv +李琦-追梦者,http://em.21dtv.com/songs/60107795.mkv +李炜-造梦者,http://em.21dtv.com/songs/60072781.mkv +古巨基-追梦者,http://em.21dtv.com/songs/60069026.mkv +彭丽丽-在梦中,http://em.21dtv.com/songs/60066576.mkv +佚名-在梦中(无原唱),http://em.21dtv.com/songs/60057081.mkv +刘海辰-追梦缘,http://em.21dtv.com/songs/60127777.mkv +吴小彤-再没有,http://em.21dtv.com/songs/60106678.mkv +反串玉玲珑-醉梦缘,http://em.21dtv.com/songs/60072842.mkv +朴树-在木星,http://em.21dtv.com/songs/60113609.mkv +阿幼朵-醉苗乡,http://em.21dtv.com/songs/60060511.mkv +张蓉蓉-醉袂醒,http://em.21dtv.com/songs/60060506.mkv +蔡秋凤-醉抹停,http://em.21dtv.com/songs/60095925.mkv +林志颖-追明天,http://em.21dtv.com/songs/60059525.mkv +罗志祥-致命伤,http://em.21dtv.com/songs/60117120.mkv +罗志祥-致命伤,http://em.21dtv.com/songs/60116194.mkv +万轩严+李亚蔚-最美伤,http://em.21dtv.com/songs/60069049.mkv +佚名-斩马谡,http://em.21dtv.com/songs/60057445.mkv +赵学而-怎么说,http://em.21dtv.com/songs/60057381.mkv +梁静茹-怎么说(演唱会),http://em.21dtv.com/songs/60057380.mkv +白若溪-追梦人,http://em.21dtv.com/songs/60125977.mkv +梁咏琪-追梦人,http://em.21dtv.com/songs/60113739.mkv +王若琳-追梦人,http://em.21dtv.com/songs/60106124.mkv +阿木-追梦人,http://em.21dtv.com/songs/60094739.mkv +田斯斯+胡海泉-追梦人,http://em.21dtv.com/songs/60094617.mkv +仇泽-醉梦人,http://em.21dtv.com/songs/60070285.mkv +格格-追梦人,http://em.21dtv.com/songs/60062387.mkv +荣联合-醉美人,http://em.21dtv.com/songs/60060504.mkv +凤飞飞-追梦人,http://em.21dtv.com/songs/60059522.mkv +水木年华-追梦人(演唱会),http://em.21dtv.com/songs/60059521.mkv +袁冰-赠母亲,http://em.21dtv.com/songs/60129593.mkv +樱花姐妹-姐妹情,http://em.21dtv.com/songs/60059624.mkv +吴日言-猪妹paradise,http://em.21dtv.com/songs/60059218.mkv +郑君绵-中马票,http://em.21dtv.com/songs/60058974.mkv +清官儿-丈母娘,http://em.21dtv.com/songs/60120730.mkv +2个女生-啄木鸟,http://em.21dtv.com/songs/60059605.mkv +林凡-怎么能,http://em.21dtv.com/songs/60057371.mkv +大校-致妈妈,http://em.21dtv.com/songs/60135081.mkv +李绪杰-致妈妈,http://em.21dtv.com/songs/60110284.mkv +李克勤-真面目,http://em.21dtv.com/songs/60058136.mkv +胡斌-真美丽,http://em.21dtv.com/songs/60117142.mkv +刘阳-怎么了,http://em.21dtv.com/songs/60105649.mkv +徐浩峻-怎么了,http://em.21dtv.com/songs/60109366.mkv +周杰伦+袁咏琳-怎么了,http://em.21dtv.com/songs/60109228.mkv +周杰伦+袁咏琳-怎么了,http://em.21dtv.com/songs/60108398.mkv +周杰伦+袁咏琳-怎么了,http://em.21dtv.com/songs/60106713.mkv +宇桐非-肿么了,http://em.21dtv.com/songs/60104937.mkv +萧闳仁-怎么了,http://em.21dtv.com/songs/60104400.mkv +晓月-怎么了,http://em.21dtv.com/songs/60104173.mkv +樊桐舟-卓玛拉,http://em.21dtv.com/songs/60102423.mkv +棒棒堂-怎么了,http://em.21dtv.com/songs/60099354.mkv +Lollipop F-怎么了,http://em.21dtv.com/songs/60099011.mkv +梅艳芳-醉朦胧,http://em.21dtv.com/songs/60091530.mkv +陈信勇-怎么了,http://em.21dtv.com/songs/60086219.mkv +朱可昀-怎么了,http://em.21dtv.com/songs/60084523.mkv +刘阳-怎么了,http://em.21dtv.com/songs/60079502.mkv +罗时丰-在梦里,http://em.21dtv.com/songs/60079479.mkv +胡斌-真美丽,http://em.21dtv.com/songs/60071516.mkv +刘璐-怎么了,http://em.21dtv.com/songs/60068984.mkv +徐健淇-怎么了,http://em.21dtv.com/songs/60067779.mkv +李玉刚-逐梦令,http://em.21dtv.com/songs/60065501.mkv +张啸-怎么了,http://em.21dtv.com/songs/60061878.mkv +佚名-醉弥勒,http://em.21dtv.com/songs/60060508.mkv +陈思安-真美丽,http://em.21dtv.com/songs/60058134.mkv +张曼莉-怎么了,http://em.21dtv.com/songs/60057370.mkv +莫文蔚-怎么了,http://em.21dtv.com/songs/60057369.mkv +李心洁-怎么了,http://em.21dtv.com/songs/60057368.mkv +VJ-怎么了,http://em.21dtv.com/songs/60057367.mkv +周华健-怎么了(演唱会),http://em.21dtv.com/songs/60057366.mkv +纪文惠-怎么啦,http://em.21dtv.com/songs/60057365.mkv +龙宽九段-在梦里,http://em.21dtv.com/songs/60057080.mkv +迪克牛仔-在梦里,http://em.21dtv.com/songs/60057079.mkv +佚名-追梦酒,http://em.21dtv.com/songs/60059520.mkv +陈淑芳-转妹家,http://em.21dtv.com/songs/60059441.mkv +张学友-这么近,http://em.21dtv.com/songs/60057826.mkv +张学友-这么近(那么远),http://em.21dtv.com/songs/60057825.mkv +叶佳修-栽梦河,http://em.21dtv.com/songs/60089715.mkv +成龙-怎么会,http://em.21dtv.com/songs/60057355.mkv +孙悦-怎么happy,http://em.21dtv.com/songs/60057345.mkv +孙悦-怎么happy(演唱会),http://em.21dtv.com/songs/60057344.mkv +杨仲恩-栽梦河,http://em.21dtv.com/songs/60056707.mkv +邓超-字母歌,http://em.21dtv.com/songs/60117271.mkv +默契-紫玫瑰,http://em.21dtv.com/songs/60099638.mkv +韩风-紫玫瑰,http://em.21dtv.com/songs/60084599.mkv +罗浩予-紫玫瑰,http://em.21dtv.com/songs/60079717.mkv +佚名-醉玫瑰,http://em.21dtv.com/songs/60060503.mkv +蒙恩使女-纸玫瑰,http://em.21dtv.com/songs/60058774.mkv +顾建华-纸玫瑰,http://em.21dtv.com/songs/60058773.mkv +苏盈之-找麻烦,http://em.21dtv.com/songs/60109591.mkv +罗时丰-走马灯,http://em.21dtv.com/songs/60134115.mkv +邱兰芬-走马灯(无原唱),http://em.21dtv.com/songs/60095934.mkv +陈绮贞-周梦蝶,http://em.21dtv.com/songs/60084583.mkv +THE VERSE-周梦蝶,http://em.21dtv.com/songs/60084582.mkv +温岚-最美的,http://em.21dtv.com/songs/60079802.mkv +叶启田-走马灯(无原唱),http://em.21dtv.com/songs/60077735.mkv +马晓萱-最美的,http://em.21dtv.com/songs/60069046.mkv +梅花三姐妹-走马灯,http://em.21dtv.com/songs/60059935.mkv +罗时丰-走马灯,http://em.21dtv.com/songs/60059934.mkv +乱弹阿翔-走马灯,http://em.21dtv.com/songs/60059933.mkv +邓丽君-走马灯,http://em.21dtv.com/songs/60059932.mkv +陈淑桦-走马灯,http://em.21dtv.com/songs/60059931.mkv +蔡幸娟-走马灯,http://em.21dtv.com/songs/60059930.mkv +15.5少女组-捉迷藏,http://em.21dtv.com/songs/60129870.mkv +Astro-捉迷藏,http://em.21dtv.com/songs/60123442.mkv +哈泊力夫+那仁奥尤-在牧场,http://em.21dtv.com/songs/60122622.mkv +哈泊力夫-在牧场,http://em.21dtv.com/songs/60122613.mkv +MissMass-捉迷藏,http://em.21dtv.com/songs/60122402.mkv +Turbo-捉迷藏,http://em.21dtv.com/songs/60117505.mkv +TARA-捉迷藏,http://em.21dtv.com/songs/60099046.mkv +郑秀文-捉迷藏,http://em.21dtv.com/songs/60059586.mkv +张学友-捉迷藏,http://em.21dtv.com/songs/60059585.mkv +林宇中-捉迷藏,http://em.21dtv.com/songs/60059584.mkv +方皓玟-捉迷藏,http://em.21dtv.com/songs/60059583.mkv +朱杰-怎么办,http://em.21dtv.com/songs/60105961.mkv +1N1-怎么办,http://em.21dtv.com/songs/60084521.mkv +金志文-怎么办,http://em.21dtv.com/songs/60080598.mkv +CHOCOLATE-怎么办,http://em.21dtv.com/songs/60079500.mkv +范玮琪-怎么办,http://em.21dtv.com/songs/60068983.mkv +张小薇-肿么办,http://em.21dtv.com/songs/60067807.mkv +郑仁-怎么办,http://em.21dtv.com/songs/60066582.mkv +SWEETY-子妹帮,http://em.21dtv.com/songs/60059613.mkv +张震岳-怎么办,http://em.21dtv.com/songs/60057350.mkv +张真贺-怎么办,http://em.21dtv.com/songs/60057349.mkv +S.H.E-怎么办,http://em.21dtv.com/songs/60057348.mkv +王力宏-在梅边,http://em.21dtv.com/songs/60057076.mkv +司徒兰芳+张雷-证明爱,http://em.21dtv.com/songs/60111741.mkv +孙浩+江涛+甘萍-铡美案,http://em.21dtv.com/songs/60087661.mkv +刘燕燕-姐妹爱,http://em.21dtv.com/songs/60059621.mkv +裘盛戎-铡美案,http://em.21dtv.com/songs/60057423.mkv +朱宇-在柳州,http://em.21dtv.com/songs/60121750.mkv +Christine welch(克丽丝叮)-竹林中,http://em.21dtv.com/songs/60103205.mkv +蔡孟臻-滞留症,http://em.21dtv.com/songs/60079643.mkv +小壮-祝琳媛,http://em.21dtv.com/songs/60087710.mkv +刘德华-张靓颖,http://em.21dtv.com/songs/60087398.mkv +塔拉吉斯-藏羚羊,http://em.21dtv.com/songs/60068155.mkv +陈立珂-朱丽叶(演唱会),http://em.21dtv.com/songs/60059202.mkv +崔博涵-在路上,http://em.21dtv.com/songs/60135163.mkv +边永城-在路上,http://em.21dtv.com/songs/60134276.mkv +吉克永都-在路上,http://em.21dtv.com/songs/60128875.mkv +杜军-在路上,http://em.21dtv.com/songs/60121795.mkv +柴强-在路上,http://em.21dtv.com/songs/60118724.mkv +郭保成-在路上,http://em.21dtv.com/songs/60117282.mkv +齐乐-在路上,http://em.21dtv.com/songs/60116418.mkv +南二巷乐队-在路上,http://em.21dtv.com/songs/60114433.mkv +甜品店乐团-在路上,http://em.21dtv.com/songs/60113895.mkv +钟纯妍-在路上,http://em.21dtv.com/songs/60112326.mkv +张伊彤-在路上,http://em.21dtv.com/songs/60111055.mkv +孙浩雨-在路上,http://em.21dtv.com/songs/60110982.mkv +刘祖栋-在路上,http://em.21dtv.com/songs/60101981.mkv +刘立群-在路上,http://em.21dtv.com/songs/60098152.mkv +东方骏+李亿豪-在路上,http://em.21dtv.com/songs/60098070.mkv +邓子霆-在路上,http://em.21dtv.com/songs/60080125.mkv +王鸣飞+崔永元+鞠萍+赵杰-在路上,http://em.21dtv.com/songs/60068974.mkv +泳儿-在路上(演唱会),http://em.21dtv.com/songs/60065452.mkv +郑融-自来水,http://em.21dtv.com/songs/60061920.mkv +黄秋生-支离疏,http://em.21dtv.com/songs/60058382.mkv +佚名-在路上,http://em.21dtv.com/songs/60057073.mkv +刘巧巧-在路上,http://em.21dtv.com/songs/60057072.mkv +刘欢-在路上,http://em.21dtv.com/songs/60057071.mkv +金科-在路上,http://em.21dtv.com/songs/60057070.mkv +大风-在路上,http://em.21dtv.com/songs/60057069.mkv +永邦-支离人,http://em.21dtv.com/songs/60058381.mkv +宋祖英-走罗平,http://em.21dtv.com/songs/60079747.mkv +棒棒堂-战利品,http://em.21dtv.com/songs/60062100.mkv +刘一喆-找老婆,http://em.21dtv.com/songs/60057680.mkv +车盈霏-战利品,http://em.21dtv.com/songs/60057471.mkv +佚名-在路旁,http://em.21dtv.com/songs/60057068.mkv +杨洪基-在路旁,http://em.21dtv.com/songs/60057067.mkv +佚名-在路旁(慢四),http://em.21dtv.com/songs/60057066.mkv +老猫+王蓉+杨望-抓流氓,http://em.21dtv.com/songs/60124364.mkv +浩明+思小玥-最浪漫,http://em.21dtv.com/songs/60121873.mkv +刘炫颉-着了魔,http://em.21dtv.com/songs/60108350.mkv +维他命C-最浪漫,http://em.21dtv.com/songs/60067833.mkv +袁惟仁-走了吗,http://em.21dtv.com/songs/60059922.mkv +范玮琪-再联络,http://em.21dtv.com/songs/60056932.mkv +陈奕-自恋狂,http://em.21dtv.com/songs/60059716.mkv +周柏豪-斩立决,http://em.21dtv.com/songs/60071507.mkv +S.H.E-茱罗记,http://em.21dtv.com/songs/60059209.mkv +张天甫-芷兰花,http://em.21dtv.com/songs/60114530.mkv +山野-纸老虎,http://em.21dtv.com/songs/60104988.mkv +邱芸子-掷落海(无原唱),http://em.21dtv.com/songs/60058839.mkv +吴梵-着了火,http://em.21dtv.com/songs/60057958.mkv +童唱-竹里馆,http://em.21dtv.com/songs/60059234.mkv +七郎-粥咧滚,http://em.21dtv.com/songs/60059191.mkv +韩雪-竹林风,http://em.21dtv.com/songs/60059235.mkv +翁元佑-转泪点,http://em.21dtv.com/songs/60126071.mkv +胡灵-转泪点,http://em.21dtv.com/songs/60071536.mkv +张震岳-在凌晨,http://em.21dtv.com/songs/60057065.mkv +蔡秋凤-醉李白,http://em.21dtv.com/songs/60072840.mkv +梁心颐-竹篱笆,http://em.21dtv.com/songs/60065500.mkv +RUBBER BAND-睁开眼,http://em.21dtv.com/songs/60070242.mkv +少军-醉开心,http://em.21dtv.com/songs/60132398.mkv +丽菲-重口味,http://em.21dtv.com/songs/60099718.mkv +陈奕迅-重口味,http://em.21dtv.com/songs/60070256.mkv +叶启田-真快乐,http://em.21dtv.com/songs/60079929.mkv +阿爆+BRANDY-装可怜,http://em.21dtv.com/songs/60059472.mkv +佚名-真快乐,http://em.21dtv.com/songs/60058133.mkv +INFINITE-追击者,http://em.21dtv.com/songs/60070268.mkv +梁家辉-自己走,http://em.21dtv.com/songs/60059713.mkv +佚名-照镜子,http://em.21dtv.com/songs/60057733.mkv +何炅-早加油,http://em.21dtv.com/songs/60122482.mkv +张寒-醉江阳,http://em.21dtv.com/songs/60086303.mkv +庾澄庆-指甲油,http://em.21dtv.com/songs/60080044.mkv +李思琳-珠江游,http://em.21dtv.com/songs/60059212.mkv +TWINS+AT17-正教育(演唱会),http://em.21dtv.com/songs/60058349.mkv +马槜铿-真假象,http://em.21dtv.com/songs/60128605.mkv +佚名-珠江行,http://em.21dtv.com/songs/60059211.mkv +吴雨霏-暂借问,http://em.21dtv.com/songs/60057258.mkv +小宇-这几天,http://em.21dtv.com/songs/60072790.mkv +潘安邦-再见teresa,http://em.21dtv.com/songs/60056831.mkv +凤凰传奇-指间沙,http://em.21dtv.com/songs/60103919.mkv +谢霆锋-重金属,http://em.21dtv.com/songs/60093197.mkv +高隆-紫金山,http://em.21dtv.com/songs/60059647.mkv +蓝雨-指间沙,http://em.21dtv.com/songs/60058784.mkv +小虎队-再聚首(爱+蝴蝶飞呀+青苹果乐园)(演唱会),http://em.21dtv.com/songs/60056924.mkv +贺金-庄稼人,http://em.21dtv.com/songs/60112267.mkv +易秀成-浙江人,http://em.21dtv.com/songs/60065475.mkv +屠洪纲+那英-自己人,http://em.21dtv.com/songs/60061919.mkv +王力宏-自己人,http://em.21dtv.com/songs/60059705.mkv +徐小凤-自己人(演唱会),http://em.21dtv.com/songs/60059704.mkv +萧亚轩-自己人(演唱会),http://em.21dtv.com/songs/60059703.mkv +古巨基-中间人,http://em.21dtv.com/songs/60058972.mkv +付晓明-指尖秋,http://em.21dtv.com/songs/60106594.mkv +吴雨霏-紫禁情,http://em.21dtv.com/songs/60079716.mkv +金波+广智-猪坚强,http://em.21dtv.com/songs/60059217.mkv +梦的羽裳-醉江南,http://em.21dtv.com/songs/60113749.mkv +庄里兄弟-这几年,http://em.21dtv.com/songs/60102187.mkv +李玉和-醉江南,http://em.21dtv.com/songs/60060501.mkv +冷漠-醉寂寞,http://em.21dtv.com/songs/60128811.mkv +海鸣威-再见面,http://em.21dtv.com/songs/60120726.mkv +周鹏-自己美,http://em.21dtv.com/songs/60059702.mkv +谭晶-壮家妹,http://em.21dtv.com/songs/60059476.mkv +傲艺-周杰伦,http://em.21dtv.com/songs/60087140.mkv +练创文-终结了,http://em.21dtv.com/songs/60079661.mkv +赵学而-再见了,http://em.21dtv.com/songs/60056864.mkv +陈洁仪-祝君好,http://em.21dtv.com/songs/60116347.mkv +付梦妮-祝君好(演唱会),http://em.21dtv.com/songs/60079688.mkv +陈奕迅-专家话,http://em.21dtv.com/songs/60059417.mkv +张智霖-祝君好,http://em.21dtv.com/songs/60059356.mkv +张智霖-祝君好(演唱会),http://em.21dtv.com/songs/60059355.mkv +叶文辉-祝君好(演唱会),http://em.21dtv.com/songs/60059354.mkv +侧田-祝君好(演唱会),http://em.21dtv.com/songs/60059353.mkv +周笔畅-这句话,http://em.21dtv.com/songs/60057812.mkv +胡斌-祝酒歌,http://em.21dtv.com/songs/60127306.mkv +松勐-祝酒歌,http://em.21dtv.com/songs/60124837.mkv +赵伟东-祝酒歌,http://em.21dtv.com/songs/60117253.mkv +王丽萍-祝酒歌,http://em.21dtv.com/songs/60117023.mkv +郎凯亦-醉酒歌,http://em.21dtv.com/songs/60106322.mkv +游美灵-祝酒歌,http://em.21dtv.com/songs/60104288.mkv +李利依-祝酒歌,http://em.21dtv.com/songs/60069023.mkv +卓依婷-祝酒歌,http://em.21dtv.com/songs/60059352.mkv +殷秀梅-祝酒歌,http://em.21dtv.com/songs/60059351.mkv +乌兰图雅-祝酒歌,http://em.21dtv.com/songs/60059350.mkv +蒋大为-祝酒歌,http://em.21dtv.com/songs/60059349.mkv +刀郎-祝酒歌,http://em.21dtv.com/songs/60059348.mkv +李光义-祝酒歌(演唱会),http://em.21dtv.com/songs/60059347.mkv +关牧村-祝酒歌(演唱会),http://em.21dtv.com/songs/60059346.mkv +李琛-早就该,http://em.21dtv.com/songs/60057306.mkv +火风+刘红-赞酒歌,http://em.21dtv.com/songs/60057271.mkv +吕方-再见good bye,http://em.21dtv.com/songs/60056826.mkv +农夫-再见fanz(演唱会),http://em.21dtv.com/songs/60056825.mkv +女子十二乐坊-紫禁城,http://em.21dtv.com/songs/60089774.mkv +张智勇-再见吧,http://em.21dtv.com/songs/60110199.mkv +贡尕达哇-再见吧,http://em.21dtv.com/songs/60065446.mkv +吴俊宏+唐俪-纸甲笔,http://em.21dtv.com/songs/60058772.mkv +BY2-这叫爱,http://em.21dtv.com/songs/60057800.mkv +赵青岳-赞河州,http://em.21dtv.com/songs/60132937.mkv +CHOCOLAT-综合症,http://em.21dtv.com/songs/60065515.mkv +李菓-醉花阴,http://em.21dtv.com/songs/60130440.mkv +田维英-葬花吟,http://em.21dtv.com/songs/60118809.mkv +湘齐萌-葬花吟,http://em.21dtv.com/songs/60093680.mkv +周旭风-醉红颜,http://em.21dtv.com/songs/60084625.mkv +龚月-葬花吟,http://em.21dtv.com/songs/60079496.mkv +冷漠-醉红颜,http://em.21dtv.com/songs/60060498.mkv +安琥-醉红颜,http://em.21dtv.com/songs/60060497.mkv +冷漠-醉红颜(舞曲版),http://em.21dtv.com/songs/60060496.mkv +佚名-葬花吟,http://em.21dtv.com/songs/60057279.mkv +孙青-葬花吟,http://em.21dtv.com/songs/60057278.mkv +蔡淳佳-自画像,http://em.21dtv.com/songs/60130729.mkv +咪依鲁江-醉花香,http://em.21dtv.com/songs/60079827.mkv +徐丽娟-摘核桃(儿歌),http://em.21dtv.com/songs/60089880.mkv +许嵩-装糊涂,http://em.21dtv.com/songs/60081222.mkv +向佐-再回首,http://em.21dtv.com/songs/60123738.mkv +李安-再回首,http://em.21dtv.com/songs/60115220.mkv +杨坤+黄莉-再回首,http://em.21dtv.com/songs/60112013.mkv +单待-中华颂,http://em.21dtv.com/songs/60106664.mkv +苏芮-再回首,http://em.21dtv.com/songs/60100415.mkv +冯晓菲-中华颂,http://em.21dtv.com/songs/60099773.mkv +秦妮-再回首,http://em.21dtv.com/songs/60084506.mkv +莫旭秋-再回首(演唱会),http://em.21dtv.com/songs/60079454.mkv +羽泉-再回首,http://em.21dtv.com/songs/60079453.mkv +青春美少女-再回首(演唱会),http://em.21dtv.com/songs/60071491.mkv +袁小迪-醉乎死,http://em.21dtv.com/songs/60060500.mkv +林心如-最好是,http://em.21dtv.com/songs/60060163.mkv +陈乃荣-召唤兽,http://em.21dtv.com/songs/60057725.mkv +沙宝亮-在乎谁,http://em.21dtv.com/songs/60057059.mkv +李翊君-再回首,http://em.21dtv.com/songs/60056762.mkv +姜育恒-再回首,http://em.21dtv.com/songs/60056761.mkv +姜育恒-再回首(演唱会),http://em.21dtv.com/songs/60056760.mkv +郑黄荣-郑黄荣,http://em.21dtv.com/songs/60096515.mkv +许佳+金荻-中华情,http://em.21dtv.com/songs/60124467.mkv +汪明荃-祝婚曲,http://em.21dtv.com/songs/60092960.mkv +刘珺儿-祝婚曲,http://em.21dtv.com/songs/60092365.mkv +王宏伟-中华情,http://em.21dtv.com/songs/60088288.mkv +顾凯-中华情,http://em.21dtv.com/songs/60080533.mkv +群星-中华情(演唱会),http://em.21dtv.com/songs/60058959.mkv +小曲儿-纵横篇,http://em.21dtv.com/songs/60084609.mkv +张立基-震撼passion,http://em.21dtv.com/songs/60058300.mkv +陈慧琳-憎恨你,http://em.21dtv.com/songs/60093459.mkv +RUBBER BAND-最后 那(演唱会),http://em.21dtv.com/songs/60060165.mkv +佚名-中华美,http://em.21dtv.com/songs/60058949.mkv +黄凯芹-再会了,http://em.21dtv.com/songs/60106490.mkv +蔡佳麟-再会啦,http://em.21dtv.com/songs/60096489.mkv +紫浪-再后来,http://em.21dtv.com/songs/60094243.mkv +刘德华-再会了,http://em.21dtv.com/songs/60056794.mkv +刘德华-再会了(演唱会),http://em.21dtv.com/songs/60056793.mkv +任贤齐-指挥家,http://em.21dtv.com/songs/60079630.mkv +刘昱贤+小林玉置-醉寒江,http://em.21dtv.com/songs/60072839.mkv +谷亚玲-祝红军,http://em.21dtv.com/songs/60059343.mkv +陈星光-最红火,http://em.21dtv.com/songs/60134404.mkv +王传越-中华魂,http://em.21dtv.com/songs/60133973.mkv +李琼-走黄河,http://em.21dtv.com/songs/60091356.mkv +拉热吉-藏红花,http://em.21dtv.com/songs/60062548.mkv +孟庭苇-紫浣花,http://em.21dtv.com/songs/60059645.mkv +梁耀安+蒋文端-祝婚歌(戏曲),http://em.21dtv.com/songs/60092927.mkv +迟志强-真活该,http://em.21dtv.com/songs/60088737.mkv +阿利-征婚歌,http://em.21dtv.com/songs/60069004.mkv +张德兰+区瑞强-祝婚歌,http://em.21dtv.com/songs/60059344.mkv +东方神起-正合反,http://em.21dtv.com/songs/60087241.mkv +SWING-中和点,http://em.21dtv.com/songs/60092195.mkv +许志安-葬花笛,http://em.21dtv.com/songs/60057276.mkv +王星策-醉红尘,http://em.21dtv.com/songs/60110400.mkv +陈依然-醉红尘,http://em.21dtv.com/songs/60079826.mkv +关正杰-醉红尘,http://em.21dtv.com/songs/60060494.mkv +苏永康-智慧齿,http://em.21dtv.com/songs/60058844.mkv +美廷-在海边,http://em.21dtv.com/songs/60117976.mkv +满文军-再会吧,http://em.21dtv.com/songs/60056769.mkv +圆圆-中国字,http://em.21dtv.com/songs/60100797.mkv +皓天-中国印,http://em.21dtv.com/songs/60131699.mkv +皓天-中国印,http://em.21dtv.com/songs/60129445.mkv +张信哲-致光阴,http://em.21dtv.com/songs/60120498.mkv +游子组合-烛光吟,http://em.21dtv.com/songs/60107889.mkv +马菀营-中国喜,http://em.21dtv.com/songs/60128606.mkv +褚桐羽-中国娃,http://em.21dtv.com/songs/60129596.mkv +莫智钦-只怪我,http://em.21dtv.com/songs/60106235.mkv +邓俊宇-只怪我,http://em.21dtv.com/songs/60104470.mkv +舞蹈集锦-长鼓舞,http://em.21dtv.com/songs/60090142.mkv +蔡秋凤-醉归晚,http://em.21dtv.com/songs/60060492.mkv +童唱-竹竿舞,http://em.21dtv.com/songs/60059233.mkv +解晓东-中国娃,http://em.21dtv.com/songs/60058916.mkv +梅艳芳-再共舞,http://em.21dtv.com/songs/60056756.mkv +彭小龙-中国狮,http://em.21dtv.com/songs/60115937.mkv +OK绷-这故事,http://em.21dtv.com/songs/60096997.mkv +大庆小芳-中国Style,http://em.21dtv.com/songs/60081864.mkv +张恺彤-这歌声,http://em.21dtv.com/songs/60079545.mkv +张也-祖国颂,http://em.21dtv.com/songs/60067827.mkv +佚名-祖国颂,http://em.21dtv.com/songs/60060011.mkv +杨迎-祖国颂,http://em.21dtv.com/songs/60060010.mkv +大合唱-祖国颂,http://em.21dtv.com/songs/60060009.mkv +暗杠-走歌人,http://em.21dtv.com/songs/60133763.mkv +大山-逐光人,http://em.21dtv.com/songs/60126738.mkv +陈志敏-中国人,http://em.21dtv.com/songs/60124633.mkv +苏醒-找个人,http://em.21dtv.com/songs/60124410.mkv +王梓旭-中国人,http://em.21dtv.com/songs/60117038.mkv +王月华-中国人,http://em.21dtv.com/songs/60098644.mkv +大山-逐光人,http://em.21dtv.com/songs/60097045.mkv +林玉英-醉归人(无原唱),http://em.21dtv.com/songs/60095700.mkv +卓依婷-中国人,http://em.21dtv.com/songs/60058909.mkv +刘德华-中国人,http://em.21dtv.com/songs/60058908.mkv +谢霆锋-中国人(演唱会),http://em.21dtv.com/songs/60058907.mkv +刘德华-中国人(演唱会),http://em.21dtv.com/songs/60058906.mkv +梁静茹-找个人,http://em.21dtv.com/songs/60057678.mkv +朱玉-赚呷人(无原唱),http://em.21dtv.com/songs/60017776.mkv +胡兵-重感情,http://em.21dtv.com/songs/60059123.mkv +蔡小虎-重感情,http://em.21dtv.com/songs/60059122.mkv +张镐哲-真感情,http://em.21dtv.com/songs/60058126.mkv +许景淳-真感情,http://em.21dtv.com/songs/60058125.mkv +闫凤梅-中国派,http://em.21dtv.com/songs/60072810.mkv +金波-中国ok(演唱会),http://em.21dtv.com/songs/60058865.mkv +刘子毅-中国牛,http://em.21dtv.com/songs/60113293.mkv +成龙+谭晶-中国年,http://em.21dtv.com/songs/60058903.mkv +马仁业-中国梦,http://em.21dtv.com/songs/60135994.mkv +柳培德-中国梦,http://em.21dtv.com/songs/60131558.mkv +YY-致闺蜜,http://em.21dtv.com/songs/60123572.mkv +阿温-中国美,http://em.21dtv.com/songs/60124603.mkv +剑鸿-重感冒,http://em.21dtv.com/songs/60123701.mkv +周伟+王平+卢江+黄海坡-中国梦,http://em.21dtv.com/songs/60122594.mkv +米靓-中国梦,http://em.21dtv.com/songs/60119869.mkv +唐渊-中国梦,http://em.21dtv.com/songs/60116676.mkv +彭小龙-中国梦,http://em.21dtv.com/songs/60115936.mkv +王丽达-中国梦,http://em.21dtv.com/songs/60109516.mkv +丁晓红-中国梦,http://em.21dtv.com/songs/60108260.mkv +钟亚华-中国梦,http://em.21dtv.com/songs/60108073.mkv +吴碧霞-中国梦,http://em.21dtv.com/songs/60107584.mkv +陈思思-中国梦,http://em.21dtv.com/songs/60105484.mkv +阿香-中国梦,http://em.21dtv.com/songs/60104532.mkv +张也-中国梦,http://em.21dtv.com/songs/60104106.mkv +庄妮-中国梦,http://em.21dtv.com/songs/60104100.mkv +张可-中国梦,http://em.21dtv.com/songs/60102205.mkv +索南扎西-中国梦,http://em.21dtv.com/songs/60099438.mkv +丁于+姚贝娜-中国梦,http://em.21dtv.com/songs/60096924.mkv +朱贝贝-中国马,http://em.21dtv.com/songs/60096923.mkv +崔力元-中国梦,http://em.21dtv.com/songs/60087134.mkv +阿温-中国美,http://em.21dtv.com/songs/60087133.mkv +蓝紫-中国梦,http://em.21dtv.com/songs/60086260.mkv +杜春梅-中国梦,http://em.21dtv.com/songs/60086259.mkv +徐子崴-中国美,http://em.21dtv.com/songs/60084575.mkv +文蓉-醉归暝,http://em.21dtv.com/songs/60079701.mkv +玖月奇迹-中国美,http://em.21dtv.com/songs/60065494.mkv +陈盈洁-醉归暝,http://em.21dtv.com/songs/60060491.mkv +王建杰-醉归暝(无原唱),http://em.21dtv.com/songs/60060490.mkv +罗文-中国梦(演唱会),http://em.21dtv.com/songs/60058902.mkv +洪立-钟鼓楼,http://em.21dtv.com/songs/60107029.mkv +查查-钟鼓楼,http://em.21dtv.com/songs/60100231.mkv +玩声乐团-朱古力,http://em.21dtv.com/songs/60099422.mkv +薛凯琪-诸葛亮,http://em.21dtv.com/songs/60084587.mkv +陈佳喆-中国龙,http://em.21dtv.com/songs/60084574.mkv +何永俊-中国龙,http://em.21dtv.com/songs/60065492.mkv +何勇-钟鼓楼,http://em.21dtv.com/songs/60059056.mkv +王亚民-中国龙,http://em.21dtv.com/songs/60058901.mkv +阿雅-照过来(无原唱),http://em.21dtv.com/songs/60057731.mkv +陈慧琳-真感觉(HD),http://em.21dtv.com/songs/10012555.mkv +新舞器-这感觉,http://em.21dtv.com/songs/60087912.mkv +黄鸿升-总冠军,http://em.21dtv.com/songs/60059825.mkv +麦穗-中国结,http://em.21dtv.com/songs/60058897.mkv +陈思思-中国结,http://em.21dtv.com/songs/60058896.mkv +陈慧琳-真感觉,http://em.21dtv.com/songs/60058124.mkv +陈慧琳-真感觉(演唱会),http://em.21dtv.com/songs/60058123.mkv +龙军-中国魂,http://em.21dtv.com/songs/60124768.mkv +李飞-中国红,http://em.21dtv.com/songs/60122873.mkv +曾敏-祖国好,http://em.21dtv.com/songs/60118644.mkv +贾争艳-中国红,http://em.21dtv.com/songs/60116257.mkv +叶俊华-中国红,http://em.21dtv.com/songs/60110910.mkv +苏永康-怎够喉,http://em.21dtv.com/songs/60079499.mkv +朱跃明-中国魂,http://em.21dtv.com/songs/60070250.mkv +龙飞-中国画,http://em.21dtv.com/songs/60067800.mkv +迟云-祖国好,http://em.21dtv.com/songs/60066616.mkv +S.H.E-中国话,http://em.21dtv.com/songs/60058891.mkv +泳儿-中国话(演唱会),http://em.21dtv.com/songs/60058890.mkv +吕薇-中国红,http://em.21dtv.com/songs/60058889.mkv +张也-中国鼓,http://em.21dtv.com/songs/60091036.mkv +卢秀梅-祖国歌,http://em.21dtv.com/songs/60060003.mkv +小香玉-中国鼓(演唱会),http://em.21dtv.com/songs/60058888.mkv +伊扬-中国根,http://em.21dtv.com/songs/60058884.mkv +蒋舟-鹧鸪飞,http://em.21dtv.com/songs/60111385.mkv +麦浚龙-真功夫,http://em.21dtv.com/songs/60093523.mkv +邵雅茜-中国风,http://em.21dtv.com/songs/60058883.mkv +童安格-中国帆,http://em.21dtv.com/songs/60058882.mkv +周澎-中国度,http://em.21dtv.com/songs/60127857.mkv +张欣奕-最高点,http://em.21dtv.com/songs/60119526.mkv +PMC给力团-中国岛,http://em.21dtv.com/songs/60093580.mkv +方琼-中国茶,http://em.21dtv.com/songs/60105933.mkv +储兰兰-中国瓷,http://em.21dtv.com/songs/60084573.mkv +胡红艳-中国茶,http://em.21dtv.com/songs/60069014.mkv +金磊鑫-中国船,http://em.21dtv.com/songs/60066597.mkv +陈思思-中国茶,http://em.21dtv.com/songs/60058868.mkv +阎维文-中国兵(演唱会),http://em.21dtv.com/songs/60058867.mkv +汪苏泷-π之歌,http://em.21dtv.com/songs/60119754.mkv +月星海-在风中,http://em.21dtv.com/songs/60096091.mkv +叶启田-中范仔,http://em.21dtv.com/songs/60058862.mkv +佚名-扎风筝,http://em.21dtv.com/songs/60057415.mkv +许云上-赵飞燕(演),http://em.21dtv.com/songs/60099494.mkv +彭丽媛-这方土,http://em.21dtv.com/songs/60057767.mkv +鞠婧祎-醉飞霜,http://em.21dtv.com/songs/60124680.mkv +任家萱-致分手,http://em.21dtv.com/songs/60109137.mkv +Selina-致分手,http://em.21dtv.com/songs/60109110.mkv +陈威男+袁惜君-紫峰情,http://em.21dtv.com/songs/60118152.mkv +佚名-这份情,http://em.21dtv.com/songs/60057773.mkv +叶倩文-这份情,http://em.21dtv.com/songs/60057772.mkv +王劭臻+刘安然-祝福您,http://em.21dtv.com/songs/60118775.mkv +李霞儿+邓雯心-祝福你,http://em.21dtv.com/songs/60112770.mkv +群星-祝福您,http://em.21dtv.com/songs/60093045.mkv +张芮嘉-祝福你,http://em.21dtv.com/songs/60079685.mkv +吴依琳-祝福你,http://em.21dtv.com/songs/60079684.mkv +刘姝辰-祝福你,http://em.21dtv.com/songs/60079683.mkv +张涛+张妍-祝福你,http://em.21dtv.com/songs/60067812.mkv +张涛-祝福你(演唱会),http://em.21dtv.com/songs/60067811.mkv +张德兰+区瑞强-祝福你,http://em.21dtv.com/songs/60059323.mkv +佚名-祝福你,http://em.21dtv.com/songs/60059322.mkv +伊扬+周艳泓-祝福你,http://em.21dtv.com/songs/60059321.mkv +群星-祝福你,http://em.21dtv.com/songs/60059320.mkv +卢薪羽-祝福你,http://em.21dtv.com/songs/60059319.mkv +陈雷-祝福你,http://em.21dtv.com/songs/60059318.mkv +戏曲-紫凤楼,http://em.21dtv.com/songs/60092736.mkv +彭炽权+林佩珍-紫凤楼(3)(戏曲),http://em.21dtv.com/songs/60092678.mkv +彭炽权+林佩珍-紫凤楼(2)(戏曲),http://em.21dtv.com/songs/60092677.mkv +彭炽权+林佩珍-紫凤楼(1)(戏曲),http://em.21dtv.com/songs/60092676.mkv +不龙-蒸发了,http://em.21dtv.com/songs/60065480.mkv +许茹芸-祝福了,http://em.21dtv.com/songs/60059315.mkv +严艺丹-纸飞机,http://em.21dtv.com/songs/60116508.mkv +邬祯琳-纸飞机,http://em.21dtv.com/songs/60084569.mkv +关东煮+MC JV-造飞机,http://em.21dtv.com/songs/60079498.mkv +谢金燕-造飞机,http://em.21dtv.com/songs/60068982.mkv +陈雷+甲子蕙-重逢酒,http://em.21dtv.com/songs/60059117.mkv +张峰奇+陈怡廷-纸飞机,http://em.21dtv.com/songs/60058767.mkv +伊扬-纸飞机,http://em.21dtv.com/songs/60058766.mkv +邰正宵-纸飞机,http://em.21dtv.com/songs/60058765.mkv +林忆莲-纸飞机,http://em.21dtv.com/songs/60058764.mkv +林忆莲-纸飞机(演唱会),http://em.21dtv.com/songs/60058763.mkv +王建杰-纸飞机(无原唱),http://em.21dtv.com/songs/60058762.mkv +唐禹哲-造飞机,http://em.21dtv.com/songs/60057323.mkv +秦影-祝福happy birhday,http://em.21dtv.com/songs/60128276.mkv +马晓晨-祝福歌,http://em.21dtv.com/songs/60134465.mkv +格桑志玛-祝福歌,http://em.21dtv.com/songs/60091506.mkv +吕继宏-丈夫歌,http://em.21dtv.com/songs/60057645.mkv +林玉英-醉风尘,http://em.21dtv.com/songs/60125790.mkv +林玉英-醉风尘,http://em.21dtv.com/songs/60124138.mkv +叶振棠-醉凡尘,http://em.21dtv.com/songs/60060487.mkv +谢金燕-纸风吹,http://em.21dtv.com/songs/60058768.mkv +Davichi-这份爱,http://em.21dtv.com/songs/60119122.mkv +曹智贤-这份爱,http://em.21dtv.com/songs/60086233.mkv +潘辰-绽放爱,http://em.21dtv.com/songs/60057530.mkv +李安娜-猪儿泪,http://em.21dtv.com/songs/60132529.mkv +A Lin-罪恶感,http://em.21dtv.com/songs/60107389.mkv +迟志强-罪恶感,http://em.21dtv.com/songs/60060467.mkv +葛小虎-展旦召,http://em.21dtv.com/songs/60119935.mkv +蔡秋凤+吴俊宏-终点站,http://em.21dtv.com/songs/60079660.mkv +谢霆锋-终点站,http://em.21dtv.com/songs/60059012.mkv +毛泽少+简红-自定义,http://em.21dtv.com/songs/60112820.mkv +庄学忠-紫丁香,http://em.21dtv.com/songs/60059643.mkv +佚名-紫丁香,http://em.21dtv.com/songs/60059642.mkv +周杰伦+杜国璋-周大侠,http://em.21dtv.com/songs/60059178.mkv +柯智棠-找到我,http://em.21dtv.com/songs/60116057.mkv +陈嘉桦-真的我,http://em.21dtv.com/songs/60106384.mkv +毛宁-真的我,http://em.21dtv.com/songs/60092951.mkv +蓝又时-最懂我,http://em.21dtv.com/songs/60060134.mkv +李明洋+杨静-咱的天(无原唱),http://em.21dtv.com/songs/60095620.mkv +张燕清+陈淑萍-咱的天,http://em.21dtv.com/songs/60070221.mkv +房祖名-最动听,http://em.21dtv.com/songs/60060135.mkv +阎琰-猪大帅,http://em.21dtv.com/songs/60066603.mkv +刘允乐-真歹势,http://em.21dtv.com/songs/60058077.mkv +施文彬-转大人,http://em.21dtv.com/songs/60105937.mkv +卫东-醉当年,http://em.21dtv.com/songs/60094018.mkv +郎A-追到你,http://em.21dtv.com/songs/60067816.mkv +2MORO-找到你,http://em.21dtv.com/songs/60057669.mkv +来吧!焙焙!-真的吗,http://em.21dtv.com/songs/60107808.mkv +萧敬腾+刘锦泽-真的吗,http://em.21dtv.com/songs/60094663.mkv +莫文蔚-真的吗,http://em.21dtv.com/songs/60058103.mkv +小肥-找到了,http://em.21dtv.com/songs/60125436.mkv +郑锦昌-做打令,http://em.21dtv.com/songs/60060697.mkv +陈歌华-竹斗笠,http://em.21dtv.com/songs/60059232.mkv +YOUNG PEACH-走到黑,http://em.21dtv.com/songs/60086280.mkv +吴涤清-证道歌,http://em.21dtv.com/songs/60072806.mkv +罗志祥-做得到,http://em.21dtv.com/songs/60060698.mkv +蔡小虎+王瑞霞-醉到底,http://em.21dtv.com/songs/60060485.mkv +李慧珍-在等待,http://em.21dtv.com/songs/60057043.mkv +李慧珍+韩红-在等待(演唱会),http://em.21dtv.com/songs/60057042.mkv +陈冰-战斗吧,http://em.21dtv.com/songs/60106383.mkv +火风-子弟兵,http://em.21dtv.com/songs/60059612.mkv +陈慧琳-主打爱(演唱会),http://em.21dtv.com/songs/60059257.mkv +黎明+应昌佑+杜文泽-值得爱,http://em.21dtv.com/songs/60058752.mkv +李克勤-这段爱(演唱会),http://em.21dtv.com/songs/60057766.mkv +覃春江-走草原,http://em.21dtv.com/songs/60132877.mkv +张冬玲-醉草原,http://em.21dtv.com/songs/60125494.mkv +蒋小涵-长城谣,http://em.21dtv.com/songs/60090196.mkv +德德玛-致草原,http://em.21dtv.com/songs/60058835.mkv +温清松-咱厝兄,http://em.21dtv.com/songs/60112084.mkv +吴佳展-早晨信(无原唱),http://em.21dtv.com/songs/60057301.mkv +孟文豪-找车位,http://em.21dtv.com/songs/60086230.mkv +严艺丹-醉城伤,http://em.21dtv.com/songs/60116509.mkv +王中龙-咱厝人(演唱会),http://em.21dtv.com/songs/60079492.mkv +许志安-昨迟人(演唱会),http://em.21dtv.com/songs/60060562.mkv +苏永康+许志安-昨迟人(演唱会),http://em.21dtv.com/songs/60060561.mkv +石头-醉春秋,http://em.21dtv.com/songs/60112133.mkv +邓容+李炜鹏-在从前,http://em.21dtv.com/songs/60086208.mkv +黄耀明-早餐派,http://em.21dtv.com/songs/60057295.mkv +牛欣欣-招财猫,http://em.21dtv.com/songs/60079534.mkv +周享嘉-找出路,http://em.21dtv.com/songs/60070231.mkv +雾影-紫川录,http://em.21dtv.com/songs/60059641.mkv +草蜢-站出来,http://em.21dtv.com/songs/60057503.mkv +韩磊+潘倩倩-在此刻,http://em.21dtv.com/songs/60133077.mkv +韩磊-在此刻,http://em.21dtv.com/songs/60133073.mkv +胡歌+王凯-在此刻,http://em.21dtv.com/songs/60132819.mkv +黄大炜-在此刻,http://em.21dtv.com/songs/60132012.mkv +韩磊-在此刻,http://em.21dtv.com/songs/60120126.mkv +郭静-致纯静,http://em.21dtv.com/songs/60107281.mkv +郑少秋+汪明荃-紫钗恨,http://em.21dtv.com/songs/60059628.mkv +佚名-紫钗恨,http://em.21dtv.com/songs/60059627.mkv +郑志勇-郑成功,http://em.21dtv.com/songs/60127469.mkv +郑希怡-早操歌,http://em.21dtv.com/songs/60057297.mkv +郑希怡-早操歌(演唱会),http://em.21dtv.com/songs/60057296.mkv +金学峰-醉春风,http://em.21dtv.com/songs/60079825.mkv +任贤齐+阿牛-再出发,http://em.21dtv.com/songs/60056739.mkv +周传雄-再出发(演唱会),http://em.21dtv.com/songs/60056738.mkv +蔡义德+张蓉蓉-粘朝朝,http://em.21dtv.com/songs/60062244.mkv +阿翁-坐错车,http://em.21dtv.com/songs/60060680.mkv +林俊杰-醉赤壁,http://em.21dtv.com/songs/60060484.mkv +王飞跃+陈熙恩-醉长安,http://em.21dtv.com/songs/60060551.mkv +柯泯薰-指北针,http://em.21dtv.com/songs/60124148.mkv +常定晨-自闭症,http://em.21dtv.com/songs/60079720.mkv +李克勤-珍宝珠(演唱会),http://em.21dtv.com/songs/60079562.mkv +谭咏麟-知不知,http://em.21dtv.com/songs/60058638.mkv +胡兵-真本色,http://em.21dtv.com/songs/60091893.mkv +洪敬尧-枕边书(无原唱),http://em.21dtv.com/songs/60058287.mkv +张栋梁-钟摆人,http://em.21dtv.com/songs/60129092.mkv +陈慧琳-这班人,http://em.21dtv.com/songs/60057749.mkv +童唱-织布娘,http://em.21dtv.com/songs/60058694.mkv +张燊悦-怎暴露,http://em.21dtv.com/songs/60092643.mkv +牛雨霖-这杯酒,http://em.21dtv.com/songs/60080244.mkv +陈振云+云菲菲-这杯酒,http://em.21dtv.com/songs/60057751.mkv +张杰-最悲歌,http://em.21dtv.com/songs/60060121.mkv +陶晶莹-最悲歌,http://em.21dtv.com/songs/60060120.mkv +汤非-走边防,http://em.21dtv.com/songs/60133923.mkv +夷光-捉蝙蝠,http://em.21dtv.com/songs/60092495.mkv +夷光-抓蝙蝠,http://em.21dtv.com/songs/60089764.mkv +安又琪-抓不到,http://em.21dtv.com/songs/60116723.mkv +周国贤-长不大,http://em.21dtv.com/songs/60092472.mkv +庾澄庆-做不到(无原唱),http://em.21dtv.com/songs/60060695.mkv +张学友-走不掉,http://em.21dtv.com/songs/60059860.mkv +张学友-走不掉(演唱会),http://em.21dtv.com/songs/60059859.mkv +杨丞琳-找不到,http://em.21dtv.com/songs/60057661.mkv +S.H.E-找不到,http://em.21dtv.com/songs/60057660.mkv +吴雨霏-长不大,http://em.21dtv.com/songs/60057556.mkv +许巍-在别处(演唱会),http://em.21dtv.com/songs/60057038.mkv +童唱-找爸爸,http://em.21dtv.com/songs/60057659.mkv +钟舒漫-扎孖辫,http://em.21dtv.com/songs/60122202.mkv +棉花糖-转啊转,http://em.21dtv.com/songs/60107845.mkv +陈艺鹏-长安游,http://em.21dtv.com/songs/60096926.mkv +张羿凡-致爱人,http://em.21dtv.com/songs/60132463.mkv +张羿凡-致爱人,http://em.21dtv.com/songs/60130334.mkv +卢庚戌-致爱人,http://em.21dtv.com/songs/60128861.mkv +阿悄-致爱人,http://em.21dtv.com/songs/60120059.mkv +孙晓雨-致爱人,http://em.21dtv.com/songs/60103200.mkv +阿悄-致爱人,http://em.21dtv.com/songs/60100545.mkv +刘尊-致爱人,http://em.21dtv.com/songs/60058834.mkv +李晓玉+许嘉文-致爱情,http://em.21dtv.com/songs/60110279.mkv +陈淑萍-真爱你,http://em.21dtv.com/songs/60119018.mkv +郑嘉颖-只爱你,http://em.21dtv.com/songs/60058387.mkv +张芸京-只爱你,http://em.21dtv.com/songs/60058386.mkv +蔡葵+刘婕-再爱你,http://em.21dtv.com/songs/60056714.mkv +黄品冠-张爱玲(演唱会),http://em.21dtv.com/songs/60057533.mkv +堂娜-在爱里,http://em.21dtv.com/songs/60057028.mkv +都智文-追爱记,http://em.21dtv.com/songs/60116301.mkv +佩希-致阿姐,http://em.21dtv.com/songs/60099752.mkv +于台烟-真爱过,http://em.21dtv.com/songs/60061887.mkv +5566-挚爱boyfriend,http://em.21dtv.com/songs/60058833.mkv +郭美美-一直走,http://em.21dtv.com/songs/60134333.mkv +邓丽欣-一直追,http://em.21dtv.com/songs/60108910.mkv +张婧-一直走,http://em.21dtv.com/songs/60053927.mkv +陈文媛-野种子,http://em.21dtv.com/songs/60052501.mkv +谢雷-云中烟,http://em.21dtv.com/songs/60134231.mkv +孟杨+谢峥-胭脂叶,http://em.21dtv.com/songs/60132373.mkv +孙楠-夜在摇,http://em.21dtv.com/songs/60131326.mkv +田维英-一转眼,http://em.21dtv.com/songs/60123033.mkv +唐俪-一字缘,http://em.21dtv.com/songs/60111780.mkv +韩磊-游子吟,http://em.21dtv.com/songs/60109012.mkv +游子组合-游子吟,http://em.21dtv.com/songs/60107887.mkv +刘伟德-一转眼,http://em.21dtv.com/songs/60105630.mkv +王涛+赵宇-有只鱼,http://em.21dtv.com/songs/60094998.mkv +戏曲-玉簪怨,http://em.21dtv.com/songs/60092735.mkv +雨露-云之雨,http://em.21dtv.com/songs/60087092.mkv +李斯丹妮-又怎样,http://em.21dtv.com/songs/60084457.mkv +陈建-游子吟,http://em.21dtv.com/songs/60084435.mkv +李斯丹妮-以怎样,http://em.21dtv.com/songs/60084390.mkv +旭佳非-云遮月,http://em.21dtv.com/songs/60079444.mkv +林俊逸-游子吟,http://em.21dtv.com/songs/60079267.mkv +刘瀚升-胭脂月,http://em.21dtv.com/songs/60072683.mkv +谭晶-游子吟,http://em.21dtv.com/songs/60068939.mkv +佚名-云中月,http://em.21dtv.com/songs/60056682.mkv +龙千玉+蔡小虎-云罩月,http://em.21dtv.com/songs/60056679.mkv +张蓉蓉-月中圆,http://em.21dtv.com/songs/60056566.mkv +佚名-欲怎样,http://em.21dtv.com/songs/60055829.mkv +TWINS-幼稚园,http://em.21dtv.com/songs/60055485.mkv +TWINS-幼稚园(演唱会),http://em.21dtv.com/songs/60055484.mkv +佚名-游子吟,http://em.21dtv.com/songs/60055047.mkv +童唱-游子吟,http://em.21dtv.com/songs/60055046.mkv +李逸-游子吟,http://em.21dtv.com/songs/60055045.mkv +李茂山-游子吟,http://em.21dtv.com/songs/60055044.mkv +成方圆-游子吟,http://em.21dtv.com/songs/60055043.mkv +林一峰-游子意,http://em.21dtv.com/songs/60055042.mkv +邓丽欣-一眨眼,http://em.21dtv.com/songs/60053858.mkv +荔枝-胭脂雨,http://em.21dtv.com/songs/60051935.mkv +乔军-扬州行,http://em.21dtv.com/songs/60079021.mkv +张蓉蓉-胭脂味,http://em.21dtv.com/songs/60135238.mkv +林峰-幼稚完(演唱会),http://em.21dtv.com/songs/60079316.mkv +林峰+邓智伟-幼稚完(演唱会),http://em.21dtv.com/songs/60079315.mkv +林峰-幼稚完,http://em.21dtv.com/songs/60071462.mkv +杜德伟-影子舞,http://em.21dtv.com/songs/60054544.mkv +佚名-一只蚊,http://em.21dtv.com/songs/60053890.mkv +林子祥-一只蚊,http://em.21dtv.com/songs/60053889.mkv +馨梓-月中天,http://em.21dtv.com/songs/60056565.mkv +张立基-月在跳,http://em.21dtv.com/songs/60056562.mkv +李菓+储兰兰-油纸伞,http://em.21dtv.com/songs/60130442.mkv +孙楠-勇者胜,http://em.21dtv.com/songs/60112625.mkv +单色凌+李倩-余妆绕,http://em.21dtv.com/songs/60120390.mkv +牛奶咖啡-忆中人,http://em.21dtv.com/songs/60117021.mkv +许文科-游子情,http://em.21dtv.com/songs/60119968.mkv +黄妃+叶胜钦-雨中情,http://em.21dtv.com/songs/60102967.mkv +甜宝儿-雨中情,http://em.21dtv.com/songs/60086175.mkv +曾玲-雨遮情,http://em.21dtv.com/songs/60081813.mkv +尹光-一支枪(演唱会),http://em.21dtv.com/songs/60061829.mkv +张蓉蓉-雨中情,http://em.21dtv.com/songs/60055765.mkv +余天-游子情,http://em.21dtv.com/songs/60055041.mkv +邵伟轩+王小挺-野战排,http://em.21dtv.com/songs/60079054.mkv +戚薇-胭脂畔,http://em.21dtv.com/songs/60061797.mkv +陈小云-雨中鸟,http://em.21dtv.com/songs/60055762.mkv +潘晓峰-英孜那,http://em.21dtv.com/songs/60054448.mkv +那森-英孜那,http://em.21dtv.com/songs/60054447.mkv +周笔畅-一周年,http://em.21dtv.com/songs/60053936.mkv +方力申-一周年,http://em.21dtv.com/songs/60053935.mkv +云菲菲-一枝梅,http://em.21dtv.com/songs/60126582.mkv +李琦-一只猫,http://em.21dtv.com/songs/60107792.mkv +阿香-胭脂梦,http://em.21dtv.com/songs/60086081.mkv +王若希-亚洲美,http://em.21dtv.com/songs/60086079.mkv +张凤凤-一枝梅,http://em.21dtv.com/songs/60053896.mkv +吴淑敏-胭脂梦,http://em.21dtv.com/songs/60051932.mkv +闲狐-胭脂泪,http://em.21dtv.com/songs/60111471.mkv +谢莉婷-雨中泪,http://em.21dtv.com/songs/60107226.mkv +孙思怡-胭脂冷,http://em.21dtv.com/songs/60100836.mkv +成于申-胭脂泪,http://em.21dtv.com/songs/60098391.mkv +泽朗多吉-羊卓啦,http://em.21dtv.com/songs/60089402.mkv +童安格-鹰之恋,http://em.21dtv.com/songs/60088381.mkv +袁小迪+龙千玉-胭脂泪,http://em.21dtv.com/songs/60086080.mkv +冯瑞萍-叶之恋,http://em.21dtv.com/songs/60084335.mkv +黄华丽-月之恋(演唱会),http://em.21dtv.com/songs/60079429.mkv +任静+付笛声-雨中恋,http://em.21dtv.com/songs/60079347.mkv +何龙雨-雨中泪,http://em.21dtv.com/songs/60079346.mkv +胡杰夕-叶之恋,http://em.21dtv.com/songs/60066513.mkv +西单女孩-月之恋,http://em.21dtv.com/songs/60063136.mkv +刘依纯-胭脂泪,http://em.21dtv.com/songs/60062682.mkv +李光-野猪林,http://em.21dtv.com/songs/60052503.mkv +李光+沈健瑾-野猪林,http://em.21dtv.com/songs/60052502.mkv +老K-羊卓啦,http://em.21dtv.com/songs/60052158.mkv +佚名-沿竹林,http://em.21dtv.com/songs/60052026.mkv +安迪-胭脂路,http://em.21dtv.com/songs/60051930.mkv +罗永娟-胭脂泪,http://em.21dtv.com/songs/60051929.mkv +邓丽君-胭脂泪,http://em.21dtv.com/songs/60051928.mkv +章子清-胭脂扣,http://em.21dtv.com/songs/60124326.mkv +陈奕迅-胭脂扣,http://em.21dtv.com/songs/60097057.mkv +孙异-胭脂扣,http://em.21dtv.com/songs/60051927.mkv +梅艳芳-胭脂扣,http://em.21dtv.com/songs/60051926.mkv +张伟文-胭脂扣(演唱会),http://em.21dtv.com/songs/60051925.mkv +梅艳芳-胭脂扣(演唱会),http://em.21dtv.com/songs/60051924.mkv +黎田康子-雨中景,http://em.21dtv.com/songs/60055758.mkv +陈予新-要再见,http://em.21dtv.com/songs/60052400.mkv +曾小萍-胭脂酒(无原唱),http://em.21dtv.com/songs/60051923.mkv +蔡秋凤-胭脂花,http://em.21dtv.com/songs/60095922.mkv +李明依-圆仔花,http://em.21dtv.com/songs/60056048.mkv +郑少秋-游子恨,http://em.21dtv.com/songs/60055039.mkv +彭羚-一枝花,http://em.21dtv.com/songs/60053895.mkv +张蓉蓉-夜总会,http://em.21dtv.com/songs/60052708.mkv +大哲-夜总会,http://em.21dtv.com/songs/60052707.mkv +张迈-胭脂红,http://em.21dtv.com/songs/60051922.mkv +严爵-一直给,http://em.21dtv.com/songs/60113221.mkv +民歌-雁之歌,http://em.21dtv.com/songs/60091563.mkv +曾赛英-狱中歌,http://em.21dtv.com/songs/60081816.mkv +刘雪微-燕子归,http://em.21dtv.com/songs/60079020.mkv +童唱-摇子歌,http://em.21dtv.com/songs/60052301.mkv +徐伟贤-演奏给,http://em.21dtv.com/songs/60052113.mkv +蓝波-迎着风,http://em.21dtv.com/songs/60135696.mkv +格子兮+潘成-云之凡,http://em.21dtv.com/songs/60118726.mkv +侯玉斌-叶子飞,http://em.21dtv.com/songs/60118348.mkv +云飞-云在飞,http://em.21dtv.com/songs/60114383.mkv +云飞+郭津彤-云在飞,http://em.21dtv.com/songs/60113239.mkv +云飞-云在飞,http://em.21dtv.com/songs/60110831.mkv +孙莞-一阵风,http://em.21dtv.com/songs/60105753.mkv +张学友-原罪犯,http://em.21dtv.com/songs/60056029.mkv +王颖-宇宙峰,http://em.21dtv.com/songs/60055613.mkv +ENERGY-鹰在飞,http://em.21dtv.com/songs/60054483.mkv +乱弹阿翔-一阵风,http://em.21dtv.com/songs/60053864.mkv +三多-雨中蝶,http://em.21dtv.com/songs/60120270.mkv +阿轮-雨中蝶,http://em.21dtv.com/songs/60067740.mkv +佚名-椅子调,http://em.21dtv.com/songs/60054098.mkv +方皓玟-胭脂斗,http://em.21dtv.com/songs/60051921.mkv +周子扬-宇宙船,http://em.21dtv.com/songs/60092474.mkv +王秀琳-有种爱,http://em.21dtv.com/songs/60055412.mkv +尹熙水-一阳指,http://em.21dtv.com/songs/60131370.mkv +王爽-月影醉,http://em.21dtv.com/songs/60091723.mkv +徐小凤-夜雨中,http://em.21dtv.com/songs/60087879.mkv +张信哲-忧郁症,http://em.21dtv.com/songs/60054958.mkv +般罗-一夜醉,http://em.21dtv.com/songs/60053846.mkv +五月天-伊呀呀,http://em.21dtv.com/songs/60089114.mkv +司文-摇一摇,http://em.21dtv.com/songs/60084327.mkv +梅东生+简语卉-摇摇摇,http://em.21dtv.com/songs/60084326.mkv +黑龙-摇一摇,http://em.21dtv.com/songs/60079037.mkv +阿轮-鸳鸯衣,http://em.21dtv.com/songs/60072762.mkv +黑龙-摇一摇(舞曲版),http://em.21dtv.com/songs/60072689.mkv +T ARA-yayaya,http://em.21dtv.com/songs/60063811.mkv +办桌阿杰+王羚柔-月圆圆,http://em.21dtv.com/songs/60062224.mkv +李梅-圆圆月,http://em.21dtv.com/songs/60056043.mkv +谢军-又一夜,http://em.21dtv.com/songs/60055476.mkv +石头-咿呀呀,http://em.21dtv.com/songs/60054022.mkv +黎明-夜摇遥,http://em.21dtv.com/songs/60052670.mkv +佚名-摇摇摇,http://em.21dtv.com/songs/60052299.mkv +王泽龙-摇呀摇,http://em.21dtv.com/songs/60052291.mkv +黎明-ya ya ya(演唱会),http://em.21dtv.com/songs/60006444.mkv +徐紫淇-一夜香,http://em.21dtv.com/songs/60121703.mkv +安苡葳+叶胜钦-姻缘线,http://em.21dtv.com/songs/60118517.mkv +一绫+李明洋-姻缘线,http://em.21dtv.com/songs/60116492.mkv +乔幼-鸳鸯溪,http://em.21dtv.com/songs/60108272.mkv +OKL48-永远より続くように,http://em.21dtv.com/songs/60079239.mkv +吴淑敏-鸳鸯线,http://em.21dtv.com/songs/60061855.mkv +佚名-鹰与星,http://em.21dtv.com/songs/60054482.mkv +林忆莲-鹰与星,http://em.21dtv.com/songs/60054481.mkv +林忆莲-鹰与星(演唱会),http://em.21dtv.com/songs/60054480.mkv +李泽雅-姻缘线,http://em.21dtv.com/songs/60054335.mkv +金瀚-缘因我,http://em.21dtv.com/songs/60131911.mkv +阿勇-月牙湾,http://em.21dtv.com/songs/60086194.mkv +F.I.R-月牙湾,http://em.21dtv.com/songs/60056517.mkv +叶启田-有影无,http://em.21dtv.com/songs/60055385.mkv +陈雷-有影无,http://em.21dtv.com/songs/60055384.mkv +初晨-阴雨天,http://em.21dtv.com/songs/60130130.mkv +Gary+Gaeko-又一天,http://em.21dtv.com/songs/60119144.mkv +林萍-艳阳天,http://em.21dtv.com/songs/60088126.mkv +窦唯-艳阳天,http://em.21dtv.com/songs/60087030.mkv +游艺湉-有一天,http://em.21dtv.com/songs/60079301.mkv +佚名-月夜叹,http://em.21dtv.com/songs/60056534.mkv +袁哲-鸳鸯叹,http://em.21dtv.com/songs/60055897.mkv +钟嘉欣-有一天,http://em.21dtv.com/songs/60055367.mkv +张震岳-有一天,http://em.21dtv.com/songs/60055366.mkv +江美琪-有一天,http://em.21dtv.com/songs/60055365.mkv +心微-有一天(无原唱),http://em.21dtv.com/songs/60055364.mkv +佚名-野丫头,http://em.21dtv.com/songs/60052499.mkv +张韶涵-摇摇头,http://em.21dtv.com/songs/60052298.mkv +芭比-摇摇头,http://em.21dtv.com/songs/60052297.mkv +刘晓庆-艳阳天(演唱会),http://em.21dtv.com/songs/60052120.mkv +侯旭-义勇颂,http://em.21dtv.com/songs/60122491.mkv +张涵雅-鸳鸯散,http://em.21dtv.com/songs/60113484.mkv +任栩麟-月夜思,http://em.21dtv.com/songs/60109140.mkv +张敬轩-预言书,http://em.21dtv.com/songs/60092617.mkv +外国民歌-圆14,http://em.21dtv.com/songs/60089223.mkv +黄西田-游夜市,http://em.21dtv.com/songs/60080787.mkv +张榜强-姻缘石,http://em.21dtv.com/songs/60079201.mkv +罗时丰-月圆时,http://em.21dtv.com/songs/60056556.mkv +关智斌-预言书,http://em.21dtv.com/songs/60055815.mkv +刘德华-永远是,http://em.21dtv.com/songs/60054776.mkv +中坚份子-一样傻(无原唱),http://em.21dtv.com/songs/60053824.mkv +许冠杰-夜雨声,http://em.21dtv.com/songs/60052696.mkv +许冠杰-夜雨声(演唱会),http://em.21dtv.com/songs/60052695.mkv +徐子崴-有缘人,http://em.21dtv.com/songs/60055394.mkv +陈慧珊-有缘人,http://em.21dtv.com/songs/60055393.mkv +蔡丽津+王中平-月圆情,http://em.21dtv.com/songs/60134196.mkv +唐俪-鸳鸯情,http://em.21dtv.com/songs/60120419.mkv +袁娅维-月牙泉,http://em.21dtv.com/songs/60118029.mkv +白若溪-月牙泉,http://em.21dtv.com/songs/60117096.mkv +苏玮-月牙泉,http://em.21dtv.com/songs/60108843.mkv +叶停雨-一夜晴,http://em.21dtv.com/songs/60096891.mkv +姚志强-月圆曲,http://em.21dtv.com/songs/60087634.mkv +良一-一夜情,http://em.21dtv.com/songs/60065357.mkv +许哲佩-游泳圈,http://em.21dtv.com/songs/60061842.mkv +曾桂英-月有情,http://em.21dtv.com/songs/60056540.mkv +佚名-月有情(无原唱),http://em.21dtv.com/songs/60056539.mkv +佚名-月夜情,http://em.21dtv.com/songs/60056531.mkv +田震-月牙泉(演唱会),http://em.21dtv.com/songs/60056516.mkv +张惠妹-一夜情,http://em.21dtv.com/songs/60053835.mkv +佚名-一夜情,http://em.21dtv.com/songs/60053834.mkv +费翔-一夜情,http://em.21dtv.com/songs/60053833.mkv +周永恒-一夜前,http://em.21dtv.com/songs/60053830.mkv +佚名-夜莺曲,http://em.21dtv.com/songs/60052691.mkv +陆正信-鸳鸯鸟,http://em.21dtv.com/songs/60100560.mkv +苍井空-咬咬你,http://em.21dtv.com/songs/60093733.mkv +宋光军-鸳鸯梦,http://em.21dtv.com/songs/60070195.mkv +谭圳-岳阳美,http://em.21dtv.com/songs/60062984.mkv +陈盈洁-月夜冥,http://em.21dtv.com/songs/60056529.mkv +朱海君-鸳鸯梦,http://em.21dtv.com/songs/60055891.mkv +佚名-鸳鸯梦,http://em.21dtv.com/songs/60055890.mkv +陈雷-有影美,http://em.21dtv.com/songs/60055383.mkv +蔡小虎-夜夜梦,http://em.21dtv.com/songs/60052676.mkv +林姗-鸳鸯泪,http://em.21dtv.com/songs/60131545.mkv +陈魁+袁仪方-烟雨楼,http://em.21dtv.com/songs/60124663.mkv +朱敏+蒋小雪-鸳鸯泪,http://em.21dtv.com/songs/60109413.mkv +陈瑞+小多-鸳鸯泪,http://em.21dtv.com/songs/60107336.mkv +翁立友-鸳鸯路,http://em.21dtv.com/songs/60079363.mkv +郎A-羊与狼,http://em.21dtv.com/songs/60067688.mkv +张卫健-月圆了,http://em.21dtv.com/songs/60063393.mkv +陈瑞-烟雨楼,http://em.21dtv.com/songs/60062268.mkv +庞龙-圆月亮,http://em.21dtv.com/songs/60056044.mkv +刘尊-遥远路,http://em.21dtv.com/songs/60052342.mkv +陈梦晨-咬一口,http://em.21dtv.com/songs/60111487.mkv +T.I.-yeah ya know,http://em.21dtv.com/songs/60063812.mkv +苗小青-阴阳极,http://em.21dtv.com/songs/60134176.mkv +幂雅-预言家,http://em.21dtv.com/songs/60131383.mkv +李佑晨-粤游记,http://em.21dtv.com/songs/60105133.mkv +李丽霞+张伟文-鸳鸯江,http://em.21dtv.com/songs/60092777.mkv +郑锦昌-鸳鸯江(演唱会),http://em.21dtv.com/songs/60084472.mkv +叶欢-鸳鸯锦,http://em.21dtv.com/songs/60055886.mkv +郑锦昌-鸳鸯江,http://em.21dtv.com/songs/60055885.mkv +陈浩德-鸳鸯江(演唱会),http://em.21dtv.com/songs/60055884.mkv +佚名-游夜街,http://em.21dtv.com/songs/60055028.mkv +大嘴巴-一一九,http://em.21dtv.com/songs/60053850.mkv +周杰伦-游圆会,http://em.21dtv.com/songs/60089742.mkv +文香-雨夜花,http://em.21dtv.com/songs/60079723.mkv +周杰伦-园游会,http://em.21dtv.com/songs/60055911.mkv +F.I.R-雨樱花(演唱会),http://em.21dtv.com/songs/60055739.mkv +秀兰玛雅-雨夜花,http://em.21dtv.com/songs/60055730.mkv +林玉英-雨夜花,http://em.21dtv.com/songs/60055729.mkv +李碧华-雨夜花,http://em.21dtv.com/songs/60055728.mkv +郭桂彬-雨夜花,http://em.21dtv.com/songs/60055727.mkv +邓丽君-雨夜花,http://em.21dtv.com/songs/60055726.mkv +罗大佑+伍佰-雨夜花(演唱会),http://em.21dtv.com/songs/60055725.mkv +周杰伦-游园会,http://em.21dtv.com/songs/60055034.mkv +黄安-样样红,http://em.21dtv.com/songs/60052235.mkv +佚名-样样红(恰恰),http://em.21dtv.com/songs/60052234.mkv +丁小倩-样样好,http://em.21dtv.com/songs/60052233.mkv +李阿峰-烟雨阁,http://em.21dtv.com/songs/60129248.mkv +赵羽-月圆歌,http://em.21dtv.com/songs/60126236.mkv +李蕴-拥有过,http://em.21dtv.com/songs/60079234.mkv +姜孝萌-烟雨阁(演唱会),http://em.21dtv.com/songs/60071397.mkv +赵炳文-有阳光(无原唱),http://em.21dtv.com/songs/60055351.mkv +宋祖英-摇摇歌,http://em.21dtv.com/songs/60052295.mkv +张凡凡-悠悠风,http://em.21dtv.com/songs/60127967.mkv +陈幸子+田跃君-鸳鸯飞,http://em.21dtv.com/songs/60068954.mkv +伊扬-一夜风,http://em.21dtv.com/songs/60053829.mkv +G.Soul-远远的,http://em.21dtv.com/songs/60134678.mkv +TWICE-优雅地,http://em.21dtv.com/songs/60115643.mkv +冯曦妤-遥远的,http://em.21dtv.com/songs/60052317.mkv +刘炫颉-艳阳春,http://em.21dtv.com/songs/60081354.mkv +洪卓立-一夜城,http://em.21dtv.com/songs/60061828.mkv +佚名-月夜愁,http://em.21dtv.com/songs/60056526.mkv +陈淑桦-月夜愁,http://em.21dtv.com/songs/60056525.mkv +蔡幸娟-月夜愁,http://em.21dtv.com/songs/60056524.mkv +袁小迪+林姗-鸳鸯被,http://em.21dtv.com/songs/60067746.mkv +王美蓉-饮一杯,http://em.21dtv.com/songs/60054377.mkv +洪文斌-饮一杯,http://em.21dtv.com/songs/60054376.mkv +雷启飞-摇摇爱,http://em.21dtv.com/songs/60135968.mkv +扎雪-摇摇爱,http://em.21dtv.com/songs/60135301.mkv +张龙珍-摇摇爱,http://em.21dtv.com/songs/60130343.mkv +李冰冰-遥远爱,http://em.21dtv.com/songs/60052316.mkv +高正洋-一笑中,http://em.21dtv.com/songs/60102947.mkv +刘思涵-侥幸者,http://em.21dtv.com/songs/60101278.mkv +孙楠-也许在,http://em.21dtv.com/songs/60087036.mkv +姚贝娜-也许在,http://em.21dtv.com/songs/60081556.mkv +欧汉声-一下子,http://em.21dtv.com/songs/60080632.mkv +黎明-雨心知,http://em.21dtv.com/songs/60055715.mkv +天籁天-月下吟,http://em.21dtv.com/songs/60126751.mkv +黄初用-颜小雨,http://em.21dtv.com/songs/60109774.mkv +刘珂矣-一袖云,http://em.21dtv.com/songs/60107539.mkv +彝人制造+曲比阿乌-彝乡谣,http://em.21dtv.com/songs/60065362.mkv +佚名-元宵夜,http://em.21dtv.com/songs/60055909.mkv +杨钰莹-元宵夜,http://em.21dtv.com/songs/60055908.mkv +黎明-永相依(演唱会),http://em.21dtv.com/songs/60054650.mkv +黄名伟-英雄愿,http://em.21dtv.com/songs/60054442.mkv +芊芳-友孝心,http://em.21dtv.com/songs/60135655.mkv +王翔-英雄叙,http://em.21dtv.com/songs/60118789.mkv +许嵩-又小雪,http://em.21dtv.com/songs/60063221.mkv +同恩-一下下,http://em.21dtv.com/songs/60053775.mkv +屠洪纲-用心听,http://em.21dtv.com/songs/60054925.mkv +范逸臣-用心听,http://em.21dtv.com/songs/60054924.mkv +杰歌-永相随,http://em.21dtv.com/songs/60132595.mkv +陈粒-隐形兽,http://em.21dtv.com/songs/60124649.mkv +俞灏明-愚先生,http://em.21dtv.com/songs/60118355.mkv +征服-月相思,http://em.21dtv.com/songs/60117752.mkv +张可儿-羊先生,http://em.21dtv.com/songs/60108490.mkv +陈楚生-英雄杀,http://em.21dtv.com/songs/60065372.mkv +王识贤-云潇洒,http://em.21dtv.com/songs/60056676.mkv +秀兰玛雅-云相思,http://em.21dtv.com/songs/60056675.mkv +阎维文-英雄颂,http://em.21dtv.com/songs/60054438.mkv +古巨基-有心人,http://em.21dtv.com/songs/60134982.mkv +李健-异乡人,http://em.21dtv.com/songs/60133789.mkv +吴若希-诱心人,http://em.21dtv.com/songs/60130187.mkv +吴若希-诱心人,http://em.21dtv.com/songs/60126703.mkv +邓紫棋-有心人,http://em.21dtv.com/songs/60120992.mkv +任韵淇-有些人,http://em.21dtv.com/songs/60118323.mkv +张磊-异乡人,http://em.21dtv.com/songs/60115160.mkv +Bobby Kim-异乡人,http://em.21dtv.com/songs/60103010.mkv +黄宥杰-影形人,http://em.21dtv.com/songs/60100673.mkv +袁成杰-隐形人,http://em.21dtv.com/songs/60072731.mkv +费玉清-原乡人,http://em.21dtv.com/songs/60056022.mkv +邓丽君-原乡人,http://em.21dtv.com/songs/60056021.mkv +陈红-原乡人(演唱会),http://em.21dtv.com/songs/60056020.mkv +王浩信-诱心人,http://em.21dtv.com/songs/60055493.mkv +郑希怡-有心人,http://em.21dtv.com/songs/60055346.mkv +张国荣-有心人,http://em.21dtv.com/songs/60055345.mkv +尤雅-有心人,http://em.21dtv.com/songs/60055344.mkv +伦永亮+梅艳芳-有心人,http://em.21dtv.com/songs/60055343.mkv +郑希怡-有心人(演唱会),http://em.21dtv.com/songs/60055342.mkv +张国荣-有心人(演唱会),http://em.21dtv.com/songs/60055341.mkv +孙燕姿-隐形人,http://em.21dtv.com/songs/60054388.mkv +陈司翰-隐形人,http://em.21dtv.com/songs/60054387.mkv +李健-异乡人,http://em.21dtv.com/songs/60054156.mkv +艾敬-异乡人(演唱会),http://em.21dtv.com/songs/60054155.mkv +成凤-异乡人(无原唱),http://em.21dtv.com/songs/60054154.mkv +艾敬-异乡人(无原唱),http://em.21dtv.com/songs/60054153.mkv +林忆莲-夜行人,http://em.21dtv.com/songs/60052573.mkv +木子烁-忧心曲,http://em.21dtv.com/songs/60116880.mkv +柯汶-有效期,http://em.21dtv.com/songs/60068943.mkv +蔡健雅-优先权(演唱会),http://em.21dtv.com/songs/60054940.mkv +叶民志-赢新钱(无原唱),http://em.21dtv.com/songs/60054530.mkv +于台烟-异乡情,http://em.21dtv.com/songs/60054150.mkv +洪百慧-异乡情,http://em.21dtv.com/songs/60054149.mkv +蔡淳佳-异想派,http://em.21dtv.com/songs/60132859.mkv +天舞-忆昔年,http://em.21dtv.com/songs/60130226.mkv +正歌-夜行鸟,http://em.21dtv.com/songs/60121846.mkv +凌云-燕衔泥,http://em.21dtv.com/songs/60098132.mkv +程响-迎新年,http://em.21dtv.com/songs/60096996.mkv +眉佳-燕衔泥,http://em.21dtv.com/songs/60052142.mkv +罗畅-云溪美,http://em.21dtv.com/songs/60129482.mkv +胥拉齐-英雄梦,http://em.21dtv.com/songs/60127319.mkv +许志皇-英雄梦(无原唱),http://em.21dtv.com/songs/60093627.mkv +郑中基-英雄寞,http://em.21dtv.com/songs/60054434.mkv +王鹏-英雄梦,http://em.21dtv.com/songs/60054433.mkv +林俊彦-英雄梦(无原唱),http://em.21dtv.com/songs/60054432.mkv +王中平-英雄泪,http://em.21dtv.com/songs/60127193.mkv +孙铭宇-英雄泪,http://em.21dtv.com/songs/60120454.mkv +华语群星-元宵乐,http://em.21dtv.com/songs/60096914.mkv +咪依鲁江-彝乡恋,http://em.21dtv.com/songs/60079179.mkv +荒山亮-英雄路,http://em.21dtv.com/songs/60054431.mkv +黑龙+成奎安-英雄路,http://em.21dtv.com/songs/60054430.mkv +王杰-英雄泪,http://em.21dtv.com/songs/60054429.mkv +何易峰-英雄泪,http://em.21dtv.com/songs/60054428.mkv +刘平芳-异乡客(无原唱),http://em.21dtv.com/songs/60054148.mkv +Xun-Y小姐,http://em.21dtv.com/songs/60132151.mkv +陈茂丰-用心交,http://em.21dtv.com/songs/60123328.mkv +汪苏泷-严小姐,http://em.21dtv.com/songs/60116104.mkv +杨幂-异想记,http://em.21dtv.com/songs/60065364.mkv +童唱-元宵节,http://em.21dtv.com/songs/60055907.mkv +谢天笑-雁栖湖,http://em.21dtv.com/songs/60052134.mkv +小虎队-游侠儿,http://em.21dtv.com/songs/60115117.mkv +佚名-游侠儿(无原唱),http://em.21dtv.com/songs/60055027.mkv +张立基-夜消沉,http://em.21dtv.com/songs/60092646.mkv +乌兰图雅-原香草,http://em.21dtv.com/songs/60081201.mkv +刘珺儿-月西沉,http://em.21dtv.com/songs/60056501.mkv +曾昱嘉-疑心病,http://em.21dtv.com/songs/60054068.mkv +林为音-也许爱,http://em.21dtv.com/songs/60128117.mkv +邓丽君-永相爱(演唱会),http://em.21dtv.com/songs/60054649.mkv +风火海-一夕爱,http://em.21dtv.com/songs/60053774.mkv +佚名-原乡2,http://em.21dtv.com/songs/60056017.mkv +关喆-有我在,http://em.21dtv.com/songs/60131186.mkv +周澎-有我在,http://em.21dtv.com/songs/60112578.mkv +郑家星-有我在,http://em.21dtv.com/songs/60080857.mkv +罗志祥-有我在,http://em.21dtv.com/songs/60066543.mkv +蔡依林-影舞者(演唱会),http://em.21dtv.com/songs/60054535.mkv +马蕊-夜未央,http://em.21dtv.com/songs/60072694.mkv +许诺-夜无语,http://em.21dtv.com/songs/60067694.mkv +天籁天-夜无语,http://em.21dtv.com/songs/60067693.mkv +周韦杰-月无圆,http://em.21dtv.com/songs/60063464.mkv +李炜-月弯弯,http://em.21dtv.com/songs/60105984.mkv +贰婶+流浪的蛙蛙-月弯弯,http://em.21dtv.com/songs/60104443.mkv +刘佳-月弯弯,http://em.21dtv.com/songs/60067761.mkv +陈随意-月弯弯,http://em.21dtv.com/songs/60067760.mkv +谢金燕-月弯弯,http://em.21dtv.com/songs/60065437.mkv +王强-月弯弯,http://em.21dtv.com/songs/60056500.mkv +刘德华-鱼尾纹,http://em.21dtv.com/songs/60055533.mkv +蔡健雅-有问题,http://em.21dtv.com/songs/60055323.mkv +蔡健雅-有问题(演唱会),http://em.21dtv.com/songs/60055322.mkv +梅艳芳-艳舞台,http://em.21dtv.com/songs/60052117.mkv +黄义达-you ware there,http://em.21dtv.com/songs/60006577.mkv +胡琳-愿望树,http://em.21dtv.com/songs/60131744.mkv +初晨-愿望树,http://em.21dtv.com/songs/60131218.mkv +陈冠希-愿望树,http://em.21dtv.com/songs/60056225.mkv +龙飘飘-忆往事,http://em.21dtv.com/songs/60054130.mkv +郭静-有温柔,http://em.21dtv.com/songs/60055321.mkv +佚名-夜温柔,http://em.21dtv.com/songs/60052659.mkv +何嘉丽-夜温柔,http://em.21dtv.com/songs/60052658.mkv +邓丽君-夜温柔,http://em.21dtv.com/songs/60052657.mkv +陈志嘉+马赛-缘舞曲,http://em.21dtv.com/songs/60100585.mkv +熊汝霖+Dirty Honey-因为你,http://em.21dtv.com/songs/60129369.mkv +黄文星-因为你,http://em.21dtv.com/songs/60112406.mkv +黄玠+女孩与机器人-因为你,http://em.21dtv.com/songs/60104825.mkv +杜德伟+林凡-因为你,http://em.21dtv.com/songs/60086143.mkv +AFTER SCHOOL-因为你,http://em.21dtv.com/songs/60065369.mkv +黄贯中-愿我能(演唱会),http://em.21dtv.com/songs/60056229.mkv +BEYOND-愿我能(演唱会),http://em.21dtv.com/songs/60056228.mkv +郑伊健-因为你,http://em.21dtv.com/songs/60054247.mkv +杨刚-因为你,http://em.21dtv.com/songs/60054246.mkv +谢金燕-因为你,http://em.21dtv.com/songs/60054245.mkv +萧亚轩-因为你,http://em.21dtv.com/songs/60054244.mkv +巫启贤-因为你,http://em.21dtv.com/songs/60054243.mkv +梁心颐-因为你,http://em.21dtv.com/songs/60054242.mkv +李国毅-因为你,http://em.21dtv.com/songs/60054241.mkv +方大同-因为你,http://em.21dtv.com/songs/60054240.mkv +曾宝仪-因为你,http://em.21dtv.com/songs/60054239.mkv +陈晓东-一万年,http://em.21dtv.com/songs/60053756.mkv +张学友-一万年(演唱会),http://em.21dtv.com/songs/60053755.mkv +韩庚-因为梦,http://em.21dtv.com/songs/60079194.mkv +金子嫣-夜无眠(无原唱),http://em.21dtv.com/songs/60052660.mkv +郑智化-夜未眠,http://em.21dtv.com/songs/60052656.mkv +黄仲昆-夜未眠,http://em.21dtv.com/songs/60052655.mkv +高向鹏+方怡萍-缘未了,http://em.21dtv.com/songs/60056111.mkv +叶倩文-遗忘了,http://em.21dtv.com/songs/60054065.mkv +周慧敏-疑问句,http://em.21dtv.com/songs/60089217.mkv +佚名-疑问句,http://em.21dtv.com/songs/60054067.mkv +泫雅+郑镒勋-因为红,http://em.21dtv.com/songs/60115266.mkv +于文华-雨吻花,http://em.21dtv.com/songs/60055710.mkv +萧亚轩-愿望歌,http://em.21dtv.com/songs/60093106.mkv +戴建明-有为歌,http://em.21dtv.com/songs/60055320.mkv +谢霆锋-一窝疯,http://em.21dtv.com/songs/60053767.mkv +王铮亮-有味儿(演唱会),http://em.21dtv.com/songs/60068942.mkv +张姝+李文慧-燕尾蝶,http://em.21dtv.com/songs/60114532.mkv +燕尾蝶-燕尾蝶,http://em.21dtv.com/songs/60099388.mkv +胡波涛-永无岛,http://em.21dtv.com/songs/60096937.mkv +超级女声+佘曼妮-燕尾蝶,http://em.21dtv.com/songs/60088711.mkv +张欣奕-燕尾蝶,http://em.21dtv.com/songs/60086088.mkv +安妮朵拉-永无岛,http://em.21dtv.com/songs/60080421.mkv +武笑羽-燕尾蝶,http://em.21dtv.com/songs/60079018.mkv +梁静茹-燕尾蝶,http://em.21dtv.com/songs/60052141.mkv +SHINE-燕尾蝶,http://em.21dtv.com/songs/60052140.mkv +五月天-燕尾蝶(演唱会),http://em.21dtv.com/songs/60052139.mkv +林一峰+AT17-燕尾蝶(演唱会),http://em.21dtv.com/songs/60052138.mkv +何韵诗-燕尾蝶(演唱会),http://em.21dtv.com/songs/60052137.mkv +傅振辉+邓咏家-因为爱,http://em.21dtv.com/songs/60109160.mkv +孙楠-因为爱,http://em.21dtv.com/songs/60102115.mkv +张栋梁+群星-因为爱,http://em.21dtv.com/songs/60091118.mkv +李雨儿-因为爱,http://em.21dtv.com/songs/60084395.mkv +潘辰+张靓颖-因为爱,http://em.21dtv.com/songs/60079191.mkv +陶喆-因为爱,http://em.21dtv.com/songs/60066533.mkv +羽泉-因为爱,http://em.21dtv.com/songs/60054219.mkv +萧亚轩-因为爱,http://em.21dtv.com/songs/60054218.mkv +韦礼安-因为爱,http://em.21dtv.com/songs/60054217.mkv +群星-因为爱,http://em.21dtv.com/songs/60054216.mkv +乔桀立巨星-因为爱,http://em.21dtv.com/songs/60054215.mkv +刘德华-因为爱,http://em.21dtv.com/songs/60054214.mkv +伯阳-因为爱,http://em.21dtv.com/songs/60054213.mkv +SEE YA-因为爱,http://em.21dtv.com/songs/60054212.mkv +BEE GEES-you win again(演唱会),http://em.21dtv.com/songs/60006581.mkv +EASTON CORBIN-YUP,http://em.21dtv.com/songs/60129927.mkv +BIRDMAN-y u mad,http://em.21dtv.com/songs/60063810.mkv +彭炽权-瀛台怨,http://em.21dtv.com/songs/60054531.mkv +梁淑卿-英台怨,http://em.21dtv.com/songs/60054412.mkv +拾叁乐团-银太阳,http://em.21dtv.com/songs/60054353.mkv +方芳-摇太阳,http://em.21dtv.com/songs/60052289.mkv +傅振辉-一条线,http://em.21dtv.com/songs/60053742.mkv +陆毅-云天外,http://em.21dtv.com/songs/60114854.mkv +杜淳-云天外,http://em.21dtv.com/songs/60114615.mkv +许嵩-摇头玩,http://em.21dtv.com/songs/60104425.mkv +潘辰-夜天使,http://em.21dtv.com/songs/60062798.mkv +ROD STEWART-youre the star,http://em.21dtv.com/songs/60006624.mkv +官恩娜-由他去,http://em.21dtv.com/songs/60065390.mkv +佚名-一条桥,http://em.21dtv.com/songs/60053738.mkv +青山+婉曲-一条桥,http://em.21dtv.com/songs/60053737.mkv +陈慧琳-youre the one,http://em.21dtv.com/songs/60006623.mkv +陈慧琳-youre the one(演唱会),http://em.21dtv.com/songs/60006622.mkv +卓依婷-忆童年,http://em.21dtv.com/songs/60054129.mkv +凤飞飞-忆童年(无原唱),http://em.21dtv.com/songs/60054128.mkv +张行-一条路,http://em.21dtv.com/songs/60133693.mkv +李菲儿-雨停了,http://em.21dtv.com/songs/60124092.mkv +刘玉东-一条路,http://em.21dtv.com/songs/60120370.mkv +何嘉文-雨停了(无原唱),http://em.21dtv.com/songs/60055709.mkv +张行-一条路(演唱会),http://em.21dtv.com/songs/60053735.mkv +陈彼得+张行-一条路(演唱会),http://em.21dtv.com/songs/60053734.mkv +任贤齐-一条龙,http://em.21dtv.com/songs/60053733.mkv +李炜-夜太空,http://em.21dtv.com/songs/60084338.mkv +蔡秋凤+陈冠蒲-越头看(无原唱),http://em.21dtv.com/songs/60056608.mkv +王建杰-一桶金,http://em.21dtv.com/songs/60087052.mkv +艾丽雅-夜谈会,http://em.21dtv.com/songs/60135651.mkv +傅健颖-雨天后,http://em.21dtv.com/songs/60128795.mkv +王紫菲-一条河,http://em.21dtv.com/songs/60099410.mkv +郁可唯-夜太黑,http://em.21dtv.com/songs/60095103.mkv +朱桦-夜太黑,http://em.21dtv.com/songs/60094921.mkv +田园-夜太黑,http://em.21dtv.com/songs/60081504.mkv +洪百慧+徐立鸿-油桐花,http://em.21dtv.com/songs/60067728.mkv +沈春阳-樱桃红,http://em.21dtv.com/songs/60067719.mkv +邓丽君-月桃花,http://em.21dtv.com/songs/60056499.mkv +刘韵-月桃花(演唱会),http://em.21dtv.com/songs/60056498.mkv +林忆莲-夜太黑,http://em.21dtv.com/songs/60052652.mkv +林忆莲-夜太黑(演唱会),http://em.21dtv.com/songs/60052651.mkv +EO2-一天EO2,http://em.21dtv.com/songs/60092169.mkv +莫文蔚-有太多,http://em.21dtv.com/songs/60090186.mkv +HUMMING URBAN STEREO FEAT+YOO-you that day,http://em.21dtv.com/songs/60074194.mkv +YOO INNA-you that day,http://em.21dtv.com/songs/60062180.mkv +杨孟茜-夜太长,http://em.21dtv.com/songs/60117832.mkv +八斤-忆同窗,http://em.21dtv.com/songs/60116559.mkv +陈洁丽-沿途爱(演唱会),http://em.21dtv.com/songs/60062262.mkv +廖百威+蒋文端-云山赞,http://em.21dtv.com/songs/60056664.mkv +毛阿敏-淯水吟,http://em.21dtv.com/songs/60088180.mkv +杨丞琳-遇上有,http://em.21dtv.com/songs/60088059.mkv +七朵组合-玉生烟,http://em.21dtv.com/songs/60080684.mkv +金磊鑫-鱼水谣,http://em.21dtv.com/songs/60068946.mkv +何超-玉生烟,http://em.21dtv.com/songs/60065412.mkv +雨儿-云水谣,http://em.21dtv.com/songs/60056674.mkv +王少平-鱼水谣,http://em.21dtv.com/songs/60055529.mkv +邓华升-一三五,http://em.21dtv.com/songs/60112991.mkv +郑希怡-云上舞,http://em.21dtv.com/songs/60056670.mkv +关淑怡-云上舞(演唱会),http://em.21dtv.com/songs/60056669.mkv +佚名-youre so vain,http://em.21dtv.com/songs/60006617.mkv +周传雄-you should try,http://em.21dtv.com/songs/60074192.mkv +黄文昌-夭寿水,http://em.21dtv.com/songs/60126475.mkv +林奕匡-一双手,http://em.21dtv.com/songs/60119700.mkv +王燕青-有所思,http://em.21dtv.com/songs/60091722.mkv +伊雪-雨水声,http://em.21dtv.com/songs/60071468.mkv +BOBBY BRACKINS+RAY J-143,http://em.21dtv.com/songs/60000009.mkv +林恺伦-一双人,http://em.21dtv.com/songs/60117845.mkv +李明洋-一世人,http://em.21dtv.com/songs/60053667.mkv +江宏恩-一世人,http://em.21dtv.com/songs/60053666.mkv +李秀娟-丫山情,http://em.21dtv.com/songs/60109432.mkv +张可儿-原上情,http://em.21dtv.com/songs/60079383.mkv +[Group] +groupName=十六万歌曲MV等 - 35 +黄乙玲-雨伞情,http://em.21dtv.com/songs/60055689.mkv +陈淑萍+陈中-雨伞情,http://em.21dtv.com/songs/60055688.mkv +佚名-鱼水情,http://em.21dtv.com/songs/60055527.mkv +王建杰+刘依纯-一世情,http://em.21dtv.com/songs/60053657.mkv +陈国宁-一世情,http://em.21dtv.com/songs/60053656.mkv +管辉-余生暖,http://em.21dtv.com/songs/60131720.mkv +吴振飞-又十年,http://em.21dtv.com/songs/60079309.mkv +BUSTED-you said no,http://em.21dtv.com/songs/60074190.mkv +陈嘉桦-有事吗,http://em.21dtv.com/songs/60121066.mkv +大嘴巴-有事吗,http://em.21dtv.com/songs/60110955.mkv +-勇士们,http://em.21dtv.com/songs/60090382.mkv +龙井组合-夜三里,http://em.21dtv.com/songs/60113118.mkv +佚名-越山岭,http://em.21dtv.com/songs/60056604.mkv +秀兰玛雅-越山岭(演唱会),http://em.21dtv.com/songs/60056603.mkv +雪儿达瓦-原撒拉,http://em.21dtv.com/songs/60056011.mkv +二手玫瑰-夜深了,http://em.21dtv.com/songs/60052645.mkv +郑伊健-野森林,http://em.21dtv.com/songs/60052495.mkv +郑伊健-野森林(演唱会),http://em.21dtv.com/songs/60052494.mkv +吴俊宏-盐酥鸡,http://em.21dtv.com/songs/60135011.mkv +王鸣飞-一瞬间,http://em.21dtv.com/songs/60120790.mkv +齐浠儿-异世界,http://em.21dtv.com/songs/60102396.mkv +丽江小倩-一瞬间,http://em.21dtv.com/songs/60084373.mkv +玄乐队-一瞬间,http://em.21dtv.com/songs/60065350.mkv +蔡诗芸-雨声街,http://em.21dtv.com/songs/60055695.mkv +周传雄-异世界,http://em.21dtv.com/songs/60054138.mkv +螺丝钉-异世界,http://em.21dtv.com/songs/60054137.mkv +四分卫-艺术家(无原唱),http://em.21dtv.com/songs/60054111.mkv +糖兄妹-一瞬间,http://em.21dtv.com/songs/60053700.mkv +青山-一瞬间,http://em.21dtv.com/songs/60053699.mkv +何静-一瞬间,http://em.21dtv.com/songs/60053698.mkv +宋祖英-映山红,http://em.21dtv.com/songs/60133582.mkv +歌莉雅-有时候,http://em.21dtv.com/songs/60130515.mkv +一绫-一身红,http://em.21dtv.com/songs/60130023.mkv +戴萃瑶-雨伞后,http://em.21dtv.com/songs/60123987.mkv +侯丽娟-映山红,http://em.21dtv.com/songs/60120326.mkv +黄英-映山红,http://em.21dtv.com/songs/60117415.mkv +谭维维-映山红,http://em.21dtv.com/songs/60114798.mkv +程芳-有时候,http://em.21dtv.com/songs/60111335.mkv +赵薇-夜上海,http://em.21dtv.com/songs/60108904.mkv +许恒-耶生活,http://em.21dtv.com/songs/60108887.mkv +游子组合-映山红,http://em.21dtv.com/songs/60107884.mkv +张曼-映山红,http://em.21dtv.com/songs/60106849.mkv +朴孝信-野生花,http://em.21dtv.com/songs/60105964.mkv +杨紫萍-映山红,http://em.21dtv.com/songs/60100188.mkv +小龙女-映山红,http://em.21dtv.com/songs/60098292.mkv +苗苗-映山红,http://em.21dtv.com/songs/60096466.mkv +陈秋霞-罂粟花,http://em.21dtv.com/songs/60093494.mkv +卡拉OK-烟水寒,http://em.21dtv.com/songs/60089191.mkv +刘孟哲-映山红,http://em.21dtv.com/songs/60087064.mkv +玖月奇迹-映山红(演唱会),http://em.21dtv.com/songs/60086150.mkv +莫文蔚-夜上海,http://em.21dtv.com/songs/60086104.mkv +玖月奇迹-映山红,http://em.21dtv.com/songs/60084413.mkv +李晖-映山红(演唱会),http://em.21dtv.com/songs/60084412.mkv +童丽-映山红,http://em.21dtv.com/songs/60079228.mkv +储兰兰-映山红,http://em.21dtv.com/songs/60079227.mkv +吴介贤-映山红(演唱会),http://em.21dtv.com/songs/60079226.mkv +潘秀琼-夜上海(演唱会),http://em.21dtv.com/songs/60079066.mkv +刀郎-映山红,http://em.21dtv.com/songs/60070172.mkv +马丁+安东-映山红,http://em.21dtv.com/songs/60067721.mkv +张涛-映山红(演唱会),http://em.21dtv.com/songs/60067720.mkv +莫旭秋-夜上海(演唱会),http://em.21dtv.com/songs/60065321.mkv +陈洁丽-夜上海(演唱会),http://em.21dtv.com/songs/60062263.mkv +梁咏琪-有时候,http://em.21dtv.com/songs/60055294.mkv +佚名-映山红,http://em.21dtv.com/songs/60054557.mkv +刘欢-映山红,http://em.21dtv.com/songs/60054556.mkv +黄英-映山红,http://em.21dtv.com/songs/60054555.mkv +董文华-映山红,http://em.21dtv.com/songs/60054554.mkv +宋祖英-映山红(演唱会),http://em.21dtv.com/songs/60054553.mkv +佚名-易水寒,http://em.21dtv.com/songs/60054168.mkv +施孝荣-易水寒,http://em.21dtv.com/songs/60054167.mkv +谢金燕-夜生活,http://em.21dtv.com/songs/60052649.mkv +容儿-夜生活(无原唱),http://em.21dtv.com/songs/60052648.mkv +紫薇-夜上海,http://em.21dtv.com/songs/60052643.mkv +周璇-夜上海,http://em.21dtv.com/songs/60052642.mkv +马天宇-夜上海,http://em.21dtv.com/songs/60052641.mkv +罗文-夜上海,http://em.21dtv.com/songs/60052640.mkv +陈松伶-夜上海,http://em.21dtv.com/songs/60052639.mkv +陈戈-夜上海,http://em.21dtv.com/songs/60052638.mkv +谢雷-夜上海(演唱会),http://em.21dtv.com/songs/60052637.mkv +胡美仪-夜上海(演唱会),http://em.21dtv.com/songs/60052636.mkv +黑鸭子-夜上海(演唱会),http://em.21dtv.com/songs/60052635.mkv +佚名-野生花(快三),http://em.21dtv.com/songs/60052496.mkv +第一花乐队-一束光,http://em.21dtv.com/songs/60131717.mkv +肖家永-一首歌,http://em.21dtv.com/songs/60128318.mkv +肖家永-一首歌,http://em.21dtv.com/songs/60124367.mkv +董文华-野山歌,http://em.21dtv.com/songs/60123126.mkv +TONICK-一首歌,http://em.21dtv.com/songs/60120249.mkv +林一峰-一首歌,http://em.21dtv.com/songs/60096892.mkv +吕继宏-野山歌,http://em.21dtv.com/songs/60084331.mkv +小肥-一首歌,http://em.21dtv.com/songs/60071428.mkv +朱哲琴-一首歌,http://em.21dtv.com/songs/60053677.mkv +杨五琴-燕双飞,http://em.21dtv.com/songs/60119686.mkv +珊瑚-御膳房,http://em.21dtv.com/songs/60055867.mkv +蔡秋凤-燕双飞,http://em.21dtv.com/songs/60052136.mkv +司马凤-盐酸风,http://em.21dtv.com/songs/60052027.mkv +佚名-your smiling face,http://em.21dtv.com/songs/60006601.mkv +容祖儿-一三点,http://em.21dtv.com/songs/60079142.mkv +容祖儿-十三点,http://em.21dtv.com/songs/60061584.mkv +邵雅茜-y时代,http://em.21dtv.com/songs/60006633.mkv +光良-右手边,http://em.21dtv.com/songs/60055481.mkv +姚建蓉-一世安,http://em.21dtv.com/songs/60112610.mkv +庄振凯-一声爱,http://em.21dtv.com/songs/60079148.mkv +刘德华-一生爱,http://em.21dtv.com/songs/60067705.mkv +杨丞琳-遇上爱,http://em.21dtv.com/songs/60055860.mkv +谭咏麟-依然在,http://em.21dtv.com/songs/60054010.mkv +王安-娱人鱼,http://em.21dtv.com/songs/60132722.mkv +卫东-伊人笑,http://em.21dtv.com/songs/60109205.mkv +钟亚华-月如心,http://em.21dtv.com/songs/60108078.mkv +钟亚华-伊人香,http://em.21dtv.com/songs/60108075.mkv +LF兄弟-野人王,http://em.21dtv.com/songs/60126534.mkv +蒋婴-伊人叹,http://em.21dtv.com/songs/60130712.mkv +林俊杰+怀秋-友人说,http://em.21dtv.com/songs/60079273.mkv +黄小琥-有人陪,http://em.21dtv.com/songs/60062496.mkv +杨斯壬-雨若梦,http://em.21dtv.com/songs/60086169.mkv +梁文音-咬人猫,http://em.21dtv.com/songs/60052346.mkv +石欣卉-一人留,http://em.21dtv.com/songs/60053476.mkv +佚名-欲如何,http://em.21dtv.com/songs/60055820.mkv +梦苇-月如钩,http://em.21dtv.com/songs/60128146.mkv +河图-越人歌,http://em.21dtv.com/songs/60119762.mkv +周迅-越人歌,http://em.21dtv.com/songs/60116667.mkv +刘晓-月如钩,http://em.21dtv.com/songs/60107532.mkv +小沈龙-艺人歌,http://em.21dtv.com/songs/60086138.mkv +曾轶可-羽绒服,http://em.21dtv.com/songs/60065408.mkv +佚名-亚热带,http://em.21dtv.com/songs/60051898.mkv +陈佩斯+朱时茂-羊肉串,http://em.21dtv.com/songs/60090288.mkv +彭美琪-忆情缘,http://em.21dtv.com/songs/60133711.mkv +蔡淳佳-檐前雨,http://em.21dtv.com/songs/60094683.mkv +萧人凤-有情燕,http://em.21dtv.com/songs/60084448.mkv +黄征-月秋影(演唱会),http://em.21dtv.com/songs/60056488.mkv +凌加峻-一起玩,http://em.21dtv.com/songs/60079135.mkv +戴佩妮-野蔷薇(演唱会),http://em.21dtv.com/songs/60052492.mkv +翁立友-有情天,http://em.21dtv.com/songs/60126074.mkv +王若琪-月全蚀,http://em.21dtv.com/songs/60092991.mkv +方力申-月全蚀,http://em.21dtv.com/songs/60056491.mkv +王芷蕾-玉卿嫂,http://em.21dtv.com/songs/60055788.mkv +黄磊-玉卿嫂,http://em.21dtv.com/songs/60055787.mkv +恭硕良-月球人,http://em.21dtv.com/songs/60056489.mkv +张蓉蓉-有情人,http://em.21dtv.com/songs/60055270.mkv +秀兰玛雅-有情人,http://em.21dtv.com/songs/60055269.mkv +辛晓琪-眼前人,http://em.21dtv.com/songs/60052090.mkv +张榜强-夜悄悄,http://em.21dtv.com/songs/60100023.mkv +叶幼琪+蒋文端-倚秋迁(二)(戏曲),http://em.21dtv.com/songs/60092410.mkv +叶幼琪+蒋文端-倚秋迁(戏曲),http://em.21dtv.com/songs/60092409.mkv +雪莲三姐妹-圆圈圈,http://em.21dtv.com/songs/60079386.mkv +林子娟-缘情梦(无原唱),http://em.21dtv.com/songs/60056104.mkv +阿瑞-一起来,http://em.21dtv.com/songs/60126351.mkv +黄绮珊-一起来,http://em.21dtv.com/songs/60094361.mkv +春妹-怨情郎,http://em.21dtv.com/songs/60056183.mkv +黎明-有情郎,http://em.21dtv.com/songs/60055268.mkv +黎明-有情郎(演唱会),http://em.21dtv.com/songs/60055267.mkv +佚名-一起来,http://em.21dtv.com/songs/60053367.mkv +砰砰乐团-运气好(无原唱),http://em.21dtv.com/songs/60056700.mkv +杨千嬅-杨千嬅,http://em.21dtv.com/songs/60052214.mkv +杨千嬅-杨千嬅(演唱会),http://em.21dtv.com/songs/60052213.mkv +陈淑萍-夜清风,http://em.21dtv.com/songs/60107330.mkv +林志颖+张娜拉-一起飞,http://em.21dtv.com/songs/60084365.mkv +都市苍狼-一起飞,http://em.21dtv.com/songs/60072713.mkv +郑伊健+陈小春+林晓峰-一起飞,http://em.21dtv.com/songs/60053362.mkv +谭晶+阎维文-一起飞,http://em.21dtv.com/songs/60053361.mkv +群星-一起飞,http://em.21dtv.com/songs/60053360.mkv +MINI+顾儿-一起飞,http://em.21dtv.com/songs/60053359.mkv +郑伊健-一起飞(演唱会),http://em.21dtv.com/songs/60053358.mkv +冥月-宴清都,http://em.21dtv.com/songs/60134916.mkv +指原莉乃-意気地なしマスカレード,http://em.21dtv.com/songs/60079189.mkv +李理+高进-一起闯,http://em.21dtv.com/songs/60103369.mkv +姜斌斌-忆青春,http://em.21dtv.com/songs/60096238.mkv +草蜢-一起冲(演唱会),http://em.21dtv.com/songs/60079130.mkv +叶一茜-一起唱,http://em.21dtv.com/songs/60053355.mkv +唐俪-饮千杯,http://em.21dtv.com/songs/60133498.mkv +刘德华-一起嗌(HD),http://em.21dtv.com/songs/10012652.mkv +刘德华-一起嗌,http://em.21dtv.com/songs/60053354.mkv +刘德华-一起嗌(演唱会),http://em.21dtv.com/songs/60053353.mkv +范萱蔚+裕美-一起爱,http://em.21dtv.com/songs/60053352.mkv +Mojo-右撇子,http://em.21dtv.com/songs/60109851.mkv +王识贤-一片天,http://em.21dtv.com/songs/60053345.mkv +谭咏麟-一片天,http://em.21dtv.com/songs/60053344.mkv +阳帆-阳婆婆,http://em.21dtv.com/songs/60082028.mkv +张国荣-一片痴,http://em.21dtv.com/songs/60053339.mkv +李治廷-一片痴,http://em.21dtv.com/songs/60053338.mkv +卢广仲-一坪半,http://em.21dtv.com/songs/60123718.mkv +机动现场-YOU'RE MY SUNSHINE,http://em.21dtv.com/songs/60096888.mkv +Keyshia Cole+Remy Ma+French Montana-You,http://em.21dtv.com/songs/60133223.mkv +周予天-YOU,http://em.21dtv.com/songs/60123750.mkv +WILDSTYLEZ+NIELS GEUSEBROEK-year of summer,http://em.21dtv.com/songs/60074172.mkv +张惠妹-yes or no,http://em.21dtv.com/songs/60006458.mkv +CARPENTERS-yesterday once more,http://em.21dtv.com/songs/60006464.mkv +佚名-yesterday once more(演唱会),http://em.21dtv.com/songs/60006463.mkv +孙耀威-yesterday once more(演唱会),http://em.21dtv.com/songs/60006462.mkv +陈慧娴-yesterday once more(演唱会),http://em.21dtv.com/songs/60006461.mkv +佚名-youre only lonely,http://em.21dtv.com/songs/60006615.mkv +ALANIS MORISSETTE-you oughta know,http://em.21dtv.com/songs/60074188.mkv +弦子+熊猫团-有你在,http://em.21dtv.com/songs/60125549.mkv +吴建豪-有你在,http://em.21dtv.com/songs/60063099.mkv +梁静茹-有你在,http://em.21dtv.com/songs/60055248.mkv +詹雅雯-赢你哟,http://em.21dtv.com/songs/60054529.mkv +张赫宣-忆年味,http://em.21dtv.com/songs/60118568.mkv +杨燕-意难忘(演唱会),http://em.21dtv.com/songs/60079188.mkv +庄学忠-意难忘,http://em.21dtv.com/songs/60054189.mkv +佚名-意难忘,http://em.21dtv.com/songs/60054188.mkv +林淑容-意难忘,http://em.21dtv.com/songs/60054187.mkv +黄晓君-意难忘,http://em.21dtv.com/songs/60054186.mkv +蔡小虎-意难忘,http://em.21dtv.com/songs/60054185.mkv +张惠妹-意难忘(演唱会),http://em.21dtv.com/songs/60054184.mkv +潘迪华-意难忘(演唱会),http://em.21dtv.com/songs/60054183.mkv +蔡琴-意难忘(HD演唱会),http://em.21dtv.com/songs/60054182.mkv +王嘉-迎男神,http://em.21dtv.com/songs/60131651.mkv +彭绍琴-渔女情,http://em.21dtv.com/songs/60055555.mkv +胡彦斌-一年前,http://em.21dtv.com/songs/60053326.mkv +陈瑞-夜难寐,http://em.21dtv.com/songs/60088905.mkv +吴春燕-云南美(演唱会),http://em.21dtv.com/songs/60063096.mkv +那英-云南美,http://em.21dtv.com/songs/60056659.mkv +BOYZONE-you needed me,http://em.21dtv.com/songs/60006569.mkv +ANNE MURRAY-you needed me,http://em.21dtv.com/songs/60006568.mkv +小龙女-野女狼,http://em.21dtv.com/songs/60098297.mkv +DAVE MATTHEWS BAND-you never konw,http://em.21dtv.com/songs/60006570.mkv +童唱-一年级,http://em.21dtv.com/songs/60053324.mkv +褐眼男子-一年后,http://em.21dtv.com/songs/60068917.mkv +琼雪卓玛-云南红,http://em.21dtv.com/songs/60056658.mkv +ASWAD-youre no good,http://em.21dtv.com/songs/60006614.mkv +马常宝-雁南飞,http://em.21dtv.com/songs/60109029.mkv +王琳玲-雁南飞,http://em.21dtv.com/songs/60108724.mkv +张杰-雁南飞,http://em.21dtv.com/songs/60087823.mkv +李昱和-雁南飞(演唱会),http://em.21dtv.com/songs/60086086.mkv +李玉刚-雁南飞,http://em.21dtv.com/songs/60079016.mkv +阿淡-雁南飞,http://em.21dtv.com/songs/60065306.mkv +张咪-燕难飞,http://em.21dtv.com/songs/60052135.mkv +佚名-雁南飞,http://em.21dtv.com/songs/60052133.mkv +董文华-雁南飞,http://em.21dtv.com/songs/60052132.mkv +刀郎+黄灿-雁南飞,http://em.21dtv.com/songs/60052131.mkv +陈星-雁南飞,http://em.21dtv.com/songs/60052130.mkv +陈红-樱奈儿,http://em.21dtv.com/songs/60088910.mkv +陈奕迅-要你的,http://em.21dtv.com/songs/60052376.mkv +郑进一-月娘茶,http://em.21dtv.com/songs/60056475.mkv +苏路-月娘啊,http://em.21dtv.com/songs/60056469.mkv +渔圈+心大俊-夜猫子,http://em.21dtv.com/songs/60129358.mkv +姜玉阳-夜幕缀,http://em.21dtv.com/songs/60115087.mkv +姜鹏-一秒钟,http://em.21dtv.com/songs/60087641.mkv +徐佳莹-夜盲症,http://em.21dtv.com/songs/60080314.mkv +吴贞-一秒钟,http://em.21dtv.com/songs/60053313.mkv +蔡健雅-夜盲症,http://em.21dtv.com/songs/60052620.mkv +向洋-有没有,http://em.21dtv.com/songs/60123739.mkv +张彤昉-有木有,http://em.21dtv.com/songs/60103271.mkv +张靓颖-有没有,http://em.21dtv.com/songs/60102248.mkv +张智霖-有没有,http://em.21dtv.com/songs/60096277.mkv +孙楠-有没有,http://em.21dtv.com/songs/60095288.mkv +六折真人-有木有,http://em.21dtv.com/songs/60086162.mkv +DAL SHABET-有没有,http://em.21dtv.com/songs/60084440.mkv +小多-有没有,http://em.21dtv.com/songs/60079284.mkv +BY2-有没有,http://em.21dtv.com/songs/60061975.mkv +张智霖-有没有(演唱会),http://em.21dtv.com/songs/60055176.mkv +张智霖-有没有(无原唱),http://em.21dtv.com/songs/60055175.mkv +周渝民-有没友,http://em.21dtv.com/songs/60055174.mkv +韩菁英-一抹香,http://em.21dtv.com/songs/60134447.mkv +小沈阳+汤潮-一亩田,http://em.21dtv.com/songs/60104082.mkv +汤潮-一亩田,http://em.21dtv.com/songs/60053320.mkv +方琦-沂蒙颂,http://em.21dtv.com/songs/60128046.mkv +周杰伦-阳明山,http://em.21dtv.com/songs/60107600.mkv +周杰伦-阳明山,http://em.21dtv.com/songs/60106709.mkv +梦鸽-沂蒙颂(演唱会),http://em.21dtv.com/songs/60054029.mkv +佚名-youre my sunshine,http://em.21dtv.com/songs/60006613.mkv +苏醒-虞美人,http://em.21dtv.com/songs/60128349.mkv +刘子菲-虞美人,http://em.21dtv.com/songs/60055564.mkv +黄妃-虞美人,http://em.21dtv.com/songs/60055563.mkv +邓丽君-虞美人,http://em.21dtv.com/songs/60055562.mkv +曹颖-虞美人,http://em.21dtv.com/songs/60055561.mkv +佚名-幽默曲,http://em.21dtv.com/songs/60054965.mkv +SNH48-羊咩咩,http://em.21dtv.com/songs/60109885.mkv +AVICII-you make me,http://em.21dtv.com/songs/60086385.mkv +龙千玉+蔡小虎-雨绵绵,http://em.21dtv.com/songs/60055676.mkv +张学友-夜茫茫,http://em.21dtv.com/songs/60052621.mkv +荒山亮-烟茫茫,http://em.21dtv.com/songs/60051978.mkv +江蕙-养母泪(无原唱),http://em.21dtv.com/songs/60095723.mkv +佚名-养母泪(无原唱),http://em.21dtv.com/songs/60052226.mkv +李明明-杨梅红,http://em.21dtv.com/songs/60086092.mkv +吴淑敏-杨梅花,http://em.21dtv.com/songs/60052208.mkv +李家伟-药敏感,http://em.21dtv.com/songs/60120619.mkv +W.K-岳母歌,http://em.21dtv.com/songs/60068964.mkv +何韵诗-幽默感,http://em.21dtv.com/songs/60054964.mkv +范晓萱-幽默感,http://em.21dtv.com/songs/60054963.mkv +关淑怡-夜迷宫,http://em.21dtv.com/songs/60052624.mkv +陈明-夜玫瑰,http://em.21dtv.com/songs/60052623.mkv +童唱-野玫瑰,http://em.21dtv.com/songs/60052488.mkv +蔡秋凤-野玫瑰,http://em.21dtv.com/songs/60052487.mkv +阿兰(alan)-有ME就好,http://em.21dtv.com/songs/60088828.mkv +王麟-雅美蝶,http://em.21dtv.com/songs/60109547.mkv +高永泰-ya!美蝶,http://em.21dtv.com/songs/60066759.mkv +陈奕迅-眼眉调(演唱会),http://em.21dtv.com/songs/60052088.mkv +黄耀明+容祖儿-眼泪赞,http://em.21dtv.com/songs/60052085.mkv +阿香-哑啦耶,http://em.21dtv.com/songs/60103655.mkv +姚贝娜-御龙吟,http://em.21dtv.com/songs/60102093.mkv +庞龙-月亮圆,http://em.21dtv.com/songs/60089844.mkv +东南-一零一,http://em.21dtv.com/songs/60072709.mkv +何韵诗-韵律泳,http://em.21dtv.com/songs/60056703.mkv +何韵诗-韵律泳(演唱会),http://em.21dtv.com/songs/60056702.mkv +伊扬-越来越,http://em.21dtv.com/songs/60056591.mkv +零点乐队-越来越(演唱会),http://em.21dtv.com/songs/60056590.mkv +依稀-游乐园,http://em.21dtv.com/songs/60055007.mkv +马保罗-游乐园,http://em.21dtv.com/songs/60055006.mkv +戴佩妮-游乐园(演唱会),http://em.21dtv.com/songs/60055005.mkv +佚名-优伶怨,http://em.21dtv.com/songs/60054936.mkv +梅艳芳-耶利亚(演唱会),http://em.21dtv.com/songs/60052410.mkv +何颜诗-颜律泳,http://em.21dtv.com/songs/60052028.mkv +一狼雪-一狼雪,http://em.21dtv.com/songs/60131124.mkv +金小鱼-夜来香,http://em.21dtv.com/songs/60127512.mkv +李荣浩-有理想,http://em.21dtv.com/songs/60118688.mkv +山子华-夜来香,http://em.21dtv.com/songs/60110167.mkv +胥拉齐-夜来香,http://em.21dtv.com/songs/60107149.mkv +李慧琳-夜来香,http://em.21dtv.com/songs/60100143.mkv +胡海泉+丁于-夜来香,http://em.21dtv.com/songs/60095046.mkv +孙琳-夜来香,http://em.21dtv.com/songs/60087666.mkv +太妃堂-夜来香,http://em.21dtv.com/songs/60079063.mkv +汪明荃-夜来香(演唱会),http://em.21dtv.com/songs/60079062.mkv +莫旭秋-夜来香(演唱会),http://em.21dtv.com/songs/60079061.mkv +太妃堂TOFFEE+MC GAWEED-夜来香,http://em.21dtv.com/songs/60072693.mkv +刘惜君-夜来香,http://em.21dtv.com/songs/60071410.mkv +吴勇滨-夜来香,http://em.21dtv.com/songs/60065320.mkv +文章-夜来香,http://em.21dtv.com/songs/60052611.mkv +谭晶-夜来香,http://em.21dtv.com/songs/60052610.mkv +费玉清-夜来香,http://em.21dtv.com/songs/60052609.mkv +叶振棠-夜来香(演唱会),http://em.21dtv.com/songs/60052608.mkv +叶丽仪-夜来香(演唱会),http://em.21dtv.com/songs/60052607.mkv +谢雷-夜来香(演唱会),http://em.21dtv.com/songs/60052606.mkv +苏永康-夜来香(演唱会),http://em.21dtv.com/songs/60052605.mkv +群星-夜来香(演唱会),http://em.21dtv.com/songs/60052604.mkv +罗文-夜来香(演唱会),http://em.21dtv.com/songs/60052603.mkv +林忆莲-夜来香(演唱会),http://em.21dtv.com/songs/60052602.mkv +李宇春-夜来香(演唱会),http://em.21dtv.com/songs/60052601.mkv +邓丽君-夜来香(演唱会),http://em.21dtv.com/songs/60052600.mkv +林子祥-夜来香(无原唱),http://em.21dtv.com/songs/60052599.mkv +蔡琴-夜来香(HD演唱会),http://em.21dtv.com/songs/60052598.mkv +刘力扬-眼泪笑,http://em.21dtv.com/songs/60052082.mkv +秦勇+李振涛-原谅我,http://em.21dtv.com/songs/60132776.mkv +刘德华-原谅我,http://em.21dtv.com/songs/60119290.mkv +萧敬腾+孙嫣然-原谅我,http://em.21dtv.com/songs/60112185.mkv +孙羽希-原谅我,http://em.21dtv.com/songs/60108431.mkv +51-原谅我,http://em.21dtv.com/songs/60103749.mkv +胡晓黎-原谅我,http://em.21dtv.com/songs/60086180.mkv +田华-原谅我,http://em.21dtv.com/songs/60081166.mkv +阿沁-原谅我,http://em.21dtv.com/songs/60079378.mkv +楚博仁-原谅我,http://em.21dtv.com/songs/60066556.mkv +李琼-月亮湾,http://em.21dtv.com/songs/60056436.mkv +黄思婷-月亮湾,http://em.21dtv.com/songs/60056435.mkv +萧敬腾-原谅我,http://em.21dtv.com/songs/60055994.mkv +巫奇-原谅我,http://em.21dtv.com/songs/60055993.mkv +黎明-原谅我,http://em.21dtv.com/songs/60055992.mkv +洪荣宏-原谅我,http://em.21dtv.com/songs/60055991.mkv +林忆莲-有了我,http://em.21dtv.com/songs/60055167.mkv +KARINA-16@war,http://em.21dtv.com/songs/60000010.mkv +吴蕙君-一粒糖,http://em.21dtv.com/songs/60135017.mkv +戚薇-原谅他,http://em.21dtv.com/songs/60084478.mkv +樊子健-一路上,http://em.21dtv.com/songs/60127129.mkv +刘耿-夜阑珊,http://em.21dtv.com/songs/60125221.mkv +田振达-夜阑珊,http://em.21dtv.com/songs/60110423.mkv +王洋-月老说,http://em.21dtv.com/songs/60109532.mkv +泽旺多吉-呀拉索,http://em.21dtv.com/songs/60094573.mkv +三木科-呀啦嗦(演唱会),http://em.21dtv.com/songs/60070112.mkv +三木科-呀拉嗦,http://em.21dtv.com/songs/60068893.mkv +JAZMINE SULLIVAN-10 seconds,http://em.21dtv.com/songs/60062053.mkv +王菀之-月亮说,http://em.21dtv.com/songs/60056432.mkv +叶振棠-月亮神(演唱会),http://em.21dtv.com/songs/60056428.mkv +张学友-一路上,http://em.21dtv.com/songs/60053284.mkv +张学友-一路上(演唱会),http://em.21dtv.com/songs/60053283.mkv +林依轮-夜来烧,http://em.21dtv.com/songs/60052597.mkv +张卫健-眼泪说,http://em.21dtv.com/songs/60052077.mkv +降央卓玛-呀拉索,http://em.21dtv.com/songs/60051917.mkv +MADONNA-you ll see,http://em.21dtv.com/songs/60006554.mkv +毛鹏懿(Mao)-音乐人,http://em.21dtv.com/songs/60130522.mkv +周璇-忆良人,http://em.21dtv.com/songs/60115761.mkv +邱芸子-云林人,http://em.21dtv.com/songs/60056656.mkv +周璇-忆良人,http://em.21dtv.com/songs/60054123.mkv +忆如-忆良人,http://em.21dtv.com/songs/60054122.mkv +佚名-宜兰人,http://em.21dtv.com/songs/60054032.mkv +刘惜君-悠蓝曲,http://em.21dtv.com/songs/60133408.mkv +李雨-摇篮曲,http://em.21dtv.com/songs/60128101.mkv +尤静波-摇篮曲,http://em.21dtv.com/songs/60125446.mkv +邓超-摇篮曲,http://em.21dtv.com/songs/60107261.mkv +梦之旅-摇篮曲,http://em.21dtv.com/songs/60102417.mkv +网络歌手-娱乐圈,http://em.21dtv.com/songs/60088412.mkv +回音哥-摇篮曲,http://em.21dtv.com/songs/60084325.mkv +德德玛-摇篮曲,http://em.21dtv.com/songs/60084324.mkv +李晖-摇篮曲(演唱会),http://em.21dtv.com/songs/60084323.mkv +紫蘅-摇篮曲,http://em.21dtv.com/songs/60079036.mkv +童丽-摇篮曲,http://em.21dtv.com/songs/60079035.mkv +回音哥-摇篮曲(演唱会),http://em.21dtv.com/songs/60079034.mkv +荒山亮-艳凉曲,http://em.21dtv.com/songs/60066511.mkv +周华健-月亮曲,http://em.21dtv.com/songs/60056421.mkv +殷秀梅-摇篮曲,http://em.21dtv.com/songs/60052285.mkv +佚名-摇篮曲,http://em.21dtv.com/songs/60052284.mkv +香香-摇篮曲,http://em.21dtv.com/songs/60052283.mkv +王雪晶-摇篮曲,http://em.21dtv.com/songs/60052282.mkv +王宝珍-摇篮曲,http://em.21dtv.com/songs/60052281.mkv +顺子-摇篮曲,http://em.21dtv.com/songs/60052280.mkv +动力火车-摇篮曲,http://em.21dtv.com/songs/60052279.mkv +烟圈蔓延-忆流年,http://em.21dtv.com/songs/60128190.mkv +谭锡禧+和音团-有了你(演唱会),http://em.21dtv.com/songs/60084439.mkv +李国祥-有了你(演唱会),http://em.21dtv.com/songs/60084438.mkv +ROBYNN+KENDY-有了你,http://em.21dtv.com/songs/60079283.mkv +琼雪卓玛-有了你,http://em.21dtv.com/songs/60062843.mkv +佚名-原谅你(无原唱),http://em.21dtv.com/songs/60055990.mkv +陈百强-有了你,http://em.21dtv.com/songs/60055166.mkv +陈奕迅-有了你(演唱会),http://em.21dtv.com/songs/60055165.mkv +韩浚易-音乐梦,http://em.21dtv.com/songs/60117378.mkv +王二妮-榆林美,http://em.21dtv.com/songs/60113842.mkv +阿玻-月亮姆,http://em.21dtv.com/songs/60056416.mkv +刘栋升+钟萱-雨霖铃,http://em.21dtv.com/songs/60106649.mkv +黄灿-云来来,http://em.21dtv.com/songs/60089048.mkv +潘秀琼-亚里郎,http://em.21dtv.com/songs/60051895.mkv +讦谯龙-音乐课,http://em.21dtv.com/songs/60054323.mkv +SNH48-109(演),http://em.21dtv.com/songs/60099027.mkv +尹光-娱乐界(演唱会),http://em.21dtv.com/songs/60055537.mkv +金甲劲松-月亮花,http://em.21dtv.com/songs/60133011.mkv +杨小曼-玉兰花,http://em.21dtv.com/songs/60106970.mkv +盖鸣晖-玉梨魂(演唱会),http://em.21dtv.com/songs/60084465.mkv +李玟桐-月亮河,http://em.21dtv.com/songs/60079415.mkv +蔡义德-一粒汗,http://em.21dtv.com/songs/60079113.mkv +佚名-月亮河,http://em.21dtv.com/songs/60056409.mkv +叶文辉-月亮河,http://em.21dtv.com/songs/60056408.mkv +佚名-月亮河(慢三),http://em.21dtv.com/songs/60056407.mkv +林强-玉兰花,http://em.21dtv.com/songs/60055784.mkv +江蕙-玉兰花,http://em.21dtv.com/songs/60055783.mkv +杨千嬅-音乐盒(演唱会),http://em.21dtv.com/songs/60054321.mkv +徐小凤-音乐盒(演唱会),http://em.21dtv.com/songs/60054320.mkv +彭羚-音乐盒(演唱会),http://em.21dtv.com/songs/60054319.mkv +大巴山民歌团-月亮歌,http://em.21dtv.com/songs/60132326.mkv +马靓辳-you look good(你棒棒),http://em.21dtv.com/songs/60082417.mkv +韩素雅-162,http://em.21dtv.com/songs/60101196.mkv +J Boy'z-鸭梨大,http://em.21dtv.com/songs/60126529.mkv +至上励合-鸭梨大,http://em.21dtv.com/songs/60106218.mkv +陈慧娴-夜了点,http://em.21dtv.com/songs/60052614.mkv +王媛媛-悦澜词,http://em.21dtv.com/songs/60117913.mkv +田蕊妮-游乐场,http://em.21dtv.com/songs/60097096.mkv +春天-月亮船,http://em.21dtv.com/songs/60086997.mkv +DIVA-月の里侧,http://em.21dtv.com/songs/60079404.mkv +张萌萌-幽兰操(演唱会),http://em.21dtv.com/songs/60065389.mkv +卓依婷-月亮船,http://em.21dtv.com/songs/60056381.mkv +杨钰莹-月亮船,http://em.21dtv.com/songs/60056380.mkv +孟庭苇-月亮船,http://em.21dtv.com/songs/60056379.mkv +谢霆锋-游乐场(演唱会),http://em.21dtv.com/songs/60055003.mkv +王菲-幽兰操,http://em.21dtv.com/songs/60054962.mkv +隋柯名-引力波,http://em.21dtv.com/songs/60126418.mkv +恭硕良-原谅爱,http://em.21dtv.com/songs/60125589.mkv +尚雯婕-有了爱,http://em.21dtv.com/songs/60079978.mkv +姚俊羽-原来爱,http://em.21dtv.com/songs/60079367.mkv +BILLIE RAY MARTIN-your loving arms,http://em.21dtv.com/songs/60074202.mkv +姜孝萌-原来爱(演唱会),http://em.21dtv.com/songs/60071472.mkv +BEN-原来爱,http://em.21dtv.com/songs/60055925.mkv +周迅+桂纶镁-用力爱,http://em.21dtv.com/songs/60054872.mkv +阎奕格-也可以,http://em.21dtv.com/songs/60118122.mkv +阎奕格-也可以,http://em.21dtv.com/songs/60116325.mkv +郑家星-有颗星,http://em.21dtv.com/songs/60080856.mkv +童唱-一颗星,http://em.21dtv.com/songs/60053237.mkv +罗百吉-一颗心,http://em.21dtv.com/songs/60053232.mkv +金俊秀-依靠我,http://em.21dtv.com/songs/60126292.mkv +王冠乔-一棵树,http://em.21dtv.com/songs/60131635.mkv +YUKI-一开始,http://em.21dtv.com/songs/60053216.mkv +关淑怡-夜靠谁,http://em.21dtv.com/songs/60052583.mkv +刘德华-壹块钱,http://em.21dtv.com/songs/60054024.mkv +刘德华-一块钱,http://em.21dtv.com/songs/60053249.mkv +杨静-一口气,http://em.21dtv.com/songs/60053245.mkv +陈莉莉-迎客来,http://em.21dtv.com/songs/60079222.mkv +龙梅子-云开了,http://em.21dtv.com/songs/60068966.mkv +陶晶莹-叶枯过,http://em.21dtv.com/songs/60052508.mkv +蔡秋凤-一口饭,http://em.21dtv.com/songs/60053244.mkv +安又琪-因瞰朵,http://em.21dtv.com/songs/60067714.mkv +张秀卿-夜快车(无原唱),http://em.21dtv.com/songs/60052595.mkv +萧煌奇-银角仔,http://em.21dtv.com/songs/60101494.mkv +萧亚轩-雨季中,http://em.21dtv.com/songs/60055669.mkv +杨谨+谢艾妮-一加一,http://em.21dtv.com/songs/60124115.mkv +常定晨+孙莞-一加一,http://em.21dtv.com/songs/60112650.mkv +孙莞+常定晨-壹加壹,http://em.21dtv.com/songs/60112631.mkv +AGA+Gin Lee-一加一,http://em.21dtv.com/songs/60109082.mkv +车婉婉-一加一,http://em.21dtv.com/songs/60096889.mkv +良一+方阡翊-月甲夜,http://em.21dtv.com/songs/60086190.mkv +李玟-一加一,http://em.21dtv.com/songs/60080623.mkv +梁静茹+张智成-一家一,http://em.21dtv.com/songs/60053156.mkv +周渝民-一加一,http://em.21dtv.com/songs/60053147.mkv +邓颖芝-一加一,http://em.21dtv.com/songs/60053146.mkv +安东阳+云泉法师-愿吉祥,http://em.21dtv.com/songs/60119434.mkv +张津涤-雨夹雪,http://em.21dtv.com/songs/60117737.mkv +牧仁-郁金香,http://em.21dtv.com/songs/60095323.mkv +木子烁-忆家乡,http://em.21dtv.com/songs/60087058.mkv +蔡淳佳-郁金香,http://em.21dtv.com/songs/60067742.mkv +金婷婷-一江水,http://em.21dtv.com/songs/60123249.mkv +侃侃-一江水,http://em.21dtv.com/songs/60105589.mkv +李维-一江水,http://em.21dtv.com/songs/60103371.mkv +张崇基+张崇德-遇见神(演唱会),http://em.21dtv.com/songs/60065414.mkv +张敬轩-遇见神(演唱会),http://em.21dtv.com/songs/60055857.mkv +韩红-一江水,http://em.21dtv.com/songs/60053184.mkv +顾凯-一家人,http://em.21dtv.com/songs/60080530.mkv +群星-一家人,http://em.21dtv.com/songs/60070140.mkv +张澜澜-一家人,http://em.21dtv.com/songs/60053154.mkv +于立成-一家人,http://em.21dtv.com/songs/60053153.mkv +刘德华-一家人,http://em.21dtv.com/songs/60053152.mkv +林玉英-缘甲情,http://em.21dtv.com/songs/60122905.mkv +刘文娟+曹永廉-又记起,http://em.21dtv.com/songs/60055428.mkv +张杰-演技派,http://em.21dtv.com/songs/60096287.mkv +郑菲-遇见你,http://em.21dtv.com/songs/60126283.mkv +张旭-忆江南,http://em.21dtv.com/songs/60106839.mkv +谭赟-遇见你,http://em.21dtv.com/songs/60100470.mkv +颖宝儿+宋马超-遇见你,http://em.21dtv.com/songs/60098932.mkv +玄觞-遇见你,http://em.21dtv.com/songs/60098622.mkv +王美兰-遇见你(演唱会),http://em.21dtv.com/songs/60079357.mkv +童丽-鱼家女,http://em.21dtv.com/songs/60079326.mkv +杨钰莹-遇江南,http://em.21dtv.com/songs/60072761.mkv +刘克泉-遇见你,http://em.21dtv.com/songs/60066550.mkv +李雷-忆江南,http://em.21dtv.com/songs/60062600.mkv +佚名-遇见你,http://em.21dtv.com/songs/60055855.mkv +庞龙-遇见你,http://em.21dtv.com/songs/60055854.mkv +黄红英-遇见你,http://em.21dtv.com/songs/60055853.mkv +邓丽君-遇见你(演唱会),http://em.21dtv.com/songs/60055852.mkv +周璇-渔家女,http://em.21dtv.com/songs/60055554.mkv +姚苏蓉-渔家女,http://em.21dtv.com/songs/60055553.mkv +甜蜜的孩子-忆江南,http://em.21dtv.com/songs/60054119.mkv +李涵-忆江南,http://em.21dtv.com/songs/60054118.mkv +陈俊华-忆江南,http://em.21dtv.com/songs/60054117.mkv +吴欢-眼镜男,http://em.21dtv.com/songs/60052057.mkv +金志文+汪正正-一剪梅,http://em.21dtv.com/songs/60135845.mkv +钟明秋-一剪梅,http://em.21dtv.com/songs/60126310.mkv +尹正-一剪梅,http://em.21dtv.com/songs/60120482.mkv +黄渤+左小祖咒-一剪梅,http://em.21dtv.com/songs/60115550.mkv +君子-一剪梅,http://em.21dtv.com/songs/60105683.mkv +降央卓玛-一剪梅,http://em.21dtv.com/songs/60104577.mkv +卓依婷-一剪梅,http://em.21dtv.com/songs/60053166.mkv +张明敏-一剪梅,http://em.21dtv.com/songs/60053165.mkv +佚名-一剪梅,http://em.21dtv.com/songs/60053164.mkv +高胜美-一剪梅,http://em.21dtv.com/songs/60053163.mkv +费玉清-一剪梅,http://em.21dtv.com/songs/60053162.mkv +费玉清-一剪梅(演唱会),http://em.21dtv.com/songs/60053161.mkv +蔡国庆-一剪梅(演唱会),http://em.21dtv.com/songs/60053160.mkv +刘维-一激灵,http://em.21dtv.com/songs/60130126.mkv +刘维-一激灵,http://em.21dtv.com/songs/60128839.mkv +雷敏+刘刚-渔家乐,http://em.21dtv.com/songs/60079327.mkv +尹光-饮酒经(演唱会),http://em.21dtv.com/songs/60054370.mkv +无限甜心-一句话,http://em.21dtv.com/songs/60125628.mkv +陈艺搏-野菊花,http://em.21dtv.com/songs/60114230.mkv +肖洋-野菊花,http://em.21dtv.com/songs/60094254.mkv +陈冠希+TWINS-有几坏,http://em.21dtv.com/songs/60055151.mkv +陈冠希+钟欣桐-有机会,http://em.21dtv.com/songs/60055149.mkv +卓文萱-一句话,http://em.21dtv.com/songs/60053209.mkv +佚名-一句话,http://em.21dtv.com/songs/60053208.mkv +TAKE-一句话,http://em.21dtv.com/songs/60053207.mkv +佚名-野菊花,http://em.21dtv.com/songs/60052481.mkv +林志颖-野菊花,http://em.21dtv.com/songs/60052480.mkv +黄征-野菊花,http://em.21dtv.com/songs/60052479.mkv +林志颖-野菊花(演唱会),http://em.21dtv.com/songs/60052478.mkv +红豆-扬基歌,http://em.21dtv.com/songs/60089438.mkv +咪依鲁江-彝酒歌,http://em.21dtv.com/songs/60086133.mkv +佚名-饮酒歌,http://em.21dtv.com/songs/60054367.mkv +红豆-杨基歌(演唱会),http://em.21dtv.com/songs/60052207.mkv +佚名-烟酒歌,http://em.21dtv.com/songs/60051977.mkv +网络歌手-牙尖道,http://em.21dtv.com/songs/60088418.mkv +林姗-一间厝,http://em.21dtv.com/songs/60067702.mkv +许嘉凌+张力仁-一级棒,http://em.21dtv.com/songs/60092051.mkv +群星-一极棒,http://em.21dtv.com/songs/60088446.mkv +张力仁+宫平峻+许嘉凌+RIO刀-一级棒,http://em.21dtv.com/songs/60087794.mkv +谢金燕-一级棒(演唱会),http://em.21dtv.com/songs/60087047.mkv +PSOTM3N+四大天王+V5-一级棒(演唱会)(无原唱),http://em.21dtv.com/songs/60053144.mkv +杨静+陈随意-一句爱,http://em.21dtv.com/songs/60129283.mkv +金子晴-遇见爱,http://em.21dtv.com/songs/60100515.mkv +佚名-youre in love,http://em.21dtv.com/songs/60006609.mkv +刘若英-yes i do,http://em.21dtv.com/songs/60082407.mkv +陶妍霖-yes i do,http://em.21dtv.com/songs/60070422.mkv +仇泽-yes i do,http://em.21dtv.com/songs/60069160.mkv +罗中旭-yes i do,http://em.21dtv.com/songs/60006455.mkv +苏永康-野孩子,http://em.21dtv.com/songs/60097075.mkv +罗力威-樱花咒,http://em.21dtv.com/songs/60072733.mkv +小凤凤-饮乎醉,http://em.21dtv.com/songs/60054364.mkv +羽泉-野孩子,http://em.21dtv.com/songs/60052466.mkv +咻比嘟哗-野孩子,http://em.21dtv.com/songs/60052465.mkv +杨千嬅-野孩子(演唱会),http://em.21dtv.com/songs/60052464.mkv +陈洁丽-野孩子(演唱会),http://em.21dtv.com/songs/60052463.mkv +王识贤-饮呼醉(无原唱),http://em.21dtv.com/songs/60009064.mkv +杨艳-夜花吟,http://em.21dtv.com/songs/60121808.mkv +陈文清-烟花雨,http://em.21dtv.com/songs/60110638.mkv +张明辉-烟花雨,http://em.21dtv.com/songs/60104127.mkv +徐洪刚-怡红院,http://em.21dtv.com/songs/60081218.mkv +陈文清-烟花雨,http://em.21dtv.com/songs/60078995.mkv +佚名-咿嘿样(无原唱),http://em.21dtv.com/songs/60054021.mkv +施易男-樱花雪,http://em.21dtv.com/songs/60130373.mkv +周佩英-樱花雪,http://em.21dtv.com/songs/60125310.mkv +吴婉芳-烟花雪,http://em.21dtv.com/songs/60051962.mkv +许嵩-烟花笑,http://em.21dtv.com/songs/60051961.mkv +许嵩+阿布-烟花笑,http://em.21dtv.com/songs/60051960.mkv +曹轩宾-樱花舞,http://em.21dtv.com/songs/60096331.mkv +王菲-诱惑我(演唱会),http://em.21dtv.com/songs/60055490.mkv +胡杨林-樱花舞,http://em.21dtv.com/songs/60054477.mkv +张国荣-烟花烫,http://em.21dtv.com/songs/60091059.mkv +蒋雨宸-雨花石,http://em.21dtv.com/songs/60135692.mkv +廖日红-雨花石,http://em.21dtv.com/songs/60133640.mkv +石头-雨花石,http://em.21dtv.com/songs/60108745.mkv +李玉刚-雨花石,http://em.21dtv.com/songs/60088029.mkv +李雨儿-雨花石,http://em.21dtv.com/songs/60067737.mkv +童唱-雨花石,http://em.21dtv.com/songs/60055659.mkv +李玉刚+石头-雨花石,http://em.21dtv.com/songs/60055658.mkv +李雨+石头-雨花石(演唱会),http://em.21dtv.com/songs/60055657.mkv +蔡振南+孙安妮-烟花情,http://em.21dtv.com/songs/60051958.mkv +王玉玺-运河畔,http://em.21dtv.com/songs/60120772.mkv +六哲-诱惑party,http://em.21dtv.com/songs/60062707.mkv +望海高歌-樱花梦,http://em.21dtv.com/songs/60113593.mkv +佚名-樱花梦,http://em.21dtv.com/songs/60054473.mkv +沈建豪+裴琳-樱花梦,http://em.21dtv.com/songs/60054472.mkv +江志丰-饮乎茫,http://em.21dtv.com/songs/60054363.mkv +卢巧音-一毫米,http://em.21dtv.com/songs/60053137.mkv +许嵩-夜会美,http://em.21dtv.com/songs/60052577.mkv +甲子蕙-野花梦,http://em.21dtv.com/songs/60052474.mkv +林忆莲-烟花梦,http://em.21dtv.com/songs/60051954.mkv +郑莉莉-樱花泪,http://em.21dtv.com/songs/60130794.mkv +郑家星-樱花落,http://em.21dtv.com/songs/60122172.mkv +天籁天-雨花落,http://em.21dtv.com/songs/60121546.mkv +杨静-烟花泪,http://em.21dtv.com/songs/60117837.mkv +蒋寅-烟花弄,http://em.21dtv.com/songs/60104404.mkv +海涛-烟火恋,http://em.21dtv.com/songs/60097060.mkv +王晓娟-野狐岭,http://em.21dtv.com/songs/60086100.mkv +佚名-雨和泪,http://em.21dtv.com/songs/60055649.mkv +佚名-樱花恋,http://em.21dtv.com/songs/60054471.mkv +潘秀琼-樱花恋,http://em.21dtv.com/songs/60054470.mkv +胡美仪-樱花恋(演唱会),http://em.21dtv.com/songs/60054469.mkv +谢采妘-樱花泪,http://em.21dtv.com/songs/60054468.mkv +庾澄庆-樱花la tokyo(演唱会),http://em.21dtv.com/songs/60054459.mkv +郑进一-烟花泪,http://em.21dtv.com/songs/60051952.mkv +张洪量-烟花坑,http://em.21dtv.com/songs/60051951.mkv +HOTCHA-烟花祭,http://em.21dtv.com/songs/60092181.mkv +蔡幸娟-夜花娇,http://em.21dtv.com/songs/60052575.mkv +张学友-烟花句,http://em.21dtv.com/songs/60051950.mkv +HOTCHA-烟花际(演唱会),http://em.21dtv.com/songs/60051949.mkv +李明霖-雨黄昏,http://em.21dtv.com/songs/60131502.mkv +张继聪-永和号,http://em.21dtv.com/songs/60092651.mkv +王树芳-遇皇后,http://em.21dtv.com/songs/60055837.mkv +蔡琴-雨后花,http://em.21dtv.com/songs/60055654.mkv +A-LIN-樱花湖,http://em.21dtv.com/songs/60054466.mkv +王友良-樱花海,http://em.21dtv.com/songs/60054465.mkv +TWINS-眼红红,http://em.21dtv.com/songs/60052043.mkv +容祖儿+TWINS-眼红红(演唱会),http://em.21dtv.com/songs/60052042.mkv +陈坤-烟花火,http://em.21dtv.com/songs/60051948.mkv +唐章勇-鱼火锅,http://em.21dtv.com/songs/60132310.mkv +严爵-烟灰缸,http://em.21dtv.com/songs/60116503.mkv +关智斌-眼红馆,http://em.21dtv.com/songs/60052041.mkv +张信哲-眼红馆(演唱会),http://em.21dtv.com/songs/60052040.mkv +林育群-雨后风,http://em.21dtv.com/songs/60100218.mkv +周璇-银花飞,http://em.21dtv.com/songs/60054346.mkv +谢霆锋-玉蝴蝶,http://em.21dtv.com/songs/60119980.mkv +安东阳+樊桐舟-语花蝶,http://em.21dtv.com/songs/60116721.mkv +刀刀刀-药和刀,http://em.21dtv.com/songs/60104807.mkv +谢霆锋-玉蝴蝶,http://em.21dtv.com/songs/60055780.mkv +杨千嬅-玉蝴蝶(演唱会),http://em.21dtv.com/songs/60055779.mkv +李克勤-玉蝴蝶(演唱会),http://em.21dtv.com/songs/60055778.mkv +沈芯羽-雨好大,http://em.21dtv.com/songs/60055648.mkv +佚名-银蝴蝶,http://em.21dtv.com/songs/60054345.mkv +周子琰-萤火虫,http://em.21dtv.com/songs/60131267.mkv +许嘉文-萤火虫,http://em.21dtv.com/songs/60128392.mkv +夜郎金鑫-萤火虫,http://em.21dtv.com/songs/60107630.mkv +儿歌-莹火虫,http://em.21dtv.com/songs/60090647.mkv +章莹莹-萤火虫,http://em.21dtv.com/songs/60079223.mkv +陈羿文-萤火虫,http://em.21dtv.com/songs/60068933.mkv +庄莹-萤火虫,http://em.21dtv.com/songs/60054524.mkv +周丽淇-萤火虫,http://em.21dtv.com/songs/60054523.mkv +张杰-萤火虫,http://em.21dtv.com/songs/60054522.mkv +伊能静-萤火虫,http://em.21dtv.com/songs/60054521.mkv +王菲-萤火虫,http://em.21dtv.com/songs/60054520.mkv +童唱-萤火虫,http://em.21dtv.com/songs/60054519.mkv +林依晨-萤火虫,http://em.21dtv.com/songs/60054518.mkv +动画-萤火虫,http://em.21dtv.com/songs/60054517.mkv +董文华-萤火虫,http://em.21dtv.com/songs/60054516.mkv +SWEETY-樱花草,http://em.21dtv.com/songs/60054462.mkv +佚名-烟花翠,http://em.21dtv.com/songs/60051947.mkv +李碧华-烟花翠,http://em.21dtv.com/songs/60051946.mkv +赵雅萱-缘和爱,http://em.21dtv.com/songs/60122153.mkv +王盼盼-樱花爱,http://em.21dtv.com/songs/60054460.mkv +詹瑞文-阴公猪,http://em.21dtv.com/songs/60112230.mkv +关建辉-月光谣,http://em.21dtv.com/songs/60096929.mkv +顾凯-云光缘,http://em.21dtv.com/songs/60056645.mkv +谢霆锋-玉观音,http://em.21dtv.com/songs/60055774.mkv +冯曦妤-阳光雨,http://em.21dtv.com/songs/60052192.mkv +罗筱芸-涯甘愿,http://em.21dtv.com/songs/60051879.mkv +VAV-月光下,http://em.21dtv.com/songs/60130002.mkv +SNH48-月光下,http://em.21dtv.com/songs/60124999.mkv +谢有才-阳谷行,http://em.21dtv.com/songs/60122125.mkv +降央卓玛-月光下,http://em.21dtv.com/songs/60110654.mkv +钟心-月光下,http://em.21dtv.com/songs/60067759.mkv +江美琪-月光下,http://em.21dtv.com/songs/60056350.mkv +洪玲-有个性,http://em.21dtv.com/songs/60055130.mkv +郭经纬-一个吻,http://em.21dtv.com/songs/60123244.mkv +刘孟哲-一个吻,http://em.21dtv.com/songs/60087046.mkv +沈芳如-月光舞(无原唱),http://em.21dtv.com/songs/60056348.mkv +陈星全-一个她,http://em.21dtv.com/songs/60118161.mkv +周笔畅-鱼罐头,http://em.21dtv.com/songs/60055525.mkv +天堂乐队-硬骨头,http://em.21dtv.com/songs/60054561.mkv +戚薇-有个人,http://em.21dtv.com/songs/60135297.mkv +虞明妹-一个人,http://em.21dtv.com/songs/60128376.mkv +许邦义-一个人,http://em.21dtv.com/songs/60127395.mkv +赖伟锋-一个人,http://em.21dtv.com/songs/60126222.mkv +刘忻-一个人,http://em.21dtv.com/songs/60125187.mkv +王旭鹏-一个人,http://em.21dtv.com/songs/60121908.mkv +微笑-一个人,http://em.21dtv.com/songs/60121709.mkv +同恩-一个人,http://em.21dtv.com/songs/60118431.mkv +张艺兴-一个人,http://em.21dtv.com/songs/60115923.mkv +张姝-一个人,http://em.21dtv.com/songs/60115148.mkv +韩红-一个人,http://em.21dtv.com/songs/60111522.mkv +何紫琪-一个人,http://em.21dtv.com/songs/60109966.mkv +费翔-一个人,http://em.21dtv.com/songs/60108015.mkv +方敏雅-一个人,http://em.21dtv.com/songs/60107757.mkv +星弟-一个人,http://em.21dtv.com/songs/60106895.mkv +潘玮柏-一个人,http://em.21dtv.com/songs/60101434.mkv +黄铃凯+吴青峰-一个人,http://em.21dtv.com/songs/60099630.mkv +许科-夜归人,http://em.21dtv.com/songs/60098770.mkv +铃凯-一个人,http://em.21dtv.com/songs/60093781.mkv +林慧萍-一个人,http://em.21dtv.com/songs/60088106.mkv +陈珊妮-一个人,http://em.21dtv.com/songs/60087042.mkv +储毅-夜归人,http://em.21dtv.com/songs/60087037.mkv +黑豹乐队-一个人(演唱会),http://em.21dtv.com/songs/60086109.mkv +黄铃凯-一个人,http://em.21dtv.com/songs/60085325.mkv +詹雅雯-一个人,http://em.21dtv.com/songs/60079094.mkv +纹面乐团-一个人,http://em.21dtv.com/songs/60079093.mkv +纪晓斌-一个人,http://em.21dtv.com/songs/60079092.mkv +冯圣雅-一个人,http://em.21dtv.com/songs/60072704.mkv +翊馨-一个人,http://em.21dtv.com/songs/60071420.mkv +成宥利-一个人,http://em.21dtv.com/songs/60065327.mkv +张学友-有个人,http://em.21dtv.com/songs/60055128.mkv +张学友-有个人(演唱会),http://em.21dtv.com/songs/60055127.mkv +张陵乐-一个人,http://em.21dtv.com/songs/60052992.mkv +袁小迪-一个人,http://em.21dtv.com/songs/60052991.mkv +伊能静-一个人,http://em.21dtv.com/songs/60052990.mkv +杨乃文-一个人,http://em.21dtv.com/songs/60052989.mkv +伍佰-一个人,http://em.21dtv.com/songs/60052988.mkv +王建杰-一个人,http://em.21dtv.com/songs/60052987.mkv +任贤齐-一个人,http://em.21dtv.com/songs/60052986.mkv +刘德华-一个人,http://em.21dtv.com/songs/60052985.mkv +刘冲-一个人,http://em.21dtv.com/songs/60052984.mkv +林忆莲-一个人,http://em.21dtv.com/songs/60052983.mkv +姜育恒-一个人,http://em.21dtv.com/songs/60052982.mkv +胡琳-一个人,http://em.21dtv.com/songs/60052981.mkv +段千寻-一个人,http://em.21dtv.com/songs/60052980.mkv +陈冠蒲-一个人,http://em.21dtv.com/songs/60052979.mkv +蔡依林-一个人,http://em.21dtv.com/songs/60052978.mkv +蔡妍-一个人,http://em.21dtv.com/songs/60052977.mkv +杨乃文-一个人(演唱会),http://em.21dtv.com/songs/60052976.mkv +林子祥-一个人(演唱会),http://em.21dtv.com/songs/60052975.mkv +陈晓东-一个人(演唱会),http://em.21dtv.com/songs/60052974.mkv +龙飘飘-夜归人,http://em.21dtv.com/songs/60052570.mkv +静婷-夜归人(演唱会),http://em.21dtv.com/songs/60052569.mkv +任珏-阳光rock,http://em.21dtv.com/songs/60052167.mkv +叶璐-月光曲,http://em.21dtv.com/songs/60125266.mkv +袁娅维+李行亮-鱼光曲,http://em.21dtv.com/songs/60070190.mkv +张也-渔光曲,http://em.21dtv.com/songs/60055547.mkv +尤雅-渔光曲,http://em.21dtv.com/songs/60055546.mkv +关牧村-渔光曲,http://em.21dtv.com/songs/60055545.mkv +梁汉文+许志安+张卫健+苏永康[演]-友共情,http://em.21dtv.com/songs/60055055.mkv +古巨基-友共情,http://em.21dtv.com/songs/60055054.mkv +郑伊健-友共情(演唱会),http://em.21dtv.com/songs/60055053.mkv +古巨基-友共情(演唱会),http://em.21dtv.com/songs/60055052.mkv +古巨基+容祖儿-友共情(演唱会),http://em.21dtv.com/songs/60055051.mkv +翦蕤-秧歌情,http://em.21dtv.com/songs/60052151.mkv +胡彦斌-有过你,http://em.21dtv.com/songs/60107955.mkv +童唱-月姑娘,http://em.21dtv.com/songs/60056306.mkv +古巨基-一光年,http://em.21dtv.com/songs/60053136.mkv +5566-一光年,http://em.21dtv.com/songs/60053135.mkv +于文华-野姑娘,http://em.21dtv.com/songs/60052462.mkv +HAYA乐团-英格玛,http://em.21dtv.com/songs/60120214.mkv +陈盈洁-一个谜,http://em.21dtv.com/songs/60096020.mkv +吴淑敏-月光暝,http://em.21dtv.com/songs/60056344.mkv +王传越-雁归来,http://em.21dtv.com/songs/60112845.mkv +马秋华-月光泪,http://em.21dtv.com/songs/60066564.mkv +许茹芸-一公里,http://em.21dtv.com/songs/60053131.mkv +郭燕-雁归来,http://em.21dtv.com/songs/60052129.mkv +黑豹乐队-眼光里,http://em.21dtv.com/songs/60052039.mkv +蔡依林-you gotta know,http://em.21dtv.com/songs/60006547.mkv +熊梓淇-月光诀,http://em.21dtv.com/songs/60125887.mkv +晓月-夜孤寂,http://em.21dtv.com/songs/60099269.mkv +儿歌-掩公鸡(无原唱),http://em.21dtv.com/songs/60089630.mkv +佚名-you got it,http://em.21dtv.com/songs/60006545.mkv +王又萱-月光海,http://em.21dtv.com/songs/60131644.mkv +林俊逸-月光河,http://em.21dtv.com/songs/60084492.mkv +晟瑶-月光海,http://em.21dtv.com/songs/60068962.mkv +豪记大对唱-月光河,http://em.21dtv.com/songs/60056338.mkv +蔡小虎+林姗-月光河,http://em.21dtv.com/songs/60056337.mkv +佚名-月光河(无原唱),http://em.21dtv.com/songs/60056336.mkv +钟彩媚-月光光,http://em.21dtv.com/songs/60129688.mkv +龙智祥-月光光,http://em.21dtv.com/songs/60122320.mkv +关牧村-渔光歌,http://em.21dtv.com/songs/60090666.mkv +江志丰-月光光,http://em.21dtv.com/songs/60067758.mkv +许美静-月光光,http://em.21dtv.com/songs/60056333.mkv +童唱-月光光,http://em.21dtv.com/songs/60056332.mkv +李宝莺-月光光,http://em.21dtv.com/songs/60056331.mkv +关智斌-月光光,http://em.21dtv.com/songs/60056330.mkv +张德兰-月光光(演唱会),http://em.21dtv.com/songs/60056329.mkv +佚名-月光歌,http://em.21dtv.com/songs/60056328.mkv +刘洁玲-月光歌,http://em.21dtv.com/songs/60056327.mkv +因果兄弟-月高高,http://em.21dtv.com/songs/60056305.mkv +KEITH URBAN-you gonna fly,http://em.21dtv.com/songs/60074184.mkv +范冰冰-勇敢飞,http://em.21dtv.com/songs/60054838.mkv +蔡幸娟-杨贵妃,http://em.21dtv.com/songs/60052202.mkv +张然聍-有过的,http://em.21dtv.com/songs/60109324.mkv +张然聍-有过的,http://em.21dtv.com/songs/60096942.mkv +戴梅君-夜孤单,http://em.21dtv.com/songs/60070128.mkv +河图-阳关调,http://em.21dtv.com/songs/60052162.mkv +许嵩-雁归巢,http://em.21dtv.com/songs/60135735.mkv +河图-云归处,http://em.21dtv.com/songs/60128166.mkv +许嵩-燕归巢,http://em.21dtv.com/songs/60119962.mkv +海生-雁归程,http://em.21dtv.com/songs/60117897.mkv +张靓颖+张杰-燕归巢,http://em.21dtv.com/songs/60109340.mkv +周艳泓-一个菜,http://em.21dtv.com/songs/60071413.mkv +言承旭-一公尺,http://em.21dtv.com/songs/60053130.mkv +万里-勇敢吧,http://em.21dtv.com/songs/60123584.mkv +林英美-夜港边,http://em.21dtv.com/songs/60095708.mkv +孙维唯-月光杯,http://em.21dtv.com/songs/60079407.mkv +谢霆锋-夜光杯,http://em.21dtv.com/songs/60052566.mkv +林姗-夜港边,http://em.21dtv.com/songs/60052564.mkv +DES'REE-you gotta be,http://em.21dtv.com/songs/60006546.mkv +江若琳-勇敢爱,http://em.21dtv.com/songs/60129327.mkv +蔡佳莹-月光啊,http://em.21dtv.com/songs/60128372.mkv +庄心妍-勇敢爱,http://em.21dtv.com/songs/60126837.mkv +庄心妍-勇敢爱,http://em.21dtv.com/songs/60118544.mkv +Mi2-勇敢爱,http://em.21dtv.com/songs/60103797.mkv +张木易+MIKI-勇敢爱,http://em.21dtv.com/songs/60079246.mkv +张靓颖-勇敢爱,http://em.21dtv.com/songs/60054826.mkv +阮经天+石周靓-勇敢爱,http://em.21dtv.com/songs/60054825.mkv +鲁珺琦-勇敢爱,http://em.21dtv.com/songs/60054824.mkv +THE RED JUMPSUIT APP-your guardian angel,http://em.21dtv.com/songs/60006595.mkv +钟嘉欣-预防针,http://em.21dtv.com/songs/60070194.mkv +甄妮-一份真(演唱会),http://em.21dtv.com/songs/60052936.mkv +TENSION-一分钟,http://em.21dtv.com/songs/60052929.mkv +徐小凤-夜风中(演唱会),http://em.21dtv.com/songs/60052563.mkv +阿依果-玉妃引,http://em.21dtv.com/songs/60122210.mkv +韩磊-云飞扬,http://em.21dtv.com/songs/60079438.mkv +GALA-young for you,http://em.21dtv.com/songs/60074196.mkv +郑智化-一封信,http://em.21dtv.com/songs/60052943.mkv +何润东-一封信,http://em.21dtv.com/songs/60052942.mkv +费翔-一封信,http://em.21dtv.com/songs/60052941.mkv +费玉清-忆芙蓉,http://em.21dtv.com/songs/60054115.mkv +陈慧琳-有福气,http://em.21dtv.com/songs/60055122.mkv +陈慧琳-有福气(演唱会),http://em.21dtv.com/songs/60055121.mkv +王雪晶-一分钱,http://em.21dtv.com/songs/60052927.mkv +童唱-一分钱,http://em.21dtv.com/songs/60052926.mkv +KELLY CLARKSON-you found me,http://em.21dtv.com/songs/60082416.mkv +刘欢-亚非拉(军旅),http://em.21dtv.com/songs/60090715.mkv +彭羚-夜风铃,http://em.21dtv.com/songs/60052562.mkv +简美妍-要疯了,http://em.21dtv.com/songs/60052365.mkv +Super Junior M-一分后,http://em.21dtv.com/songs/60099043.mkv +徐小凤-一幅画,http://em.21dtv.com/songs/60052946.mkv +杜玫-雁飞飞,http://em.21dtv.com/songs/60122879.mkv +方伊琪+李丽霞-燕分飞(演唱会),http://em.21dtv.com/songs/60079017.mkv +谢金燕-要发达,http://em.21dtv.com/songs/60126207.mkv +天庥-要发财,http://em.21dtv.com/songs/60112607.mkv +林保怡-一分痴,http://em.21dtv.com/songs/60052925.mkv +后来者-月儿圆,http://em.21dtv.com/songs/60128877.mkv +BEAST-YeY,http://em.21dtv.com/songs/60116439.mkv +张伯宏-月儿圆,http://em.21dtv.com/songs/60056304.mkv +杨坤-月儿圆,http://em.21dtv.com/songs/60056303.mkv +赵秀兰-月儿谣,http://em.21dtv.com/songs/60056301.mkv +王喆-鱼儿笑,http://em.21dtv.com/songs/60106105.mkv +彭佳慧-月儿弯,http://em.21dtv.com/songs/60056287.mkv +孙楠-忆儿时,http://em.21dtv.com/songs/60127900.mkv +佚名-忆儿时,http://em.21dtv.com/songs/60054114.mkv +童唱-忆儿时,http://em.21dtv.com/songs/60054113.mkv +董事长乐团-一二三,http://em.21dtv.com/songs/60052904.mkv +陈盈洁-一二三,http://em.21dtv.com/songs/60052903.mkv +FUSION-一二三,http://em.21dtv.com/songs/60052902.mkv +HOTCHA-一二三(演唱会),http://em.21dtv.com/songs/60052901.mkv +GLORIA ESTEFAN-123,http://em.21dtv.com/songs/60000008.mkv +佚名-1 2 step,http://em.21dtv.com/songs/60000004.mkv +黄思婷-云儿飘,http://em.21dtv.com/songs/60102971.mkv +HKT48-12秒,http://em.21dtv.com/songs/60111617.mkv +王焱+尤嘉-眼儿媚,http://em.21dtv.com/songs/60052036.mkv +MR.EJ-游恩杰,http://em.21dtv.com/songs/60110781.mkv +刘以达-一额汗(演唱会),http://em.21dtv.com/songs/60052898.mkv +崔来宾-燕儿飞,http://em.21dtv.com/songs/60129032.mkv +至上励合-咬耳朵,http://em.21dtv.com/songs/60052345.mkv +炎亚纶+G.NA-2014/1/2,http://em.21dtv.com/songs/60101666.mkv +何韵诗-有得做(演唱会),http://em.21dtv.com/songs/60055104.mkv +张蓉蓉-一定赢,http://em.21dtv.com/songs/60135233.mkv +王爱华-一段缘,http://em.21dtv.com/songs/60129405.mkv +阿兰-一朵云,http://em.21dtv.com/songs/60126342.mkv +黄堃-月灯谣,http://em.21dtv.com/songs/60118210.mkv +王爱华-一段缘,http://em.21dtv.com/songs/60116157.mkv +望海高歌-一段缘,http://em.21dtv.com/songs/60115977.mkv +太阳部落-一朵云,http://em.21dtv.com/songs/60104014.mkv +南玛子呷-一朵云,http://em.21dtv.com/songs/60103132.mkv +潘玮柏-伊甸园,http://em.21dtv.com/songs/60101435.mkv +饶燕婷-伊甸园,http://em.21dtv.com/songs/60053953.mkv +李玟-伊甸园,http://em.21dtv.com/songs/60053952.mkv +李玟-伊甸园(演唱会),http://em.21dtv.com/songs/60053951.mkv +卓依婷-一对一,http://em.21dtv.com/songs/60052891.mkv +梁静茹-一对一,http://em.21dtv.com/songs/60052890.mkv +蔡一杰-有点邪,http://em.21dtv.com/songs/60093118.mkv +南拳妈妈-野东西,http://em.21dtv.com/songs/60087499.mkv +林嘉欣-有点想,http://em.21dtv.com/songs/60055109.mkv +蔡俊涛-一点通,http://em.21dtv.com/songs/60107194.mkv +汪苏泷-有点甜,http://em.21dtv.com/songs/60080281.mkv +汪苏泷+BY2-有点甜,http://em.21dtv.com/songs/60079276.mkv +朱茵-原地跳,http://em.21dtv.com/songs/60055914.mkv +晓枫-一滴水,http://em.21dtv.com/songs/60108537.mkv +傅佩嘉-一对人,http://em.21dtv.com/songs/60092293.mkv +秋裤大叔-一段情,http://em.21dtv.com/songs/60108752.mkv +林峰-一刀切,http://em.21dtv.com/songs/60070135.mkv +赵小兵-一段情,http://em.21dtv.com/songs/60068913.mkv +张伟文-一段情,http://em.21dtv.com/songs/60052881.mkv +彭健新+钟镇涛-一段情,http://em.21dtv.com/songs/60052880.mkv +钟镇涛-一段情(演唱会),http://em.21dtv.com/songs/60052879.mkv +RIHANNA-you da one,http://em.21dtv.com/songs/60074180.mkv +袁汉橹-忆当年,http://em.21dtv.com/songs/60132873.mkv +袁汉橹-忆当年,http://em.21dtv.com/songs/60131802.mkv +游鸿明-有点难,http://em.21dtv.com/songs/60109499.mkv +古巨基-约定你,http://em.21dtv.com/songs/60056255.mkv +ON-LINE-约定你,http://em.21dtv.com/songs/60056254.mkv +游媄镁-遇到你(无原唱),http://em.21dtv.com/songs/60055836.mkv +言承旭-要定你,http://em.21dtv.com/songs/60052361.mkv +言承旭-要定你(演唱会),http://em.21dtv.com/songs/60052360.mkv +李玟-要定你(演唱会),http://em.21dtv.com/songs/60052359.mkv +陈玉建-有点懵,http://em.21dtv.com/songs/60122240.mkv +佚名-有点梦,http://em.21dtv.com/songs/60055108.mkv +李度-有点梦,http://em.21dtv.com/songs/60055107.mkv +SNH48-源动力,http://em.21dtv.com/songs/60127680.mkv +SNH48-源动力,http://em.21dtv.com/songs/60120240.mkv +鹿晗-原动力,http://em.21dtv.com/songs/60118205.mkv +陶燕青-一朵莲,http://em.21dtv.com/songs/60114235.mkv +可儿-异地恋,http://em.21dtv.com/songs/60107563.mkv +周杨-一滴泪,http://em.21dtv.com/songs/60052850.mkv +张学友-一滴泪,http://em.21dtv.com/songs/60052849.mkv +佚名-窑洞里,http://em.21dtv.com/songs/60052244.mkv +周杰伦+嘻游记-夜店咖,http://em.21dtv.com/songs/60107601.mkv +周杰伦+嘻游记-夜店咖,http://em.21dtv.com/songs/60106711.mkv +朱海君-一朵花,http://em.21dtv.com/songs/60125677.mkv +断肠-云端候,http://em.21dtv.com/songs/60105929.mkv +马句-一滴汗,http://em.21dtv.com/songs/60101575.mkv +张玮-一点坏,http://em.21dtv.com/songs/60098359.mkv +汪明荃+罗文-亚帝花,http://em.21dtv.com/songs/60063010.mkv +MATZKA-一朵花(演唱会),http://em.21dtv.com/songs/60061811.mkv +慕容晓晓-有点糊(演唱会),http://em.21dtv.com/songs/60055106.mkv +尊华-一定会,http://em.21dtv.com/songs/60052869.mkv +谢霆锋-一点红,http://em.21dtv.com/songs/60052860.mkv +陈轩毅-运动歌,http://em.21dtv.com/songs/60103694.mkv +谭咏麟-一点光,http://em.21dtv.com/songs/60066517.mkv +TWINS+苦荣-鱼蛋歌,http://em.21dtv.com/songs/60055516.mkv +周杰伦-一点点,http://em.21dtv.com/songs/60135050.mkv +周杰伦-一点点,http://em.21dtv.com/songs/60133486.mkv +周杰伦-一点点,http://em.21dtv.com/songs/60130196.mkv +林宥嘉-一点点,http://em.21dtv.com/songs/60125773.mkv +林宥嘉-一点点,http://em.21dtv.com/songs/60124126.mkv +周杰伦-一点点,http://em.21dtv.com/songs/60123756.mkv +李瑞丰-一点点,http://em.21dtv.com/songs/60100151.mkv +焦渊-一点点,http://em.21dtv.com/songs/60086106.mkv +姚璇秋-怨叠叠,http://em.21dtv.com/songs/60056177.mkv +郑伊健-一对对,http://em.21dtv.com/songs/60052885.mkv +郑伊健-一对对(演唱会),http://em.21dtv.com/songs/60052884.mkv +许志安-一丁点,http://em.21dtv.com/songs/60052866.mkv +胡佳琛-一点点,http://em.21dtv.com/songs/60052856.mkv +伍佰-一点点(演唱会),http://em.21dtv.com/songs/60052855.mkv +许雅涵-ya da di,http://em.21dtv.com/songs/60006443.mkv +一绫-袂冻爱,http://em.21dtv.com/songs/60064536.mkv +李琦-一场雨,http://em.21dtv.com/songs/60116014.mkv +蔡秋凤-一寸心,http://em.21dtv.com/songs/60123132.mkv +林宗兴-烟草香,http://em.21dtv.com/songs/60113699.mkv +周传雄-樱吹雪,http://em.21dtv.com/songs/60106695.mkv +周传雄-樱吹雪,http://em.21dtv.com/songs/60105704.mkv +肖阳-忆春香(演唱会),http://em.21dtv.com/songs/60084392.mkv +锦绣二重唱-一串心,http://em.21dtv.com/songs/60052816.mkv +玄鸟传说-月缠纱,http://em.21dtv.com/songs/60128209.mkv +玄鸟传说-月缠纱,http://em.21dtv.com/songs/60113840.mkv +曹轩宾-耀出色,http://em.21dtv.com/songs/60080113.mkv +辛晓琪-you cant say,http://em.21dtv.com/songs/60006526.mkv +庄学忠-摇船曲,http://em.21dtv.com/songs/60052263.mkv +佚名-摇船曲,http://em.21dtv.com/songs/60052262.mkv +谢雷+杨燕-摇船曲(演唱会),http://em.21dtv.com/songs/60052261.mkv +凤飞飞-摇船曲(无原唱),http://em.21dtv.com/songs/60052260.mkv +祖歌-迎春梅,http://em.21dtv.com/songs/60079220.mkv +尤雅-一场梦,http://em.21dtv.com/songs/60052803.mkv +四枝笔乐团-一场空,http://em.21dtv.com/songs/60096890.mkv +紫龄-一场空(无原唱),http://em.21dtv.com/songs/60052801.mkv +郑志勇-迎城隍,http://em.21dtv.com/songs/60127468.mkv +曾艳-油菜花,http://em.21dtv.com/songs/60110250.mkv +张天甫-油茶花,http://em.21dtv.com/songs/60108493.mkv +顾凯-油菜花,http://em.21dtv.com/songs/60108154.mkv +郑少秋-迎春花,http://em.21dtv.com/songs/60093290.mkv +卓依婷-迎春花,http://em.21dtv.com/songs/60092382.mkv +林志颖-游车河,http://em.21dtv.com/songs/60091474.mkv +恶武2KD5-雨彩虹,http://em.21dtv.com/songs/60079337.mkv +刘姝辰-迎春花,http://em.21dtv.com/songs/60079217.mkv +阿才+龚洁影-迎春花,http://em.21dtv.com/songs/60079216.mkv +曾强-油菜花,http://em.21dtv.com/songs/60065391.mkv +柳影虹-洋葱花(演唱会),http://em.21dtv.com/songs/60062704.mkv +RUBBER BAND-游车河,http://em.21dtv.com/songs/60054996.mkv +RUBBER BAND-游车河(演唱会),http://em.21dtv.com/songs/60054995.mkv +成龙-油菜花,http://em.21dtv.com/songs/60054986.mkv +张露-迎春花,http://em.21dtv.com/songs/60054496.mkv +杨迎-迎春花,http://em.21dtv.com/songs/60054495.mkv +杨燕-迎春花,http://em.21dtv.com/songs/60054494.mkv +魏依曼-迎春花,http://em.21dtv.com/songs/60054493.mkv +蔡立儿+刘锡明-迎春花,http://em.21dtv.com/songs/60054492.mkv +费玉清-迎春花(无原唱),http://em.21dtv.com/songs/60054490.mkv +张杰-演唱会,http://em.21dtv.com/songs/60052106.mkv +陈奕迅-演唱会,http://em.21dtv.com/songs/60052105.mkv +陈奕迅-演唱会(HD演唱会),http://em.21dtv.com/songs/60052104.mkv +佚名-your cheating heart,http://em.21dtv.com/songs/60006593.mkv +方展荣-游春歌,http://em.21dtv.com/songs/60054997.mkv +佚名-迎春歌,http://em.21dtv.com/songs/60054489.mkv +巧千金-要长高,http://em.21dtv.com/songs/60052401.mkv +男才女貌-耀出彩,http://em.21dtv.com/songs/60088360.mkv +吴品醇-忆长安,http://em.21dtv.com/songs/60054131.mkv +谢雷-一杯醉,http://em.21dtv.com/songs/60114795.mkv +钟欣潼-一辈子,http://em.21dtv.com/songs/60100529.mkv +钟芹-一辈子,http://em.21dtv.com/songs/60088814.mkv +小雪-一辈子,http://em.21dtv.com/songs/60052758.mkv +张信哲-月半圆,http://em.21dtv.com/songs/60056283.mkv +黎明-一比一,http://em.21dtv.com/songs/60052776.mkv +范玮琪-一比一,http://em.21dtv.com/songs/60052774.mkv +沈石磊-要不要,http://em.21dtv.com/songs/60052358.mkv +蓝心湄-要不要(无原唱),http://em.21dtv.com/songs/60052357.mkv +阳漾-一边歇,http://em.21dtv.com/songs/60072699.mkv +刘双双-月半弯,http://em.21dtv.com/songs/60104814.mkv +胡琳-月半弯,http://em.21dtv.com/songs/60096928.mkv +陈升-一佰万,http://em.21dtv.com/songs/60095983.mkv +陈坤-月半弯,http://em.21dtv.com/songs/60056278.mkv +张学友-月半弯(演唱会),http://em.21dtv.com/songs/60056277.mkv +泳儿-月半弯(演唱会),http://em.21dtv.com/songs/60056275.mkv +侧田-月半弯(演唱会),http://em.21dtv.com/songs/60056274.mkv +柯以敏-拥抱我,http://em.21dtv.com/songs/60054586.mkv +光良-拥抱我,http://em.21dtv.com/songs/60054585.mkv +新宝岛康乐队-一百万,http://em.21dtv.com/songs/60052732.mkv +黄一飞-一百万,http://em.21dtv.com/songs/60052731.mkv +大买麦乐团-药别停,http://em.21dtv.com/songs/60106740.mkv +王菲-一半天,http://em.21dtv.com/songs/60091734.mkv +陈思涵-雨不停,http://em.21dtv.com/songs/60088873.mkv +张韶涵-摇摆头,http://em.21dtv.com/songs/60052256.mkv +SPY-摇摆shake,http://em.21dtv.com/songs/60079032.mkv +183CLUB-一把伞,http://em.21dtv.com/songs/60052716.mkv +蔡妍-摇摆shake,http://em.21dtv.com/songs/60052252.mkv +葛仲珊-一杯起,http://em.21dtv.com/songs/60108866.mkv +葛仲珊-一杯起,http://em.21dtv.com/songs/60107973.mkv +佚名-迎宾曲,http://em.21dtv.com/songs/60054488.mkv +李谷一-迎宾曲,http://em.21dtv.com/songs/60054487.mkv +李谷一-迎宾曲(演唱会),http://em.21dtv.com/songs/60054486.mkv +刘思涵-拥抱你,http://em.21dtv.com/songs/60086151.mkv +刘德华-拥抱你,http://em.21dtv.com/songs/60054584.mkv +2MORO-一百年,http://em.21dtv.com/songs/60052730.mkv +RUBBER BAND-夜不眠(演唱会),http://em.21dtv.com/songs/60052549.mkv +黄妃-夜半瞑,http://em.21dtv.com/songs/60052536.mkv +王岩-一半脸,http://em.21dtv.com/songs/60052744.mkv +杨洪基-杨白劳,http://em.21dtv.com/songs/60052199.mkv +施文彬-一杯酒,http://em.21dtv.com/songs/60095559.mkv +晓依-一杯酒,http://em.21dtv.com/songs/60084341.mkv +郭燕-遇不见,http://em.21dtv.com/songs/60068951.mkv +钟舒漫-野百合,http://em.21dtv.com/songs/60052451.mkv +赖慧如-摇摆狗,http://em.21dtv.com/songs/60120962.mkv +蔡恒-夜不归,http://em.21dtv.com/songs/60086102.mkv +戴梦梦-一笔过,http://em.21dtv.com/songs/60052779.mkv +王绎龙-摇摆哥,http://em.21dtv.com/songs/60052254.mkv +柳影虹-一百分(演唱会),http://em.21dtv.com/songs/60079073.mkv +仓木麻衣-your best friend,http://em.21dtv.com/songs/60063814.mkv +李炳辰-一百分,http://em.21dtv.com/songs/60052723.mkv +陈小春-一百分,http://em.21dtv.com/songs/60052722.mkv +李炳辰-一百分(演唱会),http://em.21dtv.com/songs/60052721.mkv +李明洋-一杯茶,http://em.21dtv.com/songs/60135362.mkv +泳儿-一半床,http://em.21dtv.com/songs/60084340.mkv +梁汉文-一步步,http://em.21dtv.com/songs/60107839.mkv +周慧敏-拥抱吧,http://em.21dtv.com/songs/60054576.mkv +温兆伦-拥抱吧,http://em.21dtv.com/songs/60054575.mkv +王蓉-要抱抱,http://em.21dtv.com/songs/60052355.mkv +花儿乐队-摇摆摆,http://em.21dtv.com/songs/60052253.mkv +包歌-一百爱,http://em.21dtv.com/songs/60134949.mkv +郑欣宜-拥抱爱,http://em.21dtv.com/songs/60079231.mkv +陈妃-要按怎,http://em.21dtv.com/songs/60052354.mkv +陈胜-要按怎(无原唱),http://em.21dtv.com/songs/60052353.mkv +其他-摇啊摇,http://em.21dtv.com/songs/60089649.mkv +林姗-雨啊雨,http://em.21dtv.com/songs/60067736.mkv +王绎龙+SUNNY-摇啊摇,http://em.21dtv.com/songs/60052246.mkv +童唱-摇啊摇,http://em.21dtv.com/songs/60052245.mkv +安沁儿-要爱我,http://em.21dtv.com/songs/60068904.mkv +杨佳茜-仰阿莎,http://em.21dtv.com/songs/60068901.mkv +佚名-延安颂,http://em.21dtv.com/songs/60052005.mkv +李双江-延安颂,http://em.21dtv.com/songs/60052004.mkv +DISCLOSURE+ELIZA DOOLITTLE-you and me,http://em.21dtv.com/songs/60082409.mkv +王若琳-you and me,http://em.21dtv.com/songs/60074176.mkv +佚名-you and me,http://em.21dtv.com/songs/60006487.mkv +郭富城-you and me,http://em.21dtv.com/songs/60006486.mkv +JOSH GROBAN-you are loved,http://em.21dtv.com/songs/60074177.mkv +IU-you and i,http://em.21dtv.com/songs/60065732.mkv +LADY GAGA-you and i,http://em.21dtv.com/songs/60062090.mkv +孙耀威-you and i,http://em.21dtv.com/songs/60060955.mkv +佚名-you and i,http://em.21dtv.com/songs/60006485.mkv +JOE COCKER-you and i,http://em.21dtv.com/songs/60006484.mkv +孙淑媚-有爱过,http://em.21dtv.com/songs/60055087.mkv +女声-you are everything,http://em.21dtv.com/songs/60006493.mkv +男声-you are everything,http://em.21dtv.com/songs/60006492.mkv +草蜢-you are everything,http://em.21dtv.com/songs/60006491.mkv +容祖儿-you are everything(演唱会),http://em.21dtv.com/songs/60006490.mkv +草蜢-you are everything(演唱会),http://em.21dtv.com/songs/60006489.mkv +LANA DEL REY-young and beautiful,http://em.21dtv.com/songs/60082420.mkv +王麟-要爱爱,http://em.21dtv.com/songs/60086096.mkv +ALAN-桜モダン,http://em.21dtv.com/songs/60054453.mkv +华歌-小蜘蛛,http://em.21dtv.com/songs/60120384.mkv +华歌-小蜘蛛,http://em.21dtv.com/songs/60119321.mkv +陈盈洁-心糟糟(无原唱),http://em.21dtv.com/songs/60096026.mkv +江蕙-心糟糟(无原唱),http://em.21dtv.com/songs/60095732.mkv +方怡萍-心糟糟,http://em.21dtv.com/songs/60084251.mkv +胡夏-学着走,http://em.21dtv.com/songs/60080988.mkv +佚名-心糟糟,http://em.21dtv.com/songs/60050704.mkv +Robynn+Kendy+陈乐基+邓小巧-想怎样,http://em.21dtv.com/songs/60111643.mkv +江映蓉-想自由,http://em.21dtv.com/songs/60108667.mkv +杜德伟+叶倩文-信自已,http://em.21dtv.com/songs/60092818.mkv +余润泽-小张钰,http://em.21dtv.com/songs/60087333.mkv +张蓉蓉-雪中月,http://em.21dtv.com/songs/60051784.mkv +刘惠明+蒋文端-雪中燕,http://em.21dtv.com/songs/60051783.mkv +翼星家族大合唱-星之翼,http://em.21dtv.com/songs/60051165.mkv +黄家强-信则有,http://em.21dtv.com/songs/60051026.mkv +林宥嘉-想自由,http://em.21dtv.com/songs/60049308.mkv +小曾-想战友,http://em.21dtv.com/songs/60049291.mkv +康棋斯-西藏源,http://em.21dtv.com/songs/60047908.mkv +Apink-星之星,http://em.21dtv.com/songs/60129882.mkv +郑海兵+张方-戏中戏,http://em.21dtv.com/songs/60118099.mkv +黄贯中-新秩序(演唱会),http://em.21dtv.com/songs/60078876.mkv +佚名-雪中行(无原唱),http://em.21dtv.com/songs/60051767.mkv +格格-心之寻,http://em.21dtv.com/songs/60050717.mkv +春雷-心之寻,http://em.21dtv.com/songs/60050716.mkv +格格-心之寻(演唱会),http://em.21dtv.com/songs/60050715.mkv +齐晨-想着她,http://em.21dtv.com/songs/60129864.mkv +莫文蔚-选择题,http://em.21dtv.com/songs/60088563.mkv +金池-心在跳,http://em.21dtv.com/songs/60071341.mkv +孟文豪-新站台,http://em.21dtv.com/songs/60065263.mkv +黎明-心在跳,http://em.21dtv.com/songs/60050702.mkv +范英楠-想着她,http://em.21dtv.com/songs/60049306.mkv +NORA SAYS-想着谁,http://em.21dtv.com/songs/60097102.mkv +无鸣-雪在烧,http://em.21dtv.com/songs/60051764.mkv +黄莺莺-雪在烧,http://em.21dtv.com/songs/60051763.mkv +孟繁青+王勤-心中锁,http://em.21dtv.com/songs/60050756.mkv +黄思婷-心中锁,http://em.21dtv.com/songs/60050755.mkv +施文斌-想着谁,http://em.21dtv.com/songs/60049305.mkv +六甲乐团-咸猪手,http://em.21dtv.com/songs/60048484.mkv +合力-戏中人,http://em.21dtv.com/songs/60128872.mkv +洪新智-戏中人,http://em.21dtv.com/songs/60103417.mkv +王栎鑫-选择权,http://em.21dtv.com/songs/60121924.mkv +王鹤铮-西子俏,http://em.21dtv.com/songs/60120806.mkv +雪山飞狐-雪中情,http://em.21dtv.com/songs/60088930.mkv +谭锡禧+吕珊-雪中情(演唱会),http://em.21dtv.com/songs/60084314.mkv +张语婕-夕照情,http://em.21dtv.com/songs/60065156.mkv +蒋思思-雪中情,http://em.21dtv.com/songs/60062516.mkv +杨庆煌-雪中情,http://em.21dtv.com/songs/60051782.mkv +冷漠-雪中情,http://em.21dtv.com/songs/60051781.mkv +关正杰-雪中情,http://em.21dtv.com/songs/60051780.mkv +张伟文-雪中情(演唱会),http://em.21dtv.com/songs/60051779.mkv +夏韶声-雪中情(演唱会),http://em.21dtv.com/songs/60051778.mkv +张蓉蓉-戏栅情,http://em.21dtv.com/songs/60048213.mkv +佚名-行舟曲,http://em.21dtv.com/songs/60019954.mkv +安涛-雪在飘,http://em.21dtv.com/songs/60051762.mkv +平川-想着你,http://em.21dtv.com/songs/60070050.mkv +张秀卿+江志丰-选择你,http://em.21dtv.com/songs/60051621.mkv +邓妙华-想着你,http://em.21dtv.com/songs/60049297.mkv +方怡萍-想着你(无原唱),http://em.21dtv.com/songs/60049296.mkv +肖洋-小卓玛,http://em.21dtv.com/songs/60127293.mkv +张镐哲-旋转门,http://em.21dtv.com/songs/60119549.mkv +罗力威-夏之咩,http://em.21dtv.com/songs/60111346.mkv +美宝-旋转门,http://em.21dtv.com/songs/60103519.mkv +央金-小卓玛,http://em.21dtv.com/songs/60099184.mkv +谢沛恩-旋转门,http://em.21dtv.com/songs/60072676.mkv +海鸣威-寻找michael,http://em.21dtv.com/songs/60051839.mkv +苏慧伦-旋转门,http://em.21dtv.com/songs/60051599.mkv +陈司翰-旋转门(演唱会),http://em.21dtv.com/songs/60051598.mkv +金池-心醉了,http://em.21dtv.com/songs/60133008.mkv +金池-心醉了,http://em.21dtv.com/songs/60084257.mkv +王菲-雪中莲,http://em.21dtv.com/songs/60051777.mkv +邓丽君-雪中莲,http://em.21dtv.com/songs/60051776.mkv +易秒英-雪之恋,http://em.21dtv.com/songs/60051765.mkv +卓依婷-夏之旅,http://em.21dtv.com/songs/60048433.mkv +锦绣二重唱-夏之旅,http://em.21dtv.com/songs/60048432.mkv +超口爱乐团-写字狂,http://em.21dtv.com/songs/60088709.mkv +田子琳-心在哭,http://em.21dtv.com/songs/60050700.mkv +佚名-笑着哭,http://em.21dtv.com/songs/60049976.mkv +徐良-笑着哭,http://em.21dtv.com/songs/60049975.mkv +刘德华-笑着哭,http://em.21dtv.com/songs/60049974.mkv +汪峰-笑着哭(演唱会),http://em.21dtv.com/songs/60049973.mkv +赵仕瑾-心主角,http://em.21dtv.com/songs/60131841.mkv +天庥-雪再见,http://em.21dtv.com/songs/60112608.mkv +刘心-新自己,http://em.21dtv.com/songs/60104819.mkv +黑妹+郑世豪-信自己(演唱会),http://em.21dtv.com/songs/60078885.mkv +孙淑媚-雪中镜,http://em.21dtv.com/songs/60051775.mkv +杜德伟+叶倩文-信自己,http://em.21dtv.com/songs/60051032.mkv +叶倩文-信自己(演唱会),http://em.21dtv.com/songs/60051031.mkv +叶倩文+陈奕迅-信自己(演唱会),http://em.21dtv.com/songs/60051030.mkv +杜德伟+叶倩文-信自己(演唱会),http://em.21dtv.com/songs/60051029.mkv +BJACK-心着急(无原唱),http://em.21dtv.com/songs/60050714.mkv +陈洁仪-限制级,http://em.21dtv.com/songs/60048534.mkv +彭佳慧+飞儿乐团-心之火,http://em.21dtv.com/songs/60125553.mkv +妤桢-戏子画,http://em.21dtv.com/songs/60125362.mkv +王麟-雪中花,http://em.21dtv.com/songs/60114703.mkv +彭佳慧+飞儿乐团-心之火,http://em.21dtv.com/songs/60111907.mkv +王若琪-血中花,http://em.21dtv.com/songs/60066508.mkv +周华健-雪中火(演唱会),http://em.21dtv.com/songs/60051774.mkv +王识贤+孙淑媚-雪中花,http://em.21dtv.com/songs/60051773.mkv +黄思婷-雪中花,http://em.21dtv.com/songs/60051772.mkv +卓依婷+林正桦-雪中红,http://em.21dtv.com/songs/60051770.mkv +小凤凤-雪中红,http://em.21dtv.com/songs/60051769.mkv +王识贤+陈亮吟-雪中红,http://em.21dtv.com/songs/60051768.mkv +罗文聪-闲仔话,http://em.21dtv.com/songs/60048479.mkv +郭子睿-小猪歌,http://em.21dtv.com/songs/60118970.mkv +SNH48-小猪歌,http://em.21dtv.com/songs/60118276.mkv +谭咏麟+黎明-星之歌,http://em.21dtv.com/songs/60093202.mkv +王霞-新中国,http://em.21dtv.com/songs/60050990.mkv +吴若希-休止符,http://em.21dtv.com/songs/60096947.mkv +周传雄-雪在飞,http://em.21dtv.com/songs/60087577.mkv +兰卡措-心在飞,http://em.21dtv.com/songs/60068862.mkv +张子冉-心在飞,http://em.21dtv.com/songs/60061772.mkv +[Group] +groupName=十六万歌曲MV等 - 34 +孙燕姿-休止符,http://em.21dtv.com/songs/60051501.mkv +伦永亮-休止符,http://em.21dtv.com/songs/60051500.mkv +李雅微-休止符,http://em.21dtv.com/songs/60051499.mkv +陈永熙-休止符,http://em.21dtv.com/songs/60051498.mkv +王佳佳-想知道,http://em.21dtv.com/songs/60133974.mkv +荔枝-仙之都,http://em.21dtv.com/songs/60048446.mkv +彭子帅-心之城,http://em.21dtv.com/songs/60133708.mkv +王雪懿-小纸船,http://em.21dtv.com/songs/60114699.mkv +蔡秋凤-心中愁,http://em.21dtv.com/songs/60067659.mkv +赵一颐-仙踪伴,http://em.21dtv.com/songs/60110555.mkv +周兴哲-学着爱,http://em.21dtv.com/songs/60107589.mkv +天天-笑着爱,http://em.21dtv.com/songs/60103184.mkv +郑伊健-寻找爱,http://em.21dtv.com/songs/60051841.mkv +罗忆诗-旋转爱,http://em.21dtv.com/songs/60051595.mkv +何炅+王楠-现在爱,http://em.21dtv.com/songs/60048506.mkv +汤非-下扬州,http://em.21dtv.com/songs/60135481.mkv +动力火车-下一站,http://em.21dtv.com/songs/60125233.mkv +动力火车-下一站,http://em.21dtv.com/songs/60123702.mkv +花千依-秀颜值,http://em.21dtv.com/songs/60122050.mkv +路童-下一站,http://em.21dtv.com/songs/60100487.mkv +王键-下一站,http://em.21dtv.com/songs/60084161.mkv +许嵩-小宇宙,http://em.21dtv.com/songs/60049879.mkv +苏打绿-小宇宙,http://em.21dtv.com/songs/60049878.mkv +佚名-小燕子,http://em.21dtv.com/songs/60049865.mkv +王雪晶-小燕子,http://em.21dtv.com/songs/60049864.mkv +佚名-小燕子(伦巴),http://em.21dtv.com/songs/60049863.mkv +童唱-小鸭子,http://em.21dtv.com/songs/60049855.mkv +SNOWMAN-下一站,http://em.21dtv.com/songs/60048323.mkv +蔡健雅-下一站(演唱会),http://em.21dtv.com/songs/60048322.mkv +曾治伦-下一站(无原唱),http://em.21dtv.com/songs/60048321.mkv +王小娟-夕阳雨,http://em.21dtv.com/songs/60124252.mkv +小虎队-逍遥游,http://em.21dtv.com/songs/60115121.mkv +群星-喜洋洋,http://em.21dtv.com/songs/60109572.mkv +忆华-喜洋洋,http://em.21dtv.com/songs/60109377.mkv +蔡国庆-逍遥游,http://em.21dtv.com/songs/60086987.mkv +姚珊珊-小永远,http://em.21dtv.com/songs/60084222.mkv +叶枫-喜洋洋,http://em.21dtv.com/songs/60084150.mkv +杨语莲-小悦悦,http://em.21dtv.com/songs/60078736.mkv +吴佳明-逍遥游,http://em.21dtv.com/songs/60078675.mkv +吴依琳-喜洋洋,http://em.21dtv.com/songs/60078527.mkv +何洁-小永远,http://em.21dtv.com/songs/60065221.mkv +陈小春-需要医(演唱会),http://em.21dtv.com/songs/60051551.mkv +戴娆-星月夜,http://em.21dtv.com/songs/60051161.mkv +林忆莲-心野夜(演唱会),http://em.21dtv.com/songs/60050662.mkv +梁咏琪-心野夜(演唱会),http://em.21dtv.com/songs/60050661.mkv +小虎队-逍遥游,http://em.21dtv.com/songs/60049428.mkv +田震-逍遥游,http://em.21dtv.com/songs/60049427.mkv +董贞-逍遥游,http://em.21dtv.com/songs/60049426.mkv +玉慧-喜洋洋,http://em.21dtv.com/songs/60048187.mkv +魏依曼-喜洋洋,http://em.21dtv.com/songs/60048186.mkv +刘凤屏-喜洋洋,http://em.21dtv.com/songs/60048185.mkv +刘德华+黄晓明+沈腾-笑一笑,http://em.21dtv.com/songs/60130117.mkv +刘德华+黄晓明+沈腾-笑一笑,http://em.21dtv.com/songs/60126640.mkv +夜叉乐队-夕阳下,http://em.21dtv.com/songs/60123797.mkv +大张伟-咻一咻,http://em.21dtv.com/songs/60118484.mkv +常石磊-歇一歇,http://em.21dtv.com/songs/60117700.mkv +兰天-星夜下,http://em.21dtv.com/songs/60097030.mkv +办桌二人组-夕阳下,http://em.21dtv.com/songs/60096903.mkv +彭海桐-想一想,http://em.21dtv.com/songs/60092657.mkv +宋庆琳-许愿星,http://em.21dtv.com/songs/60086068.mkv +黄雅莉-星月下,http://em.21dtv.com/songs/60071358.mkv +高轶峰+李天一+田甜-夕阳下,http://em.21dtv.com/songs/60070020.mkv +依稀-许愿星,http://em.21dtv.com/songs/60051570.mkv +谭咏麟-幸运星,http://em.21dtv.com/songs/60051427.mkv +牛奶咖啡-幸运星,http://em.21dtv.com/songs/60051426.mkv +陈慧琳-鞋呀鞋,http://em.21dtv.com/songs/60049994.mkv +薛家燕-笑一笑,http://em.21dtv.com/songs/60049968.mkv +何念庭-笑一下,http://em.21dtv.com/songs/60049967.mkv +林大海-想要哮,http://em.21dtv.com/songs/60049282.mkv +佚名-斜阳外,http://em.21dtv.com/songs/60049988.mkv +Blue Jeans-下雨天,http://em.21dtv.com/songs/60098983.mkv +林忆莲+Blue Jeans-下雨天(新版),http://em.21dtv.com/songs/60096896.mkv +陈敏之-想一天,http://em.21dtv.com/songs/60096531.mkv +南拳妈妈-下雨天,http://em.21dtv.com/songs/60089186.mkv +张杰-下雨天,http://em.21dtv.com/songs/60078545.mkv +洪辰-下雨天,http://em.21dtv.com/songs/60070030.mkv +叶慧婷-新一天,http://em.21dtv.com/songs/60061778.mkv +林忆莲+风火海-下雨天(演唱会),http://em.21dtv.com/songs/60061742.mkv +胡歌-逍遥叹,http://em.21dtv.com/songs/60049425.mkv +四大天王-夏一跳(无原唱),http://em.21dtv.com/songs/60048426.mkv +新宝岛康乐队-吓一跳(无原唱),http://em.21dtv.com/songs/60048359.mkv +武艺-下雨天,http://em.21dtv.com/songs/60048348.mkv +林忆莲-下雨天,http://em.21dtv.com/songs/60048347.mkv +梁心颐-下雨天,http://em.21dtv.com/songs/60048346.mkv +李泉-下雨天,http://em.21dtv.com/songs/60048345.mkv +VRF-下雨天,http://em.21dtv.com/songs/60048344.mkv +GOGO+MEME-下雨天,http://em.21dtv.com/songs/60048343.mkv +梁咏琪+SNOWMAN-下雨天(演唱会),http://em.21dtv.com/songs/60048342.mkv +邵峰-血与沙,http://em.21dtv.com/songs/60134293.mkv +李爱绮+萧闳仁-小雨伞,http://em.21dtv.com/songs/60100885.mkv +郑中基-许愿树,http://em.21dtv.com/songs/60051569.mkv +张继馨子-许愿树,http://em.21dtv.com/songs/60051568.mkv +郭美美-许愿树,http://em.21dtv.com/songs/60051567.mkv +徐威-心已碎,http://em.21dtv.com/songs/60050667.mkv +刘尊+李丹-心已碎,http://em.21dtv.com/songs/60050666.mkv +佚名-写遗书,http://em.21dtv.com/songs/60050022.mkv +许志安-小意思,http://em.21dtv.com/songs/60049873.mkv +潘裕文-夏雨诗,http://em.21dtv.com/songs/60048430.mkv +郭富城-夏意识,http://em.21dtv.com/songs/60048428.mkv +郭富城-夏意识(演唱会),http://em.21dtv.com/songs/60048427.mkv +张家辉-下意识,http://em.21dtv.com/songs/60048335.mkv +林大晋-西洋棋,http://em.21dtv.com/songs/60116043.mkv +李潮-小夜曲,http://em.21dtv.com/songs/60093761.mkv +潘秀琼-小云雀,http://em.21dtv.com/songs/60090055.mkv +张德兰-小云雀(演唱会),http://em.21dtv.com/songs/60068850.mkv +阿福-雪域情,http://em.21dtv.com/songs/60051756.mkv +佚名-小云雀,http://em.21dtv.com/songs/60049895.mkv +郭健一-小雨情,http://em.21dtv.com/songs/60049891.mkv +佚名-小夜曲,http://em.21dtv.com/songs/60049872.mkv +宁林-小夜曲,http://em.21dtv.com/songs/60049871.mkv +张凌枫-小眼晴,http://em.21dtv.com/songs/60049861.mkv +岩罕建-需要你,http://em.21dtv.com/songs/60124835.mkv +语录-需要你,http://em.21dtv.com/songs/60106283.mkv +张靓颖-需要你,http://em.21dtv.com/songs/60051548.mkv +徐仁英-需要你,http://em.21dtv.com/songs/60051547.mkv +孙燕姿-需要你,http://em.21dtv.com/songs/60051546.mkv +张碧晨-下一秒,http://em.21dtv.com/songs/60125529.mkv +黄怡婷-小幺妹,http://em.21dtv.com/songs/60104630.mkv +郑志立-小姨妈,http://em.21dtv.com/songs/60094719.mkv +林宇杰-下一秒,http://em.21dtv.com/songs/60093844.mkv +网络歌手-小夜妹,http://em.21dtv.com/songs/60091822.mkv +邓紫棋-下一秒,http://em.21dtv.com/songs/60078543.mkv +刘巾媛-喜盈门,http://em.21dtv.com/songs/60078528.mkv +刘巾湲-喜盈门(演唱会),http://em.21dtv.com/songs/60072595.mkv +梁咏琪-夏一秒,http://em.21dtv.com/songs/60067617.mkv +HOTCHA-小野蛮,http://em.21dtv.com/songs/60049870.mkv +张也-喜盈门,http://em.21dtv.com/songs/60048188.mkv +薛之谦-下雨了,http://em.21dtv.com/songs/60112218.mkv +ZIA+李贤-下雨了,http://em.21dtv.com/songs/60111666.mkv +郎恒+方艺-吸引力,http://em.21dtv.com/songs/60103617.mkv +阿索-吸引力,http://em.21dtv.com/songs/60065162.mkv +林鹏-幸运链,http://em.21dtv.com/songs/60051418.mkv +王栋-小眼泪,http://em.21dtv.com/songs/60049860.mkv +丁当-想原谅,http://em.21dtv.com/songs/60049290.mkv +陶晶莹-吸引力,http://em.21dtv.com/songs/60047962.mkv +大勇-逍遥客,http://em.21dtv.com/songs/60135075.mkv +小老虎-逍遥客,http://em.21dtv.com/songs/60119448.mkv +马国毕-想要哭,http://em.21dtv.com/songs/60102943.mkv +蔡淳佳-小眼睛,http://em.21dtv.com/songs/60132858.mkv +简弘亦-小缘家,http://em.21dtv.com/songs/60132781.mkv +罗逻圣-小冤家,http://em.21dtv.com/songs/60106195.mkv +五月天-洗衣机,http://em.21dtv.com/songs/60070028.mkv +赵薇-小冤家,http://em.21dtv.com/songs/60049894.mkv +张凌枫-小眼睛,http://em.21dtv.com/songs/60049858.mkv +旺福乐团-小眼睛,http://em.21dtv.com/songs/60049857.mkv +朱茵-洗衣机,http://em.21dtv.com/songs/60048097.mkv +张卫健-西游记,http://em.21dtv.com/songs/60047953.mkv +舜文齐-西游记,http://em.21dtv.com/songs/60047952.mkv +李西-西游记,http://em.21dtv.com/songs/60047951.mkv +黄思婷-小野花,http://em.21dtv.com/songs/60136024.mkv +林欣彤-悬崖花,http://em.21dtv.com/songs/60128128.mkv +吴长英-小雨荷,http://em.21dtv.com/songs/60106689.mkv +周裕曼-向阳花,http://em.21dtv.com/songs/60103164.mkv +慕容晓晓+办桌二人组-杏雨花,http://em.21dtv.com/songs/60087897.mkv +安与骑兵-向阳花(演唱会),http://em.21dtv.com/songs/60078657.mkv +依穆炎-戏语花,http://em.21dtv.com/songs/60068822.mkv +汪峰-向阳花,http://em.21dtv.com/songs/60066465.mkv +容中尔甲-雪域魂,http://em.21dtv.com/songs/60051752.mkv +洪文斌-心遗憾,http://em.21dtv.com/songs/60050664.mkv +董颖-硝烟花,http://em.21dtv.com/songs/60049450.mkv +谢天笑-向阳花,http://em.21dtv.com/songs/60049355.mkv +佚名-夕阳红,http://em.21dtv.com/songs/60047866.mkv +佟铁鑫+王静-夕阳红,http://em.21dtv.com/songs/60047865.mkv +佟铁鑫-夕阳红(演唱会),http://em.21dtv.com/songs/60047864.mkv +索朗旺姆-洗衣歌,http://em.21dtv.com/songs/60101465.mkv +君龙-逍遥歌,http://em.21dtv.com/songs/60068839.mkv +浩角翔起-笑一个,http://em.21dtv.com/songs/60067643.mkv +胡耀威-小羊羔,http://em.21dtv.com/songs/60049868.mkv +陈雷-逍遥歌,http://em.21dtv.com/songs/60049422.mkv +王子玉-下一个,http://em.21dtv.com/songs/60048307.mkv +杨紫萍-洗衣歌,http://em.21dtv.com/songs/60048096.mkv +新版本-洗衣歌,http://em.21dtv.com/songs/60048095.mkv +老版本-洗衣歌,http://em.21dtv.com/songs/60048094.mkv +成方圆-洗衣歌(演唱会),http://em.21dtv.com/songs/60048093.mkv +庄振凯-想欲飞,http://em.21dtv.com/songs/60125479.mkv +满文军-心要飞,http://em.21dtv.com/songs/60099382.mkv +关牧村-向远方,http://em.21dtv.com/songs/60049357.mkv +谭晶-向远方(演唱会),http://em.21dtv.com/songs/60049356.mkv +王建杰-想要飞,http://em.21dtv.com/songs/60049272.mkv +安又琪-小样儿,http://em.21dtv.com/songs/60102146.mkv +冯曦妤-幸运儿,http://em.21dtv.com/songs/60051415.mkv +辛龙-小鱼儿,http://em.21dtv.com/songs/60049876.mkv +童唱-小羊儿,http://em.21dtv.com/songs/60049867.mkv +童唱-小雨点,http://em.21dtv.com/songs/60049886.mkv +夏嘉伟-新游春,http://em.21dtv.com/songs/60115075.mkv +陈慧琳-熏衣草(HD),http://em.21dtv.com/songs/10012553.mkv +索妮娅·崇-薰衣草,http://em.21dtv.com/songs/60078980.mkv +陈慧琳-薰衣草,http://em.21dtv.com/songs/60051802.mkv +陈慧琳-薰衣草(演唱会),http://em.21dtv.com/songs/60051801.mkv +陈慧琳-熏衣草,http://em.21dtv.com/songs/60051800.mkv +林志炫-许愿池,http://em.21dtv.com/songs/60051565.mkv +丁当-幸运草,http://em.21dtv.com/songs/60051410.mkv +陈晓琪-夏迎春,http://em.21dtv.com/songs/60048429.mkv +张勇-现眼报,http://em.21dtv.com/songs/60078556.mkv +张冬玲-新摇摆(演唱会),http://em.21dtv.com/songs/60063362.mkv +林子娟-心一半,http://em.21dtv.com/songs/60050663.mkv +金岩-想延安,http://em.21dtv.com/songs/60104510.mkv +许艺娜-想要爱,http://em.21dtv.com/songs/60080019.mkv +陈奕-需要爱,http://em.21dtv.com/songs/60051545.mkv +白龙-想要爱,http://em.21dtv.com/songs/60049268.mkv +南台湾小姑娘-想要爱(无原唱),http://em.21dtv.com/songs/60049267.mkv +马嘉轩-相信着,http://em.21dtv.com/songs/60070042.mkv +张萌萌-想象者,http://em.21dtv.com/songs/60065202.mkv +蒋大为-新星赞,http://em.21dtv.com/songs/60050974.mkv +薛之谦+欧阳娜娜-小幸运,http://em.21dtv.com/songs/60134205.mkv +田馥甄-小幸运(HD),http://em.21dtv.com/songs/60134028.mkv +张钟仪+崔秀丽+林禾-小幸运,http://em.21dtv.com/songs/60132469.mkv +陈苗-心吸引,http://em.21dtv.com/songs/60129757.mkv +田馥甄-小幸运,http://em.21dtv.com/songs/60129433.mkv +白静晨-小幸运,http://em.21dtv.com/songs/60127238.mkv +青衣-新鲜鱼,http://em.21dtv.com/songs/60126428.mkv +简弘亦-小幸运,http://em.21dtv.com/songs/60126013.mkv +伍定彦+糖妹-小幸运,http://em.21dtv.com/songs/60125116.mkv +白静晨-小幸运,http://em.21dtv.com/songs/60124315.mkv +陈以桐-小幸运,http://em.21dtv.com/songs/60123279.mkv +胡彦斌-潇湘雨,http://em.21dtv.com/songs/60120871.mkv +糖妹-小幸运,http://em.21dtv.com/songs/60116187.mkv +吴镇宇+宣萱-心相印,http://em.21dtv.com/songs/60092463.mkv +陈楚生-修仙缘,http://em.21dtv.com/songs/60088893.mkv +小旭-修仙缘,http://em.21dtv.com/songs/60086065.mkv +大冢爱-星象仪(演唱会),http://em.21dtv.com/songs/60084263.mkv +湘雨寒-潇湘云,http://em.21dtv.com/songs/60080300.mkv +免贵姓谢-心吸引,http://em.21dtv.com/songs/60078791.mkv +王键-西厢月,http://em.21dtv.com/songs/60065161.mkv +何静-心相印,http://em.21dtv.com/songs/60050636.mkv +强辩乐团+任容萱-小心愿,http://em.21dtv.com/songs/60049844.mkv +苏永康-潇湘雨,http://em.21dtv.com/songs/60049471.mkv +陆景彦-潇湘雨,http://em.21dtv.com/songs/60049470.mkv +简迷离-箱形鱼,http://em.21dtv.com/songs/60048962.mkv +黄伊汶-香薰浴,http://em.21dtv.com/songs/60048953.mkv +张爽-西溪月,http://em.21dtv.com/songs/60047945.mkv +黄雅莉-小星星,http://em.21dtv.com/songs/60130943.mkv +童唱-羞羞羞,http://em.21dtv.com/songs/60051508.mkv +童唱-羞羞羞(无原唱),http://em.21dtv.com/songs/60051507.mkv +欧得洋-咻咻咻,http://em.21dtv.com/songs/60051502.mkv +佚名-笑笑笑,http://em.21dtv.com/songs/60049965.mkv +张震岳-小星星,http://em.21dtv.com/songs/60049851.mkv +王雪晶-小星星,http://em.21dtv.com/songs/60049850.mkv +王心凌-小星星,http://em.21dtv.com/songs/60049849.mkv +汪苏泷-小星星,http://em.21dtv.com/songs/60049848.mkv +童唱-小星星,http://em.21dtv.com/songs/60049847.mkv +杨千嬅-小星星(演唱会),http://em.21dtv.com/songs/60049846.mkv +汪苏泷-小星星(演唱会),http://em.21dtv.com/songs/60049845.mkv +零点乐队-相信我,http://em.21dtv.com/songs/60104581.mkv +王莱-相信我,http://em.21dtv.com/songs/60104317.mkv +李祥祥-想想我,http://em.21dtv.com/songs/60097103.mkv +才旦卓玛-想信我,http://em.21dtv.com/songs/60091247.mkv +蔡秋凤+翁立友-相信我,http://em.21dtv.com/songs/60065192.mkv +徐小凤-星星问,http://em.21dtv.com/songs/60051122.mkv +庾澄庆-相信我,http://em.21dtv.com/songs/60048852.mkv +因果兄弟-相信我,http://em.21dtv.com/songs/60048851.mkv +李娜-相信我,http://em.21dtv.com/songs/60048850.mkv +芭比-相信我,http://em.21dtv.com/songs/60048849.mkv +杨培安-相信我(无原唱),http://em.21dtv.com/songs/60048848.mkv +高杰钧-弦心碎,http://em.21dtv.com/songs/60117392.mkv +爱戴-心心锁,http://em.21dtv.com/songs/60094989.mkv +印度尼西亚民歌-星星索,http://em.21dtv.com/songs/60094019.mkv +林依轮-消息树,http://em.21dtv.com/songs/60091428.mkv +张纹铭-小心事,http://em.21dtv.com/songs/60072631.mkv +张萌萌-消息树,http://em.21dtv.com/songs/60065208.mkv +朱逢博-星星索,http://em.21dtv.com/songs/60051121.mkv +佚名-星星索,http://em.21dtv.com/songs/60051120.mkv +佚名-星星索(慢四),http://em.21dtv.com/songs/60051119.mkv +日记-新香水,http://em.21dtv.com/songs/60050970.mkv +春妹-心相随,http://em.21dtv.com/songs/60050635.mkv +牛朝阳-洗洗睡,http://em.21dtv.com/songs/60048091.mkv +常健鸿-小鲜肉,http://em.21dtv.com/songs/60132416.mkv +常健鸿-小鲜肉,http://em.21dtv.com/songs/60126832.mkv +云飞儿+冷漠-小仙肉,http://em.21dtv.com/songs/60109131.mkv +方皓玟-新鲜人,http://em.21dtv.com/songs/60050967.mkv +龙千玉-心相软,http://em.21dtv.com/songs/60050634.mkv +赵乃吉-心形圈,http://em.21dtv.com/songs/60134258.mkv +E+KIDS-下学期,http://em.21dtv.com/songs/60092162.mkv +HOTCHA-学习期,http://em.21dtv.com/songs/60062045.mkv +蔡依林-心型圈,http://em.21dtv.com/songs/60050649.mkv +黄子华-小小强,http://em.21dtv.com/songs/60049817.mkv +天坛大洋-谢谢你,http://em.21dtv.com/songs/60126745.mkv +金豆豆-小小鸟,http://em.21dtv.com/songs/60126304.mkv +李代沫-谢谢你,http://em.21dtv.com/songs/60117805.mkv +朱主爱-谢谢你,http://em.21dtv.com/songs/60117797.mkv +李千娜-谢谢你,http://em.21dtv.com/songs/60101648.mkv +贯诗钦-谢谢你,http://em.21dtv.com/songs/60100474.mkv +林一峰-谢谢侬(新版),http://em.21dtv.com/songs/60097098.mkv +王璐-谢谢侬,http://em.21dtv.com/songs/60097097.mkv +HOPE-谢谢侬,http://em.21dtv.com/songs/60084227.mkv +林国伟-谢谢你,http://em.21dtv.com/songs/60078756.mkv +王丽达-谢谢你(演唱会),http://em.21dtv.com/songs/60078755.mkv +刘超华-谢谢你(演唱会),http://em.21dtv.com/songs/60078754.mkv +飞歌-谢谢你,http://em.21dtv.com/songs/60072635.mkv +晟瑶-谢谢你,http://em.21dtv.com/songs/60068854.mkv +金贤重-谢谢你(演唱会),http://em.21dtv.com/songs/60068853.mkv +浩角翔起-谢谢你,http://em.21dtv.com/songs/60067646.mkv +陈冠锋-谢谢你,http://em.21dtv.com/songs/60066478.mkv +李猛-谢谢你,http://em.21dtv.com/songs/60065223.mkv +潘辰-谢谢侬,http://em.21dtv.com/songs/60050087.mkv +陈奕迅-谢谢侬,http://em.21dtv.com/songs/60050086.mkv +叶倩文+陈奕迅-谢谢侬(演唱会),http://em.21dtv.com/songs/60050085.mkv +林一峰-谢谢侬(演唱会),http://em.21dtv.com/songs/60050084.mkv +佚名-谢谢你,http://em.21dtv.com/songs/60050044.mkv +蜜雪薇琪-谢谢你,http://em.21dtv.com/songs/60050043.mkv +刀郎-谢谢你,http://em.21dtv.com/songs/60050042.mkv +刘嘉玲-相信你,http://em.21dtv.com/songs/60048840.mkv +汪东城+蔡旻佑+曾沛慈-相信吗[演],http://em.21dtv.com/songs/60101412.mkv +汪东城-相信吗,http://em.21dtv.com/songs/60081172.mkv +高佳-下雪了,http://em.21dtv.com/songs/60107366.mkv +胡彦斌-下雪了,http://em.21dtv.com/songs/60096443.mkv +孙楠-下雪了,http://em.21dtv.com/songs/60094875.mkv +芭比-想像力,http://em.21dtv.com/songs/60049264.mkv +芭比-想象力,http://em.21dtv.com/songs/60049261.mkv +中孝介-夏夕空,http://em.21dtv.com/songs/60121338.mkv +杨超+马可谦-小新疆,http://em.21dtv.com/songs/60116034.mkv +郑培钦-西厢记,http://em.21dtv.com/songs/60112303.mkv +胡斌-新新疆,http://em.21dtv.com/songs/60071352.mkv +闫学晶-西厢记,http://em.21dtv.com/songs/60071298.mkv +小昔米-西厢记,http://em.21dtv.com/songs/60047948.mkv +寂悸-夕夏花,http://em.21dtv.com/songs/60130265.mkv +离殇-小小浩,http://em.21dtv.com/songs/60111329.mkv +吕方-血像火,http://em.21dtv.com/songs/60094431.mkv +雷罡-小心肝,http://em.21dtv.com/songs/60109724.mkv +群星-小学馆(演唱会),http://em.21dtv.com/songs/60049853.mkv +伊雪-小习惯,http://em.21dtv.com/songs/60049789.mkv +蟑螂乐队-吸血鬼,http://em.21dtv.com/songs/60047958.mkv +四分卫-吸血鬼,http://em.21dtv.com/songs/60047957.mkv +姜华-吸血鬼(无原唱),http://em.21dtv.com/songs/60047956.mkv +冷漠-小小芳,http://em.21dtv.com/songs/60121406.mkv +周子琰-小幸福,http://em.21dtv.com/songs/60113335.mkv +卓依婷-喜相逢,http://em.21dtv.com/songs/60087454.mkv +小5-小幸福,http://em.21dtv.com/songs/60070067.mkv +侯湘婷-心想飞,http://em.21dtv.com/songs/60050639.mkv +李福山-喜相逢,http://em.21dtv.com/songs/60048180.mkv +梁立昂-相信恩,http://em.21dtv.com/songs/60084178.mkv +思卫(Sway)+郑中基-小小的,http://em.21dtv.com/songs/60132484.mkv +刘玥盈溪-小小的,http://em.21dtv.com/songs/60130124.mkv +赵鑫-栖息地,http://em.21dtv.com/songs/60128436.mkv +唐韦琪-新细代,http://em.21dtv.com/songs/60123788.mkv +善莹-小小草,http://em.21dtv.com/songs/60109237.mkv +方大同-小小虫,http://em.21dtv.com/songs/60049798.mkv +曾桂英-绣香包,http://em.21dtv.com/songs/60051535.mkv +吴丹妮-相信爱,http://em.21dtv.com/songs/60097027.mkv +光合作用-相信爱,http://em.21dtv.com/songs/60081310.mkv +韦小天-小小爱,http://em.21dtv.com/songs/60078729.mkv +尹嘉萱-相信爱,http://em.21dtv.com/songs/60072606.mkv +台湾女孩-相信爱,http://em.21dtv.com/songs/60072605.mkv +林育群+中孝介-相信爱(演唱会),http://em.21dtv.com/songs/60065191.mkv +花园精灵-谢谢爱,http://em.21dtv.com/songs/60050040.mkv +李宇春-谢谢爱(演唱会),http://em.21dtv.com/songs/60050039.mkv +TWINS-小心爱,http://em.21dtv.com/songs/60049833.mkv +叶佩雯-相信爱,http://em.21dtv.com/songs/60048835.mkv +许志安-相信爱,http://em.21dtv.com/songs/60048834.mkv +群星-相信爱,http://em.21dtv.com/songs/60048833.mkv +刘超-相信爱,http://em.21dtv.com/songs/60048832.mkv +钟彩媚-冇下闲,http://em.21dtv.com/songs/60129682.mkv +陈钦宇-小王子,http://em.21dtv.com/songs/60123329.mkv +C ALLSTAR-小王子(演唱会),http://em.21dtv.com/songs/60078727.mkv +张芸京-小王子,http://em.21dtv.com/songs/60049780.mkv +黄耀明-小王子,http://em.21dtv.com/songs/60049779.mkv +范玮琪-小王子,http://em.21dtv.com/songs/60049778.mkv +杨千嬅+黄耀明-小王子(演唱会),http://em.21dtv.com/songs/60049777.mkv +容祖儿-小王子(演唱会),http://em.21dtv.com/songs/60049776.mkv +罗云熙-夏未央,http://em.21dtv.com/songs/60110451.mkv +许志豪+张秀卿-心无言,http://em.21dtv.com/songs/60096127.mkv +童唱-小乌鸦,http://em.21dtv.com/songs/60049787.mkv +彭羚-小玩意,http://em.21dtv.com/songs/60049775.mkv +小贱+可歆-小温馨,http://em.21dtv.com/songs/60080779.mkv +谢容儿-血娃娃,http://em.21dtv.com/songs/60118915.mkv +樊凡-小娃娃,http://em.21dtv.com/songs/60086028.mkv +方小菲-想娃娃,http://em.21dtv.com/songs/60068836.mkv +谢安琪-小顽童,http://em.21dtv.com/songs/60081719.mkv +李荣浩-笑忘书,http://em.21dtv.com/songs/60108583.mkv +毛宁+萨顶顶+麦子杰+朱桦-笑忘书,http://em.21dtv.com/songs/60084225.mkv +张敬轩-笑忘书,http://em.21dtv.com/songs/60049957.mkv +王菲-笑忘书,http://em.21dtv.com/songs/60049956.mkv +张敬轩-笑忘书(演唱会),http://em.21dtv.com/songs/60049955.mkv +泳儿-笑忘书(演唱会),http://em.21dtv.com/songs/60049954.mkv +佚名-绣围裙,http://em.21dtv.com/songs/60051534.mkv +邱芸子-心无奈,http://em.21dtv.com/songs/60095939.mkv +沈世爱-小温暖,http://em.21dtv.com/songs/60071333.mkv +邱芸子-心无柰,http://em.21dtv.com/songs/60050631.mkv +夏国星+孙佩林-想问您,http://em.21dtv.com/songs/60049257.mkv +POPU LADY-小未来,http://em.21dtv.com/songs/60099695.mkv +李娅莎+施文彬-笑无聊,http://em.21dtv.com/songs/60099302.mkv +萧萧-想忘了,http://em.21dtv.com/songs/60049254.mkv +詹雅雯-想袜开,http://em.21dtv.com/songs/60049252.mkv +方瑞娥-心畏寒,http://em.21dtv.com/songs/60050627.mkv +五月天-笑忘歌,http://em.21dtv.com/songs/60049953.mkv +张栋梁-小乌龟,http://em.21dtv.com/songs/60049786.mkv +佚名-想袜到,http://em.21dtv.com/songs/60049251.mkv +易天晴-下午茶(无原唱),http://em.21dtv.com/songs/60048298.mkv +电流妹+葛雨晴-小尾巴,http://em.21dtv.com/songs/60120810.mkv +吴涤清-心未变,http://em.21dtv.com/songs/60066488.mkv +梁汉文-信望爱,http://em.21dtv.com/songs/60092900.mkv +范玮琪+何炅+佟大为+李代沫-希望爱,http://em.21dtv.com/songs/60081628.mkv +奇然-戏台子,http://em.21dtv.com/songs/60133538.mkv +葛雨晴-小同桌,http://em.21dtv.com/songs/60132850.mkv +林姗-心陶醉,http://em.21dtv.com/songs/60066487.mkv +王雪晶-小兔子,http://em.21dtv.com/songs/60049770.mkv +程琳-信天游,http://em.21dtv.com/songs/60134047.mkv +白致瑶-信天游,http://em.21dtv.com/songs/60117069.mkv +一诺千金-像太阳,http://em.21dtv.com/songs/60113205.mkv +舒浩炀-信天游,http://em.21dtv.com/songs/60111366.mkv +王菲-心太野,http://em.21dtv.com/songs/60103472.mkv +阿鲁阿卓+程琳-信天游,http://em.21dtv.com/songs/60098836.mkv +王晓娟-信天游,http://em.21dtv.com/songs/60086054.mkv +HOTCHA-小桃园(演唱会),http://em.21dtv.com/songs/60078723.mkv +程琳-信天游,http://em.21dtv.com/songs/60065266.mkv +卓依婷-信天游,http://em.21dtv.com/songs/60051011.mkv +李娜-信天游,http://em.21dtv.com/songs/60051010.mkv +杭天琪+范琳琳-信天游,http://em.21dtv.com/songs/60051009.mkv +范琳琳-信天游,http://em.21dtv.com/songs/60051008.mkv +王菀之-小团圆,http://em.21dtv.com/songs/60049771.mkv +五月天-小太阳,http://em.21dtv.com/songs/60049758.mkv +童唱-小太阳,http://em.21dtv.com/songs/60049757.mkv +乔洋-小太阳,http://em.21dtv.com/songs/60049756.mkv +罗时丰-心疼心,http://em.21dtv.com/songs/60130651.mkv +小豪-小甜心,http://em.21dtv.com/songs/60115877.mkv +陈雷-心头雪,http://em.21dtv.com/songs/60096932.mkv +陈奂仁-小甜心,http://em.21dtv.com/songs/60084219.mkv +梁振宇-心痛心,http://em.21dtv.com/songs/60050620.mkv +青蛙乐队-小跳蛙,http://em.21dtv.com/songs/60122262.mkv +凤姐-心跳跳,http://em.21dtv.com/songs/60134922.mkv +Yuki-小甜甜,http://em.21dtv.com/songs/60111665.mkv +李恭-小天堂,http://em.21dtv.com/songs/60111164.mkv +龙吉吉一-小甜甜,http://em.21dtv.com/songs/60049766.mkv +何嘉文-小甜甜(无原唱),http://em.21dtv.com/songs/60049765.mkv +周华健-小天堂,http://em.21dtv.com/songs/60049763.mkv +邱芸子-心头石,http://em.21dtv.com/songs/60102785.mkv +容祖儿-小天使(演唱会),http://em.21dtv.com/songs/60049762.mkv +童唱-小天使(无原唱),http://em.21dtv.com/songs/60049761.mkv +任贤齐+小虫-心太软,http://em.21dtv.com/songs/60096931.mkv +蔡义德-心头肉,http://em.21dtv.com/songs/60062246.mkv +卓依婷-心太软,http://em.21dtv.com/songs/60050576.mkv +任贤齐-心太软,http://em.21dtv.com/songs/60050575.mkv +陈慧琳-心太软,http://em.21dtv.com/songs/60050574.mkv +佚名-星条旗,http://em.21dtv.com/songs/60051098.mkv +蔡小虎-乡土情,http://em.21dtv.com/songs/60048577.mkv +方瑞娥-心头凝,http://em.21dtv.com/songs/60125618.mkv +杨锦-小甜蜜,http://em.21dtv.com/songs/60113686.mkv +陈泓志-小甜蜜,http://em.21dtv.com/songs/60106406.mkv +五月-西桐木,http://em.21dtv.com/songs/60084134.mkv +古巨基-小甜蜜,http://em.21dtv.com/songs/60049764.mkv +李芳蕾-夏天里,http://em.21dtv.com/songs/60080391.mkv +童唱-小陀螺,http://em.21dtv.com/songs/60049772.mkv +范楚儿-喜帖街,http://em.21dtv.com/songs/60131762.mkv +张崇基+张崇德-喜帖街(演唱会),http://em.21dtv.com/songs/60065167.mkv +蔡琴-心太急,http://em.21dtv.com/songs/60050572.mkv +谢安琪-喜贴街,http://em.21dtv.com/songs/60048177.mkv +谢安琪-喜帖街(演唱会),http://em.21dtv.com/songs/60048176.mkv +苏永康-喜帖街(演唱会),http://em.21dtv.com/songs/60048175.mkv +林玉英-心头恨,http://em.21dtv.com/songs/60100211.mkv +郭富城-心头好,http://em.21dtv.com/songs/60090264.mkv +佚名-心头恨,http://em.21dtv.com/songs/60050622.mkv +佚名-小桃红,http://em.21dtv.com/songs/60049760.mkv +陈红-小桃红,http://em.21dtv.com/songs/60049759.mkv +孙耀威-西太后,http://em.21dtv.com/songs/60047944.mkv +姚贝娜-小头发,http://em.21dtv.com/songs/60086027.mkv +赵丹-新天地,http://em.21dtv.com/songs/60126225.mkv +金池-想太多,http://em.21dtv.com/songs/60110593.mkv +尹熙水-想太多,http://em.21dtv.com/songs/60084200.mkv +周柏豪-想太多,http://em.21dtv.com/songs/60078643.mkv +炎亚纶-想太多(演唱会),http://em.21dtv.com/songs/60078642.mkv +郑秀文-想太多,http://em.21dtv.com/songs/60049242.mkv +张震岳-想太多,http://em.21dtv.com/songs/60049241.mkv +李玖哲-想太多,http://em.21dtv.com/songs/60049240.mkv +范玮琪-想太多,http://em.21dtv.com/songs/60049239.mkv +MR.-想太多,http://em.21dtv.com/songs/60049238.mkv +RENA-夏天啊,http://em.21dtv.com/songs/60065174.mkv +于洋+时嘉-相思醉,http://em.21dtv.com/songs/60114979.mkv +陈奕迅-笑死朕,http://em.21dtv.com/songs/60078742.mkv +陈瑞-相思债,http://em.21dtv.com/songs/60048806.mkv +李静芳-相思栽,http://em.21dtv.com/songs/60048805.mkv +杨荣辉-相思雨,http://em.21dtv.com/songs/60132592.mkv +杨荣辉-相思雨,http://em.21dtv.com/songs/60130469.mkv +陈轩羽-小誓言,http://em.21dtv.com/songs/60128554.mkv +晓依-相思怨,http://em.21dtv.com/songs/60128054.mkv +涓子-相思谣,http://em.21dtv.com/songs/60121880.mkv +杨艳-相思引,http://em.21dtv.com/songs/60121809.mkv +梁理凯-小誓言,http://em.21dtv.com/songs/60108639.mkv +小曾-小沈阳,http://em.21dtv.com/songs/60106789.mkv +冷漠-相思语,http://em.21dtv.com/songs/60095265.mkv +央金兰泽-相思雨,http://em.21dtv.com/songs/60094865.mkv +高进-小沈阳,http://em.21dtv.com/songs/60089011.mkv +郭静-小声音,http://em.21dtv.com/songs/60083105.mkv +蒲紫微-小山羊,http://em.21dtv.com/songs/60078718.mkv +黄靖伦-心碎雨,http://em.21dtv.com/songs/60050560.mkv +洪荣宏-相思雨,http://em.21dtv.com/songs/60048803.mkv +蔡琴-相思雨,http://em.21dtv.com/songs/60048802.mkv +甄妮-相思雨(演唱会),http://em.21dtv.com/songs/60048801.mkv +董贞-相思引,http://em.21dtv.com/songs/60048798.mkv +郑融-小神仙,http://em.21dtv.com/songs/60093326.mkv +古巨基-笑说想,http://em.21dtv.com/songs/60049952.mkv +容祖儿+古巨基-笑说想(演唱会),http://em.21dtv.com/songs/60049951.mkv +张可儿-相思纹,http://em.21dtv.com/songs/60115147.mkv +徐誉滕+崔子格-相思网,http://em.21dtv.com/songs/60101641.mkv +孙淑媚-香水味,http://em.21dtv.com/songs/60095514.mkv +庄学忠-潇洒调,http://em.21dtv.com/songs/60087762.mkv +郑中基-相思汤,http://em.21dtv.com/songs/60048788.mkv +佚名-相思叹,http://em.21dtv.com/songs/60048787.mkv +黄思婷-咸酸甜(无原唱),http://em.21dtv.com/songs/60048481.mkv +姚亦晴(Shiny)-驯兽师,http://em.21dtv.com/songs/60135095.mkv +姚亦晴-驯兽师,http://em.21dtv.com/songs/60135097.mkv +风语-相思树,http://em.21dtv.com/songs/60129794.mkv +赵霏儿-心塞塞,http://em.21dtv.com/songs/60120984.mkv +花儿乐队-香帅帅,http://em.21dtv.com/songs/60120875.mkv +安苡葳-洗刷刷,http://em.21dtv.com/songs/60118515.mkv +李碧华-心酸酸,http://em.21dtv.com/songs/60095626.mkv +颜联武-星闪闪,http://em.21dtv.com/songs/60093509.mkv +王咏春-小哨所,http://em.21dtv.com/songs/60088282.mkv +周笔畅-喜唰唰,http://em.21dtv.com/songs/60087593.mkv +李悦君-星闪闪,http://em.21dtv.com/songs/60084262.mkv +张真-醒世诗,http://em.21dtv.com/songs/60051187.mkv +佚名-心酸酸,http://em.21dtv.com/songs/60050533.mkv +邓丽君-心酸酸,http://em.21dtv.com/songs/60050532.mkv +卢业媚-心思思,http://em.21dtv.com/songs/60050518.mkv +许冠杰-心思思(无原唱),http://em.21dtv.com/songs/60050517.mkv +童唱-小松树,http://em.21dtv.com/songs/60049755.mkv +初瑞-小哨所,http://em.21dtv.com/songs/60049728.mkv +童星-嘻唰唰,http://em.21dtv.com/songs/60048053.mkv +花儿乐队-嘻唰唰,http://em.21dtv.com/songs/60048052.mkv +陈泳泼+王丽-心上人,http://em.21dtv.com/songs/60134408.mkv +景甜-心上人,http://em.21dtv.com/songs/60115970.mkv +费玉清-心上人,http://em.21dtv.com/songs/60094695.mkv +阿茹娜-心上人,http://em.21dtv.com/songs/60070079.mkv +阿鲁阿卓-心上人,http://em.21dtv.com/songs/60070078.mkv +宋熙铭-心上人,http://em.21dtv.com/songs/60065241.mkv +卓玛加-雪山人,http://em.21dtv.com/songs/60051740.mkv +卓依婷-心上人,http://em.21dtv.com/songs/60050470.mkv +庄学忠-心上人,http://em.21dtv.com/songs/60050469.mkv +泽仁多吉-心上人,http://em.21dtv.com/songs/60050468.mkv +宇宙人-心上人,http://em.21dtv.com/songs/60050467.mkv +龙飘飘-心上人,http://em.21dtv.com/songs/60050466.mkv +高胜美-心上人,http://em.21dtv.com/songs/60050465.mkv +李克勤-心上人(演唱会),http://em.21dtv.com/songs/60050464.mkv +秀兰玛雅-相思签,http://em.21dtv.com/songs/60125993.mkv +余零-修水情,http://em.21dtv.com/songs/60122487.mkv +KYLE+薄荷-相思曲,http://em.21dtv.com/songs/60101597.mkv +晓月-相思曲,http://em.21dtv.com/songs/60098421.mkv +蔡秋凤+陈随意-相思情,http://em.21dtv.com/songs/60078588.mkv +张嘉倪+舒畅-相思曲,http://em.21dtv.com/songs/60067625.mkv +许志豪-相思曲,http://em.21dtv.com/songs/60067624.mkv +付笛声+任静-相思曲,http://em.21dtv.com/songs/60048780.mkv +龙千玉-溪水情,http://em.21dtv.com/songs/60048048.mkv +翁立友-限时批,http://em.21dtv.com/songs/60113960.mkv +翁立友-限时批,http://em.21dtv.com/songs/60109577.mkv +李明洋-相思批,http://em.21dtv.com/songs/60070040.mkv +童童-小饰品,http://em.21dtv.com/songs/60049747.mkv +陈志嘉-牺牲你,http://em.21dtv.com/songs/60100583.mkv +爽子-吓死你,http://em.21dtv.com/songs/60078547.mkv +佚名-锡晒你,http://em.21dtv.com/songs/60048046.mkv +许冠杰-锡晒你,http://em.21dtv.com/songs/60048045.mkv +维妮亚-小生命,http://em.21dtv.com/songs/60127273.mkv +阿吉仔-相思暝,http://em.21dtv.com/songs/60095954.mkv +韩宝仪-雪山盟,http://em.21dtv.com/songs/60051739.mkv +费玉清-雪山盟,http://em.21dtv.com/songs/60051738.mkv +佚名-小生命,http://em.21dtv.com/songs/60049732.mkv +迟志强-小生命,http://em.21dtv.com/songs/60049731.mkv +阿吉仔-相思瞑,http://em.21dtv.com/songs/60048776.mkv +曾心梅-相思梦,http://em.21dtv.com/songs/60048774.mkv +舒清-相思泪,http://em.21dtv.com/songs/60131753.mkv +舒清菊-相思泪,http://em.21dtv.com/songs/60123100.mkv +杨姣-相思泪,http://em.21dtv.com/songs/60100178.mkv +黄红英-相思泪,http://em.21dtv.com/songs/60093542.mkv +中国力量-消失了,http://em.21dtv.com/songs/60090480.mkv +阿华-相思泪,http://em.21dtv.com/songs/60078586.mkv +胡美仪-相思泪(演唱会),http://em.21dtv.com/songs/60065187.mkv +曹越-小三泪,http://em.21dtv.com/songs/60061759.mkv +舒雅颂-相思泪(演唱会),http://em.21dtv.com/songs/60061748.mkv +高向鹏+龙千玉-相思恋,http://em.21dtv.com/songs/60048773.mkv +佚名-相思泪,http://em.21dtv.com/songs/60048772.mkv +林玉英-相思泪,http://em.21dtv.com/songs/60048771.mkv +丽莎-相思泪,http://em.21dtv.com/songs/60048770.mkv +张德兰-相思泪(演唱会),http://em.21dtv.com/songs/60048769.mkv +陈浩德-相思泪(演唱会),http://em.21dtv.com/songs/60048768.mkv +云镁鑫-小伤口,http://em.21dtv.com/songs/60125088.mkv +张晓明-相思苦,http://em.21dtv.com/songs/60098349.mkv +庄学忠-相思苦,http://em.21dtv.com/songs/60089256.mkv +冯曦妤-小伤口,http://em.21dtv.com/songs/60049727.mkv +蔡依林-小伤口,http://em.21dtv.com/songs/60049726.mkv +黄清源-相思苦,http://em.21dtv.com/songs/60048765.mkv +李荣浩-心世界,http://em.21dtv.com/songs/60135379.mkv +赵霏儿-相思劫,http://em.21dtv.com/songs/60134272.mkv +翟家瑶-新四季,http://em.21dtv.com/songs/60127289.mkv +陈展鹏-下世纪,http://em.21dtv.com/songs/60115491.mkv +雨柔-相思锦,http://em.21dtv.com/songs/60114239.mkv +望海高歌-相思锦,http://em.21dtv.com/songs/60113595.mkv +Shiny-小世界,http://em.21dtv.com/songs/60104724.mkv +姚亦晴-小世界,http://em.21dtv.com/songs/60104027.mkv +PHANTOM+NAVI-新世界,http://em.21dtv.com/songs/60100745.mkv +未来脚踏车-小世界,http://em.21dtv.com/songs/60096900.mkv +江蕙-相思镜,http://em.21dtv.com/songs/60095749.mkv +DRY-下世纪,http://em.21dtv.com/songs/60092161.mkv +苏醒-心世界,http://em.21dtv.com/songs/60072646.mkv +任升-小世界,http://em.21dtv.com/songs/60067641.mkv +许茹芸-新世界,http://em.21dtv.com/songs/60050948.mkv +平原绫香-新世界,http://em.21dtv.com/songs/60050947.mkv +斯琴格日乐-新世纪,http://em.21dtv.com/songs/60050943.mkv +童唱-小司机,http://em.21dtv.com/songs/60049753.mkv +季欣霈-小世界,http://em.21dtv.com/songs/60049745.mkv +郑秀月-相思酒(无原唱),http://em.21dtv.com/songs/60048764.mkv +冯德伦-下世纪(演唱会),http://em.21dtv.com/songs/60048294.mkv +李秋霞-洗手巾,http://em.21dtv.com/songs/60048089.mkv +李玉萍-洗手巾(无原唱),http://em.21dtv.com/songs/60048088.mkv +陈百潭+曹雅雯-相思痕,http://em.21dtv.com/songs/60123323.mkv +许云上-小时候,http://em.21dtv.com/songs/60123162.mkv +蔡秋凤-相思花,http://em.21dtv.com/songs/60123134.mkv +陈淑萍-相思话,http://em.21dtv.com/songs/60119017.mkv +陈泳泼-相思海,http://em.21dtv.com/songs/60115504.mkv +陈百潭+曹雅雯-相思痕,http://em.21dtv.com/songs/60114223.mkv +姚世杰+张吉-小时候,http://em.21dtv.com/songs/60107640.mkv +南镇-相思花,http://em.21dtv.com/songs/60102010.mkv +苏打绿-小时候,http://em.21dtv.com/songs/60101485.mkv +孟庭苇-细声话,http://em.21dtv.com/songs/60095519.mkv +林翠萍-相思海,http://em.21dtv.com/songs/60091496.mkv +张德兰-小时候(演唱会),http://em.21dtv.com/songs/60078721.mkv +苏打绿-小时候(演唱会),http://em.21dtv.com/songs/60078720.mkv +罗时丰-相思海,http://em.21dtv.com/songs/60078583.mkv +蒲紫微-小时候,http://em.21dtv.com/songs/60068848.mkv +吴勇滨-小时候,http://em.21dtv.com/songs/60065217.mkv +黄鑫+白冰-星宿海,http://em.21dtv.com/songs/60051135.mkv +陈奕迅-新生活,http://em.21dtv.com/songs/60050934.mkv +陈奕迅-新生活(演唱会),http://em.21dtv.com/songs/60050933.mkv +周冰倩-小时候,http://em.21dtv.com/songs/60049744.mkv +袁浩宇+郑艳蕾-小时候,http://em.21dtv.com/songs/60049743.mkv +佚名-小时候,http://em.21dtv.com/songs/60049742.mkv +艳蕾+浩宇-小时候,http://em.21dtv.com/songs/60049741.mkv +阿信-小时候,http://em.21dtv.com/songs/60049740.mkv +小斯韵-小时候,http://em.21dtv.com/songs/60049739.mkv +南拳妈妈-小时候,http://em.21dtv.com/songs/60049738.mkv +明圣凯-小时候,http://em.21dtv.com/songs/60049737.mkv +路家敏-小时候,http://em.21dtv.com/songs/60049736.mkv +黄征-小时候,http://em.21dtv.com/songs/60049735.mkv +谭咏麟-小珊瑚,http://em.21dtv.com/songs/60049725.mkv +金佩姗-相思花(无原唱),http://em.21dtv.com/songs/60048763.mkv +李谷一-相思河,http://em.21dtv.com/songs/60048751.mkv +佚名-相思海,http://em.21dtv.com/songs/60048750.mkv +杨小萍-相思海(无原唱),http://em.21dtv.com/songs/60048749.mkv +韩大伟-行善歌,http://em.21dtv.com/songs/60135981.mkv +筷子兄弟-小水果,http://em.21dtv.com/songs/60112138.mkv +佚名-学生歌,http://em.21dtv.com/songs/60051655.mkv +许冠杰-学生歌,http://em.21dtv.com/songs/60051654.mkv +林子祥-学生哥,http://em.21dtv.com/songs/60051653.mkv +金莎-相思垢,http://em.21dtv.com/songs/60048747.mkv +陈宝欣-相思赋,http://em.21dtv.com/songs/60106393.mkv +毕书尽+陈势安+陈彦允+李玉玺-心时代,http://em.21dtv.com/songs/60114637.mkv +江蕙-相思灯,http://em.21dtv.com/songs/60097026.mkv +谭晶-相思埭(演唱会),http://em.21dtv.com/songs/60084177.mkv +群星-新生代,http://em.21dtv.com/songs/60050932.mkv +南台湾小姑娘-相思豆,http://em.21dtv.com/songs/60048744.mkv +佚名-相思灯,http://em.21dtv.com/songs/60048743.mkv +张燕-喜事多,http://em.21dtv.com/songs/60048173.mkv +乌兰图雅-相思草,http://em.21dtv.com/songs/60127706.mkv +乌兰图雅-相思草,http://em.21dtv.com/songs/60128741.mkv +苏玮-相思长,http://em.21dtv.com/songs/60122058.mkv +亦心-相思愁,http://em.21dtv.com/songs/60113241.mkv +王雪玲-相思愁,http://em.21dtv.com/songs/60085996.mkv +黄香莲-相思船(无原唱),http://em.21dtv.com/songs/60080538.mkv +佚名-相思船(无原唱),http://em.21dtv.com/songs/60048736.mkv +姜嘉锵-下四川,http://em.21dtv.com/songs/60048297.mkv +佚名-休说不,http://em.21dtv.com/songs/60051496.mkv +童唱-小水兵(无原唱),http://em.21dtv.com/songs/60049750.mkv +李锋+王麟-小日子,http://em.21dtv.com/songs/60131513.mkv +容祖儿-小日子,http://em.21dtv.com/songs/60086025.mkv +天悦-仙人掌,http://em.21dtv.com/songs/60078551.mkv +郭彤-小日子,http://em.21dtv.com/songs/60049717.mkv +邱金墩-仙人掌,http://em.21dtv.com/songs/60048444.mkv +蓝心湄-仙人掌(演唱会),http://em.21dtv.com/songs/60048443.mkv +傅佩嘉-小人鱼,http://em.21dtv.com/songs/60092298.mkv +白小白-小人物,http://em.21dtv.com/songs/60135591.mkv +陈慧敏-小人物,http://em.21dtv.com/songs/60108977.mkv +MC HOTDOG-新人王(演唱会),http://em.21dtv.com/songs/60078868.mkv +伟祺-小人物,http://em.21dtv.com/songs/60067640.mkv +秀兰玛雅-心若铁,http://em.21dtv.com/songs/60050457.mkv +吴淑敏-心若铁(无原唱),http://em.21dtv.com/songs/60007248.mkv +陈茂丰-笑人生,http://em.21dtv.com/songs/60049945.mkv +金波-信任你,http://em.21dtv.com/songs/60051006.mkv +金波-信任你(演唱会),http://em.21dtv.com/songs/60051005.mkv +ENERGY-猩人类,http://em.21dtv.com/songs/60051171.mkv +颜楚杉-向日葵,http://em.21dtv.com/songs/60127590.mkv +叶俊华-向日葵,http://em.21dtv.com/songs/60110911.mkv +洪煜祺-向日葵,http://em.21dtv.com/songs/60099373.mkv +张萌萌-向日葵,http://em.21dtv.com/songs/60065203.mkv +周蕙-向日葵,http://em.21dtv.com/songs/60049338.mkv +邓丽君-向日葵,http://em.21dtv.com/songs/60049337.mkv +张伟文-向日葵(演唱会),http://em.21dtv.com/songs/60049335.mkv +RTA少年组-雪绒花,http://em.21dtv.com/songs/60095249.mkv +其他-雪绒花,http://em.21dtv.com/songs/60089652.mkv +兔兔-雪如花,http://em.21dtv.com/songs/60051731.mkv +佚名-雪绒花,http://em.21dtv.com/songs/60051730.mkv +麦子杰-雪绒花,http://em.21dtv.com/songs/60051729.mkv +金莎-雪绒花,http://em.21dtv.com/songs/60051728.mkv +伍佰-小人国(演唱会),http://em.21dtv.com/songs/60049714.mkv +潘玮柏-夏日疯,http://em.21dtv.com/songs/60048372.mkv +刘德华-夏日fiesta,http://em.21dtv.com/songs/60048367.mkv +刘德华-夏日fiesta(演唱会),http://em.21dtv.com/songs/60048366.mkv +谭咏麟+李幸倪-型人道,http://em.21dtv.com/songs/60135761.mkv +谭咏麟+李幸倪-型人道,http://em.21dtv.com/songs/60132894.mkv +初音ミク-夕日坂,http://em.21dtv.com/songs/60071296.mkv +罗时丰-相欠债,http://em.21dtv.com/songs/60134108.mkv +夏米雅-向前走,http://em.21dtv.com/songs/60101313.mkv +李杨飞-向前走,http://em.21dtv.com/songs/60078653.mkv +卫诗-小圈子(演唱会),http://em.21dtv.com/songs/60049713.mkv +佚名-向前走,http://em.21dtv.com/songs/60049333.mkv +林强-向前走,http://em.21dtv.com/songs/60049332.mkv +蓝奕邦-向前走,http://em.21dtv.com/songs/60049331.mkv +五月天-向前走(演唱会),http://em.21dtv.com/songs/60049330.mkv +佚名-相欠债,http://em.21dtv.com/songs/60048693.mkv +沈文程-相欠债,http://em.21dtv.com/songs/60048692.mkv +黄乙玲-相欠债,http://em.21dtv.com/songs/60048691.mkv +谢金燕-相欠债(无原唱),http://em.21dtv.com/songs/60048690.mkv +江蕙-想起伊,http://em.21dtv.com/songs/60049221.mkv +陈凯彤+陈家乐-小确幸,http://em.21dtv.com/songs/60117322.mkv +陈思涵-小确幸,http://em.21dtv.com/songs/60067639.mkv +陈洁仪+苏永康+雷颂德+李乐诗-向前行(演唱会),http://em.21dtv.com/songs/60049329.mkv +果味VC-星期五,http://em.21dtv.com/songs/60131554.mkv +童唱-小青蛙,http://em.21dtv.com/songs/60049706.mkv +童唱-小青蛙(无原唱),http://em.21dtv.com/songs/60049705.mkv +不纯君-小棋童,http://em.21dtv.com/songs/60121330.mkv +梁静茹-星期天,http://em.21dtv.com/songs/60051087.mkv +童唱-小蜻蜓,http://em.21dtv.com/songs/60049707.mkv +万圆圆-煦氰说,http://em.21dtv.com/songs/60125063.mkv +梅艳芳-心全蚀,http://em.21dtv.com/songs/60050444.mkv +游鸿明-写情书,http://em.21dtv.com/songs/60050011.mkv +小情人组合-小情人,http://em.21dtv.com/songs/60129003.mkv +佚名-小情人,http://em.21dtv.com/songs/60049710.mkv +刘德华-小情人,http://em.21dtv.com/songs/60049709.mkv +白致瑶+王传越-想亲亲,http://em.21dtv.com/songs/60117094.mkv +江涛+王小妮-想亲亲,http://em.21dtv.com/songs/60111221.mkv +冯允谦-小情趣,http://em.21dtv.com/songs/60103904.mkv +李晖+阎维文-想亲亲(演唱会),http://em.21dtv.com/songs/60084199.mkv +范玮琪-小亲亲,http://em.21dtv.com/songs/60078705.mkv +莫旭秋-小亲亲(演唱会),http://em.21dtv.com/songs/60078704.mkv +郭新龙+陈惠英-想亲亲,http://em.21dtv.com/songs/60070048.mkv +潘秀琼-小亲亲(演唱会),http://em.21dtv.com/songs/60065216.mkv +佚名-小亲亲,http://em.21dtv.com/songs/60049704.mkv +潘秀琼-小亲亲,http://em.21dtv.com/songs/60049703.mkv +费玉清-小亲亲,http://em.21dtv.com/songs/60049702.mkv +阎维文-想亲亲,http://em.21dtv.com/songs/60049226.mkv +牟青+俞静-想亲亲,http://em.21dtv.com/songs/60049225.mkv +佚名-乡亲情,http://em.21dtv.com/songs/60048575.mkv +焦洋-小青年,http://em.21dtv.com/songs/60107045.mkv +朱之文+于文华-想亲娘,http://em.21dtv.com/songs/60087965.mkv +于文华+朱之文-想亲娘,http://em.21dtv.com/songs/60087252.mkv +阿鲁阿卓-想亲娘,http://em.21dtv.com/songs/60084198.mkv +韩磊-想亲娘,http://em.21dtv.com/songs/60049224.mkv +王鹏-想亲娘(演唱会),http://em.21dtv.com/songs/60049223.mkv +夏韶声-想起你,http://em.21dtv.com/songs/60049220.mkv +邓丽君-想起你,http://em.21dtv.com/songs/60049219.mkv +王建杰-想起你(无原唱),http://em.21dtv.com/songs/60049218.mkv +方瑞娥-笑情梦,http://em.21dtv.com/songs/60049944.mkv +杨耀东-星期六,http://em.21dtv.com/songs/60051080.mkv +罗百吉-星期六,http://em.21dtv.com/songs/60051079.mkv +范文芳-星期六,http://em.21dtv.com/songs/60051078.mkv +TWINS-星期六,http://em.21dtv.com/songs/60051077.mkv +杜春雷-向钱看,http://em.21dtv.com/songs/60132576.mkv +金池-向前看,http://em.21dtv.com/songs/60121035.mkv +洪凯+张莹-寻情记,http://em.21dtv.com/songs/60100277.mkv +古巨基-殉情记,http://em.21dtv.com/songs/60051865.mkv +永邦-寻情记,http://em.21dtv.com/songs/60051828.mkv +羽泉-辛弃疾,http://em.21dtv.com/songs/60050774.mkv +羽泉-辛弃疾(演唱会),http://em.21dtv.com/songs/60050773.mkv +优客李林-相亲记,http://em.21dtv.com/songs/60048695.mkv +林志炫-相亲记,http://em.21dtv.com/songs/60048694.mkv +雷颂德+李乐诗+苏永康-向前行,http://em.21dtv.com/songs/60093505.mkv +张牧阅+李雏儿-小情话,http://em.21dtv.com/songs/60086024.mkv +黎明-心情好,http://em.21dtv.com/songs/60050432.mkv +孙露-小情歌,http://em.21dtv.com/songs/60115817.mkv +曹海波+梁小丹-小情歌,http://em.21dtv.com/songs/60113578.mkv +TFBoys-小情歌,http://em.21dtv.com/songs/60108248.mkv +游鸿明-写情歌,http://em.21dtv.com/songs/60091628.mkv +孙露-小情歌,http://em.21dtv.com/songs/60078710.mkv +李依霖-小情歌,http://em.21dtv.com/songs/60078709.mkv +大庆小芳-小情歌,http://em.21dtv.com/songs/60078708.mkv +周笔畅+多亮-小情歌,http://em.21dtv.com/songs/60078707.mkv +杨钰莹-小情歌(演唱会),http://em.21dtv.com/songs/60078706.mkv +王琪玮-小情歌,http://em.21dtv.com/songs/60070064.mkv +多亮-小情歌,http://em.21dtv.com/songs/60070063.mkv +格格-小情歌,http://em.21dtv.com/songs/60062384.mkv +安涛-小情歌,http://em.21dtv.com/songs/60062212.mkv +化学猴子-写情歌,http://em.21dtv.com/songs/60050010.mkv +王中平-笑情歌,http://em.21dtv.com/songs/60049943.mkv +苏打绿-小情歌,http://em.21dtv.com/songs/60049708.mkv +黄征-小气鬼,http://em.21dtv.com/songs/60049697.mkv +鲍国-向前方,http://em.21dtv.com/songs/60071322.mkv +罗时丰-向前冲,http://em.21dtv.com/songs/60134084.mkv +袁小迪-向前冲,http://em.21dtv.com/songs/60132872.mkv +吴灿涛-向前冲,http://em.21dtv.com/songs/60099868.mkv +超级女声-向前冲,http://em.21dtv.com/songs/60088724.mkv +王雅洁-向前冲,http://em.21dtv.com/songs/60080744.mkv +联盟乐团+MI2-向前冲,http://em.21dtv.com/songs/60078651.mkv +叶启田-向前冲,http://em.21dtv.com/songs/60074297.mkv +高峰-心憔悴(无原唱),http://em.21dtv.com/songs/60050418.mkv +佚名-向前冲,http://em.21dtv.com/songs/60049328.mkv +徐怀钰-向前冲,http://em.21dtv.com/songs/60049327.mkv +王宏恩-向前冲,http://em.21dtv.com/songs/60049326.mkv +罗百吉-向前冲,http://em.21dtv.com/songs/60049325.mkv +办桌二人组-向前冲,http://em.21dtv.com/songs/60049324.mkv +J.J.Y演唱组-向前冲,http://em.21dtv.com/songs/60049323.mkv +周杰伦-想清楚,http://em.21dtv.com/songs/60049228.mkv +大喇叭组合-小钱包,http://em.21dtv.com/songs/60131302.mkv +童唱-小胖猪,http://em.21dtv.com/songs/60049690.mkv +童唱-小胖猪(无原唱),http://em.21dtv.com/songs/60049689.mkv +麋先生-小朋友,http://em.21dtv.com/songs/60130924.mkv +放射空间-小朋友,http://em.21dtv.com/songs/60109391.mkv +谭咏鸣-新朋友,http://em.21dtv.com/songs/60071350.mkv +李宇春-小朋友,http://em.21dtv.com/songs/60049692.mkv +佚名-心碰心,http://em.21dtv.com/songs/60050411.mkv +张蓉蓉-戏棚情,http://em.21dtv.com/songs/60072756.mkv +朱雅-小脾气,http://em.21dtv.com/songs/60071332.mkv +卓文萱-小脾气,http://em.21dtv.com/songs/60049695.mkv +童唱-小皮球(无原唱),http://em.21dtv.com/songs/60049694.mkv +阿茹娜-雪片片,http://em.21dtv.com/songs/60051720.mkv +香香-香飘飘,http://em.21dtv.com/songs/60048935.mkv +雷龙-小啤酒,http://em.21dtv.com/songs/60133067.mkv +杨瑞代-橡皮筋,http://em.21dtv.com/songs/60066468.mkv +张学友-想劈酒,http://em.21dtv.com/songs/60049206.mkv +杨宗宪-戏棚脚,http://em.21dtv.com/songs/60048210.mkv +群星-戏棚脚,http://em.21dtv.com/songs/60048209.mkv +姚希-小苹果(演唱会),http://em.21dtv.com/songs/60127891.mkv +姚希-小苹果,http://em.21dtv.com/songs/60125366.mkv +筷子兄弟+陈赫-小苹果,http://em.21dtv.com/songs/60118828.mkv +王羽泽-小苹果,http://em.21dtv.com/songs/60103464.mkv +筷子兄弟-小苹果,http://em.21dtv.com/songs/60100701.mkv +郑秀文-x派对(演唱会),http://em.21dtv.com/songs/60006438.mkv +王筝-橡皮擦,http://em.21dtv.com/songs/60078670.mkv +江蕙-心内字,http://em.21dtv.com/songs/60084246.mkv +佚名-新娘仔,http://em.21dtv.com/songs/60050916.mkv +徐若瑄-小女子,http://em.21dtv.com/songs/60049687.mkv +巫启贤-想你知,http://em.21dtv.com/songs/60049173.mkv +江志丰-想你呀,http://em.21dtv.com/songs/60132669.mkv +黄雅莉-想你笑,http://em.21dtv.com/songs/60049166.mkv +张雨生-想念我,http://em.21dtv.com/songs/60049204.mkv +张雨生-相念我,http://em.21dtv.com/songs/60048688.mkv +王又萱-新娘衫,http://em.21dtv.com/songs/60131642.mkv +欧阳朵-小女神,http://em.21dtv.com/songs/60129320.mkv +一绫-新娘裳,http://em.21dtv.com/songs/60116490.mkv +戴玉强+谭晶-新年颂,http://em.21dtv.com/songs/60108529.mkv +苏路-新娘衫,http://em.21dtv.com/songs/60050912.mkv +陈茂丰-新娘衫,http://em.21dtv.com/songs/60050911.mkv +卓依婷-新年颂,http://em.21dtv.com/songs/60050900.mkv +蔡小虎-心内伤,http://em.21dtv.com/songs/60050401.mkv +王艺乐-小男人,http://em.21dtv.com/songs/60131669.mkv +刘思思-小女人,http://em.21dtv.com/songs/60104821.mkv +杜天宇-小男人,http://em.21dtv.com/songs/60086023.mkv +希亚-小男人,http://em.21dtv.com/songs/60067638.mkv +马旭成-小女人,http://em.21dtv.com/songs/60049685.mkv +阿伊米拉-侠女情,http://em.21dtv.com/songs/60115468.mkv +苏雅琦-小泥鳅(演唱会),http://em.21dtv.com/songs/60066474.mkv +罗时丰-心内批,http://em.21dtv.com/songs/60050399.mkv +顾莉雅-想念你,http://em.21dtv.com/songs/60131978.mkv +2BiC+Kassy-想念你,http://em.21dtv.com/songs/60131025.mkv +李玟-想念你,http://em.21dtv.com/songs/60117819.mkv +金志文-想念你,http://em.21dtv.com/songs/60106340.mkv +贾剑龙+萧敬腾-想念你,http://em.21dtv.com/songs/60095094.mkv +2NE1-想念你,http://em.21dtv.com/songs/60093909.mkv +萧敬腾+贾剑龙-想念你,http://em.21dtv.com/songs/60086985.mkv +嘉骏-想念你,http://em.21dtv.com/songs/60078635.mkv +李翊君+高登-想念你,http://em.21dtv.com/songs/60070047.mkv +南宫嘉骏-想念你(舞曲版),http://em.21dtv.com/songs/60062779.mkv +佚名-想念你,http://em.21dtv.com/songs/60049194.mkv +裘海正-想念你,http://em.21dtv.com/songs/60049193.mkv +李健-想念你,http://em.21dtv.com/songs/60049192.mkv +春妹-想念你,http://em.21dtv.com/songs/60049191.mkv +曾航生-想念你,http://em.21dtv.com/songs/60049190.mkv +S.H.E-想念你,http://em.21dtv.com/songs/60049189.mkv +张学友+庾澄庆-想念你(演唱会),http://em.21dtv.com/songs/60049188.mkv +庾澄庆-想念你(演唱会),http://em.21dtv.com/songs/60049187.mkv +欧阳铭芮-谢纳米(演唱会),http://em.21dtv.com/songs/60096377.mkv +郁可唯-小柠檬,http://em.21dtv.com/songs/60088752.mkv +陈升-小南门,http://em.21dtv.com/songs/60049678.mkv +黎明-想你们,http://em.21dtv.com/songs/60049140.mkv +Younha+乐童音乐家-想你了,http://em.21dtv.com/songs/60115647.mkv +高海礁-想你了,http://em.21dtv.com/songs/60106470.mkv +龙梅子+冷漠-想你啦,http://em.21dtv.com/songs/60101949.mkv +郑欣宜-笑能量,http://em.21dtv.com/songs/60097047.mkv +李池湘-新年乐,http://em.21dtv.com/songs/60050897.mkv +许兴刚-想你了,http://em.21dtv.com/songs/60049137.mkv +孙青-想你了,http://em.21dtv.com/songs/60049136.mkv +丁锐-想你了,http://em.21dtv.com/songs/60049135.mkv +GNZ48-新年好,http://em.21dtv.com/songs/60132083.mkv +梁川宇+谭艳芳-新年好,http://em.21dtv.com/songs/60118728.mkv +跨院-炫霓虹,http://em.21dtv.com/songs/60112284.mkv +巧千金-新年好,http://em.21dtv.com/songs/60106807.mkv +程楚煜-新年好,http://em.21dtv.com/songs/60100356.mkv +东方依依+王爱奉-新年好,http://em.21dtv.com/songs/60096167.mkv +东方依依-新年好,http://em.21dtv.com/songs/60096166.mkv +童星-新年红,http://em.21dtv.com/songs/60088387.mkv +淡淡梅香-新年好,http://em.21dtv.com/songs/60078843.mkv +八大巨星-新年好,http://em.21dtv.com/songs/60078842.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-新年happy,http://em.21dtv.com/songs/60078831.mkv +张芸京-小女孩,http://em.21dtv.com/songs/60070061.mkv +徐千雅-仙女湖,http://em.21dtv.com/songs/60070032.mkv +牛欣欣+周张弛+等-新年好,http://em.21dtv.com/songs/60065253.mkv +王瑞霞+办桌阿杰-心内话,http://em.21dtv.com/songs/60053004.mkv +柳博+魏依曼-新年红,http://em.21dtv.com/songs/60050882.mkv +赵莉-新年好,http://em.21dtv.com/songs/60050880.mkv +佚名-新年好,http://em.21dtv.com/songs/60050879.mkv +王雪晶-新年好,http://em.21dtv.com/songs/60050878.mkv +童唱-新年好,http://em.21dtv.com/songs/60050877.mkv +卓依婷-新年好(演唱会),http://em.21dtv.com/songs/60050876.mkv +爱乐公社-新年好(演唱会),http://em.21dtv.com/songs/60050875.mkv +佚名-心内话,http://em.21dtv.com/songs/60050398.mkv +郭桂彬-心内话,http://em.21dtv.com/songs/60050397.mkv +童唱-小女孩,http://em.21dtv.com/songs/60049684.mkv +江蕙-心内歌,http://em.21dtv.com/songs/60050396.mkv +王菲-香奈儿,http://em.21dtv.com/songs/60048933.mkv +双星-新年到,http://em.21dtv.com/songs/60078834.mkv +吴富山+王满娇-下南调,http://em.21dtv.com/songs/60048292.mkv +佚名-下南调(无原唱),http://em.21dtv.com/songs/60048291.mkv +丁嘉林+丁楠霓-新年财,http://em.21dtv.com/songs/60078833.mkv +向蕙玲-呒想你,http://em.21dtv.com/songs/60125276.mkv +Apink-小拇指,http://em.21dtv.com/songs/60110742.mkv +童唱-醒目仔,http://em.21dtv.com/songs/60051181.mkv +童唱-小木舟(无原唱),http://em.21dtv.com/songs/60049676.mkv +糖糖-小蛮腰,http://em.21dtv.com/songs/60128295.mkv +吴莫愁-小蛮腰,http://em.21dtv.com/songs/60117615.mkv +林玉-小蛮腰,http://em.21dtv.com/songs/60113714.mkv +马若溪+马山虎-小蚂蚁,http://em.21dtv.com/songs/60104607.mkv +红苹果组合-星梦缘,http://em.21dtv.com/songs/60091812.mkv +周博贤-小蛮腰,http://em.21dtv.com/songs/60089213.mkv +万飞-寻梦园(演唱会),http://em.21dtv.com/songs/60065297.mkv +佚名-寻梦园,http://em.21dtv.com/songs/60051821.mkv +谢采妘-寻梦园,http://em.21dtv.com/songs/60051820.mkv +张德兰-寻梦园(演唱会),http://em.21dtv.com/songs/60051819.mkv +屠洪纲-寻梦园(演唱会),http://em.21dtv.com/songs/60051818.mkv +吕珊-寻梦园(演唱会),http://em.21dtv.com/songs/60051817.mkv +4ANDA(SON)-熊猫眼,http://em.21dtv.com/songs/60051492.mkv +泳儿-小蛮腰,http://em.21dtv.com/songs/60049644.mkv +泳儿-小蛮腰(演唱会),http://em.21dtv.com/songs/60049643.mkv +新宝岛康乐队-想没有,http://em.21dtv.com/songs/60049073.mkv +古巨基-小明星,http://em.21dtv.com/songs/60134976.mkv +ROBYNN+KENDY-小明星,http://em.21dtv.com/songs/60078701.mkv +米靓-小梦想,http://em.21dtv.com/songs/60070059.mkv +莫文蔚-小明星(演唱会),http://em.21dtv.com/songs/60068847.mkv +张国荣-小明星,http://em.21dtv.com/songs/60049666.mkv +林美美-想袂晓,http://em.21dtv.com/songs/60049074.mkv +郭富城-羡慕我,http://em.21dtv.com/songs/60048539.mkv +童唱-小牧童,http://em.21dtv.com/songs/60049677.mkv +崔子格-小美人,http://em.21dtv.com/songs/60095292.mkv +风采轮-戏梦人,http://em.21dtv.com/songs/60085063.mkv +詹宇豪+宋健彰-熊猫人,http://em.21dtv.com/songs/60051490.mkv +佚名-熊猫人,http://em.21dtv.com/songs/60051489.mkv +雪域格桑+别那-兄妹情,http://em.21dtv.com/songs/60081728.mkv +林俊吉+许慧盈-兄妹情,http://em.21dtv.com/songs/60065283.mkv +可歆-小木偶,http://em.21dtv.com/songs/60125258.mkv +庭竹-小木偶,http://em.21dtv.com/songs/60049674.mkv +彭馨仪-小魔女,http://em.21dtv.com/songs/60120557.mkv +童可可-小秘密,http://em.21dtv.com/songs/60118825.mkv +许佳慧-许某某,http://em.21dtv.com/songs/60118036.mkv +大星+刘歌-想妹妹,http://em.21dtv.com/songs/60103181.mkv +张芸京-小秘密,http://em.21dtv.com/songs/60070060.mkv +薛丹-雪妹妹,http://em.21dtv.com/songs/60051717.mkv +佚名-心茫茫,http://em.21dtv.com/songs/60050387.mkv +黄西田-心茫茫(无原唱),http://em.21dtv.com/songs/60050386.mkv +黄思婷-心茫茫(无原唱),http://em.21dtv.com/songs/60050385.mkv +佚名-小木马,http://em.21dtv.com/songs/60049673.mkv +巧千金-小木马,http://em.21dtv.com/songs/60049672.mkv +佚名-小秘密,http://em.21dtv.com/songs/60049656.mkv +黄英-小妹妹,http://em.21dtv.com/songs/60049649.mkv +张政雄+薛佩洁-惜命命,http://em.21dtv.com/songs/60048032.mkv +杨丞琳-小茉莉,http://em.21dtv.com/songs/60078702.mkv +佚名-小茉莉,http://em.21dtv.com/songs/60049669.mkv +童唱-小毛驴,http://em.21dtv.com/songs/60049646.mkv +崇坛-寻美纪,http://em.21dtv.com/songs/60121610.mkv +八三夭-熊麻吉,http://em.21dtv.com/songs/60107509.mkv +童唱-小母鸡,http://em.21dtv.com/songs/60049670.mkv +北原山猫-小米酒(无原唱),http://em.21dtv.com/songs/60049655.mkv +莫旭秋-寻梦国(演唱会),http://em.21dtv.com/songs/60078983.mkv +庾澄庆-小蜜蜂,http://em.21dtv.com/songs/60049661.mkv +童唱-小蜜蜂,http://em.21dtv.com/songs/60049660.mkv +谭晶-小蜜蜂,http://em.21dtv.com/songs/60049659.mkv +孔太-小蜜蜂(演唱会),http://em.21dtv.com/songs/60049658.mkv +童唱-小蜜蜂(无原唱),http://em.21dtv.com/songs/60049657.mkv +立东乐队-小牡丹,http://em.21dtv.com/songs/60124325.mkv +佚名-想抹到,http://em.21dtv.com/songs/60049075.mkv +佚名-小木船(无原唱),http://em.21dtv.com/songs/60049671.mkv +王俊凯-小棉袄,http://em.21dtv.com/songs/60131632.mkv +石俊荣-小棉袄,http://em.21dtv.com/songs/60114713.mkv +江南旭+梅子-寻觅爱,http://em.21dtv.com/songs/60065298.mkv +冯瑞丽-雪莲赞,http://em.21dtv.com/songs/60106622.mkv +沈珂+徐黎丽+朱超+李安宁-雪鲤鱼,http://em.21dtv.com/songs/60117004.mkv +吴浩康-新乐园,http://em.21dtv.com/songs/60050864.mkv +孙淑媚-心连心,http://em.21dtv.com/songs/60125391.mkv +章磊-祥龙啸,http://em.21dtv.com/songs/60124327.mkv +史春晖-雪莲香(HD),http://em.21dtv.com/songs/10012720.mkv +孙淑媚-心连心,http://em.21dtv.com/songs/60100842.mkv +史春晖-雪莲香,http://em.21dtv.com/songs/60093656.mkv +张秀卿-心连心,http://em.21dtv.com/songs/60067656.mkv +黄乙玲-心落雪,http://em.21dtv.com/songs/60050381.mkv +蔡小虎-心落雪,http://em.21dtv.com/songs/60050380.mkv +黄乙玲-心落雪(演唱会),http://em.21dtv.com/songs/60050379.mkv +李秋霞-心连心,http://em.21dtv.com/songs/60050358.mkv +李腾-小龙虾,http://em.21dtv.com/songs/60049634.mkv +简迷离-修理我,http://em.21dtv.com/songs/60129470.mkv +Kent王健-小礼物,http://em.21dtv.com/songs/60096901.mkv +蔡秋凤-西楼叹,http://em.21dtv.com/songs/60095923.mkv +佚名-西楼叹,http://em.21dtv.com/songs/60095442.mkv +DOUBLEX2-心乱跳,http://em.21dtv.com/songs/60093917.mkv +郁柳-绣罗衫,http://em.21dtv.com/songs/60070103.mkv +杨子夜-小老鼠,http://em.21dtv.com/songs/60049617.mkv +童唱-小老鼠(无原唱),http://em.21dtv.com/songs/60049616.mkv +佚名-小龙人,http://em.21dtv.com/songs/60049633.mkv +东与政-小龙人(演唱会),http://em.21dtv.com/songs/60049632.mkv +卓依婷-新恋情,http://em.21dtv.com/songs/60050865.mkv +徐良-小恋曲,http://em.21dtv.com/songs/60049627.mkv +郑融-小龙女,http://em.21dtv.com/songs/60093327.mkv +李荣浩-心里面,http://em.21dtv.com/songs/60122870.mkv +李荣浩-心里面,http://em.21dtv.com/songs/60121786.mkv +SNH48-悬铃木,http://em.21dtv.com/songs/60109877.mkv +马旭东-小浪漫,http://em.21dtv.com/songs/60096561.mkv +林慧萍-小癞麻,http://em.21dtv.com/songs/60090001.mkv +林心如-新浪漫,http://em.21dtv.com/songs/60050862.mkv +林一峰-新浪漫(演唱会),http://em.21dtv.com/songs/60050861.mkv +佚名-小癞嘛,http://em.21dtv.com/songs/60049614.mkv +佚名-喜临门,http://em.21dtv.com/songs/60048157.mkv +赵鑫-心凉了,http://em.21dtv.com/songs/60122151.mkv +余天龙-小弄弄,http://em.21dtv.com/songs/60121373.mkv +何鹏-心凉了,http://em.21dtv.com/songs/60121368.mkv +崔子格-心乱乱,http://em.21dtv.com/songs/60110169.mkv +桐雨-小萝莉,http://em.21dtv.com/songs/60109466.mkv +毛鹏懿-小俩口,http://em.21dtv.com/songs/60131588.mkv +毛鹏懿(Mao)-小两口,http://em.21dtv.com/songs/60130520.mkv +安又琪+吴樾-小两口,http://em.21dtv.com/songs/60086993.mkv +恭硕良-修罗界,http://em.21dtv.com/songs/60129151.mkv +KasaYAYA-寻灵记,http://em.21dtv.com/songs/60127654.mkv +陈坤-寻龙诀,http://em.21dtv.com/songs/60119009.mkv +曹冉-小辣椒,http://em.21dtv.com/songs/60108546.mkv +郁可唯-寻龙记,http://em.21dtv.com/songs/60095104.mkv +巴郎百川-西琳江,http://em.21dtv.com/songs/60047934.mkv +程琳-小螺号,http://em.21dtv.com/songs/60134049.mkv +吴俊余-心里话,http://em.21dtv.com/songs/60130178.mkv +莫莫+小麒-心里话,http://em.21dtv.com/songs/60117176.mkv +凌之轩-小楼寒,http://em.21dtv.com/songs/60103917.mkv +梁玉嵘-西楼恨(戏曲),http://em.21dtv.com/songs/60092921.mkv +蔡国庆+张继红-小兰河,http://em.21dtv.com/songs/60089466.mkv +雨禾-雪莲花,http://em.21dtv.com/songs/60066506.mkv +许强-雪莲花,http://em.21dtv.com/songs/60051707.mkv +吴炜-雪莲花,http://em.21dtv.com/songs/60051706.mkv +谢采妘-雪里红,http://em.21dtv.com/songs/60051704.mkv +施文彬-笑轮回,http://em.21dtv.com/songs/60049940.mkv +王雪晶-小螺号,http://em.21dtv.com/songs/60049640.mkv +童唱-小螺号,http://em.21dtv.com/songs/60049639.mkv +李左-小刘海,http://em.21dtv.com/songs/60049631.mkv +德德玛-锡林河,http://em.21dtv.com/songs/60048044.mkv +天空乐队-小吕哥,http://em.21dtv.com/songs/60094861.mkv +曾国珲-细路哥,http://em.21dtv.com/songs/60078533.mkv +任贤齐-小狼狗,http://em.21dtv.com/songs/60049615.mkv +陶喆-心乱飞,http://em.21dtv.com/songs/60050375.mkv +郑秀文-仙乐都,http://em.21dtv.com/songs/60093299.mkv +童唱-小乐队,http://em.21dtv.com/songs/60049618.mkv +陈文浩-小老板,http://em.21dtv.com/songs/60135923.mkv +晓依-限量版,http://em.21dtv.com/songs/60114570.mkv +央吉玛-醒来吧,http://em.21dtv.com/songs/60087015.mkv +HARDPACK-小喇叭,http://em.21dtv.com/songs/60079848.mkv +RUBBER BAND-小凉伴(演唱会),http://em.21dtv.com/songs/60049628.mkv +童唱-小喇叭(无原唱),http://em.21dtv.com/songs/60049612.mkv +赵传-谢了爱,http://em.21dtv.com/songs/60078752.mkv +吴钇道-修炼爱,http://em.21dtv.com/songs/60051504.mkv +游喧+钱宣豪-修理爱,http://em.21dtv.com/songs/60051503.mkv +尚雯婕-侠客行,http://em.21dtv.com/songs/60119452.mkv +Assen捷-侠客行,http://em.21dtv.com/songs/60108210.mkv +董贞+许诺-侠客行,http://em.21dtv.com/songs/60103552.mkv +张智霖-寻开心,http://em.21dtv.com/songs/60096952.mkv +二人转+闫学晶+董宝贵-小看戏,http://em.21dtv.com/songs/60071331.mkv +赵学而-寻开心,http://em.21dtv.com/songs/60051812.mkv +周传雄-星空下,http://em.21dtv.com/songs/60051066.mkv +佚名-小看戏,http://em.21dtv.com/songs/60049611.mkv +陈粒-性空山,http://em.21dtv.com/songs/60128550.mkv +王凤英-西口情,http://em.21dtv.com/songs/60102517.mkv +韩磊-鞋勘破,http://em.21dtv.com/songs/60133075.mkv +正月十五-小可乐,http://em.21dtv.com/songs/60104268.mkv +李泽坚-想哭了,http://em.21dtv.com/songs/60099311.mkv +陈浩德-行快啲啦(演唱会),http://em.21dtv.com/songs/60065271.mkv +张本煜+老湿-侠客绝,http://em.21dtv.com/songs/60117729.mkv +周华健-侠客行,http://em.21dtv.com/songs/60097017.mkv +陈辉权-小客店,http://em.21dtv.com/songs/60108139.mkv +谭佩妮-小可爱,http://em.21dtv.com/songs/60124500.mkv +初音未来-夏祭り(动画),http://em.21dtv.com/songs/60098157.mkv +李飞+田毅-香剑吟,http://em.21dtv.com/songs/60112773.mkv +happy-小吉鸭,http://em.21dtv.com/songs/60111610.mkv +王爱华-想军营,http://em.21dtv.com/songs/60106115.mkv +孟文豪-西江月,http://em.21dtv.com/songs/60078498.mkv +陈思思-香江谣,http://em.21dtv.com/songs/60048929.mkv +明圣凯-想家乡,http://em.21dtv.com/songs/60049052.mkv +洪杰+许靖韵+陈凯彤-小酒窝,http://em.21dtv.com/songs/60119769.mkv +蔡卓妍+林俊杰-小酒窝,http://em.21dtv.com/songs/60093119.mkv +TWINS-小酒窝(演唱会),http://em.21dtv.com/songs/60065214.mkv +林俊杰+蔡卓妍-小酒窝,http://em.21dtv.com/songs/60049610.mkv +朱茵-想见他,http://em.21dtv.com/songs/60049057.mkv +梁佳玉-修今生,http://em.21dtv.com/songs/60129307.mkv +袁双洋-湘江颂,http://em.21dtv.com/songs/60107991.mkv +伍佳丽-小巨人,http://em.21dtv.com/songs/60084217.mkv +官恩娜-新假期,http://em.21dtv.com/songs/60050847.mkv +泳儿-新加坡,http://em.21dtv.com/songs/60092964.mkv +凤凝然-相见难,http://em.21dtv.com/songs/60131199.mkv +吴斌-想见你,http://em.21dtv.com/songs/60084190.mkv +无印良品-想见你,http://em.21dtv.com/songs/60049055.mkv +林丽-想见你,http://em.21dtv.com/songs/60049054.mkv +无印良品-想见你(演唱会),http://em.21dtv.com/songs/60049053.mkv +潘建义-乡酒美,http://em.21dtv.com/songs/60093861.mkv +胡东清-新疆美,http://em.21dtv.com/songs/60050854.mkv +孔媛-雪精灵,http://em.21dtv.com/songs/60132351.mkv +TFBOYS-小精灵,http://em.21dtv.com/songs/60126552.mkv +欧宇轩-小精灵,http://em.21dtv.com/songs/60115255.mkv +老五-新酒令,http://em.21dtv.com/songs/60107132.mkv +陈文清-心距离,http://em.21dtv.com/songs/60070076.mkv +陈妃平-雪精灵,http://em.21dtv.com/songs/60051699.mkv +尹相杰+王焱-行酒令,http://em.21dtv.com/songs/60019944.mkv +王炎+尹相杰-行酒令,http://em.21dtv.com/songs/60019943.mkv +方瑞娥-心惊惊,http://em.21dtv.com/songs/60065235.mkv +卓依婷-心惊惊,http://em.21dtv.com/songs/60050318.mkv +王玉玺-相见欢,http://em.21dtv.com/songs/60129411.mkv +胡斌-新疆好,http://em.21dtv.com/songs/60117140.mkv +熊汝霖+姚贝娜-相见欢,http://em.21dtv.com/songs/60096391.mkv +克里木-新疆好,http://em.21dtv.com/songs/60089643.mkv +小曲儿-相见欢,http://em.21dtv.com/songs/60084175.mkv +胡斌-新疆好,http://em.21dtv.com/songs/60071347.mkv +萨仁高娃-新疆好,http://em.21dtv.com/songs/60050852.mkv +刀郎-新疆好,http://em.21dtv.com/songs/60050851.mkv +彭丽媛-新疆好(演唱会),http://em.21dtv.com/songs/60050850.mkv +罗志祥-瞎搅和(演唱会),http://em.21dtv.com/songs/60048232.mkv +蔡小虎-心借过,http://em.21dtv.com/songs/60078764.mkv +蔡小虎+张秀卿-心借过,http://em.21dtv.com/songs/60065234.mkv +伊能静-小教父,http://em.21dtv.com/songs/60049597.mkv +董贞-仙剑赋,http://em.21dtv.com/songs/60048438.mkv +大兵+奇志-洗脚城,http://em.21dtv.com/songs/60089761.mkv +谭锡禧-香蕉船(演唱会),http://em.21dtv.com/songs/60078607.mkv +余天-香蕉船,http://em.21dtv.com/songs/60048931.mkv +童唱-香蕉船,http://em.21dtv.com/songs/60048930.mkv +吴浩康-洗剪吹,http://em.21dtv.com/songs/60048085.mkv +李政飞-绣金匾,http://em.21dtv.com/songs/60111981.mkv +佚名-绣金匾,http://em.21dtv.com/songs/60051533.mkv +郭兰英-绣金匾,http://em.21dtv.com/songs/60051532.mkv +王少雍-熊孩子,http://em.21dtv.com/songs/60119808.mkv +莫艳琳-熊孩子,http://em.21dtv.com/songs/60108862.mkv +SUPPER MOMENT-小伙子,http://em.21dtv.com/songs/60071330.mkv +邓丽君-雪化粧(演唱会),http://em.21dtv.com/songs/60051698.mkv +费翔-雪孩子,http://em.21dtv.com/songs/60051679.mkv +陈诗妮-惜红颜,http://em.21dtv.com/songs/60120099.mkv +吴莫愁-喜欢呦,http://em.21dtv.com/songs/60118451.mkv +陈星+周虹雨-仙湖游,http://em.21dtv.com/songs/60088886.mkv +慕容晓晓+办桌二人组-杏花雨(演唱会),http://em.21dtv.com/songs/60065273.mkv +WOW-心海洋,http://em.21dtv.com/songs/60050283.mkv +陈慧娴-销魂夜(演唱会),http://em.21dtv.com/songs/60049451.mkv +太妃堂-绣花鞋(HD),http://em.21dtv.com/songs/10012761.mkv +太妃堂-绣花鞋,http://em.21dtv.com/songs/60097065.mkv +Kent王健-绣花鞋,http://em.21dtv.com/songs/60097064.mkv +泳儿-心呼吸,http://em.21dtv.com/songs/60080826.mkv +林欣彤-心呼吸(演唱会),http://em.21dtv.com/songs/60062658.mkv +郭媛媛-绣花鞋,http://em.21dtv.com/songs/60061791.mkv +张继聪-循环线,http://em.21dtv.com/songs/60051858.mkv +曾桂英-绣花鞋,http://em.21dtv.com/songs/60051531.mkv +李嘉-心花香,http://em.21dtv.com/songs/60050296.mkv +林峰-心呼吸,http://em.21dtv.com/songs/60050288.mkv +周鹏-小狐仙,http://em.21dtv.com/songs/60049587.mkv +Hello Girls-小黑屋,http://em.21dtv.com/songs/60134693.mkv +万梓良-喜欢我,http://em.21dtv.com/songs/60092233.mkv +佚名-喜欢我,http://em.21dtv.com/songs/60048142.mkv +于文华-小荷塘,http://em.21dtv.com/songs/60049582.mkv +韩再芬+赵纯钢-小花伞,http://em.21dtv.com/songs/60049595.mkv +五月天-小护士,http://em.21dtv.com/songs/60049588.mkv +郑少秋+汪明荃-小河水,http://em.21dtv.com/songs/60049571.mkv +佚名-小河水,http://em.21dtv.com/songs/60049570.mkv +王雪晶-小和尚,http://em.21dtv.com/songs/60049568.mkv +童唱-小和尚,http://em.21dtv.com/songs/60049567.mkv +安琪-细汉时,http://em.21dtv.com/songs/60048218.mkv +方琦-绣红旗,http://em.21dtv.com/songs/60128048.mkv +金婷婷-雪花情,http://em.21dtv.com/songs/60071389.mkv +刀郎-绣红旗,http://em.21dtv.com/songs/60070102.mkv +张妍-绣红旗(演唱会),http://em.21dtv.com/songs/60067682.mkv +佚名-绣花曲(伦巴),http://em.21dtv.com/songs/60051530.mkv +佚名-绣红旗,http://em.21dtv.com/songs/60051528.mkv +王莉-绣红旗,http://em.21dtv.com/songs/60051527.mkv +黄思婷-雪花飘,http://em.21dtv.com/songs/60115548.mkv +苏霈-西湖盼,http://em.21dtv.com/songs/60062928.mkv +张玉华-雪花飘,http://em.21dtv.com/songs/60051696.mkv +伊风-雪花飘,http://em.21dtv.com/songs/60051695.mkv +阳一-雪花飘,http://em.21dtv.com/songs/60051694.mkv +熊天平-雪候鸟,http://em.21dtv.com/songs/60128195.mkv +王芊桦-喜欢你,http://em.21dtv.com/songs/60134005.mkv +黄腾-喜欢你,http://em.21dtv.com/songs/60110732.mkv +邓紫棋-喜欢你,http://em.21dtv.com/songs/60103612.mkv +歌莉雅-喜欢你,http://em.21dtv.com/songs/60097088.mkv +EVER-喜欢你,http://em.21dtv.com/songs/60097087.mkv +多亮-雪候鸟,http://em.21dtv.com/songs/60097074.mkv +邓紫棋-喜欢你(我是歌手第二期),http://em.21dtv.com/songs/60096506.mkv +SOLER-喜欢你(演唱会),http://em.21dtv.com/songs/60078517.mkv +熊天平-雪候鸟,http://em.21dtv.com/songs/60051683.mkv +王心凌-想和你(演唱会),http://em.21dtv.com/songs/60049039.mkv +庭竹-喜欢你,http://em.21dtv.com/songs/60048136.mkv +申东靖+曾少宗-喜欢你,http://em.21dtv.com/songs/60048135.mkv +麻衣-喜欢你,http://em.21dtv.com/songs/60048134.mkv +可米小子-喜欢你,http://em.21dtv.com/songs/60048133.mkv +何静-喜欢你,http://em.21dtv.com/songs/60048132.mkv +郭易-喜欢你,http://em.21dtv.com/songs/60048131.mkv +陈洁仪-喜欢你,http://em.21dtv.com/songs/60048130.mkv +SUNDAY GIRLS-喜欢你,http://em.21dtv.com/songs/60048129.mkv +朱孝天-喜欢你(演唱会),http://em.21dtv.com/songs/60048128.mkv +林一峰-喜欢你(演唱会),http://em.21dtv.com/songs/60048127.mkv +梁咏琪+朱孝天-喜欢你(演唱会),http://em.21dtv.com/songs/60048126.mkv +黄耀明+BEYOND-喜欢你(演唱会),http://em.21dtv.com/songs/60048125.mkv +BEYOND-喜欢你(演唱会),http://em.21dtv.com/songs/60048124.mkv +[Group] +groupName=十六万歌曲MV等 - 33 +黄义达-喜欢你(喜欢我),http://em.21dtv.com/songs/60048123.mkv +贾璨璨-小红帽,http://em.21dtv.com/songs/60101513.mkv +阎琰-小花妹,http://em.21dtv.com/songs/60084214.mkv +童唱-小花帽,http://em.21dtv.com/songs/60049594.mkv +朱妍-小花猫,http://em.21dtv.com/songs/60049592.mkv +童唱-小花猫,http://em.21dtv.com/songs/60049591.mkv +童唱-小红帽,http://em.21dtv.com/songs/60049586.mkv +邓丽欣-小红帽,http://em.21dtv.com/songs/60049585.mkv +吴建豪-小婚礼,http://em.21dtv.com/songs/60084215.mkv +郭采洁-小狐狸,http://em.21dtv.com/songs/60068844.mkv +荒山亮+蔡佳萦-西湖恋,http://em.21dtv.com/songs/60061730.mkv +郭颂-新货郎,http://em.21dtv.com/songs/60050845.mkv +郭颂-新货郎(演唱会),http://em.21dtv.com/songs/60050844.mkv +兔兔-西湖泪,http://em.21dtv.com/songs/60047927.mkv +王明丽-学会哭,http://em.21dtv.com/songs/60101443.mkv +李千娜-心花开,http://em.21dtv.com/songs/60100131.mkv +倪安东-想回家,http://em.21dtv.com/songs/60099093.mkv +郑秀文-驯悍记,http://em.21dtv.com/songs/60051863.mkv +刘珺儿-心花寄,http://em.21dtv.com/songs/60050291.mkv +腾格尔-雪红花,http://em.21dtv.com/songs/60108827.mkv +嬉游记-小坏坏,http://em.21dtv.com/songs/60108416.mkv +嘻游记+吴映洁-小坏坏,http://em.21dtv.com/songs/60108403.mkv +储兰兰-杏花红,http://em.21dtv.com/songs/60078900.mkv +韩雷-小红花,http://em.21dtv.com/songs/60078694.mkv +七朵组合-心慌慌,http://em.21dtv.com/songs/60070075.mkv +周旭风-杏花海,http://em.21dtv.com/songs/60051194.mkv +童唱-小红花,http://em.21dtv.com/songs/60049584.mkv +郑薇-绣花歌,http://em.21dtv.com/songs/60051529.mkv +苏振华-雪花飞,http://em.21dtv.com/songs/60134164.mkv +苏振华-雪花飞,http://em.21dtv.com/songs/60105319.mkv +陈思安-雪花飞,http://em.21dtv.com/songs/60086072.mkv +岳太阳-心好烦,http://em.21dtv.com/songs/60063332.mkv +陈彦允-小坏蛋,http://em.21dtv.com/songs/60101700.mkv +二人转+闫学晶+董宝贵-绣花灯,http://em.21dtv.com/songs/60071380.mkv +胡杰夕-小坏蛋,http://em.21dtv.com/songs/60071329.mkv +董贞-笑红尘,http://em.21dtv.com/songs/60078739.mkv +童丽-西湖春,http://em.21dtv.com/songs/60078497.mkv +陈淑桦-笑红尘,http://em.21dtv.com/songs/60049925.mkv +蔡秋凤-笑红尘,http://em.21dtv.com/songs/60049924.mkv +吴欢-小火车,http://em.21dtv.com/songs/60049596.mkv +张凤凤-西湖春,http://em.21dtv.com/songs/60047926.mkv +谢采妘-西湖春,http://em.21dtv.com/songs/60047925.mkv +石倚洁-雪花白,http://em.21dtv.com/songs/60134037.mkv +吴婧-小伙伴,http://em.21dtv.com/songs/60103149.mkv +卓依婷-绣荷包,http://em.21dtv.com/songs/60051526.mkv +佚名-绣荷包,http://em.21dtv.com/songs/60051525.mkv +童唱-绣荷包,http://em.21dtv.com/songs/60051524.mkv +郭兰英-绣荷包,http://em.21dtv.com/songs/60051523.mkv +苏醒-学会爱,http://em.21dtv.com/songs/60118869.mkv +林健辉-循环爱,http://em.21dtv.com/songs/60078987.mkv +泷川ありさ-夏の花,http://em.21dtv.com/songs/60114652.mkv +德永英明-雪の华,http://em.21dtv.com/songs/60105908.mkv +一绫-心过站,http://em.21dtv.com/songs/60134834.mkv +张秀卿+林莉-心肝仔,http://em.21dtv.com/songs/60096075.mkv +蔡义德+张政雄-心肝子,http://em.21dtv.com/songs/60068857.mkv +杨斯壬-许个愿,http://em.21dtv.com/songs/60086066.mkv +李慧珍-习惯,http://em.21dtv.com/songs/60061736.mkv +江玲-西瓜雨(无原唱),http://em.21dtv.com/songs/60047918.mkv +欧汉声-想归想,http://em.21dtv.com/songs/60097101.mkv +黄克林-想故乡,http://em.21dtv.com/songs/60049036.mkv +胡苏-小港湾,http://em.21dtv.com/songs/60131746.mkv +JW-小故事,http://em.21dtv.com/songs/60128681.mkv +JW-小故事,http://em.21dtv.com/songs/60127653.mkv +刘小静-小怪兽,http://em.21dtv.com/songs/60122516.mkv +陈奕迅-习惯说,http://em.21dtv.com/songs/60078514.mkv +秀兰玛雅-新故事,http://em.21dtv.com/songs/60052047.mkv +佚名-新感受(无原唱),http://em.21dtv.com/songs/60050829.mkv +马浚伟+钟嘉欣-小故事,http://em.21dtv.com/songs/60049563.mkv +太极乐队-献给pauline,http://em.21dtv.com/songs/60048544.mkv +王杰-习惯你,http://em.21dtv.com/songs/60091706.mkv +苏路-写给你,http://em.21dtv.com/songs/60084226.mkv +佚名-献给你,http://em.21dtv.com/songs/60048549.mkv +容祖儿-习惯你,http://em.21dtv.com/songs/60048074.mkv +童可可-小光芒,http://em.21dtv.com/songs/60108791.mkv +圆圆-小闺蜜,http://em.21dtv.com/songs/60100799.mkv +于丽娜-星光恋,http://em.21dtv.com/songs/60103063.mkv +权振东-习惯了,http://em.21dtv.com/songs/60102320.mkv +镜喜-习惯了,http://em.21dtv.com/songs/60061737.mkv +林心如-习惯了,http://em.21dtv.com/songs/60048071.mkv +高浚-习惯了,http://em.21dtv.com/songs/60048070.mkv +张学友-新感觉,http://em.21dtv.com/songs/60050827.mkv +蒋雅文-雪割花,http://em.21dtv.com/songs/60051677.mkv +罗诗琦-小乖乖,http://em.21dtv.com/songs/60134118.mkv +颖宝儿+向梦园-小乖乖,http://em.21dtv.com/songs/60129790.mkv +王菀之-心褂褂,http://em.21dtv.com/songs/60092996.mkv +张敬轩-心褂褂,http://em.21dtv.com/songs/60091104.mkv +张译匀-小乖乖,http://em.21dtv.com/songs/60078691.mkv +张寒-小乖乖,http://em.21dtv.com/songs/60071328.mkv +张泽匀-小乖乖,http://em.21dtv.com/songs/60068843.mkv +王菀之+张敬轩-心挂挂(演唱会),http://em.21dtv.com/songs/60050273.mkv +蔡旻佑-小乖乖,http://em.21dtv.com/songs/60049565.mkv +谢金燕-小乖乖(无原唱),http://em.21dtv.com/songs/60049564.mkv +童唱-习惯歌,http://em.21dtv.com/songs/60048067.mkv +小峰峰-小感动,http://em.21dtv.com/songs/60049556.mkv +群星-香港地,http://em.21dtv.com/songs/60048904.mkv +林一峰-雪糕车(演唱会),http://em.21dtv.com/songs/60051676.mkv +高洪章-心肝贝,http://em.21dtv.com/songs/60078763.mkv +任娟-湘妃竹,http://em.21dtv.com/songs/60120300.mkv +解伟苓-幸福者,http://em.21dtv.com/songs/60084284.mkv +黄义达-啸烽烟,http://em.21dtv.com/songs/60126464.mkv +黄英-幸福谣,http://em.21dtv.com/songs/60124757.mkv +卫东-幸福羊,http://em.21dtv.com/songs/60108360.mkv +王溢-幸福谣,http://em.21dtv.com/songs/60100320.mkv +陶红-幸福谣,http://em.21dtv.com/songs/60094756.mkv +红苹果-幸福园,http://em.21dtv.com/songs/60090105.mkv +董夏娟-幸福鱼,http://em.21dtv.com/songs/60067676.mkv +吴春燕-幸福源(演唱会),http://em.21dtv.com/songs/60063094.mkv +光良-想飞越,http://em.21dtv.com/songs/60049031.mkv +何方-小芳续,http://em.21dtv.com/songs/60127736.mkv +黄妃-小飞侠,http://em.21dtv.com/songs/60123394.mkv +黄妃-小飞侠,http://em.21dtv.com/songs/60116409.mkv +邱英杰-幸福系,http://em.21dtv.com/songs/60107266.mkv +张峻宁-小飞侠,http://em.21dtv.com/songs/60049552.mkv +蔡德才+杨千嬅-小飞侠,http://em.21dtv.com/songs/60049551.mkv +蔡德才+杨千嬅-小飞侠(演唱会),http://em.21dtv.com/songs/60049550.mkv +禹添群-幸福弯,http://em.21dtv.com/songs/60068878.mkv +王澜霏-幸福糖,http://em.21dtv.com/songs/60051375.mkv +李杰-幸福树,http://em.21dtv.com/songs/60120633.mkv +文叁-幸福树,http://em.21dtv.com/songs/60115963.mkv +那英-幸福树(演唱会),http://em.21dtv.com/songs/60051373.mkv +吴灿涛-小父亲,http://em.21dtv.com/songs/60099869.mkv +爱朵女孩-小夫妻,http://em.21dtv.com/songs/60095322.mkv +陈思思-幸福泉,http://em.21dtv.com/songs/60051357.mkv +欧得洋+蔡淳佳-小夫妻,http://em.21dtv.com/songs/60049555.mkv +田亮+叶一茜+田雨橙+田宸羽-幸福年,http://em.21dtv.com/songs/60132752.mkv +童丽-小放牛,http://em.21dtv.com/songs/60078689.mkv +刘一祯-幸福年,http://em.21dtv.com/songs/60051352.mkv +佚名-小放牛,http://em.21dtv.com/songs/60049549.mkv +河北民歌-小放牛,http://em.21dtv.com/songs/60049548.mkv +秦立新-孝父母,http://em.21dtv.com/songs/60134043.mkv +戴梅君-幸福门,http://em.21dtv.com/songs/60070090.mkv +周冬雨-小风铃,http://em.21dtv.com/songs/60123752.mkv +林不夕-幸福泪,http://em.21dtv.com/songs/60113689.mkv +唐俪-幸福路,http://em.21dtv.com/songs/60111782.mkv +高晨-幸福令,http://em.21dtv.com/songs/60094355.mkv +罗志祥-幸福啰,http://em.21dtv.com/songs/60087018.mkv +朱紫娆-幸福论,http://em.21dtv.com/songs/60084279.mkv +川子-幸福里,http://em.21dtv.com/songs/60084278.mkv +吴彦凝-幸福来,http://em.21dtv.com/songs/60080297.mkv +罗志祥-幸福罗,http://em.21dtv.com/songs/60078923.mkv +任升-心飞了,http://em.21dtv.com/songs/60067651.mkv +王菲-新房客,http://em.21dtv.com/songs/60050824.mkv +一绫+李明洋-幸福酒,http://em.21dtv.com/songs/60130025.mkv +一绫+李明洋-幸福酒,http://em.21dtv.com/songs/60128716.mkv +小爱与花儿乐队-小飞机,http://em.21dtv.com/songs/60125433.mkv +丁薇-小风景,http://em.21dtv.com/songs/60090462.mkv +季欣霈-洗发精,http://em.21dtv.com/songs/60048084.mkv +龙千玉-幸福花,http://em.21dtv.com/songs/60108194.mkv +凌东明+粤剧-仙凡会(戏曲),http://em.21dtv.com/songs/60092342.mkv +陈慧娴-雪飞花,http://em.21dtv.com/songs/60072678.mkv +周艳泓-幸福花,http://em.21dtv.com/songs/60051320.mkv +张美晨-幸福歌,http://em.21dtv.com/songs/60127996.mkv +何紫琪-幸福感,http://em.21dtv.com/songs/60109967.mkv +张曼-幸福歌,http://em.21dtv.com/songs/60106846.mkv +吕曹恺-消防歌,http://em.21dtv.com/songs/60086017.mkv +刘姝麟-幸福歌(演唱会),http://em.21dtv.com/songs/60084274.mkv +张祥洪+蒋力宇-新风格,http://em.21dtv.com/songs/60084230.mkv +钟嘉欣-幸福歌,http://em.21dtv.com/songs/60078914.mkv +楚博仁+王麟-小副歌,http://em.21dtv.com/songs/60078690.mkv +罗志祥-幸福感(演唱会),http://em.21dtv.com/songs/60068872.mkv +刘姝麟-幸福歌,http://em.21dtv.com/songs/60067673.mkv +田梓呈+司徒兰芳-幸福感,http://em.21dtv.com/songs/60063000.mkv +王筝-幸福过,http://em.21dtv.com/songs/60051313.mkv +杨竹青-幸福歌,http://em.21dtv.com/songs/60051309.mkv +孟庭苇-幸福感,http://em.21dtv.com/songs/60051307.mkv +吴欢-西风过,http://em.21dtv.com/songs/60047917.mkv +黄锦雯-幸福地,http://em.21dtv.com/songs/60071365.mkv +李紫君-幸福道,http://em.21dtv.com/songs/60051244.mkv +夹子道-幸福岛,http://em.21dtv.com/songs/60051241.mkv +卢星宇+李贵府-笑凡尘,http://em.21dtv.com/songs/60125246.mkv +周敏-幸福城,http://em.21dtv.com/songs/60103157.mkv +伍佰-小帆船,http://em.21dtv.com/songs/60049544.mkv +谭咏麟-小风波(演唱会),http://em.21dtv.com/songs/60049554.mkv +谭咏麟+李克勤-小风波(演唱会),http://em.21dtv.com/songs/60049553.mkv +李天平+金慧-幸福爱,http://em.21dtv.com/songs/60126999.mkv +马丽-小而美,http://em.21dtv.com/songs/60119059.mkv +马丽-小而美,http://em.21dtv.com/songs/60109749.mkv +童唱-小儿郎,http://em.21dtv.com/songs/60049543.mkv +谢恩民-小恩爱,http://em.21dtv.com/songs/60098773.mkv +大庆小芳-秀恩爱,http://em.21dtv.com/songs/60070101.mkv +胡利基+黄立绮-小动作,http://em.21dtv.com/songs/60110473.mkv +西单女孩-西单站,http://em.21dtv.com/songs/60063130.mkv +张艺飞-兄弟缘,http://em.21dtv.com/songs/60130335.mkv +饶天亮+孙华-兄弟缘,http://em.21dtv.com/songs/60099621.mkv +伊能静-下大雨(无原唱),http://em.21dtv.com/songs/60048276.mkv +佚名-选对象,http://em.21dtv.com/songs/60051612.mkv +萧丽珠-选对象(无原唱),http://em.21dtv.com/songs/60051611.mkv +王心凌-心电心,http://em.21dtv.com/songs/60050207.mkv +江若琳-小灯塔,http://em.21dtv.com/songs/60135480.mkv +孙洁-想到疼,http://em.21dtv.com/songs/60067631.mkv +阿木-想到疼,http://em.21dtv.com/songs/60065196.mkv +吴斌-现代人,http://em.21dtv.com/songs/60048497.mkv +马云龙+李健-兄弟情,http://em.21dtv.com/songs/60134459.mkv +朱明-兄弟情,http://em.21dtv.com/songs/60131490.mkv +胡杰夕-兄弟情,http://em.21dtv.com/songs/60128323.mkv +鸿飞-兄弟情,http://em.21dtv.com/songs/60120157.mkv +王旭鹏-兄弟情,http://em.21dtv.com/songs/60118784.mkv +洪立+嘉懿-兄弟情,http://em.21dtv.com/songs/60118747.mkv +黑龙+张海林-兄弟情(HD),http://em.21dtv.com/songs/10012840.mkv +林俊杰-新地球,http://em.21dtv.com/songs/60107824.mkv +林俊杰-新地球,http://em.21dtv.com/songs/60106979.mkv +关淑怡+林欣彤-星斗群,http://em.21dtv.com/songs/60103091.mkv +阿任-兄弟情,http://em.21dtv.com/songs/60099563.mkv +黑龙+张海林-兄弟情,http://em.21dtv.com/songs/60093619.mkv +肥猫大队长-兄弟情,http://em.21dtv.com/songs/60084291.mkv +苏泉-兄弟情,http://em.21dtv.com/songs/60072673.mkv +索朗扎西-兄弟情,http://em.21dtv.com/songs/60051464.mkv +黄品源-兄弟情,http://em.21dtv.com/songs/60051463.mkv +猴子飞行员-行动派,http://em.21dtv.com/songs/60072665.mkv +崔忠华-想当年,http://em.21dtv.com/songs/60107694.mkv +乔洋-新的你,http://em.21dtv.com/songs/60097107.mkv +司文-许多年,http://em.21dtv.com/songs/60087023.mkv +侯延彬-想到你,http://em.21dtv.com/songs/60068834.mkv +萧亚轩-想到你,http://em.21dtv.com/songs/60049012.mkv +庄学忠-想当年,http://em.21dtv.com/songs/60049010.mkv +乔乐乐+张健-兄弟盟,http://em.21dtv.com/songs/60062829.mkv +佚名-许多梦,http://em.21dtv.com/songs/60051558.mkv +温拿乐队-小岛梦,http://em.21dtv.com/songs/60049537.mkv +刘立群-兄弟联,http://em.21dtv.com/songs/60133416.mkv +罗力威-向东流,http://em.21dtv.com/songs/60096949.mkv +彭羚-相对论,http://em.21dtv.com/songs/60092703.mkv +百榆-新大陆,http://em.21dtv.com/songs/60050812.mkv +伍思凯-心动了,http://em.21dtv.com/songs/60050218.mkv +张敬轩-相对论,http://em.21dtv.com/songs/60048631.mkv +梅艳芳-想得开,http://em.21dtv.com/songs/60049016.mkv +星阁-兄弟酒,http://em.21dtv.com/songs/60102282.mkv +刘彦飞-信多久,http://em.21dtv.com/songs/60101964.mkv +曾轶可-新的家,http://em.21dtv.com/songs/60050816.mkv +佚名-小杜鹃,http://em.21dtv.com/songs/60049542.mkv +欧阳青-新对花,http://em.21dtv.com/songs/60081670.mkv +谢霆锋-心底话,http://em.21dtv.com/songs/60050202.mkv +豪记大对唱-心胆寒,http://em.21dtv.com/songs/60050178.mkv +孙一然+卢星灿-兄弟歌,http://em.21dtv.com/songs/60133554.mkv +苏打绿-小点歌,http://em.21dtv.com/songs/60126107.mkv +卢星灿-兄弟歌,http://em.21dtv.com/songs/60110904.mkv +温岚-夏的风,http://em.21dtv.com/songs/60088231.mkv +蔡卓妍-小地方,http://em.21dtv.com/songs/60086019.mkv +马艺航-习大大,http://em.21dtv.com/songs/60116395.mkv +郎郎-习大大,http://em.21dtv.com/songs/60110576.mkv +郎郎-习大大,http://em.21dtv.com/songs/60107268.mkv +王雪晶-小叮当,http://em.21dtv.com/songs/60049540.mkv +范晓萱-小叮当,http://em.21dtv.com/songs/60049539.mkv +佚名-想当初,http://em.21dtv.com/songs/60049007.mkv +林玉枝-下雕鞍(戏曲),http://em.21dtv.com/songs/60095681.mkv +武张春媛-心成玦,http://em.21dtv.com/songs/60094193.mkv +天籁组合-笑残月,http://em.21dtv.com/songs/60049919.mkv +罗志祥-小丑鱼,http://em.21dtv.com/songs/60049524.mkv +刘一祯-洗菜心,http://em.21dtv.com/songs/60123664.mkv +庄学忠-洗菜心,http://em.21dtv.com/songs/60048083.mkv +乔洋-小刺猬,http://em.21dtv.com/songs/60065212.mkv +Golden-新城市,http://em.21dtv.com/songs/60104684.mkv +MR.-小传奇(演唱会),http://em.21dtv.com/songs/60065211.mkv +田亚霍-小醋瓶,http://em.21dtv.com/songs/60131688.mkv +黄思婷-心承诺,http://em.21dtv.com/songs/60136025.mkv +江美琪-相处难,http://em.21dtv.com/songs/60091584.mkv +胥拉齐-小聪明,http://em.21dtv.com/songs/60127317.mkv +张梦弘-小聪明,http://em.21dtv.com/songs/60107720.mkv +BY2-仙草蜜,http://em.21dtv.com/songs/60061973.mkv +郑希怡-小聪明,http://em.21dtv.com/songs/60049529.mkv +王菲-小聪明,http://em.21dtv.com/songs/60049528.mkv +小龙女-肖查某,http://em.21dtv.com/songs/60049419.mkv +董贞-星辰泪,http://em.21dtv.com/songs/60112206.mkv +陈冠希-新刺激,http://em.21dtv.com/songs/60050810.mkv +许桂荣-行船歌,http://em.21dtv.com/songs/60019935.mkv +寂悸-笑春风,http://em.21dtv.com/songs/60103218.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-新春到,http://em.21dtv.com/songs/60078815.mkv +霍尊-惜春词,http://em.21dtv.com/songs/60124677.mkv +李宇春-小翅膀,http://em.21dtv.com/songs/60094539.mkv +吴克群-星辰变,http://em.21dtv.com/songs/60051039.mkv +张蓉蓉-小吃部,http://em.21dtv.com/songs/60049519.mkv +黄美珍-小尘埃,http://em.21dtv.com/songs/60109064.mkv +玖壹壹-下辈子,http://em.21dtv.com/songs/60118797.mkv +郁钧剑-小白杨,http://em.21dtv.com/songs/60049487.mkv +阎维文-小白杨,http://em.21dtv.com/songs/60049486.mkv +龚月-小白杨,http://em.21dtv.com/songs/60049485.mkv +洪荣宏-西北雨,http://em.21dtv.com/songs/60047886.mkv +陈法拉-想不想,http://em.21dtv.com/songs/60078616.mkv +陈随意-心不舍,http://em.21dtv.com/songs/60129762.mkv +巫启贤-心不死,http://em.21dtv.com/songs/60050171.mkv +郭燕-下半生,http://em.21dtv.com/songs/60048241.mkv +马健涛-新包容,http://em.21dtv.com/songs/60104599.mkv +桂莹莹-想不起,http://em.21dtv.com/songs/60132631.mkv +李克勤-心悲秋,http://em.21dtv.com/songs/60050166.mkv +胡杨林-想不起,http://em.21dtv.com/songs/60048999.mkv +阿悄-小背叛,http://em.21dtv.com/songs/60078682.mkv +二人转+闫学晶+董宝贵-小拜年,http://em.21dtv.com/songs/60071326.mkv +佚名-小拜年,http://em.21dtv.com/songs/60049491.mkv +杨迎-小拜年,http://em.21dtv.com/songs/60049490.mkv +巧千金-小拜年,http://em.21dtv.com/songs/60049489.mkv +七仙女-小拜年,http://em.21dtv.com/songs/60049488.mkv +佚名-西波涅,http://em.21dtv.com/songs/60047890.mkv +陈振云-小表妹,http://em.21dtv.com/songs/60049497.mkv +李小杰-西北狼,http://em.21dtv.com/songs/60132530.mkv +夏月-小背篓,http://em.21dtv.com/songs/60130212.mkv +冯晓菲-小背篓,http://em.21dtv.com/songs/60099776.mkv +侃侃-小背箩,http://em.21dtv.com/songs/60086988.mkv +谢容儿+侯皓中-小白脸,http://em.21dtv.com/songs/60078679.mkv +金辉-小白脸,http://em.21dtv.com/songs/60078678.mkv +王菲-醒不来,http://em.21dtv.com/songs/60051173.mkv +方顺吉-心波浪,http://em.21dtv.com/songs/60050168.mkv +宋祖英-小背篓,http://em.21dtv.com/songs/60049495.mkv +董文华-小背篓,http://em.21dtv.com/songs/60049494.mkv +阎维文-小白鹿,http://em.21dtv.com/songs/60049481.mkv +丁博+张二丰+大星+文龙-小白领,http://em.21dtv.com/songs/60049480.mkv +任贤齐-小白脸,http://em.21dtv.com/songs/60049479.mkv +茅威涛+黄依群-惜别离,http://em.21dtv.com/songs/60048028.mkv +王虎-想不开,http://em.21dtv.com/songs/60101455.mkv +邓鼓-学不会,http://em.21dtv.com/songs/60128451.mkv +马郁-学不会,http://em.21dtv.com/songs/60122281.mkv +冯晓荣-西北汉,http://em.21dtv.com/songs/60110862.mkv +陈以桐-学不会,http://em.21dtv.com/songs/60101697.mkv +王汇筑-小白花,http://em.21dtv.com/songs/60100925.mkv +邬祯琳-学不会,http://em.21dtv.com/songs/60084302.mkv +林俊杰-学不会,http://em.21dtv.com/songs/60065294.mkv +吴克群-学不会,http://em.21dtv.com/songs/60051634.mkv +潘玮柏-学不会(演唱会),http://em.21dtv.com/songs/60051633.mkv +周传雄-向北飞,http://em.21dtv.com/songs/60078649.mkv +何静-向北方,http://em.21dtv.com/songs/60049313.mkv +西卿-西北风(无原唱),http://em.21dtv.com/songs/60047659.mkv +岩罕建-想不到,http://em.21dtv.com/songs/60124817.mkv +聂子轩-想不到,http://em.21dtv.com/songs/60108816.mkv +张萌萌-想不到,http://em.21dtv.com/songs/60067630.mkv +李龙+碧瑶-小白菜,http://em.21dtv.com/songs/60111179.mkv +王建杰+吴仪君-心笔叉,http://em.21dtv.com/songs/60087006.mkv +童唱-小白船,http://em.21dtv.com/songs/60049478.mkv +于文华-小白菜,http://em.21dtv.com/songs/60049477.mkv +邵杰-小宝贝,http://em.21dtv.com/songs/60132981.mkv +袁咏琳-小宝贝,http://em.21dtv.com/songs/60114766.mkv +张峥-小宝贝,http://em.21dtv.com/songs/60105832.mkv +巧千金-小宝贝,http://em.21dtv.com/songs/60078681.mkv +胡夏-小宝贝,http://em.21dtv.com/songs/60078680.mkv +石雪-雪宝宝,http://em.21dtv.com/songs/60062907.mkv +吕品-小宝贝,http://em.21dtv.com/songs/60049493.mkv +李克勤-小宝宝(演唱会),http://em.21dtv.com/songs/60049492.mkv +洛嘉-笑傲行,http://em.21dtv.com/songs/60117890.mkv +解婕翎-想爱惹,http://em.21dtv.com/songs/60132880.mkv +水木年华-小爱人,http://em.21dtv.com/songs/60049475.mkv +邓健泓-小矮人,http://em.21dtv.com/songs/60049473.mkv +嘉辉-小爱情,http://em.21dtv.com/songs/60118465.mkv +梁静茹-小爱情,http://em.21dtv.com/songs/60068841.mkv +苏俏慧-想爱你,http://em.21dtv.com/songs/60128338.mkv +郑中基-想爱你,http://em.21dtv.com/songs/60048993.mkv +黄大炜-想爱你,http://em.21dtv.com/songs/60048992.mkv +张也-小阿妹,http://em.21dtv.com/songs/60091037.mkv +殷大成-小阿狸,http://em.21dtv.com/songs/60112048.mkv +林洋-小暗恋,http://em.21dtv.com/songs/60080221.mkv +梦成-寻爱歌,http://em.21dtv.com/songs/60078981.mkv +王建杰-相爱过,http://em.21dtv.com/songs/60048602.mkv +张善为-心爱的HONEY,http://em.21dtv.com/songs/60059399.mkv +卓文萱+黄鸿升-心爱的,http://em.21dtv.com/songs/60096206.mkv +方瑞娥+高向鹏-心爱的,http://em.21dtv.com/songs/60050108.mkv +吴淑敏-心爱的(无原唱),http://em.21dtv.com/songs/60050107.mkv +古巨基-相爱吧,http://em.21dtv.com/songs/60048588.mkv +朴孝信-雪の华,http://em.21dtv.com/songs/60051673.mkv +中岛美嘉-雪の华,http://em.21dtv.com/songs/60051672.mkv +阿超-小50,http://em.21dtv.com/songs/60049472.mkv +果宝酱JAM-我最宅,http://em.21dtv.com/songs/60096989.mkv +张杰-我在这,http://em.21dtv.com/songs/60081258.mkv +泳儿-我自在,http://em.21dtv.com/songs/60080825.mkv +张智成-我做主,http://em.21dtv.com/songs/60047012.mkv +阿弟仔-我在这(无原唱),http://em.21dtv.com/songs/60046803.mkv +萧亚轩-问自已,http://em.21dtv.com/songs/60091999.mkv +1306组合-我终于,http://em.21dtv.com/songs/60070001.mkv +林浩-我祝愿,http://em.21dtv.com/songs/60046974.mkv +梁咏琪-我钟意,http://em.21dtv.com/songs/60046968.mkv +梁咏琪-我钟意(演唱会),http://em.21dtv.com/songs/60046967.mkv +OLIVIA ONG-我在想,http://em.21dtv.com/songs/60080071.mkv +古巨基-我自问,http://em.21dtv.com/songs/60046979.mkv +古巨基-我自问(演唱会),http://em.21dtv.com/songs/60046978.mkv +陈魁-为昨天,http://em.21dtv.com/songs/60085850.mkv +刘德华-舞照跳,http://em.21dtv.com/songs/60047812.mkv +张雁南-武则天,http://em.21dtv.com/songs/60047756.mkv +杨钰莹-武则天,http://em.21dtv.com/songs/60047755.mkv +毛阿敏-武则天,http://em.21dtv.com/songs/60047754.mkv +李娜-武则天,http://em.21dtv.com/songs/60047753.mkv +张悬-无状态,http://em.21dtv.com/songs/60047600.mkv +刘德华-未知数,http://em.21dtv.com/songs/60044302.mkv +戴佩妮-未知数,http://em.21dtv.com/songs/60044301.mkv +张德兰-网中人(演唱会),http://em.21dtv.com/songs/60043398.mkv +洪荣宏+凤娘-望中情,http://em.21dtv.com/songs/60120719.mkv +小刚-问真情,http://em.21dtv.com/songs/60089248.mkv +杨洪基-雾重庆,http://em.21dtv.com/songs/60047862.mkv +王识贤-望中秋,http://em.21dtv.com/songs/60043735.mkv +shelly佳-雾醉念,http://em.21dtv.com/songs/60127664.mkv +莫莫-王子梦,http://em.21dtv.com/songs/60117173.mkv +廖丽娜-尪仔某(无原唱),http://em.21dtv.com/songs/60095523.mkv +劲舞娃娃-舞之魅,http://em.21dtv.com/songs/60047815.mkv +五月天-王子面,http://em.21dtv.com/songs/60043375.mkv +孙燕姿-王子面,http://em.21dtv.com/songs/60043374.mkv +安迪+迪嫂-尪仔某(无原唱),http://em.21dtv.com/songs/60043337.mkv +小黑-望再梦,http://em.21dtv.com/songs/60043119.mkv +李克勤-雾之恋,http://em.21dtv.com/songs/60117806.mkv +方丽盈-雾之恋(演唱会),http://em.21dtv.com/songs/60078490.mkv +陈浩德-雾之恋(演唱会),http://em.21dtv.com/songs/60078489.mkv +张勇-我走了,http://em.21dtv.com/songs/60078426.mkv +姜涛-我醉了,http://em.21dtv.com/songs/60062514.mkv +谭咏麟-雾之恋,http://em.21dtv.com/songs/60047857.mkv +谭咏麟+叶倩文-雾之恋(演唱会),http://em.21dtv.com/songs/60047856.mkv +谭咏麟+李克勤-雾之恋(演唱会),http://em.21dtv.com/songs/60047855.mkv +潘玮柏-无重力,http://em.21dtv.com/songs/60047594.mkv +莫少聪-我走了,http://em.21dtv.com/songs/60046983.mkv +陈百祥-我至叻,http://em.21dtv.com/songs/60046956.mkv +陈百祥-我至叻(演唱会),http://em.21dtv.com/songs/60046955.mkv +萧敬腾-我在哭,http://em.21dtv.com/songs/60046780.mkv +韩晓辉-问自己,http://em.21dtv.com/songs/60117373.mkv +于全莉-问自己,http://em.21dtv.com/songs/60116529.mkv +柳影虹-王昭君(演唱会),http://em.21dtv.com/songs/60062701.mkv +斯琴格日勒-我自己,http://em.21dtv.com/songs/60046976.mkv +萧亚轩-问自己,http://em.21dtv.com/songs/60044515.mkv +顺子-问自己,http://em.21dtv.com/songs/60044514.mkv +邓丽君-问自己,http://em.21dtv.com/songs/60044513.mkv +周伟君+陈辉玲-问紫鹃,http://em.21dtv.com/songs/60044512.mkv +佚名-问紫鹃,http://em.21dtv.com/songs/60044511.mkv +董慧敏+方亚芬-问紫鹃,http://em.21dtv.com/songs/60044510.mkv +卓依婷-王昭君,http://em.21dtv.com/songs/60043366.mkv +佚名-王昭君,http://em.21dtv.com/songs/60043365.mkv +武权-王昭君,http://em.21dtv.com/songs/60043364.mkv +张伟文-王昭君(演唱会),http://em.21dtv.com/songs/60043363.mkv +杨燕-王昭君(演唱会),http://em.21dtv.com/songs/60043362.mkv +谢雷-王昭君(演唱会),http://em.21dtv.com/songs/60043361.mkv +方瑞娥-雾中花,http://em.21dtv.com/songs/60067612.mkv +戴佩妮-我在乎,http://em.21dtv.com/songs/60065132.mkv +黄凯芹-雾中花,http://em.21dtv.com/songs/60047858.mkv +谭咏麟-我在乎,http://em.21dtv.com/songs/60046776.mkv +陈小春-我在乎(演唱会),http://em.21dtv.com/songs/60046775.mkv +王锦山-文昭关,http://em.21dtv.com/songs/60044392.mkv +萧敬腾-我在飞,http://em.21dtv.com/songs/60110494.mkv +B.A.D-我最疯,http://em.21dtv.com/songs/60046995.mkv +顾莉雅-我在飞,http://em.21dtv.com/songs/60046773.mkv +陈明-我在飞,http://em.21dtv.com/songs/60046772.mkv +黄宥杰-王子的DNA,http://em.21dtv.com/songs/60100674.mkv +丁炜-我知道,http://em.21dtv.com/songs/60119220.mkv +放射空间-玩真的,http://em.21dtv.com/songs/60112714.mkv +ALIN-我值得,http://em.21dtv.com/songs/60111578.mkv +A Lin-我值得,http://em.21dtv.com/songs/60111571.mkv +庄心妍-我知道,http://em.21dtv.com/songs/60102184.mkv +李琦-我知道,http://em.21dtv.com/songs/60099318.mkv +吴是闳-我知道,http://em.21dtv.com/songs/60096985.mkv +赖伟锋-我知道,http://em.21dtv.com/songs/60096984.mkv +罗敏庄-我做到(演唱会),http://em.21dtv.com/songs/60078431.mkv +周华健-我知道,http://em.21dtv.com/songs/60046928.mkv +阎韦伶-我知道,http://em.21dtv.com/songs/60046927.mkv +修美娜-我知道,http://em.21dtv.com/songs/60046926.mkv +田震-我知道,http://em.21dtv.com/songs/60046925.mkv +泼猴-我知道,http://em.21dtv.com/songs/60046924.mkv +东来东往-我知道,http://em.21dtv.com/songs/60046923.mkv +MC MOON-我知道,http://em.21dtv.com/songs/60046922.mkv +BY2-我知道,http://em.21dtv.com/songs/60046921.mkv +张可芝-我知道(无原唱),http://em.21dtv.com/songs/60046920.mkv +何润东-我知道(无原唱),http://em.21dtv.com/songs/60046919.mkv +苏有朋+潘樟柏-玩真的,http://em.21dtv.com/songs/60043187.mkv +AOA-我主场,http://em.21dtv.com/songs/60070002.mkv +张靓颖-无字碑,http://em.21dtv.com/songs/60135254.mkv +张靓颖-无字碑,http://em.21dtv.com/songs/60106873.mkv +张韶涵-王子病,http://em.21dtv.com/songs/60069898.mkv +芭比-玩作伴,http://em.21dtv.com/songs/60043188.mkv +BY2-乌鸦嘴,http://em.21dtv.com/songs/60116442.mkv +泰迪罗宾+钟氏兄弟-无言者,http://em.21dtv.com/songs/60065145.mkv +无缘罪-无缘罪,http://em.21dtv.com/songs/60047580.mkv +刘美娟-无言者(演唱会),http://em.21dtv.com/songs/60047538.mkv +吴克群-我有罪,http://em.21dtv.com/songs/60046720.mkv +严艺丹-我愿意,http://em.21dtv.com/songs/60127700.mkv +王瑾姿-我愿意,http://em.21dtv.com/songs/60129412.mkv +罗嘉豪-我愿意,http://em.21dtv.com/songs/60110453.mkv +陈夏莲-望月圆,http://em.21dtv.com/songs/60103674.mkv +阿香-我愿意,http://em.21dtv.com/songs/60103660.mkv +苟乃鹏-我愿意,http://em.21dtv.com/songs/60100422.mkv +齐秦+齐豫-我愿意,http://em.21dtv.com/songs/60098968.mkv +关喆-我愿意,http://em.21dtv.com/songs/60095263.mkv +陶喆-我愿意,http://em.21dtv.com/songs/60094751.mkv +于童-我愿意,http://em.21dtv.com/songs/60090508.mkv +梅艳芳-我愿意,http://em.21dtv.com/songs/60089375.mkv +杨思琦-我愿意,http://em.21dtv.com/songs/60086950.mkv +朱海君-我愿意,http://em.21dtv.com/songs/60085943.mkv +阿兰+宾俊杰+莫沉-我愿意,http://em.21dtv.com/songs/60084097.mkv +曾静玟+丁于-我愿意,http://em.21dtv.com/songs/60081742.mkv +阚立文-我愿意,http://em.21dtv.com/songs/60081552.mkv +吴雨霏-我愿意,http://em.21dtv.com/songs/60078403.mkv +林利-我愿意(演唱会),http://em.21dtv.com/songs/60078402.mkv +褚乔+葛林-我愿意,http://em.21dtv.com/songs/60071276.mkv +肖雨蒙+杨振-我愿意,http://em.21dtv.com/songs/60068795.mkv +朱海君+蔡小虎-我愿意,http://em.21dtv.com/songs/60046755.mkv +张国荣-我愿意,http://em.21dtv.com/songs/60046754.mkv +佚名-我愿意,http://em.21dtv.com/songs/60046753.mkv +王菲-我愿意,http://em.21dtv.com/songs/60046752.mkv +石佑诚-我愿意,http://em.21dtv.com/songs/60046751.mkv +林志炫-我愿意,http://em.21dtv.com/songs/60046750.mkv +凤娘-我愿意,http://em.21dtv.com/songs/60046749.mkv +陈晓东-我愿意,http://em.21dtv.com/songs/60046748.mkv +张国荣-我愿意(演唱会),http://em.21dtv.com/songs/60046747.mkv +许志安-我愿意(演唱会),http://em.21dtv.com/songs/60046746.mkv +王杰-我愿意(演唱会),http://em.21dtv.com/songs/60046745.mkv +罗文-我愿意(演唱会),http://em.21dtv.com/songs/60046744.mkv +林峰-我愿意(演唱会),http://em.21dtv.com/songs/60046743.mkv +草蜢-我愿意(演唱会),http://em.21dtv.com/songs/60046742.mkv +陈夏莲-无缘戏,http://em.21dtv.com/songs/60126370.mkv +韦礼安-玩游戏,http://em.21dtv.com/songs/60124685.mkv +陈夏莲-无缘戏,http://em.21dtv.com/songs/60124621.mkv +凹凸-玩一下,http://em.21dtv.com/songs/60078011.mkv +童唱-乌衣巷,http://em.21dtv.com/songs/60047047.mkv +徐佳莹-喔伊细,http://em.21dtv.com/songs/60044518.mkv +徐薇-我以为,http://em.21dtv.com/songs/60133722.mkv +苟乃鹏-我以为,http://em.21dtv.com/songs/60124412.mkv +AC周予天-我以为,http://em.21dtv.com/songs/60121203.mkv +张瑶-我以为,http://em.21dtv.com/songs/60120517.mkv +任和-我以为,http://em.21dtv.com/songs/60109955.mkv +庄心妍-我以为,http://em.21dtv.com/songs/60105807.mkv +庄心妍-我以为,http://em.21dtv.com/songs/60104101.mkv +胡彦斌-我以为,http://em.21dtv.com/songs/60102641.mkv +晓峰-我以为,http://em.21dtv.com/songs/60101367.mkv +王雅娴-我以为,http://em.21dtv.com/songs/60095333.mkv +王浩燃-我以为,http://em.21dtv.com/songs/60086947.mkv +敖令-我以为,http://em.21dtv.com/songs/60078395.mkv +罗力威-我要玩(演唱会),http://em.21dtv.com/songs/60078389.mkv +JANA KRAMER-why ya wanna,http://em.21dtv.com/songs/60074142.mkv +容祖儿-我要玩,http://em.21dtv.com/songs/60065122.mkv +张智成-wish you well(演唱会),http://em.21dtv.com/songs/60063805.mkv +丁浩然-我以为,http://em.21dtv.com/songs/60062322.mkv +EVANESCENCE-what you want,http://em.21dtv.com/songs/60062020.mkv +王心凌-我以为,http://em.21dtv.com/songs/60046661.mkv +王珞丹-我以为,http://em.21dtv.com/songs/60046660.mkv +黄品冠-我以为,http://em.21dtv.com/songs/60046659.mkv +李圣杰-我以为(演唱会),http://em.21dtv.com/songs/60046658.mkv +卓依婷-望一望,http://em.21dtv.com/songs/60043722.mkv +S.H.E-五月天,http://em.21dtv.com/songs/60047692.mkv +佚名-挖芋头,http://em.21dtv.com/songs/60043034.mkv +张学友-午夜时,http://em.21dtv.com/songs/60047736.mkv +莫文蔚-我要说,http://em.21dtv.com/songs/60046573.mkv +佚名-when youre smiling,http://em.21dtv.com/songs/60006274.mkv +廖铃惜-我依然,http://em.21dtv.com/songs/60111053.mkv +陈洁灵-within youll remain,http://em.21dtv.com/songs/60006380.mkv +林葳-望月情,http://em.21dtv.com/songs/60135443.mkv +刘美君-午夜情,http://em.21dtv.com/songs/60047734.mkv +刘美君-午夜情(演唱会),http://em.21dtv.com/songs/60047733.mkv +张震岳-我要钱,http://em.21dtv.com/songs/60046564.mkv +柯受良-我要拼,http://em.21dtv.com/songs/60078386.mkv +张杰-我要你,http://em.21dtv.com/songs/60133672.mkv +老狼+任素汐-我要你,http://em.21dtv.com/songs/60132810.mkv +任素汐-我要你,http://em.21dtv.com/songs/60128769.mkv +王子文-我要你,http://em.21dtv.com/songs/60121904.mkv +母亲的草原-乌云娜,http://em.21dtv.com/songs/60118736.mkv +古巨基-我与你,http://em.21dtv.com/songs/60116611.mkv +张恩昌-唯有你,http://em.21dtv.com/songs/60115907.mkv +4MINUTE-whats your name,http://em.21dtv.com/songs/60082393.mkv +徐良+小凌-无颜女,http://em.21dtv.com/songs/60067609.mkv +张学友-我与你(演唱会),http://em.21dtv.com/songs/60046726.mkv +钟汉良-我要你,http://em.21dtv.com/songs/60046545.mkv +高浚-我要你,http://em.21dtv.com/songs/60046543.mkv +阿朵-我要你,http://em.21dtv.com/songs/60046542.mkv +言野-亡羊铭,http://em.21dtv.com/songs/60096906.mkv +糖兄妹-莣芽梦,http://em.21dtv.com/songs/60086899.mkv +LADY ANTIBELLUM-wanted you more,http://em.21dtv.com/songs/60074094.mkv +詹雅雯-无缘路,http://em.21dtv.com/songs/60081692.mkv +谢容儿-弯月亮,http://em.21dtv.com/songs/60080013.mkv +T.I.-whatever you like,http://em.21dtv.com/songs/60063796.mkv +5566-without your love,http://em.21dtv.com/songs/60006387.mkv +何韵诗-我要夹BAND,http://em.21dtv.com/songs/60092275.mkv +黄征-望远镜,http://em.21dtv.com/songs/60090347.mkv +章小军-舞影角,http://em.21dtv.com/songs/60078487.mkv +青蛙乐队-午夜剧,http://em.21dtv.com/songs/60047714.mkv +张继聪-乌蝇镜,http://em.21dtv.com/songs/60047048.mkv +陈淑萍-无缘花,http://em.21dtv.com/songs/60130847.mkv +李梓菡-忘忧海,http://em.21dtv.com/songs/60081655.mkv +江蕙-五月花,http://em.21dtv.com/songs/60074438.mkv +王建房-我要活,http://em.21dtv.com/songs/60072562.mkv +佚名-五月花,http://em.21dtv.com/songs/60047688.mkv +黄乙玲-五月花,http://em.21dtv.com/songs/60047687.mkv +佚名-无缘花(无原唱),http://em.21dtv.com/songs/60047578.mkv +萧敬腾-无言花,http://em.21dtv.com/songs/60047534.mkv +江蕙-无言花,http://em.21dtv.com/songs/60047533.mkv +SWING-我有货,http://em.21dtv.com/songs/60046691.mkv +THE NOISETTES-wild young hearts,http://em.21dtv.com/songs/60006338.mkv +吴国敬-我应该,http://em.21dtv.com/songs/60132288.mkv +向蕙玲-我一个,http://em.21dtv.com/songs/60109214.mkv +COLBY O'DONIS+AKON-what you got,http://em.21dtv.com/songs/60084771.mkv +林忆莲-无言歌,http://em.21dtv.com/songs/60070015.mkv +伍思凯-舞月光,http://em.21dtv.com/songs/60047811.mkv +刘虹桦-无言歌,http://em.21dtv.com/songs/60047532.mkv +郭富城-我勇敢,http://em.21dtv.com/songs/60046674.mkv +张学友-我应该,http://em.21dtv.com/songs/60046667.mkv +张学友-我应该(演唱会),http://em.21dtv.com/songs/60046666.mkv +彭立-问月光,http://em.21dtv.com/songs/60044509.mkv +黄舒骏-未央歌,http://em.21dtv.com/songs/60044293.mkv +佚名-忘忧谷,http://em.21dtv.com/songs/60043649.mkv +FORT MINOR+HOLLY BROOK-whered you go,http://em.21dtv.com/songs/60006299.mkv +BRYAN ADAMS FEAT MEL-when youre gone,http://em.21dtv.com/songs/60006271.mkv +群星-我要飞,http://em.21dtv.com/songs/60129496.mkv +彭婼兰-我要飞,http://em.21dtv.com/songs/60116823.mkv +宛金秋-我要飞,http://em.21dtv.com/songs/60108448.mkv +吉杰-我要飞,http://em.21dtv.com/songs/60104874.mkv +方怡萍-挽缘分,http://em.21dtv.com/songs/60095542.mkv +周韦杰-我欲飞,http://em.21dtv.com/songs/60085941.mkv +乌兰托娅-我要飞,http://em.21dtv.com/songs/60071272.mkv +乌兰托娅-我要飞(演唱会),http://em.21dtv.com/songs/60065117.mkv +陈柏宇-望远方,http://em.21dtv.com/songs/60061649.mkv +张惠妹-我要飞,http://em.21dtv.com/songs/60046525.mkv +云开-我要飞,http://em.21dtv.com/songs/60046524.mkv +王杰-我要飞,http://em.21dtv.com/songs/60046523.mkv +何洁-我要飞,http://em.21dtv.com/songs/60046522.mkv +F.I.R-我要飞(演唱会),http://em.21dtv.com/songs/60046521.mkv +方怡萍-挽缘份,http://em.21dtv.com/songs/60043203.mkv +吴碧霞-问云儿,http://em.21dtv.com/songs/60078133.mkv +王莉+汤非-问月儿,http://em.21dtv.com/songs/60078132.mkv +王莉+汤非-问月儿(演唱会),http://em.21dtv.com/songs/60072512.mkv +古巨基-问燕儿,http://em.21dtv.com/songs/60044505.mkv +凤飞飞-问雁儿,http://em.21dtv.com/songs/60044504.mkv +杨宗宪-无缘的,http://em.21dtv.com/songs/60078472.mkv +古巨基-无涯洞,http://em.21dtv.com/songs/60078471.mkv +王绎龙-午夜dj,http://em.21dtv.com/songs/60047699.mkv +斯琴巴特-五尤黛,http://em.21dtv.com/songs/60047673.mkv +吴国敬-我愿等,http://em.21dtv.com/songs/60046733.mkv +苏永康-我愿等,http://em.21dtv.com/songs/60046732.mkv +动力火车-我要等,http://em.21dtv.com/songs/60046518.mkv +杭天琪-忘忧草,http://em.21dtv.com/songs/60086903.mkv +凤凰传奇-when you cry,http://em.21dtv.com/songs/60060945.mkv +汤兰花-我要唱,http://em.21dtv.com/songs/60046503.mkv +庞龙-我要唱,http://em.21dtv.com/songs/60046502.mkv +陈雷-未晕船,http://em.21dtv.com/songs/60044294.mkv +周华健-忘忧草,http://em.21dtv.com/songs/60043648.mkv +容祖儿-忘忧草,http://em.21dtv.com/songs/60043647.mkv +容祖儿-忘忧草(演唱会),http://em.21dtv.com/songs/60043646.mkv +茜拉+黄绮珊-When You Believe,http://em.21dtv.com/songs/60099464.mkv +陈明恩-when you believe,http://em.21dtv.com/songs/60086382.mkv +MARIAH CAREY-when you believe(演唱会),http://em.21dtv.com/songs/60065727.mkv +WHITNEY HOUSTON+MARIAH CAREY-when you believe,http://em.21dtv.com/songs/60006261.mkv +WHITNEY HOUSTON+MARIAH CAREY-when you believe(演唱会),http://em.21dtv.com/songs/60006260.mkv +JAY SEAN-where you are,http://em.21dtv.com/songs/60082397.mkv +CNBLUE-where you are,http://em.21dtv.com/songs/60065728.mkv +JESSIE J-who you are,http://em.21dtv.com/songs/60062060.mkv +古天乐-我愿爱,http://em.21dtv.com/songs/60046731.mkv +司文-我要爱,http://em.21dtv.com/songs/60046499.mkv +江若琳-唯有爱,http://em.21dtv.com/songs/60044190.mkv +佚名-wherever you are(无原唱),http://em.21dtv.com/songs/60006300.mkv +JENNIFER HUDSON-where you at,http://em.21dtv.com/songs/60006298.mkv +赖铭伟-无缘ㄟ,http://em.21dtv.com/songs/60132911.mkv +莫艳琳-妄想症,http://em.21dtv.com/songs/60108860.mkv +B.A.D-我想醉,http://em.21dtv.com/songs/60090393.mkv +乐桐-望夕阳,http://em.21dtv.com/songs/60078058.mkv +谭咏麟-无需要,http://em.21dtv.com/songs/60047510.mkv +林慧萍-无心雨(无原唱),http://em.21dtv.com/songs/60047503.mkv +ME2-我想要(无原唱),http://em.21dtv.com/songs/60046415.mkv +费翔-问斜阳,http://em.21dtv.com/songs/60044499.mkv +萧煌奇+杨培安-我相信,http://em.21dtv.com/songs/60098734.mkv +罗琦-我相信,http://em.21dtv.com/songs/60096433.mkv +吴莫愁-我相信,http://em.21dtv.com/songs/60081589.mkv +林亦妍-我相信,http://em.21dtv.com/songs/60065109.mkv +彭羚-我想笑,http://em.21dtv.com/songs/60046414.mkv +庄妮-我相信,http://em.21dtv.com/songs/60046369.mkv +猪头皮-我相信,http://em.21dtv.com/songs/60046368.mkv +张靓颖-我相信,http://em.21dtv.com/songs/60046367.mkv +杨培安-我相信,http://em.21dtv.com/songs/60046366.mkv +罗百吉-我相信,http://em.21dtv.com/songs/60046365.mkv +东方神起-我相信,http://em.21dtv.com/songs/60046364.mkv +张靓颖-我相信(演唱会),http://em.21dtv.com/songs/60046362.mkv +张信哲-我相信(无原唱),http://em.21dtv.com/songs/60046361.mkv +小雪-未相信,http://em.21dtv.com/songs/60044292.mkv +黄凯芹+刘小慧-望星星,http://em.21dtv.com/songs/60043720.mkv +容祖儿+苏志威-望星星(演唱会),http://em.21dtv.com/songs/60043719.mkv +徐红光-我希望,http://em.21dtv.com/songs/60120569.mkv +杨玏-我希望,http://em.21dtv.com/songs/60106003.mkv +罗时丰-挽仙桃,http://em.21dtv.com/songs/60134093.mkv +王杰-我想她,http://em.21dtv.com/songs/60046400.mkv +洪荣宏-挽仙桃,http://em.21dtv.com/songs/60043202.mkv +戏曲-晚霞颂,http://em.21dtv.com/songs/60092730.mkv +阿悄+本兮-无限速,http://em.21dtv.com/songs/60078470.mkv +任和-我想说,http://em.21dtv.com/songs/60078364.mkv +陈启泰-微小说,http://em.21dtv.com/songs/60072491.mkv +丁薇-我想说,http://em.21dtv.com/songs/60046398.mkv +刘德华-无心人,http://em.21dtv.com/songs/60047496.mkv +雪村-外乡人,http://em.21dtv.com/songs/60043086.mkv +王友良-玩心情,http://em.21dtv.com/songs/60092975.mkv +王玫-微心情,http://em.21dtv.com/songs/60085834.mkv +汤宝如-危险期,http://em.21dtv.com/songs/60043743.mkv +孙艺琪-我想你,http://em.21dtv.com/songs/60128967.mkv +刘建东-我想你,http://em.21dtv.com/songs/60127766.mkv +李东骋-我想你,http://em.21dtv.com/songs/60078363.mkv +周韦杰-我想你,http://em.21dtv.com/songs/60071270.mkv +王岩-我想你,http://em.21dtv.com/songs/60071269.mkv +朱海君-我想念,http://em.21dtv.com/songs/60068788.mkv +GOGO+MEME-我像你,http://em.21dtv.com/songs/60046433.mkv +旺福-我夏流,http://em.21dtv.com/songs/60113558.mkv +张学友-无心恋,http://em.21dtv.com/songs/60047493.mkv +张学友-无心恋(演唱会),http://em.21dtv.com/songs/60047492.mkv +软硬天师-喂细路(演唱会),http://em.21dtv.com/songs/60044320.mkv +温拿乐队-玩吓啦,http://em.21dtv.com/songs/60043183.mkv +温拿乐队-玩吓啦(演唱会),http://em.21dtv.com/songs/60043182.mkv +李天平-我想哭,http://em.21dtv.com/songs/60046389.mkv +卓依婷-望星空,http://em.21dtv.com/songs/60043718.mkv +张也-望星空,http://em.21dtv.com/songs/60043717.mkv +佚名-望星空,http://em.21dtv.com/songs/60043716.mkv +董文华-望星空,http://em.21dtv.com/songs/60043715.mkv +新秀团队-歪小姐,http://em.21dtv.com/songs/60077995.mkv +荒山亮-无心剑,http://em.21dtv.com/songs/60070013.mkv +周艳芳-无锡景,http://em.21dtv.com/songs/60047476.mkv +蔡红虹-无锡景,http://em.21dtv.com/songs/60047475.mkv +蔡丽津-无心花,http://em.21dtv.com/songs/60135705.mkv +宋婧龄-我喜欢,http://em.21dtv.com/songs/60135123.mkv +吴陌川+吴诗曼+宋婧龄-我喜欢,http://em.21dtv.com/songs/60135048.mkv +吴诗曼-我喜欢,http://em.21dtv.com/songs/60135027.mkv +蔡丽津-无心花,http://em.21dtv.com/songs/60132854.mkv +宋庆琳-我喜欢,http://em.21dtv.com/songs/60085928.mkv +袁树雄-我喜欢,http://em.21dtv.com/songs/60078358.mkv +何曼婷-外星话,http://em.21dtv.com/songs/60062445.mkv +刘德华-我学会,http://em.21dtv.com/songs/60046491.mkv +POPHOLIC 流行骇客-我学会,http://em.21dtv.com/songs/60046490.mkv +周蕙-我喜欢,http://em.21dtv.com/songs/60046351.mkv +严爵-我喜欢,http://em.21dtv.com/songs/60046350.mkv +陶喆-我喜欢,http://em.21dtv.com/songs/60046349.mkv +邰正宵-我喜欢,http://em.21dtv.com/songs/60046348.mkv +梁静茹-我喜欢,http://em.21dtv.com/songs/60046347.mkv +卢巧音-我想国,http://em.21dtv.com/songs/60046384.mkv +凤娘-问幸福,http://em.21dtv.com/songs/60067538.mkv +肖央-微幸福,http://em.21dtv.com/songs/60061652.mkv +谢霆锋-我想飞(演唱会),http://em.21dtv.com/songs/60046380.mkv +孙燕姿-无限大,http://em.21dtv.com/songs/60096915.mkv +侧田-无限大,http://em.21dtv.com/songs/60047482.mkv +季欣霈-微香虫,http://em.21dtv.com/songs/60121581.mkv +梁朝伟-无限次,http://em.21dtv.com/songs/60047481.mkv +廖昌永-望乡词,http://em.21dtv.com/songs/60043713.mkv +陈美惠-微信爱,http://em.21dtv.com/songs/60099587.mkv +陈玉建+陈美惠-微信爱,http://em.21dtv.com/songs/60067519.mkv +魏晨-我想爱,http://em.21dtv.com/songs/60046373.mkv +津亭-我想爱,http://em.21dtv.com/songs/60046372.mkv +小龙凤-网想爱,http://em.21dtv.com/songs/60043395.mkv +陈盈洁-我无醉,http://em.21dtv.com/songs/60046340.mkv +陈思安-我无醉(无原唱),http://em.21dtv.com/songs/60046339.mkv +雨禾-万物样,http://em.21dtv.com/songs/60107343.mkv +钟舒祺+JR.-wanna want you,http://em.21dtv.com/songs/60006116.mkv +刘举+金硕-微微笑,http://em.21dtv.com/songs/60130112.mkv +梁叙甜-我微笑,http://em.21dtv.com/songs/60080636.mkv +袁小迪+龙千玉-无尾巷,http://em.21dtv.com/songs/60047466.mkv +毛宁+杨钰莹-勿忘我,http://em.21dtv.com/songs/60113767.mkv +关心妍-毋忘我,http://em.21dtv.com/songs/60092310.mkv +陶喆-勿忘我,http://em.21dtv.com/songs/60084138.mkv +阴雨含-勿忘我,http://em.21dtv.com/songs/60070018.mkv +董朋-汪汪汪,http://em.21dtv.com/songs/60062337.mkv +杨洪基-勿忘我,http://em.21dtv.com/songs/60047822.mkv +谢宏-勿忘我,http://em.21dtv.com/songs/60047821.mkv +关心妍-勿忘我,http://em.21dtv.com/songs/60047820.mkv +费玉清-勿忘我,http://em.21dtv.com/songs/60047819.mkv +芭比-喔喔喔,http://em.21dtv.com/songs/60044517.mkv +童唱-嗡嗡嗡(无原唱),http://em.21dtv.com/songs/60044516.mkv +林海峰-喂喂喂,http://em.21dtv.com/songs/60044319.mkv +林海峰-喂喂喂(演唱会),http://em.21dtv.com/songs/60044318.mkv +DUFFY-well well well,http://em.21dtv.com/songs/60006166.mkv +翁立友-我问天,http://em.21dtv.com/songs/60046332.mkv +海恋-我问天,http://em.21dtv.com/songs/60046331.mkv +FAT JOE FEAT J HOLID-w wont tell,http://em.21dtv.com/songs/60006077.mkv +云母逼乐队-万物死,http://em.21dtv.com/songs/60125087.mkv +周鹏-万物生,http://em.21dtv.com/songs/60087609.mkv +吴介贤-万物生(演唱会),http://em.21dtv.com/songs/60072483.mkv +萨顶顶-万物生,http://em.21dtv.com/songs/60043324.mkv +李蕙敏-未忘人,http://em.21dtv.com/songs/60044291.mkv +关心妍-完舞曲,http://em.21dtv.com/songs/60043153.mkv +林宥嘉-勿忘你,http://em.21dtv.com/songs/60130480.mkv +高安+郭玲-勿忘你,http://em.21dtv.com/songs/60098941.mkv +高安-勿忘你,http://em.21dtv.com/songs/60085163.mkv +王菲-我为你,http://em.21dtv.com/songs/60046304.mkv +林晓培-我忘了,http://em.21dtv.com/songs/60106981.mkv +Pitbull+G.R.L.-Wild Wild Love,http://em.21dtv.com/songs/60099023.mkv +NOVA-我忘了(演唱会),http://em.21dtv.com/songs/60085927.mkv +张赫宣-我忘了,http://em.21dtv.com/songs/60081437.mkv +李玖哲-我忘了,http://em.21dtv.com/songs/60046297.mkv +后弦-娃娃脸,http://em.21dtv.com/songs/60043053.mkv +后弦-娃娃脸(演唱会),http://em.21dtv.com/songs/60043052.mkv +李明洋-我毋惊,http://em.21dtv.com/songs/60132545.mkv +旺福-旺旺叫,http://em.21dtv.com/songs/60097014.mkv +卓文萱-哇哇叫,http://em.21dtv.com/songs/60066354.mkv +佚名-whatever we imagine,http://em.21dtv.com/songs/60006218.mkv +林二汶-无忘花,http://em.21dtv.com/songs/60047465.mkv +雷安娜-问为何(演唱会),http://em.21dtv.com/songs/60044489.mkv +梁静茹-为我好,http://em.21dtv.com/songs/60044125.mkv +阿超-未完歌,http://em.21dtv.com/songs/60099573.mkv +梁洛施-晚晚乖,http://em.21dtv.com/songs/60043243.mkv +汤灿-湾湾歌,http://em.21dtv.com/songs/60043093.mkv +童唱-娃娃国,http://em.21dtv.com/songs/60043050.mkv +童唱-娃娃国(无原唱),http://em.21dtv.com/songs/60043049.mkv +冷漠-我问佛,http://em.21dtv.com/songs/60115705.mkv +梅东生+陈冠玮-雾雾滴,http://em.21dtv.com/songs/60085972.mkv +江蕙-温温的,http://em.21dtv.com/songs/60078123.mkv +洪卓立-勿忘草,http://em.21dtv.com/songs/60066447.mkv +佚名-勿忘草,http://em.21dtv.com/songs/60047818.mkv +孙燕姿-未完成,http://em.21dtv.com/songs/60044280.mkv +萧敬腾-吻我吧,http://em.21dtv.com/songs/60103544.mkv +郭嘉璐-吻我吧,http://em.21dtv.com/songs/60044424.mkv +郭富城-吻我吧(演唱会)(无原唱),http://em.21dtv.com/songs/60044423.mkv +CHER LLOYD-with ur love,http://em.21dtv.com/songs/60063806.mkv +MAROON 5-wake up call,http://em.21dtv.com/songs/60006091.mkv +CHER LLOYD+ASTRO-want u back,http://em.21dtv.com/songs/60066750.mkv +Little Mix-Word Up!,http://em.21dtv.com/songs/60099010.mkv +FTISLAND-未体验Future,http://em.21dtv.com/songs/60099660.mkv +马汝珑-梧桐雨,http://em.21dtv.com/songs/60109035.mkv +潘小芬-梧桐雨,http://em.21dtv.com/songs/60066443.mkv +佚名-woman to woman(无原唱),http://em.21dtv.com/songs/60006392.mkv +RAZORLIGHT-wire to wire,http://em.21dtv.com/songs/60006365.mkv +DORROUGH-walk that walk,http://em.21dtv.com/songs/60006105.mkv +SEAN KINGSTON-wont stop,http://em.21dtv.com/songs/60074159.mkv +陈燕-梧桐树,http://em.21dtv.com/songs/60066442.mkv +陈僖仪-我太傻,http://em.21dtv.com/songs/60061704.mkv +陶喆-我太傻,http://em.21dtv.com/songs/60046272.mkv +关心妍-我太强(演唱会),http://em.21dtv.com/songs/60046271.mkv +东于哲+陈威全-我挺你,http://em.21dtv.com/songs/60099714.mkv +徐怀钰-我挺你,http://em.21dtv.com/songs/60046291.mkv +北原山猫-我挺你,http://em.21dtv.com/songs/60046290.mkv +LINDA-我挺你,http://em.21dtv.com/songs/60046289.mkv +唐嫣-我透明,http://em.21dtv.com/songs/60046293.mkv +江美琪-维他命,http://em.21dtv.com/songs/60044199.mkv +爱戴-维他命,http://em.21dtv.com/songs/60044198.mkv +佚名-whos that man,http://em.21dtv.com/songs/60006321.mkv +BLACK EYED PEAS-where the love,http://em.21dtv.com/songs/60006296.mkv +陈奕迅-无条件,http://em.21dtv.com/songs/60113049.mkv +陈奕迅-无条件,http://em.21dtv.com/songs/60110621.mkv +朴尚哲-无条件,http://em.21dtv.com/songs/60100108.mkv +赵真-望太行,http://em.21dtv.com/songs/60088701.mkv +AVRIL LAVIGNE-what the hell,http://em.21dtv.com/songs/60069159.mkv +KANYE WEST-welcome to heartbreak,http://em.21dtv.com/songs/60060943.mkv +AVRIL LAVIGNE-what the hell(演唱会),http://em.21dtv.com/songs/60006210.mkv +江语晨-我太乖,http://em.21dtv.com/songs/60046270.mkv +郑少秋-玩天光,http://em.21dtv.com/songs/60043176.mkv +MADONNA+P.LEONARD-whos that girl,http://em.21dtv.com/songs/60006320.mkv +少女时代-way to go,http://em.21dtv.com/songs/60006127.mkv +佚名-willing to forgive,http://em.21dtv.com/songs/60006349.mkv +甲子慧-问天地,http://em.21dtv.com/songs/60111315.mkv +风萧萧-梧桐碟,http://em.21dtv.com/songs/60088968.mkv +GEORGE STRAIT-write this down(演唱会),http://em.21dtv.com/songs/60074167.mkv +BULLET FOR MY VALENTINE-waking the demon,http://em.21dtv.com/songs/60060940.mkv +风萧萧-梧桐蝶,http://em.21dtv.com/songs/60047624.mkv +张秀卿-望天草,http://em.21dtv.com/songs/60096073.mkv +KANYE+WEST-way too cold,http://em.21dtv.com/songs/60069157.mkv +邓福如-未填词,http://em.21dtv.com/songs/60044279.mkv +群星-welcome to china,http://em.21dtv.com/songs/60006158.mkv +谢安琪-乌托邦,http://em.21dtv.com/songs/60126197.mkv +刘以达-乌托邦,http://em.21dtv.com/songs/60078435.mkv +群星-welcome to beijing,http://em.21dtv.com/songs/60006157.mkv +王振楠-外省嫜,http://em.21dtv.com/songs/60129393.mkv +易天晴-卫生纸(无原唱),http://em.21dtv.com/songs/60044221.mkv +詹雅雯-罔市仔,http://em.21dtv.com/songs/60043415.mkv +杨千桦-我是羊,http://em.21dtv.com/songs/60133836.mkv +辛晓琪-无声雨,http://em.21dtv.com/songs/60047429.mkv +凤娘-无声雨,http://em.21dtv.com/songs/60047428.mkv +林志颖-我是鱼(演唱会),http://em.21dtv.com/songs/60046213.mkv +吴若希-未上心,http://em.21dtv.com/songs/60083988.mkv +方大同+张靓颖-无所谓,http://em.21dtv.com/songs/60128039.mkv +群星-我是我,http://em.21dtv.com/songs/60124360.mkv +方大同+张靓颖-无所谓,http://em.21dtv.com/songs/60123998.mkv +鸿飞-无所谓,http://em.21dtv.com/songs/60123388.mkv +余枫-无所谓,http://em.21dtv.com/songs/60104788.mkv +SOLER-无所谓,http://em.21dtv.com/songs/60099701.mkv +Super Junior M-无所谓,http://em.21dtv.com/songs/60099044.mkv +吴若希-无所谓,http://em.21dtv.com/songs/60086964.mkv +含瑞-无所谓,http://em.21dtv.com/songs/60085961.mkv +杨坤+张赫宣-无所谓,http://em.21dtv.com/songs/60081233.mkv +张赫宣+杨坤-无所谓,http://em.21dtv.com/songs/60071290.mkv +徐健淇-无所谓(演唱会),http://em.21dtv.com/songs/60070010.mkv +罗力威-无所谓,http://em.21dtv.com/songs/60068807.mkv +朱孝天-无所谓,http://em.21dtv.com/songs/60047456.mkv +游鸿明-无所谓,http://em.21dtv.com/songs/60047455.mkv +杨坤-无所谓,http://em.21dtv.com/songs/60047454.mkv +卫兰-无所谓,http://em.21dtv.com/songs/60047453.mkv +王力宏-无所谓,http://em.21dtv.com/songs/60047452.mkv +洛客班-无所谓,http://em.21dtv.com/songs/60047451.mkv +刘尊-无所谓,http://em.21dtv.com/songs/60047450.mkv +何静-无所谓,http://em.21dtv.com/songs/60047449.mkv +5566-无所谓,http://em.21dtv.com/songs/60047448.mkv +张惠妹-无所谓(演唱会),http://em.21dtv.com/songs/60047447.mkv +杨坤-无所谓(演唱会),http://em.21dtv.com/songs/60047446.mkv +蔡健雅-无所谓(演唱会),http://em.21dtv.com/songs/60047445.mkv +孙燕姿-我是我,http://em.21dtv.com/songs/60046182.mkv +车婉婉-我是我,http://em.21dtv.com/songs/60046181.mkv +孙燕姿-我是我(演唱会),http://em.21dtv.com/songs/60046180.mkv +姚雨鑫-我是谁,http://em.21dtv.com/songs/60115085.mkv +有德乡-五十岁,http://em.21dtv.com/songs/60114582.mkv +祖丝-我是谁,http://em.21dtv.com/songs/60113914.mkv +田牧童+张梓扬-我是谁,http://em.21dtv.com/songs/60107086.mkv +那我懂你意思了-我是谁,http://em.21dtv.com/songs/60101525.mkv +谭晶-我是谁,http://em.21dtv.com/songs/60085924.mkv +陈伟霆+泳儿-我是谁,http://em.21dtv.com/songs/60068783.mkv +詹雅雯-雾煞煞,http://em.21dtv.com/songs/60047850.mkv +周华健-我是谁,http://em.21dtv.com/songs/60046170.mkv +苏永康-我是谁,http://em.21dtv.com/songs/60046169.mkv +BUDDY-我是谁,http://em.21dtv.com/songs/60046168.mkv +佚名-问叔叔,http://em.21dtv.com/songs/60044476.mkv +王啸坤-王十三,http://em.21dtv.com/songs/60043359.mkv +邹文正-我是人,http://em.21dtv.com/songs/60061701.mkv +施文彬-为啥人,http://em.21dtv.com/songs/60044050.mkv +罗百吉-往上爬,http://em.21dtv.com/songs/60078034.mkv +周慧敏-无双谱,http://em.21dtv.com/songs/60061724.mkv +方力申-无双谱,http://em.21dtv.com/songs/60047438.mkv +猪哥亮-万事ok(演唱会),http://em.21dtv.com/songs/60078025.mkv +张海-五十年,http://em.21dtv.com/songs/60047662.mkv +古巨基-我送你,http://em.21dtv.com/songs/60046261.mkv +吴雨霏-我傻女,http://em.21dtv.com/songs/60046049.mkv +岩光渤-为什么,http://em.21dtv.com/songs/60124788.mkv +欧阳辉-为什么,http://em.21dtv.com/songs/60124170.mkv +徐乐同+印子月-为什么,http://em.21dtv.com/songs/60123972.mkv +葛小虎-为什么,http://em.21dtv.com/songs/60119933.mkv +马丽-为什么,http://em.21dtv.com/songs/60119056.mkv +-哇沙米,http://em.21dtv.com/songs/60090383.mkv +李丽蕊-为什么(演唱会),http://em.21dtv.com/songs/60083984.mkv +代理仁-问宿命,http://em.21dtv.com/songs/60078130.mkv +陈娟儿-为什么,http://em.21dtv.com/songs/60078098.mkv +蔡卓妍-为什么,http://em.21dtv.com/songs/60078097.mkv +谢沛恩-whats mine,http://em.21dtv.com/songs/60074120.mkv +赵子皓-为什么(演唱会),http://em.21dtv.com/songs/60069913.mkv +古巨基-我是猫,http://em.21dtv.com/songs/60046126.mkv +林子祥-为谁忙,http://em.21dtv.com/songs/60044115.mkv +朱婧-为什么,http://em.21dtv.com/songs/60044061.mkv +佚名-为什么,http://em.21dtv.com/songs/60044060.mkv +五月天-为什么,http://em.21dtv.com/songs/60044059.mkv +齐秦-为什么,http://em.21dtv.com/songs/60044058.mkv +洪一峰-为什么,http://em.21dtv.com/songs/60044057.mkv +郭金发-为什么,http://em.21dtv.com/songs/60044056.mkv +MAKIYO-为什么,http://em.21dtv.com/songs/60044055.mkv +五月天-为什么(演唱会),http://em.21dtv.com/songs/60044054.mkv +卢业媚-为什么(演唱会),http://em.21dtv.com/songs/60044053.mkv +小宝-为什么(无原唱),http://em.21dtv.com/songs/60044052.mkv +曾明莉-为什么(无原唱),http://em.21dtv.com/songs/60044051.mkv +5566-哇沙咪,http://em.21dtv.com/songs/60043037.mkv +张志林-我输了,http://em.21dtv.com/songs/60087811.mkv +王梓蘅-我是狼,http://em.21dtv.com/songs/60078333.mkv +黄立行-无神论,http://em.21dtv.com/songs/60047410.mkv +肥皂菌·珉珉的猫咪-万神纪,http://em.21dtv.com/songs/60135639.mkv +白止-万神纪,http://em.21dtv.com/songs/60135596.mkv +彭志强-玩手机,http://em.21dtv.com/songs/60120552.mkv +王馨-玩手机,http://em.21dtv.com/songs/60117050.mkv +冷酷-微世界,http://em.21dtv.com/songs/60110005.mkv +陈翔-问世间,http://em.21dtv.com/songs/60108137.mkv +张馨予-问世间,http://em.21dtv.com/songs/60107729.mkv +谭咏麟+李克勤-唔使惊,http://em.21dtv.com/songs/60047623.mkv +谭咏麟+李克勤-唔使惊(演唱会),http://em.21dtv.com/songs/60047622.mkv +王识贤-问世间,http://em.21dtv.com/songs/60044475.mkv +高向鹏+张蓉蓉-问世间,http://em.21dtv.com/songs/60044474.mkv +毛阿敏-无色花,http://em.21dtv.com/songs/60111217.mkv +面具-我死后,http://em.21dtv.com/songs/60098916.mkv +佚名-微山湖,http://em.21dtv.com/songs/60043767.mkv +徐啸枭-吻时光,http://em.21dtv.com/songs/60121701.mkv +逆思乐团-微伤感,http://em.21dtv.com/songs/60085830.mkv +自由发挥-我是鬼,http://em.21dtv.com/songs/60078332.mkv +谭炳文+吕珊-为食歌(演唱会),http://em.21dtv.com/songs/60061661.mkv +佚名-枉死鬼,http://em.21dtv.com/songs/60043413.mkv +乡村二人组-我是风,http://em.21dtv.com/songs/60089109.mkv +叶乃文-舞是刀,http://em.21dtv.com/songs/60047805.mkv +中国娃娃-我是蛋,http://em.21dtv.com/songs/60046096.mkv +蓝心湄-无色彩(无原唱),http://em.21dtv.com/songs/60047407.mkv +陈小涛-望四川,http://em.21dtv.com/songs/60043702.mkv +佚名-望山城,http://em.21dtv.com/songs/60043701.mkv +P.O.P CON-玩耍吧,http://em.21dtv.com/songs/60078010.mkv +谢雷+乔幼-外省ㄟ,http://em.21dtv.com/songs/60071197.mkv +陈雅森-温柔乡,http://em.21dtv.com/songs/60114233.mkv +王壹姗-无人疼(无原唱),http://em.21dtv.com/songs/60047400.mkv +李幸倪-往日情,http://em.21dtv.com/songs/60116903.mkv +李玟-往日情,http://em.21dtv.com/songs/60043424.mkv +KWABS-WRONG OR RIGHT,http://em.21dtv.com/songs/60096887.mkv +王曼熹-万人迷,http://em.21dtv.com/songs/60129400.mkv +洪荣宏-温柔梦,http://em.21dtv.com/songs/60122955.mkv +洪荣宏-温柔梦,http://em.21dtv.com/songs/60112073.mkv +香香-万人迷,http://em.21dtv.com/songs/60043302.mkv +林志炫-万人迷,http://em.21dtv.com/songs/60043301.mkv +达明一派-万人迷,http://em.21dtv.com/songs/60043300.mkv +保剑峰-万人迷,http://em.21dtv.com/songs/60043298.mkv +艾成-万人迷,http://em.21dtv.com/songs/60043297.mkv +何嘉文-万人迷(无原唱),http://em.21dtv.com/songs/60043296.mkv +伍思凯-惘然记,http://em.21dtv.com/songs/60043471.mkv +SWING-无如果,http://em.21dtv.com/songs/60047406.mkv +颜小健-无人岛,http://em.21dtv.com/songs/60105518.mkv +ROBYNN+KENDY-无人岛,http://em.21dtv.com/songs/60078459.mkv +周笔畅-无人岛,http://em.21dtv.com/songs/60047387.mkv +BOYZ LL MEN-water runs dry,http://em.21dtv.com/songs/60006124.mkv +THE EVERLY BROTHERS-walk right back,http://em.21dtv.com/songs/60006104.mkv +李嘉-无人爱,http://em.21dtv.com/songs/60047383.mkv +高枫-往前走,http://em.21dtv.com/songs/60081893.mkv +何俊明-往前追,http://em.21dtv.com/songs/60043419.mkv +王中平-无情雨,http://em.21dtv.com/songs/60047379.mkv +于台烟-我情愿,http://em.21dtv.com/songs/60046034.mkv +翁立友-望情雨,http://em.21dtv.com/songs/60043700.mkv +黄乙玲-无情兄,http://em.21dtv.com/songs/60047375.mkv +黄乙玲-无情巷(演唱会),http://em.21dtv.com/songs/60047374.mkv +佚名-无情弦,http://em.21dtv.com/songs/60047373.mkv +林慧萍-无情弦(无原唱),http://em.21dtv.com/songs/60047372.mkv +刘德华-无情天,http://em.21dtv.com/songs/60047370.mkv +傅振辉-无情手,http://em.21dtv.com/songs/60130091.mkv +傅振辉-无情手,http://em.21dtv.com/songs/60128799.mkv +李震-绾青丝,http://em.21dtv.com/songs/60105166.mkv +胡海泉+田斯斯-忘情水,http://em.21dtv.com/songs/60095057.mkv +王爵ALSTON-绾青丝,http://em.21dtv.com/songs/60086897.mkv +蓝星-网情水,http://em.21dtv.com/songs/60083953.mkv +刚辉-无情伤,http://em.21dtv.com/songs/60047365.mkv +许志安-未签收,http://em.21dtv.com/songs/60044273.mkv +许志安+邓健泓-未签收(演唱会),http://em.21dtv.com/songs/60044272.mkv +谢霆锋-未签收(演唱会),http://em.21dtv.com/songs/60044271.mkv +刘德华-忘情水,http://em.21dtv.com/songs/60043639.mkv +刘德华-忘情水(演唱会),http://em.21dtv.com/songs/60043638.mkv +MC韩雅乐-无情人,http://em.21dtv.com/songs/50000124.mkv +龙千玉-无情人,http://em.21dtv.com/songs/60076458.mkv +周华健-我祈求,http://em.21dtv.com/songs/60046019.mkv +刘向圆-五千年,http://em.21dtv.com/songs/60072585.mkv +刘向园-五千年(演唱会),http://em.21dtv.com/songs/60065151.mkv +洪一平-五千年,http://em.21dtv.com/songs/60047655.mkv +和文军-五千年,http://em.21dtv.com/songs/60047654.mkv +花鼓戏-五瞧妹,http://em.21dtv.com/songs/60090145.mkv +龙千玉-无情梦,http://em.21dtv.com/songs/60077814.mkv +崔来宾-舞起来,http://em.21dtv.com/songs/60129035.mkv +游美灵+洛奇-旺起来,http://em.21dtv.com/songs/60108689.mkv +舞曲-瓦恰里,http://em.21dtv.com/songs/60090136.mkv +张靓颖-我去了,http://em.21dtv.com/songs/60078322.mkv +詹雅文-无情泪(无原唱),http://em.21dtv.com/songs/60077917.mkv +李嘉-无情恋(无原唱),http://em.21dtv.com/songs/60047359.mkv +冷漠-我请客,http://em.21dtv.com/songs/60111708.mkv +黄凯芹-问青空,http://em.21dtv.com/songs/60044468.mkv +詹曼玲-为情苦,http://em.21dtv.com/songs/60044036.mkv +冷漠-忘情酒,http://em.21dtv.com/songs/60133395.mkv +张启辉-忘情酒,http://em.21dtv.com/songs/60119510.mkv +韦明华-忘情酒,http://em.21dtv.com/songs/60088946.mkv +安东阳-忘情酒,http://em.21dtv.com/songs/60087676.mkv +詹雅雯-无情酒,http://em.21dtv.com/songs/60047358.mkv +林姗-无情海(无原唱),http://em.21dtv.com/songs/60047355.mkv +杜德伟-忘情号(演唱会),http://em.21dtv.com/songs/60043631.mkv +曾巍-忘情歌,http://em.21dtv.com/songs/60105952.mkv +曾魏-忘情歌,http://em.21dtv.com/songs/60105122.mkv +秀兰玛雅-无情歌,http://em.21dtv.com/songs/60085960.mkv +孙子涵+李潇潇-微情歌,http://em.21dtv.com/songs/60078062.mkv +詹曼铃-无情歌(无原唱),http://em.21dtv.com/songs/60047353.mkv +伍佰-忘情歌,http://em.21dtv.com/songs/60043630.mkv +A Lin-往前飞,http://em.21dtv.com/songs/60103751.mkv +唐妍-往前飞,http://em.21dtv.com/songs/60066362.mkv +零峰-无情风,http://em.21dtv.com/songs/60047349.mkv +戴佩妮-往前飞,http://em.21dtv.com/songs/60043416.mkv +向涌+彭建军-我确定,http://em.21dtv.com/songs/60108369.mkv +小沈阳-我期待,http://em.21dtv.com/songs/60105773.mkv +罗琦-我期待,http://em.21dtv.com/songs/60096432.mkv +戴佩妮-我祈祷,http://em.21dtv.com/songs/60091232.mkv +罗绮-我期待(我是歌手第二期),http://em.21dtv.com/songs/60082459.mkv +声音组合-我期待,http://em.21dtv.com/songs/60081478.mkv +声音乐团-我期待,http://em.21dtv.com/songs/60081144.mkv +卓义峰-我期待,http://em.21dtv.com/songs/60069969.mkv +品冠-我确定,http://em.21dtv.com/songs/60067579.mkv +张行-我祈祷,http://em.21dtv.com/songs/60046018.mkv +张雨生-我期待,http://em.21dtv.com/songs/60046016.mkv +徐嘉良-我期待(无原唱),http://em.21dtv.com/songs/60046015.mkv +黄凤仪-误前尘,http://em.21dtv.com/songs/60128627.mkv +黄凤仪-误前尘,http://em.21dtv.com/songs/60128626.mkv +陈晓元-我清楚,http://em.21dtv.com/songs/60046032.mkv +黄鸿升-我朋友,http://em.21dtv.com/songs/60118223.mkv +李克勤-无朋友,http://em.21dtv.com/songs/60102328.mkv +何润东-我偏心,http://em.21dtv.com/songs/60092258.mkv +江一燕-外婆桥,http://em.21dtv.com/songs/60085812.mkv +任贤齐-外婆桥,http://em.21dtv.com/songs/60043082.mkv +张芸京-我陪你,http://em.21dtv.com/songs/60071263.mkv +米蒂-外婆家,http://em.21dtv.com/songs/60089437.mkv +卓依婷-外婆家(演唱会),http://em.21dtv.com/songs/60043081.mkv +谢军-乌篷船,http://em.21dtv.com/songs/60047038.mkv +饶威-WOW,http://em.21dtv.com/songs/60124705.mkv +东于哲-WOW,http://em.21dtv.com/songs/60103846.mkv +JEDWARD-wow oh wow,http://em.21dtv.com/songs/60065731.mkv +范晓萱-why oh why,http://em.21dtv.com/songs/60006327.mkv +P!NK-walk of shame,http://em.21dtv.com/songs/60086379.mkv +TREVIN HUNTE-walking on sunshine(演唱会),http://em.21dtv.com/songs/60074093.mkv +SHAWNA RUSSELL-waitinon sunrise,http://em.21dtv.com/songs/60065721.mkv +叶丽仪-with one look(演唱会),http://em.21dtv.com/songs/60006376.mkv +郑秀文-water of love,http://em.21dtv.com/songs/60006123.mkv +M.KNOPFLER-walk of life(无原唱),http://em.21dtv.com/songs/60006102.mkv +2 CHAINZ+WIZ KHALIFA-we own it,http://em.21dtv.com/songs/60082390.mkv +SARAH MCLACHLAN-world on fire,http://em.21dtv.com/songs/60006416.mkv +TPAIN-5 oclock,http://em.21dtv.com/songs/60062171.mkv +佚名-wind of change,http://em.21dtv.com/songs/60006355.mkv +BEE GEES-wind of change,http://em.21dtv.com/songs/60006354.mkv +GARETH GATES-walk on by,http://em.21dtv.com/songs/60060941.mkv +陈柔希-Woa,http://em.21dtv.com/songs/60121083.mkv +KERLI-walking on air,http://em.21dtv.com/songs/60082386.mkv +孙淑媚-望你知,http://em.21dtv.com/songs/60119427.mkv +蔡恒-为你醉,http://em.21dtv.com/songs/60044028.mkv +费翔-喔纽约,http://em.21dtv.com/songs/60088689.mkv +黄耀明-维纳斯(演唱会),http://em.21dtv.com/songs/60044197.mkv +许志安-威尼斯,http://em.21dtv.com/songs/60043748.mkv +苏永康-我女人,http://em.21dtv.com/songs/60046012.mkv +佚名-whats new pussycat(无原唱),http://em.21dtv.com/songs/60006223.mkv +黄洋-枉凝眉,http://em.21dtv.com/songs/60121179.mkv +侯丽娟-枉凝眉,http://em.21dtv.com/songs/60120327.mkv +李玲玉-枉凝眉,http://em.21dtv.com/songs/60103366.mkv +康慷-枉凝眉,http://em.21dtv.com/songs/60100001.mkv +郑绪岚-枉凝眉,http://em.21dtv.com/songs/60098810.mkv +杨静-为你梦,http://em.21dtv.com/songs/60083979.mkv +龚月-枉凝眉,http://em.21dtv.com/songs/60078039.mkv +郭彤-枉凝眉,http://em.21dtv.com/songs/60071207.mkv +张也-枉凝眉,http://em.21dtv.com/songs/60043412.mkv +于文华-枉凝眉,http://em.21dtv.com/songs/60043411.mkv +佚名-枉凝眉,http://em.21dtv.com/songs/60043410.mkv +王立平-枉凝眉,http://em.21dtv.com/songs/60043409.mkv +宋祖英-枉凝眉,http://em.21dtv.com/songs/60043408.mkv +陈力-枉凝眉,http://em.21dtv.com/songs/60043407.mkv +水晶乐坊-枉凝眉(演唱会),http://em.21dtv.com/songs/60043406.mkv +罗宁娜-枉凝眉(演唱会),http://em.21dtv.com/songs/60043405.mkv +庄学忠-舞女泪,http://em.21dtv.com/songs/60047800.mkv +韩宝仪-舞女泪,http://em.21dtv.com/songs/60047799.mkv +阿彬哥-为你好,http://em.21dtv.com/songs/60107297.mkv +于洋-无奈何,http://em.21dtv.com/songs/60099074.mkv +丁嘉林+丁楠霓+江怡萱-万年红,http://em.21dtv.com/songs/60078023.mkv +谢霆锋-为你好,http://em.21dtv.com/songs/60043976.mkv +陈慧娴-为你好,http://em.21dtv.com/songs/60043975.mkv +赵莉-万年红,http://em.21dtv.com/songs/60043287.mkv +佚名-万年红,http://em.21dtv.com/songs/60043286.mkv +伊扬-万年红,http://em.21dtv.com/songs/60043285.mkv +黄品冠-我难过,http://em.21dtv.com/songs/60046004.mkv +5566-我难过,http://em.21dtv.com/songs/60046003.mkv +周传雄-我难过(演唱会),http://em.21dtv.com/songs/60046002.mkv +宝宝-为你爱,http://em.21dtv.com/songs/60117681.mkv +封茗囧菌-幹物女,http://em.21dtv.com/songs/60135134.mkv +冯晓荣-我们这,http://em.21dtv.com/songs/60109168.mkv +于台烟-我呒知,http://em.21dtv.com/songs/60086924.mkv +沙宝亮-无名指,http://em.21dtv.com/songs/60047250.mkv +陈慧娴-无名指(演唱会),http://em.21dtv.com/songs/60047249.mkv +郁可唯-问明月,http://em.21dtv.com/songs/60126266.mkv +郁可唯-问明月,http://em.21dtv.com/songs/60120020.mkv +三宝-无眠夜,http://em.21dtv.com/songs/60108262.mkv +何禹萱-问明月,http://em.21dtv.com/songs/60099086.mkv +庄孝纬-问明月,http://em.21dtv.com/songs/60092550.mkv +薇格-我没有,http://em.21dtv.com/songs/60086932.mkv +陈柏宇-我没有(演唱会),http://em.21dtv.com/songs/60084056.mkv +陈柏宇-我没有,http://em.21dtv.com/songs/60080444.mkv +谢霆锋-我没有,http://em.21dtv.com/songs/60045738.mkv +梁心颐-我没有,http://em.21dtv.com/songs/60045737.mkv +EMINEM-we made you,http://em.21dtv.com/songs/60006144.mkv +良山-尪某心(无原唱),http://em.21dtv.com/songs/60095873.mkv +吴奇隆-我冒险,http://em.21dtv.com/songs/60045731.mkv +佚名-尪某心(无原唱),http://em.21dtv.com/songs/60043335.mkv +东城卫-wake me up,http://em.21dtv.com/songs/60062331.mkv +钟舒漫+许靖韵+陈凯彤-我们仨,http://em.21dtv.com/songs/60129696.mkv +徐峻豪-我们是,http://em.21dtv.com/songs/60111914.mkv +孟庭苇-我们三,http://em.21dtv.com/songs/60089242.mkv +黄威尔-无名氏,http://em.21dtv.com/songs/60084124.mkv +汤灿-无名颂,http://em.21dtv.com/songs/60047246.mkv +梅艳芳-无名氏,http://em.21dtv.com/songs/60047245.mkv +SHINE-我们是,http://em.21dtv.com/songs/60045920.mkv +孟庭苇-我们仨,http://em.21dtv.com/songs/60045919.mkv +S.H.E-watch me shine,http://em.21dtv.com/songs/60006120.mkv +云梦组合-乌蒙人,http://em.21dtv.com/songs/60133342.mkv +スフィア-微かな密かな确かなミライ,http://em.21dtv.com/songs/60100758.mkv +丁维伟-无名曲,http://em.21dtv.com/songs/60086961.mkv +舞真-舞媚娘,http://em.21dtv.com/songs/60115344.mkv +Elephant Dee-五妹娘,http://em.21dtv.com/songs/60108218.mkv +李玉玺-未命名,http://em.21dtv.com/songs/60129236.mkv +曾庆宇-问妹妹,http://em.21dtv.com/songs/60081629.mkv +何伟图-未命名,http://em.21dtv.com/songs/60078117.mkv +徐雅媚-雾茫茫(无原唱),http://em.21dtv.com/songs/60047848.mkv +张蓉蓉-望美梦,http://em.21dtv.com/songs/60043684.mkv +托尼三郎-我明了,http://em.21dtv.com/songs/60114563.mkv +男人唐潮-我们俩(演唱会),http://em.21dtv.com/songs/60072547.mkv +郭顶-我们俩,http://em.21dtv.com/songs/60045909.mkv +徐小凤-文明泪,http://em.21dtv.com/songs/60044387.mkv +许诺-我没空,http://em.21dtv.com/songs/60096983.mkv +SUGABABES-wear my kiss,http://em.21dtv.com/songs/60063791.mkv +梁佑嘉-我们家,http://em.21dtv.com/songs/60066415.mkv +高赛燕-无名花,http://em.21dtv.com/songs/60085958.mkv +蹇红-无名花,http://em.21dtv.com/songs/60078453.mkv +斯琴高丽-无名火,http://em.21dtv.com/songs/60047242.mkv +詹雅雯-无名花,http://em.21dtv.com/songs/60047241.mkv +WILLOW SMITH-whip my hair,http://em.21dtv.com/songs/60006305.mkv +波波-外卖歌,http://em.21dtv.com/songs/60119764.mkv +橙草-无名歌,http://em.21dtv.com/songs/60116981.mkv +吴雨霏-无名发,http://em.21dtv.com/songs/60078452.mkv +陈茄玉-我Me,http://em.21dtv.com/songs/60124654.mkv +郑进一-无某调,http://em.21dtv.com/songs/60047255.mkv +刘爽-我明白,http://em.21dtv.com/songs/60103121.mkv +宋孟君-我明白,http://em.21dtv.com/songs/60094468.mkv +刘虹华-我明白,http://em.21dtv.com/songs/60087427.mkv +吴若希-我明白,http://em.21dtv.com/songs/60084070.mkv +林忆莲+李宗盛-我明白(演唱会),http://em.21dtv.com/songs/60045993.mkv +张真菲+苏宇舟-未满爱,http://em.21dtv.com/songs/60063422.mkv +张本煜+T.O.B戏子+老湿+张帅-我来也,http://em.21dtv.com/songs/60131404.mkv +新青年理发厅-喂老友,http://em.21dtv.com/songs/60125613.mkv +刘思涵-万灵药,http://em.21dtv.com/songs/60081933.mkv +许志安-五零一(演唱会),http://em.21dtv.com/songs/60047648.mkv +梁汉文-五零一(演唱会),http://em.21dtv.com/songs/60047647.mkv +王识贤-未了缘,http://em.21dtv.com/songs/60044269.mkv +陈百潭-问流星,http://em.21dtv.com/songs/60123318.mkv +裴秀晶-为了我,http://em.21dtv.com/songs/60131804.mkv +黄鸿升-忘了我,http://em.21dtv.com/songs/60114919.mkv +张信哲-忘了我,http://em.21dtv.com/songs/60111857.mkv +姚汶岐-忘了我,http://em.21dtv.com/songs/60085826.mkv +杨宗纬-忘了我,http://em.21dtv.com/songs/60078053.mkv +黄格选+初瑞-忘了我,http://em.21dtv.com/songs/60065008.mkv +张信哲-忘了我,http://em.21dtv.com/songs/60043610.mkv +黄格选-忘了我,http://em.21dtv.com/songs/60043609.mkv +元卫觉醒-王老五(演唱会),http://em.21dtv.com/songs/60043357.mkv +罗子淇-蔚蓝天,http://em.21dtv.com/songs/60132793.mkv +龙梅子+葛荟婕-忘了他,http://em.21dtv.com/songs/60130956.mkv +帕尔哈提-忘了她,http://em.21dtv.com/songs/60129039.mkv +葛荟婕+龙梅子-忘了他,http://em.21dtv.com/songs/60124429.mkv +帕尔哈提-忘了她,http://em.21dtv.com/songs/60122698.mkv +罗子淇-蔚蓝天,http://em.21dtv.com/songs/60098689.mkv +BUDDY-为了她,http://em.21dtv.com/songs/60043924.mkv +杜德伟-忘了他,http://em.21dtv.com/songs/60043604.mkv +单紫宁-忘了他,http://em.21dtv.com/songs/60043603.mkv +佚名-无路驶,http://em.21dtv.com/songs/60095420.mkv +者建周+高书琴-无量山,http://em.21dtv.com/songs/60078449.mkv +龚月-为了谁,http://em.21dtv.com/songs/60078079.mkv +祖海-为了谁,http://em.21dtv.com/songs/60043923.mkv +祖海-为了谁(演唱会),http://em.21dtv.com/songs/60043922.mkv +祖海+佟铁鑫-为了谁(演唱会),http://em.21dtv.com/songs/60043921.mkv +谢言-忘了谁,http://em.21dtv.com/songs/60043600.mkv +[Group] +groupName=十六万歌曲MV等 - 32 +THE WANTED-walks like rihanna,http://em.21dtv.com/songs/60082387.mkv +何韵诗-无脸人,http://em.21dtv.com/songs/60071287.mkv +孙露-未了情,http://em.21dtv.com/songs/60115828.mkv +庄振凯-未了情,http://em.21dtv.com/songs/60078116.mkv +郑锦昌-未了情(演唱会),http://em.21dtv.com/songs/60078115.mkv +佚名-未了情,http://em.21dtv.com/songs/60044268.mkv +田震-未了情,http://em.21dtv.com/songs/60044267.mkv +启笛-未了情,http://em.21dtv.com/songs/60044266.mkv +李娜-未了情,http://em.21dtv.com/songs/60044265.mkv +陈盈洁+袁小迪-未了情,http://em.21dtv.com/songs/60044264.mkv +本兮-无聊派,http://em.21dtv.com/songs/60100103.mkv +苏打绿-我赖你,http://em.21dtv.com/songs/60131759.mkv +任宰范-为了你,http://em.21dtv.com/songs/60128767.mkv +胡拾梅-忘了你,http://em.21dtv.com/songs/60128322.mkv +MC菏泽小志-为了你,http://em.21dtv.com/songs/60121288.mkv +宋旭-为了你,http://em.21dtv.com/songs/60114496.mkv +寒武纪-忘了你,http://em.21dtv.com/songs/60107671.mkv +涓子-忘了你,http://em.21dtv.com/songs/60096388.mkv +寒武纪-忘了你,http://em.21dtv.com/songs/60096250.mkv +李夏怡-为了你(演唱会),http://em.21dtv.com/songs/60078078.mkv +魔电女孩-为了你,http://em.21dtv.com/songs/60069908.mkv +郁可唯-为了你,http://em.21dtv.com/songs/60066373.mkv +黎明柔-我赖你,http://em.21dtv.com/songs/60045709.mkv +赵凯-为了你,http://em.21dtv.com/songs/60043914.mkv +彭佳慧-为了你,http://em.21dtv.com/songs/60043913.mkv +黄大炜-为了你,http://em.21dtv.com/songs/60043912.mkv +曾航生-为了你,http://em.21dtv.com/songs/60043911.mkv +谷峰-为了你(演唱会),http://em.21dtv.com/songs/60043910.mkv +Boxing 乐团+范晓萱-巫露玛,http://em.21dtv.com/songs/60131039.mkv +郑俊弘-忘了吗,http://em.21dtv.com/songs/60114820.mkv +佳悦-我来了,http://em.21dtv.com/songs/60068773.mkv +袁成杰-乌溜溜,http://em.21dtv.com/songs/60066436.mkv +佚名-雾来了(无原唱),http://em.21dtv.com/songs/60047844.mkv +旺福乐团-呜啦啦,http://em.21dtv.com/songs/60047050.mkv +郑进一-我里勒,http://em.21dtv.com/songs/60045717.mkv +莫文蔚-我累了,http://em.21dtv.com/songs/60045712.mkv +张钧喻-我来了,http://em.21dtv.com/songs/60045701.mkv +佚名-whole lotta love(无原唱),http://em.21dtv.com/songs/60006318.mkv +苏慧伦-我离开,http://em.21dtv.com/songs/60045715.mkv +张学友-忘了哭,http://em.21dtv.com/songs/60043590.mkv +杨雯茜-忘了哭,http://em.21dtv.com/songs/60043589.mkv +陈思安-望郎君,http://em.21dtv.com/songs/60043679.mkv +蓝琪儿-乌兰红,http://em.21dtv.com/songs/60071283.mkv +梁静茹-苿莉花,http://em.21dtv.com/songs/60044308.mkv +陈劭康-忘了关,http://em.21dtv.com/songs/60130829.mkv +郑添龙-未了歌,http://em.21dtv.com/songs/60126278.mkv +张磊-未了歌,http://em.21dtv.com/songs/60123943.mkv +程恢弘-无聊歌,http://em.21dtv.com/songs/60066438.mkv +张朴浩-晚林枫,http://em.21dtv.com/songs/60102224.mkv +邱淑君+阿Q-乌龙茶(无原唱),http://em.21dtv.com/songs/60095935.mkv +龙千玉-乌龙茶,http://em.21dtv.com/songs/60047035.mkv +李艳-忘了吧,http://em.21dtv.com/songs/60127049.mkv +沈石磊-忘了吧,http://em.21dtv.com/songs/60062905.mkv +马永真-忘了吧,http://em.21dtv.com/songs/60062748.mkv +易天晴-五六八(无原唱),http://em.21dtv.com/songs/60047649.mkv +李玟-忘了吧(无原唱),http://em.21dtv.com/songs/60043585.mkv +五月-网络版,http://em.21dtv.com/songs/60043384.mkv +李佳薇-微恋爱,http://em.21dtv.com/songs/60100115.mkv +胡杰夕-为了爱,http://em.21dtv.com/songs/60080550.mkv +晖倪-微恋爱,http://em.21dtv.com/songs/60071213.mkv +香香-为了爱,http://em.21dtv.com/songs/60043902.mkv +任贤齐+李心洁-为了爱,http://em.21dtv.com/songs/60043901.mkv +陈辰-为了爱,http://em.21dtv.com/songs/60043900.mkv +陈盈洁-为了爱(无原唱),http://em.21dtv.com/songs/60043899.mkv +范逸臣-忘了爱,http://em.21dtv.com/songs/60043583.mkv +TORO-忘了爱,http://em.21dtv.com/songs/60043582.mkv +KIRORO-未来へ,http://em.21dtv.com/songs/60044246.mkv +童孔-我可以,http://em.21dtv.com/songs/60131713.mkv +王野-我可以,http://em.21dtv.com/songs/60131678.mkv +黄玠-我可以,http://em.21dtv.com/songs/60108184.mkv +姜育恒-我可以,http://em.21dtv.com/songs/60101318.mkv +罗力威-我可以,http://em.21dtv.com/songs/60096982.mkv +黄玠-我可以,http://em.21dtv.com/songs/60084055.mkv +羽泉-我可以,http://em.21dtv.com/songs/60045686.mkv +游鸿明-我可以,http://em.21dtv.com/songs/60045685.mkv +吴浩康-我可以,http://em.21dtv.com/songs/60045684.mkv +李妍瑾-我可以,http://em.21dtv.com/songs/60045683.mkv +李圣杰-我可以,http://em.21dtv.com/songs/60045682.mkv +蔡旻佑-我可以,http://em.21dtv.com/songs/60045681.mkv +张圳-我看透,http://em.21dtv.com/songs/60087800.mkv +吴克群-吴克群,http://em.21dtv.com/songs/60047614.mkv +蔡秋凤-未看破(无原唱),http://em.21dtv.com/songs/60095919.mkv +佚名-未看破(无原唱),http://em.21dtv.com/songs/60044239.mkv +佚名-袜看破,http://em.21dtv.com/songs/60043064.mkv +龙千玉-无可能,http://em.21dtv.com/songs/60047182.mkv +寂悸-唯可怜,http://em.21dtv.com/songs/60103216.mkv +欧阳尚尚-我哭了,http://em.21dtv.com/songs/60078277.mkv +张学友-我哭了,http://em.21dtv.com/songs/60045698.mkv +艳-我哭了,http://em.21dtv.com/songs/60045697.mkv +毛毛-我哭了,http://em.21dtv.com/songs/60045696.mkv +华强-我哭了,http://em.21dtv.com/songs/60045695.mkv +张学友-我哭了(演唱会),http://em.21dtv.com/songs/60045694.mkv +1931组合-我看见,http://em.21dtv.com/songs/60127640.mkv +高惜爱-我看见,http://em.21dtv.com/songs/60106468.mkv +张信哲-我看见,http://em.21dtv.com/songs/60067567.mkv +SWEET LICIOUS-winter kiss~冬がくれたラブスト,http://em.21dtv.com/songs/60063802.mkv +陈慧琳-伪君子,http://em.21dtv.com/songs/60120088.mkv +BY2-无解呦,http://em.21dtv.com/songs/60047160.mkv +辛晓琪-我就要,http://em.21dtv.com/songs/60045667.mkv +金莎-我介意,http://em.21dtv.com/songs/60045644.mkv +李玉玺-玩具熊,http://em.21dtv.com/songs/60128093.mkv +李宓-无极限,http://em.21dtv.com/songs/60124064.mkv +罗嘉豪+祖丝+AJ-无极限,http://em.21dtv.com/songs/60111347.mkv +罗志祥-舞极限,http://em.21dtv.com/songs/60071293.mkv +菲麦尔-忘记我,http://em.21dtv.com/songs/60100433.mkv +罗志祥+杨丞琳-王见王,http://em.21dtv.com/songs/60067506.mkv +杨丞琳+罗志祥-王见王,http://em.21dtv.com/songs/60066360.mkv +符琼音-忘记我,http://em.21dtv.com/songs/60043563.mkv +馨梓-忘记他,http://em.21dtv.com/songs/60093512.mkv +刘惜君-忘记他,http://em.21dtv.com/songs/60071211.mkv +张萍-望江亭,http://em.21dtv.com/songs/60043676.mkv +孟祥萍-望江亭,http://em.21dtv.com/songs/60043675.mkv +张学友-忘记他,http://em.21dtv.com/songs/60043561.mkv +黄红英-忘记他,http://em.21dtv.com/songs/60043560.mkv +关淑怡-忘记他,http://em.21dtv.com/songs/60043559.mkv +邓丽君-忘记他,http://em.21dtv.com/songs/60043558.mkv +朱家欣-忘记他(演唱会),http://em.21dtv.com/songs/60043557.mkv +张学友-忘记他(演唱会),http://em.21dtv.com/songs/60043556.mkv +卢巧音-忘记他(演唱会),http://em.21dtv.com/songs/60043555.mkv +陈洁灵-忘记他(演唱会),http://em.21dtv.com/songs/60043554.mkv +孙楠-为江山,http://em.21dtv.com/songs/60133562.mkv +郑少秋-问江山(演唱会),http://em.21dtv.com/songs/60044459.mkv +李维康+耿其昌-武家坡,http://em.21dtv.com/songs/60047748.mkv +谢沛恩-完结篇,http://em.21dtv.com/songs/60043096.mkv +陈奕迅-我甲你,http://em.21dtv.com/songs/60045639.mkv +咻比嘟哗-忘记你,http://em.21dtv.com/songs/60043539.mkv +闪亮三姐妹-忘记你,http://em.21dtv.com/songs/60043538.mkv +晨熙-忘记你,http://em.21dtv.com/songs/60043537.mkv +BEYOND-忘记你,http://em.21dtv.com/songs/60043536.mkv +陈慧娴-我寂寞,http://em.21dtv.com/songs/60045626.mkv +沈庆-忘记了,http://em.21dtv.com/songs/60097001.mkv +张霖-万劫谷,http://em.21dtv.com/songs/60085817.mkv +童唱-玩具国,http://em.21dtv.com/songs/60043167.mkv +张艺-万家福,http://em.21dtv.com/songs/60121669.mkv +任贤齐+梁汉文-无间道,http://em.21dtv.com/songs/60134876.mkv +刘德华-无间道(HD),http://em.21dtv.com/songs/10012650.mkv +信-我记得,http://em.21dtv.com/songs/60071249.mkv +刘德华+梁朝伟-无间道,http://em.21dtv.com/songs/60047153.mkv +杨千嬅+黄耀明-无间道(演唱会),http://em.21dtv.com/songs/60047152.mkv +刘德华-无间道(演唱会),http://em.21dtv.com/songs/60047151.mkv +蒙恩使女-我决定,http://em.21dtv.com/songs/60045671.mkv +梁静茹-我决定,http://em.21dtv.com/songs/60045670.mkv +朱海君-为君愁,http://em.21dtv.com/songs/60068730.mkv +邓丽君-为君愁,http://em.21dtv.com/songs/60043897.mkv +佚名-为君愁(无原唱),http://em.21dtv.com/songs/60043896.mkv +李涵-万家春,http://em.21dtv.com/songs/60043272.mkv +萧闳仁-忘记吧,http://em.21dtv.com/songs/60094269.mkv +叶宇澄-玩具兵,http://em.21dtv.com/songs/60043165.mkv +湛铭赫-我骄傲,http://em.21dtv.com/songs/60131618.mkv +良一-我呒惊,http://em.21dtv.com/songs/60135648.mkv +ANNIE LENNOX-waiting in vain,http://em.21dtv.com/songs/60006087.mkv +HAYLEY WESTENRA-world in union(演唱会),http://em.21dtv.com/songs/60074164.mkv +GWEN STEFANI-wind it up,http://em.21dtv.com/songs/60006353.mkv +LIFEHOUSE-whatever it takes,http://em.21dtv.com/songs/60006217.mkv +COCO JONES-what i said(let it shine),http://em.21dtv.com/songs/60082391.mkv +佚名-whatd i say,http://em.21dtv.com/songs/60006216.mkv +UNK-walk it out,http://em.21dtv.com/songs/60082383.mkv +BEYONCE-work it out,http://em.21dtv.com/songs/60070419.mkv +初音ミク-world is mine,http://em.21dtv.com/songs/60074165.mkv +DOWN WITH-whoa is me,http://em.21dtv.com/songs/60062011.mkv +黄丽玲-Woman In Love,http://em.21dtv.com/songs/60079920.mkv +ALIN-woman in love,http://em.21dtv.com/songs/60071693.mkv +EXO-M-what is love,http://em.21dtv.com/songs/60068010.mkv +佚名-woman in love,http://em.21dtv.com/songs/60006390.mkv +S.H.E-woman in love,http://em.21dtv.com/songs/60006389.mkv +郑秀文-woman in love(演唱会),http://em.21dtv.com/songs/60006388.mkv +佚名-what is love,http://em.21dtv.com/songs/60006199.mkv +KT-who is kt,http://em.21dtv.com/songs/60060947.mkv +THE CORRS-what i know,http://em.21dtv.com/songs/60006192.mkv +LENE MARLIN-where im headed,http://em.21dtv.com/songs/60006292.mkv +AVANT-when it hurts,http://em.21dtv.com/songs/60006250.mkv +SUBLIME-what i got,http://em.21dtv.com/songs/60074113.mkv +SIMPLE PLAN-when im gone,http://em.21dtv.com/songs/60006249.mkv +LINKIN PARK-what ive done,http://em.21dtv.com/songs/60006204.mkv +群星-我还在(无原唱),http://em.21dtv.com/songs/60045494.mkv +Zia-Why,http://em.21dtv.com/songs/60133315.mkv +金泰妍-Why,http://em.21dtv.com/songs/60126297.mkv +Wanna.B-Why,http://em.21dtv.com/songs/60125044.mkv +九九-Why,http://em.21dtv.com/songs/60081787.mkv +谭晶-望华岳,http://em.21dtv.com/songs/60067517.mkv +蔡秋凤-问韩信,http://em.21dtv.com/songs/60065029.mkv +张信哲-我好想,http://em.21dtv.com/songs/60045506.mkv +刘德华-维护我,http://em.21dtv.com/songs/60090706.mkv +何韵诗-万花筒,http://em.21dtv.com/songs/60092264.mkv +林峰-我很痛(演唱会),http://em.21dtv.com/songs/60062647.mkv +陈明-万花筒,http://em.21dtv.com/songs/60043271.mkv +吴雨霏-我话事,http://em.21dtv.com/songs/60045591.mkv +风火海-我话事,http://em.21dtv.com/songs/60045590.mkv +信乐团-我话事(演唱会),http://em.21dtv.com/songs/60045589.mkv +吴雨霏+侧田-我话事(演唱会),http://em.21dtv.com/songs/60045588.mkv +任贤齐-我很傻,http://em.21dtv.com/songs/60045571.mkv +张智霖-未婚妻(演唱会),http://em.21dtv.com/songs/60065028.mkv +舒克-我很穷,http://em.21dtv.com/songs/60045570.mkv +李睿超-我很穷,http://em.21dtv.com/songs/60045569.mkv +XXL组合-我很胖,http://em.21dtv.com/songs/60096988.mkv +郑俊英+张慧珍-我和你,http://em.21dtv.com/songs/60132988.mkv +常石磊-我和你,http://em.21dtv.com/songs/60116760.mkv +华语群星-我和你,http://em.21dtv.com/songs/60096986.mkv +陶喆+龚琳娜-我和你,http://em.21dtv.com/songs/60094335.mkv +谈芳兵-问侯你,http://em.21dtv.com/songs/60092088.mkv +朱含芳-我和你,http://em.21dtv.com/songs/60087966.mkv +郑安明-我怀念,http://em.21dtv.com/songs/60078256.mkv +倪雅丰-我和你,http://em.21dtv.com/songs/60069953.mkv +阿信-我恨你,http://em.21dtv.com/songs/60045579.mkv +柯有伦+杨乃文-我恨你,http://em.21dtv.com/songs/60045578.mkv +苏永康-我和你,http://em.21dtv.com/songs/60045535.mkv +刘欢+SARAH BRIGHTMAN-我和你,http://em.21dtv.com/songs/60045534.mkv +梁雁翎-我和你,http://em.21dtv.com/songs/60045533.mkv +韩红-我和你,http://em.21dtv.com/songs/60045532.mkv +邓丽君-我和你,http://em.21dtv.com/songs/60045531.mkv +CT GIRLS-我和你,http://em.21dtv.com/songs/60045530.mkv +张学友-我和你(演唱会),http://em.21dtv.com/songs/60045529.mkv +刘欢+SARAH BRIGHTMAN-我和你(演唱会),http://em.21dtv.com/songs/60045528.mkv +梁咏琪-我和你(演唱会),http://em.21dtv.com/songs/60045527.mkv +梁汉文-我和你(演唱会),http://em.21dtv.com/songs/60045526.mkv +陈百强-我和你(演唱会),http://em.21dtv.com/songs/60045525.mkv +伍思凯+郑怡-我和你(无原唱),http://em.21dtv.com/songs/60045524.mkv +谈芳兵-问候你,http://em.21dtv.com/songs/60044456.mkv +陈永馨-我很忙,http://em.21dtv.com/songs/60104565.mkv +李萧杰-卫辉美,http://em.21dtv.com/songs/60068741.mkv +ALIN-我很忙,http://em.21dtv.com/songs/60065074.mkv +叶佩雯-我好吗,http://em.21dtv.com/songs/60045503.mkv +方琦-吻和泪,http://em.21dtv.com/songs/60124002.mkv +卓依婷+王中平-吻和泪,http://em.21dtv.com/songs/60099822.mkv +沙洲-挖蛤蜊,http://em.21dtv.com/songs/60096386.mkv +周明辉-我好累,http://em.21dtv.com/songs/60045502.mkv +周冰倩-我好累,http://em.21dtv.com/songs/60045501.mkv +郑智化-我好累,http://em.21dtv.com/songs/60045500.mkv +元若蓝-我好了,http://em.21dtv.com/songs/60045499.mkv +周子寒-吻和泪,http://em.21dtv.com/songs/60044419.mkv +颜楚楚-望花楼,http://em.21dtv.com/songs/60043674.mkv +孙奇-我很酷,http://em.21dtv.com/songs/60125379.mkv +林海峰-我好惊,http://em.21dtv.com/songs/60065072.mkv +冯允谦-我还好,http://em.21dtv.com/songs/60103906.mkv +佚名-舞会后,http://em.21dtv.com/songs/60047779.mkv +陈雷-无后悔,http://em.21dtv.com/songs/60047127.mkv +陈良珊-我很坏(无原唱),http://em.21dtv.com/songs/60045561.mkv +刘若英-我很好,http://em.21dtv.com/songs/60045559.mkv +刘沁-我很好,http://em.21dtv.com/songs/60045558.mkv +梁咏琪-我很好,http://em.21dtv.com/songs/60045557.mkv +范文芳-我还好,http://em.21dtv.com/songs/60045462.mkv +童唱-娃哈哈,http://em.21dtv.com/songs/60043040.mkv +水晶乐坊-娃哈哈,http://em.21dtv.com/songs/60043039.mkv +巧千金-娃哈哈,http://em.21dtv.com/songs/60043038.mkv +何嘉文-哇哈哈(无原唱),http://em.21dtv.com/songs/60043035.mkv +李宇春-无花果,http://em.21dtv.com/songs/60127001.mkv +王文峰-无花果,http://em.21dtv.com/songs/60047129.mkv +THE CRANBERRIES-When You're Gone,http://em.21dtv.com/songs/60099704.mkv +朱一龙-我会等,http://em.21dtv.com/songs/60129213.mkv +何佳乐-问回答,http://em.21dtv.com/songs/60125120.mkv +姚贝娜-问红尘,http://em.21dtv.com/songs/60099922.mkv +郑锦昌-唔好嘈,http://em.21dtv.com/songs/60047619.mkv +阎奕格-我何必,http://em.21dtv.com/songs/60122209.mkv +徐若瑄-我很blue,http://em.21dtv.com/songs/60045552.mkv +JANELLE MONÁE-What Is Love,http://em.21dtv.com/songs/60099664.mkv +モーニング娘。'14-WHAT IS LOVE,http://em.21dtv.com/songs/60096886.mkv +王亚东-我会爱,http://em.21dtv.com/songs/60110375.mkv +牛欣欣-舞公主,http://em.21dtv.com/songs/60078484.mkv +李明洋+黄思婷-我甘愿,http://em.21dtv.com/songs/60078243.mkv +陈茂丰-我甘愿,http://em.21dtv.com/songs/60067565.mkv +陈星-望故乡,http://em.21dtv.com/songs/60043671.mkv +蔡秋凤-望故乡,http://em.21dtv.com/songs/60043670.mkv +KENNY ROGERS+SHEENA-weve got tonight,http://em.21dtv.com/songs/60006171.mkv +BOYZONE-weve got tonight,http://em.21dtv.com/songs/60006170.mkv +陈慧琳-未敢说,http://em.21dtv.com/songs/60093462.mkv +玖壹壹-歪国人,http://em.21dtv.com/songs/60111299.mkv +BUSTA RHYMES+ESTELLE-world go round,http://em.21dtv.com/songs/60063809.mkv +蔡小虎-问感情,http://em.21dtv.com/songs/60044448.mkv +华晨宇-我管你,http://em.21dtv.com/songs/60133430.mkv +华晨宇-我管你,http://em.21dtv.com/songs/60111732.mkv +赖慧如+张文绮-我敢梦,http://em.21dtv.com/songs/60122141.mkv +赖慧如-我敢梦,http://em.21dtv.com/songs/60122140.mkv +吴雨霏-吴哥窟,http://em.21dtv.com/songs/60065150.mkv +熊天平-我感觉,http://em.21dtv.com/songs/60091673.mkv +佚名-五更鼓,http://em.21dtv.com/songs/60047644.mkv +李秋霞-五更鼓,http://em.21dtv.com/songs/60047643.mkv +江蕙-五更鼓,http://em.21dtv.com/songs/60047642.mkv +王琦伦-五更鼓(无原唱),http://em.21dtv.com/songs/60047641.mkv +曾桂英-五更歌,http://em.21dtv.com/songs/60047640.mkv +杨曙光-望哥哥,http://em.21dtv.com/songs/60043669.mkv +SAYA-舞功夫,http://em.21dtv.com/songs/60047777.mkv +刘锡明-无根草,http://em.21dtv.com/songs/60047120.mkv +吴雨霏-我敢爱,http://em.21dtv.com/songs/60109221.mkv +张力超-我敢爱,http://em.21dtv.com/songs/60108488.mkv +黄凯芹-微风中,http://em.21dtv.com/songs/60129832.mkv +海俊杰-微风中,http://em.21dtv.com/songs/60092970.mkv +高胜美-望夫崖,http://em.21dtv.com/songs/60043668.mkv +胡彦斌-waiting for you,http://em.21dtv.com/songs/60006086.mkv +李泉-旺夫相,http://em.21dtv.com/songs/60043650.mkv +陶莉萍-waiting for tonight,http://em.21dtv.com/songs/60006085.mkv +JENNIFER LOPEZ-waiting for tonight,http://em.21dtv.com/songs/60006084.mkv +晓月-望夫石,http://em.21dtv.com/songs/60087944.mkv +瑞雪-望夫石,http://em.21dtv.com/songs/60065009.mkv +YUMMY-五分熟,http://em.21dtv.com/songs/60047634.mkv +许强-望夫石,http://em.21dtv.com/songs/60043667.mkv +伍家辉-我疯你,http://em.21dtv.com/songs/60045425.mkv +MC HOTDOG-我疯了,http://em.21dtv.com/songs/60078242.mkv +洪辰-we found love,http://em.21dtv.com/songs/60074100.mkv +RIHANNA-we found love,http://em.21dtv.com/songs/60063788.mkv +何润东-我疯了,http://em.21dtv.com/songs/60045424.mkv +达达乐队-五分儿,http://em.21dtv.com/songs/60047633.mkv +刘维-五福到,http://em.21dtv.com/songs/60134942.mkv +谭维维-我反对,http://em.21dtv.com/songs/60096981.mkv +谢军-乌逢船,http://em.21dtv.com/songs/60047029.mkv +汤潮-world feel china,http://em.21dtv.com/songs/60006413.mkv +王易俊-玩儿牌,http://em.21dtv.com/songs/60085814.mkv +平安-WE'LL BE THERE,http://em.21dtv.com/songs/60096885.mkv +刘浩龙-520,http://em.21dtv.com/songs/60122524.mkv +瑶瑶-520,http://em.21dtv.com/songs/60110419.mkv +520女子演唱组-五二零,http://em.21dtv.com/songs/60047632.mkv +朱娜-We Can Fly,http://em.21dtv.com/songs/60128072.mkv +KELLY SWEET-WE ARE ONE[消伴],http://em.21dtv.com/songs/60101215.mkv +PITBULL+JENNIFER LOPEZ+CLAUDIA LEITTE-We Are One (Ole Ola),http://em.21dtv.com/songs/60099694.mkv +陈夏莲-无底找,http://em.21dtv.com/songs/60135904.mkv +冬雨-我多想,http://em.21dtv.com/songs/60131189.mkv +金久哲-我的心,http://em.21dtv.com/songs/60128486.mkv +李雨儿-我的心,http://em.21dtv.com/songs/60125726.mkv +何龙雨-我多想,http://em.21dtv.com/songs/60113257.mkv +吴莫愁-舞底线,http://em.21dtv.com/songs/60111758.mkv +Heyne-我的心,http://em.21dtv.com/songs/60109822.mkv +本兮-无底线,http://em.21dtv.com/songs/60103340.mkv +村根-我的心,http://em.21dtv.com/songs/60094620.mkv +韩磊-我多想,http://em.21dtv.com/songs/60084047.mkv +德乾旺姆-我的心,http://em.21dtv.com/songs/60081206.mkv +大眼炮-无底线,http://em.21dtv.com/songs/60078442.mkv +丰毓洁-我多想,http://em.21dtv.com/songs/60068766.mkv +郭公芳-我多想,http://em.21dtv.com/songs/60045412.mkv +成方圆-我多想,http://em.21dtv.com/songs/60045411.mkv +陈茂丰-我的心,http://em.21dtv.com/songs/60045260.mkv +沈芳如-我的心(无原唱),http://em.21dtv.com/songs/60045259.mkv +望海高歌-我的唯,http://em.21dtv.com/songs/60115981.mkv +洪杰-我对我,http://em.21dtv.com/songs/60045407.mkv +关正杰+小柏林-问到尾,http://em.21dtv.com/songs/60044447.mkv +TWINS-我的ufo,http://em.21dtv.com/songs/60044990.mkv +杨静-我的天,http://em.21dtv.com/songs/60084037.mkv +张敬轩-我的天,http://em.21dtv.com/songs/60045230.mkv +莫文蔚-我的天,http://em.21dtv.com/songs/60045229.mkv +江美琪-我的他(演唱会),http://em.21dtv.com/songs/60045225.mkv +佚名-我的他(吉鲁巴),http://em.21dtv.com/songs/60045224.mkv +姜玉阳-我单身,http://em.21dtv.com/songs/60118489.mkv +BY2-无敌帅,http://em.21dtv.com/songs/60101595.mkv +大张伟-我滴神,http://em.21dtv.com/songs/60087626.mkv +徐若瑄-我的superstar,http://em.21dtv.com/songs/60044989.mkv +薛之谦+君君-我的show,http://em.21dtv.com/songs/60044987.mkv +君君-我的show,http://em.21dtv.com/songs/60044986.mkv +徐若瑄-我的 superstar,http://em.21dtv.com/songs/60044976.mkv +回音哥-问道情,http://em.21dtv.com/songs/60096229.mkv +小文-我的情,http://em.21dtv.com/songs/60045184.mkv +余成-我的你,http://em.21dtv.com/songs/60115001.mkv +红蔷薇-微到你,http://em.21dtv.com/songs/60112875.mkv +光良-我等你,http://em.21dtv.com/songs/60065069.mkv +任德勇-我等你,http://em.21dtv.com/songs/60062858.mkv +谢天华+徐子珊-我等你,http://em.21dtv.com/songs/60061682.mkv +黎明-我等你,http://em.21dtv.com/songs/60061681.mkv +佚名-我等你,http://em.21dtv.com/songs/60045383.mkv +刘若英-我等你,http://em.21dtv.com/songs/60045382.mkv +黄鹤翔-我等你,http://em.21dtv.com/songs/60045381.mkv +林子祥-我等你(无原唱),http://em.21dtv.com/songs/60045380.mkv +张学友-我得你,http://em.21dtv.com/songs/60044974.mkv +刘德华-我得你,http://em.21dtv.com/songs/60044973.mkv +刘标-我的梦,http://em.21dtv.com/songs/60131213.mkv +刘茂-我的梦,http://em.21dtv.com/songs/60117589.mkv +张靓颖-我的梦,http://em.21dtv.com/songs/60116812.mkv +祖海-我的梦,http://em.21dtv.com/songs/60108748.mkv +GJ蒋卓嘉-我的梦,http://em.21dtv.com/songs/60103533.mkv +熊七梅-我的梦,http://em.21dtv.com/songs/60103429.mkv +谢有才-我的梦,http://em.21dtv.com/songs/60078214.mkv +佚名-我的梦,http://em.21dtv.com/songs/60045158.mkv +格桑志玛-我的梦,http://em.21dtv.com/songs/60045157.mkv +黄靖伦-我的妈,http://em.21dtv.com/songs/60045152.mkv +闪亮三姐妹-我的mr right,http://em.21dtv.com/songs/60044985.mkv +王心凌-我懂了,http://em.21dtv.com/songs/60135552.mkv +曾沛慈-我的泪,http://em.21dtv.com/songs/60131481.mkv +曾沛慈-我的泪,http://em.21dtv.com/songs/60129195.mkv +玖壹壹-我的路,http://em.21dtv.com/songs/60117933.mkv +胡斌-我的路,http://em.21dtv.com/songs/60117138.mkv +刘若英-我懂了,http://em.21dtv.com/songs/60115030.mkv +米乐-我懂了,http://em.21dtv.com/songs/60112872.mkv +周其-我的路,http://em.21dtv.com/songs/60104884.mkv +汪峰-我的路,http://em.21dtv.com/songs/60086916.mkv +单冲峰-我的路,http://em.21dtv.com/songs/60085886.mkv +吴斌-我的路,http://em.21dtv.com/songs/60084029.mkv +吴若希-我懂了,http://em.21dtv.com/songs/60078238.mkv +胡斌-我的路,http://em.21dtv.com/songs/60071241.mkv +金莎-我懂了,http://em.21dtv.com/songs/60045389.mkv +张靓颖-我的路,http://em.21dtv.com/songs/60045151.mkv +李妍瑾-我的蓝,http://em.21dtv.com/songs/60045139.mkv +吴陌川-玩大咖,http://em.21dtv.com/songs/60131264.mkv +1314组合-我的家,http://em.21dtv.com/songs/60109073.mkv +祁隆-我的家,http://em.21dtv.com/songs/60108747.mkv +琼雪卓玛-我的家,http://em.21dtv.com/songs/60062842.mkv +江希文-我妒忌,http://em.21dtv.com/songs/60045395.mkv +王玉-我的家,http://em.21dtv.com/songs/60045110.mkv +童唱-我的家,http://em.21dtv.com/songs/60045109.mkv +根呷-我的家,http://em.21dtv.com/songs/60045108.mkv +动画-我的家,http://em.21dtv.com/songs/60045107.mkv +王路路-我的歌,http://em.21dtv.com/songs/60096987.mkv +罗敏庄-我的歌(演唱会),http://em.21dtv.com/songs/60078202.mkv +杨洪基-无调歌,http://em.21dtv.com/songs/60047461.mkv +郑伊健-我的歌,http://em.21dtv.com/songs/60045072.mkv +郑伊健-我的歌(演唱会),http://em.21dtv.com/songs/60045071.mkv +罗文-我的歌(演唱会),http://em.21dtv.com/songs/60045070.mkv +莫少聪-玩肚饿,http://em.21dtv.com/songs/60093098.mkv +刘飞飞-舞哒哒,http://em.21dtv.com/songs/60110048.mkv +蔡健雅-无底洞,http://em.21dtv.com/songs/60047089.mkv +常石磊-我的城,http://em.21dtv.com/songs/60078197.mkv +胡夏-我的错(演唱会),http://em.21dtv.com/songs/60067555.mkv +B.A.D-我的错,http://em.21dtv.com/songs/60045053.mkv +何杰-我的错(演唱会),http://em.21dtv.com/songs/60045052.mkv +佚名-when doves cry,http://em.21dtv.com/songs/60006235.mkv +肖雨蒙-我的宝,http://em.21dtv.com/songs/60112894.mkv +黄贯中-无得比,http://em.21dtv.com/songs/60047083.mkv +许嵩-我的baby,http://em.21dtv.com/songs/60044983.mkv +刘标-我的爱,http://em.21dtv.com/songs/60126645.mkv +段红+Jason-我的爱,http://em.21dtv.com/songs/60109483.mkv +51-我的爱,http://em.21dtv.com/songs/60103750.mkv +洪进英-我的爱,http://em.21dtv.com/songs/60099377.mkv +汪峰-我的爱,http://em.21dtv.com/songs/60095206.mkv +洪卓立-我的爱(演唱会),http://em.21dtv.com/songs/60072525.mkv +陈兴瑜-舞动爱,http://em.21dtv.com/songs/60066446.mkv +王若琳-我的爱,http://em.21dtv.com/songs/60044998.mkv +孙燕姿-我的爱,http://em.21dtv.com/songs/60044997.mkv +范玮琪-我的爱,http://em.21dtv.com/songs/60044996.mkv +蔡秋凤-我的爱(无原唱),http://em.21dtv.com/songs/60044995.mkv +蒋易-我的angel,http://em.21dtv.com/songs/60044982.mkv +谢霆锋-我存在,http://em.21dtv.com/songs/60105380.mkv +储兰兰-无产者,http://em.21dtv.com/songs/60078438.mkv +柯香-无产者,http://em.21dtv.com/songs/60047068.mkv +铁文太-问草原,http://em.21dtv.com/songs/60108105.mkv +F.I.R-我超越(演唱会),http://em.21dtv.com/songs/60061674.mkv +毛阿敏-问彩云,http://em.21dtv.com/songs/60044445.mkv +郑君威+董育君-望春天,http://em.21dtv.com/songs/60135809.mkv +张瀛仁-问苍天,http://em.21dtv.com/songs/60135220.mkv +陈随意-问苍天,http://em.21dtv.com/songs/60100606.mkv +张蓉蓉-望春天,http://em.21dtv.com/songs/60043665.mkv +秋裤大叔+冷漠-问禅师,http://em.21dtv.com/songs/60108784.mkv +施文彬-舞财神,http://em.21dtv.com/songs/60084136.mkv +彭立-我承认,http://em.21dtv.com/songs/60086913.mkv +咻比嘟哗-我承认,http://em.21dtv.com/songs/60044953.mkv +童丽-渭城曲,http://em.21dtv.com/songs/60078119.mkv +李贞贤-wa come on,http://em.21dtv.com/songs/60006078.mkv +林海峰-我撑你,http://em.21dtv.com/songs/60092879.mkv +本兮-未成年(演唱会),http://em.21dtv.com/songs/60062232.mkv +古享林-我错了,http://em.21dtv.com/songs/60126675.mkv +黄西田+樱桃姐妹-无採啦,http://em.21dtv.com/songs/60081380.mkv +晓白-我错了,http://em.21dtv.com/songs/60067550.mkv +黄西田+樱桃姐妹-无采啦,http://em.21dtv.com/songs/60047063.mkv +龙千玉-忘川河,http://em.21dtv.com/songs/60071208.mkv +邹勇-忘川河,http://em.21dtv.com/songs/60067514.mkv +风萧萧-忘川河,http://em.21dtv.com/songs/60062352.mkv +林宛臻-问彩虹,http://em.21dtv.com/songs/60044444.mkv +李克勤-玩出火(演唱会),http://em.21dtv.com/songs/60043159.mkv +刘珂矣-忘尘谷,http://em.21dtv.com/songs/60125210.mkv +袁东方-无词歌,http://em.21dtv.com/songs/60114763.mkv +莲歌子-无常歌,http://em.21dtv.com/songs/60084113.mkv +正月十五组合-望春风(演唱会),http://em.21dtv.com/songs/60078056.mkv +童丽-望春风,http://em.21dtv.com/songs/60068724.mkv +佚名-望春风,http://em.21dtv.com/songs/60043664.mkv +陶喆-望春风,http://em.21dtv.com/songs/60043663.mkv +邓丽君-望春风,http://em.21dtv.com/songs/60043662.mkv +杨燕-望春风(演唱会),http://em.21dtv.com/songs/60043661.mkv +一青窍-望春风,http://em.21dtv.com/songs/60004407.mkv +MARIAH CAREY-when christmas comes,http://em.21dtv.com/songs/60065725.mkv +丁薇-我不在(演唱会),http://em.21dtv.com/songs/60044925.mkv +Popu Lady-我不要,http://em.21dtv.com/songs/60115621.mkv +潘美辰-我不愿(无原唱),http://em.21dtv.com/songs/60044912.mkv +徐怀钰-我不要,http://em.21dtv.com/songs/60044901.mkv +代小波-我不要,http://em.21dtv.com/songs/60044900.mkv +方逸华-问白云,http://em.21dtv.com/songs/60044441.mkv +蔡琴-问白云,http://em.21dtv.com/songs/60044440.mkv +BY2-我不想know,http://em.21dtv.com/songs/60084016.mkv +动力火车-我不想,http://em.21dtv.com/songs/60090745.mkv +BEYOND-我不信,http://em.21dtv.com/songs/60044898.mkv +阿桑-我不想,http://em.21dtv.com/songs/60044874.mkv +梁汉文-我不问,http://em.21dtv.com/songs/60044870.mkv +张杰-我不听,http://em.21dtv.com/songs/60044868.mkv +梅艳芳-well be together(演唱会),http://em.21dtv.com/songs/60006163.mkv +MARIAH CAREY-we belong together(演唱会),http://em.21dtv.com/songs/60006137.mkv +韩庚-我不说,http://em.21dtv.com/songs/60117368.mkv +本兮-我不说,http://em.21dtv.com/songs/60080428.mkv +吴雨霏-我本人,http://em.21dtv.com/songs/60065040.mkv +饶天亮-玩不起,http://em.21dtv.com/songs/60106455.mkv +干露露-玩不起,http://em.21dtv.com/songs/60104999.mkv +胡晓黎-尾摆裙,http://em.21dtv.com/songs/60078113.mkv +韩庚-我不缺,http://em.21dtv.com/songs/60072520.mkv +郭富城-我抱歉,http://em.21dtv.com/songs/60044718.mkv +佚名-万般情,http://em.21dtv.com/songs/60043260.mkv +叶丽仪-万般情(演唱会),http://em.21dtv.com/songs/60043259.mkv +欢乐颂组合-我不怕,http://em.21dtv.com/songs/60104266.mkv +周杰伦-我不配,http://em.21dtv.com/songs/60044807.mkv +邰正宵-我不配,http://em.21dtv.com/songs/60044806.mkv +潘玮柏-我不怕,http://em.21dtv.com/songs/60044802.mkv +柳岩-我不怕,http://em.21dtv.com/songs/60044801.mkv +林嘉欣-我不怕,http://em.21dtv.com/songs/60044800.mkv +傅斯彦-我不怕,http://em.21dtv.com/songs/60044799.mkv +陈少华-五百年,http://em.21dtv.com/songs/60088870.mkv +GARY MOORE-walking by myself,http://em.21dtv.com/songs/60082385.mkv +易超-walking by myself,http://em.21dtv.com/songs/60082384.mkv +廖名扬-我不面,http://em.21dtv.com/songs/60068752.mkv +迪克牛仔-walking by myself(演唱会),http://em.21dtv.com/songs/60006107.mkv +降龙十八掌+暴脾气的小明-忘不了,http://em.21dtv.com/songs/60128559.mkv +哈琳-忘不了,http://em.21dtv.com/songs/60135060.mkv +王莹-忘不了,http://em.21dtv.com/songs/60118794.mkv +杨光-忘不了,http://em.21dtv.com/songs/60113654.mkv +A Lin-忘不了,http://em.21dtv.com/songs/60109079.mkv +齐玉梅-忘不了,http://em.21dtv.com/songs/60105304.mkv +哈琳-忘不了,http://em.21dtv.com/songs/60097000.mkv +孙豆尔-忘不了,http://em.21dtv.com/songs/60096999.mkv +雷佳-忘不了(演唱会),http://em.21dtv.com/songs/60067512.mkv +陶晶莹-我变了,http://em.21dtv.com/songs/60044735.mkv +张卫健-忘不了,http://em.21dtv.com/songs/60043489.mkv +童安格-忘不了,http://em.21dtv.com/songs/60043488.mkv +陶喆-忘不了,http://em.21dtv.com/songs/60043487.mkv +顺子-忘不了,http://em.21dtv.com/songs/60043486.mkv +施文斌-忘不了,http://em.21dtv.com/songs/60043485.mkv +刘子豪-忘不了,http://em.21dtv.com/songs/60043484.mkv +刘一祯-忘不了,http://em.21dtv.com/songs/60043483.mkv +花儿乐队-忘不了,http://em.21dtv.com/songs/60043482.mkv +邓丽君-忘不了,http://em.21dtv.com/songs/60043481.mkv +花儿乐队-忘不了(演唱会),http://em.21dtv.com/songs/60043480.mkv +郭富城-忘不了(演唱会),http://em.21dtv.com/songs/60043479.mkv +王力宏-微博控,http://em.21dtv.com/songs/60109522.mkv +黄义达-我不哭,http://em.21dtv.com/songs/60080180.mkv +钱思汝-我不哭,http://em.21dtv.com/songs/60067544.mkv +佚名-我不哭,http://em.21dtv.com/songs/60044786.mkv +孙燕姿-我不哭,http://em.21dtv.com/songs/60044785.mkv +高明骏-我不哭,http://em.21dtv.com/songs/60044784.mkv +邓丽君-我不哭,http://em.21dtv.com/songs/60044783.mkv +许嵩-微博控,http://em.21dtv.com/songs/60043753.mkv +家家-忘不记,http://em.21dtv.com/songs/60072487.mkv +付佳明-我不好,http://em.21dtv.com/songs/60044765.mkv +阴三儿-我不管,http://em.21dtv.com/songs/60103647.mkv +全辉-我不该,http://em.21dtv.com/songs/60101260.mkv +陈慧琳-我不管,http://em.21dtv.com/songs/60044762.mkv +蔡小虎-我不甘,http://em.21dtv.com/songs/60044755.mkv +吕继宏-问边关,http://em.21dtv.com/songs/60044443.mkv +王鹏-问边关(演唱会),http://em.21dtv.com/songs/60044442.mkv +杜德伟-未变过,http://em.21dtv.com/songs/60044226.mkv +彭海桐-我不烦,http://em.21dtv.com/songs/60091178.mkv +周俊伟-我不服,http://em.21dtv.com/songs/60044752.mkv +高进-我不对,http://em.21dtv.com/songs/60127607.mkv +陈瑞-问百度,http://em.21dtv.com/songs/60108986.mkv +赵齐-忘不掉,http://em.21dtv.com/songs/60094310.mkv +宇然-我不对,http://em.21dtv.com/songs/60078164.mkv +樱子-我不当,http://em.21dtv.com/songs/60066391.mkv +王婧-我不懂,http://em.21dtv.com/songs/60044744.mkv +潘广益-我不懂,http://em.21dtv.com/songs/60044743.mkv +阿沁-我不懂,http://em.21dtv.com/songs/60044742.mkv +陶喆-王八蛋,http://em.21dtv.com/songs/60043345.mkv +陶喆-王八蛋(演唱会),http://em.21dtv.com/songs/60043344.mkv +林柔均-尾班车,http://em.21dtv.com/songs/60066380.mkv +周传雄-未班车,http://em.21dtv.com/songs/60044225.mkv +李千娜-尾班车,http://em.21dtv.com/songs/60044209.mkv +孙燕姿-我不爱,http://em.21dtv.com/songs/60044737.mkv +七郎-为按怎,http://em.21dtv.com/songs/60068727.mkv +袁树雄-王阿姨,http://em.21dtv.com/songs/60094293.mkv +FUN-we are young,http://em.21dtv.com/songs/60066752.mkv +谢恩民-我爱赢(演唱会),http://em.21dtv.com/songs/60065038.mkv +许茹芸-我爱夜,http://em.21dtv.com/songs/60044694.mkv +CHRIS MEDINA-what are words,http://em.21dtv.com/songs/60074108.mkv +萧亚轩-我爱我,http://em.21dtv.com/songs/60065037.mkv +CONNIE吕莘-晚安吻,http://em.21dtv.com/songs/60043215.mkv +THE SATURDAYS-what about us,http://em.21dtv.com/songs/60074106.mkv +BEANDY-what about us,http://em.21dtv.com/songs/60006184.mkv +丁当-我爱他,http://em.21dtv.com/songs/60044677.mkv +厉娜+纪敏佳+黄雅莉+艾梦萌-we are ready(演唱会),http://em.21dtv.com/songs/60071685.mkv +THE HOOSIERS-worried about ray,http://em.21dtv.com/songs/60006420.mkv +谢霆锋-we are ready,http://em.21dtv.com/songs/60006133.mkv +群星-we are ready,http://em.21dtv.com/songs/60006132.mkv +柳懿纯-晚安曲,http://em.21dtv.com/songs/60121829.mkv +王琳玲-晚安曲,http://em.21dtv.com/songs/60108716.mkv +澎恰恰+龙千玉-问爱情,http://em.21dtv.com/songs/60044439.mkv +费玉清-晚安曲,http://em.21dtv.com/songs/60043214.mkv +姜育恒-晚安曲(演唱会),http://em.21dtv.com/songs/60043213.mkv +COLOR-we are one,http://em.21dtv.com/songs/60074098.mkv +WESTLIFE-we are one,http://em.21dtv.com/songs/60006131.mkv +KELLY SWEET-we are one,http://em.21dtv.com/songs/60006130.mkv +Transition 前进乐团-我爱你,http://em.21dtv.com/songs/60129998.mkv +潘高峰-我爱你,http://em.21dtv.com/songs/60119785.mkv +林孟宗-我爱你,http://em.21dtv.com/songs/60108623.mkv +黄美珍-我爱你,http://em.21dtv.com/songs/60108186.mkv +金智淑+玄英-我爱你,http://em.21dtv.com/songs/60106342.mkv +陈玉建+干露露-我爱你,http://em.21dtv.com/songs/60094746.mkv +新裤子-我爱你,http://em.21dtv.com/songs/60087913.mkv +朴智敏-我爱你,http://em.21dtv.com/songs/60086912.mkv +李欧-我爱你,http://em.21dtv.com/songs/60084009.mkv +陈浩民-我爱你,http://em.21dtv.com/songs/60084008.mkv +RUDIMENTAL FEAT.ELLA EYRE-waiting all night,http://em.21dtv.com/songs/60082382.mkv +叶秉桓-我爱你,http://em.21dtv.com/songs/60081498.mkv +谢雷-我爱你,http://em.21dtv.com/songs/60078147.mkv +林欣彤-我爱你,http://em.21dtv.com/songs/60078146.mkv +曹诚模-我爱你,http://em.21dtv.com/songs/60078145.mkv +叶倩文+林子祥+林德信-我爱你(演唱会),http://em.21dtv.com/songs/60078144.mkv +梅东生+简语卉-我爱你,http://em.21dtv.com/songs/60068749.mkv +小麦-我爱你,http://em.21dtv.com/songs/60066390.mkv +泳儿-我爱你(演唱会),http://em.21dtv.com/songs/60065035.mkv +SOLER-我爱你,http://em.21dtv.com/songs/60061670.mkv +周俊伟-我爱你,http://em.21dtv.com/songs/60044626.mkv +中国娃娃-我爱你,http://em.21dtv.com/songs/60044625.mkv +佚名-我爱你,http://em.21dtv.com/songs/60044624.mkv +许晋豪-我爱你,http://em.21dtv.com/songs/60044623.mkv +徐仁国-我爱你,http://em.21dtv.com/songs/60044622.mkv +谢金燕-我爱你,http://em.21dtv.com/songs/60044620.mkv +萧贺硕-我爱你,http://em.21dtv.com/songs/60044619.mkv +巫启贤-我爱你,http://em.21dtv.com/songs/60044618.mkv +翁立友-我爱你,http://em.21dtv.com/songs/60044617.mkv +王识贤-我爱你,http://em.21dtv.com/songs/60044616.mkv +王麟-我爱你,http://em.21dtv.com/songs/60044615.mkv +王杰-我爱你,http://em.21dtv.com/songs/60044614.mkv +任贤齐-我爱你,http://em.21dtv.com/songs/60044613.mkv +莫文蔚-我爱你,http://em.21dtv.com/songs/60044612.mkv +卢广仲-我爱你,http://em.21dtv.com/songs/60044611.mkv +梁静茹-我爱你,http://em.21dtv.com/songs/60044610.mkv +李晓枫-我爱你,http://em.21dtv.com/songs/60044609.mkv +江蕙-我爱你,http://em.21dtv.com/songs/60044608.mkv +黄维德-我爱你,http://em.21dtv.com/songs/60044607.mkv +郭富城-我爱你,http://em.21dtv.com/songs/60044606.mkv +风火海-我爱你,http://em.21dtv.com/songs/60044605.mkv +陈明章+黄妃-我爱你,http://em.21dtv.com/songs/60044604.mkv +陈洁仪-我爱你,http://em.21dtv.com/songs/60044603.mkv +S.H.E-我爱你,http://em.21dtv.com/songs/60044602.mkv +FT ISLAND-我爱你,http://em.21dtv.com/songs/60044601.mkv +林子祥+李克勤-我爱你(演唱会),http://em.21dtv.com/songs/60044599.mkv +陈小春-我爱你(演唱会),http://em.21dtv.com/songs/60044598.mkv +黄思婷-我爱你(无原唱),http://em.21dtv.com/songs/60044597.mkv +黄思婷+傅振辉-我爱你(无原唱),http://em.21dtv.com/songs/60044596.mkv +陈妃-我爱你(无原唱),http://em.21dtv.com/songs/60044595.mkv +张蓉蓉-我爱你(爱伊希地鲁),http://em.21dtv.com/songs/60044594.mkv +许嵩-惟爱你,http://em.21dtv.com/songs/60044193.mkv +WESTLIFE-what about now,http://em.21dtv.com/songs/60006183.mkv +Chen+Heize-玩暧昧,http://em.21dtv.com/songs/60121229.mkv +曾敏-我爱美,http://em.21dtv.com/songs/60044592.mkv +崔天琪-我爱了,http://em.21dtv.com/songs/60066388.mkv +罗时丰-为爱亮,http://em.21dtv.com/songs/60066372.mkv +苏永康+动力火车-what about love,http://em.21dtv.com/songs/60006182.mkv +姜育恒-我爱过,http://em.21dtv.com/songs/60044573.mkv +江蕙-我爱过,http://em.21dtv.com/songs/60044572.mkv +SKY-未捱过,http://em.21dtv.com/songs/60044224.mkv +SISTER SLEDGE-we are family,http://em.21dtv.com/songs/60006129.mkv +办桌二人组-我爱到,http://em.21dtv.com/songs/60065031.mkv +MVG-我爱agogo,http://em.21dtv.com/songs/60061666.mkv +RITA COOLIDGE-were all alone,http://em.21dtv.com/songs/60006167.mkv +WILL SMITH-will2k(无原唱),http://em.21dtv.com/songs/60006347.mkv +NICKI MINAJ-va va voom,http://em.21dtv.com/songs/60074089.mkv +佚名-voices that care,http://em.21dtv.com/songs/60006070.mkv +佚名-very special love,http://em.21dtv.com/songs/60006048.mkv +阿杜-valentines day,http://em.21dtv.com/songs/60074090.mkv +佚名-vision of you,http://em.21dtv.com/songs/60006060.mkv +MARIAH CAREY-vision of love,http://em.21dtv.com/songs/60006059.mkv +MARIAH CAREY-vision of love(演唱会),http://em.21dtv.com/songs/60006058.mkv +COLDPLAY-viva la vida,http://em.21dtv.com/songs/60006066.mkv +LOLLY-viva la radio,http://em.21dtv.com/songs/60006065.mkv +达明一派+谢霆锋-viva la diva(演唱会),http://em.21dtv.com/songs/60006064.mkv +林育群-under your wings,http://em.21dtv.com/songs/60006009.mkv +李宇春-underneath your clothes,http://em.21dtv.com/songs/60006010.mkv +BROTHERHOOD-united we stand,http://em.21dtv.com/songs/60006016.mkv +郑仁-UUU,http://em.21dtv.com/songs/60135799.mkv +罗小白-UUU,http://em.21dtv.com/songs/60124346.mkv +潘玮柏-u u u,http://em.21dtv.com/songs/60005986.mkv +乔毓明-under the stars,http://em.21dtv.com/songs/60074085.mkv +ELLIE+GOULDING-under the sheets(演唱会),http://em.21dtv.com/songs/60069155.mkv +佚名-used to be,http://em.21dtv.com/songs/60006036.mkv +THE DRIFTERS-under the boradwalk,http://em.21dtv.com/songs/60006007.mkv +KATY PERRY-ur so gay,http://em.21dtv.com/songs/60060938.mkv +严爵-USA,http://em.21dtv.com/songs/60107465.mkv +USHER-u remind me,http://em.21dtv.com/songs/60005983.mkv +SS501-u r man,http://em.21dtv.com/songs/60005982.mkv +BewhY+Big K.R.I.T.-UNO,http://em.21dtv.com/songs/60133174.mkv +白举纲-Uno,http://em.21dtv.com/songs/60131694.mkv +BRITNEY SPEARS-up n down(演唱会),http://em.21dtv.com/songs/60082379.mkv +BRITNEY SPEARS-up ndown,http://em.21dtv.com/songs/60065719.mkv +佚名-unchain my heart(无原唱),http://em.21dtv.com/songs/60005995.mkv +TONI BRAXTON-un-break my heart,http://em.21dtv.com/songs/60005992.mkv +安迪A47+Cheer Mon-U&I,http://em.21dtv.com/songs/60133576.mkv +李孝利-u go girl,http://em.21dtv.com/songs/60005979.mkv +ONE DIRECTION-up all night,http://em.21dtv.com/songs/60074087.mkv +BLINK 182-up all night,http://em.21dtv.com/songs/60074086.mkv +丁祥威+邬祯琳-u and me,http://em.21dtv.com/songs/60074081.mkv +郑希怡-up and down,http://em.21dtv.com/songs/60006027.mkv +孙燕姿-up2u,http://em.21dtv.com/songs/60006030.mkv +剑鸿-天作证,http://em.21dtv.com/songs/60123699.mkv +MATZAK-兔崽子,http://em.21dtv.com/songs/60042962.mkv +罗敏庄-挑战者,http://em.21dtv.com/songs/60042426.mkv +郭健一+萧玉芬-天主意,http://em.21dtv.com/songs/60095941.mkv +于洋-太钟意,http://em.21dtv.com/songs/60063291.mkv +熊七梅-太钟意,http://em.21dtv.com/songs/60063195.mkv +王菲-天之涯,http://em.21dtv.com/songs/60042327.mkv +萧闳仁-太自由,http://em.21dtv.com/songs/60041414.mkv +羽泉-太重要,http://em.21dtv.com/songs/60041412.mkv +CONNIE吕莘-太在意,http://em.21dtv.com/songs/60041409.mkv +佚名-兔子舞,http://em.21dtv.com/songs/60115005.mkv +蓝芷儿-田中亭,http://em.21dtv.com/songs/60042345.mkv +阿木-太纵容,http://em.21dtv.com/songs/60129709.mkv +施文彬-台中腔,http://em.21dtv.com/songs/60064940.mkv +王浩信+方皓玟-拖字阙,http://em.21dtv.com/songs/60043011.mkv +李泽坚-讨债难,http://em.21dtv.com/songs/60077851.mkv +王若琪-同坠鸟,http://em.21dtv.com/songs/60066350.mkv +曾宝仪-天之美,http://em.21dtv.com/songs/60042326.mkv +蔡健雅-天之美,http://em.21dtv.com/songs/60042325.mkv +曾宝仪-天之美(演唱会),http://em.21dtv.com/songs/60042324.mkv +捣蛋鬼乐队-她走了,http://em.21dtv.com/songs/60105925.mkv +董贞-天之禁,http://em.21dtv.com/songs/60107178.mkv +TWINS-童子军,http://em.21dtv.com/songs/60092222.mkv +王君馨-她最好,http://em.21dtv.com/songs/60103436.mkv +梅南林-太在乎,http://em.21dtv.com/songs/60068699.mkv +陈小春-她最好,http://em.21dtv.com/songs/60041178.mkv +王强-太子妃,http://em.21dtv.com/songs/60041413.mkv +康天庥+张小雷-太自大,http://em.21dtv.com/songs/60130294.mkv +曹敏宝-天知道,http://em.21dtv.com/songs/60120583.mkv +周安信-天之大,http://em.21dtv.com/songs/60111764.mkv +杨卿俪-天之大,http://em.21dtv.com/songs/60108593.mkv +庄心妍-天注定,http://em.21dtv.com/songs/60085796.mkv +麦子杰-天之大,http://em.21dtv.com/songs/60083909.mkv +李嘉石-天之大,http://em.21dtv.com/songs/60066346.mkv +林姗-天注定,http://em.21dtv.com/songs/60064975.mkv +原野-田庄调,http://em.21dtv.com/songs/60042348.mkv +张卫健-天知道,http://em.21dtv.com/songs/60042331.mkv +阿信-天知道,http://em.21dtv.com/songs/60042330.mkv +王凯骏-天知道,http://em.21dtv.com/songs/60042329.mkv +苏永康+谭耀文-天知道,http://em.21dtv.com/songs/60042328.mkv +费玉清-天之大,http://em.21dtv.com/songs/60042320.mkv +毛阿敏-天之大(演唱会),http://em.21dtv.com/songs/60042319.mkv +黄品冠-他值得,http://em.21dtv.com/songs/60041129.mkv +187INC+Right Eye-台中爱,http://em.21dtv.com/songs/60121198.mkv +品冠-拖延症,http://em.21dtv.com/songs/60103167.mkv +吴鑫桐-太阳雨,http://em.21dtv.com/songs/60083867.mkv +布仁巴雅尔-太阳雨,http://em.21dtv.com/songs/60077822.mkv +佚名-太阳雨,http://em.21dtv.com/songs/60041397.mkv +高胜美-太阳雨,http://em.21dtv.com/songs/60041396.mkv +比比-太阳雨(无原唱),http://em.21dtv.com/songs/60041395.mkv +黄雅莉-田园香,http://em.21dtv.com/songs/60101012.mkv +陈浩德-桃园行(演唱会),http://em.21dtv.com/songs/60077847.mkv +草莓救星-太阳系,http://em.21dtv.com/songs/60041389.mkv +LIVETUNE-take your way,http://em.21dtv.com/songs/60086369.mkv +何超仪-天眼通,http://em.21dtv.com/songs/60064973.mkv +SEAN KINGSTON-take you there,http://em.21dtv.com/songs/60063760.mkv +洪卓立-躺一躺,http://em.21dtv.com/songs/60041516.mkv +王力宏-take your time,http://em.21dtv.com/songs/60005455.mkv +王力宏-take your time,http://em.21dtv.com/songs/60005431.mkv +郑璐-太阳颂,http://em.21dtv.com/songs/60099533.mkv +佚名-探阴山,http://em.21dtv.com/songs/60041479.mkv +罗时丰-太阳伞,http://em.21dtv.com/songs/60041387.mkv +祁隆-太用情,http://em.21dtv.com/songs/60041405.mkv +佚名-tomo y obligo,http://em.21dtv.com/songs/60005856.mkv +CLIFF RICHARD-the young ones,http://em.21dtv.com/songs/60005733.mkv +温岚-touch your mind,http://em.21dtv.com/songs/60074058.mkv +郑伊健-同一秒,http://em.21dtv.com/songs/60042706.mkv +郑伊健-同一秒(演唱会),http://em.21dtv.com/songs/60042705.mkv +柳岩-天衍录,http://em.21dtv.com/songs/60135450.mkv +陈象-天涯路,http://em.21dtv.com/songs/60133055.mkv +任妙音+祁隆-太依赖,http://em.21dtv.com/songs/60125105.mkv +祁隆+任妙音-太依赖,http://em.21dtv.com/songs/60120835.mkv +祁隆+李舒彤-太依赖,http://em.21dtv.com/songs/60104345.mkv +解亚娇-听月亮,http://em.21dtv.com/songs/60077951.mkv +SHINE-天又蓝,http://em.21dtv.com/songs/60042284.mkv +DAVID GRAY-this years love,http://em.21dtv.com/songs/60005773.mkv +王丽达-团圆酒,http://em.21dtv.com/songs/60042971.mkv +沈建豪-天一划,http://em.21dtv.com/songs/60113786.mkv +张煜枫-太阳花,http://em.21dtv.com/songs/60112684.mkv +汤灿-太阳花,http://em.21dtv.com/songs/60083866.mkv +郁钧剑-太阳花,http://em.21dtv.com/songs/60041384.mkv +于文华-太阳花,http://em.21dtv.com/songs/60041383.mkv +白冰冰-天要光,http://em.21dtv.com/songs/60042272.mkv +阿幼朵-太阳鼓,http://em.21dtv.com/songs/60041382.mkv +施文彬+武雄-台语歌,http://em.21dtv.com/songs/60041286.mkv +群星-团圆饭,http://em.21dtv.com/songs/60130657.mkv +宋伶俐-她要飞,http://em.21dtv.com/songs/60072076.mkv +TRADEMARK-trademarkmiss you finally,http://em.21dtv.com/songs/60005913.mkv +林子祥-through your eyes(演唱会),http://em.21dtv.com/songs/60005788.mkv +张其萍-桃叶渡,http://em.21dtv.com/songs/60125492.mkv +黄贯中-天与地,http://em.21dtv.com/songs/60077916.mkv +THE SCRIPT-talk you down(演唱会),http://em.21dtv.com/songs/60070403.mkv +张学友-天与地,http://em.21dtv.com/songs/60042290.mkv +王菲-天与地,http://em.21dtv.com/songs/60042289.mkv +阿里郎-天与地,http://em.21dtv.com/songs/60042288.mkv +ENERGY-天与地,http://em.21dtv.com/songs/60042287.mkv +王菲-天与地(演唱会),http://em.21dtv.com/songs/60042286.mkv +郑绪岚-太阳岛,http://em.21dtv.com/songs/60041379.mkv +CHRIS BROWN-take you down(演唱会),http://em.21dtv.com/songs/60005454.mkv +江奇遥-太有才,http://em.21dtv.com/songs/60041407.mkv +巴桑-太有才,http://em.21dtv.com/songs/60041406.mkv +FAITH HILL-there youll be,http://em.21dtv.com/songs/60005742.mkv +SHANIA TWAIN-thank you baby,http://em.21dtv.com/songs/60005510.mkv +郑秀文-tequila一杯(演唱会),http://em.21dtv.com/songs/60005507.mkv +米凯+涵萱-讨厌爱,http://em.21dtv.com/songs/60093850.mkv +剑鸿-偷心贼,http://em.21dtv.com/songs/60116602.mkv +吴琼-偷心贼,http://em.21dtv.com/songs/60099144.mkv +周艳泓-偷心贼,http://em.21dtv.com/songs/60097079.mkv +吴俊宏-天刑者,http://em.21dtv.com/songs/60072458.mkv +张学友-偷心者,http://em.21dtv.com/songs/60042865.mkv +张学友-偷心者(演唱会),http://em.21dtv.com/songs/60042864.mkv +杨丞琳-甜心咒,http://em.21dtv.com/songs/60042411.mkv +胡静-天蝎座,http://em.21dtv.com/songs/60042218.mkv +谢雨欣-天仙子,http://em.21dtv.com/songs/60042213.mkv +张燕-桃乡走,http://em.21dtv.com/songs/60041608.mkv +乔新童-童心愿,http://em.21dtv.com/songs/60122470.mkv +刘尊+解晓慧-同心圆,http://em.21dtv.com/songs/60112538.mkv +龙千玉-同心圆,http://em.21dtv.com/songs/60042694.mkv +曹轩宾-偷星星,http://em.21dtv.com/songs/60105948.mkv +傅振辉-同心行,http://em.21dtv.com/songs/60042693.mkv +薛佩洁+张政雄-疼惜我,http://em.21dtv.com/songs/60064952.mkv +张信哲-叹息书,http://em.21dtv.com/songs/60111059.mkv +张信哲-叹息书,http://em.21dtv.com/songs/60108483.mkv +一单上达-同心锁,http://em.21dtv.com/songs/60099053.mkv +张少斌-太行山,http://em.21dtv.com/songs/60041318.mkv +吉杰-偷心人,http://em.21dtv.com/songs/60083936.mkv +谭晶-贴心人,http://em.21dtv.com/songs/60042463.mkv +曾敏-贴心人(演唱会),http://em.21dtv.com/songs/60042462.mkv +曹雷+段玉宏-同学情,http://em.21dtv.com/songs/60119628.mkv +龙少也-同乡情,http://em.21dtv.com/songs/60118234.mkv +闫旭-同学情,http://em.21dtv.com/songs/60115466.mkv +二哥-铁西区,http://em.21dtv.com/songs/60103863.mkv +闫旭-同学情,http://em.21dtv.com/songs/60082027.mkv +胡拥军-讨学钱,http://em.21dtv.com/songs/60069867.mkv +游鸿明-叹息桥,http://em.21dtv.com/songs/60041474.mkv +何韵诗-叹息桥(演唱会),http://em.21dtv.com/songs/60041473.mkv +彭筝-太想念,http://em.21dtv.com/songs/60106875.mkv +慕容晓晓-天仙梦,http://em.21dtv.com/songs/60083905.mkv +乔军+花之悦-同心梦,http://em.21dtv.com/songs/60064980.mkv +孙盛希-塌下来,http://em.21dtv.com/songs/60133564.mkv +杰子-透心凉,http://em.21dtv.com/songs/60122895.mkv +影视歌曲-叹香菱,http://em.21dtv.com/songs/60091183.mkv +杨尘-他乡路,http://em.21dtv.com/songs/60067462.mkv +西单女孩-他乡路,http://em.21dtv.com/songs/60063124.mkv +佚名-他乡客(无原唱),http://em.21dtv.com/songs/60041114.mkv +祁隆-同学寄,http://em.21dtv.com/songs/60120834.mkv +祁隆-同学寄,http://em.21dtv.com/songs/60115323.mkv +徐清波-同学会,http://em.21dtv.com/songs/60117759.mkv +灭火器-同学会,http://em.21dtv.com/songs/60107897.mkv +陈奕迅-土星环,http://em.21dtv.com/songs/60101557.mkv +张驰-同学会,http://em.21dtv.com/songs/60080839.mkv +钟汉良-同学会,http://em.21dtv.com/songs/60042697.mkv +卢巧音-天蝎号(演唱会),http://em.21dtv.com/songs/60042215.mkv +罗志强-痛习惯,http://em.21dtv.com/songs/60085808.mkv +张蓉蓉-铁心肝,http://em.21dtv.com/songs/60042497.mkv +陈思成-太幸福,http://em.21dtv.com/songs/60077818.mkv +李圣杰-偷幸福,http://em.21dtv.com/songs/60071194.mkv +洪文斌-同心飞,http://em.21dtv.com/songs/60042692.mkv +龙千玉-同心船,http://em.21dtv.com/songs/60042690.mkv +群星-同心船(无原唱),http://em.21dtv.com/songs/60042689.mkv +高胜美-铁心肠,http://em.21dtv.com/songs/60042496.mkv +刘德华-太想爱(HD),http://em.21dtv.com/songs/10012646.mkv +刘德华-太想爱,http://em.21dtv.com/songs/60041362.mkv +李湘-太想爱,http://em.21dtv.com/songs/60041361.mkv +刘德华-太想爱(演唱会),http://em.21dtv.com/songs/60041360.mkv +方力申+邓丽欣-同屋主,http://em.21dtv.com/songs/60116851.mkv +王中平-天无月,http://em.21dtv.com/songs/60088271.mkv +王中平-天无闲,http://em.21dtv.com/songs/60042177.mkv +许桂荣+牛马丁-天乌乌,http://em.21dtv.com/songs/60042174.mkv +佚名-the wayward wind,http://em.21dtv.com/songs/60005724.mkv +陈随意-天外天,http://em.21dtv.com/songs/60042167.mkv +佚名-天外天(无原唱),http://em.21dtv.com/songs/60042166.mkv +T.O.B戏子-听我说,http://em.21dtv.com/songs/60122428.mkv +陈俊彤-听我说,http://em.21dtv.com/songs/60103670.mkv +黄飞鹏-天王嫂,http://em.21dtv.com/songs/60085791.mkv +花哥-听我说,http://em.21dtv.com/songs/60080568.mkv +袁咏琳+李玖哲-听我说,http://em.21dtv.com/songs/60077949.mkv +沈芳如-听我说,http://em.21dtv.com/songs/60042600.mkv +大支-台湾song,http://em.21dtv.com/songs/60041266.mkv +萧贺硕-太温柔,http://em.21dtv.com/songs/60041359.mkv +陶晶莹-太委屈,http://em.21dtv.com/songs/60041358.mkv +小文-太完美,http://em.21dtv.com/songs/60041356.mkv +SUPER JUNIOR-M-太完美,http://em.21dtv.com/songs/60041355.mkv +施文彬-跳舞兰,http://em.21dtv.com/songs/60042449.mkv +李建衡-天微亮,http://em.21dtv.com/songs/60042172.mkv +陈慧娴-跳舞街,http://em.21dtv.com/songs/60128535.mkv +王中平-天无间,http://em.21dtv.com/songs/60088272.mkv +方丽盈-跳舞街(演唱会),http://em.21dtv.com/songs/60077931.mkv +糖兄妹-跳舞街(演唱会),http://em.21dtv.com/songs/60069881.mkv +陈慧娴-跳舞街,http://em.21dtv.com/songs/60042448.mkv +蔡依林-特务j,http://em.21dtv.com/songs/60041648.mkv +美黛-台湾好,http://em.21dtv.com/songs/60116195.mkv +陈雷-台湾话,http://em.21dtv.com/songs/60041273.mkv +佚名-台湾好,http://em.21dtv.com/songs/60041272.mkv +甲子蕙-台湾hoha,http://em.21dtv.com/songs/60041265.mkv +谭建军-滕王阁,http://em.21dtv.com/songs/60071175.mkv +童唱-跳舞歌(无原唱),http://em.21dtv.com/songs/60042447.mkv +郑海兵-退伍兵,http://em.21dtv.com/songs/60124565.mkv +CHRISTINA AGUILERA-the voice within,http://em.21dtv.com/songs/60074029.mkv +佚名-the voice within,http://em.21dtv.com/songs/60005707.mkv +GEM-the voice whitin(无原唱),http://em.21dtv.com/songs/60005706.mkv +AIR SUPPLY-the vanishing race(演唱会),http://em.21dtv.com/songs/60005704.mkv +俊秀-thank u for,http://em.21dtv.com/songs/60073990.mkv +张柏芝-团团转,http://em.21dtv.com/songs/60092629.mkv +燕妮-天堂寨,http://em.21dtv.com/songs/60088259.mkv +方怡萍-天天醉,http://em.21dtv.com/songs/60083902.mkv +陈雷-天天醉,http://em.21dtv.com/songs/60042165.mkv +光良-太天真,http://em.21dtv.com/songs/60041354.mkv +RECHARD MARX-thanks to you,http://em.21dtv.com/songs/60073993.mkv +章小军-天堂雨,http://em.21dtv.com/songs/60042120.mkv +谢天笑-剔剔牙,http://em.21dtv.com/songs/60041676.mkv +周觅-太贪心(中文版),http://em.21dtv.com/songs/60096920.mkv +月光星子-天堂心,http://em.21dtv.com/songs/60042116.mkv +B1A4-tried to walk,http://em.21dtv.com/songs/60074063.mkv +TAIO CRUZ-telling the world,http://em.21dtv.com/songs/60073987.mkv +佚名-thats the way,http://em.21dtv.com/songs/60005531.mkv +黄思婷-甜甜甜,http://em.21dtv.com/songs/60136026.mkv +黄妃+李子森-甜甜甜,http://em.21dtv.com/songs/60134500.mkv +许先-逃逃逃,http://em.21dtv.com/songs/60130740.mkv +金池+魏雪漫+谭维维-她她她,http://em.21dtv.com/songs/60117298.mkv +谭维维-她她她,http://em.21dtv.com/songs/60117243.mkv +李琦-跳跳跳,http://em.21dtv.com/songs/60107794.mkv +SKG女团-跳跳跳,http://em.21dtv.com/songs/60106556.mkv +丁丁-跳跳糖,http://em.21dtv.com/songs/60086885.mkv +陈奂仁-他她他,http://em.21dtv.com/songs/60083860.mkv +徐立-通天塔,http://em.21dtv.com/songs/60077958.mkv +RIHANNA+JAY-Z-talk that talk,http://em.21dtv.com/songs/60073975.mkv +方圆-逃逃逃,http://em.21dtv.com/songs/60067469.mkv +龙奔-痛痛痛,http://em.21dtv.com/songs/60062711.mkv +杨嘉华-跳跳跳,http://em.21dtv.com/songs/60042440.mkv +佚名-踢踢踏,http://em.21dtv.com/songs/60041684.mkv +陈慧娴-贪贪贪,http://em.21dtv.com/songs/60041422.mkv +曹颖-他他他,http://em.21dtv.com/songs/60041108.mkv +李孝利-toc toc toc,http://em.21dtv.com/songs/60005838.mkv +徐婕儿-tic tac toe,http://em.21dtv.com/songs/60005792.mkv +BOY'Z+SUN-tic tac toe,http://em.21dtv.com/songs/60005791.mkv +唐唐-听她说,http://em.21dtv.com/songs/60114459.mkv +叶乃文-逃脱术,http://em.21dtv.com/songs/60087515.mkv +叶乃文-脱逃术,http://em.21dtv.com/songs/60043020.mkv +黎明-try to remember,http://em.21dtv.com/songs/60005950.mkv +BROTHERS FOUR-try to remember,http://em.21dtv.com/songs/60005949.mkv +尚雯婕-try to remember(演唱会),http://em.21dtv.com/songs/60005948.mkv +佚名-ticket to ride,http://em.21dtv.com/songs/60005794.mkv +MARIAH CAREY-through the rain,http://em.21dtv.com/songs/60005787.mkv +黑涩会美眉-甜甜圈,http://em.21dtv.com/songs/60077928.mkv +卓文萱-甜甜圈,http://em.21dtv.com/songs/60042407.mkv +小熏+阿本-甜甜圈,http://em.21dtv.com/songs/60042406.mkv +闪亮三姐妹-甜甜圈,http://em.21dtv.com/songs/60042405.mkv +佚名-天天情,http://em.21dtv.com/songs/60042144.mkv +MGMT-time to pretend,http://em.21dtv.com/songs/60060931.mkv +官恩娜-time to play,http://em.21dtv.com/songs/60005810.mkv +范玮琪-天堂鸟,http://em.21dtv.com/songs/60067483.mkv +佚名-tonights the night,http://em.21dtv.com/songs/60005871.mkv +ROD STEWART-tonights the night,http://em.21dtv.com/songs/60005870.mkv +MBLAQ-天堂吗,http://em.21dtv.com/songs/60077898.mkv +TWINS-talk to me(演唱会),http://em.21dtv.com/songs/60063761.mkv +夏韶声-天堂梦,http://em.21dtv.com/songs/60042113.mkv +TWINS-talk to me,http://em.21dtv.com/songs/60005458.mkv +KAT.TUN-to the limit,http://em.21dtv.com/songs/60074051.mkv +李东升-天堂路,http://em.21dtv.com/songs/60064968.mkv +罗志祥-淘汰郎,http://em.21dtv.com/songs/60041616.mkv +水蜜桃-桃太郎,http://em.21dtv.com/songs/60041607.mkv +李翊君-天堂口,http://em.21dtv.com/songs/60083900.mkv +周柏豪-同天空,http://em.21dtv.com/songs/60042684.mkv +佚名-通天鉴(无原唱),http://em.21dtv.com/songs/60042645.mkv +毛宁+许明宪-天天见,http://em.21dtv.com/songs/60042141.mkv +张皓然+不噜-甜甜海,http://em.21dtv.com/songs/60077927.mkv +小虎队-天堂海,http://em.21dtv.com/songs/60042109.mkv +MP魔幻力量-偷偷的,http://em.21dtv.com/songs/60104707.mkv +袁媛-甜甜的(演唱会),http://em.21dtv.com/songs/60063324.mkv +佚名-偷偷地(无原唱),http://em.21dtv.com/songs/60042845.mkv +周杰伦-甜甜的(演唱会),http://em.21dtv.com/songs/60042400.mkv +陈星-天天等,http://em.21dtv.com/songs/60042128.mkv +高枫-听听cd,http://em.21dtv.com/songs/60042591.mkv +李荣浩-太坦白,http://em.21dtv.com/songs/60119669.mkv +张玮-忐忑+Bad,http://em.21dtv.com/songs/60081751.mkv +KALAFINA-to the beginning,http://em.21dtv.com/songs/60066739.mkv +阿坤-偷偷爱,http://em.21dtv.com/songs/60108960.mkv +思涵CSHA-团团爱,http://em.21dtv.com/songs/60042964.mkv +彩贝与海-天使心,http://em.21dtv.com/songs/60109345.mkv +陈辰-叹奢香,http://em.21dtv.com/songs/60095150.mkv +MAYA-疼伤心,http://em.21dtv.com/songs/60077855.mkv +钟汉良-天使心,http://em.21dtv.com/songs/60042068.mkv +林俊杰-天使心,http://em.21dtv.com/songs/60042067.mkv +许嵩-苔上雪,http://em.21dtv.com/songs/60041294.mkv +刘菲-苔上雪,http://em.21dtv.com/songs/60041293.mkv +SADE-the sweetest taboo,http://em.21dtv.com/songs/60005697.mkv +阿悄-天使说,http://em.21dtv.com/songs/60086875.mkv +刘韵-叹十声(演唱会),http://em.21dtv.com/songs/60083869.mkv +童丽-叹十声,http://em.21dtv.com/songs/60077826.mkv +柳影虹-叹十声(演唱会),http://em.21dtv.com/songs/60077825.mkv +佚名-凸纱衫,http://em.21dtv.com/songs/60042921.mkv +佚名-叹十声,http://em.21dtv.com/songs/60041471.mkv +韩宝仪-叹十声,http://em.21dtv.com/songs/60041470.mkv +邓丽君-叹十声,http://em.21dtv.com/songs/60041469.mkv +胡蓓蔚-她是谁(无原唱),http://em.21dtv.com/songs/60041163.mkv +周渝民-他是谁,http://em.21dtv.com/songs/60041103.mkv +OWL CITY-the saltwater room,http://em.21dtv.com/songs/60074024.mkv +徐佳莹-调色盘,http://em.21dtv.com/songs/60026859.mkv +莫艳琳-逃生门,http://em.21dtv.com/songs/60105325.mkv +MATT REDMAN+LZ7-twenty seven million,http://em.21dtv.com/songs/60066747.mkv +蓝又时-太傻了,http://em.21dtv.com/songs/60130721.mkv +何建清-太帅了,http://em.21dtv.com/songs/60072438.mkv +林欣彤-天使蓝(演唱会),http://em.21dtv.com/songs/60064966.mkv +何韵诗-天使蓝,http://em.21dtv.com/songs/60042061.mkv +何韵诗-天使蓝(演唱会),http://em.21dtv.com/songs/60042060.mkv +佚名-the same love,http://em.21dtv.com/songs/60005681.mkv +任栩麟-天使街,http://em.21dtv.com/songs/60109138.mkv +王凯-探世界,http://em.21dtv.com/songs/60107061.mkv +茜拉-天神纪(动画),http://em.21dtv.com/songs/60102673.mkv +水木年华-天使街,http://em.21dtv.com/songs/60091569.mkv +王宏伟+王喆-天山红,http://em.21dtv.com/songs/60135546.mkv +王宏伟-天山红,http://em.21dtv.com/songs/60135544.mkv +佚名-the straw hat,http://em.21dtv.com/songs/60005693.mkv +童唱-跳绳歌,http://em.21dtv.com/songs/60042439.mkv +佚名-there she goes,http://em.21dtv.com/songs/60005740.mkv +GWEN STEFANI FEAT AK-the sweet escape,http://em.21dtv.com/songs/60005694.mkv +林晓培-停损点,http://em.21dtv.com/songs/60042632.mkv +佚名-the sweetest days,http://em.21dtv.com/songs/60005696.mkv +原味-唐三彩,http://em.21dtv.com/songs/60083872.mkv +童唱-the school bus,http://em.21dtv.com/songs/60005682.mkv +梁汉文-天使爱,http://em.21dtv.com/songs/60042033.mkv +张赫宣-太认真,http://em.21dtv.com/songs/60081826.mkv +陈坤-太认真,http://em.21dtv.com/songs/60041348.mkv +周杰伦+派伟俊-Try,http://em.21dtv.com/songs/60118455.mkv +Colbie Caillat-Try,http://em.21dtv.com/songs/60101746.mkv +栗林みな実-True Blue Traveler,http://em.21dtv.com/songs/60100234.mkv +BLINK182-the rock show,http://em.21dtv.com/songs/60063773.mkv +刘德华-天人水,http://em.21dtv.com/songs/60041958.mkv +天天+赵正平-天然气,http://em.21dtv.com/songs/60077883.mkv +林峰-太热了(演唱会),http://em.21dtv.com/songs/60062646.mkv +廖昌永-唐人街,http://em.21dtv.com/songs/60121641.mkv +李宇春-唐人街,http://em.21dtv.com/songs/60117810.mkv +村长-唐人街,http://em.21dtv.com/songs/60094549.mkv +群星-唐人街,http://em.21dtv.com/songs/60091849.mkv +林宥嘉-唐人街,http://em.21dtv.com/songs/60041497.mkv +陈倩倩-唐人街,http://em.21dtv.com/songs/60041496.mkv +荒山亮-天若光,http://em.21dtv.com/songs/60103540.mkv +Shawn Mendes-Treat You Better,http://em.21dtv.com/songs/60127663.mkv +后弦-天然呆,http://em.21dtv.com/songs/60077882.mkv +祁隆-叹情缘,http://em.21dtv.com/songs/60100933.mkv +枫舞+依依-叹情缘,http://em.21dtv.com/songs/60080601.mkv +卫飞鸿-铜雀台,http://em.21dtv.com/songs/60097077.mkv +阿杜-抬起头,http://em.21dtv.com/songs/60041287.mkv +龙千玉-跳恰恰,http://em.21dtv.com/songs/60042436.mkv +佚名-天清清,http://em.21dtv.com/songs/60041956.mkv +李波儿-跳起来,http://em.21dtv.com/songs/60096344.mkv +范玮琪-弹起来,http://em.21dtv.com/songs/60066946.mkv +司徒兰芳-痛情歌,http://em.21dtv.com/songs/60120396.mkv +高安-叹情歌,http://em.21dtv.com/songs/60072442.mkv +胡杏儿-同情分,http://em.21dtv.com/songs/60042679.mkv +马念先-跆拳道,http://em.21dtv.com/songs/60097090.mkv +糯米团-跆拳道,http://em.21dtv.com/songs/60041295.mkv +超克7-太青春,http://em.21dtv.com/songs/60041345.mkv +七郎-田拼园,http://em.21dtv.com/songs/60125061.mkv +叶凡-天菩萨,http://em.21dtv.com/songs/60090791.mkv +卓依婷-太平年,http://em.21dtv.com/songs/60041343.mkv +孙佳梵-跳皮筋,http://em.21dtv.com/songs/60083916.mkv +毛阿敏-太平歌,http://em.21dtv.com/songs/60041342.mkv +AMY MACDONALD-this pretty face,http://em.21dtv.com/songs/60074043.mkv +Tipsy-TPC,http://em.21dtv.com/songs/60103832.mkv +Block B-Toy,http://em.21dtv.com/songs/60121223.mkv +蔡健雅-two of us(演唱会),http://em.21dtv.com/songs/60005973.mkv +RIVER CITY GANG-this old town,http://em.21dtv.com/songs/60066738.mkv +JASON DERULO-the other side,http://em.21dtv.com/songs/60082360.mkv +佚名-the old songs,http://em.21dtv.com/songs/60005651.mkv +神话-t o p,http://em.21dtv.com/songs/60071673.mkv +谢安琪-the one & only(演唱会),http://em.21dtv.com/songs/60005652.mkv +佚名-twelfth of never,http://em.21dtv.com/songs/60005965.mkv +JOHNNY MATHIS-twelfth of never,http://em.21dtv.com/songs/60005964.mkv +李璧琦-think of me,http://em.21dtv.com/songs/60086372.mkv +TWINS-this old man,http://em.21dtv.com/songs/60005766.mkv +A1-take on me,http://em.21dtv.com/songs/60005452.mkv +P.WAAKTAR+M.FURUSHOL-take on me(无原唱),http://em.21dtv.com/songs/60005451.mkv +张学友-touch of love,http://em.21dtv.com/songs/60005903.mkv +张学友-touch of love(演唱会),http://em.21dtv.com/songs/60005902.mkv +DARRYL WORLEY-tequila on ice,http://em.21dtv.com/songs/60073988.mkv +BOA-tail of hope,http://em.21dtv.com/songs/60082350.mkv +JOHN DENVER-this old guitar(演唱会),http://em.21dtv.com/songs/60005764.mkv +Michael Buble-To Be Loved,http://em.21dtv.com/songs/60127660.mkv +CRAIG MORGAN-this old boy,http://em.21dtv.com/songs/60067997.mkv +许志安-讨你厌(演唱会),http://em.21dtv.com/songs/60041621.mkv +金玄念-TNT,http://em.21dtv.com/songs/60123263.mkv +张国荣-童年时,http://em.21dtv.com/songs/60121649.mkv +DREAMGIRLS-听你说,http://em.21dtv.com/songs/60096146.mkv +张国荣-童年时,http://em.21dtv.com/songs/60042764.mkv +夏韶声-童年时,http://em.21dtv.com/songs/60042763.mkv +夏韶声-童年时(演唱会),http://em.21dtv.com/songs/60042762.mkv +林凡+郁可唯-听你说,http://em.21dtv.com/songs/60042558.mkv +韩一菲-童年曲,http://em.21dtv.com/songs/60121113.mkv +赵薇-太难得,http://em.21dtv.com/songs/60041341.mkv +萧全-铁男传,http://em.21dtv.com/songs/60132846.mkv +花满楼-天那边,http://em.21dtv.com/songs/60064963.mkv +甜美真-甜美真,http://em.21dtv.com/songs/60077923.mkv +刘德华-投名状,http://em.21dtv.com/songs/60042898.mkv +洪荣宏-头毛香,http://em.21dtv.com/songs/60042885.mkv +LAFE-tell me why,http://em.21dtv.com/songs/60073986.mkv +EMILIA-tell me why,http://em.21dtv.com/songs/60073985.mkv +佚名-too many walls,http://em.21dtv.com/songs/60005878.mkv +李玖哲-tell me why,http://em.21dtv.com/songs/60005490.mkv +TENSION-tell me why,http://em.21dtv.com/songs/60005489.mkv +DECLAN GALBRAITH-tell me why,http://em.21dtv.com/songs/60005488.mkv +甲子蕙-tell me why(无原唱),http://em.21dtv.com/songs/60005487.mkv +林欣彤-take me through,http://em.21dtv.com/songs/60062651.mkv +张靓颖-他们说,http://em.21dtv.com/songs/60116810.mkv +安旭-他们说,http://em.21dtv.com/songs/60077800.mkv +韩雪-他们说,http://em.21dtv.com/songs/60069856.mkv +吴淑敏-跳袂煞,http://em.21dtv.com/songs/60042435.mkv +郑秀文-她们说,http://em.21dtv.com/songs/60041160.mkv +郑文魁-他们说,http://em.21dtv.com/songs/60041097.mkv +木吉他-他们说,http://em.21dtv.com/songs/60041096.mkv +ROD STEWART-the motown song,http://em.21dtv.com/songs/60005638.mkv +TWINS-the morning song,http://em.21dtv.com/songs/60005635.mkv +吴南颖-透明人,http://em.21dtv.com/songs/60064988.mkv +李逸朗-透明人,http://em.21dtv.com/songs/60042914.mkv +黄靖伦-透明人,http://em.21dtv.com/songs/60042913.mkv +佚名-treat me right,http://em.21dtv.com/songs/60005925.mkv +童唱-the music room,http://em.21dtv.com/songs/60005644.mkv +TWINS-the music room,http://em.21dtv.com/songs/60005643.mkv +佚名-the music played,http://em.21dtv.com/songs/60005642.mkv +DAVID GUETTA+NICKI MINAJ-turn me on,http://em.21dtv.com/songs/60082376.mkv +KERI HILSON+LIL WAYN-turnin me on,http://em.21dtv.com/songs/60060936.mkv +NINA SKY-turninme on,http://em.21dtv.com/songs/60005962.mkv +KEVIN LYTTLE-turn me on,http://em.21dtv.com/songs/60005958.mkv +金大喜-甜蜜蜜,http://em.21dtv.com/songs/60101539.mkv +斓曦-甜蜜蜜,http://em.21dtv.com/songs/60100073.mkv +孙琳-甜蜜蜜,http://em.21dtv.com/songs/60089803.mkv +高胜美+张行-甜蜜蜜(高胜美张行),http://em.21dtv.com/songs/60089007.mkv +田震-甜蜜蜜,http://em.21dtv.com/songs/60088357.mkv +简迷离-甜蜜蜜,http://em.21dtv.com/songs/60083912.mkv +陈思思+黎明-甜蜜蜜,http://em.21dtv.com/songs/60077926.mkv +杨钰莹+王栎鑫-甜蜜蜜(演唱会),http://em.21dtv.com/songs/60077925.mkv +薛凯琪-甜蜜蜜,http://em.21dtv.com/songs/60042387.mkv +麻吉弟弟-甜蜜蜜,http://em.21dtv.com/songs/60042386.mkv +迪克牛仔-甜蜜蜜,http://em.21dtv.com/songs/60042385.mkv +邓丽君-甜蜜蜜,http://em.21dtv.com/songs/60042384.mkv +佘诗曼-甜蜜蜜(演唱会),http://em.21dtv.com/songs/60042383.mkv +古巨基-甜蜜蜜(演唱会),http://em.21dtv.com/songs/60042382.mkv +范晓萱+解晓东-甜蜜蜜(演唱会),http://em.21dtv.com/songs/60042381.mkv +蔡琴-甜蜜蜜(演唱会),http://em.21dtv.com/songs/60042380.mkv +四大天王-甜蜜蜜(无原唱),http://em.21dtv.com/songs/60042379.mkv +群星-甜蜜蜜(HD演唱会),http://em.21dtv.com/songs/60042378.mkv +孙淑媚-疼命命,http://em.21dtv.com/songs/60041654.mkv +TWINS-the muffin man,http://em.21dtv.com/songs/60005639.mkv +K CHEK+韩梓亮-TML,http://em.21dtv.com/songs/60124918.mkv +韩梓亮+曲赤-TML,http://em.21dtv.com/songs/60123362.mkv +HISTORY-tell me love,http://em.21dtv.com/songs/60084767.mkv +罗力威-太美丽(演唱会),http://em.21dtv.com/songs/60077813.mkv +ENERGY-退魔录,http://em.21dtv.com/songs/60042984.mkv +陶喆-太美丽,http://em.21dtv.com/songs/60041339.mkv +AT17-too much love(演唱会),http://em.21dtv.com/songs/60005880.mkv +ONE+T-the magic key,http://em.21dtv.com/songs/60005630.mkv +DAVID ARCHULETA-touch my hand,http://em.21dtv.com/songs/60070408.mkv +李娜-唐明皇,http://em.21dtv.com/songs/60041495.mkv +罗志祥-touch my heart,http://em.21dtv.com/songs/60005901.mkv +BEE GEES-too much heaven(演唱会),http://em.21dtv.com/songs/60005879.mkv +陈慧琳-take my hand(演唱会),http://em.21dtv.com/songs/60005450.mkv +古巨基-take me higher,http://em.21dtv.com/songs/60005441.mkv +乌兰托娅-套马杆,http://em.21dtv.com/songs/60123599.mkv +乌兰图雅-套马杆,http://em.21dtv.com/songs/60109931.mkv +乌兰图雅+乌日娜-套马杆,http://em.21dtv.com/songs/60096170.mkv +乌兰图雅-套马杆(演唱会),http://em.21dtv.com/songs/60071173.mkv +乌兰图雅-套马杆,http://em.21dtv.com/songs/60064950.mkv +乌兰托娅-套马杆,http://em.21dtv.com/songs/60041634.mkv +伍俊华+Honey Bees Junior-甜蜜蜂,http://em.21dtv.com/songs/60117544.mkv +樊凡-透明的,http://em.21dtv.com/songs/60099355.mkv +樊凡-透明的[简体版],http://em.21dtv.com/songs/60096366.mkv +SAVAGE GARDEN-truly madly deeply,http://em.21dtv.com/songs/60005938.mkv +佚名-the mummersdance,http://em.21dtv.com/songs/60005641.mkv +TINCHY STRYDER+TAIO CRUZ-take me back,http://em.21dtv.com/songs/60073973.mkv +MARIAH CAREY-touch my body,http://em.21dtv.com/songs/60005900.mkv +TWINS-the mulberry bush,http://em.21dtv.com/songs/60005640.mkv +KEYSHIA COLE-take me away,http://em.21dtv.com/songs/60073972.mkv +庄心妍-填密爱,http://em.21dtv.com/songs/60072461.mkv +崔莲姬+袁嘉乐-透明爱,http://em.21dtv.com/songs/60066352.mkv +佚名-the morning after,http://em.21dtv.com/songs/60005634.mkv +滨崎步-talkin2 myself,http://em.21dtv.com/songs/60005459.mkv +郝婉彤-特洛伊,http://em.21dtv.com/songs/60114134.mkv +赵菊平-土楼谣,http://em.21dtv.com/songs/60077982.mkv +苏素-特洛伊,http://em.21dtv.com/songs/60041645.mkv +尹子维-铁了心,http://em.21dtv.com/songs/60042477.mkv +黄征-天狼星,http://em.21dtv.com/songs/60041903.mkv +COLBIE CAILLAT-the little things,http://em.21dtv.com/songs/60074014.mkv +BRUNO MARS-the lazy song,http://em.21dtv.com/songs/60061971.mkv +MICHAEL BOLTON-to love somebody,http://em.21dtv.com/songs/60005831.mkv +BEE GEES-to love somebody(演唱会),http://em.21dtv.com/songs/60005830.mkv +佚名-the logical song,http://em.21dtv.com/songs/60005622.mkv +THE BEATLES-the long&winding road,http://em.21dtv.com/songs/60005624.mkv +阿吉仔-吞落去,http://em.21dtv.com/songs/60043001.mkv +刘佳成-讨老婆,http://em.21dtv.com/songs/60111715.mkv +MARY J.BLIGE-the living proof,http://em.21dtv.com/songs/60074015.mkv +F.I.R-塔罗牌(演唱会),http://em.21dtv.com/songs/60041188.mkv +张羽伟-同林鸟(无原唱),http://em.21dtv.com/songs/60042674.mkv +杨千嬅-塔罗迷(演唱会),http://em.21dtv.com/songs/60041187.mkv +迪玛希-天亮了,http://em.21dtv.com/songs/60134281.mkv +韩红-天亮了,http://em.21dtv.com/songs/60108148.mkv +冉青霞-天亮了,http://em.21dtv.com/songs/60099101.mkv +沙宝亮-天亮了,http://em.21dtv.com/songs/60098575.mkv +贡米-天灵灵,http://em.21dtv.com/songs/60064961.mkv +斯琴格日乐-天亮了,http://em.21dtv.com/songs/60041918.mkv +刘雅芳-天亮了,http://em.21dtv.com/songs/60041917.mkv +金悦-天亮了,http://em.21dtv.com/songs/60041916.mkv +韩红-天亮了,http://em.21dtv.com/songs/60041915.mkv +斯琴格日乐-天亮了(演唱会),http://em.21dtv.com/songs/60041914.mkv +S.H.E-天亮了(演唱会),http://em.21dtv.com/songs/60041913.mkv +宋祖英-天蓝蓝,http://em.21dtv.com/songs/60041901.mkv +高保利-天蓝蓝,http://em.21dtv.com/songs/60041900.mkv +凤凰传奇-天蓝蓝,http://em.21dtv.com/songs/60041899.mkv +凤凰传奇-天蓝蓝(演唱会),http://em.21dtv.com/songs/60041898.mkv +新宝岛康乐队-拖拉库,http://em.21dtv.com/songs/60126945.mkv +于洋-图林酒,http://em.21dtv.com/songs/60114977.mkv +吴忠明-太冷静,http://em.21dtv.com/songs/60064941.mkv +关正杰-天龙诀,http://em.21dtv.com/songs/60041926.mkv +佚名-天伦歌,http://em.21dtv.com/songs/60041933.mkv +BOYZONE-the long goodbye,http://em.21dtv.com/songs/60005623.mkv +佚名-the last goodbye,http://em.21dtv.com/songs/60005614.mkv +天亮飞-天亮飞,http://em.21dtv.com/songs/60077877.mkv +童唱-two little eyes,http://em.21dtv.com/songs/60005972.mkv +TWINS-two little eyes,http://em.21dtv.com/songs/60005971.mkv +A+乐团-图兰朵,http://em.21dtv.com/songs/60094368.mkv +[Group] +groupName=十六万歌曲MV等 - 31 +CLARE MAGUIRE-the last dance,http://em.21dtv.com/songs/60074012.mkv +裴紫绮-嗒呤darling,http://em.21dtv.com/songs/60066936.mkv +双HI C组合-图兰多(演唱会),http://em.21dtv.com/songs/60042943.mkv +甲子蕙-通了电(无原唱),http://em.21dtv.com/songs/60042643.mkv +RUBBER BAND-天连地,http://em.21dtv.com/songs/60041907.mkv +佚名-the longest days,http://em.21dtv.com/songs/60005626.mkv +佚名-the longest day,http://em.21dtv.com/songs/60005625.mkv +玄鸟传说-天籁唱,http://em.21dtv.com/songs/60116132.mkv +佚名-the love boat,http://em.21dtv.com/songs/60005629.mkv +张国荣-谈恋爱,http://em.21dtv.com/songs/60041439.mkv +谢金燕-谈恋爱,http://em.21dtv.com/songs/60041438.mkv +脱拉库-谈恋爱,http://em.21dtv.com/songs/60041437.mkv +刘仲仪+青年劫-谈恋爱,http://em.21dtv.com/songs/60041436.mkv +黄舒骏-谈恋爱,http://em.21dtv.com/songs/60041435.mkv +ALICIA KEYS-teenage love affair,http://em.21dtv.com/songs/60005476.mkv +陈雪君-天空雨,http://em.21dtv.com/songs/60041889.mkv +佚名-to know you,http://em.21dtv.com/songs/60005829.mkv +顽童MJ116-偷客兄,http://em.21dtv.com/songs/60104590.mkv +范玮琪-天空下,http://em.21dtv.com/songs/60083886.mkv +侯磊-推开我,http://em.21dtv.com/songs/60108308.mkv +徐乐同-填空题,http://em.21dtv.com/songs/60121696.mkv +王识贤-头壳痛,http://em.21dtv.com/songs/60042883.mkv +何方-停看听,http://em.21dtv.com/songs/60042630.mkv +玄武-太苦涩,http://em.21dtv.com/songs/60041334.mkv +群星-台客颂,http://em.21dtv.com/songs/60041264.mkv +六甲乐团-台客song,http://em.21dtv.com/songs/60041263.mkv +LAS KETCHUP-the ketchup song,http://em.21dtv.com/songs/60005612.mkv +JW-太空人,http://em.21dtv.com/songs/60124916.mkv +冯博-太空人,http://em.21dtv.com/songs/60116567.mkv +周华健+莫文蔚-痛苦过,http://em.21dtv.com/songs/60042802.mkv +白冰冰-同款的,http://em.21dtv.com/songs/60095814.mkv +伍佰-太空弹,http://em.21dtv.com/songs/60041332.mkv +王子-天空城,http://em.21dtv.com/songs/60128219.mkv +SHINE-坦克车,http://em.21dtv.com/songs/60092188.mkv +童唱-踢毽子,http://em.21dtv.com/songs/60041682.mkv +曲尔甲-天际语,http://em.21dtv.com/songs/60115201.mkv +王又萱-天际线,http://em.21dtv.com/songs/60131641.mkv +黄圣依-天际线,http://em.21dtv.com/songs/60085777.mkv +荒山亮-太极玄,http://em.21dtv.com/songs/60041326.mkv +陈奕迅+杨千嬅+梁汉文-太激想,http://em.21dtv.com/songs/60041325.mkv +糖兄妹-跳街舞(演唱会),http://em.21dtv.com/songs/60077930.mkv +周慧敏-天尽头,http://em.21dtv.com/songs/60108390.mkv +C ALLSTAR+SIM C-她结他,http://em.21dtv.com/songs/60080395.mkv +江水英-听惊涛,http://em.21dtv.com/songs/60042550.mkv +郑允武-天净沙,http://em.21dtv.com/songs/60124560.mkv +刘艺淼-听姐说,http://em.21dtv.com/songs/60119316.mkv +沙宝亮-天净沙,http://em.21dtv.com/songs/60041871.mkv +龙帝-土家人,http://em.21dtv.com/songs/60077981.mkv +甜妹紫烟-土家美,http://em.21dtv.com/songs/60135581.mkv +姜梓浩-太寂寞,http://em.21dtv.com/songs/60123814.mkv +任娟-土家妹,http://em.21dtv.com/songs/60120295.mkv +林宥嘉-天将明,http://em.21dtv.com/songs/60116046.mkv +靳欢琪+赵齐-太寂寞,http://em.21dtv.com/songs/60105513.mkv +舒婷-土家妹,http://em.21dtv.com/songs/60077980.mkv +司文-太寂寞,http://em.21dtv.com/songs/60041328.mkv +张惠妹-跳进来,http://em.21dtv.com/songs/60103275.mkv +胡晓黎-通缉令,http://em.21dtv.com/songs/60077956.mkv +方嘉雄-听见了,http://em.21dtv.com/songs/60042546.mkv +阿朵-叹金莲,http://em.21dtv.com/songs/60041468.mkv +光良-天禁诀,http://em.21dtv.com/songs/60110853.mkv +苏贤文-土家汉,http://em.21dtv.com/songs/60135675.mkv +马条-塔吉汗,http://em.21dtv.com/songs/60064938.mkv +罗时丰+黄思婷-天甲地,http://em.21dtv.com/songs/60077873.mkv +土土-土鸡蛋,http://em.21dtv.com/songs/60042955.mkv +林子祥-投降吧(演唱会),http://em.21dtv.com/songs/60042896.mkv +林子祥+叶倩文-投降吧(演唱会),http://em.21dtv.com/songs/60042895.mkv +许益凯-听见爱,http://em.21dtv.com/songs/60126188.mkv +杨乃文-太骄傲,http://em.21dtv.com/songs/60041329.mkv +ROD STEWART-tonight im yours,http://em.21dtv.com/songs/60005862.mkv +PIXIE LOTT-turn it up,http://em.21dtv.com/songs/60078020.mkv +JOE NICHOLS-take it off,http://em.21dtv.com/songs/60065703.mkv +张佑赫-time is over,http://em.21dtv.com/songs/60060930.mkv +JOSH+TURNER-time is love,http://em.21dtv.com/songs/60069151.mkv +杨立钛-taipei in love,http://em.21dtv.com/songs/60005428.mkv +MICHAEL JACKSON-this is it,http://em.21dtv.com/songs/60005755.mkv +邓建民+雷有辉+邓祖德-tears in heaven(演唱会),http://em.21dtv.com/songs/60073981.mkv +ERIC CLAPTON-tears in heaven,http://em.21dtv.com/songs/60005474.mkv +张崇基+张崇德-take it easy(演唱会),http://em.21dtv.com/songs/60073971.mkv +佚名-take it easy,http://em.21dtv.com/songs/60005439.mkv +蔡依林-take it easy(演唱会),http://em.21dtv.com/songs/60005438.mkv +CHRIS+BROWN+WIZ+KHAL-till i die,http://em.21dtv.com/songs/60069149.mkv +佚名-the impossible dream,http://em.21dtv.com/songs/60005610.mkv +THE USED-take it away(演唱会),http://em.21dtv.com/songs/60082351.mkv +ADELE-take it all,http://em.21dtv.com/songs/60071674.mkv +魏大勋+吴映洁-童话镇,http://em.21dtv.com/songs/60136015.mkv +陈一发儿-童话镇,http://em.21dtv.com/songs/60134388.mkv +暗杠-童话镇,http://em.21dtv.com/songs/60133762.mkv +陈一发-童话镇,http://em.21dtv.com/songs/60133033.mkv +暗杠-童话镇,http://em.21dtv.com/songs/60128057.mkv +王紫菲-桃花妆,http://em.21dtv.com/songs/60099413.mkv +刘诗诗-桃花醉,http://em.21dtv.com/songs/60085770.mkv +钟丽燕-桃花妆,http://em.21dtv.com/songs/60077844.mkv +张柏芝-桃花转,http://em.21dtv.com/songs/60066340.mkv +阴霾娃娃-他还在,http://em.21dtv.com/songs/60041082.mkv +宋茜-桃花源,http://em.21dtv.com/songs/60130261.mkv +刘安然-桃花忆,http://em.21dtv.com/songs/60121433.mkv +冷漠-叹红颜,http://em.21dtv.com/songs/60115018.mkv +谢名-桃花谣,http://em.21dtv.com/songs/60114782.mkv +腾格尔-桃花源,http://em.21dtv.com/songs/60106213.mkv +苏玮-桃花语,http://em.21dtv.com/songs/60108844.mkv +邱爽-桃花源,http://em.21dtv.com/songs/60101526.mkv +方大同-桃花运,http://em.21dtv.com/songs/60100077.mkv +康慷-桃花谣,http://em.21dtv.com/songs/60100002.mkv +李伟-桃花谣,http://em.21dtv.com/songs/60098454.mkv +腾格尔-桃花源,http://em.21dtv.com/songs/60097043.mkv +崔子格-桃花运,http://em.21dtv.com/songs/60095294.mkv +李浩民-桃花缘,http://em.21dtv.com/songs/60086867.mkv +赵芳-天河怨,http://em.21dtv.com/songs/60085776.mkv +苗苗-桃花谣,http://em.21dtv.com/songs/60085768.mkv +杨钰莹-桃花运,http://em.21dtv.com/songs/60041602.mkv +逍遥-桃花运,http://em.21dtv.com/songs/60041601.mkv +潘秀琼-桃花运,http://em.21dtv.com/songs/60041600.mkv +刘德华-桃花源,http://em.21dtv.com/songs/60041599.mkv +林隆璇-桃花源,http://em.21dtv.com/songs/60041598.mkv +陈仁丰-桃花源,http://em.21dtv.com/songs/60041597.mkv +蔡依林-桃花源,http://em.21dtv.com/songs/60041596.mkv +李军-桃花谣,http://em.21dtv.com/songs/60041593.mkv +谭晶-桃花谣(演唱会),http://em.21dtv.com/songs/60041592.mkv +马雨梵-太狠心,http://em.21dtv.com/songs/60122282.mkv +左健-桃花现,http://em.21dtv.com/songs/60099984.mkv +袁小迪-桃花心,http://em.21dtv.com/songs/60041591.mkv +卓依婷-桃花乡,http://em.21dtv.com/songs/60041590.mkv +佚名-桃花乡,http://em.21dtv.com/songs/60041589.mkv +王嘉诚-桃花仙,http://em.21dtv.com/songs/60041588.mkv +高冉-她和他,http://em.21dtv.com/songs/60126452.mkv +陈志朋-他和她,http://em.21dtv.com/songs/60120082.mkv +江南街-桃花潭,http://em.21dtv.com/songs/60116988.mkv +回音哥-他和她,http://em.21dtv.com/songs/60081906.mkv +蔡淳佳-他和她,http://em.21dtv.com/songs/60041083.mkv +林倛玉-同花顺,http://em.21dtv.com/songs/60088092.mkv +欧阳青-桃花扇,http://em.21dtv.com/songs/60081669.mkv +玉玲珑+玉健鑫-桃花殇,http://em.21dtv.com/songs/60071172.mkv +汪苏泷-桃花扇,http://em.21dtv.com/songs/60067471.mkv +欧阳青-桃花扇(演唱会),http://em.21dtv.com/songs/60064948.mkv +阎琰-桃花扇,http://em.21dtv.com/songs/60063237.mkv +马一鸣-听花山,http://em.21dtv.com/songs/60042540.mkv +林展逸-天河颂,http://em.21dtv.com/songs/60041843.mkv +唐飞-讨海人,http://em.21dtv.com/songs/60077850.mkv +JOSS STONE-the high road,http://em.21dtv.com/songs/60074008.mkv +孙艺琪-太好强,http://em.21dtv.com/songs/60131332.mkv +王莹-桃花情,http://em.21dtv.com/songs/60121952.mkv +敖长生-桃花曲,http://em.21dtv.com/songs/60094519.mkv +邓敏-桃花曲,http://em.21dtv.com/songs/60085767.mkv +佚名-桃花情,http://em.21dtv.com/songs/60068702.mkv +艾雨-桃花飘,http://em.21dtv.com/songs/60081839.mkv +TWINS-the hokey pokey,http://em.21dtv.com/songs/60005608.mkv +赖雅妍-the hardest note,http://em.21dtv.com/songs/60005605.mkv +佚名-tell her no,http://em.21dtv.com/songs/60005478.mkv +王馨悦-童话梦,http://em.21dtv.com/songs/60134014.mkv +耿宁-昙花梦,http://em.21dtv.com/songs/60090121.mkv +童丽-太湖美,http://em.21dtv.com/songs/60077809.mkv +兰旗儿-太行美,http://em.21dtv.com/songs/60068698.mkv +阎琰-桃花梦,http://em.21dtv.com/songs/60063236.mkv +周艳泓-太湖美,http://em.21dtv.com/songs/60041324.mkv +佚名-太湖美,http://em.21dtv.com/songs/60041323.mkv +程桂兰-太湖美,http://em.21dtv.com/songs/60041322.mkv +枫舞+若水伊人-桃花泪,http://em.21dtv.com/songs/60116054.mkv +魏新雨-痛和泪,http://em.21dtv.com/songs/60105533.mkv +刘德华-听话了,http://em.21dtv.com/songs/60092351.mkv +周国贤-退化论,http://em.21dtv.com/songs/60077987.mkv +高山林-太狠了,http://em.21dtv.com/songs/60068697.mkv +林秋燕-天黑了(无原唱),http://em.21dtv.com/songs/60041856.mkv +孙楠-天和泪,http://em.21dtv.com/songs/60041841.mkv +杨鸣-桃花恋,http://em.21dtv.com/songs/60041583.mkv +童唱-糖葫芦,http://em.21dtv.com/songs/60041511.mkv +裘盛戎-探皇陵,http://em.21dtv.com/songs/60041477.mkv +冯晓菲-桃花开,http://em.21dtv.com/songs/60085766.mkv +王梓轩-跳火坑,http://em.21dtv.com/songs/60083915.mkv +小村-桃花开,http://em.21dtv.com/songs/60041580.mkv +吴富山+王满娇-桃花开,http://em.21dtv.com/songs/60041579.mkv +王诗安-桃花结,http://em.21dtv.com/songs/60109542.mkv +庄学忠-桃花江,http://em.21dtv.com/songs/60041576.mkv +佚名-桃花江,http://em.21dtv.com/songs/60041575.mkv +吕珊-桃花江,http://em.21dtv.com/songs/60041574.mkv +刘超华-桃花江,http://em.21dtv.com/songs/60041573.mkv +凌云-桃花江,http://em.21dtv.com/songs/60041572.mkv +费玉清-桃花江,http://em.21dtv.com/songs/60041571.mkv +王芊桦-天黑黑,http://em.21dtv.com/songs/60135567.mkv +李雪-桃花猴,http://em.21dtv.com/songs/60125728.mkv +ROY KIM-天黑黑,http://em.21dtv.com/songs/60123527.mkv +李幸倪-天黑黑,http://em.21dtv.com/songs/60116902.mkv +谭维维+刘妍-天黑黑,http://em.21dtv.com/songs/60112249.mkv +古巨基+黄韵玲-天黑黑,http://em.21dtv.com/songs/60098179.mkv +胡彦斌-天黑黑(正式版),http://em.21dtv.com/songs/60096913.mkv +钟昀呈-天灰灰,http://em.21dtv.com/songs/60096912.mkv +超级女声+丁叮-天黑黑,http://em.21dtv.com/songs/60088710.mkv +方炯镔-天黑黑,http://em.21dtv.com/songs/60083884.mkv +邓鼓+余俊逸-天黑黑,http://em.21dtv.com/songs/60081546.mkv +廖昌永-桃花魂,http://em.21dtv.com/songs/60080218.mkv +刘超华-桃花红,http://em.21dtv.com/songs/60077842.mkv +丁叮-天黑黑(演唱会),http://em.21dtv.com/songs/60072449.mkv +刘育青-童话海,http://em.21dtv.com/songs/60042739.mkv +佚名-天黑黑,http://em.21dtv.com/songs/60041855.mkv +王雪晶-天黑黑,http://em.21dtv.com/songs/60041854.mkv +孙燕姿-天黑黑,http://em.21dtv.com/songs/60041853.mkv +妞妞姐妹-天黑黑,http://em.21dtv.com/songs/60041852.mkv +邓丽君-天黑黑,http://em.21dtv.com/songs/60041851.mkv +MPC-天黑黑,http://em.21dtv.com/songs/60041850.mkv +郑秀文+孙燕姿-天黑黑(演唱会),http://em.21dtv.com/songs/60041849.mkv +张学友-天黑黑(演唱会),http://em.21dtv.com/songs/60041848.mkv +吴浩康-天黑黑(演唱会),http://em.21dtv.com/songs/60041847.mkv +容祖儿-天黑黑(演唱会),http://em.21dtv.com/songs/60041846.mkv +吕珊-天黑黑(演唱会),http://em.21dtv.com/songs/60041845.mkv +沛县大怪-土豪哥,http://em.21dtv.com/songs/60101659.mkv +讦谯龙-退火歌,http://em.21dtv.com/songs/60042981.mkv +钟舒漫-童话国,http://em.21dtv.com/songs/60042737.mkv +PLAIN WHITE T'S-THE GIVING TREE,http://em.21dtv.com/songs/60096884.mkv +冯晓菲-挺好的,http://em.21dtv.com/songs/60099778.mkv +柯受良-天和地,http://em.21dtv.com/songs/60041840.mkv +卓依婷-桃花岛,http://em.21dtv.com/songs/60041565.mkv +刘小钰-桃花岛,http://em.21dtv.com/songs/60041564.mkv +郭彤-桃花岛,http://em.21dtv.com/songs/60041563.mkv +阿文-叹红尘,http://em.21dtv.com/songs/60107302.mkv +卓依婷-踏红尘,http://em.21dtv.com/songs/60087488.mkv +张露+黄河-桃花船,http://em.21dtv.com/songs/60041562.mkv +佚名-太湖船,http://em.21dtv.com/songs/60041321.mkv +童唱-太湖船(无原唱),http://em.21dtv.com/songs/60041320.mkv +HURRICAN CHRIS-the hand clap,http://em.21dtv.com/songs/60005604.mkv +王心凌-糖罐子,http://em.21dtv.com/songs/60041508.mkv +毛阿敏-铁观音,http://em.21dtv.com/songs/60112051.mkv +天亮-陶格陶,http://em.21dtv.com/songs/60126744.mkv +刘力扬-谈感情,http://em.21dtv.com/songs/60064942.mkv +THE PLATTERS-the great pretender,http://em.21dtv.com/songs/60005600.mkv +威利-the great pretender(演唱会),http://em.21dtv.com/songs/60005599.mkv +陈小涛-铁哥们,http://em.21dtv.com/songs/60042475.mkv +陈春燕-踏歌来,http://em.21dtv.com/songs/60135926.mkv +王麟-唐古拉,http://em.21dtv.com/songs/60063025.mkv +王麟+完玛三智-唐古拉,http://em.21dtv.com/songs/60063024.mkv +谭晶-唐古拉,http://em.21dtv.com/songs/60041492.mkv +PANIC-that green gentleman,http://em.21dtv.com/songs/60063764.mkv +秀兰玛雅-天光光,http://em.21dtv.com/songs/60041831.mkv +少女时代-the great escape,http://em.21dtv.com/songs/60074007.mkv +陈茂丰-叹孤单,http://em.21dtv.com/songs/60117351.mkv +高登-太孤单,http://em.21dtv.com/songs/60068696.mkv +陈冠蒲-太孤单,http://em.21dtv.com/songs/60041315.mkv +徐洁儿-脱光吧,http://em.21dtv.com/songs/60082022.mkv +LOVEPLAY-time goes by,http://em.21dtv.com/songs/60062101.mkv +TWINS-ten green bottles,http://em.21dtv.com/songs/60005501.mkv +黄宗泽-听风啸,http://em.21dtv.com/songs/60112403.mkv +野人-太妃糖,http://em.21dtv.com/songs/60081736.mkv +童唱-the four seasons,http://em.21dtv.com/songs/60005592.mkv +杨丞琳-太烦恼,http://em.21dtv.com/songs/60041314.mkv +MONICA-the first night(无原唱),http://em.21dtv.com/songs/60005587.mkv +关淑怡-陀飞轮,http://em.21dtv.com/songs/60077992.mkv +C ALLSTAR-陀飞轮(演唱会),http://em.21dtv.com/songs/60077991.mkv +陈奕迅-陀飞轮,http://em.21dtv.com/songs/60043023.mkv +何韵诗-陀飞轮(演唱会),http://em.21dtv.com/songs/60043022.mkv +吕雯-太疯狂,http://em.21dtv.com/songs/60096921.mkv +吴淑敏-台风假,http://em.21dtv.com/songs/60096939.mkv +古巨基-跳飞机,http://em.21dtv.com/songs/60042433.mkv +李人杰-叹繁华,http://em.21dtv.com/songs/60106931.mkv +李立+高昊+迟帅+刘恺威-太疯癫,http://em.21dtv.com/songs/60099322.mkv +群星-太疯癫,http://em.21dtv.com/songs/60096922.mkv +许嵩+MIMO-亭房道,http://em.21dtv.com/songs/60042611.mkv +J.TEMPEST-the final countdown,http://em.21dtv.com/songs/60005585.mkv +ANDY WILLIAMS-the exodus song,http://em.21dtv.com/songs/60005582.mkv +木玛乐队-天鹅绒,http://em.21dtv.com/songs/60041810.mkv +刘伟德-Tell Me Why,http://em.21dtv.com/songs/60099792.mkv +TOHEART-Tell Me Why,http://em.21dtv.com/songs/60099705.mkv +BIGBANG-Tell me goodbye,http://em.21dtv.com/songs/60099647.mkv +佚名-the endless love,http://em.21dtv.com/songs/60005580.mkv +林青霞-天地醉,http://em.21dtv.com/songs/60041800.mkv +吴若希-听电影,http://em.21dtv.com/songs/60042527.mkv +中央C少年帮-泰迪熊,http://em.21dtv.com/songs/60133327.mkv +秀兰玛雅-天顶星,http://em.21dtv.com/songs/60123050.mkv +秀兰玛雅-天顶星,http://em.21dtv.com/songs/60113917.mkv +佚名-台东人,http://em.21dtv.com/songs/60041259.mkv +佚名-this diamond ring,http://em.21dtv.com/songs/60005753.mkv +柳佳佳+陈威男-天地情,http://em.21dtv.com/songs/60111203.mkv +杜德伟-烫得起,http://em.21dtv.com/songs/60041521.mkv +胡雯-她的美,http://em.21dtv.com/songs/60081902.mkv +徐良+杨曦-他的猫,http://em.21dtv.com/songs/60080315.mkv +蔡小虎-天地梦,http://em.21dtv.com/songs/60067476.mkv +常石磊-天地鉴(演唱会),http://em.21dtv.com/songs/60077866.mkv +萨顶顶-天地记,http://em.21dtv.com/songs/60041787.mkv +蔡蓝钦-他的话,http://em.21dtv.com/songs/60041069.mkv +哥们-偷渡歌,http://em.21dtv.com/songs/60042825.mkv +梁焕波-挑担歌,http://em.21dtv.com/songs/60042418.mkv +陶喆-她的歌,http://em.21dtv.com/songs/60041146.mkv +余天龙-挺到底,http://em.21dtv.com/songs/60118339.mkv +艾美琦-坦荡荡,http://em.21dtv.com/songs/60113993.mkv +沈文程-台东调,http://em.21dtv.com/songs/60041260.mkv +陈思安-天灯啊,http://em.21dtv.com/songs/60062275.mkv +汪苏泷-他的爱,http://em.21dtv.com/songs/60041065.mkv +宋祖英-筒车谣,http://em.21dtv.com/songs/60042773.mkv +张也-腾冲谣,http://em.21dtv.com/songs/60041674.mkv +周澎+王玮玮-藤缠树,http://em.21dtv.com/songs/60111775.mkv +胖男时代-唐从圣,http://em.21dtv.com/songs/60085765.mkv +齐豫+齐秦-藤缠树,http://em.21dtv.com/songs/60083876.mkv +李玉刚-天池南,http://em.21dtv.com/songs/60130429.mkv +陈绮贞-太聪明,http://em.21dtv.com/songs/60041306.mkv +陈绮贞-太聪明(演唱会),http://em.21dtv.com/songs/60041305.mkv +佚名-the candy man,http://em.21dtv.com/songs/60005559.mkv +迟志强-铁窗泪,http://em.21dtv.com/songs/60042473.mkv +林一峰-涂城记(演唱会),http://em.21dtv.com/songs/60042946.mkv +网络歌曲-太刺激,http://em.21dtv.com/songs/60041302.mkv +MYAR-同窗会,http://em.21dtv.com/songs/60123513.mkv +罗布仁青-甜茶馆,http://em.21dtv.com/songs/60128303.mkv +邓超予-跳春光,http://em.21dtv.com/songs/60108918.mkv +徐晶晶-跳春光,http://em.21dtv.com/songs/60094118.mkv +文虎-推车歌,http://em.21dtv.com/songs/60042974.mkv +网络歌曲-偷菜歌,http://em.21dtv.com/songs/60042822.mkv +何嘉莉-the circle game(无原唱),http://em.21dtv.com/songs/60005561.mkv +钟一宪-糖黐豆,http://em.21dtv.com/songs/60077831.mkv +荒山亮-天苍苍,http://em.21dtv.com/songs/60081903.mkv +容祖儿-贪嗔痴(演唱会),http://em.21dtv.com/songs/60041416.mkv +谭咏麟-太匆匆,http://em.21dtv.com/songs/60041304.mkv +黄耀明-天蚕变,http://em.21dtv.com/songs/60124754.mkv +柳影虹-天蚕变(演唱会),http://em.21dtv.com/songs/60077863.mkv +关正杰-天蚕变,http://em.21dtv.com/songs/60041766.mkv +叶振棠-天蚕变(演唱会),http://em.21dtv.com/songs/60041765.mkv +林凡+符致逸-套不住,http://em.21dtv.com/songs/60102387.mkv +太真儿-同伴者(演唱会),http://em.21dtv.com/songs/60099912.mkv +潘越云-台北雨(无原唱),http://em.21dtv.com/songs/60041254.mkv +邓丽君-逃避行,http://em.21dtv.com/songs/60041538.mkv +扎西顿珠-天边外,http://em.21dtv.com/songs/60096911.mkv +AQUA-turn back time,http://em.21dtv.com/songs/60005957.mkv +佚名-土拨鼠,http://em.21dtv.com/songs/60042952.mkv +童唱-土拨鼠(无原唱),http://em.21dtv.com/songs/60042951.mkv +BOY'Z-跳班生,http://em.21dtv.com/songs/60042431.mkv +薛凯琪-糖不甩,http://em.21dtv.com/songs/60041507.mkv +黄乙玲-台北sayonara,http://em.21dtv.com/songs/60041216.mkv +MARK RONSON+BUSINESS-the bike song,http://em.21dtv.com/songs/60005551.mkv +阿赖+李华-屯堡人,http://em.21dtv.com/songs/60121057.mkv +阿赖-屯堡人,http://em.21dtv.com/songs/60114187.mkv +苑紫盈-痛不起,http://em.21dtv.com/songs/60071192.mkv +容祖儿-逃避你,http://em.21dtv.com/songs/60041542.mkv +容祖儿-逃避你(演唱会),http://em.21dtv.com/songs/60041541.mkv +李克勤-逃避你(演唱会),http://em.21dtv.com/songs/60041540.mkv +佚名-three blind mice,http://em.21dtv.com/songs/60005779.mkv +TWINS-three blind mice,http://em.21dtv.com/songs/60005778.mkv +王开煜-唐布拉,http://em.21dtv.com/songs/60102523.mkv +孙悦-天别亮,http://em.21dtv.com/songs/60090898.mkv +司文+蜡笔小馨-太崩溃,http://em.21dtv.com/songs/60041301.mkv +吕蔷-听不见(演唱会),http://em.21dtv.com/songs/60077942.mkv +黄鸿升-糖伯虎,http://em.21dtv.com/songs/60080171.mkv +佚名-坦白话,http://em.21dtv.com/songs/60041465.mkv +万梓良-坦白话,http://em.21dtv.com/songs/60041464.mkv +刘德华-天比高(演唱会),http://em.21dtv.com/songs/60041722.mkv +何洁-他不该,http://em.21dtv.com/songs/60041057.mkv +狮子合唱团-听不到,http://em.21dtv.com/songs/60133968.mkv +韩庚-逃不掉,http://em.21dtv.com/songs/60118181.mkv +张杰-他不懂,http://em.21dtv.com/songs/60107716.mkv +冯曦妤-逃不掉,http://em.21dtv.com/songs/60101268.mkv +张杰-他不懂,http://em.21dtv.com/songs/60094502.mkv +五月天-听不到,http://em.21dtv.com/songs/60042513.mkv +梁静茹-听不到,http://em.21dtv.com/songs/60042512.mkv +梁静茹-听不到(演唱会),http://em.21dtv.com/songs/60042511.mkv +CARRIE UNDERWOOD-two black cadillacs,http://em.21dtv.com/songs/60074080.mkv +佚名-头班车,http://em.21dtv.com/songs/60042869.mkv +FRANK+OCEAN-thinking about you,http://em.21dtv.com/songs/60069148.mkv +余天-天啊天,http://em.21dtv.com/songs/60134886.mkv +ANGEL-time after time,http://em.21dtv.com/songs/60074048.mkv +谭咏麟+杜丽莎-time after time,http://em.21dtv.com/songs/60069150.mkv +ED SHEERAN-the a team,http://em.21dtv.com/songs/60063767.mkv +佚名-time after time,http://em.21dtv.com/songs/60005805.mkv +SAVAGE GARDEN-the animal song,http://em.21dtv.com/songs/60005542.mkv +方瑞娥+高向鹏-天安排,http://em.21dtv.com/songs/60095548.mkv +郑源-太爱你,http://em.21dtv.com/songs/60077806.mkv +潘玮柏-太爱你,http://em.21dtv.com/songs/60041297.mkv +郭富城-太爱你,http://em.21dtv.com/songs/60041296.mkv +李天-天安门,http://em.21dtv.com/songs/60126998.mkv +KAISER CHIEFS-the angry mob,http://em.21dtv.com/songs/60005541.mkv +林欣彤-兔爱狼,http://em.21dtv.com/songs/60077983.mkv +王志心-太爱了,http://em.21dtv.com/songs/60067464.mkv +吴勇滨-太安静,http://em.21dtv.com/songs/60101294.mkv +MELANIE+C-think about it,http://em.21dtv.com/songs/60069147.mkv +幸田来未+FERGIE-that aint cool,http://em.21dtv.com/songs/60005517.mkv +KEYSHIA COLE-trust and believe,http://em.21dtv.com/songs/60074068.mkv +佚名-take a bow,http://em.21dtv.com/songs/60005434.mkv +RIHANNA-take a bow,http://em.21dtv.com/songs/60005433.mkv +MADONNA-take a bow,http://em.21dtv.com/songs/60005432.mkv +陶辰宇-狮子座,http://em.21dtv.com/songs/60093666.mkv +TAKE-双子座,http://em.21dtv.com/songs/60039913.mkv +曾轶可-狮子座,http://em.21dtv.com/songs/60038890.mkv +曾轶可-狮子座(演唱会),http://em.21dtv.com/songs/60038889.mkv +李翊君-水中月,http://em.21dtv.com/songs/60083835.mkv +江若琳-手掌印,http://em.21dtv.com/songs/60067434.mkv +林奕匡-伤仲永,http://em.21dtv.com/songs/60066299.mkv +小曾-送战友,http://em.21dtv.com/songs/60064929.mkv +王蓉-水煮鱼,http://em.21dtv.com/songs/60040282.mkv +黄乙玲-水中月,http://em.21dtv.com/songs/60040278.mkv +佚名-水中月(无原唱),http://em.21dtv.com/songs/60040277.mkv +詹曼铃-水中影,http://em.21dtv.com/songs/60040276.mkv +动静乐团-水中影,http://em.21dtv.com/songs/60040275.mkv +戴佩妮-水中央,http://em.21dtv.com/songs/60040274.mkv +杨宗宪-水中烟,http://em.21dtv.com/songs/60040273.mkv +陈百潭-水中烟(演唱会),http://em.21dtv.com/songs/60040272.mkv +奥杰阿格-山寨夜,http://em.21dtv.com/songs/60037698.mkv +龙千玉-手中心,http://em.21dtv.com/songs/60136051.mkv +庄振凯-手中戏,http://em.21dtv.com/songs/60125480.mkv +邱芸子-手中心,http://em.21dtv.com/songs/60120994.mkv +飞翔-十字绣,http://em.21dtv.com/songs/60102939.mkv +何英-三支香,http://em.21dtv.com/songs/60090607.mkv +丁当-手掌心,http://em.21dtv.com/songs/60080947.mkv +光良-双子星,http://em.21dtv.com/songs/60039912.mkv +李克勤-神州行(演唱会),http://em.21dtv.com/songs/60038516.mkv +杨嘉松-深圳湾,http://em.21dtv.com/songs/60119688.mkv +蓝沁-扇子舞,http://em.21dtv.com/songs/60077506.mkv +伍佰-扇子舞(演唱会),http://em.21dtv.com/songs/60037749.mkv +莫文蔚-扇子舞(演唱会),http://em.21dtv.com/songs/60037748.mkv +快乐2世代-梳妆台,http://em.21dtv.com/songs/60039744.mkv +潘丽丽-梳妆台(无原唱),http://em.21dtv.com/songs/60039743.mkv +越剧-十只桶,http://em.21dtv.com/songs/60039047.mkv +林海峰-三字头,http://em.21dtv.com/songs/60037376.mkv +林奕匡-颂赞诗,http://em.21dtv.com/songs/60109458.mkv +韩磊-嫂子颂(我是歌手第二期),http://em.21dtv.com/songs/60096549.mkv +梁桂芬-山楂树,http://em.21dtv.com/songs/60088141.mkv +韩磊-嫂子颂(我是歌手第二期),http://em.21dtv.com/songs/60084934.mkv +王识贤-手中沙,http://em.21dtv.com/songs/60039659.mkv +佚名-世尊颂,http://em.21dtv.com/songs/60039337.mkv +杨千嬅-深紫色,http://em.21dtv.com/songs/60038383.mkv +佚名-山楂树,http://em.21dtv.com/songs/60037693.mkv +齐豫-山楂树,http://em.21dtv.com/songs/60037692.mkv +陈楚生-山楂树,http://em.21dtv.com/songs/60037691.mkv +李娜-嫂子颂,http://em.21dtv.com/songs/60037406.mkv +古巨基-伤追人,http://em.21dtv.com/songs/60037995.mkv +张学友-伤追人(演唱会),http://em.21dtv.com/songs/60037994.mkv +容祖儿-伤追人(演唱会),http://em.21dtv.com/songs/60037993.mkv +侧田-伤追人(演唱会),http://em.21dtv.com/songs/60037992.mkv +多亮-诉衷情,http://em.21dtv.com/songs/60114463.mkv +宋祖英-桑梓情,http://em.21dtv.com/songs/60090958.mkv +岳薇-水蒸气,http://em.21dtv.com/songs/60064912.mkv +周璇-诉衷情,http://em.21dtv.com/songs/60040846.mkv +费玉清-诉衷情,http://em.21dtv.com/songs/60040845.mkv +杨静-水中情(无原唱),http://em.21dtv.com/songs/60040271.mkv +佚名-手足情,http://em.21dtv.com/songs/60039663.mkv +刘建国+王丽-手足情,http://em.21dtv.com/songs/60039662.mkv +尤尤-手中情,http://em.21dtv.com/songs/60039658.mkv +秀兰玛雅-手中情,http://em.21dtv.com/songs/60039657.mkv +翁立友-手中情,http://em.21dtv.com/songs/60039656.mkv +顾凯-神州情,http://em.21dtv.com/songs/60038517.mkv +佚名-深圳情,http://em.21dtv.com/songs/60038382.mkv +歌一生+音乐走廊-守着你,http://em.21dtv.com/songs/60100252.mkv +金志文-生之门,http://em.21dtv.com/songs/60130811.mkv +抱抱-谁最美,http://em.21dtv.com/songs/60118607.mkv +翁立友-水中梦,http://em.21dtv.com/songs/60080802.mkv +咪依鲁江-山寨美,http://em.21dtv.com/songs/60072369.mkv +HITA+肉肉-束竹令,http://em.21dtv.com/songs/60072412.mkv +林峰-双子龙,http://em.21dtv.com/songs/60061593.mkv +吴日言-说中了,http://em.21dtv.com/songs/60040441.mkv +佚名-水中莲,http://em.21dtv.com/songs/60040270.mkv +林子祥-水中莲,http://em.21dtv.com/songs/60040269.mkv +曾桂英-梳妆楼,http://em.21dtv.com/songs/60039742.mkv +江志丰-十字路,http://em.21dtv.com/songs/60039058.mkv +胡琳+恭硕良-十字路,http://em.21dtv.com/songs/60039057.mkv +小峰峰-伤之恋,http://em.21dtv.com/songs/60037991.mkv +颖宝儿-说再见,http://em.21dtv.com/songs/60123370.mkv +阿悄-十字诀,http://em.21dtv.com/songs/60120058.mkv +甄妮-四张机,http://em.21dtv.com/songs/60040716.mkv +梁洛施+张致恒-说再见,http://em.21dtv.com/songs/60040435.mkv +4 IN LOVE-说再见,http://em.21dtv.com/songs/60040434.mkv +谢安琪-十字架,http://em.21dtv.com/songs/60039053.mkv +ZEN-十字架,http://em.21dtv.com/songs/60039052.mkv +谢安琪-十字架(演唱会),http://em.21dtv.com/songs/60039051.mkv +岩宰仑-水中花,http://em.21dtv.com/songs/60124808.mkv +孙淑媚-手中花,http://em.21dtv.com/songs/60109268.mkv +罗志祥-狮子吼,http://em.21dtv.com/songs/60095336.mkv +谭咏麟-水中花,http://em.21dtv.com/songs/60086851.mkv +许诺-谁在乎,http://em.21dtv.com/songs/60081724.mkv +储兰兰-水中花,http://em.21dtv.com/songs/60077718.mkv +阿悄-舍子花,http://em.21dtv.com/songs/60077541.mkv +薛凯琪-苏州河,http://em.21dtv.com/songs/60040832.mkv +徐千雅-苏州河,http://em.21dtv.com/songs/60040831.mkv +谭咏麟-水中花(演唱会),http://em.21dtv.com/songs/60040266.mkv +谭咏麟+刀郎-水中花(演唱会),http://em.21dtv.com/songs/60040265.mkv +蔡振南-山栈花,http://em.21dtv.com/songs/60037699.mkv +陈楚生-山楂花(演唱会),http://em.21dtv.com/songs/60037690.mkv +顾凯-水之歌,http://em.21dtv.com/songs/60080526.mkv +蒋大为-说中国(演唱会),http://em.21dtv.com/songs/60040440.mkv +童唱-数字歌,http://em.21dtv.com/songs/60039813.mkv +佚名-扇子歌,http://em.21dtv.com/songs/60037747.mkv +杨浩龙-杀猪刀,http://em.21dtv.com/songs/60110297.mkv +蔡旻佑-谁知道,http://em.21dtv.com/songs/60071141.mkv +容祖儿-说真的,http://em.21dtv.com/songs/60040439.mkv +彭佳慧-说真的,http://em.21dtv.com/songs/60040438.mkv +詹雅雯-是真的,http://em.21dtv.com/songs/60039539.mkv +柯羽-圣旨到,http://em.21dtv.com/songs/60038686.mkv +童唱-酸枣刺,http://em.21dtv.com/songs/60040880.mkv +陈惠婷-生之慾,http://em.21dtv.com/songs/60120087.mkv +余冰-双鱼作,http://em.21dtv.com/songs/60125128.mkv +蔡健雅-失语者,http://em.21dtv.com/songs/60117196.mkv +简红-失语者,http://em.21dtv.com/songs/60113931.mkv +王筝-失忆症,http://em.21dtv.com/songs/60104314.mkv +蔡琴-顺应着,http://em.21dtv.com/songs/60040316.mkv +童唱-数鸭子,http://em.21dtv.com/songs/60039810.mkv +蔡健雅-失忆症(演唱会),http://em.21dtv.com/songs/60038850.mkv +龙千玉-水云烟,http://em.21dtv.com/songs/60136054.mkv +十永-谁愿意,http://em.21dtv.com/songs/60107553.mkv +江蕙-双雁影(无原唱),http://em.21dtv.com/songs/60095727.mkv +洛天依-三月雨,http://em.21dtv.com/songs/60095318.mkv +青鸟彩虹-水云遥,http://em.21dtv.com/songs/60085745.mkv +王嘉铭-四月一,http://em.21dtv.com/songs/60040714.mkv +叶启田-水云烟,http://em.21dtv.com/songs/60040255.mkv +佚名-水悠悠,http://em.21dtv.com/songs/60040251.mkv +田震-水姻缘,http://em.21dtv.com/songs/60040249.mkv +赵薇-十一月,http://em.21dtv.com/songs/60039041.mkv +陈明憙-十月雪,http://em.21dtv.com/songs/60124639.mkv +王菲-颂英雄,http://em.21dtv.com/songs/60091745.mkv +王菲-四月雪,http://em.21dtv.com/songs/60040713.mkv +谢安琪-私隐线(HD演唱会),http://em.21dtv.com/songs/60040472.mkv +洪荣宏+黄妃-三月雪,http://em.21dtv.com/songs/60037370.mkv +莫艳琳-是因为,http://em.21dtv.com/songs/60111379.mkv +莫艳琳-是因为,http://em.21dtv.com/songs/60108861.mkv +OWL CITY+YUNA-shine your way,http://em.21dtv.com/songs/60082326.mkv +小龙女-属于我,http://em.21dtv.com/songs/60039773.mkv +林忆莲-属于我,http://em.21dtv.com/songs/60039772.mkv +佚名-是因为(无原唱),http://em.21dtv.com/songs/60039527.mkv +原子邦妮-四月天,http://em.21dtv.com/songs/60134968.mkv +KiKi.Li-思忆痛,http://em.21dtv.com/songs/60123489.mkv +善莹-三月天,http://em.21dtv.com/songs/60109236.mkv +湘东雨-四月天,http://em.21dtv.com/songs/60093677.mkv +路童+珍美儿-三姨太,http://em.21dtv.com/songs/60085672.mkv +庞龙-四月天,http://em.21dtv.com/songs/60081965.mkv +凌志辉-思忆痛,http://em.21dtv.com/songs/60077750.mkv +怕黑-傻y头,http://em.21dtv.com/songs/60077484.mkv +ONE DIRECTION-save you tonight,http://em.21dtv.com/songs/60073841.mkv +怕黑-傻丫头,http://em.21dtv.com/songs/60061557.mkv +刘若英-四月天,http://em.21dtv.com/songs/60040712.mkv +崔子格-三月三,http://em.21dtv.com/songs/60111032.mkv +葛仲珊+比莉-甩一甩,http://em.21dtv.com/songs/60108869.mkv +谢安琪-十优生(演唱会),http://em.21dtv.com/songs/60039043.mkv +卢巧音-色与情,http://em.21dtv.com/songs/60037413.mkv +冯德伦-试验品,http://em.21dtv.com/songs/60087363.mkv +冯德伦-实验品,http://em.21dtv.com/songs/60077628.mkv +任贤齐-属于你,http://em.21dtv.com/songs/60090552.mkv +邱永传-十一年(舞曲版),http://em.21dtv.com/songs/60061585.mkv +邱永传-十一年,http://em.21dtv.com/songs/60039040.mkv +陈奕迅-随意门,http://em.21dtv.com/songs/60040953.mkv +魏如昀-所以咧,http://em.21dtv.com/songs/60124727.mkv +胡慧华-晒月亮,http://em.21dtv.com/songs/60111362.mkv +安叶-瘦杨柳,http://em.21dtv.com/songs/60111005.mkv +林子祥-深夜里,http://em.21dtv.com/songs/60092859.mkv +降央卓玛-索呀拉,http://em.21dtv.com/songs/60089536.mkv +伍佰-上瘾了,http://em.21dtv.com/songs/60087286.mkv +张云卉-水月亮,http://em.21dtv.com/songs/60064911.mkv +黎明-see you later,http://em.21dtv.com/songs/60062582.mkv +吴涤清-守月亮,http://em.21dtv.com/songs/60039696.mkv +伍佰-上隐了(演唱会),http://em.21dtv.com/songs/60038065.mkv +叶玉卿-傻眼泪,http://em.21dtv.com/songs/60037557.mkv +蔡依林-show your love,http://em.21dtv.com/songs/60005013.mkv +黄小琥-show your love(演唱会),http://em.21dtv.com/songs/60005012.mkv +佚名-shake your love,http://em.21dtv.com/songs/60004933.mkv +X+DREAM-say you love(无原唱),http://em.21dtv.com/songs/60004846.mkv +张咏诗-上一课,http://em.21dtv.com/songs/60038064.mkv +凤凰传奇-水云间,http://em.21dtv.com/songs/60103101.mkv +朴野-素缘劫,http://em.21dtv.com/songs/60098441.mkv +JANICE-霎眼矫,http://em.21dtv.com/songs/60092182.mkv +连诗雅-说一句,http://em.21dtv.com/songs/60079946.mkv +童孔-水云间,http://em.21dtv.com/songs/60040254.mkv +童安格-失意酒,http://em.21dtv.com/songs/60038854.mkv +卫兰-霎眼娇,http://em.21dtv.com/songs/60037575.mkv +邓颖芝-霎眼娇,http://em.21dtv.com/songs/60037574.mkv +黄俊源-傻约翰,http://em.21dtv.com/songs/60077490.mkv +REMADY+MANU L-save your heart,http://em.21dtv.com/songs/60073842.mkv +郑君绵-十一哥,http://em.21dtv.com/songs/60093273.mkv +郑锦昌-十一哥(演唱会),http://em.21dtv.com/songs/60077611.mkv +范晓萱-刷牙歌,http://em.21dtv.com/songs/60039816.mkv +郑锦昌-十一哥,http://em.21dtv.com/songs/60039038.mkv +邓丽君-十一哥,http://em.21dtv.com/songs/60039037.mkv +陈小云-十一哥,http://em.21dtv.com/songs/60039036.mkv +尹光+何国材-十一哥(演唱会),http://em.21dtv.com/songs/60039035.mkv +杜德伟-set you free(演唱会),http://em.21dtv.com/songs/60004901.mkv +蓝雨-善与恶,http://em.21dtv.com/songs/60104409.mkv +B2-shoot you down,http://em.21dtv.com/songs/60004996.mkv +林柔均-闪一边,http://em.21dtv.com/songs/60066291.mkv +徐子崴-随缘吧,http://em.21dtv.com/songs/60063211.mkv +RICKY MARTIN-shake your bon-bon(无原唱),http://em.21dtv.com/songs/60004932.mkv +MOMO姐姐-shake your body,http://em.21dtv.com/songs/60004931.mkv +CARRIE UNDERWOOD-see you again,http://em.21dtv.com/songs/60082319.mkv +童丽-思想枝,http://em.21dtv.com/songs/60077749.mkv +邓丽君-思想枝,http://em.21dtv.com/songs/60040600.mkv +袁小迪-思相枝,http://em.21dtv.com/songs/60040596.mkv +蔡小虎-思相枝,http://em.21dtv.com/songs/60040595.mkv +周柏豪-傻小子,http://em.21dtv.com/songs/60037553.mkv +安书楷-寿乡谣,http://em.21dtv.com/songs/60135117.mkv +奥杰阿格-水西谣,http://em.21dtv.com/songs/60094039.mkv +胡灵-上弦月,http://em.21dtv.com/songs/60071104.mkv +周瑜-水乡谣,http://em.21dtv.com/songs/60067447.mkv +彭佳慧-死心眼,http://em.21dtv.com/songs/60040637.mkv +梁咏琪-神仙鱼,http://em.21dtv.com/songs/60038508.mkv +郑秀文-上弦月,http://em.21dtv.com/songs/60038056.mkv +许志安-上弦月,http://em.21dtv.com/songs/60038055.mkv +陈洁丽-上弦月(演唱会),http://em.21dtv.com/songs/60038054.mkv +王子鸣-伤心雨,http://em.21dtv.com/songs/60037981.mkv +邱芸子-伤心雨,http://em.21dtv.com/songs/60037980.mkv +成凤-伤心雨,http://em.21dtv.com/songs/60037979.mkv +甲子蕙-伤心影,http://em.21dtv.com/songs/60037977.mkv +魏瑛侠-伤心夜,http://em.21dtv.com/songs/60037970.mkv +贺东-数星星,http://em.21dtv.com/songs/60110546.mkv +佚名-数星星,http://em.21dtv.com/songs/60083823.mkv +CHARCOAL-数星星,http://em.21dtv.com/songs/60039809.mkv +金伊彤-傻兮兮,http://em.21dtv.com/songs/60037552.mkv +屋顶月光-实习生,http://em.21dtv.com/songs/60135156.mkv +王博轼-树先声,http://em.21dtv.com/songs/60132715.mkv +简弘亦-树先生,http://em.21dtv.com/songs/60127261.mkv +许志安-试新室,http://em.21dtv.com/songs/60100962.mkv +谢军-碎心石,http://em.21dtv.com/songs/60041007.mkv +十三狼-陕西人,http://em.21dtv.com/songs/60106660.mkv +周强-三峡人,http://em.21dtv.com/songs/60096058.mkv +林玉英-伤心人,http://em.21dtv.com/songs/60037939.mkv +秀兰玛雅-伤心人(无原唱),http://em.21dtv.com/songs/60035310.mkv +李潮-思乡曲,http://em.21dtv.com/songs/60133809.mkv +付春霞-神仙曲,http://em.21dtv.com/songs/60126588.mkv +王俊杰-诗响起,http://em.21dtv.com/songs/60114677.mkv +张继聪-四小强,http://em.21dtv.com/songs/60092648.mkv +民歌-山峡情,http://em.21dtv.com/songs/60090031.mkv +罗天婵-思乡曲,http://em.21dtv.com/songs/60083846.mkv +谢安琪-随想曲(演唱会),http://em.21dtv.com/songs/60077789.mkv +黄耀明-随想曲(演唱会),http://em.21dtv.com/songs/60064933.mkv +周小君-随想曲,http://em.21dtv.com/songs/60063467.mkv +徐小凤-随想曲(演唱会),http://em.21dtv.com/songs/60040949.mkv +吕珊-随想曲(演唱会),http://em.21dtv.com/songs/60040948.mkv +林一峰-随想曲(演唱会),http://em.21dtv.com/songs/60040947.mkv +陈洁灵-随想曲(演唱会),http://em.21dtv.com/songs/60040946.mkv +童唱-思想起,http://em.21dtv.com/songs/60040599.mkv +曾桂英-思想起,http://em.21dtv.com/songs/60040598.mkv +佚名-思乡曲,http://em.21dtv.com/songs/60040593.mkv +彝人制造-思乡曲,http://em.21dtv.com/songs/60040592.mkv +佟铁鑫-思乡曲,http://em.21dtv.com/songs/60040591.mkv +黄越峰-思乡曲,http://em.21dtv.com/songs/60040590.mkv +古璇-思乡曲,http://em.21dtv.com/songs/60040589.mkv +亚东-思乡情,http://em.21dtv.com/songs/60040587.mkv +林子祥-水仙情,http://em.21dtv.com/songs/60040242.mkv +刘佳轩-伤心情,http://em.21dtv.com/songs/60037936.mkv +佚名-三峡情,http://em.21dtv.com/songs/60037343.mkv +苗苗-思乡女,http://em.21dtv.com/songs/60096461.mkv +梁珍-思乡念,http://em.21dtv.com/songs/60094969.mkv +丁楠霓-数新年,http://em.21dtv.com/songs/60072413.mkv +吴淑敏-伤心梦,http://em.21dtv.com/songs/60037930.mkv +乔幼-伤心泪,http://em.21dtv.com/songs/60130043.mkv +胡思明-思乡恋,http://em.21dtv.com/songs/60127300.mkv +陈赛金-手心连,http://em.21dtv.com/songs/60062269.mkv +王建杰-锁心恋,http://em.21dtv.com/songs/60041043.mkv +邓丽君-碎心恋,http://em.21dtv.com/songs/60041006.mkv +蔡幸娟-碎心恋,http://em.21dtv.com/songs/60041005.mkv +郑少秋-伤心路,http://em.21dtv.com/songs/60037928.mkv +沈文程-伤心路,http://em.21dtv.com/songs/60037927.mkv +孙淑媚-伤心泪,http://em.21dtv.com/songs/60037924.mkv +陈星-伤心泪,http://em.21dtv.com/songs/60037923.mkv +佚名-三线路,http://em.21dtv.com/songs/60037346.mkv +郭顶-水星记,http://em.21dtv.com/songs/60130805.mkv +郭顶-水星记,http://em.21dtv.com/songs/60129672.mkv +邬兆邦-伤心酒,http://em.21dtv.com/songs/60086809.mkv +陈星-思乡酒,http://em.21dtv.com/songs/60040586.mkv +佚名-伤心酒,http://em.21dtv.com/songs/60037915.mkv +王建杰-伤心酒(无原唱),http://em.21dtv.com/songs/60037914.mkv +黄克林-伤心酒(无原唱),http://em.21dtv.com/songs/60037913.mkv +吴珊-伤心酒(无原唱),http://em.21dtv.com/songs/60013264.mkv +毛泽少-伤心花,http://em.21dtv.com/songs/60135475.mkv +简弘亦-伤心花,http://em.21dtv.com/songs/60134057.mkv +孙淑媚-伤心话,http://em.21dtv.com/songs/60100840.mkv +朱娜-伤心海,http://em.21dtv.com/songs/60068643.mkv +孙安林-碎心花,http://em.21dtv.com/songs/60041004.mkv +邓丽君-碎心花,http://em.21dtv.com/songs/60041003.mkv +陈小云-碎心花,http://em.21dtv.com/songs/60041002.mkv +蓝雨-水仙花,http://em.21dtv.com/songs/60040240.mkv +汪明荃-水仙花(演唱会),http://em.21dtv.com/songs/60040239.mkv +曾慧+梁耀安-双星恨,http://em.21dtv.com/songs/60039901.mkv +周旭风-伤心海,http://em.21dtv.com/songs/60037907.mkv +山水组合-三下锅,http://em.21dtv.com/songs/60133611.mkv +陈随意-伤心歌,http://em.21dtv.com/songs/60129761.mkv +寒武纪-伤心歌,http://em.21dtv.com/songs/60067406.mkv +王雪晶-上学歌,http://em.21dtv.com/songs/60038060.mkv +童唱-上学歌,http://em.21dtv.com/songs/60038059.mkv +萧颖-上学歌(无原唱),http://em.21dtv.com/songs/60038058.mkv +唐俪-尚幸福,http://em.21dtv.com/songs/60113351.mkv +陈星-双星佛,http://em.21dtv.com/songs/60039900.mkv +张善为-失心疯,http://em.21dtv.com/songs/60038841.mkv +雨宗林-思乡愁,http://em.21dtv.com/songs/60119039.mkv +文劲松-伤心草,http://em.21dtv.com/songs/60037846.mkv +江蕙-熟悉爱,http://em.21dtv.com/songs/60095744.mkv +许茹芸-手写爱,http://em.21dtv.com/songs/60039641.mkv +旺姆-守望者,http://em.21dtv.com/songs/60124016.mkv +赵鹏飞-谁伪装,http://em.21dtv.com/songs/60101684.mkv +许志安-睡王子,http://em.21dtv.com/songs/60040295.mkv +许志安+小苦妹-睡王子,http://em.21dtv.com/songs/60040294.mkv +飞轮海-stay with you,http://em.21dtv.com/songs/60005253.mkv +ALEXANDRA BURKE-start without you,http://em.21dtv.com/songs/60005241.mkv +佚名-she wants you,http://em.21dtv.com/songs/60004960.mkv +谢安琪-私稳线,http://em.21dtv.com/songs/60040470.mkv +吕继宏-水汪汪,http://em.21dtv.com/songs/60118440.mkv +费玉清-水汪汪,http://em.21dtv.com/songs/60040231.mkv +梁汉文-身外物,http://em.21dtv.com/songs/60038267.mkv +张学友-speak without words,http://em.21dtv.com/songs/60005216.mkv +小沈阳-食为天,http://em.21dtv.com/songs/60071122.mkv +叶佩雯-死物它,http://em.21dtv.com/songs/60040627.mkv +陈奕迅-shall we talk,http://em.21dtv.com/songs/60004942.mkv +容祖儿-shall we talk(演唱会),http://em.21dtv.com/songs/60004940.mkv +林子祥+陈奕迅-shall we talk(演唱会),http://em.21dtv.com/songs/60004939.mkv +陈奕迅-shall we talk(演唱会),http://em.21dtv.com/songs/60004938.mkv +于文华-送瘟神,http://em.21dtv.com/songs/60040794.mkv +群星-手握手,http://em.21dtv.com/songs/60039636.mkv +阎维文-手挽手,http://em.21dtv.com/songs/60039631.mkv +炎黄赤子-山外山,http://em.21dtv.com/songs/60037683.mkv +黎瑞恩-身外情,http://em.21dtv.com/songs/60133137.mkv +黄耀明-身外情,http://em.21dtv.com/songs/60038266.mkv +黄耀明-身外情(演唱会),http://em.21dtv.com/songs/60038265.mkv +林子祥-谁为你,http://em.21dtv.com/songs/60040133.mkv +七郎-十五暝,http://em.21dtv.com/songs/60101857.mkv +冷漠-三碗面,http://em.21dtv.com/songs/60067390.mkv +刘德华-是我吗,http://em.21dtv.com/songs/60039516.mkv +林嘉欣-是我吗,http://em.21dtv.com/songs/60039515.mkv +幸田来未-stay with me,http://em.21dtv.com/songs/60005252.mkv +任贤齐-stay with me,http://em.21dtv.com/songs/60005251.mkv +佚名-锁五龙,http://em.21dtv.com/songs/60041042.mkv +杨燕毅-锁五龙,http://em.21dtv.com/songs/60041041.mkv +杨静-是我啦,http://em.21dtv.com/songs/60039514.mkv +佚名-闪无路,http://em.21dtv.com/songs/60037741.mkv +亚东-沙娃泪,http://em.21dtv.com/songs/60037480.mkv +何耀珊-sun with love,http://em.21dtv.com/songs/60005348.mkv +陈晓琪-shall we love(无原唱),http://em.21dtv.com/songs/60004937.mkv +五月天-孙悟空,http://em.21dtv.com/songs/60041009.mkv +REDLIGHT-SWITCH IT OFF,http://em.21dtv.com/songs/60096883.mkv +棉花糖-shall we hope,http://em.21dtv.com/songs/60063734.mkv +JPM-she wanna go,http://em.21dtv.com/songs/60071661.mkv +S.B.D.W-树尾风,http://em.21dtv.com/songs/60068670.mkv +佚名-树尾风,http://em.21dtv.com/songs/60039792.mkv +蔡义德+林姗-是我的,http://em.21dtv.com/songs/60066319.mkv +陈奕迅-shall we dance(演唱会),http://em.21dtv.com/songs/60004936.mkv +张丹-守望爱,http://em.21dtv.com/songs/60080841.mkv +BOA-shine we are,http://em.21dtv.com/songs/60004985.mkv +王琪飞-啱晒我,http://em.21dtv.com/songs/60130595.mkv +群星-SUPER DUPER FLY,http://em.21dtv.com/songs/60096882.mkv +王汇筑-SUCH A FOOL,http://em.21dtv.com/songs/60101139.mkv +尹光-沙田友,http://em.21dtv.com/songs/60083747.mkv +解晓东-是天意,http://em.21dtv.com/songs/60039498.mkv +康净淳-晒太阳,http://em.21dtv.com/songs/60037578.mkv +晏雨冰-伤透心,http://em.21dtv.com/songs/60087941.mkv +许浩-伤透心,http://em.21dtv.com/songs/60064836.mkv +林晓培-手太小,http://em.21dtv.com/songs/60039628.mkv +孙淑媚-石头心,http://em.21dtv.com/songs/60039074.mkv +林姗-石头心,http://em.21dtv.com/songs/60039073.mkv +SWEDISH HOUSE MAFIA-save the world,http://em.21dtv.com/songs/60073840.mkv +阿海-stop the war,http://em.21dtv.com/songs/60005281.mkv +GEORGE MICHAEL-spinning the wheel,http://em.21dtv.com/songs/60005222.mkv +东方神起-share the world,http://em.21dtv.com/songs/60004948.mkv +张敬轩-stop the time,http://em.21dtv.com/songs/60063755.mkv +龚月-数天数,http://em.21dtv.com/songs/60083822.mkv +仓木麻衣-stay the same,http://em.21dtv.com/songs/60073940.mkv +吴雨霏-杀她死,http://em.21dtv.com/songs/60037440.mkv +PING PUNG-杀她死(演唱会),http://em.21dtv.com/songs/60037439.mkv +佚名-stay the same,http://em.21dtv.com/songs/60005249.mkv +佟宇-石头人,http://em.21dtv.com/songs/60085717.mkv +屠洪纲-守太平,http://em.21dtv.com/songs/60039690.mkv +佚名-shower the people,http://em.21dtv.com/songs/60005015.mkv +ROBBIE WILLIAMS-shes the one,http://em.21dtv.com/songs/60004982.mkv +JAMES BLUNT-stay the night,http://em.21dtv.com/songs/60005248.mkv +佚名-双推磨,http://em.21dtv.com/songs/60039892.mkv +JUSTIN BIEBER-somebody to love,http://em.21dtv.com/songs/60063743.mkv +林子祥-史泰龙(演唱会),http://em.21dtv.com/songs/60039185.mkv +JON B.+BABYFACE-someone to love,http://em.21dtv.com/songs/60005150.mkv +佚名-somebody to love,http://em.21dtv.com/songs/60005141.mkv +东方神起-somebody to love,http://em.21dtv.com/songs/60005140.mkv +JUSTINBIE BERFTUSHER-somebody to love,http://em.21dtv.com/songs/60005139.mkv +GEORGE MICHAEL+QUEEN-somebody to love,http://em.21dtv.com/songs/60005138.mkv +D.SLICK-somebody to love,http://em.21dtv.com/songs/60005137.mkv +PETER PAN-semua tentang kita,http://em.21dtv.com/songs/60004887.mkv +Easy Shen+郑少华-石头记,http://em.21dtv.com/songs/60132070.mkv +邵雨涵-耍太极,http://em.21dtv.com/songs/60090253.mkv +黄耀明-石头记(演唱会),http://em.21dtv.com/songs/60086828.mkv +达明一派-石头记(演唱会),http://em.21dtv.com/songs/60039071.mkv +陈慧琳-石头记(演唱会),http://em.21dtv.com/songs/60039070.mkv +佚名-stairway to heaven,http://em.21dtv.com/songs/60005225.mkv +仓木麻衣-summer time gone,http://em.21dtv.com/songs/60005343.mkv +佚名-somewhere thats green,http://em.21dtv.com/songs/60005181.mkv +嘉琳-石头饭,http://em.21dtv.com/songs/60092489.mkv +丁思忖-司徒枫,http://em.21dtv.com/songs/60081302.mkv +童丽-三套车,http://em.21dtv.com/songs/60077466.mkv +佚名-三套车,http://em.21dtv.com/songs/60037332.mkv +刘子豪-三套车,http://em.21dtv.com/songs/60037331.mkv +胡维纳-随它吧,http://em.21dtv.com/songs/60098710.mkv +姚贝娜-随它吧,http://em.21dtv.com/songs/60097085.mkv +张靓颖-simply the best(演唱会),http://em.21dtv.com/songs/60071664.mkv +叶丽仪-simply the best(演唱会),http://em.21dtv.com/songs/60005043.mkv +SAM SMITH-Stay With Me,http://em.21dtv.com/songs/60101030.mkv +群星-Stay Here Forever,http://em.21dtv.com/songs/60100384.mkv +群星-STAND BY ME,http://em.21dtv.com/songs/60096881.mkv +尹光-十四坐,http://em.21dtv.com/songs/60092546.mkv +陈展鹏+阮兆祥+乔宝宝-瘦身族,http://em.21dtv.com/songs/60068668.mkv +张杰-顺时钟,http://em.21dtv.com/songs/60040314.mkv +梁咏琪-顺时针,http://em.21dtv.com/songs/60040313.mkv +苍茫-双狮座(演唱会),http://em.21dtv.com/songs/60039875.mkv +佚名-十四座,http://em.21dtv.com/songs/60039017.mkv +SOLER-生死阵,http://em.21dtv.com/songs/60038644.mkv +萌萌哒天团-三世缘,http://em.21dtv.com/songs/60114013.mkv +胡莎莎-十三月,http://em.21dtv.com/songs/60112904.mkv +方瑞娥-三生缘,http://em.21dtv.com/songs/60112716.mkv +汤潮-山水缘,http://em.21dtv.com/songs/60110330.mkv +刘梦-酥手愿,http://em.21dtv.com/songs/60110033.mkv +汤潮-山水缘,http://em.21dtv.com/songs/60071095.mkv +刘珺儿-丝丝雨,http://em.21dtv.com/songs/60040460.mkv +李琼+韩政-双双燕,http://em.21dtv.com/songs/60039890.mkv +佚名-双姝怨,http://em.21dtv.com/songs/60039881.mkv +蔡立儿-生死约,http://em.21dtv.com/songs/60038643.mkv +董贞-三世缘,http://em.21dtv.com/songs/60037329.mkv +柳岩+后弦-孙尚香,http://em.21dtv.com/songs/60041008.mkv +詹曼玲-三世香,http://em.21dtv.com/songs/60037328.mkv +TWINS-树神舞,http://em.21dtv.com/songs/60092217.mkv +浜崎あゆみ-song 4 u,http://em.21dtv.com/songs/60073913.mkv +侧田-三十天(演唱会),http://em.21dtv.com/songs/60077464.mkv +蟑螂乐队-随身听,http://em.21dtv.com/songs/60040938.mkv +陈慧琳-随身听,http://em.21dtv.com/songs/60040937.mkv +陈慧琳-随身听(演唱会),http://em.21dtv.com/songs/60040936.mkv +佚名-甩甩头,http://em.21dtv.com/songs/60039827.mkv +周国贤-十四天,http://em.21dtv.com/songs/60039016.mkv +卓依婷-声声叹,http://em.21dtv.com/songs/60038651.mkv +吴雨霏-杀死他,http://em.21dtv.com/songs/60037436.mkv +高艺菲-三生石,http://em.21dtv.com/songs/60130908.mkv +小圣哥-刷刷刷,http://em.21dtv.com/songs/60117683.mkv +小龙女-说说说,http://em.21dtv.com/songs/60116753.mkv +戴佳毅-伤伤伤,http://em.21dtv.com/songs/60111927.mkv +孙浩雨-三十岁,http://em.21dtv.com/songs/60110976.mkv +阿兰-神山颂,http://em.21dtv.com/songs/60105453.mkv +黄妃-水水水,http://em.21dtv.com/songs/60102965.mkv +阿龙正罡-伤伤伤,http://em.21dtv.com/songs/60101551.mkv +音频怪物-溯世书,http://em.21dtv.com/songs/60100639.mkv +王奕丁-苏三说,http://em.21dtv.com/songs/60100307.mkv +小龙女-说说说,http://em.21dtv.com/songs/60098296.mkv +苏永康+李克勤-深深深,http://em.21dtv.com/songs/60093077.mkv +周笔畅-苏三说,http://em.21dtv.com/songs/60087601.mkv +谢珊-伤伤伤,http://em.21dtv.com/songs/60077514.mkv +张玮琪-三十岁,http://em.21dtv.com/songs/60077463.mkv +TAYLOR SWIFT-stay stay stay,http://em.21dtv.com/songs/60073939.mkv +张文绮-甩甩甩,http://em.21dtv.com/songs/60072414.mkv +王克+阿蜜丝女孩-苏三说,http://em.21dtv.com/songs/60071162.mkv +闪亮三姐妹-谁谁谁,http://em.21dtv.com/songs/60040112.mkv +李克勤-深深深,http://em.21dtv.com/songs/60038365.mkv +谭咏麟+李克勤-深深深(演唱会),http://em.21dtv.com/songs/60038364.mkv +李克勤+容祖儿-深深深(演唱会),http://em.21dtv.com/songs/60038363.mkv +邰正宵-三十三,http://em.21dtv.com/songs/60037322.mkv +朱海君+李明洋-三生石,http://em.21dtv.com/songs/60037305.mkv +佚名-sweet sweet smile(演唱会),http://em.21dtv.com/songs/60005416.mkv +郑颖芝-stop stop stop,http://em.21dtv.com/songs/60005280.mkv +圣女天团-stop stop stop,http://em.21dtv.com/songs/60005279.mkv +佚名-stop stop stop(无原唱),http://em.21dtv.com/songs/60005278.mkv +N.FINN-M.FROOM-something so strong(无原唱),http://em.21dtv.com/songs/60005161.mkv +AT17-sing sing sing(演唱会),http://em.21dtv.com/songs/60005049.mkv +小沈阳-说书人,http://em.21dtv.com/songs/60125429.mkv +邓丽君-水上人,http://em.21dtv.com/songs/60040221.mkv +邓丽君-水上人(演唱会),http://em.21dtv.com/songs/60040220.mkv +潘越云-是谁人(无原唱),http://em.21dtv.com/songs/60039492.mkv +侧田-三十日,http://em.21dtv.com/songs/60037321.mkv +侧田-三十日(演唱会),http://em.21dtv.com/songs/60037320.mkv +孙国庆-上上签,http://em.21dtv.com/songs/60114480.mkv +初音未来-四十七,http://em.21dtv.com/songs/60103946.mkv +孙淑媚-算算去(无原唱),http://em.21dtv.com/songs/60040907.mkv +阿吉仔-涮涮去,http://em.21dtv.com/songs/60039830.mkv +佚名-深深情,http://em.21dtv.com/songs/60038362.mkv +杨妃-畲山情,http://em.21dtv.com/songs/60038188.mkv +周华健-上上签,http://em.21dtv.com/songs/60038052.mkv +斯琴高丽-上上签,http://em.21dtv.com/songs/60038051.mkv +谭凌风-丝手帕,http://em.21dtv.com/songs/60083848.mkv +陈随意+唐俪-尚速配,http://em.21dtv.com/songs/60038078.mkv +陈星光-声声暖,http://em.21dtv.com/songs/60134403.mkv +李祥祥-碎碎念,http://em.21dtv.com/songs/60114610.mkv +汤浩平+贺佩莉-三十年,http://em.21dtv.com/songs/60069783.mkv +孙淑媚-碎碎念,http://em.21dtv.com/songs/60040999.mkv +谢宇文-受伤鸟,http://em.21dtv.com/songs/60039728.mkv +门丽-算什么,http://em.21dtv.com/songs/60112330.mkv +阎琰-声声慢,http://em.21dtv.com/songs/60063235.mkv +邓福如-声声慢,http://em.21dtv.com/songs/60061578.mkv +周华健-算什么,http://em.21dtv.com/songs/60040905.mkv +谢金燕-算什么,http://em.21dtv.com/songs/60040904.mkv +彭莉-算什么,http://em.21dtv.com/songs/60040903.mkv +潘玮柏-谁是mvp,http://em.21dtv.com/songs/60040089.mkv +高胜美-声声慢,http://em.21dtv.com/songs/60038650.mkv +王雅洁+平安-三沙恋,http://em.21dtv.com/songs/60125958.mkv +王艺霏-碎碎恋,http://em.21dtv.com/songs/60125945.mkv +陈学冬-碎碎恋,http://em.21dtv.com/songs/60123293.mkv +陈泳泼-山水恋,http://em.21dtv.com/songs/60115499.mkv +薰妮-丝丝泪,http://em.21dtv.com/songs/60093130.mkv +胡美仪-丝丝泪,http://em.21dtv.com/songs/60093063.mkv +叶振棠-双色龙,http://em.21dtv.com/songs/60092435.mkv +汤潮-受伤了,http://em.21dtv.com/songs/60090040.mkv +JPM-singing 4 love,http://em.21dtv.com/songs/60071665.mkv +乐双生-双生莲,http://em.21dtv.com/songs/60062573.mkv +沙靖杰-生死恋,http://em.21dtv.com/songs/60061577.mkv +佚名-丝丝泪,http://em.21dtv.com/songs/60040458.mkv +詹雅雯-生死恋,http://em.21dtv.com/songs/60038634.mkv +佚名-生死恋,http://em.21dtv.com/songs/60038633.mkv +孙耀威-三十六,http://em.21dtv.com/songs/60037317.mkv +SCOUTING FOR GIRLS-shes so lovely,http://em.21dtv.com/songs/60004981.mkv +七朵花-试试看,http://em.21dtv.com/songs/60083814.mkv +德永英明-砂时计,http://em.21dtv.com/songs/60105906.mkv +锦绣二重唱-水世界,http://em.21dtv.com/songs/60088820.mkv +玖月奇迹-山水间(演唱会),http://em.21dtv.com/songs/60085679.mkv +容祖儿-搜神记,http://em.21dtv.com/songs/60040807.mkv +黄凤仪-烁烁俊,http://em.21dtv.com/songs/60040445.mkv +德永英明-砂时计,http://em.21dtv.com/songs/60037485.mkv +黄妃-双生花,http://em.21dtv.com/songs/60134499.mkv +黄妃-双生花,http://em.21dtv.com/songs/60133126.mkv +李千娜-说实话,http://em.21dtv.com/songs/60120610.mkv +格格-水上花,http://em.21dtv.com/songs/60117860.mkv +黄英-水上花,http://em.21dtv.com/songs/60117416.mkv +明阳-石山魂,http://em.21dtv.com/songs/60077616.mkv +HUNTER HAYES-somebodys heartbreak,http://em.21dtv.com/songs/60073906.mkv +孙燕姿-是时候,http://em.21dtv.com/songs/60061587.mkv +张惠妹-说傻话(演唱会),http://em.21dtv.com/songs/60040413.mkv +王菲菲-水上花,http://em.21dtv.com/songs/60040219.mkv +石头-shes gone,http://em.21dtv.com/songs/60073868.mkv +超新星-shes gone,http://em.21dtv.com/songs/60073867.mkv +石头-she s gone,http://em.21dtv.com/songs/60071660.mkv +DECEMBER-shes gone,http://em.21dtv.com/songs/60067978.mkv +卷毛兜兜-数数歌,http://em.21dtv.com/songs/60066324.mkv +伍佰-时尚狗,http://em.21dtv.com/songs/60039157.mkv +甄秀珍-上山岗,http://em.21dtv.com/songs/60038050.mkv +黄宗玮+谢莉婷-双双飞,http://em.21dtv.com/songs/60126472.mkv +谢莉婷+黄宗玮-双双飞,http://em.21dtv.com/songs/60107227.mkv +小琢-双双飞,http://em.21dtv.com/songs/60105776.mkv +张蓉蓉-双双飞,http://em.21dtv.com/songs/60039888.mkv +佚名-双双飞,http://em.21dtv.com/songs/60039887.mkv +方怡萍-双双飞,http://em.21dtv.com/songs/60039886.mkv +钟佳宜+馨馨-双生儿,http://em.21dtv.com/songs/60039873.mkv +何乾梁-失散地,http://em.21dtv.com/songs/60133362.mkv +薛松-嗖嗖哒,http://em.21dtv.com/songs/60132866.mkv +孙子涵-傻傻等,http://em.21dtv.com/songs/60128959.mkv +孙子涵-傻傻等,http://em.21dtv.com/songs/60127898.mkv +杨乐-傻傻的,http://em.21dtv.com/songs/60117827.mkv +梁静茹-瘦瘦的,http://em.21dtv.com/songs/60116975.mkv +袁咏琳-傻傻地(演唱会),http://em.21dtv.com/songs/60066289.mkv +梁静茹-瘦瘦的,http://em.21dtv.com/songs/60039730.mkv +万芳-傻傻的,http://em.21dtv.com/songs/60037545.mkv +CELINE DION-sil suffisait daimer,http://em.21dtv.com/songs/60005026.mkv +SWEET SENSATION-sad sweet dreamer,http://em.21dtv.com/songs/60004783.mkv +王梓轩-说时迟,http://em.21dtv.com/songs/60064916.mkv +NATTHEW-shes bad,http://em.21dtv.com/songs/60073866.mkv +佚名-star spangled banner(无原唱),http://em.21dtv.com/songs/60005237.mkv +佚名-song sung blue,http://em.21dtv.com/songs/60005188.mkv +陈瑞-深深爱,http://em.21dtv.com/songs/60124646.mkv +文杰-深深爱,http://em.21dtv.com/songs/60100071.mkv +韩光-傻傻爱,http://em.21dtv.com/songs/60094343.mkv +江蕙-熟识爱,http://em.21dtv.com/songs/60039765.mkv +凤凰传奇-深深爱,http://em.21dtv.com/songs/60038347.mkv +袁子皓-傻傻爱,http://em.21dtv.com/songs/60037544.mkv +谢娜-傻傻爱,http://em.21dtv.com/songs/60037543.mkv +谢娜-傻傻爱(演唱会),http://em.21dtv.com/songs/60037542.mkv +NEWS-四鉥士,http://em.21dtv.com/songs/60134772.mkv +秀兰玛雅-算日子,http://em.21dtv.com/songs/60040902.mkv +佚名-谁人知,http://em.21dtv.com/songs/60040086.mkv +刘德华-谁人知,http://em.21dtv.com/songs/60040085.mkv +佚名-烧肉粽,http://em.21dtv.com/songs/60038100.mkv +梅花三姐妹-烧肉粽,http://em.21dtv.com/songs/60038099.mkv +邓丽君-烧肉粽(演唱会),http://em.21dtv.com/songs/60038098.mkv +方大同+薛凯琪-四人游,http://em.21dtv.com/songs/60040701.mkv +方瑞娥+高向鹏-双人影,http://em.21dtv.com/songs/60039869.mkv +侯美仪-双人影(无原唱),http://em.21dtv.com/songs/60039868.mkv +豪记大对唱-双人影(无原唱),http://em.21dtv.com/songs/60039867.mkv +绚香-三日月,http://em.21dtv.com/songs/60037300.mkv +方大同-三人游(演唱会),http://em.21dtv.com/songs/60037299.mkv +高向鹏-双人影(无原唱),http://em.21dtv.com/songs/60030509.mkv +江志丰-随人行,http://em.21dtv.com/songs/60121853.mkv +罗力威-三人行,http://em.21dtv.com/songs/60077461.mkv +林子祥+岑宁儿+BONG-三人行,http://em.21dtv.com/songs/60064822.mkv +邱芸子-随人行,http://em.21dtv.com/songs/60040934.mkv +林子祥-三人行,http://em.21dtv.com/songs/60037294.mkv +Y.I.Y.O-三人行,http://em.21dtv.com/songs/60037293.mkv +TWINS+林子祥-三人行(演唱会),http://em.21dtv.com/songs/60037292.mkv +王童语-双人舞,http://em.21dtv.com/songs/60112116.mkv +李玟-双人舞,http://em.21dtv.com/songs/60080621.mkv +陈蕊蕊-伤人舞,http://em.21dtv.com/songs/60067403.mkv +王心凌-双人舞,http://em.21dtv.com/songs/60039866.mkv +潘玮柏-双人舞,http://em.21dtv.com/songs/60039865.mkv +许嵩-双人旁,http://em.21dtv.com/songs/60039863.mkv +张强-萨如拉,http://em.21dtv.com/songs/60127974.mkv +荣联合-萨日朗,http://em.21dtv.com/songs/60077442.mkv +FRANK OCEAN-super rich kids,http://em.21dtv.com/songs/60082347.mkv +左小祖咒-杀人剂,http://em.21dtv.com/songs/60067394.mkv +彩贝与海-生日会,http://em.21dtv.com/songs/60135266.mkv +红蔷薇-生日好,http://em.21dtv.com/songs/60112140.mkv +罗百吉+宝贝-生日party歌,http://em.21dtv.com/songs/60086821.mkv +晓风久久-生日歌,http://em.21dtv.com/songs/60116866.mkv +刘紫玲-生日歌,http://em.21dtv.com/songs/60107543.mkv +关寅飞-世人歌,http://em.21dtv.com/songs/60093601.mkv +卓依婷-生日歌,http://em.21dtv.com/songs/60089184.mkv +张德兰+区瑞强-生日歌,http://em.21dtv.com/songs/60038603.mkv +B2-生日歌(跳舞版),http://em.21dtv.com/songs/60038602.mkv +艾歌-双人床,http://em.21dtv.com/songs/60067444.mkv +李国祥-双人床,http://em.21dtv.com/songs/60039859.mkv +张可儿-锁情缘,http://em.21dtv.com/songs/60094891.mkv +卓依婷-撒情网,http://em.21dtv.com/songs/60087467.mkv +冷沐柏-失去痛,http://em.21dtv.com/songs/60125161.mkv +吴奇隆+刘诗诗-手牵手,http://em.21dtv.com/songs/60126695.mkv +吴奇隆+刘诗诗-手牵手,http://em.21dtv.com/songs/60119345.mkv +刘德华-17岁(HD),http://em.21dtv.com/songs/10012628.mkv +苏醒-神泉水,http://em.21dtv.com/songs/60105323.mkv +萧敬腾+陶喆-手牵手,http://em.21dtv.com/songs/60103547.mkv +伊能静-十七岁,http://em.21dtv.com/songs/60085714.mkv +陈奂仁-手牵手,http://em.21dtv.com/songs/60083816.mkv +胡灵-手牵手,http://em.21dtv.com/songs/60081784.mkv +吴彤-手牵手,http://em.21dtv.com/songs/60039624.mkv +群星-手牵手,http://em.21dtv.com/songs/60039623.mkv +刘德华-十七岁,http://em.21dtv.com/songs/60039000.mkv +刘德华-十七岁(演唱会),http://em.21dtv.com/songs/60038999.mkv +S.H.E-神枪手,http://em.21dtv.com/songs/60038496.mkv +陈小春-神奇事,http://em.21dtv.com/songs/60038492.mkv +DROWNNG POO-37 stitches,http://em.21dtv.com/songs/60000018.mkv +庄学忠-送情人,http://em.21dtv.com/songs/60087768.mkv +朱孝天-傻情人,http://em.21dtv.com/songs/60037541.mkv +伍佰-傻情人(演唱会),http://em.21dtv.com/songs/60037540.mkv +苏玮-山泉情,http://em.21dtv.com/songs/60108836.mkv +曾慧+邓志驹-诉前情,http://em.21dtv.com/songs/60040844.mkv +姜木-失去你,http://em.21dtv.com/songs/60077584.mkv +萧亚轩-失去你,http://em.21dtv.com/songs/60038831.mkv +肖阳-失去你,http://em.21dtv.com/songs/60038830.mkv +曹雅雯-失去你,http://em.21dtv.com/songs/60038829.mkv +肖阳-失去你(演唱会),http://em.21dtv.com/songs/60038828.mkv +马健涛-杀阡陌,http://em.21dtv.com/songs/60114888.mkv +金岩-思情郎,http://em.21dtv.com/songs/60095112.mkv +闫学晶-送情郎,http://em.21dtv.com/songs/60071160.mkv +代理仁-送情郎,http://em.21dtv.com/songs/60068691.mkv +庄学忠-送情郎,http://em.21dtv.com/songs/60040791.mkv +佚名-送情郎,http://em.21dtv.com/songs/60040790.mkv +王美-送情郎,http://em.21dtv.com/songs/60040789.mkv +江若琳-伤情路,http://em.21dtv.com/songs/60037824.mkv +江若琳-伤情路(演唱会),http://em.21dtv.com/songs/60037823.mkv +林俊吉+洪百慧-深情海,http://em.21dtv.com/songs/60064851.mkv +CONNIE吕莘-说情话,http://em.21dtv.com/songs/60040412.mkv +冷漠+杨小曼-俗情歌,http://em.21dtv.com/songs/60099789.mkv +乌兰图雅-送亲歌,http://em.21dtv.com/songs/60094800.mkv +兰卡布尺-送情歌,http://em.21dtv.com/songs/60090660.mkv +戴梅君-烧情歌,http://em.21dtv.com/songs/60069796.mkv +阿其木格-送亲歌,http://em.21dtv.com/songs/60040788.mkv +李克勤-输情歌,http://em.21dtv.com/songs/60039756.mkv +姜洋-抒情歌,http://em.21dtv.com/songs/60039740.mkv +陈扬杰-深情歌,http://em.21dtv.com/songs/60038320.mkv +泳儿-睡前服,http://em.21dtv.com/songs/60080823.mkv +陈星-双亲佛,http://em.21dtv.com/songs/60039858.mkv +梁剑东-神曲2,http://em.21dtv.com/songs/60122918.mkv +张萌萌-三七度,http://em.21dtv.com/songs/60077457.mkv +谢安琪-十七度,http://em.21dtv.com/songs/60038997.mkv +谢安琪-十七度(HD演唱会),http://em.21dtv.com/songs/60038996.mkv +郑秀文-说清楚,http://em.21dtv.com/songs/60040411.mkv +Hin-碎片中,http://em.21dtv.com/songs/60115591.mkv +陶辰宇-水瓶座,http://em.21dtv.com/songs/60113081.mkv +陈晓东-水瓶座,http://em.21dtv.com/songs/60040215.mkv +林佑威-三拍子,http://em.21dtv.com/songs/60037279.mkv +段丽阳+陈隆赫-酸葡萄,http://em.21dtv.com/songs/60040873.mkv +张韶涵+龚琳娜+黄小琥+顺子-谁怕谁,http://em.21dtv.com/songs/60094106.mkv +许慧欣-谁怕谁,http://em.21dtv.com/songs/60040046.mkv +4 IN LOVE-谁怕谁,http://em.21dtv.com/songs/60040045.mkv +五条人乐队-石牌桥,http://em.21dtv.com/songs/60133351.mkv +小曲儿+晃儿-双抛桥,http://em.21dtv.com/songs/60083825.mkv +张文绮-水喷喷,http://em.21dtv.com/songs/60085743.mkv +汪子琳-水喷喷(无原唱),http://em.21dtv.com/songs/60040213.mkv +伍华-水瓶男,http://em.21dtv.com/songs/60096925.mkv +谢中杰-杀破狼,http://em.21dtv.com/songs/60112243.mkv +黄雅莉-杀破狼,http://em.21dtv.com/songs/60037432.mkv +JS-杀破狼,http://em.21dtv.com/songs/60037431.mkv +范玮琪-手帕交,http://em.21dtv.com/songs/60039622.mkv +方荣翔-审潘洪,http://em.21dtv.com/songs/60038521.mkv +SPEED-s p d,http://em.21dtv.com/songs/60073825.mkv +TULISA-sight of you,http://em.21dtv.com/songs/60073877.mkv +佚名-stuck on you,http://em.21dtv.com/songs/60005303.mkv +LIONEL RICHIE-stuck on you,http://em.21dtv.com/songs/60005302.mkv +佚名-somewhere out there,http://em.21dtv.com/songs/60005178.mkv +佚名-sound of silence,http://em.21dtv.com/songs/60005209.mkv +GARFUNKEL+SIMON-sound of silence,http://em.21dtv.com/songs/60005208.mkv +邓紫棋-SOMEDAY I'LL FLY,http://em.21dtv.com/songs/60096880.mkv +HIT-5-Shine On Me,http://em.21dtv.com/songs/60080399.mkv +林一峰-state of mind(演唱会),http://em.21dtv.com/songs/60005243.mkv +CASCADA-summer of love,http://em.21dtv.com/songs/60066725.mkv +PERFUME-spring of life,http://em.21dtv.com/songs/60066722.mkv +王菲-summer of love,http://em.21dtv.com/songs/60005339.mkv +卢凯彤-summer of love,http://em.21dtv.com/songs/60005338.mkv +STEPS-summer of love,http://em.21dtv.com/songs/60005337.mkv +卢凯彤-summer of love(演唱会),http://em.21dtv.com/songs/60005336.mkv +RALPH MCTELL-streets of london,http://em.21dtv.com/songs/60005295.mkv +DONNY OSMOND-soldier of love,http://em.21dtv.com/songs/60005123.mkv +林忆莲-seasons of love,http://em.21dtv.com/songs/60004873.mkv +佚名-sea of love,http://em.21dtv.com/songs/60004862.mkv +ALAN-seed of green,http://em.21dtv.com/songs/60004881.mkv +GLORIA ESTEFAN-seal our fate,http://em.21dtv.com/songs/60004863.mkv +周华健-songs of birds,http://em.21dtv.com/songs/60005189.mkv +佚名-song of abc,http://em.21dtv.com/songs/60005187.mkv +翁立友-思念雨,http://em.21dtv.com/songs/60126073.mkv +荒山亮-少年游,http://em.21dtv.com/songs/60115353.mkv +吴俊宏-少年游,http://em.21dtv.com/songs/60101291.mkv +江蕙+阿杜-思念呦,http://em.21dtv.com/songs/60095722.mkv +江蕙+阿杜-思念哟,http://em.21dtv.com/songs/60040571.mkv +秀兰玛雅-思念伊,http://em.21dtv.com/songs/60040570.mkv +龙千玉-思念伊,http://em.21dtv.com/songs/60040569.mkv +陈雷-思念伊,http://em.21dtv.com/songs/60040568.mkv +优客李林-少年游,http://em.21dtv.com/songs/60038150.mkv +魏晨-少年游,http://em.21dtv.com/songs/60038149.mkv +任贤齐-少年游,http://em.21dtv.com/songs/60038148.mkv +林志炫-少年游,http://em.21dtv.com/songs/60038147.mkv +董事长乐团-少年乁,http://em.21dtv.com/songs/60038144.mkv +JESSE MCCARTNEY-shes no you,http://em.21dtv.com/songs/60004979.mkv +威葳-思念雪,http://em.21dtv.com/songs/60040567.mkv +周慧敏-少女心,http://em.21dtv.com/songs/60038175.mkv +佚名-少女心,http://em.21dtv.com/songs/60038174.mkv +佚名-少年心,http://em.21dtv.com/songs/60038141.mkv +苏慧伦-少女问,http://em.21dtv.com/songs/60038173.mkv +刘茂雄-思念她,http://em.21dtv.com/songs/60110041.mkv +彦蓉-水弄堂,http://em.21dtv.com/songs/60068675.mkv +佚名-shes not there,http://em.21dtv.com/songs/60004980.mkv +尚丹-少年时,http://em.21dtv.com/songs/60115126.mkv +TFBOYS-少年说,http://em.21dtv.com/songs/60114960.mkv +Twins-SNS,http://em.21dtv.com/songs/60113202.mkv +帕尔哈提-思念谁,http://em.21dtv.com/songs/60104992.mkv +KEITA-slide n step,http://em.21dtv.com/songs/60073891.mkv +巫启贤-思念谁,http://em.21dtv.com/songs/60040560.mkv +大台风乐团-傻女人,http://em.21dtv.com/songs/60125346.mkv +大台风乐团-傻女人,http://em.21dtv.com/songs/60119381.mkv +徐华凤-傻女人,http://em.21dtv.com/songs/60091188.mkv +孙紫晴-傻女人,http://em.21dtv.com/songs/60087668.mkv +凌飞-傻女人,http://em.21dtv.com/songs/60037538.mkv +詹曼玲-傻女人(无原唱),http://em.21dtv.com/songs/60037537.mkv +邱贤桂-十年情,http://em.21dtv.com/songs/60124549.mkv +余天龙-思念情,http://em.21dtv.com/songs/60064919.mkv +陈依婷-少年情,http://em.21dtv.com/songs/60038136.mkv +成龙-少年强,http://em.21dtv.com/songs/60038134.mkv +林海峰-屎尿屁(演唱会),http://em.21dtv.com/songs/60039202.mkv +塩谷早耶香-Snow Flakes Love,http://em.21dtv.com/songs/60099902.mkv +陈雷-思念你,http://em.21dtv.com/songs/60097033.mkv +蒋小涵-山妞妞,http://em.21dtv.com/songs/60090194.mkv +李玲玉-思念你,http://em.21dtv.com/songs/60040545.mkv +江蕙-思念你,http://em.21dtv.com/songs/60040544.mkv +黄阅+黄伊汶-思念你,http://em.21dtv.com/songs/60040543.mkv +慕钰华-思念你(无原唱),http://em.21dtv.com/songs/60040542.mkv +高寒-傻妞妞,http://em.21dtv.com/songs/60037530.mkv +李晨-少年梦,http://em.21dtv.com/songs/60113633.mkv +JOE JONAS-see no more,http://em.21dtv.com/songs/60060903.mkv +王江发-少年梦,http://em.21dtv.com/songs/60038133.mkv +麦子杰-少年梦,http://em.21dtv.com/songs/60038132.mkv +区瑞强-少年梦(演唱会),http://em.21dtv.com/songs/60038131.mkv +陈黎明-十年路(演唱会),http://em.21dtv.com/songs/60038988.mkv +春妹-少年郎,http://em.21dtv.com/songs/60038130.mkv +文卓-少年狂,http://em.21dtv.com/songs/60129164.mkv +赵传-少年狂(现场版),http://em.21dtv.com/songs/60098788.mkv +付辛博-斯诺克(演唱会),http://em.21dtv.com/songs/60062358.mkv +金莎-刹那间,http://em.21dtv.com/songs/60012237.mkv +佚名-刹那间(无原唱),http://em.21dtv.com/songs/60012236.mkv +白目乐队-死男孩,http://em.21dtv.com/songs/60135598.mkv +段欣芮-算你狠,http://em.21dtv.com/songs/60120686.mkv +张文绮-傻女孩,http://em.21dtv.com/songs/60116794.mkv +练创文-十年后,http://em.21dtv.com/songs/60077604.mkv +邓紫祺-塞纳河,http://em.21dtv.com/songs/60077444.mkv +邓紫棋-塞纳河(演唱会),http://em.21dtv.com/songs/60064818.mkv +陈小春-算你狠,http://em.21dtv.com/songs/60040901.mkv +周汤豪-super nice girl,http://em.21dtv.com/songs/60066727.mkv +周汤豪-s n g,http://em.21dtv.com/songs/60066715.mkv +祖海-神女峰,http://em.21dtv.com/songs/60085699.mkv +满江-水牛儿,http://em.21dtv.com/songs/60088237.mkv +蔡义德-少年的,http://em.21dtv.com/songs/60069797.mkv +ABBA-summer night city,http://em.21dtv.com/songs/60005333.mkv +李利依-思念baby,http://em.21dtv.com/songs/60068684.mkv +TATA YOUNG-sexy naughty bitchy,http://em.21dtv.com/songs/60004914.mkv +G Dragon-少年啊,http://em.21dtv.com/songs/60113163.mkv +张学友-刹那爱,http://em.21dtv.com/songs/60012234.mkv +卓文萱-super no 1,http://em.21dtv.com/songs/60005369.mkv +林佑威+李威-三明治SANDWICH,http://em.21dtv.com/songs/60091419.mkv +WEWE-三明治SANDWICH,http://em.21dtv.com/songs/60090450.mkv +洪真英-竖拇指,http://em.21dtv.com/songs/60120714.mkv +野马-山妹子,http://em.21dtv.com/songs/60085677.mkv +谢安源-山妹子,http://em.21dtv.com/songs/60067397.mkv +潘长江+刘春梅-山妹子,http://em.21dtv.com/songs/60037661.mkv +陈慧琳-三秒钟,http://em.21dtv.com/songs/60037255.mkv +陈慧琳-三秒钟(演唱会),http://em.21dtv.com/songs/60037254.mkv +Chinese Football-守门员,http://em.21dtv.com/songs/60129905.mkv +潇蕾蕾-神秘园,http://em.21dtv.com/songs/60101663.mkv +玖月奇迹-水墨缘(演唱会),http://em.21dtv.com/songs/60085742.mkv +泳儿-失眠药(演唱会),http://em.21dtv.com/songs/60064865.mkv +张学友-失眠夜,http://em.21dtv.com/songs/60038811.mkv +陈瑞-水墨雪,http://em.21dtv.com/songs/60124645.mkv +石文-盛末夏,http://em.21dtv.com/songs/60077574.mkv +李宇春-生命线,http://em.21dtv.com/songs/60077560.mkv +黄西田-烧抹退,http://em.21dtv.com/songs/60038097.mkv +佚名-spending my time,http://em.21dtv.com/songs/60005218.mkv +刘浩龙-说明书,http://em.21dtv.com/songs/60099117.mkv +吴雨霏-生命树,http://em.21dtv.com/songs/60071111.mkv +佚名-手莫伸,http://em.21dtv.com/songs/60039618.mkv +佚名-圣母颂,http://em.21dtv.com/songs/60038684.mkv +郑钧-生命树,http://em.21dtv.com/songs/60038576.mkv +LEN-steal my sunshine(无原唱),http://em.21dtv.com/songs/60005260.mkv +张靓颖-思美人,http://em.21dtv.com/songs/60132471.mkv +崔子格-思美人,http://em.21dtv.com/songs/60132407.mkv +姜佑泽-双面人,http://em.21dtv.com/songs/60110125.mkv +Mr.-双面人,http://em.21dtv.com/songs/60109855.mkv +SNH48-睡美人(演),http://em.21dtv.com/songs/60099036.mkv +四分卫-睡美人,http://em.21dtv.com/songs/60090863.mkv +吴奇隆-睡美人,http://em.21dtv.com/songs/60040293.mkv +古巨基-睡美人,http://em.21dtv.com/songs/60040292.mkv +郑伊健-双面人,http://em.21dtv.com/songs/60039856.mkv +伍佰-双面人,http://em.21dtv.com/songs/60039855.mkv +KANGNAM(M.I.B)-say my name,http://em.21dtv.com/songs/60063729.mkv +DESTINY'S CHILD-say my name,http://em.21dtv.com/songs/60004836.mkv +影子兄弟-山妹妹,http://em.21dtv.com/songs/60116828.mkv +刘尊-傻妹妹,http://em.21dtv.com/songs/60037528.mkv +舒清-思蒙恋,http://em.21dtv.com/songs/60131752.mkv +方瑞娥-尚美丽,http://em.21dtv.com/songs/60066302.mkv +吴炜-宿命论,http://em.21dtv.com/songs/60051513.mkv +佚名-什么乐,http://em.21dtv.com/songs/60038412.mkv +蔡秋凤-什么乐(无原唱),http://em.21dtv.com/songs/60038411.mkv +阿牛-speak my language,http://em.21dtv.com/songs/60005215.mkv +LARA'S THEME-somewhere my love,http://em.21dtv.com/songs/60005176.mkv +ANDY WILLIAMS-somewhere my love,http://em.21dtv.com/songs/60005175.mkv +ROBYN-show me love,http://em.21dtv.com/songs/60005002.mkv +VP1-失眠控,http://em.21dtv.com/songs/60123564.mkv +[Group] +groupName=十六万歌曲MV等 - 30 +格日勒图-上马酒,http://em.21dtv.com/songs/60112804.mkv +苏晴-双面娇,http://em.21dtv.com/songs/60083824.mkv +陈茂丰+王中平-尚麻吉,http://em.21dtv.com/songs/60038075.mkv +ONE DIRECTION-stole my heart,http://em.21dtv.com/songs/60073948.mkv +徐小凤-什么话(演唱会),http://em.21dtv.com/songs/60038408.mkv +刘雅丽+陈洁灵-什么话(演唱会),http://em.21dtv.com/songs/60038407.mkv +张宇-沙漠海,http://em.21dtv.com/songs/60037460.mkv +佚名-show me heaven,http://em.21dtv.com/songs/60005001.mkv +黄义达-set me free,http://em.21dtv.com/songs/60004899.mkv +KT TUNSTALL-saving my face,http://em.21dtv.com/songs/60004828.mkv +思密达天团-思密达,http://em.21dtv.com/songs/60114558.mkv +CAGE THE ELEPHANT-shake me down,http://em.21dtv.com/songs/60073860.mkv +王麟-思密达,http://em.21dtv.com/songs/60068683.mkv +王麟+老猫-思密达,http://em.21dtv.com/songs/60068682.mkv +佚名-晒牧草,http://em.21dtv.com/songs/60037577.mkv +MIRANDA COSGROVE-stay my baby,http://em.21dtv.com/songs/60060914.mkv +谢华-狩猎者,http://em.21dtv.com/songs/60123176.mkv +张博-失落症,http://em.21dtv.com/songs/60071114.mkv +方大同-苏丽珍,http://em.21dtv.com/songs/60040817.mkv +佚名-说聊斋,http://em.21dtv.com/songs/60040400.mkv +彭丽媛-说聊斋,http://em.21dtv.com/songs/60040399.mkv +郭公芳-说聊斋,http://em.21dtv.com/songs/60040398.mkv +玄乐队-丝路谣,http://em.21dtv.com/songs/60132705.mkv +孙英男-失乐园,http://em.21dtv.com/songs/60110996.mkv +郑虹+胡彦斌-Someone Like You,http://em.21dtv.com/songs/60099541.mkv +SCORPIONS-still loving you(演唱会),http://em.21dtv.com/songs/60073945.mkv +AAA-still love you,http://em.21dtv.com/songs/60070402.mkv +李明洋-失恋雨,http://em.21dtv.com/songs/60069811.mkv +郑虹-someone like you,http://em.21dtv.com/songs/60069142.mkv +ADEKE-someone like you,http://em.21dtv.com/songs/60061940.mkv +高胜美-水涟漪,http://em.21dtv.com/songs/60040204.mkv +邓丽君-水涟漪,http://em.21dtv.com/songs/60040203.mkv +黄乙玲-失恋雨,http://em.21dtv.com/songs/60038774.mkv +杨宗宪-失恋烟,http://em.21dtv.com/songs/60038770.mkv +佚名-失乐园,http://em.21dtv.com/songs/60038726.mkv +杨坤-失乐园,http://em.21dtv.com/songs/60038725.mkv +陈淑桦-失乐园,http://em.21dtv.com/songs/60038724.mkv +草蜢-失乐园,http://em.21dtv.com/songs/60038723.mkv +容祖儿-失乐园(演唱会),http://em.21dtv.com/songs/60038722.mkv +蔡健雅-失乐园(演唱会),http://em.21dtv.com/songs/60038721.mkv +KEITH URBAN-somebody like you,http://em.21dtv.com/songs/60005136.mkv +THE BEATLES-she loves you,http://em.21dtv.com/songs/60004958.mkv +阿龙正刚-死了心,http://em.21dtv.com/songs/60040623.mkv +林宇中-失恋学,http://em.21dtv.com/songs/60038769.mkv +2PM-365,http://em.21dtv.com/songs/60109789.mkv +陈小春-失恋王,http://em.21dtv.com/songs/60038765.mkv +陈小春-失恋王(演唱会),http://em.21dtv.com/songs/60038764.mkv +冯伟杰-水莲天,http://em.21dtv.com/songs/60118371.mkv +苏有朋-三里屯,http://em.21dtv.com/songs/60088532.mkv +JT HODGES-sleepy little town,http://em.21dtv.com/songs/60073890.mkv +中国娃娃-酸辣汤,http://em.21dtv.com/songs/60040872.mkv +陈盈洁-失恋亭,http://em.21dtv.com/songs/60038761.mkv +李翊君-上了天(无原唱),http://em.21dtv.com/songs/60038044.mkv +浜崎あゆみ-sexy little things,http://em.21dtv.com/songs/60004912.mkv +陈冰-上了锁,http://em.21dtv.com/songs/60124610.mkv +后弦-少林寺,http://em.21dtv.com/songs/60087538.mkv +丁丁-失恋 Style,http://em.21dtv.com/songs/60080948.mkv +佚名-手拉手,http://em.21dtv.com/songs/60039616.mkv +群星-手拉手,http://em.21dtv.com/songs/60039615.mkv +群星-手拉手(演唱会),http://em.21dtv.com/songs/60039614.mkv +蛋堡-收敛水,http://em.21dtv.com/songs/60039599.mkv +阎维文-少林僧,http://em.21dtv.com/songs/60038118.mkv +BAY CITY ROLLERS-summer love sensation,http://em.21dtv.com/songs/60005332.mkv +RUBBER BAND-simple love song,http://em.21dtv.com/songs/60005041.mkv +佚名-silly love songs,http://em.21dtv.com/songs/60005038.mkv +PAUL MCCARTNEY-silly love songs,http://em.21dtv.com/songs/60005037.mkv +杨宗宪-失落情,http://em.21dtv.com/songs/60038795.mkv +西山乐队-30年,http://em.21dtv.com/songs/60127380.mkv +陈六十四-少六年,http://em.21dtv.com/songs/60124609.mkv +陈晓+刘忻-十六年,http://em.21dtv.com/songs/60108127.mkv +陈一凡-十六年,http://em.21dtv.com/songs/60086826.mkv +许颖-锁麟囊,http://em.21dtv.com/songs/60041038.mkv +李世济-锁麟囊,http://em.21dtv.com/songs/60041037.mkv +李敏-思恋你(无原唱),http://em.21dtv.com/songs/60040480.mkv +谭维维-三厘米,http://em.21dtv.com/songs/60118060.mkv +黄思婷-碎恋梦(无原唱),http://em.21dtv.com/songs/60040996.mkv +黄品源-睡了没,http://em.21dtv.com/songs/60040290.mkv +李君-水灵灵,http://em.21dtv.com/songs/60105136.mkv +杨振龙+BENYLAN+MC茶米-sha la la,http://em.21dtv.com/songs/60066718.mkv +水琉璃-水琉璃,http://em.21dtv.com/songs/60040206.mkv +中国娃娃-少来了(无原唱),http://em.21dtv.com/songs/60038109.mkv +张含韵-闪亮亮,http://em.21dtv.com/songs/60037731.mkv +佚名-sha la la,http://em.21dtv.com/songs/60004920.mkv +德德玛-苏丽珂,http://em.21dtv.com/songs/60091215.mkv +佚名-苏丽柯,http://em.21dtv.com/songs/60040816.mkv +潘成+王瑞淇-失恋季,http://em.21dtv.com/songs/60077580.mkv +刘育绫-失恋酒,http://em.21dtv.com/songs/60038753.mkv +陈美安-失恋酒,http://em.21dtv.com/songs/60038752.mkv +陈文浩-莎啷嘿,http://em.21dtv.com/songs/60120089.mkv +蒋姗倍-圣莲花,http://em.21dtv.com/songs/60112933.mkv +祖健-山里红,http://em.21dtv.com/songs/60106173.mkv +百慕三石-石榴花,http://em.21dtv.com/songs/60099431.mkv +群星合唱-梭罗河,http://em.21dtv.com/songs/60088478.mkv +祁隆-山里红,http://em.21dtv.com/songs/60072368.mkv +乌兰托娅-塑料花,http://em.21dtv.com/songs/60061612.mkv +佚名-梭罗河,http://em.21dtv.com/songs/60041019.mkv +罗艳芬-梭罗河,http://em.21dtv.com/songs/60041018.mkv +佚名-梭罗河(伦巴),http://em.21dtv.com/songs/60041017.mkv +张秀卿-水莲花,http://em.21dtv.com/songs/60040202.mkv +许志安-失恋河,http://em.21dtv.com/songs/60038751.mkv +黄妃-沙浪嘿,http://em.21dtv.com/songs/60037452.mkv +吴富山+王满娇-思恋歌,http://em.21dtv.com/songs/60040479.mkv +龙千玉-失恋歌,http://em.21dtv.com/songs/60038749.mkv +何佳乐-舍离断,http://em.21dtv.com/songs/60132197.mkv +谢安琪-山林道,http://em.21dtv.com/songs/60126198.mkv +何佳乐-舍离断,http://em.21dtv.com/songs/60120306.mkv +谢安琪-山林道,http://em.21dtv.com/songs/60119978.mkv +谢安琪-山林道,http://em.21dtv.com/songs/60118914.mkv +佚名-十里墩,http://em.21dtv.com/songs/60038971.mkv +佚名-seven lonely days,http://em.21dtv.com/songs/60004904.mkv +曾淑勤-sa li da(演唱会),http://em.21dtv.com/songs/60004778.mkv +郑少秋-输流传,http://em.21dtv.com/songs/60093289.mkv +蒲庭龙-三轮车,http://em.21dtv.com/songs/60077453.mkv +KEANE-sovereign light cafe,http://em.21dtv.com/songs/60073924.mkv +詹曼铃-失恋茶,http://em.21dtv.com/songs/60063357.mkv +童唱-三轮车,http://em.21dtv.com/songs/60037251.mkv +佚名-sweet like chocolate,http://em.21dtv.com/songs/60005411.mkv +陈汉-伤离别,http://em.21dtv.com/songs/60122239.mkv +台湾爽乐团-算了吧,http://em.21dtv.com/songs/60110909.mkv +邵大伦-算了吧,http://em.21dtv.com/songs/60069853.mkv +许廷铿-算了吧,http://em.21dtv.com/songs/60068692.mkv +红乐队-算了吧,http://em.21dtv.com/songs/60064931.mkv +ALIN-算了吧,http://em.21dtv.com/songs/60064930.mkv +谢有才-算了吧,http://em.21dtv.com/songs/60063176.mkv +卓依婷-算了吧,http://em.21dtv.com/songs/60040895.mkv +中国力量-算了吧,http://em.21dtv.com/songs/60040894.mkv +胡培蔚-算了吧,http://em.21dtv.com/songs/60040893.mkv +韩红-算了吧,http://em.21dtv.com/songs/60040892.mkv +董事长乐团-算了吧,http://em.21dtv.com/songs/60040891.mkv +丁菲飞-算了吧,http://em.21dtv.com/songs/60040890.mkv +伍佰-算了吧(演唱会),http://em.21dtv.com/songs/60040889.mkv +群星-鼠来宝,http://em.21dtv.com/songs/60039777.mkv +林志炫-散了吧,http://em.21dtv.com/songs/60037388.mkv +ELLA-30啊,http://em.21dtv.com/songs/60112432.mkv +缘分心儿-沙漏爱,http://em.21dtv.com/songs/60081741.mkv +高信-输了爱,http://em.21dtv.com/songs/60039753.mkv +岩佐美咲-もしも私が空に住んでいたら,http://em.21dtv.com/songs/60074265.mkv +张政雄+薛佩洁-三口组,http://em.21dtv.com/songs/60037249.mkv +TENSION-时空信,http://em.21dtv.com/songs/60039152.mkv +张超-三棵树,http://em.21dtv.com/songs/60106866.mkv +佚名-谁靠谁,http://em.21dtv.com/songs/60039998.mkv +谢霆锋-谁哭了,http://em.21dtv.com/songs/60040011.mkv +安雯-捎戒指(演唱会),http://em.21dtv.com/songs/60038079.mkv +卢巧音-三角志,http://em.21dtv.com/songs/60037245.mkv +卢巧音-三角志(演唱会),http://em.21dtv.com/songs/60037244.mkv +梁汉文-三角志(演唱会),http://em.21dtv.com/songs/60037243.mkv +何韵诗-三角志(演唱会),http://em.21dtv.com/songs/60037242.mkv +王中平+陈茂丰-输甲赢,http://em.21dtv.com/songs/60099393.mkv +慕容晓晓-思君吟,http://em.21dtv.com/songs/60097032.mkv +潘越云-四季吟(无原唱),http://em.21dtv.com/songs/60040695.mkv +芭比-使劲摇,http://em.21dtv.com/songs/60039187.mkv +嘴哥乐团-实境秀,http://em.21dtv.com/songs/60135068.mkv +月亮姐姐-水晶鞋,http://em.21dtv.com/songs/60099283.mkv +孙悦-水晶鞋,http://em.21dtv.com/songs/60090900.mkv +超级女声+谢雅雯-水晶鞋,http://em.21dtv.com/songs/60090230.mkv +佚名-世纪行,http://em.21dtv.com/songs/60039216.mkv +杜文泽-谁教我,http://em.21dtv.com/songs/60039995.mkv +周华健-谁叫我,http://em.21dtv.com/songs/60039994.mkv +周华健-谁叫我(演唱会),http://em.21dtv.com/songs/60039993.mkv +何韵诗-神经痛,http://em.21dtv.com/songs/60092281.mkv +戴佩妮-四季天,http://em.21dtv.com/songs/60040693.mkv +黄子韬-十九岁,http://em.21dtv.com/songs/60123399.mkv +刘子漫-摔跤手,http://em.21dtv.com/songs/60101614.mkv +陈雷-尚介帅,http://em.21dtv.com/songs/60097013.mkv +杨梓-散就散,http://em.21dtv.com/songs/60067392.mkv +张蓉蓉-世间事,http://em.21dtv.com/songs/60039247.mkv +高向鹏+方瑞娥-世间事,http://em.21dtv.com/songs/60039246.mkv +范逸臣-时间沙,http://em.21dtv.com/songs/60039143.mkv +戴军-申江水,http://em.21dtv.com/songs/60038242.mkv +武艺-收件人,http://em.21dtv.com/songs/60116086.mkv +高向鹏+方瑞娥-世间人,http://em.21dtv.com/songs/60039240.mkv +清雅-水晶球,http://em.21dtv.com/songs/60133946.mkv +强辩乐团-水晶球,http://em.21dtv.com/songs/60125550.mkv +天籁天-思君曲,http://em.21dtv.com/songs/60104013.mkv +陈奕迅-四季圈,http://em.21dtv.com/songs/60101556.mkv +品冠-水晶球,http://em.21dtv.com/songs/60090858.mkv +汪明荃-四季情(演唱会),http://em.21dtv.com/songs/60040692.mkv +王尚宏-世间情,http://em.21dtv.com/songs/60039238.mkv +郭桂彬-世间情,http://em.21dtv.com/songs/60039237.mkv +佚名-世纪情,http://em.21dtv.com/songs/60039222.mkv +孙楠-世纪party,http://em.21dtv.com/songs/60039213.mkv +C ALLSTAR-时间囊,http://em.21dtv.com/songs/60077625.mkv +孙艺程-时间囊,http://em.21dtv.com/songs/60067431.mkv +傅颖-时间囊,http://em.21dtv.com/songs/60039139.mkv +阿香-三角梅,http://em.21dtv.com/songs/60085669.mkv +SMAP-この瞬间きっと梦じゃない,http://em.21dtv.com/songs/60082429.mkv +蔡义德-世间米,http://em.21dtv.com/songs/60068662.mkv +洪卓立-三脚猫,http://em.21dtv.com/songs/60037247.mkv +洪卓立-三脚猫(演唱会),http://em.21dtv.com/songs/60037246.mkv +赵小南-思君泪,http://em.21dtv.com/songs/60064917.mkv +龙千玉+蔡小虎-世间路,http://em.21dtv.com/songs/60039234.mkv +吴奇隆-世间路(无原唱),http://em.21dtv.com/songs/60039233.mkv +阿唯-三角链,http://em.21dtv.com/songs/60037240.mkv +傅振辉+龙千玉+黄玉婷-三角恋,http://em.21dtv.com/songs/60037239.mkv +伍凌枫-手机控,http://em.21dtv.com/songs/60107486.mkv +魏天泽-少将军,http://em.21dtv.com/songs/60127611.mkv +佚名-sho jo ji(无原唱),http://em.21dtv.com/songs/60004995.mkv +左成-三角花,http://em.21dtv.com/songs/60135167.mkv +方琦-沙棘花,http://em.21dtv.com/songs/60128047.mkv +彭青-时间河,http://em.21dtv.com/songs/60080682.mkv +文夏-四季红,http://em.21dtv.com/songs/60077700.mkv +沙莎-三句话(演唱会),http://em.21dtv.com/songs/60064820.mkv +佚名-塑胶花,http://em.21dtv.com/songs/60040861.mkv +陈盈洁-塑胶花(无原唱),http://em.21dtv.com/songs/60040860.mkv +佚名-四季红,http://em.21dtv.com/songs/60040688.mkv +七郎-爽就好,http://em.21dtv.com/songs/60039918.mkv +林一峰-时间河(演唱会),http://em.21dtv.com/songs/60039135.mkv +梁咏琪-时间海,http://em.21dtv.com/songs/60039134.mkv +卓依婷-烧酒话,http://em.21dtv.com/songs/60038090.mkv +佚名-烧酒话,http://em.21dtv.com/songs/60038089.mkv +谢顺福-烧酒话,http://em.21dtv.com/songs/60038088.mkv +陈小云-烧酒话,http://em.21dtv.com/songs/60038087.mkv +佚名-烧酒海(恰恰),http://em.21dtv.com/songs/60038086.mkv +望海高歌-宋家沟,http://em.21dtv.com/songs/60135339.mkv +游淼-双截棍,http://em.21dtv.com/songs/60124216.mkv +陈梓童-双截棍,http://em.21dtv.com/songs/60114215.mkv +柳畅源-双截棍,http://em.21dtv.com/songs/60113732.mkv +陈梓童-双截棍,http://em.21dtv.com/songs/60113059.mkv +宁可-四季歌,http://em.21dtv.com/songs/60111000.mkv +农夫+方大同-双截棍,http://em.21dtv.com/songs/60107511.mkv +华语群星-撒娇歌,http://em.21dtv.com/songs/60106663.mkv +叶文辉-私家歌,http://em.21dtv.com/songs/60096212.mkv +谭咏麟-双截棍,http://em.21dtv.com/songs/60089481.mkv +龚琳娜-双截棍,http://em.21dtv.com/songs/60086842.mkv +苗苗-四季歌,http://em.21dtv.com/songs/60081129.mkv +周璇-四季歌,http://em.21dtv.com/songs/60040687.mkv +麦子杰-四季歌,http://em.21dtv.com/songs/60040686.mkv +罗宁娜-四季歌,http://em.21dtv.com/songs/60040685.mkv +黄耀明-四季歌,http://em.21dtv.com/songs/60040684.mkv +邓丽君-四季歌,http://em.21dtv.com/songs/60040683.mkv +陈松伶-四季歌,http://em.21dtv.com/songs/60040682.mkv +张伟文-四季歌(演唱会),http://em.21dtv.com/songs/60040681.mkv +王璐瑶-四季歌(演唱会),http://em.21dtv.com/songs/60040680.mkv +周杰伦-双截棍,http://em.21dtv.com/songs/60039852.mkv +农夫+方大同-双截棍(演唱会),http://em.21dtv.com/songs/60039851.mkv +泠鸢yousa-思君赋,http://em.21dtv.com/songs/60135490.mkv +梦中爱人-孙江枫,http://em.21dtv.com/songs/60118731.mkv +佚名-四季风,http://em.21dtv.com/songs/60040679.mkv +黄思婷-四季风,http://em.21dtv.com/songs/60040678.mkv +HITA-思君赋,http://em.21dtv.com/songs/60040477.mkv +柳妍熙-谁记得,http://em.21dtv.com/songs/60118723.mkv +卓依婷-烧酒店,http://em.21dtv.com/songs/60087478.mkv +童孔-时间差,http://em.21dtv.com/songs/60131714.mkv +洪卓立-时间差,http://em.21dtv.com/songs/60077623.mkv +黄气槿+邱桂香-送金钗,http://em.21dtv.com/songs/60040755.mkv +佚名-什锦菜,http://em.21dtv.com/songs/60038384.mkv +三角COOL-三角cool,http://em.21dtv.com/songs/60037237.mkv +拉卫士-saicelen坚持,http://em.21dtv.com/songs/60004789.mkv +顽童MJ6-生煎包,http://em.21dtv.com/songs/60116376.mkv +黄迎迎-神经病,http://em.21dtv.com/songs/60113115.mkv +陈小春-神经病,http://em.21dtv.com/songs/60089519.mkv +顽童+OF MJ116-生煎包,http://em.21dtv.com/songs/60077556.mkv +傅振辉-世间爱,http://em.21dtv.com/songs/60096191.mkv +辛欣-时间啊,http://em.21dtv.com/songs/60077622.mkv +豪记大对唱-世间爱,http://em.21dtv.com/songs/60039229.mkv +PARAMORE-still into you,http://em.21dtv.com/songs/60082338.mkv +THE PARLOTONES-shake it up,http://em.21dtv.com/songs/60073858.mkv +蔡依林-surpr i se,http://em.21dtv.com/songs/60005389.mkv +戴佩妮-Sing It Out,http://em.21dtv.com/songs/60080112.mkv +FLORENCE-shake it out,http://em.21dtv.com/songs/60063733.mkv +MARIAH CAREY-shake it off(演唱会),http://em.21dtv.com/songs/60004928.mkv +ALL TIME LOW-somewhere in neverland,http://em.21dtv.com/songs/60073912.mkv +官恩娜-so in love,http://em.21dtv.com/songs/60073900.mkv +CNBLUE-still in love,http://em.21dtv.com/songs/60066724.mkv +陈豪-4 in love,http://em.21dtv.com/songs/60066628.mkv +侧田-still in love(演唱会),http://em.21dtv.com/songs/60005266.mkv +佚名-silence is golden,http://em.21dtv.com/songs/60005027.mkv +AMY MACDONALD-slow it down,http://em.21dtv.com/songs/60073893.mkv +LINKIN PARK-somewhere i belong,http://em.21dtv.com/songs/60005173.mkv +黑涩会美眉-shake it baby,http://em.21dtv.com/songs/60004927.mkv +JAKE BUGG-seen it all,http://em.21dtv.com/songs/60073854.mkv +WESTLIFE-swear it again,http://em.21dtv.com/songs/60005400.mkv +NATASHA BEDINGFIELD-say it again,http://em.21dtv.com/songs/60004834.mkv +白客+小爱-守护者,http://em.21dtv.com/songs/60120812.mkv +陈宝欣-守护着,http://em.21dtv.com/songs/60115490.mkv +于全莉-殇红妆,http://em.21dtv.com/songs/60085686.mkv +容祖儿-受害者,http://em.21dtv.com/songs/60077669.mkv +文恩澄-水孩子,http://em.21dtv.com/songs/60069839.mkv +郑博夫-受害者,http://em.21dtv.com/songs/60039718.mkv +王馨平-受害者,http://em.21dtv.com/songs/60039717.mkv +周蕙-守护者,http://em.21dtv.com/songs/60039687.mkv +神木与瞳-守护者,http://em.21dtv.com/songs/60039686.mkv +关楚耀-守护者,http://em.21dtv.com/songs/60039685.mkv +余文乐-生还者,http://em.21dtv.com/songs/60038531.mkv +蔡卓妍-生还者,http://em.21dtv.com/songs/60038530.mkv +TANK-生还者,http://em.21dtv.com/songs/60038529.mkv +阎韦伶-傻孩子,http://em.21dtv.com/songs/60037522.mkv +龙奔-社会摇,http://em.21dtv.com/songs/60121195.mkv +虞姬-社会摇,http://em.21dtv.com/songs/60114038.mkv +萧全-社会摇,http://em.21dtv.com/songs/60110493.mkv +王伟-水寒烟,http://em.21dtv.com/songs/60105240.mkv +管罄-事后烟,http://em.21dtv.com/songs/60097010.mkv +吴宗宪-耍花样,http://em.21dtv.com/songs/60039820.mkv +眉佳-生活谣,http://em.21dtv.com/songs/60038540.mkv +陈夏莲-守护星,http://em.21dtv.com/songs/60135902.mkv +泰坦Titan-守护星,http://em.21dtv.com/songs/60135492.mkv +COZY DIARY-深呼吸,http://em.21dtv.com/songs/60117442.mkv +吕莘-深呼吸,http://em.21dtv.com/songs/60108376.mkv +中岛美嘉-sakura~花霞~,http://em.21dtv.com/songs/60063727.mkv +陈小春-双黄线,http://em.21dtv.com/songs/60039847.mkv +林依晨-守护星,http://em.21dtv.com/songs/60039684.mkv +飞轮海-守护星,http://em.21dtv.com/songs/60039683.mkv +周华健-深呼吸,http://em.21dtv.com/songs/60038299.mkv +羽泉-深呼吸,http://em.21dtv.com/songs/60038298.mkv +宇恒-深呼吸,http://em.21dtv.com/songs/60038297.mkv +伊雪莉-深呼吸,http://em.21dtv.com/songs/60038296.mkv +范晓萱-深呼吸,http://em.21dtv.com/songs/60038295.mkv +S.H.E-深呼吸,http://em.21dtv.com/songs/60038294.mkv +羽泉-深呼吸(演唱会),http://em.21dtv.com/songs/60038293.mkv +秦腔-三回头,http://em.21dtv.com/songs/60130985.mkv +于童-上海滩,http://em.21dtv.com/songs/60092239.mkv +刀郎-山海天,http://em.21dtv.com/songs/60069788.mkv +叶丽仪-上海滩,http://em.21dtv.com/songs/60038034.mkv +孙楠+赵咏华-上海滩,http://em.21dtv.com/songs/60038032.mkv +刘德华-上海滩,http://em.21dtv.com/songs/60038031.mkv +郑少秋-上海滩(演唱会),http://em.21dtv.com/songs/60038030.mkv +苏永康-上海滩(演唱会),http://em.21dtv.com/songs/60038029.mkv +侯丽娟-珊瑚颂,http://em.21dtv.com/songs/60120330.mkv +洛天依-深海少,http://em.21dtv.com/songs/60104280.mkv +杨紫萍-珊瑚颂,http://em.21dtv.com/songs/60100189.mkv +千荷-珊瑚颂,http://em.21dtv.com/songs/60087443.mkv +袁树雄-生活禅,http://em.21dtv.com/songs/60072387.mkv +许志安-睡火山,http://em.21dtv.com/songs/60069842.mkv +张妍-珊瑚颂(演唱会),http://em.21dtv.com/songs/60067398.mkv +方力申-守护神,http://em.21dtv.com/songs/60039678.mkv +ZAYIN-守护神,http://em.21dtv.com/songs/60039677.mkv +代小波-伤好深,http://em.21dtv.com/songs/60037786.mkv +卓依婷-珊瑚颂,http://em.21dtv.com/songs/60037713.mkv +佚名-珊瑚颂,http://em.21dtv.com/songs/60037712.mkv +铁金-珊瑚颂,http://em.21dtv.com/songs/60037711.mkv +那英-珊瑚颂,http://em.21dtv.com/songs/60037710.mkv +罗宁娜-珊瑚颂,http://em.21dtv.com/songs/60037709.mkv +那英-珊瑚颂(演唱会),http://em.21dtv.com/songs/60037708.mkv +高胜美-受害人,http://em.21dtv.com/songs/60039716.mkv +阎维文-山河情,http://em.21dtv.com/songs/60037648.mkv +罗凯南-守候鸟,http://em.21dtv.com/songs/60130648.mkv +SMASH-守护你,http://em.21dtv.com/songs/60077665.mkv +黄韵玲-守候你,http://em.21dtv.com/songs/60071132.mkv +郭富城-守护你,http://em.21dtv.com/songs/60039676.mkv +楼沁-上海梦,http://em.21dtv.com/songs/60107846.mkv +二人转+闫学晶+董宝贵-双回门,http://em.21dtv.com/songs/60071134.mkv +刘森迪-山花美,http://em.21dtv.com/songs/60068642.mkv +童唱-傻黑猫,http://em.21dtv.com/songs/60037523.mkv +大庆小芳-山河恋,http://em.21dtv.com/songs/60081863.mkv +童唱-说哈罗,http://em.21dtv.com/songs/60040370.mkv +青山-珊瑚恋,http://em.21dtv.com/songs/60037707.mkv +佚名-撒哈拉,http://em.21dtv.com/songs/60037139.mkv +郑伊健-撒哈拉(演唱会),http://em.21dtv.com/songs/60037138.mkv +江蕙-生活苦,http://em.21dtv.com/songs/60038538.mkv +幂雅-山海经,http://em.21dtv.com/songs/60133627.mkv +Easy Shen-山海经,http://em.21dtv.com/songs/60132069.mkv +TFBOYS-守护家,http://em.21dtv.com/songs/60122433.mkv +尹光+胡美仪-狮吼记(戏曲),http://em.21dtv.com/songs/60092542.mkv +李健-松花江(演唱会),http://em.21dtv.com/songs/60040722.mkv +佚名-松花江(无原唱),http://em.21dtv.com/songs/60040721.mkv +卓依婷-上花轿,http://em.21dtv.com/songs/60038039.mkv +童唱-上花轿,http://em.21dtv.com/songs/60038038.mkv +四分卫-珊瑚礁,http://em.21dtv.com/songs/60037706.mkv +杨梓文祺-山花花,http://em.21dtv.com/songs/60125752.mkv +After School-Shh,http://em.21dtv.com/songs/60098006.mkv +陈思思+周杰伦-珊瑚海(演唱会),http://em.21dtv.com/songs/60064831.mkv +顾莉雅-傻乎乎,http://em.21dtv.com/songs/60064826.mkv +周杰伦+粱心颐-珊瑚海,http://em.21dtv.com/songs/60037705.mkv +邰正宵-傻呼呼,http://em.21dtv.com/songs/60037524.mkv +苟乃鹏-狮吼功,http://em.21dtv.com/songs/60131760.mkv +TopSecret-She,http://em.21dtv.com/songs/60131115.mkv +官恩娜-珊瑚岛,http://em.21dtv.com/songs/60037704.mkv +芭比-杀很大,http://em.21dtv.com/songs/60037429.mkv +影视歌曲-水浒传,http://em.21dtv.com/songs/60089299.mkv +吴依琳-数红包,http://em.21dtv.com/songs/60077681.mkv +丁嘉林+丁楠霓+江怡萱-数红包,http://em.21dtv.com/songs/60077680.mkv +V6-sexy honey bunny,http://em.21dtv.com/songs/60062175.mkv +巧千金-数红包,http://em.21dtv.com/songs/60039804.mkv +郭富城+蔡依林+罗志祥+吴莫愁-Shake Your Body,http://em.21dtv.com/songs/60101534.mkv +LYNYRD SKYNYRD-sweet home alabama,http://em.21dtv.com/songs/60005408.mkv +崔子格-时光盏,http://em.21dtv.com/songs/60096980.mkv +李亮超-三个字,http://em.21dtv.com/songs/60085668.mkv +宋熙铭-时光中,http://em.21dtv.com/songs/60069820.mkv +魏如萱-三个字,http://em.21dtv.com/songs/60064819.mkv +理想-三个字,http://em.21dtv.com/songs/60061550.mkv +邓紫棋-睡公主,http://em.21dtv.com/songs/60040288.mkv +梁焕波+连仁杏-山歌子,http://em.21dtv.com/songs/60037639.mkv +李秋霞-山歌仔,http://em.21dtv.com/songs/60037638.mkv +曾明珠-山歌仔(无原唱),http://em.21dtv.com/songs/60037637.mkv +曾之乔+阮经天-三个字,http://em.21dtv.com/songs/60037219.mkv +林灵-三个字(无原唱),http://em.21dtv.com/songs/60037218.mkv +朱祝芬-深宫怨,http://em.21dtv.com/songs/60038286.mkv +佚名-三更雨,http://em.21dtv.com/songs/60037224.mkv +蔡小虎-三更雨,http://em.21dtv.com/songs/60037223.mkv +佚名-三盖衣,http://em.21dtv.com/songs/60037203.mkv +蒋大为-思故乡,http://em.21dtv.com/songs/60128365.mkv +王莹-思故乡,http://em.21dtv.com/songs/60091728.mkv +花鼓戏-送恭喜,http://em.21dtv.com/songs/60090176.mkv +罗时丰+阿弟仔-酸甘甜,http://em.21dtv.com/songs/60040871.mkv +晨熙-算个啥,http://em.21dtv.com/songs/60119622.mkv +张宇-说故事(演唱会),http://em.21dtv.com/songs/60040368.mkv +周铁男-三国杀,http://em.21dtv.com/songs/60037229.mkv +汪苏泷-三国杀,http://em.21dtv.com/songs/60037228.mkv +黄凯芹-三个人,http://em.21dtv.com/songs/60068637.mkv +翁立友-伤感情,http://em.21dtv.com/songs/60067401.mkv +柯以柔-水果拳,http://em.21dtv.com/songs/60040193.mkv +曾宝仪-伤感情(演唱会),http://em.21dtv.com/songs/60037774.mkv +佚名-三国拳,http://em.21dtv.com/songs/60037227.mkv +陈夏莲-水姑娘,http://em.21dtv.com/songs/60135907.mkv +魏金栋+梦鸽-送给你,http://em.21dtv.com/songs/60077774.mkv +荣联合-水姑娘,http://em.21dtv.com/songs/60062871.mkv +聂小慧-水姑娘,http://em.21dtv.com/songs/60062783.mkv +龙千玉-送给你,http://em.21dtv.com/songs/60062717.mkv +郁钧剑-送给你,http://em.21dtv.com/songs/60040748.mkv +刘玉婉+魏金栋-送给你,http://em.21dtv.com/songs/60040747.mkv +哈拉玛组合-四姑娘,http://em.21dtv.com/songs/60040662.mkv +中国力量-水姑娘,http://em.21dtv.com/songs/60040187.mkv +心跳男孩-水姑娘,http://em.21dtv.com/songs/60040186.mkv +童唱-数蛤蟆,http://em.21dtv.com/songs/60039803.mkv +CV王胖子-三国恋,http://em.21dtv.com/songs/60134662.mkv +萧亚轩-受够了,http://em.21dtv.com/songs/60094268.mkv +蒋大为-曙光里(演唱会),http://em.21dtv.com/songs/60083821.mkv +童唱-数高楼,http://em.21dtv.com/songs/60039802.mkv +萧亚轩-上钩了(演唱会),http://em.21dtv.com/songs/60038020.mkv +卓依婷-山歌恋,http://em.21dtv.com/songs/60037630.mkv +佚名-山歌恋,http://em.21dtv.com/songs/60037629.mkv +TANK-三国恋,http://em.21dtv.com/songs/60037226.mkv +LIL MAMA+CHRIS BROWN-shawty get loose,http://em.21dtv.com/songs/60004952.mkv +张博林-时光机,http://em.21dtv.com/songs/60120505.mkv +崔书馨-时光机,http://em.21dtv.com/songs/60096979.mkv +狄易达+蔚雨芯-傻瓜机,http://em.21dtv.com/songs/60077486.mkv +TF家族-时光机,http://em.21dtv.com/songs/60069819.mkv +张弢-时光机,http://em.21dtv.com/songs/60066315.mkv +容祖儿-双冠军,http://em.21dtv.com/songs/60039846.mkv +周杰伦-时光机,http://em.21dtv.com/songs/60039105.mkv +小肥-时光机,http://em.21dtv.com/songs/60039104.mkv +五月天-时光机,http://em.21dtv.com/songs/60039103.mkv +刘纯如-少根筋,http://em.21dtv.com/songs/60038106.mkv +GERRY BECKLEY-sister golden hair,http://em.21dtv.com/songs/60005060.mkv +佚名-sister golden hair(无原唱),http://em.21dtv.com/songs/60005059.mkv +音乐走廊+歌一生-山歌歌,http://em.21dtv.com/songs/60121135.mkv +金志文-山沟沟,http://em.21dtv.com/songs/60069851.mkv +邱金墩+邱金婵-水果歌,http://em.21dtv.com/songs/60040189.mkv +那英-山沟沟,http://em.21dtv.com/songs/60037640.mkv +佚名-驶孤帆,http://em.21dtv.com/songs/60039200.mkv +MIC男团-谁孤单,http://em.21dtv.com/songs/60086845.mkv +扬哲-石敢当,http://em.21dtv.com/songs/60039065.mkv +丁当-闪光灯,http://em.21dtv.com/songs/60037719.mkv +颜志文-山狗大(无原唱),http://em.21dtv.com/songs/60037641.mkv +DAVID JORDAN-sun goes down,http://em.21dtv.com/songs/60005347.mkv +傲艺-声工场,http://em.21dtv.com/songs/60103087.mkv +钟伟强-三分钟,http://em.21dtv.com/songs/60126307.mkv +丛伟-身份证,http://em.21dtv.com/songs/60101240.mkv +黄婉佩-十分钟,http://em.21dtv.com/songs/60038956.mkv +梁汉文-三分钟,http://em.21dtv.com/songs/60037196.mkv +梁汉文-三分钟(演唱会),http://em.21dtv.com/songs/60037195.mkv +TARA+AN YOUNG MIN-song for you,http://em.21dtv.com/songs/60073915.mkv +SS501-song for you,http://em.21dtv.com/songs/60073914.mkv +SO YEON-song for you,http://em.21dtv.com/songs/60062162.mkv +吴炜-索菲娅,http://em.21dtv.com/songs/60041036.mkv +温兆伦-随风缘,http://em.21dtv.com/songs/60040929.mkv +卢秋萍-双飞燕,http://em.21dtv.com/songs/60039845.mkv +蔡幸娟-双飞雁,http://em.21dtv.com/songs/60039844.mkv +陈洁丽-singing for you,http://em.21dtv.com/songs/60005054.mkv +佚名-song for whoever,http://em.21dtv.com/songs/60005186.mkv +范玮琪-是非题,http://em.21dtv.com/songs/60039407.mkv +火星熊-三藩市,http://em.21dtv.com/songs/60077448.mkv +杨青倩-师傅说,http://em.21dtv.com/songs/60066312.mkv +车婉婉-十分傻,http://em.21dtv.com/songs/60038955.mkv +萧忆情-孙夫人,http://em.21dtv.com/songs/60128357.mkv +楚小乔-水风轻,http://em.21dtv.com/songs/60113751.mkv +张学友-三分拍,http://em.21dtv.com/songs/60092584.mkv +满文军-随风飘,http://em.21dtv.com/songs/60040927.mkv +胡琳-送福来,http://em.21dtv.com/songs/60109582.mkv +刘力扬-手放开,http://em.21dtv.com/songs/60132231.mkv +SUPER7-手放开,http://em.21dtv.com/songs/60071130.mkv +吴姵文-手放开,http://em.21dtv.com/songs/60039610.mkv +李圣杰-手放开,http://em.21dtv.com/songs/60039609.mkv +梁奕伦+范振锋-十分k,http://em.21dtv.com/songs/60038951.mkv +唐大聪-书房会,http://em.21dtv.com/songs/60133501.mkv +佚名-书房会,http://em.21dtv.com/songs/60039731.mkv +徐诣帆-顺风歌,http://em.21dtv.com/songs/60125582.mkv +周传雄-随风飞,http://em.21dtv.com/songs/60089211.mkv +杨辉-随风飞,http://em.21dtv.com/songs/60069854.mkv +黎齐-随风飞,http://em.21dtv.com/songs/60040926.mkv +黄乙玲-随风飞,http://em.21dtv.com/songs/60040925.mkv +暴林-随风飞,http://em.21dtv.com/songs/60040924.mkv +佚名-strawberry fields forever,http://em.21dtv.com/songs/60005293.mkv +容祖儿-曙凤蝶,http://em.21dtv.com/songs/60039779.mkv +张信哲-顺风车,http://em.21dtv.com/songs/60072423.mkv +邓健泓-私房菜,http://em.21dtv.com/songs/60040466.mkv +京剧-朔风吹,http://em.21dtv.com/songs/60040446.mkv +古巨基-顺风车(演唱会),http://em.21dtv.com/songs/60040300.mkv +MLTR-strange foreign beauty,http://em.21dtv.com/songs/60005289.mkv +MICHAEL LEARNS TO ROCK-strange foreign beauty,http://em.21dtv.com/songs/60005288.mkv +王杰-是否爱,http://em.21dtv.com/songs/60091710.mkv +AVENGED SEVENFOLD-so far away,http://em.21dtv.com/songs/60067982.mkv +何洁-十分爱,http://em.21dtv.com/songs/60038954.mkv +方力申+邓丽欣-十分爱,http://em.21dtv.com/songs/60038953.mkv +邓丽欣-十分爱(演唱会),http://em.21dtv.com/songs/60038952.mkv +张智成-so far away,http://em.21dtv.com/songs/60005099.mkv +1976-十二月,http://em.21dtv.com/songs/60110740.mkv +完玛三智-十二月(蒙),http://em.21dtv.com/songs/60064868.mkv +卓嘎-十二月,http://em.21dtv.com/songs/60038941.mkv +迟志强-十二月,http://em.21dtv.com/songs/60038940.mkv +The 1975-Sex,http://em.21dtv.com/songs/60134808.mkv +罗百吉-saddem esay o(爱你更多),http://em.21dtv.com/songs/60004784.mkv +邱永传-十二年,http://em.21dtv.com/songs/60106320.mkv +邱永传-十二年,http://em.21dtv.com/songs/60105417.mkv +雪杉-十二年,http://em.21dtv.com/songs/60067425.mkv +杨宗纬-十二楼,http://em.21dtv.com/songs/60096893.mkv +莫文蔚-十二楼,http://em.21dtv.com/songs/60038937.mkv +刘雪婧-See You Again,http://em.21dtv.com/songs/60127783.mkv +佚名-some enchanted evening,http://em.21dtv.com/songs/60005131.mkv +徐颢菲-十二朵,http://em.21dtv.com/songs/60038932.mkv +张雷-书呆子,http://em.21dtv.com/songs/60077672.mkv +潘倩-赏灯谣,http://em.21dtv.com/songs/60132692.mkv +张远喆-圣诞夜,http://em.21dtv.com/songs/60106868.mkv +罗敏庄-圣诞夜(演唱会),http://em.21dtv.com/songs/60077570.mkv +安又琪-圣诞夜,http://em.21dtv.com/songs/60072390.mkv +易秒英-善德源,http://em.21dtv.com/songs/60063275.mkv +吴琼-谁的夜,http://em.21dtv.com/songs/60039967.mkv +秦腔-三滴血,http://em.21dtv.com/songs/60130988.mkv +秦腔-三滴血,http://em.21dtv.com/songs/60130987.mkv +秦腔-三滴血,http://em.21dtv.com/songs/60130986.mkv +邢美美-圣诞雪,http://em.21dtv.com/songs/60038671.mkv +MUMSTER-撒旦舞,http://em.21dtv.com/songs/60092185.mkv +张文绮-煞到我,http://em.21dtv.com/songs/60064829.mkv +潘越云-纱的吻,http://em.21dtv.com/songs/60037484.mkv +FUTURE-same damn time,http://em.21dtv.com/songs/60069136.mkv +小护士-摔电视,http://em.21dtv.com/songs/60039821.mkv +佚名-圣诞树,http://em.21dtv.com/songs/60038668.mkv +胡彦斌-三对三,http://em.21dtv.com/songs/60037191.mkv +男人帮-伤得起,http://em.21dtv.com/songs/60115318.mkv +宇海文-伤的起,http://em.21dtv.com/songs/60063299.mkv +迟志强-四大劝,http://em.21dtv.com/songs/60040654.mkv +陈奕迅-时代曲,http://em.21dtv.com/songs/60039093.mkv +刘浩龙-时代曲(演唱会),http://em.21dtv.com/songs/60039092.mkv +陈奕迅-时代曲(演唱会),http://em.21dtv.com/songs/60039091.mkv +蔡依林-耍大牌,http://em.21dtv.com/songs/60039819.mkv +伍佰-煞到你,http://em.21dtv.com/songs/60037567.mkv +伍佰-煞到你(演唱会),http://em.21dtv.com/songs/60037566.mkv +王莹-施甸美,http://em.21dtv.com/songs/60109536.mkv +曾献锦+陈素如+王丽云-三对面,http://em.21dtv.com/songs/60109406.mkv +B.GIBBONS D.HILL-F.BEARD-sharp dressed man(无原唱),http://em.21dtv.com/songs/60004949.mkv +刘玉东-上大路,http://em.21dtv.com/songs/60128835.mkv +自由发挥-死定了,http://em.21dtv.com/songs/60040615.mkv +李伯恩-死定了,http://em.21dtv.com/songs/60040614.mkv +李逸朗+蒋雅文-伤对论,http://em.21dtv.com/songs/60037767.mkv +进击的女帝-圣诞节,http://em.21dtv.com/songs/60128444.mkv +Crayon Pop-圣诞节,http://em.21dtv.com/songs/60129909.mkv +刘心+洪辰-圣诞节,http://em.21dtv.com/songs/60117579.mkv +EXO-圣诞节,http://em.21dtv.com/songs/60113155.mkv +宜璇-圣诞节,http://em.21dtv.com/songs/60068651.mkv +陈奕迅-圣诞结,http://em.21dtv.com/songs/60038660.mkv +张玉华-圣诞节,http://em.21dtv.com/songs/60038659.mkv +青山-三朵花,http://em.21dtv.com/songs/60088936.mkv +二人转+闫学晶+董宝贵-十对花,http://em.21dtv.com/songs/60071117.mkv +德德玛+玛格塔乐-山丹花(演唱会),http://em.21dtv.com/songs/60071094.mkv +LENE MARLIN-sitting down here,http://em.21dtv.com/songs/60005061.mkv +谭晶-三德歌,http://em.21dtv.com/songs/60094693.mkv +郑中基-傻大哥,http://em.21dtv.com/songs/60093258.mkv +合唱-圣诞歌,http://em.21dtv.com/songs/60089723.mkv +卓依婷-送大哥,http://em.21dtv.com/songs/60040742.mkv +周璇+姚敏-送大哥,http://em.21dtv.com/songs/60040741.mkv +尹相杰+于文华-送大哥,http://em.21dtv.com/songs/60040740.mkv +陈随意-煽东风,http://em.21dtv.com/songs/60083752.mkv +佚名-扇东风,http://em.21dtv.com/songs/60037746.mkv +朱海君+NoNo-水当当,http://em.21dtv.com/songs/60113607.mkv +BY2-傻呆呆,http://em.21dtv.com/songs/60081603.mkv +苏路-水当当,http://em.21dtv.com/songs/60064906.mkv +秀兰玛雅-水当当,http://em.21dtv.com/songs/60040182.mkv +DAL SHABET-supa dupa diva,http://em.21dtv.com/songs/60005364.mkv +伯爵-谁的错,http://em.21dtv.com/songs/60071137.mkv +李佳薇-谁的爱,http://em.21dtv.com/songs/60100122.mkv +韩信-屌丝的爱,http://em.21dtv.com/songs/60068225.mkv +蔡健雅-说到爱,http://em.21dtv.com/songs/60064914.mkv +林晓培-谁都爱,http://em.21dtv.com/songs/60039973.mkv +张可芝-谁懂爱(无原唱),http://em.21dtv.com/songs/60039970.mkv +C AllStar-上车咒,http://em.21dtv.com/songs/60110751.mkv +佚名-索错油,http://em.21dtv.com/songs/60041034.mkv +高枫-说慈禧,http://em.21dtv.com/songs/60081892.mkv +吴俊宏-三寸心,http://em.21dtv.com/songs/60072363.mkv +郭宴-山楂树,http://em.21dtv.com/songs/60127480.mkv +李明洋-水掺沙,http://em.21dtv.com/songs/60124079.mkv +乌兰图雅-山楂树,http://em.21dtv.com/songs/60103852.mkv +平安-伸出手,http://em.21dtv.com/songs/60081969.mkv +PALOMA FAITH-stone cold sober,http://em.21dtv.com/songs/60063753.mkv +陈晓琪-奢侈品,http://em.21dtv.com/songs/60097073.mkv +李心洁-奢侈品,http://em.21dtv.com/songs/60038184.mkv +SHERYL CROW-sweet child omine,http://em.21dtv.com/songs/60005403.mkv +阿牛-水查某,http://em.21dtv.com/songs/60040177.mkv +阿弟仔-水查某,http://em.21dtv.com/songs/60040176.mkv +马季+赵炎-送春联,http://em.21dtv.com/songs/60090329.mkv +佚名-水长流,http://em.21dtv.com/songs/60040262.mkv +青山-水长流,http://em.21dtv.com/songs/60040261.mkv +邓丽君-水长流,http://em.21dtv.com/songs/60040260.mkv +杨燕-水长流(演唱会),http://em.21dtv.com/songs/60040259.mkv +李嘉-双叉路(无原唱),http://em.21dtv.com/songs/60039831.mkv +吕晶晶-三岔口,http://em.21dtv.com/songs/60077446.mkv +郭富城-三岔口(演唱会),http://em.21dtv.com/songs/60037180.mkv +钟嘉欣+吴卓羲-伤城记,http://em.21dtv.com/songs/60064834.mkv +徐小凤-双城记,http://em.21dtv.com/songs/60039838.mkv +苏隽-双城记,http://em.21dtv.com/songs/60039837.mkv +赵鹏-山茶花,http://em.21dtv.com/songs/60109638.mkv +常安-山楂花,http://em.21dtv.com/songs/60104996.mkv +高晶-山茶花(演唱会),http://em.21dtv.com/songs/60083748.mkv +黄思婷-山茶花,http://em.21dtv.com/songs/60079927.mkv +张继聪-双彩虹,http://em.21dtv.com/songs/60077683.mkv +游小凤-送出航,http://em.21dtv.com/songs/60040739.mkv +TWINS-数彩虹,http://em.21dtv.com/songs/60039797.mkv +邓丽君-山茶花,http://em.21dtv.com/songs/60037588.mkv +初音ミク-甩葱歌,http://em.21dtv.com/songs/60064898.mkv +佚名-送出帆,http://em.21dtv.com/songs/60040738.mkv +胡琳-傻痴痴,http://em.21dtv.com/songs/60097105.mkv +黎明-傻痴痴,http://em.21dtv.com/songs/60037500.mkv +周强-拾彩贝,http://em.21dtv.com/songs/60039174.mkv +张咪-睡不着,http://em.21dtv.com/songs/60111063.mkv +丁娜+邓天浩-睡不着,http://em.21dtv.com/songs/60097104.mkv +张德兰-谁不知,http://em.21dtv.com/songs/60092608.mkv +欢子-十八子,http://em.21dtv.com/songs/60080631.mkv +罗力威-睡不着(演唱会),http://em.21dtv.com/songs/60077719.mkv +陈雅伦-随便坐,http://em.21dtv.com/songs/60040918.mkv +佚名-谁不知,http://em.21dtv.com/songs/60039951.mkv +丁薇-上班族,http://em.21dtv.com/songs/60038000.mkv +泳儿-四不像,http://em.21dtv.com/songs/60119766.mkv +秀才-伤不完,http://em.21dtv.com/songs/60077509.mkv +敖长生-陕北娃(演唱会),http://em.21dtv.com/songs/60077505.mkv +余丽-森巴舞,http://em.21dtv.com/songs/60067393.mkv +TAYLOR SWIFT-sad beautiful tragic,http://em.21dtv.com/songs/60073826.mkv +孔令奇-随便跳,http://em.21dtv.com/songs/60040917.mkv +刘昊霖-十八岁,http://em.21dtv.com/songs/60126643.mkv +郭峰-是不是,http://em.21dtv.com/songs/60123240.mkv +MC HOTDOG-十八岁,http://em.21dtv.com/songs/60120226.mkv +泳儿-深白色,http://em.21dtv.com/songs/60083778.mkv +洪启-是不是,http://em.21dtv.com/songs/60039387.mkv +东方神起-step by step,http://em.21dtv.com/songs/60005263.mkv +童唱-sleep baby sleep,http://em.21dtv.com/songs/60005068.mkv +佚名-side by side,http://em.21dtv.com/songs/60005023.mkv +陈柏宇-身边人,http://em.21dtv.com/songs/60080443.mkv +覃元隆-伤不起,http://em.21dtv.com/songs/60083757.mkv +王爱华-士兵情,http://em.21dtv.com/songs/60063012.mkv +郑欣宜-说不清,http://em.21dtv.com/songs/60061605.mkv +王麟+老猫-伤不起,http://em.21dtv.com/songs/60061559.mkv +郁可唯-伤不起,http://em.21dtv.com/songs/60037763.mkv +王星-随便你,http://em.21dtv.com/songs/60127196.mkv +安东阳-十八年,http://em.21dtv.com/songs/60122670.mkv +何方-随便你(无原唱),http://em.21dtv.com/songs/60040915.mkv +梁焕波+黄淑媛-十八摸,http://em.21dtv.com/songs/60111208.mkv +葛泓语+张珈铭-Stand By Me,http://em.21dtv.com/songs/60081519.mkv +SHAYNE WARD-stand by me,http://em.21dtv.com/songs/60063748.mkv +佚名-水兵梦,http://em.21dtv.com/songs/60040175.mkv +梁焕波+黄淑媛-十八摸,http://em.21dtv.com/songs/60038912.mkv +李玟-stand by me,http://em.21dtv.com/songs/60005230.mkv +梅艳芳-stand by me(演唱会),http://em.21dtv.com/songs/60005229.mkv +李玟-stand by me(演唱会),http://em.21dtv.com/songs/60005228.mkv +秦艺博-伤别离,http://em.21dtv.com/songs/60135616.mkv +黄思婷-酸菠萝,http://em.21dtv.com/songs/60133131.mkv +陆虎-石板路,http://em.21dtv.com/songs/60126360.mkv +冯弯弯-受不了,http://em.21dtv.com/songs/60125159.mkv +暴林-伤别离,http://em.21dtv.com/songs/60119623.mkv +祖海-伤别离,http://em.21dtv.com/songs/60091795.mkv +谭锡禧-sugar baby love(演唱会),http://em.21dtv.com/songs/60082345.mkv +梁文音-受不了,http://em.21dtv.com/songs/60077667.mkv +GIT FRESH-she be like,http://em.21dtv.com/songs/60062035.mkv +许雅涵-碎玻璃,http://em.21dtv.com/songs/60040993.mkv +任贤齐-死不了,http://em.21dtv.com/songs/60040612.mkv +许志安-受不了,http://em.21dtv.com/songs/60039711.mkv +麻吉弟弟-受不了,http://em.21dtv.com/songs/60039710.mkv +许志安-受不了(演唱会),http://em.21dtv.com/songs/60039709.mkv +辛夷-受不了(无原唱),http://em.21dtv.com/songs/60039708.mkv +容祖儿-沙堡垒(演唱会),http://em.21dtv.com/songs/60037444.mkv +RUBETTES-sugar baby love,http://em.21dtv.com/songs/60005314.mkv +潘嘉丽-说不哭,http://em.21dtv.com/songs/60062801.mkv +群星-十杯酒,http://em.21dtv.com/songs/60134124.mkv +谭晶-说北京,http://em.21dtv.com/songs/60077723.mkv +渡辺麻友-三つ编みの君へ(演唱会),http://em.21dtv.com/songs/60077445.mkv +胡彦斌-十八禁,http://em.21dtv.com/songs/60038911.mkv +陈飞+吴凤花-三杯酒,http://em.21dtv.com/songs/60037174.mkv +陈瑞-双瓣花(HD),http://em.21dtv.com/songs/10012826.mkv +王菀之-水百合(演唱会),http://em.21dtv.com/songs/60083833.mkv +任妙音-山百合,http://em.21dtv.com/songs/60072367.mkv +王电-睡不好,http://em.21dtv.com/songs/60071143.mkv +陈瑞-双瓣花,http://em.21dtv.com/songs/60068671.mkv +谢霆锋-四百gig,http://em.21dtv.com/songs/60040646.mkv +徐怀钰-谁不乖,http://em.21dtv.com/songs/60039946.mkv +徐怀钰-谁不乖(演唱会),http://em.21dtv.com/songs/60039945.mkv +WALKER-甩饼歌,http://em.21dtv.com/songs/60039823.mkv +佚名-十不该,http://em.21dtv.com/songs/60038928.mkv +迟志强-十不该,http://em.21dtv.com/songs/60038927.mkv +林林-舍不得,http://em.21dtv.com/songs/60133879.mkv +迪丽热巴-舍不得,http://em.21dtv.com/songs/60131861.mkv +冈林-舍不得,http://em.21dtv.com/songs/60130101.mkv +小霞-舍不得,http://em.21dtv.com/songs/60120480.mkv +小霞-舍不得,http://em.21dtv.com/songs/60117686.mkv +黄子韬-舍不得,http://em.21dtv.com/songs/60115545.mkv +陈志朋-舍不得,http://em.21dtv.com/songs/60107323.mkv +和汇慧-舍不得,http://em.21dtv.com/songs/60105705.mkv +潘映竹-舍不得,http://em.21dtv.com/songs/60097018.mkv +左安安-舍不得,http://em.21dtv.com/songs/60087739.mkv +李唯枫-舍不得,http://em.21dtv.com/songs/60086814.mkv +伍佳丽-舍不得,http://em.21dtv.com/songs/60083771.mkv +戚剑强-舍不得,http://em.21dtv.com/songs/60077538.mkv +蔡依林-拾不得,http://em.21dtv.com/songs/60039173.mkv +庄学忠-舍不得,http://em.21dtv.com/songs/60038200.mkv +张震岳-舍不得,http://em.21dtv.com/songs/60038199.mkv +杨坤-舍不得,http://em.21dtv.com/songs/60038198.mkv +许茹芸-舍不得,http://em.21dtv.com/songs/60038197.mkv +弦子-舍不得,http://em.21dtv.com/songs/60038196.mkv +任贤齐-舍不得,http://em.21dtv.com/songs/60038195.mkv +高胜美-舍不得,http://em.21dtv.com/songs/60038194.mkv +付辛博-Say Bye bye,http://em.21dtv.com/songs/60080502.mkv +周笔畅-甩包包,http://em.21dtv.com/songs/60039822.mkv +林子祥-十八变,http://em.21dtv.com/songs/60038901.mkv +TWINS-十八变,http://em.21dtv.com/songs/60038900.mkv +林子祥-十八变(演唱会),http://em.21dtv.com/songs/60038899.mkv +AT17-十八变(演唱会),http://em.21dtv.com/songs/60038898.mkv +黄宥杰-伤爱罪,http://em.21dtv.com/songs/60103726.mkv +爱戴-SAY MY NAME,http://em.21dtv.com/songs/60096879.mkv +罗熙杰-说爱我,http://em.21dtv.com/songs/60095035.mkv +路童-谁爱我,http://em.21dtv.com/songs/60077694.mkv +梁一贞-说爱我,http://em.21dtv.com/songs/60040341.mkv +张惠妹-谁爱我(演唱会),http://em.21dtv.com/songs/60039935.mkv +佚名-stay a while,http://em.21dtv.com/songs/60005245.mkv +JUSTIN TIMBERLAKE-suit and tie,http://em.21dtv.com/songs/60073954.mkv +蔡诗芸+顽童MJ116-谁爱谁,http://em.21dtv.com/songs/60131795.mkv +E.SO+蔡诗芸-谁爱谁,http://em.21dtv.com/songs/60129926.mkv +WILL.I.AM+BRITNEY SPEARS-scream and shout,http://em.21dtv.com/songs/60073850.mkv +TAYLOR SWIFT-safe and sound,http://em.21dtv.com/songs/60073830.mkv +吴鑫桐-谁爱谁,http://em.21dtv.com/songs/60071136.mkv +ONEREPUBLIC-stop and stare,http://em.21dtv.com/songs/60065699.mkv +WINK-stay at shanghai,http://em.21dtv.com/songs/60065696.mkv +董文华-水啊水,http://em.21dtv.com/songs/60040172.mkv +冯德伦-谁爱谁,http://em.21dtv.com/songs/60039934.mkv +张宇-谁爱谁(演唱会),http://em.21dtv.com/songs/60039933.mkv +ONE REPUBLIC-stop and stare,http://em.21dtv.com/songs/60005274.mkv +BEE GEES-spicks and specks(演唱会),http://em.21dtv.com/songs/60005220.mkv +佚名-slip and slide,http://em.21dtv.com/songs/60005074.mkv +TWINS-sing a song,http://em.21dtv.com/songs/60005047.mkv +洪卓立-是爱情,http://em.21dtv.com/songs/60097029.mkv +佚名-shaking all over,http://em.21dtv.com/songs/60004935.mkv +毕夏-说爱你,http://em.21dtv.com/songs/60106054.mkv +黄勇-说爱你,http://em.21dtv.com/songs/60040339.mkv +陈慧琳-说爱你,http://em.21dtv.com/songs/60040338.mkv +蔡依林-说爱你,http://em.21dtv.com/songs/60040337.mkv +辛隆-说爱你(无原唱),http://em.21dtv.com/songs/60040336.mkv +MIRAI未来-深爱你,http://em.21dtv.com/songs/60038275.mkv +AGA+Ghost Style-3AM,http://em.21dtv.com/songs/60134630.mkv +GABRIELLA CILMI-sweet about me,http://em.21dtv.com/songs/60082349.mkv +THE AIRBORNE TOXIC E-sometime around midnight,http://em.21dtv.com/songs/60005167.mkv +张起政-说爱了,http://em.21dtv.com/songs/60067451.mkv +佚名-shes a lady,http://em.21dtv.com/songs/60004972.mkv +CHRISTINA PERRI-something about december,http://em.21dtv.com/songs/60073909.mkv +佚名-someday at christmas,http://em.21dtv.com/songs/60005143.mkv +MATCHBOX 20-3am,http://em.21dtv.com/songs/60000019.mkv +裕美-私のblog,http://em.21dtv.com/songs/60040462.mkv +崔天琪-20岁,http://em.21dtv.com/songs/60094077.mkv +刘一祯-入则孝,http://em.21dtv.com/songs/60071090.mkv +张致恒-人造雪,http://em.21dtv.com/songs/60036499.mkv +KARY+COOKIES-认住我,http://em.21dtv.com/songs/60036557.mkv +五月天-入阵曲,http://em.21dtv.com/songs/60081814.mkv +孙浩雨-人造美,http://em.21dtv.com/songs/60110977.mkv +刘妍-人质+Listen,http://em.21dtv.com/songs/60096894.mkv +庾澄庆+谢娜-让自己High,http://em.21dtv.com/songs/60100003.mkv +阿飞-人之岛,http://em.21dtv.com/songs/60036503.mkv +蔡枫华-人之初(演唱会),http://em.21dtv.com/songs/60061537.mkv +毛阿敏-人之初,http://em.21dtv.com/songs/60036502.mkv +刘若英-人之初,http://em.21dtv.com/songs/60036501.mkv +AREUM+SHANNON+GEONJI-日与夜,http://em.21dtv.com/songs/60077385.mkv +张学友+林忆莲-日与夜(演唱会),http://em.21dtv.com/songs/60036675.mkv +张敬轩+王菀之-日与夜(演唱会),http://em.21dtv.com/songs/60036674.mkv +林忆莲-日与夜(演唱会),http://em.21dtv.com/songs/60036673.mkv +黄凯芹+周慧敏-日与夜(演唱会),http://em.21dtv.com/songs/60036672.mkv +杨坤-让雨下,http://em.21dtv.com/songs/60115233.mkv +THE ROMANTICS-rock you up,http://em.21dtv.com/songs/60004714.mkv +尼玛拉毛-日月山,http://em.21dtv.com/songs/60077387.mkv +季欣霈-rock your soul,http://em.21dtv.com/songs/60004718.mkv +ELTON JOHN-recover your soul,http://em.21dtv.com/songs/60004631.mkv +菲比-让一让,http://em.21dtv.com/songs/60083705.mkv +五月天-任意门,http://em.21dtv.com/songs/60131150.mkv +群星-rock友medley(演唱会),http://em.21dtv.com/songs/60063722.mkv +杨丞琳-任意门,http://em.21dtv.com/songs/60036569.mkv +张祥洪-人易老,http://em.21dtv.com/songs/60083712.mkv +静物乐团-揉眼睛,http://em.21dtv.com/songs/60036717.mkv +Pink-Raise Your Glass,http://em.21dtv.com/songs/60099022.mkv +林峰-人一个,http://em.21dtv.com/songs/60062644.mkv +M.O.V.E-rage your dream,http://em.21dtv.com/songs/60004591.mkv +程响-如懿传,http://em.21dtv.com/songs/60127253.mkv +JUSTIN TIMBERLAKE-rock your body,http://em.21dtv.com/songs/60073810.mkv +GIRL NEXT-rock your body,http://em.21dtv.com/songs/60063721.mkv +佚名-rock your body,http://em.21dtv.com/songs/60004717.mkv +高以爱-rock your body,http://em.21dtv.com/songs/60004716.mkv +GEORGE MCCRAE-rock your baby,http://em.21dtv.com/songs/60004715.mkv +BY2-任由爱,http://em.21dtv.com/songs/60077375.mkv +河西智美-まさか,http://em.21dtv.com/songs/60074262.mkv +藤井リナ-ヒカリ,http://em.21dtv.com/songs/60074254.mkv +AQUA TIMEZ-つぼみ,http://em.21dtv.com/songs/60074246.mkv +MS.OOJA-ギブス,http://em.21dtv.com/songs/60074228.mkv +玄乐队-任逍遥,http://em.21dtv.com/songs/60132706.mkv +任贤齐-任逍遥,http://em.21dtv.com/songs/60036565.mkv +姜帆-若相惜,http://em.21dtv.com/songs/60104029.mkv +后弦-若相惜,http://em.21dtv.com/songs/60064816.mkv +郁钧剑-热血颂,http://em.21dtv.com/songs/60036298.mkv +佚名-热血颂,http://em.21dtv.com/songs/60036297.mkv +佚名-热血颂(伦巴),http://em.21dtv.com/songs/60036296.mkv +大张伟-热血燃,http://em.21dtv.com/songs/60122634.mkv +黎明-任贤齐,http://em.21dtv.com/songs/60089069.mkv +乌兰图雅-乳香飘,http://em.21dtv.com/songs/60133333.mkv +呼斯楞-乳香飘,http://em.21dtv.com/songs/60106719.mkv +德德玛-乳香飘,http://em.21dtv.com/songs/60083734.mkv +乌兰托亚-乳香飘,http://em.21dtv.com/songs/60037038.mkv +金花-乳香飘,http://em.21dtv.com/songs/60037037.mkv +富博洋-入香茗,http://em.21dtv.com/songs/60066284.mkv +孙淑媚-软心肝,http://em.21dtv.com/songs/60037093.mkv +凤娘-软心肝,http://em.21dtv.com/songs/60037092.mkv +郭桓宇-任性爱,http://em.21dtv.com/songs/60134329.mkv +阿悄-任性爱,http://em.21dtv.com/songs/60099568.mkv +詹曼玲-让我醉(无原唱),http://em.21dtv.com/songs/60036205.mkv +张家辉-让我走,http://em.21dtv.com/songs/60036203.mkv +邵兵-让我走(演唱会),http://em.21dtv.com/songs/60036202.mkv +佚名-rock with you,http://em.21dtv.com/songs/60004713.mkv +郭美美-任我行,http://em.21dtv.com/songs/60036564.mkv +郭采洁-rain wont stay,http://em.21dtv.com/songs/60004595.mkv +佚名-若无你,http://em.21dtv.com/songs/60037120.mkv +罗文聪-若无你,http://em.21dtv.com/songs/60037119.mkv +莫文蔚-让我美,http://em.21dtv.com/songs/60036146.mkv +SAYA-让我哭,http://em.21dtv.com/songs/60087214.mkv +STEVE WINWOOD-roll with it,http://em.21dtv.com/songs/60004725.mkv +陈奕迅-任我行,http://em.21dtv.com/songs/60080918.mkv +刘溪-让我飞,http://em.21dtv.com/songs/60120369.mkv +彭亮-让我飞,http://em.21dtv.com/songs/60036129.mkv +王喜-让我贝,http://em.21dtv.com/songs/60036122.mkv +林志炫-让我爱,http://em.21dtv.com/songs/60091471.mkv +阿桑-让我爱(演唱会),http://em.21dtv.com/songs/60036113.mkv +LASSE LINDH-Run To You,http://em.21dtv.com/songs/60099674.mkv +花儿(林佳音)-Run,http://em.21dtv.com/songs/60132826.mkv +林忆莲-Run,http://em.21dtv.com/songs/60132613.mkv +VIXX-rock ur bod,http://em.21dtv.com/songs/60069130.mkv +佚名-run to you,http://em.21dtv.com/songs/60004757.mkv +DJ.DOC-run to you,http://em.21dtv.com/songs/60004756.mkv +TAKE THAT-rule the world,http://em.21dtv.com/songs/60082315.mkv +BEYONCE-run the world,http://em.21dtv.com/songs/60073820.mkv +AYAMI-revise the world(演唱会),http://em.21dtv.com/songs/60073800.mkv +THE DREAM-rockinthat thang,http://em.21dtv.com/songs/60060899.mkv +佚名-return to sender,http://em.21dtv.com/songs/60004657.mkv +B'Z-real thing shakes(无原唱),http://em.21dtv.com/songs/60004625.mkv +DIXIE CHICKS-ready to run,http://em.21dtv.com/songs/60004620.mkv +佚名-rock the party,http://em.21dtv.com/songs/60004711.mkv +BEE GEES-run to me,http://em.21dtv.com/songs/60004755.mkv +G.GOFFIN-J.KELLER-run to him(无原唱),http://em.21dtv.com/songs/60004754.mkv +PANIC AT THE DISCO-ready to go,http://em.21dtv.com/songs/60073791.mkv +BOY'Z-ready to go(演唱会),http://em.21dtv.com/songs/60063714.mkv +BOYZ-ready to go,http://em.21dtv.com/songs/60061967.mkv +SHANIA TWAIN-rock this country(演唱会),http://em.21dtv.com/songs/60004712.mkv +HUES CORPORATION-rock the boat,http://em.21dtv.com/songs/60004710.mkv +佚名-reason to believe,http://em.21dtv.com/songs/60004630.mkv +BEYONCE-ring the alarm,http://em.21dtv.com/songs/60067973.mkv +李萌-饶舌者,http://em.21dtv.com/songs/60108585.mkv +佟铁鑫-燃烧夜,http://em.21dtv.com/songs/60109150.mkv +王亚平-瑞生缘,http://em.21dtv.com/songs/60077438.mkv +余天-榕树下,http://em.21dtv.com/songs/60036701.mkv +吕珊-榕树下(演唱会),http://em.21dtv.com/songs/60036699.mkv +杨千桦-仍是我,http://em.21dtv.com/songs/60092829.mkv +李奉果-人上人,http://em.21dtv.com/songs/60116003.mkv +佚名-run samson run,http://em.21dtv.com/songs/60004753.mkv +李龙基-人生曲(演唱会),http://em.21dtv.com/songs/60036435.mkv +欧阳曹亮-人生路,http://em.21dtv.com/songs/60120683.mkv +带泪的鱼-若殇璃,http://em.21dtv.com/songs/60120492.mkv +陈思-人生路,http://em.21dtv.com/songs/60106398.mkv +姜涛-人生路,http://em.21dtv.com/songs/60100828.mkv +张蓉蓉-人生路,http://em.21dtv.com/songs/60036426.mkv +江蕙-人生路,http://em.21dtv.com/songs/60036425.mkv +高向鹏+方瑞娥-人生路,http://em.21dtv.com/songs/60036424.mkv +方顺吉-人生路,http://em.21dtv.com/songs/60036423.mkv +方瑞娥+高向鹏-人生路,http://em.21dtv.com/songs/60036422.mkv +阿宝-人生歌,http://em.21dtv.com/songs/60118126.mkv +AZIATIX-ready set go,http://em.21dtv.com/songs/60073790.mkv +TOKIO HOTEL-ready set go!,http://em.21dtv.com/songs/60062170.mkv +APRIL-热伤风,http://em.21dtv.com/songs/60131034.mkv +周信-热水袋,http://em.21dtv.com/songs/60072341.mkv +洪百慧-人生茶,http://em.21dtv.com/songs/60135498.mkv +TOBY KEITH-red solo cup,http://em.21dtv.com/songs/60065673.mkv +JJCC-燃烧吧,http://em.21dtv.com/songs/60108229.mkv +朱泽元-若是爱,http://em.21dtv.com/songs/60133784.mkv +徐千雅-燃烧爱,http://em.21dtv.com/songs/60064778.mkv +NEIL DIAMOND-red red wine,http://em.21dtv.com/songs/60004635.mkv +佚名-red river valley,http://em.21dtv.com/songs/60004637.mkv +TWINS-red river valley,http://em.21dtv.com/songs/60004636.mkv +大庆小芳-热热热,http://em.21dtv.com/songs/60104006.mkv +S.H.E-ring ring ring,http://em.21dtv.com/songs/60004686.mkv +洪荣宏-日日红,http://em.21dtv.com/songs/60100280.mkv +卢广仲-rockn roll的style(演唱会),http://em.21dtv.com/songs/60004722.mkv +佚名-日日春,http://em.21dtv.com/songs/60036649.mkv +蔡佳麟-人情味,http://em.21dtv.com/songs/60134198.mkv +江蕙-人情味,http://em.21dtv.com/songs/60036372.mkv +陈小春-人情味,http://em.21dtv.com/songs/60036371.mkv +黑色饼干-relax轻松,http://em.21dtv.com/songs/60004647.mkv +黄淑惠-热气球,http://em.21dtv.com/songs/60036258.mkv +许冠杰-柔情泪,http://em.21dtv.com/songs/60036710.mkv +甲子慧-人情歌,http://em.21dtv.com/songs/60125972.mkv +甲子慧-人情歌,http://em.21dtv.com/songs/60124304.mkv +陈冠希-running 跑逃,http://em.21dtv.com/songs/60004771.mkv +DA PUMP-rain of pain(无原唱),http://em.21dtv.com/songs/60004593.mkv +杨千嬅-ready or not,http://em.21dtv.com/songs/60004618.mkv +AFTER 7-ready or not,http://em.21dtv.com/songs/60004617.mkv +ASHANTI-rain on me,http://em.21dtv.com/songs/60063711.mkv +PITBULL-rain over me,http://em.21dtv.com/songs/60060897.mkv +US5-rhythm of life,http://em.21dtv.com/songs/60004665.mkv +MADONNA-ray of light,http://em.21dtv.com/songs/60004611.mkv +刘程伊-rose of heaven,http://em.21dtv.com/songs/60071657.mkv +佚名-river of dreams,http://em.21dtv.com/songs/60004693.mkv +POPU LADY-Rock Your Nigh,http://em.21dtv.com/songs/60101027.mkv +POPU LADY-ROCK YOUR NIGHT,http://em.21dtv.com/songs/60096878.mkv +谭锡禧-rivers of babylon(演唱会),http://em.21dtv.com/songs/60082308.mkv +BONEY M-rivers of babylon,http://em.21dtv.com/songs/60004696.mkv +佚名-river of babylon,http://em.21dtv.com/songs/60004692.mkv +DRAKE-round of applause,http://em.21dtv.com/songs/60067974.mkv +周超-让你走,http://em.21dtv.com/songs/60117625.mkv +张学友-让你知,http://em.21dtv.com/songs/60089272.mkv +DREAM GIRLS-让你走,http://em.21dtv.com/songs/60072333.mkv +许茹芸-让你走,http://em.21dtv.com/songs/60036092.mkv +佚名-让你走(无原唱),http://em.21dtv.com/songs/60036091.mkv +许志安-让你厌,http://em.21dtv.com/songs/60036086.mkv +彭家丽-日女人,http://em.21dtv.com/songs/60036646.mkv +叶乃文-热牛奶,http://em.21dtv.com/songs/60036257.mkv +彩贝与海-让你飞,http://em.21dtv.com/songs/60115931.mkv +光良-让你飞,http://em.21dtv.com/songs/60080971.mkv +张学友-让你飞,http://em.21dtv.com/songs/60036076.mkv +张惠妹-让你飞,http://em.21dtv.com/songs/60036075.mkv +何以奇-让你飞,http://em.21dtv.com/songs/60036074.mkv +丁丁-让你猜,http://em.21dtv.com/songs/60081867.mkv +奕丹-让你宠,http://em.21dtv.com/songs/60036072.mkv +爱戴-让你宠(演唱会),http://em.21dtv.com/songs/60036071.mkv +郭静-软绵绵,http://em.21dtv.com/songs/60062408.mkv +小曲儿-如梦令,http://em.21dtv.com/songs/60125423.mkv +杨钰莹-如梦令,http://em.21dtv.com/songs/60072355.mkv +HITA-如梦令,http://em.21dtv.com/songs/60072354.mkv +韩庚-如梦令,http://em.21dtv.com/songs/60061549.mkv +秋虹-如梦令,http://em.21dtv.com/songs/60037023.mkv +蔡琴-如梦令,http://em.21dtv.com/songs/60037022.mkv +JOHN DENVER-rocky mountain high(演唱会),http://em.21dtv.com/songs/60004724.mkv +矢沢永吉-rockinmy heart(无原唱),http://em.21dtv.com/songs/60004721.mkv +TWO X-ring ma bell,http://em.21dtv.com/songs/60073806.mkv +容祖儿-燃亮我(演唱会),http://em.21dtv.com/songs/60035995.mkv +TRAVIS PORTER+JEREMIH-ride like that,http://em.21dtv.com/songs/60073802.mkv +珊瑚-热泪颂,http://em.21dtv.com/songs/60036250.mkv +TLC-red light special,http://em.21dtv.com/songs/60004634.mkv +吴思贤-热恋期,http://em.21dtv.com/songs/60104877.mkv +庞龙+迟云-热辣辣,http://em.21dtv.com/songs/60072340.mkv +张学友+陈奕迅-热辣辣(演唱会),http://em.21dtv.com/songs/60036246.mkv +张国荣-热辣辣(演唱会),http://em.21dtv.com/songs/60036245.mkv +温岚-人来疯,http://em.21dtv.com/songs/60036350.mkv +化学猴子-人来疯,http://em.21dtv.com/songs/60036349.mkv +汪明荃-热咖啡(演唱会),http://em.21dtv.com/songs/60036243.mkv +尤雅-阮家庄,http://em.21dtv.com/songs/60053651.mkv +佚名-阮家庄,http://em.21dtv.com/songs/60037073.mkv +陈学冬-人间沙,http://em.21dtv.com/songs/60128522.mkv +高向鹏-人甲人,http://em.21dtv.com/songs/60026899.mkv +永动机-日剧迷,http://em.21dtv.com/songs/60135476.mkv +佚名-人间道,http://em.21dtv.com/songs/60036331.mkv +张学友-人间道(演唱会),http://em.21dtv.com/songs/60036330.mkv +郑世豪-仍坚持,http://em.21dtv.com/songs/60128468.mkv +RITA ORA-r i p,http://em.21dtv.com/songs/60067971.mkv +SNEAKBO-RING A LING,http://em.21dtv.com/songs/60096877.mkv +佚名-right here wating,http://em.21dtv.com/songs/60004679.mkv +佚名-right here waiting,http://em.21dtv.com/songs/60004678.mkv +RICHARD MARX-right here waiting,http://em.21dtv.com/songs/60004677.mkv +任然-然后呢,http://em.21dtv.com/songs/60107480.mkv +许景淳-人好假,http://em.21dtv.com/songs/60036323.mkv +ADELE-rumor has it(演唱会),http://em.21dtv.com/songs/60069132.mkv +ADELE-rumour has it,http://em.21dtv.com/songs/60065678.mkv +AS ONE-red hot hits,http://em.21dtv.com/songs/60071654.mkv +io乐团-如果我,http://em.21dtv.com/songs/60118262.mkv +张学友-人鬼兽,http://em.21dtv.com/songs/60036318.mkv +房祖名-人工墙,http://em.21dtv.com/songs/60036315.mkv +谭维维-如果你,http://em.21dtv.com/songs/60036845.mkv +奕丹-如果坏,http://em.21dtv.com/songs/60036802.mkv +咪依鲁江-容格格,http://em.21dtv.com/songs/60077389.mkv +咪依鲁江-容格格(舞曲版),http://em.21dtv.com/songs/60072347.mkv +李明霖-如果爱,http://em.21dtv.com/songs/60128090.mkv +马汝珑-如果爱,http://em.21dtv.com/songs/60109032.mkv +刘爽-如果爱,http://em.21dtv.com/songs/60096956.mkv +林俊逸-如果爱,http://em.21dtv.com/songs/60096955.mkv +颜羽-如果爱,http://em.21dtv.com/songs/60096954.mkv +张学友-如果爱,http://em.21dtv.com/songs/60036749.mkv +张杰-如果爱,http://em.21dtv.com/songs/60036748.mkv +范玮琪-如果爱,http://em.21dtv.com/songs/60036747.mkv +张学友-如果爱(演唱会),http://em.21dtv.com/songs/60036746.mkv +泳儿-如果爱(演唱会),http://em.21dtv.com/songs/60036745.mkv +范逸臣-Rock For Love,http://em.21dtv.com/songs/60079893.mkv +OLIVIA-ready for love,http://em.21dtv.com/songs/60062122.mkv +张柏芝-ready for love,http://em.21dtv.com/songs/60004616.mkv +陈韦汝-ready for love,http://em.21dtv.com/songs/60004615.mkv +爱戴-ready for love,http://em.21dtv.com/songs/60004614.mkv +郑智化-让风吹,http://em.21dtv.com/songs/60036058.mkv +张文森-让风吹(演唱会)(无原唱),http://em.21dtv.com/songs/60036057.mkv +SUGARBABES-run for cover,http://em.21dtv.com/songs/60004751.mkv +金泫雅-Red,http://em.21dtv.com/songs/60103639.mkv +郑劲松-热带鱼,http://em.21dtv.com/songs/60108044.mkv +张燕清+洪百慧-阮的伊,http://em.21dtv.com/songs/60069777.mkv +蓝心湄-热带鱼,http://em.21dtv.com/songs/60036234.mkv +少女时代-run devir run(HD高清),http://em.21dtv.com/songs/60004750.mkv +蔡秋凤-阮的命,http://em.21dtv.com/songs/60037061.mkv +DA SKOOL-rock da house,http://em.21dtv.com/songs/60004704.mkv +李永昌-入洞房,http://em.21dtv.com/songs/60100148.mkv +一绫-阮的爱,http://em.21dtv.com/songs/60128715.mkv +陈奕迅-人车志,http://em.21dtv.com/songs/60036308.mkv +陈奕迅-人车志(HD演唱会),http://em.21dtv.com/songs/60036307.mkv +KELLY ROWLAND-rose colored glasses,http://em.21dtv.com/songs/60004732.mkv +S.H.E-忍不住,http://em.21dtv.com/songs/60036509.mkv +TWINS-人比人,http://em.21dtv.com/songs/60036305.mkv +T.I-rubber band man,http://em.21dtv.com/songs/60004742.mkv +崔子格-忍别离,http://em.21dtv.com/songs/60115889.mkv +杨坤+人声兄弟-日不落,http://em.21dtv.com/songs/60113669.mkv +梁栋江+余枫-日不落,http://em.21dtv.com/songs/60104259.mkv +蔡妍+ALAN-日不落,http://em.21dtv.com/songs/60098752.mkv +崔子格-忍别离,http://em.21dtv.com/songs/60097006.mkv +关喆-日不落,http://em.21dtv.com/songs/60083716.mkv +陈明-日不落,http://em.21dtv.com/songs/60077379.mkv +蔡依林-日不落,http://em.21dtv.com/songs/60036609.mkv +农夫-rap along song,http://em.21dtv.com/songs/60004609.mkv +SEAN KINGSTON+CHER LLOYD-rum and raybans,http://em.21dtv.com/songs/60073819.mkv +ADELE-right as rain,http://em.21dtv.com/songs/60065674.mkv +佚名-round and round,http://em.21dtv.com/songs/60004736.mkv +佚名-roses are red,http://em.21dtv.com/songs/60004735.mkv +佚名-rock and roll,http://em.21dtv.com/songs/60004701.mkv +范逸臣+酷爱乐队-rock all night,http://em.21dtv.com/songs/60004698.mkv +BIFFY CLYRO-stingin belle,http://em.21dtv.com/songs/60073947.mkv +クラムボン-rough and laugh,http://em.21dtv.com/songs/60073818.mkv +佚名-romeo and juliet,http://em.21dtv.com/songs/60004728.mkv +郑秀文-热爱岛,http://em.21dtv.com/songs/60036230.mkv +郑秀文-热爱岛(演唱会),http://em.21dtv.com/songs/60036229.mkv +佚名-rocket 2u,http://em.21dtv.com/songs/60004719.mkv +斯琴高丽-七种罪,http://em.21dtv.com/songs/60083596.mkv +林志颖-去走走,http://em.21dtv.com/songs/60035859.mkv +林志颖-去走走(演唱会),http://em.21dtv.com/songs/60035858.mkv +周杰伦-请珍惜,http://em.21dtv.com/songs/60090843.mkv +雪儿达瓦-青藏人,http://em.21dtv.com/songs/60034652.mkv +温拿乐队-曲中情,http://em.21dtv.com/songs/60035821.mkv +翁立友+黄思婷-牵着你,http://em.21dtv.com/songs/60034257.mkv +2MORO-牵着你,http://em.21dtv.com/songs/60034256.mkv +张文绮+曹雅雯+许明杰-切仔面,http://em.21dtv.com/songs/60130319.mkv +项玉+蔡向鹏-青州梦,http://em.21dtv.com/songs/60114256.mkv +张辉+谢思琴-蕲州美,http://em.21dtv.com/songs/60099243.mkv +路童+林淇-情之恋,http://em.21dtv.com/songs/60126244.mkv +荒山亮-七仔亏,http://em.21dtv.com/songs/60083597.mkv +孟文豪-七字绝,http://em.21dtv.com/songs/60081125.mkv +邰正宵-千纸鹤,http://em.21dtv.com/songs/60128456.mkv +邰正宵+李大卫-千纸鹤,http://em.21dtv.com/songs/60115443.mkv +方大同-千纸鹤,http://em.21dtv.com/songs/60069712.mkv +邰正宵-千纸鹤,http://em.21dtv.com/songs/60034188.mkv +黄士佑-千纸鹤,http://em.21dtv.com/songs/60034187.mkv +邰正宵-千纸鹤(演唱会),http://em.21dtv.com/songs/60034186.mkv +马健南-群之歌,http://em.21dtv.com/songs/60115532.mkv +晓君+彭博-群租房,http://em.21dtv.com/songs/60101366.mkv +林慧省-情一字,http://em.21dtv.com/songs/60135427.mkv +吉吉-青云志,http://em.21dtv.com/songs/60126683.mkv +宋孟君+郑敏-秋月醉,http://em.21dtv.com/songs/60094479.mkv +董贞-秋夜吟,http://em.21dtv.com/songs/60134184.mkv +罗力威-秋叶缘,http://em.21dtv.com/songs/60097035.mkv +佚名-秋夜吟,http://em.21dtv.com/songs/60035753.mkv +郑伊健-情与义,http://em.21dtv.com/songs/60035425.mkv +李翊君-七月雪,http://em.21dtv.com/songs/60086756.mkv +詹曼铃-秋夜心,http://em.21dtv.com/songs/60035752.mkv +SWEETY-亲一下,http://em.21dtv.com/songs/60034618.mkv +黄西田+樱桃姐妹-乾一吓,http://em.21dtv.com/songs/60034326.mkv +叶瑷菱-七月雪,http://em.21dtv.com/songs/60033808.mkv +央金卓嘎-祈愿树,http://em.21dtv.com/songs/60130227.mkv +Jam-七月上,http://em.21dtv.com/songs/60124905.mkv +邓养天-潜意识,http://em.21dtv.com/songs/60120004.mkv +易本志-秋夜思,http://em.21dtv.com/songs/60119611.mkv +JAM-七月上,http://em.21dtv.com/songs/60118265.mkv +张学友-情已逝,http://em.21dtv.com/songs/60035403.mkv +张学友-情已逝(演唱会),http://em.21dtv.com/songs/60035402.mkv +李德胜-七月七,http://em.21dtv.com/songs/60129227.mkv +沈元-去月球,http://em.21dtv.com/songs/60035856.mkv +江蕙-秋夜曲,http://em.21dtv.com/songs/60035750.mkv +聂琳峰-七月七,http://em.21dtv.com/songs/60033803.mkv +杜奕衡-七月七,http://em.21dtv.com/songs/60033802.mkv +董冬-七月七,http://em.21dtv.com/songs/60033801.mkv +迪玛希-秋意浓,http://em.21dtv.com/songs/60132955.mkv +蔡恩慧-情意浓,http://em.21dtv.com/songs/60120931.mkv +李幸倪-秋意浓,http://em.21dtv.com/songs/60115222.mkv +郑淳元-秋意浓,http://em.21dtv.com/songs/60110582.mkv +刘明湘-秋意浓,http://em.21dtv.com/songs/60104826.mkv +古巨基+李泉-秋意浓,http://em.21dtv.com/songs/60098178.mkv +林俊逸-秋意浓,http://em.21dtv.com/songs/60097036.mkv +谭咏麟-全因你,http://em.21dtv.com/songs/60096950.mkv +胡彦斌-秋意浓,http://em.21dtv.com/songs/60086775.mkv +金润吉+非非-秋意浓,http://em.21dtv.com/songs/60081541.mkv +沙宝亮-秋意浓(演唱会),http://em.21dtv.com/songs/60077292.mkv +沙宝亮-秋意浓),http://em.21dtv.com/songs/60072328.mkv +张靓颖-秋意浓,http://em.21dtv.com/songs/60068608.mkv +钟兆康-全因你,http://em.21dtv.com/songs/60035935.mkv +陈浩民-取一念,http://em.21dtv.com/songs/60035830.mkv +张学友-秋意浓,http://em.21dtv.com/songs/60035755.mkv +许景淳-秋意浓,http://em.21dtv.com/songs/60035754.mkv +王菲-情已灭,http://em.21dtv.com/songs/60091742.mkv +馨童-青衣泪,http://em.21dtv.com/songs/60123373.mkv +于文文-请原谅,http://em.21dtv.com/songs/60105567.mkv +彦霖-请原谅,http://em.21dtv.com/songs/60035612.mkv +侧田-情永落,http://em.21dtv.com/songs/60035421.mkv +侧田-情永落(演唱会),http://em.21dtv.com/songs/60035420.mkv +林欣彤-奇遇记,http://em.21dtv.com/songs/60105185.mkv +刘珺儿-情缘尽,http://em.21dtv.com/songs/60035440.mkv +陈慧娴-情意结,http://em.21dtv.com/songs/60035415.mkv +陈慧娴-情意结(演唱会),http://em.21dtv.com/songs/60035414.mkv +修竹-秋叶痕,http://em.21dtv.com/songs/60109986.mkv +丁当-奇异果,http://em.21dtv.com/songs/60067319.mkv +顾莉雅-亲一个,http://em.21dtv.com/songs/60034617.mkv +陈淑萍-情雨飞,http://em.21dtv.com/songs/60107331.mkv +梁玉嵘-秋夜赋(戏曲),http://em.21dtv.com/songs/60092919.mkv +图桠格-去远方(演唱会),http://em.21dtv.com/songs/60061527.mkv +李行亮-犬夜叉(演唱会),http://em.21dtv.com/songs/60077309.mkv +SOYUMI-请摇摆,http://em.21dtv.com/songs/60111653.mkv +方少珊-情已变,http://em.21dtv.com/songs/60081615.mkv +云の泣-青玉案,http://em.21dtv.com/songs/60103868.mkv +火星熊-青玉案,http://em.21dtv.com/songs/60068593.mkv +BOXING乐团-强心脏,http://em.21dtv.com/songs/60106525.mkv +Boxing-强心脏,http://em.21dtv.com/songs/60106524.mkv +王艺歌-去西藏,http://em.21dtv.com/songs/60077301.mkv +牛奶咖啡-去寻找,http://em.21dtv.com/songs/60062789.mkv +黄鹤翔-牵心走,http://em.21dtv.com/songs/60034251.mkv +蔡晓-七星岩,http://em.21dtv.com/songs/60107988.mkv +林忆莲-千禧愿,http://em.21dtv.com/songs/60091448.mkv +吕方-七星岩,http://em.21dtv.com/songs/60077107.mkv +傅振辉+周慧璇-琴箫缘,http://em.21dtv.com/songs/60034629.mkv +佚名-七夕雨,http://em.21dtv.com/songs/60033784.mkv +陈鹏杰+不才-权香调,http://em.21dtv.com/songs/60134429.mkv +司徒哲龙-琴相思,http://em.21dtv.com/songs/60109212.mkv +赵彦雄-缺先生,http://em.21dtv.com/songs/60103591.mkv +余天-群星颂,http://em.21dtv.com/songs/60035987.mkv +陶馨州+张虹-情相牵,http://em.21dtv.com/songs/60122254.mkv +李天平+章金玲-情相牵,http://em.21dtv.com/songs/60116898.mkv +詹雅雯-七夕情,http://em.21dtv.com/songs/60078418.mkv +圆坛-七夕情,http://em.21dtv.com/songs/60061493.mkv +郑秀月-七夕情(无原唱),http://em.21dtv.com/songs/60033782.mkv +岑天勇-黔西南,http://em.21dtv.com/songs/60133613.mkv +岑天勇-黔西南,http://em.21dtv.com/songs/60126814.mkv +伍凌枫-娶新娘,http://em.21dtv.com/songs/60107483.mkv +佚名-娶新娘,http://em.21dtv.com/songs/60035832.mkv +牛朝阳-七仙女,http://em.21dtv.com/songs/60033785.mkv +陈法拉-缺陷美,http://em.21dtv.com/songs/60066262.mkv +杨丞琳-缺陷美,http://em.21dtv.com/songs/60061528.mkv +刘德华-缺陷美,http://em.21dtv.com/songs/60035969.mkv +杨千嬅-缺陷美(演唱会),http://em.21dtv.com/songs/60035968.mkv +李长春-强项令,http://em.21dtv.com/songs/60091377.mkv +于冠华-秋心赋,http://em.21dtv.com/songs/60035741.mkv +郑锦昌+刘君儿-庆新春,http://em.21dtv.com/songs/60093330.mkv +七朵组合-清新爱,http://em.21dtv.com/songs/60113208.mkv +1976-前王子,http://em.21dtv.com/songs/60111569.mkv +阿文-情无缘,http://em.21dtv.com/songs/60109682.mkv +叶依青-劝无心,http://em.21dtv.com/songs/60083693.mkv +陈坤-蔷薇刑,http://em.21dtv.com/songs/60034395.mkv +刘德华-情未鸟,http://em.21dtv.com/songs/60035385.mkv +刘德华-情未鸟(演唱会),http://em.21dtv.com/songs/60035384.mkv +林子娟-情为难,http://em.21dtv.com/songs/60035374.mkv +郑少秋-情未了,http://em.21dtv.com/songs/60035383.mkv +余天-情未了,http://em.21dtv.com/songs/60035382.mkv +佚名-情未了,http://em.21dtv.com/songs/60035381.mkv +秀兰玛雅-情未了,http://em.21dtv.com/songs/60035380.mkv +王子豪-情未了,http://em.21dtv.com/songs/60035379.mkv +周慧敏+黄凯芹-情未了(演唱会),http://em.21dtv.com/songs/60035378.mkv +郑少秋-情未了(演唱会),http://em.21dtv.com/songs/60035377.mkv +黄凯芹+汤宝如-情未了(演唱会),http://em.21dtv.com/songs/60035376.mkv +孤吢渋-蔷薇花,http://em.21dtv.com/songs/60083619.mkv +孤心泪-蔷薇花,http://em.21dtv.com/songs/60077161.mkv +一飞-蔷薇花(演唱会),http://em.21dtv.com/songs/60077160.mkv +谢雷-蔷薇花,http://em.21dtv.com/songs/60034392.mkv +白虹-蔷薇花,http://em.21dtv.com/songs/60034391.mkv +龚月-晴雯歌,http://em.21dtv.com/songs/60077265.mkv +陈力-晴雯歌,http://em.21dtv.com/songs/60035496.mkv +余天-情未断,http://em.21dtv.com/songs/60035375.mkv +陈百潭-千万愁,http://em.21dtv.com/songs/60104568.mkv +草蜢-起舞吧,http://em.21dtv.com/songs/60034022.mkv +鲁振顺-全为爱(演唱会),http://em.21dtv.com/songs/60077308.mkv +罗文-全为爱(演唱会),http://em.21dtv.com/songs/60035923.mkv +黄宥杰-倾听者,http://em.21dtv.com/songs/60128628.mkv +八大巨星-庆团圆,http://em.21dtv.com/songs/60077277.mkv +陈雷-庆团圆,http://em.21dtv.com/songs/60071069.mkv +刘子于-请听完,http://em.21dtv.com/songs/60098144.mkv +林心如-倾听我,http://em.21dtv.com/songs/60077227.mkv +DOLLY PARTON-9 to 5,http://em.21dtv.com/songs/60000030.mkv +豪记大对唱-迄逃人(无原唱),http://em.21dtv.com/songs/60034028.mkv +詹雅云+詹雅雯-骑铁马,http://em.21dtv.com/songs/60075820.mkv +樱花姐妹-骑铁马,http://em.21dtv.com/songs/60033981.mkv +于玄子-秋天里,http://em.21dtv.com/songs/60083683.mkv +赖伟锋-七失罪,http://em.21dtv.com/songs/60114092.mkv +陈翔-潜水钟,http://em.21dtv.com/songs/60083617.mkv +莫文蔚-青山在(演唱会),http://em.21dtv.com/songs/60077217.mkv +晓枫-前世罪,http://em.21dtv.com/songs/60034300.mkv +新街口组合+刘晨晶-去三亚,http://em.21dtv.com/songs/60123994.mkv +黄凤仪-青石愿,http://em.21dtv.com/songs/60117407.mkv +晃儿-清商月,http://em.21dtv.com/songs/60083651.mkv +姜鹏-七世缘,http://em.21dtv.com/songs/60066221.mkv +毛阿敏-清水吟,http://em.21dtv.com/songs/60034900.mkv +董贞-青衫隐,http://em.21dtv.com/songs/60034787.mkv +秀兰玛雅-前世缘,http://em.21dtv.com/songs/60034298.mkv +陈雷+杨静-前世缘,http://em.21dtv.com/songs/60034297.mkv +月光星子-七色雨,http://em.21dtv.com/songs/60033766.mkv +星子-七色雨,http://em.21dtv.com/songs/60033765.mkv +人衣大人-牵丝戏,http://em.21dtv.com/songs/60134871.mkv +奇然-牵丝戏,http://em.21dtv.com/songs/60133539.mkv +歌一生-青石巷,http://em.21dtv.com/songs/60100250.mkv +崔苗-掐蒜苔,http://em.21dtv.com/songs/60123873.mkv +[Group] +groupName=十六万歌曲MV等 - 29 +陈明顺-情似天,http://em.21dtv.com/songs/60107328.mkv +陈盈洁-乞食调(无原唱),http://em.21dtv.com/songs/60096022.mkv +安雯-掐蒜苔,http://em.21dtv.com/songs/60090947.mkv +佚名-情书团,http://em.21dtv.com/songs/60035353.mkv +张蓉蓉+傅振辉-情深深,http://em.21dtv.com/songs/60035296.mkv +袁小迪+龙千玉-情深深,http://em.21dtv.com/songs/60035295.mkv +佚名-que sera sera,http://em.21dtv.com/songs/60004575.mkv +DORIS DAY-que sera sera,http://em.21dtv.com/songs/60004574.mkv +王建杰-七世情,http://em.21dtv.com/songs/60114681.mkv +卓依婷-前世情,http://em.21dtv.com/songs/60034294.mkv +彭莉-牵手情,http://em.21dtv.com/songs/60034244.mkv +凤娘-牵手情,http://em.21dtv.com/songs/60034243.mkv +曾庆瑜-七色桥,http://em.21dtv.com/songs/60033764.mkv +徐誉滕-全是你,http://em.21dtv.com/songs/60035920.mkv +谭耀文-欠什么,http://em.21dtv.com/songs/60034352.mkv +林忆莲-前生梦(演唱会),http://em.21dtv.com/songs/60034289.mkv +望海高歌-青丝乱,http://em.21dtv.com/songs/60115984.mkv +陈振东-情所累,http://em.21dtv.com/songs/60083680.mkv +陈珊妮-启示路,http://em.21dtv.com/songs/60083602.mkv +甲子蕙-情伤路,http://em.21dtv.com/songs/60035276.mkv +谢霆锋-启示录(演唱会),http://em.21dtv.com/songs/60033999.mkv +群星-全世界,http://em.21dtv.com/songs/60127279.mkv +张静-秦商魂,http://em.21dtv.com/songs/60133698.mkv +宋沛江-墙上画,http://em.21dtv.com/songs/60114499.mkv +曹轩宾-千岁寒,http://em.21dtv.com/songs/60096902.mkv +李梓菡-秦始皇,http://em.21dtv.com/songs/60086768.mkv +李珂熠-七色花,http://em.21dtv.com/songs/60062598.mkv +刘一祯-清水湖,http://em.21dtv.com/songs/60034899.mkv +佚名-乞食歌,http://em.21dtv.com/songs/60095392.mkv +王瑞霞-牵手过,http://em.21dtv.com/songs/60072380.mkv +邓丽君-劝世歌,http://em.21dtv.com/songs/60035955.mkv +童唱-乞食歌,http://em.21dtv.com/songs/60033993.mkv +秦海璐+李汉昭-牵手飞,http://em.21dtv.com/songs/60034238.mkv +佚名-乞食调(无原唱),http://em.21dtv.com/songs/60033994.mkv +向丽-青石板,http://em.21dtv.com/songs/60127811.mkv +陈威全-全是爱,http://em.21dtv.com/songs/60100576.mkv +冯铭潮-诠释爱,http://em.21dtv.com/songs/60035939.mkv +凤凰传奇-全是爱,http://em.21dtv.com/songs/60035918.mkv +黄家强-全是爱(演唱会),http://em.21dtv.com/songs/60035917.mkv +SOLER-全是爱(演唱会),http://em.21dtv.com/songs/60035916.mkv +陈沛轩+胡翊-青山の恋,http://em.21dtv.com/songs/60085603.mkv +TACKE竹桑-七日札,http://em.21dtv.com/songs/60083594.mkv +一飞-情人醉,http://em.21dtv.com/songs/60080814.mkv +施文彬+林柔均-情人装,http://em.21dtv.com/songs/60064750.mkv +兰天-情人醉,http://em.21dtv.com/songs/60062563.mkv +陈慧琳-情人战,http://em.21dtv.com/songs/60035261.mkv +黑龙-情人夜,http://em.21dtv.com/songs/60035253.mkv +张秀卿-情人巷,http://em.21dtv.com/songs/60072316.mkv +大哲+云菲菲-情人星,http://em.21dtv.com/songs/60062308.mkv +郑秀文-七日鲜,http://em.21dtv.com/songs/60033762.mkv +陈艺鹏-情人锁(吉他版),http://em.21dtv.com/songs/60097084.mkv +陈艺鹏-情人锁,http://em.21dtv.com/songs/60097083.mkv +林俊吉-情人衫,http://em.21dtv.com/songs/60064748.mkv +春妹-情若深(无原唱),http://em.21dtv.com/songs/60035270.mkv +陈慧琳-情人说,http://em.21dtv.com/songs/60035248.mkv +袁小迪+向蕙玲-情人裳,http://em.21dtv.com/songs/60035247.mkv +青山-情人山,http://em.21dtv.com/songs/60035246.mkv +蔡琴-情人山,http://em.21dtv.com/songs/60035245.mkv +叶枫-情人山(演唱会),http://em.21dtv.com/songs/60035244.mkv +夏滨-情人情,http://em.21dtv.com/songs/60083666.mkv +潘秀琼+胡锦-情人桥(演唱会),http://em.21dtv.com/songs/60077254.mkv +甄秀珍-情人桥,http://em.21dtv.com/songs/60035243.mkv +龙千玉-情人桥,http://em.21dtv.com/songs/60035242.mkv +林淑容-情人桥,http://em.21dtv.com/songs/60035241.mkv +韩宝仪-情人桥,http://em.21dtv.com/songs/60035240.mkv +潘迪华-情人桥(演唱会),http://em.21dtv.com/songs/60035239.mkv +张蓉蓉-情人梦,http://em.21dtv.com/songs/60077253.mkv +七郎-情若梦,http://em.21dtv.com/songs/60035269.mkv +景行厅男孩-千人迷,http://em.21dtv.com/songs/60034154.mkv +陈怡婷+蔡佳麟-情人路,http://em.21dtv.com/songs/60085619.mkv +林志美-情人路,http://em.21dtv.com/songs/60035234.mkv +张秀卿+罗时丰-情人泪,http://em.21dtv.com/songs/60035233.mkv +叶德娴-情人lift(演唱会),http://em.21dtv.com/songs/60035177.mkv +庄心妍-情人节,http://em.21dtv.com/songs/60125474.mkv +大豪(黄昱豪)-情人节,http://em.21dtv.com/songs/60105732.mkv +庄心妍-情人节,http://em.21dtv.com/songs/60097082.mkv +许志安-情人甲,http://em.21dtv.com/songs/60081224.mkv +祁隆-情人街,http://em.21dtv.com/songs/60077251.mkv +苏富权-情人劫,http://em.21dtv.com/songs/60067343.mkv +刘心-情人节,http://em.21dtv.com/songs/60066249.mkv +路绮欧-情人借,http://em.21dtv.com/songs/60061522.mkv +张芸京-情人结,http://em.21dtv.com/songs/60035230.mkv +老狼-情人劫,http://em.21dtv.com/songs/60035229.mkv +黄淑惠-情人节,http://em.21dtv.com/songs/60035216.mkv +阿乐+时以凌-情人节,http://em.21dtv.com/songs/60035215.mkv +J.A.M-情人节,http://em.21dtv.com/songs/60035214.mkv +张杰-情人节(演唱会),http://em.21dtv.com/songs/60035213.mkv +吴克群-情人节(演唱会),http://em.21dtv.com/songs/60035212.mkv +斯琴高丽-情如花,http://em.21dtv.com/songs/60111128.mkv +詹雅雯-情人湖,http://em.21dtv.com/songs/60080912.mkv +程响-情人港,http://em.21dtv.com/songs/60123060.mkv +王振楠-穷人歌,http://em.21dtv.com/songs/60064763.mkv +方瑞娥-情人港,http://em.21dtv.com/songs/60035210.mkv +张超-全日爱,http://em.21dtv.com/songs/60077304.mkv +黎明-全日爱,http://em.21dtv.com/songs/60035895.mkv +黎明-全日爱(演唱会),http://em.21dtv.com/songs/60035894.mkv +许嵩-秋千坠,http://em.21dtv.com/songs/60035693.mkv +李娜-千秋月,http://em.21dtv.com/songs/60105139.mkv +龚淑君-鹊桥仙,http://em.21dtv.com/songs/60100699.mkv +S+-亲亲我,http://em.21dtv.com/songs/60089099.mkv +SVS-亲亲我(无原唱),http://em.21dtv.com/songs/60034593.mkv +车静子-千千吻,http://em.21dtv.com/songs/60034151.mkv +高瑜-牵牵手,http://em.21dtv.com/songs/60098948.mkv +于魁智-劝千岁,http://em.21dtv.com/songs/60035952.mkv +郑毅-牵牵手,http://em.21dtv.com/songs/60034217.mkv +杨臣刚-钱钱钱,http://em.21dtv.com/songs/60088081.mkv +邬祯琳-轻轻亲,http://em.21dtv.com/songs/60077219.mkv +刘超华-钱钱钱(演唱会),http://em.21dtv.com/songs/60077155.mkv +蔡卓妍-氢气球,http://em.21dtv.com/songs/60034828.mkv +王祖蓝-擒擒青,http://em.21dtv.com/songs/60034634.mkv +白冰冰-钱钱钱,http://em.21dtv.com/songs/60034318.mkv +佚名-quando quando quando,http://em.21dtv.com/songs/60004573.mkv +JOE DAVIS-quando quando quando,http://em.21dtv.com/songs/60004572.mkv +王庆富-求求你,http://em.21dtv.com/songs/60108706.mkv +严当当-亲亲你,http://em.21dtv.com/songs/60103849.mkv +潘长江+巩汉林-求求你,http://em.21dtv.com/songs/60090068.mkv +刚辉-求求你,http://em.21dtv.com/songs/60035801.mkv +凤飞飞-敲敲门,http://em.21dtv.com/songs/60034423.mkv +郭颂-瞧情郎,http://em.21dtv.com/songs/60034435.mkv +于文文-悄悄话,http://em.21dtv.com/songs/60105564.mkv +花儿乐队-鹊桥汇,http://em.21dtv.com/songs/60035980.mkv +卓依婷-悄悄话,http://em.21dtv.com/songs/60034418.mkv +江美琪-悄悄话,http://em.21dtv.com/songs/60034417.mkv +张萌-浅情歌,http://em.21dtv.com/songs/60110210.mkv +咪依鲁江-qq情歌,http://em.21dtv.com/songs/60073781.mkv +方顺吉-强强滚,http://em.21dtv.com/songs/60034378.mkv +詹雅雯-欠情歌,http://em.21dtv.com/songs/60034351.mkv +毕书尽-轻轻的,http://em.21dtv.com/songs/60080088.mkv +玄鸟传说-浅浅唱,http://em.21dtv.com/songs/60117910.mkv +许嵩-全球变,http://em.21dtv.com/songs/60069743.mkv +王心凌-翘翘板,http://em.21dtv.com/songs/60034453.mkv +王心凌-跷跷板,http://em.21dtv.com/songs/60034421.mkv +S翼乐团-QQ爱,http://em.21dtv.com/songs/60116477.mkv +郭芯语-浅浅爱,http://em.21dtv.com/songs/60034337.mkv +赵薇-恰恰爱,http://em.21dtv.com/songs/60034043.mkv +伍佳丽-强迫症,http://em.21dtv.com/songs/60134880.mkv +神奇胶-起跑线,http://em.21dtv.com/songs/60125990.mkv +王梓潼-起跑线,http://em.21dtv.com/songs/60081411.mkv +蔡滢萱-全凭我,http://em.21dtv.com/songs/60035890.mkv +高薇+崔立刚-棋盘舞,http://em.21dtv.com/songs/60033982.mkv +陈佳-清平调,http://em.21dtv.com/songs/60127539.mkv +王菲+邓丽君-清平调,http://em.21dtv.com/songs/60111287.mkv +好妹妹乐队-清平调,http://em.21dtv.com/songs/60104908.mkv +MC HOTDOG-请拍手,http://em.21dtv.com/songs/60035601.mkv +韩磊-清贫颂,http://em.21dtv.com/songs/60034890.mkv +邓丽君-情飘飘,http://em.21dtv.com/songs/60088743.mkv +周丽淇-轻飘飘,http://em.21dtv.com/songs/60034800.mkv +齐秦-七匹狼,http://em.21dtv.com/songs/60033759.mkv +张芯瑜-青苹果,http://em.21dtv.com/songs/60034766.mkv +张清芳-青苹果,http://em.21dtv.com/songs/60034765.mkv +I.N.G-青苹果,http://em.21dtv.com/songs/60034764.mkv +BACKSTREET BOYS-quit playing games,http://em.21dtv.com/songs/60004580.mkv +柳影虹-清平调(演唱会),http://em.21dtv.com/songs/60062699.mkv +童唱-清平调,http://em.21dtv.com/songs/60034895.mkv +李腾-清平调,http://em.21dtv.com/songs/60034894.mkv +丁菲飞-清平调,http://em.21dtv.com/songs/60034893.mkv +JOHN MAYER-queen of california,http://em.21dtv.com/songs/60073782.mkv +李克勤-情难再,http://em.21dtv.com/songs/60109423.mkv +邰正宵-情难枕,http://em.21dtv.com/songs/60080717.mkv +戎梵+熊思嘉-青年者,http://em.21dtv.com/songs/60066238.mkv +魏秋桦-奇女子(演唱会),http://em.21dtv.com/songs/60064704.mkv +林慧萍-情难枕,http://em.21dtv.com/songs/60035139.mkv +姜育恒-情难枕,http://em.21dtv.com/songs/60035138.mkv +高胜美-情难枕,http://em.21dtv.com/songs/60035137.mkv +李宇春-千年游,http://em.21dtv.com/songs/60124061.mkv +曾静玟-前男友,http://em.21dtv.com/songs/60064712.mkv +心蓝-千年缘,http://em.21dtv.com/songs/60034137.mkv +张小翅-千年笑,http://em.21dtv.com/songs/60083608.mkv +牛奶堂-千年修(无原唱),http://em.21dtv.com/songs/60034136.mkv +庄学忠-情难忘,http://em.21dtv.com/songs/60035134.mkv +王识贤-情难忘,http://em.21dtv.com/songs/60035133.mkv +余天-情难守,http://em.21dtv.com/songs/60035132.mkv +佚名-情难守,http://em.21dtv.com/songs/60035131.mkv +青山-情难守,http://em.21dtv.com/songs/60035130.mkv +张伟文+静婷-情难守(演唱会),http://em.21dtv.com/songs/60035129.mkv +王瑞霞-情难舍,http://em.21dtv.com/songs/60035128.mkv +路绮欧-情难舍,http://em.21dtv.com/songs/60035127.mkv +许冠杰-青年人,http://em.21dtv.com/songs/60034752.mkv +李秉华-情难求,http://em.21dtv.com/songs/60035126.mkv +游鸿明-情难求(无原唱),http://em.21dtv.com/songs/60035125.mkv +叶诺帆-千年梦,http://em.21dtv.com/songs/60122558.mkv +蔡秋凤-千年梦,http://em.21dtv.com/songs/60072295.mkv +昊龙-千年泪,http://em.21dtv.com/songs/60085585.mkv +施志兴+吴幸妏-情难离,http://em.21dtv.com/songs/60077245.mkv +久久-情难了,http://em.21dtv.com/songs/60068599.mkv +高向鹏+方怡萍-情难了,http://em.21dtv.com/songs/60061520.mkv +黄思婷-情难留,http://em.21dtv.com/songs/60035124.mkv +何方-情难留(无原唱),http://em.21dtv.com/songs/60035123.mkv +林翠萍-情难离,http://em.21dtv.com/songs/60035122.mkv +黄俊渊-千年恋,http://em.21dtv.com/songs/60034126.mkv +TANK-千年泪,http://em.21dtv.com/songs/60034125.mkv +FREEZE-情难控,http://em.21dtv.com/songs/60035121.mkv +猪哥亮+蔡佳莹-牵k耐,http://em.21dtv.com/songs/60034189.mkv +陈茂丰-情难解,http://em.21dtv.com/songs/60111495.mkv +赵晨妍-牵牛花(演唱会),http://em.21dtv.com/songs/60069713.mkv +童唱-牵牛花,http://em.21dtv.com/songs/60034215.mkv +阿牛+锦绣二重唱-牵牛花,http://em.21dtv.com/songs/60034214.mkv +林玉英-情难放(无原唱),http://em.21dtv.com/songs/60035120.mkv +林大晋-去你的,http://em.21dtv.com/songs/60116958.mkv +李振全-欠你的,http://em.21dtv.com/songs/60061503.mkv +黄思婷+翁立友-情难断,http://em.21dtv.com/songs/60035114.mkv +古天乐-情难定,http://em.21dtv.com/songs/60035112.mkv +杜德伟-情难定,http://em.21dtv.com/songs/60035111.mkv +张斯斯-千年爱,http://em.21dtv.com/songs/60066229.mkv +新宝岛康乐队-请慢用,http://em.21dtv.com/songs/60035535.mkv +马剑芬-青门雪,http://em.21dtv.com/songs/60100651.mkv +本兮-柒末雪,http://em.21dtv.com/songs/60083598.mkv +艾爰爰-俏美人,http://em.21dtv.com/songs/60129520.mkv +阳斌-青梅曲,http://em.21dtv.com/songs/60111475.mkv +1314组合-俏妹妹,http://em.21dtv.com/songs/60133159.mkv +叶复台-情绵绵,http://em.21dtv.com/songs/60067342.mkv +彝人制造+曲比阿乌-亲妹妹,http://em.21dtv.com/songs/60064723.mkv +FACE TO FACE-情迷milnao,http://em.21dtv.com/songs/60035100.mkv +小斯韵-期末考,http://em.21dtv.com/songs/60089820.mkv +白止-青媚狐,http://em.21dtv.com/songs/60135597.mkv +郑苗苗-荞麦花,http://em.21dtv.com/songs/60132993.mkv +一只舟-千美汇,http://em.21dtv.com/songs/60121320.mkv +林宇中+林俊杰-抢玫瑰,http://em.21dtv.com/songs/60034402.mkv +阎维文-曲蔓地,http://em.21dtv.com/songs/60035818.mkv +傅海燕-曲蔓地,http://em.21dtv.com/songs/60035817.mkv +吕珊-情莫变(演唱会),http://em.21dtv.com/songs/60035109.mkv +曾国珲-全民爱,http://em.21dtv.com/songs/60063349.mkv +杨鸣-劝浪子,http://em.21dtv.com/songs/60035950.mkv +许嵩-情侣装,http://em.21dtv.com/songs/60035085.mkv +汤宝如-情路中,http://em.21dtv.com/songs/60035082.mkv +许桂荣-钱来也,http://em.21dtv.com/songs/60034317.mkv +吴勇滨-千里眼,http://em.21dtv.com/songs/60034103.mkv +洪荣宏+林为音-七里香,http://em.21dtv.com/songs/60135517.mkv +周杰伦-七里香,http://em.21dtv.com/songs/60033749.mkv +阿生-七里香,http://em.21dtv.com/songs/60033748.mkv +袁娅维-潜蓝色,http://em.21dtv.com/songs/60120938.mkv +袁娅维-潜蓝色,http://em.21dtv.com/songs/60117206.mkv +李贵府-秋离殇,http://em.21dtv.com/songs/60107805.mkv +谭咏麟-情两牵(演唱会),http://em.21dtv.com/songs/60035062.mkv +刘嘉玲-情冷却,http://em.21dtv.com/songs/60035061.mkv +高向鹏-乾落去(无原唱),http://em.21dtv.com/songs/60034325.mkv +谭咏麟-欠了你(HD演唱会),http://em.21dtv.com/songs/60034342.mkv +林俊吉-千里马,http://em.21dtv.com/songs/60064707.mkv +杨坤-穷浪漫,http://em.21dtv.com/songs/60035634.mkv +杨坤-穷浪漫(演唱会),http://em.21dtv.com/songs/60035633.mkv +谭炳文-擒狼记,http://em.21dtv.com/songs/60034633.mkv +刘奕君-青莲花,http://em.21dtv.com/songs/60133401.mkv +荒山亮-千里火,http://em.21dtv.com/songs/60104393.mkv +庞龙-70后,http://em.21dtv.com/songs/60099999.mkv +郑健英-劝郎还(戏曲),http://em.21dtv.com/songs/60093271.mkv +岩宰仑-禽流感,http://em.21dtv.com/songs/60124810.mkv +徐千雅-情流感,http://em.21dtv.com/songs/60035064.mkv +卢学睿-情流感,http://em.21dtv.com/songs/60035063.mkv +萧全-潜力股,http://em.21dtv.com/songs/60034329.mkv +江蕙-千里岸,http://em.21dtv.com/songs/60085584.mkv +姜孝萌-全力爱(演唱会),http://em.21dtv.com/songs/60071070.mkv +谭凯琪-全力爱(无原唱),http://em.21dtv.com/songs/60035884.mkv +廖羽-青空行,http://em.21dtv.com/songs/60129056.mkv +花儿乐队-穷开心,http://em.21dtv.com/songs/60035632.mkv +孙爱东-情枯萎,http://em.21dtv.com/songs/60035053.mkv +橙翼+Aki阿杰-乾坤调,http://em.21dtv.com/songs/60112814.mkv +张清芳-青蚵嫂(无原唱),http://em.21dtv.com/songs/60068170.mkv +任昌丁-请开门,http://em.21dtv.com/songs/60086774.mkv +春燕子-请客来,http://em.21dtv.com/songs/60117775.mkv +赵文浩-巧克力,http://em.21dtv.com/songs/60101182.mkv +家家-巧克力,http://em.21dtv.com/songs/60096933.mkv +巩新亮-乾坤恋,http://em.21dtv.com/songs/60062392.mkv +庾澄庆-请开窗,http://em.21dtv.com/songs/60035533.mkv +谢宜君+陈随意-情靠岸,http://em.21dtv.com/songs/60128406.mkv +胡又天-清江谣,http://em.21dtv.com/songs/60134140.mkv +邝美云-亲近我,http://em.21dtv.com/songs/60034569.mkv +陈慧琳-情奖赏,http://em.21dtv.com/songs/60093455.mkv +童唱-千家诗,http://em.21dtv.com/songs/60034085.mkv +F.I.R-千军破,http://em.21dtv.com/songs/60095245.mkv +阎琰-俏江南,http://em.21dtv.com/songs/60066231.mkv +黎明-亲近你,http://em.21dtv.com/songs/60034568.mkv +刘依纯-千江楼,http://em.21dtv.com/songs/60103104.mkv +大哲-求结婚,http://em.21dtv.com/songs/60113370.mkv +南征北战+米线乐团-请酒歌[消伴],http://em.21dtv.com/songs/60100780.mkv +佚名-前进歌,http://em.21dtv.com/songs/60034279.mkv +赖慈泓+黄路梓茵-全家福,http://em.21dtv.com/songs/60124510.mkv +宋孟君-全家福,http://em.21dtv.com/songs/60118518.mkv +佚名-全家福,http://em.21dtv.com/songs/60035880.mkv +泳儿-清洁爱,http://em.21dtv.com/songs/60083650.mkv +林不夕-雀和燕,http://em.21dtv.com/songs/60132597.mkv +王秀琪-牵红线,http://em.21dtv.com/songs/60124277.mkv +王建杰-牵红线,http://em.21dtv.com/songs/60034208.mkv +费玉清-情何物,http://em.21dtv.com/songs/60035029.mkv +啡啡-秋海棠,http://em.21dtv.com/songs/60077282.mkv +齐秦-青蚵嫂,http://em.21dtv.com/songs/60034744.mkv +李琼-青海人,http://em.21dtv.com/songs/60091357.mkv +洛桑尖措-青海青,http://em.21dtv.com/songs/60124203.mkv +冰雪姐妹-青海情,http://em.21dtv.com/songs/60071060.mkv +佚名-青海青,http://em.21dtv.com/songs/60034738.mkv +童唱-青海青,http://em.21dtv.com/songs/60034737.mkv +龚玥菲-青狐媚,http://em.21dtv.com/songs/60133179.mkv +乔冬宇+吴海燕-青海蓝,http://em.21dtv.com/songs/60122468.mkv +赖慧如-切乎离,http://em.21dtv.com/songs/60120961.mkv +谢雪心-情花开(演唱会),http://em.21dtv.com/songs/60061518.mkv +柳影虹-情花开(演唱会),http://em.21dtv.com/songs/60061517.mkv +张栋梁-情花开,http://em.21dtv.com/songs/60035035.mkv +罗嘉良+宣萱-情花开,http://em.21dtv.com/songs/60035034.mkv +李克勤-前后脚,http://em.21dtv.com/songs/60034277.mkv +德乾旺姆-青海湖,http://em.21dtv.com/songs/60034736.mkv +杰子-求婚歌,http://em.21dtv.com/songs/60133866.mkv +索朗扎西-求婚歌,http://em.21dtv.com/songs/60119875.mkv +欢子-求婚歌,http://em.21dtv.com/songs/60064770.mkv +王菲-气候风,http://em.21dtv.com/songs/60088321.mkv +费玉清-青花瓷,http://em.21dtv.com/songs/60127423.mkv +费玉清-青花瓷,http://em.21dtv.com/songs/60126216.mkv +那英-青花瓷,http://em.21dtv.com/songs/60114120.mkv +那英-青花瓷,http://em.21dtv.com/songs/60113001.mkv +李行亮-青花瓷,http://em.21dtv.com/songs/60077210.mkv +曹锦晶-青花瓷,http://em.21dtv.com/songs/60077209.mkv +胡美仪+吕珊+苏姗+卢海鹏-齐欢唱(演唱会),http://em.21dtv.com/songs/60077113.mkv +周杰伦-青花瓷,http://em.21dtv.com/songs/60034743.mkv +群星-齐欢唱(演唱会),http://em.21dtv.com/songs/60033858.mkv +冯雪刚-抢红包,http://em.21dtv.com/songs/60114405.mkv +蒙克+秦天慧-抢红包,http://em.21dtv.com/songs/60112943.mkv +丛浩楠-钱规则,http://em.21dtv.com/songs/60119227.mkv +孙浩雨-潜规则,http://em.21dtv.com/songs/60110988.mkv +徐佳莹-潜规则,http://em.21dtv.com/songs/60102261.mkv +丛浩楠-钱规则,http://em.21dtv.com/songs/60099062.mkv +钟洁-求关注,http://em.21dtv.com/songs/60083687.mkv +酒吧伤心人-潜规则,http://em.21dtv.com/songs/60068580.mkv +张惠妹-潜规则,http://em.21dtv.com/songs/60061501.mkv +张之-清宫怨,http://em.21dtv.com/songs/60092557.mkv +佚名-清官谣,http://em.21dtv.com/songs/60034880.mkv +谢东-清官谣,http://em.21dtv.com/songs/60034879.mkv +佚名-清宫怨,http://em.21dtv.com/songs/60034877.mkv +任贤齐+刘浩龙+大兵-气管炎,http://em.21dtv.com/songs/60034024.mkv +黄飞鹏-情感线,http://em.21dtv.com/songs/60072309.mkv +彭佳慧-情歌手,http://em.21dtv.com/songs/60035005.mkv +董文华-千古情,http://em.21dtv.com/songs/60034081.mkv +卓依婷-俏姑娘,http://em.21dtv.com/songs/60034448.mkv +佚名-俏姑娘,http://em.21dtv.com/songs/60034447.mkv +佚名-呛姑娘,http://em.21dtv.com/songs/60034410.mkv +江淑娜-呛姑娘,http://em.21dtv.com/songs/60034409.mkv +楼兰-qq姑娘,http://em.21dtv.com/songs/60004569.mkv +栾生-强国梦,http://em.21dtv.com/songs/60125807.mkv +洪辰-腔骨龙,http://em.21dtv.com/songs/60129347.mkv +雪村-庆功酒,http://em.21dtv.com/songs/60035621.mkv +皓天-情乖乖,http://em.21dtv.com/songs/60067338.mkv +薛家燕-俏凤姨,http://em.21dtv.com/songs/60034446.mkv +郑秀文-请放心,http://em.21dtv.com/songs/60093319.mkv +小肥-穷富翁,http://em.21dtv.com/songs/60104083.mkv +唐美华-清风叹,http://em.21dtv.com/songs/60107616.mkv +黄香莲-起风台(无原唱),http://em.21dtv.com/songs/60034013.mkv +李克勤-请放手,http://em.21dtv.com/songs/60035521.mkv +牛欣欣+周张弛+等-庆丰年,http://em.21dtv.com/songs/60064762.mkv +庄鹃瑛-七分满,http://em.21dtv.com/songs/60135185.mkv +庄鹃瑛-七分满,http://em.21dtv.com/songs/60133636.mkv +冷弦-秋风恋,http://em.21dtv.com/songs/60093992.mkv +陈星-秋风凉,http://em.21dtv.com/songs/60088889.mkv +佚名-劝风流,http://em.21dtv.com/songs/60035948.mkv +佚名-秋风泪,http://em.21dtv.com/songs/60035666.mkv +杨千嬅+黄耀明-穷风流(演唱会),http://em.21dtv.com/songs/60035631.mkv +橘红色乐团-秋风渐,http://em.21dtv.com/songs/60088155.mkv +彭子瀛-起风后,http://em.21dtv.com/songs/60115933.mkv +苏莞雯-祈福歌,http://em.21dtv.com/songs/60120881.mkv +李娜-秋风歌,http://em.21dtv.com/songs/60035664.mkv +龙千玉-秋风吹,http://em.21dtv.com/songs/60035661.mkv +疯子-去飞吧,http://em.21dtv.com/songs/60093594.mkv +阎琰-情非爱,http://em.21dtv.com/songs/60083657.mkv +博轼-请点赞,http://em.21dtv.com/songs/60117595.mkv +萧亚轩-七点钟,http://em.21dtv.com/songs/60091974.mkv +咻比嘟哗-钱歹赚,http://em.21dtv.com/songs/60034314.mkv +齐豫-七点钟(演唱会),http://em.21dtv.com/songs/60033738.mkv +ACE-千灯愿,http://em.21dtv.com/songs/60134627.mkv +张铠麟-骑大马,http://em.21dtv.com/songs/60097086.mkv +黄渤-去大理,http://em.21dtv.com/songs/60104632.mkv +郝云-去大理,http://em.21dtv.com/songs/60104491.mkv +范学斌-千滴泪,http://em.21dtv.com/songs/60034067.mkv +陈浩德+方伊琪-俏大姐(演唱会),http://em.21dtv.com/songs/60034445.mkv +我只想要-七朵花,http://em.21dtv.com/songs/60089309.mkv +谢雷-欠东风,http://em.21dtv.com/songs/60114796.mkv +郑少秋-庆洞房,http://em.21dtv.com/songs/60093282.mkv +张学友-屈到病,http://em.21dtv.com/songs/60035814.mkv +张学友-屈到病(演唱会),http://em.21dtv.com/songs/60035813.mkv +卓文萱-期待爱,http://em.21dtv.com/songs/60099823.mkv +林俊杰+金莎-期待爱,http://em.21dtv.com/songs/60033833.mkv +佚名-青春谣(无原唱),http://em.21dtv.com/songs/60034730.mkv +何晟铭-倾城雪,http://em.21dtv.com/songs/60077223.mkv +贺金-青春贴,http://em.21dtv.com/songs/60112271.mkv +かりゆし58-青春よ聴こえてるか,http://em.21dtv.com/songs/60086769.mkv +罗志祥-强出头,http://em.21dtv.com/songs/60083620.mkv +单色凌-倾城诉,http://em.21dtv.com/songs/60097048.mkv +SELINA-青春是,http://em.21dtv.com/songs/60096158.mkv +许廷铿-青春颂(演唱会),http://em.21dtv.com/songs/60077205.mkv +赵羽+夏瑶-青茶青,http://em.21dtv.com/songs/60126238.mkv +詹宇琦-启程前,http://em.21dtv.com/songs/60085583.mkv +AKB48-青春と気づかないまま,http://em.21dtv.com/songs/60077198.mkv +佚名-青春曲,http://em.21dtv.com/songs/60034709.mkv +沈小岑-青春曲,http://em.21dtv.com/songs/60034708.mkv +周鼎立-青春派,http://em.21dtv.com/songs/60106718.mkv +潘越云-七重门,http://em.21dtv.com/songs/60066222.mkv +张蓉蓉-青春梦,http://em.21dtv.com/songs/60034699.mkv +谭咏麟-青春梦,http://em.21dtv.com/songs/60034698.mkv +谭咏麟-青春梦(演唱会),http://em.21dtv.com/songs/60034697.mkv +许歌淳一-起床啦,http://em.21dtv.com/songs/60132885.mkv +慕心-青春岭,http://em.21dtv.com/songs/60095533.mkv +尤雅-青春乐,http://em.21dtv.com/songs/60087723.mkv +佚名-青春岭,http://em.21dtv.com/songs/60034693.mkv +张继聪-千尺浪,http://em.21dtv.com/songs/60034064.mkv +天空乐队-青春祭,http://em.21dtv.com/songs/60106750.mkv +刀刀刀-青春祭,http://em.21dtv.com/songs/60077204.mkv +陈瑞-秋草黄,http://em.21dtv.com/songs/60115508.mkv +王士次+唐艳-七彩河,http://em.21dtv.com/songs/60110386.mkv +黄小琥-青春花,http://em.21dtv.com/songs/60080993.mkv +曹方-浅彩虹,http://em.21dtv.com/songs/60077157.mkv +胡月亮-钱财歌,http://em.21dtv.com/songs/60077154.mkv +和妤婕-请茶歌(演唱会),http://em.21dtv.com/songs/60071068.mkv +佚名-请茶歌,http://em.21dtv.com/songs/60035513.mkv +耿莲凤-请茶歌(演唱会),http://em.21dtv.com/songs/60035512.mkv +曹格-起床歌,http://em.21dtv.com/songs/60034005.mkv +卜学亮-起床歌,http://em.21dtv.com/songs/60034004.mkv +张雷-青春饭,http://em.21dtv.com/songs/60086770.mkv +马丽-青草地,http://em.21dtv.com/songs/60119061.mkv +杨丞琳-青春斗,http://em.21dtv.com/songs/60034677.mkv +TAT-千宠爱,http://em.21dtv.com/songs/60090444.mkv +佚名-青春だ,http://em.21dtv.com/songs/60034661.mkv +苏永康-邱比特,http://em.21dtv.com/songs/60035638.mkv +刘欢-七步诗,http://em.21dtv.com/songs/60033732.mkv +铭鑫-娶不起,http://em.21dtv.com/songs/60133017.mkv +慕容晓晓+孙艺程+王艺霖-七8九,http://em.21dtv.com/songs/60069700.mkv +张学友-情不禁(演唱会),http://em.21dtv.com/songs/60034937.mkv +斯琴高丽-情不悔,http://em.21dtv.com/songs/60111931.mkv +斯琴高丽-情不悔,http://em.21dtv.com/songs/60067334.mkv +叶启田-情变卦,http://em.21dtv.com/songs/60134991.mkv +李明洋-千不该,http://em.21dtv.com/songs/60118676.mkv +慕钰华-情变挂(无原唱),http://em.21dtv.com/songs/60034934.mkv +梅朵-千百度,http://em.21dtv.com/songs/60117871.mkv +许嵩-千百度(演唱会),http://em.21dtv.com/songs/60063219.mkv +BOY'Z-去边道(演唱会),http://em.21dtv.com/songs/60035838.mkv +许嵩-千百度,http://em.21dtv.com/songs/60034055.mkv +侯美仪-千杯愁,http://em.21dtv.com/songs/60034061.mkv +佚名-千百次,http://em.21dtv.com/songs/60034054.mkv +千百惠-千百次(无原唱),http://em.21dtv.com/songs/60034053.mkv +许志安-穷爸爸,http://em.21dtv.com/songs/60035630.mkv +谭咏麟-情不变,http://em.21dtv.com/songs/60034936.mkv +彝人制造-乞爱者,http://em.21dtv.com/songs/60033990.mkv +陈小春-求爱shooppingmall,http://em.21dtv.com/songs/60035772.mkv +周杰伦-去爱你,http://em.21dtv.com/songs/60035834.mkv +张玮-求爱歌,http://em.21dtv.com/songs/60132458.mkv +羽泉-求爱歌,http://em.21dtv.com/songs/60035777.mkv +羽泉-求爱歌(演唱会),http://em.21dtv.com/songs/60035776.mkv +王野-亲爱的,http://em.21dtv.com/songs/60131677.mkv +王野-亲爱的,http://em.21dtv.com/songs/60130607.mkv +星弟-亲爱的,http://em.21dtv.com/songs/60126953.mkv +欧宇轩-亲爱的,http://em.21dtv.com/songs/60121843.mkv +李圣杰-亲爱的,http://em.21dtv.com/songs/60121768.mkv +李强-亲爱的,http://em.21dtv.com/songs/60116904.mkv +吴俊余-亲爱的,http://em.21dtv.com/songs/60116637.mkv +王馨-亲爱的,http://em.21dtv.com/songs/60115314.mkv +莫文蔚-亲爱的,http://em.21dtv.com/songs/60110490.mkv +张皓宇-亲爱的,http://em.21dtv.com/songs/60106862.mkv +干露露+陈玉建-亲爱的,http://em.21dtv.com/songs/60094083.mkv +李翊君-亲爱的,http://em.21dtv.com/songs/60083624.mkv +钟瑾桦-亲爱的,http://em.21dtv.com/songs/60077168.mkv +藤兮-亲爱的,http://em.21dtv.com/songs/60077167.mkv +郑宇伶-亲爱的,http://em.21dtv.com/songs/60071056.mkv +西单女孩+侯歌-亲爱的,http://em.21dtv.com/songs/60064716.mkv +纵贯线-亲爱的,http://em.21dtv.com/songs/60034481.mkv +张萌-亲爱的,http://em.21dtv.com/songs/60034480.mkv +张可欣-亲爱的,http://em.21dtv.com/songs/60034479.mkv +羽泉-亲爱的,http://em.21dtv.com/songs/60034478.mkv +佚名-亲爱的,http://em.21dtv.com/songs/60034477.mkv +徐若瑄-亲爱的,http://em.21dtv.com/songs/60034476.mkv +王杰-亲爱的,http://em.21dtv.com/songs/60034475.mkv +彭海桐-亲爱的,http://em.21dtv.com/songs/60034474.mkv +潘玮柏-亲爱的,http://em.21dtv.com/songs/60034473.mkv +黄雅珉-亲爱的,http://em.21dtv.com/songs/60034472.mkv +关淑怡-亲爱的,http://em.21dtv.com/songs/60034471.mkv +丁薇-亲爱的,http://em.21dtv.com/songs/60034470.mkv +郭富城-亲爱的(演唱会),http://em.21dtv.com/songs/60034469.mkv +钟舒祺-皮在痒,http://em.21dtv.com/songs/60033394.mkv +陈浩德-盼知音(演唱会),http://em.21dtv.com/songs/60033173.mkv +赵薇-瓶中信,http://em.21dtv.com/songs/60033640.mkv +温拿乐队-陪着她,http://em.21dtv.com/songs/60033279.mkv +温拿乐队-陪着她(演唱会),http://em.21dtv.com/songs/60033278.mkv +群星-陪着他(HD演唱会),http://em.21dtv.com/songs/60033277.mkv +TWINS-瓶中沙(演唱会),http://em.21dtv.com/songs/60033639.mkv +江蕙-炮仔声,http://em.21dtv.com/songs/60033222.mkv +TWINS-拍住上,http://em.21dtv.com/songs/60033116.mkv +皮特-皮族人,http://em.21dtv.com/songs/60117944.mkv +萌萌哒天团-陪着你,http://em.21dtv.com/songs/60112916.mkv +张惠妹+蛋堡-偏执面,http://em.21dtv.com/songs/60102219.mkv +陈燕鸣-盼周郎,http://em.21dtv.com/songs/60033174.mkv +陈势安-偏执狂,http://em.21dtv.com/songs/60129725.mkv +舒克-破字诀,http://em.21dtv.com/songs/60128326.mkv +程鸣-骗自己,http://em.21dtv.com/songs/60107099.mkv +王野-骗自己,http://em.21dtv.com/songs/60068559.mkv +许茹芸-骗自己,http://em.21dtv.com/songs/60033446.mkv +佚名-骗自己(无原唱),http://em.21dtv.com/songs/60033445.mkv +林一峰+林二汶+C AllStar-凭着爱,http://em.21dtv.com/songs/60110301.mkv +李丽霞+苏姗-凭着爱,http://em.21dtv.com/songs/60092782.mkv +张崇德+张崇基-凭着爱(演唱会),http://em.21dtv.com/songs/60061489.mkv +刘德华-凭着爱,http://em.21dtv.com/songs/60033636.mkv +苏芮-凭着爱(演唱会),http://em.21dtv.com/songs/60033635.mkv +陈百强-凭着爱(演唱会),http://em.21dtv.com/songs/60033634.mkv +TWINS-朋友仔,http://em.21dtv.com/songs/60033362.mkv +TWINS-朋友仔(演唱会),http://em.21dtv.com/songs/60033361.mkv +周杰伦-皮影戏,http://em.21dtv.com/songs/60063460.mkv +许志安+梁汉文-朋友心,http://em.21dtv.com/songs/60033357.mkv +群星-朋友心,http://em.21dtv.com/songs/60033356.mkv +古天乐-朋友说,http://em.21dtv.com/songs/60033351.mkv +罗时丰-朋友情,http://em.21dtv.com/songs/60134097.mkv +张亚宇-朋友圈,http://em.21dtv.com/songs/60133645.mkv +张家乐-朋友圈,http://em.21dtv.com/songs/60116787.mkv +洛奇-朋友圈,http://em.21dtv.com/songs/60112829.mkv +王麟-朋友圈,http://em.21dtv.com/songs/60102563.mkv +佚名2-朋友情,http://em.21dtv.com/songs/60033348.mkv +佚名1-朋友情,http://em.21dtv.com/songs/60033347.mkv +叶启田-朋友情(演唱会),http://em.21dtv.com/songs/60033346.mkv +阎维文-平遥家,http://em.21dtv.com/songs/60033621.mkv +白玲-朋友花,http://em.21dtv.com/songs/60132767.mkv +佚名-拼一场,http://em.21dtv.com/songs/60033566.mkv +宋雪莱-拼一场,http://em.21dtv.com/songs/60033565.mkv +BOYZ LL MEN-pass you by,http://em.21dtv.com/songs/60004433.mkv +袁小迪+吴侨-朋友啊,http://em.21dtv.com/songs/60103559.mkv +刘珂矣-缥缃醉,http://em.21dtv.com/songs/60125211.mkv +吴克群-破心脏,http://em.21dtv.com/songs/60033685.mkv +王梦麟-拼宵夜(无原唱),http://em.21dtv.com/songs/60033564.mkv +邰正宵-平行线,http://em.21dtv.com/songs/60069698.mkv +轻松玩乐团-平行线,http://em.21dtv.com/songs/60033612.mkv +金莎-平行线,http://em.21dtv.com/songs/60033611.mkv +JS-平行线,http://em.21dtv.com/songs/60033610.mkv +罗时丰-蓬线衫,http://em.21dtv.com/songs/60033366.mkv +苗苗-抛绣球,http://em.21dtv.com/songs/60096463.mkv +祖海-抛绣球,http://em.21dtv.com/songs/60033196.mkv +佚名-飘香梦,http://em.21dtv.com/songs/60033536.mkv +BJACK-prada小姐(无原唱),http://em.21dtv.com/songs/60004518.mkv +高安-品乡愁,http://em.21dtv.com/songs/60064691.mkv +蔡健雅-抛物线,http://em.21dtv.com/songs/60033195.mkv +许嵩-play with style,http://em.21dtv.com/songs/60073751.mkv +陈慧琳-皮外伤,http://em.21dtv.com/songs/60072274.mkv +罗力威-片尾曲(演唱会),http://em.21dtv.com/songs/60077072.mkv +苏志燮-pick up line,http://em.21dtv.com/songs/60060888.mkv +FOSTER THE PEOPLE-pumped up kicks,http://em.21dtv.com/songs/60073772.mkv +孟小童-菩提缘,http://em.21dtv.com/songs/60033699.mkv +祖海-盼团圆,http://em.21dtv.com/songs/60033165.mkv +东篱+清漪-菩提雪,http://em.21dtv.com/songs/60103847.mkv +WEIRD AL YANKOVIC-perform this way,http://em.21dtv.com/songs/60062176.mkv +聂薇+石薇-普陀山,http://em.21dtv.com/songs/60098701.mkv +梁汉文-披头四(演唱会),http://em.21dtv.com/songs/60033381.mkv +钟汉良-普通人,http://em.21dtv.com/songs/60112325.mkv +何润东-普通人,http://em.21dtv.com/songs/60090604.mkv +家明-普通人(演唱会),http://em.21dtv.com/songs/60064698.mkv +吕方-普通人(演唱会),http://em.21dtv.com/songs/60033721.mkv +朱元冰-泡腾片,http://em.21dtv.com/songs/60126989.mkv +DA PUMP-purple the orion(无原唱),http://em.21dtv.com/songs/60004558.mkv +张芸京-破天荒,http://em.21dtv.com/songs/60033672.mkv +SUGABABES-push the button,http://em.21dtv.com/songs/60073776.mkv +TAYLOR SWIFT-picture to burn,http://em.21dtv.com/songs/60004470.mkv +NICKI MINAJ-pound the alarm,http://em.21dtv.com/songs/60070387.mkv +佚名-拼输赢,http://em.21dtv.com/songs/60033559.mkv +蔡秋凤-拼输赢(无原唱),http://em.21dtv.com/songs/60033558.mkv +风采轮-拼输赢,http://em.21dtv.com/songs/60019298.mkv +张艳君-平山团,http://em.21dtv.com/songs/60122743.mkv +张伟文-盼三年,http://em.21dtv.com/songs/60033164.mkv +佚名-盼三年,http://em.21dtv.com/songs/60033163.mkv +陈百强-盼三年,http://em.21dtv.com/songs/60033162.mkv +FS(Fuying&Sam)-凭什么,http://em.21dtv.com/songs/60115584.mkv +姚贝娜-菩萨蛮,http://em.21dtv.com/songs/60099186.mkv +梅艳芳-凭什么,http://em.21dtv.com/songs/60092936.mkv +谢霆锋-怕什么,http://em.21dtv.com/songs/60092112.mkv +孟茜-凭什么,http://em.21dtv.com/songs/60083583.mkv +美眉组合-怕什么,http://em.21dtv.com/songs/60061481.mkv +瞿颖-凭什么,http://em.21dtv.com/songs/60033631.mkv +刘德华-凭什么(演唱会),http://em.21dtv.com/songs/60033630.mkv +草蜢-凭什么(演唱会),http://em.21dtv.com/songs/60033629.mkv +罗志祥-拼什么,http://em.21dtv.com/songs/60033557.mkv +美眉-怕什么,http://em.21dtv.com/songs/60033105.mkv +蔡依林-怕什么,http://em.21dtv.com/songs/60033104.mkv +田家达-怕什么(无原唱),http://em.21dtv.com/songs/60033103.mkv +陈慧琳-phone杀令,http://em.21dtv.com/songs/60004462.mkv +陈慧琳-phone杀令(演唱会),http://em.21dtv.com/songs/60004461.mkv +凤凰传奇-泼水节,http://em.21dtv.com/songs/60033653.mkv +童唱-泼水歌,http://em.21dtv.com/songs/60033652.mkv +夹子乐团-泼水歌,http://em.21dtv.com/songs/60033651.mkv +童唱-拍手歌,http://em.21dtv.com/songs/60033113.mkv +童丽-菩萨调,http://em.21dtv.com/songs/60077102.mkv +咪依鲁江-爬山调,http://em.21dtv.com/songs/60072267.mkv +龚卫玲-菩萨调,http://em.21dtv.com/songs/60033697.mkv +TIM MCGRAW-please remember me,http://em.21dtv.com/songs/60063707.mkv +曹震豪-骗人的,http://em.21dtv.com/songs/60033442.mkv +安东阳+司徒兰芳-盼情缘,http://em.21dtv.com/songs/60125407.mkv +姚璇秋-盼亲人,http://em.21dtv.com/songs/60033160.mkv +佚名-盼卿卿,http://em.21dtv.com/songs/60033161.mkv +童丽-盼亲亲,http://em.21dtv.com/songs/60033159.mkv +于全莉-盼情郎,http://em.21dtv.com/songs/60107475.mkv +高胜美-盼情郎,http://em.21dtv.com/songs/60089010.mkv +SUNNY HILL-pray 祈祷,http://em.21dtv.com/songs/60060893.mkv +童唱-排排坐,http://em.21dtv.com/songs/60033122.mkv +陈春燕-飘飘瑶,http://em.21dtv.com/songs/60135927.mkv +晓枫-飘飘摇,http://em.21dtv.com/songs/60077090.mkv +薛晓枫-飘飘摇,http://em.21dtv.com/songs/60071032.mkv +吴春燕-琵琶语(演唱会),http://em.21dtv.com/songs/60063090.mkv +成龙+魏允熙-琵琶行,http://em.21dtv.com/songs/60130357.mkv +杨姣-琵琶行,http://em.21dtv.com/songs/60118713.mkv +孙晓磊-琵琶行,http://em.21dtv.com/songs/60117654.mkv +尹光+胡美仪-琵琶行,http://em.21dtv.com/songs/60033402.mkv +江美琪-泡泡糖,http://em.21dtv.com/songs/60033219.mkv +佚名-拍拍手,http://em.21dtv.com/songs/60033112.mkv +王雪晶-拍拍手,http://em.21dtv.com/songs/60033111.mkv +韩晓-拍拍手,http://em.21dtv.com/songs/60033110.mkv +郭富城-para para sakura,http://em.21dtv.com/songs/60004408.mkv +郭富城-para para sakura(演唱会),http://em.21dtv.com/songs/60004406.mkv +郭富城-papa papa sakura(演唱会),http://em.21dtv.com/songs/60004402.mkv +佚名-琵琶曲,http://em.21dtv.com/songs/60033403.mkv +章小军-碰碰碰,http://em.21dtv.com/songs/60135622.mkv +杨梓文祺-拍拍拍,http://em.21dtv.com/songs/60133852.mkv +乔洋-啪啪啪,http://em.21dtv.com/songs/60128745.mkv +雷龙-啪啪啪,http://em.21dtv.com/songs/60127581.mkv +熊照华+杨方艳-怕怕怕,http://em.21dtv.com/songs/60124237.mkv +RANIA-pop pop pop,http://em.21dtv.com/songs/60063709.mkv +JOHN DENVER-poems prayers promises(演唱会),http://em.21dtv.com/songs/60004495.mkv +佚名-please please me,http://em.21dtv.com/songs/60004491.mkv +丁小芹-pa pa la,http://em.21dtv.com/songs/60004392.mkv +彭炽权+林佩珍-琵琶行(3)(戏曲),http://em.21dtv.com/songs/60092675.mkv +彭炽权+林佩珍-琵琶行(2)(戏曲),http://em.21dtv.com/songs/60092674.mkv +彭炽权+林佩珍-琵琶行(1)(戏曲),http://em.21dtv.com/songs/60092673.mkv +郑希怡-pom pom girl,http://em.21dtv.com/songs/60004503.mkv +蔡依林-pretty pretty day(演唱会),http://em.21dtv.com/songs/60004528.mkv +韩再芬-琵琶词,http://em.21dtv.com/songs/60033401.mkv +THE LAST GOODNIGHT-pictures of you,http://em.21dtv.com/songs/60004471.mkv +BOYZONE-picture of you,http://em.21dtv.com/songs/60004467.mkv +NATASHA BEDINGFIELD-pocketful of sunshine,http://em.21dtv.com/songs/60004494.mkv +李治廷-PORCELAIN PRINCESS' PALACE,http://em.21dtv.com/songs/60096876.mkv +KATY PERRY-part of me,http://em.21dtv.com/songs/60066709.mkv +ASHLEE SIMPSON-pieces of me,http://em.21dtv.com/songs/60004473.mkv +BRITNEY SPEARS-piece of me,http://em.21dtv.com/songs/60004472.mkv +滨崎步-part of me,http://em.21dtv.com/songs/60004420.mkv +宇多田光-prisoner of love,http://em.21dtv.com/songs/60004536.mkv +REBECCA BLACK-person of interest,http://em.21dtv.com/songs/60065667.mkv +杨帆+张敬豪-power of hope,http://em.21dtv.com/songs/60073762.mkv +THE GAME-pot of gold,http://em.21dtv.com/songs/60060892.mkv +スフィア-pride on everyday,http://em.21dtv.com/songs/60073766.mkv +COLDPLAY+RIHANNA-princess of china,http://em.21dtv.com/songs/60067970.mkv +LINKIN PARK-points of authority,http://em.21dtv.com/songs/60004498.mkv +关心妍-peace no war,http://em.21dtv.com/songs/60004441.mkv +中国娃娃-party女王,http://em.21dtv.com/songs/60004432.mkv +吴思贤-陪你飞,http://em.21dtv.com/songs/60120405.mkv +郑伊健-陪妳飞,http://em.21dtv.com/songs/60088758.mkv +裴一飞-陪你飞,http://em.21dtv.com/songs/60085567.mkv +郑伊健-陪你飞,http://em.21dtv.com/songs/60033240.mkv +郑伊健+谢安琪-陪你飞(演唱会),http://em.21dtv.com/songs/60033238.mkv +黄妃-盼梦圆,http://em.21dtv.com/songs/60033154.mkv +阿轮-盼梦圆(无原唱),http://em.21dtv.com/songs/60033153.mkv +陈西洋-拍马屁,http://em.21dtv.com/songs/60134421.mkv +佚名-please mr postman,http://em.21dtv.com/songs/60004489.mkv +佚名-please me postman,http://em.21dtv.com/songs/60004488.mkv +佚名-paint my love,http://em.21dtv.com/songs/60004396.mkv +MICHAEL LEARNS TO ROCK-paint my love,http://em.21dtv.com/songs/60004395.mkv +4 IN LOVE-print my heart,http://em.21dtv.com/songs/60004535.mkv +何润东-怕麻烦,http://em.21dtv.com/songs/60090603.mkv +孟杨-怕没电,http://em.21dtv.com/songs/60126785.mkv +MIKKY EKKO-pull me down,http://em.21dtv.com/songs/60073771.mkv +高月佳-漂流者,http://em.21dtv.com/songs/60077085.mkv +TWINS-飘零燕,http://em.21dtv.com/songs/60033528.mkv +周慧敏-飘零燕(演唱会),http://em.21dtv.com/songs/60033527.mkv +佚名-p s i love you,http://em.21dtv.com/songs/60004391.mkv +群星-抛浪头(演唱会),http://em.21dtv.com/songs/60033191.mkv +击沈女孩-plp,http://em.21dtv.com/songs/60125171.mkv +刘炫颉-漂流瓶,http://em.21dtv.com/songs/60108349.mkv +王志心-漂流瓶,http://em.21dtv.com/songs/60077084.mkv +小崔建-怕老婆,http://em.21dtv.com/songs/60072268.mkv +任和-漂流瓶,http://em.21dtv.com/songs/60071031.mkv +柯震东+陈妍希-漂流瓶,http://em.21dtv.com/songs/60064690.mkv +佚名-飘流瓶,http://em.21dtv.com/songs/60033531.mkv +高林生-飘流瓶,http://em.21dtv.com/songs/60033530.mkv +佚名-漂流瓶,http://em.21dtv.com/songs/60033492.mkv +西单女孩-漂流瓶,http://em.21dtv.com/songs/60033491.mkv +王中平-骗了你,http://em.21dtv.com/songs/60109512.mkv +HIT5-怕了你,http://em.21dtv.com/songs/60061480.mkv +NAMIGIRL-怕了吗,http://em.21dtv.com/songs/60085377.mkv +谢沛恩-漂流木,http://em.21dtv.com/songs/60072277.mkv +张菲-papa loves mambo(演唱会),http://em.21dtv.com/songs/60004401.mkv +裕美-漂流记,http://em.21dtv.com/songs/60033489.mkv +罗云熙-屏里狐,http://em.21dtv.com/songs/60130647.mkv +MC HOTDOG-party like hotdog,http://em.21dtv.com/songs/60073740.mkv +洛桑尖措-氆氇画,http://em.21dtv.com/songs/60066220.mkv +台风-破浪号,http://em.21dtv.com/songs/60033664.mkv +佚名-pauls little hen,http://em.21dtv.com/songs/60004439.mkv +陈宏庆-漂流哥,http://em.21dtv.com/songs/60106389.mkv +JUSTIN TIMBERLAKE-pusher love girl,http://em.21dtv.com/songs/60073777.mkv +郭采洁-派乐地,http://em.21dtv.com/songs/60066210.mkv +阿峻-飘零草,http://em.21dtv.com/songs/60033525.mkv +GAVY NJ-漂亮啊,http://em.21dtv.com/songs/60077078.mkv +4 IN LOVE-抛开吧,http://em.21dtv.com/songs/60090370.mkv +林靖雨-蒲菊雨,http://em.21dtv.com/songs/60086755.mkv +郭滔-破吉他,http://em.21dtv.com/songs/60108065.mkv +张震岳-破吉他,http://em.21dtv.com/songs/60083585.mkv +郭滔-破吉他,http://em.21dtv.com/songs/60083584.mkv +阿玻-潘金妹,http://em.21dtv.com/songs/60033136.mkv +雁卿-怕寂寞,http://em.21dtv.com/songs/60033096.mkv +嘴哥乐团-破纪录,http://em.21dtv.com/songs/60135069.mkv +雪村-潘金莲,http://em.21dtv.com/songs/60033135.mkv +亚东-皮夹克,http://em.21dtv.com/songs/60092241.mkv +晨熙-盼君归,http://em.21dtv.com/songs/60100095.mkv +夏韶声-啤酒罐(演唱会),http://em.21dtv.com/songs/60033397.mkv +佚名-盼解放,http://em.21dtv.com/songs/60033152.mkv +AAA-party it up,http://em.21dtv.com/songs/60073738.mkv +陈伟霆-pop it up,http://em.21dtv.com/songs/60069127.mkv +佚名-poetty in motion,http://em.21dtv.com/songs/60004497.mkv +NICKI MINAJ-Pills N Potions,http://em.21dtv.com/songs/60101219.mkv +黄贯中-play it loud(演唱会),http://em.21dtv.com/songs/60004479.mkv +BRANDY+CHRIS BROWN-put it down,http://em.21dtv.com/songs/60073778.mkv +容一敏-平行线,http://em.21dtv.com/songs/60081141.mkv +李卓庭-喷火女,http://em.21dtv.com/songs/60033291.mkv +佚名-盼红军,http://em.21dtv.com/songs/60033149.mkv +王邵玫-盼红军,http://em.21dtv.com/songs/60033148.mkv +A Lin-平衡感,http://em.21dtv.com/songs/60109078.mkv +刘玉婉-盼回归,http://em.21dtv.com/songs/60033150.mkv +吴宗宪+温岚-平衡点,http://em.21dtv.com/songs/60033614.mkv +童唱-排好队,http://em.21dtv.com/songs/60033120.mkv +阎维文-跑旱船,http://em.21dtv.com/songs/60033205.mkv +聂建华-跑旱船,http://em.21dtv.com/songs/60033204.mkv +王筝-旁观者,http://em.21dtv.com/songs/60103460.mkv +张嘉洵-旁观者,http://em.21dtv.com/songs/60033187.mkv +邱泽-旁观者,http://em.21dtv.com/songs/60033186.mkv +邱泽-旁观者(演唱会),http://em.21dtv.com/songs/60033185.mkv +梅林-蒲公英,http://em.21dtv.com/songs/60107003.mkv +金霖-蒲公英,http://em.21dtv.com/songs/60083589.mkv +范玮琪-蒲公英,http://em.21dtv.com/songs/60083588.mkv +周信-蒲公英,http://em.21dtv.com/songs/60064697.mkv +宋熙铭-蒲公英,http://em.21dtv.com/songs/60064696.mkv +李恭-蒲公英,http://em.21dtv.com/songs/60064695.mkv +张韶涵-蒲公英,http://em.21dtv.com/songs/60033708.mkv +温岚-蒲公英,http://em.21dtv.com/songs/60033707.mkv +刘若英-蒲公英(演唱会),http://em.21dtv.com/songs/60033706.mkv +洪卓立-苹果树,http://em.21dtv.com/songs/60033627.mkv +KERI HILSON-pretty girl rock,http://em.21dtv.com/songs/60073764.mkv +潘成-瓶颈期,http://em.21dtv.com/songs/60128184.mkv +杨燕-苹果花,http://em.21dtv.com/songs/60033626.mkv +韩宝仪-苹果花,http://em.21dtv.com/songs/60033625.mkv +朱咪咪-苹果花(演唱会),http://em.21dtv.com/songs/60033624.mkv +杨燕-苹果花(演唱会),http://em.21dtv.com/songs/60033623.mkv +Scarlet-屁股歌,http://em.21dtv.com/songs/60101821.mkv +童唱-排骨队,http://em.21dtv.com/songs/60033118.mkv +沙宝亮-pray for you,http://em.21dtv.com/songs/60004519.mkv +何炅-平凡心,http://em.21dtv.com/songs/60033604.mkv +蔡济文-平凡心,http://em.21dtv.com/songs/60033603.mkv +GEORGE MICHAEL-praying for time,http://em.21dtv.com/songs/60004520.mkv +SHANIA TWAIN+BILLY C-party for two,http://em.21dtv.com/songs/60004424.mkv +THE BAND PERRY-postcard from paris,http://em.21dtv.com/songs/60067968.mkv +蜜雪薇琪-party for pink,http://em.21dtv.com/songs/60004423.mkv +钟立风-匍匐鸟,http://em.21dtv.com/songs/60127523.mkv +佚名-please forgive me,http://em.21dtv.com/songs/60073753.mkv +佚名-pennies from heaven,http://em.21dtv.com/songs/60004444.mkv +T G-PEP,http://em.21dtv.com/songs/60109114.mkv +陈绮贞-PEACE AND REVOLUTION,http://em.21dtv.com/songs/60096875.mkv +陈佩斯+朱时茂-拍电影,http://em.21dtv.com/songs/60090286.mkv +杨宗宪-拼第一,http://em.21dtv.com/songs/60033553.mkv +安以轩-平底鞋,http://em.21dtv.com/songs/60104938.mkv +蔡依林-派大星,http://em.21dtv.com/songs/60072269.mkv +K.WILL-please dont,http://em.21dtv.com/songs/60070385.mkv +RIHANNA-pon de replay,http://em.21dtv.com/songs/60073760.mkv +佚名-papa dont preach,http://em.21dtv.com/songs/60004400.mkv +李卓庭-撇低你,http://em.21dtv.com/songs/60033546.mkv +陈妃-碰到你,http://em.21dtv.com/songs/60033376.mkv +张韶涵-潘朵拉,http://em.21dtv.com/songs/60033134.mkv +谢金燕-潘朵拉,http://em.21dtv.com/songs/60033133.mkv +KWS-please dont go,http://em.21dtv.com/songs/60004486.mkv +KC+THE SUNSHINE BAND-please dont go,http://em.21dtv.com/songs/60004485.mkv +洪颜-拼到底,http://em.21dtv.com/songs/60077091.mkv +王梓轩-平常心,http://em.21dtv.com/songs/60128232.mkv +王梓轩-平常心,http://em.21dtv.com/songs/60125927.mkv +刘珂矣-泼茶香,http://em.21dtv.com/songs/60110889.mkv +张惠妹-平常心,http://em.21dtv.com/songs/60033592.mkv +黄凯芹-平常心,http://em.21dtv.com/songs/60033591.mkv +黄凯芹-平常心(演唱会),http://em.21dtv.com/songs/60033590.mkv +JANICE-拍错拖,http://em.21dtv.com/songs/60089568.mkv +小凤凤-拼出头,http://em.21dtv.com/songs/60033552.mkv +陈雷-拼出头,http://em.21dtv.com/songs/60033551.mkv +卫兰-拍错拖(演唱会),http://em.21dtv.com/songs/60033107.mkv +卓依婷-配成双,http://em.21dtv.com/songs/60033287.mkv +言承旭-陪衬品(演唱会),http://em.21dtv.com/songs/60033225.mkv +杨荣辉-拼出名,http://em.21dtv.com/songs/60116950.mkv +杨荣辉-拚出名,http://em.21dtv.com/songs/60116032.mkv +侯南宇-鹏城恋,http://em.21dtv.com/songs/60033367.mkv +段婷婷-品茶歌,http://em.21dtv.com/songs/60069697.mkv +刘若英-陪伴者,http://em.21dtv.com/songs/60116598.mkv +刘若英-陪伴者,http://em.21dtv.com/songs/60115729.mkv +陈思思-瀑布雨,http://em.21dtv.com/songs/60033723.mkv +汪佩蓉-骗不了,http://em.21dtv.com/songs/60033440.mkv +佚名-pretty blue eyes,http://em.21dtv.com/songs/60004524.mkv +周韦杰-披搏彩,http://em.21dtv.com/songs/60071027.mkv +高中群-平安夜,http://em.21dtv.com/songs/60094351.mkv +林依婷-平安夜,http://em.21dtv.com/songs/60066217.mkv +佚名-平安夜,http://em.21dtv.com/songs/60033586.mkv +花儿乐队-平安夜,http://em.21dtv.com/songs/60033585.mkv +侯湘婷-平安夜,http://em.21dtv.com/songs/60033584.mkv +FANTASY-平安夜,http://em.21dtv.com/songs/60033583.mkv +麦浚龙-平安夜(演唱会),http://em.21dtv.com/songs/60033582.mkv +玺恩-平安玺,http://em.21dtv.com/songs/60033581.mkv +NO DOUBT+BUSY SIGNAL+MAJOR LAZER-push and shove,http://em.21dtv.com/songs/60073775.mkv +范玮琪-平安鸟,http://em.21dtv.com/songs/60077093.mkv +N2O-party all night,http://em.21dtv.com/songs/60069126.mkv +郑伊健-偏爱你,http://em.21dtv.com/songs/60033410.mkv +罗志祥-怕安静,http://em.21dtv.com/songs/60033088.mkv +南城二哥-平安歌,http://em.21dtv.com/songs/60127790.mkv +陈妃平-平安歌,http://em.21dtv.com/songs/60033575.mkv +何龙雨+辜樱樱-平安符,http://em.21dtv.com/songs/60107501.mkv +S.B.D.W-骗阿财,http://em.21dtv.com/songs/60068558.mkv +卓依婷-骗阿财,http://em.21dtv.com/songs/60033439.mkv +佚名-骗阿财,http://em.21dtv.com/songs/60033438.mkv +花儿乐队-平安安,http://em.21dtv.com/songs/60088521.mkv +梁静茹-偶阵雨,http://em.21dtv.com/songs/60068555.mkv +周张驰+何泽胜-oh yeah happy,http://em.21dtv.com/songs/60073685.mkv +WESTLIFE-open your heart,http://em.21dtv.com/songs/60004355.mkv +MADONNA-open your heart,http://em.21dtv.com/songs/60004354.mkv +张惠妹-open your eyes,http://em.21dtv.com/songs/60004353.mkv +B.A.D-open your eyes(演唱会),http://em.21dtv.com/songs/60004352.mkv +赵奕欢+莫熙儿+田晓天+王紫潼+宋-偶像派,http://em.21dtv.com/songs/60077044.mkv +SMLLE GUEEN-偶像派(演唱会),http://em.21dtv.com/songs/60064677.mkv +金润吉-偶像剧,http://em.21dtv.com/songs/60114148.mkv +梁佑嘉-偶像剧,http://em.21dtv.com/songs/60077043.mkv +佚名-one way ticket,http://em.21dtv.com/songs/60004315.mkv +ニール.セダか+平尾昌晃-one way ticket(无原唱),http://em.21dtv.com/songs/60004314.mkv +KATE EARL-one woman army,http://em.21dtv.com/songs/60073713.mkv +陈芳语-OVER THE MOON,http://em.21dtv.com/songs/60096872.mkv +MR.MR-Out,http://em.21dtv.com/songs/60111636.mkv +古巨基-onee upona time,http://em.21dtv.com/songs/60073715.mkv +BRISCO+LIL WAYNE-on the wall,http://em.21dtv.com/songs/60004270.mkv +モーニング娘-one two three,http://em.21dtv.com/songs/60071647.mkv +E GIRLS-one two three,http://em.21dtv.com/songs/60066706.mkv +RING-one two step(无原唱),http://em.21dtv.com/songs/60004313.mkv +GROOVE COVERAGE-on the radio,http://em.21dtv.com/songs/60067963.mkv +KAISER CHIEFS-on the run,http://em.21dtv.com/songs/60066704.mkv +FAITH HILL+JUDY GARL-over the rainbow,http://em.21dtv.com/songs/60004384.mkv +AT17-over the rainbow,http://em.21dtv.com/songs/60004383.mkv +蔡琴-over the rainbow(演唱会),http://em.21dtv.com/songs/60004382.mkv +柯智元-on the road,http://em.21dtv.com/songs/60004269.mkv +周治平-on the radio,http://em.21dtv.com/songs/60004267.mkv +PLAIN WHITE T'S-our time now,http://em.21dtv.com/songs/60004365.mkv +SCISSOR+SISTER-only the horses,http://em.21dtv.com/songs/60069122.mkv +JENNIFER LOPEZ FT PITBULL-on the floor,http://em.21dtv.com/songs/60062058.mkv +李魏西-our show time,http://em.21dtv.com/songs/60086358.mkv +卜学亮-O SOLE MIO,http://em.21dtv.com/songs/60096874.mkv +张卫健-o solo mio(无原唱),http://em.21dtv.com/songs/60004203.mkv +张菲-o sole mio,http://em.21dtv.com/songs/60004202.mkv +屠洪纲-哦莎莉(演唱会),http://em.21dtv.com/songs/60033043.mkv +赵传-噢莎莉,http://em.21dtv.com/songs/60033036.mkv +赵传-噢!莎莉,http://em.21dtv.com/songs/60033027.mkv +黄立成-oh社会,http://em.21dtv.com/songs/60004242.mkv +冯允谦+谭嘉仪-one sweet day,http://em.21dtv.com/songs/60086357.mkv +MARIAH CAREY+98 DEGREES-one sweet day,http://em.21dtv.com/songs/60004308.mkv +MARIAH CAREY-one sweet day(演唱会),http://em.21dtv.com/songs/60004307.mkv +LINKIN PARK-one step closer,http://em.21dtv.com/songs/60004306.mkv +张韶涵-欧若拉,http://em.21dtv.com/songs/60033051.mkv +PERFUME-one room disco,http://em.21dtv.com/songs/60004304.mkv +罗大佑+OK男女合唱团-ok情歌,http://em.21dtv.com/songs/60004249.mkv +佚名-oh pretty woman,http://em.21dtv.com/songs/60004232.mkv +林凡-old phone book,http://em.21dtv.com/songs/60004254.mkv +KLAAS-our own way,http://em.21dtv.com/songs/60073727.mkv +JOAN OSBORNE-one of us,http://em.21dtv.com/songs/60004303.mkv +ABBA-one of us,http://em.21dtv.com/songs/60004302.mkv +佚名-out of touch,http://em.21dtv.com/songs/60004375.mkv +RUDY LOVE-out of rhythm(演唱会),http://em.21dtv.com/songs/60004372.mkv +GABRIELLE-out of reach,http://em.21dtv.com/songs/60004371.mkv +CELINE DION-only one road,http://em.21dtv.com/songs/60004334.mkv +周逸涵+陈旭-oh oh oh,http://em.21dtv.com/songs/60065662.mkv +周国贤-out of ctrl,http://em.21dtv.com/songs/60004370.mkv +KERI HILSON+CHRIS BROWN-one night stand,http://em.21dtv.com/songs/60073707.mkv +林峰-on my way,http://em.21dtv.com/songs/60084752.mkv +CHARLIE BROWN-on my way,http://em.21dtv.com/songs/60082287.mkv +花世纪-On My Way,http://em.21dtv.com/songs/60080569.mkv +王心凌-on my way,http://em.21dtv.com/songs/60004266.mkv +佚名-one more try,http://em.21dtv.com/songs/60004295.mkv +GEORGE MICHAEL-one more try,http://em.21dtv.com/songs/60004294.mkv +A1-one more try,http://em.21dtv.com/songs/60004293.mkv +5566-one more try,http://em.21dtv.com/songs/60004292.mkv +郑中基-one more time,http://em.21dtv.com/songs/60004291.mkv +JEWELRY-one more time,http://em.21dtv.com/songs/60004290.mkv +佚名-olman river(无原唱),http://em.21dtv.com/songs/60004250.mkv +佚名-on my own,http://em.21dtv.com/songs/60073694.mkv +MAROON 5-one more night,http://em.21dtv.com/songs/60073706.mkv +佚名-one more night,http://em.21dtv.com/songs/60004289.mkv +JOKER-on my mind,http://em.21dtv.com/songs/60065663.mkv +CODY SIMPSON-on my mind,http://em.21dtv.com/songs/60061993.mkv +佚名-噢妈妈,http://em.21dtv.com/songs/60033034.mkv +吴玉玲-噢妈妈,http://em.21dtv.com/songs/60008817.mkv +张卫健-oh ma ma,http://em.21dtv.com/songs/60004222.mkv +WIZ KHALIFA+TOO SHORT-on my level,http://em.21dtv.com/songs/60073693.mkv +徐仁英-oh my gosh,http://em.21dtv.com/songs/60073683.mkv +苏路-oh my god,http://em.21dtv.com/songs/60062925.mkv +周韦杰+蔡义德-欧麦尬,http://em.21dtv.com/songs/60033050.mkv +五月天-噢买尬,http://em.21dtv.com/songs/60033035.mkv +戴佩妮-oh my god,http://em.21dtv.com/songs/60004226.mkv +苍宇-oh my friend,http://em.21dtv.com/songs/60004225.mkv +S.O.S-oh my friend(无原唱),http://em.21dtv.com/songs/60004224.mkv +黖木メイサ-one more drama,http://em.21dtv.com/songs/60073705.mkv +BOYZ+II+MEN-one more dance,http://em.21dtv.com/songs/60069118.mkv +LUDACRIS+T PAIN-one more drink,http://em.21dtv.com/songs/60063701.mkv +BLOC PARTY-one more chance,http://em.21dtv.com/songs/60063700.mkv +GLORIA ESTEFAN-oye mi canto,http://em.21dtv.com/songs/60004388.mkv +佚名-one more chance,http://em.21dtv.com/songs/60004288.mkv +刘孟哲+金奕萱-oh my baby,http://em.21dtv.com/songs/60086356.mkv +金奕萱+任忠睿-oh my baby,http://em.21dtv.com/songs/60066702.mkv +佚名-only love you,http://em.21dtv.com/songs/60004331.mkv +尚雯婕-o ley o,http://em.21dtv.com/songs/60073679.mkv +金建模-oh la la,http://em.21dtv.com/songs/60067961.mkv +张学友-ooh la la(演唱会),http://em.21dtv.com/songs/60004344.mkv +张学友-oh la la(演唱会),http://em.21dtv.com/songs/60004221.mkv +佚名-on london bridge,http://em.21dtv.com/songs/60004265.mkv +袁小迪-欧卡桑,http://em.21dtv.com/songs/60033049.mkv +吴君如+曾志伟+杜汶泽+吴君如-噢金鸡,http://em.21dtv.com/songs/60033033.mkv +GO NASSUN-o iwi o,http://em.21dtv.com/songs/60004200.mkv +果味VC-ocean is dead,http://em.21dtv.com/songs/60002707.mkv +FLASHE-Oh Ye Yo,http://em.21dtv.com/songs/60100720.mkv +单小源-哦哈哟,http://em.21dtv.com/songs/60128852.mkv +JAMES INGRAM-one hundred ways,http://em.21dtv.com/songs/60004280.mkv +MARIAH CAREY-O HOLY NIGHT,http://em.21dtv.com/songs/60096873.mkv +D.S.DWIGHT+A.ADAM-o holy night,http://em.21dtv.com/songs/60004199.mkv +黄明志+玖壹壹-OH MY GOD,http://em.21dtv.com/songs/60128635.mkv +吴丹妮-OH MY DARLING,http://em.21dtv.com/songs/60096871.mkv +阿牛-oh honey honey,http://em.21dtv.com/songs/60004218.mkv +陈振云-噢姑娘,http://em.21dtv.com/songs/60033032.mkv +STEPS-one for sorrow,http://em.21dtv.com/songs/60004279.mkv +KATE VOEGELE-only fooling myself,http://em.21dtv.com/songs/60004324.mkv +佚名-one fine day,http://em.21dtv.com/songs/60004278.mkv +黄文星-欧兜水,http://em.21dtv.com/songs/60033048.mkv +徐若瑄-欧兜迈,http://em.21dtv.com/songs/60033047.mkv +杨哲-欧豆蔻,http://em.21dtv.com/songs/60127083.mkv +佚名-o christmas tree,http://em.21dtv.com/songs/60004197.mkv +裴涩琪-one by one(演唱会),http://em.21dtv.com/songs/60073699.mkv +BOYZ II MEN-on bended knee,http://em.21dtv.com/songs/60004262.mkv +佚名-on bended knee(无原唱),http://em.21dtv.com/songs/60004261.mkv +TEMPLECLOUD-one big family,http://em.21dtv.com/songs/60073698.mkv +雷燕生-哦宝贝,http://em.21dtv.com/songs/60103699.mkv +童童-噢 北鼻,http://em.21dtv.com/songs/60033025.mkv +张津涤-噢爱人,http://em.21dtv.com/songs/60116796.mkv +陈瑞-噢爱人,http://em.21dtv.com/songs/60107334.mkv +梦然-噢爱人,http://em.21dtv.com/songs/60085562.mkv +奥迪-噢爱人,http://em.21dtv.com/songs/60079865.mkv +张祥洪-噢爱人,http://em.21dtv.com/songs/60033031.mkv +云菲菲-噢爱人,http://em.21dtv.com/songs/60033030.mkv +陈伟-噢爱人,http://em.21dtv.com/songs/60033029.mkv +VIXX-on and on,http://em.21dtv.com/songs/60073691.mkv +EVERY LITTLE THING-on and on,http://em.21dtv.com/songs/60073690.mkv +江若琳-one and only,http://em.21dtv.com/songs/60062508.mkv +ELLE VARNER-over and over,http://em.21dtv.com/songs/60062016.mkv +ADELE-one and only,http://em.21dtv.com/songs/60061941.mkv +女声-over and over,http://em.21dtv.com/songs/60004379.mkv +男声-over and over,http://em.21dtv.com/songs/60004378.mkv +浩瀚-偶爱你,http://em.21dtv.com/songs/60033053.mkv +JASON CASTRO-only a mountain,http://em.21dtv.com/songs/60073716.mkv +林海峰-男子组,http://em.21dtv.com/songs/60031078.mkv +软硬天师-男子组(演唱会),http://em.21dtv.com/songs/60031077.mkv +梁汉文+林海峰-男子组(演唱会),http://em.21dtv.com/songs/60031076.mkv +栗锦-娘子写,http://em.21dtv.com/songs/60032669.mkv +高斌-那滋味,http://em.21dtv.com/songs/60113103.mkv +汤潮-那滋味,http://em.21dtv.com/songs/60030851.mkv +爱戴-女战神,http://em.21dtv.com/songs/60077039.mkv +高音-你最亲,http://em.21dtv.com/songs/60071010.mkv +方顺吉+方婉真+萧玉芳-囡仔拳,http://em.21dtv.com/songs/60030876.mkv +阿楠-你在哪,http://em.21dtv.com/songs/60106376.mkv +谭晶-念着你,http://em.21dtv.com/songs/60100466.mkv +刘馨蔚-你最牛,http://em.21dtv.com/songs/60086740.mkv +何龙雨-你最牛,http://em.21dtv.com/songs/60086739.mkv +牛欣欣+周张驰+何泽胜+刘姝辰-你最牛,http://em.21dtv.com/songs/60076994.mkv +阿牛-你最牛,http://em.21dtv.com/songs/60032587.mkv +东方骏-你在哪,http://em.21dtv.com/songs/60032461.mkv +夜郎金鑫-你最美,http://em.21dtv.com/songs/60107622.mkv +摇滚高天+泡椒小姐+姚瑶-你最美,http://em.21dtv.com/songs/60105086.mkv +刘金笑-你最美,http://em.21dtv.com/songs/60076993.mkv +周游格-你最美,http://em.21dtv.com/songs/60066201.mkv +吴春燕-你最美(演唱会),http://em.21dtv.com/songs/60063089.mkv +陆锋-你最美,http://em.21dtv.com/songs/60032583.mkv +佚名-你真美(演唱会)(无原唱),http://em.21dtv.com/songs/60032533.mkv +孙乐-你走了,http://em.21dtv.com/songs/60117650.mkv +张胜淼-你走了,http://em.21dtv.com/songs/60109334.mkv +张立基-你走了,http://em.21dtv.com/songs/60032572.mkv +李圣杰-你走了,http://em.21dtv.com/songs/60032571.mkv +黄亮华-女主角,http://em.21dtv.com/songs/60111549.mkv +江志丰-男主角,http://em.21dtv.com/songs/60085499.mkv +袁哲-女主角(演唱会),http://em.21dtv.com/songs/60069689.mkv +UNDER LOVER+嘎嘎+李洛洋-男子汉,http://em.21dtv.com/songs/60133308.mkv +高健嘉-男子汉,http://em.21dtv.com/songs/60131997.mkv +曹与欢-你走后,http://em.21dtv.com/songs/60125650.mkv +阿汤哥-男子汉,http://em.21dtv.com/songs/60109685.mkv +王梓轩-你最好,http://em.21dtv.com/songs/60096995.mkv +许石-男子汉,http://em.21dtv.com/songs/60093899.mkv +张震岳+苏慧伦-男子汉,http://em.21dtv.com/songs/60089870.mkv +庄振凯-男子汉,http://em.21dtv.com/songs/60076831.mkv +陈盈洁-女子汉,http://em.21dtv.com/songs/60033023.mkv +TWINS-你最红,http://em.21dtv.com/songs/60032582.mkv +张震岳-男子汉,http://em.21dtv.com/songs/60031071.mkv +佚名-男子汉,http://em.21dtv.com/songs/60031070.mkv +李琛+杨洪基-男子汉,http://em.21dtv.com/songs/60031069.mkv +成龙-男子汉,http://em.21dtv.com/songs/60031068.mkv +李龙基-男子汉(演唱会),http://em.21dtv.com/songs/60031067.mkv +小苦妹+TWINS-女仔歌,http://em.21dtv.com/songs/60033021.mkv +苦荣+关智斌-男仔歌,http://em.21dtv.com/songs/60031066.mkv +杨宗宪-你知否,http://em.21dtv.com/songs/60032557.mkv +杜德伟-你值得,http://em.21dtv.com/songs/60085546.mkv +张坤-你走吧,http://em.21dtv.com/songs/60130304.mkv +候亚周-你走吧,http://em.21dtv.com/songs/60130090.mkv +侯亚周-你走吧,http://em.21dtv.com/songs/60122488.mkv +芭比-你做伴,http://em.21dtv.com/songs/60088518.mkv +周艳泓-你走吧,http://em.21dtv.com/songs/60076990.mkv +明圣凯-你有种,http://em.21dtv.com/songs/60032446.mkv +羽泉-哪一站,http://em.21dtv.com/songs/60030676.mkv +羽泉-哪一站(演唱会),http://em.21dtv.com/songs/60030675.mkv +韩冰+李雨儿-那一眼,http://em.21dtv.com/songs/60124690.mkv +谢军-那一夜,http://em.21dtv.com/songs/60030835.mkv +罗百吉+宝贝-那一夜,http://em.21dtv.com/songs/60030834.mkv +林忆莲-那一夜,http://em.21dtv.com/songs/60030833.mkv +解晓东-那一夜,http://em.21dtv.com/songs/60030832.mkv +艾歌-扭一下,http://em.21dtv.com/songs/60077012.mkv +关心妍-你有心,http://em.21dtv.com/songs/60032445.mkv +关心妍-你有心(演唱会),http://em.21dtv.com/songs/60032444.mkv +林依晨-你有我,http://em.21dtv.com/songs/60032441.mkv +降央卓玛-那一天,http://em.21dtv.com/songs/60134430.mkv +杨东伟-那一天,http://em.21dtv.com/songs/60127077.mkv +胡臻-那一天,http://em.21dtv.com/songs/60124383.mkv +V.O.S-那一天,http://em.21dtv.com/songs/60118287.mkv +降央卓玛-那一天,http://em.21dtv.com/songs/60106427.mkv +李韦-那一天,http://em.21dtv.com/songs/60104228.mkv +降央卓玛-那一天(演),http://em.21dtv.com/songs/60100611.mkv +曾路得-那一天,http://em.21dtv.com/songs/60092767.mkv +何洁-那一天,http://em.21dtv.com/songs/60085493.mkv +潘玮柏-那一天,http://em.21dtv.com/songs/60083462.mkv +群星-那一天(演唱会),http://em.21dtv.com/songs/60083461.mkv +胡东清-那一天,http://em.21dtv.com/songs/60067255.mkv +张晋樵-那一天,http://em.21dtv.com/songs/60030829.mkv +杨坤-那一天,http://em.21dtv.com/songs/60030828.mkv +刘德华-那一天,http://em.21dtv.com/songs/60030827.mkv +段千寻-那一天,http://em.21dtv.com/songs/60030826.mkv +棒棒堂-那一天(演唱会),http://em.21dtv.com/songs/60030825.mkv +张志家-哪一天,http://em.21dtv.com/songs/60030674.mkv +苏勒亚其其格-那一世,http://em.21dtv.com/songs/60122051.mkv +于台烟-鸟与树(无原唱),http://em.21dtv.com/songs/60032677.mkv +S.K.Y-哪一派,http://em.21dtv.com/songs/60090428.mkv +SKY-那一派,http://em.21dtv.com/songs/60030821.mkv +钱万千-那一年,http://em.21dtv.com/songs/60118115.mkv +雨湘-难亦难,http://em.21dtv.com/songs/60115512.mkv +汪苏泷-那一年,http://em.21dtv.com/songs/60076809.mkv +黄品源-你呀你,http://em.21dtv.com/songs/60032380.mkv +陈明-你呀你,http://em.21dtv.com/songs/60032379.mkv +叶倩文+成龙-男与女,http://em.21dtv.com/songs/60031065.mkv +许巍-那一年,http://em.21dtv.com/songs/60030816.mkv +陈文华-那一年,http://em.21dtv.com/songs/60030815.mkv +许巍-那一年(演唱会),http://em.21dtv.com/songs/60030814.mkv +LADY ANTEBELLUM-need you now,http://em.21dtv.com/songs/60004059.mkv +SNH48-纽约梦,http://em.21dtv.com/songs/60127682.mkv +佚名-那一暝,http://em.21dtv.com/songs/60030813.mkv +WINKY诗-诺言老,http://em.21dtv.com/songs/60083568.mkv +望海高歌-那一刻,http://em.21dtv.com/songs/60116879.mkv +雨天-那一刻,http://em.21dtv.com/songs/60098901.mkv +毛阿敏-那一刻,http://em.21dtv.com/songs/60089383.mkv +郭斯炫-那一刻,http://em.21dtv.com/songs/60076807.mkv +王滨-那一刻,http://em.21dtv.com/songs/60030812.mkv +朱雅-女一号,http://em.21dtv.com/songs/60071018.mkv +石卫-那以后,http://em.21dtv.com/songs/60030841.mkv +王昆-农友歌,http://em.21dtv.com/songs/60116142.mkv +袁野-那一个,http://em.21dtv.com/songs/60115372.mkv +王昆-农友歌,http://em.21dtv.com/songs/60091699.mkv +于洋-年夜饭,http://em.21dtv.com/songs/60105569.mkv +彭昱畅-你一定,http://em.21dtv.com/songs/60128008.mkv +陈希郡-那原点,http://em.21dtv.com/songs/60104555.mkv +胡杰夕+刘亚要-那一次,http://em.21dtv.com/songs/60083460.mkv +苍茫-那一次,http://em.21dtv.com/songs/60030807.mkv +2AM CLUB-not your boyfriend,http://em.21dtv.com/songs/60082282.mkv +李宝蓝-你现在,http://em.21dtv.com/songs/60068542.mkv +朱雨辰-内心戏,http://em.21dtv.com/songs/60106924.mkv +4 IN LOVE-你休想,http://em.21dtv.com/songs/60032378.mkv +郑秀文-内心戏,http://em.21dtv.com/songs/60031334.mkv +马可-宁夏人(演唱会),http://em.21dtv.com/songs/60032695.mkv +许志安-那些年,http://em.21dtv.com/songs/60118909.mkv +单轩凌-那些年,http://em.21dtv.com/songs/60115735.mkv +刘伟光-那些年,http://em.21dtv.com/songs/60115718.mkv +梁咏琪-那些年,http://em.21dtv.com/songs/60113740.mkv +张力尹-那些年,http://em.21dtv.com/songs/60105819.mkv +孙中亮-那些年,http://em.21dtv.com/songs/60102110.mkv +新声驾到-那些年,http://em.21dtv.com/songs/60083459.mkv +阚立文-那些年,http://em.21dtv.com/songs/60081494.mkv +刘俊宇-那些年,http://em.21dtv.com/songs/60076806.mkv +泳儿-那些年(演唱会),http://em.21dtv.com/songs/60064595.mkv +胡夏-那些年,http://em.21dtv.com/songs/60062475.mkv +金姗姗-纳西美,http://em.21dtv.com/songs/60107285.mkv +苏阳-宁夏川(演唱会),http://em.21dtv.com/songs/60067299.mkv +江美琪-难相处,http://em.21dtv.com/songs/60031286.mkv +佚名-那无兄,http://em.21dtv.com/songs/60030786.mkv +佚名-泥娃娃,http://em.21dtv.com/songs/60031359.mkv +馨梓-泥娃娃,http://em.21dtv.com/songs/60031358.mkv +童唱-泥娃娃,http://em.21dtv.com/songs/60031357.mkv +马晓晨-你我他,http://em.21dtv.com/songs/60134462.mkv +乔一-你我他,http://em.21dtv.com/songs/60121345.mkv +泳儿-你我她,http://em.21dtv.com/songs/60032331.mkv +容祖儿-你我她,http://em.21dtv.com/songs/60032330.mkv +陈宥臻-你我她,http://em.21dtv.com/songs/60032329.mkv +泳儿-你我她(演唱会),http://em.21dtv.com/songs/60032328.mkv +容祖儿-你我他,http://em.21dtv.com/songs/60032327.mkv +康康-你我他,http://em.21dtv.com/songs/60032326.mkv +胡兵-你温柔,http://em.21dtv.com/songs/60091892.mkv +覃桢-那五年,http://em.21dtv.com/songs/60119959.mkv +邰正宵-难忘你,http://em.21dtv.com/songs/60093253.mkv +许冠杰-难忘您,http://em.21dtv.com/songs/60093144.mkv +罗敏庄-难忘您(演唱会),http://em.21dtv.com/songs/60076850.mkv +佚名-难忘您,http://em.21dtv.com/songs/60031279.mkv +林忆莲-难忘您(演唱会),http://em.21dtv.com/songs/60031278.mkv +吴亚玲+蒋建国-你忘了,http://em.21dtv.com/songs/60032292.mkv +黄凯芹-难忘记(演唱会),http://em.21dtv.com/songs/60031273.mkv +李猛-女娲花,http://em.21dtv.com/songs/60133814.mkv +蔡依林-你为何,http://em.21dtv.com/songs/60032294.mkv +谢其国+叶瑞娥-闹五更(无原唱),http://em.21dtv.com/songs/60031309.mkv +毛泽少-女王范,http://em.21dtv.com/songs/60133910.mkv +CHRIS BROWN+JUSTIN BIEBER-next to you,http://em.21dtv.com/songs/60073659.mkv +陈零九-你他我,http://em.21dtv.com/songs/60122252.mkv +SOUL WORKS-你挺我,http://em.21dtv.com/songs/60032289.mkv +FUN4-黏踢踢,http://em.21dtv.com/songs/60081285.mkv +EMELI SANDE-next to me,http://em.21dtv.com/songs/60066695.mkv +MICHAEL LEARNS TO ROCK-nothing to lose,http://em.21dtv.com/songs/60004182.mkv +THREE DAYS GRACE-never too late,http://em.21dtv.com/songs/60004080.mkv +娅琪朵-你太贱,http://em.21dtv.com/songs/60104919.mkv +林佑威-那条街,http://em.21dtv.com/songs/60030784.mkv +于魁智+李胜素-闹天宫,http://em.21dtv.com/songs/60108282.mkv +MARIAH CAREY-never too far,http://em.21dtv.com/songs/60004079.mkv +张靓颖-逆时针,http://em.21dtv.com/songs/60032608.mkv +李思思-女书吟,http://em.21dtv.com/songs/60133798.mkv +郭少杰-霓裳吟,http://em.21dtv.com/songs/60131889.mkv +徐良-那时雨,http://em.21dtv.com/songs/60076796.mkv +许嵩-南山忆,http://em.21dtv.com/songs/60031136.mkv +罗美仪-暖手心,http://em.21dtv.com/songs/60124352.mkv +卢学睿-暖色系,http://em.21dtv.com/songs/60032803.mkv +BOY'Z-男生围(演唱会),http://em.21dtv.com/songs/60031046.mkv +蔡淳佳-暖色调,http://em.21dtv.com/songs/60132861.mkv +Popu Lady-你说他,http://em.21dtv.com/songs/60115620.mkv +群星-男士托,http://em.21dtv.com/songs/60031049.mkv +文婷-你是谁,http://em.21dtv.com/songs/60130365.mkv +龙飞凤-你是谁,http://em.21dtv.com/songs/60128657.mkv +杨乐-那是谁,http://em.21dtv.com/songs/60116932.mkv +阿凉-你是谁,http://em.21dtv.com/songs/60080076.mkv +郑秀文-女生说,http://em.21dtv.com/songs/60033005.mkv +佚名-女杀手,http://em.21dtv.com/songs/60032997.mkv +陈宝珠-女杀手,http://em.21dtv.com/songs/60032996.mkv +陈宝珠-女杀手(演唱会),http://em.21dtv.com/songs/60032995.mkv +胖虎-你是谁,http://em.21dtv.com/songs/60032056.mkv +孟庭苇-你是谁,http://em.21dtv.com/songs/60032055.mkv +黄湘怡-你是谁,http://em.21dtv.com/songs/60032054.mkv +陈鹏-你是谁,http://em.21dtv.com/songs/60032053.mkv +陈慧珊-你是谁,http://em.21dtv.com/songs/60032052.mkv +蔡依林-你是谁(演唱会),http://em.21dtv.com/songs/60032051.mkv +BOY'Z-男生圈,http://em.21dtv.com/songs/60031045.mkv +JESSIE J-nobodys perfect,http://em.21dtv.com/songs/60073668.mkv +黄思婷-你是only one,http://em.21dtv.com/songs/60083520.mkv +郭宴-南山南,http://em.21dtv.com/songs/60135825.mkv +芦伟-你是你,http://em.21dtv.com/songs/60129523.mkv +郁可唯-南山南,http://em.21dtv.com/songs/60128467.mkv +侃侃-南山南,http://em.21dtv.com/songs/60116548.mkv +张磊-南山南,http://em.21dtv.com/songs/60113490.mkv +马頔-南山南,http://em.21dtv.com/songs/60106465.mkv +反光镜-那四年,http://em.21dtv.com/songs/60103961.mkv +JUSTIN BIEBER-never say never,http://em.21dtv.com/songs/60063693.mkv +徐伟贤-never say never,http://em.21dtv.com/songs/60004078.mkv +JUSTIN BIEBER+JADEN SMITH-never say never,http://em.21dtv.com/songs/60004077.mkv +龙千玉-女神龙,http://em.21dtv.com/songs/60071017.mkv +佚名-女神龙,http://em.21dtv.com/songs/60033000.mkv +邱兰芬-女神龙,http://em.21dtv.com/songs/60032999.mkv +丁思忖-南山开,http://em.21dtv.com/songs/60121327.mkv +李亮超-那瞬间,http://em.21dtv.com/songs/60113611.mkv +陶莉萍-那时间,http://em.21dtv.com/songs/60030764.mkv +王爵-那时候,http://em.21dtv.com/songs/60127202.mkv +孙英男-那时候,http://em.21dtv.com/songs/60123827.mkv +山子华-女神湖,http://em.21dtv.com/songs/60116755.mkv +梁汉文-那时候,http://em.21dtv.com/songs/60104261.mkv +张瀚元-那时候,http://em.21dtv.com/songs/60100865.mkv +黑鸭子组合-那时候,http://em.21dtv.com/songs/60094362.mkv +侃侃-逆水寒,http://em.21dtv.com/songs/60067296.mkv +许志安-你说谎,http://em.21dtv.com/songs/60032260.mkv +爱戴-你说谎,http://em.21dtv.com/songs/60032259.mkv +黄品源-难释怀(演唱会)(无原唱),http://em.21dtv.com/songs/60031228.mkv +林隆璇-那时候,http://em.21dtv.com/songs/60030760.mkv +霍建华-那时候,http://em.21dtv.com/songs/60030759.mkv +萱萱-逆时光,http://em.21dtv.com/songs/60112202.mkv +古巨基-逆时光,http://em.21dtv.com/songs/60076998.mkv +胡杰夕-那首歌,http://em.21dtv.com/songs/60076799.mkv +李易峰-那首歌,http://em.21dtv.com/songs/60068507.mkv +黄仲昆-你说过,http://em.21dtv.com/songs/60032256.mkv +雨薇-那首歌,http://em.21dtv.com/songs/60030854.mkv +赵咏华-那首歌,http://em.21dtv.com/songs/60030773.mkv +林宥嘉-那首歌,http://em.21dtv.com/songs/60030772.mkv +MARIO-never say goodbye,http://em.21dtv.com/songs/60004075.mkv +吕珊+苏珊-never say goodbye(演唱会),http://em.21dtv.com/songs/60004074.mkv +麦浚龙-never said goodbye,http://em.21dtv.com/songs/60004073.mkv +盖玺-你是否,http://em.21dtv.com/songs/60128258.mkv +田震-你是否,http://em.21dtv.com/songs/60091764.mkv +AVRIL LAVIGNE-nobodys fool(演唱会),http://em.21dtv.com/songs/60067957.mkv +吴莫愁-你傻的,http://em.21dtv.com/songs/60116644.mkv +张学友-你说的,http://em.21dtv.com/songs/60106825.mkv +额尔古纳乐队-纳时代,http://em.21dtv.com/songs/60076814.mkv +林俊逸-那扇窗,http://em.21dtv.com/songs/60106980.mkv +黄立行-你身边,http://em.21dtv.com/songs/60031981.mkv +N SYNC-no strings attached,http://em.21dtv.com/songs/60004137.mkv +韦礼安-鸟日子,http://em.21dtv.com/songs/60067298.mkv +常来-男人样,http://em.21dtv.com/songs/60135179.mkv +周华健-女人缘,http://em.21dtv.com/songs/60032988.mkv +张清芳-女人缘,http://em.21dtv.com/songs/60032987.mkv +周华健-女人缘(演唱会),http://em.21dtv.com/songs/60032986.mkv +周华健-男人缘,http://em.21dtv.com/songs/60031030.mkv +蔡丽津-女人心,http://em.21dtv.com/songs/60135699.mkv +DJ安之-男人香,http://em.21dtv.com/songs/50000111.mkv +赵彤-女人香,http://em.21dtv.com/songs/60112279.mkv +[Group] +groupName=十六万歌曲MV等 - 28 +陈瑞-女人心,http://em.21dtv.com/songs/60106410.mkv +任军太-女人心,http://em.21dtv.com/songs/60109134.mkv +江志丰-女人香,http://em.21dtv.com/songs/60085558.mkv +苏姗-女人心(演唱会),http://em.21dtv.com/songs/60077034.mkv +姜木-女人香,http://em.21dtv.com/songs/60077033.mkv +袁哲-女人香,http://em.21dtv.com/songs/60071016.mkv +阿锜-女人香,http://em.21dtv.com/songs/60064672.mkv +佚名-女人心,http://em.21dtv.com/songs/60032979.mkv +王杰-女人心,http://em.21dtv.com/songs/60032978.mkv +龙千玉-女人心,http://em.21dtv.com/songs/60032977.mkv +林玉英-女人心,http://em.21dtv.com/songs/60032976.mkv +江蕙-女人心,http://em.21dtv.com/songs/60032975.mkv +简美妍-女人心,http://em.21dtv.com/songs/60032974.mkv +甲子蕙-女人心,http://em.21dtv.com/songs/60032973.mkv +陈瑞-女人心,http://em.21dtv.com/songs/60032972.mkv +郑秀文-女人心(演唱会),http://em.21dtv.com/songs/60032971.mkv +梅艳芳-女人心(演唱会),http://em.21dtv.com/songs/60032970.mkv +梁丽荣-女人心(无原唱),http://em.21dtv.com/songs/60032969.mkv +万芳-女人鞋,http://em.21dtv.com/songs/60032968.mkv +曹雅雯-女人香,http://em.21dtv.com/songs/60032965.mkv +张学友-女人香(演唱会),http://em.21dtv.com/songs/60032964.mkv +杨培安-男人心,http://em.21dtv.com/songs/60031019.mkv +凌飞-男人心,http://em.21dtv.com/songs/60031018.mkv +蔡荣祖-男人心,http://em.21dtv.com/songs/60031017.mkv +阿桑古卡-男人心,http://em.21dtv.com/songs/60031016.mkv +章小军-男人香,http://em.21dtv.com/songs/60031015.mkv +陈百潭-女人味,http://em.21dtv.com/songs/60131955.mkv +奕丹-女人味,http://em.21dtv.com/songs/60116683.mkv +任雪晴-女人味,http://em.21dtv.com/songs/60090571.mkv +陶莉萍-女人味,http://em.21dtv.com/songs/60032963.mkv +TWINS-女人味,http://em.21dtv.com/songs/60032962.mkv +梁洛施+TWINS-女人味(演唱会),http://em.21dtv.com/songs/60032961.mkv +TWINS-女人味(演唱会),http://em.21dtv.com/songs/60032960.mkv +翁立友-男人伤,http://em.21dtv.com/songs/60122025.mkv +张惠妹-女人说,http://em.21dtv.com/songs/60032957.mkv +杨静-女人情,http://em.21dtv.com/songs/60135417.mkv +张鹏-男人情,http://em.21dtv.com/songs/60119554.mkv +杜海涛-男人婆,http://em.21dtv.com/songs/60031000.mkv +上官晓宝-男人难,http://em.21dtv.com/songs/60131129.mkv +龙啸-男人难,http://em.21dtv.com/songs/60124769.mkv +冷漠-男人鸟,http://em.21dtv.com/songs/60099106.mkv +许景淳-女人哪,http://em.21dtv.com/songs/60032946.mkv +孙艺琪-女人梦,http://em.21dtv.com/songs/60131333.mkv +孙艺琪-女人梦,http://em.21dtv.com/songs/60128966.mkv +天籁天-女人美,http://em.21dtv.com/songs/60119397.mkv +王慧美-女人魅,http://em.21dtv.com/songs/60094226.mkv +詹雅雯-女人梦,http://em.21dtv.com/songs/60032945.mkv +任静-女人梦(演唱会),http://em.21dtv.com/songs/60032944.mkv +游鸿明-男人猫,http://em.21dtv.com/songs/60030995.mkv +MADONNA-nothing really matters,http://em.21dtv.com/songs/60004180.mkv +陈夏莲-女人泪,http://em.21dtv.com/songs/60135901.mkv +朱海君-女人泪,http://em.21dtv.com/songs/60125678.mkv +孙露-女人泪,http://em.21dtv.com/songs/60113407.mkv +阿吉仔-男人泪,http://em.21dtv.com/songs/60109678.mkv +高峰-男人累,http://em.21dtv.com/songs/60088998.mkv +刘萍-鸟入林,http://em.21dtv.com/songs/60032676.mkv +永邦-男人泪,http://em.21dtv.com/songs/60030994.mkv +言承旭-男人泪,http://em.21dtv.com/songs/60030993.mkv +王识贤-男人泪,http://em.21dtv.com/songs/60030992.mkv +伊正-男人泪(无原唱),http://em.21dtv.com/songs/60030991.mkv +刘刚-男人苦,http://em.21dtv.com/songs/60030990.mkv +黄文星-男人ktv,http://em.21dtv.com/songs/60030932.mkv +胡彦斌-男人ktv,http://em.21dtv.com/songs/60030931.mkv +侧田-男人ktv,http://em.21dtv.com/songs/60030930.mkv +侧田-男人ktv(演唱会),http://em.21dtv.com/songs/60030929.mkv +衡越-女人家,http://em.21dtv.com/songs/60077028.mkv +蔡秋凤-女人酒,http://em.21dtv.com/songs/60032941.mkv +山野-男人花,http://em.21dtv.com/songs/60133612.mkv +李昊瀚(山野)-男人花,http://em.21dtv.com/songs/60132541.mkv +张瀛仁-女人花,http://em.21dtv.com/songs/60130327.mkv +MC魏小然-男人花,http://em.21dtv.com/songs/60128689.mkv +黄勇+山野-男人花,http://em.21dtv.com/songs/60127615.mkv +徐佳莹-女人花,http://em.21dtv.com/songs/60120561.mkv +黄勇-男人花,http://em.21dtv.com/songs/60117427.mkv +孙露-女人花,http://em.21dtv.com/songs/60115812.mkv +杨曼莉-女人花,http://em.21dtv.com/songs/60115235.mkv +李春波-女人花,http://em.21dtv.com/songs/60113630.mkv +黄勇-男人花,http://em.21dtv.com/songs/60109775.mkv +张远-女人花,http://em.21dtv.com/songs/60100039.mkv +齐秦+齐豫-女人花,http://em.21dtv.com/songs/60098965.mkv +邰正宵-女人花,http://em.21dtv.com/songs/60096907.mkv +韦唯-女人花(我是歌手第二期),http://em.21dtv.com/songs/60096543.mkv +孙琳-女人花,http://em.21dtv.com/songs/60089800.mkv +蔡恒-女人花,http://em.21dtv.com/songs/60085556.mkv +李翊君-男人坏,http://em.21dtv.com/songs/60062609.mkv +梅艳芳-女人花,http://em.21dtv.com/songs/60032939.mkv +龙千玉-女人花,http://em.21dtv.com/songs/60032938.mkv +李进-女人花,http://em.21dtv.com/songs/60032937.mkv +雷安娜-女人花(演唱会),http://em.21dtv.com/songs/60032936.mkv +蔡丽津-女人花(无原唱),http://em.21dtv.com/songs/60032935.mkv +Duck Sauce-Nrg,http://em.21dtv.com/songs/60110754.mkv +江枫-男人歌,http://em.21dtv.com/songs/60106055.mkv +江枫-男人歌,http://em.21dtv.com/songs/60105204.mkv +高进+小沈阳-男人歌,http://em.21dtv.com/songs/60081631.mkv +游美灵-女人歌,http://em.21dtv.com/songs/60072263.mkv +成学迅-男人歌,http://em.21dtv.com/songs/60068509.mkv +陈升+刘若英-男人港,http://em.21dtv.com/songs/60030980.mkv +梅艳芳+何韵诗-女人烦,http://em.21dtv.com/songs/60032932.mkv +郭婷筠-女人胆,http://em.21dtv.com/songs/60106332.mkv +刘强-男人帮,http://em.21dtv.com/songs/60133404.mkv +刘强-男人帮,http://em.21dtv.com/songs/60131204.mkv +黄家强+任贤齐+苏永康+梁汉文-男人帮,http://em.21dtv.com/songs/60115547.mkv +梅林组合-男人帮,http://em.21dtv.com/songs/60112043.mkv +张瀚元-男人帮,http://em.21dtv.com/songs/60064597.mkv +江映蓉-女人帮,http://em.21dtv.com/songs/60062509.mkv +张蓉蓉-女人啊,http://em.21dtv.com/songs/60129121.mkv +张蓉蓉-女人啊,http://em.21dtv.com/songs/60068553.mkv +詹雅雯-男人啊,http://em.21dtv.com/songs/60030934.mkv +林子娟-男人啊,http://em.21dtv.com/songs/60030933.mkv +邰正宵-闹情绪,http://em.21dtv.com/songs/60031308.mkv +梁咏琪-闹情绪,http://em.21dtv.com/songs/60031307.mkv +王喆-那旗袍,http://em.21dtv.com/songs/60094218.mkv +虞霞-那旗袍,http://em.21dtv.com/songs/60086716.mkv +徐潇玲-女起解,http://em.21dtv.com/songs/60032883.mkv +梅葆玖-女起解,http://em.21dtv.com/songs/60032882.mkv +陈琪-女起解,http://em.21dtv.com/songs/60032881.mkv +李丽蕊-念亲恩(演唱会),http://em.21dtv.com/songs/60083552.mkv +莫旭秋-念亲恩(演唱会),http://em.21dtv.com/songs/60064667.mkv +龚月-念亲恩,http://em.21dtv.com/songs/60032662.mkv +陈百强-念亲恩(演唱会),http://em.21dtv.com/songs/60032661.mkv +李登威-你欠扁(无原唱),http://em.21dtv.com/songs/60031948.mkv +江玲-男朋友,http://em.21dtv.com/songs/60095314.mkv +TWINS-女朋友,http://em.21dtv.com/songs/60092211.mkv +牛奶咖啡-女朋友,http://em.21dtv.com/songs/60077021.mkv +黄舒骏-女朋友(演唱会),http://em.21dtv.com/songs/60032879.mkv +陈小春-难朋友,http://em.21dtv.com/songs/60031224.mkv +佚名-男朋友,http://em.21dtv.com/songs/60030923.mkv +刘德华-男朋友,http://em.21dtv.com/songs/60030922.mkv +古天乐-男朋友,http://em.21dtv.com/songs/60030921.mkv +陈娟儿-你骗我,http://em.21dtv.com/songs/60076932.mkv +苏富权-那片天,http://em.21dtv.com/songs/60076791.mkv +大嘴巴-你怕谁,http://em.21dtv.com/songs/60066188.mkv +黄鸿升-拿破仑,http://em.21dtv.com/songs/60116416.mkv +The One-那片海,http://em.21dtv.com/songs/60109116.mkv +麦子杰-那片海,http://em.21dtv.com/songs/60080673.mkv +韩红-那片海,http://em.21dtv.com/songs/60030755.mkv +韩红-那片海(演唱会),http://em.21dtv.com/songs/60030754.mkv +DANIEL POWTER-next plane home,http://em.21dtv.com/songs/60004092.mkv +邓福如-nothing on you,http://em.21dtv.com/songs/60086355.mkv +BOB FEAT+BRUNO MARS-nothinon you,http://em.21dtv.com/songs/60073674.mkv +陈奕迅-Nothing Ever Happened,http://em.21dtv.com/songs/60100568.mkv +B.RAOTT-nick of time(无原唱),http://em.21dtv.com/songs/60004099.mkv +苏珊-never on sunday(演唱会),http://em.21dtv.com/songs/60073656.mkv +佚名-never on sunday,http://em.21dtv.com/songs/60004071.mkv +TAIO CRUZ-no other one,http://em.21dtv.com/songs/60063694.mkv +MARK MEDLOCK-now or never,http://em.21dtv.com/songs/60067959.mkv +蔡枫华-no oh no(演唱会),http://em.21dtv.com/songs/60060881.mkv +佚名-nothinon me,http://em.21dtv.com/songs/60004170.mkv +SHAWN COLVIN-nothinon me,http://em.21dtv.com/songs/60004169.mkv +SADE-no ordinay love,http://em.21dtv.com/songs/60004129.mkv +邓丽欣-no one knows,http://em.21dtv.com/songs/60004125.mkv +FAIRIES-no ore distance,http://em.21dtv.com/songs/60066699.mkv +BEE GEES-nights on broadway(演唱会),http://em.21dtv.com/songs/60004102.mkv +南宁柒仔-南宁仔,http://em.21dtv.com/songs/60069641.mkv +张莹莹-念奴吟,http://em.21dtv.com/songs/60126901.mkv +蔡秋凤-男女心,http://em.21dtv.com/songs/60066169.mkv +高安-南泥湾,http://em.21dtv.com/songs/60111539.mkv +江涛-南泥湾,http://em.21dtv.com/songs/60111220.mkv +游子组合-南泥湾,http://em.21dtv.com/songs/60107880.mkv +谭芷昀-南泥湾,http://em.21dtv.com/songs/60105382.mkv +崔子格-南泥湾,http://em.21dtv.com/songs/60097025.mkv +苏醒-南泥湾,http://em.21dtv.com/songs/60088548.mkv +顺子-南泥湾,http://em.21dtv.com/songs/60086723.mkv +佚名-南泥湾,http://em.21dtv.com/songs/60031130.mkv +杨紫萍-南泥湾,http://em.21dtv.com/songs/60031129.mkv +韩延文-南泥湾,http://em.21dtv.com/songs/60031128.mkv +郭兰英-南泥湾,http://em.21dtv.com/songs/60031127.mkv +大风-南泥湾,http://em.21dtv.com/songs/60031126.mkv +玫瑰秀-南泥湾(演唱会),http://em.21dtv.com/songs/60031125.mkv +安冬-南泥湾(演唱会),http://em.21dtv.com/songs/60031124.mkv +郭书瑶+井柏然-暖暖手,http://em.21dtv.com/songs/60032800.mkv +谭咏麟+李克勤-拿拿声,http://em.21dtv.com/songs/60030654.mkv +李克勤+谭咏麟-拿拿声(演唱会),http://em.21dtv.com/songs/60030653.mkv +白智英-那女人,http://em.21dtv.com/songs/60076790.mkv +乔任梁-呐呐呐,http://em.21dtv.com/songs/60130042.mkv +安又琪-那你呢,http://em.21dtv.com/songs/60115100.mkv +宇宙人-那你呢,http://em.21dtv.com/songs/60111815.mkv +陈盈洁-凝凝凝(无原唱),http://em.21dtv.com/songs/60096024.mkv +罗力威-你你你,http://em.21dtv.com/songs/60076930.mkv +NELLY-na nana na,http://em.21dtv.com/songs/60073652.mkv +杨谨-no no no,http://em.21dtv.com/songs/60066697.mkv +BY2-闹闹now,http://em.21dtv.com/songs/60064607.mkv +佚名-凝凝凝(无原唱),http://em.21dtv.com/songs/60032716.mkv +林姗-你你你,http://em.21dtv.com/songs/60031939.mkv +蔡秋凤-你你你,http://em.21dtv.com/songs/60031938.mkv +DESTTNY'S CHILD-no no no,http://em.21dtv.com/songs/60004122.mkv +徐怀钰-na na na,http://em.21dtv.com/songs/60004041.mkv +纪绮昭-念奴娇,http://em.21dtv.com/songs/60126020.mkv +李霞-念奴娇,http://em.21dtv.com/songs/60101388.mkv +程志-念奴娇,http://em.21dtv.com/songs/60089429.mkv +伊能静-念奴娇,http://em.21dtv.com/songs/60032660.mkv +宋祖英-年年红,http://em.21dtv.com/songs/60090955.mkv +湘东雨-难奈何,http://em.21dtv.com/songs/60076848.mkv +黄义达-那女孩,http://em.21dtv.com/songs/60030749.mkv +姚俊羽-你能够,http://em.21dtv.com/songs/60072239.mkv +谎言留声机-脑内飞,http://em.21dtv.com/songs/60107217.mkv +农夫-冧冧everyone(演唱会),http://em.21dtv.com/songs/60030073.mkv +赵采儿-暖暖的,http://em.21dtv.com/songs/60112985.mkv +芮德-捏泥巴,http://em.21dtv.com/songs/60134154.mkv +倮倮-那那边,http://em.21dtv.com/songs/60030736.mkv +佚名-柠檬醉,http://em.21dtv.com/songs/60032715.mkv +涂一-那么远,http://em.21dtv.com/songs/60030735.mkv +堂娜-女明星,http://em.21dtv.com/songs/60032877.mkv +林嘉欣-女明星,http://em.21dtv.com/songs/60032876.mkv +陈绮贞-女明星,http://em.21dtv.com/songs/60032875.mkv +方大同-Nmw,http://em.21dtv.com/songs/60129170.mkv +黄耀明-拿命舞(演唱会),http://em.21dtv.com/songs/60030652.mkv +BOYZONE-no matter what,http://em.21dtv.com/songs/60004112.mkv +佚名-no more tears,http://em.21dtv.com/songs/60004119.mkv +佚名-no milk today,http://em.21dtv.com/songs/60004114.mkv +苏慧伦-柠檬树,http://em.21dtv.com/songs/60107965.mkv +杨瑾+沙滩宝贝-柠檬树,http://em.21dtv.com/songs/60083553.mkv +苏慧伦-柠檬树(演唱会),http://em.21dtv.com/songs/60032714.mkv +梁一贞-那面墙,http://em.21dtv.com/songs/60070966.mkv +孙燕姿-浓眉毛,http://em.21dtv.com/songs/60032766.mkv +杨坤-那么美,http://em.21dtv.com/songs/60030732.mkv +MC梦柯-那么好,http://em.21dtv.com/songs/60131082.mkv +李浩民-那么好,http://em.21dtv.com/songs/60086715.mkv +周丽淇-你面红,http://em.21dtv.com/songs/60031918.mkv +叶明果-农民工,http://em.21dtv.com/songs/60132276.mkv +十三狼-农民工,http://em.21dtv.com/songs/60122542.mkv +山猪+桃子+小段-nothing my friend(无原唱),http://em.21dtv.com/songs/60004179.mkv +丹巴旺姆-纳木措,http://em.21dtv.com/songs/60067256.mkv +李玖哲-no more cryin,http://em.21dtv.com/songs/60004115.mkv +陈瑞-那么爱,http://em.21dtv.com/songs/60096953.mkv +JENNIFER LOPEZ+MARC-no me ames,http://em.21dtv.com/songs/60004113.mkv +曹方-南澜掌,http://em.21dtv.com/songs/60031120.mkv +杨丞琳-年轮说,http://em.21dtv.com/songs/60128107.mkv +杨丞琳-年轮说,http://em.21dtv.com/songs/60127078.mkv +陈晓东-泥路上,http://em.21dtv.com/songs/60093476.mkv +卢业媚-坭路上,http://em.21dtv.com/songs/60092384.mkv +卢冠廷-坭路上(演唱会),http://em.21dtv.com/songs/60076856.mkv +余力机构-奴隶兽,http://em.21dtv.com/songs/60032781.mkv +卢业媚-泥路上(演唱会),http://em.21dtv.com/songs/60031354.mkv +小柯-念来去,http://em.21dtv.com/songs/60032657.mkv +棒棒堂-哪里怕,http://em.21dtv.com/songs/60030667.mkv +萧淑慎-那里买,http://em.21dtv.com/songs/60092001.mkv +黄小琥-你老了,http://em.21dtv.com/songs/60117410.mkv +黄小琥-你老了,http://em.21dtv.com/songs/60116412.mkv +佚名-你来了,http://em.21dtv.com/songs/60031880.mkv +陈星-努力歌(演唱会),http://em.21dtv.com/songs/60032782.mkv +佚名-牛犁歌,http://em.21dtv.com/songs/60032732.mkv +童唱-牛犁歌,http://em.21dtv.com/songs/60032731.mkv +童唱-牛犁歌(无原唱),http://em.21dtv.com/songs/60032730.mkv +小E-牛来到,http://em.21dtv.com/songs/60032725.mkv +蔡依林-奴隶船(演唱会),http://em.21dtv.com/songs/60032779.mkv +尹光+KZ-你老板,http://em.21dtv.com/songs/60076927.mkv +林海峰-你老板,http://em.21dtv.com/songs/60031883.mkv +全体-你里囧,http://em.21dtv.com/songs/60132218.mkv +莫文蔚-你可以,http://em.21dtv.com/songs/60031853.mkv +孙莞-那颗星,http://em.21dtv.com/songs/60098252.mkv +MADONNA-nobody knows me,http://em.21dtv.com/songs/60062104.mkv +陈慧琳-念口簧,http://em.21dtv.com/songs/60032656.mkv +苏晴-那口锅,http://em.21dtv.com/songs/60083452.mkv +王识贤-你甲伊,http://em.21dtv.com/songs/60031816.mkv +阿沁-南极星,http://em.21dtv.com/songs/60088839.mkv +张信哲-宁静雪,http://em.21dtv.com/songs/60032689.mkv +李明洋+方瑞娥-你甲我,http://em.21dtv.com/songs/60125703.mkv +方瑞娥+李明洋-你甲我,http://em.21dtv.com/songs/60125621.mkv +大卫-你甲我,http://em.21dtv.com/songs/60112595.mkv +张政雄+薛佩洁-你加我,http://em.21dtv.com/songs/60072237.mkv +薛凯琪-扭计骰,http://em.21dtv.com/songs/60126153.mkv +方大同-你就是,http://em.21dtv.com/songs/60076922.mkv +朱小磊-南京style,http://em.21dtv.com/songs/60069640.mkv +杨钰莹-农家女,http://em.21dtv.com/songs/60032751.mkv +李秋霞-农家乐,http://em.21dtv.com/songs/60032750.mkv +龙玉英-农家乐(无原唱),http://em.21dtv.com/songs/60032749.mkv +冯晓菲-女将军,http://em.21dtv.com/songs/60099775.mkv +琪琪格-那句话,http://em.21dtv.com/songs/60064593.mkv +琪琪格-那句话(舞曲版),http://em.21dtv.com/songs/60064592.mkv +JAY-Z+KANYE WEST-niggas in paris(演唱会),http://em.21dtv.com/songs/60082279.mkv +CRYSTAL CASTLES-not in love,http://em.21dtv.com/songs/60061996.mkv +ENRIQUE IGLESIAS+KEL-not in love,http://em.21dtv.com/songs/60004166.mkv +柳翰雅-女汉子,http://em.21dtv.com/songs/60106996.mkv +周艳泓-女汉子,http://em.21dtv.com/songs/60086747.mkv +王麟-女汉子,http://em.21dtv.com/songs/60086746.mkv +林凡-你还在,http://em.21dtv.com/songs/60072236.mkv +赵芊羽-你还在,http://em.21dtv.com/songs/60031753.mkv +TWINS-男孩子,http://em.21dtv.com/songs/60030912.mkv +古品-拈花笑,http://em.21dtv.com/songs/60066203.mkv +狮子合唱团-你和我,http://em.21dtv.com/songs/60130561.mkv +Rubber Band-你和我,http://em.21dtv.com/songs/60107427.mkv +刘承宇-你和我,http://em.21dtv.com/songs/60083512.mkv +洪杰+朱紫娆-你恨我,http://em.21dtv.com/songs/60080980.mkv +张栋梁-你和我,http://em.21dtv.com/songs/60031781.mkv +臧天朔-你和我,http://em.21dtv.com/songs/60031780.mkv +王力宏-你和我,http://em.21dtv.com/songs/60031779.mkv +李亚明-鸟和树,http://em.21dtv.com/songs/60032674.mkv +真情玲儿-南湖颂,http://em.21dtv.com/songs/60031115.mkv +深海-奈何桥,http://em.21dtv.com/songs/60103422.mkv +糖兄妹-你很胖(演唱会),http://em.21dtv.com/songs/60069659.mkv +刘美君-霓虹鸟(演唱会),http://em.21dtv.com/songs/60031361.mkv +佚名-霓虹鸟(无原唱),http://em.21dtv.com/songs/60031360.mkv +黄飞鹏-你很美,http://em.21dtv.com/songs/60107381.mkv +龚月-你好吗,http://em.21dtv.com/songs/60102527.mkv +林乐伟-你好吗,http://em.21dtv.com/songs/60102382.mkv +陈一凡-你会吗,http://em.21dtv.com/songs/60095122.mkv +金山+张爱-你好吗,http://em.21dtv.com/songs/60094912.mkv +王诗安-你好吗,http://em.21dtv.com/songs/60085516.mkv +黄飞鹏-你很美,http://em.21dtv.com/songs/60083513.mkv +周杰伦-你好吗,http://em.21dtv.com/songs/60064633.mkv +易杰齐-你好吗,http://em.21dtv.com/songs/60064632.mkv +元卫觉醒-你好吗,http://em.21dtv.com/songs/60031775.mkv +佚名-你好吗,http://em.21dtv.com/songs/60031774.mkv +宋祖英-你好吗,http://em.21dtv.com/songs/60031773.mkv +梁雁翎-你好吗,http://em.21dtv.com/songs/60031772.mkv +李玖哲+周笔畅-你好吗,http://em.21dtv.com/songs/60031771.mkv +洪卓立-你好吗,http://em.21dtv.com/songs/60031770.mkv +戴梅君-你好吗,http://em.21dtv.com/songs/60031769.mkv +阿超-你好吗,http://em.21dtv.com/songs/60031768.mkv +宋祖英-你好吗(演唱会),http://em.21dtv.com/songs/60031767.mkv +张优-你坏坏,http://em.21dtv.com/songs/60131394.mkv +阿杜-你很好(演唱会),http://em.21dtv.com/songs/60031788.mkv +温岚-你活该,http://em.21dtv.com/songs/60031811.mkv +办桌二人组-你好否,http://em.21dtv.com/songs/60031765.mkv +张学友-你好毒,http://em.21dtv.com/songs/60031764.mkv +张学友-你好毒(演唱会),http://em.21dtv.com/songs/60031763.mkv +李立+高昊+迟帅-闹红尘,http://em.21dtv.com/songs/60099321.mkv +黄凤仪-你敢知,http://em.21dtv.com/songs/60031709.mkv +李嘉-你甘知,http://em.21dtv.com/songs/60031708.mkv +温心+赵美彤+赵多娜-南宫燕,http://em.21dtv.com/songs/60106079.mkv +G-DRAGON-那个xx,http://em.21dtv.com/songs/60070963.mkv +佚名-念故乡,http://em.21dtv.com/songs/60032654.mkv +佚名-never give up,http://em.21dtv.com/songs/60073654.mkv +JPM-never give up,http://em.21dtv.com/songs/60063692.mkv +赵泳鑫-那个他,http://em.21dtv.com/songs/60112280.mkv +黄致列-那个人,http://em.21dtv.com/songs/60118219.mkv +陈明-那个人,http://em.21dtv.com/songs/60111484.mkv +李承哲-那个人,http://em.21dtv.com/songs/60068505.mkv +吴克群-那个人,http://em.21dtv.com/songs/60030702.mkv +深白色2人组-那个人,http://em.21dtv.com/songs/60030701.mkv +陈雷-那个人,http://em.21dtv.com/songs/60030700.mkv +阿幼朵-南国情,http://em.21dtv.com/songs/60031103.mkv +王雪儿-那个你,http://em.21dtv.com/songs/60083450.mkv +井恩然+汪菱姗-男闺蜜,http://em.21dtv.com/songs/60103873.mkv +李治廷-尼古拉,http://em.21dtv.com/songs/60062618.mkv +RUDIMENTAL-not giving in,http://em.21dtv.com/songs/60073672.mkv +石欣卉-你给的,http://em.21dtv.com/songs/60031713.mkv +薛凯琪-南瓜车,http://em.21dtv.com/songs/60031098.mkv +陈随意-你干杯,http://em.21dtv.com/songs/60031710.mkv +枫桥-那份真,http://em.21dtv.com/songs/60062353.mkv +李玉刚-南飞雁,http://em.21dtv.com/songs/60104209.mkv +陈思思-南飞雁,http://em.21dtv.com/songs/60083464.mkv +李雨儿-南飞雁,http://em.21dtv.com/songs/60031097.mkv +2PM-nori for you,http://em.21dtv.com/songs/60004160.mkv +慕容晓晓-女飞侠,http://em.21dtv.com/songs/60064671.mkv +罗志祥-闹翻天,http://em.21dtv.com/songs/60070978.mkv +慕容晓晓-女驸马,http://em.21dtv.com/songs/60109380.mkv +吕锦兰-女驸马,http://em.21dtv.com/songs/60032855.mkv +谢采妘-难分离,http://em.21dtv.com/songs/60031209.mkv +董贞-南风吹,http://em.21dtv.com/songs/60134183.mkv +张芸京-你飞吧,http://em.21dtv.com/songs/60031700.mkv +孟庭苇-女儿贼,http://em.21dtv.com/songs/60083560.mkv +刘德华-男儿志,http://em.21dtv.com/songs/60030904.mkv +田田-女儿语,http://em.21dtv.com/songs/60123028.mkv +付春霞-女儿行,http://em.21dtv.com/songs/60130064.mkv +王莉-女儿香,http://em.21dtv.com/songs/60113881.mkv +肖燕-女儿乡,http://em.21dtv.com/songs/60089450.mkv +叶凡-女儿行,http://em.21dtv.com/songs/60067301.mkv +梁咏琪-女儿雄,http://em.21dtv.com/songs/60032853.mkv +叶倩文-女儿心(演唱会),http://em.21dtv.com/songs/60032852.mkv +肖燕-女儿香,http://em.21dtv.com/songs/60032851.mkv +AAA-NEW,http://em.21dtv.com/songs/60134626.mkv +林一峰-NEVER SAY GOODBYE,http://em.21dtv.com/songs/60096870.mkv +楼兰+王爱奉-女儿情,http://em.21dtv.com/songs/60131581.mkv +林俊杰-女儿情,http://em.21dtv.com/songs/60131541.mkv +纳兰珠儿-女儿情,http://em.21dtv.com/songs/60127271.mkv +李玲玉-女儿情,http://em.21dtv.com/songs/60104212.mkv +万晓利-女儿情,http://em.21dtv.com/songs/60103053.mkv +李玉刚-女儿情,http://em.21dtv.com/songs/60102351.mkv +春天-女儿情,http://em.21dtv.com/songs/60096323.mkv +金燕-女儿圈,http://em.21dtv.com/songs/60088803.mkv +洪禄云+枫舞-女儿情,http://em.21dtv.com/songs/60086745.mkv +温慧君-女儿情,http://em.21dtv.com/songs/60077017.mkv +尤雅-女儿圈,http://em.21dtv.com/songs/60032849.mkv +谢采妘-女儿圈,http://em.21dtv.com/songs/60032848.mkv +潘秀琼-女儿圈,http://em.21dtv.com/songs/60032847.mkv +蔡琴-女儿圈(演唱会),http://em.21dtv.com/songs/60032846.mkv +吴静-女儿情,http://em.21dtv.com/songs/60032845.mkv +汤灿-女儿情,http://em.21dtv.com/songs/60032844.mkv +龚月-女儿情,http://em.21dtv.com/songs/60032843.mkv +韩江浩-男儿梦,http://em.21dtv.com/songs/60114248.mkv +丁紫薇-女儿绿,http://em.21dtv.com/songs/60072262.mkv +罗时丰-男儿泪,http://em.21dtv.com/songs/60030898.mkv +于洋-男儿酒,http://em.21dtv.com/songs/60132175.mkv +于洋-男儿酒,http://em.21dtv.com/songs/60114978.mkv +林俊杰-女儿家,http://em.21dtv.com/songs/60088089.mkv +徐千惠-女儿会,http://em.21dtv.com/songs/60113513.mkv +梅艳芳-女儿红,http://em.21dtv.com/songs/60032842.mkv +黄妃-女儿红,http://em.21dtv.com/songs/60032841.mkv +熊七梅-男儿歌,http://em.21dtv.com/songs/60076817.mkv +彭丽媛-女儿歌,http://em.21dtv.com/songs/60032839.mkv +周华健-女儿歌(演唱会),http://em.21dtv.com/songs/60032838.mkv +吴奇隆-男儿风,http://em.21dtv.com/songs/60090809.mkv +黄苡涵-女儿村,http://em.21dtv.com/songs/60126491.mkv +刘一祯-女儿船,http://em.21dtv.com/songs/60032837.mkv +S.H.E-nothing ever changes,http://em.21dtv.com/songs/60004174.mkv +金莎-你的嘴,http://em.21dtv.com/songs/60031682.mkv +白智英-你的心,http://em.21dtv.com/songs/60131696.mkv +许志安-你的秀,http://em.21dtv.com/songs/60109623.mkv +李捷-你的信,http://em.21dtv.com/songs/60089338.mkv +钟嘉欣-你懂我,http://em.21dtv.com/songs/60134359.mkv +陈小春+郑伊健+谢天华+林晓峰+钱嘉乐-你的我,http://em.21dtv.com/songs/60114203.mkv +谢天华-你的我,http://em.21dtv.com/songs/60109628.mkv +黎明-你等我,http://em.21dtv.com/songs/60031683.mkv +郑伊健-你的我,http://em.21dtv.com/songs/60031622.mkv +郑伊健+黎姿-你的我(演唱会),http://em.21dtv.com/songs/60031621.mkv +刘惜君-你的手,http://em.21dtv.com/songs/60128824.mkv +胡锰-你的手,http://em.21dtv.com/songs/60096993.mkv +黄子华-您大晒,http://em.21dtv.com/songs/60093531.mkv +Y.I.Y.O-那当然,http://em.21dtv.com/songs/60030687.mkv +何嘉茵-难得你,http://em.21dtv.com/songs/60123626.mkv +黄文星-你的名,http://em.21dtv.com/songs/60126476.mkv +杨乃文-你懂吗,http://em.21dtv.com/songs/60031688.mkv +张信哲-你懂吗(演唱会),http://em.21dtv.com/songs/60031687.mkv +边巴德吉-宁嘟啦,http://em.21dtv.com/songs/60112286.mkv +边巴德吉-宁嘟啦,http://em.21dtv.com/songs/60111425.mkv +齐晨-那栋楼,http://em.21dtv.com/songs/60109068.mkv +VANNESSA-你的冷(无原唱),http://em.21dtv.com/songs/60031576.mkv +玉面天使-女待嫁,http://em.21dtv.com/songs/60108695.mkv +侧田-你的海,http://em.21dtv.com/songs/60076890.mkv +李心洁+谢祖武-你的好,http://em.21dtv.com/songs/60031564.mkv +XEX-你的光,http://em.21dtv.com/songs/60128714.mkv +吴楚楚-你的歌,http://em.21dtv.com/songs/60096994.mkv +林依婷-那道光(演唱会),http://em.21dtv.com/songs/60064589.mkv +陶喆-你的歌,http://em.21dtv.com/songs/60031563.mkv +曹格-你的歌,http://em.21dtv.com/songs/60031562.mkv +胡莎莎-你懂的,http://em.21dtv.com/songs/60118856.mkv +何叶-你懂的(HD),http://em.21dtv.com/songs/10012703.mkv +孟文豪-你懂的,http://em.21dtv.com/songs/60100849.mkv +洛鸣-你懂得,http://em.21dtv.com/songs/60072233.mkv +金莎+后弦-你懂的,http://em.21dtv.com/songs/60069656.mkv +小沈阳+沈春阳-你懂得,http://em.21dtv.com/songs/60069655.mkv +邓婉玲-你的爱,http://em.21dtv.com/songs/60130786.mkv +邓婉玲-你的爱,http://em.21dtv.com/songs/60124540.mkv +王力宏-你的爱,http://em.21dtv.com/songs/60109519.mkv +王力宏-你的爱,http://em.21dtv.com/songs/60108700.mkv +徐仁英-你的爱,http://em.21dtv.com/songs/60083495.mkv +张善为-你的爱,http://em.21dtv.com/songs/60031537.mkv +陈一靓-你存在,http://em.21dtv.com/songs/60110604.mkv +信-你存在,http://em.21dtv.com/songs/60069649.mkv +周燕君+于爽-那场雪,http://em.21dtv.com/songs/60076775.mkv +麦浚龙+林二汶-逆苍生,http://em.21dtv.com/songs/60076996.mkv +秀爱组合-那从前,http://em.21dtv.com/songs/60088370.mkv +佚名-农村曲,http://em.21dtv.com/songs/60032745.mkv +陈钟-你别走,http://em.21dtv.com/songs/60130859.mkv +阿来-你不在,http://em.21dtv.com/songs/60113042.mkv +陶喆+菩菩-你不在(最美和声)(现场版),http://em.21dtv.com/songs/60101564.mkv +张辉-你别走,http://em.21dtv.com/songs/60087843.mkv +李美丽-你别走,http://em.21dtv.com/songs/60076871.mkv +王力宏-你不在,http://em.21dtv.com/songs/60031504.mkv +林峰-你不在(演唱会),http://em.21dtv.com/songs/60031503.mkv +于凤祥-你别走,http://em.21dtv.com/songs/60031444.mkv +佚名-女兵谣,http://em.21dtv.com/songs/60032834.mkv +BACKSTREET BOYS-nobody but you,http://em.21dtv.com/songs/60004148.mkv +刘佳林-南部人(无原唱),http://em.21dtv.com/songs/60095460.mkv +陈雷-南部人(无原唱),http://em.21dtv.com/songs/60031084.mkv +谢容儿-你不配,http://em.21dtv.com/songs/60031482.mkv +荆涛-难不难,http://em.21dtv.com/songs/60129551.mkv +沈腾+王祖蓝+邹市明-难不难,http://em.21dtv.com/songs/60124198.mkv +田亚霍-能不能,http://em.21dtv.com/songs/60118802.mkv +余枫-能不能,http://em.21dtv.com/songs/60105586.mkv +王麟-能不能,http://em.21dtv.com/songs/60094612.mkv +李玟-能不能,http://em.21dtv.com/songs/60080620.mkv +张峰奇-能不能,http://em.21dtv.com/songs/60031338.mkv +佚名-能不能,http://em.21dtv.com/songs/60031337.mkv +铁竹堂+温岚-能不能,http://em.21dtv.com/songs/60031336.mkv +张智霖-冧爆你,http://em.21dtv.com/songs/60030072.mkv +苏永康-你变了,http://em.21dtv.com/songs/60031441.mkv +魏晨-女捕快,http://em.21dtv.com/songs/60061476.mkv +S.H.E-你不会,http://em.21dtv.com/songs/60031469.mkv +张霖-你不该,http://em.21dtv.com/songs/60085511.mkv +讦谯龙-你不乖,http://em.21dtv.com/songs/60031467.mkv +何以奇-你不乖,http://em.21dtv.com/songs/60031466.mkv +舒晓龙+鲁晓宝-你不懂,http://em.21dtv.com/songs/60128333.mkv +杨小曼-你不懂,http://em.21dtv.com/songs/60113680.mkv +雷振光-你不懂,http://em.21dtv.com/songs/60096992.mkv +英基-你不懂,http://em.21dtv.com/songs/60067272.mkv +蔡诗芸-你不懂,http://em.21dtv.com/songs/60067271.mkv +黄阅-你不懂,http://em.21dtv.com/songs/60031455.mkv +路嘉欣-你不懂(无原唱),http://em.21dtv.com/songs/60031454.mkv +4 IN LOVE-你变吧,http://em.21dtv.com/songs/60031440.mkv +严热-你爱我,http://em.21dtv.com/songs/60131135.mkv +伍佰-你爱我,http://em.21dtv.com/songs/60031398.mkv +许志安-你爱我(演唱会),http://em.21dtv.com/songs/60031397.mkv +苏路-你爱他,http://em.21dtv.com/songs/60068524.mkv +凌云-你爱谁,http://em.21dtv.com/songs/60098124.mkv +伍思凯-你爱谁,http://em.21dtv.com/songs/60031392.mkv +佚名-naked and sacred,http://em.21dtv.com/songs/60004044.mkv +SEARCHERS-needles and pins,http://em.21dtv.com/songs/60004061.mkv +ビビアン.スー-nice and naughty,http://em.21dtv.com/songs/60004096.mkv +李佳薇-纳爱来,http://em.21dtv.com/songs/60100120.mkv +RECHARD MARX-now and forever,http://em.21dtv.com/songs/60073676.mkv +AIR SUPPLY-now and forever,http://em.21dtv.com/songs/60004188.mkv +曹震豪+MASTAMIC-n a d (演唱会),http://em.21dtv.com/songs/60073651.mkv +赵之壁-no15(无原唱),http://em.21dtv.com/songs/60004147.mkv +赵之璧-no 15,http://em.21dtv.com/songs/60004145.mkv +李珊珊-美滋滋,http://em.21dtv.com/songs/60068479.mkv +李明洋-梦中醉,http://em.21dtv.com/songs/60029836.mkv +林俊吉+戴梅君-梦中影,http://em.21dtv.com/songs/60095649.mkv +田维英-梦中月,http://em.21dtv.com/songs/60083410.mkv +江蕙-梦中央,http://em.21dtv.com/songs/60029829.mkv +陈明-梦壮乡(演唱会),http://em.21dtv.com/songs/60029838.mkv +张蓉蓉-梦中仙,http://em.21dtv.com/songs/60029826.mkv +黄西田+樱桃姐妹-卖杂细,http://em.21dtv.com/songs/60028490.mkv +陈盈洁-母子喂,http://em.21dtv.com/songs/60096030.mkv +陈盈洁-母仔喂(演唱会),http://em.21dtv.com/songs/60030546.mkv +王建杰-梦中网,http://em.21dtv.com/songs/60029825.mkv +陈百潭-梦再望,http://em.21dtv.com/songs/60029752.mkv +周杰伦-麦烝玮,http://em.21dtv.com/songs/60028448.mkv +宇宙人-名侦探,http://em.21dtv.com/songs/60030084.mkv +廖昌永-梦中人,http://em.21dtv.com/songs/60111052.mkv +汤唯-梦中人,http://em.21dtv.com/songs/60101128.mkv +吕珊-梦中人(演唱会),http://em.21dtv.com/songs/60083409.mkv +周蕙-梦中人,http://em.21dtv.com/songs/60029820.mkv +张伟文-梦中人,http://em.21dtv.com/songs/60029819.mkv +王识贤-梦中人,http://em.21dtv.com/songs/60029818.mkv +伦永亮-梦中人,http://em.21dtv.com/songs/60029817.mkv +龙千玉-梦中人,http://em.21dtv.com/songs/60029816.mkv +古巨基-梦中人,http://em.21dtv.com/songs/60029815.mkv +陈松伶-梦中人,http://em.21dtv.com/songs/60029814.mkv +蔡琴-梦中人,http://em.21dtv.com/songs/60029813.mkv +周蕙-梦中人(演唱会),http://em.21dtv.com/songs/60029812.mkv +王菲-梦中人(演唱会),http://em.21dtv.com/songs/60029811.mkv +佚名-梦中人(无原唱),http://em.21dtv.com/songs/60029810.mkv +杨静-梦中人(无原唱),http://em.21dtv.com/songs/60029809.mkv +王建杰-梦中人(无原唱),http://em.21dtv.com/songs/60029808.mkv +蔡秋凤-梦中人(无原唱),http://em.21dtv.com/songs/60029807.mkv +媚儿菲菲-母子情,http://em.21dtv.com/songs/60122649.mkv +望海高歌-苗寨情,http://em.21dtv.com/songs/60105125.mkv +江蕙-梦中情,http://em.21dtv.com/songs/60097069.mkv +龙千玉-母子情,http://em.21dtv.com/songs/60078439.mkv +周冰倩-梦中情,http://em.21dtv.com/songs/60029802.mkv +佚名-梦中情,http://em.21dtv.com/songs/60029801.mkv +元嘉-没在怕,http://em.21dtv.com/songs/60028917.mkv +江蕙-母子鸟,http://em.21dtv.com/songs/60030547.mkv +水木年华-墓志铭,http://em.21dtv.com/songs/60030641.mkv +蔡幸娟-梦中梦(无原唱),http://em.21dtv.com/songs/60029799.mkv +凯歌-梦中恋,http://em.21dtv.com/songs/60097068.mkv +水影-梅之恋,http://em.21dtv.com/songs/60094973.mkv +远方-梦再来,http://em.21dtv.com/songs/60029751.mkv +牧斯-梦之骏,http://em.21dtv.com/songs/60118757.mkv +蔡妍-美之见,http://em.21dtv.com/songs/60099479.mkv +张智霖-梦中见,http://em.21dtv.com/songs/60097067.mkv +佚名-梦追酒,http://em.21dtv.com/songs/60029839.mkv +佚名-梦中见,http://em.21dtv.com/songs/60029795.mkv +郭小霖-梦中见,http://em.21dtv.com/songs/60029794.mkv +李明洋-梦中河,http://em.21dtv.com/songs/60132546.mkv +SNH48-梦之河,http://em.21dtv.com/songs/60109880.mkv +张鹤-梦之湖,http://em.21dtv.com/songs/60105882.mkv +陈邵康-缅栀花,http://em.21dtv.com/songs/60097099.mkv +吴淑敏-梦中花,http://em.21dtv.com/songs/60085466.mkv +蒋大为-民族魂,http://em.21dtv.com/songs/60030066.mkv +杨钰莹-梦中花,http://em.21dtv.com/songs/60029793.mkv +谢爱萍-梦之歌,http://em.21dtv.com/songs/60111402.mkv +PIA乐团+阮泰瑞-马子狗,http://em.21dtv.com/songs/60076561.mkv +赵自强+文英-魔咒歌(无原唱),http://em.21dtv.com/songs/60030371.mkv +何耀珊-miss糟糕,http://em.21dtv.com/songs/60003850.mkv +杨树林+于明加-民族风,http://em.21dtv.com/songs/60135397.mkv +杨树林+于明加-民族风,http://em.21dtv.com/songs/60133844.mkv +岳浩-梦中蝶,http://em.21dtv.com/songs/60113436.mkv +李翊君-明知道(HD),http://em.21dtv.com/songs/10012796.mkv +李翊君-明知道,http://em.21dtv.com/songs/60097015.mkv +庄伟斌-梦知道,http://em.21dtv.com/songs/60080389.mkv +许美静-明知道,http://em.21dtv.com/songs/60030257.mkv +佚名-梦之洞,http://em.21dtv.com/songs/60029760.mkv +叶振棠-梦之洞(演唱会),http://em.21dtv.com/songs/60029759.mkv +许富凯-棉照被,http://em.21dtv.com/songs/60123167.mkv +许富凯-棉照被,http://em.21dtv.com/songs/60116243.mkv +罗敏庄-莫再悲(演唱会),http://em.21dtv.com/songs/60076752.mkv +黑妹-莫再悲(演唱会),http://em.21dtv.com/songs/60076751.mkv +林子祥-莫再悲,http://em.21dtv.com/songs/60030449.mkv +林子祥-莫再悲(演唱会),http://em.21dtv.com/songs/60030448.mkv +林子祥+叶倩文-莫再悲(演唱会),http://em.21dtv.com/songs/60030447.mkv +费玉清-莫言醉(无原唱),http://em.21dtv.com/songs/60030446.mkv +贺娜-毛眼眼,http://em.21dtv.com/songs/60120956.mkv +钟明秋-明月夜,http://em.21dtv.com/songs/60114159.mkv +王子月-明月夜,http://em.21dtv.com/songs/60100308.mkv +谢宜君-梦月圆,http://em.21dtv.com/songs/60085462.mkv +童丽-明月夜,http://em.21dtv.com/songs/60076734.mkv +蔡丽津-明月心,http://em.21dtv.com/songs/60135706.mkv +SUPER JUNIOR M-命运线,http://em.21dtv.com/songs/60101602.mkv +叶倩文-明月心,http://em.21dtv.com/songs/60030253.mkv +淑熙-没有心,http://em.21dtv.com/songs/60028897.mkv +潘欣妮-每一天,http://em.21dtv.com/songs/60135520.mkv +鞠婧祎-每一天,http://em.21dtv.com/songs/60129780.mkv +商时代-每一天,http://em.21dtv.com/songs/60127871.mkv +SummerGirls-某一天,http://em.21dtv.com/songs/60120245.mkv +汪思妍-某一天,http://em.21dtv.com/songs/60111227.mkv +齐如意-每一天,http://em.21dtv.com/songs/60110737.mkv +CHINABLUE+伍佰-沒有头,http://em.21dtv.com/songs/60090396.mkv +艺人大合唱-每一天,http://em.21dtv.com/songs/60088515.mkv +群星-每一天,http://em.21dtv.com/songs/60029100.mkv +SHINE-每一天,http://em.21dtv.com/songs/60029099.mkv +伍佰-没有头(演唱会),http://em.21dtv.com/songs/60028890.mkv +周杰伦-麦芽糖,http://em.21dtv.com/songs/60028447.mkv +天星董阳+格桑英妮-梦雨石,http://em.21dtv.com/songs/60119396.mkv +胡艾莲-明月思,http://em.21dtv.com/songs/60107145.mkv +朱贝贝-马云说,http://em.21dtv.com/songs/60105963.mkv +李碧华-梦与诗,http://em.21dtv.com/songs/60029745.mkv +蔡淑娟-梦与诗,http://em.21dtv.com/songs/60029744.mkv +龙千玉-梦一生,http://em.21dtv.com/songs/60029737.mkv +PETER PAN-mimpi yang sempurna,http://em.21dtv.com/songs/60003823.mkv +云朵-牧羊人,http://em.21dtv.com/songs/60072213.mkv +张信哲-牧羊人,http://em.21dtv.com/songs/60030634.mkv +萧亚轩-没有人,http://em.21dtv.com/songs/60028861.mkv +麦浚龙-没有人,http://em.21dtv.com/songs/60028860.mkv +曾宝仪-没有人,http://em.21dtv.com/songs/60028859.mkv +萧亚轩-没有人(演唱会),http://em.21dtv.com/songs/60028858.mkv +潘辰-没有人(演唱会),http://em.21dtv.com/songs/60028857.mkv +黄中原+傅薇-没有人(演唱会),http://em.21dtv.com/songs/60028856.mkv +郑玉华-梦游曲,http://em.21dtv.com/songs/60134310.mkv +冈林+朱贝贝-牧野情,http://em.21dtv.com/songs/60099099.mkv +马亚丽-牧羊曲,http://em.21dtv.com/songs/60088978.mkv +新版本-牧羊曲,http://em.21dtv.com/songs/60030633.mkv +老版本-牧羊曲,http://em.21dtv.com/songs/60030632.mkv +关牧村-牧羊曲,http://em.21dtv.com/songs/60030631.mkv +龚月-牧羊曲,http://em.21dtv.com/songs/60030630.mkv +董文华-牧羊曲,http://em.21dtv.com/songs/60030629.mkv +郑绪岚-牧羊曲(演唱会),http://em.21dtv.com/songs/60030628.mkv +张学友+池珍熙-命运曲,http://em.21dtv.com/songs/60030303.mkv +张学友-命运曲(演唱会),http://em.21dtv.com/songs/60030302.mkv +陈雷-命运棋,http://em.21dtv.com/songs/60030298.mkv +王菲-蜜月期,http://em.21dtv.com/songs/60029989.mkv +周笔畅-My Own Life,http://em.21dtv.com/songs/60127858.mkv +蔡枫华-没有你(演唱会),http://em.21dtv.com/songs/60061407.mkv +周蕙-没有你,http://em.21dtv.com/songs/60028809.mkv +张智成-没有你,http://em.21dtv.com/songs/60028808.mkv +罗志祥-没有你,http://em.21dtv.com/songs/60028807.mkv +黑豹乐队-没有你,http://em.21dtv.com/songs/60028806.mkv +何耀珊-没有你,http://em.21dtv.com/songs/60028805.mkv +陈奕迅-没有你(无原唱),http://em.21dtv.com/songs/60028804.mkv +MICHAEL BOLTON-missing you now,http://em.21dtv.com/songs/60003845.mkv +闫薇薇-梅雨梦,http://em.21dtv.com/songs/60114169.mkv +张艾嘉-忙与盲,http://em.21dtv.com/songs/60028605.mkv +黄立行-忙与盲,http://em.21dtv.com/songs/60028604.mkv +佚名-miss you much,http://em.21dtv.com/songs/60003840.mkv +张国荣-miss you much(演唱会),http://em.21dtv.com/songs/60003839.mkv +梁一贞-没有了,http://em.21dtv.com/songs/60081348.mkv +荒山亮-免疫力,http://em.21dtv.com/songs/60030014.mkv +张瑶-梦远了,http://em.21dtv.com/songs/60029749.mkv +朱逢博-玛依拉,http://em.21dtv.com/songs/60028402.mkv +殷秀梅-玛依拉,http://em.21dtv.com/songs/60028401.mkv +薛炳进-没有空,http://em.21dtv.com/songs/60126155.mkv +云开-梦云开,http://em.21dtv.com/songs/60090513.mkv +张涵韵-梦游记,http://em.21dtv.com/songs/60091134.mkv +M.I.C.男团-漫游记(演唱会),http://em.21dtv.com/songs/60028572.mkv +糖妹-没有痕,http://em.21dtv.com/songs/60123063.mkv +张瑶-明月光,http://em.21dtv.com/songs/60030244.mkv +星星-买盐歌,http://em.21dtv.com/songs/60028425.mkv +TRADEMARK-miss you finally,http://em.21dtv.com/songs/60003837.mkv +谭咏麟-魔与道(演唱会),http://em.21dtv.com/songs/60030369.mkv +我的蜜瓜分你一半-梦一场,http://em.21dtv.com/songs/60128025.mkv +梦然-梦已残,http://em.21dtv.com/songs/60131577.mkv +王爵-门与窗,http://em.21dtv.com/songs/60127203.mkv +原子霏-芈月传,http://em.21dtv.com/songs/60125253.mkv +孙英男-门与窗,http://em.21dtv.com/songs/60123829.mkv +萧敬腾-梦一场,http://em.21dtv.com/songs/60122068.mkv +孙露-梦一场,http://em.21dtv.com/songs/60115829.mkv +原子霏-芈月传,http://em.21dtv.com/songs/60110907.mkv +张碧晨-梦一场,http://em.21dtv.com/songs/60105054.mkv +童可可-每一次,http://em.21dtv.com/songs/60100364.mkv +李牧遥-牧遥池,http://em.21dtv.com/songs/60088025.mkv +李健-梦一场,http://em.21dtv.com/songs/60087981.mkv +萧敬腾-梦一场,http://em.21dtv.com/songs/60085461.mkv +新宝岛康乐队-美瑶村,http://em.21dtv.com/songs/60072193.mkv +那英-梦一场,http://em.21dtv.com/songs/60029735.mkv +黄思婷+傅振辉-梦一场,http://em.21dtv.com/songs/60029734.mkv +佚名-门与窗,http://em.21dtv.com/songs/60029415.mkv +佚名-每一次,http://em.21dtv.com/songs/60029072.mkv +解晓东-每一次,http://em.21dtv.com/songs/60029071.mkv +关力瑒-每一步,http://em.21dtv.com/songs/60133389.mkv +詹雅雯-命运簿,http://em.21dtv.com/songs/60030289.mkv +徐小凤-每一步(演唱会),http://em.21dtv.com/songs/60029070.mkv +NINA SKY-move ya body,http://em.21dtv.com/songs/60003912.mkv +张国荣-没有爱(演唱会),http://em.21dtv.com/songs/60028767.mkv +赵昊枫-没选择,http://em.21dtv.com/songs/60118938.mkv +郭婷筠-唛相找,http://em.21dtv.com/songs/60107277.mkv +徐恩乾-梦仙游,http://em.21dtv.com/songs/60115180.mkv +林垦+风之琳-梅雪吟,http://em.21dtv.com/songs/60102389.mkv +黄秋生-莫须有,http://em.21dtv.com/songs/60030445.mkv +周汤豪-骂醒我,http://em.21dtv.com/songs/60028416.mkv +姚若龙-骂醒我,http://em.21dtv.com/songs/60028415.mkv +林玛黛-马戏团,http://em.21dtv.com/songs/60121822.mkv +何龙雨-梦相同,http://em.21dtv.com/songs/60076680.mkv +By2-梦先生,http://em.21dtv.com/songs/60134653.mkv +一绫+邱贤桂-梦相思,http://em.21dtv.com/songs/60130026.mkv +师红飞-梦相思,http://em.21dtv.com/songs/60125466.mkv +鸿飞-梦相思,http://em.21dtv.com/songs/60110723.mkv +鸿飞-梦相思,http://em.21dtv.com/songs/60103724.mkv +佚名-卖相思,http://em.21dtv.com/songs/60028487.mkv +谢采妘-卖相思,http://em.21dtv.com/songs/60028486.mkv +黄初用-明信片,http://em.21dtv.com/songs/60109773.mkv +王欣如-明信片,http://em.21dtv.com/songs/60072209.mkv +糯米团-明星梦,http://em.21dtv.com/songs/60030241.mkv +孙盛希+Matzka-迷些路,http://em.21dtv.com/songs/60131328.mkv +肖雪-梦醒了,http://em.21dtv.com/songs/60127296.mkv +丁之文-梦醒了,http://em.21dtv.com/songs/60099712.mkv +袁惟仁-梦醒了,http://em.21dtv.com/songs/60029714.mkv +王菲-梦醒了,http://em.21dtv.com/songs/60029713.mkv +那英-梦醒了,http://em.21dtv.com/songs/60029712.mkv +曹秀琴-媚香楼,http://em.21dtv.com/songs/60029399.mkv +江蕙-免洗筷,http://em.21dtv.com/songs/60030013.mkv +田亚霍-梦想家,http://em.21dtv.com/songs/60131689.mkv +彭博-梦想家,http://em.21dtv.com/songs/60131423.mkv +胡莎莎-迷心局,http://em.21dtv.com/songs/60126087.mkv +金志文-梦想家,http://em.21dtv.com/songs/60117294.mkv +张曼莉-梦想家,http://em.21dtv.com/songs/60111873.mkv +徐峰柏-冒险家,http://em.21dtv.com/songs/60100049.mkv +金志文-梦想家,http://em.21dtv.com/songs/60097071.mkv +郑国锋-梦想家,http://em.21dtv.com/songs/60083398.mkv +果味VC-冒险家,http://em.21dtv.com/songs/60062414.mkv +王美蓉-莫想佢,http://em.21dtv.com/songs/60030444.mkv +零点乐队-冒险家(演唱会),http://em.21dtv.com/songs/60028697.mkv +棒棒堂-梦想号,http://em.21dtv.com/songs/60029682.mkv +张焱+王晶+李琳-梦西湖,http://em.21dtv.com/songs/60029658.mkv +郑嘉颖-梦想国,http://em.21dtv.com/songs/60029681.mkv +柏文-梦想飞,http://em.21dtv.com/songs/60029680.mkv +SNH48-梦想岛,http://em.21dtv.com/songs/60127676.mkv +SNH48-梦想岛,http://em.21dtv.com/songs/60122420.mkv +SNH48-梦想岛,http://em.21dtv.com/songs/60121308.mkv +许志安-没想到,http://em.21dtv.com/songs/60028764.mkv +黄嘉千-没想到,http://em.21dtv.com/songs/60028763.mkv +伊雪-慢性病,http://em.21dtv.com/songs/60066141.mkv +蔡丽津-尪某心,http://em.21dtv.com/songs/60124436.mkv +陈瑞-梦未央,http://em.21dtv.com/songs/60085459.mkv +LOICK ESSIEN-me without you,http://em.21dtv.com/songs/60065646.mkv +高杰-my 微信,http://em.21dtv.com/songs/60067954.mkv +儿歌-莫忘我,http://em.21dtv.com/songs/60092304.mkv +安雯-卖娃娃,http://em.21dtv.com/songs/60090946.mkv +关心妍-母忘我,http://em.21dtv.com/songs/60030544.mkv +BEYOND-门外看,http://em.21dtv.com/songs/60029414.mkv +佚名-梦无尽,http://em.21dtv.com/songs/60029657.mkv +黎明-梦无尽,http://em.21dtv.com/songs/60029656.mkv +佚名-猫王到,http://em.21dtv.com/songs/60028646.mkv +B.A.D-马文才,http://em.21dtv.com/songs/60028385.mkv +THE GAME+LIL WAYNE-martians vs goblins,http://em.21dtv.com/songs/60065644.mkv +颗粒-MUM,http://em.21dtv.com/songs/60123371.mkv +陈蕊蕊-make up lady,http://em.21dtv.com/songs/60065643.mkv +美声四季-卖汤圆,http://em.21dtv.com/songs/60097012.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-卖汤圆,http://em.21dtv.com/songs/60076566.mkv +罗宁娜-牧童谣,http://em.21dtv.com/songs/60030622.mkv +卓依婷-卖汤圆,http://em.21dtv.com/songs/60028483.mkv +张伟文-卖汤圆,http://em.21dtv.com/songs/60028482.mkv +方静音-卖汤圆,http://em.21dtv.com/songs/60028481.mkv +吴静娴-卖汤圆(演唱会),http://em.21dtv.com/songs/60028480.mkv +李建科-满天星,http://em.21dtv.com/songs/60120628.mkv +马蹄帮乐团-马蹄香,http://em.21dtv.com/songs/60114902.mkv +邓养天-满天星,http://em.21dtv.com/songs/60097108.mkv +黄思婷-满天星,http://em.21dtv.com/songs/60079925.mkv +佚名-满天星,http://em.21dtv.com/songs/60028538.mkv +王雪晶-卖汤丸,http://em.21dtv.com/songs/60088341.mkv +童安格-妙听闻,http://em.21dtv.com/songs/60030051.mkv +佚名-more than words,http://em.21dtv.com/songs/60003896.mkv +EXTREME-more than words,http://em.21dtv.com/songs/60003895.mkv +ENERGY-more than words,http://em.21dtv.com/songs/60003894.mkv +WESTLIFE-more than words(演唱会),http://em.21dtv.com/songs/60003893.mkv +李明洋-梦天堂,http://em.21dtv.com/songs/60081061.mkv +ONE DIRECTION-more than this,http://em.21dtv.com/songs/60073617.mkv +誓言-梦天堂,http://em.21dtv.com/songs/60070929.mkv +ROXY MUSIC-more than this,http://em.21dtv.com/songs/60003892.mkv +BACKSTREET BOYS-more than that,http://em.21dtv.com/songs/60003891.mkv +吕明银-麦拖沙,http://em.21dtv.com/songs/60127818.mkv +SHAYNE WARD-melt the snow,http://em.21dtv.com/songs/60073593.mkv +王杰-梦土上,http://em.21dtv.com/songs/60029650.mkv +陈冠霖-木头人,http://em.21dtv.com/songs/60061435.mkv +甄妮-木头人,http://em.21dtv.com/songs/60030579.mkv +阿穆隆-木头人,http://em.21dtv.com/songs/60030578.mkv +摩天人-摩天人,http://em.21dtv.com/songs/60030331.mkv +望海高歌-马头琴,http://em.21dtv.com/songs/60118649.mkv +乌兰托娅army-马头琴,http://em.21dtv.com/songs/60109941.mkv +汤子星-马头琴(演唱会),http://em.21dtv.com/songs/60069586.mkv +草原兄妹-马头琴,http://em.21dtv.com/songs/60061393.mkv +伊雪-明天起,http://em.21dtv.com/songs/60030204.mkv +LADY GAGA-marry the night,http://em.21dtv.com/songs/60063678.mkv +B.DYLAN-mr tambourine man(无原唱),http://em.21dtv.com/songs/60003921.mkv +THREE DOG NIGHT-mama told me,http://em.21dtv.com/songs/60003725.mkv +龙千玉-曼陀罗,http://em.21dtv.com/songs/60136053.mkv +龙千玉-曼陀罗,http://em.21dtv.com/songs/60134518.mkv +罗百吉-摩天轮,http://em.21dtv.com/songs/60030329.mkv +李易峰-摩天轮,http://em.21dtv.com/songs/60030328.mkv +动静乐团-摩天轮,http://em.21dtv.com/songs/60030327.mkv +HEBE-摩天轮,http://em.21dtv.com/songs/60030326.mkv +罗百吉-摩天轮(舞曲版)(无原唱),http://em.21dtv.com/songs/60030325.mkv +陈松伶-摩天轮(无原唱),http://em.21dtv.com/songs/60030324.mkv +张明敏-梦驼铃,http://em.21dtv.com/songs/60029655.mkv +唐彪-梦驼铃,http://em.21dtv.com/songs/60029654.mkv +罗时丰-梦驼铃,http://em.21dtv.com/songs/60029653.mkv +费玉清-梦驼铃,http://em.21dtv.com/songs/60029652.mkv +费玉清-梦驼铃(演唱会),http://em.21dtv.com/songs/60029651.mkv +SWEET BOX-more than love,http://em.21dtv.com/songs/60003890.mkv +孙浩雨-命太苦,http://em.21dtv.com/songs/60110981.mkv +熊汝霖-mack the knife,http://em.21dtv.com/songs/60082253.mkv +佚名-mack the knife,http://em.21dtv.com/songs/60003688.mkv +王心凌-明天见,http://em.21dtv.com/songs/60030194.mkv +佚名-码头酒,http://em.21dtv.com/songs/60028406.mkv +陈雷-码头酒,http://em.21dtv.com/songs/60028405.mkv +正歌-满天红,http://em.21dtv.com/songs/60108651.mkv +群星-满堂红,http://em.21dtv.com/songs/60076568.mkv +尹相杰+于文华-满堂红,http://em.21dtv.com/songs/60028532.mkv +CELINE DION-miles to go,http://em.21dtv.com/songs/60067945.mkv +卓依婷-卖糖歌,http://em.21dtv.com/songs/60028485.mkv +吴静娴-卖糖歌,http://em.21dtv.com/songs/60028484.mkv +陈雅森 李纯-梦塔防,http://em.21dtv.com/songs/60117358.mkv +卢巧音-满天飞,http://em.21dtv.com/songs/60028536.mkv +胡蓓蔚-满天飞,http://em.21dtv.com/songs/60028535.mkv +谭咏麟-满天飞(演唱会),http://em.21dtv.com/songs/60028534.mkv +谢霆锋-模特儿,http://em.21dtv.com/songs/60030318.mkv +陈威全-模特儿,http://em.21dtv.com/songs/60030317.mkv +叶玉卿-蜜糖儿(演唱会),http://em.21dtv.com/songs/60029986.mkv +夏国星-摩托车(无原唱),http://em.21dtv.com/songs/60030332.mkv +唐萱-满堂彩,http://em.21dtv.com/songs/60028531.mkv +梅艳芳-莫逃避,http://em.21dtv.com/songs/60092941.mkv +NELLY-move that body,http://em.21dtv.com/songs/60073620.mkv +BIRDMAN+LIL WAYNE+DRAKE-money to blow,http://em.21dtv.com/songs/60073609.mkv +唐柏宁-明天爱,http://em.21dtv.com/songs/60125326.mkv +卓依婷-名失志,http://em.21dtv.com/songs/60087453.mkv +卓依婷-免失志,http://em.21dtv.com/songs/60030012.mkv +佚名-免失志,http://em.21dtv.com/songs/60030011.mkv +陈小云-免失志,http://em.21dtv.com/songs/60030010.mkv +望海高歌-梅殇吟,http://em.21dtv.com/songs/60133776.mkv +邝倪升+云菲+叶伟锋+李津-马上有,http://em.21dtv.com/songs/60096509.mkv +江南旭-美食游,http://em.21dtv.com/songs/60064534.mkv +周杰伦-迷失香,http://em.21dtv.com/songs/60089743.mkv +翁元佑-谋杀我,http://em.21dtv.com/songs/60126070.mkv +萧闳仁-抹煞我,http://em.21dtv.com/songs/60030378.mkv +罗志祥-魔术show,http://em.21dtv.com/songs/60030363.mkv +佚名-my strongest suit,http://em.21dtv.com/songs/60004027.mkv +李映熹-陌生人,http://em.21dtv.com/songs/60133801.mkv +伍泽-陌生人,http://em.21dtv.com/songs/60109961.mkv +疯子-陌生人,http://em.21dtv.com/songs/60093593.mkv +杨千嬅-陌生人,http://em.21dtv.com/songs/60030412.mkv +蔡健雅-陌生人,http://em.21dtv.com/songs/60030411.mkv +SOLER-陌生人(演唱会),http://em.21dtv.com/songs/60030410.mkv +罗逻圣-梦思亲,http://em.21dtv.com/songs/60107115.mkv +罗桦-莫生气(演唱会),http://em.21dtv.com/songs/60064577.mkv +闵芳-莫生气,http://em.21dtv.com/songs/60030430.mkv +达明一派-末世情(演唱会),http://em.21dtv.com/songs/60030389.mkv +佚名-觅受气,http://em.21dtv.com/songs/60029953.mkv +佚名-卖身契,http://em.21dtv.com/songs/60028478.mkv +许冠杰-卖身契,http://em.21dtv.com/songs/60028477.mkv +佚名-马赛曲,http://em.21dtv.com/songs/60028381.mkv +唐俪+吴俊宏-袂速配,http://em.21dtv.com/songs/60029397.mkv +许千千-秒杀你,http://em.21dtv.com/songs/60076713.mkv +BEASTIE BOYS-make some noise,http://em.21dtv.com/songs/60073578.mkv +黄小琥-没什么,http://em.21dtv.com/songs/60117412.mkv +袁咏仪-没什么(无原唱),http://em.21dtv.com/songs/60028748.mkv +徐晓欧-没商量,http://em.21dtv.com/songs/60130349.mkv +韩东-没商量,http://em.21dtv.com/songs/60129782.mkv +李念-没事了,http://em.21dtv.com/songs/60124067.mkv +高进-马上来,http://em.21dtv.com/songs/60096908.mkv +付笛声+任静-苗山恋,http://em.21dtv.com/songs/60087269.mkv +费玉清-美斯乐,http://em.21dtv.com/songs/60029349.mkv +蔡依林-马赛克,http://em.21dtv.com/songs/60069585.mkv +容祖儿-马赛克(演唱会),http://em.21dtv.com/songs/60064503.mkv +周渝民-马赛克,http://em.21dtv.com/songs/60028380.mkv +莫文蔚+伍佰-没时间,http://em.21dtv.com/songs/60097002.mkv +TWINS-咩世界,http://em.21dtv.com/songs/60030061.mkv +翁立友-梦世间,http://em.21dtv.com/songs/60029638.mkv +孙燕姿-没时间,http://em.21dtv.com/songs/60028756.mkv +牛奶咖啡-没时间,http://em.21dtv.com/songs/60028755.mkv +莫文蔚-没时间,http://em.21dtv.com/songs/60028754.mkv +雨湘-陌上花,http://em.21dtv.com/songs/60131970.mkv +蔡小虎-梦三更,http://em.21dtv.com/songs/60076677.mkv +郭富城-名仕阁,http://em.21dtv.com/songs/60030083.mkv +佚名-my sentimental friend,http://em.21dtv.com/songs/60004023.mkv +刘虹翎-梦时代,http://em.21dtv.com/songs/60029637.mkv +田佳璐-梦生长,http://em.21dtv.com/songs/60134020.mkv +中岛美嘉-my sugar cat,http://em.21dtv.com/songs/60004028.mkv +阿吉仔-免伤悲,http://em.21dtv.com/songs/60030009.mkv +周璇-卖烧饼,http://em.21dtv.com/songs/60028476.mkv +甲子慧-麦啰嗦,http://em.21dtv.com/songs/60124307.mkv +罗时丰+薛佩洁-媒人嘴,http://em.21dtv.com/songs/60076601.mkv +宋熙铭-美人痣,http://em.21dtv.com/songs/60069605.mkv +侯宗辰-美人痣,http://em.21dtv.com/songs/60029345.mkv +邓丽君-卖肉粽(演唱会),http://em.21dtv.com/songs/60028475.mkv +邓丽君-卖肉棕,http://em.21dtv.com/songs/60028474.mkv +周杰伦-美人鱼,http://em.21dtv.com/songs/60135051.mkv +周杰伦-美人鱼,http://em.21dtv.com/songs/60133488.mkv +王妮娜-美人吟,http://em.21dtv.com/songs/60121903.mkv +唐古-美人鱼,http://em.21dtv.com/songs/60121517.mkv +萌萌哒天团+芊芊-美人鱼,http://em.21dtv.com/songs/60119927.mkv +芊芊-美人鱼,http://em.21dtv.com/songs/60119907.mkv +石小琳-美人鱼,http://em.21dtv.com/songs/60119847.mkv +周杰伦-美人鱼,http://em.21dtv.com/songs/60108397.mkv +周杰伦-美人鱼,http://em.21dtv.com/songs/60106708.mkv +苗苗-美人吟,http://em.21dtv.com/songs/60096474.mkv +李佳颖-梦如烟,http://em.21dtv.com/songs/60085458.mkv +黄渤-美人鱼,http://em.21dtv.com/songs/60076635.mkv +丁晓红-美人鱼(演唱会),http://em.21dtv.com/songs/60062328.mkv +董贞-美人浴,http://em.21dtv.com/songs/60029344.mkv +卓依婷-美人鱼,http://em.21dtv.com/songs/60029342.mkv +徐若瑄-美人鱼,http://em.21dtv.com/songs/60029341.mkv +林俊杰-美人鱼,http://em.21dtv.com/songs/60029340.mkv +艾雨-美人鱼,http://em.21dtv.com/songs/60029339.mkv +李玲玉-美人吟,http://em.21dtv.com/songs/60029338.mkv +鲁士郎-美人笑,http://em.21dtv.com/songs/60099628.mkv +张俪-美人笑,http://em.21dtv.com/songs/60099222.mkv +薛凯琪-慕容雪,http://em.21dtv.com/songs/60030645.mkv +ENERGY-末日秀,http://em.21dtv.com/songs/60030384.mkv +飞轮海-明日香,http://em.21dtv.com/songs/60030148.mkv +云菲菲-美人窝,http://em.21dtv.com/songs/60097039.mkv +杨曼莉-美人痛,http://em.21dtv.com/songs/60115237.mkv +刘德华-美人痛,http://em.21dtv.com/songs/60029336.mkv +刘嘉亮-梦燃烧,http://em.21dtv.com/songs/60064550.mkv +徐彬彬-美人桥,http://em.21dtv.com/songs/60135282.mkv +辛龙-明日晴,http://em.21dtv.com/songs/60080309.mkv +SWIN S-明日路,http://em.21dtv.com/songs/60132135.mkv +SWIN S-明日路,http://em.21dtv.com/songs/60131111.mkv +杨俊伟-美人泪,http://em.21dtv.com/songs/60076634.mkv +李晓杰+陈星+程巍+牛朝阳-美人酒,http://em.21dtv.com/songs/60122866.mkv +梁君诺-美人计,http://em.21dtv.com/songs/60106036.mkv +伍思凯-茫然记,http://em.21dtv.com/songs/60087293.mkv +陈思涵-美人肩,http://em.21dtv.com/songs/60076633.mkv +陈淑萍+林俊吉-美人计,http://em.21dtv.com/songs/60067226.mkv +蓝喆+筱筱-美人蕉,http://em.21dtv.com/songs/60029335.mkv +张萌萌-美人计,http://em.21dtv.com/songs/60029333.mkv +蔡依林-美人计,http://em.21dtv.com/songs/60029332.mkv +泽旺多吉-美人谷,http://em.21dtv.com/songs/60098578.mkv +拥江帆-美人谷,http://em.21dtv.com/songs/60098402.mkv +王铁-美人归,http://em.21dtv.com/songs/60076632.mkv +孙楠-迷人岛,http://em.21dtv.com/songs/60067235.mkv +钱万千-梦秋竹,http://em.21dtv.com/songs/60106354.mkv +陈伟文-梦情缘,http://em.21dtv.com/songs/60100567.mkv +刘忻-母亲谣,http://em.21dtv.com/songs/60099806.mkv +何宝生-梦蔷薇,http://em.21dtv.com/songs/60029629.mkv +咪依鲁江-梦情人,http://em.21dtv.com/songs/60064549.mkv +车晓菲-美起来,http://em.21dtv.com/songs/60123215.mkv +范三妹-梦情郎,http://em.21dtv.com/songs/60110489.mkv +佚名-梦去了,http://em.21dtv.com/songs/60029632.mkv +林玉英-梦情郎(无原唱),http://em.21dtv.com/songs/60029631.mkv +黄耀明+罗大佑-母亲ii,http://em.21dtv.com/songs/60030524.mkv +阿吉仔-母亲花,http://em.21dtv.com/songs/60030533.mkv +杨洪基-母亲湖,http://em.21dtv.com/songs/60030531.mkv +阎维文-母亲河,http://em.21dtv.com/songs/60030528.mkv +彭丽媛-母亲河,http://em.21dtv.com/songs/60030527.mkv +梁文音-漫情歌,http://em.21dtv.com/songs/60107837.mkv +江蕙-梦前尘,http://em.21dtv.com/songs/60029628.mkv +阿吉仔+吴仪君-尪某情,http://em.21dtv.com/songs/60135877.mkv +Dears-慢跑鞋,http://em.21dtv.com/songs/60103763.mkv +李心洁-慢跑鞋,http://em.21dtv.com/songs/60028595.mkv +游鸿明-孟婆汤,http://em.21dtv.com/songs/60029459.mkv +王洛宾-卖苹果,http://em.21dtv.com/songs/60091715.mkv +佚名-memories of you,http://em.21dtv.com/songs/60003788.mkv +春天-木偶戏,http://em.21dtv.com/songs/60096324.mkv +王菀之-made of water,http://em.21dtv.com/songs/60070370.mkv +T-PAIN AND ROSCOE DASH FEATURI-my own step,http://em.21dtv.com/songs/60073645.mkv +FABO-my own step,http://em.21dtv.com/songs/60060873.mkv +景志刚-木偶人,http://em.21dtv.com/songs/60104175.mkv +RED HOT CHILI PEPPERS-monarchy of roses,http://em.21dtv.com/songs/60065649.mkv +TRISTAN PRETTYMAN-my oh my,http://em.21dtv.com/songs/60073644.mkv +周华健-my oh my,http://em.21dtv.com/songs/60004019.mkv +AQUA-my oh my,http://em.21dtv.com/songs/60004018.mkv +PERFUME-magic of love,http://em.21dtv.com/songs/60082254.mkv +A LIN-Magic Of Love,http://em.21dtv.com/songs/60080061.mkv +泽郎多杰-嘛呢云,http://em.21dtv.com/songs/60091612.mkv +郑锦昌-梦难圆(演唱会),http://em.21dtv.com/songs/60076672.mkv +林俊杰-木乃伊,http://em.21dtv.com/songs/60030571.mkv +方瑞娥-梦难圆,http://em.21dtv.com/songs/60029623.mkv +李茂山-梦难忘,http://em.21dtv.com/songs/60029622.mkv +佚名-mi noche triste,http://em.21dtv.com/songs/60003810.mkv +乌兰图雅-莫尼山,http://em.21dtv.com/songs/60128742.mkv +阿木古楞-莫尼山,http://em.21dtv.com/songs/60120060.mkv +韩红-莫尼山,http://em.21dtv.com/songs/60109019.mkv +泽郎多杰-玛尼石,http://em.21dtv.com/songs/60095317.mkv +楼宏章-美女蛇,http://em.21dtv.com/songs/60068477.mkv +额尔古纳乐队-莫尼山,http://em.21dtv.com/songs/60030426.mkv +旺福乐团-迷你裙,http://em.21dtv.com/songs/60029910.mkv +殷秀梅-梅娘曲,http://em.21dtv.com/songs/60029003.mkv +佚名-梅娘曲,http://em.21dtv.com/songs/60029002.mkv +韩延文-梅娘曲,http://em.21dtv.com/songs/60029001.mkv +佚名-迷你猫,http://em.21dtv.com/songs/60029909.mkv +凤飞飞-梦难留,http://em.21dtv.com/songs/60087377.mkv +林翠萍-梦难留,http://em.21dtv.com/songs/60029621.mkv +韩宝仪-梦难留,http://em.21dtv.com/songs/60029620.mkv +郭富城-梦难留,http://em.21dtv.com/songs/60029619.mkv +马嘉均+邓尚义(占士)-妈呢空,http://em.21dtv.com/songs/60103713.mkv +田震-蒙妮卡,http://em.21dtv.com/songs/60091779.mkv +张靓颖-木脑壳(演唱会),http://em.21dtv.com/songs/60030572.mkv +魏允熙-马泥轰,http://em.21dtv.com/songs/60133114.mkv +张启辉-梦女孩,http://em.21dtv.com/songs/60029627.mkv +亚东-没奈何,http://em.21dtv.com/songs/60028734.mkv +童唱-make new friends,http://em.21dtv.com/songs/60003718.mkv +王琦伦-美浓调(无原唱),http://em.21dtv.com/songs/60029324.mkv +佚名-mambo no 5,http://em.21dtv.com/songs/60003731.mkv +许魏洲-慢慢走,http://em.21dtv.com/songs/60119972.mkv +小峰峰-卖萌症,http://em.21dtv.com/songs/60101329.mkv +萧煌奇-慢慢走,http://em.21dtv.com/songs/60072182.mkv +孙嫣然-慢慢走,http://em.21dtv.com/songs/60028593.mkv +刘亦菲-毛毛雨,http://em.21dtv.com/songs/60099791.mkv +佚名-毛毛雨,http://em.21dtv.com/songs/60028656.mkv +陈盈洁-毛毛雨,http://em.21dtv.com/songs/60028655.mkv +黎明辉-毛毛雨(演唱会)(无原唱),http://em.21dtv.com/songs/60028654.mkv +大嘴巴-木目心,http://em.21dtv.com/songs/60120430.mkv +方怡萍-梦袂醒,http://em.21dtv.com/songs/60083411.mkv +佚名-梦袂醒(无原唱),http://em.21dtv.com/songs/60029615.mkv +酒井法子-梦冒险,http://em.21dtv.com/songs/60029612.mkv +朴树-妈妈我,http://em.21dtv.com/songs/60091295.mkv +佚名-mind made up,http://em.21dtv.com/songs/60003824.mkv +TY-棉毛衫,http://em.21dtv.com/songs/60133306.mkv +李沛玮-慢慢说,http://em.21dtv.com/songs/60104208.mkv +陆翊-默默数,http://em.21dtv.com/songs/60100561.mkv +方大同-妈妈说,http://em.21dtv.com/songs/60072174.mkv +黄品冠-门没锁,http://em.21dtv.com/songs/60029412.mkv +周渝民-妈妈说,http://em.21dtv.com/songs/60028292.mkv +天翔-牧马人,http://em.21dtv.com/songs/60125356.mkv +杨坤+人声兄弟-牧马人,http://em.21dtv.com/songs/60111180.mkv +余枫-牧马人,http://em.21dtv.com/songs/60104789.mkv +朱永飞-牧马人,http://em.21dtv.com/songs/60081280.mkv +杨坤+丁丁+平安+金志文+关喆-牧马人,http://em.21dtv.com/songs/60062243.mkv +杨坤-牧马人,http://em.21dtv.com/songs/60030610.mkv +王城-牧马人,http://em.21dtv.com/songs/60030609.mkv +佚名-梦美人,http://em.21dtv.com/songs/60029614.mkv +谭咏麟-梦美人,http://em.21dtv.com/songs/60029613.mkv +陈兴瑜-漫漫情,http://em.21dtv.com/songs/60098851.mkv +陈盈洁-渺茫情,http://em.21dtv.com/songs/60030048.mkv +黄晓明-moopa暮趴,http://em.21dtv.com/songs/60003883.mkv +陈妍希-买买买,http://em.21dtv.com/songs/60129732.mkv +SDN48-min min min,http://em.21dtv.com/songs/60062147.mkv +张信哲-某某某,http://em.21dtv.com/songs/60030492.mkv +徐怀钰-妙妙妙,http://em.21dtv.com/songs/60030050.mkv +李韦-忙茫盲,http://em.21dtv.com/songs/60028603.mkv +王澜霏-慢慢慢,http://em.21dtv.com/songs/60028591.mkv +BY2-买买买,http://em.21dtv.com/songs/60028422.mkv +刘锡明-moshi moshi moshi,http://em.21dtv.com/songs/60003907.mkv +萧亚轩-more more more,http://em.21dtv.com/songs/60003885.mkv +ABBA-money money money,http://em.21dtv.com/songs/60003866.mkv +杨棋涵-man man man,http://em.21dtv.com/songs/60003739.mkv +琳琳-慢慢来,http://em.21dtv.com/songs/60097111.mkv +张德兰-茫茫路(演唱会),http://em.21dtv.com/songs/60028622.mkv +赵学而-慢慢来,http://em.21dtv.com/songs/60028590.mkv +孙燕姿-慢慢来,http://em.21dtv.com/songs/60028589.mkv +陈佳吉吉-明明就,http://em.21dtv.com/songs/60076718.mkv +陈佳喆-明明就,http://em.21dtv.com/songs/60072207.mkv +周杰伦-明明就,http://em.21dtv.com/songs/60070946.mkv +小凤凤-妈妈讲,http://em.21dtv.com/songs/60027158.mkv +红蔷薇-木棉花,http://em.21dtv.com/songs/60103514.mkv +方伊琪-妈妈好(演唱会),http://em.21dtv.com/songs/60076542.mkv +佚名-面面红,http://em.21dtv.com/songs/60030036.mkv +林宝-秘密海,http://em.21dtv.com/songs/60029965.mkv +童唱-妈妈好,http://em.21dtv.com/songs/60028256.mkv +张德兰-妈妈好(演唱会),http://em.21dtv.com/songs/60028255.mkv +岩罕建-曼眉公,http://em.21dtv.com/songs/60124822.mkv +张帝-毛毛歌(演唱会),http://em.21dtv.com/songs/60028653.mkv +胡松华-卖木瓜,http://em.21dtv.com/songs/60028473.mkv +徐彬彬-默默地,http://em.21dtv.com/songs/60130348.mkv +门丽-美美的,http://em.21dtv.com/songs/60129701.mkv +吴明遥-萌萌哒,http://em.21dtv.com/songs/60125288.mkv +Wable-慢慢地,http://em.21dtv.com/songs/60122443.mkv +姜涛+唐子雅+魏洪桃+李瑞+郝志浩-木木哒,http://em.21dtv.com/songs/60121558.mkv +莫露露-么么哒,http://em.21dtv.com/songs/60119926.mkv +陈咏+陈娇-么么哒,http://em.21dtv.com/songs/60118146.mkv +门丽-美美哒,http://em.21dtv.com/songs/60115465.mkv +ROO-闷闷的,http://em.21dtv.com/songs/60111644.mkv +芊芊+萌萌哒天团-萌萌哒,http://em.21dtv.com/songs/60110484.mkv +任栩麟-萌萌哒,http://em.21dtv.com/songs/60109142.mkv +华语群星-么么哒,http://em.21dtv.com/songs/60108356.mkv +乔洋+胡丹丹-美美的,http://em.21dtv.com/songs/60106580.mkv +童可可-萌萌哒,http://em.21dtv.com/songs/60106180.mkv +林镁希+夏玟希-么么哒,http://em.21dtv.com/songs/60106024.mkv +王麟-么么哒,http://em.21dtv.com/songs/60099421.mkv +王麟+楚博仁-么么哒,http://em.21dtv.com/songs/60096904.mkv +王雪晶-木棉道,http://em.21dtv.com/songs/60030570.mkv +孟庭苇-木绵道,http://em.21dtv.com/songs/60030569.mkv +汪苏泷-慢慢懂,http://em.21dtv.com/songs/60028586.mkv +张清芳-慢慢地,http://em.21dtv.com/songs/60028583.mkv +韦礼安-慢慢等,http://em.21dtv.com/songs/60028582.mkv +孙淑媚-慢慢等,http://em.21dtv.com/songs/60028581.mkv +佚名-mandy my dear,http://em.21dtv.com/songs/60003742.mkv +易道般若-毛毛草,http://em.21dtv.com/songs/60122790.mkv +陈奂仁-毛毛虫,http://em.21dtv.com/songs/60072183.mkv +朱丹-毛毛虫,http://em.21dtv.com/songs/60063473.mkv +陈盈洁-唛门缠(无原唱),http://em.21dtv.com/songs/60028499.mkv +佚名-买面包,http://em.21dtv.com/songs/60028423.mkv +蒋欣+刘恺威-明明爱,http://em.21dtv.com/songs/60135691.mkv +冷漠-慢慢爱,http://em.21dtv.com/songs/60115704.mkv +张牧阅-陌陌爱,http://em.21dtv.com/songs/60109325.mkv +庞龙+迟云-满满爱,http://em.21dtv.com/songs/60096265.mkv +Von Lee-梦里醉,http://em.21dtv.com/songs/60132147.mkv +宋祖英-茉莉赞,http://em.21dtv.com/songs/60030398.mkv +董德光-梅龙镇,http://em.21dtv.com/songs/60029000.mkv +贾斯文+雍雅惜-马兰谣,http://em.21dtv.com/songs/60124508.mkv +玛利阳组合-玛利阳,http://em.21dtv.com/songs/60124295.mkv +林俊杰-茉莉雨,http://em.21dtv.com/songs/60111193.mkv +甘萍-马兰谣,http://em.21dtv.com/songs/60104326.mkv +慕容晓晓-玛丽亚,http://em.21dtv.com/songs/60102271.mkv +慕容晓晓-玛丽亚(故事情节),http://em.21dtv.com/songs/60100872.mkv +BY2-没理由,http://em.21dtv.com/songs/60081602.mkv +王鹤铮-玛丽亚,http://em.21dtv.com/songs/60061394.mkv +金雅中-玛利亚,http://em.21dtv.com/songs/60028397.mkv +TOKYO D.-玛丽亚(无原唱),http://em.21dtv.com/songs/60028395.mkv +李思琳-马兰谣,http://em.21dtv.com/songs/60028367.mkv +朱克-陌路行,http://em.21dtv.com/songs/60111147.mkv +何龙雨-木良心,http://em.21dtv.com/songs/60076765.mkv +赵薇-木兰香(演唱会),http://em.21dtv.com/songs/60067248.mkv +张靓颖-木兰星,http://em.21dtv.com/songs/60030568.mkv +陈粒-妙龄童,http://em.21dtv.com/songs/60112364.mkv +DISH乐队-美丽天,http://em.21dtv.com/songs/60064528.mkv +陈小涛-麻辣烫,http://em.21dtv.com/songs/60028337.mkv +佚名-moment like this,http://em.21dtv.com/songs/60003858.mkv +五月天-米老鼠,http://em.21dtv.com/songs/60087264.mkv +彭坦-美丽山,http://em.21dtv.com/songs/60076624.mkv +高向鹏+陈玉慧-马拉桑,http://em.21dtv.com/songs/60028359.mkv +张震岳-马拉桑(无原唱),http://em.21dtv.com/songs/60028358.mkv +胡又天-梦里人,http://em.21dtv.com/songs/60134139.mkv +陈咏+陈娇-梦里人,http://em.21dtv.com/songs/60130832.mkv +胡耀华-陌路人,http://em.21dtv.com/songs/60102645.mkv +陈百强-梦里人,http://em.21dtv.com/songs/60029601.mkv +孙燕姿-木兰情,http://em.21dtv.com/songs/60030567.mkv +东方神起-my little princess,http://em.21dtv.com/songs/60004000.mkv +周海媚-迷恋你,http://em.21dtv.com/songs/60029889.mkv +艳阳天-莫拦门,http://em.21dtv.com/songs/60030425.mkv +大嘴巴-没礼貌,http://em.21dtv.com/songs/60028723.mkv +五月天-麦乱来,http://em.21dtv.com/songs/60087265.mkv +罗甄-木兰泪,http://em.21dtv.com/songs/60085485.mkv +DAY 26-made love lately,http://em.21dtv.com/songs/60067938.mkv +五月天-麦来乱,http://em.21dtv.com/songs/60028446.mkv +MC HOTDOG-mc来了,http://em.21dtv.com/songs/60003775.mkv +丁少华+周礼虎-moves like jagger,http://em.21dtv.com/songs/60073622.mkv +尚雯婕-moves like jagger,http://em.21dtv.com/songs/60073621.mkv +MAROON 5-moves like jagger,http://em.21dtv.com/songs/60065653.mkv +王丽达-梦丽江,http://em.21dtv.com/songs/60029609.mkv +龚玥-马兰花,http://em.21dtv.com/songs/60133157.mkv +何雁诗-梦里花,http://em.21dtv.com/songs/60128782.mkv +张娜-马兰花,http://em.21dtv.com/songs/60127970.mkv +李昱和-茉莉花,http://em.21dtv.com/songs/60127038.mkv +于洋-朦胧花,http://em.21dtv.com/songs/60123611.mkv +魏松-茉莉花,http://em.21dtv.com/songs/60121169.mkv +蔡丽津-茉莉花,http://em.21dtv.com/songs/60120928.mkv +包秋波-魔力红,http://em.21dtv.com/songs/60119319.mkv +白致瑶-马兰花,http://em.21dtv.com/songs/60117088.mkv +琪琪格-马兰花,http://em.21dtv.com/songs/60117056.mkv +龚玥-马兰花,http://em.21dtv.com/songs/60111564.mkv +宫瑜聪-茉莉花,http://em.21dtv.com/songs/60111020.mkv +群星-茉莉花,http://em.21dtv.com/songs/60107122.mkv +张可-茉莉花,http://em.21dtv.com/songs/60076744.mkv +宋祖英-茉莉花,http://em.21dtv.com/songs/60076743.mkv +黄星羱-梦里花,http://em.21dtv.com/songs/60076668.mkv +腾格尔-马兰花(演唱会),http://em.21dtv.com/songs/60076557.mkv +二人转+闫学晶+董宝贵-茉莉花,http://em.21dtv.com/songs/60070950.mkv +付乐-木兰花,http://em.21dtv.com/songs/60069626.mkv +吕薇-茉莉花(演唱会),http://em.21dtv.com/songs/60069622.mkv +蒋大为-茉莉花,http://em.21dtv.com/songs/60067244.mkv +水晶乐坊-茉莉花,http://em.21dtv.com/songs/60061433.mkv +卢广仲-慢灵魂,http://em.21dtv.com/songs/60061397.mkv +MC HOTDOG-母老虎,http://em.21dtv.com/songs/60030512.mkv +周灵燕-茉莉花,http://em.21dtv.com/songs/60030394.mkv +童唱-茉莉花,http://em.21dtv.com/songs/60030393.mkv +梁静茹-茉莉花,http://em.21dtv.com/songs/60030392.mkv +佚名-茉莉花(无原唱),http://em.21dtv.com/songs/60030391.mkv +张韶涵-梦里花,http://em.21dtv.com/songs/60029595.mkv +樱桃帮-玛莉海,http://em.21dtv.com/songs/60028398.mkv +童唱-马兰花,http://em.21dtv.com/songs/60028362.mkv +豪图-马兰花,http://em.21dtv.com/songs/60028361.mkv +简迷离-迷离宫,http://em.21dtv.com/songs/60029879.mkv +佚名-梦黎歌(无原唱),http://em.21dtv.com/songs/60029584.mkv +B.A.D-my lovely girl(演唱会),http://em.21dtv.com/songs/60004014.mkv +白致瑶-梅兰芳,http://em.21dtv.com/songs/60117082.mkv +郑培钦-梅兰芳,http://em.21dtv.com/songs/60111441.mkv +范晓萱-魔力esp,http://em.21dtv.com/songs/60030356.mkv +苏娅-美丽岛,http://em.21dtv.com/songs/60029149.mkv +罗大佑-美丽岛,http://em.21dtv.com/songs/60029148.mkv +绯村柯北-木兰辞,http://em.21dtv.com/songs/60113936.mkv +汪峰-名利场,http://em.21dtv.com/songs/60095315.mkv +赵仰瑞-卖莲菜,http://em.21dtv.com/songs/60072179.mkv +贾富营-梦离别,http://em.21dtv.com/songs/60118927.mkv +苏玮-梦篱笆,http://em.21dtv.com/songs/60108845.mkv +迪克牛仔-玛丽安(演唱会),http://em.21dtv.com/songs/60028391.mkv +黄烈传-门口外,http://em.21dtv.com/songs/60029409.mkv +王建杰-袂看破,http://em.21dtv.com/songs/60007534.mkv +汪峰-门开了(演唱会),http://em.21dtv.com/songs/60029408.mkv +孙楠-麦克风,http://em.21dtv.com/songs/60028444.mkv +钟舒漫-蛮可爱,http://em.21dtv.com/songs/60097093.mkv +张美贞-满江中,http://em.21dtv.com/songs/60091148.mkv +卡拉OK-卖饺子,http://em.21dtv.com/songs/60090771.mkv +河北梆子-满江中,http://em.21dtv.com/songs/60090044.mkv +黄义达-目击者,http://em.21dtv.com/songs/60030590.mkv +佚名-满江中(无原唱),http://em.21dtv.com/songs/60028517.mkv +张也-苗街谣,http://em.21dtv.com/songs/60091043.mkv +丁当-梦交响,http://em.21dtv.com/songs/60029573.mkv +董事长乐团-袂见笑,http://em.21dtv.com/songs/60029395.mkv +黄崇旭+大支+MC HOTDOG-麦假肖,http://em.21dtv.com/songs/60028441.mkv +黄孝恩-慢镜头,http://em.21dtv.com/songs/60130930.mkv +尹啸-木吉它,http://em.21dtv.com/songs/60129014.mkv +双囍兄弟-莫吉托,http://em.21dtv.com/songs/60126674.mkv +袁惟仁-木吉他,http://em.21dtv.com/songs/60105365.mkv +李研心-梦江南,http://em.21dtv.com/songs/60105988.mkv +东方红艳-梦江南,http://em.21dtv.com/songs/60098069.mkv +童丽-孟姜女,http://em.21dtv.com/songs/60076649.mkv +佚名-梦江南,http://em.21dtv.com/songs/60029572.mkv +彭丽媛-梦江南,http://em.21dtv.com/songs/60029571.mkv +赵秀兰-孟姜女,http://em.21dtv.com/songs/60029456.mkv +张凤凤-孟姜女,http://em.21dtv.com/songs/60029455.mkv +阿苗千千-苗家美,http://em.21dtv.com/songs/60109687.mkv +阿幼朵-苗家美,http://em.21dtv.com/songs/60030042.mkv +冯晓泉+曾格格-美极了,http://em.21dtv.com/songs/60099771.mkv +佚名-麻将经,http://em.21dtv.com/songs/60028333.mkv +苏小艾-木槿花,http://em.21dtv.com/songs/60128339.mkv +鲍国-满江红,http://em.21dtv.com/songs/60085413.mkv +刘可-满江红,http://em.21dtv.com/songs/60072180.mkv +[Group] +groupName=十六万歌曲MV等 - 27 +阿清-满江红,http://em.21dtv.com/songs/60068457.mkv +袁泉-木槿花,http://em.21dtv.com/songs/60030566.mkv +李秋霞-妹剪花,http://em.21dtv.com/songs/60029359.mkv +庄学忠-满江红,http://em.21dtv.com/songs/60028514.mkv +佚名-满江红,http://em.21dtv.com/songs/60028513.mkv +杨洪基-满江红,http://em.21dtv.com/songs/60028512.mkv +吴若希-没结果,http://em.21dtv.com/songs/60080768.mkv +张敬轩-没结果(演唱会),http://em.21dtv.com/songs/60028718.mkv +林忆莲-没结果(演唱会),http://em.21dtv.com/songs/60028717.mkv +梁焕波+王满娇-卖酒歌,http://em.21dtv.com/songs/60028471.mkv +王琦伦-卖酒歌(无原唱),http://em.21dtv.com/songs/60028470.mkv +郑进一+澎恰恰+许效舜-麻将歌,http://em.21dtv.com/songs/60028331.mkv +关淑怡-梦剧场,http://em.21dtv.com/songs/60029578.mkv +罗密欧-猫叫春(无原唱),http://em.21dtv.com/songs/60028639.mkv +梅东生-棉旧被,http://em.21dtv.com/songs/60070941.mkv +MICHALA TODD-make it work,http://em.21dtv.com/songs/60066682.mkv +VICTORIOUS CAST-make it shine,http://em.21dtv.com/songs/60082255.mkv +TRAVIS PORTER-make it rain,http://em.21dtv.com/songs/60073577.mkv +DRAGON 5-money is nothing(无原唱),http://em.21dtv.com/songs/60003865.mkv +MARIAH CAREY-make it happen,http://em.21dtv.com/songs/60003714.mkv +MIC男团-M I C SHOW TIME,http://em.21dtv.com/songs/60096869.mkv +张萌萌-made in china(演唱会),http://em.21dtv.com/songs/60063675.mkv +艾敬-made in china(无原唱),http://em.21dtv.com/songs/60003693.mkv +佚名-men in black,http://em.21dtv.com/songs/60003792.mkv +ENYA-may it be,http://em.21dtv.com/songs/60003768.mkv +TOBY KEITH-made in america,http://em.21dtv.com/songs/60073574.mkv +佚名-maybe im amazed(无原唱),http://em.21dtv.com/songs/60003769.mkv +SWEDISH HOUSE MAFIA-miami 2 ibiza,http://em.21dtv.com/songs/60003813.mkv +张智成-迷魂阵,http://em.21dtv.com/songs/60029873.mkv +江美琪-迷魂阵,http://em.21dtv.com/songs/60029872.mkv +廖昌永-梅花引,http://em.21dtv.com/songs/60133641.mkv +庄秋玉-梅花吟,http://em.21dtv.com/songs/60126847.mkv +陈俊华-梅花吟,http://em.21dtv.com/songs/60120068.mkv +郑培钦-梅花引,http://em.21dtv.com/songs/60111442.mkv +刘鑫雨-梦红颜,http://em.21dtv.com/songs/60105648.mkv +苗苗-梅花引,http://em.21dtv.com/songs/60096468.mkv +李晖-梅花引,http://em.21dtv.com/songs/60083355.mkv +李晖-梅花引(演唱会),http://em.21dtv.com/songs/60083354.mkv +王勇-梦淮阳,http://em.21dtv.com/songs/60072196.mkv +张也-梅花引,http://em.21dtv.com/songs/60028991.mkv +吕金蔓-梅花引,http://em.21dtv.com/songs/60028990.mkv +陈俊华-梅花吟,http://em.21dtv.com/songs/60028989.mkv +翁立友-迷魂香,http://em.21dtv.com/songs/60029871.mkv +刘佳轩-梦会醒,http://em.21dtv.com/songs/60029564.mkv +翁航融-梦航行,http://em.21dtv.com/songs/60029530.mkv +董文华-梅花雪,http://em.21dtv.com/songs/60028988.mkv +戴娆-梅花雪(演唱会),http://em.21dtv.com/songs/60028987.mkv +云丹久美-美猴王,http://em.21dtv.com/songs/60119243.mkv +张国荣-迷惑我,http://em.21dtv.com/songs/60029878.mkv +PUNGDENG E-棉花糖,http://em.21dtv.com/songs/60103809.mkv +至上励合-棉花糖,http://em.21dtv.com/songs/60029999.mkv +7朵花-棉花糖,http://em.21dtv.com/songs/60029998.mkv +胡白-棉花糖,http://em.21dtv.com/songs/60029997.mkv +佚名-卖馄饨,http://em.21dtv.com/songs/60028468.mkv +佚名-my home town,http://em.21dtv.com/songs/60003996.mkv +袁冰-梅花颂,http://em.21dtv.com/songs/60110501.mkv +王喆-梅花颂,http://em.21dtv.com/songs/60096393.mkv +马国明+高钧贤-幕后人,http://em.21dtv.com/songs/60030643.mkv +反串秋叶子-梦回秦,http://em.21dtv.com/songs/60086707.mkv +周杰伦-迷魂曲,http://em.21dtv.com/songs/60064560.mkv +左明科-梅花坡,http://em.21dtv.com/songs/60122691.mkv +丽莎-卖花女,http://em.21dtv.com/songs/60028467.mkv +曹秀琴-卖花女,http://em.21dtv.com/songs/60028466.mkv +庄学忠-梅花梦,http://em.21dtv.com/songs/60089255.mkv +童丽-梅花梦,http://em.21dtv.com/songs/60076599.mkv +谢采妘-梅花梦,http://em.21dtv.com/songs/60028982.mkv +云菲菲-梅花泪,http://em.21dtv.com/songs/60127723.mkv +成于申-梅花落,http://em.21dtv.com/songs/60118596.mkv +张晓明-梅花泪,http://em.21dtv.com/songs/60118563.mkv +梦的羽裳-梦红楼,http://em.21dtv.com/songs/60113748.mkv +枫舞+歌一生-梅花泪,http://em.21dtv.com/songs/60108630.mkv +文希-梅花泪,http://em.21dtv.com/songs/60101357.mkv +文希高原-梅花泪,http://em.21dtv.com/songs/60096308.mkv +网络歌手-梅花泪,http://em.21dtv.com/songs/60083353.mkv +李翊君-梦红楼,http://em.21dtv.com/songs/60062607.mkv +吉娜-梦红楼(演唱会),http://em.21dtv.com/songs/60061423.mkv +黄家强-梦红楼,http://em.21dtv.com/songs/60029535.mkv +丁汀-梦红楼,http://em.21dtv.com/songs/60029534.mkv +程琳-梦红楼,http://em.21dtv.com/songs/60029533.mkv +钟镇涛+叶倩文-梅花烙,http://em.21dtv.com/songs/60028981.mkv +崔子格-梅花开,http://em.21dtv.com/songs/60097072.mkv +傲艺-梅花劫,http://em.21dtv.com/songs/60107506.mkv +吴鑫桐-梦很近,http://em.21dtv.com/songs/60070926.mkv +王菲-迷魂记,http://em.21dtv.com/songs/60029870.mkv +恭维特-迷魂记,http://em.21dtv.com/songs/60029869.mkv +达明一派-迷魂记(演唱会),http://em.21dtv.com/songs/60029868.mkv +183CLUB-迷魂计,http://em.21dtv.com/songs/60029867.mkv +LYRA-梦幻花,http://em.21dtv.com/songs/60104701.mkv +佚名-面红红,http://em.21dtv.com/songs/60030027.mkv +方荣翔-牧虎关,http://em.21dtv.com/songs/60091263.mkv +李龙基-卖花歌(演唱会),http://em.21dtv.com/songs/60028461.mkv +AVRIL LAVIGNE-my happy ending,http://em.21dtv.com/songs/60003989.mkv +段博文+苏妙玲+左立+虎虎-梦幻岛,http://em.21dtv.com/songs/60112047.mkv +许哲佩-美好的,http://em.21dtv.com/songs/60088637.mkv +黄义达-My Heart Disk,http://em.21dtv.com/songs/60081641.mkv +李亚明-迷蝴蝶,http://em.21dtv.com/songs/60029863.mkv +唐俪+陈随意-梦红尘,http://em.21dtv.com/songs/60064546.mkv +万芳-慢火车,http://em.21dtv.com/songs/60028578.mkv +佚名-卖花词,http://em.21dtv.com/songs/60028460.mkv +CAT STEVENS-morning has broken,http://em.21dtv.com/songs/60003902.mkv +乔幼-麦憨啊,http://em.21dtv.com/songs/60118303.mkv +金子乔-民工谣,http://em.21dtv.com/songs/60070943.mkv +乌兰托娅-梦高原,http://em.21dtv.com/songs/60070925.mkv +刘以达与梦-玫瑰园,http://em.21dtv.com/songs/60028967.mkv +李玟-玫瑰园,http://em.21dtv.com/songs/60028966.mkv +魏大勋+徐璐-没关系,http://em.21dtv.com/songs/60128619.mkv +罗力威-没关系,http://em.21dtv.com/songs/60126028.mkv +小男孩乐团-没关系,http://em.21dtv.com/songs/60123854.mkv +张薇-玫瑰香,http://em.21dtv.com/songs/60119546.mkv +BTOB-没关系,http://em.21dtv.com/songs/60113133.mkv +王矜霖+袁娅维-没关系,http://em.21dtv.com/songs/60111282.mkv +天亮-蒙古香,http://em.21dtv.com/songs/60100825.mkv +胡维纳+范玮琪-玫瑰香,http://em.21dtv.com/songs/60095065.mkv +宋孟君+黄嘉鑫-没关系,http://em.21dtv.com/songs/60094482.mkv +许富凯-玫瑰香,http://em.21dtv.com/songs/60085430.mkv +宋孟君-没关系,http://em.21dtv.com/songs/60085418.mkv +刘雅丽-玫瑰香(演唱会),http://em.21dtv.com/songs/60083352.mkv +周燕君-玫瑰香,http://em.21dtv.com/songs/60080865.mkv +翁滋蔓-没关系,http://em.21dtv.com/songs/60064511.mkv +谢军-芒果香,http://em.21dtv.com/songs/60064510.mkv +林凡-梦故乡,http://em.21dtv.com/songs/60029527.mkv +林忆莲-玫瑰香,http://em.21dtv.com/songs/60028959.mkv +张宇-没关系,http://em.21dtv.com/songs/60028716.mkv +吴克群-没关系,http://em.21dtv.com/songs/60028715.mkv +佚名-民歌手,http://em.21dtv.com/songs/60030063.mkv +佚名-玫瑰禅,http://em.21dtv.com/songs/60028925.mkv +阿迪雅-蒙古人,http://em.21dtv.com/songs/60119003.mkv +宗义博-某个人,http://em.21dtv.com/songs/60110159.mkv +KACEY MUSGRAVES-merry go round,http://em.21dtv.com/songs/60073597.mkv +凤凰传奇-蒙古人,http://em.21dtv.com/songs/60061422.mkv +腾格尔-蒙古人,http://em.21dtv.com/songs/60029425.mkv +纪敏佳-蒙古人,http://em.21dtv.com/songs/60029424.mkv +刀妹-蒙古人,http://em.21dtv.com/songs/60029423.mkv +腾格尔-蒙古人(演唱会),http://em.21dtv.com/songs/60029422.mkv +王子霆-蒙古情,http://em.21dtv.com/songs/60069606.mkv +唐飞-玫瑰情(无原唱),http://em.21dtv.com/songs/60022695.mkv +新吉乐图-蒙古袍,http://em.21dtv.com/songs/60091257.mkv +MAROON 5-must get out,http://em.21dtv.com/songs/60003951.mkv +朱美璇-梦甘南,http://em.21dtv.com/songs/60099291.mkv +腾格尔-美姑娘,http://em.21dtv.com/songs/60091907.mkv +腾格尔-梦姑娘,http://em.21dtv.com/songs/60029526.mkv +闪亮三姐妹-美姑娘,http://em.21dtv.com/songs/60029115.mkv +马兆骏-美姑娘,http://em.21dtv.com/songs/60029114.mkv +林俊-美姑娘,http://em.21dtv.com/songs/60029113.mkv +本兮-卖个萌,http://em.21dtv.com/songs/60097011.mkv +李让-蒙古马,http://em.21dtv.com/songs/60094155.mkv +聂琳峰-木古拉,http://em.21dtv.com/songs/60064582.mkv +赵子龙-蒙古狼,http://em.21dtv.com/songs/60064541.mkv +田震-玫瑰泪,http://em.21dtv.com/songs/60028941.mkv +佚名-卖橄榄,http://em.21dtv.com/songs/60028458.mkv +黄烈传-my guiding light,http://em.21dtv.com/songs/60003987.mkv +蜜蜂少女队-没感觉,http://em.21dtv.com/songs/60134207.mkv +乌兰图雅-蒙古酒,http://em.21dtv.com/songs/60132165.mkv +蔡秋凤+林庆宗-玫瑰酒,http://em.21dtv.com/songs/60095914.mkv +郑秀文-没感觉,http://em.21dtv.com/songs/60028714.mkv +乔幼-芒果花,http://em.21dtv.com/songs/60131142.mkv +乔幼-芒果花,http://em.21dtv.com/songs/60130053.mkv +张曼莉-玫瑰花,http://em.21dtv.com/songs/60123923.mkv +呼斯楞-蒙古汉,http://em.21dtv.com/songs/60103984.mkv +钟舒漫-玫瑰花,http://em.21dtv.com/songs/60097008.mkv +龙千玉-玫瑰红,http://em.21dtv.com/songs/60079349.mkv +王欢-玫瑰花,http://em.21dtv.com/songs/60067222.mkv +龙千玉-玫瑰花,http://em.21dtv.com/songs/60028932.mkv +张智成-梦工厂,http://em.21dtv.com/songs/60106842.mkv +乌兰托娅-蒙古包,http://em.21dtv.com/songs/60106578.mkv +陈绮贞-慢歌3(演唱会),http://em.21dtv.com/songs/60028577.mkv +周国贤-密封罩,http://em.21dtv.com/songs/60029975.mkv +孙晓磊-梦飞扬,http://em.21dtv.com/songs/60126778.mkv +大庆小芳-买房谣,http://em.21dtv.com/songs/60096965.mkv +张真菲-梦飞翔,http://em.21dtv.com/songs/60063430.mkv +郑欣宜-梦飞行,http://em.21dtv.com/songs/60029523.mkv +徐小凤-梦飞行,http://em.21dtv.com/songs/60029522.mkv +关心妍-梦飞行,http://em.21dtv.com/songs/60029521.mkv +莫文蔚-my funny valentine,http://em.21dtv.com/songs/60073635.mkv +佚名-my funny valentine,http://em.21dtv.com/songs/60003980.mkv +赵一颐-梦飞天,http://em.21dtv.com/songs/60131839.mkv +R.RODGERS-O.HAMMERSTEIN-my favorite things(无原唱),http://em.21dtv.com/songs/60003975.mkv +刘德华-模范生,http://em.21dtv.com/songs/60030316.mkv +容祖儿-麻烦你,http://em.21dtv.com/songs/60133588.mkv +容祖儿-麻烦你(演唱会),http://em.21dtv.com/songs/60028321.mkv +崔子格-梦非梦,http://em.21dtv.com/songs/60097070.mkv +容祖儿-梦非梦,http://em.21dtv.com/songs/60029525.mkv +梁珈瑜-梦非梦(无原唱),http://em.21dtv.com/songs/60029524.mkv +ANASTACIA-made for lovinyou,http://em.21dtv.com/songs/60003692.mkv +甄妮-莫彷徨(演唱会),http://em.21dtv.com/songs/60030427.mkv +佚名-my fathers eyes,http://em.21dtv.com/songs/60003974.mkv +ERIC CLAPTON-my fathers eyes,http://em.21dtv.com/songs/60003973.mkv +朱海君-没法度,http://em.21dtv.com/songs/60028712.mkv +浜崎あゆみ-Merry_Go_Round,http://em.21dtv.com/songs/60080840.mkv +方大同-麦恩莉,http://em.21dtv.com/songs/60076564.mkv +童可可-萌二代,http://em.21dtv.com/songs/60116184.mkv +婷汐-萌二代,http://em.21dtv.com/songs/60105743.mkv +佚名-my elusive dreams,http://em.21dtv.com/songs/60003971.mkv +潘玮柏+关晓彤-漫动作,http://em.21dtv.com/songs/60131620.mkv +周逸涵-慢动作,http://em.21dtv.com/songs/60066140.mkv +薛家燕-乜都盏,http://em.21dtv.com/songs/60032681.mkv +刘智晗-牡丹瑶,http://em.21dtv.com/songs/60131211.mkv +乔冬宇+孟刚-梦蝶吟,http://em.21dtv.com/songs/60122469.mkv +张信哲-牡丹忧,http://em.21dtv.com/songs/60111861.mkv +乔冬宇-梦蝶吟,http://em.21dtv.com/songs/60111676.mkv +蔡晓+孙霭涵-咩都有,http://em.21dtv.com/songs/60108881.mkv +李霞儿-咩都有,http://em.21dtv.com/songs/60108588.mkv +张信哲-牡丹忧,http://em.21dtv.com/songs/60030564.mkv +黄俊杰-迷迭香,http://em.21dtv.com/songs/60126465.mkv +张宇-迷迭香,http://em.21dtv.com/songs/60096274.mkv +龚琳娜-迷迭香,http://em.21dtv.com/songs/60095177.mkv +王欢-迷蝶香,http://em.21dtv.com/songs/60068490.mkv +周杰伦-迷迭香,http://em.21dtv.com/songs/60029859.mkv +迟玉昊-每当我,http://em.21dtv.com/songs/60127448.mkv +郑培钦-牡丹亭,http://em.21dtv.com/songs/60112301.mkv +梁静茹-秒的堂,http://em.21dtv.com/songs/60088149.mkv +李雨儿-牡丹亭,http://em.21dtv.com/songs/60076763.mkv +王喆-牡丹亭,http://em.21dtv.com/songs/60068499.mkv +蔡依林-美杜莎,http://em.21dtv.com/songs/60107192.mkv +大张伟-美德说(动画),http://em.21dtv.com/songs/60102078.mkv +周品-美杜莎,http://em.21dtv.com/songs/60102044.mkv +豪记大对唱-梦都市,http://em.21dtv.com/songs/60029513.mkv +方瑞娥+高向鹏-梦都市,http://em.21dtv.com/songs/60029512.mkv +佚名-马灯颂,http://em.21dtv.com/songs/60028354.mkv +佚名-卖豆乳,http://em.21dtv.com/songs/60028457.mkv +国巍-牡丹情,http://em.21dtv.com/songs/60068498.mkv +冯晓荣-咪嗒你,http://em.21dtv.com/songs/60109167.mkv +黄思婷-梦到你(心爱的人),http://em.21dtv.com/songs/60064684.mkv +办桌二人组-面对面,http://em.21dtv.com/songs/60111728.mkv +张政雄+薛佩洁-面对面,http://em.21dtv.com/songs/60072206.mkv +林忆莲-面对面,http://em.21dtv.com/songs/60030026.mkv +梁朝伟-面对面,http://em.21dtv.com/songs/60030025.mkv +满江-面对面(演唱会),http://em.21dtv.com/songs/60030024.mkv +严艺丹-没道理,http://em.21dtv.com/songs/60113226.mkv +耀乐团-米迪拉,http://em.21dtv.com/songs/60064561.mkv +佚名-每段路,http://em.21dtv.com/songs/60029031.mkv +吕方-每段路,http://em.21dtv.com/songs/60029030.mkv +吕方-每段路(演唱会),http://em.21dtv.com/songs/60029029.mkv +冯佳琪-门打开,http://em.21dtv.com/songs/60117566.mkv +何韵诗-满地可,http://em.21dtv.com/songs/60064509.mkv +何韵诗-满地可(演唱会),http://em.21dtv.com/songs/60028506.mkv +乌兰托娅-梦的家,http://em.21dtv.com/songs/60099720.mkv +张杰-牡丹江,http://em.21dtv.com/songs/60076762.mkv +南拳妈妈-牡丹江,http://em.21dtv.com/songs/60030549.mkv +亦勋-牡丹花,http://em.21dtv.com/songs/60130062.mkv +刀郎-牡丹汗,http://em.21dtv.com/songs/60105628.mkv +巴郎百川-牡丹汗,http://em.21dtv.com/songs/60030548.mkv +景岗山-磨刀歌,http://em.21dtv.com/songs/60030334.mkv +苏小明-美的歌,http://em.21dtv.com/songs/60029112.mkv +张柏芝-目的地,http://em.21dtv.com/songs/60030586.mkv +丑丑-目的地,http://em.21dtv.com/songs/60030585.mkv +张柏芝-目的地(演唱会),http://em.21dtv.com/songs/60030584.mkv +何婉盈-莫等待,http://em.21dtv.com/songs/60030420.mkv +张学友-莫等待(演唱会),http://em.21dtv.com/songs/60030419.mkv +洪卓立-弥敦道,http://em.21dtv.com/songs/60029850.mkv +洪卓立-弥敦道(演唱会),http://em.21dtv.com/songs/60029849.mkv +乌兰图雅-梦草原,http://em.21dtv.com/songs/60109124.mkv +张凡-梦草原,http://em.21dtv.com/songs/60076654.mkv +老兵-迷彩谣(演唱会),http://em.21dtv.com/songs/60029857.mkv +张书瑶-没出息,http://em.21dtv.com/songs/60129062.mkv +韦琪-末场戏,http://em.21dtv.com/songs/60085480.mkv +陈奂仁-没出息,http://em.21dtv.com/songs/60066142.mkv +小安-没出息(演唱会),http://em.21dtv.com/songs/60028710.mkv +佚名-没出息(无原唱),http://em.21dtv.com/songs/60028709.mkv +刘依纯-没出息(无原唱),http://em.21dtv.com/songs/60028708.mkv +甜妹紫烟-莫愁女,http://em.21dtv.com/songs/60107919.mkv +张安灿-迷彩梦,http://em.21dtv.com/songs/60029856.mkv +路遥-迷彩梦,http://em.21dtv.com/songs/60029855.mkv +GERI HALLIWELL-mi chico latino(无原唱),http://em.21dtv.com/songs/60003809.mkv +蔡小虎-梦春风,http://em.21dtv.com/songs/60068484.mkv +杨千嬅-满场飞,http://em.21dtv.com/songs/60028503.mkv +吕珊-满场飞(演唱会),http://em.21dtv.com/songs/60028502.mkv +刘韵+伦永亮-满场飞(演唱会),http://em.21dtv.com/songs/60028501.mkv +江蕙-骂春风,http://em.21dtv.com/songs/60028414.mkv +佚名-merry christmas everyone,http://em.21dtv.com/songs/60003798.mkv +佚名-merry christmas everybody,http://em.21dtv.com/songs/60003797.mkv +BRUCE SPRINGSTEEN-merry christmas baby,http://em.21dtv.com/songs/60003796.mkv +宇海文-马背族,http://em.21dtv.com/songs/60028348.mkv +MARC ANTHONY-my baby you,http://em.21dtv.com/songs/60003955.mkv +关德辉-梦不醒(无原唱),http://em.21dtv.com/songs/60029486.mkv +TATA YOUNG-my bloody valentine,http://em.21dtv.com/songs/60071642.mkv +阿吉仔-免悲伤,http://em.21dtv.com/songs/60095950.mkv +阮丹青-面包树,http://em.21dtv.com/songs/60079973.mkv +邓超+刘亦菲+邹兆龙+郑中基-梦不死,http://em.21dtv.com/songs/60076653.mkv +张梓涓-马背上,http://em.21dtv.com/songs/60072175.mkv +尚裘峰-买不起,http://em.21dtv.com/songs/60083339.mkv +王大文-慢半拍,http://em.21dtv.com/songs/60097110.mkv +邓紫棋-music box prelude(演唱会),http://em.21dtv.com/songs/60073629.mkv +佚名-莫奔跑,http://em.21dtv.com/songs/60030414.mkv +黄靖伦-慢半拍,http://em.21dtv.com/songs/60028576.mkv +芭比-mr 白目,http://em.21dtv.com/songs/60003934.mkv +孙燕姿-梦不落,http://em.21dtv.com/songs/60029483.mkv +方展荣-卖饼歌,http://em.21dtv.com/songs/60028453.mkv +银河童声合唱团-卖报歌,http://em.21dtv.com/songs/60028452.mkv +王雪晶-卖报歌,http://em.21dtv.com/songs/60028451.mkv +童唱-卖报歌,http://em.21dtv.com/songs/60028450.mkv +麻吉弟弟-没办法,http://em.21dtv.com/songs/60089017.mkv +蒋雪儿-没办法,http://em.21dtv.com/songs/60061402.mkv +MACHI-没办法,http://em.21dtv.com/songs/60028705.mkv +AIR SUPPLY-my best friend(演唱会),http://em.21dtv.com/songs/60003957.mkv +ELECTROBOYZ-ma boy 2,http://em.21dtv.com/songs/60063674.mkv +林俊杰-末班车,http://em.21dtv.com/songs/60132599.mkv +周传雄-末班车,http://em.21dtv.com/songs/60030381.mkv +萧煌奇-末班车,http://em.21dtv.com/songs/60030380.mkv +陈雷-免悲哀,http://em.21dtv.com/songs/60002885.mkv +AL-me and you,http://em.21dtv.com/songs/60003781.mkv +佚名-mad about you,http://em.21dtv.com/songs/60003689.mkv +章孬玩-唛阿喜,http://em.21dtv.com/songs/60028494.mkv +周渝民-make a wish,http://em.21dtv.com/songs/60003712.mkv +蔡卓妍-make a wish,http://em.21dtv.com/songs/60003711.mkv +周渝民-make a wish(演唱会),http://em.21dtv.com/songs/60003710.mkv +邓福如-me and u,http://em.21dtv.com/songs/60082256.mkv +GWYNETH PALTROW-me and tennessee,http://em.21dtv.com/songs/60003779.mkv +BILLY PAUL-me and mrs jones,http://em.21dtv.com/songs/60003777.mkv +TYLER CARTER-MAKE IT SNOW,http://em.21dtv.com/songs/60096868.mkv +雷琛瑜-Make It Last,http://em.21dtv.com/songs/60100618.mkv +GAVIN DEGRAW-MAKE A MOVE,http://em.21dtv.com/songs/60096867.mkv +果味VC-me and i,http://em.21dtv.com/songs/60063681.mkv +THE KILLERS-miss atomic bomb,http://em.21dtv.com/songs/60073604.mkv +咪依鲁江-六字咒,http://em.21dtv.com/songs/60085399.mkv +张嘉敏-励志谣,http://em.21dtv.com/songs/60105824.mkv +赵志刚+黄龄-灵芝缘,http://em.21dtv.com/songs/60103593.mkv +张嘉敏-励志瑶,http://em.21dtv.com/songs/60103268.mkv +马亚维-兰舟谣,http://em.21dtv.com/songs/60101200.mkv +刘德华+郑中基-两仔爷,http://em.21dtv.com/songs/60092347.mkv +花粥-老中医,http://em.21dtv.com/songs/60083270.mkv +胡美仪+吕珊+苏姗-两仔爷(演唱会),http://em.21dtv.com/songs/60076438.mkv +乐之韵组合-乐之韵,http://em.21dtv.com/songs/60076358.mkv +董鸣华-老战友,http://em.21dtv.com/songs/60068425.mkv +郭铁功-老战友,http://em.21dtv.com/songs/60064462.mkv +许嵩-庐州月,http://em.21dtv.com/songs/60027897.mkv +于瑛楠-楼中夜,http://em.21dtv.com/songs/60027891.mkv +群星-两仔爷,http://em.21dtv.com/songs/60027312.mkv +林子娟-离枝叶,http://em.21dtv.com/songs/60026803.mkv +李心洁-雷阵雨,http://em.21dtv.com/songs/60026504.mkv +萧煌奇-莲子心,http://em.21dtv.com/songs/60122074.mkv +郭穗-丽之星,http://em.21dtv.com/songs/60067198.mkv +七郎-浪子心,http://em.21dtv.com/songs/60026293.mkv +陈雷-浪子心,http://em.21dtv.com/songs/60026292.mkv +熊志鹏-留住我,http://em.21dtv.com/songs/60120736.mkv +黄思婷-路中沙,http://em.21dtv.com/songs/60081809.mkv +叶启田-老长寿,http://em.21dtv.com/songs/60077668.mkv +谷祖琳-六壮士,http://em.21dtv.com/songs/60027806.mkv +李池湘-荔枝颂,http://em.21dtv.com/songs/60026927.mkv +吴克群-老子说,http://em.21dtv.com/songs/60026459.mkv +李丹阳-老支书,http://em.21dtv.com/songs/60026458.mkv +李明洋+方怡萍-蜡烛人(无原唱),http://em.21dtv.com/songs/60095618.mkv +何嘉莉-两种人,http://em.21dtv.com/songs/60027322.mkv +韩晓辉-滦州情,http://em.21dtv.com/songs/60116370.mkv +邓天浩-冷战期,http://em.21dtv.com/songs/60096998.mkv +夏韶声-路中情(演唱会),http://em.21dtv.com/songs/60027966.mkv +蔡淳佳-恋之憩,http://em.21dtv.com/songs/60027162.mkv +王识贤-浪子情,http://em.21dtv.com/songs/60026288.mkv +阿BEN-老照片,http://em.21dtv.com/songs/60101543.mkv +TRASH-笼中鸟,http://em.21dtv.com/songs/60123550.mkv +萧全-老吒乸(父母亲),http://em.21dtv.com/songs/60083272.mkv +谢天笑-笼中鸟(演唱会),http://em.21dtv.com/songs/60076500.mkv +喜玛拉雅组合-林芝美,http://em.21dtv.com/songs/60027391.mkv +扬哲-浪子命,http://em.21dtv.com/songs/60026287.mkv +北方狼-泪珠凉,http://em.21dtv.com/songs/60118401.mkv +刘晓-柳枝乱,http://em.21dtv.com/songs/60093645.mkv +叶启田-浪子泪,http://em.21dtv.com/songs/60075698.mkv +蔡佳萦-灵自灵,http://em.21dtv.com/songs/60027425.mkv +钟镇涛-泪之旅(无原唱),http://em.21dtv.com/songs/60026557.mkv +佚名-浪子泪,http://em.21dtv.com/songs/60026286.mkv +李茂山-浪子泪,http://em.21dtv.com/songs/60026285.mkv +黄西田-浪子泪,http://em.21dtv.com/songs/60026284.mkv +陈雷-浪子泪,http://em.21dtv.com/songs/60026283.mkv +成威-浪子泪(无原唱),http://em.21dtv.com/songs/60026282.mkv +凌东明-梁祝恨,http://em.21dtv.com/songs/60089154.mkv +张燕清+洪百慧-蜡烛火,http://em.21dtv.com/songs/60069551.mkv +莫旭秋-恋之火(演唱会),http://em.21dtv.com/songs/60064477.mkv +徐小凤-恋之火(演唱会),http://em.21dtv.com/songs/60027160.mkv +刘雅丽-恋之火(演唱会),http://em.21dtv.com/songs/60027159.mkv +李明洋+方怡萍-蜡烛火(无原唱),http://em.21dtv.com/songs/60025935.mkv +刘玮-廉字歌,http://em.21dtv.com/songs/60026964.mkv +老五-浪子归,http://em.21dtv.com/songs/60026276.mkv +安宁-泪在飞[消伴],http://em.21dtv.com/songs/60101324.mkv +罗婉琳-龙在飞,http://em.21dtv.com/songs/60027847.mkv +张德兰-露珠儿,http://em.21dtv.com/songs/60076503.mkv +谢采妘-露珠儿,http://em.21dtv.com/songs/60027980.mkv +黄莺莺-露珠儿,http://em.21dtv.com/songs/60027979.mkv +韩宝仪-露珠儿,http://em.21dtv.com/songs/60027978.mkv +伍佰-楼仔厝(演唱会),http://em.21dtv.com/songs/60027890.mkv +童唱-凉州词,http://em.21dtv.com/songs/60027178.mkv +余天-浪子啊,http://em.21dtv.com/songs/60026263.mkv +林宇中-淋雨中,http://em.21dtv.com/songs/60027405.mkv +成龙-冷雨中,http://em.21dtv.com/songs/60026627.mkv +一闪一闪亮晶晶的钻石女士-冷雨夜,http://em.21dtv.com/songs/60127689.mkv +罗凯莹-狼与羊,http://em.21dtv.com/songs/60134071.mkv +罗凯莹-狼与羊,http://em.21dtv.com/songs/60123065.mkv +陈彦允-狼与羊,http://em.21dtv.com/songs/60101701.mkv +廖梓芯-懒羊羊,http://em.21dtv.com/songs/60085351.mkv +蓝弘钦-聊一夜,http://em.21dtv.com/songs/60027353.mkv +关楚耀-冷雨夜(演唱会),http://em.21dtv.com/songs/60026626.mkv +BEYOND-冷雨夜(演唱会),http://em.21dtv.com/songs/60026625.mkv +童唱-乐游原,http://em.21dtv.com/songs/60026471.mkv +杨振龙+BENYLAN+MC茶米-六月雪,http://em.21dtv.com/songs/60069579.mkv +苏又熔+办桌阿龙-六月雪,http://em.21dtv.com/songs/60027805.mkv +王博轼-另一位,http://em.21dtv.com/songs/60132713.mkv +童唱-老渔翁,http://em.21dtv.com/songs/60026451.mkv +庄振凯-落雨天,http://em.21dtv.com/songs/60125482.mkv +ANDREW ALLEN-loving you tonight,http://em.21dtv.com/songs/60060870.mkv +陈百潭+白冰冰-六月天,http://em.21dtv.com/songs/60027801.mkv +风采轮-落叶时,http://em.21dtv.com/songs/60110683.mkv +DELIAH-love you so,http://em.21dtv.com/songs/60069105.mkv +TWINS-旅游书,http://em.21dtv.com/songs/60066134.mkv +江蕙-落雨声,http://em.21dtv.com/songs/60028130.mkv +罗文聪+关艾-落叶声,http://em.21dtv.com/songs/60028116.mkv +额尔古纳乐队-老榆树,http://em.21dtv.com/songs/60026452.mkv +索南扎西-陇原情,http://em.21dtv.com/songs/60099442.mkv +郁可唯-连衣裙,http://em.21dtv.com/songs/60072146.mkv +龙千玉-落叶情,http://em.21dtv.com/songs/60028115.mkv +阎维文-柳叶青,http://em.21dtv.com/songs/60027767.mkv +十三狼-梨园梦,http://em.21dtv.com/songs/60120381.mkv +梦的羽裳-柳叶眉,http://em.21dtv.com/songs/60113747.mkv +于台烟-落雨暝,http://em.21dtv.com/songs/60028128.mkv +佚名-落雨暝(无原唱),http://em.21dtv.com/songs/60028127.mkv +王瑞霞-落叶命,http://em.21dtv.com/songs/60028113.mkv +臧天朔-老玉米(演唱会),http://em.21dtv.com/songs/60026453.mkv +JLS-love you more,http://em.21dtv.com/songs/60003620.mkv +老月亮组合-老月亮,http://em.21dtv.com/songs/60085360.mkv +凤飞飞-凉呀凉,http://em.21dtv.com/songs/60027177.mkv +佚名-蓝月亮,http://em.21dtv.com/songs/60026153.mkv +张学友-蓝月亮(演唱会),http://em.21dtv.com/songs/60026152.mkv +李克勤-蓝月亮(演唱会),http://em.21dtv.com/songs/60026151.mkv +黄凯芹+李克勤-蓝月亮(演唱会),http://em.21dtv.com/songs/60026150.mkv +杨蔓-蓝眼泪,http://em.21dtv.com/songs/60026139.mkv +陈冠蒲-蓝眼泪,http://em.21dtv.com/songs/60026138.mkv +许慧欣-lay your love,http://em.21dtv.com/songs/60003295.mkv +龙奔-另一款,http://em.21dtv.com/songs/60062710.mkv +金志文+关喆-老友记,http://em.21dtv.com/songs/60081646.mkv +张韶涵+吴青峰-蓝眼睛,http://em.21dtv.com/songs/60026137.mkv +廖芊芊+王佑贵-浏阳河,http://em.21dtv.com/songs/60117714.mkv +王昆-浏阳河,http://em.21dtv.com/songs/60116148.mkv +孔雀哥哥-落雨花,http://em.21dtv.com/songs/60106764.mkv +李佳羽-冷烟火,http://em.21dtv.com/songs/60105968.mkv +刘紫玲-浏阳河,http://em.21dtv.com/songs/60103940.mkv +曲丹-蓝印花,http://em.21dtv.com/songs/60099275.mkv +童丽-浏阳河,http://em.21dtv.com/songs/60076465.mkv +沙宝亮-浏阳河(演唱会),http://em.21dtv.com/songs/60076464.mkv +沙宝亮-浏阳河),http://em.21dtv.com/songs/60072161.mkv +王鹤铮-浏阳河,http://em.21dtv.com/songs/60061375.mkv +张也-浏阳河,http://em.21dtv.com/songs/60027517.mkv +李谷一-浏阳河,http://em.21dtv.com/songs/60027516.mkv +蒋大为-浏阳河,http://em.21dtv.com/songs/60027515.mkv +佚名-浏阳河(伦巴),http://em.21dtv.com/songs/60027514.mkv +佚名-蓝与黑,http://em.21dtv.com/songs/60026144.mkv +李茂山-蓝与黑,http://em.21dtv.com/songs/60026143.mkv +方逸华-蓝与黑,http://em.21dtv.com/songs/60026142.mkv +任和-蓝月光,http://em.21dtv.com/songs/60068414.mkv +完玛三智-蓝月谷,http://em.21dtv.com/songs/60064452.mkv +薛之谦-let you go,http://em.21dtv.com/songs/60063225.mkv +梁汉文-懒音哥,http://em.21dtv.com/songs/60062621.mkv +黄小琥-老月光(演唱会),http://em.21dtv.com/songs/60026455.mkv +许慧欣-let you go,http://em.21dtv.com/songs/60003351.mkv +CHASE STATUS-let you go,http://em.21dtv.com/songs/60003350.mkv +豫剧-乱云飞,http://em.21dtv.com/songs/60134535.mkv +京剧-乱云飞,http://em.21dtv.com/songs/60028003.mkv +蔡小虎-六月风,http://em.21dtv.com/songs/60027794.mkv +孙晓雨-落雨的,http://em.21dtv.com/songs/60117656.mkv +广东民歌-落雨大,http://em.21dtv.com/songs/60087743.mkv +佚名-落雨大,http://em.21dtv.com/songs/60028122.mkv +王碎林-冷月传,http://em.21dtv.com/songs/60124268.mkv +徐小明-柳叶船,http://em.21dtv.com/songs/60106879.mkv +吴建豪-老爷车,http://em.21dtv.com/songs/60064461.mkv +袁小迪-落叶愁,http://em.21dtv.com/songs/60045376.mkv +佚名-老爷船,http://em.21dtv.com/songs/60026445.mkv +罗晋-另一半,http://em.21dtv.com/songs/60105295.mkv +张挥-留言簿,http://em.21dtv.com/songs/60069577.mkv +许茹芸-另一半,http://em.21dtv.com/songs/60027485.mkv +陈星-另一半,http://em.21dtv.com/songs/60027484.mkv +佚名-乐与悲,http://em.21dtv.com/songs/60026474.mkv +太极乐队-乐与悲,http://em.21dtv.com/songs/60026473.mkv +太极乐队-乐与悲(演唱会),http://em.21dtv.com/songs/60026472.mkv +张磊-旅行者,http://em.21dtv.com/songs/60120520.mkv +可歆-离心咒,http://em.21dtv.com/songs/60080189.mkv +元若蓝-绿袖子,http://em.21dtv.com/songs/60028192.mkv +黎明-两心知,http://em.21dtv.com/songs/60027311.mkv +邓丽欣-蓝鞋子,http://em.21dtv.com/songs/60026133.mkv +邓丽欣-蓝鞋子(演唱会),http://em.21dtv.com/songs/60026132.mkv +庄学忠-两相依,http://em.21dtv.com/songs/60133633.mkv +李天平-李修缘,http://em.21dtv.com/songs/60111161.mkv +西域胡杨-乐逍遥,http://em.21dtv.com/songs/60110509.mkv +TFBOYS-恋西游,http://em.21dtv.com/songs/60109897.mkv +F4+言承旭-流星愿,http://em.21dtv.com/songs/60090401.mkv +潘玮柏-流星雨,http://em.21dtv.com/songs/60090052.mkv +周笔畅-流星雨,http://em.21dtv.com/songs/60087599.mkv +吴莫愁-流星雨,http://em.21dtv.com/songs/60076477.mkv +孙淑媚-流星雨,http://em.21dtv.com/songs/60066128.mkv +卓依婷-流星雨,http://em.21dtv.com/songs/60027740.mkv +苏永康-流星雨,http://em.21dtv.com/songs/60027739.mkv +F4-流星雨,http://em.21dtv.com/songs/60027738.mkv +F4-流星雨(演唱会),http://em.21dtv.com/songs/60027737.mkv +庄学忠-俩相依,http://em.21dtv.com/songs/60027335.mkv +高胜美-俩相依,http://em.21dtv.com/songs/60027334.mkv +佚名-俩相依(演唱会),http://em.21dtv.com/songs/60027333.mkv +凤飞飞-两相依,http://em.21dtv.com/songs/60027307.mkv +周诗雅-乐逍遥,http://em.21dtv.com/songs/60026470.mkv +SUNBOY'Z-两心悉,http://em.21dtv.com/songs/60027309.mkv +姜允浩-练习题,http://em.21dtv.com/songs/60083298.mkv +江映蓉-练习题,http://em.21dtv.com/songs/60026979.mkv +丁香晓晓-老夏天,http://em.21dtv.com/songs/60026439.mkv +慕容婕柃-泪相思,http://em.21dtv.com/songs/60131443.mkv +邰正宵-练习说,http://em.21dtv.com/songs/60117276.mkv +金波-连心锁(演唱会),http://em.21dtv.com/songs/60026943.mkv +袁东方-离乡人,http://em.21dtv.com/songs/60115369.mkv +袁双洋-老乡亲,http://em.21dtv.com/songs/60126162.mkv +西子-怜相曲,http://em.21dtv.com/songs/60086674.mkv +萧敬腾-练习曲(演唱会),http://em.21dtv.com/songs/60072147.mkv +林海峰-流行曲,http://em.21dtv.com/songs/60027609.mkv +林海峰-流行曲(演唱会),http://em.21dtv.com/songs/60027608.mkv +侧田+林海峰-流行曲(演唱会),http://em.21dtv.com/songs/60027607.mkv +郑少秋-留香曲,http://em.21dtv.com/songs/60027573.mkv +佚名-离乡情,http://em.21dtv.com/songs/60026795.mkv +黄乙玲-离乡情(无原唱),http://em.21dtv.com/songs/60026794.mkv +陈升-老嬉皮,http://em.21dtv.com/songs/60026438.mkv +叶玉卿-来寻梦,http://em.21dtv.com/songs/60026013.mkv +钟舒漫-来寻梦(演唱会),http://em.21dtv.com/songs/60026012.mkv +叶玉卿-来 寻梦,http://em.21dtv.com/songs/60025938.mkv +LF兄弟-留下来,http://em.21dtv.com/songs/60132096.mkv +沈文程-老兄罗(无原唱),http://em.21dtv.com/songs/60095761.mkv +洪爱莉-留下来,http://em.21dtv.com/songs/60027563.mkv +飞轮海-留下来,http://em.21dtv.com/songs/60027562.mkv +张学友-李香兰(演唱会),http://em.21dtv.com/songs/60026875.mkv +泳儿-李香兰(演唱会),http://em.21dtv.com/songs/60026874.mkv +王菀之-李香兰(演唱会),http://em.21dtv.com/songs/60026873.mkv +齐豫-李香兰(演唱会),http://em.21dtv.com/songs/60026872.mkv +吕方+张学友-李香兰(演唱会),http://em.21dtv.com/songs/60026871.mkv +罗文-李香兰(演唱会),http://em.21dtv.com/songs/60026870.mkv +卢学睿-离心力,http://em.21dtv.com/songs/60026799.mkv +佚名-老兄啰,http://em.21dtv.com/songs/60026443.mkv +王馨悦-旅行家,http://em.21dtv.com/songs/60134013.mkv +容祖儿-连续剧,http://em.21dtv.com/songs/60066114.mkv +小雪-连续剧,http://em.21dtv.com/songs/60026944.mkv +邹文正-烂笑话,http://em.21dtv.com/songs/60100501.mkv +泳儿-冷笑话,http://em.21dtv.com/songs/60095209.mkv +GOLDEN-恋循环,http://em.21dtv.com/songs/60076421.mkv +薛凯琪-冷笑话,http://em.21dtv.com/songs/60072140.mkv +郑少秋-留香恨,http://em.21dtv.com/songs/60027572.mkv +徐伟贤-理想国,http://em.21dtv.com/songs/60092707.mkv +周国贤-蓝雪糕,http://em.21dtv.com/songs/60092471.mkv +张蓉蓉-冷心肝,http://em.21dtv.com/songs/60076374.mkv +颜福伟+彭家丽+彭远扬-理想国,http://em.21dtv.com/songs/60067197.mkv +谢安琪-两心关,http://em.21dtv.com/songs/60027308.mkv +吴佳展-理想国(无原唱),http://em.21dtv.com/songs/60026888.mkv +ZARAHN-蓝雪糕,http://em.21dtv.com/songs/60026134.mkv +柳絮-柳絮飞,http://em.21dtv.com/songs/60099348.mkv +凤凰传奇-绿旋风,http://em.21dtv.com/songs/60061385.mkv +郑少秋-陆小凤,http://em.21dtv.com/songs/60027911.mkv +郑少秋-陆小凤(演唱会),http://em.21dtv.com/songs/60027910.mkv +许千千-离心岛,http://em.21dtv.com/songs/60124469.mkv +畅丹江-老兄弟,http://em.21dtv.com/songs/60120811.mkv +太极乐队-理想都(演唱会),http://em.21dtv.com/songs/60026884.mkv +杨淑蕊-怜香伴,http://em.21dtv.com/songs/60026945.mkv +谢铭佑-老兮啊,http://em.21dtv.com/songs/60132893.mkv +塩ノ谷早耶香-流れ星,http://em.21dtv.com/songs/60135071.mkv +罗时丰-老兄啰,http://em.21dtv.com/songs/60134110.mkv +尚雯婕-love warrior战),http://em.21dtv.com/songs/60073561.mkv +李蕴-恋物志,http://em.21dtv.com/songs/60064476.mkv +佚名-练为战,http://em.21dtv.com/songs/60026973.mkv +龙俊亨-living without you,http://em.21dtv.com/songs/60070364.mkv +巫启贤-路弯弯,http://em.21dtv.com/songs/60027959.mkv +BOYZONE-love wont work,http://em.21dtv.com/songs/60003618.mkv +ROBIN THICKE-lost without u,http://em.21dtv.com/songs/60073540.mkv +FUKUHARA MIHO-love winter song,http://em.21dtv.com/songs/60003617.mkv +SELENA GOMEZ-love will remember,http://em.21dtv.com/songs/60084742.mkv +陈星翰+蔡依林-恋我癖,http://em.21dtv.com/songs/60133044.mkv +KRUSTY-恋物狂,http://em.21dtv.com/songs/60027145.mkv +杜赫旋-老玩家,http://em.21dtv.com/songs/60104229.mkv +马健南-恋无悔,http://em.21dtv.com/songs/60120135.mkv +苏仨-练武功,http://em.21dtv.com/songs/60086676.mkv +谢金燕-练舞功,http://em.21dtv.com/songs/60026974.mkv +叶佩雯-李伟大,http://em.21dtv.com/songs/60026868.mkv +王啸坤-两湾城,http://em.21dtv.com/songs/60088283.mkv +LITTLE BIG TOWN-little white church,http://em.21dtv.com/songs/60003442.mkv +JANET JACKSON-lets wait awhile,http://em.21dtv.com/songs/60003382.mkv +CLOVER-la vida loca,http://em.21dtv.com/songs/60073473.mkv +RICKY MARTIN-livinla vida loca,http://em.21dtv.com/songs/60003451.mkv +ROD STEWART-leave virginia alone,http://em.21dtv.com/songs/60003310.mkv +Apink-LUV,http://em.21dtv.com/songs/60106522.mkv +林俊杰-love u u,http://em.21dtv.com/songs/60062650.mkv +芭比-love u more,http://em.21dtv.com/songs/60003607.mkv +AGGRO SANTOS & KIMBERLY WALSH-like u like,http://em.21dtv.com/songs/60073515.mkv +佚名-la ultima copa,http://em.21dtv.com/songs/60003249.mkv +刘思涵-聆听者,http://em.21dtv.com/songs/60081932.mkv +陆家俊-龙吐珠,http://em.21dtv.com/songs/60027843.mkv +范思威-老天爷,http://em.21dtv.com/songs/60080958.mkv +张镐哲-路太远,http://em.21dtv.com/songs/60076510.mkv +张信哲-冷太阳,http://em.21dtv.com/songs/60067192.mkv +费翔-冷太阳,http://em.21dtv.com/songs/60026617.mkv +胡玮琪-狼讨厌,http://em.21dtv.com/songs/60026204.mkv +喜波-老同学,http://em.21dtv.com/songs/60131297.mkv +喜波-老同学,http://em.21dtv.com/songs/60125330.mkv +罗逻圣-老同学,http://em.21dtv.com/songs/60123080.mkv +张雷-老同学,http://em.21dtv.com/songs/60120532.mkv +禹君-老同学,http://em.21dtv.com/songs/60118819.mkv +胡毅-老同学,http://em.21dtv.com/songs/60116209.mkv +北枫+禹君-老同学,http://em.21dtv.com/songs/60113309.mkv +刘和刚+曲丹-蓝天行,http://em.21dtv.com/songs/60111716.mkv +群星-老同学,http://em.21dtv.com/songs/60110462.mkv +李绪杰-老同学,http://em.21dtv.com/songs/60110283.mkv +张学霖-老同学,http://em.21dtv.com/songs/60110189.mkv +张天甫-龙腾序,http://em.21dtv.com/songs/60108495.mkv +刘和刚-老同学,http://em.21dtv.com/songs/60096200.mkv +柔枫-老同学,http://em.21dtv.com/songs/60093866.mkv +大卫-老同学,http://em.21dtv.com/songs/60083268.mkv +覃晔-老同学,http://em.21dtv.com/songs/60068424.mkv +周杰伦-兰亭序,http://em.21dtv.com/songs/60026042.mkv +周杰伦-兰亭序(演唱会),http://em.21dtv.com/songs/60026041.mkv +张咪-来跳舞,http://em.21dtv.com/songs/60087798.mkv +DIVA-lost the way,http://em.21dtv.com/songs/60067934.mkv +潘玮柏-路太弯,http://em.21dtv.com/songs/60027958.mkv +童安格-来跳舞(无原唱),http://em.21dtv.com/songs/60026009.mkv +阿普萨萨-龙图腾,http://em.21dtv.com/songs/60128504.mkv +尹相杰+1+3组合-龙抬头(演唱会),http://em.21dtv.com/songs/60066131.mkv +阿尔斯楞-狼图腾,http://em.21dtv.com/songs/60061351.mkv +谭晶-龙图腾,http://em.21dtv.com/songs/60027842.mkv +王菲菲-龙抬头,http://em.21dtv.com/songs/60027838.mkv +汤非-狼图腾,http://em.21dtv.com/songs/60026205.mkv +MARIAH CAREY-love takes time,http://em.21dtv.com/songs/60003602.mkv +MADONNA-live to tell,http://em.21dtv.com/songs/60003446.mkv +科尔沁姐妹-蓝天诗,http://em.21dtv.com/songs/60134042.mkv +聂薇+石薇-灵台寺,http://em.21dtv.com/songs/60098702.mkv +DON TRIP+CEE LO-letter to son,http://em.21dtv.com/songs/60065631.mkv +张崇基+张崇德-浪涛沙(演唱会),http://em.21dtv.com/songs/60064455.mkv +佚名-浪淘沙,http://em.21dtv.com/songs/60026259.mkv +许志安+张卫健+梁汉文+苏永康-浪淘沙,http://em.21dtv.com/songs/60026258.mkv +刘德华-浪淘沙,http://em.21dtv.com/songs/60026257.mkv +苏永康-浪淘沙(演唱会),http://em.21dtv.com/songs/60026256.mkv +群星-浪淘沙(演唱会),http://em.21dtv.com/songs/60026255.mkv +EMINEM-like toy soldiers,http://em.21dtv.com/songs/60003413.mkv +LIVE TO RISE-live to rise,http://em.21dtv.com/songs/60073523.mkv +佚名-long train running,http://em.21dtv.com/songs/60003480.mkv +李青璐-乐天派,http://em.21dtv.com/songs/60124097.mkv +张智成-乐天派,http://em.21dtv.com/songs/60026469.mkv +杨青倩-乐天派,http://em.21dtv.com/songs/60026468.mkv +邓海-路太难,http://em.21dtv.com/songs/60108035.mkv +曾俊-路太难,http://em.21dtv.com/songs/60105121.mkv +伍佰-listen to me,http://em.21dtv.com/songs/60003425.mkv +FLORENCE AND THE MACHINE-lover to lover,http://em.21dtv.com/songs/60073564.mkv +GRANGER SMITH-letters to london,http://em.21dtv.com/songs/60066673.mkv +刘仲仪-两条路,http://em.21dtv.com/songs/60027299.mkv +何静-两条路,http://em.21dtv.com/songs/60027298.mkv +KOTOKO-loop the loop,http://em.21dtv.com/songs/60003494.mkv +BACKSTREET BOYS-larger than life,http://em.21dtv.com/songs/60003271.mkv +佚名-license to kill,http://em.21dtv.com/songs/60003387.mkv +姚志强+曾慧-楼台会(映红霞)(戏曲),http://em.21dtv.com/songs/60092502.mkv +姚志强+曾慧-楼台会(映红霞)(二)(戏曲),http://em.21dtv.com/songs/60092501.mkv +童丽-楼台会,http://em.21dtv.com/songs/60076501.mkv +任军太-落桃花(演唱会),http://em.21dtv.com/songs/60062862.mkv +佚名-楼台会,http://em.21dtv.com/songs/60027884.mkv +叶振棠-楼台会,http://em.21dtv.com/songs/60027883.mkv +王杭娟-楼台会,http://em.21dtv.com/songs/60027882.mkv +吴莺音-楼台会(演唱会),http://em.21dtv.com/songs/60027881.mkv +何韵诗-楼台会(演唱会),http://em.21dtv.com/songs/60027880.mkv +杨洋+金彪-两团火,http://em.21dtv.com/songs/60027302.mkv +朱珉奎+TIGER JK-let this die,http://em.21dtv.com/songs/60063655.mkv +阎维文-骆驼草(演唱会),http://em.21dtv.com/songs/60076528.mkv +佚名-柳条长,http://em.21dtv.com/songs/60027766.mkv +佚名-let twist again,http://em.21dtv.com/songs/60003349.mkv +罗时丰-冷霜子,http://em.21dtv.com/songs/60134082.mkv +柳妍熙-朗诵者,http://em.21dtv.com/songs/60094562.mkv +夏国星+林玉英-猎山猪,http://em.21dtv.com/songs/60027379.mkv +黄立行-冷水澡,http://em.21dtv.com/songs/60026616.mkv +赵传-冷霜子,http://em.21dtv.com/songs/60026615.mkv +罗时丰-冷霜子,http://em.21dtv.com/songs/60026614.mkv +雷佳-乐山寨,http://em.21dtv.com/songs/60026465.mkv +张可儿-蓝色雨,http://em.21dtv.com/songs/60133650.mkv +韩东君-乱世雨,http://em.21dtv.com/songs/60124687.mkv +李小薇-疗伤药,http://em.21dtv.com/songs/60111971.mkv +刘德华-来生缘(HD),http://em.21dtv.com/songs/10012640.mkv +超级女声+易慧-蓝色雨,http://em.21dtv.com/songs/60088716.mkv +央吉玛-拉萨谣,http://em.21dtv.com/songs/60086661.mkv +洪颜-了世缘,http://em.21dtv.com/songs/60083304.mkv +刘中意-泪水鱼,http://em.21dtv.com/songs/60026551.mkv +温岚-蓝色雨,http://em.21dtv.com/songs/60026115.mkv +傅振辉+蔡闺-来世缘,http://em.21dtv.com/songs/60026007.mkv +卓依婷-来生缘,http://em.21dtv.com/songs/60026001.mkv +苏有朋-来生缘,http://em.21dtv.com/songs/60026000.mkv +刘德华-来生缘,http://em.21dtv.com/songs/60025999.mkv +黎明-来生缘,http://em.21dtv.com/songs/60025998.mkv +高胜美-来生缘,http://em.21dtv.com/songs/60025997.mkv +刘德华-来生缘(演唱会),http://em.21dtv.com/songs/60025996.mkv +草蜢-来生缘(演唱会),http://em.21dtv.com/songs/60025995.mkv +王琳玲-垄上行,http://em.21dtv.com/songs/60108713.mkv +王识贤-两双鞋(无原唱),http://em.21dtv.com/songs/60077978.mkv +张明敏-垄上行,http://em.21dtv.com/songs/60061379.mkv +谭晶-垄上行,http://em.21dtv.com/songs/60027873.mkv +张明敏-垄上行(演唱会),http://em.21dtv.com/songs/60027872.mkv +谢和弦+徐佳莹-柳树下,http://em.21dtv.com/songs/60027763.mkv +杨千嬅-来生舞,http://em.21dtv.com/songs/60099332.mkv +佚名-lets stay together,http://em.21dtv.com/songs/60003378.mkv +刘建东-拉手手,http://em.21dtv.com/songs/60125182.mkv +苏玮-老师颂,http://em.21dtv.com/songs/60108847.mkv +王二妮+云飞-拉手手,http://em.21dtv.com/songs/60100301.mkv +李尚尚-李尚尚,http://em.21dtv.com/songs/60100139.mkv +KID ROCK-lets ride,http://em.21dtv.com/songs/60073504.mkv +翼势力-蓝丝绒,http://em.21dtv.com/songs/60026117.mkv +BEE GEES-love so right,http://em.21dtv.com/songs/60003590.mkv +杨静-露水情,http://em.21dtv.com/songs/60106975.mkv +冷弦-离殇情,http://em.21dtv.com/songs/60093991.mkv +洛桑扎西-拉萨情,http://em.21dtv.com/songs/60091615.mkv +佚名-流水情(无原唱),http://em.21dtv.com/songs/60027718.mkv +詹曼铃+陈茂丰-来世情,http://em.21dtv.com/songs/60026005.mkv +MC阳子-泪三年,http://em.21dtv.com/songs/60126536.mkv +群星-老水牛,http://em.21dtv.com/songs/60026427.mkv +麦浚龙+谢安琪-罗生门,http://em.21dtv.com/songs/60114292.mkv +谢安琪+麦浚龙-罗生门,http://em.21dtv.com/songs/60112963.mkv +谢霆锋-罗生门,http://em.21dtv.com/songs/60028036.mkv +顺子-love shunza megamix,http://em.21dtv.com/songs/60003588.mkv +米卫强-岭上来,http://em.21dtv.com/songs/60129472.mkv +叶振棠-恋色龙,http://em.21dtv.com/songs/60027135.mkv +蓝沁-历史课,http://em.21dtv.com/songs/60092012.mkv +李宇春-留声机,http://em.21dtv.com/songs/60085395.mkv +老家+冷漠-留声机,http://em.21dtv.com/songs/60085394.mkv +女子十二乐坊-刘三姐,http://em.21dtv.com/songs/60027512.mkv +曾慧-洛水恨(戏曲),http://em.21dtv.com/songs/60092766.mkv +刘子豪-垄上行,http://em.21dtv.com/songs/60089670.mkv +林韦君-两生花,http://em.21dtv.com/songs/60083302.mkv +新街口组合-林书豪,http://em.21dtv.com/songs/60066124.mkv +巧千金-龙狮会,http://em.21dtv.com/songs/60027837.mkv +梁咏琪-两生花,http://em.21dtv.com/songs/60027294.mkv +郭颖桥-两生花,http://em.21dtv.com/songs/60027293.mkv +伍佰-雷射光,http://em.21dtv.com/songs/60090592.mkv +谢安琪-两生关,http://em.21dtv.com/songs/60088660.mkv +VARIOUS ARTISTS-lets go,http://em.21dtv.com/songs/60073503.mkv +4EVER-lets go,http://em.21dtv.com/songs/60071630.mkv +CALVIN HARRIS+NE YO-lets go,http://em.21dtv.com/songs/60067929.mkv +冷漠-临时工,http://em.21dtv.com/songs/60064482.mkv +陈小涛-娄山关,http://em.21dtv.com/songs/60027874.mkv +乩童秩序-雷射光(无原唱),http://em.21dtv.com/songs/60026502.mkv +李秋霞-老山歌,http://em.21dtv.com/songs/60026399.mkv +佚名-老山歌(无原唱),http://em.21dtv.com/songs/60026398.mkv +曾心梅-落山风,http://em.21dtv.com/songs/60028100.mkv +J. LEE-lets dance,http://em.21dtv.com/songs/60073501.mkv +李正-lets dance,http://em.21dtv.com/songs/60060854.mkv +韩磊-老司城,http://em.21dtv.com/songs/60123363.mkv +王丽达-老司城,http://em.21dtv.com/songs/60122984.mkv +王菲-lets coart,http://em.21dtv.com/songs/60073500.mkv +茅威涛+何赛飞-柳丝长,http://em.21dtv.com/songs/60027765.mkv +朱咪咪-柳丝长(演唱会),http://em.21dtv.com/songs/60027764.mkv +吴建豪-零时差,http://em.21dtv.com/songs/60027461.mkv +苏路-来森巴,http://em.21dtv.com/songs/60064447.mkv +佚名-lets stay awhile,http://em.21dtv.com/songs/60003377.mkv +张一山+张承+葛静-落日谣,http://em.21dtv.com/songs/60123910.mkv +张一山+张承+葛静-落日谣,http://em.21dtv.com/songs/60122702.mkv +软硬天师-老人院,http://em.21dtv.com/songs/60026397.mkv +软硬天师-老人院(演唱会),http://em.21dtv.com/songs/60026396.mkv +魏新雨-恋人心(HD),http://em.21dtv.com/songs/60134477.mkv +冉青霞-恋人心,http://em.21dtv.com/songs/60114402.mkv +陈伟霆-两人行(动画),http://em.21dtv.com/songs/60102871.mkv +魏新雨-恋人心,http://em.21dtv.com/songs/60101581.mkv +袁野-兰若寺,http://em.21dtv.com/songs/60105366.mkv +张继聪-离人泪(HD),http://em.21dtv.com/songs/10012784.mkv +张继聪-离人泪,http://em.21dtv.com/songs/60097058.mkv +平井坚-いつか离れる日が来ても,http://em.21dtv.com/songs/60082426.mkv +谢华-离人泪,http://em.21dtv.com/songs/60066113.mkv +刘斯远-路人甲,http://em.21dtv.com/songs/60132245.mkv +胡莎莎-离人劫,http://em.21dtv.com/songs/60119902.mkv +动力火车-路人甲,http://em.21dtv.com/songs/60027955.mkv +侧田-路人甲,http://em.21dtv.com/songs/60027954.mkv +蔡依林-离人节,http://em.21dtv.com/songs/60026783.mkv +陈思思-猎人魂(演唱会),http://em.21dtv.com/songs/60027377.mkv +佚名-老人河,http://em.21dtv.com/songs/60026394.mkv +童丽-伶人歌,http://em.21dtv.com/songs/60095335.mkv +陈麒安+杜忻恬-俩人份,http://em.21dtv.com/songs/60113079.mkv +刘亦菲-兰若词(演唱会),http://em.21dtv.com/songs/60067180.mkv +佚名-little red corvette,http://em.21dtv.com/songs/60003441.mkv +郑欣宜-懒人包,http://em.21dtv.com/songs/60129667.mkv +辛晓琪-恋人啊,http://em.21dtv.com/songs/60027125.mkv +郭桂彬-恋人啊,http://em.21dtv.com/songs/60027124.mkv +郑培钦-李清照,http://em.21dtv.com/songs/60112300.mkv +于彬-李清照,http://em.21dtv.com/songs/60093712.mkv +熊立红-李清照,http://em.21dtv.com/songs/60093691.mkv +叶复台-来去笑,http://em.21dtv.com/songs/60067179.mkv +TWINS-篮球舞,http://em.21dtv.com/songs/60092223.mkv +叶贝文-滥情人,http://em.21dtv.com/songs/60122567.mkv +欧阳菲菲-老情人,http://em.21dtv.com/songs/60026391.mkv +梅花雪-冷恰恰,http://em.21dtv.com/songs/60132644.mkv +赵大格-蓝旗袍,http://em.21dtv.com/songs/60115420.mkv +范晓萱-蓝旗袍,http://em.21dtv.com/songs/60083247.mkv +蔡琴-老曲盘,http://em.21dtv.com/songs/60026392.mkv +董事长乐团-蓝旗袍,http://em.21dtv.com/songs/60026067.mkv +蓝雨-恋千年,http://em.21dtv.com/songs/60027107.mkv +童安格-亮起来,http://em.21dtv.com/songs/60091800.mkv +詹雅雯-冷情泪,http://em.21dtv.com/songs/60076373.mkv +星弟-冷却了,http://em.21dtv.com/songs/60026611.mkv +詹雅雯-恋情海,http://em.21dtv.com/songs/60027109.mkv +吕方-老情歌,http://em.21dtv.com/songs/60127817.mkv +王星存-老情歌,http://em.21dtv.com/songs/60132732.mkv +秦浩-老情歌,http://em.21dtv.com/songs/60129453.mkv +叶诺帆+秀兰玛雅-老情歌,http://em.21dtv.com/songs/60127803.mkv +大鹏-烂情歌,http://em.21dtv.com/songs/60098225.mkv +陈思安-乱情歌(无原唱),http://em.21dtv.com/songs/60095996.mkv +黄义达-老情歌,http://em.21dtv.com/songs/60080581.mkv +陈升-老情歌,http://em.21dtv.com/songs/60064460.mkv +豪图+马丹-老情歌,http://em.21dtv.com/songs/60061356.mkv +吕方-老情歌,http://em.21dtv.com/songs/60026389.mkv +江蕙-老情歌,http://em.21dtv.com/songs/60026388.mkv +吕方-老情歌(演唱会),http://em.21dtv.com/songs/60026387.mkv +李茂山-老情歌(无原唱),http://em.21dtv.com/songs/60026386.mkv +詹雅雯-恋秋风,http://em.21dtv.com/songs/60027110.mkv +佚名-刘巧儿,http://em.21dtv.com/songs/60027511.mkv +孙燕姿-零缺点,http://em.21dtv.com/songs/60027460.mkv +董狄-六千尺,http://em.21dtv.com/songs/60132851.mkv +S.H.E-篮球场,http://em.21dtv.com/songs/60090426.mkv +小曾-老前辈,http://em.21dtv.com/songs/60026385.mkv +余天龙-老朋友,http://em.21dtv.com/songs/60121377.mkv +迪克牛仔-老朋友,http://em.21dtv.com/songs/60116272.mkv +李晓杰-老朋友,http://em.21dtv.com/songs/60114605.mkv +齐萧+梁坤-老朋友,http://em.21dtv.com/songs/60100690.mkv +韩雷-老朋友,http://em.21dtv.com/songs/60100636.mkv +杨尘+王旭-老朋友,http://em.21dtv.com/songs/60076352.mkv +张啸-老朋友,http://em.21dtv.com/songs/60061355.mkv +郑进一-老朋友,http://em.21dtv.com/songs/60026370.mkv +王识贤-老朋友,http://em.21dtv.com/songs/60026369.mkv +邰正宵-老朋友,http://em.21dtv.com/songs/60026368.mkv +七郎-老朋友,http://em.21dtv.com/songs/60026367.mkv +陈星-老朋友,http://em.21dtv.com/songs/60026366.mkv +马希尔-六盘山,http://em.21dtv.com/songs/60111527.mkv +革命歌-六盘山,http://em.21dtv.com/songs/60090307.mkv +陈熙杰-六盘山,http://em.21dtv.com/songs/60089533.mkv +阚杰+贾子菡-老婆说,http://em.21dtv.com/songs/60072133.mkv +岩宰仑-老仆瑁,http://em.21dtv.com/songs/60124811.mkv +刘沛洋-赖皮狗,http://em.21dtv.com/songs/60104836.mkv +加藤三+若旦那-lovers part 2,http://em.21dtv.com/songs/60073565.mkv +田一龙-老婆饼,http://em.21dtv.com/songs/60026376.mkv +谢莉婷-莲藕心,http://em.21dtv.com/songs/60086675.mkv +kelly Clarkson-low,http://em.21dtv.com/songs/60104695.mkv +彭也-Love Love Love,http://em.21dtv.com/songs/60100044.mkv +EXO M-Love Love Love,http://em.21dtv.com/songs/60099654.mkv +JTX-LOVE IN AMERICA,http://em.21dtv.com/songs/60096866.mkv +吴建豪-love over time,http://em.21dtv.com/songs/60084740.mkv +BEYONCE-love on top,http://em.21dtv.com/songs/60063668.mkv +SAYA-love oh oh,http://em.21dtv.com/songs/60003579.mkv +存在感-LONELY CHRISTMAS DAY,http://em.21dtv.com/songs/60096865.mkv +MICHAEL BOLTON-lean on me,http://em.21dtv.com/songs/60003302.mkv +BILL WITHERS-lean on me,http://em.21dtv.com/songs/60003301.mkv +Twins-LOL,http://em.21dtv.com/songs/60112468.mkv +佚名-love oh love,http://em.21dtv.com/songs/60003578.mkv +叫吠音乐联盟-light of life,http://em.21dtv.com/songs/60003404.mkv +佚名-lady of ice,http://em.21dtv.com/songs/60003264.mkv +樱桃帮-lie or die,http://em.21dtv.com/songs/60003388.mkv +ANASTACIA-left outside alone,http://em.21dtv.com/songs/60003318.mkv +洛天依+乐正绫-路怒症,http://em.21dtv.com/songs/60128177.mkv +陈慧琳-蓝女子,http://em.21dtv.com/songs/60026066.mkv +佚名-列宁山,http://em.21dtv.com/songs/60027358.mkv +吴彤-老牛声,http://em.21dtv.com/songs/60026365.mkv +张样-老男人,http://em.21dtv.com/songs/60131407.mkv +沈芳如-老男人(无原唱),http://em.21dtv.com/songs/60026364.mkv +ROB THOMAS-lonely no more,http://em.21dtv.com/songs/60073529.mkv +谭咏麟-蓝侬梦,http://em.21dtv.com/songs/60026065.mkv +LMF-la na la(演唱会),http://em.21dtv.com/songs/60003248.mkv +筷子兄弟+陈赫-老男孩,http://em.21dtv.com/songs/60118829.mkv +羽泉-老男孩),http://em.21dtv.com/songs/60072131.mkv +明圣凯-老男孩,http://em.21dtv.com/songs/60026363.mkv +筷子兄弟-老男孩,http://em.21dtv.com/songs/60026362.mkv +张惠妹-来闹的(演唱会),http://em.21dtv.com/songs/60063371.mkv +阿鲁阿卓-辣妹子,http://em.21dtv.com/songs/60106378.mkv +太阳部落-辣妹子,http://em.21dtv.com/songs/60097109.mkv +玖月奇迹-辣妹子(演唱会),http://em.21dtv.com/songs/60083242.mkv +苗苗-辣妹子,http://em.21dtv.com/songs/60081127.mkv +宋祖英-辣妹子,http://em.21dtv.com/songs/60025937.mkv +望海高歌-恋梅园,http://em.21dtv.com/songs/60104186.mkv +郑瑞芳-恋模样,http://em.21dtv.com/songs/60027104.mkv +何东-卢美汐,http://em.21dtv.com/songs/60085403.mkv +BEYOND+黄耀明-椤命舞,http://em.21dtv.com/songs/60095368.mkv +PLAN B-lost my way,http://em.21dtv.com/songs/60073539.mkv +弦子-浪漫窝,http://em.21dtv.com/songs/60026248.mkv +杨千嬅-light me up,http://em.21dtv.com/songs/60073510.mkv +龙梅子-泪满天,http://em.21dtv.com/songs/60111562.mkv +任妙音-love me tonight,http://em.21dtv.com/songs/60071633.mkv +佚名-love me tender,http://em.21dtv.com/songs/60003568.mkv +エルヴイス.プレスリ-love me tender(无原唱),http://em.21dtv.com/songs/60003567.mkv +汤灿-莲美人,http://em.21dtv.com/songs/60026953.mkv +R.E.M-losing my religion,http://em.21dtv.com/songs/60003498.mkv +何炎吉-老母亲,http://em.21dtv.com/songs/60110840.mkv +李娜-老门牌,http://em.21dtv.com/songs/60026361.mkv +佚名-lead me on,http://em.21dtv.com/songs/60003298.mkv +豹小子-love me now,http://em.21dtv.com/songs/60003564.mkv +肖亮-老妈妈,http://em.21dtv.com/songs/60111358.mkv +王红涛-林妹妹,http://em.21dtv.com/songs/60081401.mkv +YOUNG JEEZY-lose my mind,http://em.21dtv.com/songs/60060859.mkv +郑钧-路漫漫(演唱会),http://em.21dtv.com/songs/60027950.mkv +胡彦斌-林妹妹,http://em.21dtv.com/songs/60027388.mkv +THE WANTED-lose my mind,http://em.21dtv.com/songs/60003496.mkv +JUSTIN BIEBER-live my life,http://em.21dtv.com/songs/60066675.mkv +麦浚龙+软硬天师-林民龙,http://em.21dtv.com/songs/60027389.mkv +FAITH HILL+TIM MCGR-lets make love,http://em.21dtv.com/songs/60003372.mkv +念念不忘-廖孟君,http://em.21dtv.com/songs/60111109.mkv +蔡依林-lets move it,http://em.21dtv.com/songs/60003373.mkv +石文-腊梅花,http://em.21dtv.com/songs/60097092.mkv +郑志立-落幕后,http://em.21dtv.com/songs/60094721.mkv +张善为-浪漫号,http://em.21dtv.com/songs/60026238.mkv +AVRIL LAVIGNE+CHAD KROEGER-let me go,http://em.21dtv.com/songs/60086350.mkv +海生-蓝玫瑰,http://em.21dtv.com/songs/60076314.mkv +MAVERICK SABRE-let me go,http://em.21dtv.com/songs/60073497.mkv +张学友-let me go,http://em.21dtv.com/songs/60003343.mkv +廖芊芊-老磨坊,http://em.21dtv.com/songs/60110181.mkv +吴彤-let me fly,http://em.21dtv.com/songs/60073495.mkv +KOTOKO-light my fire,http://em.21dtv.com/songs/60063659.mkv +麻吉弟弟-let me free,http://em.21dtv.com/songs/60003341.mkv +刘维-撩妹儿,http://em.21dtv.com/songs/60132252.mkv +佚名-love me do(演唱会),http://em.21dtv.com/songs/60003561.mkv +チャン.グンソク-let me cry,http://em.21dtv.com/songs/60073493.mkv +陈思彤-李莫愁,http://em.21dtv.com/songs/60026864.mkv +UP GIRLS-love me boy,http://em.21dtv.com/songs/60003560.mkv +DESTINY'S CHILD-lose my breath,http://em.21dtv.com/songs/60003495.mkv +BRITNEY SPEARS-let me be,http://em.21dtv.com/songs/60003338.mkv +江语晨-浪漫爱(无原唱),http://em.21dtv.com/songs/60026230.mkv +孙燕姿-leave me alone,http://em.21dtv.com/songs/60003308.mkv +ENERGY-leave me alone,http://em.21dtv.com/songs/60003307.mkv +孙燕姿-leave me alone(演唱会),http://em.21dtv.com/songs/60003306.mkv +X+DREAM-leave me alone(无原唱),http://em.21dtv.com/songs/60003305.mkv +亦心-玲珑盏,http://em.21dtv.com/songs/60127725.mkv +张柏芝-联络站,http://em.21dtv.com/songs/60092639.mkv +郑少秋-轮流转,http://em.21dtv.com/songs/60028017.mkv +郑少秋-轮流转(演唱会),http://em.21dtv.com/songs/60028016.mkv +侯旭-鲁丽娅,http://em.21dtv.com/songs/60027906.mkv +杨幂+君君-琉璃月,http://em.21dtv.com/songs/60027754.mkv +庆庆-玲珑心,http://em.21dtv.com/songs/60129051.mkv +THE READY-love like woe,http://em.21dtv.com/songs/60003546.mkv +卓亚君-洛丽塔,http://em.21dtv.com/songs/60028045.mkv +深南大道-聊聊天,http://em.21dtv.com/songs/60027350.mkv +佚名-联络图,http://em.21dtv.com/songs/60026960.mkv +孙扬杰-老楼梯,http://em.21dtv.com/songs/60026359.mkv +贾立怡-蓝蓝天,http://em.21dtv.com/songs/60026062.mkv +佚名-long long time,http://em.21dtv.com/songs/60003477.mkv +郝云+唐宁+金天-姥姥说,http://em.21dtv.com/songs/60118969.mkv +郑源-琉璃锁,http://em.21dtv.com/songs/60103625.mkv +MIKE POSNER-looks like sex,http://em.21dtv.com/songs/60082238.mkv +邓雯心-啦啦嗦(演唱会),http://em.21dtv.com/songs/60069550.mkv +雷佳-吕梁颂,http://em.21dtv.com/songs/60028131.mkv +江蕙-老乐师,http://em.21dtv.com/songs/60026354.mkv +Angelababy-绿罗裙,http://em.21dtv.com/songs/60114320.mkv +尤国通-邻里情,http://em.21dtv.com/songs/60104978.mkv +黎明-流流情,http://em.21dtv.com/songs/60093567.mkv +杨子-琉璃梦,http://em.21dtv.com/songs/60101113.mkv +陆虎-聋累闷,http://em.21dtv.com/songs/60080233.mkv +蔡幸娟-乱乱梦(无原唱),http://em.21dtv.com/songs/60027992.mkv +爱乐公社-流浪猫,http://em.21dtv.com/songs/60027670.mkv +张国荣-love like magic,http://em.21dtv.com/songs/60003545.mkv +王荣德-来来来,http://em.21dtv.com/songs/60121945.mkv +关楚耀+自由发挥-狼来了,http://em.21dtv.com/songs/60109998.mkv +汪峰-啦啦啦,http://em.21dtv.com/songs/60102447.mkv +孙淑媚-啦啦啦,http://em.21dtv.com/songs/60095506.mkv +高瑜-啦啦啦,http://em.21dtv.com/songs/60080148.mkv +申宰-流泪了,http://em.21dtv.com/songs/60076472.mkv +王舒珂-狼来了,http://em.21dtv.com/songs/60076324.mkv +钟洁-啦啦啦,http://em.21dtv.com/songs/60076302.mkv +淑熙-啦啦啦,http://em.21dtv.com/songs/60076301.mkv +钟嘉欣-love love love,http://em.21dtv.com/songs/60073555.mkv +MGK-la la la,http://em.21dtv.com/songs/60073472.mkv +张秀卿-辣辣辣,http://em.21dtv.com/songs/60072124.mkv +IVI ADAMOU-la la love,http://em.21dtv.com/songs/60071621.mkv +张文绮-乱乱乱,http://em.21dtv.com/songs/60070895.mkv +AVALANCHE CITY-love love love,http://em.21dtv.com/songs/60070369.mkv +肖玄-啦啦啦,http://em.21dtv.com/songs/60067175.mkv +陈奕迅-狼来了(演唱会),http://em.21dtv.com/songs/60064454.mkv +欧阳靖-立立乱,http://em.21dtv.com/songs/60062794.mkv +HEORA-love love love,http://em.21dtv.com/songs/60062041.mkv +MIGHTY MOUTH-la la la,http://em.21dtv.com/songs/60060850.mkv +李威-六六六,http://em.21dtv.com/songs/60027781.mkv +梁汉文-六六六(演唱会),http://em.21dtv.com/songs/60027780.mkv +佚名-恋恋恋,http://em.21dtv.com/songs/60027097.mkv +叶启田-恋恋恋,http://em.21dtv.com/songs/60027096.mkv +陈雷-恋恋恋,http://em.21dtv.com/songs/60027095.mkv +杨千嬅-狼来了,http://em.21dtv.com/songs/60026202.mkv +杨丞琳-狼来了,http://em.21dtv.com/songs/60026201.mkv +杨千嬅-狼来了(演唱会),http://em.21dtv.com/songs/60026199.mkv +杨千嬅-郎来了,http://em.21dtv.com/songs/60026181.mkv +HAPPY 543-来来来(无原唱),http://em.21dtv.com/songs/60025979.mkv +谢东-啦啦啦,http://em.21dtv.com/songs/60025928.mkv +李秀英-啦啦啦,http://em.21dtv.com/songs/60025927.mkv +SE7EN-啦啦啦,http://em.21dtv.com/songs/60025926.mkv +彭佳慧-啦啦啦(演唱会),http://em.21dtv.com/songs/60025925.mkv +李秀英-啦啦啦(演唱会),http://em.21dtv.com/songs/60025924.mkv +童唱-拉拉路,http://em.21dtv.com/songs/60025905.mkv +王力宏-love love love,http://em.21dtv.com/songs/60003555.mkv +柯以敏-love love love,http://em.21dtv.com/songs/60003554.mkv +江若琳-love love love,http://em.21dtv.com/songs/60003553.mkv +蔡依林-love love love,http://em.21dtv.com/songs/60003552.mkv +JAMES BLUNT-love love love,http://em.21dtv.com/songs/60003551.mkv +F.I.R-love love love,http://em.21dtv.com/songs/60003550.mkv +EPIK HIGH-love love love,http://em.21dtv.com/songs/60003549.mkv +AFTER SCHOOL-love love love,http://em.21dtv.com/songs/60003548.mkv +谢娜-ling ling ling,http://em.21dtv.com/songs/60003421.mkv +朱孝天-la la la,http://em.21dtv.com/songs/60003239.mkv +脱拉库+卢巧音-la la la,http://em.21dtv.com/songs/60003238.mkv +SWING OUT SISTER-la la la,http://em.21dtv.com/songs/60003237.mkv +BIGBANG-la la la,http://em.21dtv.com/songs/60003236.mkv +SE7EN-la la la,http://em.21dtv.com/songs/60003235.mkv +范小倩-恋恋看,http://em.21dtv.com/songs/60120900.mkv +陈小春-老k脸,http://em.21dtv.com/songs/60026317.mkv +华晨宇-流浪记,http://em.21dtv.com/songs/60127788.mkv +平安-流浪记,http://em.21dtv.com/songs/60117706.mkv +家家-流浪记,http://em.21dtv.com/songs/60117682.mkv +萧敬腾+龚泽艺-流浪记,http://em.21dtv.com/songs/60112927.mkv +谢安琪+吉克隽逸-流浪记,http://em.21dtv.com/songs/60097063.mkv +迪子-流浪记,http://em.21dtv.com/songs/60097062.mkv +张捷+李祥祥-流浪记,http://em.21dtv.com/songs/60085392.mkv +李祥祥-流浪记,http://em.21dtv.com/songs/60081344.mkv +汤非-流浪记,http://em.21dtv.com/songs/60081157.mkv +杨宗纬-流浪记,http://em.21dtv.com/songs/60076471.mkv +纪晓君-流浪记,http://em.21dtv.com/songs/60027669.mkv +郭宴-蓝莲花,http://em.21dtv.com/songs/60135833.mkv +林忆莲-蓝莲花,http://em.21dtv.com/songs/60133873.mkv +字金美-蓝莲花,http://em.21dtv.com/songs/60121563.mkv +谭维维-蓝莲花,http://em.21dtv.com/songs/60114071.mkv +阿鲁阿卓+山风组合-蓝莲花,http://em.21dtv.com/songs/60112339.mkv +杨坤+旦增尼玛-蓝莲花,http://em.21dtv.com/songs/60112010.mkv +张恒远+赵晗-蓝莲花,http://em.21dtv.com/songs/60085345.mkv +水琉璃-琉璃海,http://em.21dtv.com/songs/60027753.mkv +吕方-流浪花,http://em.21dtv.com/songs/60027668.mkv +吕方-流浪花(演唱会),http://em.21dtv.com/songs/60027667.mkv +任贤齐-流浪汉,http://em.21dtv.com/songs/60027665.mkv +许巍-蓝莲花,http://em.21dtv.com/songs/60026064.mkv +许巍-蓝莲花(演唱会),http://em.21dtv.com/songs/60026063.mkv +樊少华-拉拉呱,http://em.21dtv.com/songs/60116978.mkv +罗桦-流浪歌(演唱会),http://em.21dtv.com/songs/60076470.mkv +游鸿明-流浪狗,http://em.21dtv.com/songs/60027664.mkv +李泉+范晓萱-流浪狗,http://em.21dtv.com/songs/60027663.mkv +黄立行-流浪狗,http://em.21dtv.com/songs/60027662.mkv +李泉-流浪狗(演唱会),http://em.21dtv.com/songs/60027661.mkv +卓依婷-流浪歌,http://em.21dtv.com/songs/60027659.mkv +陈星-流浪歌,http://em.21dtv.com/songs/60027658.mkv +阿牛-来来歌,http://em.21dtv.com/songs/60025976.mkv +黄磊-啦啦歌,http://em.21dtv.com/songs/60025922.mkv +巧千金-拉拉钩,http://em.21dtv.com/songs/60025904.mkv +卓依婷-流浪儿,http://em.21dtv.com/songs/60061933.mkv +动力火车-乱乱的,http://em.21dtv.com/songs/60090737.mkv +PAUL MCCARTNEY-live let die(无原唱),http://em.21dtv.com/songs/60003444.mkv +伊然-兰陵辞,http://em.21dtv.com/songs/60125113.mkv +哈泊力夫-勒勒车,http://em.21dtv.com/songs/60122612.mkv +巴西瓦里-老老车,http://em.21dtv.com/songs/60086667.mkv +许嵩-乱乱唱,http://em.21dtv.com/songs/60027991.mkv +蔡小虎-流恋草(无原唱),http://em.21dtv.com/songs/60027704.mkv +林峰-lfx 6 8(演唱会),http://em.21dtv.com/songs/60073506.mkv +尹光-李老板(演唱会),http://em.21dtv.com/songs/60061364.mkv +徐佳莹-莉莉安,http://em.21dtv.com/songs/60118580.mkv +孟小笛^祁隆-啦啦爱,http://em.21dtv.com/songs/60105763.mkv +孟小笛+祁隆-啦啦爱,http://em.21dtv.com/songs/60103204.mkv +宋冬野-莉莉安,http://em.21dtv.com/songs/60086672.mkv +SUPER131-浏览爱,http://em.21dtv.com/songs/60072160.mkv +邵雨涵-拉拉爱,http://em.21dtv.com/songs/60025902.mkv +佚名-long long ago,http://em.21dtv.com/songs/60003476.mkv +TWINS-long long ago,http://em.21dtv.com/songs/60003475.mkv +梁智琨-两颗心,http://em.21dtv.com/songs/60108637.mkv +吃瓜群众代表-离开我,http://em.21dtv.com/songs/60127805.mkv +刘斯远-离开我,http://em.21dtv.com/songs/60119297.mkv +陶晶莹-离开我,http://em.21dtv.com/songs/60026762.mkv +方瑞娥-离开我,http://em.21dtv.com/songs/60026761.mkv +曾航生-离开我,http://em.21dtv.com/songs/60026760.mkv +S.H.E+凡人-离开我,http://em.21dtv.com/songs/60026759.mkv +黄品冠-离开我(演唱会),http://em.21dtv.com/songs/60026758.mkv +苏平生-留客调,http://em.21dtv.com/songs/60126104.mkv +袁志伟-离开你,http://em.21dtv.com/songs/60026739.mkv +唐文龙-离开你,http://em.21dtv.com/songs/60026738.mkv +孔令奇-来看你,http://em.21dtv.com/songs/60025975.mkv +朴宝英-离开了,http://em.21dtv.com/songs/60113608.mkv +康康-离开了,http://em.21dtv.com/songs/60026734.mkv +李谷一+彭宇+马可-唠嗑歌,http://em.21dtv.com/songs/60117824.mkv +彝人制造+曲比阿乌-留客歌,http://em.21dtv.com/songs/60098380.mkv +辛子奇-冷咖啡,http://em.21dtv.com/songs/60026591.mkv +李圣杰-冷咖啡,http://em.21dtv.com/songs/60026590.mkv +恩施民歌-六口茶,http://em.21dtv.com/songs/60062341.mkv +思涵CSHA-泪狂奔,http://em.21dtv.com/songs/60026542.mkv +王凯骏+扈佳荣-拉锯战,http://em.21dtv.com/songs/60064444.mkv +刘捷-绿军装,http://em.21dtv.com/songs/60028172.mkv +白致瑶-漓江月,http://em.21dtv.com/songs/60117084.mkv +张也-龙江源,http://em.21dtv.com/songs/60094092.mkv +罗宁娜-漓江谣,http://em.21dtv.com/songs/60026827.mkv +邱淑君-泪甲雨(无原唱),http://em.21dtv.com/songs/60026536.mkv +机动现场-零极限,http://em.21dtv.com/songs/60064484.mkv +阎维文-丽江行,http://em.21dtv.com/songs/60026917.mkv +A-LIN-lin 极限,http://em.21dtv.com/songs/60003417.mkv +俊倩-了解我,http://em.21dtv.com/songs/60101258.mkv +严爵-垃圾桶,http://em.21dtv.com/songs/60117526.mkv +傅佩嘉-垃圾筒,http://em.21dtv.com/songs/60092297.mkv +王识贤-老吉他,http://em.21dtv.com/songs/60026347.mkv +八三夭-老教室,http://em.21dtv.com/songs/60115008.mkv +群星-流金颂(演唱会),http://em.21dtv.com/songs/60027611.mkv +杨千嬅-炼金术,http://em.21dtv.com/songs/60026980.mkv +董事长乐团-乐介烧,http://em.21dtv.com/songs/60026464.mkv +宋祖英-漓江情,http://em.21dtv.com/songs/60117675.mkv +张伟文-漓江曲(演唱会),http://em.21dtv.com/songs/60026826.mkv +NO NAME-この泪を君に捧ぐ,http://em.21dtv.com/songs/60082428.mkv +赵真+周彬-漓江美,http://em.21dtv.com/songs/60118940.mkv +杨丽-俩姐妹,http://em.21dtv.com/songs/60094159.mkv +钰涵-丽江梦,http://em.21dtv.com/songs/60081247.mkv +曾雨轩-丽江恋,http://em.21dtv.com/songs/60131483.mkv +陈慧琳-零距离,http://em.21dtv.com/songs/60027458.mkv +王艺帆-烂借口,http://em.21dtv.com/songs/60105256.mkv +方力申-零借口,http://em.21dtv.com/songs/60027456.mkv +王烿-冷纠结,http://em.21dtv.com/songs/60106113.mkv +邬祯琳-琳俊杰,http://em.21dtv.com/songs/60083306.mkv +圈圈-亮晶晶,http://em.21dtv.com/songs/60076439.mkv +中国娃娃-亮晶晶,http://em.21dtv.com/songs/60027341.mkv +古巨基-亮晶晶(演唱会),http://em.21dtv.com/songs/60027340.mkv +黑龙-老江湖,http://em.21dtv.com/songs/60076349.mkv +徐沛东-辣椒歌(民歌无原唱),http://em.21dtv.com/songs/60089885.mkv +邓紫棋-龙卷风,http://em.21dtv.com/songs/60098801.mkv +罗时丰-龙卷风,http://em.21dtv.com/songs/60076496.mkv +周杰伦-龙卷风,http://em.21dtv.com/songs/60027832.mkv +叶启田-龙卷风,http://em.21dtv.com/songs/60027831.mkv +周杰伦-龙卷风(演唱会),http://em.21dtv.com/songs/60027830.mkv +林忆莲-龙卷风(演唱会),http://em.21dtv.com/songs/60027829.mkv +尹相杰-老街坊,http://em.21dtv.com/songs/60026352.mkv +MR.S乐团-临界点,http://em.21dtv.com/songs/60128690.mkv +何勇-垃圾场,http://em.21dtv.com/songs/60087300.mkv +五月天-垃圾车,http://em.21dtv.com/songs/60025892.mkv +黄大炜-冷肩膀,http://em.21dtv.com/songs/60026584.mkv +JENNIFER LOPEZ+PITBULL-live it up,http://em.21dtv.com/songs/60082237.mkv +TULISA+TYGA-live it up,http://em.21dtv.com/songs/60073522.mkv +佚名-love is surrender,http://em.21dtv.com/songs/60003538.mkv +FLO RIDA-let it roll,http://em.21dtv.com/songs/60073492.mkv +佚名-lady in red,http://em.21dtv.com/songs/60003256.mkv +1SAGAIN-love is over,http://em.21dtv.com/songs/60073554.mkv +陈奕迅-let it out,http://em.21dtv.com/songs/60073491.mkv +SECRET-love is move,http://em.21dtv.com/songs/60073553.mkv +佚名-life in mono,http://em.21dtv.com/songs/60003394.mkv +SHERRIE AUSTIN-lucky in love,http://em.21dtv.com/songs/60073570.mkv +少女时代-lost in love,http://em.21dtv.com/songs/60073536.mkv +佚名-love is love,http://em.21dtv.com/songs/60003537.mkv +佚名-love i lost,http://em.21dtv.com/songs/60003526.mkv +AIR SUPPLY-lost in love(演唱会),http://em.21dtv.com/songs/60003502.mkv +金孝琳-Let It Go,http://em.21dtv.com/songs/60099554.mkv +猴子飞行员-let it go,http://em.21dtv.com/songs/60073490.mkv +ALEXANDRA BURKE-let it go,http://em.21dtv.com/songs/60067928.mkv +HEO YOUNG SAENG-let it go,http://em.21dtv.com/songs/60062040.mkv +许永生-let it go,http://em.21dtv.com/songs/60060852.mkv +DAVID GUETTA-love is gone,http://em.21dtv.com/songs/60003536.mkv +元卫觉醒-let it go,http://em.21dtv.com/songs/60003330.mkv +伊藤由奈-let it go,http://em.21dtv.com/songs/60003329.mkv +萧亚轩-let it go,http://em.21dtv.com/songs/60003328.mkv +萧亚轩-let it go(演唱会),http://em.21dtv.com/songs/60003327.mkv +ELI YOUNG BAND-Life At Best,http://em.21dtv.com/songs/60099653.mkv +SHERYL CROW-love is free,http://em.21dtv.com/songs/60003535.mkv +李乐诗-love is forever,http://em.21dtv.com/songs/60003534.mkv +周笔畅-Lie,http://em.21dtv.com/songs/60116659.mkv +MCFLY-love is easy,http://em.21dtv.com/songs/60073552.mkv +佚名-love is everywhere,http://em.21dtv.com/songs/60003533.mkv +SANDER VAN DOORN+CAROL LEE-love is darkness,http://em.21dtv.com/songs/60073551.mkv +ACE OF BASE-living in danger,http://em.21dtv.com/songs/60003449.mkv +SWEETBOX-life is cool(演唱会),http://em.21dtv.com/songs/60066666.mkv +JAHMENE DOUGLAS-let it be(演唱会),http://em.21dtv.com/songs/60073489.mkv +JOHNNY MATHIS-love is blue,http://em.21dtv.com/songs/60003532.mkv +李宇春-let it be,http://em.21dtv.com/songs/60003326.mkv +关智斌-let it be,http://em.21dtv.com/songs/60003325.mkv +THE BEATLES-let it be,http://em.21dtv.com/songs/60003324.mkv +佚名-la isla bonita,http://em.21dtv.com/songs/60003231.mkv +苏运莹-蓝孩子,http://em.21dtv.com/songs/60135676.mkv +金润吉-兰花指,http://em.21dtv.com/songs/60122195.mkv +金润吉-兰花指,http://em.21dtv.com/songs/60114149.mkv +阿男-兰花指,http://em.21dtv.com/songs/60108964.mkv +阿里郎-兰花指,http://em.21dtv.com/songs/60096528.mkv +林俊杰-乐行者,http://em.21dtv.com/songs/60091431.mkv +河静静-猎户座,http://em.21dtv.com/songs/60027374.mkv +佚名-李后主,http://em.21dtv.com/songs/60026857.mkv +谢安琪-兰花指,http://em.21dtv.com/songs/60026040.mkv +红蔷薇-梨花雨,http://em.21dtv.com/songs/60121993.mkv +山子华-恋红叶,http://em.21dtv.com/songs/60115130.mkv +蒋蒋-落花雨,http://em.21dtv.com/songs/60112940.mkv +阿文-梨花缘,http://em.21dtv.com/songs/60106375.mkv +武张春媛-怜花吟,http://em.21dtv.com/songs/60094195.mkv +湘齐萌-梨花雨,http://em.21dtv.com/songs/60093678.mkv +闫学晶-蓝河怨,http://em.21dtv.com/songs/60070862.mkv +张继聪-莲花雨,http://em.21dtv.com/songs/60026952.mkv +李国毅+张继聪-莲花雨,http://em.21dtv.com/songs/60026951.mkv +风林火山乐团-梨花香,http://em.21dtv.com/songs/60085365.mkv +高向鹏+邱淑君+傅振辉-莲花心(无原唱),http://em.21dtv.com/songs/60026950.mkv +李宇春-梨花香,http://em.21dtv.com/songs/60026816.mkv +尹光-龙咁威(演唱会),http://em.21dtv.com/songs/60076495.mkv +钟汉良-乱好玩,http://em.21dtv.com/songs/60027986.mkv +莫艳琳-蓝海豚,http://em.21dtv.com/songs/60108863.mkv +许椿苗-莲花颂,http://em.21dtv.com/songs/60127394.mkv +文婷-兰辉颂,http://em.21dtv.com/songs/60123991.mkv +七朵组合-梨花瘦,http://em.21dtv.com/songs/60115656.mkv +晓月-龙虎山,http://em.21dtv.com/songs/60109398.mkv +灵魂心声-落花碎,http://em.21dtv.com/songs/60104293.mkv +王莉-梨花颂,http://em.21dtv.com/songs/60076376.mkv +储兰兰-梨花颂(演唱会),http://em.21dtv.com/songs/60076375.mkv +李玉刚-梨花颂(演唱会),http://em.21dtv.com/songs/60026815.mkv +陈威全-滥好人,http://em.21dtv.com/songs/60068416.mkv +杨静-落花情,http://em.21dtv.com/songs/60135418.mkv +吴树雄-老华侨,http://em.21dtv.com/songs/60122588.mkv +刘紫玲-梨花情,http://em.21dtv.com/songs/60105644.mkv +春天-梨花情,http://em.21dtv.com/songs/60096325.mkv +马雨贤-零花钱,http://em.21dtv.com/songs/60088986.mkv +刘紫玲-梨花情,http://em.21dtv.com/songs/60083278.mkv +七朵组合-落花情,http://em.21dtv.com/songs/60076532.mkv +火雅-梨花情,http://em.21dtv.com/songs/60067193.mkv +林翠萍-落花情,http://em.21dtv.com/songs/60028080.mkv +李碧华-落花情,http://em.21dtv.com/songs/60028079.mkv +凤飞飞-落花情,http://em.21dtv.com/songs/60028078.mkv +潘迪华-兰花女(演唱会),http://em.21dtv.com/songs/60026037.mkv +叶洛洛-梨花凉,http://em.21dtv.com/songs/60134993.mkv +筱筱-梨花落,http://em.21dtv.com/songs/60130638.mkv +高胜美-梨花泪,http://em.21dtv.com/songs/60121166.mkv +霍尊-梨花落,http://em.21dtv.com/songs/60120123.mkv +何晟铭-厉害了,http://em.21dtv.com/songs/60085374.mkv +翁立友+黄思婷-落花泪,http://em.21dtv.com/songs/60076531.mkv +龙千玉+蔡小虎-落花泪,http://em.21dtv.com/songs/60028070.mkv +于樱樱-梨花泪,http://em.21dtv.com/songs/60026812.mkv +[Group] +groupName=十六万歌曲MV等 - 26 +李翊君-梨花泪,http://em.21dtv.com/songs/60026811.mkv +李茂山-梨花泪,http://em.21dtv.com/songs/60026810.mkv +阿吉仔-梨花泪,http://em.21dtv.com/songs/60026809.mkv +杨孟茜-莲花开,http://em.21dtv.com/songs/60121800.mkv +马智宇-莲花开,http://em.21dtv.com/songs/60110702.mkv +央吉玛-莲花开,http://em.21dtv.com/songs/60081424.mkv +RHYTHMIC-恋花koihana,http://em.21dtv.com/songs/60076415.mkv +杨柳+高歌+秦天-陆海空,http://em.21dtv.com/songs/60027908.mkv +李志洲-老伙计,http://em.21dtv.com/songs/60121774.mkv +颜佳-菱花镜,http://em.21dtv.com/songs/60027444.mkv +李悦君-菱花镜,http://em.21dtv.com/songs/60027443.mkv +童唱-老黑爵,http://em.21dtv.com/songs/60026344.mkv +崔苗-兰花花,http://em.21dtv.com/songs/60123870.mkv +杨竹青-蓝花花,http://em.21dtv.com/songs/60089354.mkv +张也-兰花花,http://em.21dtv.com/songs/60089263.mkv +阿宝-兰花花,http://em.21dtv.com/songs/60066104.mkv +沙莎-蓝花花(演唱会),http://em.21dtv.com/songs/60064449.mkv +LITY林天伟-恋杭湖,http://em.21dtv.com/songs/60027084.mkv +彭丽媛-蓝花花,http://em.21dtv.com/songs/60026050.mkv +汤灿-兰花花,http://em.21dtv.com/songs/60026036.mkv +宋大官-流行歌,http://em.21dtv.com/songs/60099953.mkv +PASSENGER-let her go,http://em.21dtv.com/songs/60082227.mkv +古巨基-恋后感,http://em.21dtv.com/songs/60068438.mkv +曾文靖-老虎鼓,http://em.21dtv.com/songs/60026345.mkv +晓枫-梨花赋,http://em.21dtv.com/songs/60115196.mkv +陈瑞-落花飞,http://em.21dtv.com/songs/60076530.mkv +许志安-灵魂道,http://em.21dtv.com/songs/60134222.mkv +许志安-灵魂道,http://em.21dtv.com/songs/60129607.mkv +陈诗慧-蓝蝴蝶,http://em.21dtv.com/songs/60117356.mkv +冰琳-泪蝴蝶,http://em.21dtv.com/songs/60068429.mkv +祁隆+彭丽嘉-恋红尘,http://em.21dtv.com/songs/60127242.mkv +陈美慧-恋红尘,http://em.21dtv.com/songs/60114874.mkv +陈美惠-恋红尘,http://em.21dtv.com/songs/60114225.mkv +包美圣-兰花草(风景),http://em.21dtv.com/songs/60101996.mkv +朱桦-兰花草,http://em.21dtv.com/songs/60089332.mkv +侃侃-兰花草,http://em.21dtv.com/songs/60086662.mkv +陈德彰-兰花草(演唱会),http://em.21dtv.com/songs/60083252.mkv +向天问-蓝魂草,http://em.21dtv.com/songs/60064450.mkv +莫旭秋-兰花草(演唱会),http://em.21dtv.com/songs/60064448.mkv +卓依婷-兰花草,http://em.21dtv.com/songs/60026035.mkv +银霞-兰花草,http://em.21dtv.com/songs/60026034.mkv +叶倩文-兰花草,http://em.21dtv.com/songs/60026033.mkv +叶倩文-兰花草(演唱会),http://em.21dtv.com/songs/60026032.mkv +叶倩文+陈奕迅-兰花草(演唱会),http://em.21dtv.com/songs/60026031.mkv +黄格选-兰花草(演唱会),http://em.21dtv.com/songs/60026030.mkv +童唱-兰花草(无原唱),http://em.21dtv.com/songs/60026029.mkv +陈瑞-梨花白,http://em.21dtv.com/songs/60115507.mkv +ON OFF-轮回-ロンド,http://em.21dtv.com/songs/60083323.mkv +于晓光-两个字,http://em.21dtv.com/songs/60133338.mkv +中央少年广播合唱团-卢沟谣,http://em.21dtv.com/songs/60083317.mkv +操玥-老高原,http://em.21dtv.com/songs/60083261.mkv +刘尊-老鬼谣,http://em.21dtv.com/songs/60026343.mkv +童唱-离故乡,http://em.21dtv.com/songs/60026691.mkv +陈茂丰-拢怪我,http://em.21dtv.com/songs/60135943.mkv +汪明荃-郎归晚(演唱会),http://em.21dtv.com/songs/60026180.mkv +林峰-lets get wet,http://em.21dtv.com/songs/60003364.mkv +安雯-揽工调,http://em.21dtv.com/songs/60090948.mkv +东山少爷-六个三,http://em.21dtv.com/songs/60120273.mkv +佚名-老歌手,http://em.21dtv.com/songs/60026338.mkv +陈威全-两个人,http://em.21dtv.com/songs/60100575.mkv +房祖名-两个人,http://em.21dtv.com/songs/60094132.mkv +李荣浩-两个人,http://em.21dtv.com/songs/60085385.mkv +陈柔希+FEAT.滕少-两个人,http://em.21dtv.com/songs/60076425.mkv +蔡妍-俩个人(演唱会),http://em.21dtv.com/songs/60027324.mkv +淑惠+美娜-两个人,http://em.21dtv.com/songs/60027235.mkv +郭品超-两个人,http://em.21dtv.com/songs/60027234.mkv +陈慧琳-两个人,http://em.21dtv.com/songs/60027233.mkv +蔡妍-两个人,http://em.21dtv.com/songs/60027232.mkv +1983-两个人,http://em.21dtv.com/songs/60027231.mkv +淑惠+美娜-两个人(无原唱),http://em.21dtv.com/songs/60027230.mkv +黎安莱姆丝-life goes on,http://em.21dtv.com/songs/60003392.mkv +CHEMISTRY-life goes on,http://em.21dtv.com/songs/60003391.mkv +DRAGON ASH-life goes on(无原唱),http://em.21dtv.com/songs/60003390.mkv +姚贝娜-两个你,http://em.21dtv.com/songs/60115774.mkv +陈幸子-老姑娘,http://em.21dtv.com/songs/60083263.mkv +陈幸子+于金胜-老姑娘,http://em.21dtv.com/songs/60083262.mkv +佚名-六个梦,http://em.21dtv.com/songs/60027778.mkv +群星-六个梦,http://em.21dtv.com/songs/60027777.mkv +佚名-lets get married(无原唱),http://em.21dtv.com/songs/60003363.mkv +王宁-梨嘎乐,http://em.21dtv.com/songs/60124250.mkv +JENNIFER LOPEZ-lets get loud,http://em.21dtv.com/songs/60003362.mkv +顺子-灵感inspiration,http://em.21dtv.com/songs/60027412.mkv +拉卡飞琅-泸沽湖,http://em.21dtv.com/songs/60096306.mkv +西狂-老光杆,http://em.21dtv.com/songs/60116239.mkv +李丹阳-拉歌歌,http://em.21dtv.com/songs/60025898.mkv +庞龙-拉歌歌(演唱会),http://em.21dtv.com/songs/60025897.mkv +林泰燊-离歌赋,http://em.21dtv.com/songs/60069561.mkv +ALESHA DIXON-lets get excited,http://em.21dtv.com/songs/60003360.mkv +SUPER JUNIOR+T-来过倒,http://em.21dtv.com/songs/60025974.mkv +陈宝欣-离歌愁,http://em.21dtv.com/songs/60106394.mkv +GIRLS ALOUD-life got cold,http://em.21dtv.com/songs/60003393.mkv +佚名-lets get blown,http://em.21dtv.com/songs/60003359.mkv +东来东往-路过爱,http://em.21dtv.com/songs/60027940.mkv +刘和刚-老房子,http://em.21dtv.com/songs/60134926.mkv +盖然-老房子,http://em.21dtv.com/songs/60076341.mkv +赵姝-罗非鱼,http://em.21dtv.com/songs/60101179.mkv +BOYZONE-lost for words,http://em.21dtv.com/songs/60003500.mkv +孙浩雨-冷风沙,http://em.21dtv.com/songs/60110980.mkv +DIDO-life for rent,http://em.21dtv.com/songs/60003389.mkv +祁隆-老父亲,http://em.21dtv.com/songs/60131705.mkv +傅羽-老父亲,http://em.21dtv.com/songs/60122500.mkv +袁双洋-老父亲,http://em.21dtv.com/songs/60105361.mkv +田野-老父亲,http://em.21dtv.com/songs/60104327.mkv +王中平-老夫妻,http://em.21dtv.com/songs/60064456.mkv +KATY PERRY-last friday night,http://em.21dtv.com/songs/60073480.mkv +印子月-冷风里,http://em.21dtv.com/songs/60128864.mkv +李艳-兰芳泪,http://em.21dtv.com/songs/60076313.mkv +陈僖仪-lete find love,http://em.21dtv.com/songs/60071627.mkv +DIRTY MONEY-looking for love,http://em.21dtv.com/songs/60060858.mkv +王瑞霞-练疯话(无原唱),http://em.21dtv.com/songs/60026972.mkv +明道-泪风干,http://em.21dtv.com/songs/60097020.mkv +李逸朗-流非飞,http://em.21dtv.com/songs/60125725.mkv +李逸朗-流菲飞,http://em.21dtv.com/songs/60110290.mkv +王菲-流非飞,http://em.21dtv.com/songs/60027603.mkv +王菲-流非飞(演唱会),http://em.21dtv.com/songs/60027602.mkv +林海峰-流非飞(演唱会),http://em.21dtv.com/songs/60027601.mkv +徐若瑄-老夫妇,http://em.21dtv.com/songs/60026336.mkv +洪一平-龙凤斗,http://em.21dtv.com/songs/60027824.mkv +贺一航-冷风吹,http://em.21dtv.com/songs/60131825.mkv +刘冲-冷风吹,http://em.21dtv.com/songs/60026580.mkv +郑秀月-冷风吹(无原唱),http://em.21dtv.com/songs/60026579.mkv +周兴哲-Let It Go,http://em.21dtv.com/songs/60127841.mkv +乔军-拉二胡,http://em.21dtv.com/songs/60025896.mkv +杨培安-冷耳光,http://em.21dtv.com/songs/60116937.mkv +RONAN KEATING-loving each day,http://em.21dtv.com/songs/60003649.mkv +BOYZONE-lovineach day,http://em.21dtv.com/songs/60003644.mkv +SAM SMITH-Leave Your Lover,http://em.21dtv.com/songs/60101029.mkv +河图-伶仃谣,http://em.21dtv.com/songs/60107869.mkv +许桂荧-落大雨,http://em.21dtv.com/songs/60028055.mkv +童唱-落大雨,http://em.21dtv.com/songs/60028054.mkv +S.H.E-落大雨,http://em.21dtv.com/songs/60028053.mkv +河图-伶仃谣,http://em.21dtv.com/songs/60027408.mkv +王识贤-老电影,http://em.21dtv.com/songs/60026331.mkv +张地-绿灯行,http://em.21dtv.com/songs/60063359.mkv +曹方-落单续,http://em.21dtv.com/songs/60028061.mkv +郭桂彬-绿岛叹,http://em.21dtv.com/songs/60028152.mkv +钟镇涛-两点水(无原唱),http://em.21dtv.com/songs/60027217.mkv +ERIC CLAPTON-lay down sally,http://em.21dtv.com/songs/60003294.mkv +杨子-乱弹琴(情),http://em.21dtv.com/songs/60101099.mkv +王红星-两地曲(演唱会),http://em.21dtv.com/songs/60072150.mkv +胡晓芳-老东门,http://em.21dtv.com/songs/60112160.mkv +吴尚哲-绿度母,http://em.21dtv.com/songs/60104876.mkv +金山-绿岛美,http://em.21dtv.com/songs/60099556.mkv +小阿鹏-恋大理,http://em.21dtv.com/songs/60131364.mkv +谭咏麟-路叠路(演唱会),http://em.21dtv.com/songs/60027937.mkv +刘德华-累斗累,http://em.21dtv.com/songs/60026567.mkv +佚名-泪滴lady,http://em.21dtv.com/songs/60026525.mkv +郁可唯-蓝短裤,http://em.21dtv.com/songs/60026048.mkv +江美琪-来得及,http://em.21dtv.com/songs/60107017.mkv +张学友-来得及,http://em.21dtv.com/songs/60106831.mkv +刘小慧-刘大街,http://em.21dtv.com/songs/60092346.mkv +喜波-两朵花,http://em.21dtv.com/songs/60094033.mkv +黄品冠-刘德华,http://em.21dtv.com/songs/60027508.mkv +黄品冠-刘德华(演唱会),http://em.21dtv.com/songs/60027507.mkv +古巨基-love dont hurt,http://em.21dtv.com/songs/60003517.mkv +大哲-老大哥,http://em.21dtv.com/songs/60126737.mkv +小宋佳-滥赌鬼,http://em.21dtv.com/songs/60087712.mkv +莫文蔚-懒得管,http://em.21dtv.com/songs/60026156.mkv +陈娟儿-老地方,http://em.21dtv.com/songs/60131940.mkv +东山少爷-老地方,http://em.21dtv.com/songs/60131132.mkv +陈奕迅+汤唯-老地方,http://em.21dtv.com/songs/60114859.mkv +张美晨-老地方(HD),http://em.21dtv.com/songs/10012786.mkv +张靓颖-老地方,http://em.21dtv.com/songs/60108514.mkv +张靓颖-老地方,http://em.21dtv.com/songs/60105877.mkv +尤峰-老地方,http://em.21dtv.com/songs/60104981.mkv +张美晨-老地方,http://em.21dtv.com/songs/60096289.mkv +阿凉-老地方,http://em.21dtv.com/songs/60079862.mkv +余佳伦-老地方,http://em.21dtv.com/songs/60076339.mkv +伍思凯-恋东方,http://em.21dtv.com/songs/60027075.mkv +任贤齐-老地方,http://em.21dtv.com/songs/60026328.mkv +衡越-老地方(演唱会),http://em.21dtv.com/songs/60026327.mkv +贺国丰-泪蛋蛋,http://em.21dtv.com/songs/60122133.mkv +孙刚-泪蛋蛋,http://em.21dtv.com/songs/60097021.mkv +孙刚-泪蛋蛋(演唱会),http://em.21dtv.com/songs/60086668.mkv +金岩-蓝调调,http://em.21dtv.com/songs/60085344.mkv +方小菲-泪蛋蛋,http://em.21dtv.com/songs/60068428.mkv +曾桂英-罗东调,http://em.21dtv.com/songs/60028018.mkv +童唱-懒惰虫,http://em.21dtv.com/songs/60026160.mkv +B.WILSON+R.CHRISTIAN-little deuce coupe(无原唱),http://em.21dtv.com/songs/60003435.mkv +杨培安-两点半,http://em.21dtv.com/songs/60027216.mkv +金虹汝-拉丁bolg,http://em.21dtv.com/songs/60025895.mkv +DAVIS.ONORAT+SIMEONE-little drummer boy,http://em.21dtv.com/songs/60003437.mkv +黄磊-老车站,http://em.21dtv.com/songs/60026324.mkv +曾韵融-恋草原,http://em.21dtv.com/songs/60104183.mkv +谢军-恋采依,http://em.21dtv.com/songs/60102738.mkv +陈心蕊-六尺巷,http://em.21dtv.com/songs/60120077.mkv +赵薇-六尺巷,http://em.21dtv.com/songs/60119998.mkv +张正扬-六尺巷,http://em.21dtv.com/songs/60115154.mkv +左明科-老锄头,http://em.21dtv.com/songs/60122692.mkv +冯晓菲-龙船调,http://em.21dtv.com/songs/60099781.mkv +妞妞姐妹-老长寿,http://em.21dtv.com/songs/60026457.mkv +佚名-ly con sao,http://em.21dtv.com/songs/60003676.mkv +S.H.E+洪敬尧-老唱盘,http://em.21dtv.com/songs/60076338.mkv +魏如萱-老处女,http://em.21dtv.com/songs/60110712.mkv +宋冬野-六层楼,http://em.21dtv.com/songs/60135121.mkv +孙浩森-亮出来,http://em.21dtv.com/songs/60027337.mkv +楼宏章-离尘诀,http://em.21dtv.com/songs/60083283.mkv +蓝雨-恋长今,http://em.21dtv.com/songs/60027154.mkv +张柏菡-临沧赋,http://em.21dtv.com/songs/60130325.mkv +蔡义德-恋春风,http://em.21dtv.com/songs/60066122.mkv +王大培-撸串儿,http://em.21dtv.com/songs/60094219.mkv +佚名-love change everything,http://em.21dtv.com/songs/60003512.mkv +黄征-蓝绸缎,http://em.21dtv.com/songs/60089550.mkv +李昱和-龙船调(演唱会),http://em.21dtv.com/songs/60085400.mkv +DIRTY MONEY+DIDDY-love come down,http://em.21dtv.com/songs/60060863.mkv +张明敏-龙船调,http://em.21dtv.com/songs/60027812.mkv +宋祖英-龙船调,http://em.21dtv.com/songs/60027811.mkv +梦鸽+魏金栋-龙船调,http://em.21dtv.com/songs/60027810.mkv +郑秀文-落错车,http://em.21dtv.com/songs/60028052.mkv +郑秀文-落错车(演唱会),http://em.21dtv.com/songs/60028051.mkv +谭咏麟-零磁场,http://em.21dtv.com/songs/60027448.mkv +吴彤-留不住,http://em.21dtv.com/songs/60076478.mkv +孙淑媚-离别雨,http://em.21dtv.com/songs/60026666.mkv +温岚-泪不停,http://em.21dtv.com/songs/60067189.mkv +张政雄+薛佩洁-路边摊,http://em.21dtv.com/songs/60027929.mkv +古巨基-路边摊,http://em.21dtv.com/songs/60027928.mkv +欧阳朵-离别诉,http://em.21dtv.com/songs/60133904.mkv +天爱-离别殇,http://em.21dtv.com/songs/60130221.mkv +苏振华-离别殇,http://em.21dtv.com/songs/60128342.mkv +雨湘-两本书,http://em.21dtv.com/songs/60120114.mkv +李明翰-离别时,http://em.21dtv.com/songs/60095202.mkv +王建杰-蓝宝石,http://em.21dtv.com/songs/60086664.mkv +任妙音-离别情,http://em.21dtv.com/songs/60121357.mkv +河图-冷兵器,http://em.21dtv.com/songs/60108683.mkv +紫薇-了不起(演唱会),http://em.21dtv.com/songs/60068442.mkv +周俊伟-了不起,http://em.21dtv.com/songs/60026486.mkv +张惠妹-了不起,http://em.21dtv.com/songs/60026485.mkv +羽泉-了不起,http://em.21dtv.com/songs/60026484.mkv +黎瑞恩-了不起,http://em.21dtv.com/songs/60026483.mkv +张惠妹-了不起(演唱会),http://em.21dtv.com/songs/60026482.mkv +阿温-冷冰破,http://em.21dtv.com/songs/60076368.mkv +张智霖-林爆你(演唱会),http://em.21dtv.com/songs/60076446.mkv +秀兰玛雅-离不了,http://em.21dtv.com/songs/60127248.mkv +Ice Lady-冷暴力,http://em.21dtv.com/songs/60121250.mkv +陈泳泼-离别泪,http://em.21dtv.com/songs/60115505.mkv +林希儿-离别礼,http://em.21dtv.com/songs/60102391.mkv +羽翘-了不了,http://em.21dtv.com/songs/60076441.mkv +亦帆-泪崩了,http://em.21dtv.com/songs/60076361.mkv +沈子涵-泪不流,http://em.21dtv.com/songs/60072135.mkv +吴亦帆-泪崩了,http://em.21dtv.com/songs/60070871.mkv +汪苏泷-累不累,http://em.21dtv.com/songs/60061359.mkv +梁汉文-零比零(演唱会),http://em.21dtv.com/songs/60027447.mkv +叶胜钦-礼拜六,http://em.21dtv.com/songs/60026843.mkv +蔡依林-冷暴力,http://em.21dtv.com/songs/60026573.mkv +陈振云-累不累,http://em.21dtv.com/songs/60026566.mkv +许茹芸-little by little,http://em.21dtv.com/songs/60003433.mkv +郁钧剑-离不开,http://em.21dtv.com/songs/60026675.mkv +那英-离不开,http://em.21dtv.com/songs/60026674.mkv +草蜢-离不开,http://em.21dtv.com/songs/60026673.mkv +草蜢-离不开(演唱会),http://em.21dtv.com/songs/60026672.mkv +廖文强+坏神经乐团-来不及,http://em.21dtv.com/songs/60125488.mkv +宋玉鹏-老兵酒,http://em.21dtv.com/songs/60123842.mkv +刘瑞琦-来不及,http://em.21dtv.com/songs/60123690.mkv +彝人制造-来不及,http://em.21dtv.com/songs/60089875.mkv +夏后-来不及,http://em.21dtv.com/songs/60085341.mkv +MATZKA-零八九,http://em.21dtv.com/songs/60076452.mkv +杨小丢-来不及,http://em.21dtv.com/songs/60076306.mkv +田馥甄-来不及,http://em.21dtv.com/songs/60076305.mkv +林宥嘉-来不及,http://em.21dtv.com/songs/60076304.mkv +佚名-连杯酒,http://em.21dtv.com/songs/60026931.mkv +高向鹏+方怡萍-连杯酒,http://em.21dtv.com/songs/60026930.mkv +张镐哲-离别酒,http://em.21dtv.com/songs/60026658.mkv +萧亚轩-来不及,http://em.21dtv.com/songs/60025956.mkv +萧贺硕-来不及,http://em.21dtv.com/songs/60025955.mkv +林晓培-来不及,http://em.21dtv.com/songs/60025954.mkv +陈珊妮-来不及,http://em.21dtv.com/songs/60025953.mkv +HEBE-来不及,http://em.21dtv.com/songs/60025952.mkv +胡耘豪-凉薄侯,http://em.21dtv.com/songs/60130675.mkv +和汇慧-凉薄侯,http://em.21dtv.com/songs/60128911.mkv +张成力-离别后,http://em.21dtv.com/songs/60127976.mkv +徐佳莹-鲁冰花,http://em.21dtv.com/songs/60120564.mkv +周安信-鲁冰花,http://em.21dtv.com/songs/60110933.mkv +胡海泉+田斯斯-鲁冰花,http://em.21dtv.com/songs/60095059.mkv +刘平芳-路边花,http://em.21dtv.com/songs/60027927.mkv +卓依婷-鲁冰花,http://em.21dtv.com/songs/60027905.mkv +王雪晶-鲁冰花,http://em.21dtv.com/songs/60027904.mkv +童唱-鲁冰花,http://em.21dtv.com/songs/60027903.mkv +曾淑勤-鲁冰花,http://em.21dtv.com/songs/60027902.mkv +甄妮-鲁冰花(演唱会),http://em.21dtv.com/songs/60027900.mkv +爱乐公社-鲁冰花(演唱会),http://em.21dtv.com/songs/60027899.mkv +薛家燕-来吧hooray,http://em.21dtv.com/songs/60025944.mkv +唐煜航-啦不够,http://em.21dtv.com/songs/60069549.mkv +DAVID GUETTA-little bad girl,http://em.21dtv.com/songs/60060857.mkv +元气乐团-离别歌,http://em.21dtv.com/songs/60026656.mkv +周华健-离别赋,http://em.21dtv.com/songs/60094853.mkv +潘越云-离别赋,http://em.21dtv.com/songs/60026655.mkv +EMILY OSMENT-lets be friends,http://em.21dtv.com/songs/60003352.mkv +潘军+司红军-老伴儿,http://em.21dtv.com/songs/60076337.mkv +LF兄弟-萝卜蹲,http://em.21dtv.com/songs/60126533.mkv +沈芳如-冷被单,http://em.21dtv.com/songs/60095764.mkv +佚名-伦巴达,http://em.21dtv.com/songs/60028006.mkv +甄强-老爸爸,http://em.21dtv.com/songs/60130616.mkv +男人唐潮-冷冰冰,http://em.21dtv.com/songs/60070872.mkv +JIM CROCE-bad bad leroy brown,http://em.21dtv.com/songs/60000446.mkv +朴正炫-恋爱中,http://em.21dtv.com/songs/60135349.mkv +回音哥+郑一帆-恋爱中,http://em.21dtv.com/songs/60110952.mkv +彭炽权+郭凤女-潞安州(戏曲),http://em.21dtv.com/songs/60092687.mkv +郭富城-恋爱中,http://em.21dtv.com/songs/60027066.mkv +郭富城-恋爱中(演唱会),http://em.21dtv.com/songs/60027065.mkv +AVICII-Lay Me Down,http://em.21dtv.com/songs/60100709.mkv +汤非-老阿姨,http://em.21dtv.com/songs/60098549.mkv +韩磊-老阿姨,http://em.21dtv.com/songs/60096940.mkv +韩磊-老阿姨(我是歌手第二期),http://em.21dtv.com/songs/60096551.mkv +张蓉蓉-恋爱味,http://em.21dtv.com/songs/60123950.mkv +TAMAR BRAXTON-love and war,http://em.21dtv.com/songs/60073545.mkv +ROBIN THICKE-love after war,http://em.21dtv.com/songs/60065636.mkv +MADONNA-like a virgin,http://em.21dtv.com/songs/60003409.mkv +泰妍+THE ONE-like a star,http://em.21dtv.com/songs/60062976.mkv +宋岳庭-lifes a struggle,http://em.21dtv.com/songs/60003403.mkv +佚名-letstake a ride,http://em.21dtv.com/songs/60003384.mkv +张生艳-两岸情,http://em.21dtv.com/songs/60121661.mkv +邱淑君-两岸情,http://em.21dtv.com/songs/60027209.mkv +詹曼玲-恋爱情(无原唱),http://em.21dtv.com/songs/60027033.mkv +李玟-恋爱party,http://em.21dtv.com/songs/60026993.mkv +李玟+梁汉文+张瑞哲-恋爱party,http://em.21dtv.com/songs/60026992.mkv +MADONNA-like a prayer,http://em.21dtv.com/songs/60003408.mkv +权珍雅-恋爱吗,http://em.21dtv.com/songs/60130403.mkv +沈芳如-恋爱梦,http://em.21dtv.com/songs/60112059.mkv +JEWELRY-look at me,http://em.21dtv.com/songs/60070367.mkv +佚名-恋爱梦,http://em.21dtv.com/songs/60027028.mkv +费玉清-恋爱梦,http://em.21dtv.com/songs/60027027.mkv +梁汉文-恋爱盲,http://em.21dtv.com/songs/60027026.mkv +佚名-love and marriage,http://em.21dtv.com/songs/60003508.mkv +SHAKIRA-La La La(Brazil 2014)[消伴],http://em.21dtv.com/songs/60100752.mkv +NAUGHTY BOY+SAM SMITH-La La La,http://em.21dtv.com/songs/60099686.mkv +索朗扎西-郎啊郎,http://em.21dtv.com/songs/60106181.mkv +BRITNEY SPEARS-lace and leather(演唱会),http://em.21dtv.com/songs/60082224.mkv +BRITNEY SPEARS-lace and leather,http://em.21dtv.com/songs/60065629.mkv +乔洋-恋爱啦,http://em.21dtv.com/songs/60027021.mkv +王绎龙-累啊累,http://em.21dtv.com/songs/60026565.mkv +STEVIE NICKS+DON HEN-leather and lace,http://em.21dtv.com/songs/60003304.mkv +童唱-learn and know,http://em.21dtv.com/songs/60003303.mkv +毅光年+孟楠-炼爱记,http://em.21dtv.com/songs/60125841.mkv +孟楠+毅光年-炼爱记,http://em.21dtv.com/songs/60097040.mkv +爱戴-恋爱街,http://em.21dtv.com/songs/60027016.mkv +五月天-恋爱ing,http://em.21dtv.com/songs/60026991.mkv +王力宏-like a gunshot,http://em.21dtv.com/songs/60003407.mkv +佚名-lovers and friends,http://em.21dtv.com/songs/60003637.mkv +小雪-恋爱entertaining,http://em.21dtv.com/songs/60026990.mkv +BILLY KLIPPERT-love and death,http://em.21dtv.com/songs/60073544.mkv +BACKSTREET BOYS-like a child,http://em.21dtv.com/songs/60003406.mkv +童唱-里の秋,http://em.21dtv.com/songs/60026877.mkv +きゃりーぱみゅぱみゅ-良すた,http://em.21dtv.com/songs/60134830.mkv +刘刚-21楼,http://em.21dtv.com/songs/60101951.mkv +雨禾-看走眼,http://em.21dtv.com/songs/60106433.mkv +罗文-孔子曰,http://em.21dtv.com/songs/60025506.mkv +阿吉仔-空中云,http://em.21dtv.com/songs/60025489.mkv +佚名-哭着笑,http://em.21dtv.com/songs/60025587.mkv +黄思婷-快占位,http://em.21dtv.com/songs/60133129.mkv +陈冠希-看着我,http://em.21dtv.com/songs/60025152.mkv +皓天-孔子说,http://em.21dtv.com/songs/60072113.mkv +脱拉库-看着你(无原唱),http://em.21dtv.com/songs/60025150.mkv +完玛三智-坎卓玛(蒙),http://em.21dtv.com/songs/60064427.mkv +扎西顿珠-康藏路,http://em.21dtv.com/songs/60025157.mkv +佚名-看这啦,http://em.21dtv.com/songs/60025148.mkv +杨宗宪-看这啦,http://em.21dtv.com/songs/60025147.mkv +冼佩瑾-控制狂,http://em.21dtv.com/songs/60116573.mkv +何超仪-快走开,http://em.21dtv.com/songs/60089615.mkv +苏打绿-控制狂,http://em.21dtv.com/songs/60076277.mkv +于文华-看宗华,http://em.21dtv.com/songs/60087257.mkv +刘欢-哭诸葛,http://em.21dtv.com/songs/60025589.mkv +黄家强-可知道(演唱会),http://em.21dtv.com/songs/60025358.mkv +KISS-看着办,http://em.21dtv.com/songs/60025149.mkv +鼓鼓-可以唷,http://em.21dtv.com/songs/60132025.mkv +叶倩文-快一些,http://em.21dtv.com/songs/60025821.mkv +SNH48-苦与甜,http://em.21dtv.com/songs/60115634.mkv +刘冰-哭与痛,http://em.21dtv.com/songs/60064440.mkv +JAY PARK-know your name,http://em.21dtv.com/songs/60065628.mkv +黄静雅-看月娘(无原唱),http://em.21dtv.com/songs/60025146.mkv +佚名-可以吗,http://em.21dtv.com/songs/60025354.mkv +贺一航+刘馨蔚-看月亮,http://em.21dtv.com/songs/60134245.mkv +朱官兵-苦眼泪,http://em.21dtv.com/songs/60107774.mkv +陈奕迅-可以了,http://em.21dtv.com/songs/60100571.mkv +二人转+闫学晶+董宝贵-看秧歌,http://em.21dtv.com/songs/60070838.mkv +郭颂-看秧歌,http://em.21dtv.com/songs/60025142.mkv +咪依鲁江-看远方,http://em.21dtv.com/songs/60076242.mkv +吴怡青-可以飞,http://em.21dtv.com/songs/60025352.mkv +刘秀荣-夸月娥,http://em.21dtv.com/songs/60025657.mkv +许艺娜-枯叶蝶,http://em.21dtv.com/songs/60094689.mkv +朱含芳-快一点,http://em.21dtv.com/songs/60025820.mkv +郭采洁-快一点,http://em.21dtv.com/songs/60025819.mkv +蔡依林-快有爱(演唱会),http://em.21dtv.com/songs/60025822.mkv +谭咏麟-狂小子(演唱会),http://em.21dtv.com/songs/60025849.mkv +刘玉东-宽心谣,http://em.21dtv.com/songs/60125209.mkv +王二妮-口弦弦,http://em.21dtv.com/songs/60112843.mkv +王二妮-口弦弦,http://em.21dtv.com/songs/60107058.mkv +姬长乐-开心笑,http://em.21dtv.com/songs/60103192.mkv +刘若英-口香糖,http://em.21dtv.com/songs/60025535.mkv +梁咏琪-口香糖(演唱会),http://em.21dtv.com/songs/60025534.mkv +李紫涵-空心树,http://em.21dtv.com/songs/60120641.mkv +崔健-苦行僧,http://em.21dtv.com/songs/60102166.mkv +洪卓立-苦行僧,http://em.21dtv.com/songs/60025601.mkv +童唱-看驯兽,http://em.21dtv.com/songs/60025141.mkv +关心妍-空心人,http://em.21dtv.com/songs/60121397.mkv +羽泉-狂想曲,http://em.21dtv.com/songs/60025848.mkv +萧亚轩-狂想曲,http://em.21dtv.com/songs/60025847.mkv +萧敬腾-狂想曲,http://em.21dtv.com/songs/60025846.mkv +谢安琪-宽限期,http://em.21dtv.com/songs/60025827.mkv +六折真人-开心Party,http://em.21dtv.com/songs/60081102.mkv +严稳静-狂想你,http://em.21dtv.com/songs/60025845.mkv +王中平-空笑梦,http://em.21dtv.com/songs/60025477.mkv +江蕙-空笑梦,http://em.21dtv.com/songs/60025476.mkv +蔡振南-空笑梦,http://em.21dtv.com/songs/60025475.mkv +郭忠佑-刻心恋,http://em.21dtv.com/songs/60128482.mkv +李克勤-开学礼,http://em.21dtv.com/songs/60025043.mkv +李克勤-开学礼(演唱会),http://em.21dtv.com/songs/60025042.mkv +童唱-开学了,http://em.21dtv.com/songs/60025041.mkv +张欣奕-科学家,http://em.21dtv.com/songs/60119527.mkv +阿任-开心果,http://em.21dtv.com/songs/60099565.mkv +周璇-凯旋歌,http://em.21dtv.com/songs/60025048.mkv +佚名-开心果,http://em.21dtv.com/songs/60025031.mkv +苏永康-开玩笑,http://em.21dtv.com/songs/60025023.mkv +Selina-看我的,http://em.21dtv.com/songs/60107430.mkv +任贤齐-看我的,http://em.21dtv.com/songs/60025132.mkv +佚名-靠无岸(无原唱),http://em.21dtv.com/songs/60025210.mkv +李克勤-kiss u goodnight,http://em.21dtv.com/songs/60003181.mkv +SNH48-开拓者,http://em.21dtv.com/songs/60101601.mkv +白冰冰-口头约,http://em.21dtv.com/songs/60025532.mkv +IMELDA MAY-kentish town waltz,http://em.21dtv.com/songs/60073461.mkv +谭锡禧-knock three times(演唱会),http://em.21dtv.com/songs/60082223.mkv +方瑞娥-看透透(无原唱),http://em.21dtv.com/songs/60025128.mkv +DAWN-knock three times,http://em.21dtv.com/songs/60003197.mkv +PETER PAN-khayalan tingkat tinggi,http://em.21dtv.com/songs/60003145.mkv +PIXIE LOTT-kiss the stars,http://em.21dtv.com/songs/60065627.mkv +郭晓薇-卡通人,http://em.21dtv.com/songs/60088791.mkv +高安-看透你,http://em.21dtv.com/songs/60109758.mkv +LUKE BRYAN-kiss tomorrow goodbye,http://em.21dtv.com/songs/60073465.mkv +侧田-卡通歌,http://em.21dtv.com/songs/60024972.mkv +BON JOVI-keep the faith,http://em.21dtv.com/songs/60073460.mkv +罗志祥-口头缠,http://em.21dtv.com/songs/60025531.mkv +五月天-开天窗,http://em.21dtv.com/songs/60025022.mkv +洪卓立-渴睡症,http://em.21dtv.com/songs/60106071.mkv +朱孝天-可是我,http://em.21dtv.com/songs/60025335.mkv +黎明-看上她,http://em.21dtv.com/songs/60025120.mkv +佚名-空思恋,http://em.21dtv.com/songs/60025469.mkv +洪荣宏-空思恋,http://em.21dtv.com/songs/60025468.mkv +AOA-困兽斗,http://em.21dtv.com/songs/60093911.mkv +卫兰-困兽斗,http://em.21dtv.com/songs/60025879.mkv +BEYOND-困兽斗(演唱会),http://em.21dtv.com/songs/60025878.mkv +周杰伦-跨时代,http://em.21dtv.com/songs/60025664.mkv +盛噶仁波切-开始懂,http://em.21dtv.com/songs/60025012.mkv +张柏芝-快说吧,http://em.21dtv.com/songs/60092632.mkv +林一峰-开始爱,http://em.21dtv.com/songs/60096910.mkv +萧亚轩-开始爱,http://em.21dtv.com/songs/60025010.mkv +阿吉仔-看人生,http://em.21dtv.com/songs/60025119.mkv +姜育恒-看人间(无原唱),http://em.21dtv.com/songs/60025118.mkv +杨千嬅-可人儿(演唱会),http://em.21dtv.com/songs/60025334.mkv +方力申-可人儿(演唱会),http://em.21dtv.com/songs/60025333.mkv +施文彬-孔雀鱼,http://em.21dtv.com/songs/60095564.mkv +朱明瑛-喀秋莎,http://em.21dtv.com/songs/60128073.mkv +熊七梅-孔雀殇,http://em.21dtv.com/songs/60110364.mkv +杨坤+萧敬腾-快枪手,http://em.21dtv.com/songs/60086658.mkv +杨坤-快枪手,http://em.21dtv.com/songs/60081234.mkv +潘小芬-喀秋莎(法),http://em.21dtv.com/songs/60067150.mkv +佚名-卡秋莎,http://em.21dtv.com/songs/60024970.mkv +周天旭-喀秋莎,http://em.21dtv.com/songs/60024952.mkv +男声-喀秋莎,http://em.21dtv.com/songs/60024951.mkv +女声-喀秋莎(探戈),http://em.21dtv.com/songs/60024950.mkv +邓颖芝-苦情人(演唱会),http://em.21dtv.com/songs/60025643.mkv +林宇中-空秋千,http://em.21dtv.com/songs/60025466.mkv +谢采妘-苦情花,http://em.21dtv.com/songs/60025642.mkv +傅振辉+黄思婷-苦情海,http://em.21dtv.com/songs/60025641.mkv +纪晓斌-苦情歌,http://em.21dtv.com/songs/60109564.mkv +周传雄-苦情歌,http://em.21dtv.com/songs/60025640.mkv +姚嘉儿-空气草,http://em.21dtv.com/songs/60132345.mkv +张冬晨-孔雀草,http://em.21dtv.com/songs/60116780.mkv +许志安-看清楚,http://em.21dtv.com/songs/60025117.mkv +杨静-看破啦,http://em.21dtv.com/songs/60083213.mkv +E.FLOYD+S.CROPPER-knock on wood(无原唱),http://em.21dtv.com/songs/60003196.mkv +THE POLICE-king of pain,http://em.21dtv.com/songs/60003156.mkv +FIVE-keep on movin,http://em.21dtv.com/songs/60003141.mkv +INFERNAL-keen on disco,http://em.21dtv.com/songs/60003136.mkv +SARA BAREILLES-king of anything,http://em.21dtv.com/songs/60003155.mkv +陈小春-苦男人,http://em.21dtv.com/songs/60025639.mkv +张志林-酷女孩,http://em.21dtv.com/songs/60087812.mkv +N.GIMBLE+C.FOX-killing me softly,http://em.21dtv.com/songs/60003153.mkv +佚名-kiss me quick,http://em.21dtv.com/songs/60003174.mkv +唐禹哲-kiss me now,http://em.21dtv.com/songs/60003173.mkv +民歌-看妹妹,http://em.21dtv.com/songs/60091557.mkv +蔡卓妍-开麦拉,http://em.21dtv.com/songs/60085319.mkv +高玉玫-kiss my life,http://em.21dtv.com/songs/60084732.mkv +唯莎-开门红,http://em.21dtv.com/songs/60131283.mkv +霍尊+艾菲-开门红,http://em.21dtv.com/songs/60096909.mkv +八大巨星-开门红,http://em.21dtv.com/songs/60076229.mkv +后弦-昆明湖,http://em.21dtv.com/songs/60025867.mkv +汤灿+火风-开门红,http://em.21dtv.com/songs/60024998.mkv +汤灿+火风-开门红(演唱会),http://em.21dtv.com/songs/60024997.mkv +火风+春天-开门红(演唱会),http://em.21dtv.com/songs/60024996.mkv +佚名-kiss me goodbye,http://em.21dtv.com/songs/60003171.mkv +达明一派-kiss me goodbye(演唱会),http://em.21dtv.com/songs/60003170.mkv +罗逻圣-孔明灯,http://em.21dtv.com/songs/60123076.mkv +张冬玲-孔明灯,http://em.21dtv.com/songs/60122709.mkv +李克勤-孔明灯,http://em.21dtv.com/songs/60062599.mkv +佚名-kiss me deadly,http://em.21dtv.com/songs/60003169.mkv +℃ UTE-kiss me爱してる,http://em.21dtv.com/songs/60073464.mkv +佚名-kiss me another,http://em.21dtv.com/songs/60003168.mkv +苏珊-kiss me another(演唱会),http://em.21dtv.com/songs/60003167.mkv +田振达-啃老族,http://em.21dtv.com/songs/60110422.mkv +水木年华-快乐园,http://em.21dtv.com/songs/60025805.mkv +北原山猫-快乐摇,http://em.21dtv.com/songs/60025803.mkv +晓田-快乐颂,http://em.21dtv.com/songs/60125643.mkv +群星-快乐送,http://em.21dtv.com/songs/60097003.mkv +黄思婷-快乐颂,http://em.21dtv.com/songs/60025790.mkv +庾澄庆-快乐颂(演唱会),http://em.21dtv.com/songs/60025789.mkv +童唱-快乐颂(无原唱),http://em.21dtv.com/songs/60025788.mkv +佚名-快乐song,http://em.21dtv.com/songs/60025694.mkv +王菀之-开龙雀(演唱会),http://em.21dtv.com/songs/60105259.mkv +王菀之-开笼雀,http://em.21dtv.com/songs/60092995.mkv +刘君儿-快乐年,http://em.21dtv.com/songs/60092344.mkv +邰正宵-苦了你,http://em.21dtv.com/songs/60025627.mkv +邰正宵-苦了你(演唱会),http://em.21dtv.com/songs/60025626.mkv +佚名-苦恋梦,http://em.21dtv.com/songs/60025637.mkv +陈小云-苦恋梦,http://em.21dtv.com/songs/60025636.mkv +陈雷-苦恋路,http://em.21dtv.com/songs/60086656.mkv +黄明志+龚柯允-咖喱咧,http://em.21dtv.com/songs/60062492.mkv +韦礼安-昆仑镜,http://em.21dtv.com/songs/60116360.mkv +黄乙玲-快乐holiday,http://em.21dtv.com/songs/60025693.mkv +狮子合唱团-卡乐歌,http://em.21dtv.com/songs/60131628.mkv +江蕙-苦恋歌,http://em.21dtv.com/songs/60025635.mkv +洪荣宏-苦恋歌,http://em.21dtv.com/songs/60025634.mkv +STEVIE WONDER-kiss lonely goodbye,http://em.21dtv.com/songs/60003165.mkv +王雪晶-峇里岛,http://em.21dtv.com/songs/60088342.mkv +潘秀琼-峇里岛(演唱会),http://em.21dtv.com/songs/60076267.mkv +张秀卿-快乐的,http://em.21dtv.com/songs/60067171.mkv +杨千嬅-快乐的,http://em.21dtv.com/songs/60025709.mkv +徐秋菊+王映楼-看龙船,http://em.21dtv.com/songs/60025097.mkv +伊非-快乐吧,http://em.21dtv.com/songs/60087284.mkv +薛之谦-快乐帮,http://em.21dtv.com/songs/60025698.mkv +李娜-苦篱笆,http://em.21dtv.com/songs/60025629.mkv +孙燕姿-空口言,http://em.21dtv.com/songs/60025460.mkv +韩东-开口笑,http://em.21dtv.com/songs/60076227.mkv +马大佐-开口笑,http://em.21dtv.com/songs/60024993.mkv +陈翔-棵棵树,http://em.21dtv.com/songs/60062276.mkv +余韬+龙冰-烤烤烤,http://em.21dtv.com/songs/60128787.mkv +路童-空空空,http://em.21dtv.com/songs/60064438.mkv +郑融-kiss kiss kiss,http://em.21dtv.com/songs/60060849.mkv +汤潮-苦咖啡,http://em.21dtv.com/songs/60113781.mkv +郑劲松-苦咖啡,http://em.21dtv.com/songs/60108049.mkv +冷漠-苦咖啡,http://em.21dtv.com/songs/60069545.mkv +袁树雄-苦咖啡,http://em.21dtv.com/songs/60025616.mkv +宛金秋-快节奏,http://em.21dtv.com/songs/60025688.mkv +龙千玉-卡将哟,http://em.21dtv.com/songs/60061328.mkv +杨坤-快救我,http://em.21dtv.com/songs/60105173.mkv +小龙女-靠近我,http://em.21dtv.com/songs/60025205.mkv +田震-靠近我,http://em.21dtv.com/songs/60025204.mkv +黑豹乐队-靠近我,http://em.21dtv.com/songs/60025203.mkv +田震-靠近我(演唱会),http://em.21dtv.com/songs/60025202.mkv +迪克牛仔-靠近我(演唱会),http://em.21dtv.com/songs/60025201.mkv +蔡依林-看紧我,http://em.21dtv.com/songs/60025092.mkv +牟炫甫-客家颂,http://em.21dtv.com/songs/60025401.mkv +佚名-开卷诗,http://em.21dtv.com/songs/60024990.mkv +曾桂英-开金扇,http://em.21dtv.com/songs/60024989.mkv +陈志明-客家人(无原唱),http://em.21dtv.com/songs/60025399.mkv +徐秋菊-客家情,http://em.21dtv.com/songs/60025398.mkv +曾辉彬-客家情,http://em.21dtv.com/songs/60025397.mkv +张靓颖-靠近你,http://em.21dtv.com/songs/60120534.mkv +B.A.D-靠近你(演唱会),http://em.21dtv.com/songs/60025197.mkv +陈威-客家话(无原唱),http://em.21dtv.com/songs/60025396.mkv +于文华-看京华,http://em.21dtv.com/songs/60025093.mkv +许志安-可记得,http://em.21dtv.com/songs/60025299.mkv +徐晶晶-看今朝,http://em.21dtv.com/songs/60094117.mkv +陈司翰-看见爱,http://em.21dtv.com/songs/60025080.mkv +许慧欣-keep it up,http://em.21dtv.com/songs/60003138.mkv +无限甜心-Kiss Me Baby,http://em.21dtv.com/songs/60096316.mkv +分岛花音-Killy Killy JOKER,http://em.21dtv.com/songs/60101273.mkv +卓文萱-恐慌症,http://em.21dtv.com/songs/60076276.mkv +安又琪-口红糖,http://em.21dtv.com/songs/60125408.mkv +安又琪-口红糖,http://em.21dtv.com/songs/60121585.mkv +AVRIL LAVIGNE-keep holding on,http://em.21dtv.com/songs/60073459.mkv +容中尔甲-快回来,http://em.21dtv.com/songs/60025686.mkv +钟珍妮+钟安妮-kowloon hong kong(演唱会),http://em.21dtv.com/songs/60073470.mkv +莫旭秋-kowloon hong kong(演唱会),http://em.21dtv.com/songs/60073469.mkv +小凤凤-看乎开,http://em.21dtv.com/songs/60025075.mkv +陈雷-看乎开,http://em.21dtv.com/songs/60025074.mkv +叶丽仪-kowloon hong kong(演唱会),http://em.21dtv.com/songs/60003212.mkv +潘迪华-kowloon hong kong(演唱会),http://em.21dtv.com/songs/60003211.mkv +张清芳-看花火(演唱会),http://em.21dtv.com/songs/60025077.mkv +伊能静-快活歌,http://em.21dtv.com/songs/60085335.mkv +靓舞精灵-快回答,http://em.21dtv.com/songs/60025685.mkv +童唱-开火车,http://em.21dtv.com/songs/60024988.mkv +dewen和拖鞋-开挂侠(中国好歌曲),http://em.21dtv.com/songs/60098018.mkv +崔健-酷瓜树,http://em.21dtv.com/songs/60133620.mkv +江若琳-快歌medley,http://em.21dtv.com/songs/60025682.mkv +大嘴巴-靠过来,http://em.21dtv.com/songs/60025192.mkv +韩磊-开缸酒,http://em.21dtv.com/songs/60080157.mkv +CHRISTINA AGUILERA-keeps getting better,http://em.21dtv.com/songs/60067925.mkv +邓灵-空房子,http://em.21dtv.com/songs/60025450.mkv +讴洋-抗风桐,http://em.21dtv.com/songs/60115391.mkv +谢霆锋-开放日,http://em.21dtv.com/songs/60024987.mkv +谢霆锋-开放日(演唱会),http://em.21dtv.com/songs/60024986.mkv +TWINS-咖啡迷,http://em.21dtv.com/songs/60092209.mkv +孙燕姿-快疯了,http://em.21dtv.com/songs/60025679.mkv +周觅-空房间,http://em.21dtv.com/songs/60125317.mkv +蒲成龙-空房间,http://em.21dtv.com/songs/60104407.mkv +朴野-空房间,http://em.21dtv.com/songs/60098440.mkv +阳一-空房间,http://em.21dtv.com/songs/60025449.mkv +佚名-kung fu fighting(无原唱),http://em.21dtv.com/songs/60003216.mkv +周杰伦-咖啡店,http://em.21dtv.com/songs/60024941.mkv +德龙-科尔沁,http://em.21dtv.com/songs/60062314.mkv +佚名-客尔娜,http://em.21dtv.com/songs/60025391.mkv +李少俊-喀尔娜,http://em.21dtv.com/songs/60024949.mkv +XL特大号乐团-困斗阵,http://em.21dtv.com/songs/60025871.mkv +任贤齐-看电影,http://em.21dtv.com/songs/60090564.mkv +李泉-看电影,http://em.21dtv.com/songs/60025070.mkv +孙燕姿+许美静+蔡健雅-看电视,http://em.21dtv.com/songs/60090926.mkv +范晓萱-看电视,http://em.21dtv.com/songs/60025069.mkv +KELLY ROWLAND-kisses down low,http://em.21dtv.com/songs/60082222.mkv +黄安-肯定句,http://em.21dtv.com/songs/60076269.mkv +PETER PAN-katakan dengan indah,http://em.21dtv.com/songs/60003131.mkv +佚名-抗敌歌,http://em.21dtv.com/songs/60025173.mkv +郑伊健-酷到底,http://em.21dtv.com/songs/60025654.mkv +陈一玲-看城市,http://em.21dtv.com/songs/60122217.mkv +尹熙水-开场曲,http://em.21dtv.com/songs/60123859.mkv +王若琪-空床期,http://em.21dtv.com/songs/60067167.mkv +陈珊妮-ktv传奇,http://em.21dtv.com/songs/60063650.mkv +佚名-垦春泥,http://em.21dtv.com/songs/60025415.mkv +林一峰-哭出来,http://em.21dtv.com/songs/60096352.mkv +罗文聪+纪宝如-哭出来,http://em.21dtv.com/songs/60025548.mkv +COLOR BAND-哭出来,http://em.21dtv.com/songs/60025547.mkv +韩寒-空城记,http://em.21dtv.com/songs/60025441.mkv +吴琼-空城计,http://em.21dtv.com/songs/60025439.mkv +马长礼+裘少戎-空城计,http://em.21dtv.com/songs/60025438.mkv +董德光-空城计,http://em.21dtv.com/songs/60025437.mkv +影视歌曲-苦菜花,http://em.21dtv.com/songs/60089300.mkv +蔡依林-开场白,http://em.21dtv.com/songs/60024979.mkv +李宗盛-开场白(演唱会),http://em.21dtv.com/songs/60024978.mkv +佚名-keep coming back,http://em.21dtv.com/songs/60003137.mkv +王识贤-空白纸,http://em.21dtv.com/songs/60079181.mkv +咻比嘟哗-空杯子,http://em.21dtv.com/songs/60025433.mkv +茅小勇-可别说,http://em.21dtv.com/songs/60102668.mkv +廖芊芊-康巴情,http://em.21dtv.com/songs/60127957.mkv +阿权-看不起,http://em.21dtv.com/songs/60127532.mkv +陈诺-看不清,http://em.21dtv.com/songs/60117357.mkv +红蔷薇-空白期,http://em.21dtv.com/songs/60105290.mkv +ZAYIN-看不清,http://em.21dtv.com/songs/60025059.mkv +丁丁-快半拍,http://em.21dtv.com/songs/60097004.mkv +林忆莲-克卜勒,http://em.21dtv.com/songs/60132615.mkv +孙燕姿-克卜勒(Kepler),http://em.21dtv.com/songs/60096975.mkv +孙燕姿-克卜勒,http://em.21dtv.com/songs/60096243.mkv +洪卓立-看不开,http://em.21dtv.com/songs/60083211.mkv +BY2-看不见,http://em.21dtv.com/songs/60064428.mkv +杨宗纬-空白格,http://em.21dtv.com/songs/60076271.mkv +杨宗纬-空白格(演唱会),http://em.21dtv.com/songs/60072110.mkv +蔡健雅-空白格,http://em.21dtv.com/songs/60025428.mkv +东方依依-快抱抱,http://em.21dtv.com/songs/60117524.mkv +郑圣京-可爱颂,http://em.21dtv.com/songs/60083221.mkv +荷莉-可爱颂,http://em.21dtv.com/songs/60083220.mkv +OF MONSTERS AND MEN-king and lionheart,http://em.21dtv.com/songs/60082221.mkv +陈建-可爱多,http://em.21dtv.com/songs/60128524.mkv +佚名-kissして,http://em.21dtv.com/songs/60003193.mkv +Aiko-君の隣,http://em.21dtv.com/songs/60098007.mkv +唐妍-姐最拽,http://em.21dtv.com/songs/60066070.mkv +扭曲机器乐队-镜子中(演唱会),http://em.21dtv.com/songs/60062790.mkv +许志安-金钟罩,http://em.21dtv.com/songs/60024106.mkv +黑GIRL-叫姊姊,http://em.21dtv.com/songs/60023530.mkv +范英楠-假仗义,http://em.21dtv.com/songs/60127338.mkv +郑雷-就这样,http://em.21dtv.com/songs/60121004.mkv +林正-就这样,http://em.21dtv.com/songs/60085309.mkv +吴是闳-就这样,http://em.21dtv.com/songs/60080759.mkv +刘嘉亮-就这样,http://em.21dtv.com/songs/60024677.mkv +王识贤-酒中月,http://em.21dtv.com/songs/60024472.mkv +周张驰+刘姝辰-祭祖先,http://em.21dtv.com/songs/60075990.mkv +吴依琳-祭祖先,http://em.21dtv.com/songs/60075989.mkv +卓依婷-祭祖先,http://em.21dtv.com/songs/60022793.mkv +苗小青-九重天,http://em.21dtv.com/songs/60134171.mkv +王若琪-金字塔,http://em.21dtv.com/songs/60092992.mkv +夏韶声-旧枕头(演唱会),http://em.21dtv.com/songs/60024574.mkv +伍佰-九重天(演唱会),http://em.21dtv.com/songs/60024371.mkv +林一峰-镜子说,http://em.21dtv.com/songs/60076164.mkv +佚名-诫子书,http://em.21dtv.com/songs/60023714.mkv +郑君威-今仔日,http://em.21dtv.com/songs/60135805.mkv +李振全-今仔日,http://em.21dtv.com/songs/60061309.mkv +詹雅雯-酒中情,http://em.21dtv.com/songs/60024471.mkv +佚名-酒中情,http://em.21dtv.com/songs/60024470.mkv +张蓉蓉-镜中情,http://em.21dtv.com/songs/60024286.mkv +美宝-旧照片,http://em.21dtv.com/songs/60101469.mkv +洪卓立-紧张你,http://em.21dtv.com/songs/60076146.mkv +钟心-江之南,http://em.21dtv.com/songs/60067120.mkv +腾格尔-记住你,http://em.21dtv.com/songs/60022729.mkv +唐冰冰-九寨美,http://em.21dtv.com/songs/60072096.mkv +艾伦+李玉刚-卷珠帘,http://em.21dtv.com/songs/60135652.mkv +刘佳硕-卷珠帘,http://em.21dtv.com/songs/60134924.mkv +洛桑尖措-九寨蓝,http://em.21dtv.com/songs/60133936.mkv +林志炫-卷珠帘,http://em.21dtv.com/songs/60133875.mkv +李玉刚+艾伦-卷珠帘,http://em.21dtv.com/songs/60133820.mkv +W.K-卷珠帘,http://em.21dtv.com/songs/60131120.mkv +周深-卷珠帘,http://em.21dtv.com/songs/60128907.mkv +AK人声组合-卷珠帘,http://em.21dtv.com/songs/60102997.mkv +谭咏麟-羁之恋,http://em.21dtv.com/songs/60093215.mkv +孙悦-剪纸龙,http://em.21dtv.com/songs/60089789.mkv +霍尊-卷珠帘,http://em.21dtv.com/songs/60084826.mkv +荒山亮-君子剑,http://em.21dtv.com/songs/60115352.mkv +孙海涛-救自己,http://em.21dtv.com/songs/60076183.mkv +林静仪-假正经(演唱会),http://em.21dtv.com/songs/60076023.mkv +野仔-金至坚,http://em.21dtv.com/songs/60024105.mkv +叶玉卿-假正经,http://em.21dtv.com/songs/60023140.mkv +白光-假正经,http://em.21dtv.com/songs/60023139.mkv +静婷-假正经(演唱会),http://em.21dtv.com/songs/60023138.mkv +凤飞飞-金盏花,http://em.21dtv.com/songs/60115715.mkv +荒山亮-讲醉话,http://em.21dtv.com/songs/60083149.mkv +左崴崴-镜中花,http://em.21dtv.com/songs/60072094.mkv +季红-军中花,http://em.21dtv.com/songs/60024917.mkv +江蕙-金针花,http://em.21dtv.com/songs/60024102.mkv +凤飞飞-金盏花(无原唱),http://em.21dtv.com/songs/60024101.mkv +锦绣二重唱-讲真话,http://em.21dtv.com/songs/60023435.mkv +张蓉蓉-酒中愁,http://em.21dtv.com/songs/60024467.mkv +阿拉坦其其格-冀州城,http://em.21dtv.com/songs/60022954.mkv +刘浩龙+胡蓓蔚-九周半,http://em.21dtv.com/songs/60024372.mkv +张可儿-记住爱,http://em.21dtv.com/songs/60117722.mkv +达明一派-金燕子,http://em.21dtv.com/songs/60024089.mkv +廖隽嘉-嘉油站,http://em.21dtv.com/songs/60023054.mkv +黄安-救姻缘,http://em.21dtv.com/songs/60024590.mkv +张信哲-九月雨,http://em.21dtv.com/songs/60024364.mkv +张芯瑜-九一一,http://em.21dtv.com/songs/60024349.mkv +杨家成-九一一,http://em.21dtv.com/songs/60024348.mkv +黄立成+MACHI-九一一,http://em.21dtv.com/songs/60024347.mkv +风采轮(阿轮)-九月雪,http://em.21dtv.com/songs/60121144.mkv +雪域格桑-紧依偎,http://em.21dtv.com/songs/60117363.mkv +刘思涵-就因为,http://em.21dtv.com/songs/60101279.mkv +施文彬+陈亚兰-今夜我,http://em.21dtv.com/songs/60087921.mkv +萨顶顶-锦衣卫,http://em.21dtv.com/songs/60024135.mkv +李祥祥-记忆体,http://em.21dtv.com/songs/60116018.mkv +孙浩英+安信源-就一天,http://em.21dtv.com/songs/60104927.mkv +龙影云-静夜思,http://em.21dtv.com/songs/60132030.mkv +李嘉-酒夜市,http://em.21dtv.com/songs/60095612.mkv +胡杏儿+吴卓羲-嫁衣裳,http://em.21dtv.com/songs/60093059.mkv +李敏-静夜思,http://em.21dtv.com/songs/60070827.mkv +W.K-静夜思,http://em.21dtv.com/songs/60066081.mkv +许嵩-静夜思,http://em.21dtv.com/songs/60024277.mkv +木子俊-静夜诗,http://em.21dtv.com/songs/60024276.mkv +安宇-静夜诗,http://em.21dtv.com/songs/60024275.mkv +龙千玉-酒与情,http://em.21dtv.com/songs/60024466.mkv +易桀齐-九一七,http://em.21dtv.com/songs/60024346.mkv +孙毓敏-金玉奴,http://em.21dtv.com/songs/60024099.mkv +RUBBER BAND-夹硬泥,http://em.21dtv.com/songs/60023057.mkv +RUBBER BAND+林海峰-夹硬泥(演唱会),http://em.21dtv.com/songs/60023056.mkv +民歌-剪羊毛,http://em.21dtv.com/songs/60089387.mkv +佚名-剪羊毛(吉特巴),http://em.21dtv.com/songs/60023239.mkv +刘建东-军营恋,http://em.21dtv.com/songs/60123675.mkv +王莉-焦裕禄,http://em.21dtv.com/songs/60118793.mkv +木子俊-记忆里,http://em.21dtv.com/songs/60096936.mkv +哑奴-记忆河,http://em.21dtv.com/songs/60121514.mkv +曲丹-金银花,http://em.21dtv.com/songs/60106904.mkv +冯欣-金银花,http://em.21dtv.com/songs/60103914.mkv +桫椤-金银花,http://em.21dtv.com/songs/60094966.mkv +夹子道-夹远航,http://em.21dtv.com/songs/60023058.mkv +罗家宝-祭玉河,http://em.21dtv.com/songs/60022792.mkv +AT17-金鱼歌,http://em.21dtv.com/songs/60092134.mkv +AT 17-金鱼歌,http://em.21dtv.com/songs/60090373.mkv +吴文煜-加油歌,http://em.21dtv.com/songs/60075993.mkv +蓝宝石少女-加油歌,http://em.21dtv.com/songs/60075992.mkv +蔡凤凰+杨呜-监狱歌,http://em.21dtv.com/songs/60023220.mkv +童唱-加油歌,http://em.21dtv.com/songs/60022976.mkv +花儿乐队-加油歌,http://em.21dtv.com/songs/60022975.mkv +白冰冰-今夜的PARTY,http://em.21dtv.com/songs/60095812.mkv +韦礼安+MATZKA-金银岛,http://em.21dtv.com/songs/60100624.mkv +ENERGY-金银岛,http://em.21dtv.com/songs/60024090.mkv +小曲儿-霁夜茶,http://em.21dtv.com/songs/60084686.mkv +吉吉-姐有才,http://em.21dtv.com/songs/60064397.mkv +巧千金-金元宝,http://em.21dtv.com/songs/60076144.mkv +陈瑶梓+程梓淳+黄熙儿-金元宝,http://em.21dtv.com/songs/60076143.mkv +王虎-家有爱,http://em.21dtv.com/songs/60101454.mkv +林依婷-就要爱,http://em.21dtv.com/songs/60076190.mkv +Cins-就现在,http://em.21dtv.com/songs/60128672.mkv +吴莫愁-就现在,http://em.21dtv.com/songs/60080296.mkv +顺子-就现在,http://em.21dtv.com/songs/60024658.mkv +风小筝-剑逍遥,http://em.21dtv.com/songs/60120130.mkv +方力申-继续游,http://em.21dtv.com/songs/60022784.mkv +容中尔甲-吉祥谣,http://em.21dtv.com/songs/60022590.mkv +婳诗诗-假想行,http://em.21dtv.com/songs/60131318.mkv +李艳-军需线,http://em.21dtv.com/songs/60115229.mkv +张凌枫-假惺惺,http://em.21dtv.com/songs/60069501.mkv +戴梦梦-间歇性,http://em.21dtv.com/songs/60023212.mkv +张惠妹-假惺惺,http://em.21dtv.com/songs/60023137.mkv +刘芮伊-就像我,http://em.21dtv.com/songs/60024660.mkv +卢巧音-吉祥物,http://em.21dtv.com/songs/60022587.mkv +卢巧音-吉祥物(演唱会),http://em.21dtv.com/songs/60022586.mkv +陈慧珊-就系她,http://em.21dtv.com/songs/60024657.mkv +黄思婷-寄相思,http://em.21dtv.com/songs/60136023.mkv +崔健-假行僧,http://em.21dtv.com/songs/60133614.mkv +谭维维-假行僧,http://em.21dtv.com/songs/60114069.mkv +枫舞+囚鸟-寄相思,http://em.21dtv.com/songs/60106027.mkv +张宇-假行僧,http://em.21dtv.com/songs/60098343.mkv +田斯斯+胡海泉-假行僧,http://em.21dtv.com/songs/60094616.mkv +张赫宣-假行僧,http://em.21dtv.com/songs/60076022.mkv +萧亚轩+胡彦斌-进行式,http://em.21dtv.com/songs/60024151.mkv +水木年华-假行僧(演唱会),http://em.21dtv.com/songs/60023083.mkv +崔健-假行僧(演唱会),http://em.21dtv.com/songs/60023082.mkv +张也-吉祥颂,http://em.21dtv.com/songs/60022585.mkv +SUPPER MOMENT-机械人,http://em.21dtv.com/songs/60101035.mkv +吴介贤-家乡情,http://em.21dtv.com/songs/60064375.mkv +佚名-今宵情,http://em.21dtv.com/songs/60023936.mkv +毛阿敏-今宵情,http://em.21dtv.com/songs/60023935.mkv +陈妃平-剑侠情,http://em.21dtv.com/songs/60023306.mkv +秀兰玛雅-旧相片,http://em.21dtv.com/songs/60024571.mkv +蔡小虎-旧相片,http://em.21dtv.com/songs/60024570.mkv +阿宝+王二妮-接新娘,http://em.21dtv.com/songs/60110599.mkv +凤凰传奇-吉祥年,http://em.21dtv.com/songs/60083101.mkv +玉面天使-吉祥年,http://em.21dtv.com/songs/60081003.mkv +阿木古楞-家乡美,http://em.21dtv.com/songs/60134381.mkv +苏打绿-交响梦,http://em.21dtv.com/songs/60023458.mkv +汤灿-家乡美,http://em.21dtv.com/songs/60023027.mkv +王旭鹏-家乡里,http://em.21dtv.com/songs/60109529.mkv +荞菲-金项链(无原唱),http://em.21dtv.com/songs/60095881.mkv +吉木喜儿-金项链,http://em.21dtv.com/songs/60090800.mkv +蔡健雅-旧行李,http://em.21dtv.com/songs/60064417.mkv +林姗+李明洋-金线莲,http://em.21dtv.com/songs/60024087.mkv +孙燕姿-接下来,http://em.21dtv.com/songs/60023574.mkv +TANK-洁西卡,http://em.21dtv.com/songs/60023606.mkv +苏平生-交心酒,http://em.21dtv.com/songs/60126101.mkv +陈慧琳-金像奖,http://em.21dtv.com/songs/60024088.mkv +佚名-交心酒,http://em.21dtv.com/songs/60023459.mkv +江志丰-叫小贺,http://em.21dtv.com/songs/60085280.mkv +佟左左-吉祥话,http://em.21dtv.com/songs/60022579.mkv +陈思思-吉祥歌,http://em.21dtv.com/songs/60022578.mkv +吉克皓-静心等,http://em.21dtv.com/songs/60126681.mkv +徐彪-敬兄弟,http://em.21dtv.com/songs/60125566.mkv +佚名-静心等,http://em.21dtv.com/songs/60024272.mkv +蔡健雅-假想敌,http://em.21dtv.com/songs/60023134.mkv +RAYA-假想敌,http://em.21dtv.com/songs/60023133.mkv +佚名-救星船(无原唱),http://em.21dtv.com/songs/60024589.mkv +谢霆锋-继续唱(演唱会),http://em.21dtv.com/songs/60022770.mkv +何润东-叫醒爱,http://em.21dtv.com/songs/60085281.mkv +庞龙-继续爱,http://em.21dtv.com/songs/60081961.mkv +武艺-见习爱,http://em.21dtv.com/songs/60076040.mkv +张梓轩-继续爱,http://em.21dtv.com/songs/60022766.mkv +梁咏琪-继续爱,http://em.21dtv.com/songs/60022765.mkv +野人-健忘症,http://em.21dtv.com/songs/60081735.mkv +游鸿明-局外者,http://em.21dtv.com/songs/60024692.mkv +SNH48-机尾云(演),http://em.21dtv.com/songs/60099032.mkv +陈洁仪-今晚夜,http://em.21dtv.com/songs/60093478.mkv +陈浩德-今晚夜(演唱会),http://em.21dtv.com/songs/60076127.mkv +罗文-今晚夜,http://em.21dtv.com/songs/60023914.mkv +朱咪咪-今晚夜(演唱会),http://em.21dtv.com/songs/60023912.mkv +容祖儿-今晚夜(演唱会),http://em.21dtv.com/songs/60023911.mkv +罗文-今晚夜(演唱会),http://em.21dtv.com/songs/60023910.mkv +陈洁灵-今晚夜(演唱会),http://em.21dtv.com/songs/60023909.mkv +张芯瑜-接吻鱼,http://em.21dtv.com/songs/60023573.mkv +朴翔-极无双,http://em.21dtv.com/songs/60129220.mkv +杜岚-吉娃斯,http://em.21dtv.com/songs/60022569.mkv +姜佑泽-局外人,http://em.21dtv.com/songs/60085311.mkv +叶启田-借问你,http://em.21dtv.com/songs/60134989.mkv +佚名-酒为媒(无原唱),http://em.21dtv.com/songs/60024459.mkv +罗志祥-精舞门,http://em.21dtv.com/songs/60024224.mkv +江映蓉-精舞门,http://em.21dtv.com/songs/60024223.mkv +向蕙玲-叫我mika,http://em.21dtv.com/songs/60023515.mkv +陈泰翔-久违了,http://em.21dtv.com/songs/60024380.mkv +苏打绿-近未来,http://em.21dtv.com/songs/60024168.mkv +刘衣玄-鸡尾酒,http://em.21dtv.com/songs/60098154.mkv +潘秀琼-鸡尾酒,http://em.21dtv.com/songs/60090063.mkv +赵薇-旧玩具,http://em.21dtv.com/songs/60076182.mkv +黄仲昆-鸡尾酒(演唱会),http://em.21dtv.com/songs/60022521.mkv +爱乐团-解围孩,http://em.21dtv.com/songs/60023683.mkv +JW-JW DANCE MEDLEY(JUICY GIRL+DO ME MORE),http://em.21dtv.com/songs/60096864.mkv +庞龙-家味道,http://em.21dtv.com/songs/60023017.mkv +佚名-君无愁,http://em.21dtv.com/songs/60024928.mkv +CELINE DION-just walk away,http://em.21dtv.com/songs/60003121.mkv +Zac Brown Band-Jump Right In,http://em.21dtv.com/songs/60096161.mkv +陈慧琳-假天真,http://em.21dtv.com/songs/60023131.mkv +张柏芝-假天真(演唱会),http://em.21dtv.com/songs/60023130.mkv +谢霆锋-假天真(演唱会),http://em.21dtv.com/songs/60023129.mkv +陈慧琳-假天真(演唱会),http://em.21dtv.com/songs/60023128.mkv +周璇-街头月,http://em.21dtv.com/songs/60023590.mkv +林海峰-今天我,http://em.21dtv.com/songs/60125785.mkv +邵杰-酒太伤,http://em.21dtv.com/songs/60135796.mkv +陈绮贞-吉他手,http://em.21dtv.com/songs/60022568.mkv +郭静-今天起,http://em.21dtv.com/songs/60023860.mkv +LINDA-今天起,http://em.21dtv.com/songs/60023859.mkv +张挥-九头鸟,http://em.21dtv.com/songs/60105036.mkv +金久哲-酒太烈,http://em.21dtv.com/songs/60135840.mkv +白鹤-解脱了,http://em.21dtv.com/songs/60107925.mkv +周杰伦-惊叹号,http://em.21dtv.com/songs/60063459.mkv +郭健一-甲天花,http://em.21dtv.com/songs/60023070.mkv +林绫-脚踏车,http://em.21dtv.com/songs/60076069.mkv +王识贤-脚踏车,http://em.21dtv.com/songs/60023493.mkv +红豆少女组-救世主,http://em.21dtv.com/songs/60024587.mkv +余龙+樊桐舟-今世缘,http://em.21dtv.com/songs/60109975.mkv +余龙-今世缘,http://em.21dtv.com/songs/60109148.mkv +云菲菲-今世缘(风景),http://em.21dtv.com/songs/60101246.mkv +施志兴-今世缘,http://em.21dtv.com/songs/60096310.mkv +宝少-今生缘,http://em.21dtv.com/songs/60086636.mkv +罗时丰+陈思安-今生缘,http://em.21dtv.com/songs/60076120.mkv +旭日阳刚-今生缘,http://em.21dtv.com/songs/60023813.mkv +川子-今生缘,http://em.21dtv.com/songs/60023812.mkv +董贞-祭夙玉,http://em.21dtv.com/songs/60022791.mkv +排骨教主-江山雪,http://em.21dtv.com/songs/60135305.mkv +崔京浩-江上行,http://em.21dtv.com/songs/60023360.mkv +全体-教室外,http://em.21dtv.com/songs/60121392.mkv +荒山亮-就是我,http://em.21dtv.com/songs/60098723.mkv +贾斯文-假斯文,http://em.21dtv.com/songs/60085268.mkv +林俊杰-就是我,http://em.21dtv.com/songs/60024629.mkv +WATERMAN-救世waterman,http://em.21dtv.com/songs/60024585.mkv +范逸臣-解释我,http://em.21dtv.com/songs/60023672.mkv +萧正楠-接受我,http://em.21dtv.com/songs/60023570.mkv +陶晶莹-接受我,http://em.21dtv.com/songs/60023569.mkv +戴荃-君是山,http://em.21dtv.com/songs/60135299.mkv +赵青岳-积石山,http://em.21dtv.com/songs/60132935.mkv +雷佳-江山颂,http://em.21dtv.com/songs/60123337.mkv +彭丽媛-江山颂(军旅),http://em.21dtv.com/songs/60091174.mkv +龙千玉-酒渗水,http://em.21dtv.com/songs/60024455.mkv +BRIAN MCFADDEN-just say so,http://em.21dtv.com/songs/60003117.mkv +动力火车-寄生人,http://em.21dtv.com/songs/60022804.mkv +麦伟林+麦玮婷-金石情,http://em.21dtv.com/songs/60102957.mkv +孙国庆-酒神曲,http://em.21dtv.com/songs/60089787.mkv +姜文-酒神曲,http://em.21dtv.com/songs/60089232.mkv +赵薇-救生圈,http://em.21dtv.com/songs/60088704.mkv +TWINS-救生圈,http://em.21dtv.com/songs/60024584.mkv +TWINS-救生圈(演唱会),http://em.21dtv.com/songs/60024583.mkv +佚名-酒神曲,http://em.21dtv.com/songs/60024454.mkv +佚名-金丝雀,http://em.21dtv.com/songs/60024082.mkv +许茹芸-金丝雀,http://em.21dtv.com/songs/60024081.mkv +金小鱼-就是你,http://em.21dtv.com/songs/60134349.mkv +魏文超-就是你,http://em.21dtv.com/songs/60104618.mkv +黄崇旭+J.Wu-就是你,http://em.21dtv.com/songs/60097094.mkv +儿歌-金锁呐,http://em.21dtv.com/songs/60090650.mkv +许亮宇-就是你(演唱会),http://em.21dtv.com/songs/60076187.mkv +郑中基-就是你,http://em.21dtv.com/songs/60024626.mkv +罗百吉+詹曼铃-就是你,http://em.21dtv.com/songs/60024625.mkv +范玮琪-就是你,http://em.21dtv.com/songs/60024624.mkv +戴佩妮-就是你,http://em.21dtv.com/songs/60024623.mkv +流氓阿德-就是你(无原唱),http://em.21dtv.com/songs/60024622.mkv +沪剧-金丝鸟,http://em.21dtv.com/songs/60024080.mkv +詹雅雯-惊什么,http://em.21dtv.com/songs/60081930.mkv +拉毛王旭-江山美,http://em.21dtv.com/songs/60069507.mkv +群星-金石盟,http://em.21dtv.com/songs/60024078.mkv +禾川-江山泪,http://em.21dtv.com/songs/60127244.mkv +苏玮-九色鹿,http://em.21dtv.com/songs/60108832.mkv +袁攀-眷殇恋,http://em.21dtv.com/songs/60076203.mkv +屈慧-九色鹿,http://em.21dtv.com/songs/60070829.mkv +谢霆锋-旧伤口,http://em.21dtv.com/songs/60024562.mkv +郭富城-旧伤口,http://em.21dtv.com/songs/60024561.mkv +张蓉蓉-救世间,http://em.21dtv.com/songs/60123951.mkv +佚名-襟裳岬,http://em.21dtv.com/songs/60024115.mkv +邓丽君-襟裳岬(演唱会),http://em.21dtv.com/songs/60024114.mkv +蔡依林-金三角,http://em.21dtv.com/songs/60024066.mkv +周杰伦-加世界,http://em.21dtv.com/songs/60022968.mkv +赵鑫-旧伤痕,http://em.21dtv.com/songs/60131855.mkv +赵鑫-旧伤痕,http://em.21dtv.com/songs/60129644.mkv +李克勤-旧生会,http://em.21dtv.com/songs/60024565.mkv +杨宗宪-旧伤痕,http://em.21dtv.com/songs/60024560.mkv +办桌二人组-旧伤痕,http://em.21dtv.com/songs/60024559.mkv +刘一祯-江山好,http://em.21dtv.com/songs/60023353.mkv +亦阳-旧时光,http://em.21dtv.com/songs/60128759.mkv +温馨天使-浇树歌,http://em.21dtv.com/songs/60117010.mkv +Sara-旧时光(动画),http://em.21dtv.com/songs/60101820.mkv +苍茫-旧时光(演唱会),http://em.21dtv.com/songs/60024567.mkv +金志文+汤晓菲-肩上蝶,http://em.21dtv.com/songs/60076034.mkv +瞿颖-加速度,http://em.21dtv.com/songs/60022969.mkv +范玮琪+曾静玟-记事本,http://em.21dtv.com/songs/60095076.mkv +周传雄-记事本,http://em.21dtv.com/songs/60022715.mkv +陈慧琳-记事本,http://em.21dtv.com/songs/60022714.mkv +陈慧琳-记事本(演唱会),http://em.21dtv.com/songs/60022713.mkv +BARRY MANILOW-jump shout boogie,http://em.21dtv.com/songs/60003092.mkv +蔡依林-解散爱,http://em.21dtv.com/songs/60100448.mkv +张栋梁-就是爱,http://em.21dtv.com/songs/60024616.mkv +张栋梁+郭采洁-就是爱,http://em.21dtv.com/songs/60024615.mkv +蔡依林-就是爱,http://em.21dtv.com/songs/60024614.mkv +陈佳-佳人醉,http://em.21dtv.com/songs/60127536.mkv +单小源-几人游,http://em.21dtv.com/songs/60072060.mkv +林翠萍-酒若醒(无原唱),http://em.21dtv.com/songs/60024451.mkv +熊汝霖-既如往,http://em.21dtv.com/songs/60091675.mkv +格桑梅朵-嘉绒情,http://em.21dtv.com/songs/60090012.mkv +黄子华-奸人坚,http://em.21dtv.com/songs/60023183.mkv +董贞-剑如虹,http://em.21dtv.com/songs/60069505.mkv +李玉和-节日好,http://em.21dtv.com/songs/60023594.mkv +罗百吉-假日holiday,http://em.21dtv.com/songs/60023091.mkv +熊胡杰-既然爱,http://em.21dtv.com/songs/60022817.mkv +章磊-酒泉月,http://em.21dtv.com/songs/60082044.mkv +佚名2-绝情雨,http://em.21dtv.com/songs/60024868.mkv +佚名1-绝情雨,http://em.21dtv.com/songs/60024867.mkv +王瑞霞-绝情雨,http://em.21dtv.com/songs/60024866.mkv +陈美安-绝情雨,http://em.21dtv.com/songs/60024865.mkv +SNH48-旧球鞋(演),http://em.21dtv.com/songs/60099031.mkv +李丽霞-金曲回响(演唱会),http://em.21dtv.com/songs/60068386.mkv +林良欢-旧签诗,http://em.21dtv.com/songs/60122910.mkv +娅琳-旧情书,http://em.21dtv.com/songs/60122646.mkv +赵洪涛-精气神,http://em.21dtv.com/songs/60105395.mkv +何洁-举起手,http://em.21dtv.com/songs/60024720.mkv +大豪(黄昱豪)-旧情人,http://em.21dtv.com/songs/60135087.mkv +孙露-绝情人,http://em.21dtv.com/songs/60083204.mkv +吴小豪-绝情人,http://em.21dtv.com/songs/60024863.mkv +周润发-旧情人,http://em.21dtv.com/songs/60024544.mkv +樱花姐妹-旧情人,http://em.21dtv.com/songs/60024543.mkv +佚名-旧情人,http://em.21dtv.com/songs/60024542.mkv +王瑞霞-旧情人,http://em.21dtv.com/songs/60024541.mkv +谭咏麟-旧情人,http://em.21dtv.com/songs/60024540.mkv +潘越云-旧情人(无原唱),http://em.21dtv.com/songs/60024539.mkv +郑中基-戒情人,http://em.21dtv.com/songs/60023708.mkv +杨坤-jeep情人,http://em.21dtv.com/songs/60003057.mkv +星弟-静悄悄,http://em.21dtv.com/songs/60080785.mkv +潘秀琼-静悄悄,http://em.21dtv.com/songs/60024270.mkv +黄乙玲-决情批,http://em.21dtv.com/songs/60024787.mkv +陈小云-讲气魄(无原唱),http://em.21dtv.com/songs/60023424.mkv +谢莉婷-绝情梦,http://em.21dtv.com/songs/60123181.mkv +邱芸子-旧情梦,http://em.21dtv.com/songs/60120995.mkv +龙千玉-绝情梦,http://em.21dtv.com/songs/60024862.mkv +翁立友-绝情路,http://em.21dtv.com/songs/60113958.mkv +翁立友-绝情路,http://em.21dtv.com/songs/60110469.mkv +MACHI-举起来,http://em.21dtv.com/songs/60024718.mkv +战犯-惊奇盒,http://em.21dtv.com/songs/60106887.mkv +关键-绝情海,http://em.21dtv.com/songs/60024860.mkv +叶顺有-绝情谷,http://em.21dtv.com/songs/60120395.mkv +段千寻-绝情歌,http://em.21dtv.com/songs/60024859.mkv +洪玮+杜和锦-旧情歌,http://em.21dtv.com/songs/60024530.mkv +王喆-戒情歌,http://em.21dtv.com/songs/60023707.mkv +向蕙玲-绝情风,http://em.21dtv.com/songs/60109216.mkv +佚名-绝情风,http://em.21dtv.com/songs/60024857.mkv +黄乙玲-绝情风,http://em.21dtv.com/songs/60024856.mkv +周彦宏-解千愁,http://em.21dtv.com/songs/60023669.mkv +PING PUNG-讲清楚,http://em.21dtv.com/songs/60023425.mkv +童唱-剪拳布,http://em.21dtv.com/songs/60023238.mkv +黑龙+李芳雷-尽情爱(HD),http://em.21dtv.com/songs/10012842.mkv +黑龙+李芳蕾-尽情爱,http://em.21dtv.com/songs/60093617.mkv +游鸿明+朱丹-就去爱,http://em.21dtv.com/songs/60066087.mkv +张智霖-旧朋友,http://em.21dtv.com/songs/60092622.mkv +群星-旧朋友,http://em.21dtv.com/songs/60024524.mkv +蒋志光-旧朋友,http://em.21dtv.com/songs/60024523.mkv +黑豹-键盘狭,http://em.21dtv.com/songs/60134511.mkv +黄妃+林久登-旧批信,http://em.21dtv.com/songs/60061318.mkv +蔡依林-节拍器,http://em.21dtv.com/songs/60023592.mkv +陈思安-捡破烂,http://em.21dtv.com/songs/60106400.mkv +叶德娴-just one smile(演唱会),http://em.21dtv.com/songs/60003116.mkv +郭易-just one night,http://em.21dtv.com/songs/60003115.mkv +曲婉婷-jar of love,http://em.21dtv.com/songs/60067921.mkv +CHRISTINA PERRI-jar of hearts,http://em.21dtv.com/songs/60082216.mkv +张学友-讲你知,http://em.21dtv.com/songs/60023423.mkv +张学友-讲你知(演唱会),http://em.21dtv.com/songs/60023422.mkv +蔡旻佑-假男友,http://em.21dtv.com/songs/60118026.mkv +马常宝+刘云-江南谣,http://em.21dtv.com/songs/60108158.mkv +宋祖英-江南谣,http://em.21dtv.com/songs/60104058.mkv +顾龙-江南雨,http://em.21dtv.com/songs/60099619.mkv +湘佛莲-江南吟,http://em.21dtv.com/songs/60085275.mkv +杨蔓-江南雨,http://em.21dtv.com/songs/60083146.mkv +眉佳-江南雨,http://em.21dtv.com/songs/60083145.mkv +佚名-江南雨,http://em.21dtv.com/songs/60023347.mkv +PSY-江南style,http://em.21dtv.com/songs/60069081.mkv +侯磊-敬男人,http://em.21dtv.com/songs/60110846.mkv +徐若瑄-敬女人,http://em.21dtv.com/songs/60107748.mkv +Dry+陈慧琳-纪念日,http://em.21dtv.com/songs/60096968.mkv +炎亚纶-纪念日,http://em.21dtv.com/songs/60080026.mkv +祁哲西-纪念日,http://em.21dtv.com/songs/60075971.mkv +邵斯文-纪念日,http://em.21dtv.com/songs/60070790.mkv +陈慧琳+雷颂德+冯德伦-纪念日,http://em.21dtv.com/songs/60022742.mkv +阿杰+彦伶-纪念日,http://em.21dtv.com/songs/60022741.mkv +K ONE-纪念日,http://em.21dtv.com/songs/60022740.mkv +F.I.R-纪念日,http://em.21dtv.com/songs/60022739.mkv +183CLUB-纪念日,http://em.21dtv.com/songs/60022738.mkv +陈慧琳+雷颂德+冯德伦-纪念日(演唱会),http://em.21dtv.com/songs/60022737.mkv +齐秦-纪念日(无原唱),http://em.21dtv.com/songs/60022736.mkv +许志安+陈慧琳+雷颂德-记念日(演唱会),http://em.21dtv.com/songs/60022711.mkv +风语-江南情,http://em.21dtv.com/songs/60128591.mkv +曾心梅-纪念品,http://em.21dtv.com/songs/60107766.mkv +林宥嘉-纪念品,http://em.21dtv.com/songs/60099341.mkv +王程程-江南梦,http://em.21dtv.com/songs/60134001.mkv +曹艺露-江南美,http://em.21dtv.com/songs/60126962.mkv +流苏-江南梅,http://em.21dtv.com/songs/60086626.mkv +杜春梅-江南美,http://em.21dtv.com/songs/60070802.mkv +江蕙-酒女梦(无原唱),http://em.21dtv.com/songs/60024448.mkv +王程程+赵嘉伟-江南恋,http://em.21dtv.com/songs/60135565.mkv +平安-江南莲,http://em.21dtv.com/songs/60096262.mkv +庄振凯-将你留,http://em.21dtv.com/songs/60085276.mkv +陈惠英-江南柳,http://em.21dtv.com/songs/60061294.mkv +Block B-几年后,http://em.21dtv.com/songs/60120195.mkv +崔子格-江南好,http://em.21dtv.com/songs/60096951.mkv +乔毓明-嘉年华,http://em.21dtv.com/songs/60072065.mkv +七仙女-江南好,http://em.21dtv.com/songs/60023345.mkv +科尔沁姐妹-倦鸟归,http://em.21dtv.com/songs/60076202.mkv +UN1-纪念册,http://em.21dtv.com/songs/60123554.mkv +黄依群-江南春,http://em.21dtv.com/songs/60023344.mkv +陈僖仪-记念悲,http://em.21dtv.com/songs/60061280.mkv +赵小兵-几秒钟,http://em.21dtv.com/songs/60022658.mkv +枫舞-寄明月,http://em.21dtv.com/songs/60127115.mkv +孙剑-鸡鸣驿,http://em.21dtv.com/songs/60115784.mkv +遥远-寂寞行,http://em.21dtv.com/songs/60118087.mkv +刘沛洋-寂寞笑,http://em.21dtv.com/songs/60104833.mkv +冯琪儿-姐妹淘,http://em.21dtv.com/songs/60072077.mkv +阿木古楞-金门山,http://em.21dtv.com/songs/60120061.mkv +袁凤瑛-寂寞是,http://em.21dtv.com/songs/60022925.mkv +夏后+阿悄-姐妹日,http://em.21dtv.com/songs/60085286.mkv +刘燕燕-姐妹情,http://em.21dtv.com/songs/60023657.mkv +蔡秋凤+陈思安-姐妹情,http://em.21dtv.com/songs/60023656.mkv +卢广仲-寂寞考,http://em.21dtv.com/songs/60022892.mkv +冉冉升起组合-姐妹花,http://em.21dtv.com/songs/60125157.mkv +龙少也-寂寞河,http://em.21dtv.com/songs/60118235.mkv +上明-教袂乖,http://em.21dtv.com/songs/60130031.mkv +艳阳天-姐妹歌,http://em.21dtv.com/songs/60023654.mkv +TRASH-假摩登,http://em.21dtv.com/songs/60076012.mkv +SWEETY-姐妹帮,http://em.21dtv.com/songs/60023652.mkv +董事长乐团-加暝班(无原唱),http://em.21dtv.com/songs/60022966.mkv +段丽丽-寂寞爱,http://em.21dtv.com/songs/60122931.mkv +佚名-姐妹爱,http://em.21dtv.com/songs/60023651.mkv +湘佛莲-极乐吟,http://em.21dtv.com/songs/60085253.mkv +童唱-金缕衣,http://em.21dtv.com/songs/60024055.mkv +董贞-金缕衣,http://em.21dtv.com/songs/60024054.mkv +潘迪华-金缕衣(演唱会),http://em.21dtv.com/songs/60024053.mkv +周杰伦-伽蓝雨,http://em.21dtv.com/songs/60017790.mkv +佚名-金陵塔,http://em.21dtv.com/songs/60024052.mkv +陈慧娴-joe le taxi(演唱会),http://em.21dtv.com/songs/60003077.mkv +陈见飞-将来式,http://em.21dtv.com/songs/60093499.mkv +王栎鑫-降落伞,http://em.21dtv.com/songs/60082000.mkv +王筝-降落伞(演唱会),http://em.21dtv.com/songs/60064391.mkv +R+B-接力赛,http://em.21dtv.com/songs/60023565.mkv +蔡依林-降落伞(演唱会),http://em.21dtv.com/songs/60023438.mkv +文千岁-祭泸水,http://em.21dtv.com/songs/60022790.mkv +单夕-江流曲,http://em.21dtv.com/songs/60133431.mkv +余天-纪录片,http://em.21dtv.com/songs/60022732.mkv +余天-记录片,http://em.21dtv.com/songs/60022709.mkv +韩传芳-金丽娜,http://em.21dtv.com/songs/60115524.mkv +杜德伟-眷恋你,http://em.21dtv.com/songs/60091385.mkv +阿茹娜-just love music,http://em.21dtv.com/songs/60073454.mkv +MC天佑-吉拉拉,http://em.21dtv.com/songs/60134758.mkv +Mc天佑-吉拉拉,http://em.21dtv.com/songs/50000116.mkv +张其萍-九龙口,http://em.21dtv.com/songs/60063390.mkv +宋茜-九龙诀,http://em.21dtv.com/songs/60128997.mkv +EMINEM-just lose it,http://em.21dtv.com/songs/60003112.mkv +祖烁-90后,http://em.21dtv.com/songs/60127243.mkv +黄灿-金莲花,http://em.21dtv.com/songs/60076139.mkv +黄烂-金莲花,http://em.21dtv.com/songs/60068384.mkv +佚名-酒落喉,http://em.21dtv.com/songs/60024441.mkv +蔡秋凤-酒落喉,http://em.21dtv.com/songs/60024440.mkv +云の泣+银临-锦鲤抄,http://em.21dtv.com/songs/60083179.mkv +门丽-健康摇,http://em.21dtv.com/songs/60129700.mkv +儿歌-健康歌,http://em.21dtv.com/songs/60089133.mkv +范晓萱+王英州-健康歌,http://em.21dtv.com/songs/60023312.mkv +TWINS-健康歌(演唱会),http://em.21dtv.com/songs/60023311.mkv +黄宗泽-尽快爱,http://em.21dtv.com/songs/60024136.mkv +克丽丝叮-就酱紫,http://em.21dtv.com/songs/60105610.mkv +TONICK-戒戒烟,http://em.21dtv.com/songs/60023701.mkv +大小姐-加加油,http://em.21dtv.com/songs/60022960.mkv +杨耀东-季节雨,http://em.21dtv.com/songs/60022752.mkv +陈思涵-寄居蟹,http://em.21dtv.com/songs/60116344.mkv +林俊杰-寄居蟹,http://em.21dtv.com/songs/60091433.mkv +吴若希+胡鸿钧-救救我,http://em.21dtv.com/songs/60080766.mkv +REBORN双鱼座-救救我,http://em.21dtv.com/songs/60080072.mkv +郑中基-救救我,http://em.21dtv.com/songs/60024579.mkv +姜超-救救我,http://em.21dtv.com/songs/60024578.mkv +落小寒+谭萱冉-将军叹,http://em.21dtv.com/songs/60127355.mkv +冉冉-静静听,http://em.21dtv.com/songs/60024268.mkv +黄思婷-尖叫声,http://em.21dtv.com/songs/60133128.mkv +刘福助-鸡机契,http://em.21dtv.com/songs/60022519.mkv +柯建仲-酒家男,http://em.21dtv.com/songs/60095712.mkv +佚名-酒家女,http://em.21dtv.com/songs/60024432.mkv +柯建中-酒家男(无原唱),http://em.21dtv.com/songs/60024431.mkv +I.N.G-健健美,http://em.21dtv.com/songs/60023309.mkv +丁于-寂静岭,http://em.21dtv.com/songs/60130028.mkv +高峰-将军令,http://em.21dtv.com/songs/60127603.mkv +五月天-将军令,http://em.21dtv.com/songs/60105572.mkv +方怡萍-酒甲泪,http://em.21dtv.com/songs/60095544.mkv +棒棒堂-近距离,http://em.21dtv.com/songs/60080895.mkv +吴克群-将军令,http://em.21dtv.com/songs/60023384.mkv +草蜢-将军令(演唱会),http://em.21dtv.com/songs/60023383.mkv +李蚊香-将进酒,http://em.21dtv.com/songs/60135380.mkv +连诗雅-旧街角,http://em.21dtv.com/songs/60118086.mkv +韩磊-将进酒,http://em.21dtv.com/songs/60099614.mkv +黑GIRL-叫姐姐,http://em.21dtv.com/songs/60089074.mkv +美丽心情-将进酒,http://em.21dtv.com/songs/60070804.mkv +高耀太-jump jump jump,http://em.21dtv.com/songs/60067924.mkv +五月天-啾啾啾,http://em.21dtv.com/songs/60061316.mkv +卫兰-九九九,http://em.21dtv.com/songs/60024317.mkv +梁汉文-九九九(演唱会),http://em.21dtv.com/songs/60024316.mkv +潮潮-将进酒,http://em.21dtv.com/songs/60023378.mkv +任剑辉-祭金娇,http://em.21dtv.com/songs/60022789.mkv +朴志胤-姬攫侥,http://em.21dtv.com/songs/60022522.mkv +佚名-judy judy judy,http://em.21dtv.com/songs/60003087.mkv +沈文程-讲酒话(无原唱),http://em.21dtv.com/songs/60095763.mkv +自由发挥-救救火,http://em.21dtv.com/songs/60083192.mkv +佚名-讲酒话(无原唱),http://em.21dtv.com/songs/60023419.mkv +周桐同-寂静海,http://em.21dtv.com/songs/60022812.mkv +韩春雨-节节高,http://em.21dtv.com/songs/60121122.mkv +廖昌永-将军归,http://em.21dtv.com/songs/60112656.mkv +顾凯-戒酒歌,http://em.21dtv.com/songs/60109022.mkv +廖昌永-将军归,http://em.21dtv.com/songs/60097038.mkv +阿果-敬酒歌,http://em.21dtv.com/songs/60076160.mkv +哈仡罗多-敬酒歌,http://em.21dtv.com/songs/60070825.mkv +肖燕-敬酒歌,http://em.21dtv.com/songs/60024250.mkv +德乾旺姆-敬酒歌,http://em.21dtv.com/songs/60024249.mkv +阿鲁阿卓-敬酒歌(演唱会),http://em.21dtv.com/songs/60024248.mkv +庾澄庆-静静的(演唱会),http://em.21dtv.com/songs/60127956.mkv +HUGO-静静的,http://em.21dtv.com/songs/60093822.mkv +庾澄庆-静静的,http://em.21dtv.com/songs/60024261.mkv +郭少杰-简简爱,http://em.21dtv.com/songs/60127487.mkv +雅希-静静爱,http://em.21dtv.com/songs/60119038.mkv +尊华-久久爱,http://em.21dtv.com/songs/60114503.mkv +张媛媛-紧紧爱,http://em.21dtv.com/songs/60102211.mkv +尊华-久久爱,http://em.21dtv.com/songs/60024376.mkv +丁文琪-99% & 1%(演唱会),http://em.21dtv.com/songs/60000031.mkv +JOE JONAS-just in love,http://em.21dtv.com/songs/60062064.mkv +王唯侨-镜花吟,http://em.21dtv.com/songs/60099401.mkv +西域刀郎-菊花吟,http://em.21dtv.com/songs/60090207.mkv +潘晓峰-菊花吟,http://em.21dtv.com/songs/60024703.mkv +吴德华-金航线,http://em.21dtv.com/songs/60083167.mkv +唐磊-菊花香,http://em.21dtv.com/songs/60024702.mkv +周华健-江湖笑,http://em.21dtv.com/songs/60023337.mkv +郑海龙潘艺-江湖行,http://em.21dtv.com/songs/60023331.mkv +庹宗华-江湖行,http://em.21dtv.com/songs/60023330.mkv +黄群+黄众-江湖行,http://em.21dtv.com/songs/60023329.mkv +何炯华-见画像,http://em.21dtv.com/songs/60023284.mkv +王莱-嫁乎我,http://em.21dtv.com/songs/60125946.mkv +姚贝娜-惊鸿舞,http://em.21dtv.com/songs/60081782.mkv +张旸-菊花台,http://em.21dtv.com/songs/60113468.mkv +[Group] +groupName=十六万歌曲MV等 - 25 +童丽-菊花台,http://em.21dtv.com/songs/60076196.mkv +陈熠-菊花台,http://em.21dtv.com/songs/60072099.mkv +周杰伦-菊花台,http://em.21dtv.com/songs/60024701.mkv +杨千嬅-菊花台(演唱会),http://em.21dtv.com/songs/60024700.mkv +慕容晓晓-九华山,http://em.21dtv.com/songs/60096895.mkv +郭芯其+林苑-交换生,http://em.21dtv.com/songs/60023455.mkv +张俊-江湖人,http://em.21dtv.com/songs/60110183.mkv +网络歌手-江湖人,http://em.21dtv.com/songs/60088415.mkv +怪兽-九号球,http://em.21dtv.com/songs/60105909.mkv +五月天-九号球,http://em.21dtv.com/songs/60024312.mkv +顾莉雅-江湖情,http://em.21dtv.com/songs/60023336.mkv +蘑菇兄弟-江湖飘,http://em.21dtv.com/songs/60120936.mkv +覃浩-江湖漂,http://em.21dtv.com/songs/60110510.mkv +张沛-江湖梦,http://em.21dtv.com/songs/60129094.mkv +SUNNY HILL-结婚吗,http://em.21dtv.com/songs/60076086.mkv +梁咏琪-进化梦,http://em.21dtv.com/songs/60024155.mkv +金桢勋-就好了,http://em.21dtv.com/songs/60123259.mkv +星月组合-结婚啦,http://em.21dtv.com/songs/60119613.mkv +孙楠-江河恋,http://em.21dtv.com/songs/60111810.mkv +陈诺-结婚啦,http://em.21dtv.com/songs/60102903.mkv +蓝月心-江湖令,http://em.21dtv.com/songs/60099476.mkv +罗文-江湖路(演唱会),http://em.21dtv.com/songs/60076047.mkv +林俊杰-进化论,http://em.21dtv.com/songs/60024154.mkv +林俊杰-进化论(演唱会),http://em.21dtv.com/songs/60024153.mkv +秦杨-江湖泪,http://em.21dtv.com/songs/60023334.mkv +郭桂彬-江湖泪,http://em.21dtv.com/songs/60023333.mkv +阿吉仔-江湖泪,http://em.21dtv.com/songs/60023332.mkv +周燕君-江湖寂,http://em.21dtv.com/songs/60098196.mkv +童安格-祭魂酒,http://em.21dtv.com/songs/60091802.mkv +回音哥-寄何方,http://em.21dtv.com/songs/60123793.mkv +佚名-季候风,http://em.21dtv.com/songs/60022748.mkv +王菲-季候风,http://em.21dtv.com/songs/60022747.mkv +林凡-季候风,http://em.21dtv.com/songs/60022746.mkv +王菲-季候风(演唱会),http://em.21dtv.com/songs/60022745.mkv +王识贤-机会到,http://em.21dtv.com/songs/60022509.mkv +赵曼+刘霄-记号笔,http://em.21dtv.com/songs/60102763.mkv +幸龙-结婚吧,http://em.21dtv.com/songs/60023619.mkv +路童-江湖啊,http://em.21dtv.com/songs/60023326.mkv +邓皓天-久公主,http://em.21dtv.com/songs/60131865.mkv +陆海涛-紧箍咒,http://em.21dtv.com/songs/60129720.mkv +24HERBS-激光中(搞野版),http://em.21dtv.com/songs/60092126.mkv +鲁振顺-激光中(演唱会),http://em.21dtv.com/songs/60075953.mkv +徐佳莹-惧高症,http://em.21dtv.com/songs/60024749.mkv +后弦-九公主,http://em.21dtv.com/songs/60024310.mkv +大嘴巴-紧箍咒,http://em.21dtv.com/songs/60024120.mkv +方皓玟-激光中,http://em.21dtv.com/songs/60022536.mkv +叶德娴-激光中(演唱会),http://em.21dtv.com/songs/60022534.mkv +罗文-激光中(演唱会),http://em.21dtv.com/songs/60022533.mkv +卢海鹏-激光中(演唱会),http://em.21dtv.com/songs/60022532.mkv +黎耀祥-激光中(演唱会),http://em.21dtv.com/songs/60022531.mkv +草蜢-激光中(演唱会),http://em.21dtv.com/songs/60022530.mkv +佚名-鸡公仔,http://em.21dtv.com/songs/60022517.mkv +张德兰-鸡公仔(演唱会),http://em.21dtv.com/songs/60022516.mkv +齐秦-借根烟,http://em.21dtv.com/songs/60124765.mkv +韩日-桔梗谣,http://em.21dtv.com/songs/60089541.mkv +王喆-嫁高原(演唱会),http://em.21dtv.com/songs/60069502.mkv +小雪-jr干线,http://em.21dtv.com/songs/60003085.mkv +黄罡-家港湾,http://em.21dtv.com/songs/60134506.mkv +苏耀光-交给我,http://em.21dtv.com/songs/60126112.mkv +苏耀光-交给我,http://em.21dtv.com/songs/60083150.mkv +郭斯炫-嫁给我,http://em.21dtv.com/songs/60069503.mkv +杜德伟-嫁给我,http://em.21dtv.com/songs/60023162.mkv +葛仲珊-就改天,http://em.21dtv.com/songs/60131772.mkv +邓健泓-见光死,http://em.21dtv.com/songs/60093242.mkv +革命歌-井岗山,http://em.21dtv.com/songs/60090306.mkv +佚名-井冈山,http://em.21dtv.com/songs/60024231.mkv +白冰冰-介高尚,http://em.21dtv.com/songs/60023690.mkv +MIWA-ホイッスル~君と过ごした日々~,http://em.21dtv.com/songs/60074259.mkv +林欣彤-金刚圈,http://em.21dtv.com/songs/60113712.mkv +张晓芬-巾帼情,http://em.21dtv.com/songs/60091115.mkv +薛之谦-几个你,http://em.21dtv.com/songs/60069490.mkv +关悦-结果呢,http://em.21dtv.com/songs/60023616.mkv +唐俪+吴俊宏-嫁给你,http://em.21dtv.com/songs/60023160.mkv +谢采妘-九个郎,http://em.21dtv.com/songs/60024307.mkv +刘韵-九个郎,http://em.21dtv.com/songs/60024306.mkv +大嘴巴-结果咧,http://em.21dtv.com/songs/60023615.mkv +何韵诗-金刚经,http://em.21dtv.com/songs/60024045.mkv +DANIEL POWTER-jimmy gets high,http://em.21dtv.com/songs/60065624.mkv +佚名-桔梗花,http://em.21dtv.com/songs/60024693.mkv +郑秀文-禁果花,http://em.21dtv.com/songs/60024181.mkv +储兰兰-巾帼唱,http://em.21dtv.com/songs/60076105.mkv +龚琳娜+阿宽-金箍棒(演唱会),http://em.21dtv.com/songs/60076137.mkv +伊然+烟圈蔓延-今非昨,http://em.21dtv.com/songs/60123623.mkv +周礼虎-捡肥皂,http://em.21dtv.com/songs/60103162.mkv +姚苏-结发缘,http://em.21dtv.com/songs/60108411.mkv +佚名-just for you,http://em.21dtv.com/songs/60003107.mkv +罗文-just for you,http://em.21dtv.com/songs/60003106.mkv +彭丽-家福田,http://em.21dtv.com/songs/60098382.mkv +阿雅-减肥拳,http://em.21dtv.com/songs/60023229.mkv +郑志勇-紧返来,http://em.21dtv.com/songs/60127467.mkv +姜玉阳-剑风凉,http://em.21dtv.com/songs/60067119.mkv +林姗姗-旧风褛,http://em.21dtv.com/songs/60024505.mkv +芦伟-警匪警,http://em.21dtv.com/songs/60129531.mkv +阿沛乐团-减肥歌,http://em.21dtv.com/songs/60023228.mkv +黎明-just for fun(演唱会),http://em.21dtv.com/songs/60003105.mkv +何晟铭-椒房殿,http://em.21dtv.com/songs/60023477.mkv +A LIN+小宇-九二零,http://em.21dtv.com/songs/60072095.mkv +刀郎-吉尔拉,http://em.21dtv.com/songs/60022551.mkv +何润东-假动作,http://em.21dtv.com/songs/60092256.mkv +欧豪-假动作,http://em.21dtv.com/songs/60083124.mkv +陈柔希-假动作,http://em.21dtv.com/songs/60068365.mkv +萧亚轩-剪刀嘴(演唱会),http://em.21dtv.com/songs/60064386.mkv +房祖名-假动作,http://em.21dtv.com/songs/60023080.mkv +五月天-金多虾,http://em.21dtv.com/songs/60024042.mkv +钟伟-街灯下,http://em.21dtv.com/songs/60023581.mkv +尤雅-街灯下,http://em.21dtv.com/songs/60023580.mkv +林淑蓉-街灯下,http://em.21dtv.com/songs/60023579.mkv +郝婉彤-记得我,http://em.21dtv.com/songs/60114135.mkv +小沈阳-九道弯,http://em.21dtv.com/songs/60086640.mkv +木吉他-记得我,http://em.21dtv.com/songs/60022696.mkv +郭彪-角斗士,http://em.21dtv.com/songs/60023480.mkv +信-金都男,http://em.21dtv.com/songs/60134902.mkv +李志洲-鸡蛋面,http://em.21dtv.com/songs/60125700.mkv +王雪霏-家的梦,http://em.21dtv.com/songs/60117931.mkv +郭富城-经典medley(演唱会),http://em.21dtv.com/songs/60024194.mkv +李圣杰-记得吗(演唱会),http://em.21dtv.com/songs/60022688.mkv +恺乐-久等了,http://em.21dtv.com/songs/60126925.mkv +恺乐-久等了,http://em.21dtv.com/songs/60125590.mkv +连亚琦-姐弟恋,http://em.21dtv.com/songs/60097022.mkv +蛋堡-金赌烂,http://em.21dtv.com/songs/60092031.mkv +宇海文-姐弟恋,http://em.21dtv.com/songs/60076092.mkv +晟瑶-金达莱,http://em.21dtv.com/songs/60068383.mkv +谭晶-金达莱,http://em.21dtv.com/songs/60024041.mkv +KENNY ROGERS-just dropped in,http://em.21dtv.com/songs/60003104.mkv +澎恰恰-紧大汉,http://em.21dtv.com/songs/60024119.mkv +米娜-接电话,http://em.21dtv.com/songs/60023560.mkv +葛笑-戒毒歌,http://em.21dtv.com/songs/60122075.mkv +葛笑-戒赌歌,http://em.21dtv.com/songs/60117180.mkv +左健-借东风,http://em.21dtv.com/songs/60099980.mkv +周艳泓-嫁东风,http://em.21dtv.com/songs/60064381.mkv +张学津-借东风,http://em.21dtv.com/songs/60023716.mkv +梁剑东-酒对点,http://em.21dtv.com/songs/60113737.mkv +邓丽君-几多愁(演唱会),http://em.21dtv.com/songs/60022646.mkv +罗霖-姐弟爱,http://em.21dtv.com/songs/60118847.mkv +张杰+徐嘉苇-简单爱,http://em.21dtv.com/songs/60111884.mkv +刘瑞琦-简单爱,http://em.21dtv.com/songs/60109192.mkv +郑劲松-简单爱,http://em.21dtv.com/songs/60108048.mkv +周杰伦+陈奕迅-简单爱,http://em.21dtv.com/songs/60107603.mkv +周杰伦-简单爱,http://em.21dtv.com/songs/60023251.mkv +刘芮伊-简单爱,http://em.21dtv.com/songs/60023250.mkv +陈展鹏+李宗翰-简单爱,http://em.21dtv.com/songs/60023249.mkv +阿松-简单爱,http://em.21dtv.com/songs/60023248.mkv +阿沁-记的爱,http://em.21dtv.com/songs/60022706.mkv +阿沁+李玖哲-记得爱,http://em.21dtv.com/songs/60022683.mkv +崔来宾-江城子,http://em.21dtv.com/songs/60119475.mkv +吴俊宏-今朝醉,http://em.21dtv.com/songs/60114442.mkv +肖雪-京城雪,http://em.21dtv.com/songs/60130666.mkv +林晓培-交叉线,http://em.21dtv.com/songs/60023441.mkv +双星-接财神,http://em.21dtv.com/songs/60076076.mkv +冯刚毅+郑钤丹-接财神,http://em.21dtv.com/songs/60076075.mkv +张德兰+区瑞强-接财神,http://em.21dtv.com/songs/60023559.mkv +佚名-接财神,http://em.21dtv.com/songs/60023558.mkv +阎维文-交城山,http://em.21dtv.com/songs/60023443.mkv +易影峰-旧城人,http://em.21dtv.com/songs/60069532.mkv +雷龙-就差钱,http://em.21dtv.com/songs/60024593.mkv +陈星-祭春秋,http://em.21dtv.com/songs/60022788.mkv +梁佳玉-江城梦,http://em.21dtv.com/songs/60113735.mkv +KARA-jet coaster love,http://em.21dtv.com/songs/60003066.mkv +康天庥-姜葱鸡,http://em.21dtv.com/songs/60127954.mkv +万山红-剪窗花,http://em.21dtv.com/songs/60087233.mkv +叶瑷菱-酒场歌,http://em.21dtv.com/songs/60024387.mkv +夏韶声-交叉点,http://em.21dtv.com/songs/60023439.mkv +李华勇-锦城春,http://em.21dtv.com/songs/60024127.mkv +胜屿-诀别夜,http://em.21dtv.com/songs/60126080.mkv +卓依婷-金包银,http://em.21dtv.com/songs/60024037.mkv +小凤凤-金包银,http://em.21dtv.com/songs/60024036.mkv +蔡振南-金包银,http://em.21dtv.com/songs/60024035.mkv +大鹏-煎饼侠,http://em.21dtv.com/songs/60113377.mkv +谭维维-煎饼侠,http://em.21dtv.com/songs/60112965.mkv +二手玫瑰-煎饼侠,http://em.21dtv.com/songs/60112490.mkv +胡彦斌-煎饼侠,http://em.21dtv.com/songs/60112158.mkv +张韶涵-讲不听,http://em.21dtv.com/songs/60125546.mkv +张韶涵-讲不听,http://em.21dtv.com/songs/60070805.mkv +光良-讲不听,http://em.21dtv.com/songs/60023414.mkv +陈诺-饯别诗,http://em.21dtv.com/songs/60109708.mkv +斯琴高丽-诀别颂,http://em.21dtv.com/songs/60086646.mkv +胡彦斌-诀别诗,http://em.21dtv.com/songs/60024802.mkv +佚名-角板山,http://em.21dtv.com/songs/60023479.mkv +刘纯如-嫁别人,http://em.21dtv.com/songs/60023155.mkv +蔡小虎-酒杯情,http://em.21dtv.com/songs/60095907.mkv +杨欣桦-交杯酒,http://em.21dtv.com/songs/60135405.mkv +郑健英+陈瑜-井边会,http://em.21dtv.com/songs/60024229.mkv +高枫-金不换,http://em.21dtv.com/songs/60024039.mkv +白领组合-加班歌,http://em.21dtv.com/songs/60068360.mkv +许冠杰-johnny b goode(演唱会),http://em.21dtv.com/songs/60003079.mkv +单小源-戒不掉,http://em.21dtv.com/songs/60096969.mkv +戴佩妮-剪不断,http://em.21dtv.com/songs/60080114.mkv +李佳璐-剪不断,http://em.21dtv.com/songs/60066059.mkv +庾澄庆-戒不掉,http://em.21dtv.com/songs/60023694.mkv +同恩-戒不掉,http://em.21dtv.com/songs/60023693.mkv +陈瑞+梦然-加倍爱,http://em.21dtv.com/songs/60122246.mkv +梦然-加倍爱,http://em.21dtv.com/songs/60075991.mkv +任和-旧爱情,http://em.21dtv.com/songs/60103070.mkv +Shine+黄伟文-劲爱你,http://em.21dtv.com/songs/60097007.mkv +何韵诗+SHINE-劲爱你,http://em.21dtv.com/songs/60024171.mkv +何韵诗-劲爱你(演唱会),http://em.21dtv.com/songs/60024170.mkv +ALIZEE-jen ai marre(演唱会),http://em.21dtv.com/songs/60003058.mkv +SAM TSUI-just a dream,http://em.21dtv.com/songs/60084730.mkv +佚名-just another dream,http://em.21dtv.com/songs/60003098.mkv +佚名-just another day(无原唱),http://em.21dtv.com/songs/60003097.mkv +邓丽君-今でも(演唱会),http://em.21dtv.com/songs/60023738.mkv +2R-9a1f(演唱会),http://em.21dtv.com/songs/60084689.mkv +ALL 4 ONE-im your man,http://em.21dtv.com/songs/60002898.mkv +许志安-its your life(演唱会),http://em.21dtv.com/songs/60003033.mkv +佚名-if you go(无原唱),http://em.21dtv.com/songs/60002795.mkv +温流(SHINEE)-in your eyes,http://em.21dtv.com/songs/60071615.mkv +佚名-in your eyes,http://em.21dtv.com/songs/60002937.mkv +小松拓也-in your eyes,http://em.21dtv.com/songs/60002936.mkv +罗志祥+杨丞琳-in your eyes,http://em.21dtv.com/songs/60002935.mkv +KYLIE MINOGUE-in your eyes,http://em.21dtv.com/songs/60002934.mkv +DREAM GIRLS-im your dreamgirl,http://em.21dtv.com/songs/60062012.mkv +蔡健雅-its your chance,http://em.21dtv.com/songs/60003032.mkv +叶佩雯-in your arms(演唱会),http://em.21dtv.com/songs/60002933.mkv +CELINE DION+R.KELLY-im your angel,http://em.21dtv.com/songs/60002895.mkv +TWINS-ichiban兴奋,http://em.21dtv.com/songs/60002748.mkv +TWINS-ichiban兴奋(演唱会),http://em.21dtv.com/songs/60002747.mkv +INA-i wanted you,http://em.21dtv.com/songs/60082205.mkv +AVRIL LAVIGNE-im with you,http://em.21dtv.com/songs/60002894.mkv +蛋堡-i want you,http://em.21dtv.com/songs/60002711.mkv +SAVAGE GARDEN-i want you,http://em.21dtv.com/songs/60002710.mkv +MADONNA-i want you,http://em.21dtv.com/songs/60002709.mkv +MUMFORD+SONS-i will wait,http://em.21dtv.com/songs/60073407.mkv +CURTIS STIGERS-i wonder why,http://em.21dtv.com/songs/60002735.mkv +王绎龙-I Wanna Show,http://em.21dtv.com/songs/60082004.mkv +苏姗-i will survive(演唱会),http://em.21dtv.com/songs/60073406.mkv +GLORIA GAYNOR-i will survive,http://em.21dtv.com/songs/60002726.mkv +刘雅婷-i wanna rock,http://em.21dtv.com/songs/60081457.mkv +BRUNO MARS-it will rain,http://em.21dtv.com/songs/60063643.mkv +佚名-it wasnt me,http://em.21dtv.com/songs/60002981.mkv +EXPOSE-in walked love,http://em.21dtv.com/songs/60002932.mkv +ELTON JOHN-i want love,http://em.21dtv.com/songs/60002698.mkv +JOE-i wanna know,http://em.21dtv.com/songs/60002690.mkv +BEYONCE-i was here,http://em.21dtv.com/songs/60073403.mkv +BRITNEY SPEARS-i wanna go,http://em.21dtv.com/songs/60073401.mkv +HUNTER HAYES-i want crazy,http://em.21dtv.com/songs/60082204.mkv +YUMMY-i wont cry,http://em.21dtv.com/songs/60002736.mkv +LEONA LEWIS-i will be,http://em.21dtv.com/songs/60002721.mkv +胡彦斌-i wanna be(演唱会),http://em.21dtv.com/songs/60002683.mkv +萧敬腾+劳晓音-I Want You(最美和声)(现场版),http://em.21dtv.com/songs/60101490.mkv +ALESSO+蔡依林-I WANNA KNOW,http://em.21dtv.com/songs/60127643.mkv +李在元-its the time,http://em.21dtv.com/songs/60082215.mkv +柳妍熙-It's My Way,http://em.21dtv.com/songs/60100233.mkv +黄若熙-It's My Time,http://em.21dtv.com/songs/60128637.mkv +BEN JOVI-It's My Life,http://em.21dtv.com/songs/60101593.mkv +THINKER-IT'S MY DREAM,http://em.21dtv.com/songs/60096863.mkv +佚名-in the summertime,http://em.21dtv.com/songs/60002931.mkv +MUNGO JERRY-in the summertime,http://em.21dtv.com/songs/60002930.mkv +SANTANA+CHAD KROEGER-into the night,http://em.21dtv.com/songs/60002953.mkv +何志健-into the music,http://em.21dtv.com/songs/60073440.mkv +逃跑计划-is this love,http://em.21dtv.com/songs/60084727.mkv +佚名-its too late,http://em.21dtv.com/songs/60003027.mkv +滨崎步-is this love,http://em.21dtv.com/songs/60002964.mkv +WHITESNAKE-is this love,http://em.21dtv.com/songs/60002963.mkv +范玮琪-i think i,http://em.21dtv.com/songs/60002670.mkv +何韵诗-in the end,http://em.21dtv.com/songs/60002923.mkv +LINKIN PARK-in the end,http://em.21dtv.com/songs/60002922.mkv +何韵诗-in the end(演唱会),http://em.21dtv.com/songs/60002921.mkv +CHIPMUNK+KERI HILSON-in the air,http://em.21dtv.com/songs/60073438.mkv +吴建豪-is this all,http://em.21dtv.com/songs/60060840.mkv +佚名-i say yes(无原唱),http://em.21dtv.com/songs/60002648.mkv +IMAGINE DRAGONS-its time,http://em.21dtv.com/songs/60073449.mkv +佚名-i shot theriff,http://em.21dtv.com/songs/60002651.mkv +ELTON JOHN-im still standing,http://em.21dtv.com/songs/60002890.mkv +AKON FT LIL WAYNE-im so paid,http://em.21dtv.com/songs/60002880.mkv +CEELO GREEN-its ok,http://em.21dtv.com/songs/60073447.mkv +陶辚竹-its ok,http://em.21dtv.com/songs/60063645.mkv +叶熙祺-its ok,http://em.21dtv.com/songs/60060843.mkv +SUNNY+LUNA-its me,http://em.21dtv.com/songs/60070359.mkv +183CLUB-im so hot,http://em.21dtv.com/songs/60002878.mkv +DJ KHALED-im so hood,http://em.21dtv.com/songs/60002877.mkv +佚名-its so easy,http://em.21dtv.com/songs/60003022.mkv +佚名-i still believe,http://em.21dtv.com/songs/60002662.mkv +MARIAH CAREY-i still believe,http://em.21dtv.com/songs/60002661.mkv +YUI-i remember you,http://em.21dtv.com/songs/60073396.mkv +GERI HALLIWELL-its raining man,http://em.21dtv.com/songs/60003020.mkv +R.DAVIES+R.HODGESON-its raining again(无原唱),http://em.21dtv.com/songs/60003019.mkv +王秀琳-i t 情人,http://em.21dtv.com/songs/60002745.mkv +STING+ERIC CLAPTON-its probably me,http://em.21dtv.com/songs/60003018.mkv +UGK+OUTKAST-international players anthem,http://em.21dtv.com/songs/60002952.mkv +佚名-in our lifetime,http://em.21dtv.com/songs/60002920.mkv +R.E.M-imitation of life,http://em.21dtv.com/songs/60002903.mkv +曲婉婷-if only just,http://em.21dtv.com/songs/60082210.mkv +SHANIA TWAIN-im outta here,http://em.21dtv.com/songs/60002874.mkv +郭富城-im on fire,http://em.21dtv.com/songs/60002873.mkv +王绎龙-i need you,http://em.21dtv.com/songs/60073394.mkv +小宇宙-i need you,http://em.21dtv.com/songs/60071610.mkv +艾怡良-i need you,http://em.21dtv.com/songs/60060829.mkv +郭采洁-i need you,http://em.21dtv.com/songs/60002630.mkv +WESTLIFE-i need you,http://em.21dtv.com/songs/60002629.mkv +LEANN RIMES-i need you,http://em.21dtv.com/songs/60002628.mkv +佚名-i need you(演唱会),http://em.21dtv.com/songs/60002627.mkv +TOM JONES-its not unusual,http://em.21dtv.com/songs/60003008.mkv +麻吉弟弟-i need u,http://em.21dtv.com/songs/60002626.mkv +邓紫棋-INTRO+AFTER TONIGHT,http://em.21dtv.com/songs/60096862.mkv +KYLIE MINOGUE-INTO THE BLUE,http://em.21dtv.com/songs/60096861.mkv +DEV-In The Dark,http://em.21dtv.com/songs/60100716.mkv +N SYNC-ill never stop,http://em.21dtv.com/songs/60002843.mkv +张智成-i need love(演唱会),http://em.21dtv.com/songs/60002624.mkv +Coldplay-Ink,http://em.21dtv.com/songs/60107398.mkv +MAGNETIC MAN-i need air,http://em.21dtv.com/songs/60002623.mkv +汤加丽-i miss you,http://em.21dtv.com/songs/60073392.mkv +NOEL-i miss you,http://em.21dtv.com/songs/60073391.mkv +BEYONCE-i miss you,http://em.21dtv.com/songs/60069093.mkv +侯湘婷-ill marry you,http://em.21dtv.com/songs/60002835.mkv +青春美少女-i miss you,http://em.21dtv.com/songs/60002621.mkv +罗百吉-i miss you,http://em.21dtv.com/songs/60002620.mkv +刘德华-i miss you,http://em.21dtv.com/songs/60002619.mkv +光良-i miss you,http://em.21dtv.com/songs/60002618.mkv +戴洛-i miss you,http://em.21dtv.com/songs/60002617.mkv +陈柏宇-i miss you,http://em.21dtv.com/songs/60002616.mkv +张志家+丁文琪-its my war,http://em.21dtv.com/songs/60003004.mkv +本兮-I Miss U,http://em.21dtv.com/songs/60080425.mkv +黑豹乐队-its my time(演唱会),http://em.21dtv.com/songs/60084729.mkv +林育群-its my time,http://em.21dtv.com/songs/60003003.mkv +CNBLUE-im sorry,http://em.21dtv.com/songs/60073430.mkv +TINCHY STRYDER-in my system,http://em.21dtv.com/songs/60063641.mkv +蔡卓妍-im sorry,http://em.21dtv.com/songs/60060833.mkv +BEE GEES-its my neighbourhood(演唱会),http://em.21dtv.com/songs/60003002.mkv +DELILAH-inside my love,http://em.21dtv.com/songs/60071616.mkv +NO DOUBT-its my life,http://em.21dtv.com/songs/60003001.mkv +BON JOVI-its my life,http://em.21dtv.com/songs/60003000.mkv +佚名-in my life,http://em.21dtv.com/songs/60002918.mkv +谭咏麟-in my life(演唱会),http://em.21dtv.com/songs/60002917.mkv +BRIAN-in my head,http://em.21dtv.com/songs/60002916.mkv +T.I.+BIG K.R.I.T-im flexin,http://em.21dtv.com/songs/60073424.mkv +杨谨-In My Eyes,http://em.21dtv.com/songs/60099338.mkv +薛凯琪-its my day,http://em.21dtv.com/songs/60002999.mkv +T.I.-im back,http://em.21dtv.com/songs/60063639.mkv +刘若英-it must be,http://em.21dtv.com/songs/60002975.mkv +唐禹哲-i m back,http://em.21dtv.com/songs/60002611.mkv +SPOSE-im awesome,http://em.21dtv.com/songs/60060831.mkv +KYLIE MINOGUE-in my arms,http://em.21dtv.com/songs/60002914.mkv +BAKE JI YOUNG-im loving you,http://em.21dtv.com/songs/60073428.mkv +2NE1-i love you,http://em.21dtv.com/songs/60070351.mkv +S.P.Y-i love you,http://em.21dtv.com/songs/60065618.mkv +钟镇涛-i love you,http://em.21dtv.com/songs/60002608.mkv +佚名-i love you,http://em.21dtv.com/songs/60002607.mkv +箫贺硕-i love you,http://em.21dtv.com/songs/60002604.mkv +王若琳-i love you,http://em.21dtv.com/songs/60002603.mkv +泰妍-i love you,http://em.21dtv.com/songs/60002602.mkv +凤娘+安琪-i love you,http://em.21dtv.com/songs/60002601.mkv +陈伟联-i love you,http://em.21dtv.com/songs/60002600.mkv +办桌二人组-i love you,http://em.21dtv.com/songs/60002599.mkv +张卫健-i love you(演唱会),http://em.21dtv.com/songs/60002598.mkv +GLAM-i like that,http://em.21dtv.com/songs/60073388.mkv +MARIAH CAREY-its like that,http://em.21dtv.com/songs/60002998.mkv +金少祥-I LOVE YOU,http://em.21dtv.com/songs/60100984.mkv +JUST-i love you,http://em.21dtv.com/songs/60099666.mkv +佚名-inh la oi,http://em.21dtv.com/songs/60002941.mkv +ICONA POP-i love it,http://em.21dtv.com/songs/60073389.mkv +HILLTOP HOODS+SIA-i love it,http://em.21dtv.com/songs/60066659.mkv +佚名-i like it,http://em.21dtv.com/songs/60002572.mkv +ASHER ROTH-i love college,http://em.21dtv.com/songs/60063632.mkv +佚名-i like chopin,http://em.21dtv.com/songs/60002571.mkv +ALTIMA-ill believe,http://em.21dtv.com/songs/60063637.mkv +THE EVERLY BROTHERS-i kissed you,http://em.21dtv.com/songs/60002558.mkv +BEAST-i knew it,http://em.21dtv.com/songs/60066658.mkv +汪佩蓉-its just love,http://em.21dtv.com/songs/60002997.mkv +佚名-im in you(无原唱),http://em.21dtv.com/songs/60002868.mkv +JOHN DENVER-is it love,http://em.21dtv.com/songs/60002962.mkv +佚名-if i fell,http://em.21dtv.com/songs/60002768.mkv +黄小桢-if i could(无原唱),http://em.21dtv.com/songs/60002764.mkv +VANILLA ICE-ice ice baby,http://em.21dtv.com/songs/60002746.mkv +ISSA+SOULJA-i hate u,http://em.21dtv.com/songs/60063628.mkv +田丹-I Have Nothing,http://em.21dtv.com/songs/60081515.mkv +WHITNEY HOUSTON-i have nothing,http://em.21dtv.com/songs/60002543.mkv +苏丁琦-I Have Nothing,http://em.21dtv.com/songs/60100408.mkv +陈宇凡-i got you,http://em.21dtv.com/songs/60002530.mkv +DARIUS RUCKER-i got nothin,http://em.21dtv.com/songs/60065616.mkv +JIANET JIACHSON-i get lonely,http://em.21dtv.com/songs/60002522.mkv +NELLY FURTADO-in gods hands,http://em.21dtv.com/songs/60002909.mkv +BLACK EYED PEAS-i gotta feeling,http://em.21dtv.com/songs/60002531.mkv +SE7EN-im going crazy,http://em.21dtv.com/songs/60002860.mkv +佚名-i go crazy,http://em.21dtv.com/songs/60002523.mkv +THE PROCLAIMERS-im gonna be,http://em.21dtv.com/songs/60002862.mkv +GERALD LEVERT-id give anything,http://em.21dtv.com/songs/60002751.mkv +B.WILSON-i get around(无原唱),http://em.21dtv.com/songs/60002521.mkv +Suby-If You Believe,http://em.21dtv.com/songs/60086148.mkv +THE WANTED-i found you,http://em.21dtv.com/songs/60073381.mkv +AXWELL-i found u,http://em.21dtv.com/songs/60002520.mkv +吉克隽逸-i feel good,http://em.21dtv.com/songs/60069092.mkv +任贤齐-i feel good,http://em.21dtv.com/songs/60002515.mkv +任贤齐-i feel good(演唱会),http://em.21dtv.com/songs/60002514.mkv +THE BEATLES-i feel fine,http://em.21dtv.com/songs/60002513.mkv +WHITNEY HOUSTON-im every woman,http://em.21dtv.com/songs/60002858.mkv +佚名-im every woman(无原唱),http://em.21dtv.com/songs/60002857.mkv +NICKELBACK-if everyone cared,http://em.21dtv.com/songs/60002759.mkv +讦谯龙-i do run,http://em.21dtv.com/songs/60002477.mkv +刘依纯-i dont mind(无原唱),http://em.21dtv.com/songs/60002493.mkv +APINK-i dont know,http://em.21dtv.com/songs/60002490.mkv +BIG SEAN-i do it,http://em.21dtv.com/songs/60060824.mkv +50 CENT-in da club,http://em.21dtv.com/songs/60002907.mkv +F.I.R-i dont care(演唱会),http://em.21dtv.com/songs/60002486.mkv +RICK ROSS+SEAN GARRETT-in da box,http://em.21dtv.com/songs/60073436.mkv +RICK ROSS-in da box,http://em.21dtv.com/songs/60060836.mkv +蔡健雅-i do believe,http://em.21dtv.com/songs/60002472.mkv +张根硕-i c u,http://em.21dtv.com/songs/60082197.mkv +周华健-i cant remember,http://em.21dtv.com/songs/60002460.mkv +谭维维-Ich Liebe Dich,http://em.21dtv.com/songs/60101511.mkv +DISH//-i can hear,http://em.21dtv.com/songs/60086347.mkv +佚名-im coming home,http://em.21dtv.com/songs/60002855.mkv +黄嘉千-i can fly,http://em.21dtv.com/songs/60002442.mkv +徐怀钰-i cant cry,http://em.21dtv.com/songs/60002450.mkv +符琼音-i can believe,http://em.21dtv.com/songs/60071609.mkv +萧亚轩-ill be there,http://em.21dtv.com/songs/60002823.mkv +REBORN-ill be there,http://em.21dtv.com/songs/60002822.mkv +MARIAH CAREY-ill be there,http://em.21dtv.com/songs/60002821.mkv +MARIAH CAREY+98 DEGREES-ill be there,http://em.21dtv.com/songs/60002820.mkv +侧田-ill be there(演唱会),http://em.21dtv.com/songs/60002819.mkv +江君佑-iq博士(演唱会),http://em.21dtv.com/songs/60002956.mkv +NATASHA BEDINGFIELD-i bruise easily,http://em.21dtv.com/songs/60002439.mkv +2PM-ill be back,http://em.21dtv.com/songs/60002811.mkv +25GLAY-i am xxx,http://em.21dtv.com/songs/60073367.mkv +GLAY-i am xxx,http://em.21dtv.com/songs/60002412.mkv +佚名-i am woman,http://em.21dtv.com/songs/60002411.mkv +WESTLIFE-im already there(演唱会),http://em.21dtv.com/songs/60082208.mkv +拾参乐团-its a shame,http://em.21dtv.com/songs/60002987.mkv +游鸿明-its all right,http://em.21dtv.com/songs/60002992.mkv +关心妍-i am ready(演唱会),http://em.21dtv.com/songs/60002408.mkv +李玟-its a party,http://em.21dtv.com/songs/60002986.mkv +佚名-its all over,http://em.21dtv.com/songs/60002991.mkv +WILLOW SMITH-i am me,http://em.21dtv.com/songs/60071608.mkv +幸田来未+MISONO-its all love,http://em.21dtv.com/songs/60002990.mkv +BONNIE TYLER-its a heartache,http://em.21dtv.com/songs/60002985.mkv +Enrique Iglesias+Pitbull-I'm A Freak,http://em.21dtv.com/songs/60098991.mkv +钟舒漫-its abeautif day,http://em.21dtv.com/songs/60060844.mkv +张杰-im a dreamer,http://em.21dtv.com/songs/60002849.mkv +SMASH MOUTH-im a believer,http://em.21dtv.com/songs/60002848.mkv +张惠妹-i am amazed,http://em.21dtv.com/songs/60002405.mkv +音阙诗听-红昭愿,http://em.21dtv.com/songs/60135987.mkv +翁立友-花中语,http://em.21dtv.com/songs/60113959.mkv +汪佩蓉+杜德伟-恨自由,http://em.21dtv.com/songs/60020724.mkv +安年公子-画中仙,http://em.21dtv.com/songs/60068338.mkv +金莎-画中仙,http://em.21dtv.com/songs/60021620.mkv +徐小凤-横直线(演唱会),http://em.21dtv.com/songs/60020739.mkv +许哲佩-孩子王,http://em.21dtv.com/songs/60100959.mkv +女子十二乐坊-魂之舞,http://em.21dtv.com/songs/60089779.mkv +许哲珮-孩子王,http://em.21dtv.com/songs/60080793.mkv +龙千玉-海中网,http://em.21dtv.com/songs/60019834.mkv +周华健-孩子王,http://em.21dtv.com/songs/60019687.mkv +吴浩康-孩子王,http://em.21dtv.com/songs/60019686.mkv +林娜-孩子王,http://em.21dtv.com/songs/60019685.mkv +吴浩康-孩子王(演唱会),http://em.21dtv.com/songs/60019684.mkv +谢霆锋-活着viva,http://em.21dtv.com/songs/60022390.mkv +谢霆锋-活着viva(演唱会),http://em.21dtv.com/songs/60022389.mkv +达明一派+谢霆锋-活着viva(演唱会),http://em.21dtv.com/songs/60022388.mkv +佚名-好兆头,http://em.21dtv.com/songs/60083017.mkv +琴瑟组合-花折伞,http://em.21dtv.com/songs/60127223.mkv +三宝+素面-花折伞,http://em.21dtv.com/songs/60119226.mkv +陈小霞-化妆师,http://em.21dtv.com/songs/60021600.mkv +郁钧剑-花纸伞,http://em.21dtv.com/songs/60021557.mkv +林忆莲-花之色(演唱会),http://em.21dtv.com/songs/60021556.mkv +易齐-很自然,http://em.21dtv.com/songs/60091271.mkv +谢霆锋-黄种人,http://em.21dtv.com/songs/60022003.mkv +黄品源-很自然,http://em.21dtv.com/songs/60020674.mkv +佚名-很自然(无原唱),http://em.21dtv.com/songs/60020673.mkv +VITAS-鹤之泣,http://em.21dtv.com/songs/60085228.mkv +陈妍希-孩子气,http://em.21dtv.com/songs/60064272.mkv +万芳-孩子气,http://em.21dtv.com/songs/60019679.mkv +陈升-孩子气,http://em.21dtv.com/songs/60019678.mkv +降央卓玛-黑帐篷,http://em.21dtv.com/songs/60020605.mkv +李言哲-海之南,http://em.21dtv.com/songs/60102358.mkv +刘和刚-孩子妈,http://em.21dtv.com/songs/60134925.mkv +王丽达-海之梦,http://em.21dtv.com/songs/60133971.mkv +贺群芳-徽州美,http://em.21dtv.com/songs/60115414.mkv +陈奕迅-黑泽明,http://em.21dtv.com/songs/60093414.mkv +郭书瑶-好姊妹,http://em.21dtv.com/songs/60088781.mkv +郑智化-画中梦,http://em.21dtv.com/songs/60021618.mkv +蔡佳莹-花中谜,http://em.21dtv.com/songs/60021559.mkv +蔡佳乐+阿伦-花中谜,http://em.21dtv.com/songs/60021558.mkv +陈奕迅-黑择明,http://em.21dtv.com/songs/60020604.mkv +陈奕迅-黑择明(HD演唱会),http://em.21dtv.com/songs/60020603.mkv +郭书瑶-好姐妹,http://em.21dtv.com/songs/60020273.mkv +随性乐团-喝醉了,http://em.21dtv.com/songs/60130865.mkv +许晓杰-海之恋,http://em.21dtv.com/songs/60097061.mkv +罗桦-红烛泪(演唱会),http://em.21dtv.com/songs/60075798.mkv +史长亮-海之恋,http://em.21dtv.com/songs/60075657.mkv +柳影虹-红烛泪(演唱会),http://em.21dtv.com/songs/60061253.mkv +廖隽嘉-花之恋,http://em.21dtv.com/songs/60021555.mkv +沈文程-花之恋(无原唱),http://em.21dtv.com/songs/60021554.mkv +陈淑桦-红砖路,http://em.21dtv.com/songs/60021042.mkv +钟丽蓉-红烛泪,http://em.21dtv.com/songs/60021040.mkv +陈瑞-红烛泪,http://em.21dtv.com/songs/60021039.mkv +张伟文-红烛泪(演唱会),http://em.21dtv.com/songs/60021038.mkv +戴梅君-花之恋,http://em.21dtv.com/songs/60006907.mkv +王旋-花在开,http://em.21dtv.com/songs/60091698.mkv +孔悦-恨自己,http://em.21dtv.com/songs/60122651.mkv +金贵晟-虹之间,http://em.21dtv.com/songs/60097031.mkv +罗百吉-喝醉酒,http://em.21dtv.com/songs/60091837.mkv +杨钰莹-嘿这家,http://em.21dtv.com/songs/60088082.mkv +余翠芝-好知己,http://em.21dtv.com/songs/60081822.mkv +苏梓玲+老猫-红指甲,http://em.21dtv.com/songs/60070753.mkv +伍家辉-很自己,http://em.21dtv.com/songs/60067069.mkv +顾峰-恨自己,http://em.21dtv.com/songs/60020723.mkv +杨钰莹-嘿 这家,http://em.21dtv.com/songs/60020613.mkv +赵洳萱-合掌好,http://em.21dtv.com/songs/60131850.mkv +迈克鸿飞-汉中魂,http://em.21dtv.com/songs/60114112.mkv +王冠-海之花,http://em.21dtv.com/songs/60067053.mkv +郑伊健-花正好,http://em.21dtv.com/songs/60021553.mkv +佚名-海中花,http://em.21dtv.com/songs/60019833.mkv +庞龙+马一鸣-好中国,http://em.21dtv.com/songs/60091020.mkv +新宝岛康乐队-猴子歌,http://em.21dtv.com/songs/60021072.mkv +徐子岁-好中国(演唱会),http://em.21dtv.com/songs/60020272.mkv +王伟-好丈夫,http://em.21dtv.com/songs/60111262.mkv +孟勇-汉字赋,http://em.21dtv.com/songs/60067057.mkv +谢浛露-嘿茱蒂,http://em.21dtv.com/songs/60020630.mkv +猪哥亮-红嘴唇(演唱会),http://em.21dtv.com/songs/60075800.mkv +龙千玉-海中船,http://em.21dtv.com/songs/60019832.mkv +晓华-好预兆(演唱会),http://em.21dtv.com/songs/60083016.mkv +ZE A-后遗症,http://em.21dtv.com/songs/60075812.mkv +邓丽君-好预兆,http://em.21dtv.com/songs/60075700.mkv +陈奕迅-活跃症,http://em.21dtv.com/songs/60022381.mkv +翁立友-后一站,http://em.21dtv.com/songs/60021120.mkv +王友良-红眼症,http://em.21dtv.com/songs/60021021.mkv +卓依婷-好预兆,http://em.21dtv.com/songs/60020263.mkv +佚名-好预兆,http://em.21dtv.com/songs/60020262.mkv +谢采妘-好预兆,http://em.21dtv.com/songs/60020261.mkv +彭佳慧-好预兆,http://em.21dtv.com/songs/60020260.mkv +蔡琴-好预兆(HD演唱会),http://em.21dtv.com/songs/60020259.mkv +李菓+储兰兰-好姻缘,http://em.21dtv.com/songs/60130441.mkv +波拉-好姻缘,http://em.21dtv.com/songs/60086588.mkv +方伊琪+陈浩德-恨悠悠(演唱会),http://em.21dtv.com/songs/60075757.mkv +张清芳-花雨夜,http://em.21dtv.com/songs/60021541.mkv +臧天朔-红艳艳,http://em.21dtv.com/songs/60021022.mkv +郑少秋-恨悠悠,http://em.21dtv.com/songs/60020722.mkv +苏杨峻-好姻缘,http://em.21dtv.com/songs/60020256.mkv +清源-哈一哟,http://em.21dtv.com/songs/60019566.mkv +石头-红颜笑,http://em.21dtv.com/songs/60107090.mkv +李斌-哈一下,http://em.21dtv.com/songs/60091315.mkv +刘德华-火焰心,http://em.21dtv.com/songs/60022478.mkv +方琦-还有我,http://em.21dtv.com/songs/60124007.mkv +孙露-还有我,http://em.21dtv.com/songs/60096978.mkv +任贤齐-还有我,http://em.21dtv.com/songs/60019662.mkv +何炅-还有我,http://em.21dtv.com/songs/60019661.mkv +任贤齐-还有我(演唱会),http://em.21dtv.com/songs/60019660.mkv +郑中基-还以为,http://em.21dtv.com/songs/60019651.mkv +YELLOWCARD-hang you up,http://em.21dtv.com/songs/60065599.mkv +董贞-寒衣调,http://em.21dtv.com/songs/60112929.mkv +王利-红樱桃,http://em.21dtv.com/songs/60083048.mkv +黄妃-红樱桃,http://em.21dtv.com/songs/60066029.mkv +王识贤-黑阴天,http://em.21dtv.com/songs/60020598.mkv +佚名-憨愿头,http://em.21dtv.com/songs/60019868.mkv +天爱-红嫣裳,http://em.21dtv.com/songs/60121543.mkv +董华-红叶颂,http://em.21dtv.com/songs/60094270.mkv +潘春春-回忆锁,http://em.21dtv.com/songs/60086615.mkv +熊七梅-红颜杀,http://em.21dtv.com/songs/60072010.mkv +赵默-红雨伞,http://em.21dtv.com/songs/60021035.mkv +德德玛-红雨伞,http://em.21dtv.com/songs/60021034.mkv +李逸朗+杨思琦-黑眼圈,http://em.21dtv.com/songs/60120646.mkv +Coco Sori-黑眼圈,http://em.21dtv.com/songs/60117440.mkv +池宇菲-黑眼圈,http://em.21dtv.com/songs/60113779.mkv +汪苏泷-黑眼圈,http://em.21dtv.com/songs/60103414.mkv +蒲紫微-红叶情,http://em.21dtv.com/songs/60068323.mkv +郑智化-伙伊去,http://em.21dtv.com/songs/60022488.mkv +佚名-火伊去,http://em.21dtv.com/songs/60022481.mkv +郭瓦加毛吉-红原情,http://em.21dtv.com/songs/60021036.mkv +周国贤-黑眼圈,http://em.21dtv.com/songs/60020579.mkv +戴佩妮-黑眼圈,http://em.21dtv.com/songs/60020578.mkv +罗志祥-黑眼圈(演唱会),http://em.21dtv.com/songs/60020577.mkv +尤雅-寒雨曲,http://em.21dtv.com/songs/60019916.mkv +青山-寒雨曲,http://em.21dtv.com/songs/60019915.mkv +林淑蓉-寒雨曲,http://em.21dtv.com/songs/60019914.mkv +余天-寒雨曲(无原唱),http://em.21dtv.com/songs/60019913.mkv +张鹤-欢迎你,http://em.21dtv.com/songs/60105883.mkv +舒鸣-还有你,http://em.21dtv.com/songs/60081975.mkv +梁佳杰-还有你,http://em.21dtv.com/songs/60081347.mkv +后羿-海燕呐,http://em.21dtv.com/songs/60068305.mkv +MC魏小然-红颜墓,http://em.21dtv.com/songs/60131083.mkv +紫琴-红颜美,http://em.21dtv.com/songs/60063498.mkv +YUMMY-还有梦,http://em.21dtv.com/songs/60019659.mkv +默言-红颜泪,http://em.21dtv.com/songs/60136039.mkv +黄雅莉-黄雅莉,http://em.21dtv.com/songs/60136033.mkv +山子华-红颜泪,http://em.21dtv.com/songs/60131371.mkv +王凤霞-喊月亮,http://em.21dtv.com/songs/60130571.mkv +西风-花雨楼,http://em.21dtv.com/songs/60118903.mkv +贾争艳-红颜泪,http://em.21dtv.com/songs/60116260.mkv +李雨伦-花眼泪,http://em.21dtv.com/songs/60099327.mkv +慕容晓晓-红颜泪,http://em.21dtv.com/songs/60096967.mkv +李琦+汪小敏-好运来,http://em.21dtv.com/songs/60096961.mkv +卓依婷-好运来,http://em.21dtv.com/songs/60086589.mkv +刘晶-红叶恋,http://em.21dtv.com/songs/60075797.mkv +童丽-红颜泪,http://em.21dtv.com/songs/60075790.mkv +邓千绘-很用力(演唱会),http://em.21dtv.com/songs/60075752.mkv +龚月-好运来,http://em.21dtv.com/songs/60075702.mkv +洪辰+杨洋-海芋恋(演唱会),http://em.21dtv.com/songs/60071985.mkv +杜春梅-喊月亮,http://em.21dtv.com/songs/60070727.mkv +张信哲-回忆里,http://em.21dtv.com/songs/60022248.mkv +李丹阳-红月亮,http://em.21dtv.com/songs/60021037.mkv +静婷-红与蓝,http://em.21dtv.com/songs/60021031.mkv +佚名-红颜泪(无原唱),http://em.21dtv.com/songs/60021005.mkv +祖海-好运来,http://em.21dtv.com/songs/60020269.mkv +群星-好运来,http://em.21dtv.com/songs/60020268.mkv +李媛希-海芋恋,http://em.21dtv.com/songs/60019825.mkv +萧敬腾-海芋恋(演唱会),http://em.21dtv.com/songs/60019824.mkv +刘珂矣-花又开,http://em.21dtv.com/songs/60122530.mkv +陈慧琳-红眼睛,http://em.21dtv.com/songs/60121078.mkv +刘涛-红颜旧,http://em.21dtv.com/songs/60112542.mkv +姚贝娜-红颜劫,http://em.21dtv.com/songs/60075789.mkv +祁晓婷-回忆街,http://em.21dtv.com/songs/60066042.mkv +周杰伦-霍元甲,http://em.21dtv.com/songs/60022497.mkv +林峰-霍元甲(演唱会),http://em.21dtv.com/songs/60022496.mkv +JS-花与剑,http://em.21dtv.com/songs/60021536.mkv +黄龄-红眼睛,http://em.21dtv.com/songs/60021020.mkv +王爱华-红叶红,http://em.21dtv.com/songs/60131665.mkv +文千岁+李宝莹-槐阴会,http://em.21dtv.com/songs/60021685.mkv +赵泳华-红雨花,http://em.21dtv.com/songs/60021033.mkv +方怡萍-红颜花(无原唱),http://em.21dtv.com/songs/60021004.mkv +乌日娜-婚宴歌,http://em.21dtv.com/songs/60101707.mkv +乌日塔-婚宴歌,http://em.21dtv.com/songs/60090493.mkv +郑子威-怀疑感,http://em.21dtv.com/songs/60075868.mkv +陈依依-回音谷,http://em.21dtv.com/songs/60022255.mkv +BRANDY-have you ever,http://em.21dtv.com/songs/60002126.mkv +陈瑞+小多-火与蝶,http://em.21dtv.com/songs/60114219.mkv +灵丽-红腰带,http://em.21dtv.com/songs/60113829.mkv +郭富城-好一对,http://em.21dtv.com/songs/60093353.mkv +JT HODGES-hunt you down,http://em.21dtv.com/songs/60065612.mkv +泳儿-花与蝶(演唱会),http://em.21dtv.com/songs/60064327.mkv +卓依婷-坏一点,http://em.21dtv.com/songs/60021729.mkv +黄品源-花与蝶,http://em.21dtv.com/songs/60021535.mkv +童唱-花与蝶(无原唱),http://em.21dtv.com/songs/60021534.mkv +王炎-红腰带,http://em.21dtv.com/songs/60021023.mkv +JAZMINE-holding you down,http://em.21dtv.com/songs/60002300.mkv +霍尊-花雅禅,http://em.21dtv.com/songs/60112378.mkv +颜志文-火焰虫(无原唱),http://em.21dtv.com/songs/60022474.mkv +周子扬-黑与白,http://em.21dtv.com/songs/60089214.mkv +陈凯旋-黑与白,http://em.21dtv.com/songs/60083031.mkv +李环+王成-槐荫别,http://em.21dtv.com/songs/60021686.mkv +文千岁+李宝莹-槐阴别,http://em.21dtv.com/songs/60021684.mkv +巫启贤-喝一杯,http://em.21dtv.com/songs/60020295.mkv +陈飞宏-还原爱,http://em.21dtv.com/songs/60104576.mkv +后弦-很有爱,http://em.21dtv.com/songs/60061247.mkv +佚名-回延安,http://em.21dtv.com/songs/60022232.mkv +萌萌哒天团-花仙子,http://em.21dtv.com/songs/60131768.mkv +王义-花香醉,http://em.21dtv.com/songs/60105239.mkv +杨雯茜-坏小子,http://em.21dtv.com/songs/60021727.mkv +童唱-花仙子,http://em.21dtv.com/songs/60021499.mkv +2R-花仙子,http://em.21dtv.com/songs/60021498.mkv +格桑梅朵-黑小子,http://em.21dtv.com/songs/60020576.mkv +齐峰-黑小子(演唱会),http://em.21dtv.com/songs/60020575.mkv +郝邵文-好小子(无原唱),http://em.21dtv.com/songs/60020226.mkv +王可+张文静-红夕阳,http://em.21dtv.com/songs/60085196.mkv +河图-华胥引,http://em.21dtv.com/songs/60083067.mkv +赵咏华-好幸运,http://em.21dtv.com/songs/60080365.mkv +范振锋+梁奕伦-好学友(演唱会),http://em.21dtv.com/songs/60020246.mkv +郑俊弘-火线下,http://em.21dtv.com/songs/60128470.mkv +郑俊弘-火线下,http://em.21dtv.com/songs/60122169.mkv +张燕-好消息,http://em.21dtv.com/songs/60020224.mkv +高瑞欣-韩秀香,http://em.21dtv.com/songs/60019895.mkv +Roy Kim-或许我,http://em.21dtv.com/songs/60122415.mkv +钟汉良-很像我,http://em.21dtv.com/songs/60020670.mkv +白冰冰-憨相思,http://em.21dtv.com/songs/60095819.mkv +崔健-红先生,http://em.21dtv.com/songs/60091010.mkv +于文华-红线绳,http://em.21dtv.com/songs/60089591.mkv +网络歌手-红先生,http://em.21dtv.com/songs/60088421.mkv +冯翰铭+陈奕迅-浣溪沙,http://em.21dtv.com/songs/60081878.mkv +REDNOON-红心十,http://em.21dtv.com/songs/60064308.mkv +水晶乐坊-浣溪沙,http://em.21dtv.com/songs/60021851.mkv +李圣杰-很想说,http://em.21dtv.com/songs/60020664.mkv +萧人凤-火星人,http://em.21dtv.com/songs/60130705.mkv +董贞-花想容,http://em.21dtv.com/songs/60107182.mkv +吴若希-好心人,http://em.21dtv.com/songs/60080767.mkv +魏雪漫-火星人,http://em.21dtv.com/songs/60072054.mkv +程飞鸣-换心人,http://em.21dtv.com/songs/60021845.mkv +许晓杰-华夏情,http://em.21dtv.com/songs/60131809.mkv +宗海迪-好心情,http://em.21dtv.com/songs/60112641.mkv +张鹤-好心情,http://em.21dtv.com/songs/60105881.mkv +吴丹妮-好心情,http://em.21dtv.com/songs/60096958.mkv +甲子慧+王中平-红线情,http://em.21dtv.com/songs/60095807.mkv +何洁-好心情,http://em.21dtv.com/songs/60087304.mkv +王建杰-好心情,http://em.21dtv.com/songs/60086586.mkv +宇海文-鹤乡情,http://em.21dtv.com/songs/60081246.mkv +王玉国-鹤乡情,http://em.21dtv.com/songs/60080746.mkv +段红-好心情,http://em.21dtv.com/songs/60066021.mkv +吴昭兴-好心情(演唱会),http://em.21dtv.com/songs/60066020.mkv +刘愉愉-好心情,http://em.21dtv.com/songs/60064284.mkv +伍佰-活下去,http://em.21dtv.com/songs/60022379.mkv +紫薇-回想曲,http://em.21dtv.com/songs/60022214.mkv +蔡幸娟-回想曲,http://em.21dtv.com/songs/60022213.mkv +朱孝天-好心情,http://em.21dtv.com/songs/60020238.mkv +易秒英-好心情,http://em.21dtv.com/songs/60020237.mkv +李玟-好心情,http://em.21dtv.com/songs/60020236.mkv +S.H.E-好心情,http://em.21dtv.com/songs/60020235.mkv +易明珠-好想你,http://em.21dtv.com/songs/60130378.mkv +彭清-很想你,http://em.21dtv.com/songs/60126910.mkv +王蕴-好想你,http://em.21dtv.com/songs/60123017.mkv +武湄-很想你,http://em.21dtv.com/songs/60118735.mkv +四叶草Joyce-好想你,http://em.21dtv.com/songs/60118466.mkv +朱主爱-好想你,http://em.21dtv.com/songs/60117796.mkv +余佳泽-好想你,http://em.21dtv.com/songs/60098114.mkv +邰正宵-好想你,http://em.21dtv.com/songs/60096964.mkv +童星-贺新年,http://em.21dtv.com/songs/60088389.mkv +天津阿明-很想你,http://em.21dtv.com/songs/60083033.mkv +高玉玫-好想你,http://em.21dtv.com/songs/60083015.mkv +慕容晓晓-花心男,http://em.21dtv.com/songs/60021516.mkv +张智成-很想你,http://em.21dtv.com/songs/60020663.mkv +潘恩蓓-很想你,http://em.21dtv.com/songs/60020662.mkv +蔡勇-很想你,http://em.21dtv.com/songs/60020661.mkv +卓依婷-贺新年,http://em.21dtv.com/songs/60020479.mkv +牛欣欣-贺新年,http://em.21dtv.com/songs/60020478.mkv +凯璐凯玥-贺新年,http://em.21dtv.com/songs/60020477.mkv +徐若瑄-好想你,http://em.21dtv.com/songs/60020206.mkv +王力宏-好想你,http://em.21dtv.com/songs/60020205.mkv +蔡依林-好想你,http://em.21dtv.com/songs/60020204.mkv +佚名-好想你(无原唱),http://em.21dtv.com/songs/60020203.mkv +甘雅丹-红雪莲,http://em.21dtv.com/songs/60105267.mkv +秀兰玛雅-花醒了,http://em.21dtv.com/songs/60085210.mkv +乌兰托娅-红雪莲,http://em.21dtv.com/songs/60063079.mkv +林一峰-活下来(演唱会),http://em.21dtv.com/songs/60022378.mkv +小娟-红雪莲,http://em.21dtv.com/songs/60020994.mkv +李建强-好辛苦,http://em.21dtv.com/songs/60120621.mkv +曹磊-好想哭,http://em.21dtv.com/songs/60102295.mkv +南妮-好想哭,http://em.21dtv.com/songs/60101281.mkv +丑儿-好想哭,http://em.21dtv.com/songs/60093824.mkv +紫龙-好想哭,http://em.21dtv.com/songs/60020202.mkv +周华健-好想哭,http://em.21dtv.com/songs/60020201.mkv +雷龙-何小姐,http://em.21dtv.com/songs/60134439.mkv +管辉-很想家,http://em.21dtv.com/songs/60119867.mkv +Mc老席-韩小姐,http://em.21dtv.com/songs/60119161.mkv +康珈鸣-回峡江(演),http://em.21dtv.com/songs/60099218.mkv +庄心妍-幻想家,http://em.21dtv.com/songs/60072032.mkv +郑希怡-花心机,http://em.21dtv.com/songs/60021514.mkv +邓丽欣-花小姐,http://em.21dtv.com/songs/60021505.mkv +曹轩宾-好想家,http://em.21dtv.com/songs/60020197.mkv +小贱-hi小姐,http://em.21dtv.com/songs/60002281.mkv +马丽-含羞花,http://em.21dtv.com/songs/60109747.mkv +姚贝娜-红雪花,http://em.21dtv.com/songs/60075788.mkv +刘子毅-欢喜歌,http://em.21dtv.com/songs/60085218.mkv +郁可唯-坏习惯,http://em.21dtv.com/songs/60083071.mkv +邓子霆-坏习惯,http://em.21dtv.com/songs/60075874.mkv +谢霆锋-坏习惯,http://em.21dtv.com/songs/60021726.mkv +郑秀文-坏习惯(演唱会),http://em.21dtv.com/songs/60021725.mkv +谢霆锋-坏习惯(演唱会),http://em.21dtv.com/songs/60021724.mkv +达明一派+谢霆锋-坏习惯(演唱会),http://em.21dtv.com/songs/60021723.mkv +佚名-红星歌,http://em.21dtv.com/songs/60020989.mkv +环宇组合-好媳妇,http://em.21dtv.com/songs/60135578.mkv +夏国星+春妹-很幸福(无原唱),http://em.21dtv.com/songs/60020671.mkv +容祖儿-混血儿(演唱会),http://em.21dtv.com/songs/60022330.mkv +李清-好兄弟,http://em.21dtv.com/songs/60130427.mkv +肖家永-好兄弟,http://em.21dtv.com/songs/60126078.mkv +正歌-好兄弟,http://em.21dtv.com/songs/60121847.mkv +王龙-好兄弟,http://em.21dtv.com/songs/60106151.mkv +徐新军-好兄弟,http://em.21dtv.com/songs/60109357.mkv +焦洋-嘿兄弟,http://em.21dtv.com/songs/60107042.mkv +浩东-好兄弟,http://em.21dtv.com/songs/60107031.mkv +孙思怡-后现代,http://em.21dtv.com/songs/60101068.mkv +赵鑫+黄勇-好兄弟,http://em.21dtv.com/songs/60095097.mkv +黄勇+赵鑫-好兄弟,http://em.21dtv.com/songs/60093754.mkv +王龙-好兄弟,http://em.21dtv.com/songs/60075699.mkv +梅东生-好兄弟,http://em.21dtv.com/songs/60068316.mkv +IM乐队-坏兄弟,http://em.21dtv.com/songs/60021728.mkv +唐杰-好兄弟,http://em.21dtv.com/songs/60020244.mkv +软硬天师-好兄弟,http://em.21dtv.com/songs/60020243.mkv +李志洲-好兄弟,http://em.21dtv.com/songs/60020242.mkv +胡力+阿龙正刚-好兄弟,http://em.21dtv.com/songs/60020241.mkv +黑龙+成奎安-好兄弟,http://em.21dtv.com/songs/60020240.mkv +软硬天师-好兄弟(演唱会),http://em.21dtv.com/songs/60020239.mkv +佚名-含羞草,http://em.21dtv.com/songs/60019889.mkv +翁倩玉-含羞草,http://em.21dtv.com/songs/60019888.mkv +童唱-含羞草,http://em.21dtv.com/songs/60019887.mkv +潘秀琼-含羞草,http://em.21dtv.com/songs/60019886.mkv +佚名-含羞草(慢三),http://em.21dtv.com/songs/60019885.mkv +张宁-幻想爱,http://em.21dtv.com/songs/60075892.mkv +MIXION-好想爱,http://em.21dtv.com/songs/60075691.mkv +张韶涵-幻想爱,http://em.21dtv.com/songs/60021820.mkv +金海心-呼吸爱,http://em.21dtv.com/songs/60021171.mkv +张学友-坏x5(坏坏坏坏坏),http://em.21dtv.com/songs/60021689.mkv +张学友-坏x5(坏坏坏坏坏)(演唱会),http://em.21dtv.com/songs/60021688.mkv +刘德华-话我知,http://em.21dtv.com/songs/60021633.mkv +余天-乎我醉,http://em.21dtv.com/songs/60021142.mkv +佚名-乎我醉,http://em.21dtv.com/songs/60021141.mkv +陈盈洁-乎我醉,http://em.21dtv.com/songs/60021140.mkv +王菀之-画外音,http://em.21dtv.com/songs/60106138.mkv +王菀之-画外音,http://em.21dtv.com/songs/60021613.mkv +3 DOORS DOWN-here without you,http://em.21dtv.com/songs/60002218.mkv +泳儿-花无雪,http://em.21dtv.com/songs/60021496.mkv +泳儿-花无雪(演唱会),http://em.21dtv.com/songs/60021495.mkv +艾梦萌-红舞鞋,http://em.21dtv.com/songs/60020981.mkv +李宇春-happy wake up,http://em.21dtv.com/songs/60002096.mkv +王爱华-花为谁开,http://em.21dtv.com/songs/60006906.mkv +杨云阁-花无声,http://em.21dtv.com/songs/60121797.mkv +小瑜-黑武士,http://em.21dtv.com/songs/60075742.mkv +佚名-嘿我说,http://em.21dtv.com/songs/60020627.mkv +林俊杰-黑武士,http://em.21dtv.com/songs/60020574.mkv +ANDY WILLIAMS-hawaiian wedding song,http://em.21dtv.com/songs/60002132.mkv +LOICK ESSIEN-how we roll,http://em.21dtv.com/songs/60063622.mkv +罗力威-花无情(演唱会),http://em.21dtv.com/songs/60075851.mkv +杨瑞代-哈瓦那,http://em.21dtv.com/songs/60019565.mkv +音乐走廊+歌一生-花为媒,http://em.21dtv.com/songs/60121142.mkv +玖月奇迹-花为媒,http://em.21dtv.com/songs/60110416.mkv +玖月奇迹-花为媒,http://em.21dtv.com/songs/60109549.mkv +孔莹-花为媒,http://em.21dtv.com/songs/60087649.mkv +顾莉雅-花为媒(演唱会),http://em.21dtv.com/songs/60021494.mkv +DIDO-here with me,http://em.21dtv.com/songs/60002217.mkv +ROBYN-hang with me,http://em.21dtv.com/songs/60002056.mkv +蔡健雅-好无聊,http://em.21dtv.com/songs/60020177.mkv +李健-好望角,http://em.21dtv.com/songs/60020176.mkv +王菲-寒武纪,http://em.21dtv.com/songs/60019908.mkv +江映蓉-花无果,http://em.21dtv.com/songs/60075850.mkv +南拳妈妈-here we go,http://em.21dtv.com/songs/60002216.mkv +李雪莱-会玩儿,http://em.21dtv.com/songs/60127054.mkv +THE GAME FEAT+50 CEN-how we do,http://em.21dtv.com/songs/60002379.mkv +小瑜-灰完爱,http://em.21dtv.com/songs/60072040.mkv +谭咏麟-何谓爱,http://em.21dtv.com/songs/60066022.mkv +吴雨霏-here we are,http://em.21dtv.com/songs/60002215.mkv +GLORIA ESTEFAN-here we are,http://em.21dtv.com/songs/60002214.mkv +朱孝天-here we are(演唱会),http://em.21dtv.com/songs/60002213.mkv +BLU CANTRELL-hitem up style,http://em.21dtv.com/songs/60002280.mkv +七朵组合-华佗在,http://em.21dtv.com/songs/60110811.mkv +赵垒-黄土塬,http://em.21dtv.com/songs/60128426.mkv +花之悦-胡同摇,http://em.21dtv.com/songs/60088520.mkv +花之悦-胡同谣,http://em.21dtv.com/songs/60021218.mkv +成龙-红太阳,http://em.21dtv.com/songs/60020971.mkv +胡玮琦-狠讨厌,http://em.21dtv.com/songs/60020684.mkv +禤天扬-后台下,http://em.21dtv.com/songs/60125992.mkv +廖昌永-红土香,http://em.21dtv.com/songs/60069464.mkv +任贤齐-花太香,http://em.21dtv.com/songs/60021485.mkv +任贤齐-花太香(演唱会),http://em.21dtv.com/songs/60021484.mkv +棒棒堂+黑涩会美眉-黑糖秀,http://em.21dtv.com/songs/60020567.mkv +唐婧-核桃娃,http://em.21dtv.com/songs/60128922.mkv +丁晓红-海棠湾(演唱会),http://em.21dtv.com/songs/60062325.mkv +MICHAEL JACKSON-heal the world,http://em.21dtv.com/songs/60002141.mkv +CHUCK WICKS-hold that thought,http://em.21dtv.com/songs/60002296.mkv +佚名-head to toe,http://em.21dtv.com/songs/60002139.mkv +汁橙音乐-海滩说,http://em.21dtv.com/songs/60107014.mkv +SNH48-黑天使(演),http://em.21dtv.com/songs/60099039.mkv +京剧-红头绳(舞剧),http://em.21dtv.com/songs/60090533.mkv +江映蓉-坏天使,http://em.21dtv.com/songs/60021722.mkv +佚名-红头绳,http://em.21dtv.com/songs/60020980.mkv +游鸿明-红糖水,http://em.21dtv.com/songs/60020975.mkv +九月露营人-here to stay,http://em.21dtv.com/songs/60002212.mkv +蛋堡-hit the rhyme(演唱会),http://em.21dtv.com/songs/60002279.mkv +刘玉东-黑土情,http://em.21dtv.com/songs/60128837.mkv +刘志丹-黄土情,http://em.21dtv.com/songs/60107530.mkv +罗文聪-好天气,http://em.21dtv.com/songs/60083012.mkv +张信哲-坏天气,http://em.21dtv.com/songs/60021720.mkv +孙燕姿-坏天气(演唱会),http://em.21dtv.com/songs/60021719.mkv +邱芸子-糊涂情,http://em.21dtv.com/songs/60021282.mkv +韦礼安-好天气,http://em.21dtv.com/songs/60020171.mkv +林一峰+林二汶-好天气,http://em.21dtv.com/songs/60020170.mkv +曹雅雯-好天气,http://em.21dtv.com/songs/60020169.mkv +GEORGE MICHAEL-heal the pain,http://em.21dtv.com/songs/60002140.mkv +晓依-恨透你,http://em.21dtv.com/songs/60070743.mkv +郭颖桥-好痛呢,http://em.21dtv.com/songs/60020174.mkv +袁小迪+陈凯欣-回头路,http://em.21dtv.com/songs/60134209.mkv +农三妹-灰太狼,http://em.21dtv.com/songs/60127751.mkv +欧阳铭芮-旱天雷(演唱会),http://em.21dtv.com/songs/60096374.mkv +辛龙-坏透了,http://em.21dtv.com/songs/60080308.mkv +JAY SEAN+LIL WAYNE-hit the lights,http://em.21dtv.com/songs/60073342.mkv +SELENA GOMEZ-hit the lights,http://em.21dtv.com/songs/60067906.mkv +LEE BRICE-hard to love,http://em.21dtv.com/songs/60067902.mkv +LIL WAYNE-how to love,http://em.21dtv.com/songs/60062095.mkv +詹雅雯-回头路,http://em.21dtv.com/songs/60022185.mkv +黄思婷-回头路,http://em.21dtv.com/songs/60022184.mkv +D.PAICH-hold the line(无原唱),http://em.21dtv.com/songs/60002297.mkv +车婉婉-恨太空,http://em.21dtv.com/songs/60020718.mkv +陈奕迅-囍帖街,http://em.21dtv.com/songs/60093396.mkv +何洁-坏童话,http://em.21dtv.com/songs/60098106.mkv +郝冠英-黄土魂,http://em.21dtv.com/songs/60062435.mkv +4MINUTE-heart to heart,http://em.21dtv.com/songs/60061934.mkv +THE BLACK CROW-hard to handle,http://em.21dtv.com/songs/60002105.mkv +李秋霞-怀胎歌,http://em.21dtv.com/songs/60021678.mkv +ERIC SAADE+DEV-hotter than fire,http://em.21dtv.com/songs/60066652.mkv +阿弟仔-虎头蜂,http://em.21dtv.com/songs/60021289.mkv +曾轶可-黑天鹅,http://em.21dtv.com/songs/60112732.mkv +许慧欣-黑天鹅,http://em.21dtv.com/songs/60072002.mkv +杨千嬅+蓝奕邦-黑天鹅,http://em.21dtv.com/songs/60064295.mkv +贾晓晨-花田地,http://em.21dtv.com/songs/60068336.mkv +佚名-黑土地,http://em.21dtv.com/songs/60020572.mkv +王力宏-花田错(HD),http://em.21dtv.com/songs/10012697.mkv +佚名-花田错,http://em.21dtv.com/songs/60021491.mkv +王力宏-花田错,http://em.21dtv.com/songs/60021490.mkv +刘长瑜-花田错,http://em.21dtv.com/songs/60021489.mkv +王力宏-花田错(演唱会),http://em.21dtv.com/songs/60021488.mkv +罗文聪+叶家妤-后头厝,http://em.21dtv.com/songs/60021118.mkv +宋祖英-红头船,http://em.21dtv.com/songs/60020979.mkv +陈兆舜+孙娟-海滩别,http://em.21dtv.com/songs/60019811.mkv +MAROON 5-harder to breathe,http://em.21dtv.com/songs/60002107.mkv +祝芝浩+杨镜儒-幻世缘,http://em.21dtv.com/songs/60120836.mkv +黎毅-火烧云,http://em.21dtv.com/songs/60101584.mkv +黄圣依-黄圣依,http://em.21dtv.com/songs/60085234.mkv +郑咏-黄水谣,http://em.21dtv.com/songs/60021992.mkv +佚名-黄水谣,http://em.21dtv.com/songs/60021991.mkv +姚林辉-花山谣,http://em.21dtv.com/songs/60021476.mkv +林子娟-红丝线,http://em.21dtv.com/songs/60116961.mkv +谢莉婷-火烧心,http://em.21dtv.com/songs/60107225.mkv +TWINS-红睡星,http://em.21dtv.com/songs/60092224.mkv +卢巧音-黑水仙,http://em.21dtv.com/songs/60020566.mkv +李昶俊-好神拖,http://em.21dtv.com/songs/60105142.mkv +ECHO-好神拖,http://em.21dtv.com/songs/60096963.mkv +天璇-红酥手,http://em.21dtv.com/songs/60125354.mkv +郑进一-花刹刹,http://em.21dtv.com/songs/60118966.mkv +黄小菁-火烧山(无原唱),http://em.21dtv.com/songs/60022458.mkv +黄妃-恨世生(演唱会),http://em.21dtv.com/songs/60020716.mkv +任贤齐-很受伤,http://em.21dtv.com/songs/60020655.mkv +李娅莎-后世人,http://em.21dtv.com/songs/60100882.mkv +李玉刚-浣纱曲(演唱会),http://em.21dtv.com/songs/60066035.mkv +海生-后十年,http://em.21dtv.com/songs/60075810.mkv +江明娟-海是你,http://em.21dtv.com/songs/60019805.mkv +邵大伦-哗声啦,http://em.21dtv.com/songs/60123229.mkv +邵大伦-哗声啦,http://em.21dtv.com/songs/60115446.mkv +爱在草原-呼斯楞,http://em.21dtv.com/songs/60111258.mkv +陈雷-猴赛雷,http://em.21dtv.com/songs/60109714.mkv +何俊-花石恋,http://em.21dtv.com/songs/60101898.mkv +刘诗诗-花神泪,http://em.21dtv.com/songs/60101616.mkv +王菲-花事了,http://em.21dtv.com/songs/60021481.mkv +姚苏蓉-红睡莲,http://em.21dtv.com/songs/60020969.mkv +黄清源-红睡莲,http://em.21dtv.com/songs/60020968.mkv +I SQUARE-hey sexy lady,http://em.21dtv.com/songs/60002252.mkv +萧正楠-好世界,http://em.21dtv.com/songs/60093110.mkv +王丽达+汤子星-黄四姐(演唱会),http://em.21dtv.com/songs/60075904.mkv +东来东往-后世镜,http://em.21dtv.com/songs/60075811.mkv +黄凯芹-花时间,http://em.21dtv.com/songs/60066032.mkv +佚名-黄四姐,http://em.21dtv.com/songs/60021994.mkv +张杰-花手绢,http://em.21dtv.com/songs/60021482.mkv +林玉英-候时机(无原唱),http://em.21dtv.com/songs/60021132.mkv +汤旭-好时节,http://em.21dtv.com/songs/60020161.mkv +追风骏马组合-红珊瑚,http://em.21dtv.com/songs/60127449.mkv +刘伟男-还是会,http://em.21dtv.com/songs/60114413.mkv +马吟吟-海上花,http://em.21dtv.com/songs/60114264.mkv +谢安琪-欢送会,http://em.21dtv.com/songs/60093175.mkv +岳思思-海上花,http://em.21dtv.com/songs/60082998.mkv +单色凌+小布-海沙画,http://em.21dtv.com/songs/60080480.mkv +胡月亮-衡水湖,http://em.21dtv.com/songs/60075758.mkv +韦礼安-还是会,http://em.21dtv.com/songs/60064337.mkv +任贤齐-好说话,http://em.21dtv.com/songs/60020168.mkv +佚名-海上花,http://em.21dtv.com/songs/60019795.mkv +莫文蔚-海上花,http://em.21dtv.com/songs/60019794.mkv +甄妮-海上花(演唱会),http://em.21dtv.com/songs/60019793.mkv +MOTLEY CRUE-home sweet home(无原唱),http://em.21dtv.com/songs/60002309.mkv +王若琳-好时光,http://em.21dtv.com/songs/60123012.mkv +颜慧萍-好时光,http://em.21dtv.com/songs/60106453.mkv +霍建华+丁当-好时光,http://em.21dtv.com/songs/60100622.mkv +安与骑兵-红山果(演唱会),http://em.21dtv.com/songs/60075785.mkv +佚名-会师歌,http://em.21dtv.com/songs/60022284.mkv +玉慧-好时光,http://em.21dtv.com/songs/60020160.mkv +张振宇-护身符,http://em.21dtv.com/songs/60021302.mkv +伍俊华+覃丽-花上蝶,http://em.21dtv.com/songs/60070765.mkv +甜美真-花生豆,http://em.21dtv.com/songs/60064323.mkv +优客李林-黄丝带,http://em.21dtv.com/songs/60021993.mkv +陈慧琳-红丝带,http://em.21dtv.com/songs/60020970.mkv +任贤齐-好时代,http://em.21dtv.com/songs/60020158.mkv +林海峰-好时代(演唱会),http://em.21dtv.com/songs/60020157.mkv +张敬轩-好时辰,http://em.21dtv.com/songs/60133660.mkv +吕继宏-回四川,http://em.21dtv.com/songs/60090805.mkv +宋祖英-好收成,http://em.21dtv.com/songs/60020167.mkv +梁咏琪-好时辰,http://em.21dtv.com/songs/60020156.mkv +梁咏琪-好时辰(演唱会),http://em.21dtv.com/songs/60020155.mkv +王梓蘅-和氏璧,http://em.21dtv.com/songs/60064291.mkv +罗文-回十八,http://em.21dtv.com/songs/60022174.mkv +阿里-红书包,http://em.21dtv.com/songs/60020967.mkv +张敬轩-hurt so bad,http://em.21dtv.com/songs/60002396.mkv +佚名-hurt so bad,http://em.21dtv.com/songs/60002395.mkv +张敬轩-hurt so bad(演唱会),http://em.21dtv.com/songs/60002394.mkv +佚名-hasta siempre amor,http://em.21dtv.com/songs/60002115.mkv +妙音兄弟-囧和尚,http://em.21dtv.com/songs/60130232.mkv +宋祖英-好日子,http://em.21dtv.com/songs/60128996.mkv +郑俊日-好日子,http://em.21dtv.com/songs/60116289.mkv +景仪-好日子,http://em.21dtv.com/songs/60089927.mkv +吴依琳-好日子,http://em.21dtv.com/songs/60075687.mkv +牛欣欣+刘姝辰-好日子,http://em.21dtv.com/songs/60075686.mkv +龚月-好日子,http://em.21dtv.com/songs/60075685.mkv +八大巨星-好日子,http://em.21dtv.com/songs/60075684.mkv +马丁+柯森+梅莉+安娜-好日子,http://em.21dtv.com/songs/60067062.mkv +宋祖英-好日子,http://em.21dtv.com/songs/60020153.mkv +刘德华-好日子,http://em.21dtv.com/songs/60020152.mkv +IU-好日子,http://em.21dtv.com/songs/60020151.mkv +宋祖英-好日子(演唱会),http://em.21dtv.com/songs/60020150.mkv +千百顺-很任性,http://em.21dtv.com/songs/60131223.mkv +张智成-换日线,http://em.21dtv.com/songs/60021843.mkv +纪文惠-换日线,http://em.21dtv.com/songs/60021842.mkv +久久-花容瘦,http://em.21dtv.com/songs/60075848.mkv +李宇春-花容瘦(演唱会),http://em.21dtv.com/songs/60021464.mkv +成威+张丽君-花蕊情(无原唱),http://em.21dtv.com/songs/60021466.mkv +DJ FRESH+RITA ORA-hot right now,http://em.21dtv.com/songs/60066650.mkv +张灵敏-花如泪,http://em.21dtv.com/songs/60064322.mkv +赖伟锋-好人卡,http://em.21dtv.com/songs/60114093.mkv +强辩乐团-好人卡,http://em.21dtv.com/songs/60020143.mkv +黄晓明+赵薇-好人卡,http://em.21dtv.com/songs/60020142.mkv +王菲-忽然间,http://em.21dtv.com/songs/60091740.mkv +阿吉仔-憨人歌,http://em.21dtv.com/songs/60019865.mkv +雪村-华容道,http://em.21dtv.com/songs/60021576.mkv +张芸京-黑裙子,http://em.21dtv.com/songs/60020536.mkv +童唱-禾雀仔,http://em.21dtv.com/songs/60020298.mkv +陈粒-幻期颐,http://em.21dtv.com/songs/60121091.mkv +粒粒-幻期颐,http://em.21dtv.com/songs/60119871.mkv +韩红-红蔷薇,http://em.21dtv.com/songs/60109730.mkv +吴宏彬-红蔷薇,http://em.21dtv.com/songs/60107575.mkv +李倩-红蔷薇,http://em.21dtv.com/songs/60083045.mkv +正午阳光-红蔷薇,http://em.21dtv.com/songs/60020930.mkv +王宝-红蔷薇,http://em.21dtv.com/songs/60020929.mkv +蔡琴-红蔷薇,http://em.21dtv.com/songs/60020928.mkv +陈志朋-红蜻蜓,http://em.21dtv.com/songs/60120083.mkv +潘昱瑾+蔡欣伶-红蜻蜓,http://em.21dtv.com/songs/60116124.mkv +麦子杰+麦璇-红蜻蜓,http://em.21dtv.com/songs/60096966.mkv +小虎队-红蜻蜓,http://em.21dtv.com/songs/60020935.mkv +苏有朋-红蜻蜓,http://em.21dtv.com/songs/60020934.mkv +可米小子-红蜻蜓,http://em.21dtv.com/songs/60020933.mkv +BY2-红蜻蜓,http://em.21dtv.com/songs/60020932.mkv +小虎队-红蜻蜓(演唱会),http://em.21dtv.com/songs/60020931.mkv +金婷婷-红旗颂(演唱会),http://em.21dtv.com/songs/60099553.mkv +王莉+汤非-胡琴说,http://em.21dtv.com/songs/60075819.mkv +王莉+汤非-胡琴说(演唱会),http://em.21dtv.com/songs/60072015.mkv +容祖儿-花千树,http://em.21dtv.com/songs/60062889.mkv +杨波-红旗颂,http://em.21dtv.com/songs/60061251.mkv +杨欣桦-憨情人,http://em.21dtv.com/songs/60135408.mkv +罗文-坏情人,http://em.21dtv.com/songs/60021715.mkv +陈瑀涵-坏情人,http://em.21dtv.com/songs/60021714.mkv +郭富城-坏情人(演唱会),http://em.21dtv.com/songs/60021713.mkv +孟庭苇-好情人,http://em.21dtv.com/songs/60020131.mkv +春妹-好情人,http://em.21dtv.com/songs/60020130.mkv +姚莉-哈恰恰,http://em.21dtv.com/songs/60019561.mkv +李书伟-红旗飘,http://em.21dtv.com/songs/60120600.mkv +羿诺-花奇楠,http://em.21dtv.com/songs/60123088.mkv +王凤霞-红起来,http://em.21dtv.com/songs/60130574.mkv +赵鑫+老猫-嗨起来,http://em.21dtv.com/songs/60129646.mkv +成容容-嗨起来,http://em.21dtv.com/songs/60116845.mkv +陈依然-喝起来,http://em.21dtv.com/songs/60110605.mkv +员伟明-豪情泪,http://em.21dtv.com/songs/60086582.mkv +李丹阳-好起来,http://em.21dtv.com/songs/60070732.mkv +彭炽权+李淑勤-还琴记(二)(戏曲),http://em.21dtv.com/songs/60092672.mkv +彭炽权+李淑勤-还琴记(一)(戏曲),http://em.21dtv.com/songs/60092671.mkv +李福宸-红旗红,http://em.21dtv.com/songs/60129242.mkv +胡东清+常虹-红旗红,http://em.21dtv.com/songs/60061250.mkv +王莱-恨情歌,http://em.21dtv.com/songs/60121947.mkv +天籁天-花千骨,http://em.21dtv.com/songs/60113380.mkv +马健南+Shirley-花千骨,http://em.21dtv.com/songs/60113089.mkv +萌萌哒天团-花千骨,http://em.21dtv.com/songs/60112915.mkv +徐佳莹-哼情歌,http://em.21dtv.com/songs/60020725.mkv +彭莉-恨情歌,http://em.21dtv.com/songs/60020715.mkv +陈升-恨情歌,http://em.21dtv.com/songs/60020714.mkv +叶诺帆-护情符,http://em.21dtv.com/songs/60122561.mkv +叶诺帆-护情符,http://em.21dtv.com/songs/60112565.mkv +吴彤-黄雀飞,http://em.21dtv.com/songs/60075903.mkv +杜文泽-合气道,http://em.21dtv.com/songs/60020313.mkv +赵学而-很清楚,http://em.21dtv.com/songs/60020652.mkv +方炯镔-回去吧,http://em.21dtv.com/songs/60022172.mkv +刘美麟-好朋友,http://em.21dtv.com/songs/60134945.mkv +罗逻圣-好朋友,http://em.21dtv.com/songs/60108802.mkv +李思琳-好朋友,http://em.21dtv.com/songs/60096962.mkv +杨千嬅-好朋友,http://em.21dtv.com/songs/60083011.mkv +刘耕宏-坏朋友,http://em.21dtv.com/songs/60075873.mkv +刘隋山-好朋友,http://em.21dtv.com/songs/60071993.mkv +SUPER GEAR-好朋友,http://em.21dtv.com/songs/60069449.mkv +佚名-嘿!朋友,http://em.21dtv.com/songs/60020615.mkv +卓依婷-好朋友,http://em.21dtv.com/songs/60020124.mkv +罗志祥-好朋友,http://em.21dtv.com/songs/60020123.mkv +梁汉文-好朋友,http://em.21dtv.com/songs/60020122.mkv +黄克林-好朋友,http://em.21dtv.com/songs/60020121.mkv +高远-好朋友,http://em.21dtv.com/songs/60020120.mkv +梁汉文-好朋友(演唱会),http://em.21dtv.com/songs/60020119.mkv +陈洁丽-好朋友(演唱会),http://em.21dtv.com/songs/60020118.mkv +佚名-好朋友(无原唱),http://em.21dtv.com/songs/60020117.mkv +群星-好朋友(无原唱),http://em.21dtv.com/songs/60020116.mkv +林玉英-好朋友(无原唱),http://em.21dtv.com/songs/60020115.mkv +BOXX星盒子-好朋友(无原唱),http://em.21dtv.com/songs/60020114.mkv +江蕙-海平线,http://em.21dtv.com/songs/60019787.mkv +许茹芸-和平日,http://em.21dtv.com/songs/60093168.mkv +TWINS-和平日,http://em.21dtv.com/songs/60020426.mkv +TWINS-和平日(演唱会),http://em.21dtv.com/songs/60020425.mkv +王可文-好脾气,http://em.21dtv.com/songs/60125903.mkv +吴汶芳-坏脾气,http://em.21dtv.com/songs/60116641.mkv +雷佳音-好脾气,http://em.21dtv.com/songs/60081922.mkv +CHAMILIONAIRE+SLICK-hip pop police,http://em.21dtv.com/songs/60002276.mkv +邓小龙+冉青霞-红苹果,http://em.21dtv.com/songs/60108030.mkv +邓小龙-红苹果,http://em.21dtv.com/songs/60107259.mkv +冉青霞-红苹果,http://em.21dtv.com/songs/60106621.mkv +金玉-和平鸽,http://em.21dtv.com/songs/60097016.mkv +周笔畅-黑苹果,http://em.21dtv.com/songs/60064294.mkv +蔡安荞-坏苹果,http://em.21dtv.com/songs/60021712.mkv +陈思思-和平歌,http://em.21dtv.com/songs/60020424.mkv +柯有纶-黄皮肤,http://em.21dtv.com/songs/60021982.mkv +刘子琪-红飘带,http://em.21dtv.com/songs/60128821.mkv +徐子崴-红飘带(演唱会),http://em.21dtv.com/songs/60020923.mkv +祝平-琥珀爱,http://em.21dtv.com/songs/60021294.mkv +F.SULLIVAN+J.PETERIK-high on you(无原唱),http://em.21dtv.com/songs/60002266.mkv +RISE AGAINST-hero of war,http://em.21dtv.com/songs/60060818.mkv +THE MCCOYS-hang on sloopy,http://em.21dtv.com/songs/60002055.mkv +Azis-Hop,http://em.21dtv.com/songs/60120193.mkv +FOXES-Holding onto Heaven,http://em.21dtv.com/songs/60099659.mkv +潇峰-HOLD不住了,http://em.21dtv.com/songs/60096860.mkv +AMY GRANT+VINCE GILL-house of love,http://em.21dtv.com/songs/60066653.mkv +佚名-house of love(无原唱),http://em.21dtv.com/songs/60002349.mkv +ABBA-head over heels,http://em.21dtv.com/songs/60002137.mkv +NEIL YOUNG-heart of gold,http://em.21dtv.com/songs/60002147.mkv +佚名-heart of glass,http://em.21dtv.com/songs/60002146.mkv +THE SCRIPT-hall of fame,http://em.21dtv.com/songs/60073301.mkv +耀乐团-hot on fire(演唱会),http://em.21dtv.com/songs/60067908.mkv +ALANIS MORISSETTE-head over feet,http://em.21dtv.com/songs/60002136.mkv +PAUL MCCARTNEY-hope of deliverance,http://em.21dtv.com/songs/60002333.mkv +丁祥威-怀念着,http://em.21dtv.com/songs/60104759.mkv +孙淑媚-乎你走,http://em.21dtv.com/songs/60021137.mkv +四分之三组合-Happy New Year,http://em.21dtv.com/songs/60081387.mkv +SIGMA-后男友,http://em.21dtv.com/songs/60021113.mkv +范晓萱+蟑螂合唱团-happy new year,http://em.21dtv.com/songs/60002093.mkv +ABBA-happy new year,http://em.21dtv.com/songs/60002092.mkv +张琳-好年头,http://em.21dtv.com/songs/60135224.mkv +张琳-好年头,http://em.21dtv.com/songs/60096959.mkv +王若琪-魂内伤,http://em.21dtv.com/songs/60066044.mkv +容祖儿-候鸟树(演唱会),http://em.21dtv.com/songs/60021131.mkv +郑烨+JeA-坏女人,http://em.21dtv.com/songs/60135815.mkv +尹相杰-好男人,http://em.21dtv.com/songs/60135148.mkv +孙榕-哈尼人,http://em.21dtv.com/songs/60103201.mkv +董含露-坏男人,http://em.21dtv.com/songs/60102696.mkv +陈一玲-好男人,http://em.21dtv.com/songs/60100562.mkv +储毅-好男人,http://em.21dtv.com/songs/60085174.mkv +王馨平-好男人,http://em.21dtv.com/songs/60064281.mkv +王建树-坏女人,http://em.21dtv.com/songs/60021711.mkv +FT ISLAND-坏女人,http://em.21dtv.com/songs/60021710.mkv +蒲洋-坏男人,http://em.21dtv.com/songs/60021703.mkv +JOO-坏男人,http://em.21dtv.com/songs/60021702.mkv +B.A.D-坏男人,http://em.21dtv.com/songs/60021701.mkv +DANNY-坏男人(演唱会),http://em.21dtv.com/songs/60021700.mkv +伊能静-好女人,http://em.21dtv.com/songs/60020112.mkv +张镐哲-好男人,http://em.21dtv.com/songs/60020100.mkv +小玉荣子-好男人,http://em.21dtv.com/songs/60020099.mkv +陈小春-好男人,http://em.21dtv.com/songs/60020098.mkv +中坚份子-hey闹闹,http://em.21dtv.com/songs/60002256.mkv +雪村-湖南mary,http://em.21dtv.com/songs/60021226.mkv +陈婷婷-贺年卡(无原唱),http://em.21dtv.com/songs/60020476.mkv +千荷-回娘家,http://em.21dtv.com/songs/60089692.mkv +春天-回娘家,http://em.21dtv.com/songs/60086558.mkv +中国娃娃-回娘家,http://em.21dtv.com/songs/60083084.mkv +方伊琪-回娘家(演唱会),http://em.21dtv.com/songs/60075920.mkv +卓依婷-回娘家,http://em.21dtv.com/songs/60022170.mkv +于文华-回娘家,http://em.21dtv.com/songs/60022169.mkv +谢采妘-回娘家,http://em.21dtv.com/songs/60022168.mkv +潘秀琼-回娘家,http://em.21dtv.com/songs/60022167.mkv +李丹阳-回娘家,http://em.21dtv.com/songs/60022166.mkv +朱明瑛-回娘家(演唱会),http://em.21dtv.com/songs/60022165.mkv +刘玮-好年景,http://em.21dtv.com/songs/60020106.mkv +李姿锐-好年景,http://em.21dtv.com/songs/60020105.mkv +小凌-坏男孩,http://em.21dtv.com/songs/60132385.mkv +范晓萱-好女孩,http://em.21dtv.com/songs/60107967.mkv +周丽淇-好女孩,http://em.21dtv.com/songs/60107588.mkv +范晓萱+100%乐团-好女孩,http://em.21dtv.com/songs/60106227.mkv +许志安-坏女孩,http://em.21dtv.com/songs/60096970.mkv +郑伊健-坏男孩,http://em.21dtv.com/songs/60093264.mkv +伊能静-坏女孩,http://em.21dtv.com/songs/60089605.mkv +陈嘉桦-坏女孩,http://em.21dtv.com/songs/60075872.mkv +吕珊-坏女孩(演唱会),http://em.21dtv.com/songs/60075871.mkv +ELLA-坏女孩,http://em.21dtv.com/songs/60066033.mkv +佚名-坏女孩,http://em.21dtv.com/songs/60021709.mkv +徐良+小凌-坏女孩,http://em.21dtv.com/songs/60021708.mkv +TENSION-坏女孩,http://em.21dtv.com/songs/60021707.mkv +吴浩康-坏女孩(演唱会),http://em.21dtv.com/songs/60021706.mkv +梅艳芳-坏女孩(演唱会),http://em.21dtv.com/songs/60021705.mkv +梁汉文+梅艳芳-坏女孩(演唱会),http://em.21dtv.com/songs/60021704.mkv +容祖儿-好女孩,http://em.21dtv.com/songs/60020111.mkv +范逸臣+林子良-哈你honey,http://em.21dtv.com/songs/60019560.mkv +THE BE FOUR-贺年歌medley(演唱会),http://em.21dtv.com/songs/60083026.mkv +庾澄庆+徐熙娣-哈你歌,http://em.21dtv.com/songs/60082988.mkv +熊七梅-好难过,http://em.21dtv.com/songs/60075679.mkv +陶喆-火鸟功,http://em.21dtv.com/songs/60022448.mkv +NERD+NELLY FURTADO-hot n fun,http://em.21dtv.com/songs/60002340.mkv +王冠乔-好男儿,http://em.21dtv.com/songs/60130565.mkv +庄振凯-好男儿,http://em.21dtv.com/songs/60125478.mkv +王军-好男儿,http://em.21dtv.com/songs/60111266.mkv +李浩民-好男儿,http://em.21dtv.com/songs/60086584.mkv +李智-好男儿,http://em.21dtv.com/songs/60085173.mkv +张秀卿-好女儿,http://em.21dtv.com/songs/60020110.mkv +易秒英-好女儿,http://em.21dtv.com/songs/60020109.mkv +王建杰-好男儿,http://em.21dtv.com/songs/60020093.mkv +韩磊+满江+江涛-好男儿,http://em.21dtv.com/songs/60020092.mkv +汤潮-好男儿(演唱会),http://em.21dtv.com/songs/60020091.mkv +丁当-好难得,http://em.21dtv.com/songs/60067061.mkv +甄子维-好年冬(无原唱),http://em.21dtv.com/songs/60020104.mkv +KATY PERRY-hot n cold,http://em.21dtv.com/songs/60002339.mkv +张曼-红梅赞,http://em.21dtv.com/songs/60106851.mkv +陈随意-含慢子,http://em.21dtv.com/songs/60100604.mkv +曲丹-红梅赞(演唱会),http://em.21dtv.com/songs/60099274.mkv +李晖-红梅赞(演唱会),http://em.21dtv.com/songs/60083043.mkv +降央卓玛-红梅赞,http://em.21dtv.com/songs/60075776.mkv +张妍-红梅赞(演唱会),http://em.21dtv.com/songs/60067073.mkv +张也-红梅赞,http://em.21dtv.com/songs/60020915.mkv +佚名-红梅赞,http://em.21dtv.com/songs/60020914.mkv +王莉-红梅赞,http://em.21dtv.com/songs/60020913.mkv +铁金-红梅赞,http://em.21dtv.com/songs/60020912.mkv +李碧华-还没有,http://em.21dtv.com/songs/60127048.mkv +胡彦斌-鸿门宴,http://em.21dtv.com/songs/60064310.mkv +叶顺有-花梦引,http://em.21dtv.com/songs/60006909.mkv +关庆小海-画墨香,http://em.21dtv.com/songs/60127748.mkv +慕容晓晓-黄梅戏,http://em.21dtv.com/songs/60021981.mkv +慕容晓晓-黄梅戏(演唱会),http://em.21dtv.com/songs/60021980.mkv +周蕙-hold me tight(演唱会),http://em.21dtv.com/songs/60002290.mkv +郑志勇-好名声,http://em.21dtv.com/songs/60127461.mkv +郑融-黑面神,http://em.21dtv.com/songs/60124569.mkv +周笔畅-荷米斯,http://em.21dtv.com/songs/60112580.mkv +凤凰传奇-嗨_Mrs_Leta,http://em.21dtv.com/songs/60087374.mkv +超级女声+易慧-火美人,http://em.21dtv.com/songs/60088714.mkv +谭咏麟-火美人(演唱会),http://em.21dtv.com/songs/60022446.mkv +佚名-help me rhonda,http://em.21dtv.com/songs/60002195.mkv +唐禹哲-回马枪,http://em.21dtv.com/songs/60022162.mkv +戴梦梦-花木难,http://em.21dtv.com/songs/60021459.mkv +佚名-hold me now,http://em.21dtv.com/songs/60002288.mkv +陈淑桦-hold me now,http://em.21dtv.com/songs/60002287.mkv +吴镇姗-画妈妈,http://em.21dtv.com/songs/60121502.mkv +小龙女-好妈妈,http://em.21dtv.com/songs/60116748.mkv +俪媛+老猫-好妈妈,http://em.21dtv.com/songs/60110849.mkv +虎子-好妹妹,http://em.21dtv.com/songs/60105358.mkv +小龙女-好妈妈,http://em.21dtv.com/songs/60098286.mkv +[Group] +groupName=十六万歌曲MV等 - 24 +关正杰-恨绵绵,http://em.21dtv.com/songs/60020705.mkv +张伟文-恨绵绵(演唱会),http://em.21dtv.com/songs/60020704.mkv +张德兰-恨绵绵(演唱会),http://em.21dtv.com/songs/60020703.mkv +叶振棠-恨绵绵(演唱会),http://em.21dtv.com/songs/60020702.mkv +徐小凤-恨绵绵(演唱会),http://em.21dtv.com/songs/60020701.mkv +李志洲-好妹妹,http://em.21dtv.com/songs/60020083.mkv +曹磊-好妹妹,http://em.21dtv.com/songs/60020082.mkv +童唱-好妈妈,http://em.21dtv.com/songs/60020079.mkv +玄鸟传说-花木兰,http://em.21dtv.com/songs/60129376.mkv +张曼莉-花木兰,http://em.21dtv.com/songs/60123925.mkv +王喆-花满楼,http://em.21dtv.com/songs/60106104.mkv +ANGEL GIRL-花木兰,http://em.21dtv.com/songs/60080882.mkv +徐立-花木兰,http://em.21dtv.com/songs/60021456.mkv +许嵩-花满楼,http://em.21dtv.com/songs/60021453.mkv +李玉刚-花满楼(演唱会),http://em.21dtv.com/songs/60021452.mkv +DOWNHERE-how many kings,http://em.21dtv.com/songs/60067911.mkv +佚名-how many houre,http://em.21dtv.com/songs/60002375.mkv +HOOTIE AND THE BLOWF-hold my hand,http://em.21dtv.com/songs/60002291.mkv +陈慧敏-慧敏歌,http://em.21dtv.com/songs/60135922.mkv +徐晶晶-红玫瑰,http://em.21dtv.com/songs/60133717.mkv +张碧晨-红玫瑰,http://em.21dtv.com/songs/60133683.mkv +小逸岑-红玫瑰,http://em.21dtv.com/songs/60132392.mkv +孙露-黄玫瑰,http://em.21dtv.com/songs/60115858.mkv +贾争艳-红玫瑰,http://em.21dtv.com/songs/60112276.mkv +成骏-黑玫瑰,http://em.21dtv.com/songs/60100059.mkv +侃侃-黄玫瑰,http://em.21dtv.com/songs/60097066.mkv +孙露-黄玫瑰,http://em.21dtv.com/songs/60083081.mkv +大哲-红玫瑰,http://em.21dtv.com/songs/60075775.mkv +张寒-火玫瑰,http://em.21dtv.com/songs/60070786.mkv +刀郎-黄玫瑰(演唱会),http://em.21dtv.com/songs/60064343.mkv +陈星-火玫瑰,http://em.21dtv.com/songs/60022445.mkv +堂娜-黄玫瑰,http://em.21dtv.com/songs/60021979.mkv +黄灿-黄玫瑰,http://em.21dtv.com/songs/60021978.mkv +童唱-红莓果,http://em.21dtv.com/songs/60020905.mkv +何念庭-红玫瑰,http://em.21dtv.com/songs/60020902.mkv +陈奕迅-红玫瑰,http://em.21dtv.com/songs/60020901.mkv +陈茂丰-红玫瑰,http://em.21dtv.com/songs/60020900.mkv +佚名-黑玫瑰,http://em.21dtv.com/songs/60020530.mkv +罗时丰-黑玫瑰,http://em.21dtv.com/songs/60020529.mkv +李翊君-黑玫瑰,http://em.21dtv.com/songs/60020528.mkv +戴玉强-海玫瑰,http://em.21dtv.com/songs/60019768.mkv +周杰伦-红模仿,http://em.21dtv.com/songs/60020917.mkv +石康军-还没疯,http://em.21dtv.com/songs/60019584.mkv +萧贺硕+古皓-hello my friend,http://em.21dtv.com/songs/60002184.mkv +马天宇-黑名单,http://em.21dtv.com/songs/60128596.mkv +赵青岳-红牡丹,http://em.21dtv.com/songs/60075778.mkv +JLS-hold me down,http://em.21dtv.com/songs/60073345.mkv +海月光-黑名单,http://em.21dtv.com/songs/60020535.mkv +可米小子-hold me close,http://em.21dtv.com/songs/60002285.mkv +佚名-hello merry christmas(无原唱),http://em.21dtv.com/songs/60002182.mkv +佚名-hear me cry,http://em.21dtv.com/songs/60002143.mkv +蓝琪儿-挥马鞭,http://em.21dtv.com/songs/60112214.mkv +李孝利-hei mr big,http://em.21dtv.com/songs/60073316.mkv +刘璐-活明白,http://em.21dtv.com/songs/60022374.mkv +赵真+东方红艳-红马鞍,http://em.21dtv.com/songs/60108023.mkv +范瑞娟-红罗帐,http://em.21dtv.com/songs/60020895.mkv +凤凰传奇-欢乐夜,http://em.21dtv.com/songs/60132229.mkv +李善姬-狐狸雨,http://em.21dtv.com/songs/60111963.mkv +陈慧琳-后乐园,http://em.21dtv.com/songs/60075809.mkv +叶倩文-华丽缘,http://em.21dtv.com/songs/60021575.mkv +叶倩文-华丽缘(演唱会),http://em.21dtv.com/songs/60021574.mkv +F.I.R-后乐园(演唱会),http://em.21dtv.com/songs/60021112.mkv +施文彬-吼励戏,http://em.21dtv.com/songs/60083049.mkv +蓝沁-红辣喜,http://em.21dtv.com/songs/60020882.mkv +周韦杰-海连天,http://em.21dtv.com/songs/60063462.mkv +吴尚哲-欢乐颂,http://em.21dtv.com/songs/60131253.mkv +范晓萱+A-海浪沙,http://em.21dtv.com/songs/60124413.mkv +陈咏+陈娇-欢乐颂,http://em.21dtv.com/songs/60123285.mkv +张江-欢乐颂,http://em.21dtv.com/songs/60121655.mkv +王莹-花傈僳,http://em.21dtv.com/songs/60107913.mkv +民歌-欢乐颂(德),http://em.21dtv.com/songs/60089391.mkv +外国民歌-欢乐颂,http://em.21dtv.com/songs/60089224.mkv +佚名-欢乐颂,http://em.21dtv.com/songs/60021762.mkv +群星-欢乐颂(演唱会),http://em.21dtv.com/songs/60021761.mkv +袁耀发-花落随,http://em.21dtv.com/songs/60021449.mkv +阿勇泽让-嘿拉萨,http://em.21dtv.com/songs/60020623.mkv +飘乐队-海蓝色,http://em.21dtv.com/songs/60019760.mkv +林姗-红泪情,http://em.21dtv.com/songs/60064306.mkv +李千娜-厚脸皮,http://em.21dtv.com/songs/60122845.mkv +吴琼-红罗帕,http://em.21dtv.com/songs/60099150.mkv +ELLA-厚脸皮,http://em.21dtv.com/songs/60067074.mkv +卓依婷-厚脸皮,http://em.21dtv.com/songs/60060751.mkv +路遥-好老婆,http://em.21dtv.com/songs/60020077.mkv +甲子慧-红楼梦,http://em.21dtv.com/songs/60117062.mkv +庞龙-红楼梦,http://em.21dtv.com/songs/60081960.mkv +林健辉-好流氓,http://em.21dtv.com/songs/60070731.mkv +唐语彤+林浩威-红楼梦,http://em.21dtv.com/songs/60020889.mkv +邵雨涵-红楼梦,http://em.21dtv.com/songs/60020888.mkv +梅雪诗+陈嘉鸣+梁淑琴-红楼梦,http://em.21dtv.com/songs/60020887.mkv +李克勤-红楼梦,http://em.21dtv.com/songs/60020886.mkv +白冰冰-红楼梦,http://em.21dtv.com/songs/60020885.mkv +佚名-heart like mine,http://em.21dtv.com/songs/60002145.mkv +潘七魁-火辣辣,http://em.21dtv.com/songs/60119783.mkv +陈妍希-哗啦啦,http://em.21dtv.com/songs/60110632.mkv +丁童-火辣辣,http://em.21dtv.com/songs/60094381.mkv +张善为-哗啦啦,http://em.21dtv.com/songs/60089269.mkv +陈玉建-火辣辣,http://em.21dtv.com/songs/60066046.mkv +张露-火辣辣,http://em.21dtv.com/songs/60022441.mkv +双子演唱组-嘿啰啰,http://em.21dtv.com/songs/60020624.mkv +祁隆+孟小迪-狐狸精,http://em.21dtv.com/songs/60124317.mkv +阿索-狐狸精,http://em.21dtv.com/songs/60101696.mkv +覃元隆-狐狸叫,http://em.21dtv.com/songs/60095342.mkv +YLVIS-狐狸叫(The Fox),http://em.21dtv.com/songs/60095251.mkv +覃元隆-狐狸叫(the fox),http://em.21dtv.com/songs/60086601.mkv +邓丽君-回娘家,http://em.21dtv.com/songs/60066041.mkv +北原山猫-回老家(无原唱),http://em.21dtv.com/songs/60022159.mkv +罗志祥-狐狸精,http://em.21dtv.com/songs/60021198.mkv +韦嘉-红鸾记,http://em.21dtv.com/songs/60020894.mkv +金姗姗-欢乐海,http://em.21dtv.com/songs/60127494.mkv +吴莫愁+刘昊然-猴厉嗨,http://em.21dtv.com/songs/60119353.mkv +COLDPLAY-hurts like heaven,http://em.21dtv.com/songs/60070348.mkv +尹光-荷里活(演唱会),http://em.21dtv.com/songs/60061241.mkv +祖海-欢乐海,http://em.21dtv.com/songs/60021746.mkv +尹光-荷里活,http://em.21dtv.com/songs/60020470.mkv +苗小青-欢乐歌,http://em.21dtv.com/songs/60134175.mkv +香巴拉组合-海螺沟,http://em.21dtv.com/songs/60075646.mkv +童唱-欢乐歌,http://em.21dtv.com/songs/60021745.mkv +北原山猫-欢乐歌(无原唱),http://em.21dtv.com/songs/60021744.mkv +崔子格+鲁士郎-花恋蝶,http://em.21dtv.com/songs/60096973.mkv +周子琰-红绿灯,http://em.21dtv.com/songs/60093819.mkv +南拳妈妈-花恋蝶,http://em.21dtv.com/songs/60021441.mkv +郑融-红绿灯,http://em.21dtv.com/songs/60020899.mkv +成龙-红绿灯,http://em.21dtv.com/songs/60020898.mkv +郑秀文-红绿灯(演唱会),http://em.21dtv.com/songs/60020897.mkv +汤奕蓉-红绿灯(无原唱),http://em.21dtv.com/songs/60020896.mkv +WRETCH 32+ED SHEERAN-hush little baby,http://em.21dtv.com/songs/60067912.mkv +张华-回来吧,http://em.21dtv.com/songs/60022145.mkv +五月天-回来吧,http://em.21dtv.com/songs/60022144.mkv +奥赛-回来吧,http://em.21dtv.com/songs/60022143.mkv +TWINS-hush little baby,http://em.21dtv.com/songs/60002400.mkv +祁隆-火了爱,http://em.21dtv.com/songs/60125983.mkv +胡扬琳-火了爱,http://em.21dtv.com/songs/60085900.mkv +王建杰-海口子,http://em.21dtv.com/songs/60019746.mkv +张佑钱-还可以,http://em.21dtv.com/songs/60068343.mkv +李森-好可惜,http://em.21dtv.com/songs/60129233.mkv +庄心妍-好可惜,http://em.21dtv.com/songs/60105806.mkv +ROGER YO+梁心颐-好开始,http://em.21dtv.com/songs/60123525.mkv +花儿乐队-好开始,http://em.21dtv.com/songs/60020073.mkv +林飞翔-海口人(无原唱),http://em.21dtv.com/songs/60095710.mkv +林姗-海口人,http://em.21dtv.com/songs/60095658.mkv +佚名-海口人(无原唱),http://em.21dtv.com/songs/60019745.mkv +黄海伦-好空气,http://em.21dtv.com/songs/60129844.mkv +魏健-很快乐,http://em.21dtv.com/songs/60118198.mkv +K.Will-花开了,http://em.21dtv.com/songs/60110773.mkv +WINGS-花开了,http://em.21dtv.com/songs/60103048.mkv +侯旭-花开了,http://em.21dtv.com/songs/60068334.mkv +侯旭-花开了(演唱会),http://em.21dtv.com/songs/60062454.mkv +ALEXIA-happy快乐,http://em.21dtv.com/songs/60002102.mkv +微胖女神-喝咖啡,http://em.21dtv.com/songs/60110224.mkv +微胖女神-喝咖啡,http://em.21dtv.com/songs/60097091.mkv +高瑜-黑咖啡,http://em.21dtv.com/songs/60081307.mkv +痞克四-黑咖啡,http://em.21dtv.com/songs/60020520.mkv +梁咏琪-黑咖啡,http://em.21dtv.com/songs/60020519.mkv +江蕙-黑咖啡,http://em.21dtv.com/songs/60020518.mkv +任然-后继者,http://em.21dtv.com/songs/60132186.mkv +杜德伟-红轿子,http://em.21dtv.com/songs/60091386.mkv +余天龙-憨囝仔,http://em.21dtv.com/songs/60080152.mkv +佚名-花戒指,http://em.21dtv.com/songs/60021415.mkv +罗百吉-喝酒醉,http://em.21dtv.com/songs/60020294.mkv +成于申-花间游,http://em.21dtv.com/songs/60118598.mkv +成于申-花解语,http://em.21dtv.com/songs/60105916.mkv +肖楠-红嫁衣,http://em.21dtv.com/songs/60085192.mkv +司文-黑金鱼,http://em.21dtv.com/songs/60020517.mkv +谢雨欣-濠江谣(演唱会),http://em.21dtv.com/songs/60019965.mkv +樊芳斌-寒江雪,http://em.21dtv.com/songs/60130506.mkv +张师羽-回家乡,http://em.21dtv.com/songs/60129076.mkv +邢青海-回家乡,http://em.21dtv.com/songs/60096946.mkv +羽泉-回家乡,http://em.21dtv.com/songs/60095038.mkv +郑源+郑丽品-寒江雪(演唱会),http://em.21dtv.com/songs/60068306.mkv +誓言-回家乡,http://em.21dtv.com/songs/60062913.mkv +郑源+储兰兰-寒江雪,http://em.21dtv.com/songs/60019904.mkv +群星-黄金屋,http://em.21dtv.com/songs/60021974.mkv +岳津臣-灰镜头,http://em.21dtv.com/songs/60087734.mkv +卓玛加-红景天,http://em.21dtv.com/songs/60020874.mkv +朱海君-海甲天,http://em.21dtv.com/songs/60019733.mkv +闫鑫泷-狠角色,http://em.21dtv.com/songs/60106363.mkv +尼玛次仁-红袈裟,http://em.21dtv.com/songs/60020872.mkv +张惠妹-狠角色,http://em.21dtv.com/songs/60020683.mkv +佚名-红军桥,http://em.21dtv.com/songs/60020880.mkv +龙千玉-好姐妹,http://em.21dtv.com/songs/60136047.mkv +陈小菲-好姐妹,http://em.21dtv.com/songs/60124632.mkv +大雨点儿-好姐妹,http://em.21dtv.com/songs/60115080.mkv +唐古+樊桐舟-好姐妹,http://em.21dtv.com/songs/60103987.mkv +唐古-好姐妹,http://em.21dtv.com/songs/60103986.mkv +王蓉+李湘-好姐妹,http://em.21dtv.com/songs/60091747.mkv +游鸿明-回家吗,http://em.21dtv.com/songs/60091629.mkv +庞龙-黑骏马,http://em.21dtv.com/songs/60083028.mkv +乌兰托娅-黑骏马,http://em.21dtv.com/songs/60070736.mkv +王建杰+甲子蕙-回家门,http://em.21dtv.com/songs/60022128.mkv +光良+范玮琪-好寂寞,http://em.21dtv.com/songs/60020049.mkv +郑敬基-红酒里(无原唱),http://em.21dtv.com/songs/60093295.mkv +久久-花溅泪,http://em.21dtv.com/songs/60068333.mkv +王蓉-坏姐姐,http://em.21dtv.com/songs/60100325.mkv +周杰伦-黄金甲,http://em.21dtv.com/songs/60021972.mkv +轮回乐队-花犄角,http://em.21dtv.com/songs/60021404.mkv +凤凰传奇-合家欢,http://em.21dtv.com/songs/60119283.mkv +方瑞娥+高向鵬-紅甲黑(无原唱),http://em.21dtv.com/songs/60095546.mkv +高向鹏+方瑞娥-红甲黑,http://em.21dtv.com/songs/60020873.mkv +周璇-合家欢,http://em.21dtv.com/songs/60020306.mkv +赵莉-合家欢,http://em.21dtv.com/songs/60020305.mkv +佚名-合家欢,http://em.21dtv.com/songs/60020304.mkv +刘玮-合家欢,http://em.21dtv.com/songs/60020303.mkv +费玉清-合家欢,http://em.21dtv.com/songs/60020302.mkv +阿吉仔-恨酒歌,http://em.21dtv.com/songs/60109676.mkv +秀才-喝酒歌,http://em.21dtv.com/songs/60075707.mkv +秀才-喝酒歌(舞曲版),http://em.21dtv.com/songs/60069451.mkv +向天问-活见鬼,http://em.21dtv.com/songs/60066045.mkv +新宝岛康乐队-欢聚歌,http://em.21dtv.com/songs/60021735.mkv +王宏恩-欢聚歌,http://em.21dtv.com/songs/60021734.mkv +李蕙敏-好结果,http://em.21dtv.com/songs/60020051.mkv +王又萱-花间道,http://em.21dtv.com/songs/60131647.mkv +周柏豪-还记得,http://em.21dtv.com/songs/60106715.mkv +叶良俊-还记得,http://em.21dtv.com/songs/60090796.mkv +方伊琪-花间蝶,http://em.21dtv.com/songs/60021409.mkv +张正扬-回家吧,http://em.21dtv.com/songs/60115155.mkv +布仁巴雅尔-回家吧,http://em.21dtv.com/songs/60022115.mkv +黄小菁+陈文山-好酒伴(无原唱),http://em.21dtv.com/songs/60020069.mkv +柯以柔-好几遍(无原唱),http://em.21dtv.com/songs/60020048.mkv +BRITNEY SPEARS-how i roll(演唱会),http://em.21dtv.com/songs/60082189.mkv +BRITNEY SPEARS-how i roll,http://em.21dtv.com/songs/60065611.mkv +佚名-hello its me,http://em.21dtv.com/songs/60002181.mkv +SHANIA TWAIN-honey im home,http://em.21dtv.com/songs/60002319.mkv +孙耀威-here i go,http://em.21dtv.com/songs/60002208.mkv +4MEN+小美-here i am(演唱会),http://em.21dtv.com/songs/60069086.mkv +RICK ROSS-here i am,http://em.21dtv.com/songs/60060817.mkv +AIR SUPPLY-here i am(演唱会),http://em.21dtv.com/songs/60002207.mkv +许嵩-坏孩子,http://em.21dtv.com/songs/60021694.mkv +爱戴-黑盒子,http://em.21dtv.com/songs/60020516.mkv +郑秀文-黑盒子(演唱会),http://em.21dtv.com/songs/60020515.mkv +赵牧阳-黄河谣,http://em.21dtv.com/songs/60124522.mkv +王庆爽-荷花吟,http://em.21dtv.com/songs/60112848.mkv +意玲-黄昏雨,http://em.21dtv.com/songs/60111922.mkv +罗吉镇+马雅舒-花和雨,http://em.21dtv.com/songs/60102622.mkv +宋祖英-荷花谣,http://em.21dtv.com/songs/60090968.mkv +余润泽-黄昏雨,http://em.21dtv.com/songs/60087335.mkv +邝美云-黄昏雨,http://em.21dtv.com/songs/60021967.mkv +罗时丰-黄昏雨(无原唱),http://em.21dtv.com/songs/60021966.mkv +庄学忠-黄河愿,http://em.21dtv.com/songs/60021918.mkv +张明敏-黄河愿(演唱会),http://em.21dtv.com/songs/60021917.mkv +王秀芬-黄河怨,http://em.21dtv.com/songs/60021916.mkv +佚名-黄河谣,http://em.21dtv.com/songs/60021910.mkv +朱宝光-淮河营,http://em.21dtv.com/songs/60021680.mkv +张天龙-后悔药,http://em.21dtv.com/songs/60021096.mkv +赵咏华-红花雨,http://em.21dtv.com/songs/60020870.mkv +乌兰图雅-红红线,http://em.21dtv.com/songs/60109934.mkv +李芸芳-荷花巷,http://em.21dtv.com/songs/60097041.mkv +方明-黄河行,http://em.21dtv.com/songs/60085230.mkv +李香琴-荷花香(演唱会),http://em.21dtv.com/songs/60061240.mkv +王心凌-黄昏晓,http://em.21dtv.com/songs/60021965.mkv +张德兰-荷花香(演唱会),http://em.21dtv.com/songs/60020469.mkv +吕珊-荷花香(演唱会),http://em.21dtv.com/songs/60020468.mkv +童唱-哈哈笑,http://em.21dtv.com/songs/60019549.mkv +童唱-哈哈笑(无原唱),http://em.21dtv.com/songs/60019548.mkv +段丽阳+徐英翰-花花我,http://em.21dtv.com/songs/60100906.mkv +希亚-好好玩,http://em.21dtv.com/songs/60075676.mkv +曾昱嘉-呼唤我,http://em.21dtv.com/songs/60021155.mkv +MC HOTDOG-嘿嘿 Taxi,http://em.21dtv.com/songs/60101021.mkv +MC HOTDOG-嘿嘿taxi,http://em.21dtv.com/songs/60075744.mkv +许茹芸-嘿嘿taxi(演唱会),http://em.21dtv.com/songs/60020620.mkv +高进-荷花亭,http://em.21dtv.com/songs/60020467.mkv +DEVIL-喝馄饨,http://em.21dtv.com/songs/60020291.mkv +李玟+吴建豪-hip hop tonight,http://em.21dtv.com/songs/60002275.mkv +孟慧圆-回海上,http://em.21dtv.com/songs/60133567.mkv +李昶俊-猴嗨森,http://em.21dtv.com/songs/60124081.mkv +张岱-挥挥手,http://em.21dtv.com/songs/60105828.mkv +乔洋-洪湖水,http://em.21dtv.com/songs/60101877.mkv +童丽-荷花颂,http://em.21dtv.com/songs/60068318.mkv +阿轮-槐花殇,http://em.21dtv.com/songs/60062195.mkv +李克勤-婚后事,http://em.21dtv.com/songs/60022305.mkv +汪峰-挥挥手,http://em.21dtv.com/songs/60022059.mkv +零点乐队-挥挥手(演唱会),http://em.21dtv.com/songs/60022058.mkv +袁晨野-黄河颂,http://em.21dtv.com/songs/60021909.mkv +杨洪基-黄河颂,http://em.21dtv.com/songs/60021908.mkv +李双江-黄河颂,http://em.21dtv.com/songs/60021907.mkv +卢巧音-红红是,http://em.21dtv.com/songs/60020856.mkv +任勇-黄河人,http://em.21dtv.com/songs/60125093.mkv +民雄巴莱-坏好人,http://em.21dtv.com/songs/60075870.mkv +伯阳-黄河人,http://em.21dtv.com/songs/60021905.mkv +张卫华-黄河情,http://em.21dtv.com/songs/60105822.mkv +张真菲-hip hop party,http://em.21dtv.com/songs/60073340.mkv +张真菲-hip-hop party,http://em.21dtv.com/songs/60063423.mkv +邵洪-寒号鸟,http://em.21dtv.com/songs/60130791.mkv +邵洪-寒号鸟,http://em.21dtv.com/songs/60129658.mkv +郑源-好怀念,http://em.21dtv.com/songs/60103622.mkv +谭晶-火红鸟,http://em.21dtv.com/songs/60022427.mkv +王菲菲-呼唤你,http://em.21dtv.com/songs/60021154.mkv +李天华-寒号鸟,http://em.21dtv.com/songs/60019903.mkv +胡彦斌-还魂门,http://em.21dtv.com/songs/60124376.mkv +郭新龙-黄河梦,http://em.21dtv.com/songs/60062412.mkv +彭丽媛-荷花梦,http://em.21dtv.com/songs/60020466.mkv +张艳君-黄鹤楼,http://em.21dtv.com/songs/60133690.mkv +刘建民-黄鹤楼,http://em.21dtv.com/songs/60112539.mkv +王菲-黄昏里,http://em.21dtv.com/songs/60101452.mkv +王熙然-还好了,http://em.21dtv.com/songs/60101446.mkv +杨洪基-黄鹤楼,http://em.21dtv.com/songs/60089353.mkv +佚名-黄昏岭,http://em.21dtv.com/songs/60021958.mkv +梅花三姐妹-黄昏岭,http://em.21dtv.com/songs/60021957.mkv +邓丽君-黄昏里,http://em.21dtv.com/songs/60021956.mkv +佚名-黄鹤楼,http://em.21dtv.com/songs/60021924.mkv +谭晶-黄鹤楼,http://em.21dtv.com/songs/60021923.mkv +吕金蔓-黄鹤楼,http://em.21dtv.com/songs/60021922.mkv +晏菲-黄鹤楼(演唱会),http://em.21dtv.com/songs/60021921.mkv +李明洋-后悔啦,http://em.21dtv.com/songs/60021093.mkv +郭采洁-狠狠哭,http://em.21dtv.com/songs/60020681.mkv +崔妙芝-荷花开,http://em.21dtv.com/songs/60020465.mkv +古巨基-哗哗叫,http://em.21dtv.com/songs/60021583.mkv +费玉清-嘿嘿嘿,http://em.21dtv.com/songs/60131824.mkv +张生艳-合欢花,http://em.21dtv.com/songs/60129104.mkv +张景擎-嗨嗨嗨,http://em.21dtv.com/songs/60127982.mkv +黄卓-好花红,http://em.21dtv.com/songs/60089034.mkv +民歌-黄河黄,http://em.21dtv.com/songs/60088186.mkv +周芳-红火火,http://em.21dtv.com/songs/60087603.mkv +董文华-黄河黄(演唱会),http://em.21dtv.com/songs/60021902.mkv +纪佳松-坏坏坏,http://em.21dtv.com/songs/60021696.mkv +彭丽媛-槐花海,http://em.21dtv.com/songs/60021682.mkv +郑融-红花会,http://em.21dtv.com/songs/60020861.mkv +布川-恨恨恨,http://em.21dtv.com/songs/60020700.mkv +BUSTER POINDEXTER-hot hot hot,http://em.21dtv.com/songs/60002338.mkv +萧亚轩-honey honey honey,http://em.21dtv.com/songs/60002316.mkv +张惠妹-high high high,http://em.21dtv.com/songs/60002263.mkv +开克尔曼尼-happy happy happy,http://em.21dtv.com/songs/60002087.mkv +金池-好好过,http://em.21dtv.com/songs/60107287.mkv +胡歌-好好过,http://em.21dtv.com/songs/60105311.mkv +外国民歌-红河谷,http://em.21dtv.com/songs/60090865.mkv +张祥洪-好好过,http://em.21dtv.com/songs/60083006.mkv +龚月-好汉歌,http://em.21dtv.com/songs/60075673.mkv +连诗雅-好好过,http://em.21dtv.com/songs/60069447.mkv +佚名-红河谷,http://em.21dtv.com/songs/60020846.mkv +刘子豪+馨梓-红河谷,http://em.21dtv.com/songs/60020845.mkv +刘欢-好汉歌,http://em.21dtv.com/songs/60020013.mkv +刘欢-好汉歌(演唱会),http://em.21dtv.com/songs/60020012.mkv +张国荣-红蝴蝶,http://em.21dtv.com/songs/60127969.mkv +侯梦亮-黄昏渡,http://em.21dtv.com/songs/60118345.mkv +朴树-好好地,http://em.21dtv.com/songs/60115998.mkv +罗维帅-坏坏哒,http://em.21dtv.com/songs/60113942.mkv +万一-好好的,http://em.21dtv.com/songs/60107457.mkv +南京饶舌团体-喝混沌,http://em.21dtv.com/songs/60090764.mkv +金婧-花蝴蝶,http://em.21dtv.com/songs/60086605.mkv +沈建豪+林子娟-憨憨等,http://em.21dtv.com/songs/60086581.mkv +柳影虹+胡渭康-火蝴蝶(演唱会),http://em.21dtv.com/songs/60075945.mkv +吉星-荷花荡,http://em.21dtv.com/songs/60075725.mkv +白晶-嗨嗨dj,http://em.21dtv.com/songs/60075640.mkv +唐文龙+李彩桦-火蝴蝶,http://em.21dtv.com/songs/60022428.mkv +赵鹏-花蝴蝶,http://em.21dtv.com/songs/60021381.mkv +游鸿明-花蝴蝶,http://em.21dtv.com/songs/60021380.mkv +田丰-花蝴蝶,http://em.21dtv.com/songs/60021379.mkv +蔡依林-花蝴蝶,http://em.21dtv.com/songs/60021378.mkv +吴卓羲-红蝴蝶,http://em.21dtv.com/songs/60020857.mkv +黄凯芹-好好的,http://em.21dtv.com/songs/60020022.mkv +杨鸣-黄昏城,http://em.21dtv.com/songs/60066151.mkv +文夏-黄昏城,http://em.21dtv.com/songs/60021934.mkv +陈晓东-划火柴,http://em.21dtv.com/songs/60021564.mkv +林一峰-红河村,http://em.21dtv.com/songs/60020844.mkv +周慧敏-红河村(演唱会),http://em.21dtv.com/songs/60020843.mkv +佚名-红河村(慢四),http://em.21dtv.com/songs/60020842.mkv +糖兄妹-划火柴(演唱会),http://em.21dtv.com/songs/60006846.mkv +Bingo-好好爱,http://em.21dtv.com/songs/60128669.mkv +江惠仪-缓缓爱,http://em.21dtv.com/songs/60116094.mkv +晓月-好好爱,http://em.21dtv.com/songs/60113569.mkv +吉克隽逸-呼唤爱,http://em.21dtv.com/songs/60111742.mkv +王琪玮+丁于-狠狠爱,http://em.21dtv.com/songs/60094604.mkv +李亮超+胡丹丹-好好爱,http://em.21dtv.com/songs/60080616.mkv +牛演通-呼呼爱,http://em.21dtv.com/songs/60068325.mkv +张馨予-狠狠爱,http://em.21dtv.com/songs/60063408.mkv +王传一-换换爱,http://em.21dtv.com/songs/60021833.mkv +徐若瑄-狠狠爱,http://em.21dtv.com/songs/60020680.mkv +谈莉娜-狠狠爱,http://em.21dtv.com/songs/60020679.mkv +许志安-何慧爱,http://em.21dtv.com/songs/60020348.mkv +BY2-好好爱,http://em.21dtv.com/songs/60020014.mkv +杨树林+金池-回故乡,http://em.21dtv.com/songs/60135401.mkv +齐国-回故乡,http://em.21dtv.com/songs/60132026.mkv +齐国-回故乡,http://em.21dtv.com/songs/60129863.mkv +李雨儿-回故乡,http://em.21dtv.com/songs/60075913.mkv +梁咏琪-很高兴,http://em.21dtv.com/songs/60020638.mkv +何静-火锅舞,http://em.21dtv.com/songs/60131167.mkv +王炎-红盖头,http://em.21dtv.com/songs/60020837.mkv +梁静茹-憨过头,http://em.21dtv.com/songs/60019860.mkv +孔令奇-哈过头,http://em.21dtv.com/songs/60019547.mkv +柳翰雅-火锅爽,http://em.21dtv.com/songs/60106997.mkv +郑智化-悔过书,http://em.21dtv.com/songs/60022263.mkv +宋祖英-好故事,http://em.21dtv.com/songs/60020011.mkv +童唱-虎姑婆,http://em.21dtv.com/songs/60021284.mkv +蒋欣-灰姑娘,http://em.21dtv.com/songs/60124433.mkv +蒋欣-灰姑娘,http://em.21dtv.com/songs/60122084.mkv +反光镜-嘿姑娘(演唱会),http://em.21dtv.com/songs/60083027.mkv +王红涛-徽姑娘,http://em.21dtv.com/songs/60081400.mkv +蒲紫微-好姑娘,http://em.21dtv.com/songs/60068310.mkv +左小祖咒-好姑娘,http://em.21dtv.com/songs/60067059.mkv +钟汉良-灰姑娘,http://em.21dtv.com/songs/60022026.mkv +张惠妹-灰姑娘,http://em.21dtv.com/songs/60022025.mkv +孙悦-灰姑娘,http://em.21dtv.com/songs/60022024.mkv +梁咏琪-灰姑娘,http://em.21dtv.com/songs/60022023.mkv +李克勤-灰姑娘,http://em.21dtv.com/songs/60022022.mkv +郑钧-灰姑娘(演唱会),http://em.21dtv.com/songs/60022021.mkv +梁咏琪-灰姑娘(演唱会),http://em.21dtv.com/songs/60022020.mkv +卓依婷-好姑娘,http://em.21dtv.com/songs/60020010.mkv +李晓杰-好姑娘,http://em.21dtv.com/songs/60020009.mkv +春雷-好姑娘,http://em.21dtv.com/songs/60020008.mkv +卓依婷-好姑娘(演唱会),http://em.21dtv.com/songs/60020007.mkv +高峰-好姑娘(无原唱),http://em.21dtv.com/songs/60020006.mkv +宋祖英-海姑娘,http://em.21dtv.com/songs/60019728.mkv +贺敬轩-好闺蜜,http://em.21dtv.com/songs/60128416.mkv +金久哲-好哥们,http://em.21dtv.com/songs/60118106.mkv +何流-嘿哥们,http://em.21dtv.com/songs/60103079.mkv +赵小兵-好哥们,http://em.21dtv.com/songs/60066014.mkv +韩红-红高粱,http://em.21dtv.com/songs/60106450.mkv +赵传-红高粱(演唱会),http://em.21dtv.com/songs/60075770.mkv +华娜-鸿嘎鲁,http://em.21dtv.com/songs/60021063.mkv +腾格尔-红高梁,http://em.21dtv.com/songs/60020838.mkv +罗文裕-好感觉,http://em.21dtv.com/songs/60064279.mkv +周传雄-坏感觉,http://em.21dtv.com/songs/60021693.mkv +戴佩妮-好感觉,http://em.21dtv.com/songs/60019999.mkv +夏瑶-红果果,http://em.21dtv.com/songs/60122631.mkv +杨镜儒-好哥哥,http://em.21dtv.com/songs/60113687.mkv +訾鹃-红哥哥,http://em.21dtv.com/songs/60094296.mkv +杨培安-黑寡妇,http://em.21dtv.com/songs/60125734.mkv +陈雷-好功夫,http://em.21dtv.com/songs/60120106.mkv +乌兰托娅-花鼓风,http://em.21dtv.com/songs/60096974.mkv +郭富城-好功夫,http://em.21dtv.com/songs/60093354.mkv +黄立行-黑寡妇,http://em.21dtv.com/songs/60020513.mkv +洪启松-憨敢等,http://em.21dtv.com/songs/60129344.mkv +张杰-会孤单,http://em.21dtv.com/songs/60127986.mkv +翁立友-恨孤单(无原唱),http://em.21dtv.com/songs/60020696.mkv +1983-好孤单,http://em.21dtv.com/songs/60020005.mkv +白安-换房子,http://em.21dtv.com/songs/60116178.mkv +白安-换房子,http://em.21dtv.com/songs/60104339.mkv +真妮-花风筝,http://em.21dtv.com/songs/60021364.mkv +吴瑶-鹤飞翔,http://em.21dtv.com/songs/60107583.mkv +群星-鹤飞翔,http://em.21dtv.com/songs/60096438.mkv +任娟-好福气,http://em.21dtv.com/songs/60120296.mkv +任娟-好福气,http://em.21dtv.com/songs/60109956.mkv +张信哲+萧煌奇-换房间,http://em.21dtv.com/songs/60072034.mkv +F.I.R-花非花,http://em.21dtv.com/songs/60083061.mkv +小黄飞-黄飞红,http://em.21dtv.com/songs/60061267.mkv +乌兰托娅-火凤凰,http://em.21dtv.com/songs/60022421.mkv +童唱-花非花,http://em.21dtv.com/songs/60021363.mkv +廖隽嘉-花非花,http://em.21dtv.com/songs/60021362.mkv +孙耀威-好风光,http://em.21dtv.com/songs/60110995.mkv +冷月舞者-火法帝,http://em.21dtv.com/songs/60022420.mkv +安蕾尔-火法帝,http://em.21dtv.com/songs/60022419.mkv +姚贝娜-海风吹,http://em.21dtv.com/songs/60094043.mkv +张靓颖-海风吹,http://em.21dtv.com/songs/60085161.mkv +黄妃-海风吹,http://em.21dtv.com/songs/60082992.mkv +龙飘飘-红封包,http://em.21dtv.com/songs/60064305.mkv +MON MON-hes from africa,http://em.21dtv.com/songs/60002231.mkv +孙淑媚-华尔滋,http://em.21dtv.com/songs/60119424.mkv +苏美璇-花儿香,http://em.21dtv.com/songs/60069475.mkv +春雷-花儿香,http://em.21dtv.com/songs/60021351.mkv +童唱-好儿童,http://em.21dtv.com/songs/60019997.mkv +华晨宇-Here We Are,http://em.21dtv.com/songs/60127787.mkv +火星电台-Her,http://em.21dtv.com/songs/60113828.mkv +嘴哥乐团+魏如萱-HER,http://em.21dtv.com/songs/60103989.mkv +CARPENTERS-hurting each other,http://em.21dtv.com/songs/60002399.mkv +大庆小芳-好儿女,http://em.21dtv.com/songs/60110114.mkv +大庆小芳-好儿女,http://em.21dtv.com/songs/60096957.mkv +易秒英-好儿女,http://em.21dtv.com/songs/60087938.mkv +高枫-花儿美,http://em.21dtv.com/songs/60081887.mkv +东于哲-荷尔蒙,http://em.21dtv.com/songs/60075724.mkv +李路正-花儿美,http://em.21dtv.com/songs/60021340.mkv +杨坤-花儿红(演唱会),http://em.21dtv.com/songs/60021336.mkv +PASSENGER-Heart's On Fire,http://em.21dtv.com/songs/60101221.mkv +佚名-happy ever after,http://em.21dtv.com/songs/60002082.mkv +罗时丰-海底针,http://em.21dtv.com/songs/60134103.mkv +牛仔酷-花独醉,http://em.21dtv.com/songs/60100298.mkv +枫舞-花独醉,http://em.21dtv.com/songs/60100227.mkv +侧田-红地毡,http://em.21dtv.com/songs/60020812.mkv +林姗-海底针,http://em.21dtv.com/songs/60019718.mkv +洪荣宏-海底针,http://em.21dtv.com/songs/60019717.mkv +乔洋-好多余,http://em.21dtv.com/songs/60096960.mkv +阿牛-花的语,http://em.21dtv.com/songs/60021323.mkv +蝴蝶组合-蝴蝶吟,http://em.21dtv.com/songs/60021272.mkv +梁洛施-好得意,http://em.21dtv.com/songs/60019989.mkv +SISTAR-how dare you,http://em.21dtv.com/songs/60002361.mkv +航宇-好弟兄,http://em.21dtv.com/songs/60117991.mkv +卢春如-坏东西,http://em.21dtv.com/songs/60090778.mkv +刘德华-坏东西,http://em.21dtv.com/songs/60021692.mkv +MAKIYO-坏东西,http://em.21dtv.com/songs/60021691.mkv +罗志祥-蝴蝶秀,http://em.21dtv.com/songs/60021271.mkv +叶玉卿-好东西,http://em.21dtv.com/songs/60019995.mkv +蔡依林-好东西,http://em.21dtv.com/songs/60019994.mkv +叶德娴-好东西(演唱会),http://em.21dtv.com/songs/60019993.mkv +卫兰-回电我,http://em.21dtv.com/songs/60075912.mkv +云菲菲-蝴蝶吻,http://em.21dtv.com/songs/60021270.mkv +姜孝萌-蝴蝶吻,http://em.21dtv.com/songs/60021269.mkv +葛晓璐-蝴蝶吻,http://em.21dtv.com/songs/60021268.mkv +佚名-haruskah di uji,http://em.21dtv.com/songs/60002110.mkv +詹雅雯-红豆汤,http://em.21dtv.com/songs/60127383.mkv +侧田-红地毯(演唱会),http://em.21dtv.com/songs/60020811.mkv +林俊杰-会读书,http://em.21dtv.com/songs/60022273.mkv +佚名-红灯颂,http://em.21dtv.com/songs/60020810.mkv +龚月-红豆曲,http://em.21dtv.com/songs/60075767.mkv +陈力-红豆曲,http://em.21dtv.com/songs/60020827.mkv +王力宏-话当年,http://em.21dtv.com/songs/60021625.mkv +关燕萍-蝴蝶梦,http://em.21dtv.com/songs/60069471.mkv +黄耀明-蝴蝶梦(演唱会),http://em.21dtv.com/songs/60064319.mkv +张雯婷-蝴蝶梦,http://em.21dtv.com/songs/60021260.mkv +蔡小虎+龙千玉-蝴蝶梦,http://em.21dtv.com/songs/60021259.mkv +晏敏敏-蝴蝶兰,http://em.21dtv.com/songs/60135319.mkv +王小尧-花旦泪,http://em.21dtv.com/songs/60119806.mkv +高向鹏+郑琇月-花蝶恋,http://em.21dtv.com/songs/60100660.mkv +七朵组合-蝴蝶恋,http://em.21dtv.com/songs/60097116.mkv +王小尧-花旦泪,http://em.21dtv.com/songs/60081185.mkv +储兰兰-花灯恋(演唱会),http://em.21dtv.com/songs/60075834.mkv +陈艾玲-花蝶恋,http://em.21dtv.com/songs/60021326.mkv +陈美龄-蝴蝶恋,http://em.21dtv.com/songs/60021256.mkv +方大同-黑洞里,http://em.21dtv.com/songs/60020509.mkv +SHAKIRA+WYCLEF JEAN-hips dont lie,http://em.21dtv.com/songs/60002278.mkv +孔莹-红灯记,http://em.21dtv.com/songs/60087648.mkv +卓义峰-蝴蝶结(演唱会),http://em.21dtv.com/songs/60075826.mkv +黄磊-蝴蝶结,http://em.21dtv.com/songs/60021254.mkv +周杰伦+陶晶莹-蝴蝶姬,http://em.21dtv.com/songs/60021253.mkv +李丹阳-好当家,http://em.21dtv.com/songs/60019987.mkv +水木年华-蝴蝶花,http://em.21dtv.com/songs/60088189.mkv +麦家瑜-好得很,http://em.21dtv.com/songs/60071989.mkv +郭富城-活的好,http://em.21dtv.com/songs/60022362.mkv +郭富城-活得好,http://em.21dtv.com/songs/60022357.mkv +赵学而-坏得好,http://em.21dtv.com/songs/60021690.mkv +易桀齐-花的话,http://em.21dtv.com/songs/60021320.mkv +李之勤-蝴蝶花,http://em.21dtv.com/songs/60021252.mkv +俞静-红豆红,http://em.21dtv.com/songs/60020826.mkv +许志安-好得很,http://em.21dtv.com/songs/60019988.mkv +斯婷-蝴蝶谷,http://em.21dtv.com/songs/60086603.mkv +尤雅-蝴蝶港(无原唱),http://em.21dtv.com/songs/60050719.mkv +佚名-霍东阁,http://em.21dtv.com/songs/60022495.mkv +佚名-蝴蝶谷,http://em.21dtv.com/songs/60021251.mkv +佚名-蝴蝶港(无原唱),http://em.21dtv.com/songs/60021250.mkv +龙千玉-蝴蝶飞,http://em.21dtv.com/songs/60136063.mkv +王识贤-蝴蝶飞,http://em.21dtv.com/songs/60135568.mkv +天唱组合-好地方,http://em.21dtv.com/songs/60075670.mkv +叶慧婷-蝴碟飞,http://em.21dtv.com/songs/60063268.mkv +花儿乐队-化蝶飞,http://em.21dtv.com/songs/60021594.mkv +苏路-蝴蝶飞,http://em.21dtv.com/songs/60021246.mkv +雷龙-蝴蝶飞,http://em.21dtv.com/songs/60021245.mkv +陈慧琳-好地方,http://em.21dtv.com/songs/60019991.mkv +陈怡婷-憨大呆,http://em.21dtv.com/songs/60135919.mkv +黄龄-喝到底,http://em.21dtv.com/songs/60106513.mkv +尹相杰+于文华-红兜兜,http://em.21dtv.com/songs/60020814.mkv +佚名-憨大呆,http://em.21dtv.com/songs/60019857.mkv +白冰冰-憨大呆,http://em.21dtv.com/songs/60019856.mkv +童唱-hickory dickory dock,http://em.21dtv.com/songs/60002259.mkv +TWINS-hickory dickory dock,http://em.21dtv.com/songs/60002258.mkv +孔莹-花打朝,http://em.21dtv.com/songs/60087650.mkv +谭咏麟-会到此(演唱会),http://em.21dtv.com/songs/60022272.mkv +王霞-红豆词,http://em.21dtv.com/songs/60020825.mkv +刘雪庵-红豆词,http://em.21dtv.com/songs/60020824.mkv +磬玉-蝴蝶杯,http://em.21dtv.com/songs/60021242.mkv +傅宇昊-好的爱,http://em.21dtv.com/songs/60064278.mkv +彭伟家-红尘中,http://em.21dtv.com/songs/60094108.mkv +李春波-火车站,http://em.21dtv.com/songs/60075942.mkv +火狼-红尘缘,http://em.21dtv.com/songs/60129364.mkv +杨鸿-红尘缘,http://em.21dtv.com/songs/60116954.mkv +焦炭乐团+张羽伟-恒春谣,http://em.21dtv.com/songs/60095801.mkv +张冬玲-红尘缘,http://em.21dtv.com/songs/60085188.mkv +周慧敏-会错意,http://em.21dtv.com/songs/60022271.mkv +龙千玉+蔡小虎-红尘缘,http://em.21dtv.com/songs/60020783.mkv +金玲-红尘笑,http://em.21dtv.com/songs/60108072.mkv +尤雅-好春霄,http://em.21dtv.com/songs/60019979.mkv +佚名-好春宵,http://em.21dtv.com/songs/60019978.mkv +伦永亮-好春宵(演唱会),http://em.21dtv.com/songs/60019977.mkv +蔡文程-好彩头,http://em.21dtv.com/songs/60118888.mkv +办桌二人组-火车头,http://em.21dtv.com/songs/60095474.mkv +陈瑞+冷漠-红尘叹,http://em.21dtv.com/songs/60081853.mkv +郭炳坚-好春天,http://em.21dtv.com/songs/60075669.mkv +杨宗宪-火车头(无原唱),http://em.21dtv.com/songs/60022417.mkv +卓依婷-好春天,http://em.21dtv.com/songs/60019976.mkv +何超仪-何超市,http://em.21dtv.com/songs/60087321.mkv +郭燕-红尘殇,http://em.21dtv.com/songs/60020773.mkv +LOCASH COWBOYS-here comes summer,http://em.21dtv.com/songs/60002204.mkv +江蕙-怀春曲,http://em.21dtv.com/songs/60095733.mkv +佚名-怀春曲,http://em.21dtv.com/songs/60021638.mkv +许巍-喝茶去,http://em.21dtv.com/songs/60020290.mkv +慕容晓晓-徽常美,http://em.21dtv.com/songs/60070777.mkv +佚名-红尘梦,http://em.21dtv.com/songs/60020768.mkv +孙淑媚-红尘梦,http://em.21dtv.com/songs/60020767.mkv +方瑞娥-红尘梦,http://em.21dtv.com/songs/60020766.mkv +罗文-红尘梦(演唱会),http://em.21dtv.com/songs/60020765.mkv +佚名-横财梦(无原唱),http://em.21dtv.com/songs/60020737.mkv +乐桐-红尘路,http://em.21dtv.com/songs/60103857.mkv +赵齐-红尘泪,http://em.21dtv.com/songs/60100485.mkv +龙千玉-红尘泪,http://em.21dtv.com/songs/60083038.mkv +龙军-红尘路,http://em.21dtv.com/songs/60020764.mkv +陈盈洁-红尘泪,http://em.21dtv.com/songs/60020763.mkv +刘刚-红尘牢,http://em.21dtv.com/songs/60020762.mkv +望海高歌-红尘劫,http://em.21dtv.com/songs/60126985.mkv +蒋婴-红尘劫,http://em.21dtv.com/songs/60116231.mkv +东方神起-how can i,http://em.21dtv.com/songs/60002357.mkv +王易阳-红尘海,http://em.21dtv.com/songs/60118785.mkv +张惠妹-黑吃黑,http://em.21dtv.com/songs/60020508.mkv +陈慧娴-红茶馆,http://em.21dtv.com/songs/60128534.mkv +吴彤-好春光,http://em.21dtv.com/songs/60099866.mkv +一绫-会成功,http://em.21dtv.com/songs/60085245.mkv +天堂乐队-皇城根,http://em.21dtv.com/songs/60085229.mkv +佚名-划船歌,http://em.21dtv.com/songs/60021562.mkv +姚敏-划船歌,http://em.21dtv.com/songs/60021561.mkv +陈慧娴-红茶馆(演唱会),http://em.21dtv.com/songs/60020753.mkv +侧田+邓紫棋-合唱歌,http://em.21dtv.com/songs/60020300.mkv +刘一祯-好春光,http://em.21dtv.com/songs/60019975.mkv +RANDY HOUSER-how country feels,http://em.21dtv.com/songs/60073358.mkv +吴欢-红茶坊,http://em.21dtv.com/songs/60020752.mkv +乐佳-红尘错(动画),http://em.21dtv.com/songs/60101867.mkv +平安-坏翅膀,http://em.21dtv.com/songs/60118538.mkv +平安-坏翅膀,http://em.21dtv.com/songs/60117705.mkv +苏永康-回程吧,http://em.21dtv.com/songs/60022078.mkv +陈世强-好厝边(无原唱),http://em.21dtv.com/songs/60019980.mkv +佚名-honey come back,http://em.21dtv.com/songs/60002315.mkv +何文田-黑白照,http://em.21dtv.com/songs/60092255.mkv +邓丽欣-黑白照,http://em.21dtv.com/songs/60020504.mkv +邓丽欣-黑白照(演唱会),http://em.21dtv.com/songs/60020503.mkv +田露-花伴月,http://em.21dtv.com/songs/60134027.mkv +侃侃-花瓣雨,http://em.21dtv.com/songs/60116554.mkv +孙楠-花瓣雨,http://em.21dtv.com/songs/60108425.mkv +樱子-好榜样,http://em.21dtv.com/songs/60064277.mkv +张爽-花瓣雨,http://em.21dtv.com/songs/60021309.mkv +童安格-花瓣雨,http://em.21dtv.com/songs/60021308.mkv +张文绮-黑白舞,http://em.21dtv.com/songs/60085185.mkv +芭比-黑白舞,http://em.21dtv.com/songs/60020500.mkv +古巨基-花不痛,http://em.21dtv.com/songs/60021312.mkv +吴碧霞-湖笔颂,http://em.21dtv.com/songs/60075822.mkv +张志林-黑白世,http://em.21dtv.com/songs/60020499.mkv +郭力行-黑白伞,http://em.21dtv.com/songs/60020498.mkv +七郎-红不让,http://em.21dtv.com/songs/60020751.mkv +蒋雪儿-回不去,http://em.21dtv.com/songs/60135693.mkv +何晟铭-回不去,http://em.21dtv.com/songs/60085236.mkv +詹雪琳-很抱歉,http://em.21dtv.com/songs/60083032.mkv +MP魔幻力量-黑白切,http://em.21dtv.com/songs/60062115.mkv +江希文-花不起,http://em.21dtv.com/songs/60021311.mkv +SAYA-很抱歉,http://em.21dtv.com/songs/60020636.mkv +范玮琪-黑白配,http://em.21dtv.com/songs/60020497.mkv +陈奕迅-何必呢,http://em.21dtv.com/songs/60114857.mkv +吕梓铷-花瓣泪,http://em.21dtv.com/songs/60130176.mkv +枫舞+相容-恨别离,http://em.21dtv.com/songs/60125798.mkv +艺枫-恨别离,http://em.21dtv.com/songs/60119904.mkv +吕梓铷-花瓣泪,http://em.21dtv.com/songs/60118439.mkv +曹轩宾-魂不吝,http://em.21dtv.com/songs/60110245.mkv +曹轩宾-魂不吝(Funky),http://em.21dtv.com/songs/60097100.mkv +佚名-海波浪,http://em.21dtv.com/songs/60019706.mkv +郭桂彬+黄乙玲-海波浪,http://em.21dtv.com/songs/60019705.mkv +傅振辉+邱淑君-海波浪(无原唱),http://em.21dtv.com/songs/60019704.mkv +邱芸子-何必苦,http://em.21dtv.com/songs/60102784.mkv +邓华升-黑白键,http://em.21dtv.com/songs/60120990.mkv +LCG宝贝-黑白键,http://em.21dtv.com/songs/60117472.mkv +闫学晶-回杯记,http://em.21dtv.com/songs/60070778.mkv +五月天-黑白讲(演唱会),http://em.21dtv.com/songs/60020496.mkv +方大同-黑白灰,http://em.21dtv.com/songs/60100079.mkv +蔡旻佑-好不好,http://em.21dtv.com/songs/60085169.mkv +本兮-会不会,http://em.21dtv.com/songs/60075929.mkv +罗力威-红不红(演唱会),http://em.21dtv.com/songs/60075762.mkv +李唯枫-好不好,http://em.21dtv.com/songs/60069445.mkv +陈绮贞-会不会,http://em.21dtv.com/songs/60022269.mkv +五月天-好不好,http://em.21dtv.com/songs/60019973.mkv +马郁-好不好,http://em.21dtv.com/songs/60019972.mkv +梁咏琪-好不好,http://em.21dtv.com/songs/60019971.mkv +五月天-好不好(演唱会),http://em.21dtv.com/songs/60019970.mkv +刘子来-恨不归,http://em.21dtv.com/songs/60130115.mkv +金南玲+吉吉-伙伴歌,http://em.21dtv.com/songs/60104508.mkv +凌东明+胡雪仪-胡不归,http://em.21dtv.com/songs/60021203.mkv +王雪晶-哈巴狗,http://em.21dtv.com/songs/60019545.mkv +童唱-哈巴狗,http://em.21dtv.com/songs/60019544.mkv +小松拓也-恨不得,http://em.21dtv.com/songs/60020688.mkv +高歌-好爸爸,http://em.21dtv.com/songs/60075668.mkv +HAYA乐团-Haya的传说,http://em.21dtv.com/songs/60096859.mkv +洪卓立+C君-how about you,http://em.21dtv.com/songs/60082186.mkv +拾叁乐团-海岸线,http://em.21dtv.com/songs/60019692.mkv +TWINS-hide and seek,http://em.21dtv.com/songs/60002261.mkv +LILY ALLEN-Hard Out Here,http://em.21dtv.com/songs/60096150.mkv +张宇-Harder To Breathe(我是歌手第二期),http://em.21dtv.com/songs/60096269.mkv +林良欢-恨爱情,http://em.21dtv.com/songs/60070742.mkv +李天华-恨爱情,http://em.21dtv.com/songs/60020687.mkv +新声一班-HAPPY NEW YEAR,http://em.21dtv.com/songs/60096858.mkv +ROD STEWART-having a party,http://em.21dtv.com/songs/60002131.mkv +安室奈美惠-Hands On Me,http://em.21dtv.com/songs/60099951.mkv +林俊逸-很爱你,http://em.21dtv.com/songs/60101657.mkv +景甜-还爱你,http://em.21dtv.com/songs/60019572.mkv +丁爽-还爱吗,http://em.21dtv.com/songs/60126561.mkv +江蕙-憨阿嬷,http://em.21dtv.com/songs/60019855.mkv +邓小龙-HA LI GO,http://em.21dtv.com/songs/60128448.mkv +东来东往-好安静,http://em.21dtv.com/songs/60119228.mkv +汪苏泷-好安静,http://em.21dtv.com/songs/60088208.mkv +汪苏泷-很安静,http://em.21dtv.com/songs/60061245.mkv +黄乙玲-花啊花,http://em.21dtv.com/songs/60075833.mkv +佚名-heres a heart,http://em.21dtv.com/songs/60002219.mkv +HOLLIES-he aint heavy,http://em.21dtv.com/songs/60002134.mkv +BONNIE RAITT-have a heart,http://em.21dtv.com/songs/60002117.mkv +紫梦格格-好阿哥,http://em.21dtv.com/songs/60104359.mkv +丁当-很爱过,http://em.21dtv.com/songs/60075747.mkv +蔡振南-憨阿呆,http://em.21dtv.com/songs/60019854.mkv +张国荣-h2o(无原唱),http://em.21dtv.com/songs/60002047.mkv +李贞贤-跟着做,http://em.21dtv.com/songs/60089971.mkv +猪哥亮-观自在(演唱会),http://em.21dtv.com/songs/60071970.mkv +佚名-古锥仔,http://em.21dtv.com/songs/60019001.mkv +张蓉蓉-搁在醉,http://em.21dtv.com/songs/60018347.mkv +于湉-光之翼,http://em.21dtv.com/songs/60111680.mkv +周笔畅-光之翼,http://em.21dtv.com/songs/60099160.mkv +王璐-光之翼,http://em.21dtv.com/songs/60096943.mkv +张目-光之翼,http://em.21dtv.com/songs/60081531.mkv +王菲-光之翼,http://em.21dtv.com/songs/60019328.mkv +郑融-go争鞋,http://em.21dtv.com/songs/60002009.mkv +温岚-跟着我PARTY,http://em.21dtv.com/songs/60090048.mkv +张皓强-关中娃,http://em.21dtv.com/songs/60127991.mkv +周杰伦-狗仔舞,http://em.21dtv.com/songs/60085137.mkv +温岚-跟着我,http://em.21dtv.com/songs/60018658.mkv +弦子-高姿态,http://em.21dtv.com/songs/60095200.mkv +祖海-甘蔗甜,http://em.21dtv.com/songs/60017897.mkv +林董-刽子手,http://em.21dtv.com/songs/60100221.mkv +ELLA-公主selina,http://em.21dtv.com/songs/60075527.mkv +李秋霞-瓜仔仁,http://em.21dtv.com/songs/60095627.mkv +野马-贵州人,http://em.21dtv.com/songs/60066006.mkv +曾明珠-瓜子仁(无原唱),http://em.21dtv.com/songs/60019135.mkv +谢霆锋-改造人,http://em.21dtv.com/songs/60017853.mkv +陈奕迅-改造人,http://em.21dtv.com/songs/60017852.mkv +谢霆锋-改造人(演唱会),http://em.21dtv.com/songs/60017851.mkv +佚名-谷中情,http://em.21dtv.com/songs/60019002.mkv +凌加峻-挂住你,http://em.21dtv.com/songs/60075586.mkv +JW-挂住你,http://em.21dtv.com/songs/60066000.mkv +BOY'Z-跟踪你,http://em.21dtv.com/songs/60018669.mkv +梅艳芳-歌之女(演唱会),http://em.21dtv.com/songs/60018407.mkv +廖丽娜-冠仔某(无原唱),http://em.21dtv.com/songs/60019264.mkv +陈小宇-公主岭,http://em.21dtv.com/songs/60111482.mkv +黄鸿升-搞砸了,http://em.21dtv.com/songs/60018264.mkv +何龙雨-工作狂,http://em.21dtv.com/songs/60080546.mkv +光良-给自己,http://em.21dtv.com/songs/60079898.mkv +李丽霞-哥仔靓(演唱会),http://em.21dtv.com/songs/60075491.mkv +关诗敏-关在家,http://em.21dtv.com/songs/60068287.mkv +甜美真-怪自己,http://em.21dtv.com/songs/60067040.mkv +央金次卓-怪自己,http://em.21dtv.com/songs/60019191.mkv +程科-怪自己,http://em.21dtv.com/songs/60019190.mkv +丽莎-哥仔靓,http://em.21dtv.com/songs/60018330.mkv +李燕萍-哥仔靓,http://em.21dtv.com/songs/60018329.mkv +花鼓戏-瓜子红,http://em.21dtv.com/songs/60090171.mkv +林欣彤-干燥花,http://em.21dtv.com/songs/60062653.mkv +童安格-干燥花,http://em.21dtv.com/songs/60018140.mkv +陈一凡-公子哥,http://em.21dtv.com/songs/60095124.mkv +王绎龙-公子哥,http://em.21dtv.com/songs/60075531.mkv +邓林-歌在飞,http://em.21dtv.com/songs/60134287.mkv +胡斌-歌在飞,http://em.21dtv.com/songs/60130672.mkv +苏勒亚其其格-歌在飞,http://em.21dtv.com/songs/60129538.mkv +苏勒亚其其格-歌在飞,http://em.21dtv.com/songs/60124400.mkv +苏勒亚其其格-歌在飞,http://em.21dtv.com/songs/60100409.mkv +自由发挥-哥在飞,http://em.21dtv.com/songs/60082948.mkv +叶启田-古锥的,http://em.21dtv.com/songs/60018998.mkv +谎言留声机-光之城,http://em.21dtv.com/songs/60071973.mkv +梁梁-国字粹,http://em.21dtv.com/songs/60068297.mkv +于湉-公子病,http://em.21dtv.com/songs/60131148.mkv +于湉-公子病,http://em.21dtv.com/songs/60130058.mkv +熊照华-阁之布,http://em.21dtv.com/songs/60124236.mkv +周杰伦-公主病,http://em.21dtv.com/songs/60064241.mkv +丁丁-跟着爱,http://em.21dtv.com/songs/60120262.mkv +刘晓-观音赞,http://em.21dtv.com/songs/60086573.mkv +张敬轩-过云雨,http://em.21dtv.com/songs/60019542.mkv +张敬轩-过云雨(演唱会),http://em.21dtv.com/songs/60019541.mkv +梁洛施+关智斌-光与影,http://em.21dtv.com/songs/60019326.mkv +陈淑芳-观音像,http://em.21dtv.com/songs/60019247.mkv +黄西田+樱桃姐妹-干一下,http://em.21dtv.com/songs/60018139.mkv +七郎+邓咏家-孤一味,http://em.21dtv.com/songs/60126562.mkv +关淑怡-关于我,http://em.21dtv.com/songs/60019230.mkv +紫凌孤军-跪羊图,http://em.21dtv.com/songs/60126016.mkv +马丽-古玉堂,http://em.21dtv.com/songs/60109745.mkv +阿吉仔-甘愿受,http://em.21dtv.com/songs/60135875.mkv +李嘉-逛夜市,http://em.21dtv.com/songs/60019351.mkv +斯琴高丽-观音手,http://em.21dtv.com/songs/60019246.mkv +容中尔甲-高原人,http://em.21dtv.com/songs/60018252.mkv +吴浩康-公元前,http://em.21dtv.com/songs/60018695.mkv +阿斯根-高原情,http://em.21dtv.com/songs/60018249.mkv +韦海涛-关于你,http://em.21dtv.com/songs/60068286.mkv +山子华-高原美,http://em.21dtv.com/songs/60129022.mkv +UA-甘い運命(无原唱),http://em.21dtv.com/songs/60080612.mkv +ODB-get your money,http://em.21dtv.com/songs/60001864.mkv +郭宏杰-高原恋,http://em.21dtv.com/songs/60118103.mkv +马常宝-高原恋,http://em.21dtv.com/songs/60117381.mkv +肖亮-高原蓝,http://em.21dtv.com/songs/60109580.mkv +韩琳-赶月亮,http://em.21dtv.com/songs/60067015.mkv +乌兰图雅-高原蓝,http://em.21dtv.com/songs/60063074.mkv +肖亮-高原蓝,http://em.21dtv.com/songs/60018246.mkv +乌兰托娅-高原蓝,http://em.21dtv.com/songs/60018245.mkv +方力申-怪异集,http://em.21dtv.com/songs/60092755.mkv +谭维维-高原红,http://em.21dtv.com/songs/60123187.mkv +央金兰泽-高原红,http://em.21dtv.com/songs/60110119.mkv +容中尔甲-高原红,http://em.21dtv.com/songs/60018244.mkv +阿斯根-高原红,http://em.21dtv.com/songs/60018243.mkv +容中尔甲-高原红(演唱会),http://em.21dtv.com/songs/60018242.mkv +林泰燊-关云长,http://em.21dtv.com/songs/60075594.mkv +杜龙-关云长,http://em.21dtv.com/songs/60075593.mkv +THE WANTED-glad you came,http://em.21dtv.com/songs/60073255.mkv +曾经艺也-关云长,http://em.21dtv.com/songs/60069432.mkv +马天佑-掴一巴,http://em.21dtv.com/songs/60123375.mkv +子烽-干一杯,http://em.21dtv.com/songs/60114476.mkv +宋冬野-关忆北,http://em.21dtv.com/songs/60104946.mkv +李克勤-观音兵,http://em.21dtv.com/songs/60092799.mkv +江涛-干一杯,http://em.21dtv.com/songs/60082935.mkv +罗时丰-干一杯,http://em.21dtv.com/songs/60075446.mkv +叶启田-干一杯,http://em.21dtv.com/songs/60018138.mkv +小凤凤-干一杯,http://em.21dtv.com/songs/60018137.mkv +郑秀文-干一杯(演唱会),http://em.21dtv.com/songs/60018136.mkv +叶倩文-干一杯(演唱会),http://em.21dtv.com/songs/60018135.mkv +佚名-干一杯(无原唱),http://em.21dtv.com/songs/60018134.mkv +TI+KERI HILSON-got your back,http://em.21dtv.com/songs/60002005.mkv +梁咏琪-关于爱,http://em.21dtv.com/songs/60102411.mkv +张振宇-关于爱,http://em.21dtv.com/songs/60075590.mkv +南宁柒仔-广西仔,http://em.21dtv.com/songs/60019341.mkv +余零-故乡谣,http://em.21dtv.com/songs/60104791.mkv +吴碧霞-故乡雨,http://em.21dtv.com/songs/60075581.mkv +秀兰玛雅-故乡月,http://em.21dtv.com/songs/60019124.mkv +钟汉良-故乡香,http://em.21dtv.com/songs/60097023.mkv +七郎-故乡味,http://em.21dtv.com/songs/60085152.mkv +黄思婷-感谢天,http://em.21dtv.com/songs/60018098.mkv +后弦-柑香亭,http://em.21dtv.com/songs/60017901.mkv +冷兆艺-故乡山,http://em.21dtv.com/songs/60080209.mkv +哈琳-故乡情,http://em.21dtv.com/songs/60135062.mkv +胡斌-故乡情,http://em.21dtv.com/songs/60127304.mkv +哈琳-故乡情,http://em.21dtv.com/songs/60097024.mkv +佚名-故乡情,http://em.21dtv.com/songs/60019117.mkv +谢旦-故乡情,http://em.21dtv.com/songs/60019116.mkv +梅华-故乡情,http://em.21dtv.com/songs/60019115.mkv +降央卓玛-故乡情,http://em.21dtv.com/songs/60019114.mkv +程琳-故乡情,http://em.21dtv.com/songs/60019113.mkv +杜留香-故乡盼,http://em.21dtv.com/songs/60122881.mkv +龙千玉-感谢你,http://em.21dtv.com/songs/60136048.mkv +赵传-感谢你,http://em.21dtv.com/songs/60135772.mkv +邱贤桂-感谢你,http://em.21dtv.com/songs/60124551.mkv +杨杨-感谢你,http://em.21dtv.com/songs/60117833.mkv +孙楠-感谢你,http://em.21dtv.com/songs/60117659.mkv +侍宣如-感谢你,http://em.21dtv.com/songs/60109151.mkv +文千岁-恭喜你(戏曲),http://em.21dtv.com/songs/60092743.mkv +新年贺岁-恭喜您,http://em.21dtv.com/songs/60091258.mkv +刘思峰-感谢你,http://em.21dtv.com/songs/60086559.mkv +四千金-过新年,http://em.21dtv.com/songs/60075633.mkv +群星-过新年,http://em.21dtv.com/songs/60075632.mkv +彭炽权+黄伟香-恭喜你,http://em.21dtv.com/songs/60075539.mkv +陈笑玮-感谢你,http://em.21dtv.com/songs/60065985.mkv +江惠仪-感谢您,http://em.21dtv.com/songs/60062505.mkv +王鹤铮-感谢你,http://em.21dtv.com/songs/60061205.mkv +童唱-过新年,http://em.21dtv.com/songs/60019533.mkv +佚名-恭禧您,http://em.21dtv.com/songs/60018758.mkv +周亮+程闯-恭喜你,http://em.21dtv.com/songs/60018756.mkv +张德兰+区瑞强-恭喜你,http://em.21dtv.com/songs/60018755.mkv +太极乐队-恭喜你,http://em.21dtv.com/songs/60018754.mkv +孙悦-感谢你,http://em.21dtv.com/songs/60018087.mkv +陈雷-感谢你,http://em.21dtv.com/songs/60018086.mkv +温兆伦-感谢你(无原唱),http://em.21dtv.com/songs/60018084.mkv +容中尔甲-故乡梦,http://em.21dtv.com/songs/60123848.mkv +谢有才-广西美,http://em.21dtv.com/songs/60063173.mkv +赖伟锋-惯性恋,http://em.21dtv.com/songs/60112980.mkv +独脚神鹰-故乡恋,http://em.21dtv.com/songs/60098621.mkv +蓝乐-古湘恋,http://em.21dtv.com/songs/60094275.mkv +容中尔甲-故乡恋,http://em.21dtv.com/songs/60019109.mkv +刘德华-孤星泪,http://em.21dtv.com/songs/60018926.mkv +伍佰-孤星泪(演唱会),http://em.21dtv.com/songs/60018925.mkv +刘德华-孤星泪(演唱会),http://em.21dtv.com/songs/60018924.mkv +潘越云-该醒了(无原唱),http://em.21dtv.com/songs/60017823.mkv +林大晋-攻心计,http://em.21dtv.com/songs/60061214.mkv +关菊英-攻心计,http://em.21dtv.com/songs/60018728.mkv +棒棒堂+陈妍如-攻心计,http://em.21dtv.com/songs/60018727.mkv +周迅-给小孩,http://em.21dtv.com/songs/60102054.mkv +钟丽燕-故乡河,http://em.21dtv.com/songs/60088807.mkv +孔凯-故乡河,http://em.21dtv.com/songs/60081791.mkv +崔成浩-给兄弟,http://em.21dtv.com/songs/60133622.mkv +梁海洋-够兄弟,http://em.21dtv.com/songs/60119736.mkv +佚名-逛新城,http://em.21dtv.com/songs/60019350.mkv +民歌-逛新城,http://em.21dtv.com/songs/60019349.mkv +刘小雅-跟我走,http://em.21dtv.com/songs/60127765.mkv +刘依纯+办桌二人组-跟我走,http://em.21dtv.com/songs/60120353.mkv +苏路-跟我走,http://em.21dtv.com/songs/60068277.mkv +张娜拉-跟我走,http://em.21dtv.com/songs/60018646.mkv +孙悦+郭映-跟我走,http://em.21dtv.com/songs/60018645.mkv +MIRROR MIRROR-跟我走,http://em.21dtv.com/songs/60018644.mkv +谢安琪-跟我走(演唱会),http://em.21dtv.com/songs/60018643.mkv +杨宗纬-歌未央,http://em.21dtv.com/songs/60081240.mkv +ECHO-歌未央,http://em.21dtv.com/songs/60018403.mkv +刘依纯+办桌二人组-跟我行,http://em.21dtv.com/songs/60082956.mkv +萧敬腾-跟我玩,http://em.21dtv.com/songs/60103545.mkv +本多RURU-跟我说,http://em.21dtv.com/songs/60018632.mkv +林宇中-干物女,http://em.21dtv.com/songs/60018133.mkv +刘志成-给我们,http://em.21dtv.com/songs/60114422.mkv +王俊杰-跟我来,http://em.21dtv.com/songs/60075523.mkv +郭采洁-该忘了,http://em.21dtv.com/songs/60065980.mkv +童安格-跟我来,http://em.21dtv.com/songs/60018630.mkv +陈鹰-甘袜记(无原唱),http://em.21dtv.com/songs/60017871.mkv +孟佳-给我乖,http://em.21dtv.com/songs/60130249.mkv +童可可-怪我咯,http://em.21dtv.com/songs/60127256.mkv +安旭-狗尾草,http://em.21dtv.com/songs/60018802.mkv +天堂鸟-给我吧,http://em.21dtv.com/songs/60125351.mkv +天堂鸟-给我吧,http://em.21dtv.com/songs/60121540.mkv +杜德伟-给我吧,http://em.21dtv.com/songs/60018540.mkv +杜德伟-给我吧(演唱会),http://em.21dtv.com/songs/60018539.mkv +闪亮三姐妹-给我爱,http://em.21dtv.com/songs/60075510.mkv +佚名-给我爱,http://em.21dtv.com/songs/60018533.mkv +苏慧伦-给我爱,http://em.21dtv.com/songs/60018532.mkv +谷炫淳-给我爱,http://em.21dtv.com/songs/60018531.mkv +Lady Gaga-G U Y,http://em.21dtv.com/songs/60099007.mkv +林子娟-管汰伊,http://em.21dtv.com/songs/60019260.mkv +佚名-gotta tell ya,http://em.21dtv.com/songs/60002007.mkv +信-钢铁心,http://em.21dtv.com/songs/60123634.mkv +张惠妹-怪胎秀,http://em.21dtv.com/songs/60110197.mkv +宋嘉其-钢铁侠,http://em.21dtv.com/songs/60098267.mkv +简迷离-钢铁侠(演唱会),http://em.21dtv.com/songs/60061206.mkv +简迷离-钢铁侠,http://em.21dtv.com/songs/60018161.mkv +天天-给天天,http://em.21dtv.com/songs/60075509.mkv +杨家成-共同体,http://em.21dtv.com/songs/60018788.mkv +杨家成+颜玺轩-共同体,http://em.21dtv.com/songs/60018787.mkv +东京女子流-get the star,http://em.21dtv.com/songs/60086342.mkv +八三夭-钢铁人,http://em.21dtv.com/songs/60115698.mkv +八三夭-钢铁人,http://em.21dtv.com/songs/60106615.mkv +SUNNY HILL-goodbye to romance,http://em.21dtv.com/songs/60073286.mkv +何韵诗-钢铁人,http://em.21dtv.com/songs/60018156.mkv +MISSTER-钢铁人,http://em.21dtv.com/songs/60018155.mkv +佚名-gone the rainbow,http://em.21dtv.com/songs/60001940.mkv +赵真-光头强,http://em.21dtv.com/songs/60114809.mkv +5566-跟他拼,http://em.21dtv.com/songs/60018625.mkv +CARPENTERS-goodbye to love,http://em.21dtv.com/songs/60001980.mkv +潘成-Go To Hell,http://em.21dtv.com/songs/60081371.mkv +汪妤凌-go to hell,http://em.21dtv.com/songs/60069083.mkv +扈佳荣-个体户,http://em.21dtv.com/songs/60018447.mkv +FIVE-got the feeling,http://em.21dtv.com/songs/60002000.mkv +阿轮-告天地,http://em.21dtv.com/songs/60064228.mkv +MICHAEL BOLTON-go the distance,http://em.21dtv.com/songs/60001931.mkv +MINDLESS BEHAVIOR-girls talkinbout,http://em.21dtv.com/songs/60063604.mkv +林宇中-工体北,http://em.21dtv.com/songs/60018680.mkv +麒麟baby-割绳子,http://em.21dtv.com/songs/60117404.mkv +梅花三姐妹-古睢仔,http://em.21dtv.com/songs/60095714.mkv +北原山猫-高山庄,http://em.21dtv.com/songs/60018224.mkv +丁文琪-高三症,http://em.21dtv.com/songs/60018213.mkv +刘德华-观世音,http://em.21dtv.com/songs/60019243.mkv +邓丽君-古树下,http://em.21dtv.com/songs/60018993.mkv +周子民-姑苏行,http://em.21dtv.com/songs/60018971.mkv +张行-告诉我,http://em.21dtv.com/songs/60133695.mkv +杀手锏乐队-告诉我,http://em.21dtv.com/songs/60124051.mkv +周璇-告诉我,http://em.21dtv.com/songs/60018305.mkv +郑智化-告诉我,http://em.21dtv.com/songs/60018304.mkv +巫启贤-告诉我,http://em.21dtv.com/songs/60018303.mkv +唐禹哲-告诉我,http://em.21dtv.com/songs/60018302.mkv +孟杨-告诉我,http://em.21dtv.com/songs/60018301.mkv +刘文正-告诉我,http://em.21dtv.com/songs/60018300.mkv +胡彦斌-告诉我,http://em.21dtv.com/songs/60018299.mkv +陈绮贞-告诉我,http://em.21dtv.com/songs/60018298.mkv +阿悄-告诉我,http://em.21dtv.com/songs/60018297.mkv +孙浩-告诉我(演唱会),http://em.21dtv.com/songs/60018296.mkv +胡彦斌-告诉我(演唱会),http://em.21dtv.com/songs/60018295.mkv +陈绮贞-告诉我(演唱会),http://em.21dtv.com/songs/60018294.mkv +张煜枫-姑苏台(故事情节),http://em.21dtv.com/songs/60101347.mkv +曾轶可-告诉他,http://em.21dtv.com/songs/60063352.mkv +尕让邓真-高山上,http://em.21dtv.com/songs/60117691.mkv +游鸿明-故事书(演唱会),http://em.21dtv.com/songs/60019045.mkv +吴陌川-高山青,http://em.21dtv.com/songs/60135047.mkv +吴炜-高山青,http://em.21dtv.com/songs/60104880.mkv +单色凌-隔三秋,http://em.21dtv.com/songs/60102007.mkv +苏珊-高山青(演唱会),http://em.21dtv.com/songs/60075472.mkv +彭羚-隔世情,http://em.21dtv.com/songs/60018435.mkv +彭羚-革世情,http://em.21dtv.com/songs/60018414.mkv +韩宝仪-高山青,http://em.21dtv.com/songs/60018221.mkv +高胜美-高山青,http://em.21dtv.com/songs/60018220.mkv +邓丽君-高山青,http://em.21dtv.com/songs/60018219.mkv +张德兰-高山青(演唱会),http://em.21dtv.com/songs/60018217.mkv +代慧颖-干啥呢,http://em.21dtv.com/songs/60116539.mkv +陈窗文-告诉你,http://em.21dtv.com/songs/60103693.mkv +肖阳-故事梦,http://em.21dtv.com/songs/60019044.mkv +糯米团-good show medley(演唱会),http://em.21dtv.com/songs/60001958.mkv +云飞-赶牲灵,http://em.21dtv.com/songs/60133344.mkv +崔苗-赶牲灵,http://em.21dtv.com/songs/60123875.mkv +孙刚-赶牲灵,http://em.21dtv.com/songs/60094873.mkv +张莫晗-孤殇泪,http://em.21dtv.com/songs/60094105.mkv +童丽-赶牲灵,http://em.21dtv.com/songs/60075449.mkv +大小姐-怪兽lonely,http://em.21dtv.com/songs/60019180.mkv +德乾旺姆-格桑啦,http://em.21dtv.com/songs/60018425.mkv +胡松华-格桑拉,http://em.21dtv.com/songs/60018424.mkv +阿桑古卡+刀妹-格桑拉,http://em.21dtv.com/songs/60018423.mkv +阎维文-赶牲灵,http://em.21dtv.com/songs/60017919.mkv +高保利-赶牲灵,http://em.21dtv.com/songs/60017918.mkv +冯健雪-赶牲灵,http://em.21dtv.com/songs/60017917.mkv +雪儿达瓦-尕撒拉,http://em.21dtv.com/songs/60017801.mkv +清弄-骨生花,http://em.21dtv.com/songs/60129356.mkv +姜育恒-歌说话,http://em.21dtv.com/songs/60089785.mkv +班玛多吉-格桑花,http://em.21dtv.com/songs/60083230.mkv +郭周胜-格桑花,http://em.21dtv.com/songs/60068272.mkv +宋娜-格桑花,http://em.21dtv.com/songs/60064233.mkv +亚东-格桑花,http://em.21dtv.com/songs/60018420.mkv +姜育恒-歌说活,http://em.21dtv.com/songs/60018399.mkv +黄美珍-归属感,http://em.21dtv.com/songs/60126487.mkv +李小文-过三关,http://em.21dtv.com/songs/60019527.mkv +梁咏琪-归属感,http://em.21dtv.com/songs/60019380.mkv +冷漠-高帅富,http://em.21dtv.com/songs/60068268.mkv +阿鲁阿卓-格萨尔,http://em.21dtv.com/songs/60082949.mkv +冯铭潮-故事岛,http://em.21dtv.com/songs/60019031.mkv +古巨基-敢死队(演唱会),http://em.21dtv.com/songs/60017930.mkv +万芳-gloomy salad days(演唱会),http://em.21dtv.com/songs/60001914.mkv +SEENROOT-过山车,http://em.21dtv.com/songs/60133278.mkv +崔子格-过山车,http://em.21dtv.com/songs/60126819.mkv +崔子格-过山车,http://em.21dtv.com/songs/60121617.mkv +陈僖仪-过山车,http://em.21dtv.com/songs/60075629.mkv +郑秀文-过山车,http://em.21dtv.com/songs/60019528.mkv +吕珊-感受爱,http://em.21dtv.com/songs/60018069.mkv +越剧-观容颜,http://em.21dtv.com/songs/60019242.mkv +林俊逸-故人香,http://em.21dtv.com/songs/60075569.mkv +吴琼-故人叹,http://em.21dtv.com/songs/60019023.mkv +阎维文-骨肉情(军旅),http://em.21dtv.com/songs/60090279.mkv +宇海文-嘎日玛,http://em.21dtv.com/songs/60017799.mkv +郭富城-刚柔流,http://em.21dtv.com/songs/60018147.mkv +李秋霞-古人会,http://em.21dtv.com/songs/60018992.mkv +B.A.D-get remix high,http://em.21dtv.com/songs/60001860.mkv +佚名-感情债,http://em.21dtv.com/songs/60018061.mkv +施文彬-感情债,http://em.21dtv.com/songs/60018060.mkv +陈小云-感情债,http://em.21dtv.com/songs/60018059.mkv +陈奕迅-感情约,http://em.21dtv.com/songs/60102880.mkv +林董-感情戏,http://em.21dtv.com/songs/60101400.mkv +傅振辉+周小璇-感情戏,http://em.21dtv.com/songs/60070700.mkv +王琥-感情线,http://em.21dtv.com/songs/60018050.mkv +江蕙-感情线,http://em.21dtv.com/songs/60018049.mkv +黄乙玲-感情线,http://em.21dtv.com/songs/60018048.mkv +陈耀川-感情线,http://em.21dtv.com/songs/60018047.mkv +183CLUB-感情线,http://em.21dtv.com/songs/60018046.mkv +佚名-感情线(无原唱),http://em.21dtv.com/songs/60018045.mkv +傅振辉-感情锁,http://em.21dtv.com/songs/60109158.mkv +李亮超-过去式,http://em.21dtv.com/songs/60102321.mkv +王爵ALSTON-过去式,http://em.21dtv.com/songs/60086579.mkv +彭莉-感情梦(无原唱),http://em.21dtv.com/songs/60018032.mkv +黄渤-过去了,http://em.21dtv.com/songs/60133134.mkv +黄渤-过去了,http://em.21dtv.com/songs/60132016.mkv +唐美华-归去来,http://em.21dtv.com/songs/60110097.mkv +江美琪-过去了,http://em.21dtv.com/songs/60107018.mkv +吴泓君-归去来,http://em.21dtv.com/songs/60019376.mkv +胡兵+希丽娜依-归去来,http://em.21dtv.com/songs/60019375.mkv +卢秋萍+叶幼琪-宫墙柳,http://em.21dtv.com/songs/60018730.mkv +刘佳轩-感情路,http://em.21dtv.com/songs/60018031.mkv +江蕙-感情路,http://em.21dtv.com/songs/60018030.mkv +林俊吉+李依婷-感情路(无原唱),http://em.21dtv.com/songs/60018029.mkv +钟嘉欣-钢琴哭,http://em.21dtv.com/songs/60097034.mkv +陈柏宇-感情课,http://em.21dtv.com/songs/60018027.mkv +戴佩妮-钢琴键,http://em.21dtv.com/songs/60123986.mkv +纪晓斌-搁浅后,http://em.21dtv.com/songs/60129478.mkv +周笔畅-隔墙花,http://em.21dtv.com/songs/60112581.mkv +孙协志-感情话,http://em.21dtv.com/songs/60018022.mkv +十万吉他手-怪情歌,http://em.21dtv.com/songs/60122541.mkv +冯家妹-过去的,http://em.21dtv.com/songs/60118374.mkv +金正勋-过去的,http://em.21dtv.com/songs/60066011.mkv +王绎龙-goodbye青春,http://em.21dtv.com/songs/60073288.mkv +朱海君-感情啊,http://em.21dtv.com/songs/60085109.mkv +万山红-公仆赞,http://em.21dtv.com/songs/60018692.mkv +古巨基+孙楠-够朋友,http://em.21dtv.com/songs/60061216.mkv +梁汉文-够朋友,http://em.21dtv.com/songs/60018811.mkv +张学友-给朋友,http://em.21dtv.com/songs/60018518.mkv +张学友-给朋友(演唱会),http://em.21dtv.com/songs/60018517.mkv +王鸣飞-怪脾气,http://em.21dtv.com/songs/60120795.mkv +王鸣飞-怪脾气,http://em.21dtv.com/songs/60067039.mkv +INNER CIRLE-games people play,http://em.21dtv.com/songs/60001833.mkv +马天佑-搞破坏,http://em.21dtv.com/songs/60113090.mkv +林俊杰-跟屁虫,http://em.21dtv.com/songs/60075522.mkv +DAVID GUETTA+CHRIS W-gettinover you,http://em.21dtv.com/songs/60001866.mkv +EDEN'S CRUSH-get over yourself,http://em.21dtv.com/songs/60001858.mkv +佚名-giddy on up,http://em.21dtv.com/songs/60001870.mkv +BOA-girls on top,http://em.21dtv.com/songs/60073246.mkv +周燕君-公仆颂,http://em.21dtv.com/songs/60063471.mkv +符致逸-Good Morning Hard City,http://em.21dtv.com/songs/60101152.mkv +郑迦文-Goodbye My Lover(演唱会),http://em.21dtv.com/songs/60128478.mkv +李玉玺-Goodbye My Lover,http://em.21dtv.com/songs/60128092.mkv +马长胜-Goodbye My Love,http://em.21dtv.com/songs/60100654.mkv +ROBYNN+KENDY-GONNA BE OKAY,http://em.21dtv.com/songs/60096857.mkv +佚名-glory of love,http://em.21dtv.com/songs/60001917.mkv +THE PRETTY RECKLESS-GOING TO HELL,http://em.21dtv.com/songs/60096856.mkv +NE+YO-go on girl,http://em.21dtv.com/songs/60001927.mkv +PINK-girl on fire,http://em.21dtv.com/songs/60073244.mkv +ALICIA KEYS+NICKI MINAJ-girl on fire,http://em.21dtv.com/songs/60073243.mkv +孙盛希-跟你住,http://em.21dtv.com/songs/60102131.mkv +谭晶-跟你走,http://em.21dtv.com/songs/60094694.mkv +魏松-跟你走,http://em.21dtv.com/songs/60075521.mkv +王喆-跟你走(演唱会),http://em.21dtv.com/songs/60069419.mkv +马常宝-姑娘山,http://em.21dtv.com/songs/60080661.mkv +顺子-gypsy女人(演唱会),http://em.21dtv.com/songs/60002044.mkv +刘玮-鼓囊囊,http://em.21dtv.com/songs/60019011.mkv +张震岳-狗男女,http://em.21dtv.com/songs/60018801.mkv +张洪涛-姑娘美,http://em.21dtv.com/songs/60121659.mkv +孙露-给你们,http://em.21dtv.com/songs/60115843.mkv +张洪涛-姑娘美,http://em.21dtv.com/songs/60100029.mkv +孙露-给你们,http://em.21dtv.com/songs/60075504.mkv +陈浩-姑娘美,http://em.21dtv.com/songs/60018946.mkv +张宇-给你们,http://em.21dtv.com/songs/60018504.mkv +张宇-给你们(演唱会),http://em.21dtv.com/songs/60018503.mkv +贺东-过年啦,http://em.21dtv.com/songs/60131828.mkv +十三狼-过年了,http://em.21dtv.com/songs/60106659.mkv +儿歌-过年啦,http://em.21dtv.com/songs/60089637.mkv +苏富权-过年累,http://em.21dtv.com/songs/60075626.mkv +闪亮三姐妹-给你靠,http://em.21dtv.com/songs/60018501.mkv +贾富营+望海高歌-过年话,http://em.21dtv.com/songs/60131835.mkv +天孪兄弟-过年好,http://em.21dtv.com/songs/60019505.mkv +童唱-耕农歌,http://em.21dtv.com/songs/60018671.mkv +黎姿-给你吧,http://em.21dtv.com/songs/60018491.mkv +官恩娜-共勉之,http://em.21dtv.com/songs/60104059.mkv +谢霆锋-告密者,http://em.21dtv.com/songs/60018287.mkv +王丽达-光明行,http://em.21dtv.com/songs/60118766.mkv +吕继宏-光明行,http://em.21dtv.com/songs/60113328.mkv +汪妤凌-高马尾,http://em.21dtv.com/songs/60080731.mkv +三代目 J SOUL BROTHERS-go my way,http://em.21dtv.com/songs/60070341.mkv +胡杏儿-光明日,http://em.21dtv.com/songs/60019302.mkv +郑秀文-给母亲[消伴],http://em.21dtv.com/songs/60100977.mkv +邓巴-尕妹妹,http://em.21dtv.com/songs/60132973.mkv +马忠伟-尕妹妹,http://em.21dtv.com/songs/60129803.mkv +阿雅+谢娜-闺蜜蜜,http://em.21dtv.com/songs/60109688.mkv +阿雅+谢娜-闺蜜蜜,http://em.21dtv.com/songs/60108967.mkv +马希尔-尕妹妹,http://em.21dtv.com/songs/60088982.mkv +韩博-过美美,http://em.21dtv.com/songs/60066010.mkv +张震岳-干妹妹,http://em.21dtv.com/songs/60018132.mkv +2PM-give me love,http://em.21dtv.com/songs/60082167.mkv +邹宏宇+尼克-goodbye my love,http://em.21dtv.com/songs/60073285.mkv +ED SHEERAN-give me love,http://em.21dtv.com/songs/60073252.mkv +郑融-过马路,http://em.21dtv.com/songs/60019500.mkv +何俊明-goodbye my love,http://em.21dtv.com/songs/60001978.mkv +福田沙纪-goodbye my love,http://em.21dtv.com/songs/60001977.mkv +S.H.E-goodbye my love,http://em.21dtv.com/songs/60001976.mkv +草蜢-goodbye my love(演唱会),http://em.21dtv.com/songs/60001975.mkv +闪亮三姐妹-give me love,http://em.21dtv.com/songs/60001908.mkv +何韵诗-光明会,http://em.21dtv.com/songs/60019301.mkv +何韵诗-光明会(HD演唱会),http://em.21dtv.com/songs/60019299.mkv +CIARA-got me good,http://em.21dtv.com/songs/60073290.mkv +罗敏庄-goodbye my friend(演唱会),http://em.21dtv.com/songs/60073284.mkv +AKB48-give me five,http://em.21dtv.com/songs/60065592.mkv +巫启贤-goodbye my friend,http://em.21dtv.com/songs/60001973.mkv +林志颖-good-bye my friend(无原唱),http://em.21dtv.com/songs/60001972.mkv +徐怀钰-give me five,http://em.21dtv.com/songs/60001905.mkv +李宇春-give me five,http://em.21dtv.com/songs/60001904.mkv +A WEI+张善为-give me five,http://em.21dtv.com/songs/60001903.mkv +王力宏-哥们儿,http://em.21dtv.com/songs/60088275.mkv +韩庚-give me everything,http://em.21dtv.com/songs/60062423.mkv +PITBULL+NE-YO-give me everything,http://em.21dtv.com/songs/60062127.mkv +安琥-哥们儿,http://em.21dtv.com/songs/60018323.mkv +OK绷-干妈爹,http://em.21dtv.com/songs/60107425.mkv +佚名-赶马调,http://em.21dtv.com/songs/60017912.mkv +BEYONCE-get me bodied,http://em.21dtv.com/songs/60067889.mkv +RD-got me burnin,http://em.21dtv.com/songs/60065596.mkv +郁钧剑-桂林谣,http://em.21dtv.com/songs/60019420.mkv +叶幼琪-归来燕,http://em.21dtv.com/songs/60019370.mkv +区瑞强-鼓浪屿(演唱会),http://em.21dtv.com/songs/60019006.mkv +马常宝-橄榄树,http://em.21dtv.com/songs/60134461.mkv +白若溪-橄榄树,http://em.21dtv.com/songs/60117097.mkv +韩红-橄榄树,http://em.21dtv.com/songs/60109017.mkv +王琳玲-橄榄树,http://em.21dtv.com/songs/60108718.mkv +黄淑惠-橄榄树,http://em.21dtv.com/songs/60097112.mkv +央吉玛-橄榄树,http://em.21dtv.com/songs/60084682.mkv +刘彩星-橄榄树,http://em.21dtv.com/songs/60081083.mkv +莫旭秋-橄榄树(演唱会),http://em.21dtv.com/songs/60075465.mkv +卓依婷-橄榄树,http://em.21dtv.com/songs/60018119.mkv +孙燕姿-橄榄树,http://em.21dtv.com/songs/60018118.mkv +齐豫-橄榄树,http://em.21dtv.com/songs/60018117.mkv +潘辰-橄榄树,http://em.21dtv.com/songs/60018116.mkv +零点乐队-橄榄树,http://em.21dtv.com/songs/60018115.mkv +费玉清-橄榄树,http://em.21dtv.com/songs/60018114.mkv +费翔-橄榄树,http://em.21dtv.com/songs/60018113.mkv +汪明荃-橄榄树(演唱会),http://em.21dtv.com/songs/60018112.mkv +卢巧音-橄榄树(演唱会),http://em.21dtv.com/songs/60018111.mkv +国培伦-甘露寺,http://em.21dtv.com/songs/60017863.mkv +WINN+SMITH+HOOVEN-gimme little sign(无原唱),http://em.21dtv.com/songs/60001873.mkv +周宾宾-过路人,http://em.21dtv.com/songs/60131269.mkv +应昌佑-过来人,http://em.21dtv.com/songs/60127953.mkv +应昌佑-过来人,http://em.21dtv.com/songs/60121639.mkv +俞静-过路人,http://em.21dtv.com/songs/60101043.mkv +孙淑媚-过路人,http://em.21dtv.com/songs/60100843.mkv +赵小兵-过来人,http://em.21dtv.com/songs/60099510.mkv +游鸿明-过路人,http://em.21dtv.com/songs/60091634.mkv +谢和弦-过来人,http://em.21dtv.com/songs/60019495.mkv +何嘉莉-过来人,http://em.21dtv.com/songs/60019494.mkv +高向鹏-干落去(无原唱),http://em.21dtv.com/songs/60018130.mkv +陈百潭+凤娘-孤鸾命,http://em.21dtv.com/songs/60123319.mkv +DAVID BANNER+YUNG JO-get like me,http://em.21dtv.com/songs/60060805.mkv +凤凰传奇-桂林美,http://em.21dtv.com/songs/60019419.mkv +孙刚-圪梁梁,http://em.21dtv.com/songs/60094870.mkv +冷弦-古楼兰,http://em.21dtv.com/songs/60093988.mkv +吕冰冰+赵鑫-哥来了,http://em.21dtv.com/songs/60064229.mkv +黄灿-古莱莱,http://em.21dtv.com/songs/60018982.mkv +高保利-圪梁梁,http://em.21dtv.com/songs/60018310.mkv +花子风-哥俩好,http://em.21dtv.com/songs/60097044.mkv +纪露露-孤恋花,http://em.21dtv.com/songs/60095839.mkv +海浪+后羿-哥俩好,http://em.21dtv.com/songs/60085120.mkv +佚名-孤恋花,http://em.21dtv.com/songs/60018910.mkv +白冰冰-孤恋花(无原唱),http://em.21dtv.com/songs/60018909.mkv +佚名-哥俩好,http://em.21dtv.com/songs/60018322.mkv +吴克群-鬼来电,http://em.21dtv.com/songs/60132286.mkv +王建荣-高利贷,http://em.21dtv.com/songs/60125923.mkv +田振达-挂了吧,http://em.21dtv.com/songs/60110425.mkv +佚名-归来吧,http://em.21dtv.com/songs/60019367.mkv +陈慧娴-归来吧,http://em.21dtv.com/songs/60019366.mkv +方梓媛-过客人,http://em.21dtv.com/songs/60019492.mkv +阿牛-光脚ㄚ,http://em.21dtv.com/songs/60098830.mkv +原子霏-关键字,http://em.21dtv.com/songs/60130153.mkv +佚名-古雎仔(演唱会),http://em.21dtv.com/songs/60018981.mkv +阿牛-光脚丫,http://em.21dtv.com/songs/60096944.mkv +张智霖-骨胶原(演唱会),http://em.21dtv.com/songs/60064253.mkv +兰天琪-骨脊山,http://em.21dtv.com/songs/60115011.mkv +李广军-够坚强,http://em.21dtv.com/songs/60075548.mkv +王中平-冠军曲,http://em.21dtv.com/songs/60019263.mkv +张妍-感激你,http://em.21dtv.com/songs/60075456.mkv +赖雅妍-感觉你,http://em.21dtv.com/songs/60017978.mkv +张柏芝-感激你,http://em.21dtv.com/songs/60017964.mkv +陈雷-滚蛟龙,http://em.21dtv.com/songs/60019435.mkv +儿歌-过家家,http://em.21dtv.com/songs/60089636.mkv +WILL SMITH-getting jiggywit it,http://em.21dtv.com/songs/60001867.mkv +TBOYS组合-嘎揪嘎,http://em.21dtv.com/songs/60132136.mkv +佚名-国际歌,http://em.21dtv.com/songs/60019442.mkv +唐朝乐队-国际歌(演唱会),http://em.21dtv.com/songs/60019441.mkv +佚名-goodbye jimmy goodbye,http://em.21dtv.com/songs/60001971.mkv +魔幻力量-感觉犯,http://em.21dtv.com/songs/60075457.mkv +MP魔幻力量-感觉犯,http://em.21dtv.com/songs/60071943.mkv +维塔斯-歌剧2[俄语],http://em.21dtv.com/songs/60075497.mkv +林俊杰-关键词,http://em.21dtv.com/songs/60117841.mkv +[Group] +groupName=十六万歌曲MV等 - 23 +章小军-GIVE ME FIVE,http://em.21dtv.com/songs/60128280.mkv +汪妤凌-give it up,http://em.21dtv.com/songs/60069082.mkv +TORO-give it up,http://em.21dtv.com/songs/60001901.mkv +TASHA-get it in,http://em.21dtv.com/songs/60063601.mkv +M.I.C.男团-get it hot,http://em.21dtv.com/songs/60063600.mkv +JANET JACKSON-gottil its gone,http://em.21dtv.com/songs/60002008.mkv +SLEEPER AGENT-get it daddy,http://em.21dtv.com/songs/60066644.mkv +RED HOT CHILI PEPPERS-give it away,http://em.21dtv.com/songs/60073248.mkv +SEAN GARRETT+NICKI M-get it all,http://em.21dtv.com/songs/60001850.mkv +张寒-桂花香,http://em.21dtv.com/songs/60135198.mkv +陈思安-桂花香,http://em.21dtv.com/songs/60129738.mkv +七朵组合-桂花香,http://em.21dtv.com/songs/60096165.mkv +佚名-桂花巷,http://em.21dtv.com/songs/60019418.mkv +潘越云-桂花巷,http://em.21dtv.com/songs/60019417.mkv +林姗-桂花巷,http://em.21dtv.com/songs/60019416.mkv +杜鹃-桂花香,http://em.21dtv.com/songs/60019415.mkv +春妹+夏国星-桂花香,http://em.21dtv.com/songs/60019414.mkv +阿牛-桂花香,http://em.21dtv.com/songs/60019413.mkv +WILLIE NELSON-good hearted woman,http://em.21dtv.com/songs/60001951.mkv +林雨-哥好色,http://em.21dtv.com/songs/60101401.mkv +伍佰-光和热,http://em.21dtv.com/songs/60111687.mkv +阳光天使-过好年,http://em.21dtv.com/songs/60071976.mkv +张宇-桂花酿,http://em.21dtv.com/songs/60019411.mkv +张宇-桂花酿(演唱会),http://em.21dtv.com/songs/60019410.mkv +詹雅雯-桂花梦,http://em.21dtv.com/songs/60093600.mkv +白致瑶-挂红灯,http://em.21dtv.com/songs/60117080.mkv +于文华-挂红灯,http://em.21dtv.com/songs/60019142.mkv +杨曙光-挂红灯,http://em.21dtv.com/songs/60019141.mkv +阚丽君+程前-挂红灯(演唱会),http://em.21dtv.com/songs/60019140.mkv +吉杰-高跟鞋(演唱会),http://em.21dtv.com/songs/60061207.mkv +讦谯龙-高跟鞋,http://em.21dtv.com/songs/60018205.mkv +MADONNA-girl gone wild,http://em.21dtv.com/songs/60067890.mkv +卢海潮-光棍王,http://em.21dtv.com/songs/60019279.mkv +后羿-光棍体,http://em.21dtv.com/songs/60068290.mkv +带泪的鱼-勾勾手,http://em.21dtv.com/songs/60126829.mkv +KARA-go go summer,http://em.21dtv.com/songs/60062076.mkv +游喧-勾勾手,http://em.21dtv.com/songs/60018793.mkv +郭美美-勾勾手,http://em.21dtv.com/songs/60018792.mkv +周璇-高岗上,http://em.21dtv.com/songs/60018200.mkv +费玉清-高岗上,http://em.21dtv.com/songs/60018199.mkv +安心亚-乖乖牌,http://em.21dtv.com/songs/60062213.mkv +郭采洁-怪怪牌,http://em.21dtv.com/songs/60019169.mkv +蔡依林-乖乖牌,http://em.21dtv.com/songs/60019162.mkv +青鸟飞鱼-怪怪女,http://em.21dtv.com/songs/60019168.mkv +陈小春-尴尬了,http://em.21dtv.com/songs/60017903.mkv +佚名-光棍苦,http://em.21dtv.com/songs/60019277.mkv +薛之谦-刚刚好,http://em.21dtv.com/songs/60134201.mkv +薛之谦-刚刚好,http://em.21dtv.com/songs/60132863.mkv +薛之谦-刚刚好,http://em.21dtv.com/songs/60123139.mkv +杨千桦-刚刚好,http://em.21dtv.com/songs/60116936.mkv +包伟铭-刚刚好,http://em.21dtv.com/songs/60105657.mkv +李玖哲-刚刚好,http://em.21dtv.com/songs/60018144.mkv +花儿乐队-刚刚好,http://em.21dtv.com/songs/60018143.mkv +郭玲-乖乖乖,http://em.21dtv.com/songs/60101535.mkv +游美灵-光棍歌,http://em.21dtv.com/songs/60085155.mkv +何韵诗+陈奂仁-菇菇歌(演唱会),http://em.21dtv.com/songs/60018972.mkv +大小姐-go go girl,http://em.21dtv.com/songs/60001924.mkv +JAY-Z-girls girls girls,http://em.21dtv.com/songs/60001891.mkv +ABBA-gimme gimme gimme,http://em.21dtv.com/songs/60001872.mkv +杭士琁-go go fighting,http://em.21dtv.com/songs/60073261.mkv +子曰秋野-乖乖的,http://em.21dtv.com/songs/60116692.mkv +林玉英-哥哥缠(无原唱),http://em.21dtv.com/songs/60018318.mkv +杜德伟-go go cat(演唱会),http://em.21dtv.com/songs/60001923.mkv +袁惜君-乖乖爱,http://em.21dtv.com/songs/60085153.mkv +罗昊程-敢敢爱,http://em.21dtv.com/songs/60075450.mkv +郭采洁-灌溉爱,http://em.21dtv.com/songs/60068288.mkv +童唱-盖房子,http://em.21dtv.com/songs/60017855.mkv +崇坛-贵妃吟,http://em.21dtv.com/songs/60121611.mkv +米粒-高富帅,http://em.21dtv.com/songs/60085111.mkv +杨祖民-光伏人,http://em.21dtv.com/songs/60135415.mkv +双星-过肥年,http://em.21dtv.com/songs/60075622.mkv +AMY GRANT-good for me,http://em.21dtv.com/songs/60001948.mkv +巩汉林+赵丽蓉-功夫令,http://em.21dtv.com/songs/60089834.mkv +牛马丁-过番客,http://em.21dtv.com/songs/60095805.mkv +梁咏琪-g for girl,http://em.21dtv.com/songs/60001827.mkv +梁咏琪-g for girl(演唱会),http://em.21dtv.com/songs/60001826.mkv +JOHN DENVER-grandmas feather bed(演唱会),http://em.21dtv.com/songs/60002012.mkv +徐誉滕-给儿子,http://em.21dtv.com/songs/60080317.mkv +陈奕迅+苦荣-孤儿仔,http://em.21dtv.com/songs/60018904.mkv +陈奕迅+苦荣+小苦妹-孤儿仔(演唱会),http://em.21dtv.com/songs/60018903.mkv +邓紫棋-GET OVER YOU,http://em.21dtv.com/songs/60096855.mkv +云丹久美-官鹅情,http://em.21dtv.com/songs/60133341.mkv +邓紫棋-get everybody moving(演唱会),http://em.21dtv.com/songs/60063599.mkv +王力宏-哥儿们,http://em.21dtv.com/songs/60018314.mkv +刘德华-孤儿泪,http://em.21dtv.com/songs/60018902.mkv +范玮琪-感恩节,http://em.21dtv.com/songs/60118009.mkv +贾立怡-感恩节,http://em.21dtv.com/songs/60104447.mkv +周亮-感恩歌,http://em.21dtv.com/songs/60110931.mkv +蒋姗倍+苏一-感恩词,http://em.21dtv.com/songs/60112938.mkv +马智宇+苏丹-感恩茶,http://em.21dtv.com/songs/60110705.mkv +马智宇+苏丹-感恩茶,http://em.21dtv.com/songs/60067017.mkv +丸子-关东煮,http://em.21dtv.com/songs/60019202.mkv +詹曼铃-孤单月,http://em.21dtv.com/songs/60018875.mkv +张蓉蓉-孤单影,http://em.21dtv.com/songs/60018874.mkv +林姗-孤单行,http://em.21dtv.com/songs/60064248.mkv +范晓萱+100乐团-鬼打墙,http://em.21dtv.com/songs/60102662.mkv +小宇-过渡期,http://em.21dtv.com/songs/60071975.mkv +苏盈之-过得去,http://em.21dtv.com/songs/60071974.mkv +马浚伟-过渡期,http://em.21dtv.com/songs/60019474.mkv +黄鸿升-鬼打墙,http://em.21dtv.com/songs/60019398.mkv +黄鸿升-鬼打墙(演唱会),http://em.21dtv.com/songs/60019397.mkv +阎学晶-关东情,http://em.21dtv.com/songs/60019201.mkv +崔建国-过大年,http://em.21dtv.com/songs/60132409.mkv +凤凰传奇-关东女,http://em.21dtv.com/songs/60110012.mkv +儿歌-过大年,http://em.21dtv.com/songs/60089635.mkv +俞静-过大年,http://em.21dtv.com/songs/60087341.mkv +张学友-gorazon de melao,http://em.21dtv.com/songs/60001999.mkv +钟镇涛-孤独了,http://em.21dtv.com/songs/60018892.mkv +詹雅雯-孤单酒,http://em.21dtv.com/songs/60018862.mkv +黄淑辉-孤单酒,http://em.21dtv.com/songs/60018861.mkv +豪记大对唱-孤单酒,http://em.21dtv.com/songs/60018860.mkv +佚名-广东花,http://em.21dtv.com/songs/60019337.mkv +妞妞姐妹-广东花,http://em.21dtv.com/songs/60019336.mkv +林海峰+SENZA A Cappella+熊熊儿童合唱团-广东歌,http://em.21dtv.com/songs/60125787.mkv +林海峰-广东歌,http://em.21dtv.com/songs/60122901.mkv +张翰-滚蛋歌,http://em.21dtv.com/songs/60115922.mkv +张瑜+王建宁-刮大风,http://em.21dtv.com/songs/60127990.mkv +Better Man组合-孤独犯,http://em.21dtv.com/songs/60126517.mkv +刘玉东-关东风,http://em.21dtv.com/songs/60122529.mkv +迟志强-刮大风,http://em.21dtv.com/songs/60088736.mkv +佚名-刮地风,http://em.21dtv.com/songs/60019136.mkv +蔡健雅-过动儿,http://em.21dtv.com/songs/60019471.mkv +OUTSIDER-孤单的,http://em.21dtv.com/songs/60099690.mkv +徐佳莹-格斗场,http://em.21dtv.com/songs/60122763.mkv +李政飞+李雪梅-赶大车,http://em.21dtv.com/songs/60111985.mkv +郑健英+吴文兰-古道别,http://em.21dtv.com/songs/60018979.mkv +许志安-关掉爱(演唱会),http://em.21dtv.com/songs/60019200.mkv +罗志祥-高调爱(演唱会),http://em.21dtv.com/songs/60018231.mkv +JULIE+JR-观察者,http://em.21dtv.com/songs/60064260.mkv +李菓-古城缘,http://em.21dtv.com/songs/60130435.mkv +林海峰-搞出嘢(演唱会),http://em.21dtv.com/songs/60018260.mkv +林峰-搞出野,http://em.21dtv.com/songs/60018259.mkv +晓枫-广场舞,http://em.21dtv.com/songs/60108541.mkv +红笛+司徒兰芳+三毛-广场style,http://em.21dtv.com/songs/60075605.mkv +佚名-孤愁人,http://em.21dtv.com/songs/60018816.mkv +佚名-ginny come lately,http://em.21dtv.com/songs/60001875.mkv +李雪莱-歌词本,http://em.21dtv.com/songs/60127064.mkv +昭宥+Giriboy+Pillow-胳膊枕,http://em.21dtv.com/songs/60114569.mkv +张蓉蓉-辜不衷,http://em.21dtv.com/songs/60085148.mkv +SELINA-管不着,http://em.21dtv.com/songs/60019252.mkv +伊能静-关不住,http://em.21dtv.com/songs/60019195.mkv +任贤齐-赶不走,http://em.21dtv.com/songs/60017904.mkv +张江+馨梓-过把瘾,http://em.21dtv.com/songs/60091124.mkv +ONE DIRECTION-gotta be you,http://em.21dtv.com/songs/60063609.mkv +刘欢+那英-过把瘾,http://em.21dtv.com/songs/60019467.mkv +江珊+王志文-过把瘾,http://em.21dtv.com/songs/60019466.mkv +刘欢+那英-过把瘾(演唱会),http://em.21dtv.com/songs/60019465.mkv +薛凯琪-告别我,http://em.21dtv.com/songs/60082943.mkv +GOT7-告白颂,http://em.21dtv.com/songs/60119147.mkv +崔大笨-哥不帅,http://em.21dtv.com/songs/60082945.mkv +辛夷-gan ba re(无原唱),http://em.21dtv.com/songs/60001834.mkv +王闯-过不去,http://em.21dtv.com/songs/60125957.mkv +夏天-过不去,http://em.21dtv.com/songs/60125338.mkv +王凯琪-过不去,http://em.21dtv.com/songs/60103435.mkv +张惠妹-过不去,http://em.21dtv.com/songs/60075620.mkv +夏天-过不去,http://em.21dtv.com/songs/60075619.mkv +阿彬哥-故备玛,http://em.21dtv.com/songs/60107298.mkv +孙耀威-告别了,http://em.21dtv.com/songs/60018278.mkv +刘东桦-乖不哭,http://em.21dtv.com/songs/60019156.mkv +赵祺-戈壁魂,http://em.21dtv.com/songs/60129641.mkv +苏振华-敢不敢,http://em.21dtv.com/songs/60134162.mkv +萧敬腾+宋宇-够不够,http://em.21dtv.com/songs/60112186.mkv +苏振华-敢不敢(HD),http://em.21dtv.com/songs/10012807.mkv +小老鹰乐团-敢不敢,http://em.21dtv.com/songs/60081959.mkv +杨丞琳-乖不乖(演唱会),http://em.21dtv.com/songs/60019155.mkv +方大同-够不够,http://em.21dtv.com/songs/60018805.mkv +罗志祥-敢不敢,http://em.21dtv.com/songs/60017926.mkv +张学友-该不该,http://em.21dtv.com/songs/60017806.mkv +茶乐团-该不该,http://em.21dtv.com/songs/60017805.mkv +张敬轩+王菀之-高八度(演唱会),http://em.21dtv.com/songs/60075469.mkv +G.E.M-good be bad(演唱会),http://em.21dtv.com/songs/60073273.mkv +佚名-give and take,http://em.21dtv.com/songs/60001899.mkv +TYLER.COLLINS-give and take,http://em.21dtv.com/songs/60001898.mkv +萧敬腾-给爱人,http://em.21dtv.com/songs/60018466.mkv +后弦-给安娜,http://em.21dtv.com/songs/60087541.mkv +HANSON-give a little,http://em.21dtv.com/songs/60066645.mkv +YUI-green a live,http://em.21dtv.com/songs/60063611.mkv +LIL WAYNE-get a life,http://em.21dtv.com/songs/60062094.mkv +REBECCA FERGUSON-glitter and gold,http://em.21dtv.com/songs/60073257.mkv +LADY GAGA-glitter and grease(演唱会),http://em.21dtv.com/songs/60067894.mkv +T-PISTONZ+KMC-goodキター,http://em.21dtv.com/songs/60001998.mkv +许志刚-风之烛,http://em.21dtv.com/songs/60126185.mkv +韩晓辉-风之醉,http://em.21dtv.com/songs/60109011.mkv +麦贝夷+钟一宪-犯众憎,http://em.21dtv.com/songs/60075297.mkv +郭富城-风之子,http://em.21dtv.com/songs/60017478.mkv +方瑞娥-风中影,http://em.21dtv.com/songs/60113553.mkv +毛宁-风自由,http://em.21dtv.com/songs/60088178.mkv +江蕙-风中缘,http://em.21dtv.com/songs/60017521.mkv +伊雪-风筝线,http://em.21dtv.com/songs/60128773.mkv +马海生-风筝线,http://em.21dtv.com/songs/60093649.mkv +刘珂矣-风筝误,http://em.21dtv.com/songs/60112543.mkv +邱泽-风之舞,http://em.21dtv.com/songs/60088749.mkv +何润东+邱泽+钟兆康-风之舞,http://em.21dtv.com/songs/60017477.mkv +叶启田-风真透,http://em.21dtv.com/songs/60017455.mkv +陈雷-风真透,http://em.21dtv.com/songs/60017454.mkv +张蓉蓉-番仔头,http://em.21dtv.com/songs/60016459.mkv +赖国永-风中沙(无原唱),http://em.21dtv.com/songs/60017516.mkv +蔚雨芯-复制人,http://em.21dtv.com/songs/60080750.mkv +萧敬腾-复制人,http://em.21dtv.com/songs/60061200.mkv +江映蓉-复制人,http://em.21dtv.com/songs/60017782.mkv +黄鸿升-复制人,http://em.21dtv.com/songs/60017781.mkv +林俊吉-父子情,http://em.21dtv.com/songs/60095650.mkv +苏宇舟-父子桥,http://em.21dtv.com/songs/60069400.mkv +杨洋+金彪-风中情,http://em.21dtv.com/songs/60017515.mkv +韩晓辉-风之梦,http://em.21dtv.com/songs/60117374.mkv +于全莉-风之梦,http://em.21dtv.com/songs/60116530.mkv +何勇-非洲梦(演唱会),http://em.21dtv.com/songs/60016949.mkv +童可可+田跃君-非主恋,http://em.21dtv.com/songs/60121987.mkv +关诗敏-风之恋,http://em.21dtv.com/songs/60119272.mkv +霓裳-风之恋,http://em.21dtv.com/songs/60119045.mkv +高翊菲-妃子泪,http://em.21dtv.com/songs/60118196.mkv +蔡佳麟-飞仔麟,http://em.21dtv.com/songs/60117189.mkv +王星策-风之恋,http://em.21dtv.com/songs/60110402.mkv +于全莉-风之恋,http://em.21dtv.com/songs/60108278.mkv +韩晓辉-风之恋,http://em.21dtv.com/songs/60107349.mkv +孙立浩-风之铃,http://em.21dtv.com/songs/60085094.mkv +徐小凤-风之路,http://em.21dtv.com/songs/60017476.mkv +陈星-风筝恋,http://em.21dtv.com/songs/60017469.mkv +谭耀文-分支路,http://em.21dtv.com/songs/60017145.mkv +金海心-飞走了,http://em.21dtv.com/songs/60016905.mkv +张霖-风烛笺,http://em.21dtv.com/songs/60085096.mkv +ECHO乐团-风筝祭,http://em.21dtv.com/songs/60017468.mkv +许志安-反正经(演唱会),http://em.21dtv.com/songs/60016501.mkv +王莱-番仔火,http://em.21dtv.com/songs/60125950.mkv +曾雨轩-风之花,http://em.21dtv.com/songs/60116873.mkv +张蓉蓉-番仔火,http://em.21dtv.com/songs/60075243.mkv +黄思婷-风中花(无原唱),http://em.21dtv.com/songs/60017509.mkv +逍遥香香+大约冬季-风筝飞,http://em.21dtv.com/songs/60108028.mkv +欧阳靖-发左达,http://em.21dtv.com/songs/60061176.mkv +佚名-风中灯,http://em.21dtv.com/songs/60017507.mkv +辛晓琪-风之彩,http://em.21dtv.com/songs/60090242.mkv +李玟-风之彩,http://em.21dtv.com/songs/60017475.mkv +朱豆豆-父子兵,http://em.21dtv.com/songs/60092772.mkv +赵多娜-复杂爱,http://em.21dtv.com/songs/60075433.mkv +陈茂源-风语者,http://em.21dtv.com/songs/60112369.mkv +谢雷-父与子,http://em.21dtv.com/songs/60017737.mkv +佚名-父与子(无原唱),http://em.21dtv.com/songs/60017736.mkv +郭富城+郑伊健-风云义,http://em.21dtv.com/songs/60017450.mkv +郭富城-风云义(演唱会),http://em.21dtv.com/songs/60017449.mkv +曾翠如-馥郁香,http://em.21dtv.com/songs/60114581.mkv +荒山亮-风云行,http://em.21dtv.com/songs/60075395.mkv +MICHI-find your way,http://em.21dtv.com/songs/60063594.mkv +王天丽-访英台(演唱会),http://em.21dtv.com/songs/60082882.mkv +童丽-访英台,http://em.21dtv.com/songs/60075307.mkv +吕珊-访英台(演唱会),http://em.21dtv.com/songs/60075306.mkv +柳影虹-访英台(演唱会),http://em.21dtv.com/songs/60075305.mkv +佚名-访英台,http://em.21dtv.com/songs/60016555.mkv +凌波-访英台,http://em.21dtv.com/songs/60016554.mkv +张伟文-访英台(演唱会),http://em.21dtv.com/songs/60016553.mkv +张国荣-访英台(演唱会),http://em.21dtv.com/songs/60016552.mkv +凌波-访英台(演唱会),http://em.21dtv.com/songs/60016551.mkv +丁姵均-风雨声,http://em.21dtv.com/songs/60121324.mkv +陈艺鹏-法源寺,http://em.21dtv.com/songs/60097019.mkv +荒山亮-风雨声,http://em.21dtv.com/songs/60085092.mkv +杜德伟-发言人,http://em.21dtv.com/songs/60092822.mkv +谢宜君-风雨情,http://em.21dtv.com/songs/60127404.mkv +张燕-风雨桥,http://em.21dtv.com/songs/60091146.mkv +查艳焰-枫叶情,http://em.21dtv.com/songs/60082912.mkv +黑妹-枫叶情(演唱会),http://em.21dtv.com/songs/60075399.mkv +方伊琪-枫叶情(演唱会),http://em.21dtv.com/songs/60075398.mkv +佚名-枫叶情,http://em.21dtv.com/songs/60017536.mkv +袁小迪-风雨情,http://em.21dtv.com/songs/60017414.mkv +江蕙-风雨情,http://em.21dtv.com/songs/60017413.mkv +黄凤仪-风云女,http://em.21dtv.com/songs/60017448.mkv +欣哲-飞野梦,http://em.21dtv.com/songs/60127145.mkv +佚名-浮云梦,http://em.21dtv.com/songs/60017684.mkv +曾航生-浮云梦,http://em.21dtv.com/songs/60017683.mkv +佚名-风雨暝(无原唱),http://em.21dtv.com/songs/60017412.mkv +满文军-free your mind,http://em.21dtv.com/songs/60001790.mkv +原子霏-福运来,http://em.21dtv.com/songs/60118415.mkv +黄永胜-风雨恋,http://em.21dtv.com/songs/60067003.mkv +庄学忠-风雨恋,http://em.21dtv.com/songs/60029429.mkv +任贤齐-风云决,http://em.21dtv.com/songs/60017447.mkv +杨千桦-放烟花,http://em.21dtv.com/songs/60092836.mkv +胡灵-Feel Your Heart,http://em.21dtv.com/songs/60079910.mkv +胡灵+石磊-feel your heart,http://em.21dtv.com/songs/60073202.mkv +OLIVER LEIBER-forever your girl,http://em.21dtv.com/songs/60001772.mkv +王莉-飞呀飞(演唱会),http://em.21dtv.com/songs/60071919.mkv +龙梅子-飞呀飞,http://em.21dtv.com/songs/60068247.mkv +张蓉蓉-放伊飞,http://em.21dtv.com/songs/60016748.mkv +华晨宇-反义词,http://em.21dtv.com/songs/60113312.mkv +佚名-for your babies(无原唱),http://em.21dtv.com/songs/60001756.mkv +罗逻圣-飞行者,http://em.21dtv.com/songs/60129491.mkv +ALAN-飞行志,http://em.21dtv.com/songs/60016807.mkv +姜玉阳-风雪夜,http://em.21dtv.com/songs/60017393.mkv +张伟文-风啸啸,http://em.21dtv.com/songs/60092564.mkv +黄妃-风萧萧,http://em.21dtv.com/songs/60067002.mkv +黄汐源-负心人,http://em.21dtv.com/songs/60120163.mkv +韩东-负心人,http://em.21dtv.com/songs/60017766.mkv +陈亮吟-风向球,http://em.21dtv.com/songs/60017385.mkv +唐朝乐队-飞翔鸟(演唱会),http://em.21dtv.com/songs/60016865.mkv +王矜霖-放学了,http://em.21dtv.com/songs/60111281.mkv +佚名-负心郎,http://em.21dtv.com/songs/60017765.mkv +陈奕迅-放下来,http://em.21dtv.com/songs/60016731.mkv +左立-范小姐,http://em.21dtv.com/songs/60081283.mkv +郭宴-抚仙湖,http://em.21dtv.com/songs/60135830.mkv +周汤豪-附心汉,http://em.21dtv.com/songs/60017769.mkv +方怡萍-负心汉(无原唱),http://em.21dtv.com/songs/60017764.mkv +李健-抚仙湖,http://em.21dtv.com/songs/60017707.mkv +RUBBER BAND-发现号,http://em.21dtv.com/songs/60016453.mkv +RUBBER BAND-发现号(演唱会),http://em.21dtv.com/songs/60016452.mkv +秦御峰-负心鬼,http://em.21dtv.com/songs/60119857.mkv +1976-方向感,http://em.21dtv.com/songs/60113120.mkv +张苡澄-方向感,http://em.21dtv.com/songs/60105871.mkv +MR-方向感,http://em.21dtv.com/songs/60075300.mkv +童唱-放学歌,http://em.21dtv.com/songs/60016744.mkv +张苡溦-方向感,http://em.21dtv.com/songs/60016532.mkv +田梓呈-方向感,http://em.21dtv.com/songs/60016531.mkv +陈晓东-方向感,http://em.21dtv.com/songs/60016530.mkv +侯湘婷-风晓得,http://em.21dtv.com/songs/60089622.mkv +周华健-风笑痴,http://em.21dtv.com/songs/60017386.mkv +刘文正-飞行船,http://em.21dtv.com/songs/60016804.mkv +裴英良+裴振良-放心爱,http://em.21dtv.com/songs/60123151.mkv +陈嘉琦-飞向爱,http://em.21dtv.com/songs/60105476.mkv +紫薇-放下爱,http://em.21dtv.com/songs/60075325.mkv +郭富城-分享爱,http://em.21dtv.com/songs/60017140.mkv +郭富城-分享爱(演唱会),http://em.21dtv.com/songs/60017139.mkv +林俊杰+金莎-发现爱,http://em.21dtv.com/songs/60016451.mkv +杜德伟-发现爱,http://em.21dtv.com/songs/60016450.mkv +詹雅雯-风无影,http://em.21dtv.com/songs/60107208.mkv +爱戴-非我意,http://em.21dtv.com/songs/60016944.mkv +BIGBANG-forever with you,http://em.21dtv.com/songs/60001769.mkv +巧千金-福娃娃,http://em.21dtv.com/songs/60075415.mkv +WESTLIFE-flying without wings,http://em.21dtv.com/songs/60001724.mkv +武艺-番外篇,http://em.21dtv.com/songs/60127149.mkv +ALICIA KEYS+MAXWELL-fire we make,http://em.21dtv.com/songs/60082153.mkv +邱颖欣-风微凉,http://em.21dtv.com/songs/60017383.mkv +废五金-废五金,http://em.21dtv.com/songs/60016970.mkv +古巨基-富万代,http://em.21dtv.com/songs/60061201.mkv +佚名-凤尾草,http://em.21dtv.com/songs/60017607.mkv +童唱-凤尾草(无原唱),http://em.21dtv.com/songs/60017606.mkv +才娜旺姆-风往北,http://em.21dtv.com/songs/60119589.mkv +打扰一下乐团-Fun,http://em.21dtv.com/songs/60119593.mkv +吴淑敏-风台雨,http://em.21dtv.com/songs/60096053.mkv +大眼炮-find the way,http://em.21dtv.com/songs/60073210.mkv +彭柏邑-沸腾声,http://em.21dtv.com/songs/60123971.mkv +佚名-frosty the snowman,http://em.21dtv.com/songs/60001812.mkv +REGINE-follow the sun,http://em.21dtv.com/songs/60001730.mkv +郭力行-废铁人,http://em.21dtv.com/songs/60016969.mkv +佚名-佛跳墙,http://em.21dtv.com/songs/60017630.mkv +PITBULL+CHRISTINA AGUILERA-feel this moment,http://em.21dtv.com/songs/60073201.mkv +RUDIMENTAL+JOHN+NEWM-feel the love,http://em.21dtv.com/songs/60069078.mkv +吴淑敏-风台假,http://em.21dtv.com/songs/60096051.mkv +LINKIN PARK-from the inside,http://em.21dtv.com/songs/60001810.mkv +大庆小芳-犯桃花,http://em.21dtv.com/songs/60110960.mkv +佚名-from the heart,http://em.21dtv.com/songs/60001809.mkv +大无限乐团-for the futher,http://em.21dtv.com/songs/60001748.mkv +DIERKS BENTLEY-feel that fire,http://em.21dtv.com/songs/60001655.mkv +洪玉琴-风台船,http://em.21dtv.com/songs/60017378.mkv +张根硕-feel the beat,http://em.21dtv.com/songs/60073200.mkv +谎言留声机+徐佳莹-分手夜,http://em.21dtv.com/songs/60075365.mkv +苏宇舟-浮水印,http://em.21dtv.com/songs/60070691.mkv +江映蓉-发生秀,http://em.21dtv.com/songs/60080590.mkv +马条-封锁线,http://em.21dtv.com/songs/60064203.mkv +孟萌+刘泓君-扶桑树,http://em.21dtv.com/songs/60133570.mkv +Robynn+Kendy-负摄石,http://em.21dtv.com/songs/60131104.mkv +容祖儿-分身术,http://em.21dtv.com/songs/60017028.mkv +容祖儿-分身术(演唱会),http://em.21dtv.com/songs/60017027.mkv +佚名-for sentimental reasons,http://em.21dtv.com/songs/60001744.mkv +叶德娴-for sentimental reason(演唱会),http://em.21dtv.com/songs/60001743.mkv +黎明-飞时期(演唱会),http://em.21dtv.com/songs/60016849.mkv +周楚诗-附属品,http://em.21dtv.com/songs/60121510.mkv +翁立友-放手拼,http://em.21dtv.com/songs/60075321.mkv +王麟+耿珞-粉丝派,http://em.21dtv.com/songs/60017182.mkv +牛欣欣+刘姝辰+周张弛+何泽胜-丰收年,http://em.21dtv.com/songs/60075375.mkv +郭炳坚-丰收年,http://em.21dtv.com/songs/60075374.mkv +王心凌-非soul mate,http://em.21dtv.com/songs/60016906.mkv +干露露-分手泪,http://em.21dtv.com/songs/60096927.mkv +佚名-风是冷,http://em.21dtv.com/songs/60017372.mkv +陈秋实-分手季,http://em.21dtv.com/songs/60126401.mkv +吴是闳-封锁键,http://em.21dtv.com/songs/60123746.mkv +杜雯媞-浮生尽,http://em.21dtv.com/songs/60112774.mkv +儿歌-粉刷匠,http://em.21dtv.com/songs/60109988.mkv +佚名-风声紧,http://em.21dtv.com/songs/60017369.mkv +闫琬欣-放生歌,http://em.21dtv.com/songs/60118118.mkv +佚名-丰收歌,http://em.21dtv.com/songs/60017201.mkv +ON-LINE-反收购(演唱会)(无原唱),http://em.21dtv.com/songs/60016499.mkv +JENNIFER LOPEZ-feeling so good,http://em.21dtv.com/songs/60001658.mkv +CD.VOICE-feel so good,http://em.21dtv.com/songs/60001654.mkv +黄淇-feel so good(无原唱),http://em.21dtv.com/songs/60001653.mkv +延聆-浮生赋,http://em.21dtv.com/songs/60082926.mkv +杨坤-负3度,http://em.21dtv.com/songs/60089981.mkv +刘惜君-飞逝的,http://em.21dtv.com/songs/60075335.mkv +银临-浮生辞,http://em.21dtv.com/songs/60104518.mkv +CALVIN HARRIS-feel so close,http://em.21dtv.com/songs/60066643.mkv +后来者-分手吧,http://em.21dtv.com/songs/60122569.mkv +孟鹏-放手吧,http://em.21dtv.com/songs/60120456.mkv +周鹏-封神榜,http://em.21dtv.com/songs/60017540.mkv +张震岳-分手吧,http://em.21dtv.com/songs/60017040.mkv +刘珂矣-芙蓉雨,http://em.21dtv.com/songs/60119310.mkv +魏晨-疯人愿(演唱会),http://em.21dtv.com/songs/60017567.mkv +周杰伦+李安-发如雪,http://em.21dtv.com/songs/60115055.mkv +AOA-发热线,http://em.21dtv.com/songs/60093910.mkv +超级女声+黄雅莉-发如雪,http://em.21dtv.com/songs/60088723.mkv +周杰伦-发如雪,http://em.21dtv.com/songs/60016436.mkv +THE KILLERS-for reasons unknown,http://em.21dtv.com/songs/60001742.mkv +荒山亮-芙蓉叹,http://em.21dtv.com/songs/60114010.mkv +小北-凡人书,http://em.21dtv.com/songs/60126799.mkv +WK-芙蓉花,http://em.21dtv.com/songs/60064208.mkv +五月天+萧敬腾-凡人歌,http://em.21dtv.com/songs/60134867.mkv +群星-凡人歌,http://em.21dtv.com/songs/60096905.mkv +李宗盛-凡人歌,http://em.21dtv.com/songs/60016470.mkv +高胜美-凡人歌,http://em.21dtv.com/songs/60016469.mkv +五月天-风若吹(演唱会),http://em.21dtv.com/songs/60017353.mkv +金钰儿-放任爱,http://em.21dtv.com/songs/60107290.mkv +蒋大为-夫妻行,http://em.21dtv.com/songs/60017636.mkv +谢霆锋-放弃我,http://em.21dtv.com/songs/60016668.mkv +黄小琥-放弃他,http://em.21dtv.com/songs/60016665.mkv +胡歌-风起时,http://em.21dtv.com/songs/60113981.mkv +陈小宇-奉卿书,http://em.21dtv.com/songs/60107315.mkv +张靓颖-放轻松,http://em.21dtv.com/songs/60016675.mkv +李亚明-放轻松,http://em.21dtv.com/songs/60016674.mkv +阎维文-夫妻情,http://em.21dtv.com/songs/60075410.mkv +黄克林-夫妻情,http://em.21dtv.com/songs/60017638.mkv +胡杰夕-放弃你,http://em.21dtv.com/songs/60075315.mkv +张学友-放弃你,http://em.21dtv.com/songs/60016661.mkv +辛晓琪-放弃你,http://em.21dtv.com/songs/60016660.mkv +郭书瑶-放弃你,http://em.21dtv.com/songs/60016659.mkv +张敬轩-风起了,http://em.21dtv.com/songs/60127978.mkv +孙盛希+葛仲珊-疯起来,http://em.21dtv.com/songs/60104046.mkv +张可-飞起来,http://em.21dtv.com/songs/60075334.mkv +高向鹏+方怡萍-福气啦,http://em.21dtv.com/songs/60017698.mkv +游鸿明+彭佳慧-夫妻脸,http://em.21dtv.com/songs/60017637.mkv +徐怀钰-飞起来,http://em.21dtv.com/songs/60016844.mkv +罗百吉-飞起来,http://em.21dtv.com/songs/60016843.mkv +方文琳-飞起来,http://em.21dtv.com/songs/60016842.mkv +师乐-凤求凰,http://em.21dtv.com/songs/60131380.mkv +冯晓泉+曾格格-凤求凰,http://em.21dtv.com/songs/60119276.mkv +汤薇恩-啡情歌,http://em.21dtv.com/songs/60129332.mkv +徐新军+安晓明-福气歌,http://em.21dtv.com/songs/60109359.mkv +谢安琪-菲情歌,http://em.21dtv.com/songs/60016956.mkv +谢安琪-菲情歌(演唱会),http://em.21dtv.com/songs/60016955.mkv +杨乃文-放轻点,http://em.21dtv.com/songs/60075316.mkv +张柏芝-发脾气,http://em.21dtv.com/songs/60092627.mkv +柳影虹-风飘飘(演唱会),http://em.21dtv.com/songs/60062693.mkv +MAC MILLER-frick park market,http://em.21dtv.com/songs/60063596.mkv +JASON ALDEAN-fly over states,http://em.21dtv.com/songs/60067887.mkv +林子祥-first of may,http://em.21dtv.com/songs/60001692.mkv +BEE GEES-first of may,http://em.21dtv.com/songs/60001691.mkv +张学友-first of may(演唱会),http://em.21dtv.com/songs/60001690.mkv +宇多田ヒカル-flavor of life,http://em.21dtv.com/songs/60001703.mkv +巩新亮-放你走,http://em.21dtv.com/songs/60070672.mkv +黄凯芹-烦恼丝,http://em.21dtv.com/songs/60065956.mkv +江蕙-疯女人,http://em.21dtv.com/songs/60017566.mkv +王若琳-for no reason,http://em.21dtv.com/songs/60001739.mkv +邓咏家+谢雷-父女情,http://em.21dtv.com/songs/60120009.mkv +孙淑媚-放你去,http://em.21dtv.com/songs/60016645.mkv +张家玮-放牛party,http://em.21dtv.com/songs/60016652.mkv +林忆莲+张国荣-from now on,http://em.21dtv.com/songs/60001806.mkv +夏国星-丰年祭(无原唱),http://em.21dtv.com/songs/60017199.mkv +张学友-烦恼歌,http://em.21dtv.com/songs/60016476.mkv +夜郎金鑫-放你飞,http://em.21dtv.com/songs/60107627.mkv +V-分秒针,http://em.21dtv.com/songs/60092230.mkv +杜青-父母缘,http://em.21dtv.com/songs/60131518.mkv +冷漠+杜青-父母缘,http://em.21dtv.com/songs/60127758.mkv +FIR-find my way,http://em.21dtv.com/songs/60001673.mkv +阎韦伶-fix me up,http://em.21dtv.com/songs/60070338.mkv +欧阳佳彤+邵静然+丁楠霓+张芮嘉-福满堂,http://em.21dtv.com/songs/60075414.mkv +YUI-feel my soul,http://em.21dtv.com/songs/60001652.mkv +郎郎-父母亲,http://em.21dtv.com/songs/60104479.mkv +全辉-父母情,http://em.21dtv.com/songs/60101264.mkv +杨千嬅-非卖品,http://em.21dtv.com/songs/60016931.mkv +彭羚-非卖品,http://em.21dtv.com/songs/60016930.mkv +戴佩妮-非卖品,http://em.21dtv.com/songs/60016929.mkv +蔡依林-非卖品,http://em.21dtv.com/songs/60016928.mkv +杨千嬅-非卖品(演唱会),http://em.21dtv.com/songs/60016927.mkv +杨千嬅-非买品,http://em.21dtv.com/songs/60016926.mkv +THE BAND PERRY-forever mine nevermind(演唱会),http://em.21dtv.com/songs/60082159.mkv +FLOWER-forget me not~ワスレナグサ~,http://em.21dtv.com/songs/60073223.mkv +李娜-风满楼(演唱会),http://em.21dtv.com/songs/60017346.mkv +蔡小虎-放袂落,http://em.21dtv.com/songs/60016642.mkv +江蕙-放袂开,http://em.21dtv.com/songs/60016641.mkv +CRAIG DAVID-fill me in,http://em.21dtv.com/songs/60001669.mkv +王昆-纺棉花,http://em.21dtv.com/songs/60116150.mkv +王昆-纺棉花,http://em.21dtv.com/songs/60091702.mkv +AKB48-five me five!,http://em.21dtv.com/songs/60073217.mkv +许冠杰-父母恩,http://em.21dtv.com/songs/60017715.mkv +吕方-父母恩,http://em.21dtv.com/songs/60017714.mkv +GOT7-Fly,http://em.21dtv.com/songs/60132085.mkv +Avril Lavigne-Fly,http://em.21dtv.com/songs/60110745.mkv +贾璨璨-风铃谣,http://em.21dtv.com/songs/60096930.mkv +谢安琪-方玲霞,http://em.21dtv.com/songs/60016527.mkv +许志安-俘掳我,http://em.21dtv.com/songs/60017655.mkv +糖兄妹-分灵体(演唱会),http://em.21dtv.com/songs/60069388.mkv +DAUGHTRY-feels like tonight,http://em.21dtv.com/songs/60063593.mkv +永邦-放了她,http://em.21dtv.com/songs/60016639.mkv +双星-福禄寿,http://em.21dtv.com/songs/60075413.mkv +林俊杰-放了你,http://em.21dtv.com/songs/60091435.mkv +薛凯琪-弗洛蒙,http://em.21dtv.com/songs/60101166.mkv +李丽霞+麦秋萍-风流梦,http://em.21dtv.com/songs/60092786.mkv +钟心-福临门,http://em.21dtv.com/songs/60088813.mkv +蔡健雅-费洛蒙,http://em.21dtv.com/songs/60086544.mkv +徐小凤-风流梦(演唱会),http://em.21dtv.com/songs/60017339.mkv +吕珊-风流梦(演唱会),http://em.21dtv.com/songs/60017338.mkv +JUSTIN BIEBER-fa la la,http://em.21dtv.com/songs/60063590.mkv +萧骊珠-风雷动,http://em.21dtv.com/songs/60094678.mkv +冯允谦+钟舒漫-feel like dancing,http://em.21dtv.com/songs/60070335.mkv +TWINS-five little ducks,http://em.21dtv.com/songs/60001698.mkv +童唱-风铃草,http://em.21dtv.com/songs/60017325.mkv +童唱-风铃草(无原唱),http://em.21dtv.com/songs/60017324.mkv +周华健-翡冷翠,http://em.21dtv.com/songs/60016965.mkv +张智霖-疯了吧,http://em.21dtv.com/songs/60017563.mkv +佚名-飞了吧(无原唱),http://em.21dtv.com/songs/60016823.mkv +吴炜-放了吧,http://em.21dtv.com/songs/60016637.mkv +金智娟-放了爱,http://em.21dtv.com/songs/60016636.mkv +戚薇-放开我,http://em.21dtv.com/songs/60075312.mkv +赵小磊-放开手,http://em.21dtv.com/songs/60119993.mkv +邵洪-放开手,http://em.21dtv.com/songs/60109656.mkv +斯琴高丽-放开手,http://em.21dtv.com/songs/60080700.mkv +侯鑫宝-放开手,http://em.21dtv.com/songs/60061178.mkv +徐睿-放开手,http://em.21dtv.com/songs/60016627.mkv +孙莞-放空清,http://em.21dtv.com/songs/60105757.mkv +王晋怡-放开你,http://em.21dtv.com/songs/60132733.mkv +邓小巧-烦可宁,http://em.21dtv.com/songs/60122157.mkv +同恩-疯狂呢,http://em.21dtv.com/songs/60017551.mkv +李冠毅-放开你,http://em.21dtv.com/songs/60016619.mkv +黄妃-风块哭,http://em.21dtv.com/songs/60017313.mkv +李琦-分开后,http://em.21dtv.com/songs/60116015.mkv +苏慧伦+张震岳-防空洞,http://em.21dtv.com/songs/60016544.mkv +戴佩妮-防空洞,http://em.21dtv.com/songs/60016543.mkv +吕雯-放开吧,http://em.21dtv.com/songs/60016616.mkv +刘端端-疯狂爱,http://em.21dtv.com/songs/60121453.mkv +苏小花-疯狂爱,http://em.21dtv.com/songs/60114001.mkv +沈芯羽-粉可爱,http://em.21dtv.com/songs/60113792.mkv +乔任梁-疯狂爱,http://em.21dtv.com/songs/60086546.mkv +戚薇-放开爱,http://em.21dtv.com/songs/60070669.mkv +沈芯羽-粉可爱,http://em.21dtv.com/songs/60017174.mkv +姚黛玮-放开爱(无原唱),http://em.21dtv.com/songs/60016615.mkv +童唱-放鸡鸭,http://em.21dtv.com/songs/60016609.mkv +红布条-发吉他,http://em.21dtv.com/songs/60016428.mkv +徐彪-梵净山,http://em.21dtv.com/songs/60111101.mkv +东方依依-放假了,http://em.21dtv.com/songs/60126570.mkv +张含韵-放假了,http://em.21dtv.com/songs/60016612.mkv +童唱-放假了,http://em.21dtv.com/songs/60016611.mkv +许廷铿-负借口,http://em.21dtv.com/songs/60075429.mkv +陈升-风见鸡,http://em.21dtv.com/songs/60117325.mkv +侧田+吴雨霏-飞就飞,http://em.21dtv.com/songs/60016820.mkv +徐良+小凌-飞机场,http://em.21dtv.com/songs/60016816.mkv +CELINE DION-falling into you,http://em.21dtv.com/songs/60001620.mkv +花世纪-falling in love,http://em.21dtv.com/songs/60062478.mkv +JW-falling in love,http://em.21dtv.com/songs/60062073.mkv +FAITH HILL-falling in love,http://em.21dtv.com/songs/60001619.mkv +BABY-falling in love(演唱会),http://em.21dtv.com/songs/60001618.mkv +罗百吉-fall in love,http://em.21dtv.com/songs/60001613.mkv +郭富城-fall in love,http://em.21dtv.com/songs/60001612.mkv +ESTELLE+JOHN LEGEND-fall in love,http://em.21dtv.com/songs/60001610.mkv +4 IN LOVE-fall in love,http://em.21dtv.com/songs/60001609.mkv +AVICII-fade into darkness,http://em.21dtv.com/songs/60065584.mkv +陈雷-放呼醉,http://em.21dtv.com/songs/60016608.mkv +张蓉蓉-放乎醉,http://em.21dtv.com/songs/60016607.mkv +蔡小虎-放乎醉,http://em.21dtv.com/songs/60016606.mkv +凌云-凤凰缘,http://em.21dtv.com/songs/60098126.mkv +张敬轩-风花雪,http://em.21dtv.com/songs/60075386.mkv +陈慧琳-风花雪,http://em.21dtv.com/songs/60017306.mkv +陈慧琳-风花雪(演唱会),http://em.21dtv.com/songs/60017305.mkv +佚名-风和雾,http://em.21dtv.com/songs/60017304.mkv +水木年华-风花树,http://em.21dtv.com/songs/60091576.mkv +杭士琁-防火墙,http://em.21dtv.com/songs/60075303.mkv +戴爱玲-防火墙,http://em.21dtv.com/songs/60016542.mkv +赵多娜-烦和恼,http://em.21dtv.com/songs/60097059.mkv +张艺曦-风和梦,http://em.21dtv.com/songs/60118566.mkv +陈司翰-繁华梦,http://em.21dtv.com/songs/60016481.mkv +佚名-five hundred miles,http://em.21dtv.com/songs/60001697.mkv +童唱-five hundred miles,http://em.21dtv.com/songs/60001696.mkv +桂莹莹-烽火恋,http://em.21dtv.com/songs/60132635.mkv +拜尔-风火轮,http://em.21dtv.com/songs/60064196.mkv +河图-凤凰劫,http://em.21dtv.com/songs/60017593.mkv +龙千玉-凤凰花,http://em.21dtv.com/songs/60136044.mkv +田维英-凤凰花,http://em.21dtv.com/songs/60082921.mkv +9NINE-イーアル! キョンシーfeat 好好! キョンシー,http://em.21dtv.com/songs/60074218.mkv +周璇-飞花歌,http://em.21dtv.com/songs/60016814.mkv +佚名-飞花歌,http://em.21dtv.com/songs/60016813.mkv +乌兰图雅-凤凰飞,http://em.21dtv.com/songs/60116512.mkv +乌兰图雅-凤凰飞(演唱会),http://em.21dtv.com/songs/60086547.mkv +乌兰图雅-凤凰飞,http://em.21dtv.com/songs/60063073.mkv +杜德伟+丸子-复活岛(演唱会),http://em.21dtv.com/songs/60017774.mkv +芭比-粉耗呆,http://em.21dtv.com/songs/60017164.mkv +黄耀明-浮红尘,http://em.21dtv.com/songs/60089057.mkv +徐潇玲-凤还巢,http://em.21dtv.com/songs/60017586.mkv +纳兰珠儿-发红包,http://em.21dtv.com/songs/60127270.mkv +彭伟家-发红包,http://em.21dtv.com/songs/60123968.mkv +慕容晓晓+肖玄-放狠爱,http://em.21dtv.com/songs/60066991.mkv +许家豪+李丹-富贵竹,http://em.21dtv.com/songs/60110519.mkv +许家豪-富贵竹,http://em.21dtv.com/songs/60110518.mkv +LMF-反骨仔(演唱会),http://em.21dtv.com/songs/60016494.mkv +蹇红-风归云,http://em.21dtv.com/songs/60071931.mkv +蔡秋凤-疯狗涌,http://em.21dtv.com/songs/60067006.mkv +李佳薇-分隔线,http://em.21dtv.com/songs/60087980.mkv +李佳薇-分割线,http://em.21dtv.com/songs/60062593.mkv +谢作健-放过我,http://em.21dtv.com/songs/60109627.mkv +赵露-放过我,http://em.21dtv.com/songs/60107242.mkv +袁洁莹-放过我,http://em.21dtv.com/songs/60016602.mkv +佚名-放过我,http://em.21dtv.com/songs/60016601.mkv +陈文媛-放过我,http://em.21dtv.com/songs/60016600.mkv +何洁-发光体,http://em.21dtv.com/songs/60016427.mkv +陈力-分骨肉,http://em.21dtv.com/songs/60017000.mkv +何方-放感情(无原唱),http://em.21dtv.com/songs/60016595.mkv +轻晨电乐队-法国片,http://em.21dtv.com/songs/60124534.mkv +施文斌-放过你,http://em.21dtv.com/songs/60016598.mkv +陈奕迅+容祖儿-放过你,http://em.21dtv.com/songs/60016597.mkv +GORILLAZ-feel good inc,http://em.21dtv.com/songs/60001649.mkv +张惠妹-飞高高,http://em.21dtv.com/songs/60103277.mkv +陈奕迅-反高潮,http://em.21dtv.com/songs/60016493.mkv +乱弹阿翔-翻滚吧,http://em.21dtv.com/songs/60065955.mkv +李琳-放风筝,http://em.21dtv.com/songs/60095308.mkv +二人转+闫学晶+董宝贵-放风筝,http://em.21dtv.com/songs/60070667.mkv +耿莲凤-放风筝,http://em.21dtv.com/songs/60016594.mkv +郑锦昌+钟安妮-分飞燕(演唱会),http://em.21dtv.com/songs/60075345.mkv +ENRIQUE IGLESIAS+SAMMY ADAMS-finally found you,http://em.21dtv.com/songs/60073209.mkv +COLBIE CAILLAT-fallin for you,http://em.21dtv.com/songs/60073195.mkv +陈浩德-分飞燕(演唱会),http://em.21dtv.com/songs/60070678.mkv +JASON DERULO-fight for you,http://em.21dtv.com/songs/60065586.mkv +尹光+谢雪心-分飞燕(演唱会),http://em.21dtv.com/songs/60061187.mkv +张伟文+吕珊-分飞燕,http://em.21dtv.com/songs/60016994.mkv +谭炳文+李香琴-分飞燕,http://em.21dtv.com/songs/60016993.mkv +梁耀安+蒋文端-分飞燕,http://em.21dtv.com/songs/60016992.mkv +张德兰-分飞燕(演唱会),http://em.21dtv.com/songs/60016991.mkv +谢雷+杨燕-分飞燕(演唱会),http://em.21dtv.com/songs/60016990.mkv +李香琴+陈浩德-分飞燕(演唱会),http://em.21dtv.com/songs/60016989.mkv +陈洁德+方伊琪-分飞燕(演唱会),http://em.21dtv.com/songs/60016988.mkv +林翠萍-风飞沙,http://em.21dtv.com/songs/60091499.mkv +王建杰-风飞沙,http://em.21dtv.com/songs/60017288.mkv +孙淑媚-风飞沙,http://em.21dtv.com/songs/60017287.mkv +罗时丰-风飞沙,http://em.21dtv.com/songs/60017286.mkv +黄乙玲+陈盈洁-风飞沙,http://em.21dtv.com/songs/60017285.mkv +迪克牛仔-风飞沙,http://em.21dtv.com/songs/60017284.mkv +陈盈洁-风飞沙,http://em.21dtv.com/songs/60017283.mkv +佚名-风飞沙(探戈),http://em.21dtv.com/songs/60017282.mkv +THE FAST FOOD ROCKER-fast food song,http://em.21dtv.com/songs/60001641.mkv +林子祥-first for may,http://em.21dtv.com/songs/60001684.mkv +嗷呜-凤非离(动画),http://em.21dtv.com/songs/60102063.mkv +林隆璇-防风林,http://em.21dtv.com/songs/60016541.mkv +李克勤-放飞机,http://em.21dtv.com/songs/60075310.mkv +张振宇-凤飞花,http://em.21dtv.com/songs/60089860.mkv +张振宇-风飞花,http://em.21dtv.com/songs/60017281.mkv +左左右右-飞飞飞,http://em.21dtv.com/songs/60123882.mkv +浩角翔起-发发发,http://em.21dtv.com/songs/60100282.mkv +B.WILSON+M.LOVE-fun fun fun(无原唱),http://em.21dtv.com/songs/60001817.mkv +伍佰-纷飞吧,http://em.21dtv.com/songs/60090591.mkv +曾轶可-forever 21,http://em.21dtv.com/songs/60060803.mkv +浜崎あゆみ-Feel The love,http://em.21dtv.com/songs/60096387.mkv +P HIGH+黄明志-负二代,http://em.21dtv.com/songs/60132118.mkv +陈仁杰-负二代(演),http://em.21dtv.com/songs/60100566.mkv +赵英俊-方的言,http://em.21dtv.com/songs/60124528.mkv +何龙雨-佛渡缘,http://em.21dtv.com/songs/60115688.mkv +马志锋-放得下,http://em.21dtv.com/songs/60064168.mkv +黄莺莺-风的心(无原唱),http://em.21dtv.com/songs/60017270.mkv +谭咏麟-反斗星(演唱会),http://em.21dtv.com/songs/60016487.mkv +爱戴-疯的沙,http://em.21dtv.com/songs/60065971.mkv +梁静茹-风笛手(演唱会),http://em.21dtv.com/songs/60017274.mkv +罗志祥-防盗锁,http://em.21dtv.com/songs/60016540.mkv +金门王+李炳辉-formossa淡水,http://em.21dtv.com/songs/60001783.mkv +赵学而-反对派,http://em.21dtv.com/songs/60016488.mkv +韩琳-福到了,http://em.21dtv.com/songs/60065975.mkv +张克帆-风的泪,http://em.21dtv.com/songs/60017267.mkv +东来东往-放得开,http://em.21dtv.com/songs/60082886.mkv +安心亚-放大镜,http://em.21dtv.com/songs/60130254.mkv +蔡卓妍-放得低,http://em.21dtv.com/songs/60016580.mkv +关心妍-发调橙,http://em.21dtv.com/songs/60016445.mkv +杨静-风尘女,http://em.21dtv.com/songs/60017235.mkv +林姗-风尘女,http://em.21dtv.com/songs/60017234.mkv +黄妃-非常女,http://em.21dtv.com/songs/60016912.mkv +闫妮+杜天皓-反差萌,http://em.21dtv.com/songs/60135867.mkv +张蓉蓉-风尘路,http://em.21dtv.com/songs/60017233.mkv +佚名-风尘泪,http://em.21dtv.com/songs/60017232.mkv +江音-风尘泪,http://em.21dtv.com/songs/60017230.mkv +陈国华-分岔路,http://em.21dtv.com/songs/60016984.mkv +陈伟联-分岔口,http://em.21dtv.com/songs/60070677.mkv +向蕙玲-风尘花,http://em.21dtv.com/songs/60075377.mkv +甄秀珍-翡翠谷,http://em.21dtv.com/songs/60016963.mkv +刘小琢-翡翠岛,http://em.21dtv.com/songs/60110881.mkv +关心妍-粉笔字,http://em.21dtv.com/songs/60017163.mkv +夏婉安+杨逸晨-放不下,http://em.21dtv.com/songs/60121533.mkv +孙浩然-放不下,http://em.21dtv.com/songs/60120451.mkv +谢伟伦-风不息,http://em.21dtv.com/songs/60107218.mkv +龚诗嘉-放不下,http://em.21dtv.com/songs/60106518.mkv +郁可唯-放不下,http://em.21dtv.com/songs/60069380.mkv +张凌枫-放不下,http://em.21dtv.com/songs/60068243.mkv +郭富城-风不息,http://em.21dtv.com/songs/60017226.mkv +汪苏泷-放不下,http://em.21dtv.com/songs/60016571.mkv +文章-放不下(无原唱),http://em.21dtv.com/songs/60016570.mkv +吴仕长-丰碑颂,http://em.21dtv.com/songs/60103142.mkv +周传雄-赋别曲,http://em.21dtv.com/songs/60017784.mkv +乌云高娃+乌云其木格-粉白马,http://em.21dtv.com/songs/60090488.mkv +ANDY GRAMMER-fine by me,http://em.21dtv.com/songs/60065587.mkv +肖飞-方便面,http://em.21dtv.com/songs/60016525.mkv +黄明志-放半粒,http://em.21dtv.com/songs/60089045.mkv +刘忻+姜潮-放不开,http://em.21dtv.com/songs/60118388.mkv +马丽-分不开,http://em.21dtv.com/songs/60109744.mkv +六哲-放不开,http://em.21dtv.com/songs/60062706.mkv +吴佩慈-分不开,http://em.21dtv.com/songs/60016981.mkv +王麟-服不服,http://em.21dtv.com/songs/60100331.mkv +郑秀文-放不低,http://em.21dtv.com/songs/60016567.mkv +郑秀文-放不低(演唱会),http://em.21dtv.com/songs/60016566.mkv +谢霆锋-放不低(演唱会),http://em.21dtv.com/songs/60016565.mkv +张瑶-风宝贝,http://em.21dtv.com/songs/60017221.mkv +佚名-father and son,http://em.21dtv.com/songs/60001644.mkv +BOYZONE-father and son,http://em.21dtv.com/songs/60001643.mkv +周晋进-forget about romance,http://em.21dtv.com/songs/60084712.mkv +佚名-fire and rain,http://em.21dtv.com/songs/60001678.mkv +吉杰-fallin(alicia keys)(演唱会),http://em.21dtv.com/songs/60073196.mkv +WITHIN TEMPTATION-fire and ice,http://em.21dtv.com/songs/60073211.mkv +黄妃-飞啊飞,http://em.21dtv.com/songs/60066995.mkv +麦浚龙-Fire,http://em.21dtv.com/songs/60081118.mkv +GEORGE MICHAEL-freedom90,http://em.21dtv.com/songs/60001795.mkv +王蓝茵-恶作剧,http://em.21dtv.com/songs/60016282.mkv +刺客乐队-恶之华(无原唱),http://em.21dtv.com/songs/60016281.mkv +谭佩妮-鹅之歌,http://em.21dtv.com/songs/60123184.mkv +VERTICAL HORIZON-everything you want(无原唱),http://em.21dtv.com/songs/60001574.mkv +BOA-eat you up,http://em.21dtv.com/songs/60001468.mkv +小阿鹏-恩拥梯,http://em.21dtv.com/songs/60131365.mkv +刘刚(旭日阳刚)-21楼,http://em.21dtv.com/songs/60101047.mkv +刘刚-21楼(故事情节),http://em.21dtv.com/songs/60100772.mkv +张德兰-鳄鱼泪,http://em.21dtv.com/songs/60092609.mkv +袁丽嫦-鳄鱼泪,http://em.21dtv.com/songs/60016290.mkv +袁丽嫦-鄂鱼泪,http://em.21dtv.com/songs/60016287.mkv +KARA-二选一,http://em.21dtv.com/songs/60096149.mkv +轩大少爷-二小姐,http://em.21dtv.com/songs/60132940.mkv +CASCADA-everytime we touch,http://em.21dtv.com/songs/60001584.mkv +李萌-e网情深,http://em.21dtv.com/songs/60084710.mkv +GOTYE-eyes wide open,http://em.21dtv.com/songs/60066642.mkv +MICHAEL LEARNS TO ROCK-25 minutes,http://em.21dtv.com/songs/60000015.mkv +陈冠希+MC仁+厨房仔+应采儿-everywhere we go,http://em.21dtv.com/songs/60069077.mkv +SUEDE-everything will flow,http://em.21dtv.com/songs/60001573.mkv +ROB THOMAS-ever the same,http://em.21dtv.com/songs/60073183.mkv +曹震豪+杨淇-eleven to seven,http://em.21dtv.com/songs/60063585.mkv +蔡健雅-二手烟(演唱会),http://em.21dtv.com/songs/60016401.mkv +六仔-二师兄,http://em.21dtv.com/songs/60075283.mkv +IU-二十三,http://em.21dtv.com/songs/60115597.mkv +李荣浩-二三十,http://em.21dtv.com/songs/60107797.mkv +许志安-二手衫,http://em.21dtv.com/songs/60093148.mkv +魏晨-二十三,http://em.21dtv.com/songs/60061174.mkv +卫兰+应昌佑-二十四,http://em.21dtv.com/songs/60016390.mkv +张萌萌-二十年(演唱会),http://em.21dtv.com/songs/60066980.mkv +佚名-endless summer nights,http://em.21dtv.com/songs/60001510.mkv +EXILE TRIBE-21st century girl,http://em.21dtv.com/songs/60062787.mkv +棉花糖-贰拾贰,http://em.21dtv.com/songs/60016414.mkv +陶喆-二十二(演唱会),http://em.21dtv.com/songs/60016384.mkv +B2-娥世代,http://em.21dtv.com/songs/60016268.mkv +陈妃-e时代,http://em.21dtv.com/songs/60001601.mkv +梁雨恩-二人座,http://em.21dtv.com/songs/60092931.mkv +梁雨恩-二人坐,http://em.21dtv.com/songs/60016380.mkv +林峰-二缺一,http://em.21dtv.com/songs/60092864.mkv +王莉+汤非-二泉吟,http://em.21dtv.com/songs/60075280.mkv +王莉+汤非-二泉吟(演唱会),http://em.21dtv.com/songs/60071909.mkv +蔡卓妍-二缺一,http://em.21dtv.com/songs/60061173.mkv +蔡卓妍-二缺一(演唱会),http://em.21dtv.com/songs/60016368.mkv +董文华-二泉吟,http://em.21dtv.com/songs/60016365.mkv +曾静-二泉吟,http://em.21dtv.com/songs/60016364.mkv +钟旋菱-二情诗,http://em.21dtv.com/songs/60080373.mkv +杨星绘-e-mail情人,http://em.21dtv.com/songs/60001496.mkv +张铠麟-二皮脸,http://em.21dtv.com/songs/60082875.mkv +BEYONCE-end of time,http://em.21dtv.com/songs/60065580.mkv +DIDO-end of night,http://em.21dtv.com/songs/60073173.mkv +王菲-eyes on me,http://em.21dtv.com/songs/60001599.mkv +叶倩文-edge of glory(演唱会),http://em.21dtv.com/songs/60073168.mkv +王筝+袁惟仁-而你呢,http://em.21dtv.com/songs/60107906.mkv +林于雯-娥眉月,http://em.21dtv.com/songs/60095643.mkv +魏海珊-蛾眉月(无原唱),http://em.21dtv.com/songs/60016269.mkv +李炜-Enjoy My Life,http://em.21dtv.com/songs/60081067.mkv +佚名-ellie my love(无原唱),http://em.21dtv.com/songs/60001490.mkv +BRITNEY SPEARS-e-mail my heart,http://em.21dtv.com/songs/60001494.mkv +陈小春-二楞子,http://em.21dtv.com/songs/60016339.mkv +陈小春-二楞子(演唱会),http://em.21dtv.com/songs/60016338.mkv +李宇春-eyes like yours(演唱会),http://em.21dtv.com/songs/60001598.mkv +宙-そら-every little thing,http://em.21dtv.com/songs/60060797.mkv +佚名-everybody loves somebody,http://em.21dtv.com/songs/60001555.mkv +L.A REID+BABYFACE-every little step(无原唱),http://em.21dtv.com/songs/60001545.mkv +BELINDA-en la obscuridad,http://em.21dtv.com/songs/60082142.mkv +ROBERT PALMER-every kinda people,http://em.21dtv.com/songs/60001544.mkv +蔡卓妍-二减一,http://em.21dtv.com/songs/60069378.mkv +卜学亮-唔惊输,http://em.21dtv.com/songs/60097046.mkv +JASON MRAZ-everything is sound,http://em.21dtv.com/songs/60073189.mkv +佚名-everytime it rains,http://em.21dtv.com/songs/60001583.mkv +佚名-everything i own,http://em.21dtv.com/songs/60001571.mkv +R.OCASEK-emotion in motion,http://em.21dtv.com/songs/60001497.mkv +零点乐队-everything i do(演唱会),http://em.21dtv.com/songs/60001570.mkv +KYLIE MINOGUE-everything is beautiful(演唱会),http://em.21dtv.com/songs/60073188.mkv +阿峻-二号线,http://em.21dtv.com/songs/60016333.mkv +朝朝-二后生,http://em.21dtv.com/songs/60129209.mkv +冯晓荣-二后生,http://em.21dtv.com/songs/60113275.mkv +贺东-二后生,http://em.21dtv.com/songs/60110545.mkv +陶建阿成+张兆艳-洱海情,http://em.21dtv.com/songs/60135959.mkv +高永泰-二货mr 2,http://em.21dtv.com/songs/60085068.mkv +FIVE-everybody get up,http://em.21dtv.com/songs/60001553.mkv +江映蓉-EGO,http://em.21dtv.com/songs/60120687.mkv +江映蓉-Ego,http://em.21dtv.com/songs/60112822.mkv +佚名-especially for you,http://em.21dtv.com/songs/60001517.mkv +ALANIS MORISSETTE-eight easy steps,http://em.21dtv.com/songs/60066640.mkv +梁海洋-鹅鹅鹅,http://em.21dtv.com/songs/60119737.mkv +CARRIE UNDERWOOD-ever ever ever,http://em.21dtv.com/songs/60001530.mkv +古享林-鹅的泪,http://em.21dtv.com/songs/60122553.mkv +张元蒂-eyes dont lie,http://em.21dtv.com/songs/60001597.mkv +林欣彤+冯允谦-二次缘,http://em.21dtv.com/songs/60105188.mkv +SPICE GIRLS-2 become 1,http://em.21dtv.com/songs/60000011.mkv +陶建阿成-洱宝情,http://em.21dtv.com/songs/60135956.mkv +黎沸挥-耳边风,http://em.21dtv.com/songs/60016316.mkv +叶倩文+容祖儿-二百度(演唱会),http://em.21dtv.com/songs/60016323.mkv +郑伊健-e病毒,http://em.21dtv.com/songs/60001600.mkv +KATY B-Easy Please Me,http://em.21dtv.com/songs/60099668.mkv +LENKA-everything at once,http://em.21dtv.com/songs/60065583.mkv +PAUL MCCARTNEY+STEVI-ebony and ivory,http://em.21dtv.com/songs/60001470.mkv +叶启田-恩爱歌(无原唱),http://em.21dtv.com/songs/60075038.mkv +佚名-恩爱歌(无原唱),http://em.21dtv.com/songs/60016292.mkv +SCOUTING FOR GIRLS-elvis aint dead,http://em.21dtv.com/songs/60082141.mkv +王莹+宋健-冬之韵,http://em.21dtv.com/songs/60117927.mkv +佚名-冬至圆,http://em.21dtv.com/songs/60015621.mkv +李泉-岛中央,http://em.21dtv.com/songs/60014700.mkv +佚名-斗阵兄,http://em.21dtv.com/songs/60015751.mkv +佚名-大醉侠,http://em.21dtv.com/songs/60014240.mkv +戴佩妮-带走我,http://em.21dtv.com/songs/60131457.mkv +棒棒堂-大猪头,http://em.21dtv.com/songs/60014238.mkv +岩宰仑-傣族人,http://em.21dtv.com/songs/60124798.mkv +孙凤明-独奏曲,http://em.21dtv.com/songs/60121564.mkv +张崇基+张崇德-独奏曲(演唱会),http://em.21dtv.com/songs/60064152.mkv +陈奕迅+容祖儿-动作派,http://em.21dtv.com/songs/60015670.mkv +萧蔷-等着你,http://em.21dtv.com/songs/60015057.mkv +沙宝亮-等着你,http://em.21dtv.com/songs/60015056.mkv +胡晓晴-大宅门,http://em.21dtv.com/songs/60080163.mkv +佚名-大宅门,http://em.21dtv.com/songs/60014226.mkv +王月华-蝶之恋,http://em.21dtv.com/songs/60112114.mkv +范琳琳-冬之恋,http://em.21dtv.com/songs/60015618.mkv +郭桂彬-带子郎,http://em.21dtv.com/songs/60014289.mkv +庾澄庆-读自己,http://em.21dtv.com/songs/60015847.mkv +童唱-点仔胶(无原唱),http://em.21dtv.com/songs/60015328.mkv +伍佰-钉子花,http://em.21dtv.com/songs/60131156.mkv +伍佰+China Blue-钉子花,http://em.21dtv.com/songs/60130071.mkv +高山林-大中华,http://em.21dtv.com/songs/60069325.mkv +佚名-大中华,http://em.21dtv.com/songs/60014237.mkv +青春美少女-大中国,http://em.21dtv.com/songs/60127582.mkv +迪克牛仔-大中国,http://em.21dtv.com/songs/60082791.mkv +玖月奇迹-大中国(演唱会),http://em.21dtv.com/songs/60082790.mkv +薛家燕+马龙+MC JIN+合唱团-弟子规(演唱会),http://em.21dtv.com/songs/60075177.mkv +羽泉-大中国),http://em.21dtv.com/songs/60075090.mkv +刘一祯-弟子规,http://em.21dtv.com/songs/60070635.mkv +高枫-大中国,http://em.21dtv.com/songs/60014236.mkv +陆树铭-大丈夫,http://em.21dtv.com/songs/60124605.mkv +刘子毅-大丈夫,http://em.21dtv.com/songs/60082789.mkv +张宇-大丈夫,http://em.21dtv.com/songs/60014231.mkv +叶振棠-大丈夫,http://em.21dtv.com/songs/60014230.mkv +蔡依林-大丈夫,http://em.21dtv.com/songs/60014229.mkv +张学友-大丈夫(演唱会),http://em.21dtv.com/songs/60014228.mkv +李克勤-大丈夫(演唱会),http://em.21dtv.com/songs/60014227.mkv +王鸣飞-蝶中蝶,http://em.21dtv.com/songs/60120798.mkv +李娅莎-逗阵的,http://em.21dtv.com/songs/60120615.mkv +张蓉蓉-斗阵的,http://em.21dtv.com/songs/60075228.mkv +伍浩哲-逗阵的(无原唱),http://em.21dtv.com/songs/60015763.mkv +佚名-打猪草,http://em.21dtv.com/songs/60013834.mkv +滨崎步-dearest最爱,http://em.21dtv.com/songs/60001194.mkv +七郎+邓咏家-斗阵ㄟ,http://em.21dtv.com/songs/60110812.mkv +王麟-第一罪,http://em.21dtv.com/songs/60075191.mkv +古小伟-大眼妆,http://em.21dtv.com/songs/60075086.mkv +林敏聪-大雨中,http://em.21dtv.com/songs/60014219.mkv +The Bright Lights-第一夜,http://em.21dtv.com/songs/60132137.mkv +张韶涵-第一页,http://em.21dtv.com/songs/60125544.mkv +汪定中-电影院,http://em.21dtv.com/songs/60124192.mkv +陈凯彤-第一眼,http://em.21dtv.com/songs/60109690.mkv +李荣浩-都一样,http://em.21dtv.com/songs/60100163.mkv +韩一菲-第一眼,http://em.21dtv.com/songs/60075189.mkv +赵元敏-第一眼,http://em.21dtv.com/songs/60071883.mkv +谢霆锋-第一眼,http://em.21dtv.com/songs/60015287.mkv +梁文音-第一眼,http://em.21dtv.com/songs/60015286.mkv +江若琳-第一眼,http://em.21dtv.com/songs/60015285.mkv +江若琳-第一眼(演唱会),http://em.21dtv.com/songs/60015284.mkv +汤非-大英雄,http://em.21dtv.com/songs/60122945.mkv +黄贯中-大英雄,http://em.21dtv.com/songs/60122310.mkv +肖飞-大英雄,http://em.21dtv.com/songs/60071861.mkv +黄明志-大英雄,http://em.21dtv.com/songs/60064103.mkv +范琳琳-大英雄,http://em.21dtv.com/songs/60014209.mkv +阿木-大英雄,http://em.21dtv.com/songs/60014208.mkv +益佳-第一位,http://em.21dtv.com/songs/60135599.mkv +谢霆锋+何嘉莉-打妖王(无原唱),http://em.21dtv.com/songs/60093180.mkv +梁汉文-第一位,http://em.21dtv.com/songs/60015283.mkv +萧亚轩-答应我,http://em.21dtv.com/songs/60013736.mkv +李玟-答应我,http://em.21dtv.com/songs/60013735.mkv +黄士佑-答应我,http://em.21dtv.com/songs/60013734.mkv +ENERGY-答应我,http://em.21dtv.com/songs/60013733.mkv +KELLY LLORENNA-dress you up,http://em.21dtv.com/songs/60073158.mkv +蔡一杰-dress you up(演唱会),http://em.21dtv.com/songs/60001436.mkv +谢金燕-大樱桃,http://em.21dtv.com/songs/60094874.mkv +袁媛-第一天(演唱会),http://em.21dtv.com/songs/60063320.mkv +谢安琪-第一天,http://em.21dtv.com/songs/60015281.mkv +孙燕姿-第一天,http://em.21dtv.com/songs/60015280.mkv +谢安琪-第一天(演唱会),http://em.21dtv.com/songs/60015279.mkv +五月天-第一天(演唱会),http://em.21dtv.com/songs/60015278.mkv +佚名-打樱桃,http://em.21dtv.com/songs/60013830.mkv +胡夏-等一生,http://em.21dtv.com/songs/60130670.mkv +林海峰-顶硬上,http://em.21dtv.com/songs/60125786.mkv +音频怪物-典狱司,http://em.21dtv.com/songs/60124699.mkv +范晓萱-等14,http://em.21dtv.com/songs/60088552.mkv +周俊伟-大雨伞,http://em.21dtv.com/songs/60014218.mkv +周俊伟-大雨伞(演唱会),http://em.21dtv.com/songs/60014217.mkv +阎维文-大杨树(演唱会),http://em.21dtv.com/songs/60014201.mkv +贺国丰-炖羊肉,http://em.21dtv.com/songs/60118922.mkv +KOLOR-大吟嚷,http://em.21dtv.com/songs/60117469.mkv +ADELE-dont you remember,http://em.21dtv.com/songs/60084706.mkv +太极乐队-等玉人,http://em.21dtv.com/songs/60015054.mkv +萧亚轩-代言人,http://em.21dtv.com/songs/60014261.mkv +PHIL COLLINS-do you remember,http://em.21dtv.com/songs/60001283.mkv +兰雨-大庾情,http://em.21dtv.com/songs/60115699.mkv +兰雨+陈思思-大庾情,http://em.21dtv.com/songs/60115012.mkv +杨丞琳-单眼皮,http://em.21dtv.com/songs/60014401.mkv +车婉婉-单眼皮(演唱会),http://em.21dtv.com/songs/60014400.mkv +卓依婷-都依你,http://em.21dtv.com/songs/60087491.mkv +刘子豪-答应你,http://em.21dtv.com/songs/60013732.mkv +李英宏-打与骂,http://em.21dtv.com/songs/60128094.mkv +关心妍-得意妹,http://em.21dtv.com/songs/60112522.mkv +糖兄妹-豆芽梦,http://em.21dtv.com/songs/60096977.mkv +张伟文-打鱼忙,http://em.21dtv.com/songs/60087791.mkv +呆宝静-大姨妈,http://em.21dtv.com/songs/60082788.mkv +李欣-盗御马,http://em.21dtv.com/songs/60014770.mkv +光头阿兴-掉眼泪,http://em.21dtv.com/songs/60075202.mkv +PITBULL-掉眼泪,http://em.21dtv.com/songs/60064139.mkv +蔡济文+林凡-掉眼泪,http://em.21dtv.com/songs/60015385.mkv +童唱-大野狼,http://em.21dtv.com/songs/60014204.mkv +闪亮三姐妹-大野狼,http://em.21dtv.com/songs/60014203.mkv +黄子韬-第一课,http://em.21dtv.com/songs/60114909.mkv +韩庚-第一课,http://em.21dtv.com/songs/60069352.mkv +刘奇梅-do you know,http://em.21dtv.com/songs/60062669.mkv +林宥嘉+豆豆+李炜-第一课,http://em.21dtv.com/songs/60061153.mkv +冯玮君-第一课,http://em.21dtv.com/songs/60015269.mkv +ROBYN-do you know,http://em.21dtv.com/songs/60001279.mkv +梦然-大眼睛,http://em.21dtv.com/songs/60128141.mkv +焉栩嘉+赵磊-大眼睛,http://em.21dtv.com/songs/60117017.mkv +张文绮-大眼睛,http://em.21dtv.com/songs/60107714.mkv +誓言-大眼睛,http://em.21dtv.com/songs/60092048.mkv +叶熙祺-大眼睛,http://em.21dtv.com/songs/60061133.mkv +庾澄庆-大眼睛,http://em.21dtv.com/songs/60014197.mkv +刘德华-大眼睛,http://em.21dtv.com/songs/60014196.mkv +江若琳-大眼睛,http://em.21dtv.com/songs/60014195.mkv +刀郎-大眼睛,http://em.21dtv.com/songs/60014194.mkv +江若琳-大眼睛(演唱会),http://em.21dtv.com/songs/60014193.mkv +王丽达-大运河,http://em.21dtv.com/songs/60118767.mkv +草蜢+软硬天师-第一行,http://em.21dtv.com/songs/60070638.mkv +郭娅丽+呼斯楞-大雁湖,http://em.21dtv.com/songs/60068207.mkv +韩雪-大雁归,http://em.21dtv.com/songs/60014199.mkv +李雪莱-大姨夫,http://em.21dtv.com/songs/60127058.mkv +陈奕迅-多一点,http://em.21dtv.com/songs/60016228.mkv +龚向阳-钓鱼岛,http://em.21dtv.com/songs/60015381.mkv +光良-第一次,http://em.21dtv.com/songs/60132215.mkv +阶范周-第一次,http://em.21dtv.com/songs/60112332.mkv +白安-对与错,http://em.21dtv.com/songs/60104335.mkv +郭斯炫-对与错,http://em.21dtv.com/songs/60082868.mkv +张国荣-第一次,http://em.21dtv.com/songs/60015238.mkv +南宁颠仔-第一次,http://em.21dtv.com/songs/60015237.mkv +梁雁翎-第一次,http://em.21dtv.com/songs/60015236.mkv +乐之翼-第一次,http://em.21dtv.com/songs/60015235.mkv +胡彦斌+郑中基-第一次,http://em.21dtv.com/songs/60015234.mkv +光良-第一次,http://em.21dtv.com/songs/60015233.mkv +胡彦斌-第一次(演唱会),http://em.21dtv.com/songs/60015232.mkv +光良-第一次(演唱会),http://em.21dtv.com/songs/60015231.mkv +甄妮-待月草(演唱会),http://em.21dtv.com/songs/60014298.mkv +I LOVE YOU BOYZ-大饮茶,http://em.21dtv.com/songs/60014207.mkv +96猫-独り言,http://em.21dtv.com/songs/60133163.mkv +陈文浩-大心脏,http://em.21dtv.com/songs/60130844.mkv +陈文浩-大心脏,http://em.21dtv.com/songs/60122235.mkv +新宝岛康乐队-吊虾仔,http://em.21dtv.com/songs/60071887.mkv +张学友-独寻醉,http://em.21dtv.com/songs/60015814.mkv +花儿乐队-大喜宙,http://em.21dtv.com/songs/60014154.mkv +VK-多幸运,http://em.21dtv.com/songs/60133310.mkv +岩罕建-傣乡游,http://em.21dtv.com/songs/60124813.mkv +韩安旭-多幸运,http://em.21dtv.com/songs/60123361.mkv +宋辰-断袖吟,http://em.21dtv.com/songs/60119438.mkv +苏隽-东厢月,http://em.21dtv.com/songs/60015565.mkv +刘欢-丁香雨,http://em.21dtv.com/songs/60015428.mkv +朱骏业-杜兴笑,http://em.21dtv.com/songs/60125688.mkv +庄学忠+刘秋仪-读西厢,http://em.21dtv.com/songs/60101076.mkv +庄学忠-读西厢,http://em.21dtv.com/songs/60087766.mkv +童丽-读西厢,http://em.21dtv.com/songs/60075232.mkv +张家源-短消息,http://em.21dtv.com/songs/60071896.mkv +童一首歌-短讯息,http://em.21dtv.com/songs/60015899.mkv +齐豫+NO NAME-短讯息,http://em.21dtv.com/songs/60015898.mkv +胡雯-短信息,http://em.21dtv.com/songs/60015897.mkv +徐誉滕-短消息,http://em.21dtv.com/songs/60015896.mkv +陈慧琳-短消息,http://em.21dtv.com/songs/60015895.mkv +李治廷-独行侠,http://em.21dtv.com/songs/60015785.mkv +高向鹏+傅振辉-大小仙(无原唱),http://em.21dtv.com/songs/60014178.mkv +方力申-大细心,http://em.21dtv.com/songs/60014157.mkv +孙耀威-答谢信,http://em.21dtv.com/songs/60013729.mkv +白冰冰-搭心兄,http://em.21dtv.com/songs/60013707.mkv +李亮超-多希望,http://em.21dtv.com/songs/60113610.mkv +周璇-董小宛,http://em.21dtv.com/songs/60015626.mkv +芳艳芬-董小宛,http://em.21dtv.com/songs/60015625.mkv +曹秀琴-董小宛,http://em.21dtv.com/songs/60015624.mkv +阿悄-地下铁,http://em.21dtv.com/songs/60128497.mkv +大隶-地下铁,http://em.21dtv.com/songs/60110115.mkv +钟汉良-地下铁,http://em.21dtv.com/songs/60015129.mkv +游鸿明-地下铁,http://em.21dtv.com/songs/60015128.mkv +萧亚轩-地下铁,http://em.21dtv.com/songs/60015127.mkv +梁雨恩-地下铁,http://em.21dtv.com/songs/60015126.mkv +陈妃平-大雪天,http://em.21dtv.com/songs/60014190.mkv +林良欢-断相思,http://em.21dtv.com/songs/60130483.mkv +李天平+章金玲-度相思,http://em.21dtv.com/songs/60120613.mkv +林玛黛-大象说,http://em.21dtv.com/songs/60117847.mkv +李佳乐-单相思,http://em.21dtv.com/songs/60102323.mkv +孙淑媚-断相思,http://em.21dtv.com/songs/60065947.mkv +卓文萱-读心术,http://em.21dtv.com/songs/60015846.mkv +江志丰-独相思,http://em.21dtv.com/songs/60015813.mkv +程琳-丁香树,http://em.21dtv.com/songs/60015427.mkv +金贤政-单相思(无原唱),http://em.21dtv.com/songs/60014399.mkv +王祖蓝-地星人,http://em.21dtv.com/songs/60071881.mkv +王识贤-断线情,http://em.21dtv.com/songs/60015952.mkv +张学友-地下情,http://em.21dtv.com/songs/60015124.mkv +龙千玉-地下情,http://em.21dtv.com/songs/60015123.mkv +陈盈洁-地下情,http://em.21dtv.com/songs/60015122.mkv +陶喆-多谢你,http://em.21dtv.com/songs/60016219.mkv +袁野-大侠命,http://em.21dtv.com/songs/60128380.mkv +夜郎金鑫-丹霞恋,http://em.21dtv.com/songs/60107621.mkv +张继聪-大细路,http://em.21dtv.com/songs/60092649.mkv +林敏聪-大乡里,http://em.21dtv.com/songs/60014163.mkv +卢巧音-大细路,http://em.21dtv.com/songs/60014156.mkv +航宇-大西口,http://em.21dtv.com/songs/60117990.mkv +阿悄-等小姐,http://em.21dtv.com/songs/60135881.mkv +王莹-丁香结,http://em.21dtv.com/songs/60121951.mkv +王俊凯+王源-董小姐,http://em.21dtv.com/songs/60094591.mkv +宋冬野-董小姐,http://em.21dtv.com/songs/60082852.mkv +赵学而-谛仙记,http://em.21dtv.com/songs/60015290.mkv +薛凯琪-地下街(演唱会),http://em.21dtv.com/songs/60015121.mkv +苏有朋-大小姐,http://em.21dtv.com/songs/60014175.mkv +金莎-大小姐,http://em.21dtv.com/songs/60014174.mkv +关楚耀-大小姐,http://em.21dtv.com/songs/60014173.mkv +大小姐-大小姐,http://em.21dtv.com/songs/60014172.mkv +苏有朋-大小姐(演唱会),http://em.21dtv.com/songs/60014171.mkv +王伊锋-丁香花,http://em.21dtv.com/songs/60129381.mkv +杨峰-丁香花,http://em.21dtv.com/songs/60120655.mkv +童唱-对鲜花,http://em.21dtv.com/songs/60016074.mkv +唐磊-丁香花,http://em.21dtv.com/songs/60015426.mkv +韩宝仪-丁香花,http://em.21dtv.com/songs/60015425.mkv +郭静-大笑话,http://em.21dtv.com/songs/60014179.mkv +刘德华-大小孩,http://em.21dtv.com/songs/60014170.mkv +黄伟晋-胆小鬼,http://em.21dtv.com/songs/60134491.mkv +梁咏琪-胆小鬼,http://em.21dtv.com/songs/60014407.mkv +陈洁丽-胆小鬼,http://em.21dtv.com/songs/60014406.mkv +SS501-胆小鬼,http://em.21dtv.com/songs/60014405.mkv +陈伟霆-大峡谷,http://em.21dtv.com/songs/60014162.mkv +锦绣二重唱-大峡谷(演唱会)(无原唱),http://em.21dtv.com/songs/60014161.mkv +音萌萌-多幸福,http://em.21dtv.com/songs/60133088.mkv +光良-店小二,http://em.21dtv.com/songs/60015359.mkv +秋裤大叔-地下党,http://em.21dtv.com/songs/60108756.mkv +赵小兵-地下党,http://em.21dtv.com/songs/60070634.mkv +王菲-单行道,http://em.21dtv.com/songs/60014341.mkv +江蕙-单行道,http://em.21dtv.com/songs/60014340.mkv +黄小桢-大溪地,http://em.21dtv.com/songs/60014151.mkv +M GIRLS-单细胞,http://em.21dtv.com/songs/60104702.mkv +严爵-单细胞,http://em.21dtv.com/songs/60070623.mkv +陈星-大西北,http://em.21dtv.com/songs/60014150.mkv +盗帅罗浩-带我走,http://em.21dtv.com/songs/60123045.mkv +BELL宇田-带我走,http://em.21dtv.com/songs/60079843.mkv +宇田-带我走,http://em.21dtv.com/songs/60075094.mkv +杨丞琳-带我走,http://em.21dtv.com/songs/60014284.mkv +苏慧伦-带我走,http://em.21dtv.com/songs/60014283.mkv +暄祺-dance with you,http://em.21dtv.com/songs/60070322.mkv +郭静-大玩笑,http://em.21dtv.com/songs/60014148.mkv +丁维伟-丁维伟,http://em.21dtv.com/songs/60086530.mkv +蒙萌-大娃娃,http://em.21dtv.com/songs/60014147.mkv +尤雅-等无人,http://em.21dtv.com/songs/60015044.mkv +佚名-等无人,http://em.21dtv.com/songs/60015043.mkv +林姗-等无人,http://em.21dtv.com/songs/60015042.mkv +黄乙玲-等无人,http://em.21dtv.com/songs/60015041.mkv +游媄镁-带我去(无原唱),http://em.21dtv.com/songs/60014275.mkv +晖倪-大玩偶,http://em.21dtv.com/songs/60101643.mkv +周秋同-都为你,http://em.21dtv.com/songs/60015724.mkv +RUBBER BAND-电玩男(演唱会),http://em.21dtv.com/songs/60015355.mkv +王铮亮+潘辰-当我们,http://em.21dtv.com/songs/60117930.mkv +明圣凯-dance with me,http://em.21dtv.com/songs/60001139.mkv +MICHAEL BOLTON-dance with me,http://em.21dtv.com/songs/60001138.mkv +张生艳-窦王岭,http://em.21dtv.com/songs/60129105.mkv +郑融-第五类,http://em.21dtv.com/songs/60075185.mkv +吴陌川-大玩咖,http://em.21dtv.com/songs/60130189.mkv +马丽-端午节,http://em.21dtv.com/songs/60081113.mkv +李军-大碗酒,http://em.21dtv.com/songs/60075084.mkv +张韶涵-第五季,http://em.21dtv.com/songs/60015227.mkv +林志玲-带我飞,http://em.21dtv.com/songs/60080224.mkv +MANFRED MANN-do wah diddy,http://em.21dtv.com/songs/60001274.mkv +姜鹏-躲我吧,http://em.21dtv.com/songs/60016254.mkv +B.WILSON+R.CHRISTIAN-dont worry baby(无原唱),http://em.21dtv.com/songs/60001390.mkv +许富凯-等无爱,http://em.21dtv.com/songs/60128396.mkv +施文彬-电玩ahoa(无原唱),http://em.21dtv.com/songs/60015354.mkv +SLAP-低头族(HD),http://em.21dtv.com/songs/60096991.mkv +SLAP-低头族,http://em.21dtv.com/songs/60096990.mkv +棒棒堂-大头猪,http://em.21dtv.com/songs/60014143.mkv +童唱-大头仔,http://em.21dtv.com/songs/60014140.mkv +李荣浩-大太阳,http://em.21dtv.com/songs/60122869.mkv +李荣浩-大太阳,http://em.21dtv.com/songs/60121784.mkv +喜悦蜘蛛侠-大团圆,http://em.21dtv.com/songs/60096898.mkv +牛欣欣+刘姝辰-大团圆,http://em.21dtv.com/songs/60075083.mkv +卓依婷-大团圆,http://em.21dtv.com/songs/60014146.mkv +谭晶-大团圆,http://em.21dtv.com/songs/60014145.mkv +书香+丽丹-大团圆,http://em.21dtv.com/songs/60014144.mkv +黄英-大太阳,http://em.21dtv.com/songs/60014136.mkv +陈少华-大太阳,http://em.21dtv.com/songs/60014135.mkv +THE EVERLY BROTHERS-devoted to you,http://em.21dtv.com/songs/60001218.mkv +周杰伦-大头贴,http://em.21dtv.com/songs/60107596.mkv +COOKIES-大头贴,http://em.21dtv.com/songs/60092156.mkv +FOSTER THE PEOPLE-dont stop,http://em.21dtv.com/songs/60073145.mkv +金海心-对他说,http://em.21dtv.com/songs/60016065.mkv +李芊慧-倒头求(无原唱),http://em.21dtv.com/songs/60014715.mkv +COLDPLAY-dont panic,http://em.21dtv.com/songs/60069074.mkv +王鹏-单探妹,http://em.21dtv.com/songs/60120800.mkv +BLOCK B-dont move,http://em.21dtv.com/songs/60073141.mkv +TROMBONE SHORTY-do to me,http://em.21dtv.com/songs/60066636.mkv +洪荣宏-冬天梅,http://em.21dtv.com/songs/60015612.mkv +MADONNA-dont tell me,http://em.21dtv.com/songs/60001383.mkv +AVRIL LAVIGNE-dont tell me,http://em.21dtv.com/songs/60001382.mkv +何龙雨-赌徒泪,http://em.21dtv.com/songs/60101607.mkv +李炳辉-倒退噜,http://em.21dtv.com/songs/60014717.mkv +黄克林-倒退噜,http://em.21dtv.com/songs/60014716.mkv +WRETCH 32 FEAT+JOSH KUMRA-dont go,http://em.21dtv.com/songs/60073137.mkv +DECEMBER-dont go,http://em.21dtv.com/songs/60073136.mkv +安心亚-dont cry,http://em.21dtv.com/songs/60069073.mkv +朴春-dont cry,http://em.21dtv.com/songs/60067873.mkv +PARK BOM-dont cry,http://em.21dtv.com/songs/60062126.mkv +ACE OF BASE-dont turn around,http://em.21dtv.com/songs/60001386.mkv +刘嘉亮-第三者,http://em.21dtv.com/songs/60119289.mkv +张信哲-第三者,http://em.21dtv.com/songs/60111060.mkv +张信哲-第三者,http://em.21dtv.com/songs/60108487.mkv +许秋怡-第叁者,http://em.21dtv.com/songs/60090213.mkv +阿李郎-单身罪,http://em.21dtv.com/songs/60086518.mkv +ECHO-第四者,http://em.21dtv.com/songs/60015224.mkv +许秋怡-第三者,http://em.21dtv.com/songs/60015215.mkv +吴浩康-第三者,http://em.21dtv.com/songs/60015214.mkv +梁静茹-第三者,http://em.21dtv.com/songs/60015213.mkv +江蕙-第三者,http://em.21dtv.com/songs/60015212.mkv +曾心梅-第三者,http://em.21dtv.com/songs/60015211.mkv +璨乐团-单身摇,http://em.21dtv.com/songs/60129428.mkv +唐俪-多桑哟,http://em.21dtv.com/songs/60098209.mkv +江蕙-担输赢,http://em.21dtv.com/songs/60014315.mkv +滨崎步-days岁月,http://em.21dtv.com/songs/60001180.mkv +伊然-蝶上弦,http://em.21dtv.com/songs/60127727.mkv +林忆莲-都市心(演唱会),http://em.21dtv.com/songs/60015699.mkv +黄西田-钓水蛙(无原唱),http://em.21dtv.com/songs/60015378.mkv +侯冠如-都市叹,http://em.21dtv.com/songs/60134900.mkv +姜玉阳-单思叹,http://em.21dtv.com/songs/60127894.mkv +林凡-都是他,http://em.21dtv.com/songs/60015709.mkv +谢雨欣-第三天,http://em.21dtv.com/songs/60015210.mkv +吴克群-大舌头,http://em.21dtv.com/songs/60014115.mkv +麦浚龙+何韵诗-第三身,http://em.21dtv.com/songs/60015207.mkv +许志安-dont say sorry,http://em.21dtv.com/songs/60001368.mkv +关寅飞-多少人,http://em.21dtv.com/songs/60104801.mkv +陈华生-单思情,http://em.21dtv.com/songs/60117328.mkv +林舞耀-打水枪,http://em.21dtv.com/songs/60106987.mkv +陈茂丰-独伤情,http://em.21dtv.com/songs/60015800.mkv +张阳阳-多数派,http://em.21dtv.com/songs/60126903.mkv +祁隆-都是你,http://em.21dtv.com/songs/60119851.mkv +JW-多少年,http://em.21dtv.com/songs/60118267.mkv +陈艺鹏-渡十娘,http://em.21dtv.com/songs/60097095.mkv +林梦萍-窦氏女(戏曲),http://em.21dtv.com/songs/60095679.mkv +八大巨星-大胜年,http://em.21dtv.com/songs/60075079.mkv +郭采洁-都是你,http://em.21dtv.com/songs/60068229.mkv +段红-杜十娘,http://em.21dtv.com/songs/60065945.mkv +唐俪-等三年,http://em.21dtv.com/songs/60064128.mkv +腾格尔-多少年(演唱会),http://em.21dtv.com/songs/60016193.mkv +卓依婷-杜十娘,http://em.21dtv.com/songs/60015875.mkv +李娜-杜十娘,http://em.21dtv.com/songs/60015874.mkv +光良-都是你,http://em.21dtv.com/songs/60015704.mkv +卢学睿-dont say no,http://em.21dtv.com/songs/60001367.mkv +超克7-等什么,http://em.21dtv.com/songs/60015027.mkv +S CLUB 7-dont stop movin,http://em.21dtv.com/songs/60001373.mkv +陈慧琳-断舍离,http://em.21dtv.com/songs/60075247.mkv +薜家燕-读书乐,http://em.21dtv.com/songs/60015845.mkv +卓依婷-读书郎,http://em.21dtv.com/songs/60015844.mkv +韦秀娴-读书郎,http://em.21dtv.com/songs/60015843.mkv +童唱-读书郎,http://em.21dtv.com/songs/60015842.mkv +高枫+章鹏-读书郎(演唱会),http://em.21dtv.com/songs/60015841.mkv +蔡兴麟-dont stop loving,http://em.21dtv.com/songs/60001372.mkv +徐佳莹-迪斯可,http://em.21dtv.com/songs/60115941.mkv +徐佳莹-迪斯可,http://em.21dtv.com/songs/60015082.mkv +许巍-第三极,http://em.21dtv.com/songs/60109621.mkv +王中平-大树脚,http://em.21dtv.com/songs/60079960.mkv +陈小春-大事件,http://em.21dtv.com/songs/60064102.mkv +西单女孩-丢手绢,http://em.21dtv.com/songs/60063116.mkv +童唱-丢手绢,http://em.21dtv.com/songs/60015486.mkv +毛阿敏-丢手绢,http://em.21dtv.com/songs/60015485.mkv +杨乃文-电视机,http://em.21dtv.com/songs/60015349.mkv +洪一平-大事件,http://em.21dtv.com/songs/60014130.mkv +范振锋+梁奕伦-大声讲(演唱会),http://em.21dtv.com/songs/60014120.mkv +陈雷-渡时机,http://em.21dtv.com/songs/60004689.mkv +林文隆-淡水河,http://em.21dtv.com/songs/60095671.mkv +小凤凤-赌十糊,http://em.21dtv.com/songs/60033717.mkv +童唱-读书好,http://em.21dtv.com/songs/60015840.mkv +佚名-大实话,http://em.21dtv.com/songs/60014128.mkv +潘晓峰-单身狗,http://em.21dtv.com/songs/60132693.mkv +化学猴子-大傻瓜,http://em.21dtv.com/songs/60107551.mkv +儿歌-淡水歌,http://em.21dtv.com/songs/60089139.mkv +陈淑萍-大傻瓜,http://em.21dtv.com/songs/60088900.mkv +艾绮恩-dont say goodbye,http://em.21dtv.com/songs/60082137.mkv +崔伟亮-单身歌,http://em.21dtv.com/songs/60069330.mkv +杨小弈-单身歌,http://em.21dtv.com/songs/60014369.mkv +培圣-单身歌,http://em.21dtv.com/songs/60014368.mkv +阿利-单身歌,http://em.21dtv.com/songs/60014367.mkv +金贤政-大傻瓜(无原唱),http://em.21dtv.com/songs/60014114.mkv +许茹芸-dont say goodbye,http://em.21dtv.com/songs/60001365.mkv +谭咏麟-dont say goodbye,http://em.21dtv.com/songs/60001364.mkv +麻秋虹-dont say goodbye(无原唱),http://em.21dtv.com/songs/60001363.mkv +柯有伦-dont say goodbye,http://em.21dtv.com/songs/60001362.mkv +SAYA-dont say goodbye,http://em.21dtv.com/songs/60001361.mkv +谭咏麟+李克勤-dont say goodbye(演唱会),http://em.21dtv.com/songs/60001360.mkv +周旋-蝶双飞,http://em.21dtv.com/songs/60110087.mkv +樊凡-大声放,http://em.21dtv.com/songs/60014117.mkv +LolipopF-电司_dance,http://em.21dtv.com/songs/60087203.mkv +[Group] +groupName=十六万歌曲MV等 - 22 +徐子崴-大时代,http://em.21dtv.com/songs/60108516.mkv +何亁梁-大时代,http://em.21dtv.com/songs/60107491.mkv +周旭风-单身党,http://em.21dtv.com/songs/60082799.mkv +佚名-单思调,http://em.21dtv.com/songs/60014398.mkv +李克勤-大时代(演唱会),http://em.21dtv.com/songs/60014127.mkv +红蔷薇-到深处,http://em.21dtv.com/songs/60104362.mkv +凤凰传奇-大声唱,http://em.21dtv.com/songs/60061132.mkv +佚名-多少次,http://em.21dtv.com/songs/60016191.mkv +范美-大陕北,http://em.21dtv.com/songs/60128352.mkv +JOURNEY-dont stop believing,http://em.21dtv.com/songs/60084705.mkv +韦圆+苏福-大书包(无原唱),http://em.21dtv.com/songs/60014133.mkv +陈文媛-打司嗌,http://em.21dtv.com/songs/60013823.mkv +张惠妹-dont sail away,http://em.21dtv.com/songs/60001357.mkv +陈慧琳-大日子(HD),http://em.21dtv.com/songs/10012544.mkv +卢广仲-大人中,http://em.21dtv.com/songs/60099828.mkv +陈慧琳-大日子,http://em.21dtv.com/songs/60014112.mkv +陈慧琳-大日子(演唱会),http://em.21dtv.com/songs/60014111.mkv +黄韵玲-大人样,http://em.21dtv.com/songs/60118221.mkv +阿庆-单人游,http://em.21dtv.com/songs/60086517.mkv +陈志明-得人惜,http://em.21dtv.com/songs/60014802.mkv +钱芳-大人物,http://em.21dtv.com/songs/60106356.mkv +王乐-大人物,http://em.21dtv.com/songs/60103432.mkv +欧汉声-大人物,http://em.21dtv.com/songs/60096897.mkv +林志炫-大人物,http://em.21dtv.com/songs/60014109.mkv +郑秀文-doremi,http://em.21dtv.com/songs/60065573.mkv +黄立行-大人们,http://em.21dtv.com/songs/60014108.mkv +佚名-dont rush me,http://em.21dtv.com/songs/60001356.mkv +JANET JACKSON-doesnt really matter,http://em.21dtv.com/songs/60001292.mkv +佚名-do re mi,http://em.21dtv.com/songs/60001269.mkv +童唱-do re mi,http://em.21dtv.com/songs/60001268.mkv +谢安琪-do re mi(演唱会),http://em.21dtv.com/songs/60001267.mkv +童唱-do re mi(无原唱),http://em.21dtv.com/songs/60001266.mkv +佚名-do re me,http://em.21dtv.com/songs/60001265.mkv +童唱-do re me,http://em.21dtv.com/songs/60001264.mkv +蔡卓妍-大人国,http://em.21dtv.com/songs/60061131.mkv +韩晶-单人房,http://em.21dtv.com/songs/60014358.mkv +JASON ALDEAN-dirt road anthem,http://em.21dtv.com/songs/60060787.mkv +陈思安-多情子,http://em.21dtv.com/songs/60129737.mkv +胡杨林-多情种,http://em.21dtv.com/songs/60071901.mkv +优客李林-多情种,http://em.21dtv.com/songs/60016179.mkv +张凤凤-大清早,http://em.21dtv.com/songs/60014104.mkv +佚名-大清早,http://em.21dtv.com/songs/60014103.mkv +白冰冰-多情雨,http://em.21dtv.com/songs/60132763.mkv +万一-断情缘,http://em.21dtv.com/songs/60119222.mkv +张雨锋-断情药,http://em.21dtv.com/songs/60015945.mkv +温岚-道歉信,http://em.21dtv.com/songs/60101428.mkv +黄鸿升-大确幸,http://em.21dtv.com/songs/60093751.mkv +新宝岛康乐队-多情兄(演唱会),http://em.21dtv.com/songs/60016175.mkv +詹雅雯-断情线,http://em.21dtv.com/songs/60015944.mkv +刘梦涵-断情线(无原唱),http://em.21dtv.com/songs/60015943.mkv +佚名-点秋香,http://em.21dtv.com/songs/60015316.mkv +邰正宵-单情弦,http://em.21dtv.com/songs/60014355.mkv +谭晶-断桥问,http://em.21dtv.com/songs/60122128.mkv +薛松-大晴天,http://em.21dtv.com/songs/60124448.mkv +汪峰-大桥上,http://em.21dtv.com/songs/60102449.mkv +陈随意-断情丝,http://em.21dtv.com/songs/60075246.mkv +杜春梅-党旗颂,http://em.21dtv.com/songs/60070624.mkv +刘依纯-断情诗,http://em.21dtv.com/songs/60068230.mkv +龙千玉-多情人,http://em.21dtv.com/songs/60136046.mkv +王中平-多情人,http://em.21dtv.com/songs/60115283.mkv +侯奇才-地球人,http://em.21dtv.com/songs/60064131.mkv +张学友-地球人(演唱会),http://em.21dtv.com/songs/60015110.mkv +佚名-等情人,http://em.21dtv.com/songs/60015026.mkv +安瑞兮-大圈圈,http://em.21dtv.com/songs/60082783.mkv +詹雅雯-断情湶,http://em.21dtv.com/songs/60078410.mkv +二人转+闫学晶+董宝贵-打秋千,http://em.21dtv.com/songs/60070612.mkv +莲歌子-大千忏,http://em.21dtv.com/songs/60069322.mkv +吴莫愁+马薇薇+范湉湉+肖骁+艾力-大奇葩,http://em.21dtv.com/songs/60112572.mkv +枭郡-等千年,http://em.21dtv.com/songs/60100230.mkv +童安格-第七年,http://em.21dtv.com/songs/60015199.mkv +张钧喻-等千年,http://em.21dtv.com/songs/60015024.mkv +阿郞-等千年,http://em.21dtv.com/songs/60015023.mkv +刘伟-断桥梦,http://em.21dtv.com/songs/60105629.mkv +梁海洋-动起来,http://em.21dtv.com/songs/60115249.mkv +茜拉班级-动起来(现场版),http://em.21dtv.com/songs/60103539.mkv +才让措-断桥泪,http://em.21dtv.com/songs/60097081.mkv +苏青山-等情郎,http://em.21dtv.com/songs/60082833.mkv +林忆莲-躲起来(演唱会),http://em.21dtv.com/songs/60016253.mkv +黄乙玲-多情路,http://em.21dtv.com/songs/60016165.mkv +郭富城-动起来,http://em.21dtv.com/songs/60015661.mkv +格桑梅朵-动起来,http://em.21dtv.com/songs/60015660.mkv +郭富城-动起来(演唱会),http://em.21dtv.com/songs/60015659.mkv +罗密欧-动起来(无原唱),http://em.21dtv.com/songs/60015658.mkv +费翔-钉起来,http://em.21dtv.com/songs/60015454.mkv +彭月春-等情郎,http://em.21dtv.com/songs/60015025.mkv +德乾旺姆-打青稞,http://em.21dtv.com/songs/60087891.mkv +ASSEN捷-殿前欢,http://em.21dtv.com/songs/60101592.mkv +彭炽权+蒋文端-断桥会(戏曲),http://em.21dtv.com/songs/60092681.mkv +孙淑媚-多情花,http://em.21dtv.com/songs/60016160.mkv +张靓颖-第七感,http://em.21dtv.com/songs/60135258.mkv +张靓颖-第七感,http://em.21dtv.com/songs/60100042.mkv +黄义达-地球歌,http://em.21dtv.com/songs/60081326.mkv +冷漠-大乞丐,http://em.21dtv.com/songs/60075073.mkv +阿尔斯楞-大情歌,http://em.21dtv.com/songs/60061130.mkv +王识贤-断情歌,http://em.21dtv.com/songs/60015941.mkv +古巨基-第七感,http://em.21dtv.com/songs/60015197.mkv +蓝琪儿-大情歌,http://em.21dtv.com/songs/60014105.mkv +张雷-断情刀,http://em.21dtv.com/songs/60112694.mkv +苏永康-地球村,http://em.21dtv.com/songs/60093084.mkv +孙逊-斗气车,http://em.21dtv.com/songs/60015747.mkv +超克7-大青春,http://em.21dtv.com/songs/60014102.mkv +MC菏泽小志-断情笔,http://em.21dtv.com/songs/60121289.mkv +朱海君+翁立友-多情啊,http://em.21dtv.com/songs/60016142.mkv +苏打绿-地平线,http://em.21dtv.com/songs/60117160.mkv +刘德华-地平线,http://em.21dtv.com/songs/60099110.mkv +李玖哲-地平线,http://em.21dtv.com/songs/60015101.mkv +斯琴格日乐-地平线(无原唱),http://em.21dtv.com/songs/60015100.mkv +晓华-打喷嚏(演唱会),http://em.21dtv.com/songs/60082774.mkv +严爵-打喷嚏,http://em.21dtv.com/songs/60075032.mkv +伊能静-打喷嚏,http://em.21dtv.com/songs/60013807.mkv +叶玉卿-打喷嚏,http://em.21dtv.com/songs/60013806.mkv +葛兰-打喷嚏,http://em.21dtv.com/songs/60013805.mkv +叶丽仪+雷安娜-打喷嚏(演唱会),http://em.21dtv.com/songs/60013804.mkv +SWEET BOX-dont push me(演唱会),http://em.21dtv.com/songs/60001355.mkv +张一山+葛铮+张承-打屁歌,http://em.21dtv.com/songs/60123911.mkv +邓小龙-大苹果,http://em.21dtv.com/songs/60105410.mkv +冉青霞-大苹果,http://em.21dtv.com/songs/60104802.mkv +曾桂英-大埔调,http://em.21dtv.com/songs/60014098.mkv +童唱-大胖呆,http://em.21dtv.com/songs/60014096.mkv +王菲菲-大篷车,http://em.21dtv.com/songs/60014097.mkv +屠洪纲-大瀑布,http://em.21dtv.com/songs/60014099.mkv +邬祯琳-dreamin of you,http://em.21dtv.com/songs/60073154.mkv +LUKE BRYAN-drunk on you,http://em.21dtv.com/songs/60066639.mkv +林欣彤-dreaming of you(演唱会),http://em.21dtv.com/songs/60063583.mkv +佚名-dreaming of you(无原唱),http://em.21dtv.com/songs/60001427.mkv +连依涵-dearm of you,http://em.21dtv.com/songs/60001195.mkv +爱戴-DON'T LET ME,http://em.21dtv.com/songs/60096854.mkv +WILCO POPEYE-dawned on me,http://em.21dtv.com/songs/60073106.mkv +TRAIN-drops of jupiter,http://em.21dtv.com/songs/60001447.mkv +蔡健雅-drops of jupiter(演唱会),http://em.21dtv.com/songs/60001446.mkv +GIRL NEXT DOOR-deeds of dream,http://em.21dtv.com/songs/60073110.mkv +谭锡禧-diana oh carol(演唱会),http://em.21dtv.com/songs/60082133.mkv +陈翔-带你走,http://em.21dtv.com/songs/60131957.mkv +郑融-大女仔,http://em.21dtv.com/songs/60093325.mkv +潘成-第n者,http://em.21dtv.com/songs/60075180.mkv +邓依辰-带你玩,http://em.21dtv.com/songs/60118088.mkv +叶维道-到那天,http://em.21dtv.com/songs/60092438.mkv +伊雪-大女生,http://em.21dtv.com/songs/60071858.mkv +王筝-对你说,http://em.21dtv.com/songs/60016050.mkv +金池-大女人,http://em.21dtv.com/songs/60116310.mkv +阿清-大男人,http://em.21dtv.com/songs/60065918.mkv +张宇-大女人,http://em.21dtv.com/songs/60014092.mkv +张亚飞-大女人,http://em.21dtv.com/songs/60014091.mkv +曹格-大女人,http://em.21dtv.com/songs/60014090.mkv +蔡琴-大女人,http://em.21dtv.com/songs/60014089.mkv +张宇-大女人(演唱会),http://em.21dtv.com/songs/60014088.mkv +李宇春-大女人(演唱会),http://em.21dtv.com/songs/60014087.mkv +许志安-大男人,http://em.21dtv.com/songs/60014077.mkv +腾格尔-大男人,http://em.21dtv.com/songs/60014075.mkv +OSCAR-大男人,http://em.21dtv.com/songs/60014074.mkv +古巨基-当年情,http://em.21dtv.com/songs/60134977.mkv +古巨基+古天乐-当年情,http://em.21dtv.com/songs/60127801.mkv +王若琳-当年情,http://em.21dtv.com/songs/60098648.mkv +瑞雪-当年情,http://em.21dtv.com/songs/60064115.mkv +黄耀明-当年情(演唱会),http://em.21dtv.com/songs/60064114.mkv +童星-爹娘情,http://em.21dtv.com/songs/60015387.mkv +张国荣-当年情,http://em.21dtv.com/songs/60014582.mkv +罗文-当年情,http://em.21dtv.com/songs/60014581.mkv +古巨基-当年情,http://em.21dtv.com/songs/60014580.mkv +陈纪匡-当年情,http://em.21dtv.com/songs/60014579.mkv +张国荣-当年情(演唱会),http://em.21dtv.com/songs/60014578.mkv +苏永康-当年情(演唱会),http://em.21dtv.com/songs/60014577.mkv +陈纪匡-当年情(演唱会),http://em.21dtv.com/songs/60014576.mkv +张国荣-当年情(无原唱),http://em.21dtv.com/songs/60014575.mkv +邱付权-当年梦,http://em.21dtv.com/songs/60134291.mkv +宋祖英-等你来,http://em.21dtv.com/songs/60015005.mkv +洪百慧-等你啦,http://em.21dtv.com/songs/60015004.mkv +胡兵-等你回来,http://em.21dtv.com/songs/60014988.mkv +曾沛慈-多年后,http://em.21dtv.com/songs/60107768.mkv +曾沛慈-多年后,http://em.21dtv.com/songs/60106909.mkv +面具-多年后,http://em.21dtv.com/songs/60098912.mkv +蔡依林-对你好,http://em.21dtv.com/songs/60092016.mkv +邵伟轩-大男孩,http://em.21dtv.com/songs/60075070.mkv +尹光+柳影虹-帝女花(演唱会),http://em.21dtv.com/songs/60061150.mkv +李翊君-帝女花,http://em.21dtv.com/songs/60015148.mkv +李凤鸣-帝女花,http://em.21dtv.com/songs/60015147.mkv +小峰峰-大女孩,http://em.21dtv.com/songs/60014086.mkv +邓健泓-大男孩,http://em.21dtv.com/songs/60014073.mkv +降央卓玛-东女国,http://em.21dtv.com/songs/60015549.mkv +周予天-带你飞,http://em.21dtv.com/songs/60125306.mkv +碧娜-东南飞,http://em.21dtv.com/songs/60015545.mkv +林熙-斗牛场,http://em.21dtv.com/songs/60015740.mkv +Kendrick Lamar-DNA,http://em.21dtv.com/songs/60134724.mkv +吴映洁-等你爱,http://em.21dtv.com/songs/60127831.mkv +阿香-等你爱,http://em.21dtv.com/songs/60103662.mkv +陈一郎-歹命子,http://em.21dtv.com/songs/60133034.mkv +0086男团-盗梦者,http://em.21dtv.com/songs/60071870.mkv +恩炀-对蚂蚱,http://em.21dtv.com/songs/60016019.mkv +佚名-大妹子,http://em.21dtv.com/songs/60014068.mkv +金波-大妹子,http://em.21dtv.com/songs/60014067.mkv +BBF-大冒险,http://em.21dtv.com/songs/60132047.mkv +TFBOYS-大梦想,http://em.21dtv.com/songs/60113193.mkv +余炳轩-大冒险,http://em.21dtv.com/songs/60090618.mkv +周杰伦+柯有伦+宋健彰-大明星,http://em.21dtv.com/songs/60085017.mkv +东南-大明星,http://em.21dtv.com/songs/60071857.mkv +LOTTE GIRLS-大明星,http://em.21dtv.com/songs/60061129.mkv +BOBO-大明星,http://em.21dtv.com/songs/60014070.mkv +方怡萍+高群-都马调(无原唱),http://em.21dtv.com/songs/60095541.mkv +秦基博-dear mr tomorrow,http://em.21dtv.com/songs/60073108.mkv +梁咏琪-大魔头,http://em.21dtv.com/songs/60014071.mkv +佚名-独木桥,http://em.21dtv.com/songs/60015799.mkv +叶熙祺-冬眠期,http://em.21dtv.com/songs/60015588.mkv +大哲+帅霖-大美妞,http://em.21dtv.com/songs/60107632.mkv +大哲-大美妞,http://em.21dtv.com/songs/60080933.mkv +郭美美-当美女,http://em.21dtv.com/songs/60075112.mkv +阿桑古卡-大美女,http://em.21dtv.com/songs/60014066.mkv +JW-do me more,http://em.21dtv.com/songs/60071588.mkv +东于哲-躲猫猫,http://em.21dtv.com/songs/60062333.mkv +陈慧琳-躲猫猫,http://em.21dtv.com/songs/60016252.mkv +高向鹏+傅振辉-大庙口,http://em.21dtv.com/songs/60014069.mkv +齐国+齐秦+齐歆-打麻将,http://em.21dtv.com/songs/60114920.mkv +小野丽莎-大明劫,http://em.21dtv.com/songs/60101331.mkv +周笔畅-单面镜,http://em.21dtv.com/songs/60014352.mkv +代涛-碉门魂,http://em.21dtv.com/songs/60085049.mkv +刘可-大明宫,http://em.21dtv.com/songs/60087386.mkv +BON JOVI-one wild night,http://em.21dtv.com/songs/60073712.mkv +ゴールデンボンバー-dance my generation,http://em.21dtv.com/songs/60073098.mkv +周笔畅-毒蘑菇(演唱会),http://em.21dtv.com/songs/60015768.mkv +谈莉娜-大麻烦,http://em.21dtv.com/songs/60131811.mkv +徐若瑄-大麻烦,http://em.21dtv.com/songs/60014064.mkv +信-刀马旦,http://em.21dtv.com/songs/60118359.mkv +陈梓童-刀马旦,http://em.21dtv.com/songs/60115495.mkv +春天-刀马旦,http://em.21dtv.com/songs/60096322.mkv +佚名-都马调(无原唱),http://em.21dtv.com/songs/60015687.mkv +李玟-刀马旦,http://em.21dtv.com/songs/60014694.mkv +杜德伟-drive me crazy,http://em.21dtv.com/songs/60001440.mkv +网络歌手-大连站,http://em.21dtv.com/songs/60091821.mkv +蓝奕邦-斗零踭,http://em.21dtv.com/songs/60065944.mkv +杨千嬅-斗零踭,http://em.21dtv.com/songs/60015738.mkv +杨千嬅-斗零踭(演唱会),http://em.21dtv.com/songs/60015737.mkv +袁东方-灯笼谣,http://em.21dtv.com/songs/60115368.mkv +张莹-大陇原,http://em.21dtv.com/songs/60106864.mkv +蔡秋凤-渡冷月,http://em.21dtv.com/songs/60015885.mkv +阿来-丢了心,http://em.21dtv.com/songs/60114178.mkv +柯以敏-断了线,http://em.21dtv.com/songs/60015930.mkv +王建房-大老碗,http://em.21dtv.com/songs/60071854.mkv +黄国伦-带领我(无原唱),http://em.21dtv.com/songs/60014266.mkv +林玉英-歹落台,http://em.21dtv.com/songs/60095694.mkv +SANDRA PILLER-days like these,http://em.21dtv.com/songs/60062141.mkv +侃侃-大礼堂,http://em.21dtv.com/songs/60014059.mkv +任贤齐-大懒堂,http://em.21dtv.com/songs/60014053.mkv +LMF-大懒堂(演唱会),http://em.21dtv.com/songs/60014052.mkv +BOY'Z-大懒堂(演唱会),http://em.21dtv.com/songs/60014051.mkv +白若溪-淡蓝色,http://em.21dtv.com/songs/60117098.mkv +太阳部落-大凉山,http://em.21dtv.com/songs/60096899.mkv +后弦-杜老师,http://em.21dtv.com/songs/60069365.mkv +肖洋-独立日,http://em.21dtv.com/songs/60094253.mkv +金海心-独立日,http://em.21dtv.com/songs/60015794.mkv +蔡健雅-单恋曲,http://em.21dtv.com/songs/60081607.mkv +梁汉文-断了气(演唱会),http://em.21dtv.com/songs/60015927.mkv +何亁梁-单恋派,http://em.21dtv.com/songs/60107490.mkv +京剧-打龙袍,http://em.21dtv.com/songs/60089600.mkv +刘英-打龙袍,http://em.21dtv.com/songs/60013801.mkv +郭富城-单恋你,http://em.21dtv.com/songs/60014348.mkv +儿歌-多来咪,http://em.21dtv.com/songs/60089134.mkv +佚名-哆来咪,http://em.21dtv.com/songs/60016244.mkv +万芳-读乐乐,http://em.21dtv.com/songs/60109123.mkv +C BLOCK-顶两口,http://em.21dtv.com/songs/60133181.mkv +林禾-丢垃圾,http://em.21dtv.com/songs/60132623.mkv +合唱-道拉吉,http://em.21dtv.com/songs/60089202.mkv +王爱华-独恋君,http://em.21dtv.com/songs/60066972.mkv +佚名-道拉基,http://em.21dtv.com/songs/60014775.mkv +邓紫棋-蝶恋花,http://em.21dtv.com/songs/60108037.mkv +小豆-蝶恋花,http://em.21dtv.com/songs/60104084.mkv +邓紫棋-蝶恋花,http://em.21dtv.com/songs/60101524.mkv +DJ Black仔哥+黄诗玲-蝶恋花,http://em.21dtv.com/songs/60098988.mkv +黄大炜-地老荒,http://em.21dtv.com/songs/60089036.mkv +陈珊妮-碟恋花,http://em.21dtv.com/songs/60088904.mkv +李青+时嘉-蝶恋花,http://em.21dtv.com/songs/60080624.mkv +邓紫琪-蝶恋花,http://em.21dtv.com/songs/60075204.mkv +瞿颖-蝶恋花,http://em.21dtv.com/songs/60015411.mkv +女声-蝶恋花,http://em.21dtv.com/songs/60015410.mkv +暖乐团-蝶恋花,http://em.21dtv.com/songs/60015409.mkv +牛奶咖啡-蝶恋花,http://em.21dtv.com/songs/60015408.mkv +男声-蝶恋花,http://em.21dtv.com/songs/60015407.mkv +黄凯芹-蝶恋花,http://em.21dtv.com/songs/60015406.mkv +符琼音-蝶恋花,http://em.21dtv.com/songs/60015405.mkv +拜金小姐-蝶恋花,http://em.21dtv.com/songs/60015404.mkv +DIDO-dont leave home,http://em.21dtv.com/songs/60001335.mkv +丁当-端来共,http://em.21dtv.com/songs/60015888.mkv +王力宏-钓灵感(演唱会),http://em.21dtv.com/songs/60015377.mkv +温岚-第六感,http://em.21dtv.com/songs/60015194.mkv +孙燕姿-第六感,http://em.21dtv.com/songs/60015193.mkv +梁文音-第六感,http://em.21dtv.com/songs/60015192.mkv +孙燕姿-第六感(演唱会),http://em.21dtv.com/songs/60015191.mkv +王羚柔-第六感(无原唱),http://em.21dtv.com/songs/60015190.mkv +佚名-大路歌,http://em.21dtv.com/songs/60014062.mkv +萧潇-daddys little girl,http://em.21dtv.com/songs/60001130.mkv +冷漠-蝶恋妃,http://em.21dtv.com/songs/60070643.mkv +孙行者-蝶恋飞,http://em.21dtv.com/songs/60015403.mkv +N2O-大老二,http://em.21dtv.com/songs/60075066.mkv +小龙女-大老二,http://em.21dtv.com/songs/60014058.mkv +紫薇-嗒厘岛,http://em.21dtv.com/songs/60090104.mkv +雨儿-哒啦哒,http://em.21dtv.com/songs/60088927.mkv +郭颂-打轮墩,http://em.21dtv.com/songs/60013802.mkv +紫薇-嗒里岛,http://em.21dtv.com/songs/60013709.mkv +于立成-大老粗,http://em.21dtv.com/songs/60014057.mkv +古享林-大老板,http://em.21dtv.com/songs/60133448.mkv +NORAH JONES-dont know why,http://em.21dtv.com/songs/60001333.mkv +林一峰+关心妍-dont know why(演唱会),http://em.21dtv.com/songs/60001332.mkv +侧田-dont know why(演唱会),http://em.21dtv.com/songs/60001331.mkv +江美琪-抵抗力,http://em.21dtv.com/songs/60107862.mkv +颜怿-渡苦海,http://em.21dtv.com/songs/60094349.mkv +汪明荃-冻咖啡,http://em.21dtv.com/songs/60015673.mkv +汪明荃-冻咖啡(演唱会),http://em.21dtv.com/songs/60015672.mkv +童唱-大块呆,http://em.21dtv.com/songs/60014050.mkv +泳儿-打开窗,http://em.21dtv.com/songs/60075029.mkv +王力宏-打开爱,http://em.21dtv.com/songs/60013786.mkv +彭炽权+郭凤女-打金枝(戏曲),http://em.21dtv.com/songs/60092686.mkv +胡美仪+甘国卫-打金枝(演唱会),http://em.21dtv.com/songs/60075028.mkv +郭颂-丢戒指,http://em.21dtv.com/songs/60015475.mkv +陈小涛-大九寨,http://em.21dtv.com/songs/60014045.mkv +陈诗慧-东角驿,http://em.21dtv.com/songs/60126407.mkv +刘冲-打酱油,http://em.21dtv.com/songs/60075027.mkv +李玟-第九夜,http://em.21dtv.com/songs/60015189.mkv +夏婉安-独角戏,http://em.21dtv.com/songs/60131301.mkv +张艺兴-独角戏,http://em.21dtv.com/songs/60122750.mkv +游鸿明-独角戏,http://em.21dtv.com/songs/60098601.mkv +赵薇-大惊喜,http://em.21dtv.com/songs/60089492.mkv +蔡依林-大惊喜,http://em.21dtv.com/songs/60088595.mkv +祁哲西-独角戏,http://em.21dtv.com/songs/60075233.mkv +刘昱贤-刀剑心,http://em.21dtv.com/songs/60070626.mkv +卓依婷-独角戏,http://em.21dtv.com/songs/60015790.mkv +许茹芸-独角戏,http://em.21dtv.com/songs/60015789.mkv +许颂-冬季雪,http://em.21dtv.com/songs/60015577.mkv +杨青倩-刀剑笑,http://em.21dtv.com/songs/60014689.mkv +陈奕迅+梁汉文+杨千嬅-大激想,http://em.21dtv.com/songs/60013992.mkv +陈奕迅+梁汉文+杨千嬅-大激想(演唱会),http://em.21dtv.com/songs/60013991.mkv +周杰伦-打架舞,http://em.21dtv.com/songs/60080385.mkv +郑俊弘-地尽头,http://em.21dtv.com/songs/60135800.mkv +黄宗泽-第几天,http://em.21dtv.com/songs/60109776.mkv +关淑怡-地尽头,http://em.21dtv.com/songs/60015091.mkv +邓健泓-大件事,http://em.21dtv.com/songs/60014032.mkv +陈小春-大件事,http://em.21dtv.com/songs/60014031.mkv +群星-大节日,http://em.21dtv.com/songs/60014041.mkv +王宏伟-大江南,http://em.21dtv.com/songs/60082780.mkv +郭桂彬-大节女,http://em.21dtv.com/songs/60014040.mkv +蔡振南-大节女,http://em.21dtv.com/songs/60014039.mkv +JELLYBEAN-登机门,http://em.21dtv.com/songs/60014832.mkv +臻言-杜鹃泪,http://em.21dtv.com/songs/60134149.mkv +李佑晨-东京冷,http://em.21dtv.com/songs/60130408.mkv +李斌豪-点击率,http://em.21dtv.com/songs/60075193.mkv +吴紫涵-杜鹃花(HD),http://em.21dtv.com/songs/10012736.mkv +寒香-杜鹃花,http://em.21dtv.com/songs/60098276.mkv +吴紫涵-杜鹃花,http://em.21dtv.com/songs/60096976.mkv +李艺明-杜鹃花,http://em.21dtv.com/songs/60082859.mkv +姚乙-杜鹃花,http://em.21dtv.com/songs/60015864.mkv +童唱-杜鹃花,http://em.21dtv.com/songs/60015863.mkv +韩再芬-杜鹃红,http://em.21dtv.com/songs/60015862.mkv +火风-大家好,http://em.21dtv.com/songs/60014008.mkv +拉卡飞琅-大酒鬼,http://em.21dtv.com/songs/60099258.mkv +王树芳-钓金龟,http://em.21dtv.com/songs/60015375.mkv +管恩艳+郭庆林-钓金龟,http://em.21dtv.com/songs/60015374.mkv +中国娃娃-大姐大,http://em.21dtv.com/songs/60014042.mkv +陈珊妮+李端娴-点绛唇,http://em.21dtv.com/songs/60015304.mkv +曾星瑜-打劫爱,http://em.21dtv.com/songs/60126970.mkv +JENNIFER LOPEZ-do it well,http://em.21dtv.com/songs/60001262.mkv +KAT DELUNA-drop it low,http://em.21dtv.com/songs/60060793.mkv +CHRISTINA MILAN-dip it low,http://em.21dtv.com/songs/60001240.mkv +徐怀钰-dub i dub,http://em.21dtv.com/songs/60001452.mkv +AGNES CHAN-day is done,http://em.21dtv.com/songs/60001170.mkv +雷有辉+赵颂茹-大孩子,http://em.21dtv.com/songs/60013944.mkv +晓月-断魂月,http://em.21dtv.com/songs/60105941.mkv +张鹭勇-东海洋,http://em.21dtv.com/songs/60105889.mkv +ZAYIN-导航星,http://em.21dtv.com/songs/60014698.mkv +谭晶-大槐树,http://em.21dtv.com/songs/60066943.mkv +葛仲珊-大伙骑,http://em.21dtv.com/songs/60132848.mkv +陈慧琳-打哈欠,http://em.21dtv.com/songs/60088875.mkv +宋娜-大海情,http://em.21dtv.com/songs/60013961.mkv +陈慧琳-打呵欠,http://em.21dtv.com/songs/60013776.mkv +何韵诗-大红袍,http://em.21dtv.com/songs/60092269.mkv +薛松+魏帆-大河南,http://em.21dtv.com/songs/60123144.mkv +张燕清-断魂泪,http://em.21dtv.com/songs/60069367.mkv +董贞-雕花笼,http://em.21dtv.com/songs/60015371.mkv +张伦硕-电话控,http://em.21dtv.com/songs/60068224.mkv +夏后-大话家,http://em.21dtv.com/songs/60098221.mkv +童唱-渡汉江,http://em.21dtv.com/songs/60015882.mkv +王歌慧-大话精,http://em.21dtv.com/songs/60013982.mkv +张志家-大花轿,http://em.21dtv.com/songs/60013980.mkv +火风-大花轿,http://em.21dtv.com/songs/60013979.mkv +火风-大花轿(演唱会),http://em.21dtv.com/songs/60013978.mkv +田震-打火机,http://em.21dtv.com/songs/60013783.mkv +甄妮-打火机(演唱会),http://em.21dtv.com/songs/60013782.mkv +佚名-打火机(无原唱),http://em.21dtv.com/songs/60013781.mkv +雷佳-大红河,http://em.21dtv.com/songs/60124671.mkv +小曲儿-对黄昏,http://em.21dtv.com/songs/60082863.mkv +戴玉强-大黄河,http://em.21dtv.com/songs/60064095.mkv +佚名-大黄河,http://em.21dtv.com/songs/60013984.mkv +崎君-大汉魂,http://em.21dtv.com/songs/60013964.mkv +储兰兰-对花歌(演唱会),http://em.21dtv.com/songs/60082862.mkv +方小菲-大红鼓,http://em.21dtv.com/songs/60068204.mkv +EDIQ-豆花饭,http://em.21dtv.com/songs/60120205.mkv +肖家永-蝶花飞,http://em.21dtv.com/songs/60097115.mkv +尹相杰-大红帆,http://em.21dtv.com/songs/60013974.mkv +火风-大红帆,http://em.21dtv.com/songs/60013973.mkv +陈彦允-大皇帝,http://em.21dtv.com/songs/60111483.mkv +华峰-大河东,http://em.21dtv.com/songs/60086513.mkv +乐桐-渡红尘,http://em.21dtv.com/songs/60103856.mkv +谭咏麟+关楚耀-大喊包(演唱会),http://em.21dtv.com/songs/60013963.mkv +佚名-大海边,http://em.21dtv.com/songs/60013957.mkv +群星-多好啊,http://em.21dtv.com/songs/60062850.mkv +羽泉+小娟+谭维维-多好啊,http://em.21dtv.com/songs/60061167.mkv +朱晨辰+白若溪+安尧+张小觉-多好啊(演唱会),http://em.21dtv.com/songs/60061166.mkv +大原樱子-大好き,http://em.21dtv.com/songs/60122632.mkv +张岩-打工族,http://em.21dtv.com/songs/60013772.mkv +乌兰托娅-大高原,http://em.21dtv.com/songs/60063078.mkv +刘耔彤-大观园,http://em.21dtv.com/songs/60013942.mkv +吕坤-打工谣,http://em.21dtv.com/songs/60013770.mkv +郑源-打工行,http://em.21dtv.com/songs/60082770.mkv +杨洪基-短歌行,http://em.21dtv.com/songs/60015892.mkv +张寒-大歌星,http://em.21dtv.com/songs/60013937.mkv +龙军-打工行,http://em.21dtv.com/songs/60013767.mkv +余龙-都怪我,http://em.21dtv.com/songs/60109149.mkv +阿悄-都怪我,http://em.21dtv.com/songs/60100547.mkv +王强-都怪我,http://em.21dtv.com/songs/60015685.mkv +刘德华-都怪我,http://em.21dtv.com/songs/60015684.mkv +李玖哲-都怪我,http://em.21dtv.com/songs/60015683.mkv +赵芬妮-dont give up,http://em.21dtv.com/songs/60001327.mkv +TWINS-大过天,http://em.21dtv.com/songs/60065916.mkv +马薇+刘党庆-德格颂,http://em.21dtv.com/songs/60014808.mkv +郑希怡-灯隔热,http://em.21dtv.com/songs/60014820.mkv +何永俊-打工情,http://em.21dtv.com/songs/60064091.mkv +童唱-弹钢琴,http://em.21dtv.com/songs/60014468.mkv +宥胜-都给你,http://em.21dtv.com/songs/60071893.mkv +潘晓峰-都怪你,http://em.21dtv.com/songs/60015682.mkv +陈宏辉-当官难,http://em.21dtv.com/songs/60014528.mkv +陈奕迅-大个女(演唱会),http://em.21dtv.com/songs/60013938.mkv +罗安-等归暝(无原唱),http://em.21dtv.com/songs/60014944.mkv +郑智化-大国民,http://em.21dtv.com/songs/60013943.mkv +德德玛-达古拉,http://em.21dtv.com/songs/60089889.mkv +村根-打嘎啦,http://em.21dtv.com/songs/60082053.mkv +宗庸卓玛-达嘎拉,http://em.21dtv.com/songs/60013713.mkv +厉心童+厉智敏-大公鸡,http://em.21dtv.com/songs/60115739.mkv +佚名-大公鸡,http://em.21dtv.com/songs/60115006.mkv +佚名-大公鸡,http://em.21dtv.com/songs/60013940.mkv +王雪晶-大公鸡,http://em.21dtv.com/songs/60013939.mkv +ON LINE-点够喉,http://em.21dtv.com/songs/60015303.mkv +ON LINE-点够喉(演唱会),http://em.21dtv.com/songs/60015302.mkv +梁汉文-点够侯(演唱会),http://em.21dtv.com/songs/60015301.mkv +田亚霍-打勾勾,http://em.21dtv.com/songs/60130618.mkv +李千娜-打勾勾,http://em.21dtv.com/songs/60130412.mkv +孙艺玲-打工歌,http://em.21dtv.com/songs/60085007.mkv +徐哲纬-打勾勾,http://em.21dtv.com/songs/60013775.mkv +小护士-打勾勾,http://em.21dtv.com/songs/60013774.mkv +范玮琪-打勾勾(演唱会),http://em.21dtv.com/songs/60013773.mkv +心文-大哥大,http://em.21dtv.com/songs/60076193.mkv +佚名-大哥大,http://em.21dtv.com/songs/60013935.mkv +元卫觉醒-大哥大(演唱会),http://em.21dtv.com/songs/60013934.mkv +郑秀月-大哥大(无原唱),http://em.21dtv.com/songs/60013933.mkv +大嘴巴-大告白,http://em.21dtv.com/songs/60112602.mkv +林希儿-都怪爱,http://em.21dtv.com/songs/60102392.mkv +BY2-dont go away,http://em.21dtv.com/songs/60001328.mkv +中国娃娃-丹凤眼,http://em.21dtv.com/songs/60089586.mkv +BEYONCE KNOWLES-dance for you,http://em.21dtv.com/songs/60073097.mkv +郭斯炫-迪菲舞,http://em.21dtv.com/songs/60121013.mkv +李克勤-大富翁(演唱会),http://em.21dtv.com/songs/60075052.mkv +KELLY ROWLAND-down for whatever,http://em.21dtv.com/songs/60063580.mkv +谢霆锋-对付我(演唱会),http://em.21dtv.com/songs/60016009.mkv +郑希怡-大富翁,http://em.21dtv.com/songs/60013929.mkv +黄品冠-大富翁,http://em.21dtv.com/songs/60013928.mkv +龙奔-大副颂,http://em.21dtv.com/songs/60089086.mkv +任贤齐-大番薯,http://em.21dtv.com/songs/60075047.mkv +龙奔-大福颂,http://em.21dtv.com/songs/60013926.mkv +黄立行-打分数,http://em.21dtv.com/songs/60013763.mkv +周杰伦-东风破,http://em.21dtv.com/songs/60015532.mkv +郝歌-东风破,http://em.21dtv.com/songs/60015531.mkv +裴秀智-dont forget me,http://em.21dtv.com/songs/60082136.mkv +李小璐-东方美,http://em.21dtv.com/songs/60015511.mkv +C.SINGLETON-dont forbid me(无原唱),http://em.21dtv.com/songs/60001323.mkv +唐勇-等风来,http://em.21dtv.com/songs/60122623.mkv +邹薇+罗汉-东方龙,http://em.21dtv.com/songs/60099522.mkv +DREAM GIRLS-dying for love,http://em.21dtv.com/songs/60070325.mkv +王麟-打飞机,http://em.21dtv.com/songs/60081811.mkv +尹光-打飞机(演唱会),http://em.21dtv.com/songs/60013762.mkv +李政飞-东方红,http://em.21dtv.com/songs/60110274.mkv +佚名-东方红,http://em.21dtv.com/songs/60015508.mkv +大合唱-东方红,http://em.21dtv.com/songs/60015507.mkv +四分卫-大风歌,http://em.21dtv.com/songs/60101305.mkv +乌兰图雅-大风歌,http://em.21dtv.com/songs/60081199.mkv +孙健-大风歌,http://em.21dtv.com/songs/60075049.mkv +RANIA-dr feel good,http://em.21dtv.com/songs/60060792.mkv +范玮琪-大风吹,http://em.21dtv.com/songs/60119922.mkv +罗钧满-大风吹,http://em.21dtv.com/songs/60093780.mkv +莫日根-大风吹,http://em.21dtv.com/songs/60086511.mkv +许志安-大风吹,http://em.21dtv.com/songs/60013925.mkv +许慧欣-大风吹,http://em.21dtv.com/songs/60013924.mkv +年少-大风吹,http://em.21dtv.com/songs/60013923.mkv +麦浚龙-大风吹,http://em.21dtv.com/songs/60013922.mkv +Y.I.Y.O-大风吹,http://em.21dtv.com/songs/60013921.mkv +傅佩嘉-大风吹(无原唱),http://em.21dtv.com/songs/60013920.mkv +谭晶-定风波,http://em.21dtv.com/songs/60132899.mkv +张学友-定风波,http://em.21dtv.com/songs/60070646.mkv +蔡卓妍-大风暴,http://em.21dtv.com/songs/60013919.mkv +吕明银-搧冬风,http://em.21dtv.com/songs/60116632.mkv +张火丁-窦娥冤,http://em.21dtv.com/songs/60015764.mkv +蔡依林-第二性,http://em.21dtv.com/songs/60107985.mkv +蔡健雅-达尔文,http://em.21dtv.com/songs/60013712.mkv +谢霆锋-第二世,http://em.21dtv.com/songs/60015178.mkv +钟洁+Rill-第二梦,http://em.21dtv.com/songs/60135859.mkv +刘峰华-第二梦,http://em.21dtv.com/songs/60099803.mkv +苍井空-第二梦,http://em.21dtv.com/songs/60065937.mkv +李逸-第二梦,http://em.21dtv.com/songs/60015177.mkv +陈俊华-蝶儿飞,http://em.21dtv.com/songs/60070642.mkv +SHINE-第二春,http://em.21dtv.com/songs/60097078.mkv +江玲-第二春,http://em.21dtv.com/songs/60089396.mkv +林淑蓉-第二春,http://em.21dtv.com/songs/60088114.mkv +杨燕-第二春(演唱会),http://em.21dtv.com/songs/60075181.mkv +潘迪华-第二春(演唱会),http://em.21dtv.com/songs/60015167.mkv +费玉清-第二春(无原唱),http://em.21dtv.com/songs/60015166.mkv +江蕙+陈嘉桦-歹逗阵,http://em.21dtv.com/songs/60082792.mkv +安琥+王麟-斗地主,http://em.21dtv.com/songs/60065943.mkv +慕容晓晓-斗地主,http://em.21dtv.com/songs/60064150.mkv +网络歌曲-斗地主,http://em.21dtv.com/songs/60015732.mkv +佚名-地道战,http://em.21dtv.com/songs/60015089.mkv +徐潇玲-打登州,http://em.21dtv.com/songs/60013757.mkv +赵薇-大导演,http://em.21dtv.com/songs/60080364.mkv +杨坤-大导演(演唱会),http://em.21dtv.com/songs/60013880.mkv +安又琪-对的心,http://em.21dtv.com/songs/60125409.mkv +吉杰-刀点心(演唱会),http://em.21dtv.com/songs/60061142.mkv +涂紫凝-跌倒醒,http://em.21dtv.com/songs/60015389.mkv +李雪莱-低端玩,http://em.21dtv.com/songs/60127055.mkv +苏修仪-打电玩,http://em.21dtv.com/songs/60124399.mkv +麻吉弟弟-电动王,http://em.21dtv.com/songs/60015336.mkv +林忆莲-多得他,http://em.21dtv.com/songs/60133870.mkv +黄明志+胡桐语-低低头,http://em.21dtv.com/songs/60082836.mkv +郑秀文-多得他,http://em.21dtv.com/songs/60016117.mkv +郑秀文-多得他(演唱会),http://em.21dtv.com/songs/60016116.mkv +王菲-多得他(演唱会),http://em.21dtv.com/songs/60016115.mkv +龚琳娜-丢丢铜(演唱会),http://em.21dtv.com/songs/60015469.mkv +唐薇-大砀山,http://em.21dtv.com/songs/60127869.mkv +郭美美-对的事,http://em.21dtv.com/songs/60105438.mkv +棒棒堂-dance电司,http://em.21dtv.com/songs/60062099.mkv +那英-对的人,http://em.21dtv.com/songs/60123222.mkv +陈冰-等的人,http://em.21dtv.com/songs/60121064.mkv +戴爱玲-对的人,http://em.21dtv.com/songs/60016005.mkv +叶丽仪-叮当曲(演唱会),http://em.21dtv.com/songs/60015433.mkv +杜德伟-荡得起,http://em.21dtv.com/songs/60014682.mkv +康康-电灯泡(演唱会)(无原唱),http://em.21dtv.com/songs/60015335.mkv +李芊慧-等待你(无原唱),http://em.21dtv.com/songs/60014913.mkv +阿牛-大肚腩,http://em.21dtv.com/songs/60013915.mkv +胡岭+徐玲-点大麦,http://em.21dtv.com/songs/60069354.mkv +王雪晶-豆豆龙,http://em.21dtv.com/songs/60015755.mkv +范晓萱-豆豆龙,http://em.21dtv.com/songs/60015754.mkv +赵晓潭-大斗笠,http://em.21dtv.com/songs/60013914.mkv +潘阳-大道理,http://em.21dtv.com/songs/60013882.mkv +谢雷-定定红,http://em.21dtv.com/songs/60015455.mkv +佚名-等电话,http://em.21dtv.com/songs/60014943.mkv +陈百潭-等电话,http://em.21dtv.com/songs/60014942.mkv +刀郎-大敦煌,http://em.21dtv.com/songs/60013916.mkv +王雪晶-打电话,http://em.21dtv.com/songs/60013759.mkv +蒋小涵-打电话,http://em.21dtv.com/songs/60013758.mkv +佚名-dlalah di hati,http://em.21dtv.com/songs/60001254.mkv +焦集-代代歌,http://em.21dtv.com/songs/60119787.mkv +王雅洁-叮当歌,http://em.21dtv.com/songs/60080742.mkv +童唱-颠倒歌,http://em.21dtv.com/songs/60015293.mkv +小龙女-弟弟乖,http://em.21dtv.com/songs/60015142.mkv +农夫-大冬瓜,http://em.21dtv.com/songs/60013913.mkv +李逸朗+黎诺懿-大冬瓜,http://em.21dtv.com/songs/60013912.mkv +朱咪咪-多多福(演唱会),http://em.21dtv.com/songs/60016118.mkv +满文军-对对飞,http://em.21dtv.com/songs/60016008.mkv +韩磊-对对飞,http://em.21dtv.com/songs/60016007.mkv +林绫-兜兜风,http://em.21dtv.com/songs/60015730.mkv +马博+汪茜-怼怼怼,http://em.21dtv.com/songs/60136001.mkv +秀兰玛雅-滴答滴,http://em.21dtv.com/songs/60127247.mkv +GALA-点豆豆,http://em.21dtv.com/songs/60123473.mkv +BIG PAPA-堵堵堵,http://em.21dtv.com/songs/60122346.mkv +Boyfriend-点点点,http://em.21dtv.com/songs/60119109.mkv +苏小花-多得多,http://em.21dtv.com/songs/60118866.mkv +金敏胜-咚咚咚,http://em.21dtv.com/songs/60116307.mkv +15.5-答答答,http://em.21dtv.com/songs/60114932.mkv +郑冰冰-嗲嗲哒,http://em.21dtv.com/songs/60111435.mkv +GALA乐队+小臭臭代雯奇+杨砚铎+王菱萱-点豆豆,http://em.21dtv.com/songs/60107407.mkv +尹光-大笪地,http://em.21dtv.com/songs/60089823.mkv +许哲佩-滴滴滴,http://em.21dtv.com/songs/60088636.mkv +高瑜-当当当,http://em.21dtv.com/songs/60080146.mkv +何龙雨-对对对,http://em.21dtv.com/songs/60075252.mkv +吴涤清-叮叮当(演唱会),http://em.21dtv.com/songs/60066964.mkv +陈雷-丢丢弹,http://em.21dtv.com/songs/60015467.mkv +佚名-丢丢咚,http://em.21dtv.com/songs/60015464.mkv +郑秀文-叮叮当,http://em.21dtv.com/songs/60015434.mkv +泳儿-电灯胆,http://em.21dtv.com/songs/60015334.mkv +邓丽欣-电灯胆,http://em.21dtv.com/songs/60015333.mkv +邓丽欣-电灯胆(演唱会),http://em.21dtv.com/songs/60015332.mkv +萧煌奇-点点点,http://em.21dtv.com/songs/60015299.mkv +魏如萱-等等等,http://em.21dtv.com/songs/60014940.mkv +张学友-道道道(演唱会),http://em.21dtv.com/songs/60014773.mkv +雨儿-哒哒哒,http://em.21dtv.com/songs/60013704.mkv +容祖儿-dun dun dun,http://em.21dtv.com/songs/60001456.mkv +郭书瑶-di di da,http://em.21dtv.com/songs/60001223.mkv +佚名-di da di,http://em.21dtv.com/songs/60001220.mkv +李玟-di da di,http://em.21dtv.com/songs/60001219.mkv +海鸣威-dance dance dance,http://em.21dtv.com/songs/60001133.mkv +王心凌-da da da,http://em.21dtv.com/songs/60001125.mkv +童星-da da da,http://em.21dtv.com/songs/60001124.mkv +梁洛施-da da da,http://em.21dtv.com/songs/60001123.mkv +陈冰-对的错,http://em.21dtv.com/songs/60120070.mkv +薛凯琪-叮叮车,http://em.21dtv.com/songs/60093126.mkv +易欣+孟杨-逗逗比,http://em.21dtv.com/songs/60116860.mkv +小沈龙-大东北,http://em.21dtv.com/songs/60085013.mkv +TWINS-ding dong bell,http://em.21dtv.com/songs/60001238.mkv +王蓉-抖抖傲,http://em.21dtv.com/songs/60111288.mkv +冯允谦-懂得爱,http://em.21dtv.com/songs/60105619.mkv +安晨妤-等待爱,http://em.21dtv.com/songs/60082822.mkv +AOK-等待爱,http://em.21dtv.com/songs/60014895.mkv +游牧人组合-大草原,http://em.21dtv.com/songs/60113826.mkv +湘佛莲-貂蝉吟,http://em.21dtv.com/songs/60075199.mkv +潘东亮-大草原,http://em.21dtv.com/songs/60075040.mkv +龙凤传奇-大草原,http://em.21dtv.com/songs/60071852.mkv +潘秀琼-搭错线,http://em.21dtv.com/songs/60013706.mkv +常艾非-淡出它,http://em.21dtv.com/songs/60106811.mkv +HEY SAY JUMP-dreams come true,http://em.21dtv.com/songs/60067875.mkv +S.E.S-dreams come true,http://em.21dtv.com/songs/60001431.mkv +李彩桦-断肠说,http://em.21dtv.com/songs/60015914.mkv +伍佰-断肠诗,http://em.21dtv.com/songs/60015913.mkv +江蕙-断肠诗,http://em.21dtv.com/songs/60015912.mkv +江蕙-断肠诗(演唱会),http://em.21dtv.com/songs/60015911.mkv +李琛-大城市,http://em.21dtv.com/songs/60013864.mkv +黑龙-稻草人,http://em.21dtv.com/songs/60132023.mkv +李夏怡-稻草人,http://em.21dtv.com/songs/60082814.mkv +高向鹏-渡船人,http://em.21dtv.com/songs/60033091.mkv +汪蕊-稻草人,http://em.21dtv.com/songs/60014783.mkv +林志颖-稻草人,http://em.21dtv.com/songs/60014782.mkv +李龙基-稻草人(演唱会),http://em.21dtv.com/songs/60014781.mkv +郑进一-稻草人(无原唱),http://em.21dtv.com/songs/60014780.mkv +一单上达-单程票,http://em.21dtv.com/songs/60099052.mkv +佚名-大车拼,http://em.21dtv.com/songs/60013862.mkv +许冠杰-断肠梦,http://em.21dtv.com/songs/60015909.mkv +雷有曜-断肠梦,http://em.21dtv.com/songs/60015908.mkv +HOTCHA-大场面,http://em.21dtv.com/songs/60013861.mkv +NEWTON FAULKNER-dream catch me,http://em.21dtv.com/songs/60001416.mkv +曲尔甲-滇藏路,http://em.21dtv.com/songs/60128061.mkv +王菲-打错了(演唱会),http://em.21dtv.com/songs/60013754.mkv +林忆莲-点唱机(新版),http://em.21dtv.com/songs/60097028.mkv +雍鉴君-大川江,http://em.21dtv.com/songs/60082777.mkv +叶瑷菱-点唱机,http://em.21dtv.com/songs/60015297.mkv +林忆莲-点唱机(演唱会),http://em.21dtv.com/songs/60015296.mkv +佚名-大冲击,http://em.21dtv.com/songs/60013868.mkv +CONWAY+JONI TWITTY-dont cry joni,http://em.21dtv.com/songs/60001314.mkv +谢采云-断肠红,http://em.21dtv.com/songs/60092091.mkv +陈浩德-断肠花(演唱会),http://em.21dtv.com/songs/60075239.mkv +吴莺音-断肠红(演唱会),http://em.21dtv.com/songs/60015907.mkv +王梓蘅-单程轨,http://em.21dtv.com/songs/60075098.mkv +陈小云-搭车歌,http://em.21dtv.com/songs/60013705.mkv +小筑+烟圈-渡春风,http://em.21dtv.com/songs/60129005.mkv +小筑-渡春风,http://em.21dtv.com/songs/60129004.mkv +庾澄庆-蛋炒饭,http://em.21dtv.com/songs/60014475.mkv +陈芬兰-豆菜底(无原唱),http://em.21dtv.com/songs/60069730.mkv +佚名-豆菜底(无原唱),http://em.21dtv.com/songs/60015753.mkv +大巴山民歌团-倒采茶,http://em.21dtv.com/songs/60132323.mkv +成于申-断肠词,http://em.21dtv.com/songs/60118594.mkv +儿歌-点虫虫,http://em.21dtv.com/songs/60092303.mkv +李创-断肠草,http://em.21dtv.com/songs/60065946.mkv +罗大佑-弹唱词(演唱会),http://em.21dtv.com/songs/60014466.mkv +罗大佑-弹唱词(无原唱),http://em.21dtv.com/songs/60014465.mkv +黎明-dna出错,http://em.21dtv.com/songs/60001256.mkv +零峰-大宠爱,http://em.21dtv.com/songs/60013869.mkv +韩丰-大悲咒,http://em.21dtv.com/songs/60135975.mkv +阿华-大悲咒,http://em.21dtv.com/songs/60109675.mkv +王二妮-大辫子,http://em.21dtv.com/songs/60102514.mkv +佛教歌曲-大悲咒,http://em.21dtv.com/songs/60089619.mkv +BOX-大笨钟,http://em.21dtv.com/songs/60079844.mkv +周杰伦-大笨钟,http://em.21dtv.com/songs/60071851.mkv +吴樾-多保重,http://em.21dtv.com/songs/60065950.mkv +黄耀明-带不走,http://em.21dtv.com/songs/60065921.mkv +高向鹏+傅振辉-大悲咒,http://em.21dtv.com/songs/60023342.mkv +胡佳琛-蛋白质,http://em.21dtv.com/songs/60014474.mkv +孙楠-代表作,http://em.21dtv.com/songs/60014254.mkv +关智斌-代表作,http://em.21dtv.com/songs/60014253.mkv +王菀之-大笨钟,http://em.21dtv.com/songs/60013849.mkv +郑秀文-大暴走,http://em.21dtv.com/songs/60013848.mkv +陆翊-第八天,http://em.21dtv.com/songs/60111478.mkv +苏永康-邸比特,http://em.21dtv.com/songs/60088541.mkv +邓颖芝-等半天,http://em.21dtv.com/songs/60014865.mkv +孙楠-搭把手,http://em.21dtv.com/songs/60109263.mkv +孙楠-搭把手,http://em.21dtv.com/songs/60108423.mkv +林圣男-断背山,http://em.21dtv.com/songs/60015906.mkv +BEYOND-打不死,http://em.21dtv.com/songs/60013752.mkv +BEYOND-打不死(演唱会),http://em.21dtv.com/songs/60013751.mkv +SHANIA TWAIN-dont be stupid(无原唱),http://em.21dtv.com/songs/60001303.mkv +李思琳-dont be shy(演唱会),http://em.21dtv.com/songs/60001301.mkv +丁当-倒不如,http://em.21dtv.com/songs/60082811.mkv +王洪兵-东北人,http://em.21dtv.com/songs/60070647.mkv +姜鹏-东北人,http://em.21dtv.com/songs/60015491.mkv +侯旭-东北人,http://em.21dtv.com/songs/60015490.mkv +小柯-对不起,http://em.21dtv.com/songs/60113422.mkv +贾乃亮-对不起,http://em.21dtv.com/songs/60112977.mkv +蒋姗倍-等不起,http://em.21dtv.com/songs/60112935.mkv +清清儿-对不起,http://em.21dtv.com/songs/60112082.mkv +清清儿-对不起,http://em.21dtv.com/songs/60109497.mkv +庄振凯-对不起,http://em.21dtv.com/songs/60075250.mkv +周杰伦-对不起,http://em.21dtv.com/songs/60015980.mkv +羽泉-对不起,http://em.21dtv.com/songs/60015979.mkv +王子-对不起,http://em.21dtv.com/songs/60015978.mkv +林子曦-对不起,http://em.21dtv.com/songs/60015977.mkv +黄乙玲-对不起,http://em.21dtv.com/songs/60015976.mkv +戴洛-对不起,http://em.21dtv.com/songs/60015975.mkv +吴克群-对不起(演唱会),http://em.21dtv.com/songs/60015972.mkv +顾凯-东北情,http://em.21dtv.com/songs/60015489.mkv +张峰奇-打棒球,http://em.21dtv.com/songs/60013746.mkv +袁忠山+王二妮-大拜年,http://em.21dtv.com/songs/60102720.mkv +郭建宁-当兵难,http://em.21dtv.com/songs/60086522.mkv +卢秀梅-大拜年,http://em.21dtv.com/songs/60013842.mkv +陈翔-到不了,http://em.21dtv.com/songs/60119025.mkv +陆蔚綝-到不了,http://em.21dtv.com/songs/60114194.mkv +王俊凯+王源-到不了,http://em.21dtv.com/songs/60106098.mkv +康康-到不了,http://em.21dtv.com/songs/60102188.mkv +OLIVIA ONG-大不了(At Worst),http://em.21dtv.com/songs/60101025.mkv +MR-等不了,http://em.21dtv.com/songs/60092183.mkv +何润东-躲不了,http://em.21dtv.com/songs/60087316.mkv +张祥洪-大不了,http://em.21dtv.com/songs/60082775.mkv +李魏西-等不来,http://em.21dtv.com/songs/60075146.mkv +李代沫-到不了,http://em.21dtv.com/songs/60075128.mkv +AOA-大不了,http://em.21dtv.com/songs/60075039.mkv +裴紫绮-大不了,http://em.21dtv.com/songs/60064093.mkv +周鹏-咚巴啦,http://em.21dtv.com/songs/60015622.mkv +范玮琪-到不了,http://em.21dtv.com/songs/60014723.mkv +吕薇-当兵来,http://em.21dtv.com/songs/60014514.mkv +群星-大不了,http://em.21dtv.com/songs/60013856.mkv +王麟+新街口组合-大宝剑,http://em.21dtv.com/songs/60110414.mkv +王麟+新街口组-大宝剑,http://em.21dtv.com/songs/60104325.mkv +徐怀钰+JUN-等不及,http://em.21dtv.com/songs/60014874.mkv +王曼力-东北虎,http://em.21dtv.com/songs/60115296.mkv +范逸臣-躲不过,http://em.21dtv.com/songs/60016249.mkv +王建杰-东北风,http://em.21dtv.com/songs/60015488.mkv +麦穗-大边防,http://em.21dtv.com/songs/60013850.mkv +郑秀文-大报复,http://em.21dtv.com/songs/60013847.mkv +彭清-得不到,http://em.21dtv.com/songs/60121693.mkv +落落-day by day,http://em.21dtv.com/songs/60082130.mkv +韦星弟-丢不掉,http://em.21dtv.com/songs/60075208.mkv +T ARA-day by day,http://em.21dtv.com/songs/60069072.mkv +贾立怡-对不对,http://em.21dtv.com/songs/60015970.mkv +陈百强-对不对,http://em.21dtv.com/songs/60015969.mkv +冯德伦-动不动,http://em.21dtv.com/songs/60015645.mkv +杨采妮-懂不懂,http://em.21dtv.com/songs/60015628.mkv +罗嘉良-等不到,http://em.21dtv.com/songs/60014867.mkv +少女时代-day by day,http://em.21dtv.com/songs/60001169.mkv +佚名-dont be cruel,http://em.21dtv.com/songs/60001300.mkv +芭比-dont be cool,http://em.21dtv.com/songs/60001299.mkv +喜波-大宝贝,http://em.21dtv.com/songs/60131288.mkv +PLAYAZ CIRCLE+LIL WA-duffle bag boy,http://em.21dtv.com/songs/60001454.mkv +黄妃-淡薄啊,http://em.21dtv.com/songs/60014446.mkv +AIR SUPPLY-dont be afraid(演唱会),http://em.21dtv.com/songs/60001298.mkv +MY NAME-Day By Day,http://em.21dtv.com/songs/60099685.mkv +佚名-dream about you(无原唱),http://em.21dtv.com/songs/60001412.mkv +SANTANA+WYCLEF+AVICII+ALEXANDRE PIRES-Dar Um Jeito,http://em.21dtv.com/songs/60101031.mkv +GARNET CROW-doing all right !,http://em.21dtv.com/songs/60002897.mkv +佚名-diamond and rust,http://em.21dtv.com/songs/60001224.mkv +钟昀呈-DANCING GOOD GOOD,http://em.21dtv.com/songs/60096853.mkv +陈浩德-dancing all night(演唱会),http://em.21dtv.com/songs/60073099.mkv +佚名-黛安娜,http://em.21dtv.com/songs/60014304.mkv +佚名-戴安娜,http://em.21dtv.com/songs/60014299.mkv +CELINE DIONL-drove all nihgt,http://em.21dtv.com/songs/60001448.mkv +谢金燕-dancing all night,http://em.21dtv.com/songs/60001141.mkv +太极乐队-dance all night(演唱会),http://em.21dtv.com/songs/60001132.mkv +X+DREAM-dream about me(无原唱),http://em.21dtv.com/songs/60001411.mkv +王不火-大安吉,http://em.21dtv.com/songs/60118763.mkv +KASABIAN-days are forgotten,http://em.21dtv.com/songs/60063572.mkv +后来者-等啊等,http://em.21dtv.com/songs/60101286.mkv +麻吉弟弟-daddy 95,http://em.21dtv.com/songs/60001128.mkv +卓依婷-春之最,http://em.21dtv.com/songs/60087471.mkv +周燕君-春之韵,http://em.21dtv.com/songs/60064079.mkv +C君-吹挚友,http://em.21dtv.com/songs/60013211.mkv +张羽伟-出状元(无原唱),http://em.21dtv.com/songs/60012979.mkv +张春桐-慈中心(无原唱),http://em.21dtv.com/songs/60013441.mkv +陈耀川-赤子心,http://em.21dtv.com/songs/60012827.mkv +周传雄-错在我,http://em.21dtv.com/songs/60013703.mkv +陈诗慧-错在我,http://em.21dtv.com/songs/60013702.mkv +张梓瑶-城中事,http://em.21dtv.com/songs/60131408.mkv +SNH48-虫之诗,http://em.21dtv.com/songs/60109886.mkv +容中尔甲-出征伤,http://em.21dtv.com/songs/60062877.mkv +邹文正-城中人,http://em.21dtv.com/songs/60063502.mkv +井柏然-超自然,http://em.21dtv.com/songs/60012420.mkv +孙砾-赤子情,http://em.21dtv.com/songs/60112630.mkv +钟佳宜-成长曲,http://em.21dtv.com/songs/60012583.mkv +李芝芬-扯支票,http://em.21dtv.com/songs/60091367.mkv +李芝芬+李恩来-扯支票,http://em.21dtv.com/songs/60091363.mkv +李恩来+李芝芬-扯支票,http://em.21dtv.com/songs/60091314.mkv +佚名-池中萍,http://em.21dtv.com/songs/60012775.mkv +谢采妘-春之梦,http://em.21dtv.com/songs/60013379.mkv +杨愿明-春之恋,http://em.21dtv.com/songs/60112017.mkv +索南扎西-川藏路,http://em.21dtv.com/songs/60061108.mkv +庄学忠-春之花,http://em.21dtv.com/songs/60013378.mkv +李宇春-存在感,http://em.21dtv.com/songs/60122850.mkv +龙世杰-存在感,http://em.21dtv.com/songs/60108192.mkv +SHINE-唱这歌,http://em.21dtv.com/songs/60097076.mkv +李池湘-春之歌,http://em.21dtv.com/songs/60091319.mkv +佚名-春之歌,http://em.21dtv.com/songs/60013377.mkv +郭富城-唱这歌,http://em.21dtv.com/songs/60012360.mkv +郭富城-唱这歌(演唱会),http://em.21dtv.com/songs/60012358.mkv +沙宝亮-乘着风,http://em.21dtv.com/songs/60113793.mkv +欧子菱-乘着风(儿歌无原唱),http://em.21dtv.com/songs/60090026.mkv +孙燕姿-乘着风,http://em.21dtv.com/songs/60012646.mkv +黄大炜-乘着风(无原唱),http://em.21dtv.com/songs/60012645.mkv +叶可萌-才知道,http://em.21dtv.com/songs/60087517.mkv +刘一祯-出则弟,http://em.21dtv.com/songs/60070597.mkv +卓依婷-春之晨,http://em.21dtv.com/songs/60087470.mkv +八大巨星-春之晨,http://em.21dtv.com/songs/60075003.mkv +周璇-春之晨,http://em.21dtv.com/songs/60013376.mkv +无鸣-春之晨,http://em.21dtv.com/songs/60013375.mkv +贾森+卓卉勤-春之晨,http://em.21dtv.com/songs/60013374.mkv +杨智远-出走吧,http://em.21dtv.com/songs/60124110.mkv +乌兰图雅-草原醉,http://em.21dtv.com/songs/60121341.mkv +Dears-C语言,http://em.21dtv.com/songs/60118249.mkv +崔子格-崔莺莺,http://em.21dtv.com/songs/60095293.mkv +孙耀威-超友谊,http://em.21dtv.com/songs/60074914.mkv +王美茹-草原香,http://em.21dtv.com/songs/60074865.mkv +庞龙-草原香,http://em.21dtv.com/songs/60070574.mkv +阿怪-陈奕迅,http://em.21dtv.com/songs/60012525.mkv +姚成员-曾以为,http://em.21dtv.com/songs/60128948.mkv +万金龙-曾以为,http://em.21dtv.com/songs/60093950.mkv +THE CLICK FIVE-catch your wave,http://em.21dtv.com/songs/60000871.mkv +飞龙在天-成于申,http://em.21dtv.com/songs/60119053.mkv +TWINS-陈永仁,http://em.21dtv.com/songs/60092227.mkv +西部杨刚-草原情,http://em.21dtv.com/songs/60094686.mkv +佚名-茶叶青,http://em.21dtv.com/songs/60012219.mkv +洪慧盈-茶叶青,http://em.21dtv.com/songs/60012218.mkv +陈兰丽-茶叶青,http://em.21dtv.com/songs/60012217.mkv +阿其木格-草原情,http://em.21dtv.com/songs/60012085.mkv +雷安娜-彩云曲(演唱会),http://em.21dtv.com/songs/60011965.mkv +FLYLEAF-call you out,http://em.21dtv.com/songs/60073027.mkv +星月组合-尘缘梦,http://em.21dtv.com/songs/60135317.mkv +磬磬-痴与梦,http://em.21dtv.com/songs/60118816.mkv +徐元雄-草原美,http://em.21dtv.com/songs/60105074.mkv +晓月-尘缘梦,http://em.21dtv.com/songs/60074924.mkv +任玲-草原梦,http://em.21dtv.com/songs/60070570.mkv +沙宝亮+何迪-春与梦,http://em.21dtv.com/songs/60013366.mkv +江蕙-愁夜暝,http://em.21dtv.com/songs/60012898.mkv +王中平-愁夜梦,http://em.21dtv.com/songs/60012897.mkv +降央卓玛-草原恋,http://em.21dtv.com/songs/60074856.mkv +多元神话-草原恋,http://em.21dtv.com/songs/60074855.mkv +LITTLE MIX-change your life,http://em.21dtv.com/songs/60073043.mkv +聂建华-草原恋(演唱会),http://em.21dtv.com/songs/60068157.mkv +萧煌奇-出运啦,http://em.21dtv.com/songs/60064066.mkv +张咪-春又来(演唱会),http://em.21dtv.com/songs/60013365.mkv +齐峰-草原恋,http://em.21dtv.com/songs/60012080.mkv +德德玛-草原恋,http://em.21dtv.com/songs/60012079.mkv +庞龙-吹眼睛,http://em.21dtv.com/songs/60013210.mkv +唐雅-草原花,http://em.21dtv.com/songs/60074854.mkv +许强-草原花,http://em.21dtv.com/songs/60066902.mkv +阿尔斯楞-草原魂,http://em.21dtv.com/songs/60061091.mkv +2NE1-clap your hands,http://em.21dtv.com/songs/60000947.mkv +JAMES BLUNT-carry you home,http://em.21dtv.com/songs/60000864.mkv +BY2-超勇敢,http://em.21dtv.com/songs/60113136.mkv +李娜-春又归,http://em.21dtv.com/songs/60106938.mkv +黄鸿升-超有感,http://em.21dtv.com/songs/60079918.mkv +ROBYN-call your girlfriend,http://em.21dtv.com/songs/60062140.mkv +巧千金-插秧歌,http://em.21dtv.com/songs/60012199.mkv +佚名-彩云归,http://em.21dtv.com/songs/60011962.mkv +陈百潭+凤娘-彩云飞,http://em.21dtv.com/songs/60123321.mkv +齐秦-彩云飞,http://em.21dtv.com/songs/60119077.mkv +陈百潭+凤娘-彩云飞,http://em.21dtv.com/songs/60114221.mkv +方少珊-彩云飞,http://em.21dtv.com/songs/60092756.mkv +阿玻-草原风,http://em.21dtv.com/songs/60012074.mkv +尤雅-彩云飞,http://em.21dtv.com/songs/60011961.mkv +邓丽君-彩云飞(演唱会),http://em.21dtv.com/songs/60011960.mkv +佚名-close your eyes,http://em.21dtv.com/songs/60000956.mkv +ELLA-差一点,http://em.21dtv.com/songs/60113149.mkv +刘德华-常言道,http://em.21dtv.com/songs/60012281.mkv +刘德华-常言道(演唱会),http://em.21dtv.com/songs/60012280.mkv +阿杜-差一点,http://em.21dtv.com/songs/60012246.mkv +光头大周-闯一闯,http://em.21dtv.com/songs/60126614.mkv +涂增源+许美兰-初一朝,http://em.21dtv.com/songs/60013036.mkv +佚名-猜一猜,http://em.21dtv.com/songs/60011883.mkv +樊少华-猜呀猜,http://em.21dtv.com/songs/60011882.mkv +安室奈美惠-can you celebrate(无原唱),http://em.21dtv.com/songs/60000793.mkv +丁当-差一步,http://em.21dtv.com/songs/60074871.mkv +枫舞+晓依-春心醉,http://em.21dtv.com/songs/60135446.mkv +薛之谦-初学者,http://em.21dtv.com/songs/60134202.mkv +薛之谦-初学者,http://em.21dtv.com/songs/60127367.mkv +枫舞+晓依-春心醉,http://em.21dtv.com/songs/60124142.mkv +薛之谦-初学者,http://em.21dtv.com/songs/60123140.mkv +薛之谦-初学者,http://em.21dtv.com/songs/60122094.mkv +郑劲松-长相依,http://em.21dtv.com/songs/60108052.mkv +段丽阳-丑小鸭,http://em.21dtv.com/songs/60100898.mkv +陈小云-春宵吟,http://em.21dtv.com/songs/60095988.mkv +曾晓薇-春宵吟,http://em.21dtv.com/songs/60095597.mkv +旺福-丑小鸭,http://em.21dtv.com/songs/60087927.mkv +双星-除夕夜,http://em.21dtv.com/songs/60074973.mkv +李风持-长相忆,http://em.21dtv.com/songs/60062586.mkv +林心如-长相忆,http://em.21dtv.com/songs/60057611.mkv +卓依婷-长相依,http://em.21dtv.com/songs/60057610.mkv +刘丽丽-长相依,http://em.21dtv.com/songs/60057609.mkv +佚名-除夕夜,http://em.21dtv.com/songs/60013061.mkv +杨子荣-除夕夜,http://em.21dtv.com/songs/60013060.mkv +童唱-丑小鸭,http://em.21dtv.com/songs/60012906.mkv +童唱-丑小鸭(无原唱),http://em.21dtv.com/songs/60012905.mkv +佳虹+小璇-炒新闻,http://em.21dtv.com/songs/60068174.mkv +郭修彧-抽象图,http://em.21dtv.com/songs/60132998.mkv +林育群+林美秀-粗线条,http://em.21dtv.com/songs/60099345.mkv +柯受良-粗线条,http://em.21dtv.com/songs/60013596.mkv +风语-常相随,http://em.21dtv.com/songs/60128590.mkv +徐梦晗-长相思,http://em.21dtv.com/songs/60118584.mkv +王麟-常相随,http://em.21dtv.com/songs/60107918.mkv +修竹-长相思,http://em.21dtv.com/songs/60093977.mkv +紫璇伊-长相思,http://em.21dtv.com/songs/60086486.mkv +S.H.E-长相思,http://em.21dtv.com/songs/60057608.mkv +梁汉文-错先生,http://em.21dtv.com/songs/60013700.mkv +张卫健-藏心事(无原唱),http://em.21dtv.com/songs/60012052.mkv +张敬轩-茶想曲,http://em.21dtv.com/songs/60133665.mkv +张敬轩-茶想曲,http://em.21dtv.com/songs/60087817.mkv +郭富城-唱下去(演唱会),http://em.21dtv.com/songs/60012348.mkv +罗百吉+宝贝-chiqita 小妞,http://em.21dtv.com/songs/60000921.mkv +蔡凤凰-春宵梦,http://em.21dtv.com/songs/60095890.mkv +杜大雄-池小姐,http://em.21dtv.com/songs/60130446.mkv +门小强-穿心箭,http://em.21dtv.com/songs/60112331.mkv +纪绮昭-初相见,http://em.21dtv.com/songs/60104366.mkv +赖伟锋-初相见,http://em.21dtv.com/songs/60099503.mkv +陈伟霆-穿心箭,http://em.21dtv.com/songs/60093381.mkv +戴佩妮-臭小孩,http://em.21dtv.com/songs/60126928.mkv +艳阳天-初相会,http://em.21dtv.com/songs/60013033.mkv +磬玉-愁西湖,http://em.21dtv.com/songs/60012896.mkv +吴俊宏+向蕙玲-藏心肝,http://em.21dtv.com/songs/60114445.mkv +方瑞娥-吃西瓜,http://em.21dtv.com/songs/60064058.mkv +罗时丰-捶心肝,http://em.21dtv.com/songs/60013214.mkv +佟大为-持续的,http://em.21dtv.com/songs/60012793.mkv +朴铉斌-春香啊,http://em.21dtv.com/songs/60100109.mkv +棒棒堂-重新爱,http://em.21dtv.com/songs/60065498.mkv +姜为民-初雪爱,http://em.21dtv.com/songs/60013034.mkv +郑欣宜-宠物它,http://em.21dtv.com/songs/60099530.mkv +佚名-cant we try,http://em.21dtv.com/songs/60000850.mkv +古巨基-can we try(演唱会),http://em.21dtv.com/songs/60000792.mkv +佚名-can we try(无原唱),http://em.21dtv.com/songs/60000791.mkv +TEVIN CAMPBELL-can we talk,http://em.21dtv.com/songs/60000790.mkv +吴申梅-唱未刷,http://em.21dtv.com/songs/60071826.mkv +宋祖英-唱文山,http://em.21dtv.com/songs/60012347.mkv +佚名-唱袜煞,http://em.21dtv.com/songs/60012345.mkv +佚名-出外人,http://em.21dtv.com/songs/60012972.mkv +林晓培-come with me,http://em.21dtv.com/songs/60001011.mkv +佚名-come what may,http://em.21dtv.com/songs/60001010.mkv +吴钰璋-刺王僚,http://em.21dtv.com/songs/60013464.mkv +宋逸民-长头鬃,http://em.21dtv.com/songs/60074883.mkv +蔡义德-车头阵,http://em.21dtv.com/songs/60069302.mkv +尧迪-闯天涯,http://em.21dtv.com/songs/60115128.mkv +司徒兰芳+赵真-闯天涯,http://em.21dtv.com/songs/60099134.mkv +都市苍狼-闯天涯,http://em.21dtv.com/songs/60069303.mkv +THALIA-closer to you,http://em.21dtv.com/songs/60000958.mkv +赵之璧-close to you,http://em.21dtv.com/songs/60000955.mkv +佚名-close to you,http://em.21dtv.com/songs/60000954.mkv +欧定兴-close to you,http://em.21dtv.com/songs/60000953.mkv +莫文蔚-close to you,http://em.21dtv.com/songs/60000952.mkv +陈慧娴-close to you(演唱会),http://em.21dtv.com/songs/60000951.mkv +傅佩嘉-踩铜线(演唱会),http://em.21dtv.com/songs/60011977.mkv +WESTLIFE-change the world,http://em.21dtv.com/songs/60000900.mkv +ERIC CLAPTON-change the world,http://em.21dtv.com/songs/60000899.mkv +谢雷+谢小鱼+谢小熊-出头天,http://em.21dtv.com/songs/60134232.mkv +五月天-出头天,http://em.21dtv.com/songs/60012964.mkv +李盈萱-出头天(无原唱),http://em.21dtv.com/songs/60012963.mkv +MC HAMMER-cant touch this,http://em.21dtv.com/songs/60000849.mkv +叶俊华-春天颂,http://em.21dtv.com/songs/60117601.mkv +丁于-藏头诗,http://em.21dtv.com/songs/60103839.mkv +THE WANTED-chasing the sun,http://em.21dtv.com/songs/60073045.mkv +含瑞-炽天使,http://em.21dtv.com/songs/60061105.mkv +TOM ODELL-cant pretend,http://em.21dtv.com/songs/60073033.mkv +刘亭婷+李霞+黄晨霞-come to me(演唱会),http://em.21dtv.com/songs/60069071.mkv +林依晨-come to me,http://em.21dtv.com/songs/60001004.mkv +RICKY MARTIN-come to me,http://em.21dtv.com/songs/60001003.mkv +JOHNNY MATHIS-come to me,http://em.21dtv.com/songs/60001002.mkv +张惠妹-春天里,http://em.21dtv.com/songs/60130312.mkv +哈林战队-春天里,http://em.21dtv.com/songs/60115066.mkv +汪峰-春天里,http://em.21dtv.com/songs/60107021.mkv +黄琦雯-春天里,http://em.21dtv.com/songs/60106497.mkv +张冬玲+冷漠-唱天籁,http://em.21dtv.com/songs/60105021.mkv +丁当-春天里,http://em.21dtv.com/songs/60101851.mkv +叶世荣-从头来,http://em.21dtv.com/songs/60087514.mkv +黄勇-春天里,http://em.21dtv.com/songs/60069316.mkv +汪峰-春天里(演唱会),http://em.21dtv.com/songs/60063007.mkv +庄学忠-春天里,http://em.21dtv.com/songs/60013345.mkv +旭日阳刚-春天里,http://em.21dtv.com/songs/60013344.mkv +汪峰-春天里,http://em.21dtv.com/songs/60013343.mkv +李福山-春天里,http://em.21dtv.com/songs/60013342.mkv +费玉清-春天里,http://em.21dtv.com/songs/60013341.mkv +旭日阳刚-春天里(演唱会),http://em.21dtv.com/songs/60013340.mkv +陈雷-吃头路,http://em.21dtv.com/songs/60012663.mkv +何杰-蔡廷锴,http://em.21dtv.com/songs/60117546.mkv +王建杰-刺桐花,http://em.21dtv.com/songs/60086503.mkv +唐子晴-刺痛感,http://em.21dtv.com/songs/60106725.mkv +童唱-炊甜糕,http://em.21dtv.com/songs/60013212.mkv +宝鬘觉华-钗头凤,http://em.21dtv.com/songs/60133584.mkv +王星策+闲踏清凉月-钗头凤,http://em.21dtv.com/songs/60111270.mkv +薛之谦-叉头凤,http://em.21dtv.com/songs/60089468.mkv +鲍国-钗头凤,http://em.21dtv.com/songs/60080896.mkv +谢金燕-长头发,http://em.21dtv.com/songs/60074882.mkv +宋逸民-长头发,http://em.21dtv.com/songs/60070579.mkv +张宇-长头发(演唱会),http://em.21dtv.com/songs/60057606.mkv +许哲佩-长头发(演唱会),http://em.21dtv.com/songs/60057605.mkv +薛之谦-钗头凤,http://em.21dtv.com/songs/60012249.mkv +黄依群-叉头风,http://em.21dtv.com/songs/60012195.mkv +儿歌-春天到,http://em.21dtv.com/songs/60090639.mkv +李雨儿-朝圣者,http://em.21dtv.com/songs/60124095.mkv +康万生+赵葆秀-赤桑镇,http://em.21dtv.com/songs/60012820.mkv +陶静-采桑谣,http://em.21dtv.com/songs/60112372.mkv +佚名-采桑叶,http://em.21dtv.com/songs/60011918.mkv +陈静-长寿乡,http://em.21dtv.com/songs/60094332.mkv +五月天-宠上天,http://em.21dtv.com/songs/60012878.mkv +袁东方-潮汕人,http://em.21dtv.com/songs/60063305.mkv +熊天平-藏书人,http://em.21dtv.com/songs/60012051.mkv +格格-出塞曲,http://em.21dtv.com/songs/60131564.mkv +汤媛媛-潮水情,http://em.21dtv.com/songs/60080267.mkv +闫金玲-出塞曲,http://em.21dtv.com/songs/60074962.mkv +李玉刚-出塞曲(演唱会),http://em.21dtv.com/songs/60065904.mkv +格格-出塞曲,http://em.21dtv.com/songs/60062381.mkv +张清芳-出塞曲,http://em.21dtv.com/songs/60012959.mkv +蔡琴-出塞曲(HD演唱会),http://em.21dtv.com/songs/60012958.mkv +LMFAO-champagne showers natali,http://em.21dtv.com/songs/60062098.mkv +网络歌手-cs十年,http://em.21dtv.com/songs/60001113.mkv +许嵩-尘世美,http://em.21dtv.com/songs/60012490.mkv +佚名-come saturday morning,http://em.21dtv.com/songs/60001000.mkv +黄格选-春水流,http://em.21dtv.com/songs/60013311.mkv +黄格选-春水流(演唱会),http://em.21dtv.com/songs/60013310.mkv +孙晰然-采石记,http://em.21dtv.com/songs/60130243.mkv +西瓜JUN-长生诀,http://em.21dtv.com/songs/60128385.mkv +蔡义德-尘世镜,http://em.21dtv.com/songs/60082716.mkv +方皓玟-超生记,http://em.21dtv.com/songs/60012405.mkv +陶婷-茶神话,http://em.21dtv.com/songs/60123333.mkv +唐妍-长寿花,http://em.21dtv.com/songs/60116674.mkv +南征北战+米线乐团-唱首歌,http://em.21dtv.com/songs/60104860.mkv +GIRLS ALOUD-cant speak french(演唱会),http://em.21dtv.com/songs/60082117.mkv +MC利哥+岑雨桥+张振宇-财神到,http://em.21dtv.com/songs/60132104.mkv +许冠英-财神到,http://em.21dtv.com/songs/60093145.mkv +吴依琳-财神到,http://em.21dtv.com/songs/60074820.mkv +潘玮柏-次世代(舞曲版),http://em.21dtv.com/songs/60066931.mkv +佚名-财神到,http://em.21dtv.com/songs/60011894.mkv +杨迎-财神到,http://em.21dtv.com/songs/60011893.mkv +区瑞强-财神到,http://em.21dtv.com/songs/60011892.mkv +柳博+魏依曼-财神到,http://em.21dtv.com/songs/60011891.mkv +林子祥-财神到,http://em.21dtv.com/songs/60011890.mkv +温拿乐队-财神到(演唱会),http://em.21dtv.com/songs/60011889.mkv +谭咏麟+李克勤-财神到(演唱会),http://em.21dtv.com/songs/60011888.mkv +安九+AKI阿杰-此生长,http://em.21dtv.com/songs/60082756.mkv +彭佳慧-cant stop christmas,http://em.21dtv.com/songs/60000839.mkv +陈艺鹏-出师表,http://em.21dtv.com/songs/60096938.mkv +庄学忠-叉烧包,http://em.21dtv.com/songs/60091016.mkv +吴介贤-叉烧包(演唱会),http://em.21dtv.com/songs/60074867.mkv +周蕙-叉烧包,http://em.21dtv.com/songs/60012194.mkv +谢金燕-叉烧包,http://em.21dtv.com/songs/60012193.mkv +5566+7朵花-cest si bon,http://em.21dtv.com/songs/60000889.mkv +关楚耀-潮人志,http://em.21dtv.com/songs/60092315.mkv +可米小子-超人心,http://em.21dtv.com/songs/60012404.mkv +谢雷-出日头,http://em.21dtv.com/songs/60012956.mkv +龙千玉-唱人生,http://em.21dtv.com/songs/60117421.mkv +YUI-che r ry,http://em.21dtv.com/songs/60032597.mkv +ALLISON-凑热闹,http://em.21dtv.com/songs/60087177.mkv +BY2-凑热闹(演唱会),http://em.21dtv.com/songs/60013595.mkv +刘贤维-成人礼,http://em.21dtv.com/songs/60093641.mkv +朴志胤-成人礼,http://em.21dtv.com/songs/60012571.mkv +AT17-成人礼(演唱会),http://em.21dtv.com/songs/60012570.mkv +谢安琪-愁人节,http://em.21dtv.com/songs/60012895.mkv +刘浩龙-愁人节,http://em.21dtv.com/songs/60012894.mkv +刘浩龙-愁人节(演唱会),http://em.21dtv.com/songs/60012893.mkv +谢安琪-愁人节(HD演唱会),http://em.21dtv.com/songs/60012892.mkv +法瑷-承认吧(无原唱),http://em.21dtv.com/songs/60012605.mkv +BRIAN MCFADDEN-chemical rush,http://em.21dtv.com/songs/60061968.mkv +贾青-痴情冢,http://em.21dtv.com/songs/60114804.mkv +沈建豪-痴情债,http://em.21dtv.com/songs/60099366.mkv +贾青-痴情冢,http://em.21dtv.com/songs/60097106.mkv +黑豹乐队-朝前走,http://em.21dtv.com/songs/60012424.mkv +苏永康-春去也,http://em.21dtv.com/songs/60065910.mkv +王瑞霞-纯情雨,http://em.21dtv.com/songs/60013397.mkv +方瑞娥-痴情雨,http://em.21dtv.com/songs/60012743.mkv +陈奕迅-猜情寻,http://em.21dtv.com/songs/60011873.mkv +海龟先生-草裙舞,http://em.21dtv.com/songs/60064037.mkv +何韵诗-痴情司,http://em.21dtv.com/songs/60062446.mkv +周迅+梁朝伟-猜情人,http://em.21dtv.com/songs/60064026.mkv +林玉英-痴情人(无原唱),http://em.21dtv.com/songs/60012726.mkv +陈雷-纯情曲(无原唱),http://em.21dtv.com/songs/60015734.mkv +范晓萱-出气球,http://em.21dtv.com/songs/60012947.mkv +张玮-春秋配,http://em.21dtv.com/songs/60113488.mkv +谢宜君-痴情女,http://em.21dtv.com/songs/60127403.mkv +王喜-踩亲你,http://em.21dtv.com/songs/60092976.mkv +李雨-从前慢,http://em.21dtv.com/songs/60128097.mkv +刘欢-从前慢,http://em.21dtv.com/songs/60109184.mkv +刘欢-从前慢,http://em.21dtv.com/songs/60108343.mkv +黄小青-纯情梦(无原唱),http://em.21dtv.com/songs/60094635.mkv +叶启田-纯情梦(无原唱),http://em.21dtv.com/songs/60077488.mkv +扬哲-痴情梦,http://em.21dtv.com/songs/60070592.mkv +佚名-纯情梦(无原唱),http://em.21dtv.com/songs/60013391.mkv +傅振辉+黄思婷-痴情梦,http://em.21dtv.com/songs/60012720.mkv +王晓敏-痴情泪,http://em.21dtv.com/songs/60112110.mkv +金岩-唱起来,http://em.21dtv.com/songs/60084971.mkv +陈浩德+吕珊-痴情泪(演唱会),http://em.21dtv.com/songs/60074948.mkv +蔡琴-痴情泪,http://em.21dtv.com/songs/60012719.mkv +倪安东-藏起来,http://em.21dtv.com/songs/60012050.mkv +张蓉蓉-痴情酒,http://em.21dtv.com/songs/60012717.mkv +白冰冰-痴情酒,http://em.21dtv.com/songs/60012716.mkv +江蕙-痴情花,http://em.21dtv.com/songs/60095747.mkv +佚名-痴情花,http://em.21dtv.com/songs/60012713.mkv +伍卫国-痴情恨(演唱会),http://em.21dtv.com/songs/60012710.mkv +郑仲茵+罗文聪-痴情汉,http://em.21dtv.com/songs/60012708.mkv +马珂-楚情歌,http://em.21dtv.com/songs/60117383.mkv +儿歌-猜拳歌,http://em.21dtv.com/songs/60090644.mkv +阿轮-痴情关,http://em.21dtv.com/songs/60074945.mkv +孙淑媚-痴情歌,http://em.21dtv.com/songs/60012705.mkv +童唱-猜拳歌(无原唱),http://em.21dtv.com/songs/60011875.mkv +张秀卿+蔡小虎-痴情胆,http://em.21dtv.com/songs/60012690.mkv +董贞-苍穹变,http://em.21dtv.com/songs/60118021.mkv +罗志祥-操盘手(演唱会),http://em.21dtv.com/songs/60012054.mkv +童唱-country park ride,http://em.21dtv.com/songs/60001051.mkv +毛阿敏-闯平川,http://em.21dtv.com/songs/60013203.mkv +USHER-confessions part 2,http://em.21dtv.com/songs/60001019.mkv +HEART-crazy on you,http://em.21dtv.com/songs/60001068.mkv +CHRISTINA AGUILERA-come on over,http://em.21dtv.com/songs/60000996.mkv +佚名-come on over(无原唱),http://em.21dtv.com/songs/60000995.mkv +CONNIE TALBOT-count on me,http://em.21dtv.com/songs/60073078.mkv +BRUNO MARS-count on me,http://em.21dtv.com/songs/60073077.mkv +孙耀威-count on me,http://em.21dtv.com/songs/60060780.mkv +WHITNEY HOUSTON+CECE-count on me,http://em.21dtv.com/songs/60001049.mkv +ENGELBERT HUMPERDINC-call on me,http://em.21dtv.com/songs/60000781.mkv +藤木直人-crime of love,http://em.21dtv.com/songs/60001084.mkv +ELTON JOHN-circle of life,http://em.21dtv.com/songs/60000943.mkv +A.BELL+V.CLARKE-chains of love(无原唱),http://em.21dtv.com/songs/60000894.mkv +BEYONCE KNOWLES-check on it,http://em.21dtv.com/songs/60000909.mkv +AZU-Circles Of Life,http://em.21dtv.com/songs/60098981.mkv +D.COVAY-chain of fools(无原唱),http://em.21dtv.com/songs/60000893.mkv +佚名-cindy oh cindy,http://em.21dtv.com/songs/60000941.mkv +CLINAH-come on boy,http://em.21dtv.com/songs/60063559.mkv +张萌萌-come on baby,http://em.21dtv.com/songs/60000992.mkv +吴雨霏-超男友,http://em.21dtv.com/songs/60110929.mkv +吴雨霏-超男友,http://em.21dtv.com/songs/60109223.mkv +王麟-臭男人,http://em.21dtv.com/songs/60082730.mkv +许美静-蠢女人,http://em.21dtv.com/songs/60013421.mkv +张震岳-臭男人,http://em.21dtv.com/songs/60012912.mkv +谢安琪-臭男人,http://em.21dtv.com/songs/60012911.mkv +黄义达-臭男人,http://em.21dtv.com/songs/60012910.mkv +张震岳-臭男人(演唱会),http://em.21dtv.com/songs/60012909.mkv +谢安琪-臭男人(演唱会),http://em.21dtv.com/songs/60012908.mkv +何佳-昌宁美,http://em.21dtv.com/songs/60094398.mkv +派伟俊-超能力,http://em.21dtv.com/songs/60132680.mkv +河图-陈年卷,http://em.21dtv.com/songs/60128168.mkv +陈柔希-潮女记,http://em.21dtv.com/songs/60068173.mkv +大巴山民歌团-长年歌,http://em.21dtv.com/songs/60132329.mkv +刘佳-闯男儿,http://em.21dtv.com/songs/60110014.mkv +张峰奇-承诺顿,http://em.21dtv.com/songs/60087810.mkv +胡莎莎-唱念爱,http://em.21dtv.com/songs/60098713.mkv +周璇-慈母心,http://em.21dtv.com/songs/60013437.mkv +叶启田-慈母心,http://em.21dtv.com/songs/60013436.mkv +儿歌-草莓娃,http://em.21dtv.com/songs/60089632.mkv +程响-出卖我,http://em.21dtv.com/songs/60064065.mkv +苏醒-苍茫vast,http://em.21dtv.com/songs/60012023.mkv +AS ONE-catch me up,http://em.21dtv.com/songs/60069069.mkv +大哲-闯码头,http://em.21dtv.com/songs/60110113.mkv +陈佩斯+朱时茂-吃面条,http://em.21dtv.com/songs/60090285.mkv +周迅-从明天,http://em.21dtv.com/songs/60013552.mkv +大哲-闯码头,http://em.21dtv.com/songs/60013202.mkv +S.H.E-催眠术,http://em.21dtv.com/songs/60013600.mkv +降央卓玛-慈母颂,http://em.21dtv.com/songs/60013435.mkv +白冰冰-唱袂煞,http://em.21dtv.com/songs/60012336.mkv +王磊-出门人,http://em.21dtv.com/songs/60012943.mkv +佚名-查某人,http://em.21dtv.com/songs/60012224.mkv +云泉法师-慈母桥,http://em.21dtv.com/songs/60013434.mkv +PIXIE LOTT-cry me out,http://em.21dtv.com/songs/60058718.mkv +格子兮-采梦女,http://em.21dtv.com/songs/60115248.mkv +CHERYL-call my name,http://em.21dtv.com/songs/60066274.mkv +陶晶莹-call my name(演唱会),http://em.21dtv.com/songs/60000779.mkv +吴雨霏-call me maybe(演唱会),http://em.21dtv.com/songs/60073026.mkv +CARLY RAE JEPSEN-call me maybe,http://em.21dtv.com/songs/60065557.mkv +李池湘-慈母泪(戏曲),http://em.21dtv.com/songs/60092807.mkv +佚名-聪明累,http://em.21dtv.com/songs/60013489.mkv +X JAPAN-crucify my love(无原唱),http://em.21dtv.com/songs/60001089.mkv +佚名-chotto matte kudasai,http://em.21dtv.com/songs/60000930.mkv +吴欢-草木间,http://em.21dtv.com/songs/60121496.mkv +SKEPTA-cross my heart,http://em.21dtv.com/songs/60001087.mkv +盘欣蕾-刺玫瑰,http://em.21dtv.com/songs/60130625.mkv +庄前+邓子非-草帽歌,http://em.21dtv.com/songs/60118541.mkv +外国民歌-草帽歌,http://em.21dtv.com/songs/60089756.mkv +毛宁-草帽歌,http://em.21dtv.com/songs/60012062.mkv +刘欢-草帽歌,http://em.21dtv.com/songs/60012061.mkv +韩磊-草帽歌(演唱会),http://em.21dtv.com/songs/60012060.mkv +陈茂丰-陈茂丰,http://em.21dtv.com/songs/60088913.mkv +郭颂-串门儿,http://em.21dtv.com/songs/60088795.mkv +佚名-慈母恩,http://em.21dtv.com/songs/60013432.mkv +ENRIQUE IGLESIAS-cuando me enamoro,http://em.21dtv.com/songs/60001115.mkv +KELLY CLARKSON-catch my breath,http://em.21dtv.com/songs/60073040.mkv +佚名-carry me away(无原唱),http://em.21dtv.com/songs/60000862.mkv +林峰-come 2 me,http://em.21dtv.com/songs/60000980.mkv +林峰-come 2 me(演唱会),http://em.21dtv.com/songs/60000979.mkv +静婷-采莲谣(演唱会),http://em.21dtv.com/songs/60082686.mkv +郑少秋-楚留香,http://em.21dtv.com/songs/60013072.mkv +郑少秋-楚留香(演唱会),http://em.21dtv.com/songs/60013071.mkv +慕容晓晓-除了我,http://em.21dtv.com/songs/60087898.mkv +汤骏业-拆礼物,http://em.21dtv.com/songs/60012248.mkv +周慧敏-cest la vie,http://em.21dtv.com/songs/60000888.mkv +齐豫-cest la vie,http://em.21dtv.com/songs/60000887.mkv +梁静茹-cest la vie,http://em.21dtv.com/songs/60000886.mkv +卢巧音-猜楼梯,http://em.21dtv.com/songs/60011872.mkv +黄堃-翠兰说,http://em.21dtv.com/songs/60118211.mkv +佚名-船螺声,http://em.21dtv.com/songs/60013156.mkv +陈雷-陈雷声,http://em.21dtv.com/songs/60012523.mkv +陈盈洁-船螺声,http://em.21dtv.com/songs/60005987.mkv +李娜-城里人,http://em.21dtv.com/songs/60070590.mkv +姚贝娜-采莲曲,http://em.21dtv.com/songs/60106755.mkv +其他-唱脸谱,http://em.21dtv.com/songs/60089153.mkv +新宝岛康乐队-车轮埔(无原唱),http://em.21dtv.com/songs/60012460.mkv +MICHAEL BUBLE-Close Your Eyes,http://em.21dtv.com/songs/60096153.mkv +若惜+唯一-除了你,http://em.21dtv.com/songs/60095072.mkv +云菲菲-除了你,http://em.21dtv.com/songs/60063337.mkv +韩宝仪-除了你,http://em.21dtv.com/songs/60013053.mkv +LISA-除了你,http://em.21dtv.com/songs/60013052.mkv +有感觉-错了吗,http://em.21dtv.com/songs/60124035.mkv +佚名-初恋梦,http://em.21dtv.com/songs/60013022.mkv +林良欢+沈建豪-初恋梦,http://em.21dtv.com/songs/60013021.mkv +[Group] +groupName=十六万歌曲MV等 - 21 +暴走萝莉-赤裸裸,http://em.21dtv.com/songs/60128059.mkv +郭宴-赤裸裸,http://em.21dtv.com/songs/60135834.mkv +毛泽少-赤裸裸,http://em.21dtv.com/songs/60116089.mkv +毕夏-赤裸裸,http://em.21dtv.com/songs/60112049.mkv +高佳-春来了,http://em.21dtv.com/songs/60111533.mkv +刘相松-春来了,http://em.21dtv.com/songs/60096203.mkv +四千金-春来了,http://em.21dtv.com/songs/60074998.mkv +朱孝天-错了路,http://em.21dtv.com/songs/60013685.mkv +郑钧-赤裸裸,http://em.21dtv.com/songs/60012818.mkv +郑钧-赤裸裸(演唱会),http://em.21dtv.com/songs/60012817.mkv +林泽丰-岔路口,http://em.21dtv.com/songs/60106020.mkv +李小飞-初恋海(无原唱),http://em.21dtv.com/songs/60095615.mkv +李嘉-初恋花,http://em.21dtv.com/songs/60095603.mkv +龙千玉-初恋花,http://em.21dtv.com/songs/60075485.mkv +巧千金-春联红,http://em.21dtv.com/songs/60013289.mkv +佚名-初恋海(无原唱),http://em.21dtv.com/songs/60013020.mkv +林子娟-痴恋花,http://em.21dtv.com/songs/60012678.mkv +丁当-踹来共,http://em.21dtv.com/songs/60013091.mkv +腾格尔-敕勒歌,http://em.21dtv.com/songs/60012835.mkv +罗百吉-吹喇叭,http://em.21dtv.com/songs/60112887.mkv +罗百吉-吹喇叭,http://em.21dtv.com/songs/60013209.mkv +陈彦妃-创可贴,http://em.21dtv.com/songs/60082741.mkv +NOEL-创可贴,http://em.21dtv.com/songs/60074987.mkv +易欣-残酷人,http://em.21dtv.com/songs/60011996.mkv +李伟宾-残酷人,http://em.21dtv.com/songs/60011995.mkv +SHE-超可能,http://em.21dtv.com/songs/60087217.mkv +S.H.E-超可能,http://em.21dtv.com/songs/60087213.mkv +陈帅-创客路,http://em.21dtv.com/songs/60114208.mkv +谢安琪-臭伉俪,http://em.21dtv.com/songs/60093177.mkv +王瑞淇-超空间,http://em.21dtv.com/songs/60118787.mkv +汪洋+伍佳丽-超快感,http://em.21dtv.com/songs/60070582.mkv +孙燕姿-超快感,http://em.21dtv.com/songs/60012390.mkv +何以奇-超口爱,http://em.21dtv.com/songs/60012389.mkv +DEAR JANE-草戒指,http://em.21dtv.com/songs/60109814.mkv +DEAR JANE-草戒指,http://em.21dtv.com/songs/60074845.mkv +神木与瞳-草戒指,http://em.21dtv.com/songs/60012058.mkv +李嘉+蔡义德-趁今夜,http://em.21dtv.com/songs/60087991.mkv +谭晶-长街宴,http://em.21dtv.com/songs/60057590.mkv +刘一祯-长江源,http://em.21dtv.com/songs/60057583.mkv +88颗芭乐籽-参绞刑(无原唱),http://em.21dtv.com/songs/60011984.mkv +杨宗纬-长镜头,http://em.21dtv.com/songs/60110293.mkv +梁玉嵘-闯经堂(戏曲),http://em.21dtv.com/songs/60092922.mkv +那英-长镜头,http://em.21dtv.com/songs/60062775.mkv +费玉清-长江水,http://em.21dtv.com/songs/60095091.mkv +刘斌-参军颂,http://em.21dtv.com/songs/60011985.mkv +秦杨-藏镜人,http://em.21dtv.com/songs/60012048.mkv +蔡秋凤-超级卖,http://em.21dtv.com/songs/60012379.mkv +李志-仓井空,http://em.21dtv.com/songs/60127006.mkv +顽童MJ116-超级酷,http://em.21dtv.com/songs/60104591.mkv +廖昌永+王莉-雏菊花,http://em.21dtv.com/songs/60129055.mkv +阎维文-从军歌,http://em.21dtv.com/songs/60088821.mkv +庞龙-从军歌,http://em.21dtv.com/songs/60013526.mkv +林隆璇-藏经阁,http://em.21dtv.com/songs/60012047.mkv +棒棒堂-藏经阁,http://em.21dtv.com/songs/60012046.mkv +林泽丰-曾记否,http://em.21dtv.com/songs/60106021.mkv +胖虎-成绩单,http://em.21dtv.com/songs/60012563.mkv +林二汶-出嫁词,http://em.21dtv.com/songs/60125765.mkv +董文华-长江长(演唱会),http://em.21dtv.com/songs/60057584.mkv +张靓颖-错就错,http://em.21dtv.com/songs/60013679.mkv +张寒-长江边,http://em.21dtv.com/songs/60126876.mkv +吴彦凝-传家宝,http://em.21dtv.com/songs/60108380.mkv +戴爱玲-超级爆,http://em.21dtv.com/songs/60084973.mkv +张欣奕-超级爆,http://em.21dtv.com/songs/60081464.mkv +N2O-超级掰,http://em.21dtv.com/songs/60069299.mkv +BEYONCE-crazy in love,http://em.21dtv.com/songs/60071584.mkv +BEYONCE KNOWLES-crazy in love,http://em.21dtv.com/songs/60001063.mkv +罗百吉-cozi believe,http://em.21dtv.com/songs/60001054.mkv +一绫-炒花枝,http://em.21dtv.com/songs/60012455.mkv +黄飞鹏-残魂吟,http://em.21dtv.com/songs/60106512.mkv +李池湘-春花艳,http://em.21dtv.com/songs/60091322.mkv +王克-催花雨,http://em.21dtv.com/songs/60080734.mkv +黄宇曛-彩虹雨,http://em.21dtv.com/songs/60011946.mkv +黄妃-唱乎爽,http://em.21dtv.com/songs/60123393.mkv +黄妃-唱乎爽,http://em.21dtv.com/songs/60116408.mkv +声纳-彩虹桥,http://em.21dtv.com/songs/60103995.mkv +汤梓茉-彩虹桥,http://em.21dtv.com/songs/60097080.mkv +李蕴-彩虹桥,http://em.21dtv.com/songs/60074829.mkv +佚名-彩虹情,http://em.21dtv.com/songs/60011942.mkv +罗凯莹-茶花女,http://em.21dtv.com/songs/60114725.mkv +越剧-城隍庙,http://em.21dtv.com/songs/60066914.mkv +何晟铭-彩虹了,http://em.21dtv.com/songs/60130079.mkv +郑伊健-撤哈拉,http://em.21dtv.com/songs/60093266.mkv +张伟文+汪明荃-採红菱,http://em.21dtv.com/songs/60087789.mkv +刁寒-采花郎,http://em.21dtv.com/songs/60011916.mkv +于文华+李福山-采红菱,http://em.21dtv.com/songs/60011914.mkv +青山-采红菱,http://em.21dtv.com/songs/60011913.mkv +李富山-采红菱,http://em.21dtv.com/songs/60011912.mkv +张伟文+汪明荃-采红菱(演唱会),http://em.21dtv.com/songs/60011911.mkv +黄中原+傅薇-采红菱(演唱会),http://em.21dtv.com/songs/60011910.mkv +CATALSYER-催化剂,http://em.21dtv.com/songs/60126519.mkv +王菲-翠湖寒,http://em.21dtv.com/songs/60091744.mkv +周毅+刘庚-楚汉魂,http://em.21dtv.com/songs/60074974.mkv +ALEXANDRA STAN-cliche(hush hush),http://em.21dtv.com/songs/60073051.mkv +戴佩妮-吹哗哗,http://em.21dtv.com/songs/60013208.mkv +张凤凤-残花恨,http://em.21dtv.com/songs/60011989.mkv +成骏-凑合过,http://em.21dtv.com/songs/60082763.mkv +许志豪-长恨歌,http://em.21dtv.com/songs/60069293.mkv +郑秀文-长恨歌,http://em.21dtv.com/songs/60057577.mkv +张振宇-长恨歌,http://em.21dtv.com/songs/60057576.mkv +张郎-唱红尘,http://em.21dtv.com/songs/60101084.mkv +东方健+婉君-唱红尘,http://em.21dtv.com/songs/60101038.mkv +焦庆军-春归雪,http://em.21dtv.com/songs/60094986.mkv +FREEZE-踩钢线,http://em.21dtv.com/songs/60011976.mkv +四分卫-超光速,http://em.21dtv.com/songs/60012375.mkv +郑秀文-冲过去,http://em.21dtv.com/songs/60120026.mkv +卫兰-错过你,http://em.21dtv.com/songs/60099829.mkv +佚名-春姑娘(无原唱),http://em.21dtv.com/songs/60013254.mkv +洪禄云+枫舞-春光美,http://em.21dtv.com/songs/60084993.mkv +佚名-春光美,http://em.21dtv.com/songs/60013260.mkv +潘晓峰-春光美,http://em.21dtv.com/songs/60013259.mkv +陈红-春光美(演唱会),http://em.21dtv.com/songs/60013258.mkv +吴若希-错过了,http://em.21dtv.com/songs/60013673.mkv +于志杰-查干花,http://em.21dtv.com/songs/60117533.mkv +苏亚-查干湖,http://em.21dtv.com/songs/60074869.mkv +顺子-cant get enough,http://em.21dtv.com/songs/60000819.mkv +原野-车鼓调,http://em.21dtv.com/songs/60012459.mkv +陈圣芬-愁更愁,http://em.21dtv.com/songs/60012891.mkv +杨竣-错过爱,http://em.21dtv.com/songs/60013667.mkv +董事长乐团-踹共!,http://em.21dtv.com/songs/60084990.mkv +王丽达-春风赞,http://em.21dtv.com/songs/60085683.mkv +ADELE-crazy for you,http://em.21dtv.com/songs/60071583.mkv +KYLEE-crazy for you,http://em.21dtv.com/songs/60063565.mkv +谷村奈南-crazy for you,http://em.21dtv.com/songs/60001061.mkv +MADONNA-crazy for you,http://em.21dtv.com/songs/60001060.mkv +靓舞精灵-春风说,http://em.21dtv.com/songs/60013244.mkv +张金钰-长发女,http://em.21dtv.com/songs/60064046.mkv +郑伊健-除非你,http://em.21dtv.com/songs/60013044.mkv +良一-出发啦,http://em.21dtv.com/songs/60064064.mkv +胡雯-超负荷,http://em.21dtv.com/songs/60012374.mkv +RICK ASTLEY-cry for help,http://em.21dtv.com/songs/60001096.mkv +周璇-厨房歌,http://em.21dtv.com/songs/60013063.mkv +佚名-吃饭歌(无原唱),http://em.21dtv.com/songs/60012656.mkv +痛仰乐队-冲锋队,http://em.21dtv.com/songs/60129439.mkv +J.Arie(雷琛瑜)-出发点,http://em.21dtv.com/songs/60106544.mkv +方大同-春风吹,http://em.21dtv.com/songs/60013231.mkv +李依娃-虫儿飞,http://em.21dtv.com/songs/60125693.mkv +鹿晗+张淇-虫儿飞,http://em.21dtv.com/songs/60119068.mkv +郑伊健-虫儿飞,http://em.21dtv.com/songs/60012870.mkv +罗百吉-超低音,http://em.21dtv.com/songs/60012373.mkv +容祖儿-赤地雪,http://em.21dtv.com/songs/60012807.mkv +谭咏麟-触电舞(HD演唱会),http://em.21dtv.com/songs/60013088.mkv +蔡义德-厝的人,http://em.21dtv.com/songs/60084667.mkv +陈僖仪-错的人,http://em.21dtv.com/songs/60080911.mkv +萧亚轩-错的人,http://em.21dtv.com/songs/60013654.mkv +容祖儿-充电器,http://em.21dtv.com/songs/60071841.mkv +许嵩-拆东墙,http://em.21dtv.com/songs/60012247.mkv +周丽淇-猜灯谜,http://em.21dtv.com/songs/60092464.mkv +吕珊-春的梦,http://em.21dtv.com/songs/60013223.mkv +周丽淇-猜灯迷,http://em.21dtv.com/songs/60011871.mkv +张学友-corazon de melao,http://em.21dtv.com/songs/60001036.mkv +张学友-corazon de melao(演唱会),http://em.21dtv.com/songs/60001035.mkv +李宇春-corazon de melao(演唱会),http://em.21dtv.com/songs/60001034.mkv +王菀之-claire de lune(演唱会),http://em.21dtv.com/songs/60073047.mkv +左小祖咒-长的江,http://em.21dtv.com/songs/60126823.mkv +黎明-迟d见,http://em.21dtv.com/songs/60062583.mkv +吴涤清-澄道歌,http://em.21dtv.com/songs/60074942.mkv +许志安-错到底,http://em.21dtv.com/songs/60013653.mkv +何龙雨-城的灯,http://em.21dtv.com/songs/60012614.mkv +张韶涵-c大调,http://em.21dtv.com/songs/60001120.mkv +郑秀文-chotto等等(演唱会),http://em.21dtv.com/songs/60000931.mkv +火风-崔咚崔,http://em.21dtv.com/songs/60091670.mkv +谭咏麟-曾到此(演唱会),http://em.21dtv.com/songs/60012143.mkv +黄明志-吃大便,http://em.21dtv.com/songs/60096945.mkv +刘坤山-传递爱,http://em.21dtv.com/songs/60013120.mkv +蔡义德-蔡董ㄟ,http://em.21dtv.com/songs/60065879.mkv +顾凯-春常在,http://em.21dtv.com/songs/60080520.mkv +孙毅-长城谣,http://em.21dtv.com/songs/60057564.mkv +董文华-长城谣,http://em.21dtv.com/songs/60057563.mkv +佚名-春潮涌,http://em.21dtv.com/songs/60013218.mkv +东方传奇-寸草心,http://em.21dtv.com/songs/60064085.mkv +杨千嬅-处处吻,http://em.21dtv.com/songs/60113661.mkv +周璇-处处吻,http://em.21dtv.com/songs/60013078.mkv +杨千嬅-处处吻,http://em.21dtv.com/songs/60013077.mkv +杨千嬅-处处吻(演唱会),http://em.21dtv.com/songs/60013076.mkv +花鼓戏-采茶调,http://em.21dtv.com/songs/60090177.mkv +BERRYZ工房-cha cha sing,http://em.21dtv.com/songs/60070315.mkv +蒋明-吃茶去,http://em.21dtv.com/songs/60130714.mkv +黄训国-吃茶去,http://em.21dtv.com/songs/60114303.mkv +另类音乐人-茨厂街(演唱会),http://em.21dtv.com/songs/60013425.mkv +宋祖英-春茶花,http://em.21dtv.com/songs/60087690.mkv +佚名-赤诚花,http://em.21dtv.com/songs/60012801.mkv +佚名-cold cold heart(无原唱),http://em.21dtv.com/songs/60000969.mkv +梁焕波+黄淑媛-撑船歌,http://em.21dtv.com/songs/60012540.mkv +佚名-采茶歌,http://em.21dtv.com/songs/60011905.mkv +曹格-吹吹风,http://em.21dtv.com/songs/60082742.mkv +陈诗欣-层层叠,http://em.21dtv.com/songs/60121096.mkv +佚名-采茶灯,http://em.21dtv.com/songs/60011904.mkv +玖月奇迹-踩踩踩,http://em.21dtv.com/songs/60125967.mkv +玖月奇迹-踩踩踩,http://em.21dtv.com/songs/60123022.mkv +镜喜-错错错,http://em.21dtv.com/songs/60121045.mkv +李森-错错错,http://em.21dtv.com/songs/60116916.mkv +斯琴高丽-猜猜猜,http://em.21dtv.com/songs/60111932.mkv +吕雅芬-长城长,http://em.21dtv.com/songs/60110073.mkv +郑源+郑东-冲冲冲,http://em.21dtv.com/songs/60098809.mkv +夏國星+孫珮林-衝衝衝,http://em.21dtv.com/songs/60087622.mkv +林采缇-call call call,http://em.21dtv.com/songs/60086331.mkv +格登扎西-错错错,http://em.21dtv.com/songs/60070609.mkv +苏晴-鬃?,http://em.21dtv.com/songs/60066627.mkv +董文华-长城长,http://em.21dtv.com/songs/60057565.mkv +七郎-错错错,http://em.21dtv.com/songs/60013649.mkv +六哲+陈娟儿-错错错,http://em.21dtv.com/songs/60013648.mkv +陈娟儿-错错错,http://em.21dtv.com/songs/60013647.mkv +五月天-错错错(演唱会),http://em.21dtv.com/songs/60013646.mkv +六哲+陈娟儿-错错错(演唱会),http://em.21dtv.com/songs/60013645.mkv +张蓉蓉-冲冲冲,http://em.21dtv.com/songs/60012842.mkv +夏国星+孙佩林-冲冲冲,http://em.21dtv.com/songs/60012841.mkv +伍佰-冲冲冲,http://em.21dtv.com/songs/60012840.mkv +AT17-冲冲冲(演唱会),http://em.21dtv.com/songs/60012839.mkv +千百惠-痴痴缠,http://em.21dtv.com/songs/60012666.mkv +陈晓东-猜猜猜,http://em.21dtv.com/songs/60011868.mkv +陈晓东-猜猜猜(演唱会),http://em.21dtv.com/songs/60011867.mkv +叶倩文-cha cha cha(演唱会),http://em.21dtv.com/songs/60000890.mkv +BY2-藏不住,http://em.21dtv.com/songs/60080394.mkv +张国荣-从不知,http://em.21dtv.com/songs/60013502.mkv +刘德华-从不知,http://em.21dtv.com/songs/60013501.mkv +利绮-藏不住,http://em.21dtv.com/songs/60012043.mkv +李菓-残碧玉,http://em.21dtv.com/songs/60130438.mkv +猫依-唱不完,http://em.21dtv.com/songs/60113838.mkv +张菱+庄孝纬-吃饱未,http://em.21dtv.com/songs/60072044.mkv +GLORIA ESTEFAN-cuts both ways,http://em.21dtv.com/songs/60001119.mkv +谢莉婷-猜不透,http://em.21dtv.com/songs/60126205.mkv +T.Y.STAR乐团-藏宝图,http://em.21dtv.com/songs/60064034.mkv +张韶涵-猜不透,http://em.21dtv.com/songs/60011865.mkv +丁当-猜不透,http://em.21dtv.com/songs/60011864.mkv +王啸坤-长白山,http://em.21dtv.com/songs/60117029.mkv +云菲菲-长白山,http://em.21dtv.com/songs/60057553.mkv +潇斌-赤壁人,http://em.21dtv.com/songs/60107894.mkv +刘力扬-崇拜你,http://em.21dtv.com/songs/60012872.mkv +曾娇-采槟榔,http://em.21dtv.com/songs/60111139.mkv +苗苗-采槟榔,http://em.21dtv.com/songs/60096476.mkv +马亚丽-采槟榔,http://em.21dtv.com/songs/60090327.mkv +张靓颖-采槟榔,http://em.21dtv.com/songs/60089873.mkv +周璇-采槟榔,http://em.21dtv.com/songs/60011903.mkv +张凤凤-采槟榔,http://em.21dtv.com/songs/60011902.mkv +佚名-采槟榔,http://em.21dtv.com/songs/60011901.mkv +邓丽君-采槟榔,http://em.21dtv.com/songs/60011900.mkv +张燕-采槟榔(演唱会),http://em.21dtv.com/songs/60011899.mkv +胡美仪-采槟榔(演唱会),http://em.21dtv.com/songs/60011898.mkv +林文龙-从不哭,http://em.21dtv.com/songs/60013494.mkv +李克勤-丑八怪,http://em.21dtv.com/songs/60119650.mkv +薛之谦-丑八怪,http://em.21dtv.com/songs/60108882.mkv +花鼓戏-扯白歌,http://em.21dtv.com/songs/60090164.mkv +薛之谦-丑八怪,http://em.21dtv.com/songs/60081727.mkv +施孝荣-赤壁赋,http://em.21dtv.com/songs/60089919.mkv +TREY SONGZ-cant be friends,http://em.21dtv.com/songs/60000811.mkv +山野-差不多,http://em.21dtv.com/songs/60012239.mkv +谭嘉仪-差半步,http://em.21dtv.com/songs/60122127.mkv +陈展鹏-差半步,http://em.21dtv.com/songs/60105480.mkv +徐华凤-crazy芭比(无原唱),http://em.21dtv.com/songs/60001080.mkv +佚名-crash boom bang,http://em.21dtv.com/songs/60001055.mkv +王建房-长安夜,http://em.21dtv.com/songs/60130584.mkv +王建房-长安夜,http://em.21dtv.com/songs/60104306.mkv +TAYLOR SWIFT-cold as you,http://em.21dtv.com/songs/60066451.mkv +李蕴-宠爱我,http://em.21dtv.com/songs/60125723.mkv +B.WILSON-catch a wave(无原唱),http://em.21dtv.com/songs/60000869.mkv +佚名-错安排,http://em.21dtv.com/songs/60013642.mkv +MILEY CYRUS-Can't Be Tamed,http://em.21dtv.com/songs/60101023.mkv +黄义达-超爱你,http://em.21dtv.com/songs/60012369.mkv +林晓培-cry all night(演唱会)(无原唱),http://em.21dtv.com/songs/60001094.mkv +崔恕+赵佳霖-长安乱,http://em.21dtv.com/songs/60125455.mkv +赵佳霖+崔恕-长安乱,http://em.21dtv.com/songs/60119991.mkv +李晖-长安街,http://em.21dtv.com/songs/60082703.mkv +谢承佑-曾爱过,http://em.21dtv.com/songs/60127408.mkv +张可儿-藏爱阁,http://em.21dtv.com/songs/60080844.mkv +XY兄弟-长安长,http://em.21dtv.com/songs/60130018.mkv +迟志强-愁啊愁(演唱会),http://em.21dtv.com/songs/60012890.mkv +SIMON-coming around again,http://em.21dtv.com/songs/60001012.mkv +松山千春-长い夜(无原唱),http://em.21dtv.com/songs/60057552.mkv +KIRORO-长い问,http://em.21dtv.com/songs/60057551.mkv +张学友-白自在,http://em.21dtv.com/songs/60106833.mkv +莫文蔚-别再走,http://em.21dtv.com/songs/60091963.mkv +王凯骏-兵捉贼,http://em.21dtv.com/songs/60010874.mkv +林慧萍-别再走,http://em.21dtv.com/songs/60010777.mkv +林明祯-不占有,http://em.21dtv.com/songs/60116050.mkv +权振东-别这样,http://em.21dtv.com/songs/60106926.mkv +李玲玉-不在意,http://em.21dtv.com/songs/60095622.mkv +昊恩家家-不自由,http://em.21dtv.com/songs/60087929.mkv +家家+昊恩-不自由,http://em.21dtv.com/songs/60087694.mkv +吴淑敏+康康-不知影,http://em.21dtv.com/songs/60070559.mkv +张信哲-不再有,http://em.21dtv.com/songs/60011766.mkv +赵一玮-别这样,http://em.21dtv.com/songs/60010796.mkv +佚名-杯中影,http://em.21dtv.com/songs/60010105.mkv +陈小云-杯中影,http://em.21dtv.com/songs/60010104.mkv +郑中基-八爪鱼,http://em.21dtv.com/songs/60009500.mkv +钟舒漫-不在线,http://em.21dtv.com/songs/60074803.mkv +姜育恒-抱着我,http://em.21dtv.com/songs/60087639.mkv +林宸希-不再问,http://em.21dtv.com/songs/60011753.mkv +枫舞-不再逃,http://em.21dtv.com/songs/60071807.mkv +江若琳-变走他,http://em.21dtv.com/songs/60010532.mkv +江若琳-变走他(演唱会),http://em.21dtv.com/songs/60010531.mkv +苏西-抱子石,http://em.21dtv.com/songs/60118006.mkv +孙露-别再说,http://em.21dtv.com/songs/60115803.mkv +林孟宗-博仔声,http://em.21dtv.com/songs/60108622.mkv +孙露-别再说,http://em.21dtv.com/songs/60082631.mkv +顾峰-别再说,http://em.21dtv.com/songs/60061058.mkv +郑雪儿-别装傻,http://em.21dtv.com/songs/60010798.mkv +顾峰-别在说,http://em.21dtv.com/songs/60010789.mkv +陈黎明-别再说,http://em.21dtv.com/songs/60010766.mkv +蔡恒-保证书,http://em.21dtv.com/songs/60010033.mkv +张浩-保质期,http://em.21dtv.com/songs/60113478.mkv +小瑜-保质期,http://em.21dtv.com/songs/60110164.mkv +郑少秋-杯中情,http://em.21dtv.com/songs/60107270.mkv +谈芳兵-包子铺(HD),http://em.21dtv.com/songs/10012810.mkv +谈芳兵-包子铺,http://em.21dtv.com/songs/60096497.mkv +张震岳-抱着你,http://em.21dtv.com/songs/60080047.mkv +苏打绿-背着你,http://em.21dtv.com/songs/60010272.mkv +纵贯线-抱着你,http://em.21dtv.com/songs/60010076.mkv +庄振凯-八字命,http://em.21dtv.com/songs/60110176.mkv +郭旭-不找了,http://em.21dtv.com/songs/60134328.mkv +郑培钦-斑竹泪,http://em.21dtv.com/songs/60111440.mkv +龚琳娜-斑竹泪,http://em.21dtv.com/songs/60062389.mkv +郑秀文-不准哭,http://em.21dtv.com/songs/60011807.mkv +同恩-不准哭,http://em.21dtv.com/songs/60011806.mkv +侯晓松-不正经,http://em.21dtv.com/songs/60120334.mkv +陈学东-不再见,http://em.21dtv.com/songs/60108124.mkv +陈学东-不再见,http://em.21dtv.com/songs/60103680.mkv +陈学冬-不再见,http://em.21dtv.com/songs/60102887.mkv +侯梦亮-白子画,http://em.21dtv.com/songs/60115693.mkv +任贤齐-不在乎,http://em.21dtv.com/songs/60107481.mkv +任贤齐-不在乎,http://em.21dtv.com/songs/60101892.mkv +成凤-白贼话,http://em.21dtv.com/songs/60095534.mkv +袁凤瑛-不在乎,http://em.21dtv.com/songs/60011771.mkv +佚名-白贼话(无原唱),http://em.21dtv.com/songs/60009762.mkv +谢其国+连仁信-病子歌(无原唱),http://em.21dtv.com/songs/60093170.mkv +郁钧剑-兵之歌,http://em.21dtv.com/songs/60010873.mkv +彭音来-不知道,http://em.21dtv.com/songs/60119561.mkv +张挥-不知道,http://em.21dtv.com/songs/60105035.mkv +何维健-不值得,http://em.21dtv.com/songs/60101905.mkv +曾一鸣-不值得,http://em.21dtv.com/songs/60094914.mkv +喜波-不值得,http://em.21dtv.com/songs/60094032.mkv +王力宏-不着地,http://em.21dtv.com/songs/60091687.mkv +姜青涛-不值得,http://em.21dtv.com/songs/60074808.mkv +关楚耀-别再躲,http://em.21dtv.com/songs/60065855.mkv +梦飞船-不值得,http://em.21dtv.com/songs/60011801.mkv +强辩乐团-不知道,http://em.21dtv.com/songs/60011792.mkv +99乐团-不正常,http://em.21dtv.com/songs/60123426.mkv +糖糖乐团-半张床,http://em.21dtv.com/songs/60074615.mkv +萧敬腾-不正常(演唱会),http://em.21dtv.com/songs/60071810.mkv +沁心小筑-半张床,http://em.21dtv.com/songs/60071773.mkv +冰冰火-半张床,http://em.21dtv.com/songs/60071772.mkv +S.H.E-不在场,http://em.21dtv.com/songs/60011769.mkv +谢雨欣-不再爱,http://em.21dtv.com/songs/60092093.mkv +郎郎-不要走,http://em.21dtv.com/songs/60104476.mkv +郑丽欣-別要走,http://em.21dtv.com/songs/60093261.mkv +张国荣-不要知,http://em.21dtv.com/songs/60092576.mkv +东海-不要走,http://em.21dtv.com/songs/60071805.mkv +NAVI-不要走,http://em.21dtv.com/songs/60070556.mkv +孔令奇-不要再,http://em.21dtv.com/songs/60064020.mkv +贾晓晨-不要走,http://em.21dtv.com/songs/60011663.mkv +方丽盈-不要走,http://em.21dtv.com/songs/60011662.mkv +邓颖芝-别要走,http://em.21dtv.com/songs/60010749.mkv +阿译-不一样,http://em.21dtv.com/songs/60114184.mkv +李光洁+高露-不一样,http://em.21dtv.com/songs/60111154.mkv +刘雨潼-不一样,http://em.21dtv.com/songs/60093776.mkv +陶喆-不一样,http://em.21dtv.com/songs/60088918.mkv +李桂盈-不一样,http://em.21dtv.com/songs/60088021.mkv +陈佳-半月岩,http://em.21dtv.com/songs/60074614.mkv +陈思安+良山兄-播音员,http://em.21dtv.com/songs/60062273.mkv +卓义峰-不一样,http://em.21dtv.com/songs/60011675.mkv +李玖哲-不一样,http://em.21dtv.com/songs/60011674.mkv +高凌风-不一样(无原唱),http://em.21dtv.com/songs/60011673.mkv +CHANTAL KREVIAZUK-blue忧郁,http://em.21dtv.com/songs/60000638.mkv +张学友-悲与喜,http://em.21dtv.com/songs/60010152.mkv +张学友-悲与喜(演唱会),http://em.21dtv.com/songs/60010151.mkv +符杰荣-别以为,http://em.21dtv.com/songs/60110444.mkv +JAZMINE SULLIVAN-bust your windows,http://em.21dtv.com/songs/60063552.mkv +林志炫-不要问,http://em.21dtv.com/songs/60011629.mkv +许嵩-别咬我,http://em.21dtv.com/songs/60010747.mkv +张智成-保佑我,http://em.21dtv.com/songs/60010032.mkv +菲儿-不要停,http://em.21dtv.com/songs/60134179.mkv +东浩-不要停,http://em.21dtv.com/songs/60132159.mkv +东浩-不要停,http://em.21dtv.com/songs/60128734.mkv +LF兄弟-不要停,http://em.21dtv.com/songs/60109098.mkv +黄依群-碧云天,http://em.21dtv.com/songs/60010443.mkv +AMY GRANT-big yellow taxi,http://em.21dtv.com/songs/60000582.mkv +多亮-半忧伤,http://em.21dtv.com/songs/60084883.mkv +严爵-毕业生,http://em.21dtv.com/songs/60082621.mkv +额尔古纳乐队-白云诗,http://em.21dtv.com/songs/60074599.mkv +WISE+西野カナ-by your side,http://em.21dtv.com/songs/60073022.mkv +JIM JONES+RELL-blow your smoke,http://em.21dtv.com/songs/60072982.mkv +戴梅君-不愿散,http://em.21dtv.com/songs/60011716.mkv +李之芬-补衣裳,http://em.21dtv.com/songs/60010941.mkv +张明敏-毕业生,http://em.21dtv.com/songs/60010427.mkv +佚名-毕业生,http://em.21dtv.com/songs/60010426.mkv +SADE-by your side,http://em.21dtv.com/songs/60000751.mkv +董贞-半月琴,http://em.21dtv.com/songs/60074613.mkv +吴进法-甭怨且,http://em.21dtv.com/songs/60070531.mkv +黄耀明-不夜情,http://em.21dtv.com/songs/60011670.mkv +黄耀明-不夜情(演唱会),http://em.21dtv.com/songs/60011669.mkv +吉克隽逸-不要怕,http://em.21dtv.com/songs/60116624.mkv +张正扬-不要怕,http://em.21dtv.com/songs/60115153.mkv +杨光-不要怕,http://em.21dtv.com/songs/60082673.mkv +黄子华-不要怕,http://em.21dtv.com/songs/60011588.mkv +郭美美-不要怕,http://em.21dtv.com/songs/60011587.mkv +俞欣彤-不要怕(演唱会),http://em.21dtv.com/songs/60011586.mkv +姚莉-不要你,http://em.21dtv.com/songs/60089230.mkv +姚敏-不要你,http://em.21dtv.com/songs/60089227.mkv +童丽-别亦难,http://em.21dtv.com/songs/60074697.mkv +徐小凤-别亦难,http://em.21dtv.com/songs/60010751.mkv +萧福德-彼一暝(无原唱),http://em.21dtv.com/songs/60081074.mkv +小护士-be your man,http://em.21dtv.com/songs/60071571.mkv +甄妮-白羽毛,http://em.21dtv.com/songs/60009751.mkv +唐伟坚-白玉兰,http://em.21dtv.com/songs/60115067.mkv +蔡献华+朱险峰-不要脸,http://em.21dtv.com/songs/60082672.mkv +杨梓-白眼狼,http://em.21dtv.com/songs/60082581.mkv +黄鸿升-不预料,http://em.21dtv.com/songs/60080168.mkv +杨迦寓-毕业礼,http://em.21dtv.com/songs/60074670.mkv +KELLY CLARKSON-before your love,http://em.21dtv.com/songs/60072957.mkv +艾梦萌-不要恋,http://em.21dtv.com/songs/60011580.mkv +陶晶莹-不要脸,http://em.21dtv.com/songs/60011579.mkv +郑少秋-捕鱼郎,http://em.21dtv.com/songs/60010952.mkv +刘力扩-毕业了,http://em.21dtv.com/songs/60010424.mkv +JESSE MCCARTNEY-because you live,http://em.21dtv.com/songs/60000530.mkv +杜德伟-be your love,http://em.21dtv.com/songs/60000485.mkv +范玮琪+左安安-不要哭,http://em.21dtv.com/songs/60011569.mkv +王霏霏-不要急FANTASY,http://em.21dtv.com/songs/60128245.mkv +梁心颐+林采欣+刘思涵+潘辰-不遇见,http://em.21dtv.com/songs/60111207.mkv +梁理凯-毕业季,http://em.21dtv.com/songs/60108640.mkv +超级女声+夏颖-白羊纪,http://em.21dtv.com/songs/60090227.mkv +TRASH-百忧解,http://em.21dtv.com/songs/60074606.mkv +林晓培-不要紧,http://em.21dtv.com/songs/60011562.mkv +京晋Jucie-冰与火,http://em.21dtv.com/songs/60105574.mkv +洪荣宏+谢佩吟-白云花,http://em.21dtv.com/songs/60100917.mkv +张家辉-白与黑,http://em.21dtv.com/songs/60092596.mkv +卢巧音-白与黑,http://em.21dtv.com/songs/60092389.mkv +白若溪-白月光,http://em.21dtv.com/songs/60096934.mkv +沈文程-不应该,http://em.21dtv.com/songs/60095752.mkv +广播之友合唱团-毕业歌,http://em.21dtv.com/songs/60087744.mkv +孟楠-白月光,http://em.21dtv.com/songs/60081571.mkv +王宏恩-不勇敢,http://em.21dtv.com/songs/60011692.mkv +佚名-不应该,http://em.21dtv.com/songs/60011684.mkv +陈倩倩-不应该,http://em.21dtv.com/songs/60011683.mkv +童唱-捕鱼歌,http://em.21dtv.com/songs/60010951.mkv +花儿乐队-啵一个,http://em.21dtv.com/songs/60010934.mkv +熊卿才-毕业歌,http://em.21dtv.com/songs/60010420.mkv +额尔古纳乐队-毕业歌,http://em.21dtv.com/songs/60010419.mkv +张信哲-白月光,http://em.21dtv.com/songs/60009753.mkv +易慧-白月光,http://em.21dtv.com/songs/60009752.mkv +丁小芹-be your friend,http://em.21dtv.com/songs/60000484.mkv +钱红-不一定,http://em.21dtv.com/songs/60134363.mkv +铭鑫-不一定,http://em.21dtv.com/songs/60133015.mkv +Davichi-不要动,http://em.21dtv.com/songs/60101748.mkv +沙莎-不要等,http://em.21dtv.com/songs/60064018.mkv +青蛙乐队-不一定,http://em.21dtv.com/songs/60011672.mkv +彭佳慧-不一定,http://em.21dtv.com/songs/60011671.mkv +蔡济文-不要躲,http://em.21dtv.com/songs/60011543.mkv +潮潮-比翼蝶,http://em.21dtv.com/songs/60010387.mkv +HIT-5-不夜城,http://em.21dtv.com/songs/60086473.mkv +张克帆-不夜城,http://em.21dtv.com/songs/60011668.mkv +陈立珂-不夜城(演唱会),http://em.21dtv.com/songs/60011667.mkv +任贤齐-不要变,http://em.21dtv.com/songs/60011525.mkv +任贤齐-不要变(演唱会),http://em.21dtv.com/songs/60011524.mkv +陈小春-抱一抱,http://em.21dtv.com/songs/60010073.mkv +张也-别延安,http://em.21dtv.com/songs/60010745.mkv +糖兄妹-不想追(演唱会),http://em.21dtv.com/songs/60069276.mkv +张卫健-不想追,http://em.21dtv.com/songs/60011491.mkv +新疆民歌-不需要,http://em.21dtv.com/songs/60089898.mkv +江蕙-不想伊,http://em.21dtv.com/songs/60011486.mkv +曾心梅-不想伊,http://em.21dtv.com/songs/60011485.mkv +刘思涵-不想醒,http://em.21dtv.com/songs/60100776.mkv +任贤齐-不信邪,http://em.21dtv.com/songs/60064015.mkv +隆熙俊-步西厢,http://em.21dtv.com/songs/60011843.mkv +李李仁-不小心(无原唱),http://em.21dtv.com/songs/60011494.mkv +千百顺-别想他,http://em.21dtv.com/songs/60123708.mkv +高进-别想她,http://em.21dtv.com/songs/60062364.mkv +蔡丽津-伴相随,http://em.21dtv.com/songs/60120925.mkv +杨静+江志丰-伴相思,http://em.21dtv.com/songs/60074617.mkv +游喧-不想睡,http://em.21dtv.com/songs/60011478.mkv +梁静茹-不想睡,http://em.21dtv.com/songs/60011477.mkv +陈晓东-不想睡,http://em.21dtv.com/songs/60011476.mkv +梁静茹-不想睡(演唱会),http://em.21dtv.com/songs/60011475.mkv +龙千玉-病相思,http://em.21dtv.com/songs/60010882.mkv +高向鹏+傅振辉+黄思婷+林姗-病相思,http://em.21dtv.com/songs/60010881.mkv +黎姿-白恤衫,http://em.21dtv.com/songs/60009743.mkv +张靓颖-保鲜期(演唱会),http://em.21dtv.com/songs/60010031.mkv +谢金燕-蹦X趴,http://em.21dtv.com/songs/60124497.mkv +张睿-奔向你,http://em.21dtv.com/songs/60061050.mkv +凤凰传奇-拜新年,http://em.21dtv.com/songs/60061040.mkv +张宇-不像你,http://em.21dtv.com/songs/60011493.mkv +谢金燕-不想你,http://em.21dtv.com/songs/60011465.mkv +彭羚-奔向你,http://em.21dtv.com/songs/60010320.mkv +韩宝仪-背新娘,http://em.21dtv.com/songs/60010261.mkv +潘迪华+森森-扮新娘(演唱会),http://em.21dtv.com/songs/60009936.mkv +谢伟伦-不信命,http://em.21dtv.com/songs/60106287.mkv +张宇+王美莲-不醒梦,http://em.21dtv.com/songs/60011501.mkv +林忆莲-不许哭,http://em.21dtv.com/songs/60116048.mkv +陈昱熙-不想哭,http://em.21dtv.com/songs/60082667.mkv +杨树林+男光音组合-笨小孩,http://em.21dtv.com/songs/60135398.mkv +杨树林+男光音组合-笨小孩,http://em.21dtv.com/songs/60133846.mkv +刘德华-笨小孩(HD),http://em.21dtv.com/songs/10012630.mkv +张卓含威-笨小孩,http://em.21dtv.com/songs/60104111.mkv +顾海滨+柯受良-笨小孩(顾海滨柯受良),http://em.21dtv.com/songs/60088964.mkv +百慕三石-白仙鹤,http://em.21dtv.com/songs/60086447.mkv +刘德华+吴宗宪+柯受良-笨小孩,http://em.21dtv.com/songs/60010343.mkv +刘德华-笨小孩(演唱会),http://em.21dtv.com/songs/60010342.mkv +刘德华+吴宗宪+柯受良-笨小孩(演唱会),http://em.21dtv.com/songs/60010341.mkv +张丹锋-不习惯,http://em.21dtv.com/songs/60074765.mkv +蔡日轩-不习惯,http://em.21dtv.com/songs/60061072.mkv +冷漠-必须的,http://em.21dtv.com/songs/60068113.mkv +汪洋-必须的,http://em.21dtv.com/songs/60010414.mkv +Kisum+金周永-不寻常,http://em.21dtv.com/songs/60121276.mkv +卓依婷-甭相辞,http://em.21dtv.com/songs/60063501.mkv +郭富城-不寻常,http://em.21dtv.com/songs/60011513.mkv +左春龙-奔向爱,http://em.21dtv.com/songs/60127939.mkv +熊天平-不想爱,http://em.21dtv.com/songs/60091672.mkv +陈姿彤-be with you,http://em.21dtv.com/songs/60072935.mkv +THE SEE YA-be with you,http://em.21dtv.com/songs/60072934.mkv +SUPER GEAR-be with you,http://em.21dtv.com/songs/60072933.mkv +AZIATIX-be with you,http://em.21dtv.com/songs/60072932.mkv +MARY J.BLIGE-be without you,http://em.21dtv.com/songs/60000483.mkv +唐禹哲-be with you,http://em.21dtv.com/songs/60000482.mkv +潘玮柏-be with you,http://em.21dtv.com/songs/60000481.mkv +宝儿-be with you,http://em.21dtv.com/songs/60000480.mkv +ENRIQUE IGLESIAS-be with you,http://em.21dtv.com/songs/60000479.mkv +ATOMIC KITTEN-be with you,http://em.21dtv.com/songs/60000478.mkv +仓木麻衣-be with you(演唱会),http://em.21dtv.com/songs/60000477.mkv +果阳法师-伴我行,http://em.21dtv.com/songs/60127112.mkv +韦礼安-别问我,http://em.21dtv.com/songs/60061056.mkv +李紫晰-布娃娃,http://em.21dtv.com/songs/60011828.mkv +于全莉-别问它,http://em.21dtv.com/songs/60101879.mkv +陈倚俐-本无树,http://em.21dtv.com/songs/60134391.mkv +陈倚俐-本无树,http://em.21dtv.com/songs/60119006.mkv +何润东-霸王命,http://em.21dtv.com/songs/60074583.mkv +李玖哲-不完美,http://em.21dtv.com/songs/60011430.mkv +周笔畅-别忘了,http://em.21dtv.com/songs/60102052.mkv +炎亚纶-被忘录,http://em.21dtv.com/songs/60080024.mkv +张冬玲-备忘录,http://em.21dtv.com/songs/60068107.mkv +郝劭文-摆乌龙,http://em.21dtv.com/songs/60009809.mkv +冯巩+牛群-办晚会,http://em.21dtv.com/songs/60089656.mkv +胡彦斌-别误会,http://em.21dtv.com/songs/60081637.mkv +零点乐队-别误会,http://em.21dtv.com/songs/60010740.mkv +零点乐队-别误会(演唱会),http://em.21dtv.com/songs/60010739.mkv +金波-班务会(演唱会),http://em.21dtv.com/songs/60009831.mkv +苏打绿-博物馆,http://em.21dtv.com/songs/60117158.mkv +BON JOVI-because we can,http://em.21dtv.com/songs/60072953.mkv +冷漠-别问爱(舞曲版),http://em.21dtv.com/songs/60069259.mkv +R. KELLY-BUMP N GRIND,http://em.21dtv.com/songs/60096852.mkv +MELEE-BUILT TO LAST,http://em.21dtv.com/songs/60096851.mkv +XY兄弟-BUG,http://em.21dtv.com/songs/60130009.mkv +东方神起-before u go,http://em.21dtv.com/songs/60067855.mkv +阿清-別太拽,http://em.21dtv.com/songs/60088840.mkv +许志安-半天真(演唱会),http://em.21dtv.com/songs/60082587.mkv +阿清-别太跩,http://em.21dtv.com/songs/60068118.mkv +小雪-不停站,http://em.21dtv.com/songs/60011411.mkv +丁当-白头吟,http://em.21dtv.com/songs/60104756.mkv +CHRISTINA AGUILERA-bound to you,http://em.21dtv.com/songs/60067860.mkv +原始林-别停息,http://em.21dtv.com/songs/60089713.mkv +原始林合唱团-别停息,http://em.21dtv.com/songs/60089196.mkv +TOO SHORT-blow the whistle,http://em.21dtv.com/songs/60072981.mkv +THE SCRIPT-before the worst(演唱会),http://em.21dtv.com/songs/60070304.mkv +LADY GAGA-born this way(演唱会),http://em.21dtv.com/songs/60060773.mkv +何以奇-别疼我,http://em.21dtv.com/songs/60010719.mkv +LADY GAGA-born this way,http://em.21dtv.com/songs/60000660.mkv +WHITE LIES-bigger than us,http://em.21dtv.com/songs/60072969.mkv +陈旭-半条腿,http://em.21dtv.com/songs/60009901.mkv +BRAD PAISLEY-beat this summer,http://em.21dtv.com/songs/60082088.mkv +杜德伟+DIVA-breaking the rules,http://em.21dtv.com/songs/60000699.mkv +MICHAEL LEARNS TO ROCK-breaking the rules,http://em.21dtv.com/songs/60000698.mkv +THE TING TINGS-be the one,http://em.21dtv.com/songs/60000475.mkv +BOA-be the one,http://em.21dtv.com/songs/60000474.mkv +蔡小虎-半条命,http://em.21dtv.com/songs/60066851.mkv +MICHAEL JACKSON-behind the mask,http://em.21dtv.com/songs/60060764.mkv +希亚-baby tell me,http://em.21dtv.com/songs/60000412.mkv +何炅+王嘉尔+冰箱家族-拜托了,http://em.21dtv.com/songs/60121367.mkv +夏日果汁-别跳楼,http://em.21dtv.com/songs/60094860.mkv +八三夭-崩塌了,http://em.21dtv.com/songs/60010347.mkv +黄泽华-不同款,http://em.21dtv.com/songs/60114916.mkv +刘天助-不投降,http://em.21dtv.com/songs/60126637.mkv +梁汉文-半天假,http://em.21dtv.com/songs/60092901.mkv +许志安-半天假,http://em.21dtv.com/songs/60009900.mkv +许志安-半天假(演唱会),http://em.21dtv.com/songs/60009899.mkv +文千岁+梁少芯-白兔记,http://em.21dtv.com/songs/60009742.mkv +BRITNEY SPEARS-break the ice,http://em.21dtv.com/songs/60000690.mkv +卡拉OK-碧塔海,http://em.21dtv.com/songs/60090775.mkv +LINKIN PARK-breaking the habit,http://em.21dtv.com/songs/60000697.mkv +曹格-不太乖,http://em.21dtv.com/songs/60084933.mkv +蔡淳佳-不透光,http://em.21dtv.com/songs/60080897.mkv +SARA EVANS-born to fly,http://em.21dtv.com/songs/60063545.mkv +杨千华-白天鹅,http://em.21dtv.com/songs/60063953.mkv +杨千嬅-白天鹅,http://em.21dtv.com/songs/60063250.mkv +雨金-拜天地,http://em.21dtv.com/songs/60065836.mkv +LANA DEL REY-born to die,http://em.21dtv.com/songs/60063544.mkv +TAYLOR SWIFT-back to december,http://em.21dtv.com/songs/60000430.mkv +TWINS-by the beach,http://em.21dtv.com/songs/60000749.mkv +群星-begin the beguine(演唱会),http://em.21dtv.com/songs/60000540.mkv +BING CROSBY-begin the beguine(无原唱),http://em.21dtv.com/songs/60000539.mkv +AMY WINEHOUSE-back to black,http://em.21dtv.com/songs/60000429.mkv +董贞-白素贞,http://em.21dtv.com/songs/60107181.mkv +断肠+索墨菲-半生忆,http://em.21dtv.com/songs/60108533.mkv +涵昱-半生缘,http://em.21dtv.com/songs/60079900.mkv +吴俊宏+张秀卿-变色缘,http://em.21dtv.com/songs/60065847.mkv +林心如-半生缘,http://em.21dtv.com/songs/60009894.mkv +黎明-半生缘,http://em.21dtv.com/songs/60009893.mkv +黄磊-半生缘,http://em.21dtv.com/songs/60009892.mkv +达明一派-半生缘(演唱会),http://em.21dtv.com/songs/60009891.mkv +杨静-不伤心,http://em.21dtv.com/songs/60130471.mkv +郑元畅-不死心,http://em.21dtv.com/songs/60011402.mkv +那英-白丝线,http://em.21dtv.com/songs/60009733.mkv +群星(陈鸿宇+苏紫旭+刘昊霖+寒洛)-别送我,http://em.21dtv.com/songs/60132795.mkv +霍尊-不送帖,http://em.21dtv.com/songs/60126425.mkv +霍尊-不送帖,http://em.21dtv.com/songs/60112375.mkv +王琦-不啰嗦,http://em.21dtv.com/songs/60066882.mkv +邱美薇-不死扇,http://em.21dtv.com/songs/60131871.mkv +征服-半世伤,http://em.21dtv.com/songs/60117751.mkv +黄品冠+戴佩妮-半生熟,http://em.21dtv.com/songs/60009890.mkv +佚名-blue suede shoes,http://em.21dtv.com/songs/60000634.mkv +夏韶声-blue suede shoes(演唱会),http://em.21dtv.com/songs/60000633.mkv +ELVIS PRESLEY-blue suede shoes(演唱会),http://em.21dtv.com/songs/60000632.mkv +THE VERVE-bitter sweet symphony,http://em.21dtv.com/songs/60000591.mkv +田蕊妮-不伤人,http://em.21dtv.com/songs/60096418.mkv +周杰伦-半兽人,http://em.21dtv.com/songs/60009896.mkv +海生-不奢求,http://em.21dtv.com/songs/60113818.mkv +许嵩-不煽情,http://em.21dtv.com/songs/60088638.mkv +佚名-变色情,http://em.21dtv.com/songs/60010509.mkv +洪百慧-变色情,http://em.21dtv.com/songs/60010508.mkv +陈升-半生情(演唱会),http://em.21dtv.com/songs/60009889.mkv +陈虎-不死鸟,http://em.21dtv.com/songs/60107337.mkv +孙协志-不死鸟,http://em.21dtv.com/songs/60080258.mkv +佚名-both sides now,http://em.21dtv.com/songs/60000665.mkv +廖芊芊-宝山美,http://em.21dtv.com/songs/60081349.mkv +泽旺多吉-巴山妹,http://em.21dtv.com/songs/60074564.mkv +陈蕊蕊+SUPER GEAR-波斯猫,http://em.21dtv.com/songs/60063991.mkv +童星-波斯猫,http://em.21dtv.com/songs/60010894.mkv +S.H.E-波斯猫,http://em.21dtv.com/songs/60010893.mkv +童唱-波丝猫,http://em.21dtv.com/songs/60010892.mkv +林长春-别傻了,http://em.21dtv.com/songs/60113722.mkv +张星星-别傻了,http://em.21dtv.com/songs/60106840.mkv +紫浪-别傻了,http://em.21dtv.com/songs/60094244.mkv +颜联武-变色龙,http://em.21dtv.com/songs/60093508.mkv +周美欣-不失礼,http://em.21dtv.com/songs/60086470.mkv +任贤齐+周华健-别傻了,http://em.21dtv.com/songs/60010685.mkv +叶振棠-变色龙,http://em.21dtv.com/songs/60010507.mkv +古巨基-必杀技,http://em.21dtv.com/songs/60010413.mkv +容祖儿-必杀技(演唱会),http://em.21dtv.com/songs/60010412.mkv +古巨基-必杀技(演唱会),http://em.21dtv.com/songs/60010411.mkv +林晓培-悲伤johnny,http://em.21dtv.com/songs/60010136.mkv +潘秀琼-白纱巾,http://em.21dtv.com/songs/60009727.mkv +李雨伦-不适合,http://em.21dtv.com/songs/60129249.mkv +谢霆锋-别说狠,http://em.21dtv.com/songs/60110539.mkv +连诗雅-别说话,http://em.21dtv.com/songs/60079945.mkv +农夫-八十后,http://em.21dtv.com/songs/60061033.mkv +CIRCUS-叭啥货,http://em.21dtv.com/songs/60009521.mkv +许茹芸-半首歌,http://em.21dtv.com/songs/60009895.mkv +施文彬-保身符,http://em.21dtv.com/songs/60095560.mkv +戚剑强-不舍得,http://em.21dtv.com/songs/60071794.mkv +小魂-不死城,http://em.21dtv.com/songs/60127924.mkv +艾怡良-别说出,http://em.21dtv.com/songs/60070536.mkv +杨春霞-白蛇传,http://em.21dtv.com/songs/60009728.mkv +王诗安-不说不,http://em.21dtv.com/songs/60095211.mkv +刘一尘-别说爱,http://em.21dtv.com/songs/60116574.mkv +吴莫愁-不是爱(HD),http://em.21dtv.com/songs/10012738.mkv +吴莫愁-不是爱,http://em.21dtv.com/songs/60099876.mkv +权振东-不说爱,http://em.21dtv.com/songs/60081970.mkv +云菲菲-不说爱,http://em.21dtv.com/songs/60074758.mkv +洪天祥-不容易,http://em.21dtv.com/songs/60106072.mkv +五月天-别惹我,http://em.21dtv.com/songs/60010672.mkv +余强-BRT,http://em.21dtv.com/songs/60109971.mkv +信乐团-不认输,http://em.21dtv.com/songs/60011320.mkv +杨峰-包容你,http://em.21dtv.com/songs/60107816.mkv +丁思忖-白日梦,http://em.21dtv.com/songs/60134839.mkv +陈彦允-白日梦,http://em.21dtv.com/songs/60113052.mkv +刘依纯-白日梦,http://em.21dtv.com/songs/60082576.mkv +谢沛恩-白日梦,http://em.21dtv.com/songs/60071768.mkv +咻比嘟哗-白日梦,http://em.21dtv.com/songs/60009702.mkv +吴昕-白日梦,http://em.21dtv.com/songs/60009701.mkv +蒋雅文-白日梦,http://em.21dtv.com/songs/60009700.mkv +梁汉文-白日梦(演唱会),http://em.21dtv.com/songs/60009699.mkv +云菲菲-般若泪,http://em.21dtv.com/songs/60119244.mkv +S.B.D.W.-白日萝,http://em.21dtv.com/songs/60089100.mkv +SPEXIAL-Break It Down,http://em.21dtv.com/songs/60101033.mkv +川田まみ-Break A Spell,http://em.21dtv.com/songs/60099978.mkv +施易男-芭蕉雨,http://em.21dtv.com/songs/60131472.mkv +胡瓜-包青天,http://em.21dtv.com/songs/60009950.mkv +黑妹-包青天(演唱会),http://em.21dtv.com/songs/60009949.mkv +凤琴+许哲诚-伴琴声,http://em.21dtv.com/songs/60130111.mkv +枫舞-别强求,http://em.21dtv.com/songs/60107830.mkv +崔子格-白旗袍,http://em.21dtv.com/songs/60096935.mkv +方琦-灞桥柳,http://em.21dtv.com/songs/60124004.mkv +曹雅雯-薄情狼,http://em.21dtv.com/songs/60101372.mkv +张弥-霸桥柳,http://em.21dtv.com/songs/60089858.mkv +佚名-薄情郎,http://em.21dtv.com/songs/60009964.mkv +佚名-薄情郎(无原唱),http://em.21dtv.com/songs/60009963.mkv +张咪-灞桥柳,http://em.21dtv.com/songs/60009647.mkv +陆萍-灞桥柳,http://em.21dtv.com/songs/60009646.mkv +张津涤-薄情歌,http://em.21dtv.com/songs/60131411.mkv +儿歌-表情歌,http://em.21dtv.com/songs/60089633.mkv +元若蓝-半情歌,http://em.21dtv.com/songs/60009888.mkv +陈浩德+舒雅颂-悲秋风(演唱会),http://em.21dtv.com/songs/60061046.mkv +佚名-悲秋风,http://em.21dtv.com/songs/60010135.mkv +陈浩德-悲秋风(演唱会),http://em.21dtv.com/songs/60010134.mkv +J-BOY3-表情帝,http://em.21dtv.com/songs/60062056.mkv +万芳-不确定,http://em.21dtv.com/songs/60011308.mkv +胡兵-不确定,http://em.21dtv.com/songs/60011307.mkv +夏天-不清楚,http://em.21dtv.com/songs/60074750.mkv +司徒兰芳-不缺爱,http://em.21dtv.com/songs/60066884.mkv +方瑞娥-薄情爱,http://em.21dtv.com/songs/60009962.mkv +一绫-半屏月,http://em.21dtv.com/songs/60116489.mkv +Ailee-别碰我,http://em.21dtv.com/songs/60104650.mkv +SWEETBOX-别碰我,http://em.21dtv.com/songs/60087221.mkv +王瑞霞-补破网,http://em.21dtv.com/songs/60074704.mkv +小凤凤-补破网,http://em.21dtv.com/songs/60010940.mkv +黄龄-不怕痛,http://em.21dtv.com/songs/60065863.mkv +林姗-半屏天,http://em.21dtv.com/songs/60009887.mkv +杜德伟-不怕死,http://em.21dtv.com/songs/60092821.mkv +陈小春-不骗你,http://em.21dtv.com/songs/60011296.mkv +王瑞霞-捕破梦(无原唱),http://em.21dtv.com/songs/60070550.mkv +李森-不怕累,http://em.21dtv.com/songs/60116914.mkv +张祥洪-不怕老,http://em.21dtv.com/songs/60082658.mkv +2MORO-被骗了,http://em.21dtv.com/songs/60010301.mkv +刘虹桦-不平凡,http://em.21dtv.com/songs/60011299.mkv +胡松华-比帕尔,http://em.21dtv.com/songs/60010380.mkv +EXID-BOY,http://em.21dtv.com/songs/60134670.mkv +严蕊-because of you,http://em.21dtv.com/songs/60072952.mkv +林峰-because of you(演唱会),http://em.21dtv.com/songs/60072951.mkv +林峰-because of you,http://em.21dtv.com/songs/60069058.mkv +W+INDS.-because of you,http://em.21dtv.com/songs/60000528.mkv +NE+YO-because of you,http://em.21dtv.com/songs/60000527.mkv +KELLY CLARKSON-because of you,http://em.21dtv.com/songs/60000526.mkv +蔡依林-because of you(演唱会),http://em.21dtv.com/songs/60000525.mkv +张玮-black or white,http://em.21dtv.com/songs/60069063.mkv +MICHAEL JACKSON-black or white,http://em.21dtv.com/songs/60000600.mkv +B.O.B+TAYLOR SWIFT-both of us,http://em.21dtv.com/songs/60072992.mkv +ナノ-BORN TO BE,http://em.21dtv.com/songs/60096850.mkv +BON JOVI-bed of roses,http://em.21dtv.com/songs/60000532.mkv +NELLY FEATURING AKON AND ASHAN-body on me,http://em.21dtv.com/songs/60072983.mkv +NELLY+AKON AND ASHAN-body on me,http://em.21dtv.com/songs/60060772.mkv +佚名-best of me,http://em.21dtv.com/songs/60000556.mkv +DANIEL POWTER-best of me,http://em.21dtv.com/songs/60000555.mkv +本兮-buried our love,http://em.21dtv.com/songs/60066153.mkv +JANET JACKSON-because of love,http://em.21dtv.com/songs/60000524.mkv +侧田+MASTERMIC-b o k(演唱会),http://em.21dtv.com/songs/60072910.mkv +BON JOVI-blaze of glory,http://em.21dtv.com/songs/60000608.mkv +佚名-blue on blue,http://em.21dtv.com/songs/60000629.mkv +洛城三兄弟-baseball o-lay棒,http://em.21dtv.com/songs/60000460.mkv +范一贤-白娘子,http://em.21dtv.com/songs/60122065.mkv +王麟+老猫-白娘子,http://em.21dtv.com/songs/60074589.mkv +郑爽+井柏然-不能忘,http://em.21dtv.com/songs/60109663.mkv +韩安旭-避难所,http://em.21dtv.com/songs/60135983.mkv +张克帆-避难所,http://em.21dtv.com/songs/60010453.mkv +刘凤瑶-笨女人,http://em.21dtv.com/songs/60121426.mkv +刘凤瑶-笨女人,http://em.21dtv.com/songs/60119287.mkv +龙帝-笨男人,http://em.21dtv.com/songs/60074661.mkv +龙帝-笨男人(舞曲版),http://em.21dtv.com/songs/60068111.mkv +刘纯如-笨女人,http://em.21dtv.com/songs/60010340.mkv +ALICIA KEYS-brand new me,http://em.21dtv.com/songs/60072997.mkv +徐丹-棒女郎,http://em.21dtv.com/songs/60133714.mkv +东方红艳-拜年啦,http://em.21dtv.com/songs/60118299.mkv +S.H.E+周定纬-比你贱(演唱会),http://em.21dtv.com/songs/60010379.mkv +杜德伟-笨女孩,http://em.21dtv.com/songs/60010339.mkv +郭富城-被你害(演唱会),http://em.21dtv.com/songs/60010299.mkv +刘燕-不能怪,http://em.21dtv.com/songs/60074747.mkv +SAYA-不能改,http://em.21dtv.com/songs/60011256.mkv +谢霆锋-不耐烦,http://em.21dtv.com/songs/60011246.mkv +陈百祥+李蕙敏-伴你飞,http://em.21dtv.com/songs/60009920.mkv +MASSARI-brand new day,http://em.21dtv.com/songs/60072996.mkv +袁咏琳-brand new day,http://em.21dtv.com/songs/60063313.mkv +STING-brand new day(无原唱),http://em.21dtv.com/songs/60000682.mkv +爱乐团-半面妆,http://em.21dtv.com/songs/60009886.mkv +邵雅茜-兵马俑,http://em.21dtv.com/songs/60010868.mkv +唐朝乐队-斑马线,http://em.21dtv.com/songs/60094857.mkv +孟庭苇-斑马线,http://em.21dtv.com/songs/60090941.mkv +LEA-捕梦网,http://em.21dtv.com/songs/60010949.mkv +关智斌-白木屋,http://em.21dtv.com/songs/60009697.mkv +SANTANA-black magic woman,http://em.21dtv.com/songs/60000598.mkv +多亮-捕梦人,http://em.21dtv.com/songs/60116680.mkv +潘裕文-捕梦人,http://em.21dtv.com/songs/60010948.mkv +樊凡-不勉强,http://em.21dtv.com/songs/60113752.mkv +阿吉仔-甭勉强,http://em.21dtv.com/songs/60095953.mkv +赵星宇-本命年,http://em.21dtv.com/songs/60118074.mkv +湘东雨-本命年,http://em.21dtv.com/songs/60096101.mkv +李晖+杨洪基-白毛女(演唱会),http://em.21dtv.com/songs/60082575.mkv +满江-本命年,http://em.21dtv.com/songs/60010325.mkv +佚名-白毛女,http://em.21dtv.com/songs/60009689.mkv +子祺-兵妹妹,http://em.21dtv.com/songs/60063485.mkv +张善为-把美眉,http://em.21dtv.com/songs/60061344.mkv +刘一祯-兵妹妹,http://em.21dtv.com/songs/60010869.mkv +黑皮-把美眉,http://em.21dtv.com/songs/60009559.mkv +SUPER GIRLS-be my love,http://em.21dtv.com/songs/60065686.mkv +钟舒漫-八米厘,http://em.21dtv.com/songs/60061032.mkv +陈思涵-兵马乱,http://em.21dtv.com/songs/60010867.mkv +佚名-白门楼,http://em.21dtv.com/songs/60009694.mkv +BII-bii my love,http://em.21dtv.com/songs/60000585.mkv +SOULJA BOY-blowing me kisses,http://em.21dtv.com/songs/60000619.mkv +朱海君+李明洋-不免惊,http://em.21dtv.com/songs/60068133.mkv +罗时丰+林良欢-不免惊,http://em.21dtv.com/songs/60011241.mkv +LipBubble-爆米花,http://em.21dtv.com/songs/60133227.mkv +S KING-爆米花,http://em.21dtv.com/songs/60108245.mkv +ESTELLE+RICK ROSS-break my heart,http://em.21dtv.com/songs/60062017.mkv +阿妹妹-爆米花,http://em.21dtv.com/songs/60010093.mkv +李彩颖-白棉花(无原唱),http://em.21dtv.com/songs/60009695.mkv +佚名-breaking my heart,http://em.21dtv.com/songs/60000695.mkv +MICHAEL LEARNS TO ROCK-breaking my heart,http://em.21dtv.com/songs/60000694.mkv +古巨基-白玫瑰,http://em.21dtv.com/songs/60087509.mkv +泳儿-鼻敏感,http://em.21dtv.com/songs/60010366.mkv +陈奕迅-白玫瑰,http://em.21dtv.com/songs/60009692.mkv +陈奕迅-白玫瑰(HD演唱会),http://em.21dtv.com/songs/60009691.mkv +A.DOMINO+J.MARASCALC-be my guest(无原唱),http://em.21dtv.com/songs/60000473.mkv +黎明-be my girl(演唱会),http://em.21dtv.com/songs/60000472.mkv +范逸臣-百慕达,http://em.21dtv.com/songs/60009789.mkv +李碧华-白牡丹,http://em.21dtv.com/songs/60009696.mkv +音频怪物-笔墨稠,http://em.21dtv.com/songs/60074669.mkv +WONDER GIRLS-be my baby,http://em.21dtv.com/songs/60070301.mkv +K ONE+7朵花+陈乔祎-不明白,http://em.21dtv.com/songs/60011245.mkv +NEW BOYZ+IYAZ-break my bank,http://em.21dtv.com/songs/60000688.mkv +陈冠希-be my baby,http://em.21dtv.com/songs/60000471.mkv +林海峰+杨千嬅-饱满爱,http://em.21dtv.com/songs/60009966.mkv +MC梦柯-菠萝咒,http://em.21dtv.com/songs/60134761.mkv +Gfriend-玻璃珠,http://em.21dtv.com/songs/60108225.mkv +陈浩德-扮靓仔(演唱会),http://em.21dtv.com/songs/60063961.mkv +艾尔肯-巴朗仔(演唱会),http://em.21dtv.com/songs/60009508.mkv +艾尔肯-巴郎仔,http://em.21dtv.com/songs/60009507.mkv +谢莉婷-半路缘,http://em.21dtv.com/songs/60107224.mkv +郭向东-不了缘,http://em.21dtv.com/songs/60084929.mkv +360 FEAT+GOSSLING-boys like you,http://em.21dtv.com/songs/60065554.mkv +佚名-玻璃鱼,http://em.21dtv.com/songs/60010916.mkv +佚名-半路缘,http://em.21dtv.com/songs/60009880.mkv +吴勇滨-玻璃心,http://em.21dtv.com/songs/60122581.mkv +金润吉-别路行,http://em.21dtv.com/songs/60122196.mkv +金润吉-别路行,http://em.21dtv.com/songs/60114150.mkv +吴勇滨-玻璃心,http://em.21dtv.com/songs/60110924.mkv +司徒兰芳+赵真-玻璃心,http://em.21dtv.com/songs/60109211.mkv +杨华-玻璃心,http://em.21dtv.com/songs/60088061.mkv +杨林-玻璃心,http://em.21dtv.com/songs/60010915.mkv +郑秀文-玻璃鞋,http://em.21dtv.com/songs/60010911.mkv +邓颖芝-玻璃鞋,http://em.21dtv.com/songs/60010910.mkv +郑秀文-玻璃鞋(演唱会),http://em.21dtv.com/songs/60010909.mkv +郑秀文-变了心,http://em.21dtv.com/songs/60010500.mkv +张凤凤-白兰香,http://em.21dtv.com/songs/60009683.mkv +姚莉-白兰香,http://em.21dtv.com/songs/60009682.mkv +谢采妘-白兰香,http://em.21dtv.com/songs/60009681.mkv +赵霏儿-不领悟,http://em.21dtv.com/songs/60129649.mkv +轲然-不赖我,http://em.21dtv.com/songs/60084927.mkv +LEA-捕罗网(无原唱),http://em.21dtv.com/songs/60010947.mkv +任贤齐-别恋我,http://em.21dtv.com/songs/60010631.mkv +一绫-白莲雾,http://em.21dtv.com/songs/60009684.mkv +IRON+Babylon-Blu,http://em.21dtv.com/songs/60115595.mkv +王丽达-包楞调,http://em.21dtv.com/songs/60111261.mkv +褚海辰-包楞调,http://em.21dtv.com/songs/60081859.mkv +尤翊霖-别罗嗦,http://em.21dtv.com/songs/60082625.mkv +苏三-八连杀,http://em.21dtv.com/songs/60074561.mkv +PETER DOHERTY-broken love song,http://em.21dtv.com/songs/60073008.mkv +TPAIN+CHRIS BROWN-best love song,http://em.21dtv.com/songs/60072962.mkv +王琦-不罗嗦,http://em.21dtv.com/songs/60064003.mkv +黄品源-白鹭鸶,http://em.21dtv.com/songs/60059106.mkv +甄子维-白鸰丝(无原唱),http://em.21dtv.com/songs/60023982.mkv +阿沁-波丽士,http://em.21dtv.com/songs/60010888.mkv +黄品源-白鹭丝,http://em.21dtv.com/songs/60009686.mkv +小魂-不良人,http://em.21dtv.com/songs/60135145.mkv +河图-不良人,http://em.21dtv.com/songs/60112065.mkv +桐瑶-不离弃,http://em.21dtv.com/songs/60124159.mkv +潘迪华-不了情,http://em.21dtv.com/songs/60089412.mkv +毛阿敏-不了情,http://em.21dtv.com/songs/60088179.mkv +吕珊+张伟文-不了情,http://em.21dtv.com/songs/60087546.mkv +潘秀琼-不了情(演唱会),http://em.21dtv.com/songs/60082654.mkv +王韵壹-不了情,http://em.21dtv.com/songs/60070546.mkv +莫旭秋-不了情(演唱会),http://em.21dtv.com/songs/60064002.mkv +徐小凤-不了情,http://em.21dtv.com/songs/60011230.mkv +黄宝欣-不了情,http://em.21dtv.com/songs/60011229.mkv +顾媚-不了情,http://em.21dtv.com/songs/60011228.mkv +费玉清-不了情,http://em.21dtv.com/songs/60011227.mkv +蔡琴-不了情,http://em.21dtv.com/songs/60011226.mkv +郑少秋-不了情(演唱会),http://em.21dtv.com/songs/60011225.mkv +张德兰-不了情(演唱会),http://em.21dtv.com/songs/60011224.mkv +蔡琴-不了情(演唱会),http://em.21dtv.com/songs/60011223.mkv +顾钊羽-玻璃屏,http://em.21dtv.com/songs/60130891.mkv +顾钊羽-玻璃屏,http://em.21dtv.com/songs/60129789.mkv +尚雯婕+CNdY-Blossom 日出,http://em.21dtv.com/songs/60096849.mkv +UTIN+ANGE-布朗尼,http://em.21dtv.com/songs/60101227.mkv +郭娅丽-百灵鸟,http://em.21dtv.com/songs/60068096.mkv +银临-不老梦,http://em.21dtv.com/songs/60126334.mkv +林一佳-白龙马,http://em.21dtv.com/songs/60101393.mkv +吸引力-白龙马,http://em.21dtv.com/songs/60101299.mkv +无名氏-波罗密,http://em.21dtv.com/songs/60089322.mkv +CD.VOICE-波罗蜜,http://em.21dtv.com/songs/60010890.mkv +黄乙玲-悲恋梦,http://em.21dtv.com/songs/60010125.mkv +邓养天-不流泪,http://em.21dtv.com/songs/60082655.mkv +童唱-白鹭鹭,http://em.21dtv.com/songs/60009685.mkv +张嘉洵-别离开,http://em.21dtv.com/songs/60010625.mkv +刘冲-别离开,http://em.21dtv.com/songs/60010624.mkv +陈宏斌-杯老酒,http://em.21dtv.com/songs/60119011.mkv +唐美华-玻璃镜,http://em.21dtv.com/songs/60117631.mkv +陈随意-八两金,http://em.21dtv.com/songs/60113076.mkv +孙嘉梵-白兰花,http://em.21dtv.com/songs/60131325.mkv +海藻乐队-80后,http://em.21dtv.com/songs/60110347.mkv +林俊杰-白兰花,http://em.21dtv.com/songs/60074587.mkv +西单女孩-捌零后,http://em.21dtv.com/songs/60063115.mkv +王冰洋-冰凌花,http://em.21dtv.com/songs/60010835.mkv +杨柳-白兰花,http://em.21dtv.com/songs/60009680.mkv +周安信+胡钰佳-白兰鸽,http://em.21dtv.com/songs/60118454.mkv +欧凯明+郭凤女-白龙关(戏曲),http://em.21dtv.com/songs/60092949.mkv +光合作用-不老歌,http://em.21dtv.com/songs/60081309.mkv +赵薇-搏浪鼓,http://em.21dtv.com/songs/60010933.mkv +赵薇-拨浪鼓,http://em.21dtv.com/songs/60010884.mkv +佚名-别离歌,http://em.21dtv.com/songs/60010622.mkv +佚名-白兰鸽,http://em.21dtv.com/songs/60009679.mkv +田震-白兰鸽(演唱会),http://em.21dtv.com/songs/60009678.mkv +吴炜-便利店,http://em.21dtv.com/songs/60087564.mkv +安雯-包楞调(演唱会),http://em.21dtv.com/songs/60009946.mkv +潘秀琼-巴厘岛,http://em.21dtv.com/songs/60009510.mkv +廖孟君-玻璃窗,http://em.21dtv.com/songs/60111050.mkv +艾青-玻璃窗,http://em.21dtv.com/songs/60010901.mkv +曹卉娟-玻璃杯,http://em.21dtv.com/songs/60010900.mkv +童唱-拔萝卜,http://em.21dtv.com/songs/60009530.mkv +郑秀文-八零八,http://em.21dtv.com/songs/60009477.mkv +胡彦斌-Black Or White,http://em.21dtv.com/songs/60096442.mkv +张杰-Black Or White(我是歌手第二期),http://em.21dtv.com/songs/60096282.mkv +常健鸿-玻璃爱,http://em.21dtv.com/songs/60010898.mkv +小峰峰-半空中,http://em.21dtv.com/songs/60071771.mkv +郑秀文-半空中,http://em.21dtv.com/songs/60009878.mkv +黎明-别框我,http://em.21dtv.com/songs/60010606.mkv +霍建华+赵丽颖-不可说,http://em.21dtv.com/songs/60113084.mkv +霍建华+赵丽颖-不可说,http://em.21dtv.com/songs/60112380.mkv +含易-白开水,http://em.21dtv.com/songs/60062421.mkv +蔡诗芸-不肯睡,http://em.21dtv.com/songs/60011210.mkv +苏盈之-别客气,http://em.21dtv.com/songs/60104378.mkv +苏晴-不客气,http://em.21dtv.com/songs/60082652.mkv +大哲-不靠谱,http://em.21dtv.com/songs/60096918.mkv +周柏豪-不可能,http://em.21dtv.com/songs/60119360.mkv +苏晴-不可能,http://em.21dtv.com/songs/60065861.mkv +佚名-不可能,http://em.21dtv.com/songs/60011188.mkv +陈冠希+陈奂仁-不可能,http://em.21dtv.com/songs/60011187.mkv +乐童音乐家-冰块们,http://em.21dtv.com/songs/60107469.mkv +佚名-捕空梦,http://em.21dtv.com/songs/60010946.mkv +佚名-补空梦,http://em.21dtv.com/songs/60010939.mkv +陈雷-补空梦,http://em.21dtv.com/songs/60010938.mkv +王明丽-不哭了,http://em.21dtv.com/songs/60125924.mkv +邹宗翰-不快乐,http://em.21dtv.com/songs/60118093.mkv +红正-别哭了,http://em.21dtv.com/songs/60102615.mkv +王明丽-不哭了,http://em.21dtv.com/songs/60096916.mkv +BY2-不哭了,http://em.21dtv.com/songs/60084925.mkv +曾静玟-不快乐,http://em.21dtv.com/songs/60064000.mkv +许慧欣-不哭了,http://em.21dtv.com/songs/60011214.mkv +林丽-别哭了,http://em.21dtv.com/songs/60010600.mkv +桂银淑-北空港,http://em.21dtv.com/songs/60105195.mkv +田丰-崩溃,http://em.21dtv.com/songs/60070530.mkv +李宇林-背靠背,http://em.21dtv.com/songs/60010247.mkv +王金翔-北京站,http://em.21dtv.com/songs/60111290.mkv +阿振-别军营,http://em.21dtv.com/songs/60082623.mkv +阎琰-芭蕉雨,http://em.21dtv.com/songs/60063232.mkv +张心怡-北极心,http://em.21dtv.com/songs/60131398.mkv +罗志祥+May J.-北极星,http://em.21dtv.com/songs/60118843.mkv +詹雅雯-北极星,http://em.21dtv.com/songs/60107206.mkv +张语倢-北极星,http://em.21dtv.com/songs/60087842.mkv +陈慧琳+冯德伦-北极雪,http://em.21dtv.com/songs/60010187.mkv +陈慧琳-北极雪(演唱会),http://em.21dtv.com/songs/60010186.mkv +范春梅+安尉-保家乡,http://em.21dtv.com/songs/60010028.mkv +李沁-抱紧我,http://em.21dtv.com/songs/60097009.mkv +李宇春-冰菊舞,http://em.21dtv.com/songs/60088004.mkv +刘明辉-抱紧我,http://em.21dtv.com/songs/60081091.mkv +陈妃平-抱紧我,http://em.21dtv.com/songs/60010061.mkv +张也-斑鸠调,http://em.21dtv.com/songs/60089264.mkv +WEATHER GIRLS(天气女孩)-不解释,http://em.21dtv.com/songs/60123569.mkv +麦家瑜-不加塑,http://em.21dtv.com/songs/60093520.mkv +吴美影+顾永铭-办酒水,http://em.21dtv.com/songs/60066849.mkv +胡琳-毕加索,http://em.21dtv.com/songs/60010417.mkv +霓裳-边疆情,http://em.21dtv.com/songs/60114881.mkv +F.I.R-北极圈(演唱会),http://em.21dtv.com/songs/60010184.mkv +ANGUS AND JULIA STONE-big jet plane,http://em.21dtv.com/songs/60072968.mkv +元卫觉醒-比基尼,http://em.21dtv.com/songs/60010374.mkv +梁咏琪-抱紧你,http://em.21dtv.com/songs/60010060.mkv +李乐诗-抱紧你,http://em.21dtv.com/songs/60010059.mkv +李乐诗-抱紧你(演唱会),http://em.21dtv.com/songs/60010058.mkv +王馨-北江美,http://em.21dtv.com/songs/60111297.mkv +萧亚轩-不见面,http://em.21dtv.com/songs/60091977.mkv +拉毛王旭-北京美,http://em.21dtv.com/songs/60084895.mkv +苏富权-北江美,http://em.21dtv.com/songs/60068103.mkv +陈零九-不见了,http://em.21dtv.com/songs/60134428.mkv +Kulin-不眷恋,http://em.21dtv.com/songs/60126532.mkv +王雄-不见了,http://em.21dtv.com/songs/60120784.mkv +宇海文-边角落,http://em.21dtv.com/songs/60010463.mkv +李荣浩-不将就,http://em.21dtv.com/songs/60129244.mkv +谢承佑-不纠结,http://em.21dtv.com/songs/60114792.mkv +李荣浩-不将就,http://em.21dtv.com/songs/60111169.mkv +东南-不将就,http://em.21dtv.com/songs/60101241.mkv +黄克林-甭计较,http://em.21dtv.com/songs/60010354.mkv +春天-北京见,http://em.21dtv.com/songs/60010213.mkv +何晟铭-北极光,http://em.21dtv.com/songs/60131164.mkv +郑博夫+曾仁郁-北极光,http://em.21dtv.com/songs/60010183.mkv +莫文蔚-北极光,http://em.21dtv.com/songs/60010182.mkv +BOXING乐团-不简单,http://em.21dtv.com/songs/60131040.mkv +古巨基-不见得,http://em.21dtv.com/songs/60011180.mkv +林俊杰-波间带,http://em.21dtv.com/songs/60010887.mkv +音乐走廊-北京城,http://em.21dtv.com/songs/60133081.mkv +徐子洺-北京城,http://em.21dtv.com/songs/60113517.mkv +梁静茹-比较爱,http://em.21dtv.com/songs/60089374.mkv +张勋杰-because its you,http://em.21dtv.com/songs/60000523.mkv +SHAI-baby im yours,http://em.21dtv.com/songs/60000405.mkv +FAITH HILL-but i will,http://em.21dtv.com/songs/60000736.mkv +JEWELRY-back it up,http://em.21dtv.com/songs/60072915.mkv +LEONA LEWIS-better in time,http://em.21dtv.com/songs/60000565.mkv +GENERATIONS-brave it out,http://em.21dtv.com/songs/60072998.mkv +BONNIE TYLER-believe in me,http://em.21dtv.com/songs/60082093.mkv +苏打绿-believe in music(演唱会),http://em.21dtv.com/songs/60000543.mkv +LINKIN PARK-burn it down,http://em.21dtv.com/songs/60066209.mkv +佚名-black is black,http://em.21dtv.com/songs/60000597.mkv +AKON-baby im back,http://em.21dtv.com/songs/60000403.mkv +HUEY LEWIS+THE NEWS-but its alright,http://em.21dtv.com/songs/60000737.mkv +曹权权-不怀疑,http://em.21dtv.com/songs/60121736.mkv +郑中基-不好笑,http://em.21dtv.com/songs/60093257.mkv +李思琳-别害羞,http://em.21dtv.com/songs/60091313.mkv +JS-并行线,http://em.21dtv.com/songs/60087199.mkv +戴佩妮-保护我,http://em.21dtv.com/songs/60010027.mkv +赵红军-不回头,http://em.21dtv.com/songs/60124527.mkv +克丽丝叮+迪克牛仔-不回头,http://em.21dtv.com/songs/60105611.mkv +徐良+小暖-不好听,http://em.21dtv.com/songs/60011139.mkv +顾建华-别回头,http://em.21dtv.com/songs/60010588.mkv +刘珂矣-半壶纱,http://em.21dtv.com/songs/60111720.mkv +张韶涵-保护色,http://em.21dtv.com/songs/60010026.mkv +林俊杰-保护色,http://em.21dtv.com/songs/60010025.mkv +郭品超-变化球,http://em.21dtv.com/songs/60010493.mkv +张韶涵-不害怕,http://em.21dtv.com/songs/60123961.mkv +派伟俊-保护你,http://em.21dtv.com/songs/60117892.mkv +派伟俊-保护你,http://em.21dtv.com/songs/60116113.mkv +林忆莲-不还你,http://em.21dtv.com/songs/60011138.mkv +孙盛希-半婚迷,http://em.21dtv.com/songs/60109270.mkv +梁玉嵘-抱花眠(戏曲),http://em.21dtv.com/songs/60092917.mkv +佚名-报花名,http://em.21dtv.com/songs/60010046.mkv +杨云阁-冰火令,http://em.21dtv.com/songs/60099331.mkv +李霄云-白桦林,http://em.21dtv.com/songs/60088052.mkv +程燕-编花篮,http://em.21dtv.com/songs/60010477.mkv +朴树-白桦林,http://em.21dtv.com/songs/60009675.mkv +朴树-白桦林(演唱会),http://em.21dtv.com/songs/60009674.mkv +王晓青-白桦泪,http://em.21dtv.com/songs/60009673.mkv +王力宏-白狐狸(演唱会),http://em.21dtv.com/songs/60009669.mkv +华少翌-不后悔,http://em.21dtv.com/songs/60074728.mkv +龙梅子-百合花,http://em.21dtv.com/songs/60066844.mkv +张学友-不后悔,http://em.21dtv.com/songs/60011142.mkv +黑龙-不后悔(演唱会),http://em.21dtv.com/songs/60011141.mkv +柜子妹妹-百合花,http://em.21dtv.com/songs/60009778.mkv +周璇-百花歌,http://em.21dtv.com/songs/60009781.mkv +潘秀琼-百花歌,http://em.21dtv.com/songs/60009780.mkv +范逸臣-别回答,http://em.21dtv.com/songs/60088559.mkv +范逸臣+酷爱乐团-别回答,http://em.21dtv.com/songs/60088558.mkv +童丽-扮皇帝,http://em.21dtv.com/songs/60074618.mkv +柳影虹+钟雅颂-扮皇帝(演唱会),http://em.21dtv.com/songs/60062690.mkv +佚名-扮皇帝,http://em.21dtv.com/songs/60009932.mkv +静婷+江宏-扮皇帝,http://em.21dtv.com/songs/60009931.mkv +陈瑞-白蝴蝶,http://em.21dtv.com/songs/60009672.mkv +CARRIE UNDERWOOD-before he cheats,http://em.21dtv.com/songs/60000534.mkv +焦炭乐团+张羽伟-北海岸,http://em.21dtv.com/songs/60095800.mkv +飞轮海-不会爱,http://em.21dtv.com/songs/60011154.mkv +李嘉-别憨啊(无原唱),http://em.21dtv.com/songs/60010585.mkv +JOHN DENVER-back home again(演唱会),http://em.21dtv.com/songs/60000424.mkv +黎明-不规则(演唱会),http://em.21dtv.com/songs/60011132.mkv +蔡秋凤-饱搁醉(无原唱),http://em.21dtv.com/songs/60009965.mkv +黄明志-飙高音,http://em.21dtv.com/songs/60114914.mkv +童唱-冰棍雨,http://em.21dtv.com/songs/60010824.mkv +翟惠民-别故乡,http://em.21dtv.com/songs/60091883.mkv +阎维文-边关雪,http://em.21dtv.com/songs/60010458.mkv +许嘉文-别管我,http://em.21dtv.com/songs/60074686.mkv +郭采洁-不过问,http://em.21dtv.com/songs/60011136.mkv +BEYOND-别怪我,http://em.21dtv.com/songs/60010583.mkv +曹格-悲歌王,http://em.21dtv.com/songs/60010110.mkv +郑中基-半个我,http://em.21dtv.com/songs/60009867.mkv +邝美云-半个吻,http://em.21dtv.com/songs/60009866.mkv +佚名-卜卦调,http://em.21dtv.com/songs/60095404.mkv +吴卓义-别怪她,http://em.21dtv.com/songs/60010582.mkv +杨秀惠-别怪他,http://em.21dtv.com/songs/60010581.mkv +陈雷-甭搁推,http://em.21dtv.com/songs/60010352.mkv +陈林建-不够帅,http://em.21dtv.com/songs/60115493.mkv +林志颖-编故事,http://em.21dtv.com/songs/60074675.mkv +雪村-办公室,http://em.21dtv.com/songs/60009841.mkv +汪东城-半个人,http://em.21dtv.com/songs/60080724.mkv +翁立友-搏感情(无原唱),http://em.21dtv.com/songs/60010932.mkv +张秀卿-博感情,http://em.21dtv.com/songs/60010929.mkv +安以轩-不公平,http://em.21dtv.com/songs/60104050.mkv +JENNY YANG-不公平,http://em.21dtv.com/songs/60011107.mkv +BRITNEY SPEARS-beat goes on,http://em.21dtv.com/songs/60000487.mkv +李鑫雨-布谷鸟,http://em.21dtv.com/songs/60074816.mkv +宇宙人-败给你,http://em.21dtv.com/songs/60009811.mkv +罗志祥-败给你,http://em.21dtv.com/songs/60009810.mkv +梁耀安-别馆盟,http://em.21dtv.com/songs/60088143.mkv +蟑螂乐队-帮个忙,http://em.21dtv.com/songs/60009938.mkv +郑秀文-八公里,http://em.21dtv.com/songs/60128476.mkv +郑秀文-八公里,http://em.21dtv.com/songs/60127473.mkv +尼玛次仁-不归路,http://em.21dtv.com/songs/60011131.mkv +迪克牛仔-不归路,http://em.21dtv.com/songs/60011130.mkv +迪克牛仔-不归路(演唱会),http://em.21dtv.com/songs/60011129.mkv +梁心颐-不敢哭,http://em.21dtv.com/songs/60070543.mkv +赵崇灏-兵冠军,http://em.21dtv.com/songs/60134265.mkv +高原-不够好,http://em.21dtv.com/songs/60109039.mkv +林健辉-不够狠,http://em.21dtv.com/songs/60070544.mkv +蔡振南-甭搁憨,http://em.21dtv.com/songs/60010350.mkv +蔡秋凤-甭搁憨,http://em.21dtv.com/songs/60010349.mkv +苗苗-兵哥哥,http://em.21dtv.com/songs/60084915.mkv +宋祖英-兵哥哥,http://em.21dtv.com/songs/60010865.mkv +林奕匡-不敢当,http://em.21dtv.com/songs/60132603.mkv +赵景春-边关道,http://em.21dtv.com/songs/60112984.mkv +宇宙人-不孤岛,http://em.21dtv.com/songs/60112636.mkv +王杰-不孤单,http://em.21dtv.com/songs/60011111.mkv +梁静茹-不敢当,http://em.21dtv.com/songs/60011101.mkv +邓灵-不敢爱,http://em.21dtv.com/songs/60115433.mkv +凌之轩-白骨哀,http://em.21dtv.com/songs/60082573.mkv +邓灵-不敢爱,http://em.21dtv.com/songs/60011099.mkv +李俊男-不该爱,http://em.21dtv.com/songs/60011061.mkv +徐浩-半分钟,http://em.21dtv.com/songs/60092717.mkv +陈奕迅-暴风雨,http://em.21dtv.com/songs/60110622.mkv +陈奕迅-暴风雨,http://em.21dtv.com/songs/60109695.mkv +高琳-暴风雨,http://em.21dtv.com/songs/60094356.mkv +TORO-暴风雨,http://em.21dtv.com/songs/60010087.mkv +陈百强-半分缘,http://em.21dtv.com/songs/60009859.mkv +朱明瑛-白发吟,http://em.21dtv.com/songs/60009659.mkv +童唱-白发吟,http://em.21dtv.com/songs/60009658.mkv +李佳薇-暴风雪,http://em.21dtv.com/songs/60122834.mkv +李佳薇-暴风雪,http://em.21dtv.com/songs/60121762.mkv +周京-边防星,http://em.21dtv.com/songs/60010456.mkv +黑珍珠-别烦我,http://em.21dtv.com/songs/60089557.mkv +冷漠+舒清-白发伤,http://em.21dtv.com/songs/60127759.mkv +吴思贤-不放手,http://em.21dtv.com/songs/60122585.mkv +谢常清-别放手,http://em.21dtv.com/songs/60084907.mkv +孔朝-不放手,http://em.21dtv.com/songs/60063996.mkv +刘嘉亮-别放手,http://em.21dtv.com/songs/60010577.mkv +谢安琪-八份三,http://em.21dtv.com/songs/60009462.mkv +谢安琪-八份三(演唱会),http://em.21dtv.com/songs/60009461.mkv +裕美-别放弃,http://em.21dtv.com/songs/60070534.mkv +多元神话-不放弃(演唱会),http://em.21dtv.com/songs/60069266.mkv +ER-别放弃,http://em.21dtv.com/songs/60010576.mkv +高向鹏+方瑞娥-白发情,http://em.21dtv.com/songs/60009657.mkv +楼宏章-白富美,http://em.21dtv.com/songs/60080229.mkv +崔伟亮-白富美,http://em.21dtv.com/songs/60074585.mkv +文翰-不分离,http://em.21dtv.com/songs/60135312.mkv +伍佳丽-爆发力,http://em.21dtv.com/songs/60082595.mkv +ADELE-best for last,http://em.21dtv.com/songs/60071575.mkv +李佳璐-避风港,http://em.21dtv.com/songs/60091300.mkv +聂琳峰-避风港,http://em.21dtv.com/songs/60010452.mkv +黄乙玲-避风港,http://em.21dtv.com/songs/60010451.mkv +郭富城-避风港,http://em.21dtv.com/songs/60010450.mkv +关德辉-避风港,http://em.21dtv.com/songs/60010449.mkv +冯曦妤-避风港,http://em.21dtv.com/songs/60010448.mkv +陈星-避风港,http://em.21dtv.com/songs/60010447.mkv +TAKE THAT-back for good,http://em.21dtv.com/songs/60000423.mkv +王心凌-BFF,http://em.21dtv.com/songs/60117917.mkv +宣鹏-不复返,http://em.21dtv.com/songs/60066878.mkv +王昆+李元华-北风吹,http://em.21dtv.com/songs/60116141.mkv +李晖+杨洪基-北风吹(演唱会),http://em.21dtv.com/songs/60082603.mkv +佚名-北风吹,http://em.21dtv.com/songs/60010171.mkv +王昆+李元华-北风吹,http://em.21dtv.com/songs/60010170.mkv +刘尊-北风吹,http://em.21dtv.com/songs/60010169.mkv +BRITNEY SPEARS-big fat bass(演唱会),http://em.21dtv.com/songs/60082098.mkv +BRITNEY SPEARS-big fat bass,http://em.21dtv.com/songs/60065550.mkv +郭静-百分百,http://em.21dtv.com/songs/60009768.mkv +李圣杰-背负爱,http://em.21dtv.com/songs/60091307.mkv +MILEY CYRUS-butterfly fly away,http://em.21dtv.com/songs/60066241.mkv +丁衣凡-BE WITH YOU,http://em.21dtv.com/songs/60096848.mkv +大张伟-倍儿爽,http://em.21dtv.com/songs/60096234.mkv +INNA-BE MY LOVER,http://em.21dtv.com/songs/60096847.mkv +天喜果-倍儿美,http://em.21dtv.com/songs/60112605.mkv +天喜果组合-倍儿美,http://em.21dtv.com/songs/60110965.mkv +SEAN KINGSTON-back 2 life,http://em.21dtv.com/songs/60067852.mkv +VAN MORRISON-brown eyed girl,http://em.21dtv.com/songs/60000720.mkv +徐良+崔天琪-Bee,http://em.21dtv.com/songs/60125580.mkv +LOSTPROPHETS-bring em down,http://em.21dtv.com/songs/60073005.mkv +ACE HOOD-body 2 body,http://em.21dtv.com/songs/60060771.mkv +徐若瑄-半调子,http://em.21dtv.com/songs/60009902.mkv +胜屿-不得已,http://em.21dtv.com/songs/60120869.mkv +黄启铭+陈势安-不动摇,http://em.21dtv.com/songs/60103725.mkv +家家-不等于,http://em.21dtv.com/songs/60096917.mkv +彭羚-不得已,http://em.21dtv.com/songs/60011040.mkv +童唱-笨段仙,http://em.21dtv.com/songs/60010336.mkv +温岚-北斗星,http://em.21dtv.com/songs/60010156.mkv +草蜢-半点心,http://em.21dtv.com/songs/60009858.mkv +草蜢-半点心(演唱会),http://em.21dtv.com/songs/60009857.mkv +B.A.D-半点心(演唱会),http://em.21dtv.com/songs/60009856.mkv +佚名-半点心(伦巴),http://em.21dtv.com/songs/60009855.mkv +晨熙-不懂味,http://em.21dtv.com/songs/60096919.mkv +吴克群-不倒翁,http://em.21dtv.com/songs/60082642.mkv +煜明-别等我,http://em.21dtv.com/songs/60074685.mkv +林立雯+纪文惠-不倒翁,http://em.21dtv.com/songs/60011034.mkv +黄圣依-不倒翁,http://em.21dtv.com/songs/60011033.mkv +童唱-不倒翁(无原唱),http://em.21dtv.com/songs/60011032.mkv +家蔚-半导体,http://em.21dtv.com/songs/60123847.mkv +THE BAND PERRY-better dig two,http://em.21dtv.com/songs/60072963.mkv +SOLER-不低头,http://em.21dtv.com/songs/60061063.mkv +红金升-彼当时(无原唱),http://em.21dtv.com/songs/60095837.mkv +KINGS OF LEON-back down south,http://em.21dtv.com/songs/60063536.mkv +雪村-爆肚孙,http://em.21dtv.com/songs/60010091.mkv +平安-摆渡人,http://em.21dtv.com/songs/60121629.mkv +杨晓峰-不打扰,http://em.21dtv.com/songs/60110295.mkv +夏天alex-不打扰,http://em.21dtv.com/songs/60102072.mkv +EXO-M-彼得潘,http://em.21dtv.com/songs/60082619.mkv +明岳-不懂你,http://em.21dtv.com/songs/60117774.mkv +于文华-拜大年,http://em.21dtv.com/songs/60089111.mkv +明岳-不懂你,http://em.21dtv.com/songs/60071789.mkv +于文华+李福山-拜大年,http://em.21dtv.com/songs/60009815.mkv +费玉清-拜大年(无原唱),http://em.21dtv.com/songs/60009814.mkv +卿云-并蒂莲,http://em.21dtv.com/songs/60128865.mkv +妙音兄弟-布达拉,http://em.21dtv.com/songs/60126763.mkv +吴克群+猪哥亮-冰的啦,http://em.21dtv.com/songs/60093801.mkv +DEV-bass down low,http://em.21dtv.com/songs/60072925.mkv +冯晓菲-布达拉,http://em.21dtv.com/songs/60071811.mkv +央金兰泽-布达拉,http://em.21dtv.com/songs/60063241.mkv +王恩丛-布达拉,http://em.21dtv.com/songs/60061084.mkv +龙飘飘-不得了,http://em.21dtv.com/songs/60011039.mkv +陈慧琳-不得了,http://em.21dtv.com/songs/60011038.mkv +陈慧琳-不得了(演唱会),http://em.21dtv.com/songs/60011037.mkv +罗文+汪明荃-并蒂花,http://em.21dtv.com/songs/60093026.mkv +汪明荃+罗文-并蒂花(戏曲),http://em.21dtv.com/songs/60092954.mkv +王秀芬-北戴河,http://em.21dtv.com/songs/60010155.mkv +韩磊-扁担歌,http://em.21dtv.com/songs/60114249.mkv +EXO-M+CHEN LU HAN-baby dont cry(演唱会),http://em.21dtv.com/songs/60082075.mkv +[Group] +groupName=十六万歌曲MV等 - 20 +安室奈美惠-baby dont cry,http://em.21dtv.com/songs/60000392.mkv +张伟明-不懂爱,http://em.21dtv.com/songs/60135190.mkv +景甜-不懂爱,http://em.21dtv.com/songs/60011046.mkv +林俊杰-表达爱,http://em.21dtv.com/songs/60010551.mkv +廖君+林俊杰-表达爱,http://em.21dtv.com/songs/60010550.mkv +黄红英-槟城艳,http://em.21dtv.com/songs/60010802.mkv +陈柏宇-不成熟,http://em.21dtv.com/songs/60069263.mkv +孙辉-不差钱,http://em.21dtv.com/songs/60116705.mkv +孙辉-不差钱,http://em.21dtv.com/songs/60011025.mkv +庄学忠-表错情,http://em.21dtv.com/songs/60010548.mkv +SAMANTHA MUMBA-baby come over,http://em.21dtv.com/songs/60000389.mkv +SHINE-半成年,http://em.21dtv.com/songs/60009850.mkv +朱维肖-百诚梦,http://em.21dtv.com/songs/60106922.mkv +SCISSOR SISTERS-baby come home,http://em.21dtv.com/songs/60072912.mkv +梅艳芳-不插电,http://em.21dtv.com/songs/60011024.mkv +佚名-bukan cinta biasa,http://em.21dtv.com/songs/60000728.mkv +佚名-baby come back,http://em.21dtv.com/songs/60000388.mkv +梦飞船-baby come back,http://em.21dtv.com/songs/60000387.mkv +PLAYER-baby come back,http://em.21dtv.com/songs/60000386.mkv +林姗-宝贝子,http://em.21dtv.com/songs/60010006.mkv +牙牙乐-比比亚,http://em.21dtv.com/songs/60116127.mkv +大张伟-百变摇,http://em.21dtv.com/songs/60074600.mkv +小辣椒-半包於,http://em.21dtv.com/songs/60042305.mkv +龙千玉-半边月,http://em.21dtv.com/songs/60009849.mkv +办桌二人组-半边月,http://em.21dtv.com/songs/60009848.mkv +曾心梅-半包烟,http://em.21dtv.com/songs/60009843.mkv +EMILIA-big big world,http://em.21dtv.com/songs/60000577.mkv +潘晓峰-蹦蹦跳,http://em.21dtv.com/songs/60091653.mkv +黄立行-巴别塔,http://em.21dtv.com/songs/60009505.mkv +陈柔希-不必说,http://em.21dtv.com/songs/60106403.mkv +袁泉-宝宝睡,http://em.21dtv.com/songs/60009968.mkv +邓小巧-半杯水,http://em.21dtv.com/songs/60009846.mkv +佚名-banana boat song,http://em.21dtv.com/songs/60000453.mkv +HARRY BELAFONTE-banana boat song,http://em.21dtv.com/songs/60000452.mkv +李童谣-半边人,http://em.21dtv.com/songs/60009847.mkv +张秀卿-半杯情,http://em.21dtv.com/songs/60009845.mkv +卢宗康-帮帮忙,http://em.21dtv.com/songs/60009937.mkv +彭羚-摆不来,http://em.21dtv.com/songs/60091179.mkv +影视歌曲-半边楼,http://em.21dtv.com/songs/60089297.mkv +袁成杰+戚薇-贝巴拉,http://em.21dtv.com/songs/60088618.mkv +后街男孩-bye bye love(演唱会),http://em.21dtv.com/songs/60073024.mkv +CLOWN-不必了,http://em.21dtv.com/songs/60061983.mkv +石康军-变不了,http://em.21dtv.com/songs/60010487.mkv +孙淑媚-拜拜啦,http://em.21dtv.com/songs/60009813.mkv +彭羚-罢不来,http://em.21dtv.com/songs/60009640.mkv +袁成杰+戚薇-巴贝拉,http://em.21dtv.com/songs/60009502.mkv +薛凯琪-八八六,http://em.21dtv.com/songs/60009453.mkv +EVERLY BROTHERS-bye bye love,http://em.21dtv.com/songs/60000755.mkv +叶佩雯-boom ba la,http://em.21dtv.com/songs/60000650.mkv +户松遥-baby baby love,http://em.21dtv.com/songs/60000378.mkv +董事长乐团-背包客,http://em.21dtv.com/songs/60107974.mkv +旺福-背包客,http://em.21dtv.com/songs/60071779.mkv +唐俪+江志丰-半杯酒,http://em.21dtv.com/songs/60063957.mkv +王又萱-半边花,http://em.21dtv.com/songs/60135534.mkv +陈岩-冰百合,http://em.21dtv.com/songs/60127550.mkv +段丽阳-爸爸好,http://em.21dtv.com/songs/60088172.mkv +苏富权-八瓣花,http://em.21dtv.com/songs/60074559.mkv +赵一颐-半半歌,http://em.21dtv.com/songs/60131838.mkv +谢雨欣-步步高,http://em.21dtv.com/songs/60011839.mkv +卢海鹏-步步高,http://em.21dtv.com/songs/60011838.mkv +景岗山+林依伦+高林生-步步高,http://em.21dtv.com/songs/60011837.mkv +李丹红-步步高,http://em.21dtv.com/songs/60011836.mkv +郭燕-步步高,http://em.21dtv.com/songs/60011834.mkv +STEPS-better best forgotten,http://em.21dtv.com/songs/60000563.mkv +谭咏麟-棒棒哒,http://em.21dtv.com/songs/60134234.mkv +群星-棒棒哒,http://em.21dtv.com/songs/60118848.mkv +华语群星-棒棒哒,http://em.21dtv.com/songs/60118410.mkv +张靓颖+大嘴巴-办不到,http://em.21dtv.com/songs/60009840.mkv +张韶涵-白白的,http://em.21dtv.com/songs/60009651.mkv +安室奈美惠-big boys cry,http://em.21dtv.com/songs/60072967.mkv +小尘埃-卜卜卜,http://em.21dtv.com/songs/60133594.mkv +Rita黄汐源-掰掰掰,http://em.21dtv.com/songs/60119178.mkv +S翼乐团-蹦必蹦,http://em.21dtv.com/songs/60116479.mkv +MC阿哲-棒棒棒,http://em.21dtv.com/songs/50000123.mkv +卢巧音-八佰伴,http://em.21dtv.com/songs/60092385.mkv +农夫-不不不,http://em.21dtv.com/songs/60092327.mkv +糯米团-拜拜拜,http://em.21dtv.com/songs/60088401.mkv +ROY KIM-bom bom bom,http://em.21dtv.com/songs/60082108.mkv +CRAYON POP-bar bar bar,http://em.21dtv.com/songs/60082083.mkv +BY2-bye bye bye(演唱会),http://em.21dtv.com/songs/60073023.mkv +王绎龙-boom boom boom,http://em.21dtv.com/songs/60072987.mkv +JOSS STONE-baby baby baby,http://em.21dtv.com/songs/60072911.mkv +S翼乐团-boom bi boom,http://em.21dtv.com/songs/60071579.mkv +紫薇-boom boom boom,http://em.21dtv.com/songs/60067859.mkv +林忆莲-不不不(演唱会),http://em.21dtv.com/songs/60011019.mkv +MC HOTDOG-补补补,http://em.21dtv.com/songs/60010935.mkv +成龙+TWINS-变变变,http://em.21dtv.com/songs/60010486.mkv +AT17-变变变(演唱会),http://em.21dtv.com/songs/60010485.mkv +谢金燕-哔哔哔,http://em.21dtv.com/songs/60010432.mkv +庞龙-蹦蹦吧,http://em.21dtv.com/songs/60010360.mkv +卢巧音-八百伴,http://em.21dtv.com/songs/60009456.mkv +HOTCHA-八八伴,http://em.21dtv.com/songs/60009451.mkv +佚名-bye bye bye,http://em.21dtv.com/songs/60000754.mkv +N SYNC-bye bye bye,http://em.21dtv.com/songs/60000753.mkv +BII-bye bye bye,http://em.21dtv.com/songs/60000752.mkv +LADY GAGA-boys boys boys(演唱会),http://em.21dtv.com/songs/60000678.mkv +WESTLIFE-bop bop baby,http://em.21dtv.com/songs/60000656.mkv +VANGABOY-boom boom boom,http://em.21dtv.com/songs/60000651.mkv +MISSTER-bomd bomd bomd,http://em.21dtv.com/songs/60000644.mkv +2女-blah blah blah,http://em.21dtv.com/songs/60000604.mkv +DESTINY'S CHILD-bills bills bills,http://em.21dtv.com/songs/60000587.mkv +曾文-bi bi ba(无原唱),http://em.21dtv.com/songs/60000575.mkv +P.LENDHURST-be bop baby(无原唱),http://em.21dtv.com/songs/60000464.mkv +BEAUTY.4-bang bang boom,http://em.21dtv.com/songs/60000457.mkv +草蜢-ba ba ba,http://em.21dtv.com/songs/60000369.mkv +F.I.R-blue boors ahead,http://em.21dtv.com/songs/60000623.mkv +冼佩瑾-彼岸鱼,http://em.21dtv.com/songs/60126627.mkv +黎明-不爱我,http://em.21dtv.com/songs/60093558.mkv +陈僖仪-不爱我,http://em.21dtv.com/songs/60082639.mkv +郑中基-别爱我,http://em.21dtv.com/songs/60010562.mkv +郑中基-别爱我(演唱会),http://em.21dtv.com/songs/60010561.mkv +D.ARKIN+E.ROBINSON-black and white(无原唱),http://em.21dtv.com/songs/60000592.mkv +李剑-半爱情,http://em.21dtv.com/songs/60087983.mkv +佚名-back at one,http://em.21dtv.com/songs/60000422.mkv +侧田-back at one(演唱会),http://em.21dtv.com/songs/60000421.mkv +昊恩+家家-不爱你,http://em.21dtv.com/songs/60010967.mkv +阿爆+BRANDY-不爱你,http://em.21dtv.com/songs/60010966.mkv +佚名-bust a move,http://em.21dtv.com/songs/60000735.mkv +戴爱玲-不爱了,http://em.21dtv.com/songs/60114562.mkv +徐若瑄-不爱了,http://em.21dtv.com/songs/60010964.mkv +李玖哲-不爱了,http://em.21dtv.com/songs/60010963.mkv +江淑娜-不爱了,http://em.21dtv.com/songs/60010962.mkv +阿茹娜-比爱快(演唱会),http://em.21dtv.com/songs/60010368.mkv +B.A.D-不安静,http://em.21dtv.com/songs/60010985.mkv +何洁+苏醒-彼岸花,http://em.21dtv.com/songs/60118336.mkv +夏米雅-彼岸花,http://em.21dtv.com/songs/60099905.mkv +涓子-彼岸花,http://em.21dtv.com/songs/60074666.mkv +JUSTIN MOORE-bait a hook,http://em.21dtv.com/songs/60065671.mkv +王菲-彼岸花,http://em.21dtv.com/songs/60010397.mkv +阿轮-彼岸花,http://em.21dtv.com/songs/60010396.mkv +SAM SPARRO-black and gold,http://em.21dtv.com/songs/60082101.mkv +PIXIE LOTT-boys and girls,http://em.21dtv.com/songs/60048216.mkv +孙思怡-不安份,http://em.21dtv.com/songs/60100831.mkv +低调组合-Bad,http://em.21dtv.com/songs/60126598.mkv +低调组合-Bad,http://em.21dtv.com/songs/60125118.mkv +秦宇子+刘至佳-Bad,http://em.21dtv.com/songs/60104348.mkv +戴佩妮-不安定,http://em.21dtv.com/songs/60091229.mkv +陈柏宇-BABY DON'T CRY,http://em.21dtv.com/songs/60096846.mkv +王思佳-BA BA BA,http://em.21dtv.com/songs/60096400.mkv +PALOMA FAITH-black and blue,http://em.21dtv.com/songs/60072972.mkv +ROBBIE WILLIAMS-be a boy(演唱会),http://em.21dtv.com/songs/60072929.mkv +佚名-buttons and bows,http://em.21dtv.com/songs/60000747.mkv +DESTINY'S CHILD-bug a boo,http://em.21dtv.com/songs/60000727.mkv +J.TURNBOW+L.PARKS-bread and butter(无原唱),http://em.21dtv.com/songs/60000685.mkv +佚名-beauty and beast,http://em.21dtv.com/songs/60000513.mkv +R.E.M-bang and blame,http://em.21dtv.com/songs/60000456.mkv +刘心宇-爱之醉,http://em.21dtv.com/songs/60103114.mkv +风火海-爱症状,http://em.21dtv.com/songs/60093511.mkv +窦老三-爱做主,http://em.21dtv.com/songs/60088376.mkv +段红-爱之醉,http://em.21dtv.com/songs/60065823.mkv +周丽淇-爱作战,http://em.21dtv.com/songs/60009294.mkv +何炅-爱自由X,http://em.21dtv.com/songs/60089126.mkv +颜楚衫-爱转移,http://em.21dtv.com/songs/60088966.mkv +李佳璐-爱自由,http://em.21dtv.com/songs/60082561.mkv +骆驼强子-爱之眼(演唱会),http://em.21dtv.com/songs/60074540.mkv +庞龙-爱走远,http://em.21dtv.com/songs/60009290.mkv +轻松玩乐团-爱自由,http://em.21dtv.com/songs/60009279.mkv +何炅-爱自由,http://em.21dtv.com/songs/60009278.mkv +TY-凹造型,http://em.21dtv.com/songs/60133305.mkv +罗志祥-爱走秀,http://em.21dtv.com/songs/60066835.mkv +赵薇-爱之玄,http://em.21dtv.com/songs/60009254.mkv +锁曼丽-爱之心,http://em.21dtv.com/songs/60009253.mkv +陈怡静-爱滋味,http://em.21dtv.com/songs/60074543.mkv +群星-爱之声,http://em.21dtv.com/songs/60126059.mkv +指南针乐队-爱着谁,http://em.21dtv.com/songs/60111930.mkv +张碧晨+余枫-爱之声,http://em.21dtv.com/songs/60106863.mkv +耿斯汉-爱着谁,http://em.21dtv.com/songs/60105305.mkv +陈魁-爱转手,http://em.21dtv.com/songs/60084867.mkv +罗钢-爱在party,http://em.21dtv.com/songs/60009153.mkv +雷雨哥+晟涵-爱着你,http://em.21dtv.com/songs/60123338.mkv +刘宸启-爱怎能,http://em.21dtv.com/songs/60118386.mkv +陈宏斌-爱着你,http://em.21dtv.com/songs/60112347.mkv +吴俊宏+向蕙玲-爱着你(HD),http://em.21dtv.com/songs/10012724.mkv +Nora Says+吴海文-爱着你,http://em.21dtv.com/songs/60107423.mkv +吴俊宏+向蕙玲-爱着你,http://em.21dtv.com/songs/60101293.mkv +龚淑均-爱着你,http://em.21dtv.com/songs/60100700.mkv +洪凯律-爱着你,http://em.21dtv.com/songs/60094574.mkv +华生-爱着你,http://em.21dtv.com/songs/60084868.mkv +任真+侯旭-爱着你,http://em.21dtv.com/songs/60009232.mkv +陆毅-爱着你,http://em.21dtv.com/songs/60009231.mkv +刘德华-爱着你,http://em.21dtv.com/songs/60009230.mkv +办桌二人组-爱着你,http://em.21dtv.com/songs/60009229.mkv +张凡-爱走了,http://em.21dtv.com/songs/60114527.mkv +邵雨涵-爱之莲,http://em.21dtv.com/songs/60113008.mkv +庄妮-爱走了,http://em.21dtv.com/songs/60112651.mkv +F4-爱罪泪,http://em.21dtv.com/songs/60090406.mkv +洪小乔-爱之旅,http://em.21dtv.com/songs/60088223.mkv +SS组合-爱重来,http://em.21dtv.com/songs/60087220.mkv +林埈永-爱走了,http://em.21dtv.com/songs/60066834.mkv +梁轩-爱走了,http://em.21dtv.com/songs/60009286.mkv +蓝心湄-爱走了,http://em.21dtv.com/songs/60009285.mkv +周艳泓-爱之旅,http://em.21dtv.com/songs/60009249.mkv +林志美-爱自己,http://em.21dtv.com/songs/60113708.mkv +秦岚-爱自己,http://em.21dtv.com/songs/60081674.mkv +陈瑞-爱知己,http://em.21dtv.com/songs/60080907.mkv +羽泉-爱自己,http://em.21dtv.com/songs/60009274.mkv +许飞-爱自己,http://em.21dtv.com/songs/60009273.mkv +莫文蔚-爱自己,http://em.21dtv.com/songs/60009272.mkv +梁咏琪-爱自己,http://em.21dtv.com/songs/60009271.mkv +UP GIRLS-爱自己,http://em.21dtv.com/songs/60009270.mkv +梁咏琪-爱自己(演唱会),http://em.21dtv.com/songs/60009269.mkv +罗志祥-爱转角,http://em.21dtv.com/songs/60009267.mkv +索朗旺姆-爱中华,http://em.21dtv.com/songs/60101466.mkv +林青+刘晓青-爱之海,http://em.21dtv.com/songs/60009248.mkv +本兮-爱之光,http://em.21dtv.com/songs/60125664.mkv +张津涤-爱之歌,http://em.21dtv.com/songs/60119531.mkv +林沫辰-爱走过,http://em.21dtv.com/songs/60074545.mkv +轻松玩乐团-爱之光,http://em.21dtv.com/songs/60009247.mkv +许慧欣-爱绽放,http://em.21dtv.com/songs/60071756.mkv +谢霆锋+廿四味-爱最大,http://em.21dtv.com/songs/60094691.mkv +肖洒+唐一嘉-爱转动,http://em.21dtv.com/songs/60094647.mkv +谢霆锋+欧豪-爱最大,http://em.21dtv.com/songs/60093805.mkv +容一敏-爱转动,http://em.21dtv.com/songs/60081140.mkv +沈芳如-爱最大,http://em.21dtv.com/songs/60069229.mkv +阿妹妹-爱最大,http://em.21dtv.com/songs/60009291.mkv +庾澄庆+张信哲-爱转动,http://em.21dtv.com/songs/60009266.mkv +黄征-爱值得,http://em.21dtv.com/songs/60009262.mkv +黄品冠-爱值得,http://em.21dtv.com/songs/60009261.mkv +黄征-爱值得(演唱会),http://em.21dtv.com/songs/60009260.mkv +陈黎明-爱之道,http://em.21dtv.com/songs/60009246.mkv +哈琳-爱珍藏,http://em.21dtv.com/songs/60097052.mkv +江蕙+陈子鸿-爱着啊,http://em.21dtv.com/songs/60009224.mkv +黄绮珊-爱与罪,http://em.21dtv.com/songs/60080575.mkv +索南扎西-asia亚洲,http://em.21dtv.com/songs/60067850.mkv +刘嘉亮-爱远走,http://em.21dtv.com/songs/60009145.mkv +苏仨-哎哟哟,http://em.21dtv.com/songs/60123107.mkv +杨娜-爱呀呀,http://em.21dtv.com/songs/60120654.mkv +施星伊-哎呀呀,http://em.21dtv.com/songs/60116854.mkv +戴爱玲-爱永远,http://em.21dtv.com/songs/60063938.mkv +刘美含+易易紫+李媛希-哎咿呀,http://em.21dtv.com/songs/60006881.mkv +刘德华-哎吔吔,http://em.21dtv.com/songs/60006880.mkv +郑伊健-哎呀呀,http://em.21dtv.com/songs/60006877.mkv +张秀卿-哎呀呀,http://em.21dtv.com/songs/60006876.mkv +新少年俱乐部-哎呀呀,http://em.21dtv.com/songs/60006875.mkv +孙萌-哎呀呀,http://em.21dtv.com/songs/60006874.mkv +罗时丰-哎呀呀,http://em.21dtv.com/songs/60006873.mkv +郭采洁-爱异乡,http://em.21dtv.com/songs/60009087.mkv +林俊吉-爱袂完,http://em.21dtv.com/songs/60071721.mkv +云飞儿-爱要逃,http://em.21dtv.com/songs/60133347.mkv +云飞儿-爱要逃,http://em.21dtv.com/songs/60118310.mkv +吴歌-爱一生,http://em.21dtv.com/songs/60119352.mkv +落落-暗夜谁,http://em.21dtv.com/songs/60102695.mkv +张津涤-爱忧伤,http://em.21dtv.com/songs/60102233.mkv +云菲菲-爱忧伤,http://em.21dtv.com/songs/60063336.mkv +胡佳琛-爱忧伤,http://em.21dtv.com/songs/60009098.mkv +黄格选-爱要说(演唱会),http://em.21dtv.com/songs/60009016.mkv +TWINS-are you sleeping,http://em.21dtv.com/songs/60000328.mkv +张惠妹+李琦+塔斯肯+刘雅婷+王拓-Are You Ready,http://em.21dtv.com/songs/60081511.mkv +那英-爱依然,http://em.21dtv.com/songs/60009068.mkv +张惠妹-are you ready,http://em.21dtv.com/songs/60000327.mkv +梁汉文-爱与情,http://em.21dtv.com/songs/60009131.mkv +梁汉文-爱与情(演唱会),http://em.21dtv.com/songs/60009130.mkv +Chris Brown+Tyga-Ayo,http://em.21dtv.com/songs/60109803.mkv +MIRANDA COSGROVE-about you now,http://em.21dtv.com/songs/60060752.mkv +张晋樵-爱有你,http://em.21dtv.com/songs/60009106.mkv +B.A.D-爱有你,http://em.21dtv.com/songs/60009105.mkv +汤薇恩-爱延蔓,http://em.21dtv.com/songs/60106062.mkv +江堰+义仁德-爱与梦,http://em.21dtv.com/songs/60065819.mkv +呙媛婧+义仁德-爱与梦,http://em.21dtv.com/songs/60065818.mkv +庄心妍+萧全-爱音乐,http://em.21dtv.com/songs/60099997.mkv +THE BAND PERRY-all your life,http://em.21dtv.com/songs/60072882.mkv +蔡依林-爱引力(演唱会),http://em.21dtv.com/songs/60009093.mkv +动力火车-爱已经,http://em.21dtv.com/songs/60090753.mkv +郑中基-爱越界(演唱会),http://em.21dtv.com/songs/60009147.mkv +黄国俊-爱一句(无原唱),http://em.21dtv.com/songs/60009058.mkv +陈盈洁-爱与恨,http://em.21dtv.com/songs/60096031.mkv +林俊吉-爱一回,http://em.21dtv.com/songs/60071751.mkv +ETERNITY-爱永恒,http://em.21dtv.com/songs/60069220.mkv +陈奕迅-arent you glad,http://em.21dtv.com/songs/60000330.mkv +王力宏+章子怡-爱一点,http://em.21dtv.com/songs/60112846.mkv +乱弹阿翔-爱雨多,http://em.21dtv.com/songs/60090496.mkv +章子怡+王力宏-爱一点,http://em.21dtv.com/songs/60084861.mkv +莫艳琳-爱一点,http://em.21dtv.com/songs/60009034.mkv +新宝岛康乐队-阿姨打,http://em.21dtv.com/songs/60006841.mkv +黄渤-爱与愁,http://em.21dtv.com/songs/60124746.mkv +陈雅森-爱亦仇,http://em.21dtv.com/songs/60123330.mkv +古巨基-爱与诚,http://em.21dtv.com/songs/60107561.mkv +蔡明顺-爱一场,http://em.21dtv.com/songs/60093732.mkv +周笔畅-爱与诚,http://em.21dtv.com/songs/60092486.mkv +王烁巽-爱一场,http://em.21dtv.com/songs/60084860.mkv +伍思凯+李代沫-爱与愁,http://em.21dtv.com/songs/60082554.mkv +伍思凯-爱与愁,http://em.21dtv.com/songs/60009123.mkv +伍思凯-爱与愁(演唱会),http://em.21dtv.com/songs/60009122.mkv +古巨基-爱与诚,http://em.21dtv.com/songs/60009121.mkv +古巨基-爱与诚(演唱会),http://em.21dtv.com/songs/60009120.mkv +陈随意-爱一半,http://em.21dtv.com/songs/60082551.mkv +林柔均-爱一半,http://em.21dtv.com/songs/60065816.mkv +许志豪-爱一半,http://em.21dtv.com/songs/60063936.mkv +AI MINI-爱一百(无原唱),http://em.21dtv.com/songs/60009028.mkv +BY2-爱又爱,http://em.21dtv.com/songs/60133178.mkv +吕明银-爱呀爱,http://em.21dtv.com/songs/60116633.mkv +BEAST+A PINK-a year ago,http://em.21dtv.com/songs/60072862.mkv +王尚宏-爱相信,http://em.21dtv.com/songs/60008981.mkv +邱永传-爱虚伪,http://em.21dtv.com/songs/60061020.mkv +依稀-爱香味,http://em.21dtv.com/songs/60008982.mkv +郭蘅祈(郭子)-爱相同,http://em.21dtv.com/songs/60129671.mkv +天威-爱想逃,http://em.21dtv.com/songs/60127887.mkv +王秀琪+郑君威-爱相随,http://em.21dtv.com/songs/60124281.mkv +甲子慧-爱相随,http://em.21dtv.com/songs/60111312.mkv +谢金燕-爱香水,http://em.21dtv.com/songs/60080864.mkv +罗志祥-爱享瘦,http://em.21dtv.com/songs/60074516.mkv +爱相随+胭脂雪飘飘-爱相随,http://em.21dtv.com/songs/60068076.mkv +佚名-暗相思,http://em.21dtv.com/songs/60009405.mkv +翁立友-暗相思,http://em.21dtv.com/songs/60009404.mkv +江蕙-暗相思,http://em.21dtv.com/songs/60009403.mkv +飘乐团-爱消失,http://em.21dtv.com/songs/60008996.mkv +周华健-爱相随,http://em.21dtv.com/songs/60008980.mkv +黄品冠-爱相随(演唱会),http://em.21dtv.com/songs/60008979.mkv +庄学忠+陈美娥-爱相思,http://em.21dtv.com/songs/60008978.mkv +姚莉+姚敏-爱相思,http://em.21dtv.com/songs/60008977.mkv +高云翔-爱下去,http://em.21dtv.com/songs/60121153.mkv +TENSION-爱星球,http://em.21dtv.com/songs/60009005.mkv +张学友-爱下去,http://em.21dtv.com/songs/60008975.mkv +郭富城-爱下去,http://em.21dtv.com/songs/60008974.mkv +李克勤-爱下去(演唱会),http://em.21dtv.com/songs/60008973.mkv +郭富城-爱下去(演唱会),http://em.21dtv.com/songs/60008972.mkv +奥杰阿格-阿呷嫫,http://em.21dtv.com/songs/60006731.mkv +敖伟-爱醒了,http://em.21dtv.com/songs/60115190.mkv +尚雯婕-阿修罗,http://em.21dtv.com/songs/60062899.mkv +王菲-阿修罗,http://em.21dtv.com/songs/60006838.mkv +佚名-abc小姐,http://em.21dtv.com/songs/60000095.mkv +王瑞霞-爱幸福(无原唱),http://em.21dtv.com/songs/60071000.mkv +洪百慧-爱幸福,http://em.21dtv.com/songs/60009006.mkv +迪克牛仔-爱无罪,http://em.21dtv.com/songs/60008970.mkv +刘德华-爱无知,http://em.21dtv.com/songs/60008967.mkv +JAKE OWEN-alone with you,http://em.21dtv.com/songs/60065542.mkv +范永生-爱无缘,http://em.21dtv.com/songs/60008966.mkv +王杰-爱无言,http://em.21dtv.com/songs/60008965.mkv +刘程伊-爱无限,http://em.21dtv.com/songs/60112544.mkv +ALICIA KEYS-a womans worth,http://em.21dtv.com/songs/60000082.mkv +王欢-爱为她,http://em.21dtv.com/songs/60099407.mkv +果子-爱为她,http://em.21dtv.com/songs/60094178.mkv +蔡依林-爱无赦,http://em.21dtv.com/songs/60008961.mkv +林子祥-哎乌婆,http://em.21dtv.com/songs/60006867.mkv +谢珊-爱为你,http://em.21dtv.com/songs/60118054.mkv +张祥洪-爱无奈,http://em.21dtv.com/songs/60082547.mkv +东野-爱我吗,http://em.21dtv.com/songs/60098071.mkv +黎明-爱我吗,http://em.21dtv.com/songs/60093568.mkv +王丽达-爱无眠,http://em.21dtv.com/songs/60008960.mkv +王识贤-爱无留,http://em.21dtv.com/songs/60008959.mkv +林子宣-爱无聊,http://em.21dtv.com/songs/60008958.mkv +潘嘉丽-爱无力,http://em.21dtv.com/songs/60008957.mkv +黄思婷-爱无价,http://em.21dtv.com/songs/60133130.mkv +林玉英-爱无解,http://em.21dtv.com/songs/60100212.mkv +满文军-爱无界,http://em.21dtv.com/songs/60091642.mkv +朱天毅-爱忘记,http://em.21dtv.com/songs/60082541.mkv +刘烨-爱无界,http://em.21dtv.com/songs/60008954.mkv +文章-爱完结(无原唱),http://em.21dtv.com/songs/60008871.mkv +李俊男-爱无悔,http://em.21dtv.com/songs/60128081.mkv +刘愉愉-爱无悔,http://em.21dtv.com/songs/60063933.mkv +蒋思思-爱无悔,http://em.21dtv.com/songs/60008952.mkv +邓天晴-爱无痕,http://em.21dtv.com/songs/60008950.mkv +佚名-阿文哥,http://em.21dtv.com/songs/60006831.mkv +沈芳如-爱无底,http://em.21dtv.com/songs/60095765.mkv +洪卓立-爱无胆,http://em.21dtv.com/songs/60008948.mkv +王嘉华-爱我吧,http://em.21dtv.com/songs/60132719.mkv +毛妮卓玛-爱我吧,http://em.21dtv.com/songs/60071746.mkv +林宝-爱无边,http://em.21dtv.com/songs/60008946.mkv +于台烟-爱舞伴,http://em.21dtv.com/songs/60007141.mkv +廖语晴-爱喔爱,http://em.21dtv.com/songs/60008875.mkv +林欣彤-are u okay,http://em.21dtv.com/songs/60072900.mkv +乔冠霖-爱太重,http://em.21dtv.com/songs/60134857.mkv +江志丰-爱太重,http://em.21dtv.com/songs/60069218.mkv +许智豪-爱太重,http://em.21dtv.com/songs/60063924.mkv +SHAKIRA-addicted to you,http://em.21dtv.com/songs/60065559.mkv +CHRISTINA PERRI-a thousand years,http://em.21dtv.com/songs/60065538.mkv +MADAME MAYHEM-addicted to you,http://em.21dtv.com/songs/60062964.mkv +曾慧-庵堂怨,http://em.21dtv.com/songs/60009345.mkv +龙啸-爱太远,http://em.21dtv.com/songs/60008864.mkv +利绮-爱太远,http://em.21dtv.com/songs/60008863.mkv +郑俊弘-爱同行,http://em.21dtv.com/songs/60114821.mkv +金霖-爱逃亡,http://em.21dtv.com/songs/60082540.mkv +田跃君-爱太晚,http://em.21dtv.com/songs/60062994.mkv +佚名-爱逃亡,http://em.21dtv.com/songs/60008865.mkv +佚名-around the world,http://em.21dtv.com/songs/60000337.mkv +M.O.V.E-around the world,http://em.21dtv.com/songs/60000336.mkv +AQUA-around the world,http://em.21dtv.com/songs/60000335.mkv +张菲-around the world(演唱会),http://em.21dtv.com/songs/60000334.mkv +吴克群-爱太痛,http://em.21dtv.com/songs/60008861.mkv +佚名-all this time(无原唱),http://em.21dtv.com/songs/60000180.mkv +阿木-爱太深,http://em.21dtv.com/songs/60135885.mkv +孙露-爱太深,http://em.21dtv.com/songs/60115837.mkv +张秀卿+袁小迪-爱太深,http://em.21dtv.com/songs/60096076.mkv +子恒-爱太深,http://em.21dtv.com/songs/60074501.mkv +杨浩楠-爱太深,http://em.21dtv.com/songs/60065812.mkv +王键-爱太深,http://em.21dtv.com/songs/60008860.mkv +翁虹-爱太伤,http://em.21dtv.com/songs/60008859.mkv +WESTLIFE-angel天使,http://em.21dtv.com/songs/60000280.mkv +林灿鸿-爱拖欠,http://em.21dtv.com/songs/60008869.mkv +葛林-爱太难,http://em.21dtv.com/songs/60129562.mkv +欢子-爱太难,http://em.21dtv.com/songs/60127140.mkv +刘德华-爱太难,http://em.21dtv.com/songs/60008857.mkv +零点乐队-爱太难,http://em.21dtv.com/songs/60008856.mkv +刘德华-爱太难(演唱会),http://em.21dtv.com/songs/60008855.mkv +木童-阿童木,http://em.21dtv.com/songs/60122818.mkv +傲艺-爱太萌,http://em.21dtv.com/songs/60070501.mkv +BILLY VERA-at this moment,http://em.21dtv.com/songs/60000356.mkv +李金玲-爱太累,http://em.21dtv.com/songs/60133829.mkv +郑智勋-爱太累,http://em.21dtv.com/songs/60099529.mkv +顾峰-爱太累,http://em.21dtv.com/songs/60066828.mkv +张华-爱太累,http://em.21dtv.com/songs/60008854.mkv +晓月-爱太累,http://em.21dtv.com/songs/60008853.mkv +THE WANTED-all time low,http://em.21dtv.com/songs/60000182.mkv +佚名-after the love,http://em.21dtv.com/songs/60000111.mkv +佚名-addicted to love,http://em.21dtv.com/songs/60000102.mkv +W-INDS-addicted to love,http://em.21dtv.com/songs/60000101.mkv +ROBERT PALMER-addicted to love,http://em.21dtv.com/songs/60000100.mkv +张惠妹-addicted to love(演唱会),http://em.21dtv.com/songs/60000099.mkv +吉娜-爱太狂,http://em.21dtv.com/songs/60111745.mkv +吉娜-爱太狂(演唱会),http://em.21dtv.com/songs/60061019.mkv +王心凌-爱太空,http://em.21dtv.com/songs/60008852.mkv +温岚-爱太急,http://em.21dtv.com/songs/60008851.mkv +佚名-at the hop,http://em.21dtv.com/songs/60000355.mkv +佚名-all time high,http://em.21dtv.com/songs/60000181.mkv +苏路-爱太多,http://em.21dtv.com/songs/60008850.mkv +RICHARD MARX+DONNA L-at the beginning,http://em.21dtv.com/songs/60000354.mkv +MAINO+T PAIN-all the above,http://em.21dtv.com/songs/60063526.mkv +大庆小芳-A4腰,http://em.21dtv.com/songs/60120433.mkv +朗嘎拉姆-爱善缘,http://em.21dtv.com/songs/60119635.mkv +朱茵-爱上瘾,http://em.21dtv.com/songs/60008731.mkv +阎维文-啊三峡,http://em.21dtv.com/songs/60006864.mkv +MERMER-爱上我,http://em.21dtv.com/songs/60123504.mkv +BILLY JOEL-all shook up,http://em.21dtv.com/songs/60000174.mkv +才让措-AS TIME GOES,http://em.21dtv.com/songs/60096845.mkv +孟十朵-爱上他,http://em.21dtv.com/songs/60110146.mkv +光良-爱上她(演唱会),http://em.21dtv.com/songs/60008711.mkv +罗百吉-爱上他,http://em.21dtv.com/songs/60008709.mkv +何文锐-爱谁谁,http://em.21dtv.com/songs/60115681.mkv +王琳玲-爱失守,http://em.21dtv.com/songs/60108720.mkv +杨宇彤-爱谁谁,http://em.21dtv.com/songs/60103383.mkv +刘维-爱谁谁,http://em.21dtv.com/songs/60100778.mkv +石磊-爱受伤,http://em.21dtv.com/songs/60074499.mkv +BLINK182-adams song,http://em.21dtv.com/songs/60063521.mkv +于江-爱谁谁,http://em.21dtv.com/songs/60008833.mkv +阿杜-爱上谁,http://em.21dtv.com/songs/60008708.mkv +格桑梅朵-阿桑桑,http://em.21dtv.com/songs/60006820.mkv +雨宗林-爱伤人,http://em.21dtv.com/songs/60070494.mkv +佚名-a summer place,http://em.21dtv.com/songs/60000071.mkv +多杰-爱上你,http://em.21dtv.com/songs/60125342.mkv +张名扬-爱上你,http://em.21dtv.com/songs/60109301.mkv +郑晓填-爱上你,http://em.21dtv.com/songs/60108054.mkv +高艺菲-爱上你,http://em.21dtv.com/songs/60106474.mkv +杜奕衡+桑兰-爱上你,http://em.21dtv.com/songs/60089350.mkv +闪亮三姐妹-爱撒奶,http://em.21dtv.com/songs/60082524.mkv +陈法拉-爱上鸟,http://em.21dtv.com/songs/60069210.mkv +莫文蔚-爱死你,http://em.21dtv.com/songs/60008842.mkv +田家达-爱是你(无原唱),http://em.21dtv.com/songs/60008782.mkv +斯琴高丽-爱上你,http://em.21dtv.com/songs/60008655.mkv +林宝-爱上你,http://em.21dtv.com/songs/60008654.mkv +陈小春-爱上你,http://em.21dtv.com/songs/60008653.mkv +BY2-爱上你,http://em.21dtv.com/songs/60008652.mkv +黄烈传-爱so natural,http://em.21dtv.com/songs/60006928.mkv +BRAD PAISLEY-american saturday night,http://em.21dtv.com/songs/60000232.mkv +朱婧-阿诗玛,http://em.21dtv.com/songs/60091286.mkv +郑钧-阿诗玛,http://em.21dtv.com/songs/60082456.mkv +SECRET-爱是move,http://em.21dtv.com/songs/60062150.mkv +LOBO-a simple man,http://em.21dtv.com/songs/60000067.mkv +方瑄-爱伤了,http://em.21dtv.com/songs/60121722.mkv +丸子-爱汜滥,http://em.21dtv.com/songs/60087247.mkv +翁立友-阿沙力,http://em.21dtv.com/songs/60080543.mkv +陈靖琳-爱上了(演唱会),http://em.21dtv.com/songs/60074476.mkv +佚名-爱碎了,http://em.21dtv.com/songs/60008844.mkv +赖雅妍-爱死了,http://em.21dtv.com/songs/60008839.mkv +本多RURU-爱上了,http://em.21dtv.com/songs/60008643.mkv +任贤齐-爱伤了,http://em.21dtv.com/songs/60008623.mkv +段千寻-爱傻了,http://em.21dtv.com/songs/60008621.mkv +佚名-阿莎力(无原唱),http://em.21dtv.com/songs/60006821.mkv +刘可-爱盛开,http://em.21dtv.com/songs/60101954.mkv +阿茹娜-爱盛开,http://em.21dtv.com/songs/60063920.mkv +ENERGY-爱失控,http://em.21dtv.com/songs/60008751.mkv +黄伊汶-爱失救,http://em.21dtv.com/songs/60008750.mkv +紫炫-爱是海,http://em.21dtv.com/songs/60132787.mkv +刘冰-爱说谎,http://em.21dtv.com/songs/60065811.mkv +谭咏麟-爱是风,http://em.21dtv.com/songs/60092119.mkv +徐伟贤-爱世代,http://em.21dtv.com/songs/60092706.mkv +王二妮-爱陕北,http://em.21dtv.com/songs/60074472.mkv +萧亚轩-爱上爱,http://em.21dtv.com/songs/60008627.mkv +千菅春香-爱の诗,http://em.21dtv.com/songs/60122543.mkv +余天助-爱如舟,http://em.21dtv.com/songs/60125131.mkv +蔡秋凤-爱人仔,http://em.21dtv.com/songs/60008595.mkv +黄雨勋-爱如樱,http://em.21dtv.com/songs/60127628.mkv +小龙-爱如烟,http://em.21dtv.com/songs/60008612.mkv +王铮亮-爱燃烧,http://em.21dtv.com/songs/60102561.mkv +王铮亮-爱 燃烧,http://em.21dtv.com/songs/60097049.mkv +乔幼-爱人呐,http://em.21dtv.com/songs/60130050.mkv +郭采洁-爱人呢,http://em.21dtv.com/songs/60123245.mkv +吉木喜儿-阿惹牛,http://em.21dtv.com/songs/60090801.mkv +巫启贤-爱人哪,http://em.21dtv.com/songs/60008573.mkv +FREE-all right now,http://em.21dtv.com/songs/60000171.mkv +简弘亦-爱荣枯,http://em.21dtv.com/songs/60118830.mkv +许千千-爱如花,http://em.21dtv.com/songs/60074469.mkv +林忆莲-爱如歌,http://em.21dtv.com/songs/60091454.mkv +杨克强-爱如风,http://em.21dtv.com/songs/60118702.mkv +谭晶-爱如电,http://em.21dtv.com/songs/60074468.mkv +衡越-爱如初,http://em.21dtv.com/songs/60084846.mkv +孙淑媚-爱人啊,http://em.21dtv.com/songs/60008546.mkv +南台湾小姑娘-爱人abc(无原唱),http://em.21dtv.com/songs/60008545.mkv +刁寒-爱情装,http://em.21dtv.com/songs/60074464.mkv +苏醒-爱清雨,http://em.21dtv.com/songs/60091949.mkv +张倾城-爱情缘(舞曲版),http://em.21dtv.com/songs/60063909.mkv +张倾城-爱情缘,http://em.21dtv.com/songs/60063392.mkv +佚名-爱情雨,http://em.21dtv.com/songs/60008478.mkv +郑琇月-爱情雨(无原唱),http://em.21dtv.com/songs/60008477.mkv +林建亨-爱情鱼,http://em.21dtv.com/songs/60008473.mkv +林俊杰-爱情yogurt,http://em.21dtv.com/songs/60008095.mkv +翁汕汕-爱情香,http://em.21dtv.com/songs/60120856.mkv +陈茂丰-爱情戏,http://em.21dtv.com/songs/60117353.mkv +曹雅雯-爱情戏,http://em.21dtv.com/songs/60102300.mkv +黄品源-爱情香,http://em.21dtv.com/songs/60008431.mkv +龙千玉-爱情戏,http://em.21dtv.com/songs/60008419.mkv +关键-爱情vip,http://em.21dtv.com/songs/60008094.mkv +Mc马祥矿-爱情颂,http://em.21dtv.com/songs/60133246.mkv +小东+吴娜亚-爱情锁,http://em.21dtv.com/songs/60107678.mkv +钱澄+一绫-爱情锁,http://em.21dtv.com/songs/60062824.mkv +王建杰+刘依纯-爱情锁,http://em.21dtv.com/songs/60008400.mkv +张明珠-爱情水,http://em.21dtv.com/songs/60008392.mkv +张智成-爱情树,http://em.21dtv.com/songs/60008391.mkv +江志丰-爱情沙,http://em.21dtv.com/songs/60008370.mkv +李晓杰-爱情sayonara,http://em.21dtv.com/songs/60008093.mkv +一绫-爱情批,http://em.21dtv.com/songs/60130024.mkv +詹曼铃-爱情批,http://em.21dtv.com/songs/60008343.mkv +覃桢-爱情鸟,http://em.21dtv.com/songs/60097055.mkv +妥云福-爱情鸟,http://em.21dtv.com/songs/60081169.mkv +TWINS-爱全能,http://em.21dtv.com/songs/60008516.mkv +泳儿-爱情鸟,http://em.21dtv.com/songs/60008337.mkv +林依轮-爱情鸟,http://em.21dtv.com/songs/60008336.mkv +黄维德-爱情鸟,http://em.21dtv.com/songs/60008335.mkv +孙悦-爱情鸟(演唱会),http://em.21dtv.com/songs/60008334.mkv +刘程伊-爱情美,http://em.21dtv.com/songs/60062665.mkv +萧亚轩-爱情美,http://em.21dtv.com/songs/60008313.mkv +郑源-爱情路,http://em.21dtv.com/songs/60102800.mkv +王中平-爱情恋,http://em.21dtv.com/songs/60082512.mkv +周华健-爱情路,http://em.21dtv.com/songs/60008303.mkv +高安-爱情酒,http://em.21dtv.com/songs/60069194.mkv +郑琇月-爱情酒,http://em.21dtv.com/songs/60008275.mkv +蔡丽津-爱情火,http://em.21dtv.com/songs/60135708.mkv +云飞-爱琴海,http://em.21dtv.com/songs/60120290.mkv +戴玉强-爱情湖,http://em.21dtv.com/songs/60063895.mkv +曾国珲-爱情荒,http://em.21dtv.com/songs/60063348.mkv +沈文程-爱情花,http://em.21dtv.com/songs/60008256.mkv +巨姗姗-爱情花,http://em.21dtv.com/songs/60008255.mkv +佚名-爱情花(无原唱),http://em.21dtv.com/songs/60008254.mkv +殷秀梅-爱情湖,http://em.21dtv.com/songs/60008253.mkv +阎维文-爱情湖,http://em.21dtv.com/songs/60008252.mkv +王建杰-爱情河,http://em.21dtv.com/songs/60008244.mkv +王尧-爱情海,http://em.21dtv.com/songs/60008239.mkv +梁咏琪-爱情海,http://em.21dtv.com/songs/60008238.mkv +郑秀月-爱情海(无原唱),http://em.21dtv.com/songs/60008237.mkv +央金兰泽-爱琴海,http://em.21dtv.com/songs/60008078.mkv +李玟-爱琴海,http://em.21dtv.com/songs/60008077.mkv +凤凰传奇-爱琴海,http://em.21dtv.com/songs/60008076.mkv +陈小春-爱妻号,http://em.21dtv.com/songs/60008069.mkv +陈小春-爱妻号(演唱会),http://em.21dtv.com/songs/60008068.mkv +蒋婴+小武-爱千古,http://em.21dtv.com/songs/60129567.mkv +孟笑-安全感,http://em.21dtv.com/songs/60121579.mkv +张瀚元-安全感,http://em.21dtv.com/songs/60116797.mkv +苗音-安全感,http://em.21dtv.com/songs/60115349.mkv +陈势安-爱情歌,http://em.21dtv.com/songs/60093738.mkv +江南旭+梅子-爱情歌,http://em.21dtv.com/songs/60063894.mkv +王力宏-安全感,http://em.21dtv.com/songs/60009335.mkv +梦露乐团-安全感,http://em.21dtv.com/songs/60009334.mkv +红花乐团-安全感,http://em.21dtv.com/songs/60009333.mkv +何耀珊-安全感,http://em.21dtv.com/songs/60009332.mkv +爱戴-安全感,http://em.21dtv.com/songs/60009331.mkv +S.H.E-安全感,http://em.21dtv.com/songs/60009330.mkv +庞龙-爱情果,http://em.21dtv.com/songs/60008235.mkv +秀兰玛雅-爱情歌,http://em.21dtv.com/songs/60008225.mkv +王旭-爱起飞,http://em.21dtv.com/songs/60063883.mkv +S.O.S-爱起飞,http://em.21dtv.com/songs/60008072.mkv +黎小田-安琪儿,http://em.21dtv.com/songs/60093556.mkv +洪子晴-安琪儿,http://em.21dtv.com/songs/60009328.mkv +李建衡+王冠-爱情岛,http://em.21dtv.com/songs/60008141.mkv +芭比-爱情dna,http://em.21dtv.com/songs/60008091.mkv +王建荣+吉林追梦-爱情船,http://em.21dtv.com/songs/60120765.mkv +王建荣-爱情船,http://em.21dtv.com/songs/60119809.mkv +许诺-啊青春,http://em.21dtv.com/songs/60115398.mkv +华语群星-爱青春,http://em.21dtv.com/songs/60103130.mkv +萧丽玲-爱情草,http://em.21dtv.com/songs/60097056.mkv +郑淳元-爱情啊,http://em.21dtv.com/songs/60110581.mkv +梁晓雪-爱情啊,http://em.21dtv.com/songs/60074423.mkv +闪亮三姐妹-爱情abc,http://em.21dtv.com/songs/60074421.mkv +侃侃-爱情啊,http://em.21dtv.com/songs/60008096.mkv +4 IN LOVE-爱朋友,http://em.21dtv.com/songs/60090371.mkv +佚名-啊朋友,http://em.21dtv.com/songs/60006860.mkv +安七炫-爱频率,http://em.21dtv.com/songs/60101323.mkv +郑嘉颖-爱平凡,http://em.21dtv.com/songs/60093276.mkv +郑家星-affection偏爱,http://em.21dtv.com/songs/60072869.mkv +佚名-almost over you,http://em.21dtv.com/songs/60000187.mkv +GARETH GATES-anyone of us,http://em.21dtv.com/songs/60000309.mkv +OLLY MURS-army of two,http://em.21dtv.com/songs/60072902.mkv +JA RULE-always on time,http://em.21dtv.com/songs/60063528.mkv +O+TOWN-all or nothing,http://em.21dtv.com/songs/60000169.mkv +MONICA-angel of mine,http://em.21dtv.com/songs/60000256.mkv +FRANK SINATRA-all of me(无原唱),http://em.21dtv.com/songs/60000167.mkv +KERLI-army of love,http://em.21dtv.com/songs/60062084.mkv +BABYFACE-and our feelings,http://em.21dtv.com/songs/60000246.mkv +STROMAE-alors on danse,http://em.21dtv.com/songs/60000193.mkv +王中平-爱你呦,http://em.21dtv.com/songs/60127191.mkv +金贵晟+叶巧琳-爱你哟,http://em.21dtv.com/songs/60118982.mkv +苏路-爱你哟,http://em.21dtv.com/songs/60008027.mkv +七郎-按呢想,http://em.21dtv.com/songs/60009358.mkv +俞静-爱难逃,http://em.21dtv.com/songs/60007758.mkv +陈慧琳-爱难说,http://em.21dtv.com/songs/60007757.mkv +陈慧琳-爱难说(演唱会),http://em.21dtv.com/songs/60007756.mkv +佚名-aint no sunshine,http://em.21dtv.com/songs/60000127.mkv +楼宏章-爱难求(舞曲版),http://em.21dtv.com/songs/60084816.mkv +云菲菲-爱难求,http://em.21dtv.com/songs/60063335.mkv +林慧萍-爱难求,http://em.21dtv.com/songs/60007755.mkv +蔡小虎-爱你哦,http://em.21dtv.com/songs/60101500.mkv +薛佩洁+张政雄-按呢娘,http://em.21dtv.com/songs/60063945.mkv +晓依-爱难留,http://em.21dtv.com/songs/60082493.mkv +吴俊熠-爱难留,http://em.21dtv.com/songs/60082492.mkv +EXILE-all night long,http://em.21dtv.com/songs/60070297.mkv +谢金燕-爱你辣,http://em.21dtv.com/songs/60007926.mkv +佚名-爱难留,http://em.21dtv.com/songs/60007754.mkv +LIONEL RICHIE-all night long,http://em.21dtv.com/songs/60000166.mkv +一绫-爱难回,http://em.21dtv.com/songs/60134836.mkv +吴勇滨-爱你管,http://em.21dtv.com/songs/60094028.mkv +王晓思-阿娜答,http://em.21dtv.com/songs/60006810.mkv +白冰冰-阿娜答,http://em.21dtv.com/songs/60006809.mkv +利菁-爱你啊,http://em.21dtv.com/songs/60111725.mkv +罗布仁青+阿呗平措-阿妈准,http://em.21dtv.com/songs/60128308.mkv +吴建豪-爱没走(演唱会),http://em.21dtv.com/songs/60074390.mkv +郑俊英-Amy,http://em.21dtv.com/songs/60135801.mkv +张姝-安眠药,http://em.21dtv.com/songs/60114531.mkv +张禄籴-安眠药,http://em.21dtv.com/songs/60098360.mkv +武家祥+ELLA T.-爱蔓延,http://em.21dtv.com/songs/60007729.mkv +胡蓓蔚-爱梦想,http://em.21dtv.com/songs/60007745.mkv +周华健-爱冒险,http://em.21dtv.com/songs/60007731.mkv +郑欣宜-爱莫忘,http://em.21dtv.com/songs/60097053.mkv +顺子-and musics there,http://em.21dtv.com/songs/60000245.mkv +SASHA LOPEZ+ANDREA D-all my people,http://em.21dtv.com/songs/60070296.mkv +江映蓉-爱慢慢,http://em.21dtv.com/songs/60124187.mkv +刘珂-爱密码,http://em.21dtv.com/songs/60120373.mkv +黄思婷-爱满满,http://em.21dtv.com/songs/60082490.mkv +红弈-阿妹妹,http://em.21dtv.com/songs/60074282.mkv +朱宇-艾米莉,http://em.21dtv.com/songs/60109412.mkv +朱朱-艾米莉,http://em.21dtv.com/songs/60106920.mkv +COVER DRIVE-all my love,http://em.21dtv.com/songs/60072879.mkv +周韦杰-爱袂离,http://em.21dtv.com/songs/60007741.mkv +古巨基-爱美丽,http://em.21dtv.com/songs/60007739.mkv +THE BEATLES-all my loving,http://em.21dtv.com/songs/60000165.mkv +佚名-all my life,http://em.21dtv.com/songs/60000163.mkv +LINDA RONSTADT+AAAML-all my life,http://em.21dtv.com/songs/60000162.mkv +佚名-a media luz,http://em.21dtv.com/songs/60000060.mkv +群星-阿妈话,http://em.21dtv.com/songs/60006786.mkv +周华健-爱玫瑰(演唱会),http://em.21dtv.com/songs/60007737.mkv +苏晴-爱没错,http://em.21dtv.com/songs/60082491.mkv +廖语晴-爱没错,http://em.21dtv.com/songs/60007732.mkv +枫桥-啊母爱,http://em.21dtv.com/songs/60102399.mkv +太阳-1AM,http://em.21dtv.com/songs/60103185.mkv +回音哥-爱来依,http://em.21dtv.com/songs/60097051.mkv +高子洋-阿里洋(无原唱),http://em.21dtv.com/songs/60006774.mkv +薛金显-爱落心,http://em.21dtv.com/songs/60126159.mkv +薛金显-爱落心,http://em.21dtv.com/songs/60124453.mkv +邰正宵-爱旅行,http://em.21dtv.com/songs/60069186.mkv +林展逸-安乐仙,http://em.21dtv.com/songs/60009318.mkv +陈奕-暗恋我,http://em.21dtv.com/songs/60009392.mkv +古天乐-暗恋王,http://em.21dtv.com/songs/60009391.mkv +信-A搂V,http://em.21dtv.com/songs/60111697.mkv +OLIVIA-a love theme,http://em.21dtv.com/songs/60062121.mkv +陈艺鹏-阿里山,http://em.21dtv.com/songs/60097005.mkv +可岚-爱丽丝,http://em.21dtv.com/songs/60007714.mkv +张学友+陈嘉露-爱狼说,http://em.21dtv.com/songs/60007690.mkv +陈淑桦-爱来时,http://em.21dtv.com/songs/60007689.mkv +女声-auld lang syne,http://em.21dtv.com/songs/60000361.mkv +男声-auld lang syne,http://em.21dtv.com/songs/60000360.mkv +曹蕙兰-auld lang syne,http://em.21dtv.com/songs/60000359.mkv +TWINS-auld lang syne,http://em.21dtv.com/songs/60000358.mkv +佚名-a love song(无原唱),http://em.21dtv.com/songs/60000056.mkv +向蕙玲-爱两难,http://em.21dtv.com/songs/60109215.mkv +陈雷-阿鲁娜,http://em.21dtv.com/songs/60086392.mkv +苏姗-暗恋你(演唱会),http://em.21dtv.com/songs/60074553.mkv +动力火车-艾琳娜,http://em.21dtv.com/songs/60074291.mkv +林姗-阿兰娜,http://em.21dtv.com/songs/60069166.mkv +梅子-爱恋你,http://em.21dtv.com/songs/60063866.mkv +张学友-暗恋你,http://em.21dtv.com/songs/60009388.mkv +佚名-暗恋你,http://em.21dtv.com/songs/60009387.mkv +张学友-暗恋你(演唱会),http://em.21dtv.com/songs/60009386.mkv +谢雷-阿兰娜,http://em.21dtv.com/songs/60006756.mkv +吴建豪-爱里面,http://em.21dtv.com/songs/60080761.mkv +卓文萱-爱了没,http://em.21dtv.com/songs/60074387.mkv +TIMEFLIES-ALL THE WAY,http://em.21dtv.com/songs/60096844.mkv +JOHN LEGEND-ALL OF ME,http://em.21dtv.com/songs/60096843.mkv +姚贝娜-All By Myself(孤独无依),http://em.21dtv.com/songs/60096842.mkv +邓紫棋-ALL ABOUT U,http://em.21dtv.com/songs/60096841.mkv +詹雅雯-爱流浪,http://em.21dtv.com/songs/60135728.mkv +阿鲁阿格-阿哩哩,http://em.21dtv.com/songs/60127535.mkv +金婷婷+李相润-阿里郎(演唱会),http://em.21dtv.com/songs/60100513.mkv +晟瑶-阿里郎,http://em.21dtv.com/songs/60082451.mkv +金贵晟-阿里郎,http://em.21dtv.com/songs/60081010.mkv +罗相宜-阿罗咧,http://em.21dtv.com/songs/60074280.mkv +刘德华+张靓颖-阿拉侬,http://em.21dtv.com/songs/60060965.mkv +牛朝阳-爱溜溜,http://em.21dtv.com/songs/60007724.mkv +戴爱玲-爱灵灵,http://em.21dtv.com/songs/60007723.mkv +林颐-爱来了,http://em.21dtv.com/songs/60007688.mkv +海楠-爱啦啦,http://em.21dtv.com/songs/60007682.mkv +佚名-阿里郎,http://em.21dtv.com/songs/60006766.mkv +黄思婷-阿里郎(无原唱),http://em.21dtv.com/songs/60006765.mkv +方大同-爱立刻,http://em.21dtv.com/songs/60070464.mkv +张莫晗-爱轮回,http://em.21dtv.com/songs/60098365.mkv +莫文蔚-爱留痕,http://em.21dtv.com/songs/60091972.mkv +利哥-奥利给,http://em.21dtv.com/songs/60133421.mkv +难逢-爱来过,http://em.21dtv.com/songs/60088923.mkv +S.H.E-爱来过,http://em.21dtv.com/songs/60007687.mkv +TERRI CLARK-a little gasoline,http://em.21dtv.com/songs/60000052.mkv +门红岗-爱离别,http://em.21dtv.com/songs/60106358.mkv +宋雪莱-唉老板,http://em.21dtv.com/songs/60006902.mkv +佚名-a little bit,http://em.21dtv.com/songs/60000051.mkv +李克勤+林子祥-阿LAM日记,http://em.21dtv.com/songs/60092791.mkv +夹子道-爱枯萎,http://em.21dtv.com/songs/60087629.mkv +铁石-爱快说,http://em.21dtv.com/songs/60007681.mkv +恭硕良-爱空间(演唱会),http://em.21dtv.com/songs/60007675.mkv +沈丹丹-爱哭鬼,http://em.21dtv.com/songs/60131603.mkv +江美琪-爱哭鬼,http://em.21dtv.com/songs/60007680.mkv +施文彬+箫玉芬-爱哭的,http://em.21dtv.com/songs/60007678.mkv +施文彬-爱哭的(无原唱),http://em.21dtv.com/songs/60007677.mkv +关心妍-爱简约,http://em.21dtv.com/songs/60007638.mkv +孙淑媚-爱惊醒,http://em.21dtv.com/songs/60069183.mkv +金波-爱家乡(演唱会),http://em.21dtv.com/songs/60062519.mkv +许慧欣-爱极限,http://em.21dtv.com/songs/60007628.mkv +许慧欣-爱级限,http://em.21dtv.com/songs/60007626.mkv +モーニング娘。-爱の军団,http://em.21dtv.com/songs/60086395.mkv +胡宇威-爱就是,http://em.21dtv.com/songs/60106209.mkv +才吉-阿教拉,http://em.21dtv.com/songs/60081253.mkv +嘉布洛绒-阿佳拉,http://em.21dtv.com/songs/60074277.mkv +李利依-阿加拉(演唱会),http://em.21dtv.com/songs/60063832.mkv +S.H.E-安静了,http://em.21dtv.com/songs/60009313.mkv +谢旦-阿姐啦,http://em.21dtv.com/songs/60006747.mkv +梁静茹-爱计较,http://em.21dtv.com/songs/60007629.mkv +尤雅-爱甲恨,http://em.21dtv.com/songs/60007631.mkv +朱哲琴-阿姐鼓,http://em.21dtv.com/songs/60006746.mkv +小乔-爱简单,http://em.21dtv.com/songs/60103229.mkv +恶武2KD5-爱绝对,http://em.21dtv.com/songs/60074384.mkv +杨坤-爱简单,http://em.21dtv.com/songs/60007637.mkv +张靓颖-爱就爱,http://em.21dtv.com/songs/60007647.mkv +林景滢-爱就爱,http://em.21dtv.com/songs/60007646.mkv +陈好-爱就爱,http://em.21dtv.com/songs/60007645.mkv +谭咏麟-爱极爱,http://em.21dtv.com/songs/60007627.mkv +TOAD THE WET SPROCKE-all i want,http://em.21dtv.com/songs/60000159.mkv +WILL YOUNG-anything is possible,http://em.21dtv.com/songs/60000314.mkv +BILLY JOEL-an innocent man,http://em.21dtv.com/songs/60000237.mkv +萧亚轩+顺子-and i know,http://em.21dtv.com/songs/60000239.mkv +JENNIFER LOPEZ-aint it funny,http://em.21dtv.com/songs/60000124.mkv +T ARA-apple is a,http://em.21dtv.com/songs/60065591.mkv +回音哥-A.I,http://em.21dtv.com/songs/60130209.mkv +米娜+华少翌-爱还在,http://em.21dtv.com/songs/60007572.mkv +4 IN LOVE-爱还在,http://em.21dtv.com/songs/60007571.mkv +郑志伟-爱の花雨,http://em.21dtv.com/songs/60071708.mkv +高向鹏+方怡萍-爱互相,http://em.21dtv.com/songs/60060979.mkv +温岚-爱回温,http://em.21dtv.com/songs/60007612.mkv +ALL SAINTS-all hooked up,http://em.21dtv.com/songs/60000152.mkv +孙紫涵-爱好疼,http://em.21dtv.com/songs/60125395.mkv +花儿乐队-爱火烧,http://em.21dtv.com/songs/60007622.mkv +包师语-安和桥,http://em.21dtv.com/songs/60126664.mkv +包师语-安和桥,http://em.21dtv.com/songs/60125236.mkv +陈奕迅-安魂曲,http://em.21dtv.com/songs/60101558.mkv +宋冬野-安和桥,http://em.21dtv.com/songs/60084870.mkv +刘嘉玲-爱很难,http://em.21dtv.com/songs/60089162.mkv +陈伟联-爱恨难,http://em.21dtv.com/songs/60007600.mkv +周笔畅-爱好难,http://em.21dtv.com/songs/60007576.mkv +SARA+刘佳-爱很美,http://em.21dtv.com/songs/60007591.mkv +徐小凤-爱和梦,http://em.21dtv.com/songs/60007579.mkv +罗力威-暗号llv,http://em.21dtv.com/songs/60068090.mkv +谢霆锋-爱回来,http://em.21dtv.com/songs/60007611.mkv +李岗霖-爱回来,http://em.21dtv.com/songs/60007610.mkv +苏有朋-爱好苦,http://em.21dtv.com/songs/60007575.mkv +恭硕良-爱后记,http://em.21dtv.com/songs/60132486.mkv +吴梦旖-爱回家,http://em.21dtv.com/songs/60119351.mkv +海洋-爱和酒,http://em.21dtv.com/songs/60082482.mkv +古巨基-爱回家,http://em.21dtv.com/songs/60007609.mkv +古巨基-爱回家(演唱会),http://em.21dtv.com/songs/60007608.mkv +佚名-爱很久(无原唱),http://em.21dtv.com/songs/60007590.mkv +周笔畅-爱火花,http://em.21dtv.com/songs/60096224.mkv +洪百慧+庄振凯-爱回航,http://em.21dtv.com/songs/60066787.mkv +张学友-爱火花,http://em.21dtv.com/songs/60007621.mkv +张学友-爱火花(演唱会),http://em.21dtv.com/songs/60007620.mkv +刘志丹-爱会飞,http://em.21dtv.com/songs/60107527.mkv +刘志丹-爱会飞,http://em.21dtv.com/songs/60066788.mkv +任贤齐-爱很疯,http://em.21dtv.com/songs/60007584.mkv +莫老-爱国心,http://em.21dtv.com/songs/60082480.mkv +苏青山-啊故乡,http://em.21dtv.com/songs/60074285.mkv +郑新-啊故乡,http://em.21dtv.com/songs/60006852.mkv +佚名-啊 故乡,http://em.21dtv.com/songs/60006845.mkv +黄大炜-爱勾我,http://em.21dtv.com/songs/60007518.mkv +猪头皮-爱过头(无原唱),http://em.21dtv.com/songs/60080606.mkv +李维-爱过头(无原唱),http://em.21dtv.com/songs/60007556.mkv +长宇-爱过你,http://em.21dtv.com/songs/60122207.mkv +江蕙-暗光鸟,http://em.21dtv.com/songs/60082563.mkv +李正-爱过你,http://em.21dtv.com/songs/60074361.mkv +陈随意-爱过你,http://em.21dtv.com/songs/60066785.mkv +费翔-爱过你,http://em.21dtv.com/songs/60007548.mkv +林大晋+劳光宇-爱给你(无原唱),http://em.21dtv.com/songs/60007517.mkv +泷泽秀明-爱革命,http://em.21dtv.com/songs/60007515.mkv +OLIVIA-爱够了,http://em.21dtv.com/songs/60082479.mkv +邰正宵-爱归零,http://em.21dtv.com/songs/60007522.mkv +朱凡-爱过后,http://em.21dtv.com/songs/60128070.mkv +权振东-爱过后,http://em.21dtv.com/songs/60095304.mkv +TRINIDAD JAMES-all gold everything,http://em.21dtv.com/songs/60072875.mkv +施志兴-爱孤单,http://em.21dtv.com/songs/60096313.mkv +关咏荷+沈殿霞-爱更多,http://em.21dtv.com/songs/60092306.mkv +刘东桦-爱孤单,http://em.21dtv.com/songs/60007520.mkv +郑薇+陈宏辉-爱歌-2,http://em.21dtv.com/songs/60007514.mkv +郑薇+陈宏辉-爱歌-1,http://em.21dtv.com/songs/60007513.mkv +杨克强-爱犯罪,http://em.21dtv.com/songs/60007491.mkv +任浩铭-All For You,http://em.21dtv.com/songs/60081971.mkv +BACKSTREET BOYS-anywhere for you,http://em.21dtv.com/songs/60000318.mkv +GLORIA ESTEFAN-anything for you,http://em.21dtv.com/songs/60000312.mkv +安室奈美惠-all for you,http://em.21dtv.com/songs/60000151.mkv +JANET JACKSON-all for you,http://em.21dtv.com/songs/60000150.mkv +庄心妍-爱复兴,http://em.21dtv.com/songs/60133635.mkv +吕方-爱飞翔,http://em.21dtv.com/songs/60007496.mkv +崔子格-爱疯舞,http://em.21dtv.com/songs/60086403.mkv +崔子格+三块石+赖伟锋-爱疯舞,http://em.21dtv.com/songs/60082478.mkv +THE SATURDAYS-all fired up,http://em.21dtv.com/songs/60063525.mkv +罗志祥-爱疯头,http://em.21dtv.com/songs/60007502.mkv +七郎+一绫-爱风骚(无原唱),http://em.21dtv.com/songs/60007498.mkv +莫文蔚-a fine romance,http://em.21dtv.com/songs/60072858.mkv +F4-ask for more,http://em.21dtv.com/songs/60000351.mkv +F4-ask for more(演唱会),http://em.21dtv.com/songs/60000350.mkv +莫熙儿-爱疯了,http://em.21dtv.com/songs/60080242.mkv +常艾非-艾疯了(演唱会),http://em.21dtv.com/songs/60071706.mkv +彭佳慧-爱疯了,http://em.21dtv.com/songs/60007501.mkv +戴佩妮-爱疯了,http://em.21dtv.com/songs/60007500.mkv +刘小慧-爱飞了,http://em.21dtv.com/songs/60007495.mkv +董冬-爱飞了,http://em.21dtv.com/songs/60007494.mkv +丸子-爱泛滥,http://em.21dtv.com/songs/60007492.mkv +丸子-爱犯滥(演唱会),http://em.21dtv.com/songs/60007490.mkv +佚名-all for love(无原唱),http://em.21dtv.com/songs/60000149.mkv +梁俊一-爱放开,http://em.21dtv.com/songs/60007493.mkv +郑伊健-爱发狂,http://em.21dtv.com/songs/60007489.mkv +罗百吉-爱发狂,http://em.21dtv.com/songs/60007488.mkv +陶喆+关诗敏-All For Joy,http://em.21dtv.com/songs/60080722.mkv +徐梦晗-爱法官,http://em.21dtv.com/songs/60115947.mkv +掠琼-埃菲尔,http://em.21dtv.com/songs/60106889.mkv +王二妮-爱发呆,http://em.21dtv.com/songs/60117912.mkv +蒙面哥-爱疯痴,http://em.21dtv.com/songs/60102707.mkv +李素专+办桌阿杰-爱到这,http://em.21dtv.com/songs/60098485.mkv +邓丽君-爱的鱼,http://em.21dtv.com/songs/60007443.mkv +吕方-爱到厌,http://em.21dtv.com/songs/60007121.mkv +洪百慧-爱当香,http://em.21dtv.com/songs/60066775.mkv +木玛乐队-黯淡星,http://em.21dtv.com/songs/60009412.mkv +阿桑古卡-爱的堂,http://em.21dtv.com/songs/60089512.mkv +王杰-爱得深(无原唱),http://em.21dtv.com/songs/60092987.mkv +孟文豪-爱的伤,http://em.21dtv.com/songs/60084803.mkv +SHINE-爱迪生,http://em.21dtv.com/songs/60074350.mkv +徐天佑+黄又南-爱迪生,http://em.21dtv.com/songs/60071715.mkv +黄思婷-爱多少,http://em.21dtv.com/songs/60069179.mkv +爱戴-爱的沙,http://em.21dtv.com/songs/60065773.mkv +张芸瑞-爱的傻,http://em.21dtv.com/songs/60063852.mkv +黄耀明-爱到死(演唱会),http://em.21dtv.com/songs/60007103.mkv +傅颖+傅佩嘉-爱敌人,http://em.21dtv.com/songs/60092299.mkv +沙宝亮-爱的人,http://em.21dtv.com/songs/60074343.mkv +群星-爱敌人,http://em.21dtv.com/songs/60007472.mkv +赵学而-爱得起,http://em.21dtv.com/songs/60093225.mkv +群星-爱地球,http://em.21dtv.com/songs/60071716.mkv +梁咏琪-爱的起,http://em.21dtv.com/songs/60007345.mkv +张家辉-爱得起,http://em.21dtv.com/songs/60007143.mkv +梁咏琪-爱得起,http://em.21dtv.com/songs/60007142.mkv +郭富城-爱定你,http://em.21dtv.com/songs/60007474.mkv +郑融-爱得耐,http://em.21dtv.com/songs/60007140.mkv +白冰冰-爱的melody,http://em.21dtv.com/songs/60007167.mkv +潘辰-爱的路,http://em.21dtv.com/songs/60114670.mkv +叶瑷菱-爱到老,http://em.21dtv.com/songs/60090794.mkv +张凤萍-爱的路,http://em.21dtv.com/songs/60007303.mkv +方瑞娥+黄西田-爱到老,http://em.21dtv.com/songs/60007091.mkv +高秀敏+武福星-安电话,http://em.21dtv.com/songs/60090334.mkv +赵子皓-爱等候,http://em.21dtv.com/songs/60063443.mkv +洪荣宏-爱的歌,http://em.21dtv.com/songs/60135515.mkv +The Seeya-爱的歌,http://em.21dtv.com/songs/60107445.mkv +潘玮柏-爱的歌,http://em.21dtv.com/songs/60100291.mkv +周华健-爱的光,http://em.21dtv.com/songs/60007237.mkv +谭维维-爱的光,http://em.21dtv.com/songs/60007236.mkv +福井舞-爱的歌,http://em.21dtv.com/songs/60007219.mkv +陈洁丽-爱的歌,http://em.21dtv.com/songs/60007218.mkv +芭比-爱的疯,http://em.21dtv.com/songs/60007204.mkv +高利虹-爱到底,http://em.21dtv.com/songs/60123377.mkv +谭维维-爱到底,http://em.21dtv.com/songs/60112247.mkv +平安+曹芙嘉-爱到底,http://em.21dtv.com/songs/60100858.mkv +许志安-爱到底,http://em.21dtv.com/songs/60093161.mkv +林志炫-爱懂得,http://em.21dtv.com/songs/60007477.mkv +庾澄庆-爱到底,http://em.21dtv.com/songs/60007078.mkv +吴淑敏-爱到底,http://em.21dtv.com/songs/60007077.mkv +温岚-爱到底,http://em.21dtv.com/songs/60007076.mkv +LSABELLA-爱到底,http://em.21dtv.com/songs/60007075.mkv +张蓉蓉-爱的巢,http://em.21dtv.com/songs/60074328.mkv +BRANDY-almost doesnt count,http://em.21dtv.com/songs/60000186.mkv +GEORGE MICHAEL-a different corner,http://em.21dtv.com/songs/60000042.mkv +吴勇滨-爱独白,http://em.21dtv.com/songs/60122580.mkv +R+B-爱的bubble,http://em.21dtv.com/songs/60007166.mkv +佚名-alma de bandoneon,http://em.21dtv.com/songs/60000185.mkv +BOYZONE-a different beat,http://em.21dtv.com/songs/60000041.mkv +王诗安-爱存在,http://em.21dtv.com/songs/60104321.mkv +张学斌-爱存在,http://em.21dtv.com/songs/60074307.mkv +萧全-爱存在,http://em.21dtv.com/songs/60007054.mkv +兔兔-爱成瘾,http://em.21dtv.com/songs/60065766.mkv +2女-爱纯氧,http://em.21dtv.com/songs/60007051.mkv +范冰冰-爱超越,http://em.21dtv.com/songs/60007046.mkv +周丽淇-爱从心,http://em.21dtv.com/songs/60074306.mkv +周丽淇+谢天华-爱从心,http://em.21dtv.com/songs/60074305.mkv +罗百吉-爱超速,http://em.21dtv.com/songs/60093033.mkv +JOHNNY MATHIS-a certain smile,http://em.21dtv.com/songs/60000038.mkv +冷漠-爱错人,http://em.21dtv.com/songs/60101272.mkv +赵小兵-爱错人,http://em.21dtv.com/songs/60065768.mkv +水木年华-爱春秋,http://em.21dtv.com/songs/60007050.mkv +佚名-aku cinta padamu,http://em.21dtv.com/songs/60000132.mkv +佚名-all cried out,http://em.21dtv.com/songs/60000147.mkv +ALLURE-all cried out,http://em.21dtv.com/songs/60000146.mkv +李加靓-爱错你,http://em.21dtv.com/songs/60087986.mkv +戴梦梦-爱承诺,http://em.21dtv.com/songs/60007047.mkv +双鱼座-爱沉没,http://em.21dtv.com/songs/60125255.mkv +乐团双鱼座-爱沉没,http://em.21dtv.com/songs/60107468.mkv +黎冰冰-爱错了,http://em.21dtv.com/songs/60082463.mkv +张克帆-爱错了,http://em.21dtv.com/songs/60007061.mkv +王建杰-爱错了(无原唱),http://em.21dtv.com/songs/60007060.mkv +常石磊-爱长久,http://em.21dtv.com/songs/60111838.mkv +小凌-安城记,http://em.21dtv.com/songs/60082562.mkv +ELLIE GOULDING-anything could happen,http://em.21dtv.com/songs/60072898.mkv +易欣-爱出发,http://em.21dtv.com/songs/60087937.mkv +TF BOYS-爱出发,http://em.21dtv.com/songs/60081835.mkv +李宇春-aoaeo出发,http://em.21dtv.com/songs/60000319.mkv +陈随意-爱成痴,http://em.21dtv.com/songs/60129764.mkv +沙靖杰-爱匆匆,http://em.21dtv.com/songs/60107025.mkv +张韶涵-爱磁场,http://em.21dtv.com/songs/60098377.mkv +薛之谦-爱不走,http://em.21dtv.com/songs/60088610.mkv +网络歌手+赵文博-爱不在,http://em.21dtv.com/songs/60088409.mkv +城市姐妹-爱不在,http://em.21dtv.com/songs/60082462.mkv +林冲-爱别走,http://em.21dtv.com/songs/60068033.mkv +许志安+苏永康-爱不再,http://em.21dtv.com/songs/60060970.mkv +赵文博-爱不在,http://em.21dtv.com/songs/60007038.mkv +殷悦-爱不在,http://em.21dtv.com/songs/60007037.mkv +金智娟-爱不在(无原唱),http://em.21dtv.com/songs/60007036.mkv +树叶男孩-阿布雅,http://em.21dtv.com/songs/60062916.mkv +晓琳-爱不休,http://em.21dtv.com/songs/60102290.mkv +秦影-爱不休,http://em.21dtv.com/songs/60100347.mkv +周诗雅-爱不醒,http://em.21dtv.com/songs/60065765.mkv +林志美-爱不完,http://em.21dtv.com/songs/60113705.mkv +胡琳-爱不完,http://em.21dtv.com/songs/60097050.mkv +刘德华-爱不完,http://em.21dtv.com/songs/60007028.mkv +张莹莹-爱不舍,http://em.21dtv.com/songs/60126902.mkv +刘德华-爱不死,http://em.21dtv.com/songs/60007024.mkv +陈晓东-爱不死,http://em.21dtv.com/songs/60007023.mkv +吕方-爱必胜(演唱会),http://em.21dtv.com/songs/60006958.mkv +贾孟昕-敖包情,http://em.21dtv.com/songs/60120958.mkv +望海高歌-爱不起,http://em.21dtv.com/songs/60111145.mkv +谢容儿-爱不起,http://em.21dtv.com/songs/60084792.mkv +袁哲-爱不起,http://em.21dtv.com/songs/60069170.mkv +江希文-爱不起,http://em.21dtv.com/songs/60007007.mkv +草蜢-爱不怕,http://em.21dtv.com/songs/60007005.mkv +杨坤-爱不难,http://em.21dtv.com/songs/60088062.mkv +杜德伟-爱不灭,http://em.21dtv.com/songs/60088053.mkv +姚贝娜-All By Myself,http://em.21dtv.com/songs/60081509.mkv +佚名-all by myself,http://em.21dtv.com/songs/60000145.mkv +ERIC CARMEN-all by myself,http://em.21dtv.com/songs/60000144.mkv +CELINE DION-all by myself,http://em.21dtv.com/songs/60000143.mkv +零点乐队-爱不离,http://em.21dtv.com/songs/60105508.mkv +方大同+葛仲珊-爱不来,http://em.21dtv.com/songs/60101358.mkv +方大同+葛仲珊-爱不来[消伴],http://em.21dtv.com/songs/60100875.mkv +张志林-爱不离,http://em.21dtv.com/songs/60080850.mkv +30 SECONDS TO MARS-a beautiful lie,http://em.21dtv.com/songs/60072856.mkv +刘惜君-爱别离,http://em.21dtv.com/songs/60066772.mkv +张信哲-爱不留,http://em.21dtv.com/songs/60007000.mkv +潘玮柏-爱不离,http://em.21dtv.com/songs/60006999.mkv +陈晓东-爱不离,http://em.21dtv.com/songs/60006998.mkv +RUBBER BAND-阿波罗,http://em.21dtv.com/songs/60006722.mkv +林峰-爱不疚,http://em.21dtv.com/songs/60006997.mkv +林峰-爱不疚(演唱会),http://em.21dtv.com/songs/60006996.mkv +杜德伟-爱不减,http://em.21dtv.com/songs/60006994.mkv +波拉+贺世哲-爱不悔,http://em.21dtv.com/songs/60112066.mkv +杜德伟-爱不坏,http://em.21dtv.com/songs/60091383.mkv +NEON HITCH-ass bank home,http://em.21dtv.com/songs/60065607.mkv +BILLY RAY CYRUS-achy breaky heart,http://em.21dtv.com/songs/60000097.mkv +张昊宇-爱不够,http://em.21dtv.com/songs/60127980.mkv +冯德伦-爱不够,http://em.21dtv.com/songs/60006985.mkv +乔乔-爱不分,http://em.21dtv.com/songs/60006984.mkv +段千寻-爱不到,http://em.21dtv.com/songs/60006975.mkv +张卓立-爱别等,http://em.21dtv.com/songs/60006960.mkv +刘德华-a better day,http://em.21dtv.com/songs/60000036.mkv +EO2-a better day,http://em.21dtv.com/songs/60000035.mkv +佚名-a b c,http://em.21dtv.com/songs/60000034.mkv +王懿+王啸坤-a b c,http://em.21dtv.com/songs/60000033.mkv +TWINS-a b c,http://em.21dtv.com/songs/60000032.mkv +陈振云+陈瑞-爱不变,http://em.21dtv.com/songs/60066773.mkv +王心凌-爱不爱,http://em.21dtv.com/songs/60135553.mkv +蓝又时-爱不爱,http://em.21dtv.com/songs/60130723.mkv +林昕阳-爱不爱,http://em.21dtv.com/songs/60112026.mkv +王心凌-爱不爱,http://em.21dtv.com/songs/60074300.mkv +柯有纶-爱不爱,http://em.21dtv.com/songs/60006963.mkv +郭采洁-爱不爱,http://em.21dtv.com/songs/60006962.mkv +邓紫棋-all about you,http://em.21dtv.com/songs/60000140.mkv +张澜澜-爱爱我,http://em.21dtv.com/songs/60006944.mkv +EO2-爱爱我(无原唱),http://em.21dtv.com/songs/60006943.mkv +T.A.T.U.-all about us,http://em.21dtv.com/songs/60072873.mkv +邓紫棋-all about u(演唱会),http://em.21dtv.com/songs/60063524.mkv +许慧欣-all about us,http://em.21dtv.com/songs/60000139.mkv +PIXIE LOTT-all about tonight,http://em.21dtv.com/songs/60062130.mkv +BLAKE SHELTON-all about tonight(演唱会),http://em.21dtv.com/songs/60000138.mkv +王秀琪+陈雅珍-啊爱情,http://em.21dtv.com/songs/60006850.mkv +江蕙-啊爱情,http://em.21dtv.com/songs/60006849.mkv +刘欢+吉克隽逸+袁娅维+徐海星+权振东-against all odds,http://em.21dtv.com/songs/60072871.mkv +MARIAH CAREY-against all odds,http://em.21dtv.com/songs/60000121.mkv +PHIL COLLINS-against all odds(take a look at me now),http://em.21dtv.com/songs/60000120.mkv +GILBERT O'SULLIVAN-alone again naturally,http://em.21dtv.com/songs/60000190.mkv +佚名-always and forever(无原唱),http://em.21dtv.com/songs/60000196.mkv +PETER PAN-ada apa denganmu,http://em.21dtv.com/songs/60000098.mkv +阿茹-爱爱爱,http://em.21dtv.com/songs/60135887.mkv +芬华-爱爱爱,http://em.21dtv.com/songs/60135669.mkv +陈浩东-哎哎哎,http://em.21dtv.com/songs/60113062.mkv +王思佳-爱爱爱,http://em.21dtv.com/songs/60108707.mkv +办桌二人组-爱爱爱,http://em.21dtv.com/songs/60097054.mkv +颜小健-爱爱爱,http://em.21dtv.com/songs/60080329.mkv +柯有纶-爱爱爱,http://em.21dtv.com/songs/60006941.mkv +方大同-爱爱爱,http://em.21dtv.com/songs/60006940.mkv +M3-爱爱爱,http://em.21dtv.com/songs/60006939.mkv +林峰-爱爱爱(演唱会),http://em.21dtv.com/songs/60006938.mkv +哎,http://em.21dtv.com/songs/60125252.mkv +郑秀文-爱≌0,http://em.21dtv.com/songs/60006913.mkv +いきものがかり-ふたり,http://em.21dtv.com/songs/60074256.mkv +陈绮贞-after17,http://em.21dtv.com/songs/60000113.mkv +蔡小虎-お人形(无原唱),http://em.21dtv.com/songs/60006650.mkv +Switch-39°,http://em.21dtv.com/songs/60104738.mkv +钟汉良-ㄨㄨㄨ,http://em.21dtv.com/songs/60006708.mkv +ALAN-ひとつ,http://em.21dtv.com/songs/60006687.mkv +佚名-サライ,http://em.21dtv.com/songs/60006664.mkv +渡り廊下走り队-ギュッ,http://em.21dtv.com/songs/60006657.mkv +松浦亚弥-きずな,http://em.21dtv.com/songs/60006656.mkv +ALAN-かごめ,http://em.21dtv.com/songs/60006653.mkv +NMB48-结晶,http://em.21dtv.com/songs/60064395.mkv +SDN48-负け惜しみコングラチュレーション,http://em.21dtv.com/songs/60065977.mkv +AKINO-创圣のアクエリオン(演唱会),http://em.21dtv.com/songs/60068189.mkv +何韵诗-écoutez moi(演唱会),http://em.21dtv.com/songs/60073167.mkv +能登麻美子-夕颜,http://em.21dtv.com/songs/60068812.mkv +NO NAME-虹の列车,http://em.21dtv.com/songs/60070754.mkv +水树奈々-深爱,http://em.21dtv.com/songs/60067415.mkv +AKB48-初日,http://em.21dtv.com/songs/60070600.mkv +JUJU-桜雨,http://em.21dtv.com/songs/60062072.mkv +SUPERCELL-告白,http://em.21dtv.com/songs/60067026.mkv +恋花RHYTHMIC-koihana,http://em.21dtv.com/songs/60062134.mkv +SKE48-ここで一発,http://em.21dtv.com/songs/60099699.mkv +吉克隽逸-珍珠,http://em.21dtv.com/songs/60134994.mkv +陈乘-沼泽,http://em.21dtv.com/songs/60135895.mkv +罗时丰-振作,http://em.21dtv.com/songs/60134092.mkv +伍佰-种子,http://em.21dtv.com/songs/60133358.mkv +蔡淳佳-整装,http://em.21dtv.com/songs/60132860.mkv +伍佰+CHINA BLUE-种子,http://em.21dtv.com/songs/60132195.mkv +高进-作者,http://em.21dtv.com/songs/60128618.mkv +家蔚-造作,http://em.21dtv.com/songs/60122675.mkv +苏运莹-知足,http://em.21dtv.com/songs/60120883.mkv +日京江羽人-疹子,http://em.21dtv.com/songs/60119606.mkv +黄勇-执着,http://em.21dtv.com/songs/60114293.mkv +大台风乐团+张皓-主宰,http://em.21dtv.com/songs/60113367.mkv +陈沛轩-振作,http://em.21dtv.com/songs/60100596.mkv +许云上-种子(演),http://em.21dtv.com/songs/60099492.mkv +孙懿斌-振作,http://em.21dtv.com/songs/60099195.mkv +DJ Black仔哥-追逐,http://em.21dtv.com/songs/60098987.mkv +李小璐-主宰,http://em.21dtv.com/songs/60098462.mkv +SNH48-支柱,http://em.21dtv.com/songs/60096661.mkv +李翊君-执着,http://em.21dtv.com/songs/60094945.mkv +梁文音-最最,http://em.21dtv.com/songs/60091521.mkv +女子十二乐坊-追逐,http://em.21dtv.com/songs/60089776.mkv +周艳泓-桌子,http://em.21dtv.com/songs/60089220.mkv +酒二郎-种子,http://em.21dtv.com/songs/60087138.mkv +麦子杰-执着,http://em.21dtv.com/songs/60080240.mkv +林欣彤-自传,http://em.21dtv.com/songs/60079721.mkv +梁静茹+丁当-知足,http://em.21dtv.com/songs/60079602.mkv +陈柏宇+洪卓立-支柱,http://em.21dtv.com/songs/60079596.mkv +许培军-挣扎,http://em.21dtv.com/songs/60079585.mkv +邓文昕-自转,http://em.21dtv.com/songs/60070272.mkv +刘森迪-蜘猪,http://em.21dtv.com/songs/60065482.mkv +3P-作状(演唱会),http://em.21dtv.com/songs/60060679.mkv +孙燕姿-作战,http://em.21dtv.com/songs/60060677.mkv +董事长乐团-卒仔,http://em.21dtv.com/songs/60059989.mkv +潘协庆-自责,http://em.21dtv.com/songs/60059806.mkv +康康-自责,http://em.21dtv.com/songs/60059805.mkv +庾澄庆-自在,http://em.21dtv.com/songs/60059802.mkv +黄思婷-自在,http://em.21dtv.com/songs/60059801.mkv +林美-自在(无原唱),http://em.21dtv.com/songs/60059800.mkv +草莓救星-自在(无原唱),http://em.21dtv.com/songs/60059799.mkv +周彦宏-桌子,http://em.21dtv.com/songs/60059591.mkv +雪村-捉贼(演唱会),http://em.21dtv.com/songs/60059590.mkv +张学友-追钟,http://em.21dtv.com/songs/60059556.mkv +曾宝仪-专注(无原唱),http://em.21dtv.com/songs/60059430.mkv +雪村-抓贼,http://em.21dtv.com/songs/60059414.mkv +乐之翼-主宰,http://em.21dtv.com/songs/60059262.mkv +张学友+符润光-种子,http://em.21dtv.com/songs/60059076.mkv +黄思婷-种子,http://em.21dtv.com/songs/60059075.mkv +张雨生+陶晶莹-执着,http://em.21dtv.com/songs/60058719.mkv +许巍-执着,http://em.21dtv.com/songs/60058715.mkv +许茹芸-执着,http://em.21dtv.com/songs/60058714.mkv +辛晓琪-执着,http://em.21dtv.com/songs/60058713.mkv +田震-执着,http://em.21dtv.com/songs/60058712.mkv +江映蓉-执着,http://em.21dtv.com/songs/60058711.mkv +成学迅-执着,http://em.21dtv.com/songs/60058710.mkv +陈超-蜘蛛,http://em.21dtv.com/songs/60058698.mkv +五月天-知足,http://em.21dtv.com/songs/60058693.mkv +陶莉萍-知足,http://em.21dtv.com/songs/60058692.mkv +张雨生-挣扎,http://em.21dtv.com/songs/60058377.mkv +张栋梁-挣扎,http://em.21dtv.com/songs/60058376.mkv +佚名-挣扎(无原唱),http://em.21dtv.com/songs/60058375.mkv +黄国伦-挣扎(无原唱),http://em.21dtv.com/songs/60058374.mkv +陈百潭-振作,http://em.21dtv.com/songs/60058297.mkv +佚名-振作(无原唱),http://em.21dtv.com/songs/60058296.mkv +郑中基-真挚,http://em.21dtv.com/songs/60058286.mkv +赵学而-真挚,http://em.21dtv.com/songs/60058285.mkv +T.R.Y-珍珠,http://em.21dtv.com/songs/60058018.mkv +李玟-珍珠(演唱会),http://em.21dtv.com/songs/60058017.mkv +郑中基-珍重,http://em.21dtv.com/songs/60058008.mkv +叶倩文-珍重,http://em.21dtv.com/songs/60058007.mkv +苏有朋-珍重,http://em.21dtv.com/songs/60058006.mkv +陈洁仪-珍重,http://em.21dtv.com/songs/60058005.mkv +谭咏麟-珍重(演唱会),http://em.21dtv.com/songs/60058004.mkv +24HERBS-照做,http://em.21dtv.com/songs/60057736.mkv +刘沁-沼泽,http://em.21dtv.com/songs/60057722.mkv +陈冠希+胡培蔚-战争,http://em.21dtv.com/songs/60057494.mkv +罗建章+曾治伦-战争(无原唱),http://em.21dtv.com/songs/60057493.mkv +谢霆锋-早知,http://em.21dtv.com/songs/60057318.mkv +黄雅莉-崽崽,http://em.21dtv.com/songs/60056712.mkv +王紫逸+张宁江+宣言-战友,http://em.21dtv.com/songs/60134004.mkv +白雪-重圆,http://em.21dtv.com/songs/60131698.mkv +陈粒-周游,http://em.21dtv.com/songs/60130855.mkv +韦礼安-在意,http://em.21dtv.com/songs/60129781.mkv +叶璐-追云,http://em.21dtv.com/songs/60125268.mkv +周玮贤+林昭宇+鹤天赐-战役,http://em.21dtv.com/songs/60123769.mkv +陈天红-忠义,http://em.21dtv.com/songs/60121070.mkv +陈佳一-自由,http://em.21dtv.com/songs/60121063.mkv +许志安-自由,http://em.21dtv.com/songs/60118043.mkv +安俊豪-挚友,http://em.21dtv.com/songs/60118513.mkv +沈丹丹-自由,http://em.21dtv.com/songs/60117000.mkv +周怡然-自由,http://em.21dtv.com/songs/60116656.mkv +鸣可-专一,http://em.21dtv.com/songs/60116403.mkv +梁咏琪-自由,http://em.21dtv.com/songs/60114630.mkv +梁雨恩-足印,http://em.21dtv.com/songs/60113744.mkv +谭维维+赵哲-自由,http://em.21dtv.com/songs/60112259.mkv +王丽坤-终于,http://em.21dtv.com/songs/60111260.mkv +梅林-这样,http://em.21dtv.com/songs/60107004.mkv +蒋大红-尊严,http://em.21dtv.com/songs/60106248.mkv +佟佳霖霖-祝愿,http://em.21dtv.com/songs/60101256.mkv +龙梅子-最右,http://em.21dtv.com/songs/60100694.mkv +罗晓音+齐觊+简丹+邹阳-尊严,http://em.21dtv.com/songs/60100379.mkv +胡彦斌-追月,http://em.21dtv.com/songs/60096761.mkv +王瑞霞-重要,http://em.21dtv.com/songs/60096409.mkv +潘玮柏-左右,http://em.21dtv.com/songs/60095321.mkv +汤潮-阵雨,http://em.21dtv.com/songs/60094975.mkv +何李-追忆,http://em.21dtv.com/songs/60094810.mkv +李蕙敏-赠于,http://em.21dtv.com/songs/60092814.mkv +景仪-知音,http://em.21dtv.com/songs/60089934.mkv +周慧敏+邰正宵-知已,http://em.21dtv.com/songs/60089740.mkv +许志安-自由,http://em.21dtv.com/songs/60088646.mkv +丛浩楠-追影,http://em.21dtv.com/songs/60087237.mkv +易帆-昨夜,http://em.21dtv.com/songs/60087164.mkv +刘孟哲-走远,http://em.21dtv.com/songs/60087153.mkv +张韶涵-自由,http://em.21dtv.com/songs/60087146.mkv +金岩-战友,http://em.21dtv.com/songs/60086226.mkv +欧豪-左右,http://em.21dtv.com/songs/60084662.mkv +于洋-醉雨,http://em.21dtv.com/songs/60084631.mkv +邓惠欣-足印,http://em.21dtv.com/songs/60084616.mkv +尹熙水-自由,http://em.21dtv.com/songs/60084603.mkv +洪禄云+陈水林-知音,http://em.21dtv.com/songs/60084552.mkv +李琦-自由,http://em.21dtv.com/songs/60081600.mkv +綦光+高毅-怎样,http://em.21dtv.com/songs/60081506.mkv +东京女子流-追忆,http://em.21dtv.com/songs/60079708.mkv +秦岚-终于,http://em.21dtv.com/songs/60079663.mkv +回音哥-终于,http://em.21dtv.com/songs/60079662.mkv +刘惜君-怎样,http://em.21dtv.com/songs/60079504.mkv +严爵-照样,http://em.21dtv.com/songs/60072788.mkv +周怡然-自由,http://em.21dtv.com/songs/60071545.mkv +陈乃荣-终于,http://em.21dtv.com/songs/60070255.mkv +王军贺-战友,http://em.21dtv.com/songs/60070227.mkv +王志心-尊严,http://em.21dtv.com/songs/60067841.mkv +许廷铿+吴若希-知已,http://em.21dtv.com/songs/60063222.mkv +杭航-状元,http://em.21dtv.com/songs/60062429.mkv +林心如-左右,http://em.21dtv.com/songs/60060659.mkv +陈瑞-昨夜,http://em.21dtv.com/songs/60060601.mkv +佚名-鳟鱼,http://em.21dtv.com/songs/60060560.mkv +黄国俊+江得胜-鳟鱼,http://em.21dtv.com/songs/60060559.mkv +陈浩光-醉月,http://em.21dtv.com/songs/60060543.mkv +黄靖伦-走音,http://em.21dtv.com/songs/60059971.mkv +侧田-走音(演唱会),http://em.21dtv.com/songs/60059970.mkv +张宇-走样,http://em.21dtv.com/songs/60059967.mkv +黎瑞恩-自愿,http://em.21dtv.com/songs/60059798.mkv +张学友-自由,http://em.21dtv.com/songs/60059764.mkv +游鸿明-自由,http://em.21dtv.com/songs/60059763.mkv +徐良-自由,http://em.21dtv.com/songs/60059762.mkv +堂娜-自由,http://em.21dtv.com/songs/60059761.mkv +林晓培-自由,http://em.21dtv.com/songs/60059760.mkv +李心洁-自由,http://em.21dtv.com/songs/60059759.mkv +黄思婷-自由,http://em.21dtv.com/songs/60059758.mkv +甘薇-自由,http://em.21dtv.com/songs/60059757.mkv +陈慧琳-自由,http://em.21dtv.com/songs/60059756.mkv +CT GIRLS-自由,http://em.21dtv.com/songs/60059755.mkv +朱孝天-自由(演唱会),http://em.21dtv.com/songs/60059754.mkv +张震岳-自由(演唱会),http://em.21dtv.com/songs/60059753.mkv +张信哲+容祖儿-自由(演唱会),http://em.21dtv.com/songs/60059752.mkv +吴浩康-自由(演唱会),http://em.21dtv.com/songs/60059751.mkv +顾莉雅-自由(演唱会),http://em.21dtv.com/songs/60059750.mkv +王志清-自由(无原唱),http://em.21dtv.com/songs/60059749.mkv +芭比-自由(无原唱),http://em.21dtv.com/songs/60059748.mkv +齐秦-紫雨,http://em.21dtv.com/songs/60059657.mkv +陈柏宇-尊严,http://em.21dtv.com/songs/60059620.mkv +卜学亮+曾宝仪-子曰,http://em.21dtv.com/songs/60059616.mkv +[Group] +groupName=十六万歌曲MV等 - 19 +艾敬-追月(演唱会),http://em.21dtv.com/songs/60059554.mkv +卓依婷-追缘,http://em.21dtv.com/songs/60059553.mkv +杭天琪-追缘,http://em.21dtv.com/songs/60059552.mkv +许志安-追忆(演唱会),http://em.21dtv.com/songs/60059549.mkv +林子祥-追忆(演唱会),http://em.21dtv.com/songs/60059548.mkv +黄家强-追忆(演唱会),http://em.21dtv.com/songs/60059547.mkv +林玉英-追忆(无原唱),http://em.21dtv.com/songs/60059546.mkv +黄立行-状元,http://em.21dtv.com/songs/60059489.mkv +戴佩妮-转眼,http://em.21dtv.com/songs/60059457.mkv +巫奇-专一,http://em.21dtv.com/songs/60059425.mkv +吴奇隆-骤雨,http://em.21dtv.com/songs/60059195.mkv +林忆莲-重遇,http://em.21dtv.com/songs/60059174.mkv +吕方-重遇(演唱会),http://em.21dtv.com/songs/60059173.mkv +周华健-终于,http://em.21dtv.com/songs/60059039.mkv +知函-终于,http://em.21dtv.com/songs/60059038.mkv +孙燕姿-终于,http://em.21dtv.com/songs/60059037.mkv +ZAYIN-终于,http://em.21dtv.com/songs/60059036.mkv +伍佰-终于(演唱会),http://em.21dtv.com/songs/60059035.mkv +施易男-忠于,http://em.21dtv.com/songs/60059005.mkv +张超-指引,http://em.21dtv.com/songs/60058789.mkv +佚名-知影,http://em.21dtv.com/songs/60058691.mkv +孟庭苇-知影,http://em.21dtv.com/songs/60058690.mkv +佚名-知音,http://em.21dtv.com/songs/60058683.mkv +李谷一-知音,http://em.21dtv.com/songs/60058682.mkv +黎瑞恩-正义,http://em.21dtv.com/songs/60058356.mkv +陈司翰-震央,http://em.21dtv.com/songs/60058303.mkv +叶佩雯-招摇,http://em.21dtv.com/songs/60057653.mkv +刘浩龙-战友,http://em.21dtv.com/songs/60057486.mkv +李蕙敏-赠与,http://em.21dtv.com/songs/60057414.mkv +陶莉萍-怎样,http://em.21dtv.com/songs/60057399.mkv +蓝沁-怎样,http://em.21dtv.com/songs/60057398.mkv +戴佩妮-怎样,http://em.21dtv.com/songs/60057397.mkv +5566-怎样,http://em.21dtv.com/songs/60057396.mkv +伍浩哲-怎样(无原唱),http://em.21dtv.com/songs/60057395.mkv +林俊辉-再遇,http://em.21dtv.com/songs/60057022.mkv +黄凯芹-再遇(演唱会),http://em.21dtv.com/songs/60057021.mkv +黄凯芹-再遇(无原唱),http://em.21dtv.com/songs/60057020.mkv +林慧省+陈庆仁-珍惜,http://em.21dtv.com/songs/60135436.mkv +汤非-醉香,http://em.21dtv.com/songs/60133924.mkv +汤非-醉香,http://em.21dtv.com/songs/60131593.mkv +萧敬腾-诛仙,http://em.21dtv.com/songs/60127354.mkv +萧全-走心,http://em.21dtv.com/songs/60126122.mkv +马常宝-醉乡,http://em.21dtv.com/songs/60120141.mkv +呆宝静+千田爱沙-真相,http://em.21dtv.com/songs/60117617.mkv +胡悦-窒息,http://em.21dtv.com/songs/60113980.mkv +彭家丽-珍惜,http://em.21dtv.com/songs/60112700.mkv +张杰-真相,http://em.21dtv.com/songs/60111876.mkv +许廷铿+胡鸿钧-真相,http://em.21dtv.com/songs/60110521.mkv +罗逻圣-珍惜,http://em.21dtv.com/songs/60108805.mkv +胡琳-真相,http://em.21dtv.com/songs/60107140.mkv +韦海涛-醉心,http://em.21dtv.com/songs/60106447.mkv +何先宇+刘奕-珍惜,http://em.21dtv.com/songs/60101899.mkv +陆正信-壮乡,http://em.21dtv.com/songs/60100554.mkv +白冰-葬心,http://em.21dtv.com/songs/60100335.mkv +Gala-斩仙,http://em.21dtv.com/songs/60098995.mkv +品冠-掌心,http://em.21dtv.com/songs/60096228.mkv +徐智勇-转性,http://em.21dtv.com/songs/60092715.mkv +费翔-真心,http://em.21dtv.com/songs/60088692.mkv +呼斯楞-醉乡,http://em.21dtv.com/songs/60084630.mkv +林少纬-周旋,http://em.21dtv.com/songs/60084586.mkv +孙露-珍惜,http://em.21dtv.com/songs/60084538.mkv +李虎-珍惜,http://em.21dtv.com/songs/60084537.mkv +动力火车-珍惜,http://em.21dtv.com/songs/60084536.mkv +郁可唯-葬心,http://em.21dtv.com/songs/60084518.mkv +吉杰-真相,http://em.21dtv.com/songs/60081911.mkv +陈奕迅-摘星(演唱会),http://em.21dtv.com/songs/60079515.mkv +刘一祯-总叙,http://em.21dtv.com/songs/60071547.mkv +张秀卿-追心,http://em.21dtv.com/songs/60071538.mkv +MIC男团-窒息,http://em.21dtv.com/songs/60070248.mkv +蔡秋凤-真相,http://em.21dtv.com/songs/60067790.mkv +李宇春-珍惜,http://em.21dtv.com/songs/60067789.mkv +琼雪卓玛-真想,http://em.21dtv.com/songs/60062845.mkv +黎明-醉心,http://em.21dtv.com/songs/60060536.mkv +关淑怡-钻禧,http://em.21dtv.com/songs/60060043.mkv +林展逸-祖训,http://em.21dtv.com/songs/60060032.mkv +林一峰-走先,http://em.21dtv.com/songs/60059961.mkv +孙楠-追寻,http://em.21dtv.com/songs/60059544.mkv +林志炫-追寻,http://em.21dtv.com/songs/60059543.mkv +阿斯根-追寻,http://em.21dtv.com/songs/60059542.mkv +佚名-追寻(无原唱),http://em.21dtv.com/songs/60059541.mkv +王晶-追星,http://em.21dtv.com/songs/60059540.mkv +小肥-转性,http://em.21dtv.com/songs/60059456.mkv +谢宇文-中邪,http://em.21dtv.com/songs/60058987.mkv +姚黛玮-窒息,http://em.21dtv.com/songs/60058840.mkv +王馨平-织心,http://em.21dtv.com/songs/60058695.mkv +杨彩妮-只想,http://em.21dtv.com/songs/60058462.mkv +轻松玩乐团-只想,http://em.21dtv.com/songs/60058461.mkv +叶倩文-真心,http://em.21dtv.com/songs/60058224.mkv +谢金燕-真心,http://em.21dtv.com/songs/60058223.mkv +黄思婷-真心,http://em.21dtv.com/songs/60058222.mkv +高胜美-真心,http://em.21dtv.com/songs/60058221.mkv +张国荣-真相,http://em.21dtv.com/songs/60058214.mkv +佚名-珍惜,http://em.21dtv.com/songs/60057990.mkv +叶世荣-珍惜,http://em.21dtv.com/songs/60057989.mkv +杨臣刚-珍惜,http://em.21dtv.com/songs/60057988.mkv +苏有朋-珍惜,http://em.21dtv.com/songs/60057987.mkv +任贤齐-珍惜,http://em.21dtv.com/songs/60057986.mkv +龙千玉-珍惜,http://em.21dtv.com/songs/60057985.mkv +梁振宇-珍惜,http://em.21dtv.com/songs/60057984.mkv +李少继+李柔-珍惜,http://em.21dtv.com/songs/60057983.mkv +苏有朋-珍惜(演唱会),http://em.21dtv.com/songs/60057982.mkv +高峰-珍惜(无原唱),http://em.21dtv.com/songs/60057981.mkv +李立崴-找寻,http://em.21dtv.com/songs/60057696.mkv +无印良品-掌心,http://em.21dtv.com/songs/60057642.mkv +无印良品-掌心(演唱会),http://em.21dtv.com/songs/60057641.mkv +黄品冠+阿牛-掌心(演唱会),http://em.21dtv.com/songs/60057640.mkv +罗文-摘星,http://em.21dtv.com/songs/60057436.mkv +霍建华-摘星,http://em.21dtv.com/songs/60057435.mkv +何润东+陈怡容-摘星,http://em.21dtv.com/songs/60057434.mkv +陈百强-摘星,http://em.21dtv.com/songs/60057433.mkv +郑中基-摘星(演唱会),http://em.21dtv.com/songs/60057432.mkv +张敬轩-摘星(演唱会),http://em.21dtv.com/songs/60057431.mkv +何润东+陈怡蓉-摘星(无原唱),http://em.21dtv.com/songs/60057430.mkv +黄莺莺-葬心,http://em.21dtv.com/songs/60057283.mkv +高胜美-葬心,http://em.21dtv.com/songs/60057282.mkv +耀乐团-找我,http://em.21dtv.com/songs/60132809.mkv +于湉-指纹,http://em.21dtv.com/songs/60131149.mkv +张磊-众望,http://em.21dtv.com/songs/60112690.mkv +TWINS-再玩,http://em.21dtv.com/songs/60092207.mkv +阮丹青-转弯,http://em.21dtv.com/songs/60084594.mkv +倪鹏-掌纹,http://em.21dtv.com/songs/60081507.mkv +蔡卓妍-种我,http://em.21dtv.com/songs/60079665.mkv +刘程伊-醉翁,http://em.21dtv.com/songs/60072843.mkv +胡歌-指纹,http://em.21dtv.com/songs/60072807.mkv +瞿显沣-掌纹,http://em.21dtv.com/songs/60071511.mkv +林俊吉-滋味,http://em.21dtv.com/songs/60065510.mkv +蔡枫华-自我(演唱会),http://em.21dtv.com/songs/60061921.mkv +汪子琳-滋味(无原唱),http://em.21dtv.com/songs/60059609.mkv +杜德伟-准我,http://em.21dtv.com/songs/60059574.mkv +羽泉-转弯,http://em.21dtv.com/songs/60059454.mkv +吴奇隆-转弯,http://em.21dtv.com/songs/60059453.mkv +郁可唯-指望,http://em.21dtv.com/songs/60058788.mkv +小E-指望,http://em.21dtv.com/songs/60058787.mkv +郁可唯-指望(演唱会),http://em.21dtv.com/songs/60058786.mkv +与非门-正午,http://em.21dtv.com/songs/60058354.mkv +吴奇隆-找我,http://em.21dtv.com/songs/60057685.mkv +梁汉文+邓丽欣-找我,http://em.21dtv.com/songs/60057684.mkv +梁汉文-找我(演唱会),http://em.21dtv.com/songs/60057683.mkv +心跳男孩-掌握,http://em.21dtv.com/songs/60057639.mkv +郭富城-掌纹,http://em.21dtv.com/songs/60057638.mkv +曹格-掌纹,http://em.21dtv.com/songs/60057637.mkv +王宏恩-战舞,http://em.21dtv.com/songs/60057485.mkv +闪亮三姐妹-轧舞,http://em.21dtv.com/songs/60057421.mkv +大象体操-中途,http://em.21dtv.com/songs/60130217.mkv +郭少杰+杜歌+孟刚-征途,http://em.21dtv.com/songs/60124577.mkv +谭维维-站台,http://em.21dtv.com/songs/60114799.mkv +屠洪纲-长途,http://em.21dtv.com/songs/60091003.mkv +龙啸-挣脱,http://em.21dtv.com/songs/60087121.mkv +亮亮-昨天,http://em.21dtv.com/songs/60086309.mkv +覃元隆-站台,http://em.21dtv.com/songs/60084527.mkv +邹文正-糟蹋,http://em.21dtv.com/songs/60084519.mkv +王熹蛮-纸条,http://em.21dtv.com/songs/60080290.mkv +美好前程-昨天,http://em.21dtv.com/songs/60079828.mkv +张杰-征途,http://em.21dtv.com/songs/60079584.mkv +苏泉-征途,http://em.21dtv.com/songs/60072803.mkv +赵本水-站台,http://em.21dtv.com/songs/60068616.mkv +MR.-昨天,http://em.21dtv.com/songs/60066623.mkv +侃侃-嘀嗒,http://em.21dtv.com/songs/60064129.mkv +乌丫-昨天,http://em.21dtv.com/songs/60063083.mkv +爱乐团-昨天,http://em.21dtv.com/songs/60062208.mkv +石欣卉-昨天,http://em.21dtv.com/songs/60060573.mkv +梁静茹-昨天,http://em.21dtv.com/songs/60060572.mkv +赵薇-状态,http://em.21dtv.com/songs/60059488.mkv +张祥洪-挣脱,http://em.21dtv.com/songs/60058373.mkv +谢金燕-挣脱,http://em.21dtv.com/songs/60058372.mkv +赖雅妍-挣脱,http://em.21dtv.com/songs/60058371.mkv +张陵乐-征途,http://em.21dtv.com/songs/60058326.mkv +张国荣-枕头,http://em.21dtv.com/songs/60058290.mkv +万芳-这天,http://em.21dtv.com/songs/60057859.mkv +苏打绿-这天,http://em.21dtv.com/songs/60057858.mkv +杨坤-站台,http://em.21dtv.com/songs/60057510.mkv +付笛声-站台,http://em.21dtv.com/songs/60057509.mkv +佚名-站台(快四),http://em.21dtv.com/songs/60057508.mkv +越剧+徐标新+邓华蔚-赠塔,http://em.21dtv.com/songs/60057412.mkv +锡剧-赠塔,http://em.21dtv.com/songs/60057411.mkv +马浚伟-糟蹋,http://em.21dtv.com/songs/60057285.mkv +容祖儿-装傻,http://em.21dtv.com/songs/60133587.mkv +辛晓琪-自私,http://em.21dtv.com/songs/60132947.mkv +容祖儿-装傻,http://em.21dtv.com/songs/60130264.mkv +黄立纲-战殇,http://em.21dtv.com/songs/60128636.mkv +马可-重生,http://em.21dtv.com/songs/60120138.mkv +许志安-芝士,http://em.21dtv.com/songs/60124478.mkv +樊凡-转身,http://em.21dtv.com/songs/60121840.mkv +陈岩-葬殇,http://em.21dtv.com/songs/60119013.mkv +袁娅维-真实,http://em.21dtv.com/songs/60118898.mkv +严爵-战士,http://em.21dtv.com/songs/60115662.mkv +高利虹-真实,http://em.21dtv.com/songs/60114275.mkv +白举纲-装睡,http://em.21dtv.com/songs/60112861.mkv +徐浩+朱元冰-重生,http://em.21dtv.com/songs/60112706.mkv +萱萱-自私,http://em.21dtv.com/songs/60112199.mkv +孙子涵-子时,http://em.21dtv.com/songs/60110132.mkv +刘品言-重生,http://em.21dtv.com/songs/60110017.mkv +晓枫-转身,http://em.21dtv.com/songs/60108545.mkv +储毅-重生,http://em.21dtv.com/songs/60108317.mkv +李克-重生,http://em.21dtv.com/songs/60107779.mkv +丁于-重生,http://em.21dtv.com/songs/60103840.mkv +MP魔幻力量-战神,http://em.21dtv.com/songs/60103030.mkv +卫兰-自首,http://em.21dtv.com/songs/60102012.mkv +陈子胤-转身,http://em.21dtv.com/songs/60100579.mkv +林宝英-祝寿(戏曲),http://em.21dtv.com/songs/60095664.mkv +纪如璟-追随,http://em.21dtv.com/songs/60091813.mkv +陈雷-掌声,http://em.21dtv.com/songs/60087108.mkv +王诗安-早熟,http://em.21dtv.com/songs/60086216.mkv +张婧-走失,http://em.21dtv.com/songs/60084615.mkv +李琦-真实,http://em.21dtv.com/songs/60081596.mkv +蒋蒋-装蒜,http://em.21dtv.com/songs/60081006.mkv +林冲-钻石,http://em.21dtv.com/songs/60079762.mkv +酒吧伤心人-转身,http://em.21dtv.com/songs/60079700.mkv +侧田-自身,http://em.21dtv.com/songs/60072825.mkv +夜叉乐队-转山,http://em.21dtv.com/songs/60072820.mkv +群星-追随,http://em.21dtv.com/songs/60069027.mkv +辛晓琪-真实,http://em.21dtv.com/songs/60069001.mkv +苏振华-真实,http://em.21dtv.com/songs/60062938.mkv +徐熙媛-钻石,http://em.21dtv.com/songs/60060037.mkv +乔任梁-钻石,http://em.21dtv.com/songs/60060036.mkv +莫文蔚-钻石,http://em.21dtv.com/songs/60060035.mkv +靓舞精灵-钻石,http://em.21dtv.com/songs/60060034.mkv +尧尧-总是,http://em.21dtv.com/songs/60059828.mkv +辛晓琪-自私,http://em.21dtv.com/songs/60059736.mkv +林吉玲-自私(无原唱),http://em.21dtv.com/songs/60059735.mkv +李翊君-自首,http://em.21dtv.com/songs/60059734.mkv +翁立友-追随(无原唱),http://em.21dtv.com/songs/60059538.mkv +许颂-转身,http://em.21dtv.com/songs/60059447.mkv +林忆莲-转身,http://em.21dtv.com/songs/60059446.mkv +高慧君-转身,http://em.21dtv.com/songs/60059445.mkv +林忆莲-转身(演唱会),http://em.21dtv.com/songs/60059444.mkv +姚敏男-转身(无原唱),http://em.21dtv.com/songs/60059443.mkv +李翊君-重生,http://em.21dtv.com/songs/60059147.mkv +张栋梁-重伤,http://em.21dtv.com/songs/60059146.mkv +林凡-重伤,http://em.21dtv.com/songs/60059145.mkv +孙耀威-众伤,http://em.21dtv.com/songs/60059085.mkv +那英-至少,http://em.21dtv.com/songs/60058799.mkv +邓健泓-直上,http://em.21dtv.com/songs/60058741.mkv +张惠妹-真实,http://em.21dtv.com/songs/60058197.mkv +曾庆瑜-真实,http://em.21dtv.com/songs/60058196.mkv +IO-真实,http://em.21dtv.com/songs/60058195.mkv +小曾-战士,http://em.21dtv.com/songs/60057476.mkv +陈伟霆-战士(演唱会),http://em.21dtv.com/songs/60057475.mkv +范逸臣-再说,http://em.21dtv.com/songs/60056973.mkv +阿信-再生,http://em.21dtv.com/songs/60056950.mkv +王梓轩-再生,http://em.21dtv.com/songs/60056949.mkv +莫文蔚-再生,http://em.21dtv.com/songs/60056948.mkv +童唱-杂诗,http://em.21dtv.com/songs/60056706.mkv +佚名-箴诗,http://em.21dtv.com/songs/60046363.mkv +童唱-枞树(无原唱),http://em.21dtv.com/songs/60013484.mkv +宥胜-昨日,http://em.21dtv.com/songs/60130263.mkv +宥胜-昨日,http://em.21dtv.com/songs/60123846.mkv +夜叉乐队-责任,http://em.21dtv.com/songs/60072782.mkv +高林生-纵容,http://em.21dtv.com/songs/60062378.mkv +张洪量-罪人,http://em.21dtv.com/songs/60060477.mkv +吴浩康-罪人,http://em.21dtv.com/songs/60060476.mkv +李克勤-罪人,http://em.21dtv.com/songs/60060475.mkv +张洪量-罪人(演唱会),http://em.21dtv.com/songs/60060474.mkv +谢霆锋-罪人(演唱会),http://em.21dtv.com/songs/60060473.mkv +范晓萱+100%-主人,http://em.21dtv.com/songs/60059259.mkv +张宇-责任,http://em.21dtv.com/songs/60057334.mkv +李建衡-责任,http://em.21dtv.com/songs/60057333.mkv +张宇-责任(演唱会),http://em.21dtv.com/songs/60057332.mkv +陈升-责任(演唱会),http://em.21dtv.com/songs/60057331.mkv +龙千玉-真情,http://em.21dtv.com/songs/60136058.mkv +棠星琪-真情,http://em.21dtv.com/songs/60135466.mkv +大台风乐团-志气,http://em.21dtv.com/songs/60119382.mkv +吉克隽逸-争气,http://em.21dtv.com/songs/60103968.mkv +王麟-中枪,http://em.21dtv.com/songs/60102562.mkv +员伟明-挚亲,http://em.21dtv.com/songs/60087129.mkv +阿肆-紫卿,http://em.21dtv.com/songs/60086275.mkv +火星熊-追求,http://em.21dtv.com/songs/60079705.mkv +王电-争气,http://em.21dtv.com/songs/60072802.mkv +何伟图-自弃,http://em.21dtv.com/songs/60071542.mkv +蔡义德-志气,http://em.21dtv.com/songs/60064559.mkv +成龙-醉拳,http://em.21dtv.com/songs/60060519.mkv +俞思远-追求,http://em.21dtv.com/songs/60059534.mkv +佚名-追求,http://em.21dtv.com/songs/60059533.mkv +李娜-追求,http://em.21dtv.com/songs/60059532.mkv +韩东-追求,http://em.21dtv.com/songs/60059531.mkv +耿宁-追求,http://em.21dtv.com/songs/60059530.mkv +陈百潭-追求,http://em.21dtv.com/songs/60059529.mkv +M3-追求(无原唱),http://em.21dtv.com/songs/60059528.mkv +佚名-追情,http://em.21dtv.com/songs/60059527.mkv +龙千玉-追情,http://em.21dtv.com/songs/60059526.mkv +王中平-专情,http://em.21dtv.com/songs/60059418.mkv +蔡国庆+杭天琪-钟情,http://em.21dtv.com/songs/60059057.mkv +容祖儿-争气,http://em.21dtv.com/songs/60058310.mkv +刘德华-争气,http://em.21dtv.com/songs/60058309.mkv +郭富城-争气,http://em.21dtv.com/songs/60058308.mkv +容祖儿-争气(演唱会),http://em.21dtv.com/songs/60058307.mkv +佚名-真情,http://em.21dtv.com/songs/60058148.mkv +刘斌-真情,http://em.21dtv.com/songs/60058147.mkv +李娜-真情,http://em.21dtv.com/songs/60058146.mkv +李玟-真情,http://em.21dtv.com/songs/60058145.mkv +蔡幸娟-真情,http://em.21dtv.com/songs/60058144.mkv +办桌二人组-真情,http://em.21dtv.com/songs/60058143.mkv +杨克强-占缺,http://em.21dtv.com/songs/60057459.mkv +翁立友-占缺,http://em.21dtv.com/songs/60057458.mkv +高胜美-早秋,http://em.21dtv.com/songs/60057309.mkv +葛仲珊+安心亚-自拍,http://em.21dtv.com/songs/60114018.mkv +李荣浩-自拍,http://em.21dtv.com/songs/60108584.mkv +李荣浩-自拍,http://em.21dtv.com/songs/60107801.mkv +FUN4-照骗,http://em.21dtv.com/songs/60104679.mkv +张洋-照片,http://em.21dtv.com/songs/60063418.mkv +张学友-最怕,http://em.21dtv.com/songs/60060394.mkv +江美琪-照片,http://em.21dtv.com/songs/60057734.mkv +THE KUKUSHKA-zlata ognevich,http://em.21dtv.com/songs/60074210.mkv +东来东往-渣男,http://em.21dtv.com/songs/60123593.mkv +李琦-宅男,http://em.21dtv.com/songs/60116016.mkv +陈天-执念,http://em.21dtv.com/songs/60115485.mkv +张惠妹-自虐,http://em.21dtv.com/songs/60103274.mkv +饶严-罪孽,http://em.21dtv.com/songs/60098937.mkv +梁雨恩-追你,http://em.21dtv.com/songs/60092932.mkv +刘若英-怎能,http://em.21dtv.com/songs/60090725.mkv +顾晓伟-宅男,http://em.21dtv.com/songs/60080966.mkv +拥忠丹增-藏女,http://em.21dtv.com/songs/60069287.mkv +刘子千-粘你,http://em.21dtv.com/songs/60061880.mkv +4ANDA-宅男,http://em.21dtv.com/songs/60057439.mkv +费鲤齐+孙旸-逐梦,http://em.21dtv.com/songs/60134241.mkv +杨秀焜-着迷,http://em.21dtv.com/songs/60131533.mkv +伍佳丽-着迷,http://em.21dtv.com/songs/60125115.mkv +松勐-追梦,http://em.21dtv.com/songs/60124838.mkv +KiKi.Li-造梦,http://em.21dtv.com/songs/60123490.mkv +姚天成-周末,http://em.21dtv.com/songs/60119399.mkv +大勇-逐梦,http://em.21dtv.com/songs/60119378.mkv +The Legend-着迷,http://em.21dtv.com/songs/60118282.mkv +吴娇-追梦,http://em.21dtv.com/songs/60116639.mkv +刘栋升-醉梦,http://em.21dtv.com/songs/60116592.mkv +邝佳敏-追梦,http://em.21dtv.com/songs/60116285.mkv +Beast-做梦,http://em.21dtv.com/songs/60112420.mkv +陈粒-走马,http://em.21dtv.com/songs/60112366.mkv +陈洁仪-着迷,http://em.21dtv.com/songs/60112357.mkv +刘和刚-最美,http://em.21dtv.com/songs/60110878.mkv +罗宁娜-醉美,http://em.21dtv.com/songs/60110454.mkv +邓紫衣-着魔,http://em.21dtv.com/songs/60107260.mkv +朱佳美子-着魔,http://em.21dtv.com/songs/60105958.mkv +罗汉-追梦,http://em.21dtv.com/songs/60102627.mkv +七郎-咱ㄟ梦,http://em.21dtv.com/songs/60101605.mkv +李雪儿-追梦,http://em.21dtv.com/songs/60101387.mkv +韩晶-追梦,http://em.21dtv.com/songs/60096762.mkv +麦浚龙-左面,http://em.21dtv.com/songs/60093521.mkv +野仔-张某,http://em.21dtv.com/songs/60093372.mkv +黑龙-长眠,http://em.21dtv.com/songs/60080160.mkv +邓子霆-着魔,http://em.21dtv.com/songs/60080126.mkv +央金兰泽-卓玛,http://em.21dtv.com/songs/60079710.mkv +乌兰托娅-卓玛,http://em.21dtv.com/songs/60079709.mkv +厉智敏-追梦,http://em.21dtv.com/songs/60079704.mkv +张雷-证明,http://em.21dtv.com/songs/60079594.mkv +FLUMPOOL-证明,http://em.21dtv.com/songs/60079593.mkv +刘大毅+田华-赞美,http://em.21dtv.com/songs/60079495.mkv +胡斌-卓玛,http://em.21dtv.com/songs/60071540.mkv +张杰-着魔,http://em.21dtv.com/songs/60066608.mkv +陈小春-作梦,http://em.21dtv.com/songs/60060673.mkv +羽泉-最美,http://em.21dtv.com/songs/60060365.mkv +梁咏琪-最美,http://em.21dtv.com/songs/60060364.mkv +江美琪-最美,http://em.21dtv.com/songs/60060363.mkv +张文森-最美(演唱会),http://em.21dtv.com/songs/60060362.mkv +梁耀安+苏春梅-走马,http://em.21dtv.com/songs/60059929.mkv +杨千嬅-姐妹(演唱会),http://em.21dtv.com/songs/60059619.mkv +许志安-姐妹(演唱会),http://em.21dtv.com/songs/60059618.mkv +宗庸卓玛-卓玛,http://em.21dtv.com/songs/60059600.mkv +周艳泓-卓玛,http://em.21dtv.com/songs/60059599.mkv +亚东-卓玛,http://em.21dtv.com/songs/60059598.mkv +山泉音月-卓玛,http://em.21dtv.com/songs/60059597.mkv +降央卓玛-卓玛,http://em.21dtv.com/songs/60059596.mkv +黄英-卓玛,http://em.21dtv.com/songs/60059595.mkv +阿亮-卓玛,http://em.21dtv.com/songs/60059594.mkv +谭维维-卓玛(演唱会),http://em.21dtv.com/songs/60059593.mkv +余天-追梦,http://em.21dtv.com/songs/60059519.mkv +湘海-追梦,http://em.21dtv.com/songs/60059518.mkv +吴奇隆-追梦,http://em.21dtv.com/songs/60059517.mkv +韩宝仪-追梦,http://em.21dtv.com/songs/60059516.mkv +陈晓东-抓梦(演唱会),http://em.21dtv.com/songs/60059410.mkv +阿超-芝麻,http://em.21dtv.com/songs/60058633.mkv +罗时丰+黄思婷-证明,http://em.21dtv.com/songs/60058368.mkv +何以奇-证明,http://em.21dtv.com/songs/60058367.mkv +罗百吉-正妹,http://em.21dtv.com/songs/60058350.mkv +康净淳-着魔,http://em.21dtv.com/songs/60057964.mkv +B.A.D-着魔,http://em.21dtv.com/songs/60057963.mkv +王馨平-着迷,http://em.21dtv.com/songs/60057962.mkv +潘玮柏-着迷,http://em.21dtv.com/songs/60057961.mkv +郭富城-着迷,http://em.21dtv.com/songs/60057960.mkv +郭富城-着迷(演唱会),http://em.21dtv.com/songs/60057959.mkv +周子寒-折磨,http://em.21dtv.com/songs/60057741.mkv +张宇-折磨,http://em.21dtv.com/songs/60057740.mkv +183CLUB-折磨,http://em.21dtv.com/songs/60057739.mkv +佚名-摘梅,http://em.21dtv.com/songs/60057428.mkv +辛晓琪-怎么,http://em.21dtv.com/songs/60057343.mkv +安迪+阿娥-仔某(无原唱),http://em.21dtv.com/songs/60056708.mkv +月绮小百合-烛泪,http://em.21dtv.com/songs/60133773.mkv +痛仰乐队-支离,http://em.21dtv.com/songs/60129441.mkv +小鱼儿-珍珑,http://em.21dtv.com/songs/60129008.mkv +桥哥-知了,http://em.21dtv.com/songs/60128134.mkv +王晰-重来,http://em.21dtv.com/songs/60119815.mkv +陈禹辛-知了,http://em.21dtv.com/songs/60114872.mkv +梁佳玉-占领,http://em.21dtv.com/songs/60112807.mkv +谢天笑-醉了,http://em.21dtv.com/songs/60110537.mkv +胡量-这里,http://em.21dtv.com/songs/60109583.mkv +裴涩琪-赞了,http://em.21dtv.com/songs/60107994.mkv +杨宗纬-重来(现场版),http://em.21dtv.com/songs/60098510.mkv +黄宏+牛莉+沈畅-足疗,http://em.21dtv.com/songs/60090346.mkv +邓鼓-重来,http://em.21dtv.com/songs/60086264.mkv +东篱-逐鹿,http://em.21dtv.com/songs/60084588.mkv +AKB48-重力シンパシー(演唱会),http://em.21dtv.com/songs/60084580.mkv +蔡健雅-坠落,http://em.21dtv.com/songs/60080808.mkv +SKE48-キスだって左利き,http://em.21dtv.com/songs/60074227.mkv +关楚耀-占领,http://em.21dtv.com/songs/60066586.mkv +吴介贤-知了,http://em.21dtv.com/songs/60065481.mkv +王啸坤-走了,http://em.21dtv.com/songs/60063038.mkv +容中尔甲-降临,http://em.21dtv.com/songs/60062879.mkv +尹光-追龙(演唱会),http://em.21dtv.com/songs/60061913.mkv +陈予新-左脸,http://em.21dtv.com/songs/60060640.mkv +郑中基-醉了(演唱会),http://em.21dtv.com/songs/60060502.mkv +那娜-嘴脸,http://em.21dtv.com/songs/60060046.mkv +林志炫-走了,http://em.21dtv.com/songs/60059921.mkv +邓颖芝-自量,http://em.21dtv.com/songs/60059718.mkv +罗志祥-自恋,http://em.21dtv.com/songs/60059715.mkv +佚名-坠落,http://em.21dtv.com/songs/60059563.mkv +王新莲-坠落,http://em.21dtv.com/songs/60059562.mkv +尹光-追龙,http://em.21dtv.com/songs/60059515.mkv +朱咪咪-追龙(演唱会),http://em.21dtv.com/songs/60059514.mkv +尹光+刘锡贤-追龙(演唱会),http://em.21dtv.com/songs/60059513.mkv +大AL-追龙(演唱会),http://em.21dtv.com/songs/60059512.mkv +潘越云-烛泪,http://em.21dtv.com/songs/60059255.mkv +李圣杰-重来,http://em.21dtv.com/songs/60059137.mkv +黄小琥-重来,http://em.21dtv.com/songs/60059136.mkv +黄品冠-重来,http://em.21dtv.com/songs/60059135.mkv +黄品冠-重来(演唱会),http://em.21dtv.com/songs/60059134.mkv +高枫-重来(演唱会),http://em.21dtv.com/songs/60059133.mkv +苏慧伦-知了,http://em.21dtv.com/songs/60058670.mkv +任峰-知了,http://em.21dtv.com/songs/60058669.mkv +许志安-蟑螂,http://em.21dtv.com/songs/60057549.mkv +陈晓东-占领,http://em.21dtv.com/songs/60057456.mkv +张牧阅-葬泪,http://em.21dtv.com/songs/60057280.mkv +黄凯芹-再恋(演唱会),http://em.21dtv.com/songs/60056933.mkv +南一+马剑芬-自控,http://em.21dtv.com/songs/60112556.mkv +谷云龙-最酷,http://em.21dtv.com/songs/60062398.mkv +容祖儿-罪魁,http://em.21dtv.com/songs/60060472.mkv +张萱妍-走开,http://em.21dtv.com/songs/60059919.mkv +陈琳-走开,http://em.21dtv.com/songs/60059918.mkv +五月天-抓狂,http://em.21dtv.com/songs/60059409.mkv +胡世明-站口,http://em.21dtv.com/songs/60057504.mkv +张学友-燥狂,http://em.21dtv.com/songs/60057327.mkv +欧阳辉-再见,http://em.21dtv.com/songs/60133905.mkv +张杰-自己,http://em.21dtv.com/songs/60133675.mkv +G.E.M.邓紫棋&DJ馒头-再见,http://em.21dtv.com/songs/60132078.mkv +狮子合唱团-拯救,http://em.21dtv.com/songs/60131629.mkv +欧阳辉-再见,http://em.21dtv.com/songs/60129321.mkv +安苏羽-左肩,http://em.21dtv.com/songs/60128986.mkv +冯光-知己,http://em.21dtv.com/songs/60127754.mkv +袁娅维-直接,http://em.21dtv.com/songs/60126168.mkv +岩宰仑-再见,http://em.21dtv.com/songs/60124799.mkv +田振达-作家,http://em.21dtv.com/songs/60124299.mkv +小男孩乐团-再见,http://em.21dtv.com/songs/60123853.mkv +王俊凯-再见,http://em.21dtv.com/songs/60121900.mkv +黄胜华-知己,http://em.21dtv.com/songs/60120164.mkv +照明-主角,http://em.21dtv.com/songs/60119788.mkv +孙毅+李元华-知己,http://em.21dtv.com/songs/60119420.mkv +Blady-走近,http://em.21dtv.com/songs/60119107.mkv +兴子-知己,http://em.21dtv.com/songs/60118368.mkv +海阔+冯光-知己,http://em.21dtv.com/songs/60117898.mkv +邓紫棋-再见,http://em.21dtv.com/songs/60117269.mkv +茜拉-再见,http://em.21dtv.com/songs/60117166.mkv +张伟-证据,http://em.21dtv.com/songs/60115899.mkv +张鹏华邵-再见,http://em.21dtv.com/songs/60115170.mkv +小虎队-再见,http://em.21dtv.com/songs/60115111.mkv +英智-走近,http://em.21dtv.com/songs/60114744.mkv +宋沛江+龙奔-知己,http://em.21dtv.com/songs/60114501.mkv +孙伯纶-直觉,http://em.21dtv.com/songs/60114479.mkv +陈杰瑞-再见,http://em.21dtv.com/songs/60112352.mkv +复活-张军,http://em.21dtv.com/songs/60110106.mkv +任娟-知己,http://em.21dtv.com/songs/60109957.mkv +吕巧一-自己(HD),http://em.21dtv.com/songs/10012723.mkv +李行亮-再见,http://em.21dtv.com/songs/60106958.mkv +金志文-专家,http://em.21dtv.com/songs/60106337.mkv +西单女孩-再见,http://em.21dtv.com/songs/60106271.mkv +慕容伊一-足迹,http://em.21dtv.com/songs/60104157.mkv +崔忠华+张江-直觉,http://em.21dtv.com/songs/60104091.mkv +李克勤-知己,http://em.21dtv.com/songs/60102329.mkv +吕巧一-自己,http://em.21dtv.com/songs/60102021.mkv +梁静茹-直觉,http://em.21dtv.com/songs/60100242.mkv +MR.-再见,http://em.21dtv.com/songs/60099016.mkv +冷静+M.C.A-再见,http://em.21dtv.com/songs/60096689.mkv +龚琳娜-拯救,http://em.21dtv.com/songs/60094783.mkv +成龙+孙楠-拯救,http://em.21dtv.com/songs/60094125.mkv +郑欣宜-直觉,http://em.21dtv.com/songs/60093296.mkv +群星-致敬,http://em.21dtv.com/songs/60093046.mkv +吴淑敏-庄脚,http://em.21dtv.com/songs/60092460.mkv +戴佩妮-之间,http://em.21dtv.com/songs/60091230.mkv +江昆+唐杰忠-着急,http://em.21dtv.com/songs/60090034.mkv +吴新宏-知己,http://em.21dtv.com/songs/60087124.mkv +信-之间,http://em.21dtv.com/songs/60087122.mkv +韦琪-转角,http://em.21dtv.com/songs/60086270.mkv +刘籽辰-证据,http://em.21dtv.com/songs/60081508.mkv +姚贝娜+林育群-自己,http://em.21dtv.com/songs/60081483.mkv +常石磊-自己(演唱会),http://em.21dtv.com/songs/60079725.mkv +麦贝夷-知觉,http://em.21dtv.com/songs/60079599.mkv +李斌豪-知己,http://em.21dtv.com/songs/60079598.mkv +权振东-拯救,http://em.21dtv.com/songs/60079586.mkv +信-再见,http://em.21dtv.com/songs/60079457.mkv +舒淇-再见,http://em.21dtv.com/songs/60079456.mkv +徐海星-自己,http://em.21dtv.com/songs/60070270.mkv +吴若希+许廷铿-知己,http://em.21dtv.com/songs/60067794.mkv +张敬轩-壮举,http://em.21dtv.com/songs/60061911.mkv +五月天-左键,http://em.21dtv.com/songs/60060638.mkv +李圣杰-最近,http://em.21dtv.com/songs/60060341.mkv +李玟-自己,http://em.21dtv.com/songs/60059689.mkv +黄伊汶-自己,http://em.21dtv.com/songs/60059688.mkv +胡元恺-自己,http://em.21dtv.com/songs/60059687.mkv +何炅-自己,http://em.21dtv.com/songs/60059686.mkv +陈好-自己,http://em.21dtv.com/songs/60059685.mkv +螺丝钉-紫结,http://em.21dtv.com/songs/60059646.mkv +童童-转角,http://em.21dtv.com/songs/60059438.mkv +潘玮柏-转机,http://em.21dtv.com/songs/60059436.mkv +佚名-祝捷,http://em.21dtv.com/songs/60059345.mkv +ME2-主角(无原唱),http://em.21dtv.com/songs/60059258.mkv +古巨基-中箭,http://em.21dtv.com/songs/60058973.mkv +王蓝茵+陈威全-中间,http://em.21dtv.com/songs/60058971.mkv +梁静茹-中间,http://em.21dtv.com/songs/60058970.mkv +李玉和-致敬,http://em.21dtv.com/songs/60058836.mkv +刘若英-直接,http://em.21dtv.com/songs/60058739.mkv +周冰倩-直觉,http://em.21dtv.com/songs/60058738.mkv +张信哲-直觉,http://em.21dtv.com/songs/60058737.mkv +许志安-直觉,http://em.21dtv.com/songs/60058736.mkv +同恩-直觉,http://em.21dtv.com/songs/60058735.mkv +赖雅妍-直觉,http://em.21dtv.com/songs/60058734.mkv +黄嘉千-直觉,http://em.21dtv.com/songs/60058733.mkv +芭比-直觉,http://em.21dtv.com/songs/60058732.mkv +SOLER-直觉,http://em.21dtv.com/songs/60058731.mkv +邰正宵+周慧敏-知己,http://em.21dtv.com/songs/60058665.mkv +江蕙-知己,http://em.21dtv.com/songs/60058664.mkv +戴军-知己,http://em.21dtv.com/songs/60058663.mkv +陈随意+吴俊宏-知己,http://em.21dtv.com/songs/60058662.mkv +蔡卓妍-知己,http://em.21dtv.com/songs/60058661.mkv +卜学亮-知己,http://em.21dtv.com/songs/60058660.mkv +张惠妹-知己(演唱会),http://em.21dtv.com/songs/60058659.mkv +杨乃文-证据,http://em.21dtv.com/songs/60058366.mkv +范晓萱-证据(演唱会),http://em.21dtv.com/songs/60058365.mkv +孙楠-拯救,http://em.21dtv.com/songs/60058333.mkv +任贤齐-着紧,http://em.21dtv.com/songs/60057957.mkv +白冰冰-照镜,http://em.21dtv.com/songs/60057732.mkv +晏菲-昭君(演唱会),http://em.21dtv.com/songs/60057654.mkv +刘子千-占据,http://em.21dtv.com/songs/60057455.mkv +郑秀文-再见,http://em.21dtv.com/songs/60056823.mkv +张震岳-再见,http://em.21dtv.com/songs/60056822.mkv +谢安琪-再见,http://em.21dtv.com/songs/60056821.mkv +小虎队-再见,http://em.21dtv.com/songs/60056820.mkv +汪明荃+农夫-再见,http://em.21dtv.com/songs/60056819.mkv +林宇中-再见,http://em.21dtv.com/songs/60056818.mkv +李克勤-再见,http://em.21dtv.com/songs/60056817.mkv +李玖哲-再见,http://em.21dtv.com/songs/60056816.mkv +费翔-再见,http://em.21dtv.com/songs/60056815.mkv +黄凯芹-再见(演唱会),http://em.21dtv.com/songs/60056814.mkv +蔡健雅-再见(演唱会),http://em.21dtv.com/songs/60056813.mkv +窦智孔-再见(无原唱),http://em.21dtv.com/songs/60056812.mkv +ANGELA-再见(无原唱),http://em.21dtv.com/songs/60056811.mkv +卫兰-杂技,http://em.21dtv.com/songs/60056705.mkv +陈瑞-正好,http://em.21dtv.com/songs/60131954.mkv +郑志立-最后,http://em.21dtv.com/songs/60126276.mkv +刘明辉-最好,http://em.21dtv.com/songs/60119300.mkv +脱颖-最后,http://em.21dtv.com/songs/60105313.mkv +李韦-之后,http://em.21dtv.com/songs/60102362.mkv +阿超-长河,http://em.21dtv.com/songs/60096527.mkv +许志豪-再会,http://em.21dtv.com/songs/60096123.mkv +奥杰阿格-招魂,http://em.21dtv.com/songs/60090874.mkv +胡东-盅惑,http://em.21dtv.com/songs/60088491.mkv +文剑-最后,http://em.21dtv.com/songs/60086290.mkv +佟铁鑫-忠魂,http://em.21dtv.com/songs/60081996.mkv +湘雨寒-葬花,http://em.21dtv.com/songs/60080301.mkv +蘑菇团-最后,http://em.21dtv.com/songs/60079776.mkv +陈翔-指环,http://em.21dtv.com/songs/60079629.mkv +刘佳铭-最后,http://em.21dtv.com/songs/60071556.mkv +刀郎-召唤,http://em.21dtv.com/songs/60070235.mkv +容祖儿-正好,http://em.21dtv.com/songs/60069006.mkv +薛凯琪-字花,http://em.21dtv.com/songs/60061917.mkv +陈妤-最好,http://em.21dtv.com/songs/60060141.mkv +ENERGY-最好(演唱会),http://em.21dtv.com/songs/60060140.mkv +杜德伟-走火,http://em.21dtv.com/songs/60059900.mkv +周蕙-周蕙,http://em.21dtv.com/songs/60059179.mkv +谭晶-忠魂,http://em.21dtv.com/songs/60059001.mkv +SPEED-指环,http://em.21dtv.com/songs/60058780.mkv +李克勤-纸婚,http://em.21dtv.com/songs/60058771.mkv +刘依纯-纸花,http://em.21dtv.com/songs/60058770.mkv +淑惠+美娜-只好,http://em.21dtv.com/songs/60058404.mkv +萧亚轩-之后,http://em.21dtv.com/songs/60058378.mkv +林忆莲-震憾(演唱会),http://em.21dtv.com/songs/60058301.mkv +张立基-震撼,http://em.21dtv.com/songs/60058299.mkv +田震-震撼,http://em.21dtv.com/songs/60058298.mkv +唐晓-真好,http://em.21dtv.com/songs/60058127.mkv +5566+太极乐队-着火,http://em.21dtv.com/songs/60057956.mkv +谭维维-召唤,http://em.21dtv.com/songs/60057724.mkv +朴树-召唤,http://em.21dtv.com/songs/60057723.mkv +许慧欣-绽花,http://em.21dtv.com/songs/60057532.mkv +秀兰玛雅-战火,http://em.21dtv.com/songs/60057469.mkv +江蕙-造化(无原唱),http://em.21dtv.com/songs/60057324.mkv +周璇-葬花,http://em.21dtv.com/songs/60057275.mkv +潘秀琼-葬花,http://em.21dtv.com/songs/60057274.mkv +黄秀英-葬花,http://em.21dtv.com/songs/60057273.mkv +萧亚轩-在乎,http://em.21dtv.com/songs/60057056.mkv +谭咏麟-在乎,http://em.21dtv.com/songs/60057055.mkv +伦永亮+叶倩文-在乎,http://em.21dtv.com/songs/60057054.mkv +钟镇涛-在乎(演唱会),http://em.21dtv.com/songs/60057053.mkv +谭咏麟-在乎(演唱会),http://em.21dtv.com/songs/60057052.mkv +苏有朋-在乎(演唱会),http://em.21dtv.com/songs/60057051.mkv +关淑怡-再会(演唱会),http://em.21dtv.com/songs/60056765.mkv +关淑怡-再会(无原唱),http://em.21dtv.com/songs/60056764.mkv +六哲-责怪,http://em.21dtv.com/songs/60134910.mkv +谢和弦+Sea Level-足够,http://em.21dtv.com/songs/60134226.mkv +小峰峰-足够,http://em.21dtv.com/songs/60132387.mkv +品冠-走过,http://em.21dtv.com/songs/60132306.mkv +邓卓轩-资格,http://em.21dtv.com/songs/60130785.mkv +胡斌-赞歌,http://em.21dtv.com/songs/60130673.mkv +田维英-走过,http://em.21dtv.com/songs/60123040.mkv +SNH48-追光,http://em.21dtv.com/songs/60122422.mkv +郭冰倩-追赶,http://em.21dtv.com/songs/60121011.mkv +乌兰图雅-赞歌,http://em.21dtv.com/songs/60116521.mkv +梁海洋-中国,http://em.21dtv.com/songs/60114633.mkv +金达莱花-战歌,http://em.21dtv.com/songs/50000214.mkv +许鹤缤-走过,http://em.21dtv.com/songs/60112239.mkv +李亚飞-战歌,http://em.21dtv.com/songs/60109414.mkv +云裳-罪过,http://em.21dtv.com/songs/60108285.mkv +LUNAR-战歌,http://em.21dtv.com/songs/60104699.mkv +刘秉义-祖国,http://em.21dtv.com/songs/60101983.mkv +程楚煜-追赶,http://em.21dtv.com/songs/60100360.mkv +程楚喻+兰新-追赶,http://em.21dtv.com/songs/60098681.mkv +曹轩宾-追光,http://em.21dtv.com/songs/60096332.mkv +李娜-咱哥,http://em.21dtv.com/songs/60091309.mkv +张江-赞歌,http://em.21dtv.com/songs/60091131.mkv +黄威尔-走过,http://em.21dtv.com/songs/60084612.mkv +一飞-战歌,http://em.21dtv.com/songs/60084525.mkv +刘彩星-走过,http://em.21dtv.com/songs/60081601.mkv +储兰兰-坐宫,http://em.21dtv.com/songs/60079832.mkv +周柏豪-走狗,http://em.21dtv.com/songs/60079743.mkv +杨千嬅-知更,http://em.21dtv.com/songs/60079597.mkv +代理仁-糟糕,http://em.21dtv.com/songs/60068979.mkv +韩琳-中国,http://em.21dtv.com/songs/60066598.mkv +乌兰图雅-赞歌(演唱会),http://em.21dtv.com/songs/60066581.mkv +格格-赞歌,http://em.21dtv.com/songs/60062386.mkv +孟祥萍+毛峰-坐宫,http://em.21dtv.com/songs/60060682.mkv +京剧-坐宫,http://em.21dtv.com/songs/60060681.mkv +蔡小虎-醉过,http://em.21dtv.com/songs/60060493.mkv +谢雷-醉歌,http://em.21dtv.com/songs/60060489.mkv +易欣-罪过,http://em.21dtv.com/songs/60060470.mkv +谢华-罪过,http://em.21dtv.com/songs/60060469.mkv +李翊君-罪过,http://em.21dtv.com/songs/60060468.mkv +汤灿-祖国,http://em.21dtv.com/songs/60059992.mkv +伍思凯-走过,http://em.21dtv.com/songs/60059884.mkv +辛晓琪-走过(演唱会),http://em.21dtv.com/songs/60059883.mkv +叶倩文-烛光,http://em.21dtv.com/songs/60059249.mkv +谢霆锋-烛光,http://em.21dtv.com/songs/60059248.mkv +任贤齐-烛光,http://em.21dtv.com/songs/60059247.mkv +罗百吉-烛光,http://em.21dtv.com/songs/60059246.mkv +阮丹青-忠告,http://em.21dtv.com/songs/60059000.mkv +蓝心湄-忠告(无原唱),http://em.21dtv.com/songs/60058999.mkv +高枫-中国,http://em.21dtv.com/songs/60058864.mkv +陈晓东-质感,http://em.21dtv.com/songs/60058832.mkv +梅艳芳-正歌(演唱会),http://em.21dtv.com/songs/60058348.mkv +李建衡-珍贵,http://em.21dtv.com/songs/60057979.mkv +郑中基-责怪(演唱会),http://em.21dtv.com/songs/60057330.mkv +张嘉洵-赞歌,http://em.21dtv.com/songs/60057270.mkv +佚名-赞歌,http://em.21dtv.com/songs/60057269.mkv +德德玛-赞歌,http://em.21dtv.com/songs/60057268.mkv +齐峰-赞歌(演唱会),http://em.21dtv.com/songs/60057267.mkv +胡松华-赞歌(演唱会),http://em.21dtv.com/songs/60057266.mkv +简弘亦-指缝,http://em.21dtv.com/songs/60127260.mkv +顾莉雅-绽放,http://em.21dtv.com/songs/60126445.mkv +天翔-祝福,http://em.21dtv.com/songs/60125357.mkv +岩罕建-祝福,http://em.21dtv.com/songs/60124828.mkv +郎军-作废,http://em.21dtv.com/songs/60120998.mkv +罗相宜-重复,http://em.21dtv.com/songs/60119881.mkv +赵传-征服,http://em.21dtv.com/songs/60118933.mkv +李晓玉-绽放,http://em.21dtv.com/songs/60112757.mkv +杨坤+王紫凝-征服,http://em.21dtv.com/songs/60111182.mkv +黄凯芹-祝福,http://em.21dtv.com/songs/60106494.mkv +裕丰兄弟-绽放,http://em.21dtv.com/songs/60106270.mkv +音频怪物-追风,http://em.21dtv.com/songs/60104589.mkv +碧娜-绽放,http://em.21dtv.com/songs/60102583.mkv +张赫宣+黑豹乐队-征服,http://em.21dtv.com/songs/60102241.mkv +本兮-战放,http://em.21dtv.com/songs/60100102.mkv +沙宝亮+袁惟仁-征服,http://em.21dtv.com/songs/60098569.mkv +扎西顿珠-祝福(现场版),http://em.21dtv.com/songs/60098399.mkv +傅振辉+高向鹏-重逢,http://em.21dtv.com/songs/60096192.mkv +施文彬-祝福,http://em.21dtv.com/songs/60095571.mkv +郑秀文-战俘,http://em.21dtv.com/songs/60093308.mkv +汪明荃-祝福,http://em.21dtv.com/songs/60092961.mkv +朱桦-重逢,http://em.21dtv.com/songs/60089944.mkv +黄妃+许富凯-祝福,http://em.21dtv.com/songs/60084590.mkv +陈一玲-征服,http://em.21dtv.com/songs/60084549.mkv +梁博+那英+张赫宣+张玮+多亮-征服,http://em.21dtv.com/songs/60084548.mkv +关喆-征服,http://em.21dtv.com/songs/60080155.mkv +黄妃-祝福,http://em.21dtv.com/songs/60079915.mkv +李玲玉-祝福,http://em.21dtv.com/songs/60079680.mkv +方伊琪-祝福(演唱会),http://em.21dtv.com/songs/60079679.mkv +乃木坂46-制服のマネキン,http://em.21dtv.com/songs/60079637.mkv +杨宗纬-征服,http://em.21dtv.com/songs/60079583.mkv +武笑羽-绽放,http://em.21dtv.com/songs/60079525.mkv +忧欢派对-祝福,http://em.21dtv.com/songs/60076228.mkv +BREAKING BENJAMIN-diary of jane,http://em.21dtv.com/songs/60073115.mkv +歌浴森-征服,http://em.21dtv.com/songs/60070241.mkv +洪百慧+林俊吉-煮饭,http://em.21dtv.com/songs/60067809.mkv +潘小芬-绽放(演唱会),http://em.21dtv.com/songs/60067783.mkv +卓雅-绽放,http://em.21dtv.com/songs/60066587.mkv +完玛三智+阿佳组合-重逢(蒙),http://em.21dtv.com/songs/60065495.mkv +易秒英-祝福,http://em.21dtv.com/songs/60063276.mkv +张蓉蓉-醉凤,http://em.21dtv.com/songs/60060488.mkv +张学友-祝福,http://em.21dtv.com/songs/60059307.mkv +张嘉洵-祝福,http://em.21dtv.com/songs/60059306.mkv +佚名-祝福,http://em.21dtv.com/songs/60059305.mkv +叶倩文-祝福,http://em.21dtv.com/songs/60059304.mkv +小凤凤-祝福,http://em.21dtv.com/songs/60059303.mkv +江蕙-祝福,http://em.21dtv.com/songs/60059302.mkv +黄思婷-祝福,http://em.21dtv.com/songs/60059301.mkv +龚秋霞-祝福,http://em.21dtv.com/songs/60059300.mkv +高向鹏+傅振辉-祝福,http://em.21dtv.com/songs/60059299.mkv +范逸臣-祝福,http://em.21dtv.com/songs/60059298.mkv +刀郎-祝福,http://em.21dtv.com/songs/60059297.mkv +陈百潭-祝福,http://em.21dtv.com/songs/60059296.mkv +叶倩文-祝福(演唱会),http://em.21dtv.com/songs/60059295.mkv +辛晓琪+郭子-祝福(演唱会),http://em.21dtv.com/songs/60059294.mkv +齐豫-祝福(演唱会),http://em.21dtv.com/songs/60059293.mkv +梅艳芳+张学友-祝福(演唱会),http://em.21dtv.com/songs/60059292.mkv +零点乐队-祝福(演唱会),http://em.21dtv.com/songs/60059291.mkv +韩磊+朱桦-祝福(演唱会),http://em.21dtv.com/songs/60059290.mkv +郑伊健-重逢,http://em.21dtv.com/songs/60059109.mkv +佚名-重逢,http://em.21dtv.com/songs/60059108.mkv +孙楠+毛阿敏-重逢,http://em.21dtv.com/songs/60059107.mkv +林子祥+叶倩文-重逢,http://em.21dtv.com/songs/60059105.mkv +关淑怡-重逢,http://em.21dtv.com/songs/60059104.mkv +叶倩文-重逢(演唱会),http://em.21dtv.com/songs/60059103.mkv +徐小凤-重逢(演唱会),http://em.21dtv.com/songs/60059102.mkv +谢雷-重逢(演唱会),http://em.21dtv.com/songs/60059101.mkv +崔萍-重逢(演唱会),http://em.21dtv.com/songs/60059100.mkv +谢霆锋-蒸发,http://em.21dtv.com/songs/60058329.mkv +袁惟仁-征服,http://em.21dtv.com/songs/60058321.mkv +游鸿明+凡人-征服,http://em.21dtv.com/songs/60058320.mkv +那英-征服,http://em.21dtv.com/songs/60058319.mkv +柯受良-征服,http://em.21dtv.com/songs/60058318.mkv +林志炫-征服(演唱会),http://em.21dtv.com/songs/60058317.mkv +戴娆-绽放,http://em.21dtv.com/songs/60057529.mkv +5566-绽放,http://em.21dtv.com/songs/60057528.mkv +汪峰-绽放(演唱会),http://em.21dtv.com/songs/60057527.mkv +李健-绽放(演唱会),http://em.21dtv.com/songs/60057526.mkv +黄美珍-左耳,http://em.21dtv.com/songs/60129847.mkv +赵薇-左耳,http://em.21dtv.com/songs/60111418.mkv +白举纲+周笔畅-注定,http://em.21dtv.com/songs/60135589.mkv +汪峰-重叠,http://em.21dtv.com/songs/60121855.mkv +舒晓龙-注定,http://em.21dtv.com/songs/60127322.mkv +小阿鹏-注定,http://em.21dtv.com/songs/60126811.mkv +吴勇滨-注定,http://em.21dtv.com/songs/60122579.mkv +Zia-知道,http://em.21dtv.com/songs/60121318.mkv +程响-终点,http://em.21dtv.com/songs/60119858.mkv +曹惠婷-中毒,http://em.21dtv.com/songs/60112723.mkv +吴勇滨-注定,http://em.21dtv.com/songs/60110923.mkv +林俊杰-转动,http://em.21dtv.com/songs/60106017.mkv +江寒-长大,http://em.21dtv.com/songs/60100258.mkv +周柏豪-着地,http://em.21dtv.com/songs/60099157.mkv +彦妮-中毒,http://em.21dtv.com/songs/60098381.mkv +邰正宵-值得,http://em.21dtv.com/songs/60096778.mkv +杨昭+孙佳-注定,http://em.21dtv.com/songs/60093890.mkv +陈秀雯-震荡,http://em.21dtv.com/songs/60093492.mkv +温岚-主动,http://em.21dtv.com/songs/60091626.mkv +琳琳-战豆,http://em.21dtv.com/songs/60084524.mkv +余天龙+谢莉婷-注定,http://em.21dtv.com/songs/60079678.mkv +李紫涵-注定,http://em.21dtv.com/songs/60079677.mkv +张敬轩-值得,http://em.21dtv.com/songs/60079606.mkv +陈乃荣-长大,http://em.21dtv.com/songs/60074879.mkv +MASTAMIC-长大,http://em.21dtv.com/songs/60071581.mkv +雨儿-注定,http://em.21dtv.com/songs/60070259.mkv +林逸欣-作对,http://em.21dtv.com/songs/60069052.mkv +邹承恩-作对,http://em.21dtv.com/songs/60066625.mkv +王舒-注定,http://em.21dtv.com/songs/60065502.mkv +孙艳-注定,http://em.21dtv.com/songs/60062962.mkv +孟格格-中毒,http://em.21dtv.com/songs/60061903.mkv +罗文-作大,http://em.21dtv.com/songs/60060671.mkv +苏芮-阻挡(无原唱),http://em.21dtv.com/songs/60059990.mkv +林俊杰-转动,http://em.21dtv.com/songs/60059434.mkv +李小璐-转动,http://em.21dtv.com/songs/60059433.mkv +晓玮-注定,http://em.21dtv.com/songs/60059278.mkv +无印良品-注定,http://em.21dtv.com/songs/60059277.mkv +梁汉文-注定,http://em.21dtv.com/songs/60059276.mkv +陈秀文+陈展鹏-注定,http://em.21dtv.com/songs/60059275.mkv +阿伦-注定,http://em.21dtv.com/songs/60059274.mkv +萧蔓萱-注定(无原唱),http://em.21dtv.com/songs/60059273.mkv +王瑞霞-注定(无原唱),http://em.21dtv.com/songs/60059272.mkv +周蕙-终点,http://em.21dtv.com/songs/60059011.mkv +关心妍-终点,http://em.21dtv.com/songs/60059010.mkv +佚名-智斗,http://em.21dtv.com/songs/60058843.mkv +京剧-智斗,http://em.21dtv.com/songs/60058842.mkv +巩汉林+李维康-智斗(演唱会),http://em.21dtv.com/songs/60058841.mkv +郑秀文-值得,http://em.21dtv.com/songs/60058751.mkv +月光星子-值得,http://em.21dtv.com/songs/60058750.mkv +星子-值得,http://em.21dtv.com/songs/60058749.mkv +曹磊-值得,http://em.21dtv.com/songs/60058748.mkv +郑秀文-值得(演唱会),http://em.21dtv.com/songs/60058747.mkv +迪克牛仔-值得(演唱会),http://em.21dtv.com/songs/60058746.mkv +张信哲-知道,http://em.21dtv.com/songs/60058644.mkv +张惠妹-知道,http://em.21dtv.com/songs/60058643.mkv +林汉扬-知道,http://em.21dtv.com/songs/60058642.mkv +郭静-知道,http://em.21dtv.com/songs/60058641.mkv +张韶涵-真的,http://em.21dtv.com/songs/60058079.mkv +孙燕姿-真的(演唱会),http://em.21dtv.com/songs/60058078.mkv +刘芮伊-长大,http://em.21dtv.com/songs/60057568.mkv +草蜢-长大,http://em.21dtv.com/songs/60057567.mkv +AKB48-今度こそエクスタシー,http://em.21dtv.com/songs/60099644.mkv +幂雅-总裁,http://em.21dtv.com/songs/60132419.mkv +苏泽-战场,http://em.21dtv.com/songs/60130685.mkv +田跃君-做操,http://em.21dtv.com/songs/60128256.mkv +王建房-主场,http://em.21dtv.com/songs/60121906.mkv +袁攀+夕落-最初,http://em.21dtv.com/songs/60120939.mkv +Turbo-再次,http://em.21dtv.com/songs/60117504.mkv +金钰儿-贼船,http://em.21dtv.com/songs/60106350.mkv +王祖蓝+何雁诗-忠臣,http://em.21dtv.com/songs/60096735.mkv +林一峰-早晨,http://em.21dtv.com/songs/60096691.mkv +陈万-忠诚,http://em.21dtv.com/songs/60084578.mkv +麦茫+苏成锦-执城,http://em.21dtv.com/songs/60081119.mkv +FRENCH KISS-最初のメール,http://em.21dtv.com/songs/60079770.mkv +渡辺麻友-最初のジャック,http://em.21dtv.com/songs/60079769.mkv +汪峰-忠诚,http://em.21dtv.com/songs/60079658.mkv +黄飞鹏-这次,http://em.21dtv.com/songs/60072789.mkv +尹光-捉虫(演唱会),http://em.21dtv.com/songs/60061916.mkv +谭维维-做错,http://em.21dtv.com/songs/60060696.mkv +张信哲-最初,http://em.21dtv.com/songs/60060126.mkv +赵传-最初(演唱会),http://em.21dtv.com/songs/60060125.mkv +彭佳慧-自从,http://em.21dtv.com/songs/60059666.mkv +周燕君-忠诚,http://em.21dtv.com/songs/60058997.mkv +南方男生-忠诚,http://em.21dtv.com/songs/60058996.mkv +佚名-纸船,http://em.21dtv.com/songs/60058761.mkv +许冠杰-纸船,http://em.21dtv.com/songs/60058760.mkv +龙飘飘-纸船,http://em.21dtv.com/songs/60058759.mkv +王啸坤-征程,http://em.21dtv.com/songs/60058316.mkv +老K-真诚,http://em.21dtv.com/songs/60058072.mkv +龙千玉+翁立友-找巢,http://em.21dtv.com/songs/60057668.mkv +罗百吉-轧车,http://em.21dtv.com/songs/60057420.mkv +五月天-轧车(演唱会),http://em.21dtv.com/songs/60057419.mkv +凤飞飞-早春,http://em.21dtv.com/songs/60057303.mkv +佚名-早春(无原唱),http://em.21dtv.com/songs/60057302.mkv +何炅-早晨,http://em.21dtv.com/songs/60057299.mkv +林忆莲-早晨(演唱会),http://em.21dtv.com/songs/60057298.mkv +赵咏华-早餐,http://em.21dtv.com/songs/60057294.mkv +吴彤-早餐,http://em.21dtv.com/songs/60057293.mkv +吴蕙君-纸笔,http://em.21dtv.com/songs/60135022.mkv +苏振华+洪百慧-作伴,http://em.21dtv.com/songs/60134167.mkv +新街口组合+赵滢-主播,http://em.21dtv.com/songs/60125612.mkv +黄玠-走吧,http://em.21dtv.com/songs/60124751.mkv +廖文强+坏神经乐团-自卑,http://em.21dtv.com/songs/60111849.mkv +廖文强-自卑,http://em.21dtv.com/songs/60104102.mkv +马浚伟-自闭,http://em.21dtv.com/songs/60093517.mkv +彝人制造-准备,http://em.21dtv.com/songs/60091167.mkv +张杰-重播,http://em.21dtv.com/songs/60087822.mkv +詹宇琦-走吧,http://em.21dtv.com/songs/60086279.mkv +乃木坂46-走れbicycle,http://em.21dtv.com/songs/60079742.mkv +西部牛仔-自白,http://em.21dtv.com/songs/60072823.mkv +陈盈洁-做伴,http://em.21dtv.com/songs/60060694.mkv +张国荣-作伴,http://em.21dtv.com/songs/60060669.mkv +王建杰-作伴(无原唱),http://em.21dtv.com/songs/60060668.mkv +杨丞琳-左边,http://em.21dtv.com/songs/60060635.mkv +王珞丹-左边,http://em.21dtv.com/songs/60060634.mkv +苏打绿-左边,http://em.21dtv.com/songs/60060633.mkv +丁小芹-走吧,http://em.21dtv.com/songs/60059857.mkv +吴浩康-自卑,http://em.21dtv.com/songs/60059663.mkv +吴宗宪-自白,http://em.21dtv.com/songs/60059662.mkv +刘嘉玲-装扮(演唱会),http://em.21dtv.com/songs/60059471.mkv +胡蓓蔚-钟摆,http://em.21dtv.com/songs/60059055.mkv +陈坤-争霸,http://em.21dtv.com/songs/60058305.mkv +佚名-赠别,http://em.21dtv.com/songs/60057410.mkv +童唱-赠别,http://em.21dtv.com/songs/60057409.mkv +佚名-暂别,http://em.21dtv.com/songs/60057257.mkv +谭咏麟+雷安娜-暂别,http://em.21dtv.com/songs/60057256.mkv +雷安娜+蒋庆龙-暂别(演唱会),http://em.21dtv.com/songs/60057255.mkv +哈琳-珍爱,http://em.21dtv.com/songs/60135063.mkv +古巨基-最爱,http://em.21dtv.com/songs/60134981.mkv +古巨基-最爱,http://em.21dtv.com/songs/60132273.mkv +王鹏-珍爱,http://em.21dtv.com/songs/60130612.mkv +孙浩-醉爱,http://em.21dtv.com/songs/60125386.mkv +天喜果组合-醉爱,http://em.21dtv.com/songs/60122636.mkv +Biu-稚爱,http://em.21dtv.com/songs/60122348.mkv +张译文-醉爱,http://em.21dtv.com/songs/60120527.mkv +鹿晗-致爱,http://em.21dtv.com/songs/60117401.mkv +朱紫剑-种爱,http://em.21dtv.com/songs/60116892.mkv +张玮-追爱,http://em.21dtv.com/songs/60116799.mkv +钟sir-钟爱,http://em.21dtv.com/songs/60116319.mkv +俞灏明-炙爱,http://em.21dtv.com/songs/60114394.mkv +萧亚轩-窒爱,http://em.21dtv.com/songs/60112918.mkv +汉洋+谭嘉荃-再爱,http://em.21dtv.com/songs/60112052.mkv +甲子慧-最爱,http://em.21dtv.com/songs/60111311.mkv +凌志辉-租爱,http://em.21dtv.com/songs/60110010.mkv +闫强-罪爱,http://em.21dtv.com/songs/60109672.mkv +孔雀哥哥-葬爱,http://em.21dtv.com/songs/60106765.mkv +陈青青-真爱,http://em.21dtv.com/songs/60102906.mkv +杨哲+谢宜君-真爱,http://em.21dtv.com/songs/60098504.mkv +哈琳-珍爱,http://em.21dtv.com/songs/60096753.mkv +李浪-挚爱,http://em.21dtv.com/songs/60096345.mkv +林志颖-挚爱,http://em.21dtv.com/songs/60094559.mkv +刘心-最爱,http://em.21dtv.com/songs/60094416.mkv +动力火车-挚爱,http://em.21dtv.com/songs/60090748.mkv +刘若英-左岸,http://em.21dtv.com/songs/60087423.mkv +刘金龙-葬爱,http://em.21dtv.com/songs/60086212.mkv +李祥祥-最爱,http://em.21dtv.com/songs/60081069.mkv +吴炜-最爱,http://em.21dtv.com/songs/60079766.mkv +刘牧-真爱,http://em.21dtv.com/songs/60079567.mkv +高胜美-真爱,http://em.21dtv.com/songs/60079566.mkv +蔡小虎+林姗-藏爱,http://em.21dtv.com/songs/60074839.mkv +郑嘉嘉-最爱,http://em.21dtv.com/songs/60071554.mkv +沈芳如-真爱,http://em.21dtv.com/songs/60070239.mkv +酒井美子-最爱,http://em.21dtv.com/songs/60069039.mkv +凌志辉-租爱,http://em.21dtv.com/songs/60069037.mkv +石梅-追爱,http://em.21dtv.com/songs/60066606.mkv +薛佩洁-真爱,http://em.21dtv.com/songs/60065477.mkv +阿悄-自爱,http://em.21dtv.com/songs/60061918.mkv +刘德华-左岸,http://em.21dtv.com/songs/60060629.mkv +米娜-醉爱(演唱会),http://em.21dtv.com/songs/60060482.mkv +周蕙-最爱,http://em.21dtv.com/songs/60060061.mkv +周冰倩-最爱,http://em.21dtv.com/songs/60060060.mkv +许景淳-最爱,http://em.21dtv.com/songs/60060059.mkv +苏永康-最爱,http://em.21dtv.com/songs/60060058.mkv +潘越云-最爱,http://em.21dtv.com/songs/60060057.mkv +满江-最爱,http://em.21dtv.com/songs/60060056.mkv +凌志辉-最爱,http://em.21dtv.com/songs/60060055.mkv +黄思婷-最爱,http://em.21dtv.com/songs/60060054.mkv +黄立成-最爱,http://em.21dtv.com/songs/60060053.mkv +白松(皇子)-最爱,http://em.21dtv.com/songs/60060052.mkv +阿正-最爱,http://em.21dtv.com/songs/60060051.mkv +周慧敏-最爱(演唱会),http://em.21dtv.com/songs/60060050.mkv +许志安-最爱(演唱会),http://em.21dtv.com/songs/60060049.mkv +齐豫-最爱(演唱会),http://em.21dtv.com/songs/60060048.mkv +黄凯芹-最爱(演唱会),http://em.21dtv.com/songs/60060047.mkv +孙耀威-自爱,http://em.21dtv.com/songs/60059661.mkv +张靓颖-追爱,http://em.21dtv.com/songs/60059503.mkv +蓝雨-追爱,http://em.21dtv.com/songs/60059502.mkv +黄思婷-追爱,http://em.21dtv.com/songs/60059501.mkv +方力申+邓丽欣-重爱,http://em.21dtv.com/songs/60059090.mkv +陈百强-至爱,http://em.21dtv.com/songs/60058792.mkv +张学友-真爱,http://em.21dtv.com/songs/60058028.mkv +夏雪飞-真爱,http://em.21dtv.com/songs/60058027.mkv +罗百吉-真爱,http://em.21dtv.com/songs/60058026.mkv +183CLUB-真爱,http://em.21dtv.com/songs/60058025.mkv +于冠华-真爱(无原唱),http://em.21dtv.com/songs/60058024.mkv +沈建祥-珍爱,http://em.21dtv.com/songs/60057976.mkv +陈星-珍爱,http://em.21dtv.com/songs/60057975.mkv +RAIN-珍爱,http://em.21dtv.com/songs/60057974.mkv +廖士贤-找爱,http://em.21dtv.com/songs/60057657.mkv +范晓萱-找爱,http://em.21dtv.com/songs/60057656.mkv +谭咏麟+A Lin-游子,http://em.21dtv.com/songs/60135759.mkv +吴陌川-永驻,http://em.21dtv.com/songs/60135039.mkv +吴映洁-一直,http://em.21dtv.com/songs/60131257.mkv +林鸿鸣-原罪,http://em.21dtv.com/songs/60130487.mkv +刘旭阳-余罪,http://em.21dtv.com/songs/60125196.mkv +江卓权-野子,http://em.21dtv.com/songs/60124186.mkv +徐子崴-野子,http://em.21dtv.com/songs/60119574.mkv +张越-野子,http://em.21dtv.com/songs/60119548.mkv +吴曼乔-雨坠,http://em.21dtv.com/songs/60118447.mkv +苏运莹-野子,http://em.21dtv.com/songs/60118868.mkv +胡斌-燕子,http://em.21dtv.com/songs/60117141.mkv +安侒-烟妆,http://em.21dtv.com/songs/60116722.mkv +马可谦-燕子,http://em.21dtv.com/songs/60116389.mkv +古振邦+李文豪-叶子,http://em.21dtv.com/songs/60114435.mkv +沙宝亮-野子,http://em.21dtv.com/songs/60113799.mkv +喜公公-原罪,http://em.21dtv.com/songs/60113358.mkv +美女主播-叶子,http://em.21dtv.com/songs/60111352.mkv +刘涛-胭脂(HD),http://em.21dtv.com/songs/10012710.mkv +刘炫颉-影子,http://em.21dtv.com/songs/60108348.mkv +张智成-叶子,http://em.21dtv.com/songs/60103278.mkv +沈依莎-叶子,http://em.21dtv.com/songs/60098554.mkv +如夏-影子,http://em.21dtv.com/songs/60096834.mkv +沈伊莎-叶子,http://em.21dtv.com/songs/60096670.mkv +方瑞娥-要知,http://em.21dtv.com/songs/60095555.mkv +王泓漓-影子,http://em.21dtv.com/songs/60094233.mkv +李芝芬-狱中,http://em.21dtv.com/songs/60091368.mkv +范潇匀-燕子,http://em.21dtv.com/songs/60086089.mkv +萱萱-叶子,http://em.21dtv.com/songs/60081557.mkv +加藤ミリヤ-勇者たち,http://em.21dtv.com/songs/60079251.mkv +侧田-硬仗,http://em.21dtv.com/songs/60079229.mkv +薛恒泰-影子,http://em.21dtv.com/songs/60079225.mkv +王筝-影子,http://em.21dtv.com/songs/60079224.mkv +陈明恩-异种,http://em.21dtv.com/songs/60079186.mkv +郁可唯-一直,http://em.21dtv.com/songs/60072720.mkv +吴琼-影子,http://em.21dtv.com/songs/60070171.mkv +誓言-影子,http://em.21dtv.com/songs/60062914.mkv +朴文哲-云舟,http://em.21dtv.com/songs/60056685.mkv +林峰-原罪(演唱会),http://em.21dtv.com/songs/60056028.mkv +洪荣宏-郁卒(无原唱),http://em.21dtv.com/songs/60055797.mkv +豪记大对唱-雨中,http://em.21dtv.com/songs/60055740.mkv +ZAYIN-宇宙,http://em.21dtv.com/songs/60055611.mkv +张敬轩-馀震,http://em.21dtv.com/songs/60055535.mkv +张敬轩-余震,http://em.21dtv.com/songs/60055513.mkv +张敬轩-余震(演唱会),http://em.21dtv.com/songs/60055512.mkv +赵颂茹-柚子,http://em.21dtv.com/songs/60055486.mkv +郑中基-有种,http://em.21dtv.com/songs/60055411.mkv +王杰-影子,http://em.21dtv.com/songs/60054540.mkv +王菲-影子,http://em.21dtv.com/songs/60054539.mkv +潘晓峰-影子,http://em.21dtv.com/songs/60054538.mkv +刘沁-影子,http://em.21dtv.com/songs/60054537.mkv +李玖哲-影子,http://em.21dtv.com/songs/60054536.mkv +凤飞飞-驿站,http://em.21dtv.com/songs/60054175.mkv +任剑辉-忆主,http://em.21dtv.com/songs/60054132.mkv +詹雅雯-姨仔,http://em.21dtv.com/songs/60054034.mkv +许茹芸-一直,http://em.21dtv.com/songs/60053902.mkv +王筝-一直,http://em.21dtv.com/songs/60053901.mkv +范逸臣-一直(无原唱),http://em.21dtv.com/songs/60053900.mkv +王菲-夜妆,http://em.21dtv.com/songs/60052706.mkv +李艳-叶子,http://em.21dtv.com/songs/60052515.mkv +龚天齐-叶子,http://em.21dtv.com/songs/60052514.mkv +陈琳-叶子,http://em.21dtv.com/songs/60052513.mkv +阿桑-叶子,http://em.21dtv.com/songs/60052512.mkv +羽泉-叶子(演唱会),http://em.21dtv.com/songs/60052511.mkv +何维健-咬字,http://em.21dtv.com/songs/60052347.mkv +张韶涵-样子,http://em.21dtv.com/songs/60052236.mkv +阎维文-燕子,http://em.21dtv.com/songs/60052146.mkv +童唱-燕子,http://em.21dtv.com/songs/60052145.mkv +陈慧琳-严重(演唱会),http://em.21dtv.com/songs/60052011.mkv +高向鹏-胭脂,http://em.21dtv.com/songs/60051920.mkv +黄思婷-胭脂(无原唱),http://em.21dtv.com/songs/60051919.mkv +卓依婷-鸭子,http://em.21dtv.com/songs/60051873.mkv +苏慧伦-鸭子,http://em.21dtv.com/songs/60051872.mkv +龙千玉-胭脂,http://em.21dtv.com/songs/60001611.mkv +不给糖就捣蛋的暴走萝莉-演员,http://em.21dtv.com/songs/60127697.mkv +住冈梨奈-言叶にしたいんだ,http://em.21dtv.com/songs/60099743.mkv +许佳慧-药引,http://em.21dtv.com/songs/60135732.mkv +薛之谦-演员,http://em.21dtv.com/songs/60135714.mkv +苏阳-演员,http://em.21dtv.com/songs/60135677.mkv +张靓颖-永远,http://em.21dtv.com/songs/60135255.mkv +小旭PRO-悠悠,http://em.21dtv.com/songs/60135137.mkv +Twins-有约,http://em.21dtv.com/songs/60134814.mkv +蒋蒋-庸医,http://em.21dtv.com/songs/60134188.mkv +康姆士乐团-一样,http://em.21dtv.com/songs/60132427.mkv +吴业坤-演员,http://em.21dtv.com/songs/60132281.mkv +李美-月影,http://em.21dtv.com/songs/60130433.mkv +原子霏-原野,http://em.21dtv.com/songs/60130155.mkv +傅振辉+邓咏家-姻缘,http://em.21dtv.com/songs/60128801.mkv +门丽-一夜,http://em.21dtv.com/songs/60127526.mkv +周佩英-英英,http://em.21dtv.com/songs/60126708.mkv +徐嘉谟-樱约,http://em.21dtv.com/songs/60125563.mkv +陈以桐+ALISA GALPER-演员,http://em.21dtv.com/songs/60124607.mkv +薛之谦-演员,http://em.21dtv.com/songs/60124443.mkv +刘力豪-压抑,http://em.21dtv.com/songs/60123671.mkv +张秀卿-原因,http://em.21dtv.com/songs/60121664.mkv +冷漠-永远,http://em.21dtv.com/songs/60121408.mkv +马丽-姻缘,http://em.21dtv.com/songs/60119058.mkv +杨乐-云烟,http://em.21dtv.com/songs/60118699.mkv +梁博-拥有,http://em.21dtv.com/songs/60116066.mkv +薛之谦-演员,http://em.21dtv.com/songs/60112219.mkv +阮明杰-隐隐,http://em.21dtv.com/songs/60111473.mkv +扎西顿+乌兰图雅-月夜,http://em.21dtv.com/songs/60110231.mkv +布仁巴雅尔-月夜,http://em.21dtv.com/songs/60110172.mkv +乌兰图雅+扎西顿珠-月夜,http://em.21dtv.com/songs/60109938.mkv +丁紫-越狱,http://em.21dtv.com/songs/60109920.mkv +SOLER-一样,http://em.21dtv.com/songs/60109889.mkv +北七乐团-永远(HD),http://em.21dtv.com/songs/10012714.mkv +梁小丹-夜雨,http://em.21dtv.com/songs/60109468.mkv +君子-永远,http://em.21dtv.com/songs/60105688.mkv +蔡昕彤-雨夜,http://em.21dtv.com/songs/60105342.mkv +林凡-艳遇,http://em.21dtv.com/songs/60104241.mkv +钟子炫-雨衣,http://em.21dtv.com/songs/60102835.mkv +栋梁-夜莺,http://em.21dtv.com/songs/60102405.mkv +邹薇-月夜,http://em.21dtv.com/songs/60101528.mkv +张靓颖-永远,http://em.21dtv.com/songs/60100867.mkv +北七乐团-永远,http://em.21dtv.com/songs/60100779.mkv +杨蔺-遥远,http://em.21dtv.com/songs/60096825.mkv +光良-拥有,http://em.21dtv.com/songs/60096729.mkv +望海高歌-邀月,http://em.21dtv.com/songs/60094138.mkv +赵学而-压抑(无原唱),http://em.21dtv.com/songs/60093223.mkv +唐朝乐队-演义,http://em.21dtv.com/songs/60090860.mkv +丁维伟-友谊,http://em.21dtv.com/songs/60087070.mkv +晨熙-越狱,http://em.21dtv.com/songs/60086195.mkv +敏敏+吴超-雨缘,http://em.21dtv.com/songs/60086173.mkv +湘佛莲-雨忆,http://em.21dtv.com/songs/60086172.mkv +曲儿-烟雨,http://em.21dtv.com/songs/60084316.mkv +BODYROX+LUCIANA-yeah yeah,http://em.21dtv.com/songs/60082406.mkv +张恒远-咿呦,http://em.21dtv.com/songs/60081593.mkv +AKB48-永远プレッシャー,http://em.21dtv.com/songs/60079238.mkv +林宥嘉-拥有,http://em.21dtv.com/songs/60079233.mkv +ピコ-桜音,http://em.21dtv.com/songs/60079215.mkv +尚裘峰-艳遇,http://em.21dtv.com/songs/60079015.mkv +WILLY MOON-yeah yeah,http://em.21dtv.com/songs/60074171.mkv +刘嘉亮-越狱,http://em.21dtv.com/songs/60072773.mkv +郑靖文-寓言(演唱会),http://em.21dtv.com/songs/60072758.mkv +九江天空-月晕,http://em.21dtv.com/songs/60071487.mkv +小5-夜雨,http://em.21dtv.com/songs/60070131.mkv +陈冠希-谣言,http://em.21dtv.com/songs/60070120.mkv +后羿-一样,http://em.21dtv.com/songs/60068921.mkv +余毅-拥有,http://em.21dtv.com/songs/60067724.mkv +赵小兵-越狱,http://em.21dtv.com/songs/60066568.mkv +樊凡-雨衣,http://em.21dtv.com/songs/60066548.mkv +BENI-永远,http://em.21dtv.com/songs/60066537.mkv +陆锋-月夜,http://em.21dtv.com/songs/60065438.mkv +小峤-夜雨,http://em.21dtv.com/songs/60063149.mkv +海浪-愿意,http://em.21dtv.com/songs/60062418.mkv +BEYONC?-1+1,http://em.21dtv.com/songs/60061960.mkv +官恩娜-依依,http://em.21dtv.com/songs/60061832.mkv +巴郎百川-云游,http://em.21dtv.com/songs/60056678.mkv +小柯-越狱,http://em.21dtv.com/songs/60056628.mkv +郑希怡-月圆,http://em.21dtv.com/songs/60056545.mkv +高向鹏+林良欢+唐俪-月圆,http://em.21dtv.com/songs/60056544.mkv +吴春燕-月圆(无原唱),http://em.21dtv.com/songs/60056543.mkv +徐秋菊-月夜,http://em.21dtv.com/songs/60056523.mkv +斯琴马特-月夜,http://em.21dtv.com/songs/60056522.mkv +刘德华-愿意,http://em.21dtv.com/songs/60056230.mkv +林宇中-远远,http://em.21dtv.com/songs/60056163.mkv +王凯骏-缘崖,http://em.21dtv.com/songs/60056114.mkv +纪炎炎-原因,http://em.21dtv.com/songs/60056027.mkv +韩红-原野,http://em.21dtv.com/songs/60056023.mkv +陈茂丰+甲子蕙-鸳鸯,http://em.21dtv.com/songs/60055883.mkv +张韶涵-寓言,http://em.21dtv.com/songs/60055870.mkv +张韶涵-寓言(演唱会),http://em.21dtv.com/songs/60055869.mkv +容祖儿+张信哲-寓言(演唱会),http://em.21dtv.com/songs/60055868.mkv +周蕙-预言,http://em.21dtv.com/songs/60055814.mkv +舒舒-预言,http://em.21dtv.com/songs/60055813.mkv +黄立行-预言,http://em.21dtv.com/songs/60055812.mkv +范文芳+张宇-预言,http://em.21dtv.com/songs/60055811.mkv +黄品源-雨衣,http://em.21dtv.com/songs/60055738.mkv +阿杜-雨衣,http://em.21dtv.com/songs/60055737.mkv +黄品源-雨衣(演唱会),http://em.21dtv.com/songs/60055736.mkv +天漠胡杨-雨夜,http://em.21dtv.com/songs/60055718.mkv +陈琳-雨夜,http://em.21dtv.com/songs/60055717.mkv +BUDDY-雨颜,http://em.21dtv.com/songs/60055716.mkv +佚名-有缘,http://em.21dtv.com/songs/60055386.mkv +胡杏儿+郑嘉颖-有意,http://em.21dtv.com/songs/60055382.mkv +李春波-友谊,http://em.21dtv.com/songs/60055072.mkv +洪雪飞-游园,http://em.21dtv.com/songs/60055033.mkv +佚名-游泳,http://em.21dtv.com/songs/60055030.mkv +陶晶莹-游泳,http://em.21dtv.com/songs/60055029.mkv +郑秀文-犹豫,http://em.21dtv.com/songs/60054982.mkv +谢霆锋-犹豫,http://em.21dtv.com/songs/60054981.mkv +JELLY BEAN-犹豫,http://em.21dtv.com/songs/60054980.mkv +郑秀文-忧郁,http://em.21dtv.com/songs/60054956.mkv +叶倩文-永远,http://em.21dtv.com/songs/60054662.mkv +辛晓琪-永远,http://em.21dtv.com/songs/60054661.mkv +孙燕姿-永远,http://em.21dtv.com/songs/60054660.mkv +林晓培-永远,http://em.21dtv.com/songs/60054659.mkv +郭峰-永远,http://em.21dtv.com/songs/60054658.mkv +BOA-永远,http://em.21dtv.com/songs/60054657.mkv +小虎队-永远(演唱会),http://em.21dtv.com/songs/60054656.mkv +孙燕姿-永远(演唱会),http://em.21dtv.com/songs/60054655.mkv +东方二重唱-永远(无原唱),http://em.21dtv.com/songs/60054654.mkv +任贤齐-永夜,http://em.21dtv.com/songs/60054652.mkv +周传雄-永夜(演唱会),http://em.21dtv.com/songs/60054651.mkv +张学友-拥有,http://em.21dtv.com/songs/60054604.mkv +何嘉莉-拥有,http://em.21dtv.com/songs/60054603.mkv +张学友-拥有(演唱会),http://em.21dtv.com/songs/60054602.mkv +莫文蔚-隐隐,http://em.21dtv.com/songs/60054391.mkv +张瑶-姻缘,http://em.21dtv.com/songs/60054334.mkv +李仙姬-姻缘,http://em.21dtv.com/songs/60054333.mkv +胡彦斌-宜言,http://em.21dtv.com/songs/60054033.mkv +刘美君-依依,http://em.21dtv.com/songs/60054015.mkv +刘美君-依依(演唱会),http://em.21dtv.com/songs/60054014.mkv +SHINE-一一,http://em.21dtv.com/songs/60053849.mkv +黄耀明-一一(演唱会),http://em.21dtv.com/songs/60053848.mkv +达明一派+谢霆锋-一一(演唱会),http://em.21dtv.com/songs/60053847.mkv +刘珺儿-夜怨,http://em.21dtv.com/songs/60052700.mkv +草蜢-夜语,http://em.21dtv.com/songs/60052699.mkv +阮筱芬-夜游,http://em.21dtv.com/songs/60052692.mkv +米娜-夜艳,http://em.21dtv.com/songs/60052669.mkv +曹格-爷爷,http://em.21dtv.com/songs/60052416.mkv +黄中原-遥远,http://em.21dtv.com/songs/60052315.mkv +张学友-摇瑶,http://em.21dtv.com/songs/60052300.mkv +萧亚轩-艳遇,http://em.21dtv.com/songs/60052122.mkv +陈秀雯-艳阳,http://em.21dtv.com/songs/60052119.mkv +陈秀雯-艳阳(演唱会),http://em.21dtv.com/songs/60052118.mkv +刘浩龙-眼缘(演唱会),http://em.21dtv.com/songs/60052099.mkv +YUMMY-yummy yummy,http://em.21dtv.com/songs/60006631.mkv +钟舒漫+王君馨-隐型,http://em.21dtv.com/songs/60134362.mkv +刺客先生-英雄,http://em.21dtv.com/songs/60133422.mkv +孙良吉-也许,http://em.21dtv.com/songs/60132362.mkv +刺客先生-英雄,http://em.21dtv.com/songs/60132260.mkv +刘浩宇-也许,http://em.21dtv.com/songs/60132248.mkv +席文静-咏雪,http://em.21dtv.com/songs/60129040.mkv +于清龙-演戏,http://em.21dtv.com/songs/60127720.mkv +群星-延续,http://em.21dtv.com/songs/60124358.mkv +玛啡因乐团-晕眩,http://em.21dtv.com/songs/60124296.mkv +周杰伦-英雄,http://em.21dtv.com/songs/60123762.mkv +金桢勋-英雄,http://em.21dtv.com/songs/60121031.mkv +周杰伦-英雄,http://em.21dtv.com/songs/60120411.mkv +张越-英雄,http://em.21dtv.com/songs/60119547.mkv +昊麟-用心,http://em.21dtv.com/songs/60118629.mkv +Dears-也许,http://em.21dtv.com/songs/60118251.mkv +香香-牙仙,http://em.21dtv.com/songs/60117380.mkv +王子-也许,http://em.21dtv.com/songs/60116136.mkv +寒香-也许,http://em.21dtv.com/songs/60115867.mkv +沈建豪-用心,http://em.21dtv.com/songs/60113790.mkv +乔任梁-圆心,http://em.21dtv.com/songs/60113232.mkv +何晟铭-英雄,http://em.21dtv.com/songs/60112501.mkv +风采轮+荒山亮-英雄,http://em.21dtv.com/songs/60110684.mkv +黄初用-雨巷,http://em.21dtv.com/songs/60108180.mkv +川子-英雄,http://em.21dtv.com/songs/60106803.mkv +吴雨霏-艳羡,http://em.21dtv.com/songs/60106692.mkv +尹航-也许,http://em.21dtv.com/songs/60105785.mkv +周显-英雄,http://em.21dtv.com/songs/60103158.mkv +刘琪-英雄,http://em.21dtv.com/songs/60103123.mkv +秦御峰-英雄,http://em.21dtv.com/songs/60100350.mkv +基地小虎-也许,http://em.21dtv.com/songs/60099896.mkv +谢雷-英雄,http://em.21dtv.com/songs/60098775.mkv +王乃恩-演戏,http://em.21dtv.com/songs/60096831.mkv +汪定中-音雄,http://em.21dtv.com/songs/60096765.mkv +3.D.B 三吨半-英雄,http://em.21dtv.com/songs/60096731.mkv +杨乃文-异象,http://em.21dtv.com/songs/60096705.mkv +咏峰-英雄,http://em.21dtv.com/songs/60096060.mkv +周蕙-隐形,http://em.21dtv.com/songs/60089751.mkv +周强-鹰翔,http://em.21dtv.com/songs/60089216.mkv +张可儿-雨巷,http://em.21dtv.com/songs/60087079.mkv +马常宝-雨巷,http://em.21dtv.com/songs/60084464.mkv +林少纬-英雄,http://em.21dtv.com/songs/60084408.mkv +雷有辉-印象(演唱会),http://em.21dtv.com/songs/60084407.mkv +张祥洪-也许,http://em.21dtv.com/songs/60084332.mkv +SEE-SAW-あんなに一绪だったのに,http://em.21dtv.com/songs/60082425.mkv +[Group] +groupName=十六万歌曲MV等 - 18 +林子娟-有心,http://em.21dtv.com/songs/60079300.mkv +汪峰-英雄,http://em.21dtv.com/songs/60079211.mkv +蓝雨+一龙+徐琰+王洪祥-英雄,http://em.21dtv.com/songs/60079210.mkv +陈柏宇-一休,http://em.21dtv.com/songs/60079157.mkv +郭峰-远行,http://em.21dtv.com/songs/60072768.mkv +云鸽李霞-雨心,http://em.21dtv.com/songs/60072755.mkv +苏醒-英雄,http://em.21dtv.com/songs/60071445.mkv +林忆莲-也许,http://em.21dtv.com/songs/60071405.mkv +伊人佳人组合-雨巷,http://em.21dtv.com/songs/60068948.mkv +慕容晓晓-原形,http://em.21dtv.com/songs/60065415.mkv +青稞荞麦-游戏,http://em.21dtv.com/songs/60062835.mkv +蔡枫华-也许(演唱会),http://em.21dtv.com/songs/60061803.mkv +四分卫-晕眩,http://em.21dtv.com/songs/60056638.mkv +林志炫-晕眩,http://em.21dtv.com/songs/60056637.mkv +李宗盛-远行,http://em.21dtv.com/songs/60056149.mkv +潘玮柏-圆心,http://em.21dtv.com/songs/60056041.mkv +江涛-雨巷,http://em.21dtv.com/songs/60055714.mkv +郭燕-雨巷,http://em.21dtv.com/songs/60055713.mkv +苏永康+田震-有心,http://em.21dtv.com/songs/60055340.mkv +古巨基-有心,http://em.21dtv.com/songs/60055339.mkv +范振锋+张玉珊-有心,http://em.21dtv.com/songs/60055338.mkv +张栋梁-游戏,http://em.21dtv.com/songs/60055020.mkv +苏永康-游戏,http://em.21dtv.com/songs/60055019.mkv +丁小芹-游戏,http://em.21dtv.com/songs/60055018.mkv +MICHAEL孙+CORY LEYX-游戏,http://em.21dtv.com/songs/60055017.mkv +蟑螂乐队-游戏(无原唱),http://em.21dtv.com/songs/60055016.mkv +龙千玉-用心,http://em.21dtv.com/songs/60054903.mkv +陈黎明-用心,http://em.21dtv.com/songs/60054902.mkv +ZIP发射乐团-用心,http://em.21dtv.com/songs/60054901.mkv +游鸿明-英雄,http://em.21dtv.com/songs/60054422.mkv +信乐团-英雄,http://em.21dtv.com/songs/60054421.mkv +吴奇隆-英雄,http://em.21dtv.com/songs/60054420.mkv +王菲-英雄,http://em.21dtv.com/songs/60054419.mkv +宋祖英-英雄,http://em.21dtv.com/songs/60054418.mkv +尚桐-英雄,http://em.21dtv.com/songs/60054417.mkv +曲佑良-英雄,http://em.21dtv.com/songs/60054416.mkv +黄西田-英雄,http://em.21dtv.com/songs/60054415.mkv +丁于-英雄,http://em.21dtv.com/songs/60054414.mkv +许冠杰-印象,http://em.21dtv.com/songs/60054399.mkv +杜德伟-印象,http://em.21dtv.com/songs/60054398.mkv +关淑怡-印象(演唱会),http://em.21dtv.com/songs/60054397.mkv +香香-吟香,http://em.21dtv.com/songs/60054336.mkv +杨黎苏-夜袭,http://em.21dtv.com/songs/60052667.mkv +熊天平+黄慧文-野心,http://em.21dtv.com/songs/60052497.mkv +赵默-也许,http://em.21dtv.com/songs/60052435.mkv +佚名-也许,http://em.21dtv.com/songs/60052434.mkv +徐良-也许,http://em.21dtv.com/songs/60052433.mkv +童星-也许,http://em.21dtv.com/songs/60052432.mkv +蜜雪薇琪-也许,http://em.21dtv.com/songs/60052431.mkv +何家劲-也许,http://em.21dtv.com/songs/60052430.mkv +LINDA-也许,http://em.21dtv.com/songs/60052429.mkv +张艾嘉-也许(无原唱),http://em.21dtv.com/songs/60052428.mkv +容祖儿-烟霞,http://em.21dtv.com/songs/60051987.mkv +容祖儿-烟霞(演唱会),http://em.21dtv.com/songs/60051986.mkv +陈中+董育君-愿望,http://em.21dtv.com/songs/60135893.mkv +左成-壹物,http://em.21dtv.com/songs/60135173.mkv +伦桑-意外,http://em.21dtv.com/songs/60134881.mkv +龙影云-遥望,http://em.21dtv.com/songs/60133153.mkv +刘承峰-意外,http://em.21dtv.com/songs/60128826.mkv +洛天依-夜舞,http://em.21dtv.com/songs/60127166.mkv +曲丹-遥望,http://em.21dtv.com/songs/60122800.mkv +张成力-以为,http://em.21dtv.com/songs/60121652.mkv +王蓉+信乐团-叶问,http://em.21dtv.com/songs/60119829.mkv +信乐团+王蓉-叶问,http://em.21dtv.com/songs/60119265.mkv +王蓉+老猫+杨望-叶问,http://em.21dtv.com/songs/60117928.mkv +王璐-遥望,http://em.21dtv.com/songs/60117924.mkv +李娅莎-渔网,http://em.21dtv.com/songs/60111965.mkv +冯晓荣-远望,http://em.21dtv.com/songs/60109169.mkv +崔斌-欲望,http://em.21dtv.com/songs/60099211.mkv +杨乃文-鹦鹉,http://em.21dtv.com/songs/60096838.mkv +许廷铿-遗物,http://em.21dtv.com/songs/60094688.mkv +薛之谦-意外,http://em.21dtv.com/songs/60094685.mkv +孔金照-余温,http://em.21dtv.com/songs/60094047.mkv +无名-愚味,http://em.21dtv.com/songs/60087924.mkv +张祥洪-遗忘,http://em.21dtv.com/songs/60084387.mkv +WHITE TOWN-your woman,http://em.21dtv.com/songs/60082422.mkv +唯嘉-疑问,http://em.21dtv.com/songs/60082011.mkv +天悦-愿望,http://em.21dtv.com/songs/60079998.mkv +苏打绿-燕窝,http://em.21dtv.com/songs/60079019.mkv +赵丹-以为,http://em.21dtv.com/songs/60071438.mkv +吕雯-意外,http://em.21dtv.com/songs/60070163.mkv +林依婷-意外,http://em.21dtv.com/songs/60070162.mkv +杨洋-遗忘,http://em.21dtv.com/songs/60070157.mkv +魏新雨-遗忘,http://em.21dtv.com/songs/60065361.mkv +王珺-愿望,http://em.21dtv.com/songs/60061862.mkv +杨丞琳-仰望,http://em.21dtv.com/songs/60061800.mkv +永邦-愿望,http://em.21dtv.com/songs/60056223.mkv +吴文煜-愿望,http://em.21dtv.com/songs/60056222.mkv +胡彦斌-愿望,http://em.21dtv.com/songs/60056221.mkv +方婉真-愿望,http://em.21dtv.com/songs/60056220.mkv +佚名-愿望(无原唱),http://em.21dtv.com/songs/60056219.mkv +陈升-鱼丸,http://em.21dtv.com/songs/60055532.mkv +易欣-余味,http://em.21dtv.com/songs/60055506.mkv +王介安-有我,http://em.21dtv.com/songs/60055324.mkv +蔡依林-由我,http://em.21dtv.com/songs/60054973.mkv +苏慧伦-因为,http://em.21dtv.com/songs/60054211.mkv +范晓萱-因为,http://em.21dtv.com/songs/60054210.mkv +范玮琪-因为,http://em.21dtv.com/songs/60054209.mkv +陈好-因为,http://em.21dtv.com/songs/60054208.mkv +陶莉萍-以为,http://em.21dtv.com/songs/60054090.mkv +小娴-以为(无原唱),http://em.21dtv.com/songs/60054089.mkv +辛晓琪-遗忘,http://em.21dtv.com/songs/60054061.mkv +明道+祝钒刚+黄玉荣-遗忘,http://em.21dtv.com/songs/60054060.mkv +183CLUB-遗忘,http://em.21dtv.com/songs/60054059.mkv +郭富城-一晚,http://em.21dtv.com/songs/60053746.mkv +邓丽君-夜雾,http://em.21dtv.com/songs/60052662.mkv +卓依婷-夜舞,http://em.21dtv.com/songs/60052661.mkv +张敬轩-遥吻(演唱会),http://em.21dtv.com/songs/60052313.mkv +谢雨欣-遥望,http://em.21dtv.com/songs/60052311.mkv +小柯-遥望,http://em.21dtv.com/songs/60052310.mkv +谭咏麟-遥望,http://em.21dtv.com/songs/60052309.mkv +BEYOND-遥望,http://em.21dtv.com/songs/60052308.mkv +叶世荣-遥望(演唱会),http://em.21dtv.com/songs/60052307.mkv +谢安琪-遥望(演唱会),http://em.21dtv.com/songs/60052306.mkv +黄家强-遥望(演唱会),http://em.21dtv.com/songs/60052305.mkv +王芷蕾-仰望,http://em.21dtv.com/songs/60052223.mkv +林美美-央望(无原唱),http://em.21dtv.com/songs/60052149.mkv +陈奕迅-烟味,http://em.21dtv.com/songs/60051983.mkv +FALL OUT BOY-young volcanoes,http://em.21dtv.com/songs/60082421.mkv +胡利基-一天,http://em.21dtv.com/songs/60130669.mkv +戚薇-雨天,http://em.21dtv.com/songs/60115961.mkv +詹曼铃-怨叹,http://em.21dtv.com/songs/60115376.mkv +李沛欣-掩体,http://em.21dtv.com/songs/60112760.mkv +金久哲-丫头,http://em.21dtv.com/songs/60112315.mkv +简迷离-云图,http://em.21dtv.com/songs/60105285.mkv +张敬轩-一天,http://em.21dtv.com/songs/60105044.mkv +张卓含威-阴天,http://em.21dtv.com/songs/60104112.mkv +爱晴-牙疼,http://em.21dtv.com/songs/60103431.mkv +钟洁+Rill-雨停,http://em.21dtv.com/songs/60099559.mkv +孙燕姿-银泰,http://em.21dtv.com/songs/60096792.mkv +高登-雨天,http://em.21dtv.com/songs/60086171.mkv +潇子墨+VANSHLEY-御天,http://em.21dtv.com/songs/60084470.mkv +ELLA-阴天,http://em.21dtv.com/songs/60084330.mkv +乐华群星-云图,http://em.21dtv.com/songs/60079443.mkv +韩庚-云图,http://em.21dtv.com/songs/60079442.mkv +群星-云图,http://em.21dtv.com/songs/60072776.mkv +李准基-一天,http://em.21dtv.com/songs/60072716.mkv +杨宗纬-雨天(演唱会),http://em.21dtv.com/songs/60067739.mkv +哨兵-雨天,http://em.21dtv.com/songs/60066547.mkv +君子-雨天,http://em.21dtv.com/songs/60061854.mkv +许巍-一天,http://em.21dtv.com/songs/60061825.mkv +袁小迪-越头,http://em.21dtv.com/songs/60056607.mkv +林沐桦-怨天,http://em.21dtv.com/songs/60056187.mkv +许巍-雨天,http://em.21dtv.com/songs/60055705.mkv +孙燕姿-雨天,http://em.21dtv.com/songs/60055704.mkv +王钰-雨天(演唱会),http://em.21dtv.com/songs/60055703.mkv +吴奇隆-隐痛,http://em.21dtv.com/songs/60054381.mkv +莫文蔚-阴天,http://em.21dtv.com/songs/60054310.mkv +梁咏琪-阴天(演唱会),http://em.21dtv.com/songs/60054309.mkv +张嘉洵-一天,http://em.21dtv.com/songs/60053707.mkv +牛朝阳-一天,http://em.21dtv.com/songs/60053706.mkv +EO2-一天,http://em.21dtv.com/songs/60053705.mkv +陈奕迅-烟啼(演唱会),http://em.21dtv.com/songs/60051981.mkv +王童语-丫头,http://em.21dtv.com/songs/60051867.mkv +PETER PAN-yang terdalam,http://em.21dtv.com/songs/60006445.mkv +AMERIN-1 thing,http://em.21dtv.com/songs/60000002.mkv +CHRIS BROWN-yeah 3x,http://em.21dtv.com/songs/60061979.mkv +小刘欢-永顺,http://em.21dtv.com/songs/60133591.mkv +卫兰-验伤,http://em.21dtv.com/songs/60133444.mkv +韩晓-余生,http://em.21dtv.com/songs/60133069.mkv +谭晶-欲水,http://em.21dtv.com/songs/60132900.mkv +卫兰-验伤,http://em.21dtv.com/songs/60131234.mkv +梁剑东-夜色,http://em.21dtv.com/songs/60129308.mkv +于湉-野兽,http://em.21dtv.com/songs/60128753.mkv +臧天朔+秦勇-夜色,http://em.21dtv.com/songs/60124386.mkv +毛宁+陈明-夜殇,http://em.21dtv.com/songs/60122940.mkv +肖雪-夜裳,http://em.21dtv.com/songs/60122030.mkv +龙奔-夜色,http://em.21dtv.com/songs/60121194.mkv +梁剑东-夜色,http://em.21dtv.com/songs/60120676.mkv +张梅-远山,http://em.21dtv.com/songs/60120514.mkv +左林右里-雨伤,http://em.21dtv.com/songs/60120491.mkv +艺涛-夜色,http://em.21dtv.com/songs/60119905.mkv +US乐团-夜色,http://em.21dtv.com/songs/60119209.mkv +邓小巧-雅俗,http://em.21dtv.com/songs/60118952.mkv +艺涛+梁剑东-夜色,http://em.21dtv.com/songs/60117995.mkv +梁剑东-夜色,http://em.21dtv.com/songs/60117861.mkv +邓紫棋-于是,http://em.21dtv.com/songs/60116278.mkv +沈震轩-约誓,http://em.21dtv.com/songs/60110335.mkv +李英贤+申智候-右手,http://em.21dtv.com/songs/60110286.mkv +蔡丽津-雨水,http://em.21dtv.com/songs/60109610.mkv +解伟苓-掩饰,http://em.21dtv.com/songs/60108884.mkv +胡彦斌-眼色,http://em.21dtv.com/songs/60108822.mkv +秋裤大叔-玉碎,http://em.21dtv.com/songs/60108772.mkv +谭晶-玉碎,http://em.21dtv.com/songs/60108010.mkv +解伟苓-掩饰,http://em.21dtv.com/songs/60107999.mkv +杨丞琳-鱼鳃,http://em.21dtv.com/songs/60106967.mkv +郑斯仁-缘殇,http://em.21dtv.com/songs/60106325.mkv +蔡秋凤-雨伞,http://em.21dtv.com/songs/60105351.mkv +魏然-眼色,http://em.21dtv.com/songs/60104851.mkv +Younha-雨伞,http://em.21dtv.com/songs/60101843.mkv +多亮+李泉-眼色,http://em.21dtv.com/songs/60096790.mkv +卜学亮-夜深,http://em.21dtv.com/songs/60096742.mkv +周国贤-有时,http://em.21dtv.com/songs/60087074.mkv +李立宇-眼色,http://em.21dtv.com/songs/60087029.mkv +陈睿-颜色,http://em.21dtv.com/songs/60087028.mkv +梁君诺-眼色,http://em.21dtv.com/songs/60086084.mkv +许慧欣-月色,http://em.21dtv.com/songs/60079421.mkv +KINKI KIDS-约束,http://em.21dtv.com/songs/60079403.mkv +蔡丽津-雨水,http://em.21dtv.com/songs/60079345.mkv +许廷铿-雨伞,http://em.21dtv.com/songs/60079343.mkv +毛宁+陈明-夜殇(演唱会),http://em.21dtv.com/songs/60079065.mkv +蚊子+筱瞳-颜色,http://em.21dtv.com/songs/60079004.mkv +王梓轩-your song,http://em.21dtv.com/songs/60074206.mkv +ELTON JOHN-your song,http://em.21dtv.com/songs/60074205.mkv +单小源-釉色,http://em.21dtv.com/songs/60071463.mkv +王克-眼色,http://em.21dtv.com/songs/60071400.mkv +成彧-眼色,http://em.21dtv.com/songs/60070115.mkv +邓丽君-夜色,http://em.21dtv.com/songs/60067692.mkv +丁当-野兽(演唱会),http://em.21dtv.com/songs/60067691.mkv +方瑞娥-雨水,http://em.21dtv.com/songs/60066546.mkv +刘忻-颜色,http://em.21dtv.com/songs/60062680.mkv +冷漠-玉碎,http://em.21dtv.com/songs/60062581.mkv +蔡枫华-月蚀(演唱会),http://em.21dtv.com/songs/60061866.mkv +季欣霈-your smile,http://em.21dtv.com/songs/60060957.mkv +春晓-月蚀,http://em.21dtv.com/songs/60056495.mkv +孙淑媚-约束,http://em.21dtv.com/songs/60056272.mkv +吕珊-约束,http://em.21dtv.com/songs/60056271.mkv +江蕙-约束,http://em.21dtv.com/songs/60056270.mkv +黄莺莺-约束,http://em.21dtv.com/songs/60056269.mkv +ムック-约束,http://em.21dtv.com/songs/60056268.mkv +冯曦妤-远视,http://em.21dtv.com/songs/60056160.mkv +萧亚轩-原始,http://em.21dtv.com/songs/60056013.mkv +齐豫-欲水,http://em.21dtv.com/songs/60055821.mkv +庭竹-雨声,http://em.21dtv.com/songs/60055694.mkv +彭立-雨声,http://em.21dtv.com/songs/60055693.mkv +龙千玉-雨声,http://em.21dtv.com/songs/60055692.mkv +佚名-雨声(无原唱),http://em.21dtv.com/songs/60055691.mkv +徐怀钰-雨伞,http://em.21dtv.com/songs/60055686.mkv +陈升-鱼说,http://em.21dtv.com/songs/60055530.mkv +何欣穗-于是,http://em.21dtv.com/songs/60055494.mkv +婷婷-右手,http://em.21dtv.com/songs/60055480.mkv +邱伟议-右手,http://em.21dtv.com/songs/60055479.mkv +黄贯中-忧书,http://em.21dtv.com/songs/60054955.mkv +郑少秋-饮胜(演唱会),http://em.21dtv.com/songs/60054373.mkv +许嵩-医生,http://em.21dtv.com/songs/60053971.mkv +中岛美嘉-一色,http://em.21dtv.com/songs/60053504.mkv +梅艳芳-夜蛇,http://em.21dtv.com/songs/60052644.mkv +童安格-夜色,http://em.21dtv.com/songs/60052633.mkv +唐朝乐队-夜色,http://em.21dtv.com/songs/60052632.mkv +罗文聪-夜色,http://em.21dtv.com/songs/60052631.mkv +李双江-夜色,http://em.21dtv.com/songs/60052630.mkv +额尔古纳乐队-夜色,http://em.21dtv.com/songs/60052629.mkv +江蕙-夜色(演唱会),http://em.21dtv.com/songs/60052628.mkv +吴伟璇-遥思,http://em.21dtv.com/songs/60052304.mkv +吴浩康-养伤,http://em.21dtv.com/songs/60052229.mkv +陈珊妮-验伤(无原唱),http://em.21dtv.com/songs/60052125.mkv +孙燕姿-眼神,http://em.21dtv.com/songs/60052095.mkv +李度-眼神,http://em.21dtv.com/songs/60052094.mkv +林宥嘉-眼色,http://em.21dtv.com/songs/60052093.mkv +许美静-颜色,http://em.21dtv.com/songs/60052031.mkv +李玟-颜色,http://em.21dtv.com/songs/60052030.mkv +何洁-颜色,http://em.21dtv.com/songs/60052029.mkv +佚名-youre sixteen,http://em.21dtv.com/songs/60006616.mkv +佚名-your song,http://em.21dtv.com/songs/60006603.mkv +谢霆锋-your song(演唱会),http://em.21dtv.com/songs/60006602.mkv +MADONNA-youll see,http://em.21dtv.com/songs/60006587.mkv +周华健+无印良品+任贤齐+BEYOND-yellow submarine,http://em.21dtv.com/songs/60006453.mkv +佚名-yellow submarine,http://em.21dtv.com/songs/60006452.mkv +THE BEATLES-yellow submarine,http://em.21dtv.com/songs/60006451.mkv +臧一人-一人,http://em.21dtv.com/songs/60129514.mkv +伊丽媛-伊人,http://em.21dtv.com/songs/60115680.mkv +李弘基-依然,http://em.21dtv.com/songs/60113623.mkv +罗逻圣-依然,http://em.21dtv.com/songs/60108800.mkv +杨淑芬-哑忍,http://em.21dtv.com/songs/60104233.mkv +李智-依然,http://em.21dtv.com/songs/60086130.mkv +TIZZY BAC-有人,http://em.21dtv.com/songs/60079859.mkv +熊宝贝乐团-渔人,http://em.21dtv.com/songs/60079328.mkv +魏晨-伊人,http://em.21dtv.com/songs/60079167.mkv +蔡依林-有人,http://em.21dtv.com/songs/60070183.mkv +李弘基-依然,http://em.21dtv.com/songs/60068926.mkv +周华健-雨人,http://em.21dtv.com/songs/60055685.mkv +麦浚龙-有人(演唱会),http://em.21dtv.com/songs/60055284.mkv +阮丹青-有染,http://em.21dtv.com/songs/60055283.mkv +易欣-易人,http://em.21dtv.com/songs/60054166.mkv +袁小迪-艺人,http://em.21dtv.com/songs/60054110.mkv +陈小春-依然,http://em.21dtv.com/songs/60053992.mkv +张敬轩-依然(演唱会),http://em.21dtv.com/songs/60053990.mkv +林忆莲-依然(演唱会),http://em.21dtv.com/songs/60053989.mkv +陈小春-哑忍,http://em.21dtv.com/songs/60051884.mkv +KHLOE CHU-哑忍,http://em.21dtv.com/songs/60051883.mkv +佚名-yello river(无原唱),http://em.21dtv.com/songs/60006448.mkv +光良-勇气,http://em.21dtv.com/songs/60134906.mkv +Noel-一起,http://em.21dtv.com/songs/60134775.mkv +张智成-瘀青,http://em.21dtv.com/songs/60133668.mkv +狮子合唱团-用情,http://em.21dtv.com/songs/60132703.mkv +张智成-瘀青,http://em.21dtv.com/songs/60132439.mkv +谭晶-眼前,http://em.21dtv.com/songs/60131821.mkv +阿温-幺柒,http://em.21dtv.com/songs/60129716.mkv +李宇春+范冰冰-氧气,http://em.21dtv.com/songs/60127002.mkv +金池-勇气,http://em.21dtv.com/songs/60122191.mkv +冷酷-咏秋,http://em.21dtv.com/songs/60121415.mkv +洪杰-勇气,http://em.21dtv.com/songs/60120710.mkv +长宇-氧气,http://em.21dtv.com/songs/60114165.mkv +长宇-氧气,http://em.21dtv.com/songs/60113034.mkv +许少峰-圆圈,http://em.21dtv.com/songs/60107212.mkv +张虎-忆秋,http://em.21dtv.com/songs/60105874.mkv +梁汉文-勇气,http://em.21dtv.com/songs/60104260.mkv +李泉-一起,http://em.21dtv.com/songs/60103362.mkv +张靓颖-一起,http://em.21dtv.com/songs/60103289.mkv +陈羽凡+贾剑龙-勇气,http://em.21dtv.com/songs/60095142.mkv +梁咏琪-眼期,http://em.21dtv.com/songs/60091517.mkv +房祖名-要强,http://em.21dtv.com/songs/60091245.mkv +潘长江+阎淑萍-迎亲,http://em.21dtv.com/songs/60090071.mkv +奇志大兵-院庆,http://em.21dtv.com/songs/60089766.mkv +徐小凤-月琴,http://em.21dtv.com/songs/60089303.mkv +郑怡-月琴,http://em.21dtv.com/songs/60088761.mkv +容祖儿-勇气,http://em.21dtv.com/songs/60087698.mkv +白燕升-缘起,http://em.21dtv.com/songs/60086185.mkv +黄海波-义气(演唱会),http://em.21dtv.com/songs/60086137.mkv +庄心妍-圆圈,http://em.21dtv.com/songs/60082055.mkv +糖兄妹-勇气,http://em.21dtv.com/songs/60079250.mkv +熊宝贝乐团-一七(演唱会),http://em.21dtv.com/songs/60079129.mkv +陈西贝-勇气(演唱会),http://em.21dtv.com/songs/60072737.mkv +米靓-缘起,http://em.21dtv.com/songs/60070199.mkv +刘璐-勇气,http://em.21dtv.com/songs/60068935.mkv +翁立友-用情,http://em.21dtv.com/songs/60066539.mkv +许廷铿-遗弃,http://em.21dtv.com/songs/60066529.mkv +许廷铿-厌弃,http://em.21dtv.com/songs/60065305.mkv +迪克牛仔-勇气,http://em.21dtv.com/songs/60062316.mkv +佚名-月琴,http://em.21dtv.com/songs/60056487.mkv +童唱-怨情,http://em.21dtv.com/songs/60056182.mkv +谭晶-远情,http://em.21dtv.com/songs/60056155.mkv +芭比-圆圈,http://em.21dtv.com/songs/60056040.mkv +元气乐团-元气,http://em.21dtv.com/songs/60055905.mkv +陈奕迅-冤气,http://em.21dtv.com/songs/60055902.mkv +詹雅雯-雨情,http://em.21dtv.com/songs/60055684.mkv +余天-友情,http://em.21dtv.com/songs/60055056.mkv +卓依婷-用情,http://em.21dtv.com/songs/60054881.mkv +张信哲-用情,http://em.21dtv.com/songs/60054880.mkv +张震岳-勇气,http://em.21dtv.com/songs/60054860.mkv +苏有朋-勇气,http://em.21dtv.com/songs/60054859.mkv +梁静茹-勇气,http://em.21dtv.com/songs/60054858.mkv +黄思婷-勇气,http://em.21dtv.com/songs/60054857.mkv +光良-勇气,http://em.21dtv.com/songs/60054856.mkv +迪克牛仔-勇气(演唱会),http://em.21dtv.com/songs/60054855.mkv +黄凯芹-勇气(演唱会),http://em.21dtv.com/songs/60054854.mkv +陈洁丽-勇气(演唱会),http://em.21dtv.com/songs/60054853.mkv +张芸京-义气,http://em.21dtv.com/songs/60054103.mkv +佚名-遗弃,http://em.21dtv.com/songs/60054053.mkv +罗文聪-遗弃,http://em.21dtv.com/songs/60054052.mkv +刘德华-遗弃,http://em.21dtv.com/songs/60054051.mkv +酷绘乐团-一切,http://em.21dtv.com/songs/60053422.mkv +周杰伦-夜曲,http://em.21dtv.com/songs/60052627.mkv +费玉清-夜曲,http://em.21dtv.com/songs/60052626.mkv +杜德伟-要求,http://em.21dtv.com/songs/60052384.mkv +李长春-姚期,http://em.21dtv.com/songs/60052243.mkv +范晓萱-氧气,http://em.21dtv.com/songs/60052231.mkv +COOKIES-眼浅,http://em.21dtv.com/songs/60052092.mkv +肖家永-夜蒲,http://em.21dtv.com/songs/60124368.mkv +李嘉珊-一瞥,http://em.21dtv.com/songs/60124058.mkv +左艺-原配,http://em.21dtv.com/songs/60122694.mkv +叶诺帆-雨披,http://em.21dtv.com/songs/60122563.mkv +李嘉珊-一瞥,http://em.21dtv.com/songs/60119654.mkv +陈慧琳-邮票,http://em.21dtv.com/songs/60054978.mkv +咏儿-一撇,http://em.21dtv.com/songs/60053350.mkv +RASPBERRY CANE-YOUTH LAGOON,http://em.21dtv.com/songs/60096646.mkv +安室奈美惠-yeah oh,http://em.21dtv.com/songs/60066760.mkv +欧阳青-一念,http://em.21dtv.com/songs/60130512.mkv +MC阿哲-有你,http://em.21dtv.com/songs/60128685.mkv +吉克隽逸-云南,http://em.21dtv.com/songs/60118427.mkv +林圣杰-一年,http://em.21dtv.com/songs/60108618.mkv +杨千嬅-妖女,http://em.21dtv.com/songs/60096724.mkv +TACKE竹桑-又年,http://em.21dtv.com/songs/60084454.mkv +黎明-一念,http://em.21dtv.com/songs/60079127.mkv +罗时丰-夜鸟,http://em.21dtv.com/songs/60070129.mkv +陈奕迅-酝酿,http://em.21dtv.com/songs/60056701.mkv +华娃-芸娘(演唱会),http://em.21dtv.com/songs/60056686.mkv +紫龙-云娜,http://em.21dtv.com/songs/60056657.mkv +谭咏麟-约你(演唱会),http://em.21dtv.com/songs/60056267.mkv +张国荣-怨男,http://em.21dtv.com/songs/60056180.mkv +张国荣-怨男(演唱会),http://em.21dtv.com/songs/60056179.mkv +刘力扬-雨念,http://em.21dtv.com/songs/60055683.mkv +戴佩妮-雨难,http://em.21dtv.com/songs/60055682.mkv +黄雅莉-有你,http://em.21dtv.com/songs/60055202.mkv +叶德娴-因你(演唱会),http://em.21dtv.com/songs/60054200.mkv +野仔-忆年,http://em.21dtv.com/songs/60054124.mkv +叶启田-野鸟,http://em.21dtv.com/songs/60052491.mkv +小凤凤-野鸟,http://em.21dtv.com/songs/60052490.mkv +佚名-妖女,http://em.21dtv.com/songs/60052240.mkv +梅艳芳-妖女(演唱会),http://em.21dtv.com/songs/60052239.mkv +德吉卓玛-野马,http://em.21dtv.com/songs/60135290.mkv +卓依婷-圆满,http://em.21dtv.com/songs/60134957.mkv +杨乃文-野蛮,http://em.21dtv.com/songs/60132580.mkv +杨静-一暝,http://em.21dtv.com/songs/60129281.mkv +刘馨月-鸳梦,http://em.21dtv.com/songs/60126663.mkv +关晓彤-音梦,http://em.21dtv.com/songs/60125152.mkv +孔东东-爷们,http://em.21dtv.com/songs/60123816.mkv +卓依婷-圆满,http://em.21dtv.com/songs/60109202.mkv +小语乐团-夜幕,http://em.21dtv.com/songs/60107689.mkv +林俊逸-游牧,http://em.21dtv.com/songs/60102386.mkv +平安-圆梦,http://em.21dtv.com/songs/60099994.mkv +游助-とうもろこし,http://em.21dtv.com/songs/60099379.mkv +八三夭-夜猫,http://em.21dtv.com/songs/60099096.mkv +容祖儿-预谋,http://em.21dtv.com/songs/60092535.mkv +刘若英-阴谋,http://em.21dtv.com/songs/60090730.mkv +陈晓东-隐瞒,http://em.21dtv.com/songs/60088892.mkv +张祥洪-阴谋,http://em.21dtv.com/songs/60084403.mkv +蒲巴甲-忆梦,http://em.21dtv.com/songs/60084393.mkv +阿英-远牧,http://em.21dtv.com/songs/60079396.mkv +储兰兰-咏梅(演唱会),http://em.21dtv.com/songs/60079245.mkv +JOSH TURNER-your man,http://em.21dtv.com/songs/60074204.mkv +潘佩莉-运命,http://em.21dtv.com/songs/60072777.mkv +马智宇-圆梦,http://em.21dtv.com/songs/60071476.mkv +代理仁-预谋,http://em.21dtv.com/songs/60068949.mkv +刀郎-圆满(演唱会),http://em.21dtv.com/songs/60065416.mkv +赵芊羽-扬眉,http://em.21dtv.com/songs/60065307.mkv +BERRYZ工房-ああ、夜が明ける,http://em.21dtv.com/songs/60060958.mkv +周华健-月满,http://em.21dtv.com/songs/60056459.mkv +闫学晶-圆梦,http://em.21dtv.com/songs/60056038.mkv +孙悦+郭峰-圆梦,http://em.21dtv.com/songs/60056037.mkv +康康-圆梦,http://em.21dtv.com/songs/60056036.mkv +衡越-圆梦,http://em.21dtv.com/songs/60056035.mkv +郭峰+孙悦-圆梦,http://em.21dtv.com/songs/60056034.mkv +何韵诗-圆满,http://em.21dtv.com/songs/60056033.mkv +卢广仲-渊明(演唱会),http://em.21dtv.com/songs/60055904.mkv +刘德华-预谋(演唱会),http://em.21dtv.com/songs/60055809.mkv +五月天-雨眠,http://em.21dtv.com/songs/60055675.mkv +晓雨-雨梦,http://em.21dtv.com/songs/60055674.mkv +王心凌-羽毛,http://em.21dtv.com/songs/60055621.mkv +陈文媛-羽毛,http://em.21dtv.com/songs/60055620.mkv +张柏芝-愚昧,http://em.21dtv.com/songs/60055569.mkv +周灵燕-咏梅,http://em.21dtv.com/songs/60054810.mkv +谢霆锋-影迷,http://em.21dtv.com/songs/60054534.mkv +丁文琪-影迷,http://em.21dtv.com/songs/60054533.mkv +陈慧琳-隐瞒,http://em.21dtv.com/songs/60054380.mkv +丁当-夜猫,http://em.21dtv.com/songs/60052622.mkv +青山-野猫,http://em.21dtv.com/songs/60052485.mkv +徐芳芳-摇梦,http://em.21dtv.com/songs/60052288.mkv +佚名-幺妹,http://em.21dtv.com/songs/60052237.mkv +杨千嬅-扬眉,http://em.21dtv.com/songs/60052153.mkv +张学友-淹没,http://em.21dtv.com/songs/60052002.mkv +李玟-you me,http://em.21dtv.com/songs/60006564.mkv +李玟-you & me,http://em.21dtv.com/songs/60006482.mkv +NE-yo-beautiful monster,http://em.21dtv.com/songs/60006480.mkv +徐歌阳-异类,http://em.21dtv.com/songs/60128012.mkv +藤田麻衣子-泪が止まらないのは,http://em.21dtv.com/songs/60100456.mkv +吴陌川-雅丽,http://em.21dtv.com/songs/60135045.mkv +黄立行-音浪,http://em.21dtv.com/songs/60134503.mkv +杨瑶-雨泪,http://em.21dtv.com/songs/60133856.mkv +阿毛-雨泪,http://em.21dtv.com/songs/60131923.mkv +刘瑞琦-原谅,http://em.21dtv.com/songs/60128838.mkv +陈美希-原来,http://em.21dtv.com/songs/60128551.mkv +龙邵华-原谅,http://em.21dtv.com/songs/60126504.mkv +谢知言-雨泪,http://em.21dtv.com/songs/60124494.mkv +楼沁-眼泪,http://em.21dtv.com/songs/60124167.mkv +艾怡良-依赖,http://em.21dtv.com/songs/60123101.mkv +藏古西烈+王叠-月恋,http://em.21dtv.com/songs/60122096.mkv +大星-云里,http://em.21dtv.com/songs/60121538.mkv +金大喜-雨恋,http://em.21dtv.com/songs/60120040.mkv +尹默-缘来,http://em.21dtv.com/songs/60119457.mkv +Matzka+家家-原来,http://em.21dtv.com/songs/60118272.mkv +张靓颖-依赖,http://em.21dtv.com/songs/60116811.mkv +张倬闻-雨泪,http://em.21dtv.com/songs/60116779.mkv +刘心-原来,http://em.21dtv.com/songs/60112540.mkv +老狼-月亮,http://em.21dtv.com/songs/60110470.mkv +田振达-月亮,http://em.21dtv.com/songs/60110426.mkv +辛博华-原来,http://em.21dtv.com/songs/60106317.mkv +苏醒-缘来,http://em.21dtv.com/songs/60106226.mkv +樊凡-眼泪,http://em.21dtv.com/songs/60104265.mkv +楼沁-眼泪,http://em.21dtv.com/songs/60104263.mkv +孙娇娇-依恋,http://em.21dtv.com/songs/60104037.mkv +曹雅雯-原谅,http://em.21dtv.com/songs/60101370.mkv +OK绷-原来,http://em.21dtv.com/songs/60096776.mkv +PCHY-依赖,http://em.21dtv.com/songs/60096737.mkv +吴丹妮-雨恋,http://em.21dtv.com/songs/60096733.mkv +赵羽菲-羽泪,http://em.21dtv.com/songs/60094309.mkv +方皓玟-異流,http://em.21dtv.com/songs/60092757.mkv +刘德华-眼泪,http://em.21dtv.com/songs/60092357.mkv +温岚-慵懒,http://em.21dtv.com/songs/60091627.mkv +施文斌-眼泪,http://em.21dtv.com/songs/60087922.mkv +潘广益-原来,http://em.21dtv.com/songs/60084476.mkv +高向鹏-饮啦(无原唱),http://em.21dtv.com/songs/60081847.mkv +余俊逸-眼泪,http://em.21dtv.com/songs/60081502.mkv +戴佩妮-右脸,http://em.21dtv.com/songs/60080118.mkv +孙楠-原谅,http://em.21dtv.com/songs/60079376.mkv +赵咏华-雨林,http://em.21dtv.com/songs/60079342.mkv +宇多田光-桜流し,http://em.21dtv.com/songs/60079214.mkv +艺洋-依赖,http://em.21dtv.com/songs/60079169.mkv +MBLAQ-your luv,http://em.21dtv.com/songs/60074203.mkv +THE BAND PERRY-you lie,http://em.21dtv.com/songs/60074187.mkv +炎亚纶-原来,http://em.21dtv.com/songs/60072765.mkv +尚雯婕-异类,http://em.21dtv.com/songs/60072725.mkv +誓言-原来,http://em.21dtv.com/songs/60071475.mkv +胡鸿钧-原谅,http://em.21dtv.com/songs/60070196.mkv +崇子-雨恋(演唱会),http://em.21dtv.com/songs/60067738.mkv +王铮亮+潘辰-缘来,http://em.21dtv.com/songs/60066559.mkv +戴玉强-月亮,http://em.21dtv.com/songs/60065430.mkv +沙玛学锋-月亮,http://em.21dtv.com/songs/60061865.mkv +刘允乐-允乐,http://em.21dtv.com/songs/60056687.mkv +江蕙-月落,http://em.21dtv.com/songs/60056456.mkv +佚名-月亮,http://em.21dtv.com/songs/60056376.mkv +韩红-月亮,http://em.21dtv.com/songs/60056375.mkv +陈慧娴-月亮(演唱会),http://em.21dtv.com/songs/60056374.mkv +刘德华-月老,http://em.21dtv.com/songs/60056371.mkv +张玉华-原谅,http://em.21dtv.com/songs/60055989.mkv +苏有朋-原谅,http://em.21dtv.com/songs/60055988.mkv +眉佳+红组合-原谅,http://em.21dtv.com/songs/60055987.mkv +季欣霈-原谅,http://em.21dtv.com/songs/60055986.mkv +黄龄-原谅,http://em.21dtv.com/songs/60055985.mkv +方季韦+关心-原谅,http://em.21dtv.com/songs/60055984.mkv +陈晓东-原谅,http://em.21dtv.com/songs/60055983.mkv +张崇基+张崇德-原谅(演唱会),http://em.21dtv.com/songs/60055982.mkv +杨钧钧-原谅(无原唱),http://em.21dtv.com/songs/60055981.mkv +龙劭华-原谅(无原唱),http://em.21dtv.com/songs/60055980.mkv +张震岳-原来,http://em.21dtv.com/songs/60055924.mkv +信乐团-原来,http://em.21dtv.com/songs/60055923.mkv +刘芮伊-原来,http://em.21dtv.com/songs/60055922.mkv +林俊杰-原来,http://em.21dtv.com/songs/60055921.mkv +金大喜-原来,http://em.21dtv.com/songs/60055920.mkv +杨天宁-雨泪,http://em.21dtv.com/songs/60055671.mkv +阿悄-幼灵,http://em.21dtv.com/songs/60055483.mkv +佚名-有了,http://em.21dtv.com/songs/60055163.mkv +苏打绿-游乐,http://em.21dtv.com/songs/60055002.mkv +罗百吉-音乐,http://em.21dtv.com/songs/60054316.mkv +黄立行-音浪,http://em.21dtv.com/songs/60054315.mkv +曾慧-忆郎,http://em.21dtv.com/songs/60054120.mkv +刘小慧-依恋,http://em.21dtv.com/songs/60053987.mkv +蔡淳佳-依恋,http://em.21dtv.com/songs/60053986.mkv +叶倩文-依赖,http://em.21dtv.com/songs/60053985.mkv +小安-依赖,http://em.21dtv.com/songs/60053984.mkv +萧亚轩-依赖,http://em.21dtv.com/songs/60053983.mkv +陶晶莹-依赖,http://em.21dtv.com/songs/60053982.mkv +李玖哲-依赖,http://em.21dtv.com/songs/60053981.mkv +陈小霞-依赖,http://em.21dtv.com/songs/60053980.mkv +草蜢-夜了,http://em.21dtv.com/songs/60052613.mkv +翁立友-摇咧,http://em.21dtv.com/songs/60052286.mkv +郭燕-眼泪,http://em.21dtv.com/songs/60052064.mkv +范晓萱-眼泪,http://em.21dtv.com/songs/60052063.mkv +张学友-眼泪(演唱会),http://em.21dtv.com/songs/60052062.mkv +许志安-眼泪(演唱会),http://em.21dtv.com/songs/60052061.mkv +王苑-眼泪(演唱会),http://em.21dtv.com/songs/60052060.mkv +林苑-眼泪(演唱会),http://em.21dtv.com/songs/60052059.mkv +林俊杰-压力,http://em.21dtv.com/songs/60051868.mkv +NICKI MINAJ-your love,http://em.21dtv.com/songs/60006599.mkv +佚名-young love,http://em.21dtv.com/songs/60006591.mkv +爱戴-you lie,http://em.21dtv.com/songs/60006552.mkv +ALANIS MORISSETTE-you learn,http://em.21dtv.com/songs/60006551.mkv +靳松-游客,http://em.21dtv.com/songs/60135973.mkv +孙露-夜空,http://em.21dtv.com/songs/60115810.mkv +周慧敏-依靠,http://em.21dtv.com/songs/60108389.mkv +周慧敏-依靠,http://em.21dtv.com/songs/60107593.mkv +齐秦-垭口,http://em.21dtv.com/songs/60089558.mkv +孙露-夜空,http://em.21dtv.com/songs/60079060.mkv +罗桦-夜空(演唱会),http://em.21dtv.com/songs/60079059.mkv +周彦宏-游客,http://em.21dtv.com/songs/60063469.mkv +阿丽-云开,http://em.21dtv.com/songs/60056653.mkv +祖海-依靠,http://em.21dtv.com/songs/60053979.mkv +卓依婷-依靠,http://em.21dtv.com/songs/60053978.mkv +任贤齐-依靠,http://em.21dtv.com/songs/60053977.mkv +林依晨-依靠,http://em.21dtv.com/songs/60053976.mkv +郑秀文-依靠(演唱会),http://em.21dtv.com/songs/60053975.mkv +谢采妘-夜空,http://em.21dtv.com/songs/60052590.mkv +罗时丰-夜空,http://em.21dtv.com/songs/60052589.mkv +黄思婷-夜空,http://em.21dtv.com/songs/60052588.mkv +韩宝仪-夜空,http://em.21dtv.com/songs/60052587.mkv +谢雷-夜空(演唱会),http://em.21dtv.com/songs/60052585.mkv +李翊君-夜空(演唱会),http://em.21dtv.com/songs/60052584.mkv +齐秦-哑口(无原唱),http://em.21dtv.com/songs/60051882.mkv +释则旭-悠居,http://em.21dtv.com/songs/60135838.mkv +张敬轩-遇见,http://em.21dtv.com/songs/60133666.mkv +99乐团-妖姬,http://em.21dtv.com/songs/60128660.mkv +杜歌-奕骄,http://em.21dtv.com/songs/60127075.mkv +东来东往-厌倦,http://em.21dtv.com/songs/60126572.mkv +谭嘉仪-印记,http://em.21dtv.com/songs/60126211.mkv +谭嘉仪-印记,http://em.21dtv.com/songs/60124501.mkv +范逸臣-印记,http://em.21dtv.com/songs/60124415.mkv +杨炅翰-演技,http://em.21dtv.com/songs/60124112.mkv +王鸣飞-遇见,http://em.21dtv.com/songs/60120799.mkv +冯家妹-余惊,http://em.21dtv.com/songs/60118373.mkv +曾沛慈-雨季,http://em.21dtv.com/songs/60114579.mkv +Mr.-一句,http://em.21dtv.com/songs/60109854.mkv +耿云飞-演技,http://em.21dtv.com/songs/60107133.mkv +黄龄-眼睛,http://em.21dtv.com/songs/60106515.mkv +阿伊米拉-妖姬,http://em.21dtv.com/songs/60102849.mkv +办桌二人组-越界,http://em.21dtv.com/songs/60096805.mkv +撒继平-雨季,http://em.21dtv.com/songs/60096307.mkv +邓昊天-衣架,http://em.21dtv.com/songs/60093248.mkv +斯琴格日乐-雨街,http://em.21dtv.com/songs/60091256.mkv +金润吉-遇见,http://em.21dtv.com/songs/60081594.mkv +王喆-云锦(演唱会),http://em.21dtv.com/songs/60079440.mkv +张勇-越界,http://em.21dtv.com/songs/60079434.mkv +凡间精灵-雨季,http://em.21dtv.com/songs/60079341.mkv +张敬轩-夜机,http://em.21dtv.com/songs/60079058.mkv +霍思燕-眼睛,http://em.21dtv.com/songs/60079005.mkv +王喆-云锦,http://em.21dtv.com/songs/60072774.mkv +陆特丹-已经,http://em.21dtv.com/songs/60071435.mkv +王烁巽-夜寂,http://em.21dtv.com/songs/60071409.mkv +王鸣飞-遇见,http://em.21dtv.com/songs/60068952.mkv +SHELLY佳-雨季,http://em.21dtv.com/songs/60068947.mkv +苏阳-冤家(演唱会),http://em.21dtv.com/songs/60067745.mkv +庾澄庆-遇见,http://em.21dtv.com/songs/60066552.mkv +刘德华-缘尽,http://em.21dtv.com/songs/60056096.mkv +陈奕迅-冤家,http://em.21dtv.com/songs/60055900.mkv +孙燕姿-遇见,http://em.21dtv.com/songs/60055844.mkv +蛋堡-遇见,http://em.21dtv.com/songs/60055843.mkv +杨千嬅-遇见(演唱会),http://em.21dtv.com/songs/60055841.mkv +容祖儿-遇见(演唱会),http://em.21dtv.com/songs/60055840.mkv +林一峰-遇见(演唱会),http://em.21dtv.com/songs/60055839.mkv +陈洁丽-遇见(演唱会),http://em.21dtv.com/songs/60055838.mkv +南合文斗-雨街,http://em.21dtv.com/songs/60055670.mkv +张峰奇-雨季,http://em.21dtv.com/songs/60055663.mkv +杨乐-雨季,http://em.21dtv.com/songs/60055662.mkv +童丽+王洁-雨季,http://em.21dtv.com/songs/60055661.mkv +林志颖-雨季(演唱会),http://em.21dtv.com/songs/60055660.mkv +容儿-饮酒(无原唱),http://em.21dtv.com/songs/60054366.mkv +张茵-忆记(无原唱),http://em.21dtv.com/songs/60054116.mkv +苏打绿-已经,http://em.21dtv.com/songs/60054070.mkv +侧田-一句,http://em.21dtv.com/songs/60053203.mkv +侧田-一句(演唱会),http://em.21dtv.com/songs/60053202.mkv +陈慧娴-夜机,http://em.21dtv.com/songs/60052579.mkv +陈慧娴-夜机(演唱会),http://em.21dtv.com/songs/60052578.mkv +孔令奇-妖精,http://em.21dtv.com/songs/60052238.mkv +万芳-演技,http://em.21dtv.com/songs/60052109.mkv +方顺吉+方婉真+萧玉芬-烟酒,http://em.21dtv.com/songs/60051976.mkv +悬铃木-原画,http://em.21dtv.com/songs/60135295.mkv +陈翔-烟火,http://em.21dtv.com/songs/60133051.mkv +王新鹏-野火,http://em.21dtv.com/songs/60132731.mkv +孙艺琪-圆谎,http://em.21dtv.com/songs/60131331.mkv +黄阅-萤火,http://em.21dtv.com/songs/60130942.mkv +张鹏华邵-烟灰,http://em.21dtv.com/songs/60129129.mkv +周子琰-烟火,http://em.21dtv.com/songs/60128894.mkv +金小曦-烟花,http://em.21dtv.com/songs/60127509.mkv +秦御峰-樱花,http://em.21dtv.com/songs/60127251.mkv +姚嘉儿-萤火,http://em.21dtv.com/songs/60123811.mkv +于子将-影后,http://em.21dtv.com/songs/60123603.mkv +丘竣霆-雨后,http://em.21dtv.com/songs/60123588.mkv +蔡秋凤-诱惑,http://em.21dtv.com/songs/60123135.mkv +陈洁仪-遗憾,http://em.21dtv.com/songs/60121086.mkv +华语群星-远航,http://em.21dtv.com/songs/60120386.mkv +余零+郑圆圆-约会,http://em.21dtv.com/songs/60120312.mkv +曹方-雨虹,http://em.21dtv.com/songs/60118640.mkv +陈思安-樱花,http://em.21dtv.com/songs/60116342.mkv +王进-烟花,http://em.21dtv.com/songs/60116165.mkv +李吟-月荷,http://em.21dtv.com/songs/60116001.mkv +孙露-遗憾,http://em.21dtv.com/songs/60115854.mkv +K.jboys-诱惑,http://em.21dtv.com/songs/60115606.mkv +汪苏泷-银河,http://em.21dtv.com/songs/60115260.mkv +姜育恒-烟火,http://em.21dtv.com/songs/60115089.mkv +汪苏泷-银河,http://em.21dtv.com/songs/60114646.mkv +田振达-烟花,http://em.21dtv.com/songs/60110427.mkv +李欣怡-以后,http://em.21dtv.com/songs/60110281.mkv +郑劲松-愈合,http://em.21dtv.com/songs/60108042.mkv +郑希怡-游魂,http://em.21dtv.com/songs/60105428.mkv +烟花三月-雨荷,http://em.21dtv.com/songs/60103428.mkv +谭咏麟-杨花,http://em.21dtv.com/songs/60102748.mkv +朱明-遗憾,http://em.21dtv.com/songs/60102313.mkv +金晓怡-诱惑,http://em.21dtv.com/songs/60100517.mkv +马铭-雨后,http://em.21dtv.com/songs/60099624.mkv +伍思凯-野花,http://em.21dtv.com/songs/60094807.mkv +宋孟君-远航,http://em.21dtv.com/songs/60094475.mkv +陈柏宇-逸后,http://em.21dtv.com/songs/60093477.mkv +孙琳-野花,http://em.21dtv.com/songs/60089804.mkv +于台烟-烟火,http://em.21dtv.com/songs/60087026.mkv +西子-烟花,http://em.21dtv.com/songs/60087025.mkv +SHELLY佳-樱花,http://em.21dtv.com/songs/60084410.mkv +AKB48-桜の花びらたち,http://em.21dtv.com/songs/60082423.mkv +罗中旭-遗憾,http://em.21dtv.com/songs/60081947.mkv +茱迪-诱惑,http://em.21dtv.com/songs/60081762.mkv +戴爱玲-咬痕,http://em.21dtv.com/songs/60080477.mkv +莫旭秋-云河(演唱会),http://em.21dtv.com/songs/60079439.mkv +姜木-油画,http://em.21dtv.com/songs/60079264.mkv +李代沫-遗憾(演唱会),http://em.21dtv.com/songs/60079174.mkv +关心妍-要害,http://em.21dtv.com/songs/60079045.mkv +白智英-洋槐,http://em.21dtv.com/songs/60079029.mkv +张瑶-烟花,http://em.21dtv.com/songs/60078992.mkv +姜木-烟花,http://em.21dtv.com/songs/60078991.mkv +冯圣雅-雨火,http://em.21dtv.com/songs/60072754.mkv +李代沫-遗憾,http://em.21dtv.com/songs/60072722.mkv +刘瀚升-烟灰,http://em.21dtv.com/songs/60072682.mkv +韩雪-昙花,http://em.21dtv.com/songs/60072440.mkv +王兆祥-野花,http://em.21dtv.com/songs/60071407.mkv +李彩-诱惑,http://em.21dtv.com/songs/60068944.mkv +张悬-艳火,http://em.21dtv.com/songs/60068899.mkv +吴涤清-永恒,http://em.21dtv.com/songs/60067727.mkv +CHRIS RENE-young homie,http://em.21dtv.com/songs/60066762.mkv +黄安-眼红,http://em.21dtv.com/songs/60065301.mkv +景仪-云河,http://em.21dtv.com/songs/60056651.mkv +姜育恒-云河,http://em.21dtv.com/songs/60056650.mkv +邓丽君-云河,http://em.21dtv.com/songs/60056649.mkv +甄妮-云河(演唱会),http://em.21dtv.com/songs/60056648.mkv +吕方-云河(演唱会),http://em.21dtv.com/songs/60056647.mkv +李克勤-云河(演唱会),http://em.21dtv.com/songs/60056646.mkv +南台湾小姑娘-约会,http://em.21dtv.com/songs/60056263.mkv +林子娟-约会,http://em.21dtv.com/songs/60056262.mkv +梅艳芳-约会(演唱会),http://em.21dtv.com/songs/60056261.mkv +棻兰-约会(无原唱),http://em.21dtv.com/songs/60056260.mkv +于文华-远航,http://em.21dtv.com/songs/60056151.mkv +夹子道-远航,http://em.21dtv.com/songs/60056150.mkv +张宇-圆谎,http://em.21dtv.com/songs/60056032.mkv +容祖儿-圆谎,http://em.21dtv.com/songs/60056031.mkv +陈司翰-玉环,http://em.21dtv.com/songs/60055781.mkv +张信哲-雨后,http://em.21dtv.com/songs/60055653.mkv +张韶涵-雨后,http://em.21dtv.com/songs/60055652.mkv +陈亮吟-余恨,http://em.21dtv.com/songs/60055503.mkv +孙燕姿-诱惑,http://em.21dtv.com/songs/60055487.mkv +吕方-幽会,http://em.21dtv.com/songs/60054961.mkv +金静-幽会,http://em.21dtv.com/songs/60054960.mkv +黄耀明-永恒,http://em.21dtv.com/songs/60054632.mkv +胡元恺-永恒,http://em.21dtv.com/songs/60054631.mkv +蔡依林-永恒,http://em.21dtv.com/songs/60054630.mkv +黎明-萤火,http://em.21dtv.com/songs/60054515.mkv +佚名-莹火,http://em.21dtv.com/songs/60054511.mkv +佚名-樱花,http://em.21dtv.com/songs/60054458.mkv +李克勤-樱花,http://em.21dtv.com/songs/60054457.mkv +吴奇隆-银河,http://em.21dtv.com/songs/60054342.mkv +MISIA-银河,http://em.21dtv.com/songs/60054341.mkv +万芳-以后,http://em.21dtv.com/songs/60054082.mkv +周明璟-遗憾,http://em.21dtv.com/songs/60054047.mkv +许美静-遗憾,http://em.21dtv.com/songs/60054046.mkv +巫启贤-遗憾,http://em.21dtv.com/songs/60054045.mkv +梁汉文-遗憾,http://em.21dtv.com/songs/60054044.mkv +方炯镔-遗憾,http://em.21dtv.com/songs/60054043.mkv +王菲-夜会,http://em.21dtv.com/songs/60052576.mkv +龙千玉-夜花,http://em.21dtv.com/songs/60052574.mkv +孙悦-野火,http://em.21dtv.com/songs/60052476.mkv +佚名-野火(无原唱),http://em.21dtv.com/songs/60052475.mkv +田震-野花,http://em.21dtv.com/songs/60052472.mkv +黄中原+傅薇-野花,http://em.21dtv.com/songs/60052471.mkv +方践宁-野花,http://em.21dtv.com/songs/60052470.mkv +陈盈洁-野花,http://em.21dtv.com/songs/60052469.mkv +林忆莲-野花(演唱会),http://em.21dtv.com/songs/60052468.mkv +甄子维-野花(无原唱),http://em.21dtv.com/songs/60052467.mkv +黎明-也好,http://em.21dtv.com/songs/60052423.mkv +谢霆锋-摇晃,http://em.21dtv.com/songs/60052276.mkv +甄妮-杨花,http://em.21dtv.com/songs/60052204.mkv +甄妮-杨花(演唱会),http://em.21dtv.com/songs/60052203.mkv +李卓庭-眼花,http://em.21dtv.com/songs/60052044.mkv +张寒-烟火,http://em.21dtv.com/songs/60051971.mkv +吴奇隆-烟火,http://em.21dtv.com/songs/60051970.mkv +满江-烟火,http://em.21dtv.com/songs/60051969.mkv +黎明+任贤齐-烟火,http://em.21dtv.com/songs/60051968.mkv +光良-烟火,http://em.21dtv.com/songs/60051967.mkv +陈翔-烟火,http://em.21dtv.com/songs/60051966.mkv +1976-烟火,http://em.21dtv.com/songs/60051965.mkv +四大天王-烟火(无原唱),http://em.21dtv.com/songs/60051964.mkv +孙淑媚-烟花,http://em.21dtv.com/songs/60051945.mkv +江蕙-烟花,http://em.21dtv.com/songs/60051944.mkv +阿朵-烟花,http://em.21dtv.com/songs/60051943.mkv +任雪晴-阳光ROCK,http://em.21dtv.com/songs/60087281.mkv +刘思祺-月光,http://em.21dtv.com/songs/60134934.mkv +魏家林-液光,http://em.21dtv.com/songs/60134476.mkv +冯亦然-荧光,http://em.21dtv.com/songs/60130102.mkv +雯茜-洋歌,http://em.21dtv.com/songs/60127574.mkv +李雪莱-应该,http://em.21dtv.com/songs/60127059.mkv +乌兰托娅-月光,http://em.21dtv.com/songs/60126576.mkv +龙霞-勇敢,http://em.21dtv.com/songs/60126506.mkv +陈思彤-夜光,http://em.21dtv.com/songs/60126383.mkv +陈仁丰-鱼缸,http://em.21dtv.com/songs/60124606.mkv +王识贤-勇敢,http://em.21dtv.com/songs/60124285.mkv +梁剑东-饮歌,http://em.21dtv.com/songs/60120678.mkv +许魏洲-月光,http://em.21dtv.com/songs/60119973.mkv +TWINS-饮歌,http://em.21dtv.com/songs/60119207.mkv +五月天-勇敢,http://em.21dtv.com/songs/60117538.mkv +侯玉斌-勇敢,http://em.21dtv.com/songs/60118347.mkv +五月天-勇敢,http://em.21dtv.com/songs/60118313.mkv +EXO K-月光,http://em.21dtv.com/songs/60118255.mkv +蒋卓嘉-预告,http://em.21dtv.com/songs/60114020.mkv +李健-月光,http://em.21dtv.com/songs/60109421.mkv +李佳薇-勇敢,http://em.21dtv.com/songs/60109416.mkv +高原-有过,http://em.21dtv.com/songs/60109044.mkv +权振东-勇敢,http://em.21dtv.com/songs/60106927.mkv +霓裳-月光,http://em.21dtv.com/songs/60103701.mkv +齐柒柒-夜光,http://em.21dtv.com/songs/60096741.mkv +吕珊+胡美仪-幽媾(戏曲),http://em.21dtv.com/songs/60092443.mkv +张赫宣-有诡,http://em.21dtv.com/songs/60081828.mkv +董贞-月光,http://em.21dtv.com/songs/60079891.mkv +魏晨-月光,http://em.21dtv.com/songs/60079406.mkv +曹格-阳光,http://em.21dtv.com/songs/60079024.mkv +BRUNO MARS-young girls,http://em.21dtv.com/songs/60074197.mkv +李健+邢天溯-月光(演唱会),http://em.21dtv.com/songs/60072769.mkv +黄英+吴彤-远歌,http://em.21dtv.com/songs/60067754.mkv +周笔畅-预感,http://em.21dtv.com/songs/60065413.mkv +玄乐队-野鸽(演唱会),http://em.21dtv.com/songs/60065315.mkv +刘芯宇-月光(演唱会),http://em.21dtv.com/songs/60061863.mkv +羽泉-月光,http://em.21dtv.com/songs/60056322.mkv +杨瑞代+周杰伦-月光,http://em.21dtv.com/songs/60056321.mkv +杨培安-月光,http://em.21dtv.com/songs/60056320.mkv +徐良+阿俏-月光,http://em.21dtv.com/songs/60056319.mkv +秀兰玛雅-月光,http://em.21dtv.com/songs/60056318.mkv +王心凌-月光,http://em.21dtv.com/songs/60056317.mkv +王婧-月光,http://em.21dtv.com/songs/60056316.mkv +顺子-月光,http://em.21dtv.com/songs/60056315.mkv +梅艳芳-月光,http://em.21dtv.com/songs/60056314.mkv +吕薇-月光,http://em.21dtv.com/songs/60056313.mkv +刘依纯-月光,http://em.21dtv.com/songs/60056312.mkv +刘虹桦-月光,http://em.21dtv.com/songs/60056311.mkv +黄靖伦-月光,http://em.21dtv.com/songs/60056310.mkv +胡彦斌-月光,http://em.21dtv.com/songs/60056309.mkv +胡歌-月光,http://em.21dtv.com/songs/60056308.mkv +张崇基+张崇德-月光(演唱会),http://em.21dtv.com/songs/60056307.mkv +刘雅丽-预感,http://em.21dtv.com/songs/60055807.mkv +李玖哲+李冰冰-预感,http://em.21dtv.com/songs/60055806.mkv +古巨基-预感,http://em.21dtv.com/songs/60055805.mkv +陈奕迅-预感,http://em.21dtv.com/songs/60055804.mkv +宋祖英-渔歌,http://em.21dtv.com/songs/60055543.mkv +梁洛施-有鬼,http://em.21dtv.com/songs/60055139.mkv +纵贯线-有光(演唱会),http://em.21dtv.com/songs/60055138.mkv +谢雪心-幽媾(演唱会),http://em.21dtv.com/songs/60054959.mkv +张惠妹-勇敢,http://em.21dtv.com/songs/60054823.mkv +叶熙祺-勇敢,http://em.21dtv.com/songs/60054822.mkv +王婧-勇敢,http://em.21dtv.com/songs/60054821.mkv +林忆莲-勇敢,http://em.21dtv.com/songs/60054820.mkv +黄湘怡-勇敢,http://em.21dtv.com/songs/60054819.mkv +黄思婷-勇敢,http://em.21dtv.com/songs/60054818.mkv +黄鹤翔-勇敢,http://em.21dtv.com/songs/60054817.mkv +傅天颖-勇敢,http://em.21dtv.com/songs/60054816.mkv +BY2-勇敢,http://em.21dtv.com/songs/60054815.mkv +周华健-应该,http://em.21dtv.com/songs/60054547.mkv +杨乃文-应该,http://em.21dtv.com/songs/60054546.mkv +张瑶-荧光,http://em.21dtv.com/songs/60054509.mkv +TWINS-饮歌,http://em.21dtv.com/songs/60054362.mkv +TWINS-饮歌(演唱会),http://em.21dtv.com/songs/60054361.mkv +ALAN-一个,http://em.21dtv.com/songs/60052947.mkv +郭燕-夜歌,http://em.21dtv.com/songs/60052565.mkv +佚名-野鸽,http://em.21dtv.com/songs/60052460.mkv +佚名-阳光,http://em.21dtv.com/songs/60052166.mkv +谭晶-阳光,http://em.21dtv.com/songs/60052165.mkv +黎明-阳光,http://em.21dtv.com/songs/60052164.mkv +谷炫錞-阳光,http://em.21dtv.com/songs/60052163.mkv +佤妮-秧歌,http://em.21dtv.com/songs/60052150.mkv +梁咏琪-验光(演唱会),http://em.21dtv.com/songs/60052124.mkv +陈珊妮-演歌,http://em.21dtv.com/songs/60052108.mkv +五月天-牙关,http://em.21dtv.com/songs/60051875.mkv +佚名-young girl,http://em.21dtv.com/songs/60006590.mkv +郑君威-缘份,http://em.21dtv.com/songs/60135807.mkv +陈超超-药方,http://em.21dtv.com/songs/60130857.mkv +黄麒璇-言风,http://em.21dtv.com/songs/60127631.mkv +梦苇-缘分,http://em.21dtv.com/songs/60125826.mkv +黄英-远方,http://em.21dtv.com/songs/60124758.mkv +沙宝亮-远方,http://em.21dtv.com/songs/60124200.mkv +李鸿玉-远方,http://em.21dtv.com/songs/60122874.mkv +东来东往-远方,http://em.21dtv.com/songs/60122459.mkv +许美静-远方,http://em.21dtv.com/songs/60120941.mkv +郑俊弘-扬帆,http://em.21dtv.com/songs/60118097.mkv +张信哲-远方,http://em.21dtv.com/songs/60111863.mkv +徐浩峻-缘份,http://em.21dtv.com/songs/60109369.mkv +东晓-云帆,http://em.21dtv.com/songs/60105545.mkv +阿华-缘分,http://em.21dtv.com/songs/60102853.mkv +郁可唯-远方,http://em.21dtv.com/songs/60102792.mkv +孝天-远方,http://em.21dtv.com/songs/60094064.mkv +王馨平+郑嘉颖-缘份,http://em.21dtv.com/songs/60093007.mkv +五月-缘份,http://em.21dtv.com/songs/60090517.mkv +林良乐-缘份,http://em.21dtv.com/songs/60088124.mkv +曾静玟-远方,http://em.21dtv.com/songs/60087086.mkv +于台烟-缘份,http://em.21dtv.com/songs/60087085.mkv +刘宜-缘分(演唱会),http://em.21dtv.com/songs/60087084.mkv +朱泺冰-远方,http://em.21dtv.com/songs/60080866.mkv +李之勤-野风,http://em.21dtv.com/songs/60080291.mkv +李健科-缘分,http://em.21dtv.com/songs/60079389.mkv +乔任梁-夜风,http://em.21dtv.com/songs/60079057.mkv +李卓庭-养分,http://em.21dtv.com/songs/60079030.mkv +张可儿-元芳,http://em.21dtv.com/songs/60072763.mkv +徐健淇-缘份,http://em.21dtv.com/songs/60070198.mkv +NICKI MINAJ-young forever,http://em.21dtv.com/songs/60068014.mkv +DEAR JANE-yellow fever,http://em.21dtv.com/songs/60068012.mkv +陈思思-缘分,http://em.21dtv.com/songs/60067750.mkv +高艺菲-远方,http://em.21dtv.com/songs/60065421.mkv +草蜢-缘份(演唱会),http://em.21dtv.com/songs/60065420.mkv +德龙-缘分,http://em.21dtv.com/songs/60065418.mkv +张信哲-远方,http://em.21dtv.com/songs/60056132.mkv +艳阳天-远方,http://em.21dtv.com/songs/60056131.mkv +红布条+李悦君-远方,http://em.21dtv.com/songs/60056130.mkv +何洁-远方,http://em.21dtv.com/songs/60056129.mkv +S.H.E-远方,http://em.21dtv.com/songs/60056128.mkv +艳阳天-远方(舞曲版),http://em.21dtv.com/songs/60056127.mkv +张国荣+梅艳芳-缘份,http://em.21dtv.com/songs/60056081.mkv +詹曼铃-缘份,http://em.21dtv.com/songs/60056080.mkv +佚名-缘份,http://em.21dtv.com/songs/60056079.mkv +林文龙+杨采妮-缘份,http://em.21dtv.com/songs/60056078.mkv +高向鹏+傅振辉-缘份,http://em.21dtv.com/songs/60056077.mkv +高向鹏+方怡萍-缘份,http://em.21dtv.com/songs/60056076.mkv +陈中+曾心梅-缘份,http://em.21dtv.com/songs/60056075.mkv +曾心梅+陈中-缘份,http://em.21dtv.com/songs/60056074.mkv +草蜢+王馨平-缘份,http://em.21dtv.com/songs/60056073.mkv +蔡幸娟-缘份,http://em.21dtv.com/songs/60056072.mkv +梅艳芳+谭咏麟-缘份(演唱会),http://em.21dtv.com/songs/60056071.mkv +刘浩龙+王菀之-缘份(演唱会),http://em.21dtv.com/songs/60056070.mkv +李克勤+容祖儿-缘份(演唱会),http://em.21dtv.com/songs/60056069.mkv +林美-缘份(无原唱),http://em.21dtv.com/songs/60056068.mkv +王菀之+刘浩龙-缘份(HD演唱会),http://em.21dtv.com/songs/60056067.mkv +五月-缘分,http://em.21dtv.com/songs/60056060.mkv +陈瑞-缘分,http://em.21dtv.com/songs/60056059.mkv +尹光-银凤(演唱会),http://em.21dtv.com/songs/60054340.mkv +郑中基-音符,http://em.21dtv.com/songs/60054314.mkv +郑中基-音符(演唱会),http://em.21dtv.com/songs/60054313.mkv +黄浩伦+辜靖洁-依附,http://em.21dtv.com/songs/60053973.mkv +李文亮-衣服,http://em.21dtv.com/songs/60053968.mkv +陈冠希-夜风,http://em.21dtv.com/songs/60052560.mkv +姜育恒-扬帆,http://em.21dtv.com/songs/60052152.mkv +赵学而-眼福,http://em.21dtv.com/songs/60052037.mkv +王小娟-影儿,http://em.21dtv.com/songs/60128221.mkv +鲁向卉-鱼儿,http://em.21dtv.com/songs/60098957.mkv +岚-your eyes,http://em.21dtv.com/songs/60068015.mkv +杨谱评-鱼儿,http://em.21dtv.com/songs/60055518.mkv +杨普评-鱼儿(无原唱),http://em.21dtv.com/songs/60055517.mkv +马天宇-婴儿,http://em.21dtv.com/songs/60054456.mkv +陈倩倩-婴儿,http://em.21dtv.com/songs/60054455.mkv +容祖儿-youre everything(演唱会),http://em.21dtv.com/songs/60006607.mkv +佚名-your eyes,http://em.21dtv.com/songs/60006594.mkv +林子祥-雨点,http://em.21dtv.com/songs/60133869.mkv +轻晨电乐团-雨都,http://em.21dtv.com/songs/60132943.mkv +林子祥-雨点,http://em.21dtv.com/songs/60132611.mkv +轻晨电乐队-雨都,http://em.21dtv.com/songs/60131859.mkv +杨秀焜-原点,http://em.21dtv.com/songs/60131531.mkv +西风-约定,http://em.21dtv.com/songs/60128388.mkv +刘天义-约定,http://em.21dtv.com/songs/60125177.mkv +岩罕建-约定,http://em.21dtv.com/songs/60124831.mkv +金婷婷-约定,http://em.21dtv.com/songs/60123253.mkv +童波-夜店,http://em.21dtv.com/songs/60123061.mkv +李菓-原点,http://em.21dtv.com/songs/60121787.mkv +SNH48-夜蝶,http://em.21dtv.com/songs/60119190.mkv +唐美华-约定,http://em.21dtv.com/songs/60115071.mkv +EXO-约定,http://em.21dtv.com/songs/60114939.mkv +尊华-一定,http://em.21dtv.com/songs/60113419.mkv +金韩一-影帝,http://em.21dtv.com/songs/60108938.mkv +西单女孩-原点,http://em.21dtv.com/songs/60107995.mkv +张天龙-缘点,http://em.21dtv.com/songs/60107711.mkv +金韩一-影帝,http://em.21dtv.com/songs/60107291.mkv +白敬亭-一朵,http://em.21dtv.com/songs/60106160.mkv +她她-约定,http://em.21dtv.com/songs/60104901.mkv +INITIAL RETRIBUTION-涌动,http://em.21dtv.com/songs/60096785.mkv +SNH48-夜蝶,http://em.21dtv.com/songs/60096743.mkv +陈奕迅-约定,http://em.21dtv.com/songs/60093406.mkv +谢旦-约定,http://em.21dtv.com/songs/60089473.mkv +少女部落格-云端,http://em.21dtv.com/songs/60084502.mkv +汪东城+蔡昱佑+曾沛慈-约定,http://em.21dtv.com/songs/60084484.mkv +高安-原地,http://em.21dtv.com/songs/60084474.mkv +李翊君+温岚+韩磊-雨蝶,http://em.21dtv.com/songs/60084461.mkv +陆昱霖-一对,http://em.21dtv.com/songs/60081106.mkv +蒋佳兵-原点,http://em.21dtv.com/songs/60079366.mkv +0086男团-一定(演唱会),http://em.21dtv.com/songs/60072702.mkv +张政雄-约定,http://em.21dtv.com/songs/60065425.mkv +JULIE+JR-夜灯,http://em.21dtv.com/songs/60065319.mkv +琼雪卓玛-约定,http://em.21dtv.com/songs/60062844.mkv +MAKIYO-夜电,http://em.21dtv.com/songs/60062107.mkv +云朵-云朵,http://em.21dtv.com/songs/60056643.mkv +沈元-云端,http://em.21dtv.com/songs/60056641.mkv +周蕙-约定,http://em.21dtv.com/songs/60056251.mkv +张信哲-约定,http://em.21dtv.com/songs/60056250.mkv +许志安-约定,http://em.21dtv.com/songs/60056249.mkv +王菲-约定,http://em.21dtv.com/songs/60056248.mkv +黄中原+傅薇-约定,http://em.21dtv.com/songs/60056247.mkv +光良-约定,http://em.21dtv.com/songs/60056246.mkv +欉震天+廖嘉翎-约定,http://em.21dtv.com/songs/60056245.mkv +陈雷+甲子蕙-约定,http://em.21dtv.com/songs/60056244.mkv +阿牛-约定,http://em.21dtv.com/songs/60056243.mkv +周蕙-约定(演唱会),http://em.21dtv.com/songs/60056242.mkv +张学友-约定(演唱会),http://em.21dtv.com/songs/60056241.mkv +张崇基+张崇德-约定(演唱会),http://em.21dtv.com/songs/60056240.mkv +农夫-约定(演唱会),http://em.21dtv.com/songs/60056239.mkv +黄耀明-约定(演唱会),http://em.21dtv.com/songs/60056238.mkv +光良-约定(演唱会),http://em.21dtv.com/songs/60056237.mkv +陈小春-约定(演唱会),http://em.21dtv.com/songs/60056236.mkv +吴佳展-约定(无原唱),http://em.21dtv.com/songs/60056235.mkv +同班同学-约定(无原唱),http://em.21dtv.com/songs/60056234.mkv +欉震天+廖嘉翎-约定(无原唱),http://em.21dtv.com/songs/60056233.mkv +翁立友+陈亚兰-怨妒(无原唱),http://em.21dtv.com/songs/60056178.mkv +杨大为-原点,http://em.21dtv.com/songs/60055919.mkv +巫启贤-原点,http://em.21dtv.com/songs/60055918.mkv +蔡健雅+孙燕姿-原点,http://em.21dtv.com/songs/60055917.mkv +5566-原点,http://em.21dtv.com/songs/60055916.mkv +蓝弘钦-原点(无原唱),http://em.21dtv.com/songs/60055915.mkv +佚名-遇到,http://em.21dtv.com/songs/60055835.mkv +王蓝茵-遇到,http://em.21dtv.com/songs/60055834.mkv +吴泓君-雨蝶,http://em.21dtv.com/songs/60055643.mkv +李翊君-雨蝶,http://em.21dtv.com/songs/60055642.mkv +邝文珣-雨滴,http://em.21dtv.com/songs/60055640.mkv +那英-余地,http://em.21dtv.com/songs/60055502.mkv +宇桐非-游荡,http://em.21dtv.com/songs/60054998.mkv +魏如昀-拥戴,http://em.21dtv.com/songs/60054595.mkv +关牧村-鹰笛,http://em.21dtv.com/songs/60054479.mkv +龙千玉-艺旦,http://em.21dtv.com/songs/60054107.mkv +高向鹏+傅振辉+黄思婷+林姗-艺旦(无原唱),http://em.21dtv.com/songs/60054106.mkv +陈小春-一对,http://em.21dtv.com/songs/60052883.mkv +张卫健-夜蝶,http://em.21dtv.com/songs/60052557.mkv +原子霏-月出,http://em.21dtv.com/songs/60130159.mkv +龚柯允+林欣彤-洋葱,http://em.21dtv.com/songs/60121197.mkv +曹权权-油彩,http://em.21dtv.com/songs/60116869.mkv +陈粒-远辰,http://em.21dtv.com/songs/60114873.mkv +王筝-一程,http://em.21dtv.com/songs/60114690.mkv +Tf boys-洋葱,http://em.21dtv.com/songs/60101830.mkv +茜拉-洋葱,http://em.21dtv.com/songs/60099462.mkv +伍佰-一次,http://em.21dtv.com/songs/60096648.mkv +五月天-洋葱,http://em.21dtv.com/songs/60096035.mkv +培圣-鱼刺,http://em.21dtv.com/songs/60087620.mkv +姚兵-洋葱,http://em.21dtv.com/songs/60087033.mkv +刘孟哲-盐城,http://em.21dtv.com/songs/60087027.mkv +CITY魅-you can,http://em.21dtv.com/songs/60086384.mkv +DAYDREAM+黄威尔-忧愁,http://em.21dtv.com/songs/60084432.mkv +小龙宋-雨愁,http://em.21dtv.com/songs/60081213.mkv +罗勤颖-雨城,http://em.21dtv.com/songs/60080236.mkv +余天龙-晕船,http://em.21dtv.com/songs/60080170.mkv +七朵组合-咏春,http://em.21dtv.com/songs/60070178.mkv +平安-洋葱,http://em.21dtv.com/songs/60070119.mkv +龙飘飘-迎春,http://em.21dtv.com/songs/60065375.mkv +张崇基+张崇德-洋葱(演唱会),http://em.21dtv.com/songs/60065309.mkv +徐健淇-钥匙,http://em.21dtv.com/songs/60063203.mkv +兰鸽-夜场,http://em.21dtv.com/songs/60062560.mkv +国巍-雨村,http://em.21dtv.com/songs/60055636.mkv +张信哲-愚蠢,http://em.21dtv.com/songs/60055566.mkv +佚名-渔唱,http://em.21dtv.com/songs/60055541.mkv +叶民志-有春(无原唱),http://em.21dtv.com/songs/60055101.mkv +王菲-邮差,http://em.21dtv.com/songs/60054975.mkv +小安-忧愁,http://em.21dtv.com/songs/60054945.mkv +黄乙玲-忧愁,http://em.21dtv.com/songs/60054944.mkv +佚名-忧愁(无原唱),http://em.21dtv.com/songs/60054943.mkv +ERIC KWOK-应承,http://em.21dtv.com/songs/60054545.mkv +邝美云-隐藏,http://em.21dtv.com/songs/60054379.mkv +5566-一次,http://em.21dtv.com/songs/60052817.mkv +曾轶可-夜车,http://em.21dtv.com/songs/60052551.mkv +玉兰花-夜场,http://em.21dtv.com/songs/60052550.mkv +郭富城-野草(演唱会),http://em.21dtv.com/songs/60052456.mkv +林晓培-钥匙,http://em.21dtv.com/songs/60052409.mkv +杨千嬅-咬唇,http://em.21dtv.com/songs/60052344.mkv +杨千嬅-咬唇(演唱会),http://em.21dtv.com/songs/60052343.mkv +童唱-摇船,http://em.21dtv.com/songs/60052259.mkv +杨宗纬-洋葱,http://em.21dtv.com/songs/60052220.mkv +丁当-洋葱,http://em.21dtv.com/songs/60052219.mkv +杨千嬅-洋葱(演唱会),http://em.21dtv.com/songs/60052218.mkv +SECONDHAND SERENADE-your call,http://em.21dtv.com/songs/60006592.mkv +萧亚轩-yellow chrtmas,http://em.21dtv.com/songs/60006450.mkv +李玟-18,http://em.21dtv.com/songs/60135370.mkv +乐小虎-拥抱,http://em.21dtv.com/songs/60134853.mkv +李玟-18,http://em.21dtv.com/songs/60132562.mkv +小贱-一半,http://em.21dtv.com/songs/60129006.mkv +东方依依+陈汉-拥抱,http://em.21dtv.com/songs/60120278.mkv +齐航-拥抱,http://em.21dtv.com/songs/60120175.mkv +周晓鸥-拥抱,http://em.21dtv.com/songs/60119359.mkv +DJ阿先+陈汉-拥抱,http://em.21dtv.com/songs/60119133.mkv +薛之谦-一半,http://em.21dtv.com/songs/60116236.mkv +伊雪-哑巴,http://em.21dtv.com/songs/60114387.mkv +万芳-一半,http://em.21dtv.com/songs/60109921.mkv +陈汉-拥抱,http://em.21dtv.com/songs/60106405.mkv +全敏珠+Yuna Kim-雨别,http://em.21dtv.com/songs/60101916.mkv +XUN-哑巴,http://em.21dtv.com/songs/60096756.mkv +唐一嘉+范玮琪-拥抱,http://em.21dtv.com/songs/60094439.mkv +胡东清-拥抱(风景),http://em.21dtv.com/songs/60085254.mkv +HERCULES AND LOVE AFFAIR-you belong,http://em.21dtv.com/songs/60082412.mkv +欧阳青-游悲,http://em.21dtv.com/songs/60081671.mkv +谭维维-拥抱,http://em.21dtv.com/songs/60081397.mkv +王岩-拥抱,http://em.21dtv.com/songs/60079230.mkv +曹雅雯-一半,http://em.21dtv.com/songs/60079074.mkv +CHRISTINA AGUILERA-your body,http://em.21dtv.com/songs/60074200.mkv +阿吉仔-也罢,http://em.21dtv.com/songs/60071404.mkv +THE NAKED AND FAMOUS-young blood,http://em.21dtv.com/songs/60070423.mkv +曹震豪-拥抱,http://em.21dtv.com/songs/60070173.mkv +陈法拉-一半,http://em.21dtv.com/songs/60068906.mkv +洪卓立-哑巴,http://em.21dtv.com/songs/60068895.mkv +欧阳青-游悲(演唱会),http://em.21dtv.com/songs/60065392.mkv +吴忠明-永不,http://em.21dtv.com/songs/60065377.mkv +邓紫棋-十八(演唱会),http://em.21dtv.com/songs/60063511.mkv +张洪量-悦变,http://em.21dtv.com/songs/60056568.mkv +BEYOND-预备,http://em.21dtv.com/songs/60055803.mkv +张宇-有伴,http://em.21dtv.com/songs/60055097.mkv +伍家辉-拥抱,http://em.21dtv.com/songs/60054573.mkv +五月天-拥抱,http://em.21dtv.com/songs/60054572.mkv +苏永康-拥抱,http://em.21dtv.com/songs/60054571.mkv +欧阳菲菲-拥抱,http://em.21dtv.com/songs/60054570.mkv +纪炎炎-拥抱,http://em.21dtv.com/songs/60054569.mkv +胡东清-拥抱,http://em.21dtv.com/songs/60054568.mkv +何耀珊-拥抱,http://em.21dtv.com/songs/60054567.mkv +俞灏明-拥抱(演唱会),http://em.21dtv.com/songs/60054566.mkv +谭咏麟-拥抱(演唱会),http://em.21dtv.com/songs/60054565.mkv +林德-拥抱(无原唱),http://em.21dtv.com/songs/60054564.mkv +汪峰-硬币,http://em.21dtv.com/songs/60054560.mkv +汪峰-硬币(演唱会),http://em.21dtv.com/songs/60054559.mkv +童声合唱-银杯,http://em.21dtv.com/songs/60054339.mkv +秀兰玛雅-一步,http://em.21dtv.com/songs/60052785.mkv +伍思凯-一半,http://em.21dtv.com/songs/60052741.mkv +王建杰+刘依纯-一半,http://em.21dtv.com/songs/60052740.mkv +丁当-一半,http://em.21dtv.com/songs/60052739.mkv +B.A.D-一半,http://em.21dtv.com/songs/60052738.mkv +李泉-夜奔(演唱会),http://em.21dtv.com/songs/60052547.mkv +MR.-摇摆,http://em.21dtv.com/songs/60052249.mkv +王菲-阳宝,http://em.21dtv.com/songs/60052159.mkv +JAMES BLUNT-youre beautiful,http://em.21dtv.com/songs/60006606.mkv +PAUL MCCARTNEY-young boy,http://em.21dtv.com/songs/60006589.mkv +佚名-yellow bird,http://em.21dtv.com/songs/60006449.mkv +王力宏-ya birthday(演唱会),http://em.21dtv.com/songs/60006442.mkv +乔海洋-遗爱,http://em.21dtv.com/songs/60109943.mkv +安图声乐队-有爱,http://em.21dtv.com/songs/60106780.mkv +高艺菲-欲爱,http://em.21dtv.com/songs/60106473.mkv +何守建-友爱,http://em.21dtv.com/songs/60103077.mkv +陈洁仪-夜安,http://em.21dtv.com/songs/60093479.mkv +李佑萱-忆爱,http://em.21dtv.com/songs/60066531.mkv +杨丞琳-雨爱,http://em.21dtv.com/songs/60055632.mkv +欢子-愚爱,http://em.21dtv.com/songs/60055565.mkv +金学峰-友爱(演唱会),http://em.21dtv.com/songs/60055048.mkv +LIONEL RICHIE-you are,http://em.21dtv.com/songs/60006519.mkv +ATOMIC KITTEN-you are,http://em.21dtv.com/songs/60006518.mkv +梁汉文-y3(演唱会),http://em.21dtv.com/songs/60006441.mkv +曾玮中+楼心潼-选择,http://em.21dtv.com/songs/60135335.mkv +天籁天-香皂,http://em.21dtv.com/songs/60131308.mkv +自由引力-选择,http://em.21dtv.com/songs/60129517.mkv +李琦-心醉,http://em.21dtv.com/songs/60129240.mkv +N.P.E.自由引力-选择,http://em.21dtv.com/songs/60128693.mkv +双笙-栖枝,http://em.21dtv.com/songs/60127797.mkv +李志-寻找,http://em.21dtv.com/songs/60127014.mkv +张天龙-星座,http://em.21dtv.com/songs/60126870.mkv +张献仁-侠踪,http://em.21dtv.com/songs/60125525.mkv +Gary+MIWOO-戏子,http://em.21dtv.com/songs/60124876.mkv +钟舒祺-嚣张,http://em.21dtv.com/songs/60123268.mkv +王东林-心贼,http://em.21dtv.com/songs/60119794.mkv +王丽达+汤子星-选择,http://em.21dtv.com/songs/60118770.mkv +鹿晗-勋章,http://em.21dtv.com/songs/60117399.mkv +鹿晗-勋章,http://em.21dtv.com/songs/60116404.mkv +姚雨鑫-寻找,http://em.21dtv.com/songs/60115776.mkv +马智宇-选择,http://em.21dtv.com/songs/60110703.mkv +赵一颐-仙踪,http://em.21dtv.com/songs/60108903.mkv +任妙音-寻找,http://em.21dtv.com/songs/60108293.mkv +胡艾莲-心烛,http://em.21dtv.com/songs/60107960.mkv +孙露-心醉,http://em.21dtv.com/songs/60107658.mkv +刘天助-戏子,http://em.21dtv.com/songs/60106636.mkv +侧田^刘浩龙-行者,http://em.21dtv.com/songs/60105590.mkv +阿烁-心罪,http://em.21dtv.com/songs/60101549.mkv +刘思涵-下注,http://em.21dtv.com/songs/60101277.mkv +凌云-星座,http://em.21dtv.com/songs/60098129.mkv +莫龙丹-现在,http://em.21dtv.com/songs/60096726.mkv +孙俪心-选择,http://em.21dtv.com/songs/60094052.mkv +许绍洋-须渣,http://em.21dtv.com/songs/60092069.mkv +黑豹乐队-寻找,http://em.21dtv.com/songs/60086077.mkv +盖鸣晖-心债(演唱会),http://em.21dtv.com/songs/60084258.mkv +马浚伟-心照,http://em.21dtv.com/songs/60084252.mkv +顾凯-选择,http://em.21dtv.com/songs/60080529.mkv +李俊旭-嚣张,http://em.21dtv.com/songs/60080203.mkv +李志-寻找,http://em.21dtv.com/songs/60078984.mkv +龚月-心战,http://em.21dtv.com/songs/60078800.mkv +梁佑嘉-戏子,http://em.21dtv.com/songs/60078532.mkv +郑能-寻找,http://em.21dtv.com/songs/60071395.mkv +冷漠-下注,http://em.21dtv.com/songs/60070031.mkv +晟瑶-选择,http://em.21dtv.com/songs/60068889.mkv +李丽霞-心债(演唱会),http://em.21dtv.com/songs/60068863.mkv +MR.-现在,http://em.21dtv.com/songs/60066456.mkv +黄耀明-心债(演唱会),http://em.21dtv.com/songs/60065247.mkv +林欣彤-洗澡(演唱会),http://em.21dtv.com/songs/60062657.mkv +林欣彤-洗澡,http://em.21dtv.com/songs/60061740.mkv +李克勤-寻最,http://em.21dtv.com/songs/60051852.mkv +佚名-寻找,http://em.21dtv.com/songs/60051838.mkv +斯琴格日乐-寻找,http://em.21dtv.com/songs/60051837.mkv +林宇中-寻找,http://em.21dtv.com/songs/60051836.mkv +黄立行-寻找,http://em.21dtv.com/songs/60051835.mkv +范玮琪-寻找,http://em.21dtv.com/songs/60051834.mkv +大风-寻找,http://em.21dtv.com/songs/60051833.mkv +蜜雪薇琪-学着,http://em.21dtv.com/songs/60051664.mkv +詹雅雯-选择,http://em.21dtv.com/songs/60051619.mkv +叶倩文+吴奇隆-选择,http://em.21dtv.com/songs/60051618.mkv +林子祥+叶倩文-选择,http://em.21dtv.com/songs/60051617.mkv +高胜美-选择,http://em.21dtv.com/songs/60051616.mkv +唐朝乐队-选择(演唱会),http://em.21dtv.com/songs/60051614.mkv +王默君-选择(无原唱),http://em.21dtv.com/songs/60051613.mkv +佚名-璇子,http://em.21dtv.com/songs/60051610.mkv +芭比-旋转,http://em.21dtv.com/songs/60051594.mkv +佚名-幸子,http://em.21dtv.com/songs/60051432.mkv +佚名-幸子(无原唱),http://em.21dtv.com/songs/60051431.mkv +小峰峰-星座,http://em.21dtv.com/songs/60051169.mkv +王力宏-星座,http://em.21dtv.com/songs/60051168.mkv +YUKI-星座,http://em.21dtv.com/songs/60051167.mkv +古巨基-星战(演唱会),http://em.21dtv.com/songs/60051163.mkv +希亚-心醉,http://em.21dtv.com/songs/60050770.mkv +王杰-心醉,http://em.21dtv.com/songs/60050769.mkv +王建杰-心醉,http://em.21dtv.com/songs/60050768.mkv +牛朝阳-心醉,http://em.21dtv.com/songs/60050767.mkv +傅振辉-心醉,http://em.21dtv.com/songs/60050766.mkv +郑伊健-心照,http://em.21dtv.com/songs/60050713.mkv +刘德华-心照,http://em.21dtv.com/songs/60050712.mkv +郑伊健-心照(演唱会),http://em.21dtv.com/songs/60050711.mkv +罗文-心债,http://em.21dtv.com/songs/60050709.mkv +余安安-心债(演唱会),http://em.21dtv.com/songs/60050707.mkv +梅艳芳-心债(演唱会),http://em.21dtv.com/songs/60050706.mkv +陈慧琳-心债(演唱会),http://em.21dtv.com/songs/60050705.mkv +佚名-卸妆,http://em.21dtv.com/songs/60050031.mkv +金素梅-卸妆,http://em.21dtv.com/songs/60050030.mkv +白冰冰-卸妆,http://em.21dtv.com/songs/60050029.mkv +方怡萍-卸妆(无原唱),http://em.21dtv.com/songs/60050028.mkv +曾来德-写字,http://em.21dtv.com/songs/60050026.mkv +A-DAY-写真,http://em.21dtv.com/songs/60050024.mkv +A-DAY-写真(演唱会),http://em.21dtv.com/songs/60050023.mkv +古巨基-小指,http://em.21dtv.com/songs/60049898.mkv +万芳-箱子(演唱会),http://em.21dtv.com/songs/60048964.mkv +林吉玲-箱子(无原唱),http://em.21dtv.com/songs/60048963.mkv +黄馨-先知,http://em.21dtv.com/songs/60048462.mkv +关智斌-先知,http://em.21dtv.com/songs/60048461.mkv +左小岸-夏至,http://em.21dtv.com/songs/60048434.mkv +时剑波-下坠,http://em.21dtv.com/songs/60048357.mkv +苏永康-洗澡,http://em.21dtv.com/songs/60048099.mkv +刘浩龙-洗澡,http://em.21dtv.com/songs/60048098.mkv +戴尚辉-西藏,http://em.21dtv.com/songs/60047900.mkv +我的蜜瓜分你一半+猫黛丽赫本-悬崖,http://em.21dtv.com/songs/60128026.mkv +张瀛仁-星愿,http://em.21dtv.com/songs/60135219.mkv +BEJ48-宣言,http://em.21dtv.com/songs/60134647.mkv +杭天琪+付笛生-心愿,http://em.21dtv.com/songs/60133865.mkv +逍遥香香-相约,http://em.21dtv.com/songs/60132964.mkv +谢金晶-心愿,http://em.21dtv.com/songs/60132888.mkv +尚杰-雄鹰,http://em.21dtv.com/songs/60132405.mkv +孙盛希-嫌疑,http://em.21dtv.com/songs/60132361.mkv +谈莉娜-吸引,http://em.21dtv.com/songs/60131810.mkv +翁航融+刘洲成-学友,http://em.21dtv.com/songs/60131734.mkv +熊思嘉-幸孕,http://em.21dtv.com/songs/60131625.mkv +魏如萱-小鱼,http://em.21dtv.com/songs/60130915.mkv +李菓-吸引,http://em.21dtv.com/songs/60130436.mkv +[Group] +groupName=十六万歌曲MV等 - 17 +赵善存-小院,http://em.21dtv.com/songs/60129637.mkv +毕程漉-校园,http://em.21dtv.com/songs/60128151.mkv +王青-逍遥,http://em.21dtv.com/songs/60127218.mkv +李志-下雨,http://em.21dtv.com/songs/60127005.mkv +叶璐-心依,http://em.21dtv.com/songs/60125265.mkv +伍佳丽-相遇,http://em.21dtv.com/songs/60125114.mkv +Hiat-昔言,http://em.21dtv.com/songs/60124892.mkv +SNH48-星愿,http://em.21dtv.com/songs/60123539.mkv +涓子-心愿,http://em.21dtv.com/songs/60122965.mkv +张信哲-信仰,http://em.21dtv.com/songs/60118552.mkv +王莹-乡音,http://em.21dtv.com/songs/60115307.mkv +巴图-祥云,http://em.21dtv.com/songs/60115135.mkv +郑添龙-相遇,http://em.21dtv.com/songs/60114130.mkv +甲子慧-星愿,http://em.21dtv.com/songs/60111310.mkv +马智宇-星月,http://em.21dtv.com/songs/60110694.mkv +王星策-需要,http://em.21dtv.com/songs/60110401.mkv +汤潮-信仰,http://em.21dtv.com/songs/60110328.mkv +梁耀燮+许嘉允-许愿,http://em.21dtv.com/songs/60106043.mkv +林欣彤-小羊,http://em.21dtv.com/songs/60105187.mkv +汪峰-眩晕,http://em.21dtv.com/songs/60102460.mkv +郑耿一-信仰,http://em.21dtv.com/songs/60101529.mkv +厨房仔+陈冠希-需要,http://em.21dtv.com/songs/60101283.mkv +孙思怡-下雨,http://em.21dtv.com/songs/60100830.mkv +韩红-心语,http://em.21dtv.com/songs/60100632.mkv +印玉莲-相遇,http://em.21dtv.com/songs/60099831.mkv +杨培安-信仰,http://em.21dtv.com/songs/60096760.mkv +宜璇-炫耀,http://em.21dtv.com/songs/60094483.mkv +周杰伦-心鱼,http://em.21dtv.com/songs/60089741.mkv +李晓阳-许愿,http://em.21dtv.com/songs/60086067.mkv +忘了又如何-小丫,http://em.21dtv.com/songs/60084221.mkv +毕玉凝-祥云,http://em.21dtv.com/songs/60084188.mkv +许巍-喜悦,http://em.21dtv.com/songs/60084151.mkv +高枫-宣言,http://em.21dtv.com/songs/60081894.mkv +萱萱+崔兰花-悬崖,http://em.21dtv.com/songs/60081481.mkv +孙雨祥-相遇,http://em.21dtv.com/songs/60081151.mkv +黄征-信仰,http://em.21dtv.com/songs/60080584.mkv +GREEEEN-雪の音,http://em.21dtv.com/songs/60078969.mkv +星弟-炫耀,http://em.21dtv.com/songs/60078964.mkv +敖敦高娃-雄鹰,http://em.21dtv.com/songs/60078953.mkv +蔡小虎-心雨,http://em.21dtv.com/songs/60078797.mkv +韩开一-心仪,http://em.21dtv.com/songs/60078794.mkv +霍建华-逍遥,http://em.21dtv.com/songs/60078672.mkv +回音哥-巷雨,http://em.21dtv.com/songs/60078659.mkv +雪莲三姐妹-祥云,http://em.21dtv.com/songs/60078613.mkv +郑少秋+汪明荃-香夭(演唱会),http://em.21dtv.com/songs/60078611.mkv +天籁天-夕阳,http://em.21dtv.com/songs/60078491.mkv +林霞-雪雁,http://em.21dtv.com/songs/60072680.mkv +武艺-许愿,http://em.21dtv.com/songs/60066501.mkv +谢金燕-许愿,http://em.21dtv.com/songs/60065289.mkv +顾莉雅-新月,http://em.21dtv.com/songs/60065262.mkv +余丽-星愿,http://em.21dtv.com/songs/60063294.mkv +龙千玉+袁小迪-续缘,http://em.21dtv.com/songs/60062716.mkv +拉热吉-心缘,http://em.21dtv.com/songs/60062549.mkv +陈依婷-心愿,http://em.21dtv.com/songs/60061771.mkv +汤灿-雪意,http://em.21dtv.com/songs/60051749.mkv +佚名-雪夜,http://em.21dtv.com/songs/60051746.mkv +刘文娟-雪夜,http://em.21dtv.com/songs/60051745.mkv +ALAN-炫影,http://em.21dtv.com/songs/60051629.mkv +陈洁仪-炫耀,http://em.21dtv.com/songs/60051627.mkv +ALAN-旋影,http://em.21dtv.com/songs/60051593.mkv +齐秦-悬崖,http://em.21dtv.com/songs/60051586.mkv +太极乐队-悬崖(演唱会),http://em.21dtv.com/songs/60051585.mkv +邓建明-悬崖(演唱会),http://em.21dtv.com/songs/60051584.mkv +魏金栋-宣言,http://em.21dtv.com/songs/60051581.mkv +胡彦斌-宣言,http://em.21dtv.com/songs/60051580.mkv +詹雅雯-续缘,http://em.21dtv.com/songs/60051579.mkv +古巨基+梁咏琪-许愿,http://em.21dtv.com/songs/60051564.mkv +孙国庆-雄鹰,http://em.21dtv.com/songs/60051482.mkv +西卿-汹涌,http://em.21dtv.com/songs/60051474.mkv +凤飞飞-星月,http://em.21dtv.com/songs/60051158.mkv +周治平+童安格-星月(演唱会),http://em.21dtv.com/songs/60051157.mkv +张力尹-星愿,http://em.21dtv.com/songs/60051156.mkv +群星-星愿,http://em.21dtv.com/songs/60051155.mkv +邓丽君-星愿,http://em.21dtv.com/songs/60051154.mkv +费玉清-星语,http://em.21dtv.com/songs/60051150.mkv +佚名-星语(无原唱),http://em.21dtv.com/songs/60051149.mkv +张信哲-信仰,http://em.21dtv.com/songs/60051022.mkv +杨坤-信仰,http://em.21dtv.com/songs/60051021.mkv +林依霖-信仰,http://em.21dtv.com/songs/60051020.mkv +韩磊-信仰,http://em.21dtv.com/songs/60051019.mkv +姜育恒-新月(无原唱),http://em.21dtv.com/songs/60050986.mkv +易欣-欣愿,http://em.21dtv.com/songs/60050779.mkv +林志颖-心云(演唱会),http://em.21dtv.com/songs/60050696.mkv +佚名-心愿,http://em.21dtv.com/songs/60050694.mkv +秀兰玛雅-心愿,http://em.21dtv.com/songs/60050693.mkv +孙燕姿-心愿,http://em.21dtv.com/songs/60050692.mkv +付笛声-心愿,http://em.21dtv.com/songs/60050691.mkv +佚名-心愿(无原唱),http://em.21dtv.com/songs/60050690.mkv +何以奇-心语,http://em.21dtv.com/songs/60050689.mkv +卓依婷-心雨,http://em.21dtv.com/songs/60050688.mkv +周杰伦-心雨,http://em.21dtv.com/songs/60050687.mkv +毛宁+杨钰莹-心雨,http://em.21dtv.com/songs/60050686.mkv +李碧华-心雨,http://em.21dtv.com/songs/60050685.mkv +高胜美-心雨,http://em.21dtv.com/songs/60050684.mkv +张清芳-心影,http://em.21dtv.com/songs/60050672.mkv +王杰-心瘾,http://em.21dtv.com/songs/60050671.mkv +王杰-心瘾(演唱会),http://em.21dtv.com/songs/60050670.mkv +容祖儿-心瘾(演唱会),http://em.21dtv.com/songs/60050669.mkv +洪杰-心瘾(演唱会),http://em.21dtv.com/songs/60050668.mkv +叶玉卿-心药,http://em.21dtv.com/songs/60050657.mkv +郑希怡-心眼,http://em.21dtv.com/songs/60050656.mkv +张也-笑颜,http://em.21dtv.com/songs/60049966.mkv +佚名-小雨,http://em.21dtv.com/songs/60049882.mkv +小凤凤-小雨,http://em.21dtv.com/songs/60049881.mkv +林玉英-小雨,http://em.21dtv.com/songs/60049880.mkv +张震岳-小宇,http://em.21dtv.com/songs/60049877.mkv +胡雯-小鱼,http://em.21dtv.com/songs/60049874.mkv +小鸣-小野,http://em.21dtv.com/songs/60049869.mkv +关菊英-小燕,http://em.21dtv.com/songs/60049862.mkv +涂紫凝-向月,http://em.21dtv.com/songs/60049358.mkv +陶晶莹-想要,http://em.21dtv.com/songs/60049266.mkv +郭富城-响应,http://em.21dtv.com/songs/60048972.mkv +刘惠鸣+蒋文端-香夭,http://em.21dtv.com/songs/60048958.mkv +草莓救星-香烟(无原唱),http://em.21dtv.com/songs/60048954.mkv +卓依婷-相约,http://em.21dtv.com/songs/60048878.mkv +潘劲东-相约,http://em.21dtv.com/songs/60048877.mkv +孟庭苇-相约,http://em.21dtv.com/songs/60048876.mkv +张卫健-相遇,http://em.21dtv.com/songs/60048868.mkv +五月天-咸鱼,http://em.21dtv.com/songs/60048483.mkv +唐磊-夏夜,http://em.21dtv.com/songs/60048423.mkv +凤飞飞-夏艳(无原唱),http://em.21dtv.com/songs/60048422.mkv +田家达-下雨,http://em.21dtv.com/songs/60048338.mkv +李宇春-下雨,http://em.21dtv.com/songs/60048337.mkv +李宇春-下雨(演唱会),http://em.21dtv.com/songs/60048336.mkv +冷漠-细雨,http://em.21dtv.com/songs/60048229.mkv +梁静茹-喜悦,http://em.21dtv.com/songs/60048190.mkv +李蕙敏-喜宴,http://em.21dtv.com/songs/60048183.mkv +尤雅-惜缘,http://em.21dtv.com/songs/60048036.mkv +蔡谨全-惜缘,http://em.21dtv.com/songs/60048035.mkv +陈冠宇-香香,http://em.21dtv.com/songs/60135897.mkv +尹钟信-谢谢,http://em.21dtv.com/songs/60135152.mkv +龚玥-心香,http://em.21dtv.com/songs/60132036.mkv +吕彬-相信,http://em.21dtv.com/songs/60130175.mkv +汪峰-谢谢,http://em.21dtv.com/songs/60127153.mkv +吴俊宏-秀秀,http://em.21dtv.com/songs/60126691.mkv +杨山-小雪,http://em.21dtv.com/songs/60125742.mkv +苏运莹-心心,http://em.21dtv.com/songs/60124408.mkv +汪峰-谢谢,http://em.21dtv.com/songs/60124193.mkv +速食时代-星星,http://em.21dtv.com/songs/60123220.mkv +牛奶咖啡-星星,http://em.21dtv.com/songs/60122980.mkv +曹格-小小,http://em.21dtv.com/songs/60120585.mkv +蓝乐-夏雪,http://em.21dtv.com/songs/60119947.mkv +龚玥菲-许仙,http://em.21dtv.com/songs/60119081.mkv +陈策-小巷,http://em.21dtv.com/songs/60119023.mkv +浩泽-相信,http://em.21dtv.com/songs/60118749.mkv +沈波-星星,http://em.21dtv.com/songs/60117002.mkv +谢名-相信,http://em.21dtv.com/songs/60114785.mkv +蔡妍-相信,http://em.21dtv.com/songs/60114032.mkv +李翊君-星星,http://em.21dtv.com/songs/60111993.mkv +彩月团-相信,http://em.21dtv.com/songs/60110217.mkv +刘容嘉-小小,http://em.21dtv.com/songs/60110021.mkv +夜郎金鑫-心线,http://em.21dtv.com/songs/60107626.mkv +刘杰洛-心悬,http://em.21dtv.com/songs/60107534.mkv +刘明湘-星星,http://em.21dtv.com/songs/60104823.mkv +丁炜+戚蓝尹-星星,http://em.21dtv.com/songs/60103844.mkv +齐萧-谢谢,http://em.21dtv.com/songs/60100689.mkv +风静儿-栖霞,http://em.21dtv.com/songs/60098935.mkv +五百滩情歌-小歆,http://em.21dtv.com/songs/60096036.mkv +蓝乐-夏雪,http://em.21dtv.com/songs/60094276.mkv +黄耀明-罅隙,http://em.21dtv.com/songs/60093549.mkv +王馨平-细心,http://em.21dtv.com/songs/60093008.mkv +满江-心线,http://em.21dtv.com/songs/60091648.mkv +何润东-休息,http://em.21dtv.com/songs/60090601.mkv +姜昆+唐杰忠-训徙,http://em.21dtv.com/songs/60089783.mkv +罗忆诗-新鲜,http://em.21dtv.com/songs/60088433.mkv +何润东-想像,http://em.21dtv.com/songs/60087314.mkv +赵敬一-相信,http://em.21dtv.com/songs/60086978.mkv +脆乐团-学校,http://em.21dtv.com/songs/60084306.mkv +东篱-息兮,http://em.21dtv.com/songs/60084143.mkv +黄湘怡-星星,http://em.21dtv.com/songs/60081325.mkv +田华-消息,http://em.21dtv.com/songs/60081165.mkv +林育群-星星,http://em.21dtv.com/songs/60081082.mkv +钟欣桐-小璇,http://em.21dtv.com/songs/60080372.mkv +梁君诺-心虚,http://em.21dtv.com/songs/60078793.mkv +林爽-谢谢,http://em.21dtv.com/songs/60078753.mkv +谭晶-相信,http://em.21dtv.com/songs/60078590.mkv +董伟-星星,http://em.21dtv.com/songs/60072664.mkv +郁可唯-小巷,http://em.21dtv.com/songs/60072629.mkv +徐海星-星星,http://em.21dtv.com/songs/60071357.mkv +刘香慈-卸下,http://em.21dtv.com/songs/60070070.mkv +齐秦-巡行,http://em.21dtv.com/songs/60051854.mkv +毛宁-雪乡,http://em.21dtv.com/songs/60051744.mkv +HIROCK乐团-学校(无原唱),http://em.21dtv.com/songs/60051663.mkv +薛之谦-续雪,http://em.21dtv.com/songs/60051578.mkv +知函-许仙,http://em.21dtv.com/songs/60051563.mkv +李玟-虚线,http://em.21dtv.com/songs/60051542.mkv +林忆莲-醒醒,http://em.21dtv.com/songs/60051189.mkv +王婧-星星,http://em.21dtv.com/songs/60051106.mkv +范晓萱-星星,http://em.21dtv.com/songs/60051105.mkv +VITAS-星星,http://em.21dtv.com/songs/60051104.mkv +甲子蕙-星星(无原唱),http://em.21dtv.com/songs/60051103.mkv +叶振棠-信心,http://em.21dtv.com/songs/60051015.mkv +胡松华-新雪,http://em.21dtv.com/songs/60050976.mkv +萧淑慎-新鞋(演唱会),http://em.21dtv.com/songs/60050971.mkv +梁咏琪-新鲜,http://em.21dtv.com/songs/60050965.mkv +许志安-心血(演唱会),http://em.21dtv.com/songs/60050651.mkv +林一峰-心雪,http://em.21dtv.com/songs/60050650.mkv +叶玉卿-心邪,http://em.21dtv.com/songs/60050643.mkv +佚名-谢谢,http://em.21dtv.com/songs/60050038.mkv +潘玮柏-谢谢,http://em.21dtv.com/songs/60050037.mkv +陈奕迅-谢谢,http://em.21dtv.com/songs/60050036.mkv +阿娥-笑笑(无原唱),http://em.21dtv.com/songs/60049958.mkv +任贤齐-小雪,http://em.21dtv.com/songs/60049854.mkv +梅艳芳-小心,http://em.21dtv.com/songs/60049832.mkv +容祖儿-小小,http://em.21dtv.com/songs/60049795.mkv +戴佩妮-小小,http://em.21dtv.com/songs/60049794.mkv +卓依婷-消息,http://em.21dtv.com/songs/60049446.mkv +张宇-消息,http://em.21dtv.com/songs/60049445.mkv +张宇-消息(演唱会),http://em.21dtv.com/songs/60049444.mkv +神马-肖玄,http://em.21dtv.com/songs/60049420.mkv +于立成-想想,http://em.21dtv.com/songs/60049259.mkv +凤凰传奇-香香,http://em.21dtv.com/songs/60048947.mkv +郑晟-相信,http://em.21dtv.com/songs/60048830.mkv +张玮纶-相信,http://em.21dtv.com/songs/60048829.mkv +张栋梁-相信,http://em.21dtv.com/songs/60048828.mkv +叶瑷菱-相信,http://em.21dtv.com/songs/60048827.mkv +五月天-相信,http://em.21dtv.com/songs/60048826.mkv +孙燕姿-相信,http://em.21dtv.com/songs/60048825.mkv +苏打绿-相信,http://em.21dtv.com/songs/60048824.mkv +螺丝钉-相信,http://em.21dtv.com/songs/60048823.mkv +林忆莲-相信,http://em.21dtv.com/songs/60048822.mkv +黎明-相信,http://em.21dtv.com/songs/60048821.mkv +解晓东-相信,http://em.21dtv.com/songs/60048820.mkv +何晶晶-相信,http://em.21dtv.com/songs/60048819.mkv +REAL ONE-相信,http://em.21dtv.com/songs/60048818.mkv +张栋梁-相信(演唱会),http://em.21dtv.com/songs/60048817.mkv +谢安琪-相信(演唱会),http://em.21dtv.com/songs/60048816.mkv +解晓东-相信(演唱会),http://em.21dtv.com/songs/60048815.mkv +大刚-相信(演唱会),http://em.21dtv.com/songs/60048814.mkv +罗大佑-现象(演唱会),http://em.21dtv.com/songs/60048504.mkv +何洁-夏雪,http://em.21dtv.com/songs/60048421.mkv +飞轮海-夏雪,http://em.21dtv.com/songs/60048420.mkv +王宇婕-下雪,http://em.21dtv.com/songs/60048301.mkv +阿杜-下雪,http://em.21dtv.com/songs/60048300.mkv +汤宝如-细雪,http://em.21dtv.com/songs/60048228.mkv +郑华娟-戏雪,http://em.21dtv.com/songs/60048212.mkv +容祖儿-喜喜,http://em.21dtv.com/songs/60048179.mkv +黄耀明+容祖儿-喜喜(演唱会),http://em.21dtv.com/songs/60048178.mkv +后弦-西厢,http://em.21dtv.com/songs/60047947.mkv +李宇春-西厢(演唱会),http://em.21dtv.com/songs/60047946.mkv +小球(庄鹃瑛)-希望,http://em.21dtv.com/songs/60135139.mkv +孙楠-向往,http://em.21dtv.com/songs/60133563.mkv +光头司令-想无,http://em.21dtv.com/songs/60133380.mkv +王庆爽-希望,http://em.21dtv.com/songs/60128224.mkv +盛一伦-漩涡,http://em.21dtv.com/songs/60120822.mkv +盛一伦-漩涡,http://em.21dtv.com/songs/60117946.mkv +严爵-漩涡,http://em.21dtv.com/songs/60115664.mkv +王筝-漩涡,http://em.21dtv.com/songs/60113875.mkv +黄绮珊-香味,http://em.21dtv.com/songs/60111555.mkv +陈慧琳-希望(HD),http://em.21dtv.com/songs/10012552.mkv +费翔-旋涡,http://em.21dtv.com/songs/60108017.mkv +饥饿艺术家-夏娃,http://em.21dtv.com/songs/60107357.mkv +戎琦-希望,http://em.21dtv.com/songs/60105084.mkv +张明-醒悟,http://em.21dtv.com/songs/60104126.mkv +张惠妹-鲜围,http://em.21dtv.com/songs/60091099.mkv +张清芳-旋涡,http://em.21dtv.com/songs/60089864.mkv +周蕙-休温,http://em.21dtv.com/songs/60089750.mkv +卢凯彤-小雾(演唱会),http://em.21dtv.com/songs/60078728.mkv +洪卓立+钟欣桐-细味,http://em.21dtv.com/songs/60078536.mkv +施艳玲-希望,http://em.21dtv.com/songs/60078502.mkv +白雪-醒悟,http://em.21dtv.com/songs/60072666.mkv +施艳玲-希望(演唱会),http://em.21dtv.com/songs/60072590.mkv +孟子焱+OLIVIER TRINQUAN-希望,http://em.21dtv.com/songs/60071299.mkv +宋熙铭-希望,http://em.21dtv.com/songs/60070023.mkv +徐千雅-向往,http://em.21dtv.com/songs/60065205.mkv +白银时代-相忘,http://em.21dtv.com/songs/60065190.mkv +大勇-想我,http://em.21dtv.com/songs/60061752.mkv +刘虹翎-希望,http://em.21dtv.com/songs/60061732.mkv +张清芳-漩涡,http://em.21dtv.com/songs/60051609.mkv +许美静-漩涡,http://em.21dtv.com/songs/60051608.mkv +邵斯文-漩涡,http://em.21dtv.com/songs/60051607.mkv +李雅微-漩涡,http://em.21dtv.com/songs/60051606.mkv +孙燕姿-漩涡(演唱会),http://em.21dtv.com/songs/60051605.mkv +黄耀明+容祖儿-漩涡(演唱会),http://em.21dtv.com/songs/60051604.mkv +黄耀明+彭羚-漩涡(演唱会),http://em.21dtv.com/songs/60051603.mkv +孙燕姿-旋涡,http://em.21dtv.com/songs/60051592.mkv +黄铃-醒悟,http://em.21dtv.com/songs/60051188.mkv +侧田-信我,http://em.21dtv.com/songs/60051014.mkv +飞轮海+S.H.E-新窝,http://em.21dtv.com/songs/60050962.mkv +孙淑媚-心萎(无原唱),http://em.21dtv.com/songs/60050625.mkv +佚名-小薇,http://em.21dtv.com/songs/60049785.mkv +黄品源-小薇,http://em.21dtv.com/songs/60049784.mkv +阿弟-小薇,http://em.21dtv.com/songs/60049783.mkv +黄品源-小薇(演唱会),http://em.21dtv.com/songs/60049782.mkv +佚名-小薇(无原唱),http://em.21dtv.com/songs/60049781.mkv +泳儿-向往,http://em.21dtv.com/songs/60049348.mkv +佚名-向往,http://em.21dtv.com/songs/60049347.mkv +李健-向往,http://em.21dtv.com/songs/60049346.mkv +叶玉卿-夏娃(演唱会),http://em.21dtv.com/songs/60048417.mkv +SOLER-细味,http://em.21dtv.com/songs/60048227.mkv +苏永康-希望,http://em.21dtv.com/songs/60047979.mkv +那英-希望,http://em.21dtv.com/songs/60047978.mkv +毛阿敏-希望,http://em.21dtv.com/songs/60047977.mkv +乱弹阿翔-希望,http://em.21dtv.com/songs/60047976.mkv +李宗盛-希望,http://em.21dtv.com/songs/60047975.mkv +李泉-希望,http://em.21dtv.com/songs/60047974.mkv +李克勤-希望,http://em.21dtv.com/songs/60047973.mkv +何洁-希望,http://em.21dtv.com/songs/60047972.mkv +韩红+满文军-希望,http://em.21dtv.com/songs/60047971.mkv +陈慧琳-希望,http://em.21dtv.com/songs/60047969.mkv +超级女声-希望,http://em.21dtv.com/songs/60047968.mkv +李克勤-希望(演唱会),http://em.21dtv.com/songs/60047967.mkv +韩红+满文军-希望(演唱会),http://em.21dtv.com/songs/60047966.mkv +陈慧琳-希望(演唱会),http://em.21dtv.com/songs/60047965.mkv +余天-希望(无原唱),http://em.21dtv.com/songs/60047964.mkv +陈粒-戏台,http://em.21dtv.com/songs/60134419.mkv +苗小青-信徒,http://em.21dtv.com/songs/60134172.mkv +薛金显-相挺,http://em.21dtv.com/songs/60126161.mkv +易桀齐-想通,http://em.21dtv.com/songs/60125630.mkv +徐良-心痛,http://em.21dtv.com/songs/60125576.mkv +薛金显-相挺,http://em.21dtv.com/songs/60124455.mkv +刘溪-心跳,http://em.21dtv.com/songs/60120368.mkv +汪苏泷-心跳,http://em.21dtv.com/songs/60119755.mkv +张翠萍-心跳,http://em.21dtv.com/songs/60115921.mkv +徐彪-夏天,http://em.21dtv.com/songs/60115175.mkv +习冠-想她,http://em.21dtv.com/songs/60109945.mkv +阿香-心跳,http://em.21dtv.com/songs/60103658.mkv +谢宜君-心痛,http://em.21dtv.com/songs/60102744.mkv +曹雅雯-心疼,http://em.21dtv.com/songs/60101371.mkv +陈仁杰-心跳,http://em.21dtv.com/songs/60100564.mkv +储毅-心跳,http://em.21dtv.com/songs/60099760.mkv +张绍飞-想她,http://em.21dtv.com/songs/60099240.mkv +覃沐曦-西塘,http://em.21dtv.com/songs/60098761.mkv +邓丽欣-心甜,http://em.21dtv.com/songs/60093238.mkv +李碧华-心疼,http://em.21dtv.com/songs/60088037.mkv +张越-夏天,http://em.21dtv.com/songs/60086973.mkv +罗志祥-想逃,http://em.21dtv.com/songs/60081938.mkv +吴雨霏-信徒(演唱会),http://em.21dtv.com/songs/60078884.mkv +罗时丰-心痛,http://em.21dtv.com/songs/60078785.mkv +杨谨-心跳,http://em.21dtv.com/songs/60078783.mkv +阿牛-小偷,http://em.21dtv.com/songs/60078726.mkv +邹宗翰-心痛,http://em.21dtv.com/songs/60072650.mkv +容祖儿-星图(演唱会),http://em.21dtv.com/songs/60065270.mkv +弦子-心跳,http://em.21dtv.com/songs/60065243.mkv +后弦-信条,http://em.21dtv.com/songs/60061779.mkv +袁智勇-雪天,http://em.21dtv.com/songs/60051743.mkv +佚名-雪天,http://em.21dtv.com/songs/60051742.mkv +刘依纯-续摊,http://em.21dtv.com/songs/60051577.mkv +伯阳-胸膛,http://em.21dtv.com/songs/60051478.mkv +张卫健-信徒,http://em.21dtv.com/songs/60051013.mkv +神木与瞳-信徒,http://em.21dtv.com/songs/60051012.mkv +彭佳慧-心图,http://em.21dtv.com/songs/60050624.mkv +佚名-心痛,http://em.21dtv.com/songs/60050603.mkv +叶启田-心痛,http://em.21dtv.com/songs/60050602.mkv +王杰-心痛,http://em.21dtv.com/songs/60050601.mkv +谭咏麟-心痛,http://em.21dtv.com/songs/60050600.mkv +孙协志+林晓君-心痛,http://em.21dtv.com/songs/60050599.mkv +迪克牛仔-心痛,http://em.21dtv.com/songs/60050598.mkv +陈洁仪-心痛,http://em.21dtv.com/songs/60050597.mkv +迪克牛仔-心痛(演唱会),http://em.21dtv.com/songs/60050596.mkv +张可芝-心跳,http://em.21dtv.com/songs/60050590.mkv +王力宏-心跳,http://em.21dtv.com/songs/60050589.mkv +林心如-心跳,http://em.21dtv.com/songs/60050588.mkv +陈译贤-心跳(无原唱),http://em.21dtv.com/songs/60050587.mkv +周渝民-心疼,http://em.21dtv.com/songs/60050581.mkv +王瑞霞-心疼,http://em.21dtv.com/songs/60050580.mkv +何方-心疼,http://em.21dtv.com/songs/60050579.mkv +蔡小虎-心疼,http://em.21dtv.com/songs/60050578.mkv +颜莉-心疼(无原唱),http://em.21dtv.com/songs/60050577.mkv +范晓萱-小偷,http://em.21dtv.com/songs/60049768.mkv +蔡幸娟-想通,http://em.21dtv.com/songs/60049250.mkv +纪炎炎-想听,http://em.21dtv.com/songs/60049247.mkv +陈奕迅-想听,http://em.21dtv.com/songs/60049246.mkv +张艾嘉+梁家辉-想逃,http://em.21dtv.com/songs/60049245.mkv +康净淳-想逃,http://em.21dtv.com/songs/60049244.mkv +LINDA-想逃,http://em.21dtv.com/songs/60049243.mkv +李玖哲-夏天,http://em.21dtv.com/songs/60048398.mkv +4_IN_LOVE-想SAY_YES,http://em.21dtv.com/songs/60090377.mkv +焦可然-心声,http://em.21dtv.com/songs/60133963.mkv +星选者组合-星逝,http://em.21dtv.com/songs/60133756.mkv +GALA-新生,http://em.21dtv.com/songs/60133202.mkv +张津涤-欣赏,http://em.21dtv.com/songs/60132453.mkv +马忠伟-心碎,http://em.21dtv.com/songs/60129804.mkv +顾莉雅-相守,http://em.21dtv.com/songs/60129788.mkv +张佳麟-相思,http://em.21dtv.com/songs/60127961.mkv +陈奕迅-心烧,http://em.21dtv.com/songs/60126376.mkv +薛金显-孝顺,http://em.21dtv.com/songs/60126157.mkv +薛金显-孝顺,http://em.21dtv.com/songs/60124451.mkv +朱宇-心碎,http://em.21dtv.com/songs/60121751.mkv +东方依依+杨浩-相守,http://em.21dtv.com/songs/60120277.mkv +闫寒-心伤,http://em.21dtv.com/songs/60120052.mkv +肖镒舟-心事,http://em.21dtv.com/songs/60119895.mkv +陈奕迅-心烧,http://em.21dtv.com/songs/60118148.mkv +戴辛尉-凶手,http://em.21dtv.com/songs/60115187.mkv +孔朝-香逝,http://em.21dtv.com/songs/60114478.mkv +冷漠+杨小曼-心锁,http://em.21dtv.com/songs/60114409.mkv +蒋卓嘉-想说,http://em.21dtv.com/songs/60112207.mkv +刘紫玲-相思,http://em.21dtv.com/songs/60105645.mkv +林圣杰-心伤,http://em.21dtv.com/songs/60108620.mkv +金池-下沙,http://em.21dtv.com/songs/60107286.mkv +超人-小四,http://em.21dtv.com/songs/60107249.mkv +杨语浠-线索,http://em.21dtv.com/songs/60106973.mkv +刘元元-相思,http://em.21dtv.com/songs/60106630.mkv +安心亚-新宿,http://em.21dtv.com/songs/60104945.mkv +韦小天+林洪辉-小说,http://em.21dtv.com/songs/60103704.mkv +郑源-雪殇,http://em.21dtv.com/songs/60103626.mkv +云菲菲-小三,http://em.21dtv.com/songs/60101885.mkv +团风依依-相思,http://em.21dtv.com/songs/60101310.mkv +K.WILL+全宇成-香水,http://em.21dtv.com/songs/60101017.mkv +云菲菲-小三(故事情节),http://em.21dtv.com/songs/60100761.mkv +冷漠-小三[DJ版],http://em.21dtv.com/songs/60099785.mkv +沙宝亮+游鸿明-下沙,http://em.21dtv.com/songs/60098568.mkv +李敏-雪沙,http://em.21dtv.com/songs/60098463.mkv +GEARUPSTUDIOS-现实,http://em.21dtv.com/songs/60096727.mkv +冷漠-小萨,http://em.21dtv.com/songs/60096652.mkv +石艳君-牺牲,http://em.21dtv.com/songs/60088369.mkv +詹曼铃-相思,http://em.21dtv.com/songs/60086976.mkv +马常宝-相思,http://em.21dtv.com/songs/60085995.mkv +张祥洪+冷漠-小三,http://em.21dtv.com/songs/60084218.mkv +胡杨林-香水,http://em.21dtv.com/songs/60084184.mkv +刘紫玲-相思,http://em.21dtv.com/songs/60084176.mkv +干露露-小三,http://em.21dtv.com/songs/60081305.mkv +李欣汝-欣赏,http://em.21dtv.com/songs/60078807.mkv +丽丹-心事,http://em.21dtv.com/songs/60078776.mkv +冷漠-心事,http://em.21dtv.com/songs/60078775.mkv +笑天-小四,http://em.21dtv.com/songs/60078722.mkv +翁立友+林良欢-香水,http://em.21dtv.com/songs/60078608.mkv +李昊嘉-细诉,http://em.21dtv.com/songs/60078535.mkv +灿烂阿龙-小手,http://em.21dtv.com/songs/60072628.mkv +张杰-消失(演唱会),http://em.21dtv.com/songs/60072621.mkv +舒鸣-享受,http://em.21dtv.com/songs/60071318.mkv +金婷婷-西施,http://em.21dtv.com/songs/60071297.mkv +亢帅克-雪山,http://em.21dtv.com/songs/60070110.mkv +张宇-心术,http://em.21dtv.com/songs/60067658.mkv +庄惠茹-心事,http://em.21dtv.com/songs/60065242.mkv +毛阿敏-相思(演唱会),http://em.21dtv.com/songs/60062757.mkv +吉杰-雪色(演唱会),http://em.21dtv.com/songs/60061794.mkv +陆蔚-雪沙,http://em.21dtv.com/songs/60051732.mkv +郑中基-学神,http://em.21dtv.com/songs/60051652.mkv +姚婷-休书,http://em.21dtv.com/songs/60051495.mkv +林冠吟-凶手,http://em.21dtv.com/songs/60051435.mkv +吴浩康-新手,http://em.21dtv.com/songs/60050949.mkv +飞轮海-新生,http://em.21dtv.com/songs/60050931.mkv +秀兰玛雅-欣赏,http://em.21dtv.com/songs/60050777.mkv +郭静-欣赏,http://em.21dtv.com/songs/60050776.mkv +余天-心锁,http://em.21dtv.com/songs/60050570.mkv +张洪量-心碎,http://em.21dtv.com/songs/60050542.mkv +詹雅雯-心碎,http://em.21dtv.com/songs/60050541.mkv +易欣-心碎,http://em.21dtv.com/songs/60050539.mkv +啡啡-心碎,http://em.21dtv.com/songs/60050538.mkv +陈黎明-心碎,http://em.21dtv.com/songs/60050537.mkv +陈雷-心碎,http://em.21dtv.com/songs/60050536.mkv +刘德华-心酸,http://em.21dtv.com/songs/60050519.mkv +吴品醇-心水,http://em.21dtv.com/songs/60050516.mkv +周冰倩-心事,http://em.21dtv.com/songs/60050498.mkv +郑秀文-心事,http://em.21dtv.com/songs/60050497.mkv +佚名-心事,http://em.21dtv.com/songs/60050496.mkv +孙协志-心事,http://em.21dtv.com/songs/60050495.mkv +李碧华-心事,http://em.21dtv.com/songs/60050494.mkv +黄绮加-心事,http://em.21dtv.com/songs/60050493.mkv +范文芳-心事,http://em.21dtv.com/songs/60050492.mkv +许茹芸-心蚀,http://em.21dtv.com/songs/60050488.mkv +佚名-心声,http://em.21dtv.com/songs/60050477.mkv +王建杰+刘依纯-心声,http://em.21dtv.com/songs/60050476.mkv +邝美云-心声,http://em.21dtv.com/songs/60050475.mkv +迟志强-心声,http://em.21dtv.com/songs/60050474.mkv +甄妮-心声(演唱会),http://em.21dtv.com/songs/60050473.mkv +林志炫-心上,http://em.21dtv.com/songs/60050462.mkv +晓月-心伞,http://em.21dtv.com/songs/60050459.mkv +林奕匡-写诗,http://em.21dtv.com/songs/60050012.mkv +阿杜+林俊杰-小说,http://em.21dtv.com/songs/60049751.mkv +梁心颐-小树,http://em.21dtv.com/songs/60049749.mkv +余天-小诗,http://em.21dtv.com/songs/60049734.mkv +佚名-小诗,http://em.21dtv.com/songs/60049733.mkv +张祥洪-小三,http://em.21dtv.com/songs/60049721.mkv +冷漠-小三,http://em.21dtv.com/songs/60049720.mkv +郭玲-小三,http://em.21dtv.com/songs/60049719.mkv +冷漠-小三(续集),http://em.21dtv.com/songs/60049718.mkv +佚名-潇洒,http://em.21dtv.com/songs/60049452.mkv +叶树茵-消失,http://em.21dtv.com/songs/60049439.mkv +南拳妈妈-消失,http://em.21dtv.com/songs/60049438.mkv +范晓萱-消失(演唱会),http://em.21dtv.com/songs/60049437.mkv +F.I.R-消失(演唱会),http://em.21dtv.com/songs/60049436.mkv +许志安-想说,http://em.21dtv.com/songs/60049234.mkv +沈芳如-想睡,http://em.21dtv.com/songs/60049233.mkv +谢霆锋-香水,http://em.21dtv.com/songs/60048941.mkv +五月天-香水,http://em.21dtv.com/songs/60048940.mkv +江志丰+张秀卿-香水,http://em.21dtv.com/songs/60048939.mkv +何润东-香水,http://em.21dtv.com/songs/60048938.mkv +杜奕衡-香水,http://em.21dtv.com/songs/60048937.mkv +谢霆锋-香水(演唱会),http://em.21dtv.com/songs/60048936.mkv +郑少秋+汪明荃-相送,http://em.21dtv.com/songs/60048808.mkv +曹磊-相送,http://em.21dtv.com/songs/60048807.mkv +叶凡-相思,http://em.21dtv.com/songs/60048730.mkv +许志豪+林良欢-相思,http://em.21dtv.com/songs/60048729.mkv +谢军-相思,http://em.21dtv.com/songs/60048728.mkv +王识贤-相思,http://em.21dtv.com/songs/60048727.mkv +童唱-相思,http://em.21dtv.com/songs/60048726.mkv +金莎-相思,http://em.21dtv.com/songs/60048725.mkv +高胜美-相思,http://em.21dtv.com/songs/60048724.mkv +陈俊华-相思,http://em.21dtv.com/songs/60048723.mkv +陈嘉恒-相思,http://em.21dtv.com/songs/60048722.mkv +曾剑雄-相思,http://em.21dtv.com/songs/60048721.mkv +蔡幸娟-相思,http://em.21dtv.com/songs/60048720.mkv +黄莺莺-相思(无原唱),http://em.21dtv.com/songs/60048719.mkv +白冰冰-相思(无原唱),http://em.21dtv.com/songs/60048718.mkv +许志安-相守,http://em.21dtv.com/songs/60048717.mkv +王建业-乡思,http://em.21dtv.com/songs/60048576.mkv +陈小春-献世,http://em.21dtv.com/songs/60048556.mkv +周杰伦-献世(演唱会),http://em.21dtv.com/songs/60048555.mkv +容祖儿-献世(演唱会),http://em.21dtv.com/songs/60048554.mkv +SARA-夏伤,http://em.21dtv.com/songs/60048397.mkv +游鸿明-下沙,http://em.21dtv.com/songs/60048293.mkv +吴克群+江美琪-细数,http://em.21dtv.com/songs/60048223.mkv +孙淑媚-牺牲,http://em.21dtv.com/songs/60048012.mkv +郭富城-牺牲,http://em.21dtv.com/songs/60048011.mkv +BEYOND-牺牲,http://em.21dtv.com/songs/60048010.mkv +王杰+林佳仪-牺牲(无原唱),http://em.21dtv.com/songs/60048009.mkv +晏菲-西施(演唱会),http://em.21dtv.com/songs/60047942.mkv +潘玮柏-x spy,http://em.21dtv.com/songs/60006434.mkv +N.P.E自由引力-消融,http://em.21dtv.com/songs/60129971.mkv +范晓萱+王力宏-雪人,http://em.21dtv.com/songs/60112176.mkv +花世纪-虚弱,http://em.21dtv.com/songs/60112168.mkv +秋裤大叔+冷漠-小人,http://em.21dtv.com/songs/60108780.mkv +张玮-雪人,http://em.21dtv.com/songs/60101081.mkv +郑俊弘-信任,http://em.21dtv.com/songs/60087013.mkv +肖洋-雪人,http://em.21dtv.com/songs/60086074.mkv +范晓萱+王力宏-雪人,http://em.21dtv.com/songs/60078975.mkv +曹雅雯+许富凯-心软,http://em.21dtv.com/songs/60078773.mkv +张凯-小蕊,http://em.21dtv.com/songs/60078712.mkv +冷漠+赵小兵-小人,http://em.21dtv.com/songs/60078711.mkv +阿凯-小蕊,http://em.21dtv.com/songs/60072624.mkv +陈奕迅-信任,http://em.21dtv.com/songs/60071355.mkv +赵学而-寻人,http://em.21dtv.com/songs/60051829.mkv +孙琳-雪人,http://em.21dtv.com/songs/60051724.mkv +梁咏琪-雪人,http://em.21dtv.com/songs/60051723.mkv +范晓萱-雪人,http://em.21dtv.com/songs/60051722.mkv +容祖儿-雪人(演唱会),http://em.21dtv.com/songs/60051721.mkv +辛晓琪-信任,http://em.21dtv.com/songs/60051003.mkv +王力宏-信任,http://em.21dtv.com/songs/60051002.mkv +杨韵禾-心软,http://em.21dtv.com/songs/60050456.mkv +王中平-心软,http://em.21dtv.com/songs/60050455.mkv +李逸朗-心软,http://em.21dtv.com/songs/60050454.mkv +周慧敏-心软(演唱会),http://em.21dtv.com/songs/60050453.mkv +庞龙-笑容,http://em.21dtv.com/songs/60049947.mkv +李杰-笑容,http://em.21dtv.com/songs/60049946.mkv +阿杜-相容,http://em.21dtv.com/songs/60048704.mkv +郑智化+岳翎-相认,http://em.21dtv.com/songs/60048703.mkv +刘惠鸣+蒋文端-相认(下卷),http://em.21dtv.com/songs/60048702.mkv +刘惠鸣+蒋文端-相认(上卷),http://em.21dtv.com/songs/60048701.mkv +李湘-夏日,http://em.21dtv.com/songs/60048365.mkv +林慧省-贤妻,http://em.21dtv.com/songs/60135433.mkv +王菀之-相牵,http://em.21dtv.com/songs/60134006.mkv +唐大聪+陈小燕-休妻,http://em.21dtv.com/songs/60133507.mkv +孙艺琪-乡情,http://em.21dtv.com/songs/60132364.mkv +凌宏兵-香气,http://em.21dtv.com/songs/60132228.mkv +王菀之-相牵,http://em.21dtv.com/songs/60130602.mkv +胡杨林-心晴,http://em.21dtv.com/songs/60116207.mkv +冯晓荣-先驱,http://em.21dtv.com/songs/60113276.mkv +郭晓慈-续情,http://em.21dtv.com/songs/60110586.mkv +纪敏佳-寻羌,http://em.21dtv.com/songs/60107109.mkv +徐仁英+Zion.T-想起,http://em.21dtv.com/songs/60105894.mkv +好妹妹乐队-心曲,http://em.21dtv.com/songs/60104905.mkv +疯子-想起,http://em.21dtv.com/songs/60100334.mkv +王唯侨-心曲,http://em.21dtv.com/songs/60100305.mkv +庞龙-乡情,http://em.21dtv.com/songs/60100000.mkv +孙浩-心墙,http://em.21dtv.com/songs/60099197.mkv +苏又镕-相欠,http://em.21dtv.com/songs/60095876.mkv +黄晓娟+赵本山-相亲,http://em.21dtv.com/songs/60090349.mkv +周杰伦-心晴,http://em.21dtv.com/songs/60089219.mkv +苗雨-乡情,http://em.21dtv.com/songs/60088549.mkv +陈晓+赵丽颖-心情,http://em.21dtv.com/songs/60084247.mkv +林采欣-心墙,http://em.21dtv.com/songs/60081081.mkv +陈晓-心情,http://em.21dtv.com/songs/60079884.mkv +秀兰玛雅-消遣,http://em.21dtv.com/songs/60078671.mkv +谭建军-小桥,http://em.21dtv.com/songs/60070062.mkv +付豪-心情,http://em.21dtv.com/songs/60065239.mkv +邝祖德-序曲,http://em.21dtv.com/songs/60051574.mkv +徐良-胸前,http://em.21dtv.com/songs/60051477.mkv +林俊杰-星球,http://em.21dtv.com/songs/60051096.mkv +周杰伦-星晴,http://em.21dtv.com/songs/60051095.mkv +江美琪-星晴,http://em.21dtv.com/songs/60051094.mkv +张学友-星晴(演唱会),http://em.21dtv.com/songs/60051093.mkv +佚名-心情,http://em.21dtv.com/songs/60050424.mkv +潘越云-心情,http://em.21dtv.com/songs/60050423.mkv +江蕙-心情,http://em.21dtv.com/songs/60050422.mkv +于台烟-心情(无原唱),http://em.21dtv.com/songs/60050421.mkv +佚名-心情(无原唱),http://em.21dtv.com/songs/60050420.mkv +马浚伟-心窍,http://em.21dtv.com/songs/60050419.mkv +黄思婷-心墙,http://em.21dtv.com/songs/60050417.mkv +郭静-心墙,http://em.21dtv.com/songs/60050416.mkv +BEA FONG-心墙,http://em.21dtv.com/songs/60050415.mkv +林俊杰-心墙(演唱会),http://em.21dtv.com/songs/60050414.mkv +佚名-心泣,http://em.21dtv.com/songs/60050413.mkv +蒋大为-小桥,http://em.21dtv.com/songs/60049700.mkv +谢霆锋-小强,http://em.21dtv.com/songs/60049698.mkv +杨琪-小淇,http://em.21dtv.com/songs/60049696.mkv +朱丹-想起,http://em.21dtv.com/songs/60049210.mkv +金悦+蒋佳迪-想起,http://em.21dtv.com/songs/60049209.mkv +江美琪-想起,http://em.21dtv.com/songs/60049208.mkv +韩雪-想起,http://em.21dtv.com/songs/60049207.mkv +梁咏琪-限期,http://em.21dtv.com/songs/60048530.mkv +梁咏琪-限期(演唱会),http://em.21dtv.com/songs/60048529.mkv +梁咏琪-嫌弃,http://em.21dtv.com/songs/60048486.mkv +佚名-惜情,http://em.21dtv.com/songs/60048033.mkv +翁立友-行棋,http://em.21dtv.com/songs/60019950.mkv +MIC男团-X-PARTY,http://em.21dtv.com/songs/60096645.mkv +林姗-相片,http://em.21dtv.com/songs/60132609.mkv +马旭东-小胖,http://em.21dtv.com/songs/60130901.mkv +陈雷-相片,http://em.21dtv.com/songs/60124662.mkv +南珠+星材-相片,http://em.21dtv.com/songs/60111736.mkv +徐子珊-血拼,http://em.21dtv.com/songs/60092708.mkv +赵本山+宋丹丹+崔永元-小品,http://em.21dtv.com/songs/60090226.mkv +伍浩哲-相片,http://em.21dtv.com/songs/60067622.mkv +刘依纯-相片,http://em.21dtv.com/songs/60048689.mkv +李玖哲-洗牌,http://em.21dtv.com/songs/60048087.mkv +刘嘉亮-笑ok,http://em.21dtv.com/songs/60049912.mkv +柳博-新年Happy,http://em.21dtv.com/songs/60091503.mkv +童星-新年HAPPY,http://em.21dtv.com/songs/60088385.mkv +汤非-心念,http://em.21dtv.com/songs/60133921.mkv +詹雪军-新年,http://em.21dtv.com/songs/60132881.mkv +魏如萱-雪女,http://em.21dtv.com/songs/60130921.mkv +赵丽颖-心念,http://em.21dtv.com/songs/60127436.mkv +沙宝亮-想念,http://em.21dtv.com/songs/60113794.mkv +李娅莎-想你,http://em.21dtv.com/songs/60112749.mkv +马丽-想你,http://em.21dtv.com/songs/60109750.mkv +景馨-寻你,http://em.21dtv.com/songs/60107765.mkv +金范秀-想你,http://em.21dtv.com/songs/60106345.mkv +蓝奕邦-吸你,http://em.21dtv.com/songs/60105330.mkv +谢宜君+陈随意-新娘,http://em.21dtv.com/songs/60102745.mkv +尚芸菲-想你,http://em.21dtv.com/songs/60102160.mkv +何禹妃-想你,http://em.21dtv.com/songs/60098109.mkv +回声乐团-新年,http://em.21dtv.com/songs/60096827.mkv +平安-想念,http://em.21dtv.com/songs/60096814.mkv +赵晶-想你,http://em.21dtv.com/songs/60096813.mkv +张杰-谢娜,http://em.21dtv.com/songs/60089277.mkv +戴妮-寻你,http://em.21dtv.com/songs/60086076.mkv +林宥嘉-想念,http://em.21dtv.com/songs/60086012.mkv +金贵晟-想你,http://em.21dtv.com/songs/60086008.mkv +光辉-想你,http://em.21dtv.com/songs/60086007.mkv +王媛-信念,http://em.21dtv.com/songs/60085759.mkv +张粲然-想念,http://em.21dtv.com/songs/60084194.mkv +老五-想你,http://em.21dtv.com/songs/60080193.mkv +额尔古纳乐队-信念,http://em.21dtv.com/songs/60078883.mkv +沉世爱-信念,http://em.21dtv.com/songs/60078882.mkv +斯琴格日乐-新娘,http://em.21dtv.com/songs/60078866.mkv +大刚-想念(演唱会),http://em.21dtv.com/songs/60078633.mkv +张熙英-想你,http://em.21dtv.com/songs/60078626.mkv +米线+包伍-想你,http://em.21dtv.com/songs/60078625.mkv +林爽-想你,http://em.21dtv.com/songs/60078624.mkv +张智霖-想你(演唱会),http://em.21dtv.com/songs/60078622.mkv +袁惟仁+黄淑惠-想念,http://em.21dtv.com/songs/60072618.mkv +乔任梁-想念,http://em.21dtv.com/songs/60072617.mkv +游美灵-想你,http://em.21dtv.com/songs/60072615.mkv +阎维文+彭丽媛+刘斌-信念(演唱会),http://em.21dtv.com/songs/60071354.mkv +汪东城-像你,http://em.21dtv.com/songs/60071323.mkv +赵本水+梁东靖-想你,http://em.21dtv.com/songs/60066462.mkv +瑞雪-秀娘,http://em.21dtv.com/songs/60065285.mkv +张也-信念(演唱会),http://em.21dtv.com/songs/60065265.mkv +唐俪-戏弄,http://em.21dtv.com/songs/60065169.mkv +林峰+黄圣依-许诺,http://em.21dtv.com/songs/60062631.mkv +游鸿明-寻你,http://em.21dtv.com/songs/60051827.mkv +李克勤-雪女(无原唱),http://em.21dtv.com/songs/60051719.mkv +刘美君-雪泥,http://em.21dtv.com/songs/60051718.mkv +万芳-学你,http://em.21dtv.com/songs/60051649.mkv +BEYOND-醒你,http://em.21dtv.com/songs/60051184.mkv +黄家强-醒你(演唱会),http://em.21dtv.com/songs/60051183.mkv +黄贯中-醒你(演唱会),http://em.21dtv.com/songs/60051182.mkv +胡彦斌-信念,http://em.21dtv.com/songs/60051001.mkv +戴军-新娘,http://em.21dtv.com/songs/60050907.mkv +何嘉莉-心暖,http://em.21dtv.com/songs/60050410.mkv +龙千玉-小鸟,http://em.21dtv.com/songs/60049680.mkv +汪峰-小鸟(演唱会),http://em.21dtv.com/songs/60049679.mkv +李心洁-像你,http://em.21dtv.com/songs/60049391.mkv +许哲佩-想念,http://em.21dtv.com/songs/60049181.mkv +许美静-想念,http://em.21dtv.com/songs/60049180.mkv +希婕-想念,http://em.21dtv.com/songs/60049179.mkv +刘嘉亮-想念,http://em.21dtv.com/songs/60049178.mkv +陈楚生-想念,http://em.21dtv.com/songs/60049177.mkv +伍思凯-想念(演唱会),http://em.21dtv.com/songs/60049176.mkv +那英-想念(演唱会),http://em.21dtv.com/songs/60049175.mkv +郑中基-想你,http://em.21dtv.com/songs/60049091.mkv +邰正宵-想你,http://em.21dtv.com/songs/60049090.mkv +黄思婷-想你,http://em.21dtv.com/songs/60049089.mkv +何建清-想你,http://em.21dtv.com/songs/60049088.mkv +范晓萱-想你,http://em.21dtv.com/songs/60049087.mkv +范文芳-想你,http://em.21dtv.com/songs/60049086.mkv +T.R.Y-想你,http://em.21dtv.com/songs/60049085.mkv +SAYA-想你,http://em.21dtv.com/songs/60049084.mkv +BEYOND-想你,http://em.21dtv.com/songs/60049082.mkv +郑中基-想你(演唱会),http://em.21dtv.com/songs/60049081.mkv +张国荣-想你(演唱会),http://em.21dtv.com/songs/60049080.mkv +麦浚龙-想你(演唱会),http://em.21dtv.com/songs/60049079.mkv +佚名-想你(无原唱),http://em.21dtv.com/songs/60049078.mkv +丁力-想你(无原唱),http://em.21dtv.com/songs/60049077.mkv +MIB三重唱-想你(无原唱),http://em.21dtv.com/songs/60049076.mkv +TWINS-香浓,http://em.21dtv.com/songs/60048934.mkv +司文-仙女,http://em.21dtv.com/songs/60048442.mkv +吴易轩-昔年,http://em.21dtv.com/songs/60048003.mkv +小黑(郑新)-星芒,http://em.21dtv.com/songs/60132393.mkv +红花会-凶猛,http://em.21dtv.com/songs/60130641.mkv +萌萌哒天团-寻觅,http://em.21dtv.com/songs/60129558.mkv +秦浩-寻觅,http://em.21dtv.com/songs/60128277.mkv +姚天成-小妹,http://em.21dtv.com/songs/60126769.mkv +单色凌-心魔,http://em.21dtv.com/songs/60126668.mkv +杨大勇-寻梦,http://em.21dtv.com/songs/60125735.mkv +VENUE-兄妹,http://em.21dtv.com/songs/60123560.mkv +RUBBERBAND-休眠,http://em.21dtv.com/songs/60123528.mkv +DOUBLEX2-旋木,http://em.21dtv.com/songs/60123463.mkv +刘珂矣-寻梅,http://em.21dtv.com/songs/60119309.mkv +郭采洁-旋木,http://em.21dtv.com/songs/60116296.mkv +风采轮-心魔,http://em.21dtv.com/songs/60114260.mkv +庄心妍-谢幕,http://em.21dtv.com/songs/60111842.mkv +孙晓雨-心梦,http://em.21dtv.com/songs/60110141.mkv +陈洁仪-兄妹,http://em.21dtv.com/songs/60109699.mkv +印金约-戏妹,http://em.21dtv.com/songs/60109206.mkv +J.Arie(雷琛瑜)-心魔,http://em.21dtv.com/songs/60106546.mkv +江语晨-熊猫,http://em.21dtv.com/songs/60106058.mkv +郑俊弘-熊猫,http://em.21dtv.com/songs/60105425.mkv +翁立友-血脉,http://em.21dtv.com/songs/60101478.mkv +赵文-戏梦,http://em.21dtv.com/songs/60096708.mkv +伍佰-小妹,http://em.21dtv.com/songs/60096651.mkv +戴梅君-血脉,http://em.21dtv.com/songs/60094130.mkv +徐晶晶-寻梦,http://em.21dtv.com/songs/60094112.mkv +暴风-雪梅,http://em.21dtv.com/songs/60093582.mkv +汤潮-小美,http://em.21dtv.com/songs/60091590.mkv +李泉+黄龄+顺子-旋木,http://em.21dtv.com/songs/60084301.mkv +袁小迪+邓玉贤-兄妹,http://em.21dtv.com/songs/60084293.mkv +庞龙-小妹,http://em.21dtv.com/songs/60081967.mkv +侃侃-谢幕,http://em.21dtv.com/songs/60080602.mkv +爱朵女孩-寻梦,http://em.21dtv.com/songs/60078982.mkv +小果-夏末,http://em.21dtv.com/songs/60078548.mkv +刘瀚升-夏末,http://em.21dtv.com/songs/60072598.mkv +庄学忠-寻觅,http://em.21dtv.com/songs/60051824.mkv +叶倩文-寻觅(演唱会),http://em.21dtv.com/songs/60051823.mkv +黄淇-寻觅(无原唱),http://em.21dtv.com/songs/60051822.mkv +张咪-寻梦,http://em.21dtv.com/songs/60051815.mkv +泽朗多吉-寻梦,http://em.21dtv.com/songs/60051814.mkv +老K-寻梦,http://em.21dtv.com/songs/60051813.mkv +孙维良-血脉,http://em.21dtv.com/songs/60051790.mkv +袁惟仁-旋木,http://em.21dtv.com/songs/60051591.mkv +王菲-旋木,http://em.21dtv.com/songs/60051590.mkv +李宇春-序幕,http://em.21dtv.com/songs/60051573.mkv +SHINE-熊猫(演唱会),http://em.21dtv.com/songs/60051486.mkv +陈奕迅-兄妹,http://em.21dtv.com/songs/60051472.mkv +谢安琪+关楚耀-兄妹(演唱会),http://em.21dtv.com/songs/60051471.mkv +周华健-心魔,http://em.21dtv.com/songs/60050391.mkv +佚名-心闷,http://em.21dtv.com/songs/60050390.mkv +润土-小面,http://em.21dtv.com/songs/60049663.mkv +张宇-小妹,http://em.21dtv.com/songs/60049648.mkv +庞龙+马楠-小妹,http://em.21dtv.com/songs/60049647.mkv +蔡国庆-小猫,http://em.21dtv.com/songs/60049645.mkv +童唱-小马,http://em.21dtv.com/songs/60049642.mkv +莫文蔚-消灭,http://em.21dtv.com/songs/60049434.mkv +莫文蔚-消灭(演唱会),http://em.21dtv.com/songs/60049433.mkv +甄妮-羡慕,http://em.21dtv.com/songs/60048538.mkv +陈晓娟-羡慕,http://em.21dtv.com/songs/60048537.mkv +任贤齐-戏迷,http://em.21dtv.com/songs/60048206.mkv +佚名-戏梦,http://em.21dtv.com/songs/60048205.mkv +林志颖-戏梦,http://em.21dtv.com/songs/60048204.mkv +林志颖-戏梦(演唱会),http://em.21dtv.com/songs/60048203.mkv +钟婉珊-寻梦,http://em.21dtv.com/songs/60026492.mkv +李艳-西楼,http://em.21dtv.com/songs/60135376.mkv +钟彩媚-溪流,http://em.21dtv.com/songs/60133012.mkv +陈慧恬-限量,http://em.21dtv.com/songs/60131943.mkv +呷让东周-雪莲,http://em.21dtv.com/songs/60131275.mkv +郑秀文-犀利,http://em.21dtv.com/songs/60130793.mkv +少峰-新郎,http://em.21dtv.com/songs/60130271.mkv +钟彩媚-溪流,http://em.21dtv.com/songs/60129689.mkv +钟明秋-小路,http://em.21dtv.com/songs/60126316.mkv +郑秀文-犀利,http://em.21dtv.com/songs/60126282.mkv +李拾壹-小李,http://em.21dtv.com/songs/60124069.mkv +张津涤-行李,http://em.21dtv.com/songs/60121658.mkv +陈思思-雪恋,http://em.21dtv.com/songs/60120085.mkv +尕让邓真-乡恋,http://em.21dtv.com/songs/60117688.mkv +认真-心恋,http://em.21dtv.com/songs/60115381.mkv +陈思思-雪恋,http://em.21dtv.com/songs/60114210.mkv +王中平-心浪,http://em.21dtv.com/songs/60109507.mkv +晓枫-心路,http://em.21dtv.com/songs/60108542.mkv +邓海-醒来,http://em.21dtv.com/songs/60108036.mkv +高瑞琦+俞水晴-夏恋,http://em.21dtv.com/songs/60105529.mkv +灰子-洗礼,http://em.21dtv.com/songs/60104291.mkv +刘紫玲-小路,http://em.21dtv.com/songs/60101985.mkv +齐萧-下落,http://em.21dtv.com/songs/60100682.mkv +林忆莲-喜乐(新版),http://em.21dtv.com/songs/60096806.mkv +萧丽玲-心泪,http://em.21dtv.com/songs/60096664.mkv +沈志仲-小丽,http://em.21dtv.com/songs/60094976.mkv +景仪-乡恋,http://em.21dtv.com/songs/60089924.mkv +张靓颖-乡恋,http://em.21dtv.com/songs/60087847.mkv +戴爱玲-醒了,http://em.21dtv.com/songs/60084268.mkv +新垣结衣-小さな恋のうた,http://em.21dtv.com/songs/60084209.mkv +董贞-仙恋,http://em.21dtv.com/songs/60084167.mkv +王识贤-心乱,http://em.21dtv.com/songs/60079009.mkv +白婧-醒了,http://em.21dtv.com/songs/60078899.mkv +紫琴-心恋,http://em.21dtv.com/songs/60078769.mkv +徐小凤-心恋,http://em.21dtv.com/songs/60078768.mkv +卢巧音-心蓝,http://em.21dtv.com/songs/60078765.mkv +叶启田-心乱,http://em.21dtv.com/songs/60074840.mkv +乌兰托娅+索朗扎西-相恋(演唱会),http://em.21dtv.com/songs/60072601.mkv +钟丽燕-小路,http://em.21dtv.com/songs/60068846.mkv +董冬-仙路,http://em.21dtv.com/songs/60068825.mkv +方瑞娥-心冷,http://em.21dtv.com/songs/60067654.mkv +左小祖咒-小莉,http://em.21dtv.com/songs/60067637.mkv +苏阳-贤良(演唱会),http://em.21dtv.com/songs/60067618.mkv +李志洲-醒来,http://em.21dtv.com/songs/60066492.mkv +林柔均-心冷,http://em.21dtv.com/songs/60066483.mkv +韩曦-心恋(演唱会),http://em.21dtv.com/songs/60065237.mkv +刘若英-训练,http://em.21dtv.com/songs/60051859.mkv +格格-雪莲(演唱会),http://em.21dtv.com/songs/60051705.mkv +华雪-雪狼,http://em.21dtv.com/songs/60051703.mkv +杨孝君-旋律,http://em.21dtv.com/songs/60051589.mkv +林宇中-旋律,http://em.21dtv.com/songs/60051588.mkv +杨千嬅-醒了,http://em.21dtv.com/songs/60051180.mkv +韩红-醒了,http://em.21dtv.com/songs/60051179.mkv +陈瑞-醒来,http://em.21dtv.com/songs/60051177.mkv +曾心梅-醒来,http://em.21dtv.com/songs/60051176.mkv +艾米丽+王嘉宝-醒来,http://em.21dtv.com/songs/60051175.mkv +郭品超-信赖,http://em.21dtv.com/songs/60050999.mkv +佚名-心乱,http://em.21dtv.com/songs/60050374.mkv +黄思婷-心路,http://em.21dtv.com/songs/60050373.mkv +高向鹏+方瑞娥-心路,http://em.21dtv.com/songs/60050372.mkv +裕美-心领,http://em.21dtv.com/songs/60050371.mkv +林峰+钟嘉欣-心领,http://em.21dtv.com/songs/60050370.mkv +戴辛尉-心领,http://em.21dtv.com/songs/60050369.mkv +堂娜-心凉,http://em.21dtv.com/songs/60050362.mkv +苏霈-心恋,http://em.21dtv.com/songs/60050361.mkv +崔萍-心恋(演唱会),http://em.21dtv.com/songs/60050360.mkv +佚名-心恋(伦巴),http://em.21dtv.com/songs/60050359.mkv +陈盈洁-心冷(无原唱),http://em.21dtv.com/songs/60050328.mkv +刘德华-心蓝,http://em.21dtv.com/songs/60050327.mkv +刘德华-心蓝(演唱会),http://em.21dtv.com/songs/60050326.mkv +谢东-笑脸,http://em.21dtv.com/songs/60049939.mkv +佚名-小路,http://em.21dtv.com/songs/60049638.mkv +邓丽君-小路,http://em.21dtv.com/songs/60049637.mkv +佚名-小路(慢四),http://em.21dtv.com/songs/60049636.mkv +黄磊-小怜,http://em.21dtv.com/songs/60049626.mkv +卜学亮-小怜,http://em.21dtv.com/songs/60049625.mkv +龙晓飞-小莉,http://em.21dtv.com/songs/60049624.mkv +罗钢-小丽,http://em.21dtv.com/songs/60049623.mkv +四分卫-项链,http://em.21dtv.com/songs/60049371.mkv +津亭-项链,http://em.21dtv.com/songs/60049370.mkv +苍茫-项链,http://em.21dtv.com/songs/60049369.mkv +佚名-湘累,http://em.21dtv.com/songs/60048960.mkv +小虫+曾庆瑜-相恋,http://em.21dtv.com/songs/60048684.mkv +潘晓峰-乡恋,http://em.21dtv.com/songs/60048574.mkv +李谷一-乡恋,http://em.21dtv.com/songs/60048573.mkv +李谷一-乡恋(演唱会),http://em.21dtv.com/songs/60048572.mkv +谢霆锋+陈奕迅-细路,http://em.21dtv.com/songs/60048221.mkv +梁咏琪-洗脸,http://em.21dtv.com/songs/60048086.mkv +武艺-幸亏,http://em.21dtv.com/songs/60127147.mkv +余铭轩-星空,http://em.21dtv.com/songs/60125135.mkv +肖家永-星空,http://em.21dtv.com/songs/60124370.mkv +肖家永-星空,http://em.21dtv.com/songs/60122027.mkv +齐航-炫酷,http://em.21dtv.com/songs/60120178.mkv +闪灵乐团-薰空,http://em.21dtv.com/songs/60108949.mkv +刘雨欣+刘羽琦+杜沁怡+徐立-星空,http://em.21dtv.com/songs/60103944.mkv +刘羽琦-星空,http://em.21dtv.com/songs/60103941.mkv +NMB48-星空のキャラバン,http://em.21dtv.com/songs/60078893.mkv +羊羽-巷口,http://em.21dtv.com/songs/60078658.mkv +五月天-星空,http://em.21dtv.com/songs/60065268.mkv +尚芸菲-想开,http://em.21dtv.com/songs/60062902.mkv +童唱-雪珂,http://em.21dtv.com/songs/60051701.mkv +李翊君-雪珂,http://em.21dtv.com/songs/60051700.mkv +佚名-虚空,http://em.21dtv.com/songs/60051538.mkv +马郁-羞愧,http://em.21dtv.com/songs/60051506.mkv +詹采妮-星空,http://em.21dtv.com/songs/60051062.mkv +ZIP发射乐团-星空,http://em.21dtv.com/songs/60051061.mkv +ENERGY-星空,http://em.21dtv.com/songs/60051060.mkv +许巍-星空(演唱会),http://em.21dtv.com/songs/60051059.mkv +关心妍-辛苦,http://em.21dtv.com/songs/60050772.mkv +李杰-心口,http://em.21dtv.com/songs/60050323.mkv +佚名-想哭,http://em.21dtv.com/songs/60049064.mkv +郭彤-想哭,http://em.21dtv.com/songs/60049063.mkv +陈奕迅-想哭,http://em.21dtv.com/songs/60049062.mkv +李宇春-想哭(演唱会),http://em.21dtv.com/songs/60049061.mkv +陈奕迅-想哭(演唱会),http://em.21dtv.com/songs/60049060.mkv +杨钰莹-香客,http://em.21dtv.com/songs/60048932.mkv +张明敏-侠客,http://em.21dtv.com/songs/60048235.mkv +袁咏琳-陷阱,http://em.21dtv.com/songs/60063315.mkv +施易男-醒觉,http://em.21dtv.com/songs/60131473.mkv +何龙雨-想家,http://em.21dtv.com/songs/60131168.mkv +施易男-醒觉,http://em.21dtv.com/songs/60130374.mkv +黄俊融-小嫁,http://em.21dtv.com/songs/60126467.mkv +花世纪乐团-限界,http://em.21dtv.com/songs/60126098.mkv +纪晓斌-相见,http://em.21dtv.com/songs/60126019.mkv +杨娟+陈国建-相聚,http://em.21dtv.com/songs/60125736.mkv +宋靖宇-雪祭,http://em.21dtv.com/songs/60125413.mkv +东来东往-心计,http://em.21dtv.com/songs/60125075.mkv +花世纪-限界,http://em.21dtv.com/songs/60124395.mkv +梁博-喜剧,http://em.21dtv.com/songs/60124161.mkv +杨娟+陈国建-相聚,http://em.21dtv.com/songs/60124108.mkv +佟佳霖霖-心经,http://em.21dtv.com/songs/60119260.mkv +唐古-想家,http://em.21dtv.com/songs/60118460.mkv +刘牧-相见,http://em.21dtv.com/songs/60110888.mkv +程琳-相聚,http://em.21dtv.com/songs/60110439.mkv +江志丰-心惊,http://em.21dtv.com/songs/60108661.mkv +游子组合-心经,http://em.21dtv.com/songs/60107882.mkv +京晋Jucie-仙境,http://em.21dtv.com/songs/60105573.mkv +何人-想家,http://em.21dtv.com/songs/60099746.mkv +崔子格-心经,http://em.21dtv.com/songs/60096665.mkv +容祖儿-续集,http://em.21dtv.com/songs/60095194.mkv +阿吉仔-相见,http://em.21dtv.com/songs/60093730.mkv +谷祖琳-小菊,http://em.21dtv.com/songs/60093221.mkv +郑钧-陷井,http://em.21dtv.com/songs/60088778.mkv +WHITEBERRY-夏祭り,http://em.21dtv.com/songs/60084163.mkv +苏富权-胸襟,http://em.21dtv.com/songs/60078952.mkv +大哲-小姐,http://em.21dtv.com/songs/60078695.mkv +SEXY SUMMER-に雪が降る,http://em.21dtv.com/songs/60074250.mkv +常思思-玄境,http://em.21dtv.com/songs/60067683.mkv +孙一娇+解放-心结,http://em.21dtv.com/songs/60066482.mkv +常思思-炫境(演唱会),http://em.21dtv.com/songs/60065293.mkv +孙鸣灿-信件,http://em.21dtv.com/songs/60065264.mkv +罗文裕-想家,http://em.21dtv.com/songs/60065199.mkv +嘉布洛绒-想家,http://em.21dtv.com/songs/60065198.mkv +树叶男孩-想家,http://em.21dtv.com/songs/60062917.mkv +刘德华-续集,http://em.21dtv.com/songs/60051576.mkv +极东洋行-续集,http://em.21dtv.com/songs/60051575.mkv +泼猴-虚假,http://em.21dtv.com/songs/60051537.mkv +吴浩康-醒觉,http://em.21dtv.com/songs/60051174.mkv +梁咏琪-新居,http://em.21dtv.com/songs/60050856.mkv +梁咏琪-新居(演唱会),http://em.21dtv.com/songs/60050855.mkv +阿杜-新家,http://em.21dtv.com/songs/60050846.mkv +佚名-心倦,http://em.21dtv.com/songs/60050322.mkv +李国祥-心倦,http://em.21dtv.com/songs/60050321.mkv +袁凤瑛-心经,http://em.21dtv.com/songs/60050316.mkv +王菲-心经(演唱会),http://em.21dtv.com/songs/60050315.mkv +谭咏麟-心经(演唱会),http://em.21dtv.com/songs/60050314.mkv +周传雄-心结,http://em.21dtv.com/songs/60050312.mkv +刘亦菲-心悸,http://em.21dtv.com/songs/60050311.mkv +李克勤-心计,http://em.21dtv.com/songs/60050309.mkv +陈启泰-心计,http://em.21dtv.com/songs/60050308.mkv +李克勤-心计(演唱会),http://em.21dtv.com/songs/60050307.mkv +佚名-心急,http://em.21dtv.com/songs/60050303.mkv +关淑怡-心急,http://em.21dtv.com/songs/60050302.mkv +卓文萱-想家,http://em.21dtv.com/songs/60049050.mkv +钟尚荣-想家,http://em.21dtv.com/songs/60049049.mkv +吉杰-想家,http://em.21dtv.com/songs/60049048.mkv +西单女孩-想家,http://em.21dtv.com/songs/60049047.mkv +李建华-想家(演唱会),http://em.21dtv.com/songs/60049046.mkv +曾庆瑜-相见,http://em.21dtv.com/songs/60048663.mkv +ALAN-细节,http://em.21dtv.com/songs/60048220.mkv +林俊杰-西界,http://em.21dtv.com/songs/60047933.mkv +陈夏莲-雪花,http://em.21dtv.com/songs/60135909.mkv +枫舞+相容-雪花,http://em.21dtv.com/songs/60135448.mkv +贺一航-雪花,http://em.21dtv.com/songs/60134244.mkv +CHEEZE-喜欢,http://em.21dtv.com/songs/60132060.mkv +褚思含-雪花,http://em.21dtv.com/songs/60122102.mkv +阿兰-心花,http://em.21dtv.com/songs/60121049.mkv +潘云安-小黑,http://em.21dtv.com/songs/60119784.mkv +辛晓琪-邂逅,http://em.21dtv.com/songs/60118948.mkv +孙露-小花,http://em.21dtv.com/songs/60115818.mkv +薛之谦-小孩,http://em.21dtv.com/songs/60115365.mkv +IO-喜欢,http://em.21dtv.com/songs/60114946.mkv +马蹄帮乐团-笑话,http://em.21dtv.com/songs/60114901.mkv +林欣彤-小花,http://em.21dtv.com/songs/60114626.mkv +钟舒祺-心嚎,http://em.21dtv.com/songs/60114162.mkv +池宇菲-小孩,http://em.21dtv.com/songs/60113777.mkv +李荣浩-小黄,http://em.21dtv.com/songs/60111170.mkv +李行亮-学会,http://em.21dtv.com/songs/60105993.mkv +云菲菲-懈逅,http://em.21dtv.com/songs/60105570.mkv +刘欢-向海,http://em.21dtv.com/songs/60104832.mkv +钟舒漫-心灰,http://em.21dtv.com/songs/60104516.mkv +蔡雨倩-夏花,http://em.21dtv.com/songs/60104417.mkv +黄思婷-雪花,http://em.21dtv.com/songs/60102974.mkv +徐良+杨洋-邂逅,http://em.21dtv.com/songs/60102268.mkv +陈瑞-邂逅,http://em.21dtv.com/songs/60100601.mkv +孙露-小花,http://em.21dtv.com/songs/60099934.mkv +李行亮-学会,http://em.21dtv.com/songs/60099324.mkv +成骏-邂逅,http://em.21dtv.com/songs/60096305.mkv +江蕙-心寒,http://em.21dtv.com/songs/60095731.mkv +韩舟-小孩,http://em.21dtv.com/songs/60094766.mkv +周蕙-学会,http://em.21dtv.com/songs/60087605.mkv +小杭雪儿-雪花,http://em.21dtv.com/songs/60084309.mkv +赵奕欢-喜欢,http://em.21dtv.com/songs/60084149.mkv +蔡孟臻-信号,http://em.21dtv.com/songs/60081846.mkv +野人-学会,http://em.21dtv.com/songs/60081737.mkv +姚贝娜-心火,http://em.21dtv.com/songs/60081734.mkv +向荣-雪花,http://em.21dtv.com/songs/60081209.mkv +刘惜君-喜欢,http://em.21dtv.com/songs/60080653.mkv +TMRE-雪幻(无原唱),http://em.21dtv.com/songs/60080610.mkv +樊桐舟-雪花,http://em.21dtv.com/songs/60078970.mkv +徐峰柏-学会,http://em.21dtv.com/songs/60078966.mkv +梁静茹-绣花,http://em.21dtv.com/songs/60078957.mkv +徐海星-星海,http://em.21dtv.com/songs/60078892.mkv +周国贤-相好,http://em.21dtv.com/songs/60078571.mkv +余天赐-雪花,http://em.21dtv.com/songs/60072679.mkv +甜美真-喜欢,http://em.21dtv.com/songs/60071300.mkv +陈珧-邂逅,http://em.21dtv.com/songs/60070072.mkv +王啸坤-笑话,http://em.21dtv.com/songs/60065222.mkv +百慕三石-小花,http://em.21dtv.com/songs/60065213.mkv +张真菲-雪花,http://em.21dtv.com/songs/60063435.mkv +杨丞琳-学会,http://em.21dtv.com/songs/60061793.mkv +王浩信-讯号,http://em.21dtv.com/songs/60051862.mkv +林宇中-讯号,http://em.21dtv.com/songs/60051861.mkv +郭嘉璐-讯号,http://em.21dtv.com/songs/60051860.mkv +张清芳-寻回,http://em.21dtv.com/songs/60051811.mkv +佚名-雪花,http://em.21dtv.com/songs/60051690.mkv +李乐诗-雪花,http://em.21dtv.com/songs/60051689.mkv +李琛-雪花,http://em.21dtv.com/songs/60051688.mkv +凯璐凯玥-雪花,http://em.21dtv.com/songs/60051687.mkv +黄品源-雪花,http://em.21dtv.com/songs/60051686.mkv +格里杰夫-雪花,http://em.21dtv.com/songs/60051685.mkv +黄品源-雪花(演唱会),http://em.21dtv.com/songs/60051684.mkv +李乐诗-雪海,http://em.21dtv.com/songs/60051680.mkv +赵默-学会,http://em.21dtv.com/songs/60051644.mkv +阳蕾-学会,http://em.21dtv.com/songs/60051643.mkv +许慧欣-学会,http://em.21dtv.com/songs/60051642.mkv +王菀之-学会,http://em.21dtv.com/songs/60051641.mkv +孙燕姿-学会,http://em.21dtv.com/songs/60051640.mkv +陈好-幸好,http://em.21dtv.com/songs/60051408.mkv +梁汉文-星火,http://em.21dtv.com/songs/60051057.mkv +侧田+唐素琪-星火,http://em.21dtv.com/songs/60051056.mkv +许茹芸-信号,http://em.21dtv.com/songs/60050997.mkv +曲锦楠-心火,http://em.21dtv.com/songs/60050301.mkv +大地乐团-心火,http://em.21dtv.com/songs/60050300.mkv +佚名-心寒,http://em.21dtv.com/songs/60050286.mkv +邓健泓+郑中基-心寒,http://em.21dtv.com/songs/60050285.mkv +邓健泓+郑中基-心寒(演唱会),http://em.21dtv.com/songs/60050284.mkv +张蓉蓉-心海,http://em.21dtv.com/songs/60050281.mkv +孙楠+邓芮-心海,http://em.21dtv.com/songs/60050280.mkv +哈辉-心海,http://em.21dtv.com/songs/60050279.mkv +云菲菲-邂逅,http://em.21dtv.com/songs/60050100.mkv +谭咏麟-邂逅,http://em.21dtv.com/songs/60050099.mkv +曾慧+邓志驹-邂逅,http://em.21dtv.com/songs/60050098.mkv +谭咏麟-邂逅(演唱会),http://em.21dtv.com/songs/60050097.mkv +张智霖+黄凯芹-笑话,http://em.21dtv.com/songs/60049927.mkv +林心如-笑话,http://em.21dtv.com/songs/60049926.mkv +庞龙+王哲-校花,http://em.21dtv.com/songs/60049904.mkv +陈玉建-小花,http://em.21dtv.com/songs/60049590.mkv +曾心梅-小花,http://em.21dtv.com/songs/60049589.mkv +张宇-消耗,http://em.21dtv.com/songs/60049432.mkv +佚名-献花,http://em.21dtv.com/songs/60048552.mkv +郑秀文-喜欢,http://em.21dtv.com/songs/60048115.mkv +林佑威-喜欢,http://em.21dtv.com/songs/60048114.mkv +李心洁-喜欢,http://em.21dtv.com/songs/60048113.mkv +甲子蕙-喜欢,http://em.21dtv.com/songs/60048112.mkv +黄湘怡-喜欢,http://em.21dtv.com/songs/60048111.mkv +古巨基-喜欢,http://em.21dtv.com/songs/60048110.mkv +米娜-喜欢(演唱会),http://em.21dtv.com/songs/60048109.mkv +痛仰乐队-西湖(演唱会),http://em.21dtv.com/songs/60047924.mkv +苏振华-习惯,http://em.21dtv.com/songs/60134159.mkv +文竹+袁琢-心谷,http://em.21dtv.com/songs/60129165.mkv +彭三-星光,http://em.21dtv.com/songs/60129135.mkv +冯霞-寻根,http://em.21dtv.com/songs/60126624.mkv +丁思忖-小鬼,http://em.21dtv.com/songs/60126560.mkv +容祖儿-新贵,http://em.21dtv.com/songs/60125416.mkv +朱允儿-习惯,http://em.21dtv.com/songs/60122820.mkv +容祖儿-新贵,http://em.21dtv.com/songs/60122676.mkv +李佳伦-心歌,http://em.21dtv.com/songs/60121761.mkv +陈冰-虚构,http://em.21dtv.com/songs/60121065.mkv +IU-膝盖,http://em.21dtv.com/songs/60116458.mkv +吴梓涵-习惯,http://em.21dtv.com/songs/60115050.mkv +王倩一-习惯,http://em.21dtv.com/songs/60113849.mkv +郑棋元-习惯,http://em.21dtv.com/songs/60112306.mkv +后弦-鞋跟,http://em.21dtv.com/songs/60110913.mkv +佩希-习惯,http://em.21dtv.com/songs/60101041.mkv +张榜强-习惯,http://em.21dtv.com/songs/60099234.mkv +郑伊健-新歌,http://em.21dtv.com/songs/60093267.mkv +SNOWMAN-新歌,http://em.21dtv.com/songs/60092191.mkv +唐禹哲-新歌,http://em.21dtv.com/songs/60087611.mkv +叫吠音乐联盟-新歌,http://em.21dtv.com/songs/60087510.mkv +魏新雨-习惯,http://em.21dtv.com/songs/60070027.mkv +林姗-习惯,http://em.21dtv.com/songs/60068819.mkv +凤凰传奇-星光,http://em.21dtv.com/songs/60061781.mkv +SHINE-雪柜,http://em.21dtv.com/songs/60051678.mkv +林晓培-虚构,http://em.21dtv.com/songs/60051536.mkv +S.H.E-星光,http://em.21dtv.com/songs/60051041.mkv +郭富城-信鸽,http://em.21dtv.com/songs/60050996.mkv +郑伊健-流行,http://em.21dtv.com/songs/60050833.mkv +唐禹哲-流行,http://em.21dtv.com/songs/60050832.mkv +叫吠音乐联盟-流行,http://em.21dtv.com/songs/60050831.mkv +SNOWMAN-流行,http://em.21dtv.com/songs/60050830.mkv +柯以敏-心歌,http://em.21dtv.com/songs/60050270.mkv +佚名-心港,http://em.21dtv.com/songs/60050269.mkv +伊能静-小狗,http://em.21dtv.com/songs/60049559.mkv +希婕-小狗,http://em.21dtv.com/songs/60049558.mkv +胡彦斌-小狗(演唱会),http://em.21dtv.com/songs/60049557.mkv +曲锦楠-霞光,http://em.21dtv.com/songs/60048237.mkv +曾敏-喜歌,http://em.21dtv.com/songs/60048108.mkv +张楚格-习惯,http://em.21dtv.com/songs/60048066.mkv +杨丞琳-习惯,http://em.21dtv.com/songs/60048065.mkv +汪苏泷-习惯,http://em.21dtv.com/songs/60048064.mkv +陶莉萍-习惯,http://em.21dtv.com/songs/60048063.mkv +路绮欧-习惯,http://em.21dtv.com/songs/60048062.mkv +陈见飞-习惯,http://em.21dtv.com/songs/60048061.mkv +小耍-西关,http://em.21dtv.com/songs/60047920.mkv +廖伟力-西关,http://em.21dtv.com/songs/60047919.mkv +乐天乐团-幸福style,http://em.21dtv.com/songs/60084271.mkv +张风华-心坟,http://em.21dtv.com/songs/60133699.mkv +徐如歌+徐洪刚-幸福,http://em.21dtv.com/songs/60126913.mkv +辉星-掀翻,http://em.21dtv.com/songs/60124535.mkv +阿鲁阿卓-西风,http://em.21dtv.com/songs/60117317.mkv +李春波-小芳,http://em.21dtv.com/songs/60113631.mkv +李荣浩-小芳,http://em.21dtv.com/songs/60109439.mkv +徐新军+徐黄真琦-幸福,http://em.21dtv.com/songs/60107745.mkv +黄琦雯-幸福,http://em.21dtv.com/songs/60102978.mkv +方大同-小方,http://em.21dtv.com/songs/60098404.mkv +静婷+李国祥-戏凤,http://em.21dtv.com/songs/60090305.mkv +HOT-幸福,http://em.21dtv.com/songs/60084272.mkv +蔡小虎+龙千玉-幸福,http://em.21dtv.com/songs/60078901.mkv +王鹏-心佛,http://em.21dtv.com/songs/60078760.mkv +童丽-戏凤,http://em.21dtv.com/songs/60078531.mkv +吴香伦-戏凤(演唱会),http://em.21dtv.com/songs/60078530.mkv +鲁振顺+林静仪-戏凤(演唱会),http://em.21dtv.com/songs/60078529.mkv +胡鸿钧-幸福,http://em.21dtv.com/songs/60071368.mkv +SUPER JUNIOR-幸福,http://em.21dtv.com/songs/60071361.mkv +毛阿敏-幸福,http://em.21dtv.com/songs/60068875.mkv +罗志祥-幸福啰(演唱会),http://em.21dtv.com/songs/60067675.mkv +江宇-心坟,http://em.21dtv.com/songs/60067652.mkv +柳影虹+王天丽-戏凤(演唱会),http://em.21dtv.com/songs/60062688.mkv +张学友-寻福,http://em.21dtv.com/songs/60051810.mkv +陈明-学飞,http://em.21dtv.com/songs/60051637.mkv +M3-旋风(无原唱),http://em.21dtv.com/songs/60051587.mkv +郑钧-幸福,http://em.21dtv.com/songs/60051223.mkv +月光星子-幸福,http://em.21dtv.com/songs/60051222.mkv +艳乐队-幸福,http://em.21dtv.com/songs/60051221.mkv +艳-幸福,http://em.21dtv.com/songs/60051220.mkv +许慧欣-幸福,http://em.21dtv.com/songs/60051219.mkv +王菀之-幸福,http://em.21dtv.com/songs/60051218.mkv +王凡瑞-幸福,http://em.21dtv.com/songs/60051217.mkv +斯琴格日乐-幸福,http://em.21dtv.com/songs/60051216.mkv +齐豫-幸福,http://em.21dtv.com/songs/60051215.mkv +彭立-幸福,http://em.21dtv.com/songs/60051214.mkv +李思琳-幸福,http://em.21dtv.com/songs/60051213.mkv +锦绣二重唱-幸福,http://em.21dtv.com/songs/60051212.mkv +何耀珊-幸福,http://em.21dtv.com/songs/60051211.mkv +方皓玟-幸福,http://em.21dtv.com/songs/60051210.mkv +陈明-幸福,http://em.21dtv.com/songs/60051209.mkv +陈雷-幸福,http://em.21dtv.com/songs/60051208.mkv +蔡琴-幸福,http://em.21dtv.com/songs/60051207.mkv +TRY-幸福,http://em.21dtv.com/songs/60051206.mkv +李克勤-幸福(演唱会),http://em.21dtv.com/songs/60051205.mkv +锦绣二重唱-幸福(演唱会),http://em.21dtv.com/songs/60051204.mkv +TWINS-兴奋,http://em.21dtv.com/songs/60051193.mkv +陈奕迅-心腹,http://em.21dtv.com/songs/60050233.mkv +孙翊轩-心坟,http://em.21dtv.com/songs/60050230.mkv +李春波-小芳,http://em.21dtv.com/songs/60049547.mkv +李春波-小芳(演唱会),http://em.21dtv.com/songs/60049546.mkv +陈百祥-小芳(演唱会),http://em.21dtv.com/songs/60049545.mkv +吴国敬-想飞,http://em.21dtv.com/songs/60049029.mkv +任贤齐-想飞,http://em.21dtv.com/songs/60049028.mkv +马浚伟-想飞,http://em.21dtv.com/songs/60049027.mkv +李心洁-想飞,http://em.21dtv.com/songs/60049026.mkv +大风-想飞,http://em.21dtv.com/songs/60049025.mkv +王菀之-想飞(演唱会),http://em.21dtv.com/songs/60049024.mkv +张蓉蓉-相逢,http://em.21dtv.com/songs/60048638.mkv +林志炫-相逢,http://em.21dtv.com/songs/60048637.mkv +方瑞娥+高向鹏-相逢,http://em.21dtv.com/songs/60048636.mkv +佚名-戏凤,http://em.21dtv.com/songs/60048197.mkv +静婷+江宏-戏凤,http://em.21dtv.com/songs/60048196.mkv +张伟文+苏珊-戏凤(演唱会),http://em.21dtv.com/songs/60048195.mkv +苏珊+张伟文-戏凤(演唱会),http://em.21dtv.com/songs/60048194.mkv +蔡秋凤-惜福,http://em.21dtv.com/songs/60048031.mkv +婷婷-西风,http://em.21dtv.com/songs/60047912.mkv +骆超勇-西风,http://em.21dtv.com/songs/60047911.mkv +张芝明-雪儿,http://em.21dtv.com/songs/60071387.mkv +胡杏儿-幸而,http://em.21dtv.com/songs/60051203.mkv +祁隆+冷漠-兄弟,http://em.21dtv.com/songs/60135611.mkv +孙健康-兄弟,http://em.21dtv.com/songs/60133557.mkv +陈贤聪-兄弟,http://em.21dtv.com/songs/60127566.mkv +陈茂丰-兄弟,http://em.21dtv.com/songs/60126405.mkv +袁咏琳-心底,http://em.21dtv.com/songs/60126163.mkv +童安格-心动,http://em.21dtv.com/songs/60126006.mkv +陈贤聪-兄弟,http://em.21dtv.com/songs/60124658.mkv +C BLOCK-兄弟,http://em.21dtv.com/songs/60122354.mkv +东来东往-亵渎,http://em.21dtv.com/songs/60121333.mkv +简弘亦-心动,http://em.21dtv.com/songs/60119865.mkv +陈升-兄弟,http://em.21dtv.com/songs/60118145.mkv +艾尼瓦尔江-小呆,http://em.21dtv.com/songs/60117999.mkv +秋野-相对,http://em.21dtv.com/songs/60117107.mkv +认真+小仁真-兄弟,http://em.21dtv.com/songs/60115386.mkv +雷启飞+周祥+吴天世+天勇-胸弟,http://em.21dtv.com/songs/60114878.mkv +邓小龙-兄弟,http://em.21dtv.com/songs/60114116.mkv +斯琴巴图+张驰昊-兄弟,http://em.21dtv.com/songs/60113551.mkv +祁隆+冷漠-兄弟,http://em.21dtv.com/songs/60111328.mkv +吉武-兄弟,http://em.21dtv.com/songs/60110068.mkv +陈洁仪-心动,http://em.21dtv.com/songs/60108131.mkv +唐杰-兄弟,http://em.21dtv.com/songs/60106727.mkv +邓丽君-效道,http://em.21dtv.com/songs/60104469.mkv +张岱-兄弟,http://em.21dtv.com/songs/60104117.mkv +董伟-兄弟,http://em.21dtv.com/songs/60101165.mkv +蔡佳麟-兄弟,http://em.21dtv.com/songs/60098748.mkv +华兄弟-兄弟,http://em.21dtv.com/songs/60098166.mkv +逆流-兄弟,http://em.21dtv.com/songs/60096671.mkv +王琪玮+范玮琪-心动,http://em.21dtv.com/songs/60094605.mkv +湘唯一-兄弟,http://em.21dtv.com/songs/60094579.mkv +许怀欣-吓大,http://em.21dtv.com/songs/60093167.mkv +吴浩康-心淡,http://em.21dtv.com/songs/60092456.mkv +卢春如-熄灯,http://em.21dtv.com/songs/60090779.mkv +巩汉林+黄宏-鞋钉,http://em.21dtv.com/songs/60089839.mkv +苏醒-兄弟,http://em.21dtv.com/songs/60084289.mkv +谢有才-兄弟(演唱会),http://em.21dtv.com/songs/60084288.mkv +徐佳莹+刘若英-心动(演唱会),http://em.21dtv.com/songs/60084241.mkv +彭羚+容祖儿-心淡(演唱会),http://em.21dtv.com/songs/60084239.mkv +曾一鸣-心动,http://em.21dtv.com/songs/60080837.mkv +庄振凯+林俊吉-兄弟,http://em.21dtv.com/songs/60078944.mkv +旭日阳刚-兄弟,http://em.21dtv.com/songs/60078943.mkv +湘东雨-兄弟,http://em.21dtv.com/songs/60078942.mkv +沙宝亮-兄弟,http://em.21dtv.com/songs/60078941.mkv +龙井组合-兄弟,http://em.21dtv.com/songs/60078940.mkv +许廷铿-小岛,http://em.21dtv.com/songs/60078687.mkv +谢有才-兄弟,http://em.21dtv.com/songs/60072674.mkv +石咏莉-心动,http://em.21dtv.com/songs/60072641.mkv +宋逸民+宋达民-兄弟,http://em.21dtv.com/songs/60071377.mkv +S.B.D.W-兄弟,http://em.21dtv.com/songs/60068884.mkv +阿淡-兄弟,http://em.21dtv.com/songs/60067678.mkv +金志文+杨坤-兄弟,http://em.21dtv.com/songs/60067094.mkv +泽尔丹-兄弟,http://em.21dtv.com/songs/60066499.mkv +张政雄+薛佩洁-小弟,http://em.21dtv.com/songs/60066459.mkv +蔡黄汝-逊掉,http://em.21dtv.com/songs/60065300.mkv +[Group] +groupName=十六万歌曲MV等 - 16 +李思捷+王祖蓝+阮兆祥-兄弟,http://em.21dtv.com/songs/60065280.mkv +陈势安-心洞,http://em.21dtv.com/songs/60065230.mkv +完玛三智-心灯,http://em.21dtv.com/songs/60065229.mkv +容中尔甲-兄弟,http://em.21dtv.com/songs/60062888.mkv +含瑞-兄弟,http://em.21dtv.com/songs/60062420.mkv +阿里郎-兄弟(演唱会),http://em.21dtv.com/songs/60061788.mkv +郑欣宜-兄弟,http://em.21dtv.com/songs/60051456.mkv +元嘉-兄弟,http://em.21dtv.com/songs/60051455.mkv +宇桐非+易欣-兄弟,http://em.21dtv.com/songs/60051454.mkv +佚名-兄弟,http://em.21dtv.com/songs/60051453.mkv +杨坤+张涵予+邓超-兄弟,http://em.21dtv.com/songs/60051452.mkv +魏斌-兄弟,http://em.21dtv.com/songs/60051451.mkv +王子豪-兄弟,http://em.21dtv.com/songs/60051450.mkv +孙楠+区俊涛-兄弟,http://em.21dtv.com/songs/60051449.mkv +任岩-兄弟,http://em.21dtv.com/songs/60051448.mkv +任贤齐-兄弟,http://em.21dtv.com/songs/60051447.mkv +罗敏庄-兄弟,http://em.21dtv.com/songs/60051446.mkv +刘德华+陈奕迅-兄弟,http://em.21dtv.com/songs/60051445.mkv +黄阅-兄弟,http://em.21dtv.com/songs/60051444.mkv +黄品源-兄弟,http://em.21dtv.com/songs/60051443.mkv +侯牧人-兄弟,http://em.21dtv.com/songs/60051442.mkv +杜汶泽-兄弟,http://em.21dtv.com/songs/60051441.mkv +杨千嬅+黄耀明-兄弟(演唱会),http://em.21dtv.com/songs/60051439.mkv +群星-兄弟(演唱会),http://em.21dtv.com/songs/60051438.mkv +何韵诗-兄弟(演唱会),http://em.21dtv.com/songs/60051437.mkv +阿木-兄弟(演唱会),http://em.21dtv.com/songs/60051436.mkv +钟欣桐-心多,http://em.21dtv.com/songs/60050224.mkv +钟欣桐-心多(演唱会),http://em.21dtv.com/songs/60050223.mkv +林依轮-心动,http://em.21dtv.com/songs/60050213.mkv +林晓培-心动,http://em.21dtv.com/songs/60050212.mkv +林隆璇-心动,http://em.21dtv.com/songs/60050211.mkv +林佳仪-心动,http://em.21dtv.com/songs/60050210.mkv +黄中原+傅薇-心动,http://em.21dtv.com/songs/60050209.mkv +迪克牛仔-心动(演唱会),http://em.21dtv.com/songs/60050208.mkv +陈晓东-心地,http://em.21dtv.com/songs/60050204.mkv +黄思婷-心灯,http://em.21dtv.com/songs/60050199.mkv +容祖儿-心淡,http://em.21dtv.com/songs/60050184.mkv +雷有辉-心淡,http://em.21dtv.com/songs/60050183.mkv +太极乐队-心淡(演唱会),http://em.21dtv.com/songs/60050182.mkv +容祖儿-心淡(演唱会),http://em.21dtv.com/songs/60050181.mkv +李克勤-心淡(演唱会),http://em.21dtv.com/songs/60050180.mkv +草蜢-心淡(演唱会),http://em.21dtv.com/songs/60050179.mkv +韩红-斜当,http://em.21dtv.com/songs/60049987.mkv +秋野-相对,http://em.21dtv.com/songs/60048628.mkv +纪炎炎-熄灯,http://em.21dtv.com/songs/60048049.mkv +豫剧-洗菜,http://em.21dtv.com/songs/60134590.mkv +张杰-星辰,http://em.21dtv.com/songs/60135207.mkv +侯丽娟-乡愁,http://em.21dtv.com/songs/60134897.mkv +群星-星辰,http://em.21dtv.com/songs/60128312.mkv +王曼旎-仙禅,http://em.21dtv.com/songs/60128229.mkv +王奕瑾-星辰,http://em.21dtv.com/songs/60127195.mkv +杨力耕-心船,http://em.21dtv.com/songs/60124103.mkv +胡修科-西窗,http://em.21dtv.com/songs/60122037.mkv +蒋小青-雪朝,http://em.21dtv.com/songs/60119943.mkv +蔡幸芳-星尘,http://em.21dtv.com/songs/60118025.mkv +姜斌斌-小丑,http://em.21dtv.com/songs/60115086.mkv +刘德华-小丑,http://em.21dtv.com/songs/60114421.mkv +麦浚龙+莫文蔚-瑕疵,http://em.21dtv.com/songs/60112399.mkv +舒浩炀+胡钰佳-小草,http://em.21dtv.com/songs/60111367.mkv +廖昌永-乡愁,http://em.21dtv.com/songs/60111051.mkv +李昊嘉-心茶,http://em.21dtv.com/songs/60110276.mkv +Zia-星尘,http://em.21dtv.com/songs/60109910.mkv +雷佳-乡愁,http://em.21dtv.com/songs/60109723.mkv +雷佳-乡愁,http://em.21dtv.com/songs/60109722.mkv +雷佳-乡愁,http://em.21dtv.com/songs/60108999.mkv +祁隆-乡愁,http://em.21dtv.com/songs/60108746.mkv +孙晓雨-乡愁,http://em.21dtv.com/songs/60105749.mkv +降央卓玛+赵鹏-乡愁,http://em.21dtv.com/songs/60105501.mkv +潘嘉丽-小丑,http://em.21dtv.com/songs/60102497.mkv +容祖儿-小草,http://em.21dtv.com/songs/60102153.mkv +潘玮柏-小丑,http://em.21dtv.com/songs/60100920.mkv +陈俊豪+陈羽凡-小草,http://em.21dtv.com/songs/60095130.mkv +张魁-小丑,http://em.21dtv.com/songs/60089874.mkv +王文娜-乡愁,http://em.21dtv.com/songs/60085991.mkv +AKB48-☆の向こう侧(演唱会),http://em.21dtv.com/songs/60082424.mkv +陈展鹏-小草,http://em.21dtv.com/songs/60078683.mkv +小哥-相处,http://em.21dtv.com/songs/60065185.mkv +佚名-喧窗,http://em.21dtv.com/songs/60051582.mkv +叶德娴-星尘,http://em.21dtv.com/songs/60051038.mkv +许茹芸-心触,http://em.21dtv.com/songs/60050177.mkv +殷紫嫣-心尘,http://em.21dtv.com/songs/60050174.mkv +佚名-小船,http://em.21dtv.com/songs/60049525.mkv +子龙-小丑,http://em.21dtv.com/songs/60049523.mkv +余天-小丑,http://em.21dtv.com/songs/60049522.mkv +姜育恒-小丑,http://em.21dtv.com/songs/60049521.mkv +至上励合-小丑(演唱会),http://em.21dtv.com/songs/60049520.mkv +卓依婷-小草,http://em.21dtv.com/songs/60049502.mkv +殷秀梅-小草,http://em.21dtv.com/songs/60049501.mkv +童唱-小草,http://em.21dtv.com/songs/60049500.mkv +红脉组合-小草,http://em.21dtv.com/songs/60049499.mkv +黄乙玲-夏愁(无原唱),http://em.21dtv.com/songs/60049083.mkv +毛阿敏-乡愁,http://em.21dtv.com/songs/60048563.mkv +龙千玉-乡愁,http://em.21dtv.com/songs/60048562.mkv +凌飞-乡愁,http://em.21dtv.com/songs/60048561.mkv +顾莉雅-乡愁,http://em.21dtv.com/songs/60048560.mkv +费玉清-乡愁,http://em.21dtv.com/songs/60048559.mkv +陈瑞-乡愁,http://em.21dtv.com/songs/60048558.mkv +李芊慧-乡愁(无原唱),http://em.21dtv.com/songs/60048557.mkv +香香-夏虫,http://em.21dtv.com/songs/60048360.mkv +许志安-下次,http://em.21dtv.com/songs/60048264.mkv +黄品源-呷茶(无原唱),http://em.21dtv.com/songs/60017791.mkv +周柏豪-小白,http://em.21dtv.com/songs/60108399.mkv +荒山亮+陈立纹-相伴,http://em.21dtv.com/songs/60095878.mkv +路绮欧-肖邦,http://em.21dtv.com/songs/60088732.mkv +蓝沁-雪白,http://em.21dtv.com/songs/60084307.mkv +C ALLSTAR-下靶,http://em.21dtv.com/songs/60078539.mkv +星弟-小白,http://em.21dtv.com/songs/60068842.mkv +赵小兵-小兵,http://em.21dtv.com/songs/60065210.mkv +张韶涵-寻宝,http://em.21dtv.com/songs/60051809.mkv +古巨基-寻宝,http://em.21dtv.com/songs/60051808.mkv +TWINS-寻宝,http://em.21dtv.com/songs/60051807.mkv +罗勋-新兵,http://em.21dtv.com/songs/60050786.mkv +容祖儿-心病,http://em.21dtv.com/songs/60050167.mkv +后弦-小白,http://em.21dtv.com/songs/60049476.mkv +路绮欧-萧邦,http://em.21dtv.com/songs/60049447.mkv +彭芳-相别,http://em.21dtv.com/songs/60048625.mkv +凯璐凯月-相伴,http://em.21dtv.com/songs/60048622.mkv +张艾嘉-惜别,http://em.21dtv.com/songs/60048017.mkv +陈雷-惜别,http://em.21dtv.com/songs/60048016.mkv +崔子格-寻爱,http://em.21dtv.com/songs/60129025.mkv +香香-炫爱,http://em.21dtv.com/songs/60128594.mkv +欧得洋-想爱,http://em.21dtv.com/songs/60125836.mkv +李佳思-小爱,http://em.21dtv.com/songs/60125691.mkv +韩秋瑜-相爱,http://em.21dtv.com/songs/60115527.mkv +曹雅雯-心爱,http://em.21dtv.com/songs/60112725.mkv +冉青霞-寻爱,http://em.21dtv.com/songs/60111702.mkv +鸿飞-寻爱,http://em.21dtv.com/songs/60109764.mkv +游鸿明-酗爱,http://em.21dtv.com/songs/60109501.mkv +唐大聪-悬案,http://em.21dtv.com/songs/60109233.mkv +郝彤-习爱,http://em.21dtv.com/songs/60108926.mkv +徐宁-新岸,http://em.21dtv.com/songs/60108517.mkv +陈佳-信爱,http://em.21dtv.com/songs/60098847.mkv +李浩民-想爱,http://em.21dtv.com/songs/60086980.mkv +张可儿-修爱,http://em.21dtv.com/songs/60084296.mkv +张祥洪-醒爱,http://em.21dtv.com/songs/60084267.mkv +袁娅维-想爱,http://em.21dtv.com/songs/60080828.mkv +李浩民+蓝思思-想爱(演唱会),http://em.21dtv.com/songs/60065195.mkv +张敬轩-惜爱,http://em.21dtv.com/songs/60061734.mkv +胡杏儿-寻爱,http://em.21dtv.com/songs/60051805.mkv +甘薇-学爱,http://em.21dtv.com/songs/60051632.mkv +FT ISLAND-譃爱,http://em.21dtv.com/songs/60051554.mkv +黎明-心爱,http://em.21dtv.com/songs/60050103.mkv +吴雨霏-小爱,http://em.21dtv.com/songs/60049474.mkv +叶瑷菱-想爱,http://em.21dtv.com/songs/60048987.mkv +无印良品-想爱,http://em.21dtv.com/songs/60048986.mkv +王力宏+倪睿思-想爱,http://em.21dtv.com/songs/60048985.mkv +曾宝仪-想爱,http://em.21dtv.com/songs/60048984.mkv +张学友-相爱,http://em.21dtv.com/songs/60048586.mkv +麦子杰-相爱,http://em.21dtv.com/songs/60048585.mkv +韩红-相爱,http://em.21dtv.com/songs/60048584.mkv +范逸臣+同恩-相爱,http://em.21dtv.com/songs/60048583.mkv +徐伟贤-献爱,http://em.21dtv.com/songs/60048540.mkv +谭咏麟-喜爱,http://em.21dtv.com/songs/60048102.mkv +周雅芳-嬉爱,http://em.21dtv.com/songs/60048057.mkv +小林幸子-幸ㄝ(无原唱),http://em.21dtv.com/songs/60051200.mkv +Anly-笑顔,http://em.21dtv.com/songs/60123435.mkv +陈奕雯-伪装,http://em.21dtv.com/songs/60135912.mkv +汪起正-舞者,http://em.21dtv.com/songs/60132676.mkv +于朦胧-无罪,http://em.21dtv.com/songs/60127716.mkv +庄心妍-位置,http://em.21dtv.com/songs/60126836.mkv +美廷-晚装,http://em.21dtv.com/songs/60126041.mkv +小虫-我在,http://em.21dtv.com/songs/60125437.mkv +庄心妍-位置,http://em.21dtv.com/songs/60119486.mkv +刘恺威-无终,http://em.21dtv.com/songs/60118391.mkv +墨明棋妙-闻战,http://em.21dtv.com/songs/60110105.mkv +张栋梁-王子,http://em.21dtv.com/songs/60106855.mkv +乱弹阿翔-王者,http://em.21dtv.com/songs/60098080.mkv +阿悄-伪装,http://em.21dtv.com/songs/60096697.mkv +张栋梁-王子,http://em.21dtv.com/songs/60087826.mkv +生祥乐队-我庄,http://em.21dtv.com/songs/60084110.mkv +廖水兰-我在,http://em.21dtv.com/songs/60084099.mkv +I2STAR-闻战,http://em.21dtv.com/songs/60083996.mkv +张敬轩-未知,http://em.21dtv.com/songs/60078118.mkv +尤景文+彭佳慧-完整,http://em.21dtv.com/songs/60078008.mkv +王杰-网站,http://em.21dtv.com/songs/60068721.mkv +快女12强-武装,http://em.21dtv.com/songs/60062547.mkv +江映蓉-武装,http://em.21dtv.com/songs/60061728.mkv +五月天-武装,http://em.21dtv.com/songs/60047758.mkv +张镐哲-无助,http://em.21dtv.com/songs/60047597.mkv +佚名-无助,http://em.21dtv.com/songs/60047596.mkv +BEYOND-无助(演唱会),http://em.21dtv.com/songs/60047595.mkv +刘海波-屋子,http://em.21dtv.com/songs/60047056.mkv +尧尧-我找,http://em.21dtv.com/songs/60046830.mkv +蔡小虎-稳准,http://em.21dtv.com/songs/60044432.mkv +辛晓琪-位子,http://em.21dtv.com/songs/60044307.mkv +邰正宵-位置,http://em.21dtv.com/songs/60044306.mkv +次真降措-位置,http://em.21dtv.com/songs/60044305.mkv +A-LIN-位置,http://em.21dtv.com/songs/60044304.mkv +李圣杰-位置(演唱会),http://em.21dtv.com/songs/60044303.mkv +容祖儿-未知,http://em.21dtv.com/songs/60044298.mkv +容祖儿-未知(演唱会),http://em.21dtv.com/songs/60044297.mkv +草蜢-未知(演唱会),http://em.21dtv.com/songs/60044296.mkv +应昌佑-尾指,http://em.21dtv.com/songs/60044212.mkv +卓依婷-伪装,http://em.21dtv.com/songs/60044207.mkv +戴毅-伪装,http://em.21dtv.com/songs/60044206.mkv +A-LIN-伪装,http://em.21dtv.com/songs/60044205.mkv +黄鹤翔-王者,http://em.21dtv.com/songs/60043367.mkv +李玟-完整,http://em.21dtv.com/songs/60043154.mkv +胡德夫-无涯,http://em.21dtv.com/songs/60135641.mkv +冥月-未央,http://em.21dtv.com/songs/60134917.mkv +张世弘-我愿,http://em.21dtv.com/songs/60133643.mkv +么健-望月,http://em.21dtv.com/songs/60133331.mkv +白举纲-无恙,http://em.21dtv.com/songs/60130622.mkv +田馥甄-无用,http://em.21dtv.com/songs/60129434.mkv +Krystal-呜咽,http://em.21dtv.com/songs/60128682.mkv +林为音-望月,http://em.21dtv.com/songs/60128118.mkv +宰耿-无缘,http://em.21dtv.com/songs/60124786.mkv +董文华-无语,http://em.21dtv.com/songs/60120917.mkv +火风+霍尊-吻月,http://em.21dtv.com/songs/60119786.mkv +刘晓-望月,http://em.21dtv.com/songs/60119301.mkv +孙楠-唯一,http://em.21dtv.com/songs/60117657.mkv +橙草-乌鸦,http://em.21dtv.com/songs/60116979.mkv +林小龙-网缘,http://em.21dtv.com/songs/60116968.mkv +谢名-望月,http://em.21dtv.com/songs/60114781.mkv +王亚东-我愿,http://em.21dtv.com/songs/60110376.mkv +王力宏-唯一(HD),http://em.21dtv.com/songs/10012699.mkv +王琳玲-望月,http://em.21dtv.com/songs/60108717.mkv +傅振辉-问缘,http://em.21dtv.com/songs/60108310.mkv +伍越-五月,http://em.21dtv.com/songs/60104778.mkv +酷爱乐团-无缘,http://em.21dtv.com/songs/60104506.mkv +品冠-蜿蜒,http://em.21dtv.com/songs/60102058.mkv +Lukus-无语,http://em.21dtv.com/songs/60101793.mkv +茜拉-唯一,http://em.21dtv.com/songs/60100425.mkv +郭洪领-问月,http://em.21dtv.com/songs/60099545.mkv +Lee Michelle-Without You,http://em.21dtv.com/songs/60099009.mkv +李伟-望月,http://em.21dtv.com/songs/60098452.mkv +马旭东-无言,http://em.21dtv.com/songs/60095162.mkv +萧敬腾+肖懿航-唯一,http://em.21dtv.com/songs/60094671.mkv +周亮-望月,http://em.21dtv.com/songs/60087574.mkv +李潮-望月,http://em.21dtv.com/songs/60086905.mkv +七郎-五月,http://em.21dtv.com/songs/60085967.mkv +庄振凯-毋愿,http://em.21dtv.com/songs/60085966.mkv +梁汉文-外遇,http://em.21dtv.com/songs/60083944.mkv +迪克牛仔-外遇,http://em.21dtv.com/songs/60083943.mkv +MARIAHCARRY-without you(演唱会),http://em.21dtv.com/songs/60082401.mkv +逆思乐团-With You,http://em.21dtv.com/songs/60081954.mkv +黄绮珊-Without You,http://em.21dtv.com/songs/60079921.mkv +叶倩文-我要(演唱会),http://em.21dtv.com/songs/60078378.mkv +林静仪-我要(演唱会),http://em.21dtv.com/songs/60078377.mkv +武艺-问月,http://em.21dtv.com/songs/60078131.mkv +张崇基+张崇德-唯一(演唱会),http://em.21dtv.com/songs/60078108.mkv +五月天-歪腰,http://em.21dtv.com/songs/60077996.mkv +邓瑞霞-without you(演唱会),http://em.21dtv.com/songs/60074155.mkv +黄绮珊+THE ONE-without you),http://em.21dtv.com/songs/60074154.mkv +蔡秋凤-问月,http://em.21dtv.com/songs/60072511.mkv +梦成-唯一,http://em.21dtv.com/songs/60071221.mkv +阚杰+贾子菡-无语,http://em.21dtv.com/songs/60070016.mkv +张赫宣+卓义峰-无言,http://em.21dtv.com/songs/60070014.mkv +本兮-无语,http://em.21dtv.com/songs/60068811.mkv +陈笑玮-望月,http://em.21dtv.com/songs/60066370.mkv +高玉玫-舞夜,http://em.21dtv.com/songs/60065155.mkv +简燕飞-无忧,http://em.21dtv.com/songs/60065146.mkv +龚月-望月,http://em.21dtv.com/songs/60065011.mkv +KEITH URBAN-without you,http://em.21dtv.com/songs/60063807.mkv +柳影虹-我要(演唱会),http://em.21dtv.com/songs/60062703.mkv +郝冠英-唯一,http://em.21dtv.com/songs/60062438.mkv +DAVID GUETTA-without you,http://em.21dtv.com/songs/60062003.mkv +佚名-雾夜,http://em.21dtv.com/songs/60047853.mkv +林姗姗-雾夜,http://em.21dtv.com/songs/60047852.mkv +RIKA-物语(无原唱),http://em.21dtv.com/songs/60047825.mkv +XL特大号乐团-午夜,http://em.21dtv.com/songs/60047698.mkv +周旭风-无缘,http://em.21dtv.com/songs/60047558.mkv +张真贺-无缘,http://em.21dtv.com/songs/60047557.mkv +陶喆-无缘,http://em.21dtv.com/songs/60047556.mkv +林玉英-无缘,http://em.21dtv.com/songs/60047555.mkv +佚名-无语,http://em.21dtv.com/songs/60047550.mkv +LISA-乌云,http://em.21dtv.com/songs/60047049.mkv +黄馨-乌鸦,http://em.21dtv.com/songs/60047046.mkv +凤飞飞-我愿(无原唱),http://em.21dtv.com/songs/60046730.mkv +羽泉-我要,http://em.21dtv.com/songs/60046498.mkv +叶德娴-我要,http://em.21dtv.com/songs/60046497.mkv +叶德娴-我要(演唱会),http://em.21dtv.com/songs/60046496.mkv +沈殿霞-我要(演唱会),http://em.21dtv.com/songs/60046495.mkv +黄湘怡-吻雨,http://em.21dtv.com/songs/60044429.mkv +谢霆锋-瘟疫,http://em.21dtv.com/songs/60044384.mkv +钟汶-唯一,http://em.21dtv.com/songs/60044180.mkv +杨晶晶-唯一,http://em.21dtv.com/songs/60044179.mkv +王力宏-唯一,http://em.21dtv.com/songs/60044178.mkv +王力宏-唯一(演唱会),http://em.21dtv.com/songs/60044177.mkv +林俊杰-唯一(演唱会),http://em.21dtv.com/songs/60044176.mkv +张学友-望月,http://em.21dtv.com/songs/60043726.mkv +宋祖英-望月,http://em.21dtv.com/songs/60043725.mkv +张学友-望月(演唱会),http://em.21dtv.com/songs/60043724.mkv +陈奕迅-望月(演唱会),http://em.21dtv.com/songs/60043723.mkv +幸福飞扬-网缘,http://em.21dtv.com/songs/60043397.mkv +陈玉建-网缘,http://em.21dtv.com/songs/60043396.mkv +吴国敬-玩意(演唱会),http://em.21dtv.com/songs/60043186.mkv +MARIAH CAREY-without you,http://em.21dtv.com/songs/60006386.mkv +黄立行-without you(演唱会),http://em.21dtv.com/songs/60006385.mkv +关心妍-without you(演唱会),http://em.21dtv.com/songs/60006384.mkv +AIR SUPPLY-without you(演唱会),http://em.21dtv.com/songs/60006383.mkv +JESSICA SIMPSON-with you,http://em.21dtv.com/songs/60006379.mkv +CHRIS BROWN-with you,http://em.21dtv.com/songs/60006378.mkv +LIL+WISE-watching you,http://em.21dtv.com/songs/60006121.mkv +谭耀文-忘形Champagne,http://em.21dtv.com/songs/60093220.mkv +刘瑞琦-玩笑,http://em.21dtv.com/songs/60134939.mkv +吉克隽逸-无侠,http://em.21dtv.com/songs/60130171.mkv +宇翔-晚霞,http://em.21dtv.com/songs/60125404.mkv +张杰-我想,http://em.21dtv.com/songs/60122732.mkv +邹文正-妄想,http://em.21dtv.com/songs/60122166.mkv +李紫涵-无心,http://em.21dtv.com/songs/60116924.mkv +梁博-危险,http://em.21dtv.com/songs/60116063.mkv +宋祖英-微笑,http://em.21dtv.com/songs/60110156.mkv +善莹-我想,http://em.21dtv.com/songs/60109238.mkv +枫舞+茹雪-惋惜,http://em.21dtv.com/songs/60104253.mkv +何宗龙-温习,http://em.21dtv.com/songs/60099081.mkv +王宏健-微信,http://em.21dtv.com/songs/60098634.mkv +阿悄-外星,http://em.21dtv.com/songs/60096677.mkv +刘瑞琦-玩笑,http://em.21dtv.com/songs/60093775.mkv +王友良-我信,http://em.21dtv.com/songs/60092974.mkv +谭炜星-微信,http://em.21dtv.com/songs/60085835.mkv +海龟先生-微笑,http://em.21dtv.com/songs/60085831.mkv +杨宗纬-无邪,http://em.21dtv.com/songs/60084131.mkv +绯村柯北-忘仙,http://em.21dtv.com/songs/60083962.mkv +钟洁+RILL-玩心,http://em.21dtv.com/songs/60083946.mkv +宋祖英-微笑(演唱会),http://em.21dtv.com/songs/60078064.mkv +王少峰-望乡,http://em.21dtv.com/songs/60078059.mkv +张博-我想,http://em.21dtv.com/songs/60069984.mkv +黄小琥-妄想,http://em.21dtv.com/songs/60066363.mkv +宿雨涵-微笑,http://em.21dtv.com/songs/60065012.mkv +陈柏宇+林奕匡-无限,http://em.21dtv.com/songs/60061725.mkv +谢霆锋-无形,http://em.21dtv.com/songs/60047507.mkv +陈慧琳-无限,http://em.21dtv.com/songs/60047480.mkv +F.I.R-无限,http://em.21dtv.com/songs/60047479.mkv +郑秀文-无限(演唱会),http://em.21dtv.com/songs/60047478.mkv +南拳妈妈-无瑕,http://em.21dtv.com/songs/60047477.mkv +王喜-我信,http://em.21dtv.com/songs/60046472.mkv +孙燕姿-我想,http://em.21dtv.com/songs/60046371.mkv +邝美云-窝心,http://em.21dtv.com/songs/60044519.mkv +裘海正-纹心,http://em.21dtv.com/songs/60044397.mkv +张学友-温馨,http://em.21dtv.com/songs/60044381.mkv +徐怀钰-温习,http://em.21dtv.com/songs/60044380.mkv +张杰-微笑,http://em.21dtv.com/songs/60043777.mkv +佚名-微笑,http://em.21dtv.com/songs/60043776.mkv +杨千嬅-微笑,http://em.21dtv.com/songs/60043775.mkv +谭晶-微笑,http://em.21dtv.com/songs/60043774.mkv +桑兰+黄伟麟-微笑,http://em.21dtv.com/songs/60043773.mkv +刘德华-微笑,http://em.21dtv.com/songs/60043772.mkv +何炅+桑兰-微笑,http://em.21dtv.com/songs/60043771.mkv +陈思思-微笑,http://em.21dtv.com/songs/60043770.mkv +张杰-微笑(演唱会),http://em.21dtv.com/songs/60043769.mkv +满文军-望乡,http://em.21dtv.com/songs/60043712.mkv +郭富城-望乡,http://em.21dtv.com/songs/60043711.mkv +满文军-望乡(演唱会),http://em.21dtv.com/songs/60043710.mkv +郭富城-望乡(演唱会),http://em.21dtv.com/songs/60043709.mkv +王玲-望乡(无原唱),http://em.21dtv.com/songs/60043708.mkv +张卫健-妄想,http://em.21dtv.com/songs/60043474.mkv +VRF-妄想,http://em.21dtv.com/songs/60043473.mkv +BEYOND-妄想,http://em.21dtv.com/songs/60043472.mkv +林慧萍-往昔,http://em.21dtv.com/songs/60043468.mkv +林慧萍-往昔(演唱会)(无原唱),http://em.21dtv.com/songs/60043467.mkv +余天-尪婿,http://em.21dtv.com/songs/60043336.mkv +张伟文-晚霞,http://em.21dtv.com/songs/60043246.mkv +叶枫-晚霞,http://em.21dtv.com/songs/60043245.mkv +蔡琴-晚霞(演唱会),http://em.21dtv.com/songs/60043244.mkv +袁洁莹-玩笑,http://em.21dtv.com/songs/60043185.mkv +萧亚轩-玩笑,http://em.21dtv.com/songs/60043184.mkv +KAT.TUN-white xmas,http://em.21dtv.com/songs/60006310.mkv +舒延-望我,http://em.21dtv.com/songs/60135647.mkv +关喆-无畏,http://em.21dtv.com/songs/60130097.mkv +关喆-无畏,http://em.21dtv.com/songs/60128808.mkv +大嘴巴-玩玩,http://em.21dtv.com/songs/60120431.mkv +万万天团+赵英俊-万万,http://em.21dtv.com/songs/60118295.mkv +陈一玲-无物,http://em.21dtv.com/songs/60112341.mkv +王力宏-忘我,http://em.21dtv.com/songs/60112094.mkv +解伟苓-无误,http://em.21dtv.com/songs/60108000.mkv +王力宏+Avicii-忘我,http://em.21dtv.com/songs/60107901.mkv +刘其贤-娃娃,http://em.21dtv.com/songs/60094828.mkv +张伟文-问我,http://em.21dtv.com/songs/60092563.mkv +杜雯惠-问我(演唱会),http://em.21dtv.com/songs/60083999.mkv +小曲儿-谓我,http://em.21dtv.com/songs/60083991.mkv +DARIUS RUCKER-wagon wheel,http://em.21dtv.com/songs/60082381.mkv +9NINE-white wishes,http://em.21dtv.com/songs/60071690.mkv +安心亚-唯舞,http://em.21dtv.com/songs/60068738.mkv +MUMFORD+SONS-winter winds,http://em.21dtv.com/songs/60065730.mkv +王若琳-wild world,http://em.21dtv.com/songs/60063801.mkv +柳影虹-问我(演唱会),http://em.21dtv.com/songs/60062702.mkv +余文乐-喂喂,http://em.21dtv.com/songs/60061663.mkv +胡培蔚-无谓,http://em.21dtv.com/songs/60047470.mkv +陈明-无畏,http://em.21dtv.com/songs/60047468.mkv +郑秀文-问我,http://em.21dtv.com/songs/60044498.mkv +陈丽斯-问我,http://em.21dtv.com/songs/60044497.mkv +陈慧琳-问我,http://em.21dtv.com/songs/60044496.mkv +钟镇涛-问我(演唱会),http://em.21dtv.com/songs/60044495.mkv +叶丽仪-问我(演唱会),http://em.21dtv.com/songs/60044494.mkv +仙杜拉-问我(演唱会),http://em.21dtv.com/songs/60044493.mkv +胡美仪-问我(演唱会),http://em.21dtv.com/songs/60044492.mkv +成龙-问我(演唱会),http://em.21dtv.com/songs/60044491.mkv +群星-问我(HD演唱会),http://em.21dtv.com/songs/60044490.mkv +周笔畅-喂喂,http://em.21dtv.com/songs/60044317.mkv +张宇-玩味,http://em.21dtv.com/songs/60043181.mkv +陈慧娴-玩味,http://em.21dtv.com/songs/60043180.mkv +夹子道-玩玩,http://em.21dtv.com/songs/60043178.mkv +刘美君-玩玩(演唱会),http://em.21dtv.com/songs/60043177.mkv +张韶涵-娃娃,http://em.21dtv.com/songs/60043045.mkv +薇薇-娃娃,http://em.21dtv.com/songs/60043044.mkv +童星-娃娃,http://em.21dtv.com/songs/60043043.mkv +区瑞强-娃娃,http://em.21dtv.com/songs/60043042.mkv +李娟-娃娃,http://em.21dtv.com/songs/60043041.mkv +王心凌-woosa woosa,http://em.21dtv.com/songs/60006405.mkv +BOA-woo weekend,http://em.21dtv.com/songs/60006403.mkv +関ジャニ∞-wonderful world,http://em.21dtv.com/songs/60006399.mkv +佚名-woman woman,http://em.21dtv.com/songs/60006393.mkv +佚名-winter wonderland,http://em.21dtv.com/songs/60006363.mkv +F.BEMARD+D.SMLTH-winter wonderland,http://em.21dtv.com/songs/60006362.mkv +CAT STEVENS-wild world,http://em.21dtv.com/songs/60006337.mkv +SHAKIRA-whenever wherever,http://em.21dtv.com/songs/60006277.mkv +郭彪-we will,http://em.21dtv.com/songs/60006152.mkv +SHAKIRA-waka waka,http://em.21dtv.com/songs/60006088.mkv +Mr.-Wake Up,http://em.21dtv.com/songs/60099015.mkv +4 NON BLONDES-whats up,http://em.21dtv.com/songs/60086381.mkv +刘雅婷-Whats Up,http://em.21dtv.com/songs/60081522.mkv +舒克-Wake Up,http://em.21dtv.com/songs/60081386.mkv +倪安东-wake up,http://em.21dtv.com/songs/60066749.mkv +MAKIYO-wake up,http://em.21dtv.com/songs/60062105.mkv +青山テルマ+4MINUTE-without u,http://em.21dtv.com/songs/60060950.mkv +T.JENKINS+L.BLACKMON-word up,http://em.21dtv.com/songs/60006406.mkv +KAT DELUNA+ELEPHANT-whine up(无原唱),http://em.21dtv.com/songs/60006303.mkv +张惠妹-whats up,http://em.21dtv.com/songs/60006227.mkv +佚名-whats up,http://em.21dtv.com/songs/60006226.mkv +容祖儿-whats up,http://em.21dtv.com/songs/60006225.mkv +李玟-whats up(演唱会),http://em.21dtv.com/songs/60006224.mkv +周华健-wake up,http://em.21dtv.com/songs/60006097.mkv +林晓培-wake up,http://em.21dtv.com/songs/60006096.mkv +柯有伦-wake up,http://em.21dtv.com/songs/60006095.mkv +HILARY DUFF-wake up,http://em.21dtv.com/songs/60006094.mkv +白小白-舞台,http://em.21dtv.com/songs/60135594.mkv +许廷铿-问天,http://em.21dtv.com/songs/60126179.mkv +许廷铿-问天,http://em.21dtv.com/songs/60122114.mkv +高天海-唯弹,http://em.21dtv.com/songs/60104609.mkv +艾雨-问题,http://em.21dtv.com/songs/60091918.mkv +谭晴-顽童,http://em.21dtv.com/songs/60071201.mkv +马旭东-无题,http://em.21dtv.com/songs/60070011.mkv +林俊杰-we together,http://em.21dtv.com/songs/60063790.mkv +余天-舞台,http://em.21dtv.com/songs/60047809.mkv +弦子-舞台,http://em.21dtv.com/songs/60047808.mkv +余天-舞台(演唱会),http://em.21dtv.com/songs/60047807.mkv +张可芝-舞台(演唱会)(无原唱),http://em.21dtv.com/songs/60047806.mkv +陈晓元-无题(演唱会),http://em.21dtv.com/songs/60047457.mkv +王识贤-问天,http://em.21dtv.com/songs/60044485.mkv +阿吉仔-问天,http://em.21dtv.com/songs/60044484.mkv +文章-望天,http://em.21dtv.com/songs/60043704.mkv +李煜-望天,http://em.21dtv.com/songs/60043703.mkv +谢朋举-外套,http://em.21dtv.com/songs/60043085.mkv +动力火车-外套,http://em.21dtv.com/songs/60043084.mkv +ERIC CLAPTON-wonderful tonight,http://em.21dtv.com/songs/60006398.mkv +玉珍-握手,http://em.21dtv.com/songs/60128211.mkv +李明洋-往事,http://em.21dtv.com/songs/60132544.mkv +李雨-万水,http://em.21dtv.com/songs/60128096.mkv +皓天-微时,http://em.21dtv.com/songs/60120820.mkv +欧霖-挽手,http://em.21dtv.com/songs/60119744.mkv +Outsider+Nav-纹身,http://em.21dtv.com/songs/60109107.mkv +陈文娅-握手,http://em.21dtv.com/songs/60105488.mkv +郁可唯-温水,http://em.21dtv.com/songs/60102791.mkv +李韦-我说,http://em.21dtv.com/songs/60101651.mkv +李智-为谁,http://em.21dtv.com/songs/60101650.mkv +李佳薇-纹身,http://em.21dtv.com/songs/60100121.mkv +刘牧-雾凇,http://em.21dtv.com/songs/60096202.mkv +HITA+音频怪物-闻说,http://em.21dtv.com/songs/60083995.mkv +SARA BAREILLES+INGRID MICHAELS-winter song,http://em.21dtv.com/songs/60074153.mkv +50 CENT-window shopper,http://em.21dtv.com/songs/60074150.mkv +SELENA GOMEZ+THE SCENE-who says,http://em.21dtv.com/songs/60074140.mkv +云鸽李霞-往事,http://em.21dtv.com/songs/60071206.mkv +杨宗宪-无剩,http://em.21dtv.com/songs/60068806.mkv +卓依婷-舞狮,http://em.21dtv.com/songs/60047804.mkv +潘晓锋-武神,http://em.21dtv.com/songs/60047750.mkv +周杰伦-无双,http://em.21dtv.com/songs/60047437.mkv +达达乐队-无双,http://em.21dtv.com/songs/60047436.mkv +周杰伦-无双(演唱会),http://em.21dtv.com/songs/60047435.mkv +纵贯线-握手(演唱会),http://em.21dtv.com/songs/60047026.mkv +邓丽欣-我是,http://em.21dtv.com/songs/60046069.mkv +古巨基-我生,http://em.21dtv.com/songs/60046061.mkv +古巨基-我生(演唱会),http://em.21dtv.com/songs/60046060.mkv +侧田-未输,http://em.21dtv.com/songs/60044278.mkv +侧田-未输(演唱会),http://em.21dtv.com/songs/60044277.mkv +李泉-为谁(无原唱),http://em.21dtv.com/songs/60044111.mkv +辛雯-为啥,http://em.21dtv.com/songs/60044049.mkv +孟庭苇-往事,http://em.21dtv.com/songs/60043431.mkv +龙飘飘-往事,http://em.21dtv.com/songs/60043430.mkv +佑旋-往事(无原唱),http://em.21dtv.com/songs/60043429.mkv +丁菲飞-往生,http://em.21dtv.com/songs/60043428.mkv +张腾-网事,http://em.21dtv.com/songs/60043394.mkv +王杰-万岁,http://em.21dtv.com/songs/60043318.mkv +王杰-万岁(演唱会),http://em.21dtv.com/songs/60043317.mkv +赵薇-玩耍,http://em.21dtv.com/songs/60043175.mkv +蛋堡-winter sweet,http://em.21dtv.com/songs/60006361.mkv +佚名-winter song(无原唱),http://em.21dtv.com/songs/60006360.mkv +刘璇-温柔,http://em.21dtv.com/songs/60125214.mkv +梁静茹-温柔,http://em.21dtv.com/songs/60112812.mkv +孙燕姿-围绕,http://em.21dtv.com/songs/60096715.mkv +姚政+梁君诺-温柔,http://em.21dtv.com/songs/60081550.mkv +伍思凯-温柔,http://em.21dtv.com/songs/60080772.mkv +黄俊焰-外人,http://em.21dtv.com/songs/60079919.mkv +张勇-婉容,http://em.21dtv.com/songs/60078016.mkv +糖兄妹-温柔(演唱会),http://em.21dtv.com/songs/60069920.mkv +岩佐美咲-无人駅,http://em.21dtv.com/songs/60067607.mkv +东方神起-winter rose,http://em.21dtv.com/songs/60063804.mkv +五月天-温柔,http://em.21dtv.com/songs/60044350.mkv +高向鹏+林良欢+唐俪-温柔,http://em.21dtv.com/songs/60044349.mkv +五月天-温柔(演唱会),http://em.21dtv.com/songs/60044348.mkv +高进-温柔(演唱会),http://em.21dtv.com/songs/60044347.mkv +张琍敏-惘然,http://em.21dtv.com/songs/60043470.mkv +WILLIE NELSON-whiskey river,http://em.21dtv.com/songs/60006306.mkv +RIHANNA-we ride,http://em.21dtv.com/songs/60006149.mkv +于台烟-温柔(无原唱),http://em.21dtv.com/songs/60004941.mkv +李雨-吾妻,http://em.21dtv.com/songs/60128099.mkv +方琦-问情,http://em.21dtv.com/songs/60124008.mkv +梁佳玉-委屈,http://em.21dtv.com/songs/60113734.mkv +阿吉仔-无欠,http://em.21dtv.com/songs/60109677.mkv +李海华-问秋,http://em.21dtv.com/songs/60107791.mkv +君子-晚秋,http://em.21dtv.com/songs/60105687.mkv +赵雅芝-问情,http://em.21dtv.com/songs/60104460.mkv +曹轩宾-望情,http://em.21dtv.com/songs/60104181.mkv +李克勤-屋企,http://em.21dtv.com/songs/60102327.mkv +赵姝-误区,http://em.21dtv.com/songs/60096133.mkv +林显丞-无情(无原唱),http://em.21dtv.com/songs/60095675.mkv +李丽霞+陈浩德-晚秋,http://em.21dtv.com/songs/60092785.mkv +区瑞强-温情,http://em.21dtv.com/songs/60092377.mkv +小刚-委屈,http://em.21dtv.com/songs/60089816.mkv +木子烁-舞起(舞曲版),http://em.21dtv.com/songs/60086967.mkv +木子烁-舞起,http://em.21dtv.com/songs/60086966.mkv +李浩民-温泉,http://em.21dtv.com/songs/60086910.mkv +李泉+赵薇-晚情,http://em.21dtv.com/songs/60083950.mkv +萧正楠-围墙,http://em.21dtv.com/songs/60080777.mkv +王建杰-为情,http://em.21dtv.com/songs/60080062.mkv +覃晔-微情,http://em.21dtv.com/songs/60078061.mkv +孟杨-忘情,http://em.21dtv.com/songs/60078055.mkv +汤唯-晚秋,http://em.21dtv.com/songs/60066358.mkv +小爱-无情,http://em.21dtv.com/songs/60047308.mkv +洪玲-无情,http://em.21dtv.com/songs/60047307.mkv +佚名-问情,http://em.21dtv.com/songs/60044473.mkv +谢莉婷-问情,http://em.21dtv.com/songs/60044472.mkv +黄思婷-问情,http://em.21dtv.com/songs/60044471.mkv +蔡幸娟-问情,http://em.21dtv.com/songs/60044470.mkv +李冠璋+柯依雯-问情(无原唱),http://em.21dtv.com/songs/60044469.mkv +周传雄-委曲,http://em.21dtv.com/songs/60044219.mkv +金莎-委屈,http://em.21dtv.com/songs/60044215.mkv +柯以敏-委屈(演唱会),http://em.21dtv.com/songs/60044214.mkv +方怡萍-委屈(无原唱),http://em.21dtv.com/songs/60044213.mkv +李玖哲-围墙,http://em.21dtv.com/songs/60044164.mkv +黄凯芹-危情(演唱会),http://em.21dtv.com/songs/60043738.mkv +游媄镁-忘却(无原唱),http://em.21dtv.com/songs/60043643.mkv +毛宁-晚秋,http://em.21dtv.com/songs/60043239.mkv +黄凯芹-晚秋,http://em.21dtv.com/songs/60043238.mkv +毛宁-晚秋(演唱会),http://em.21dtv.com/songs/60043237.mkv +黄凯芹-晚秋(双语种),http://em.21dtv.com/songs/60043236.mkv +毛阿敏-晚情,http://em.21dtv.com/songs/60043235.mkv +上海彩虹室内合唱团-外婆,http://em.21dtv.com/songs/60132157.mkv +任和-外婆,http://em.21dtv.com/songs/60125095.mkv +女子十二乐坊-五拍,http://em.21dtv.com/songs/60089769.mkv +卢娟-我怕,http://em.21dtv.com/songs/60046013.mkv +张卫健-顽皮,http://em.21dtv.com/songs/60043191.mkv +周杰伦-外婆,http://em.21dtv.com/songs/60043075.mkv +孔令奇-world peace,http://em.21dtv.com/songs/60006417.mkv +芭比-woman power,http://em.21dtv.com/songs/60006391.mkv +王力宏-玩偶,http://em.21dtv.com/songs/60101672.mkv +ZEA-watch out,http://em.21dtv.com/songs/60068006.mkv +FLO RIDA+SIA-wild ones,http://em.21dtv.com/songs/60066758.mkv +龙韩宇-玩偶,http://em.21dtv.com/songs/60064995.mkv +青鸟飞鱼-窝哦,http://em.21dtv.com/songs/60062837.mkv +J.COLE-work out,http://em.21dtv.com/songs/60060953.mkv +玺恩-玩偶,http://em.21dtv.com/songs/60043172.mkv +曾庆瑜-玩偶(无原唱),http://em.21dtv.com/songs/60043171.mkv +D.APPELL+K.MANN+B.LO-wild one(无原唱),http://em.21dtv.com/songs/60006336.mkv +U2-walk on,http://em.21dtv.com/songs/60006103.mkv +毛泽少-武娘,http://em.21dtv.com/songs/60132665.mkv +陈祈赫-为你,http://em.21dtv.com/songs/60130854.mkv +杰子-蜗牛,http://em.21dtv.com/songs/60129288.mkv +胡斌-吻你,http://em.21dtv.com/songs/60127301.mkv +群星-蜗牛,http://em.21dtv.com/songs/60127284.mkv +李炫臻+许奕+丁于-我能,http://em.21dtv.com/songs/60124087.mkv +平安-为你,http://em.21dtv.com/songs/60123889.mkv +李鹤-为你,http://em.21dtv.com/songs/60122875.mkv +张馨文-温暖,http://em.21dtv.com/songs/60116818.mkv +邓丽君-无奈,http://em.21dtv.com/songs/60116276.mkv +李安-蜗牛,http://em.21dtv.com/songs/60115221.mkv +廖昌永-温暖,http://em.21dtv.com/songs/60115142.mkv +田校同-温暖,http://em.21dtv.com/songs/60114707.mkv +梁佳玉-温暖,http://em.21dtv.com/songs/60113736.mkv +张婧+何晟铭-无奈,http://em.21dtv.com/songs/60111866.mkv +化学猴子-唯你,http://em.21dtv.com/songs/60107549.mkv +刘欢-无奈,http://em.21dtv.com/songs/60101969.mkv +宜璇-舞娘,http://em.21dtv.com/songs/60098271.mkv +蔡幸娟-问你,http://em.21dtv.com/songs/60085860.mkv +王丽达-温暖(演唱会),http://em.21dtv.com/songs/60085856.mkv +唐笑-舞娘(演唱会),http://em.21dtv.com/songs/60078486.mkv +刘伟-为你,http://em.21dtv.com/songs/60078080.mkv +DISCLOSURE+ALUNA GEORGE-white noise,http://em.21dtv.com/songs/60074136.mkv +任承浩-无奈,http://em.21dtv.com/songs/60071289.mkv +鹿角乐团-无奈,http://em.21dtv.com/songs/60065143.mkv +张佑赫-weekend night,http://em.21dtv.com/songs/60060942.mkv +叶玉卿-舞女,http://em.21dtv.com/songs/60047797.mkv +孙淑媚-舞女,http://em.21dtv.com/songs/60047796.mkv +罗大佑-舞女,http://em.21dtv.com/songs/60047795.mkv +黄乙玲-舞女,http://em.21dtv.com/songs/60047794.mkv +韩宝仪-舞女,http://em.21dtv.com/songs/60047793.mkv +邓丽君-舞女,http://em.21dtv.com/songs/60047792.mkv +陈小云-舞女,http://em.21dtv.com/songs/60047791.mkv +朱咪咪-舞女(演唱会),http://em.21dtv.com/songs/60047790.mkv +谢雷-舞女(演唱会),http://em.21dtv.com/songs/60047789.mkv +康康-舞女(演唱会),http://em.21dtv.com/songs/60047788.mkv +黑妹-舞女(演唱会),http://em.21dtv.com/songs/60047787.mkv +蔡依林-舞娘,http://em.21dtv.com/songs/60047786.mkv +周迅-无奈,http://em.21dtv.com/songs/60047264.mkv +群星-无奈,http://em.21dtv.com/songs/60047263.mkv +钮大可-无奈,http://em.21dtv.com/songs/60047262.mkv +豪记大对唱-无奈,http://em.21dtv.com/songs/60047261.mkv +方瑞娥+高向鹏-无奈,http://em.21dtv.com/songs/60047260.mkv +朱咪咪-无奈(演唱会),http://em.21dtv.com/songs/60047259.mkv +张伟文-无奈(演唱会),http://em.21dtv.com/songs/60047258.mkv +徐小凤-无奈(演唱会),http://em.21dtv.com/songs/60047257.mkv +刘雅丽-无奈(演唱会),http://em.21dtv.com/songs/60047256.mkv +梁咏琪-我@你,http://em.21dtv.com/songs/60044529.mkv +童唱-蜗牛,http://em.21dtv.com/songs/60044523.mkv +群星-蜗牛,http://em.21dtv.com/songs/60044522.mkv +周杰伦-蜗牛(演唱会),http://em.21dtv.com/songs/60044521.mkv +黄思婷-问你,http://em.21dtv.com/songs/60044462.mkv +哈琳+锡林宝力日-吻你,http://em.21dtv.com/songs/60044421.mkv +钟芹-温暖,http://em.21dtv.com/songs/60044331.mkv +永邦-温暖,http://em.21dtv.com/songs/60044330.mkv +任贤齐+周华健-温暖,http://em.21dtv.com/songs/60044329.mkv +李健-温暖,http://em.21dtv.com/songs/60044328.mkv +姚晨-温暖(演唱会),http://em.21dtv.com/songs/60044327.mkv +许巍-温暖(演唱会),http://em.21dtv.com/songs/60044326.mkv +卓依婷-为你,http://em.21dtv.com/songs/60043943.mkv +周慧敏-为你,http://em.21dtv.com/songs/60043942.mkv +石佑诚-为你,http://em.21dtv.com/songs/60043941.mkv +黑龙-为你,http://em.21dtv.com/songs/60043940.mkv +代小波-为你,http://em.21dtv.com/songs/60043939.mkv +陈明-为你,http://em.21dtv.com/songs/60043938.mkv +童安格-为难,http://em.21dtv.com/songs/60043934.mkv +纪佳松-为难,http://em.21dtv.com/songs/60043933.mkv +张智成-忘年(演唱会),http://em.21dtv.com/songs/60043628.mkv +M3-玩腻,http://em.21dtv.com/songs/60043170.mkv +东方神起-wrong number,http://em.21dtv.com/songs/60006432.mkv +JANET JACKSON-whoops now,http://em.21dtv.com/songs/60006319.mkv +郑俊英-我们,http://em.21dtv.com/songs/60134301.mkv +李函蔚-我们,http://em.21dtv.com/songs/60131496.mkv +苏玮-我们,http://em.21dtv.com/songs/60122057.mkv +白举纲-我们,http://em.21dtv.com/songs/60127230.mkv +陈伟霆-我门,http://em.21dtv.com/songs/60126363.mkv +韦美群星-唯美,http://em.21dtv.com/songs/60124686.mkv +陈伟霆-我门,http://em.21dtv.com/songs/60124608.mkv +草蜢-完美,http://em.21dtv.com/songs/60123112.mkv +冷漠-闻名,http://em.21dtv.com/songs/60121409.mkv +李德筠-我们,http://em.21dtv.com/songs/60120629.mkv +草蜢-完美,http://em.21dtv.com/songs/60119924.mkv +志王-我们,http://em.21dtv.com/songs/60117764.mkv +艾美琦+赖永铀-卫冕,http://em.21dtv.com/songs/60116217.mkv +曾静玟+吴汶芳-我们,http://em.21dtv.com/songs/60115976.mkv +李杨飞-沃梦,http://em.21dtv.com/songs/60112758.mkv +沙玛拉且(山鹰组合)-我们,http://em.21dtv.com/songs/60107868.mkv +刘赛+金山-完美,http://em.21dtv.com/songs/60105646.mkv +梁文音-我们,http://em.21dtv.com/songs/60096716.mkv +钟汉良-我们,http://em.21dtv.com/songs/60084061.mkv +张檬-我们,http://em.21dtv.com/songs/60084060.mkv +黑豹乐队-我们,http://em.21dtv.com/songs/60084059.mkv +王俪潼-我们,http://em.21dtv.com/songs/60078283.mkv +王子霆-完美(演唱会),http://em.21dtv.com/songs/60078001.mkv +JESSIE WARE-wildest moments,http://em.21dtv.com/songs/60074147.mkv +段林希-我们,http://em.21dtv.com/songs/60072546.mkv +双孖JL-我们,http://em.21dtv.com/songs/60069965.mkv +张秀卿-完美,http://em.21dtv.com/songs/60067501.mkv +KARA-winter magic,http://em.21dtv.com/songs/60063803.mkv +青稞荞麦-我们,http://em.21dtv.com/songs/60062834.mkv +SUM41-with me,http://em.21dtv.com/songs/60060949.mkv +杭天琪-妩媚,http://em.21dtv.com/songs/60047746.mkv +何韵诗-无名,http://em.21dtv.com/songs/60047237.mkv +何韵诗-无名(演唱会),http://em.21dtv.com/songs/60047236.mkv +苏打绿-无眠,http://em.21dtv.com/songs/60047234.mkv +羽泉-我们,http://em.21dtv.com/songs/60045773.mkv +许巍-我们,http://em.21dtv.com/songs/60045772.mkv +谢霆锋-我们,http://em.21dtv.com/songs/60045771.mkv +五月天-我们,http://em.21dtv.com/songs/60045770.mkv +蒋荣宗+216臭脸娃娃-我们,http://em.21dtv.com/songs/60045769.mkv +草蜢-我们,http://em.21dtv.com/songs/60045768.mkv +ENERGY-我们,http://em.21dtv.com/songs/60045767.mkv +草蜢-我们(演唱会),http://em.21dtv.com/songs/60045766.mkv +赵薇-我们(无原唱),http://em.21dtv.com/songs/60045765.mkv +五月天-我们(时时刻刻),http://em.21dtv.com/songs/60045764.mkv +蔡小虎-挽面,http://em.21dtv.com/songs/60043201.mkv +蔡依林-玩美,http://em.21dtv.com/songs/60043169.mkv +张智成-完美,http://em.21dtv.com/songs/60043104.mkv +佚名-完美,http://em.21dtv.com/songs/60043103.mkv +许茹芸-完美,http://em.21dtv.com/songs/60043102.mkv +王蓉-完美,http://em.21dtv.com/songs/60043101.mkv +刘德华-完美,http://em.21dtv.com/songs/60043100.mkv +爱乐公社-完美(演唱会),http://em.21dtv.com/songs/60043099.mkv +陈珊妮-完美(无原唱),http://em.21dtv.com/songs/60043098.mkv +周迅-外面,http://em.21dtv.com/songs/60043071.mkv +谢霆锋-without me(演唱会),http://em.21dtv.com/songs/60006382.mkv +李宇春-why me,http://em.21dtv.com/songs/60006326.mkv +GIP中韩男团-未来GIP,http://em.21dtv.com/songs/60087194.mkv +王奕瑾-未来,http://em.21dtv.com/songs/60132720.mkv +林忆莲-无赖,http://em.21dtv.com/songs/60132617.mkv +萧名棻-完了,http://em.21dtv.com/songs/60124424.mkv +杨小曼-问莲,http://em.21dtv.com/songs/60119690.mkv +苏打绿-未了,http://em.21dtv.com/songs/60117162.mkv +宋嘉其-挽留,http://em.21dtv.com/songs/60111009.mkv +韩栋+袁姗姗-无泪,http://em.21dtv.com/songs/60110669.mkv +那仁朝格-挽留,http://em.21dtv.com/songs/60107263.mkv +大张雨-挽留,http://em.21dtv.com/songs/60106743.mkv +琦峰-挽留,http://em.21dtv.com/songs/60106154.mkv +尚芸菲-忘了,http://em.21dtv.com/songs/60102159.mkv +格格-挽留,http://em.21dtv.com/songs/60096773.mkv +大雨-挽留,http://em.21dtv.com/songs/60085816.mkv +河图-为龙,http://em.21dtv.com/songs/60083975.mkv +戴佩妮-无赖,http://em.21dtv.com/songs/60080117.mkv +袁姗姗+韩栋-无泪,http://em.21dtv.com/songs/60078447.mkv +张挥-卧龙,http://em.21dtv.com/songs/60078433.mkv +林泰燊-卧龙,http://em.21dtv.com/songs/60078432.mkv +PERFUME-未来のミュージアム,http://em.21dtv.com/songs/60078114.mkv +张可儿-挽留,http://em.21dtv.com/songs/60078012.mkv +STARSHIP PLANET-white love,http://em.21dtv.com/songs/60074135.mkv +GEORGE MICHAEL-white light,http://em.21dtv.com/songs/60074134.mkv +MIRANDA LAMBERT-white liar,http://em.21dtv.com/songs/60074133.mkv +韩栋+袁姗姗-无泪,http://em.21dtv.com/songs/60072582.mkv +符琼音-忘了,http://em.21dtv.com/songs/60072488.mkv +方大同-玩乐,http://em.21dtv.com/songs/60071200.mkv +杨丞琳-忘了,http://em.21dtv.com/songs/60068723.mkv +JS-未来,http://em.21dtv.com/songs/60067530.mkv +何洁-忘了(演唱会),http://em.21dtv.com/songs/60066367.mkv +汤骏业-万恋,http://em.21dtv.com/songs/60065001.mkv +HURTS-wonderful life,http://em.21dtv.com/songs/60063808.mkv +黖木メイサ-wired life,http://em.21dtv.com/songs/60063139.mkv +黄雅莉-无聊,http://em.21dtv.com/songs/60047201.mkv +郑中基-无赖,http://em.21dtv.com/songs/60047192.mkv +许哲佩-无赖,http://em.21dtv.com/songs/60047191.mkv +童星-无赖,http://em.21dtv.com/songs/60047190.mkv +乱弹阿翔-无赖,http://em.21dtv.com/songs/60047189.mkv +梁汉文+郑中基+方力申-无赖(演唱会),http://em.21dtv.com/songs/60047188.mkv +锦绣二重唱-未了,http://em.21dtv.com/songs/60044263.mkv +郑秀文-未来,http://em.21dtv.com/songs/60044245.mkv +黄立行-未来,http://em.21dtv.com/songs/60044244.mkv +何俐恩-未来,http://em.21dtv.com/songs/60044243.mkv +何洁-未来,http://em.21dtv.com/songs/60044242.mkv +卓义峰-未来(演唱会),http://em.21dtv.com/songs/60044241.mkv +北岛三郎-未来(无原唱),http://em.21dtv.com/songs/60044240.mkv +群星-围炉,http://em.21dtv.com/songs/60044163.mkv +林忆莲-微凉(演唱会),http://em.21dtv.com/songs/60043764.mkv +林一峰+梁祖尧-微凉(演唱会),http://em.21dtv.com/songs/60043763.mkv +游鸿明-危楼,http://em.21dtv.com/songs/60043737.mkv +羽泉-忘了,http://em.21dtv.com/songs/60043581.mkv +轻松玩乐团-忘了,http://em.21dtv.com/songs/60043580.mkv +孟庭苇-忘了,http://em.21dtv.com/songs/60043579.mkv +刘若英-忘了,http://em.21dtv.com/songs/60043578.mkv +刘德华-忘了,http://em.21dtv.com/songs/60043577.mkv +蓝心湄-忘了,http://em.21dtv.com/songs/60043576.mkv +郭富城-忘了,http://em.21dtv.com/songs/60043575.mkv +郭彪-忘了,http://em.21dtv.com/songs/60043574.mkv +高慧君-忘了,http://em.21dtv.com/songs/60043573.mkv +蔡健雅-忘了,http://em.21dtv.com/songs/60043572.mkv +张爽-挽留,http://em.21dtv.com/songs/60043200.mkv +张嘉洵-挽留,http://em.21dtv.com/songs/60043199.mkv +柯羽-挽留,http://em.21dtv.com/songs/60043198.mkv +陈亮-挽留,http://em.21dtv.com/songs/60043197.mkv +韦礼安-外赖,http://em.21dtv.com/songs/60043070.mkv +佚名-wonderful life,http://em.21dtv.com/songs/60006397.mkv +COOKIES-wonderful life,http://em.21dtv.com/songs/60006396.mkv +DANNY SMALL-without love,http://em.21dtv.com/songs/60006381.mkv +HILARY DUFF-with love,http://em.21dtv.com/songs/60006375.mkv +佚名-wichita lineman(无原唱),http://em.21dtv.com/songs/60006334.mkv +嗑着瓜子的猫-悟空,http://em.21dtv.com/songs/60127872.mkv +王宁-悟空,http://em.21dtv.com/songs/60135542.mkv +关喆-悟空,http://em.21dtv.com/songs/60120340.mkv +方大同-悟空,http://em.21dtv.com/songs/60128037.mkv +赵泳鑫-纨绔,http://em.21dtv.com/songs/60127441.mkv +范英楠-悟空,http://em.21dtv.com/songs/60127339.mkv +单良-悟空,http://em.21dtv.com/songs/60126666.mkv +慕寒+慕斯小乖-纨绔,http://em.21dtv.com/songs/60125591.mkv +单良-悟空,http://em.21dtv.com/songs/60125241.mkv +王一名-窝壳,http://em.21dtv.com/songs/60122982.mkv +方大同-悟空,http://em.21dtv.com/songs/60122783.mkv +贰婶-悟空,http://em.21dtv.com/songs/60112975.mkv +戴荃-悟空,http://em.21dtv.com/songs/60110230.mkv +DE BORAH-who knew(演唱会),http://em.21dtv.com/songs/60074139.mkv +王建房-挖坑,http://em.21dtv.com/songs/60072475.mkv +古巨基-悟空,http://em.21dtv.com/songs/60047838.mkv +古巨基-悟空(演唱会),http://em.21dtv.com/songs/60047837.mkv +周蕙-我看,http://em.21dtv.com/songs/60045677.mkv +邱淑君-偎靠(无原唱),http://em.21dtv.com/songs/60043752.mkv +陈淑萍-偎靠(无原唱),http://em.21dtv.com/songs/60043751.mkv +林姗-碗筷,http://em.21dtv.com/songs/60043258.mkv +潘玮柏-玩酷,http://em.21dtv.com/songs/60043168.mkv +小安-哇靠,http://em.21dtv.com/songs/60043036.mkv +吴业坤-无价,http://em.21dtv.com/songs/60127821.mkv +西瓜JUN-忘记,http://em.21dtv.com/songs/60128383.mkv +活在梦境-汪俊,http://em.21dtv.com/songs/60122959.mkv +吴业坤-无价,http://em.21dtv.com/songs/60122574.mkv +韩磊-无界,http://em.21dtv.com/songs/60121126.mkv +航宇-问剑,http://em.21dtv.com/songs/60117994.mkv +白云飞-忘记,http://em.21dtv.com/songs/60117065.mkv +刘栋升-无界,http://em.21dtv.com/songs/60116590.mkv +张丹锋-忘记,http://em.21dtv.com/songs/60113449.mkv +姜玉阳-武将,http://em.21dtv.com/songs/60108413.mkv +Ella-无解,http://em.21dtv.com/songs/60108219.mkv +亦帆-违建,http://em.21dtv.com/songs/60106593.mkv +蔚雨芯-玩具,http://em.21dtv.com/songs/60106259.mkv +南拳妈妈-瓦解,http://em.21dtv.com/songs/60101617.mkv +SUPPER MOMENT-无尽(演唱会),http://em.21dtv.com/songs/60101034.mkv +李翊君-无解,http://em.21dtv.com/songs/60096659.mkv +SUPPER MOMENT-无尽,http://em.21dtv.com/songs/60096658.mkv +王菲-玩具,http://em.21dtv.com/songs/60093003.mkv +吴静-吴静,http://em.21dtv.com/songs/60087571.mkv +莫小娘+小右-蜗居,http://em.21dtv.com/songs/60084000.mkv +罗敏庄-无价(演唱会),http://em.21dtv.com/songs/60078445.mkv +王筝-玩具,http://em.21dtv.com/songs/60078009.mkv +许廷铿-蜗居,http://em.21dtv.com/songs/60072513.mkv +董贞-问剑,http://em.21dtv.com/songs/60069923.mkv +陈茂丰-无解,http://em.21dtv.com/songs/60067602.mkv +许廷铿-误解,http://em.21dtv.com/songs/60066448.mkv +蒲成龙-围巾,http://em.21dtv.com/songs/60065025.mkv +阮以伟-挽救,http://em.21dtv.com/songs/60064998.mkv +梁一贞-玩具,http://em.21dtv.com/songs/60062628.mkv +佚名-误解,http://em.21dtv.com/songs/60047831.mkv +梁静茹-无解,http://em.21dtv.com/songs/60047159.mkv +动静乐团-无解,http://em.21dtv.com/songs/60047158.mkv +陈雷-无解,http://em.21dtv.com/songs/60047157.mkv +李国祥-无价,http://em.21dtv.com/songs/60047149.mkv +郭富城-无忌,http://em.21dtv.com/songs/60047147.mkv +麦浚龙-无忌(演唱会),http://em.21dtv.com/songs/60047146.mkv +何耀珊-握紧,http://em.21dtv.com/songs/60047021.mkv +上明-问酒,http://em.21dtv.com/songs/60044460.mkv +刘欢-喂鸡,http://em.21dtv.com/songs/60044316.mkv +NOVA-尾戒(演唱会),http://em.21dtv.com/songs/60044211.mkv +谢金燕-围巾,http://em.21dtv.com/songs/60044162.mkv +江蕙-围巾,http://em.21dtv.com/songs/60044161.mkv +2MORO-围巾,http://em.21dtv.com/songs/60044160.mkv +S.H.E-围巾(演唱会),http://em.21dtv.com/songs/60044159.mkv +周传雄-忘记,http://em.21dtv.com/songs/60043522.mkv +依稀-忘记,http://em.21dtv.com/songs/60043521.mkv +林俊杰-忘记,http://em.21dtv.com/songs/60043520.mkv +红布条-忘记,http://em.21dtv.com/songs/60043519.mkv +张惠妹-忘记(演唱会),http://em.21dtv.com/songs/60043518.mkv +佚名-王将,http://em.21dtv.com/songs/60043354.mkv +卓依婷-婉君,http://em.21dtv.com/songs/60043255.mkv +佚名-婉君,http://em.21dtv.com/songs/60043254.mkv +李翊君-婉君,http://em.21dtv.com/songs/60043253.mkv +安宇-挽救,http://em.21dtv.com/songs/60043196.mkv +佚名-玩具,http://em.21dtv.com/songs/60043164.mkv +洪伟-玩具(无原唱),http://em.21dtv.com/songs/60043163.mkv +周杰伦-瓦解(演唱会),http://em.21dtv.com/songs/60043055.mkv +The Vamps-Wild Heart,http://em.21dtv.com/songs/60086268.mkv +NATALIE IMBRUGLIA-wrong impression,http://em.21dtv.com/songs/60006431.mkv +佚名-work it,http://em.21dtv.com/songs/60006412.mkv +KATE WINSLET-what if,http://em.21dtv.com/songs/60006197.mkv +JASON DERULO-what if,http://em.21dtv.com/songs/60006196.mkv +权志龙-Who You,http://em.21dtv.com/songs/60100110.mkv +上海彩虹室内合唱团-午后,http://em.21dtv.com/songs/60132156.mkv +唐古-网红,http://em.21dtv.com/songs/60130207.mkv +吴业坤+周子扬-雾花,http://em.21dtv.com/songs/60127823.mkv +吴业坤+周子扬-雾花,http://em.21dtv.com/songs/60125283.mkv +小娟+山谷里的居民-无画,http://em.21dtv.com/songs/60121598.mkv +高晶-问海,http://em.21dtv.com/songs/60121162.mkv +陈晓东-无痕,http://em.21dtv.com/songs/60103686.mkv +慢慢说组合-五虎,http://em.21dtv.com/songs/60096300.mkv +何鹏-望海,http://em.21dtv.com/songs/60094811.mkv +戴梅君-为何,http://em.21dtv.com/songs/60094128.mkv +SHINE-玩火,http://em.21dtv.com/songs/60092190.mkv +COOKIES-玩火,http://em.21dtv.com/songs/60092158.mkv +田震-我会,http://em.21dtv.com/songs/60091769.mkv +谭晶-问花,http://em.21dtv.com/songs/60081308.mkv +张冬玲+笑天-吻痕,http://em.21dtv.com/songs/60069922.mkv +周子琪-问号,http://em.21dtv.com/songs/60067537.mkv +向蕙玲-挽回,http://em.21dtv.com/songs/60064996.mkv +龙千玉-误会,http://em.21dtv.com/songs/60047830.mkv +飞轮海-误会,http://em.21dtv.com/songs/60047829.mkv +范逸臣-误会,http://em.21dtv.com/songs/60047828.mkv +曾航生-误会,http://em.21dtv.com/songs/60047827.mkv +王羚柔-午后,http://em.21dtv.com/songs/60047694.mkv +张惠妹-无悔,http://em.21dtv.com/songs/60047135.mkv +NEON-无悔,http://em.21dtv.com/songs/60047134.mkv +林忆莲-无憾(演唱会),http://em.21dtv.com/songs/60047126.mkv +张蓉蓉-问花,http://em.21dtv.com/songs/60044458.mkv +龙千玉-问花,http://em.21dtv.com/songs/60044457.mkv +黎瑞恩-问候,http://em.21dtv.com/songs/60044455.mkv +陈思思-问候,http://em.21dtv.com/songs/60044454.mkv +黎瑞恩-问侯(演唱会),http://em.21dtv.com/songs/60044453.mkv +朱孝天-问号,http://em.21dtv.com/songs/60044451.mkv +宇恒-问号,http://em.21dtv.com/songs/60044450.mkv +梁朝伟-问号,http://em.21dtv.com/songs/60044449.mkv +黄小菁-畏寒(无原唱),http://em.21dtv.com/songs/60044314.mkv +巫奇-为何,http://em.21dtv.com/songs/60043855.mkv +蓝雨-为何,http://em.21dtv.com/songs/60043854.mkv +叶倩文-为何(演唱会),http://em.21dtv.com/songs/60043853.mkv +江蕙-晚婚,http://em.21dtv.com/songs/60043233.mkv +翁立友-挽回,http://em.21dtv.com/songs/60043194.mkv +龙飘飘-挽回(无原唱),http://em.21dtv.com/songs/60043193.mkv +潘玮柏-wu ha,http://em.21dtv.com/songs/60006433.mkv +佚名-wooden heart,http://em.21dtv.com/songs/60006404.mkv +唐汉霄-微光,http://em.21dtv.com/songs/60131280.mkv +华晨宇-微光,http://em.21dtv.com/songs/60130134.mkv +潘成+浮生梦-问归,http://em.21dtv.com/songs/60129359.mkv +五月天-顽固,http://em.21dtv.com/songs/60126584.mkv +五月天-顽固,http://em.21dtv.com/songs/60125090.mkv +NL不分-无垢,http://em.21dtv.com/songs/60124960.mkv +小贱-乌龟,http://em.21dtv.com/songs/60122684.mkv +张信哲-微光,http://em.21dtv.com/songs/60119498.mkv +苏打绿-微光,http://em.21dtv.com/songs/60102657.mkv +孙豆尔-微光,http://em.21dtv.com/songs/60096824.mkv +朱浩仁-舞功,http://em.21dtv.com/songs/60091292.mkv +GIRL NEXT DOOR-winter game,http://em.21dtv.com/songs/60074152.mkv +THE WEEKND-wicked games,http://em.21dtv.com/songs/60074144.mkv +严艺丹-无果,http://em.21dtv.com/songs/60071284.mkv +初音ミク-weekender girl,http://em.21dtv.com/songs/60070414.mkv +陈妍希-微光,http://em.21dtv.com/songs/60069795.mkv +林柔均-无甘,http://em.21dtv.com/songs/60066437.mkv +曹格-无辜,http://em.21dtv.com/songs/60047124.mkv +孙淑媚+霍正奇-无甘,http://em.21dtv.com/songs/60047119.mkv +张继聪-乌龟,http://em.21dtv.com/songs/60047030.mkv +傅振辉+慧璇-我敢,http://em.21dtv.com/songs/60045443.mkv +郑伊健-吻感,http://em.21dtv.com/songs/60044417.mkv +郑伊健-吻感(演唱会),http://em.21dtv.com/songs/60044416.mkv +黄义达-微光,http://em.21dtv.com/songs/60043761.mkv +陈慧琳-微光,http://em.21dtv.com/songs/60043760.mkv +童唱-晚歌,http://em.21dtv.com/songs/60043230.mkv +陈思彤-顽固(演唱会),http://em.21dtv.com/songs/60043189.mkv +R.KELLY-worlds greatest,http://em.21dtv.com/songs/60006419.mkv +HAN GROO-witch girl,http://em.21dtv.com/songs/60006371.mkv +PEABO BRYSON-why goodbye,http://em.21dtv.com/songs/60006323.mkv +洪荣宏-晚风,http://em.21dtv.com/songs/60130543.mkv +任妙音-晚风,http://em.21dtv.com/songs/60125100.mkv +姜鹏-问佛,http://em.21dtv.com/songs/60119407.mkv +王凯-王妃,http://em.21dtv.com/songs/60118773.mkv +马汝珑-晚风,http://em.21dtv.com/songs/60109034.mkv +李世丰-晚风,http://em.21dtv.com/songs/60105967.mkv +秦御峰-问佛,http://em.21dtv.com/songs/60101461.mkv +姜鹏-问佛,http://em.21dtv.com/songs/60099188.mkv +萧煌奇+杨培安-王妃,http://em.21dtv.com/songs/60098738.mkv +宋健+洪禄云-晚风,http://em.21dtv.com/songs/60098265.mkv +萧敬腾+肖懿航-王妃,http://em.21dtv.com/songs/60094673.mkv +墨绿森林-王妃,http://em.21dtv.com/songs/60085821.mkv +曾玲-微风,http://em.21dtv.com/songs/60081645.mkv +萨顶顶-王妃,http://em.21dtv.com/songs/60080251.mkv +黄龄-王妃,http://em.21dtv.com/songs/60080174.mkv +好妹妹乐队-晚风,http://em.21dtv.com/songs/60080158.mkv +尚雯婕-王妃),http://em.21dtv.com/songs/60078030.mkv +苏亚-问佛,http://em.21dtv.com/songs/60071223.mkv +大山-王妃,http://em.21dtv.com/songs/60071204.mkv +罗时丰-枉费(无原唱),http://em.21dtv.com/songs/60043401.mkv +萧敬腾-王妃,http://em.21dtv.com/songs/60043352.mkv +徐小凤-晚风,http://em.21dtv.com/songs/60043228.mkv +吴遥-晚风,http://em.21dtv.com/songs/60043227.mkv +张伟文-晚风(演唱会),http://em.21dtv.com/songs/60043226.mkv +叶倩文-晚风(演唱会),http://em.21dtv.com/songs/60043225.mkv +许茹芸-晚风(演唱会),http://em.21dtv.com/songs/60043224.mkv +仙杜拉-晚风(演唱会),http://em.21dtv.com/songs/60043223.mkv +龙飘飘-晚风(无原唱),http://em.21dtv.com/songs/60043222.mkv +DIDO-white flag,http://em.21dtv.com/songs/60006309.mkv +关心妍-white flag(演唱会),http://em.21dtv.com/songs/60006308.mkv +LANA DEL REY-West Coast,http://em.21dtv.com/songs/60099673.mkv +PLEDIS GIRLZ-WE,http://em.21dtv.com/songs/60123518.mkv +圣诞老人不在家的驯鹿+铁皮人-味道,http://em.21dtv.com/songs/60127877.mkv +关淑怡-无敌,http://em.21dtv.com/songs/60134915.mkv +辛晓琪-味道,http://em.21dtv.com/songs/60132944.mkv +大支-王董,http://em.21dtv.com/songs/60131305.mkv +方大同+Zion.T+Crush-味道,http://em.21dtv.com/songs/60129172.mkv +方大同+Zion.T+Crush-味道,http://em.21dtv.com/songs/60128038.mkv +邓超-无敌,http://em.21dtv.com/songs/60120011.mkv +张煜枫-我的,http://em.21dtv.com/songs/60112687.mkv +胡彦斌-味道,http://em.21dtv.com/songs/60108821.mkv +韩磊-味道,http://em.21dtv.com/songs/60100631.mkv +古巨基+容祖儿-屋顶,http://em.21dtv.com/songs/60098172.mkv +陶喆+关诗敏-屋顶,http://em.21dtv.com/songs/60094334.mkv +英雄美人-卫东,http://em.21dtv.com/songs/60094263.mkv +潘玮柏-我得,http://em.21dtv.com/songs/60091659.mkv +侯磊-味道,http://em.21dtv.com/songs/60081497.mkv +范玮琪+李建辉-屋顶,http://em.21dtv.com/songs/60080959.mkv +BRANDY-wildest dreams,http://em.21dtv.com/songs/60074146.mkv +黄小琥-误点,http://em.21dtv.com/songs/60072589.mkv +吴宗宪+温岚-屋顶,http://em.21dtv.com/songs/60047054.mkv +周杰伦+温岚-屋顶(演唱会),http://em.21dtv.com/songs/60047053.mkv +黄义达-我懂,http://em.21dtv.com/songs/60045388.mkv +李小双-我懂(演唱会),http://em.21dtv.com/songs/60045387.mkv +彭羚-我的,http://em.21dtv.com/songs/60044978.mkv +丁文琪-我的,http://em.21dtv.com/songs/60044977.mkv +陈淑芳-问答,http://em.21dtv.com/songs/60044446.mkv +佚名-闻笛,http://em.21dtv.com/songs/60044399.mkv +满文军-闻笛,http://em.21dtv.com/songs/60044398.mkv +周蕙-温度,http://em.21dtv.com/songs/60044324.mkv +辛晓琪-味道,http://em.21dtv.com/songs/60044313.mkv +郑源-味道(演唱会),http://em.21dtv.com/songs/60044312.mkv +张学友-味道(演唱会),http://em.21dtv.com/songs/60044311.mkv +许志安-味道(演唱会),http://em.21dtv.com/songs/60044310.mkv +白嘉倩-伟大,http://em.21dtv.com/songs/60044200.mkv +宇海文-忘掉,http://em.21dtv.com/songs/60043514.mkv +骅梓-忘掉,http://em.21dtv.com/songs/60043513.mkv +王中平+澎恰恰-王董,http://em.21dtv.com/songs/60043350.mkv +群星-王董,http://em.21dtv.com/songs/60043349.mkv +伍佰-王道(演唱会),http://em.21dtv.com/songs/60043348.mkv +麦浚龙-玩得,http://em.21dtv.com/songs/60043160.mkv +CARTOONS-witch doctor,http://em.21dtv.com/songs/60006370.mkv +佚名-wild dance,http://em.21dtv.com/songs/60006335.mkv +NAVI-well done,http://em.21dtv.com/songs/60006164.mkv +雷琛瑜-我错,http://em.21dtv.com/songs/60130873.mkv +林俊吉+叶诺帆-望川,http://em.21dtv.com/songs/60127100.mkv +黄磊-围城,http://em.21dtv.com/songs/60110730.mkv +胡歌-无猜,http://em.21dtv.com/songs/60099453.mkv +罗力威-我猜,http://em.21dtv.com/songs/60096717.mkv +田馥甄-无常,http://em.21dtv.com/songs/60095212.mkv +女子十二乐坊-无词,http://em.21dtv.com/songs/60089773.mkv +黃文格-旺财,http://em.21dtv.com/songs/60089019.mkv +陈珊妮-无常,http://em.21dtv.com/songs/60080464.mkv +吴奇隆-无常,http://em.21dtv.com/songs/60080007.mkv +杨宗纬-无常,http://em.21dtv.com/songs/60078440.mkv +黄龄-忘尘,http://em.21dtv.com/songs/60078046.mkv +JULIET SIMMS-wild child(演唱会),http://em.21dtv.com/songs/60074145.mkv +狄易达-无城,http://em.21dtv.com/songs/60068803.mkv +陈僖仪-忘川,http://em.21dtv.com/songs/60066366.mkv +佚名-舞池,http://em.21dtv.com/songs/60047769.mkv +白冰冰-舞池,http://em.21dtv.com/songs/60047768.mkv +陈小春-无错,http://em.21dtv.com/songs/60047080.mkv +陈小春-无错(演唱会),http://em.21dtv.com/songs/60047079.mkv +王菲-无常,http://em.21dtv.com/songs/60047070.mkv +卫兰-温差,http://em.21dtv.com/songs/60044323.mkv +徐子崴-围城,http://em.21dtv.com/songs/60044158.mkv +黄磊-围城,http://em.21dtv.com/songs/60044157.mkv +张靓颖-围城(演唱会),http://em.21dtv.com/songs/60044156.mkv +张学友-微尘,http://em.21dtv.com/songs/60043755.mkv +秀兰玛雅-望春,http://em.21dtv.com/songs/60043659.mkv +五月天-忘词,http://em.21dtv.com/songs/60043512.mkv +佚名-晚春,http://em.21dtv.com/songs/60043221.mkv +高隆-晚餐,http://em.21dtv.com/songs/60043220.mkv +尚雯婕-white christmas(演唱会),http://em.21dtv.com/songs/60006307.mkv +LEANN RIMES-we can,http://em.21dtv.com/songs/60006141.mkv +脆乐团-玩伴,http://em.21dtv.com/songs/60124384.mkv +张含韵-问别,http://em.21dtv.com/songs/60119504.mkv +江一燕-我不,http://em.21dtv.com/songs/60108658.mkv +孙悦-舞伴,http://em.21dtv.com/songs/60090905.mkv +李春波-我爸,http://em.21dtv.com/songs/60089959.mkv +罗文-吻别,http://em.21dtv.com/songs/60089440.mkv +李宇春-吻别(李宇春),http://em.21dtv.com/songs/60088006.mkv +MILEY CYRUS-wrecking ball,http://em.21dtv.com/songs/60084775.mkv +BRITNEY SPEARS-work bitch,http://em.21dtv.com/songs/60084774.mkv +王宇+吴木兰-吻别,http://em.21dtv.com/songs/60081551.mkv +黄子龙-吻别,http://em.21dtv.com/songs/60078126.mkv +JONN HART-who booty(演唱会),http://em.21dtv.com/songs/60074137.mkv +黄贯中-吻别),http://em.21dtv.com/songs/60072510.mkv +袁小迪-舞伴,http://em.21dtv.com/songs/60047766.mkv +关淑怡-舞伴(演唱会),http://em.21dtv.com/songs/60047765.mkv +刘德华+梅艳芳-舞吧,http://em.21dtv.com/songs/60047762.mkv +侯湘婷-我不,http://em.21dtv.com/songs/60044736.mkv +张学友-吻别,http://em.21dtv.com/songs/60044409.mkv +陶晶莹-吻别,http://em.21dtv.com/songs/60044408.mkv +刘德华-吻别,http://em.21dtv.com/songs/60044407.mkv +蝴蝶组合-吻别,http://em.21dtv.com/songs/60044406.mkv +高胜美-吻别,http://em.21dtv.com/songs/60044405.mkv +谭咏麟-吻别(演唱会),http://em.21dtv.com/songs/60044404.mkv +迪克牛仔-吻别(演唱会),http://em.21dtv.com/songs/60044403.mkv +曾心梅-违背,http://em.21dtv.com/songs/60044153.mkv +林忆莲-玩伴(演唱会),http://em.21dtv.com/songs/60043158.mkv +周思婷-舞伴,http://em.21dtv.com/songs/60017512.mkv +佚名-wanna be,http://em.21dtv.com/songs/60006115.mkv +K'NAAN-Waving flag,http://em.21dtv.com/songs/60099667.mkv +JUNGGIGO-Want U,http://em.21dtv.com/songs/60100728.mkv +KELLY CLARKSON-Walk Away,http://em.21dtv.com/songs/60100730.mkv +陈中-无爱,http://em.21dtv.com/songs/60135892.mkv +安来宁-晚安,http://em.21dtv.com/songs/60130255.mkv +谭咏麟+陈慧琳-望爱,http://em.21dtv.com/songs/60129618.mkv +马健南-唯爱,http://em.21dtv.com/songs/60127592.mkv +小北-晚安,http://em.21dtv.com/songs/60126805.mkv +WEATHER GIRLS(天气女孩)-威啊,http://em.21dtv.com/songs/60123570.mkv +SummerBaby-晚安,http://em.21dtv.com/songs/60120244.mkv +柯有伦+崔允素-为爱,http://em.21dtv.com/songs/60110314.mkv +天气女孩-威啊,http://em.21dtv.com/songs/60106748.mkv +杨烁-晚安,http://em.21dtv.com/songs/60094172.mkv +徐晶晶-为爱,http://em.21dtv.com/songs/60094110.mkv +冬雪-问爱,http://em.21dtv.com/songs/60093984.mkv +丁娜-吻安,http://em.21dtv.com/songs/60087230.mkv +石梅-雾霭,http://em.21dtv.com/songs/60084137.mkv +FAIRIES-white angel,http://em.21dtv.com/songs/60074132.mkv +KATY PERRY-wide awake,http://em.21dtv.com/songs/60068011.mkv +丁娜+布川-吻安,http://em.21dtv.com/songs/60062323.mkv +屠洪纲-我爱,http://em.21dtv.com/songs/60044535.mkv +薛凯琪+周子扬-唯爱,http://em.21dtv.com/songs/60044165.mkv +吴倩莲-望爱,http://em.21dtv.com/songs/60043652.mkv +谭咏麟+陈慧琳-望爱,http://em.21dtv.com/songs/60043651.mkv +林宥嘉-晚安,http://em.21dtv.com/songs/60043207.mkv +范晓萱-晚安,http://em.21dtv.com/songs/60043206.mkv +ATOMIC KITTEN-whole again,http://em.21dtv.com/songs/60006317.mkv +AK-whole again,http://em.21dtv.com/songs/60006316.mkv +BABYFACE-whip appeal,http://em.21dtv.com/songs/60006304.mkv +DUFFY-warwick avenue,http://em.21dtv.com/songs/60006118.mkv +佚名-walk away,http://em.21dtv.com/songs/60006099.mkv +滨崎步-who…,http://em.21dtv.com/songs/60006315.mkv +ABBA-voulez vous(演唱会),http://em.21dtv.com/songs/60006075.mkv +魏晨-v space,http://em.21dtv.com/songs/60070411.mkv +童唱-vegetable song,http://em.21dtv.com/songs/60006044.mkv +PAUL MCCARTNEY-vanilla sky,http://em.21dtv.com/songs/60006042.mkv +滨崎步-virgin road,http://em.21dtv.com/songs/60006057.mkv +ぱすぽ☆-vivi夏,http://em.21dtv.com/songs/60062189.mkv +LANA DEL REY-video games,http://em.21dtv.com/songs/60063784.mkv +SPICE GIRLS-viva forever,http://em.21dtv.com/songs/60006063.mkv +少女时代-visual dreams,http://em.21dtv.com/songs/60006062.mkv +DADDY YANKEE-ven conmigo,http://em.21dtv.com/songs/60063783.mkv +APINK-u you,http://em.21dtv.com/songs/60086377.mkv +GREYSON CHANCE-unfriend you,http://em.21dtv.com/songs/60062038.mkv +汪妤凌-Until Then,http://em.21dtv.com/songs/60080727.mkv +JUSTIN BIEBER-u smile,http://em.21dtv.com/songs/60005985.mkv +Samantha Jade-Up,http://em.21dtv.com/songs/60124986.mkv +Justin Bieber-Up,http://em.21dtv.com/songs/60121267.mkv +汪可盈-uh oh,http://em.21dtv.com/songs/60005990.mkv +张忆亚-Unchained Melody,http://em.21dtv.com/songs/60081568.mkv +TWINS-upgrade medley(演唱会),http://em.21dtv.com/songs/60063782.mkv +正直兄弟-unchained melody,http://em.21dtv.com/songs/60006003.mkv +THE RIGHTEOUS-unchained melody,http://em.21dtv.com/songs/60006002.mkv +GARETH GATES-unchained melody,http://em.21dtv.com/songs/60006001.mkv +叶倩文-unchained melody(演唱会),http://em.21dtv.com/songs/60006000.mkv +威利-unchained melody(演唱会),http://em.21dtv.com/songs/60005999.mkv +吕珊-unchained melody(演唱会),http://em.21dtv.com/songs/60005998.mkv +胡渭康-unchained melody(演唱会),http://em.21dtv.com/songs/60005997.mkv +AIR SUPPLY-unchained melody(演唱会),http://em.21dtv.com/songs/60005996.mkv +2PM-ultra lover,http://em.21dtv.com/songs/60063778.mkv +群星-universal love,http://em.21dtv.com/songs/60006018.mkv +潘玮柏-universal love,http://em.21dtv.com/songs/60006017.mkv +佚名-unnai kande,http://em.21dtv.com/songs/60006019.mkv +WESTLIFE-uptown girl,http://em.21dtv.com/songs/60006033.mkv +U2-unforgettable fire,http://em.21dtv.com/songs/60006012.mkv +佚名-upside down,http://em.21dtv.com/songs/60006031.mkv +ABBA-under attack,http://em.21dtv.com/songs/60006005.mkv +小宇(宋念宇)-同在,http://em.21dtv.com/songs/60135135.mkv +宋念宇-同在,http://em.21dtv.com/songs/60135126.mkv +SELINA-童真,http://em.21dtv.com/songs/60126546.mkv +丘与乐乐团-唐装,http://em.21dtv.com/songs/60123585.mkv +徐良+阿悄-天真,http://em.21dtv.com/songs/60096297.mkv +张瑶-天真,http://em.21dtv.com/songs/60077919.mkv +黄美珍-途中,http://em.21dtv.com/songs/60067498.mkv +金子乔-挑战(演唱会),http://em.21dtv.com/songs/60062533.mkv +江蕙-头仔,http://em.21dtv.com/songs/60042892.mkv +佚名-童真,http://em.21dtv.com/songs/60042771.mkv +王识贤-挑战,http://em.21dtv.com/songs/60042425.mkv +陈秀雯-挑战,http://em.21dtv.com/songs/60042424.mkv +TENSION-挑战,http://em.21dtv.com/songs/60042423.mkv +卓依婷-天真,http://em.21dtv.com/songs/60042313.mkv +永邦-天真,http://em.21dtv.com/songs/60042312.mkv +弦子-天真,http://em.21dtv.com/songs/60042311.mkv +古天乐-天真,http://em.21dtv.com/songs/60042310.mkv +杜德伟-天真,http://em.21dtv.com/songs/60042309.mkv +亚东-天葬,http://em.21dtv.com/songs/60042292.mkv +王筝-糖纸,http://em.21dtv.com/songs/60041513.mkv +刘允乐-太早,http://em.21dtv.com/songs/60041411.mkv +江若琳-太早,http://em.21dtv.com/songs/60041410.mkv +异种-天鹰,http://em.21dtv.com/songs/60135189.mkv +庄心妍-天眼,http://em.21dtv.com/songs/60135182.mkv +全体-听雨,http://em.21dtv.com/songs/60133382.mkv +谭晶-唐韵,http://em.21dtv.com/songs/60132898.mkv +SUPPER MOMENT-同一,http://em.21dtv.com/songs/60128707.mkv +白里格-太阳,http://em.21dtv.com/songs/60127234.mkv +张靓颖-童谣,http://em.21dtv.com/songs/60123959.mkv +张靓颖-童谣,http://em.21dtv.com/songs/60122753.mkv +罗逻圣-太阳,http://em.21dtv.com/songs/60122008.mkv +蔡琴-团圆,http://em.21dtv.com/songs/60119954.mkv +孙淑媚-团圆,http://em.21dtv.com/songs/60119425.mkv +Verbal Jint+Sanchez-讨厌,http://em.21dtv.com/songs/60119210.mkv +张薇-团圆,http://em.21dtv.com/songs/60118567.mkv +张旭-听雨,http://em.21dtv.com/songs/60106838.mkv +聂钢钢-田园,http://em.21dtv.com/songs/60102636.mkv +紫海-同样,http://em.21dtv.com/songs/60102607.mkv +马浚伟-天意,http://em.21dtv.com/songs/60099623.mkv +蔡琴-团圆,http://em.21dtv.com/songs/60096692.mkv +汪苏泷-桃园,http://em.21dtv.com/songs/60094202.mkv +杨家成-她有,http://em.21dtv.com/songs/60088065.mkv +江志丰-天意,http://em.21dtv.com/songs/60085794.mkv +庄振凯+戴梅君-天涯,http://em.21dtv.com/songs/60085793.mkv +白举纲-太阳,http://em.21dtv.com/songs/60085760.mkv +张雷-听雨,http://em.21dtv.com/songs/60083927.mkv +柏文+江南-听雨,http://em.21dtv.com/songs/60083926.mkv +樊桐舟-天涯,http://em.21dtv.com/songs/60083906.mkv +D-UNIT-thank you,http://em.21dtv.com/songs/60082355.mkv +林军-太阳,http://em.21dtv.com/songs/60080639.mkv +群星-团圆,http://em.21dtv.com/songs/60077985.mkv +巧千金-团圆,http://em.21dtv.com/songs/60077984.mkv +郭一然-天涯,http://em.21dtv.com/songs/60077910.mkv +孙淑媚-太阳,http://em.21dtv.com/songs/60077820.mkv +民雄巴莱-太阳,http://em.21dtv.com/songs/60077819.mkv +张国荣-thank you,http://em.21dtv.com/songs/60073992.mkv +雷颂德-thank you,http://em.21dtv.com/songs/60073991.mkv +小徐儿-听雨,http://em.21dtv.com/songs/60072467.mkv +黄圣依+陆毅-天音,http://em.21dtv.com/songs/60072459.mkv +林凡-痛痒,http://em.21dtv.com/songs/60067496.mkv +DELAY组合-天涯,http://em.21dtv.com/songs/60067486.mkv +ESTELLE-thank you,http://em.21dtv.com/songs/60066733.mkv +黄圣依-天音(演唱会),http://em.21dtv.com/songs/60062494.mkv +吴卓羲-团圆,http://em.21dtv.com/songs/60061640.mkv +谭晴-涂鸦,http://em.21dtv.com/songs/60061638.mkv +伊扬-团圆,http://em.21dtv.com/songs/60042970.mkv +巫启贤-团圆,http://em.21dtv.com/songs/60042969.mkv +巫启贤-团圆(演唱会),http://em.21dtv.com/songs/60042968.mkv +金莎-涂鸦,http://em.21dtv.com/songs/60042948.mkv +纪敏佳-涂鸦,http://em.21dtv.com/songs/60042947.mkv +邓丽欣-童谣,http://em.21dtv.com/songs/60042770.mkv +邓建明-童谣,http://em.21dtv.com/songs/60042769.mkv +樱桃帮-庭院,http://em.21dtv.com/songs/60042612.mkv +邰正宵-听雨,http://em.21dtv.com/songs/60042608.mkv +贾逸可-听雨,http://em.21dtv.com/songs/60042607.mkv +白松-听雨,http://em.21dtv.com/songs/60042606.mkv +晏羚-田婴(无原唱),http://em.21dtv.com/songs/60042340.mkv +杨海涛-天域,http://em.21dtv.com/songs/60042291.mkv +郑中基-天意,http://em.21dtv.com/songs/60042280.mkv +刘德华-天意,http://em.21dtv.com/songs/60042279.mkv +[Group] +groupName=十六万歌曲MV等 - 15 +江宏恩-天意,http://em.21dtv.com/songs/60042278.mkv +刘德华-天意(演唱会),http://em.21dtv.com/songs/60042277.mkv +林美+蓝弘钦-天意(无原唱),http://em.21dtv.com/songs/60042276.mkv +佚名-天意(慢四),http://em.21dtv.com/songs/60042275.mkv +任贤齐-天涯,http://em.21dtv.com/songs/60042227.mkv +郭富城-天涯,http://em.21dtv.com/songs/60042226.mkv +顾莉雅-天涯,http://em.21dtv.com/songs/60042225.mkv +龚月-天涯,http://em.21dtv.com/songs/60042224.mkv +达哇琼沛-天涯,http://em.21dtv.com/songs/60042223.mkv +爱乐团-天涯,http://em.21dtv.com/songs/60042222.mkv +F4-体验,http://em.21dtv.com/songs/60041708.mkv +吴浩康-讨厌,http://em.21dtv.com/songs/60041626.mkv +芮恩-讨厌,http://em.21dtv.com/songs/60041625.mkv +金伊彤-讨厌,http://em.21dtv.com/songs/60041624.mkv +林宗兴-唐韵,http://em.21dtv.com/songs/60041504.mkv +张敬轩-太远,http://em.21dtv.com/songs/60041408.mkv +周俊伟-太阳,http://em.21dtv.com/songs/60041371.mkv +童唱-太阳,http://em.21dtv.com/songs/60041370.mkv +李翊君-太阳,http://em.21dtv.com/songs/60041369.mkv +范玮琪-太阳,http://em.21dtv.com/songs/60041368.mkv +陈绮贞-太阳,http://em.21dtv.com/songs/60041367.mkv +宴羚-田婴,http://em.21dtv.com/songs/60027150.mkv +伊藤由奈-trust you,http://em.21dtv.com/songs/60005940.mkv +佚名-trisha yearwood,http://em.21dtv.com/songs/60005927.mkv +佚名-too young,http://em.21dtv.com/songs/60005886.mkv +JOHNNY MATHIS-too young,http://em.21dtv.com/songs/60005885.mkv +佚名-thank you,http://em.21dtv.com/songs/60005515.mkv +言承旭-thank you,http://em.21dtv.com/songs/60005514.mkv +郑君威-天星,http://em.21dtv.com/songs/60135806.mkv +宠灵少女-甜心,http://em.21dtv.com/songs/60133585.mkv +么健-听雪,http://em.21dtv.com/songs/60133330.mkv +汪东城-妥协,http://em.21dtv.com/songs/60131594.mkv +许廷铿-痛醒,http://em.21dtv.com/songs/60130745.mkv +杨健-同学,http://em.21dtv.com/songs/60129269.mkv +DIMENSION-天星,http://em.21dtv.com/songs/60123457.mkv +许阁+Basick-通宵,http://em.21dtv.com/songs/60123172.mkv +大福福-叹息,http://em.21dtv.com/songs/60120435.mkv +张津涤-听心,http://em.21dtv.com/songs/60117733.mkv +张雷-叹息,http://em.21dtv.com/songs/60113499.mkv +岚戈-叹息,http://em.21dtv.com/songs/60113435.mkv +马亚维-同学,http://em.21dtv.com/songs/60113086.mkv +邓华升-同学,http://em.21dtv.com/songs/60112992.mkv +李宗奎-叹息,http://em.21dtv.com/songs/60112751.mkv +卓依婷-他乡,http://em.21dtv.com/songs/60109201.mkv +华晨宇-挑衅,http://em.21dtv.com/songs/60105669.mkv +甲子慧-疼惜,http://em.21dtv.com/songs/60099424.mkv +倪同芳-投宿(锡剧 孟姜女),http://em.21dtv.com/songs/60090630.mkv +-偷心,http://em.21dtv.com/songs/60089096.mkv +阿妮-叹香,http://em.21dtv.com/songs/60083870.mkv +杨千嬅-同学,http://em.21dtv.com/songs/60077964.mkv +刘冲+关芯-贴心,http://em.21dtv.com/songs/60071190.mkv +G-DRAGON-that xx,http://em.21dtv.com/songs/60070405.mkv +小歆-同学,http://em.21dtv.com/songs/60069885.mkv +林耿贤-偷心,http://em.21dtv.com/songs/60066351.mkv +蔡依林-妥协,http://em.21dtv.com/songs/60043033.mkv +陈洁仪-拖鞋,http://em.21dtv.com/songs/60043010.mkv +张学友-偷心,http://em.21dtv.com/songs/60042861.mkv +王中平-偷心,http://em.21dtv.com/songs/60042860.mkv +张学友-偷心(演唱会),http://em.21dtv.com/songs/60042859.mkv +佚名-痛心,http://em.21dtv.com/songs/60042817.mkv +李彬+洪剑涛+高亚麟-同学,http://em.21dtv.com/songs/60042696.mkv +90前组合-同学,http://em.21dtv.com/songs/60042695.mkv +郭品超-同行,http://em.21dtv.com/songs/60042666.mkv +黄丽冰-听雪,http://em.21dtv.com/songs/60042604.mkv +爱戴-听雪,http://em.21dtv.com/songs/60042603.mkv +吴奇隆-贴心,http://em.21dtv.com/songs/60042461.mkv +梁咏琪-贴心,http://em.21dtv.com/songs/60042460.mkv +陈晓东-贴心,http://em.21dtv.com/songs/60042459.mkv +信乐团-挑衅,http://em.21dtv.com/songs/60042422.mkv +至上励合-甜心(演唱会),http://em.21dtv.com/songs/60042410.mkv +安以轩-天香,http://em.21dtv.com/songs/60042214.mkv +张杰-天下,http://em.21dtv.com/songs/60042178.mkv +孙耀威-提醒(无原唱),http://em.21dtv.com/songs/60041688.mkv +蔡小虎+龙千玉-疼惜,http://em.21dtv.com/songs/60041668.mkv +王建杰-疼惜(无原唱),http://em.21dtv.com/songs/60041667.mkv +徐仲薇-掏心,http://em.21dtv.com/songs/60041533.mkv +羽泉-烫心,http://em.21dtv.com/songs/60041523.mkv +羽泉-烫心(演唱会),http://em.21dtv.com/songs/60041522.mkv +BEYOND-叹息(演唱会),http://em.21dtv.com/songs/60041472.mkv +蔡淳佳+游鸿明-谈心,http://em.21dtv.com/songs/60041453.mkv +詹雅雯-贪心,http://em.21dtv.com/songs/60041426.mkv +COOKIES-贪心,http://em.21dtv.com/songs/60041425.mkv +张艾嘉-她想,http://em.21dtv.com/songs/60041167.mkv +王闯-逃亡,http://em.21dtv.com/songs/60127217.mkv +尚桐-天问,http://em.21dtv.com/songs/60125442.mkv +张楠-逃亡,http://em.21dtv.com/songs/60113476.mkv +徐千雅-听我,http://em.21dtv.com/songs/60111910.mkv +张学友-同屋,http://em.21dtv.com/songs/60108496.mkv +李佳乐-逃亡,http://em.21dtv.com/songs/60102324.mkv +关淑怡-偷吻,http://em.21dtv.com/songs/60092320.mkv +羽泉-推诿,http://em.21dtv.com/songs/60091873.mkv +FRIGHTENED RABBIT-the woodpile,http://em.21dtv.com/songs/60082366.mkv +RIGHT SAID FRED+DORIS DUBINSKY-the wizard,http://em.21dtv.com/songs/60082365.mkv +徐千雅-听我(演唱会),http://em.21dtv.com/songs/60077948.mkv +SUB FOCUS+ALPINES-tidal wave,http://em.21dtv.com/songs/60074046.mkv +ANGEL-the world,http://em.21dtv.com/songs/60074035.mkv +CLAY AIKEN-the way,http://em.21dtv.com/songs/60074034.mkv +ARIANA GRANDE+MAC MILLER-the way,http://em.21dtv.com/songs/60074033.mkv +毛阿敏-天问,http://em.21dtv.com/songs/60072456.mkv +MAYER HAWTHORNE-the walk,http://em.21dtv.com/songs/60067995.mkv +张卫健-退伍,http://em.21dtv.com/songs/60042987.mkv +庞龙-突围,http://em.21dtv.com/songs/60042942.mkv +恩炀-突围,http://em.21dtv.com/songs/60042941.mkv +佚名-偷吻,http://em.21dtv.com/songs/60042854.mkv +芭比-跳舞,http://em.21dtv.com/songs/60042442.mkv +达明一派-天问(演唱会),http://em.21dtv.com/songs/60042173.mkv +林文龙-天网,http://em.21dtv.com/songs/60042171.mkv +陈奕迅-天网,http://em.21dtv.com/songs/60042170.mkv +周蕙-体温,http://em.21dtv.com/songs/60041707.mkv +彭佳慧-体温(演唱会),http://em.21dtv.com/songs/60041706.mkv +陈晓东-特务,http://em.21dtv.com/songs/60041646.mkv +孙燕姿-逃亡,http://em.21dtv.com/songs/60041557.mkv +张学友-逃亡(演唱会),http://em.21dtv.com/songs/60041556.mkv +郭燕-太晚,http://em.21dtv.com/songs/60041357.mkv +YUI-tomorrows way,http://em.21dtv.com/songs/60005857.mkv +滨崎步-together when,http://em.21dtv.com/songs/60005849.mkv +末裔乐队-the world,http://em.21dtv.com/songs/60005731.mkv +R.ROBERTSON-the weight(无原唱),http://em.21dtv.com/songs/60005727.mkv +JULIE ROGERS-the wedding,http://em.21dtv.com/songs/60005726.mkv +张伟文-the wedding(演唱会),http://em.21dtv.com/songs/60005725.mkv +陈科妤-the walk,http://em.21dtv.com/songs/60005708.mkv +MICHAEL LEARNS TO ROCK-thats why,http://em.21dtv.com/songs/60005540.mkv +佚名-tennessee waltz,http://em.21dtv.com/songs/60005506.mkv +DEADMAU5+CHRIS JAMES-the veldt,http://em.21dtv.com/songs/60074027.mkv +BIG K.R.I.T.-the vent,http://em.21dtv.com/songs/60005447.mkv +中岛爱-try unite,http://em.21dtv.com/songs/60065716.mkv +CHUMBAWAMBA-tubth umping,http://em.21dtv.com/songs/60005953.mkv +许志安(铁皮人)-淘汰,http://em.21dtv.com/songs/60128399.mkv +SASA-天堂,http://em.21dtv.com/songs/60133274.mkv +南征北战-饕餮,http://em.21dtv.com/songs/60130141.mkv +XY兄弟-图腾,http://em.21dtv.com/songs/60130010.mkv +龙雨-淘汰,http://em.21dtv.com/songs/60122324.mkv +李克勤-天梯,http://em.21dtv.com/songs/60120605.mkv +大嘴巴-调调,http://em.21dtv.com/songs/60111795.mkv +木棉-天堂,http://em.21dtv.com/songs/60110253.mkv +天生快活家族-天天(HD),http://em.21dtv.com/songs/10012760.mkv +周杰伦+陈奕迅-淘汰,http://em.21dtv.com/songs/60107602.mkv +刘子毅-听天,http://em.21dtv.com/songs/60106639.mkv +阿悄-逃脱,http://em.21dtv.com/songs/60106369.mkv +林慧萍-贪图,http://em.21dtv.com/songs/60088107.mkv +常思思-听涛,http://em.21dtv.com/songs/60085800.mkv +周杰伦+柯有伦+徐帆星-天台,http://em.21dtv.com/songs/60085788.mkv +高蕾雅-偷偷,http://em.21dtv.com/songs/60081632.mkv +纪敏佳-天堂,http://em.21dtv.com/songs/60080588.mkv +赵咏华-天堂,http://em.21dtv.com/songs/60080052.mkv +雪莲三姐妹-踢踏,http://em.21dtv.com/songs/60077859.mkv +张智霖-淘汰,http://em.21dtv.com/songs/60077849.mkv +BIZNIZ FT HANHAC DEEPFLOW PSYC-tweet tweet,http://em.21dtv.com/songs/60074079.mkv +JAYME DEE-tip toes,http://em.21dtv.com/songs/60074049.mkv +SECRET-talk that,http://em.21dtv.com/songs/60073976.mkv +周笔畅-天天(演唱会),http://em.21dtv.com/songs/60072454.mkv +云杰-天堂,http://em.21dtv.com/songs/60071186.mkv +张玮-忐忑,http://em.21dtv.com/songs/60070116.mkv +容祖儿-淘汰(演唱会),http://em.21dtv.com/songs/60068703.mkv +GROUPLOVE-tongue tied,http://em.21dtv.com/songs/60068000.mkv +ADELE-turning tables,http://em.21dtv.com/songs/60065717.mkv +SAFETYSUIT-these times,http://em.21dtv.com/songs/60065708.mkv +张智霖-天梯(演唱会),http://em.21dtv.com/songs/60064970.mkv +泳儿-天梯(演唱会),http://em.21dtv.com/songs/60064969.mkv +邓紫棋-忐忑(演唱会),http://em.21dtv.com/songs/60064945.mkv +阮兆祥+李思捷+王祖蓝-踢拖,http://em.21dtv.com/songs/60062894.mkv +刘子毅-听天,http://em.21dtv.com/songs/60062686.mkv +SNOOP DOGG+KID CUDI-that tree,http://em.21dtv.com/songs/60062161.mkv +夏膺-坦途,http://em.21dtv.com/songs/60061617.mkv +HOT CHELLE RAE-tonight tonight,http://em.21dtv.com/songs/60060934.mkv +PIA TOSCANO-this time,http://em.21dtv.com/songs/60060929.mkv +BLOCK B-tell them,http://em.21dtv.com/songs/60060922.mkv +林忆莲-推搪(演唱会),http://em.21dtv.com/songs/60042976.mkv +王秀琳-痛疼,http://em.21dtv.com/songs/60042815.mkv +陈奕迅-听听(演唱会),http://em.21dtv.com/songs/60042590.mkv +戴爱玲-跳痛,http://em.21dtv.com/songs/60042441.mkv +陶喆-天天,http://em.21dtv.com/songs/60042126.mkv +锁曼丽-天天,http://em.21dtv.com/songs/60042125.mkv +东学-天天,http://em.21dtv.com/songs/60042124.mkv +陶喆-天天(演唱会),http://em.21dtv.com/songs/60042123.mkv +C ALLSTAR-天梯,http://em.21dtv.com/songs/60042122.mkv +郑怡-天堂,http://em.21dtv.com/songs/60042106.mkv +郑华娟-天堂,http://em.21dtv.com/songs/60042105.mkv +张震岳-天堂,http://em.21dtv.com/songs/60042104.mkv +庾澄庆-天堂,http://em.21dtv.com/songs/60042103.mkv +永邦-天堂,http://em.21dtv.com/songs/60042102.mkv +腾格尔-天堂,http://em.21dtv.com/songs/60042101.mkv +利绮-天堂,http://em.21dtv.com/songs/60042100.mkv +李威-天堂,http://em.21dtv.com/songs/60042099.mkv +黄崇旭-天堂,http://em.21dtv.com/songs/60042098.mkv +红布条-天堂,http://em.21dtv.com/songs/60042097.mkv +光良-天堂,http://em.21dtv.com/songs/60042096.mkv +腾格尔-天堂(演唱会),http://em.21dtv.com/songs/60042095.mkv +佚名-天堂(无原唱),http://em.21dtv.com/songs/60042094.mkv +张蓉蓉-体贴,http://em.21dtv.com/songs/60041704.mkv +谢若琳-体贴,http://em.21dtv.com/songs/60041703.mkv +利绮-体贴,http://em.21dtv.com/songs/60041702.mkv +黎瑞恩-体贴,http://em.21dtv.com/songs/60041701.mkv +周杰伦-梯田,http://em.21dtv.com/songs/60041677.mkv +陈奕迅-淘汰,http://em.21dtv.com/songs/60041615.mkv +陈奕迅-淘汰(HD演唱会),http://em.21dtv.com/songs/60041614.mkv +田家达-逃脱,http://em.21dtv.com/songs/60041555.mkv +李玟-逃脱(演唱会),http://em.21dtv.com/songs/60041554.mkv +辛晓琪-忐忑,http://em.21dtv.com/songs/60041456.mkv +龚琳娜-忐忑(演唱会),http://em.21dtv.com/songs/60041455.mkv +佚名-贪图(无原唱),http://em.21dtv.com/songs/60041423.mkv +徐若瑄-她他,http://em.21dtv.com/songs/60041165.mkv +ERIC CLAPTON-tulsa time,http://em.21dtv.com/songs/60005954.mkv +MR.-tonight tonight,http://em.21dtv.com/songs/60005863.mkv +SUPER JUNIOR-tic toc(演唱会),http://em.21dtv.com/songs/60005793.mkv +佚名-thoi to,http://em.21dtv.com/songs/60005774.mkv +CELINE DION-think twice,http://em.21dtv.com/songs/60005749.mkv +东方神起-thanks to,http://em.21dtv.com/songs/60005516.mkv +一闪一闪亮晶晶的钻石女士+我可不是什么幺蛾子-她说,http://em.21dtv.com/songs/60127691.mkv +王程程-听说,http://em.21dtv.com/songs/60133999.mkv +陈萝莉+董思怡-听说,http://em.21dtv.com/songs/60129758.mkv +阿悄-贪睡,http://em.21dtv.com/songs/60128503.mkv +灵感组合-褪色,http://em.21dtv.com/songs/60128189.mkv +金小曦-天使,http://em.21dtv.com/songs/60127503.mkv +萧政云-退散,http://em.21dtv.com/songs/60124427.mkv +杜萱妍-跳骚,http://em.21dtv.com/songs/60122882.mkv +何乾梁+李国祥-听说,http://em.21dtv.com/songs/60122480.mkv +胡杏儿-天使,http://em.21dtv.com/songs/60114730.mkv +SPEXIAL-贴身,http://em.21dtv.com/songs/60114357.mkv +米儿-唐僧,http://em.21dtv.com/songs/60112873.mkv +霍尊-唐诗,http://em.21dtv.com/songs/60112376.mkv +张信哲-逃生,http://em.21dtv.com/songs/60111864.mkv +李圣杰-听说,http://em.21dtv.com/songs/60111160.mkv +魏如昀-听说,http://em.21dtv.com/songs/60110711.mkv +罗逻圣-天使,http://em.21dtv.com/songs/60108801.mkv +A Lin-她说,http://em.21dtv.com/songs/60108201.mkv +陈奕夫-她说,http://em.21dtv.com/songs/60106387.mkv +张碧晨-她说,http://em.21dtv.com/songs/60103281.mkv +云丹久美-天水,http://em.21dtv.com/songs/60101884.mkv +DJ Black仔哥-推手,http://em.21dtv.com/songs/60098985.mkv +谢安琪-她说,http://em.21dtv.com/songs/60096707.mkv +马旭东-替身,http://em.21dtv.com/songs/60096563.mkv +BEYOND-褪色,http://em.21dtv.com/songs/60095244.mkv +柯以敏-太傻,http://em.21dtv.com/songs/60094961.mkv +星弟-褪色,http://em.21dtv.com/songs/60094134.mkv +刘浩龙-跳水,http://em.21dtv.com/songs/60090717.mkv +许嵩-天使,http://em.21dtv.com/songs/60088639.mkv +陆子天-褪色,http://em.21dtv.com/songs/60083942.mkv +邓福如-天使,http://em.21dtv.com/songs/60080939.mkv +KENZY(顽童MJ116)-提示,http://em.21dtv.com/songs/60080402.mkv +林乐伟-The Story,http://em.21dtv.com/songs/60079955.mkv +林二汶+岑宁儿-听说,http://em.21dtv.com/songs/60077946.mkv +肖飞-替身,http://em.21dtv.com/songs/60077862.mkv +MACKLEMORE+RYAN LEWIS-thrift shop,http://em.21dtv.com/songs/60074044.mkv +DAVID BOWIE-the stars,http://em.21dtv.com/songs/60074025.mkv +崔羽明-退色,http://em.21dtv.com/songs/60069888.mkv +BOA-the shadow,http://em.21dtv.com/songs/60069146.mkv +CORINNE BAILEY RAE-trouble sleeping,http://em.21dtv.com/songs/60066744.mkv +任双江-听说,http://em.21dtv.com/songs/60061633.mkv +王杰-退烧,http://em.21dtv.com/songs/60042986.mkv +张杰-徒手,http://em.21dtv.com/songs/60042945.mkv +莫文蔚-透视,http://em.21dtv.com/songs/60042919.mkv +谢霆锋-透视(演唱会),http://em.21dtv.com/songs/60042918.mkv +梁汉文-透视(演唱会),http://em.21dtv.com/songs/60042917.mkv +古巨基-透视(演唱会),http://em.21dtv.com/songs/60042916.mkv +太极乐队-偷食,http://em.21dtv.com/songs/60042836.mkv +杨千嬅-偷生,http://em.21dtv.com/songs/60042835.mkv +刘若英-听说,http://em.21dtv.com/songs/60042567.mkv +戴佩妮-听说,http://em.21dtv.com/songs/60042566.mkv +张国荣-贴身(演唱会),http://em.21dtv.com/songs/60042455.mkv +郑秀文-跳伞,http://em.21dtv.com/songs/60042438.mkv +梁咏琪-跳伞(演唱会),http://em.21dtv.com/songs/60042437.mkv +徐怀钰-天使,http://em.21dtv.com/songs/60042032.mkv +新主张-天使,http://em.21dtv.com/songs/60042031.mkv +谢霆锋-天使,http://em.21dtv.com/songs/60042030.mkv +五月天-天使,http://em.21dtv.com/songs/60042029.mkv +无印良品-天使,http://em.21dtv.com/songs/60042028.mkv +王菲-天使,http://em.21dtv.com/songs/60042027.mkv +李慧珍-天使,http://em.21dtv.com/songs/60042026.mkv +顾海滨-天使,http://em.21dtv.com/songs/60042025.mkv +阿沛乐团-天使,http://em.21dtv.com/songs/60042024.mkv +谢霆锋-天使(演唱会),http://em.21dtv.com/songs/60042023.mkv +无印良品-天使(演唱会),http://em.21dtv.com/songs/60042022.mkv +王菲-天使(演唱会),http://em.21dtv.com/songs/60042021.mkv +侯旭-天使(演唱会),http://em.21dtv.com/songs/60042020.mkv +黄国伦-天使(无原唱),http://em.21dtv.com/songs/60042019.mkv +石梅-天色,http://em.21dtv.com/songs/60041963.mkv +周蕙-替身,http://em.21dtv.com/songs/60041716.mkv +张宇-替身,http://em.21dtv.com/songs/60041715.mkv +李嘉-替身,http://em.21dtv.com/songs/60041714.mkv +张信哲-逃生,http://em.21dtv.com/songs/60041553.mkv +巫启贤-太傻,http://em.21dtv.com/songs/60041350.mkv +龚柯允-太傻,http://em.21dtv.com/songs/60041349.mkv +林俊杰-她说,http://em.21dtv.com/songs/60041164.mkv +THE BEATLES-twist shout,http://em.21dtv.com/songs/60005969.mkv +张国荣-twist & shout,http://em.21dtv.com/songs/60005968.mkv +佚名-toy soldiers,http://em.21dtv.com/songs/60005910.mkv +SISQO-thong song(无原唱),http://em.21dtv.com/songs/60005775.mkv +佚名-the sign,http://em.21dtv.com/songs/60005688.mkv +ACE OF BASE-the sign,http://em.21dtv.com/songs/60005687.mkv +COLDPLAY-the scientist,http://em.21dtv.com/songs/60005683.mkv +杨宗纬-TRUE COLORS,http://em.21dtv.com/songs/60096644.mkv +严艺丹-突然,http://em.21dtv.com/songs/60116507.mkv +张祥洪-突然,http://em.21dtv.com/songs/60083937.mkv +孙子涵-唐人,http://em.21dtv.com/songs/60080260.mkv +红乐队-退让(演唱会),http://em.21dtv.com/songs/60067500.mkv +阿杜-退让,http://em.21dtv.com/songs/60042985.mkv +许志安-徒然(演唱会),http://em.21dtv.com/songs/60042944.mkv +COLOR BAND-铁人(演唱会),http://em.21dtv.com/songs/60042483.mkv +飞轮海-太热,http://em.21dtv.com/songs/60041346.mkv +蔡依林-the rose,http://em.21dtv.com/songs/60005680.mkv +WESTLIFE-the rose,http://em.21dtv.com/songs/60005679.mkv +MARIAH CAREY-the roof,http://em.21dtv.com/songs/60005678.mkv +GOOD CHARLOTTE-the river,http://em.21dtv.com/songs/60005676.mkv +CELINE DION-the reason,http://em.21dtv.com/songs/60005670.mkv +筷子兄弟-铁拳,http://em.21dtv.com/songs/60127258.mkv +刘瑞琦-透气,http://em.21dtv.com/songs/60121452.mkv +杨千嬅-天桥,http://em.21dtv.com/songs/60110292.mkv +MAD AUGUST-天谴,http://em.21dtv.com/songs/60101019.mkv +莫文蔚-偷情,http://em.21dtv.com/songs/60095218.mkv +黄宏+梅丽萍-提亲,http://em.21dtv.com/songs/60090345.mkv +李虎-听琴,http://em.21dtv.com/songs/60083923.mkv +张心柔-天青,http://em.21dtv.com/songs/60077881.mkv +戴佩妮-透气(演唱会),http://em.21dtv.com/songs/60042915.mkv +张国荣-偷情,http://em.21dtv.com/songs/60042834.mkv +张国荣-偷情(演唱会),http://em.21dtv.com/songs/60042833.mkv +佚名-听泉(无原唱),http://em.21dtv.com/songs/60042562.mkv +郑秀文-调情,http://em.21dtv.com/songs/60042428.mkv +郑秀文-调情(演唱会),http://em.21dtv.com/songs/60042427.mkv +陈文媛-天桥,http://em.21dtv.com/songs/60041954.mkv +姚晔-踏青,http://em.21dtv.com/songs/60041203.mkv +陈冠希-逃跑,http://em.21dtv.com/songs/60088853.mkv +齐子旭-逃跑,http://em.21dtv.com/songs/60083874.mkv +FALL OUT BOY-the phoenix,http://em.21dtv.com/songs/60082362.mkv +SHALIEK-the past,http://em.21dtv.com/songs/60082361.mkv +陶喆-The Promise,http://em.21dtv.com/songs/60081159.mkv +佳宁组合-the prayer,http://em.21dtv.com/songs/60074022.mkv +吴雨霏-the present,http://em.21dtv.com/songs/60070407.mkv +WIZ KHALIFA-this plane,http://em.21dtv.com/songs/60062178.mkv +陈百强-突破(演唱会),http://em.21dtv.com/songs/60042922.mkv +靓舞精灵-甜品,http://em.21dtv.com/songs/60042397.mkv +陈冠希-甜品,http://em.21dtv.com/songs/60042396.mkv +张芯-天平,http://em.21dtv.com/songs/60041949.mkv +韩宝仪-摊牌,http://em.21dtv.com/songs/60041427.mkv +SPIN DOCTORS-two princes,http://em.21dtv.com/songs/60005974.mkv +木玛乐队-third party,http://em.21dtv.com/songs/60005750.mkv +佚名-the promise,http://em.21dtv.com/songs/60005669.mkv +FOO FIGHTERS-the pretender,http://em.21dtv.com/songs/60005667.mkv +佚名-the prayer,http://em.21dtv.com/songs/60005666.mkv +CELINE DION-the prayer,http://em.21dtv.com/songs/60005665.mkv +IDE ROCK FEAT.SHERYL-the picture,http://em.21dtv.com/songs/60005659.mkv +YOUNG SOUL JAZ+E+TUR-taipei power,http://em.21dtv.com/songs/60005430.mkv +E-TURN-taipei power,http://em.21dtv.com/songs/60005429.mkv +GABY AMARANTOS+MONOBLOC-Todo Mundo,http://em.21dtv.com/songs/60100724.mkv +林峰-the one(演唱会),http://em.21dtv.com/songs/60074019.mkv +2PM-take off,http://em.21dtv.com/songs/60073974.mkv +韩庚-the one,http://em.21dtv.com/songs/60071676.mkv +COREY SMITH-twenty one,http://em.21dtv.com/songs/60066746.mkv +ELTON JOHN-the one,http://em.21dtv.com/songs/60005658.mkv +BACKSTREET BOYS-the one(演唱会),http://em.21dtv.com/songs/60005657.mkv +B.A.D-the one(演唱会),http://em.21dtv.com/songs/60005656.mkv +塔娜-塔娜,http://em.21dtv.com/songs/60128935.mkv +杨宝心-鸵鸟,http://em.21dtv.com/songs/60127088.mkv +李志-鸵鸟,http://em.21dtv.com/songs/60127025.mkv +麦麦-贴你,http://em.21dtv.com/songs/60124731.mkv +IDOL SCHOOL-挺你,http://em.21dtv.com/songs/60123479.mkv +曾春年+贺一航+杜歌+程东-挺你,http://em.21dtv.com/songs/60119631.mkv +蔚雨芯-疼你,http://em.21dtv.com/songs/60112945.mkv +谢娜-天哪,http://em.21dtv.com/songs/60092089.mkv +李宇春-童年,http://em.21dtv.com/songs/60089955.mkv +元卫觉醒-驼鸟,http://em.21dtv.com/songs/60087345.mkv +何洁-童年,http://em.21dtv.com/songs/60087310.mkv +汪思妍-鸵鸟,http://em.21dtv.com/songs/60086894.mkv +陈小宇-洮南,http://em.21dtv.com/songs/60086866.mkv +金池-太难,http://em.21dtv.com/songs/60079936.mkv +叶倩文-童年(演唱会),http://em.21dtv.com/songs/60077969.mkv +张丹锋-太难,http://em.21dtv.com/songs/60077815.mkv +元卫觉醒-鸵鸟,http://em.21dtv.com/songs/60043031.mkv +卓依婷-童年,http://em.21dtv.com/songs/60042755.mkv +王雪晶-童年,http://em.21dtv.com/songs/60042754.mkv +李心洁-童年,http://em.21dtv.com/songs/60042753.mkv +李健-童年,http://em.21dtv.com/songs/60042752.mkv +成方圆-童年,http://em.21dtv.com/songs/60042751.mkv +蔡国权-童年,http://em.21dtv.com/songs/60042750.mkv +郑中基-童年(演唱会),http://em.21dtv.com/songs/60042749.mkv +吕珊-童年(演唱会),http://em.21dtv.com/songs/60042748.mkv +罗大佑-童年(演唱会),http://em.21dtv.com/songs/60042747.mkv +成方圆-童年(演唱会),http://em.21dtv.com/songs/60042746.mkv +童安格-婷娜,http://em.21dtv.com/songs/60042638.mkv +卢冠廷-天鸟,http://em.21dtv.com/songs/60041942.mkv +郑中基-太难(演唱会),http://em.21dtv.com/songs/60041340.mkv +BEE GEES-tokyo nights(演唱会),http://em.21dtv.com/songs/60005855.mkv +顾莉雅-天幕,http://em.21dtv.com/songs/60130889.mkv +张碧晨-童梦,http://em.21dtv.com/songs/60127994.mkv +李志-他们,http://em.21dtv.com/songs/60127007.mkv +徐浩峻-透明,http://em.21dtv.com/songs/60109371.mkv +严艺丹-天命,http://em.21dtv.com/songs/60107466.mkv +徐健淇-透明,http://em.21dtv.com/songs/60105070.mkv +任贤齐-吞没,http://em.21dtv.com/songs/60090547.mkv +张敬轩-他们,http://em.21dtv.com/songs/60087815.mkv +王中平-同命,http://em.21dtv.com/songs/60086887.mkv +李代沫-他们,http://em.21dtv.com/songs/60083859.mkv +DRAKE-the motto,http://em.21dtv.com/songs/60082359.mkv +权振东-天命,http://em.21dtv.com/songs/60080247.mkv +尹子维-透明,http://em.21dtv.com/songs/60077976.mkv +周国贤-童梦,http://em.21dtv.com/songs/60077968.mkv +李志-他们(演唱会),http://em.21dtv.com/songs/60077798.mkv +张贤胜+泫雅-trouble maker,http://em.21dtv.com/songs/60074065.mkv +KELIS-trick me,http://em.21dtv.com/songs/60074062.mkv +乌兰托娅-天马,http://em.21dtv.com/songs/60071183.mkv +徐健淇-透明(演唱会),http://em.21dtv.com/songs/60069887.mkv +N2O-top model,http://em.21dtv.com/songs/60069153.mkv +尚雯婕-to mcqueen,http://em.21dtv.com/songs/60067998.mkv +徐仁国-tease me,http://em.21dtv.com/songs/60066732.mkv +JS+HYUNA-trouble maker,http://em.21dtv.com/songs/60065714.mkv +天郎-天命,http://em.21dtv.com/songs/60064962.mkv +崔恕-他们,http://em.21dtv.com/songs/60064936.mkv +CARO EMERALD-that man,http://em.21dtv.com/songs/60063765.mkv +李俊旭-吞没,http://em.21dtv.com/songs/60062597.mkv +MANN+SNOOP DOGG+IYAZ-the mack,http://em.21dtv.com/songs/60060927.mkv +何英-托媒,http://em.21dtv.com/songs/60043003.mkv +刘若英-透明,http://em.21dtv.com/songs/60042910.mkv +梁咏琪-透明,http://em.21dtv.com/songs/60042909.mkv +黎明-透明,http://em.21dtv.com/songs/60042908.mkv +光良+卫兰-童梦,http://em.21dtv.com/songs/60042744.mkv +林峰-同谋,http://em.21dtv.com/songs/60042677.mkv +GIRL FRIENDS-甜梦,http://em.21dtv.com/songs/60042359.mkv +王建杰-太慢,http://em.21dtv.com/songs/60041338.mkv +张惠妹-他们,http://em.21dtv.com/songs/60041089.mkv +佚名-travelinman,http://em.21dtv.com/songs/60005919.mkv +张立基-touch me,http://em.21dtv.com/songs/60005899.mkv +佚名-touch me(无原唱),http://em.21dtv.com/songs/60005898.mkv +SPICE GIRLS-too much,http://em.21dtv.com/songs/60005884.mkv +S.H.E-too much,http://em.21dtv.com/songs/60005883.mkv +佚名-tin man,http://em.21dtv.com/songs/60005818.mkv +TAYLOR SWIFT-tim mcgraw,http://em.21dtv.com/songs/60005804.mkv +TERRI CLARK-three mississippi,http://em.21dtv.com/songs/60005782.mkv +佚名-this masquerade,http://em.21dtv.com/songs/60005763.mkv +孙燕姿-the moment,http://em.21dtv.com/songs/60005632.mkv +牙套-tell me,http://em.21dtv.com/songs/60005495.mkv +潘玮柏-tell me,http://em.21dtv.com/songs/60005494.mkv +蔡健雅-tell me,http://em.21dtv.com/songs/60005493.mkv +WONDER GIRLS-tell me,http://em.21dtv.com/songs/60005492.mkv +降央卓玛-驼铃,http://em.21dtv.com/songs/60135952.mkv +张瀚元-套路,http://em.21dtv.com/songs/60132456.mkv +雨宗林-套路,http://em.21dtv.com/songs/60131966.mkv +拉毛王旭-天路,http://em.21dtv.com/songs/60130362.mkv +陈柯宇-套路,http://em.21dtv.com/songs/60126388.mkv +嘴哥乐团-同类,http://em.21dtv.com/songs/60119367.mkv +宫瑜聪-驼铃,http://em.21dtv.com/songs/60118522.mkv +饶威-停留,http://em.21dtv.com/songs/60118187.mkv +韩红-天路,http://em.21dtv.com/songs/60110673.mkv +李健-陀螺,http://em.21dtv.com/songs/60109422.mkv +孙莞-逃离,http://em.21dtv.com/songs/60106774.mkv +天亮-天路,http://em.21dtv.com/songs/60100820.mkv +凌云-踏浪,http://em.21dtv.com/songs/60098134.mkv +阿悄-贪恋,http://em.21dtv.com/songs/60096738.mkv +徐一鸣-天亮,http://em.21dtv.com/songs/60096657.mkv +孙楠-天泪,http://em.21dtv.com/songs/60090909.mkv +于童-驼铃,http://em.21dtv.com/songs/60090512.mkv +馨梓-踏浪,http://em.21dtv.com/songs/60090322.mkv +蒋大为-驼铃,http://em.21dtv.com/songs/60088581.mkv +李双江-驼铃,http://em.21dtv.com/songs/60086893.mkv +尹美莱-touch love,http://em.21dtv.com/songs/60086374.mkv +谭锡禧-天灵(演唱会),http://em.21dtv.com/songs/60083891.mkv +刘瑞琦-true love,http://em.21dtv.com/songs/60082375.mkv +神话-this love,http://em.21dtv.com/songs/60082370.mkv +许飞-陀螺,http://em.21dtv.com/songs/60077993.mkv +周柏豪-同林,http://em.21dtv.com/songs/60077961.mkv +林峰-同林,http://em.21dtv.com/songs/60072471.mkv +许志安-体谅,http://em.21dtv.com/songs/60072444.mkv +沙莎-天路(演唱会),http://em.21dtv.com/songs/60071182.mkv +张涛-天路(演唱会),http://em.21dtv.com/songs/60067479.mkv +佚名-驼铃,http://em.21dtv.com/songs/60043029.mkv +关贵敏-驼铃,http://em.21dtv.com/songs/60043028.mkv +刀郎-驼铃,http://em.21dtv.com/songs/60043027.mkv +张伟进+孙国庆-驼铃(演唱会),http://em.21dtv.com/songs/60043026.mkv +叶瑷菱-陀螺,http://em.21dtv.com/songs/60043025.mkv +江蕙-陀螺,http://em.21dtv.com/songs/60043024.mkv +黄立行-脱离(演唱会),http://em.21dtv.com/songs/60043017.mkv +周杰伦-拖累,http://em.21dtv.com/songs/60043007.mkv +堂娜-退路,http://em.21dtv.com/songs/60042983.mkv +林姗-退路,http://em.21dtv.com/songs/60042982.mkv +张敬轩-透露,http://em.21dtv.com/songs/60042907.mkv +五月天-透露,http://em.21dtv.com/songs/60042906.mkv +罗家宝-投荔,http://em.21dtv.com/songs/60042897.mkv +汤宝如-偷恋,http://em.21dtv.com/songs/60042832.mkv +潘秀琼-偷恋,http://em.21dtv.com/songs/60042831.mkv +孙燕姿-同类,http://em.21dtv.com/songs/60042673.mkv +侯旭-停留(演唱会),http://em.21dtv.com/songs/60042631.mkv +韩红-天路,http://em.21dtv.com/songs/60041931.mkv +春雷-天路,http://em.21dtv.com/songs/60041930.mkv +巴桑-天路,http://em.21dtv.com/songs/60041929.mkv +ALAN-天路,http://em.21dtv.com/songs/60041928.mkv +谭维维-天路(演唱会),http://em.21dtv.com/songs/60041927.mkv +信乐团-天亮,http://em.21dtv.com/songs/60041910.mkv +曾宝仪-天亮,http://em.21dtv.com/songs/60041909.mkv +李慧珍-天蓝,http://em.21dtv.com/songs/60041897.mkv +关正杰-天籁,http://em.21dtv.com/songs/60041894.mkv +王梓宏-逃离,http://em.21dtv.com/songs/60041548.mkv +翁立友-贪恋,http://em.21dtv.com/songs/60041419.mkv +那英-贪恋(演唱会),http://em.21dtv.com/songs/60041418.mkv +卓依婷-踏浪,http://em.21dtv.com/songs/60041201.mkv +佚名-踏浪,http://em.21dtv.com/songs/60041200.mkv +徐怀钰-踏浪,http://em.21dtv.com/songs/60041199.mkv +南台湾小姑娘-踏浪,http://em.21dtv.com/songs/60041198.mkv +刘德华-踏浪,http://em.21dtv.com/songs/60041197.mkv +黄英-踏浪,http://em.21dtv.com/songs/60041196.mkv +吕珊-踏浪(演唱会),http://em.21dtv.com/songs/60041195.mkv +佚名-true love,http://em.21dtv.com/songs/60005935.mkv +饶燕婷-true love,http://em.21dtv.com/songs/60005934.mkv +蔡健雅-true love,http://em.21dtv.com/songs/60005933.mkv +ELTON JOHN+KIKI DEE-true love,http://em.21dtv.com/songs/60005932.mkv +周国贤-too late,http://em.21dtv.com/songs/60005877.mkv +男女共学-too late,http://em.21dtv.com/songs/60005876.mkv +JENNIFER LOPEZ-too late,http://em.21dtv.com/songs/60005875.mkv +MAROON 5-this love,http://em.21dtv.com/songs/60005762.mkv +BIGBANG-this love,http://em.21dtv.com/songs/60005761.mkv +佚名-the look,http://em.21dtv.com/songs/60005628.mkv +佚名-the loco-motion,http://em.21dtv.com/songs/60005621.mkv +TWINS-the library,http://em.21dtv.com/songs/60005618.mkv +佚名-the letter,http://em.21dtv.com/songs/60005617.mkv +黎明-thats life,http://em.21dtv.com/songs/60005526.mkv +黎明-thats life(演唱会),http://em.21dtv.com/songs/60005525.mkv +佚名-tainted love,http://em.21dtv.com/songs/60005427.mkv +沈翰墨-天空,http://em.21dtv.com/songs/60124197.mkv +金玟岐-痛快,http://em.21dtv.com/songs/60113025.mkv +邓丽欣-踏空,http://em.21dtv.com/songs/60110568.mkv +孙羽希-褪壳,http://em.21dtv.com/songs/60108433.mkv +熊猫团-天空,http://em.21dtv.com/songs/60105233.mkv +刘文杰-天空,http://em.21dtv.com/songs/60101966.mkv +刘宁-天空,http://em.21dtv.com/songs/60101959.mkv +动力火车-天空,http://em.21dtv.com/songs/60099123.mkv +孙楠+顺子-天空,http://em.21dtv.com/songs/60096656.mkv +蟑螂合唱团-天空,http://em.21dtv.com/songs/60092034.mkv +宾俊杰-天空,http://em.21dtv.com/songs/60083885.mkv +孟楠-天空,http://em.21dtv.com/songs/60081547.mkv +王野-痛快,http://em.21dtv.com/songs/60077971.mkv +王羽臣-天空,http://em.21dtv.com/songs/60077876.mkv +周晓鸥-天空),http://em.21dtv.com/songs/60077875.mkv +陈奕迅-掏空,http://em.21dtv.com/songs/60077837.mkv +CARLY RAE JEPSEN-this kiss,http://em.21dtv.com/songs/60074042.mkv +NIGHTWISH-the kinslayer,http://em.21dtv.com/songs/60074010.mkv +30 SECONDS TO MARS-the kill,http://em.21dtv.com/songs/60074009.mkv +家家-填空,http://em.21dtv.com/songs/60072460.mkv +张杰-天空,http://em.21dtv.com/songs/60072451.mkv +孙楠-痛快,http://em.21dtv.com/songs/60064984.mkv +林保怡-偷窥,http://em.21dtv.com/songs/60042830.mkv +容祖儿+蔡一杰-偷窥(演唱会),http://em.21dtv.com/songs/60042829.mkv +刘美君+苏永康-偷窥(演唱会),http://em.21dtv.com/songs/60042828.mkv +梁汉文-痛快,http://em.21dtv.com/songs/60042807.mkv +吉杰-痛快,http://em.21dtv.com/songs/60042806.mkv +S.H.E-痛快,http://em.21dtv.com/songs/60042805.mkv +郭富城-痛哭,http://em.21dtv.com/songs/60042799.mkv +陈小春-痛哭,http://em.21dtv.com/songs/60042798.mkv +郭富城-痛哭(演唱会),http://em.21dtv.com/songs/60042797.mkv +SURPRISE-瞳孔(无原唱),http://em.21dtv.com/songs/60042772.mkv +王菲-天空,http://em.21dtv.com/songs/60041879.mkv +谭晶-天空,http://em.21dtv.com/songs/60041878.mkv +刘德华-天空,http://em.21dtv.com/songs/60041877.mkv +韩红-天空,http://em.21dtv.com/songs/60041876.mkv +蔡依林-天空,http://em.21dtv.com/songs/60041875.mkv +王菲-天空(演唱会),http://em.21dtv.com/songs/60041874.mkv +谭晶-天空(演唱会),http://em.21dtv.com/songs/60041873.mkv +韩红-天空(演唱会),http://em.21dtv.com/songs/60041872.mkv +BEYOND-太空(演唱会),http://em.21dtv.com/songs/60041330.mkv +FAITH HILL-this kiss,http://em.21dtv.com/songs/60005760.mkv +尹钟信-脱尽,http://em.21dtv.com/songs/60135151.mkv +小亮-甜酒,http://em.21dtv.com/songs/60127918.mkv +陈大创-贴近,http://em.21dtv.com/songs/60123292.mkv +曲尔甲-天际,http://em.21dtv.com/songs/60115200.mkv +Robynn+Kendy-同进,http://em.21dtv.com/songs/60109866.mkv +Mr.-同进,http://em.21dtv.com/songs/60109856.mkv +张学友+白鹭-天机,http://em.21dtv.com/songs/60106834.mkv +马嘉均-投降,http://em.21dtv.com/songs/60106459.mkv +施文彬-头家,http://em.21dtv.com/songs/60105936.mkv +谢霆锋-投降,http://em.21dtv.com/songs/60089479.mkv +杨洋+金彪-天骄,http://em.21dtv.com/songs/60088078.mkv +方雅贤-听见,http://em.21dtv.com/songs/60083922.mkv +梁佳杰-听见,http://em.21dtv.com/songs/60080635.mkv +海生-太囧,http://em.21dtv.com/songs/60077811.mkv +楚博仁+王麟-太囧,http://em.21dtv.com/songs/60077810.mkv +陈乃荣-听见(演唱会),http://em.21dtv.com/songs/60072464.mkv +魔幻力量+五月天+阿信-天机,http://em.21dtv.com/songs/60071180.mkv +JS-听见,http://em.21dtv.com/songs/60067493.mkv +孙燕姿-听见(演唱会),http://em.21dtv.com/songs/60042545.mkv +格桑梅朵-天嫁,http://em.21dtv.com/songs/60041869.mkv +费翔-淘金,http://em.21dtv.com/songs/60041612.mkv +BRYAN FERRY-tokyo joe,http://em.21dtv.com/songs/60005854.mkv +邓紫棋-twinkle ii(演唱会),http://em.21dtv.com/songs/60063777.mkv +DNT-time is,http://em.21dtv.com/songs/60062009.mkv +林晓培-this is,http://em.21dtv.com/songs/60005759.mkv +ANDY WILLIAMS-the impossible,http://em.21dtv.com/songs/60005611.mkv +阿杜-天黑,http://em.21dtv.com/songs/60128509.mkv +汪定中-THINGS UNSAID,http://em.21dtv.com/songs/60096643.mkv +蔡丽津-昙花,http://em.21dtv.com/songs/60130728.mkv +谷微-听海,http://em.21dtv.com/songs/60128410.mkv +晓田-替换,http://em.21dtv.com/songs/60125644.mkv +大头妹妹-太湖,http://em.21dtv.com/songs/60123798.mkv +吉克隽逸-蜕化,http://em.21dtv.com/songs/60116626.mkv +郑淳元-听海,http://em.21dtv.com/songs/60109660.mkv +谢天华-听海,http://em.21dtv.com/songs/60109629.mkv +徐新军-体会,http://em.21dtv.com/songs/60109356.mkv +陈以桐-听海,http://em.21dtv.com/songs/60102867.mkv +许鹤缤-天黑(最美和声),http://em.21dtv.com/songs/60100464.mkv +方大同-昙花,http://em.21dtv.com/songs/60099262.mkv +潘越云+阿兰-听海,http://em.21dtv.com/songs/60098609.mkv +张韶涵-讨好,http://em.21dtv.com/songs/60098378.mkv +晨熙-土豪,http://em.21dtv.com/songs/60094910.mkv +肖洒+乔维怡-听海,http://em.21dtv.com/songs/60094646.mkv +林威辰-听话,http://em.21dtv.com/songs/60092852.mkv +一路发兄弟-土豪,http://em.21dtv.com/songs/60085811.mkv +钟欣桐-桐花,http://em.21dtv.com/songs/60083929.mkv +萨顶顶+朱桦+麦子杰-听海,http://em.21dtv.com/songs/60083921.mkv +泽旺多吉-天河(演唱会),http://em.21dtv.com/songs/60083883.mkv +范晓萱-tell her,http://em.21dtv.com/songs/60082353.mkv +陶虹旭-听海,http://em.21dtv.com/songs/60081158.mkv +OLIVIA ONG-同化,http://em.21dtv.com/songs/60080070.mkv +柯以敏-天黑,http://em.21dtv.com/songs/60079937.mkv +刘力扬-天后,http://em.21dtv.com/songs/60077872.mkv +甲子蕙-听话,http://em.21dtv.com/songs/60072463.mkv +陈思安-体会,http://em.21dtv.com/songs/60071176.mkv +守望-桃花,http://em.21dtv.com/songs/60066339.mkv +袁媛-听海(演唱会),http://em.21dtv.com/songs/60063325.mkv +李克勤-天河,http://em.21dtv.com/songs/60061627.mkv +周杰伦-退后,http://em.21dtv.com/songs/60042979.mkv +张学友-童话,http://em.21dtv.com/songs/60042733.mkv +辛晓琪-童话,http://em.21dtv.com/songs/60042732.mkv +童一首歌-童话,http://em.21dtv.com/songs/60042731.mkv +彭柯-童话,http://em.21dtv.com/songs/60042730.mkv +光良-童话,http://em.21dtv.com/songs/60042729.mkv +蔡幸娟-童话,http://em.21dtv.com/songs/60042728.mkv +黎姿-听话,http://em.21dtv.com/songs/60042542.mkv +方皓玟-听话,http://em.21dtv.com/songs/60042541.mkv +张惠妹-听海,http://em.21dtv.com/songs/60042538.mkv +张学友-听海(演唱会),http://em.21dtv.com/songs/60042537.mkv +张惠妹-听海(演唱会),http://em.21dtv.com/songs/60042536.mkv +叶倩文-听海(演唱会),http://em.21dtv.com/songs/60042535.mkv +林利-听海(演唱会),http://em.21dtv.com/songs/60042534.mkv +ZARAHN-跳海,http://em.21dtv.com/songs/60042434.mkv +S.H.E-天灰,http://em.21dtv.com/songs/60041868.mkv +李健-天狐(演唱会),http://em.21dtv.com/songs/60041860.mkv +陈势安-天后,http://em.21dtv.com/songs/60041859.mkv +汪明荃-天虹(演唱会),http://em.21dtv.com/songs/60041858.mkv +阿杜-天黑,http://em.21dtv.com/songs/60041844.mkv +陈慧琳-替换,http://em.21dtv.com/songs/60041711.mkv +黑豹乐队-体会,http://em.21dtv.com/songs/60041700.mkv +陈慧琳-体会,http://em.21dtv.com/songs/60041699.mkv +陈慧琳-体会(演唱会),http://em.21dtv.com/songs/60041698.mkv +许茹芸-讨好,http://em.21dtv.com/songs/60041619.mkv +张洪量-昙花,http://em.21dtv.com/songs/60041430.mkv +许美静-昙花,http://em.21dtv.com/songs/60041429.mkv +古巨基-昙花,http://em.21dtv.com/songs/60041428.mkv +PHIL COLLINS-two hearts,http://em.21dtv.com/songs/60005970.mkv +田馥甄-to hebe,http://em.21dtv.com/songs/60005828.mkv +佚名-tell him,http://em.21dtv.com/songs/60005481.mkv +THE EXCITERS-tell him,http://em.21dtv.com/songs/60005480.mkv +CELINE DION+BARBARA-tell him,http://em.21dtv.com/songs/60005479.mkv +侧田-停格,http://em.21dtv.com/songs/60134895.mkv +郑迦文-停格,http://em.21dtv.com/songs/60124570.mkv +金范秀-通过,http://em.21dtv.com/songs/60120044.mkv +C AllStar-天光,http://em.21dtv.com/songs/60113139.mkv +蔡健雅-停格,http://em.21dtv.com/songs/60109611.mkv +段红-痛过,http://em.21dtv.com/songs/60109480.mkv +高维那-糖果,http://em.21dtv.com/songs/60077832.mkv +NOISETTES-that girl,http://em.21dtv.com/songs/60073994.mkv +ALYSSA REID-the game,http://em.21dtv.com/songs/60070406.mkv +何晟铭-唐歌,http://em.21dtv.com/songs/60069863.mkv +张韶涵-that girl,http://em.21dtv.com/songs/60067993.mkv +张倾城-脱光,http://em.21dtv.com/songs/60064989.mkv +周柏豪-天光,http://em.21dtv.com/songs/60064959.mkv +吴淑敏+梅东生+简语卉-天光,http://em.21dtv.com/songs/60064958.mkv +PHARRELL-that girl,http://em.21dtv.com/songs/60063763.mkv +G NA-top girl(HD高清),http://em.21dtv.com/songs/60062031.mkv +方文琳-脱轨,http://em.21dtv.com/songs/60043015.mkv +金范洙-通过,http://em.21dtv.com/songs/60042642.mkv +詹雅雯+詹雅云-听歌,http://em.21dtv.com/songs/60042531.mkv +张智霖-天国(无原唱),http://em.21dtv.com/songs/60041834.mkv +关淑怡-天规,http://em.21dtv.com/songs/60041833.mkv +关淑怡-天规(演唱会),http://em.21dtv.com/songs/60041832.mkv +施文彬-天光,http://em.21dtv.com/songs/60041830.mkv +后弦-踢馆,http://em.21dtv.com/songs/60041681.mkv +蓝心湄-糖果,http://em.21dtv.com/songs/60041510.mkv +高娜-糖果,http://em.21dtv.com/songs/60041509.mkv +CALVIN HARRIS-the girls,http://em.21dtv.com/songs/60005597.mkv +KENNY ROGERS-the gambler,http://em.21dtv.com/songs/60005593.mkv +佚名-ten guitars,http://em.21dtv.com/songs/60005502.mkv +DETAIL+LIL WAYNE+T P-tattoo girl,http://em.21dtv.com/songs/60005464.mkv +唐嫣+罗晋-天赋,http://em.21dtv.com/songs/60128923.mkv +Free Party-颓废,http://em.21dtv.com/songs/60116447.mkv +黄菲菲-台疯,http://em.21dtv.com/songs/60115552.mkv +YLVIS-the fox,http://em.21dtv.com/songs/60086371.mkv +JAKE BUGG-two fingers,http://em.21dtv.com/songs/60082377.mkv +DJ FRESH+RAVAUGHN-the feeling,http://em.21dtv.com/songs/60074005.mkv +许廷铿-逃犯,http://em.21dtv.com/songs/60061620.mkv +BEAST-the fact,http://em.21dtv.com/songs/60060926.mkv +王菲-推翻,http://em.21dtv.com/songs/60042975.mkv +许茹芸-头发,http://em.21dtv.com/songs/60042872.mkv +费玉清-挑夫,http://em.21dtv.com/songs/60042421.mkv +刘晏维-天赋,http://em.21dtv.com/songs/60041813.mkv +吴梵-逃犯,http://em.21dtv.com/songs/60041547.mkv +许嵩-叹服,http://em.21dtv.com/songs/60041467.mkv +台风-台风,http://em.21dtv.com/songs/60041262.mkv +GEORGE MICHAEL-too funky,http://em.21dtv.com/songs/60005874.mkv +俞思远+B.I.Z乐团-together forever,http://em.21dtv.com/songs/60005847.mkv +佚名-together forever,http://em.21dtv.com/songs/60005846.mkv +THE B.C.52'S-the flintstones,http://em.21dtv.com/songs/60005590.mkv +LILY ALLEN-the fear,http://em.21dtv.com/songs/60005584.mkv +猴子飞行员-Television&Internet,http://em.21dtv.com/songs/60128205.mkv +MARTINA MCBRIDE-Teenage Daughters,http://em.21dtv.com/songs/60099680.mkv +周笔畅-天鹅,http://em.21dtv.com/songs/60041809.mkv +王雪晶+小妮妮-天鳄,http://em.21dtv.com/songs/60011375.mkv +BILLY JOEL-the entertainer,http://em.21dtv.com/songs/60005581.mkv +李琳-the end,http://em.21dtv.com/songs/60005579.mkv +安九+叶里-天地,http://em.21dtv.com/songs/60135116.mkv +卫兰-天敌,http://em.21dtv.com/songs/60133443.mkv +杨宗纬-天灯,http://em.21dtv.com/songs/60116028.mkv +孙露-太多,http://em.21dtv.com/songs/60115811.mkv +徐子崴-天地,http://em.21dtv.com/songs/60110221.mkv +萧敬腾-天敌,http://em.21dtv.com/songs/60106241.mkv +萧敬腾-天敌,http://em.21dtv.com/songs/60104399.mkv +关喆-态度,http://em.21dtv.com/songs/60103890.mkv +陈一凡-偷渡,http://em.21dtv.com/songs/60095123.mkv +罗百吉+宝贝-跳电,http://em.21dtv.com/songs/60086884.mkv +JASON DERULO+2 CHAINZ-talk dirty,http://em.21dtv.com/songs/60086370.mkv +林俊逸-天灯,http://em.21dtv.com/songs/60085774.mkv +泳儿-通电,http://em.21dtv.com/songs/60083928.mkv +DOUBLEX2-态度,http://em.21dtv.com/songs/60083868.mkv +WESTLIFE-the dance(演唱会),http://em.21dtv.com/songs/60082357.mkv +歌浴森-停电,http://em.21dtv.com/songs/60080517.mkv +黄文星-天地,http://em.21dtv.com/songs/60079874.mkv +FAIRIES-tweet dream,http://em.21dtv.com/songs/60074078.mkv +刘伊心-态度,http://em.21dtv.com/songs/60072439.mkv +FOO FIGHTERS-these days,http://em.21dtv.com/songs/60065707.mkv +杜德伟-脱掉,http://em.21dtv.com/songs/60043014.mkv +大哲-偷渡,http://em.21dtv.com/songs/60042824.mkv +严淑明-通牒,http://em.21dtv.com/songs/60042641.mkv +金莎-停电,http://em.21dtv.com/songs/60042627.mkv +陈小春+黄馨-停电,http://em.21dtv.com/songs/60042626.mkv +林子良-跳电,http://em.21dtv.com/songs/60042432.mkv +梁朝伟-挑逗,http://em.21dtv.com/songs/60042420.mkv +芭比-挑动,http://em.21dtv.com/songs/60042419.mkv +梁静茹-天灯,http://em.21dtv.com/songs/60041783.mkv +单紫宁-替代,http://em.21dtv.com/songs/60041710.mkv +辛隆-太多,http://em.21dtv.com/songs/60041310.mkv +陈绮贞-太多,http://em.21dtv.com/songs/60041309.mkv +陈冠蒲-太多,http://em.21dtv.com/songs/60041308.mkv +蔡健雅-太多,http://em.21dtv.com/songs/60041307.mkv +伍思凯-the day(演唱会),http://em.21dtv.com/songs/60005572.mkv +NATALIE IMBRUGLL-that day,http://em.21dtv.com/songs/60005518.mkv +刘泽辰-唐彩,http://em.21dtv.com/songs/60133411.mkv +钟SIR-天秤,http://em.21dtv.com/songs/60127519.mkv +毛方圆-天才,http://em.21dtv.com/songs/60121851.mkv +林俊杰-弹唱,http://em.21dtv.com/songs/60118718.mkv +AJ-陶瓷,http://em.21dtv.com/songs/60116431.mkv +雷佳-踏春,http://em.21dtv.com/songs/60106442.mkv +免贵姓谢-同窗,http://em.21dtv.com/songs/60104797.mkv +彭莉-田衝,http://em.21dtv.com/songs/60086881.mkv +容祖儿-天窗,http://em.21dtv.com/songs/60083882.mkv +虞舜琳-踏春,http://em.21dtv.com/songs/60083863.mkv +刘若英-跳车,http://em.21dtv.com/songs/60080225.mkv +童丽-同窗,http://em.21dtv.com/songs/60077960.mkv +LONELY ISLAND+NICKI MINAJ-the creep,http://em.21dtv.com/songs/60074004.mkv +MADEON-the city,http://em.21dtv.com/songs/60074003.mkv +黄宗泽-太错,http://em.21dtv.com/songs/60071167.mkv +糖兄妹-take care(演唱会),http://em.21dtv.com/songs/60069145.mkv +ALEX CLARE-too close,http://em.21dtv.com/songs/60066741.mkv +DRAKE+RIHANNA-take care,http://em.21dtv.com/songs/60066728.mkv +李玉刚-天池(演唱会),http://em.21dtv.com/songs/60061626.mkv +刘惜君-退出,http://em.21dtv.com/songs/60042978.mkv +秀兰玛雅-偷藏,http://em.21dtv.com/songs/60042823.mkv +黄雅莉-同城(演唱会),http://em.21dtv.com/songs/60042655.mkv +许美静-铁窗,http://em.21dtv.com/songs/60042471.mkv +阿木-铁窗(演唱会),http://em.21dtv.com/songs/60042470.mkv +费翔-天窗,http://em.21dtv.com/songs/60041770.mkv +泽朗多吉-天唱,http://em.21dtv.com/songs/60041768.mkv +姚晔-踏春,http://em.21dtv.com/songs/60041192.mkv +佚名-踏春(恰恰),http://em.21dtv.com/songs/60041191.mkv +佚名-true colors,http://em.21dtv.com/songs/60005931.mkv +蔡健雅-true colors(演唱会)(无原唱),http://em.21dtv.com/songs/60005930.mkv +PHIL COLLINS-true colors(演唱会)(无原唱),http://em.21dtv.com/songs/60005929.mkv +BLUE-too close,http://em.21dtv.com/songs/60005873.mkv +DAVID BOWIE-thursdays child,http://em.21dtv.com/songs/60005789.mkv +佚名-this christmas,http://em.21dtv.com/songs/60005752.mkv +JYP NATION-this christmas,http://em.21dtv.com/songs/60005751.mkv +童唱-the cuckoo,http://em.21dtv.com/songs/60005569.mkv +童唱-the clock,http://em.21dtv.com/songs/60005563.mkv +MILEY CYRUS-the climb,http://em.21dtv.com/songs/60005562.mkv +LINKIN PARK-the catalyst,http://em.21dtv.com/songs/60005560.mkv +BACKSTREET BOYS-the call,http://em.21dtv.com/songs/60005558.mkv +CELINE DION-taking chances,http://em.21dtv.com/songs/60005457.mkv +黑豹乐队-take care,http://em.21dtv.com/songs/60005437.mkv +杨欣桦-坦白,http://em.21dtv.com/songs/60135406.mkv +杨乃文-逃兵,http://em.21dtv.com/songs/60133835.mkv +郑旭-徒步,http://em.21dtv.com/songs/60128472.mkv +张阳阳-蜕变,http://em.21dtv.com/songs/60128004.mkv +侧田-同步,http://em.21dtv.com/songs/60119262.mkv +侧田-同步,http://em.21dtv.com/songs/60118344.mkv +白致瑶-天边,http://em.21dtv.com/songs/60117074.mkv +范晓萱-同步,http://em.21dtv.com/songs/60116225.mkv +孔雀哥哥-褪变,http://em.21dtv.com/songs/60105745.mkv +梅林-坦白,http://em.21dtv.com/songs/60102414.mkv +马剑芬-痛别,http://em.21dtv.com/songs/60100650.mkv +邰正宵-坦白,http://em.21dtv.com/songs/60096728.mkv +韩磊-天边,http://em.21dtv.com/songs/60096548.mkv +李泉-特别,http://em.21dtv.com/songs/60094938.mkv +-挑拔,http://em.21dtv.com/songs/60090384.mkv +孙燕姿-蜕变,http://em.21dtv.com/songs/60089794.mkv +钟盛忠-突变,http://em.21dtv.com/songs/60089509.mkv +廖昌永-天边,http://em.21dtv.com/songs/60085773.mkv +张祥洪-蜕变,http://em.21dtv.com/songs/60083940.mkv +苏梦玫-The Best,http://em.21dtv.com/songs/60081567.mkv +李泉-听吧,http://em.21dtv.com/songs/60080212.mkv +郑锦昌-蜕变(演唱会),http://em.21dtv.com/songs/60077988.mkv +陈娟儿-挑拨,http://em.21dtv.com/songs/60077929.mkv +K KOKE+MAVERICK SABRE-turn back,http://em.21dtv.com/songs/60074074.mkv +SUPERCELL-the bravery,http://em.21dtv.com/songs/60074001.mkv +少女时代-the boys,http://em.21dtv.com/songs/60074000.mkv +NICKI MINAJ+CASSIED-the boys,http://em.21dtv.com/songs/60073999.mkv +ONE OK ROCK-the beginning,http://em.21dtv.com/songs/60073998.mkv +廖浩明-逃兵,http://em.21dtv.com/songs/60071171.mkv +陈庆聪-坦白,http://em.21dtv.com/songs/60069862.mkv +农夫-同伴,http://em.21dtv.com/songs/60067494.mkv +戊道子-淘宝,http://em.21dtv.com/songs/60067472.mkv +ALL TIME LOW-time bomb,http://em.21dtv.com/songs/60065710.mkv +王若琳-the bug,http://em.21dtv.com/songs/60063769.mkv +SUH YOUNG EUN-to bride,http://em.21dtv.com/songs/60062164.mkv +RICK ROSS-the boss,http://em.21dtv.com/songs/60060924.mkv +王力宏-脱变,http://em.21dtv.com/songs/60043012.mkv +郑凡-蜕变,http://em.21dtv.com/songs/60042993.mkv +张洪量-蜕变,http://em.21dtv.com/songs/60042992.mkv +六甲乐团-蜕变,http://em.21dtv.com/songs/60042991.mkv +林育韦-蜕变,http://em.21dtv.com/songs/60042990.mkv +LADY-蜕变(无原唱),http://em.21dtv.com/songs/60042989.mkv +朱桦-听吧,http://em.21dtv.com/songs/60042509.mkv +艾尔肯-跳吧,http://em.21dtv.com/songs/60042430.mkv +5566-挑拨,http://em.21dtv.com/songs/60042416.mkv +张韶涵-天边,http://em.21dtv.com/songs/60041729.mkv +张娜拉-天边,http://em.21dtv.com/songs/60041728.mkv +乌兰托亚-天边,http://em.21dtv.com/songs/60041727.mkv +乌兰图雅-天边,http://em.21dtv.com/songs/60041726.mkv +李琼-天边,http://em.21dtv.com/songs/60041725.mkv +降央卓玛-天边,http://em.21dtv.com/songs/60041724.mkv +布仁巴雅尔-天边,http://em.21dtv.com/songs/60041723.mkv +黄龄-特别,http://em.21dtv.com/songs/60041635.mkv +侯强+姚绿绿-淘宝,http://em.21dtv.com/songs/60041610.mkv +周国贤-逃避,http://em.21dtv.com/songs/60041537.mkv +钟盛忠-坦白,http://em.21dtv.com/songs/60041463.mkv +袁惟仁-坦白,http://em.21dtv.com/songs/60041462.mkv +萧亚轩-坦白,http://em.21dtv.com/songs/60041461.mkv +孙楠-坦白,http://em.21dtv.com/songs/60041460.mkv +裘海正-坦白,http://em.21dtv.com/songs/60041459.mkv +何如惠-坦白,http://em.21dtv.com/songs/60041458.mkv +刘若英-坦白(演唱会),http://em.21dtv.com/songs/60041457.mkv +林冠吟-太笨,http://em.21dtv.com/songs/60041300.mkv +MADONNA-true blue,http://em.21dtv.com/songs/60005928.mkv +佚名-travelinband,http://em.21dtv.com/songs/60005918.mkv +佚名-tiny bubbles(无原唱),http://em.21dtv.com/songs/60005819.mkv +佚名-the boxer,http://em.21dtv.com/songs/60005554.mkv +王圆坤-太爱,http://em.21dtv.com/songs/60131652.mkv +黄荻钧-听爱,http://em.21dtv.com/songs/60121186.mkv +翁立友-天啊,http://em.21dtv.com/songs/60113952.mkv +胡松-痛爱,http://em.21dtv.com/songs/60110478.mkv +翁立友-天啊,http://em.21dtv.com/songs/60110466.mkv +徐浩峻-痛爱,http://em.21dtv.com/songs/60109368.mkv +张卫健-疼爱,http://em.21dtv.com/songs/60094095.mkv +KATE HAVNEVIK-think again,http://em.21dtv.com/songs/60082367.mkv +文龙-逃爱,http://em.21dtv.com/songs/60077839.mkv +仓木麻衣-try again,http://em.21dtv.com/songs/60074070.mkv +CONOR MAYNARD+NE YO-turn around,http://em.21dtv.com/songs/60070409.mkv +黄思婷-讨爱,http://em.21dtv.com/songs/60069866.mkv +王迪-痛爱,http://em.21dtv.com/songs/60064983.mkv +徐健淇-痛爱,http://em.21dtv.com/songs/60063202.mkv +吉杰-贪爱(演唱会),http://em.21dtv.com/songs/60061616.mkv +冯伟军-褪爱,http://em.21dtv.com/songs/60042994.mkv +容祖儿-痛爱,http://em.21dtv.com/songs/60042784.mkv +容祖儿-痛爱(演唱会),http://em.21dtv.com/songs/60042783.mkv +黄耀明-痛爱(演唱会),http://em.21dtv.com/songs/60042782.mkv +古巨基-痛爱(演唱会),http://em.21dtv.com/songs/60042781.mkv +童孔-痛啊(无原唱),http://em.21dtv.com/songs/60042780.mkv +曹颖-甜爱,http://em.21dtv.com/songs/60042352.mkv +SKY-天啊,http://em.21dtv.com/songs/60041721.mkv +沈芳如-天啊(无原唱),http://em.21dtv.com/songs/60041720.mkv +萧敬腾-疼爱,http://em.21dtv.com/songs/60041651.mkv +FLO RIDA-turn around,http://em.21dtv.com/songs/60005956.mkv +郑秀文-try again,http://em.21dtv.com/songs/60005946.mkv +WESTLIFE-try again,http://em.21dtv.com/songs/60005945.mkv +AALIYAH-try again,http://em.21dtv.com/songs/60005944.mkv +佚名-together again,http://em.21dtv.com/songs/60005845.mkv +徐怀钰-ti amo,http://em.21dtv.com/songs/60005790.mkv +佚名-these arms(无原唱),http://em.21dtv.com/songs/60005746.mkv +GOOD CHARLOTTE-the anthem,http://em.21dtv.com/songs/60005543.mkv +苏儿真-te amo,http://em.21dtv.com/songs/60005467.mkv +吉吉-太囧,http://em.21dtv.com/songs/60118429.mkv +林忆莲-柿子,http://em.21dtv.com/songs/60133872.mkv +Seven O'Clock-时针,http://em.21dtv.com/songs/60133280.mkv +杨嘉松-肆张,http://em.21dtv.com/songs/60130454.mkv +马旭东-宿醉,http://em.21dtv.com/songs/60129809.mkv +彩媛+彩京-时钟,http://em.21dtv.com/songs/60122757.mkv +罗逻圣-深圳,http://em.21dtv.com/songs/60117975.mkv +丁丁-沙子,http://em.21dtv.com/songs/60115654.mkv +张煜枫-狮子,http://em.21dtv.com/songs/60112688.mkv +沈芳如-赎罪,http://em.21dtv.com/songs/60112061.mkv +小朹+陈宏+蒲庭龙-手足,http://em.21dtv.com/songs/60105771.mkv +莫海婧+邓小巧-傻子,http://em.21dtv.com/songs/60104395.mkv +ナオト·インティライミ-手纸,http://em.21dtv.com/songs/60101847.mkv +邱锋泽-伤者,http://em.21dtv.com/songs/60100976.mkv +程楚煜-嫂子,http://em.21dtv.com/songs/60099436.mkv +阿宝-深圳,http://em.21dtv.com/songs/60098827.mkv +邓紫棋-失真,http://em.21dtv.com/songs/60096674.mkv +BEYOND-失踪,http://em.21dtv.com/songs/60095242.mkv +林汉洋-赎罪(无原唱),http://em.21dtv.com/songs/60092877.mkv +何流-傻子,http://em.21dtv.com/songs/60085676.mkv +丢火车乐队-沙子,http://em.21dtv.com/songs/60085674.mkv +陈柏宇-赎罪,http://em.21dtv.com/songs/60083820.mkv +后弦-素贞,http://em.21dtv.com/songs/60081636.mkv +杨添茸-傻子,http://em.21dtv.com/songs/60081237.mkv +钟嘉欣-死症,http://em.21dtv.com/songs/60077758.mkv +MATZKA-水灾,http://em.21dtv.com/songs/60077717.mkv +王菲菲-双子,http://em.21dtv.com/songs/60077692.mkv +李明洋-赎罪,http://em.21dtv.com/songs/60077674.mkv +江宏恩-受罪,http://em.21dtv.com/songs/60077671.mkv +吴申梅-手纸,http://em.21dtv.com/songs/60077663.mkv +东方神起-时ヲ止メテ,http://em.21dtv.com/songs/60077618.mkv +邓紫琪-失真,http://em.21dtv.com/songs/60077586.mkv +红弈-神舟,http://em.21dtv.com/songs/60077555.mkv +DMTN-safety zone,http://em.21dtv.com/songs/60073832.mkv +MATZKA乐团-水灾,http://em.21dtv.com/songs/60072422.mkv +MIC男团-宿醉,http://em.21dtv.com/songs/60071163.mkv +林忆莲-柿子,http://em.21dtv.com/songs/60069828.mkv +陈法拉-赎罪,http://em.21dtv.com/songs/60068669.mkv +洪百慧-赎罪,http://em.21dtv.com/songs/60067441.mkv +斯琴高丽-傻子,http://em.21dtv.com/songs/60067396.mkv +TWINS-上阵,http://em.21dtv.com/songs/60064844.mkv +林宥嘉-傻子,http://em.21dtv.com/songs/60064828.mkv +SEXY ZONE-sexy zone,http://em.21dtv.com/songs/60063732.mkv +路绮欧-死罪,http://em.21dtv.com/songs/60061610.mkv +许志安-宿醉,http://em.21dtv.com/songs/60051516.mkv +鱼仔-笋仔,http://em.21dtv.com/songs/60041015.mkv +森美移动-四仔,http://em.21dtv.com/songs/60040715.mkv +林宝-双子,http://em.21dtv.com/songs/60039911.mkv +张镐哲-赎罪(无原唱),http://em.21dtv.com/songs/60039761.mkv +于樱樱-赎罪(无原唱),http://em.21dtv.com/songs/60039760.mkv +张信哲-受罪,http://em.21dtv.com/songs/60039729.mkv +高向鹏+傅振辉-手足,http://em.21dtv.com/songs/60039661.mkv +BOY'Z-手足,http://em.21dtv.com/songs/60039660.mkv +张学友-始终,http://em.21dtv.com/songs/60039190.mkv +陈晓东-实在(演唱会),http://em.21dtv.com/songs/60039168.mkv +赵学而-失踪,http://em.21dtv.com/songs/60038864.mkv +林忆莲-失踪,http://em.21dtv.com/songs/60038863.mkv +李维-失踪,http://em.21dtv.com/songs/60038862.mkv +陈洁仪-失踪(演唱会),http://em.21dtv.com/songs/60038861.mkv +贾立怡-失重,http://em.21dtv.com/songs/60038859.mkv +陈星-山寨,http://em.21dtv.com/songs/60037696.mkv +江若琳-傻猪,http://em.21dtv.com/songs/60037562.mkv +江若琳-傻猪(演唱会),http://em.21dtv.com/songs/60037561.mkv +杨千嬅-傻仔,http://em.21dtv.com/songs/60037558.mkv +陈德志-沙子,http://em.21dtv.com/songs/60037483.mkv +关心妍-伞子,http://em.21dtv.com/songs/60037381.mkv +家家-睡衣Party,http://em.21dtv.com/songs/60096817.mkv +霍尊-素颜,http://em.21dtv.com/songs/60134440.mkv +张晓明-三月,http://em.21dtv.com/songs/60133667.mkv +王嘉仪-深渊,http://em.21dtv.com/songs/60132717.mkv +丁泽群-疏远,http://em.21dtv.com/songs/60132154.mkv +刘津宏-岁月,http://em.21dtv.com/songs/60131215.mkv +G.Z光泽-上瘾,http://em.21dtv.com/songs/60129937.mkv +BTOB-声音,http://em.21dtv.com/songs/60129901.mkv +聂玉皎-素颜,http://em.21dtv.com/songs/60129504.mkv +光泽-上瘾,http://em.21dtv.com/songs/60128802.mkv +G.Z光泽-上瘾,http://em.21dtv.com/songs/60128677.mkv +叶诺帆-誓言,http://em.21dtv.com/songs/60122562.mkv +轻乐队-誓言,http://em.21dtv.com/songs/60126246.mkv +南征北战-闪耀,http://em.21dtv.com/songs/60123713.mkv +曹雅雯-手印,http://em.21dtv.com/songs/60122802.mkv +龙千玉-岁月,http://em.21dtv.com/songs/60117422.mkv +莫莫-缩影,http://em.21dtv.com/songs/60117174.mkv +江宏恩-输赢,http://em.21dtv.com/songs/60116990.mkv +罗凯莹-爽约,http://em.21dtv.com/songs/60114724.mkv +张其萍-思源,http://em.21dtv.com/songs/60114525.mkv +旭佳非-锁影,http://em.21dtv.com/songs/60113556.mkv +毛方圆-是夜,http://em.21dtv.com/songs/60112819.mkv +孟晓辉-失忆,http://em.21dtv.com/songs/60112633.mkv +叶诺帆-誓言,http://em.21dtv.com/songs/60112566.mkv +聂赫阳-誓言,http://em.21dtv.com/songs/60112153.mkv +王婧-疏远,http://em.21dtv.com/songs/60112099.mkv +田维英-岁月,http://em.21dtv.com/songs/60111306.mkv +孙恭庆-所有,http://em.21dtv.com/songs/60110138.mkv +小老鹰乐团-神游,http://em.21dtv.com/songs/60107687.mkv +董贞-上元,http://em.21dtv.com/songs/60107176.mkv +张政+朱永棠-岁月,http://em.21dtv.com/songs/60106835.mkv +刘栋升-誓言,http://em.21dtv.com/songs/60106648.mkv +赵奕欢-傻样,http://em.21dtv.com/songs/60106301.mkv +邵大伦-沙哑,http://em.21dtv.com/songs/60105422.mkv +东莞人-声音,http://em.21dtv.com/songs/60103848.mkv +杨宗伟-闪耀,http://em.21dtv.com/songs/60103384.mkv +酒二郎-神鹰,http://em.21dtv.com/songs/60102825.mkv +张惠妹-三月,http://em.21dtv.com/songs/60102215.mkv +EXO M-上瘾,http://em.21dtv.com/songs/60099657.mkv +梅南林-随缘,http://em.21dtv.com/songs/60098535.mkv +王大文-酸雨,http://em.21dtv.com/songs/60096394.mkv +尹寒-失约,http://em.21dtv.com/songs/60094075.mkv +张学友-思忆,http://em.21dtv.com/songs/60092588.mkv +孙楠-深渊,http://em.21dtv.com/songs/60090917.mkv +林长春-誓言,http://em.21dtv.com/songs/60086835.mkv +张韶涵-失忆,http://em.21dtv.com/songs/60086824.mkv +杨宗纬-闪耀(演唱会),http://em.21dtv.com/songs/60086806.mkv +肖洋-失忆,http://em.21dtv.com/songs/60085712.mkv +李霄云-私游,http://em.21dtv.com/songs/60083847.mkv +高明骏-撕夜,http://em.21dtv.com/songs/60083843.mkv +周杰伦-手语(演唱会),http://em.21dtv.com/songs/60083817.mkv +王莱-深渊,http://em.21dtv.com/songs/60083780.mkv +谢和弦+蓝心湄-Say Yeah,http://em.21dtv.com/songs/60082019.mkv +李代沫+费玉清-声音,http://em.21dtv.com/songs/60081338.mkv +小峰峰-湿忆,http://em.21dtv.com/songs/60080778.mkv +皓天-随缘,http://em.21dtv.com/songs/60080544.mkv +原味-素颜,http://em.21dtv.com/songs/60077784.mkv +浅-夙缘,http://em.21dtv.com/songs/60077782.mkv +周杰伦-手语,http://em.21dtv.com/songs/60077662.mkv +汤加丽-三月,http://em.21dtv.com/songs/60077471.mkv +李代沫-say yes,http://em.21dtv.com/songs/60073845.mkv +赵小兵-碎玉,http://em.21dtv.com/songs/60072433.mkv +许廷铿-岁月,http://em.21dtv.com/songs/60072430.mkv +翁立友-随赢,http://em.21dtv.com/songs/60072429.mkv +郭静-随意,http://em.21dtv.com/songs/60072428.mkv +真真-鲨鱼,http://em.21dtv.com/songs/60072365.mkv +松下优也-see you,http://em.21dtv.com/songs/60070395.mkv +蓝心湄+谢和弦-say yeah,http://em.21dtv.com/songs/60069137.mkv +江宏恩-输赢,http://em.21dtv.com/songs/60067440.mkv +周惠-守约,http://em.21dtv.com/songs/60067437.mkv +TWINS-素颜,http://em.21dtv.com/songs/60066333.mkv +谢添-守夜,http://em.21dtv.com/songs/60066323.mkv +温岚-手印,http://em.21dtv.com/songs/60066320.mkv +阿福-鲨鱼,http://em.21dtv.com/songs/60064825.mkv +蔡枫华-誓言(演唱会),http://em.21dtv.com/songs/60061589.mkv +容祖儿-损友,http://em.21dtv.com/songs/60041014.mkv +雪狼组合-岁月,http://em.21dtv.com/songs/60040965.mkv +王凡石-岁月,http://em.21dtv.com/songs/60040964.mkv +刘尊-岁月,http://em.21dtv.com/songs/60040963.mkv +叶启田-随缘,http://em.21dtv.com/songs/60040957.mkv +温兆伦-随缘,http://em.21dtv.com/songs/60040956.mkv +江蕙-随缘,http://em.21dtv.com/songs/60040955.mkv +陈雷-随缘,http://em.21dtv.com/songs/60040954.mkv +王杰-酸雨,http://em.21dtv.com/songs/60040879.mkv +许篙+何曼婷-素颜,http://em.21dtv.com/songs/60040854.mkv +阿杜-撕夜,http://em.21dtv.com/songs/60040611.mkv +梁球-思忆,http://em.21dtv.com/songs/60040602.mkv +王丽达-水韵,http://em.21dtv.com/songs/60040256.mkv +于涛-水月,http://em.21dtv.com/songs/60040252.mkv +李碧华-水印(无原唱),http://em.21dtv.com/songs/60040250.mkv +王心雅-水妖,http://em.21dtv.com/songs/60040248.mkv +许巍-水妖(演唱会),http://em.21dtv.com/songs/60040247.mkv +许哲佩-爽约,http://em.21dtv.com/songs/60039924.mkv +叶蓓-双鱼,http://em.21dtv.com/songs/60039908.mkv +刘依纯-双翼(无原唱),http://em.21dtv.com/songs/60039906.mkv +叶树茵-数羊(无原唱),http://em.21dtv.com/songs/60039811.mkv +梁静茹-属于,http://em.21dtv.com/songs/60039770.mkv +陈雷-输赢,http://em.21dtv.com/songs/60039759.mkv +周华健-疏远,http://em.21dtv.com/songs/60039750.mkv +王宛之-书意,http://em.21dtv.com/songs/60039737.mkv +谈芳兵-守夜,http://em.21dtv.com/songs/60039695.mkv +孟庭苇-手语,http://em.21dtv.com/songs/60039654.mkv +信乐团-手拥,http://em.21dtv.com/songs/60039653.mkv +游鸿明-誓言,http://em.21dtv.com/songs/60039577.mkv +徐怀钰-誓言,http://em.21dtv.com/songs/60039576.mkv +王菲-誓言,http://em.21dtv.com/songs/60039575.mkv +刘超华-誓言,http://em.21dtv.com/songs/60039574.mkv +黄思婷-誓言,http://em.21dtv.com/songs/60039573.mkv +韩宝仪-誓言,http://em.21dtv.com/songs/60039572.mkv +董贞-誓言,http://em.21dtv.com/songs/60039571.mkv +甄妮-誓言(演唱会),http://em.21dtv.com/songs/60039570.mkv +洪荣宏-誓言(无原唱),http://em.21dtv.com/songs/60039569.mkv +张可芝-适应(无原唱),http://em.21dtv.com/songs/60039542.mkv +樱桃帮-蚀月,http://em.21dtv.com/songs/60039183.mkv +张翰-拾忆,http://em.21dtv.com/songs/60039180.mkv +臧天朔+斯琴格日乐-诗意,http://em.21dtv.com/songs/60038879.mkv +姜育恒-诗意,http://em.21dtv.com/songs/60038878.mkv +邓丽君-诗意,http://em.21dtv.com/songs/60038877.mkv +容祖儿-诗意(演唱会),http://em.21dtv.com/songs/60038876.mkv +巫奇-失约,http://em.21dtv.com/songs/60038858.mkv +金城武-失约(演唱会),http://em.21dtv.com/songs/60038857.mkv +郑素伶-失约(无原唱),http://em.21dtv.com/songs/60038856.mkv +张瀛仁-失约(无原唱),http://em.21dtv.com/songs/60038855.mkv +郑秀文-失忆,http://em.21dtv.com/songs/60038846.mkv +林晓培-失忆,http://em.21dtv.com/songs/60038845.mkv +梁静茹-失忆,http://em.21dtv.com/songs/60038844.mkv +张敬轩-声音,http://em.21dtv.com/songs/60038655.mkv +VNT-声音,http://em.21dtv.com/songs/60038654.mkv +BEYOND-声音(演唱会),http://em.21dtv.com/songs/60038653.mkv +许茹芸-深渊,http://em.21dtv.com/songs/60038380.mkv +草蜢-深渊(演唱会),http://em.21dtv.com/songs/60038379.mkv +郭红-深夜,http://em.21dtv.com/songs/60038373.mkv +袁惟仁-深夜(无原唱),http://em.21dtv.com/songs/60038372.mkv +陈珊妮-呻吟,http://em.21dtv.com/songs/60038272.mkv +紫龄+李冠璋-身影(无原唱),http://em.21dtv.com/songs/60038270.mkv +ENERGY-上瘾,http://em.21dtv.com/songs/60038066.mkv +芭比-闪耀,http://em.21dtv.com/songs/60037743.mkv +吕珊-闪耀(演唱会),http://em.21dtv.com/songs/60037742.mkv +吴彤-桑叶,http://em.21dtv.com/songs/60037398.mkv +月光星子-三月,http://em.21dtv.com/songs/60037361.mkv +香香-三月,http://em.21dtv.com/songs/60037360.mkv +佚名-三愿,http://em.21dtv.com/songs/60037359.mkv +林敏聪+曾志伟-三姨,http://em.21dtv.com/songs/60037357.mkv +郑中基-撒野,http://em.21dtv.com/songs/60037151.mkv +阿杜-撒野,http://em.21dtv.com/songs/60037150.mkv +辛晓琪-撒野(无原唱),http://em.21dtv.com/songs/60037149.mkv +王玲-失约(无原唱),http://em.21dtv.com/songs/60021832.mkv +滨崎步-step you,http://em.21dtv.com/songs/60005264.mkv +THE CORRS-so young,http://em.21dtv.com/songs/60005120.mkv +江若琳-show you(演唱会),http://em.21dtv.com/songs/60005011.mkv +蔡济文-say yes,http://em.21dtv.com/songs/60004841.mkv +石乔-失想,http://em.21dtv.com/songs/60135604.mkv +苗小青-升仙,http://em.21dtv.com/songs/60134173.mkv +EXID-上下,http://em.21dtv.com/songs/60131060.mkv +张文绮-深雪,http://em.21dtv.com/songs/60130318.mkv +陈随意-思乡,http://em.21dtv.com/songs/60129763.mkv +西部怪杰-思乡,http://em.21dtv.com/songs/60128386.mkv +望海高歌-思乡,http://em.21dtv.com/songs/60126982.mkv +水木年华-水仙,http://em.21dtv.com/songs/60125848.mkv +王上颉-实现,http://em.21dtv.com/songs/60124242.mkv +温亚伦-伤心,http://em.21dtv.com/songs/60124213.mkv +山子华-思乡,http://em.21dtv.com/songs/60117693.mkv +郑欣宜-上心,http://em.21dtv.com/songs/60116291.mkv +成泉-伤雪,http://em.21dtv.com/songs/60115954.mkv +陈雪君-锁心,http://em.21dtv.com/songs/60114875.mkv +李宇春-蜀绣,http://em.21dtv.com/songs/60109424.mkv +杨卿俪-水仙,http://em.21dtv.com/songs/60108596.mkv +林俊杰-水仙,http://em.21dtv.com/songs/60107825.mkv +云菲菲-殇雪,http://em.21dtv.com/songs/60105571.mkv +沈建豪-思乡,http://em.21dtv.com/songs/60099365.mkv +江涛-思乡,http://em.21dtv.com/songs/60094568.mkv +储立群-思乡,http://em.21dtv.com/songs/60093588.mkv +李圣杰-视线,http://em.21dtv.com/songs/60091308.mkv +许嵩-伤心,http://em.21dtv.com/songs/60089470.mkv +小曲儿-上邪,http://em.21dtv.com/songs/60083769.mkv +钟洁+RILL-撕心,http://em.21dtv.com/songs/60077752.mkv +无级生-双侠,http://em.21dtv.com/songs/60077688.mkv +董贞-蜀绣,http://em.21dtv.com/songs/60077675.mkv +张丹锋-手心,http://em.21dtv.com/songs/60077660.mkv +郑欣宜-上心,http://em.21dtv.com/songs/60077534.mkv +周杰伦+袁咏琳-傻笑,http://em.21dtv.com/songs/60077489.mkv +童丽-三笑,http://em.21dtv.com/songs/60077468.mkv +FUMIKA-その声消えないよ,http://em.21dtv.com/songs/60074244.mkv +张斯斯-说心,http://em.21dtv.com/songs/60072425.mkv +吴易轩-瞬息,http://em.21dtv.com/songs/60067449.mkv +顾莉雅-水仙(演唱会),http://em.21dtv.com/songs/60064910.mkv +苏夏-生锈,http://em.21dtv.com/songs/60062929.mkv +陈星-思乡,http://em.21dtv.com/songs/60062289.mkv +丁浩然-苏绣,http://em.21dtv.com/songs/60040828.mkv +王杰-苏醒,http://em.21dtv.com/songs/60040827.mkv +苍茫-苏醒(演唱会),http://em.21dtv.com/songs/60040826.mkv +张蓉蓉-送行,http://em.21dtv.com/songs/60040753.mkv +翁立友-送行,http://em.21dtv.com/songs/60040752.mkv +康康-死穴,http://em.21dtv.com/songs/60040643.mkv +梅岭-死心,http://em.21dtv.com/songs/60040628.mkv +扎西-思乡,http://em.21dtv.com/songs/60040583.mkv +索南扎西-思乡,http://em.21dtv.com/songs/60040582.mkv +沈芳如-私心,http://em.21dtv.com/songs/60040471.mkv +万芳-睡醒,http://em.21dtv.com/songs/60040296.mkv +陈钢+杨阳-水袖,http://em.21dtv.com/songs/60040246.mkv +佚名-水乡(无原唱),http://em.21dtv.com/songs/60040243.mkv +钟伟-水仙,http://em.21dtv.com/songs/60040238.mkv +佚名-水仙,http://em.21dtv.com/songs/60040237.mkv +王心凌-水仙,http://em.21dtv.com/songs/60040236.mkv +罗文-水仙,http://em.21dtv.com/songs/60040235.mkv +陈兰丽-水仙,http://em.21dtv.com/songs/60040234.mkv +佚名-水霞,http://em.21dtv.com/songs/60040233.mkv +无级生-双侠(演唱会),http://em.21dtv.com/songs/60039895.mkv +罗文聪-双喜,http://em.21dtv.com/songs/60039893.mkv +李宇春-蜀绣,http://em.21dtv.com/songs/60039776.mkv +庾澄庆-熟悉,http://em.21dtv.com/songs/60039766.mkv +杨千嬅-手信,http://em.21dtv.com/songs/60039652.mkv +杨千嬅-手信(演唱会),http://em.21dtv.com/songs/60039651.mkv +卓文萱-手心,http://em.21dtv.com/songs/60039643.mkv +沈芳如-试心,http://em.21dtv.com/songs/60039373.mkv +邓妙华-时限,http://em.21dtv.com/songs/60039160.mkv +林子祥-石像,http://em.21dtv.com/songs/60039078.mkv +方力申-石像,http://em.21dtv.com/songs/60039077.mkv +刘浩龙-师兄(演唱会),http://em.21dtv.com/songs/60038868.mkv +许志安-生锈(演唱会),http://em.21dtv.com/songs/60038646.mkv +萨顶顶-神香,http://em.21dtv.com/songs/60038509.mkv +童唱-上学,http://em.21dtv.com/songs/60038057.mkv +九天-伤雪,http://em.21dtv.com/songs/60037990.mkv +陈奕迅-伤信,http://em.21dtv.com/songs/60037989.mkv +杨千嬅-伤信(演唱会),http://em.21dtv.com/songs/60037988.mkv +陈奕迅-伤信(演唱会),http://em.21dtv.com/songs/60037987.mkv +王识贤-伤心,http://em.21dtv.com/songs/60037840.mkv +王健-伤心,http://em.21dtv.com/songs/60037839.mkv +林姗-伤心,http://em.21dtv.com/songs/60037838.mkv +陈洁仪-伤心,http://em.21dtv.com/songs/60037837.mkv +刘德华-伤心(演唱会),http://em.21dtv.com/songs/60037836.mkv +谭咏麟-善心,http://em.21dtv.com/songs/60037758.mkv +童唱-山行,http://em.21dtv.com/songs/60037646.mkv +佚名-煞戏,http://em.21dtv.com/songs/60037572.mkv +李静美-煞戏,http://em.21dtv.com/songs/60037571.mkv +李李仁-傻笑(无原唱),http://em.21dtv.com/songs/60037554.mkv +甘萍-沙心,http://em.21dtv.com/songs/60037481.mkv +赵咏华-散心,http://em.21dtv.com/songs/60037391.mkv +张宇-伞下,http://em.21dtv.com/songs/60037378.mkv +MFBTY-Sweet Dream,http://em.21dtv.com/songs/60099683.mkv +ZAC BROWN BAND-Sweet Annie,http://em.21dtv.com/songs/60096162.mkv +快乐男声-随我,http://em.21dtv.com/songs/60135291.mkv +龙飞龙泽+杨丹-守望,http://em.21dtv.com/songs/60129869.mkv +陈楚生+SPY.C-35,http://em.21dtv.com/songs/60128545.mkv +贺敬轩-是我,http://em.21dtv.com/songs/60128418.mkv +韩信-守望,http://em.21dtv.com/songs/60124688.mkv +KiKi.Li-守望,http://em.21dtv.com/songs/60123488.mkv +刘宸启-侍卫,http://em.21dtv.com/songs/60118384.mkv +王璐-神往,http://em.21dtv.com/songs/60117922.mkv +励敏-奢望,http://em.21dtv.com/songs/60111730.mkv +樊凡-是我,http://em.21dtv.com/songs/60107852.mkv +[Group] +groupName=十六万歌曲MV等 - 14 +大豪(黄昱豪)-甩尾,http://em.21dtv.com/songs/60105733.mkv +林峰-守卫,http://em.21dtv.com/songs/60105182.mkv +李成-奢望,http://em.21dtv.com/songs/60102337.mkv +夏米雅-是我,http://em.21dtv.com/songs/60099906.mkv +陈晓-圣王,http://em.21dtv.com/songs/60095234.mkv +萧敬腾+肖洒-super woman,http://em.21dtv.com/songs/60084765.mkv +SUM41-still waiting,http://em.21dtv.com/songs/60082339.mkv +蛋堡-屎王,http://em.21dtv.com/songs/60080938.mkv +OLIVIA ONG-守望,http://em.21dtv.com/songs/60080069.mkv +莫文蔚-stormy weather,http://em.21dtv.com/songs/60073949.mkv +DAVID GUETTA+SIA-she wolf,http://em.21dtv.com/songs/60073864.mkv +THE GASLIGHT ANTHEN-45,http://em.21dtv.com/songs/60072854.mkv +冷漠-奢望,http://em.21dtv.com/songs/60071106.mkv +张韶涵-是我,http://em.21dtv.com/songs/60069826.mkv +宜璇-super woman,http://em.21dtv.com/songs/60067990.mkv +薛凯琪-树娃,http://em.21dtv.com/songs/60039791.mkv +孙楠-守望,http://em.21dtv.com/songs/60039692.mkv +谢安琪+张敬轩-守望(演唱会),http://em.21dtv.com/songs/60039691.mkv +王菀之-手望,http://em.21dtv.com/songs/60039635.mkv +王菀之+张敬轩-手望,http://em.21dtv.com/songs/60039634.mkv +王菀之+张敬轩-手望(演唱会),http://em.21dtv.com/songs/60039633.mkv +黎明-是我,http://em.21dtv.com/songs/60039502.mkv +郭富城-是我,http://em.21dtv.com/songs/60039501.mkv +黎明-是我(演唱会),http://em.21dtv.com/songs/60039500.mkv +阿福-神往,http://em.21dtv.com/songs/60038504.mkv +周杰伦+梁心颐-蛇舞,http://em.21dtv.com/songs/60038191.mkv +群星-烧喔,http://em.21dtv.com/songs/60038102.mkv +吴佩慈+何志健-赏我,http://em.21dtv.com/songs/60037998.mkv +糖糖乐团-色舞,http://em.21dtv.com/songs/60037412.mkv +佚名-super woman,http://em.21dtv.com/songs/60005373.mkv +佚名-spinning wheel,http://em.21dtv.com/songs/60005223.mkv +PINK-so what,http://em.21dtv.com/songs/60005119.mkv +SHAKIRA-she wolf,http://em.21dtv.com/songs/60004963.mkv +JOURNEY-separate ways(无原唱),http://em.21dtv.com/songs/60004893.mkv +曾惠和超级学习力学员-Super Study,http://em.21dtv.com/songs/60100098.mkv +周上允-SUPER MR,http://em.21dtv.com/songs/60096642.mkv +吴莫愁-Super MO,http://em.21dtv.com/songs/60099875.mkv +雪崩乐队-Super girl,http://em.21dtv.com/songs/60128572.mkv +吴映洁-SUGAR RUSH,http://em.21dtv.com/songs/60127830.mkv +少女标本-Sugar Free,http://em.21dtv.com/songs/60127925.mkv +AMELIA LILY-shut up,http://em.21dtv.com/songs/60073875.mkv +LUDACRIS-stand up,http://em.21dtv.com/songs/60063749.mkv +佚名-surfing u s a,http://em.21dtv.com/songs/60005388.mkv +ELLIOTT WOLFF-straight up,http://em.21dtv.com/songs/60005287.mkv +张国荣-stand up,http://em.21dtv.com/songs/60005232.mkv +潘玮柏+阿信-shut up,http://em.21dtv.com/songs/60005020.mkv +SWING-shut up,http://em.21dtv.com/songs/60005019.mkv +KISS-shut up,http://em.21dtv.com/songs/60005018.mkv +罗百吉-shut up(演唱会),http://em.21dtv.com/songs/60005017.mkv +容祖儿-show up,http://em.21dtv.com/songs/60005010.mkv +容祖儿-show up(演唱会),http://em.21dtv.com/songs/60005009.mkv +ROBBIE WILLIAMS-sexes up,http://em.21dtv.com/songs/60004905.mkv +JASON DERULO-STUPID LOVE,http://em.21dtv.com/songs/60096641.mkv +スフィア-Sticking Places,http://em.21dtv.com/songs/60100757.mkv +郑建鹏-梳挞,http://em.21dtv.com/songs/60129664.mkv +王嘉华-石头,http://em.21dtv.com/songs/60127194.mkv +莫小娘-三天,http://em.21dtv.com/songs/60122066.mkv +S.H.E-殊途,http://em.21dtv.com/songs/60121304.mkv +小海-伤痛,http://em.21dtv.com/songs/60113423.mkv +麋先生-上台,http://em.21dtv.com/songs/60109771.mkv +生命树-石头,http://em.21dtv.com/songs/60108740.mkv +万轩严-失她,http://em.21dtv.com/songs/60095252.mkv +曾静玟+范玮琪-沙滩,http://em.21dtv.com/songs/60094526.mkv +黄莺莺-酸甜,http://em.21dtv.com/songs/60089059.mkv +黑豹乐队-洒脱(演唱会),http://em.21dtv.com/songs/60085665.mkv +小曲儿-丝途,http://em.21dtv.com/songs/60083849.mkv +AS ONE-4ever,http://em.21dtv.com/songs/60082058.mkv +吉克隽逸+SNOOP DOGG-Summer Time,http://em.21dtv.com/songs/60081912.mkv +苏梦玫-沙滩,http://em.21dtv.com/songs/60081586.mkv +何晟铭-石头,http://em.21dtv.com/songs/60077617.mkv +黑龙+云菲菲-三天,http://em.21dtv.com/songs/60077467.mkv +莫文蔚-sour times,http://em.21dtv.com/songs/60073922.mkv +TYLER JAMES-single tear,http://em.21dtv.com/songs/60073886.mkv +包子虎乐团-second time,http://em.21dtv.com/songs/60073852.mkv +林欣彤-树藤,http://em.21dtv.com/songs/60067443.mkv +蔡依林-酸甜,http://em.21dtv.com/songs/60040877.mkv +S.H.E+飞轮海-酸甜,http://em.21dtv.com/songs/60040876.mkv +李泉-手套,http://em.21dtv.com/songs/60039629.mkv +张清芳-试探,http://em.21dtv.com/songs/60039369.mkv +戴佩妮-试探,http://em.21dtv.com/songs/60039368.mkv +罗密欧-试探(无原唱),http://em.21dtv.com/songs/60039367.mkv +黄磊-石头,http://em.21dtv.com/songs/60039068.mkv +叶倩文-伤痛,http://em.21dtv.com/songs/60037830.mkv +童唱-山童,http://em.21dtv.com/songs/60037682.mkv +陶喆-沙滩,http://em.21dtv.com/songs/60037476.mkv +蔡健雅-沙滩,http://em.21dtv.com/songs/60037475.mkv +梅艳芳+陶喆-沙滩(演唱会),http://em.21dtv.com/songs/60037474.mkv +佚名-sweetheart tree,http://em.21dtv.com/songs/60005418.mkv +ABBA-super trouper,http://em.21dtv.com/songs/60005372.mkv +FTISLAND-so today,http://em.21dtv.com/songs/60005117.mkv +EMINEM-smack that,http://em.21dtv.com/songs/60005077.mkv +罗志祥-show time,http://em.21dtv.com/songs/60005008.mkv +EAGLE EYE CHER-save tonight,http://em.21dtv.com/songs/60004820.mkv +CHERRY-save tonight,http://em.21dtv.com/songs/60004819.mkv +黄意雅-失散,http://em.21dtv.com/songs/60136027.mkv +张津涤-双失,http://em.21dtv.com/songs/60135213.mkv +吴克群-失速,http://em.21dtv.com/songs/60133469.mkv +任然-三生,http://em.21dtv.com/songs/60133356.mkv +吴克群-失声,http://em.21dtv.com/songs/60132284.mkv +键人乐队-谁说,http://em.21dtv.com/songs/60131917.mkv +伍声-闪烁,http://em.21dtv.com/songs/60131159.mkv +少峰-史书,http://em.21dtv.com/songs/60130270.mkv +陆静圆-十岁,http://em.21dtv.com/songs/60129721.mkv +苏振华-苏少,http://em.21dtv.com/songs/60128343.mkv +詹雅雯-酸酸,http://em.21dtv.com/songs/60127384.mkv +黄文星+张语农-伤神,http://em.21dtv.com/songs/60126479.mkv +黄渤+庾澄庆-水手,http://em.21dtv.com/songs/60124748.mkv +薛之谦-绅士,http://em.21dtv.com/songs/60124444.mkv +王蓓-塞上,http://em.21dtv.com/songs/60123016.mkv +张津涤-深深,http://em.21dtv.com/songs/60122735.mkv +任娟-叔叔,http://em.21dtv.com/songs/60120294.mkv +Take-簌簌,http://em.21dtv.com/songs/60112462.mkv +薛之谦-绅士,http://em.21dtv.com/songs/60112220.mkv +林俊杰-生生,http://em.21dtv.com/songs/60112020.mkv +薛之谦-绅士,http://em.21dtv.com/songs/60111392.mkv +汪峰-丧失,http://em.21dtv.com/songs/60102441.mkv +时翔云-是谁,http://em.21dtv.com/songs/60102280.mkv +彭丽媛-曙色,http://em.21dtv.com/songs/60102256.mkv +中岛美雪-ひとり上手,http://em.21dtv.com/songs/60099717.mkv +陈雅菁-傻事,http://em.21dtv.com/songs/60096823.mkv +女子十二乐坊-山水,http://em.21dtv.com/songs/60089770.mkv +屠洪纲-颂诉,http://em.21dtv.com/songs/60087731.mkv +雍鉴君-叔叔,http://em.21dtv.com/songs/60085730.mkv +容祖儿-伤神,http://em.21dtv.com/songs/60085684.mkv +窦鹏-杀生,http://em.21dtv.com/songs/60083746.mkv +小龙宋-双生,http://em.21dtv.com/songs/60081212.mkv +蛋堡-史诗,http://em.21dtv.com/songs/60080937.mkv +满人-双手,http://em.21dtv.com/songs/60077687.mkv +王喆-曙色(演唱会),http://em.21dtv.com/songs/60077677.mkv +AKB48-お手上げララバイ,http://em.21dtv.com/songs/60074225.mkv +EVANESCENCE-sweet sacrifice,http://em.21dtv.com/songs/60073966.mkv +尚雯婕-super star),http://em.21dtv.com/songs/60073962.mkv +LANA DEL REY-summertime sadness,http://em.21dtv.com/songs/60073957.mkv +GIRLICIOUS-stupid shit,http://em.21dtv.com/songs/60073952.mkv +CARRIE UNDERWOOD-so small,http://em.21dtv.com/songs/60073902.mkv +花泽香菜-silent snow,http://em.21dtv.com/songs/60073879.mkv +OWL CITY-shooting star,http://em.21dtv.com/songs/60073873.mkv +白雅妍-sad song,http://em.21dtv.com/songs/60073827.mkv +王喆-曙色,http://em.21dtv.com/songs/60072411.mkv +王电-受伤,http://em.21dtv.com/songs/60072410.mkv +MP魔幻力量-射手,http://em.21dtv.com/songs/60072378.mkv +SPEXIAL-super style,http://em.21dtv.com/songs/60071671.mkv +木村カエラ-sun shower,http://em.21dtv.com/songs/60071669.mkv +王莉-哨所(演唱会),http://em.21dtv.com/songs/60069800.mkv +C ALLSTAR-少数,http://em.21dtv.com/songs/60069799.mkv +JACK+WHITE-sixteen saltines,http://em.21dtv.com/songs/60069139.mkv +ELLIE+GOULDING-salt skin(演唱会),http://em.21dtv.com/songs/60069135.mkv +福山雅治-生きてる生きてく,http://em.21dtv.com/songs/60067420.mkv +张嘉洵-厮杀,http://em.21dtv.com/songs/60066332.mkv +向蕙玲-失算,http://em.21dtv.com/songs/60064867.mkv +DUFFY-stepping stone,http://em.21dtv.com/songs/60063752.mkv +YOUNG JEEZY+AKON-soul survivor,http://em.21dtv.com/songs/60063746.mkv +BROWN EYED GIRLS-sixth sense,http://em.21dtv.com/songs/60063740.mkv +韩国群星-shooting star,http://em.21dtv.com/songs/60063736.mkv +汪苏泷-双手,http://em.21dtv.com/songs/60061592.mkv +卢巧音-算数,http://em.21dtv.com/songs/60040906.mkv +草蜢-搜神(演唱会),http://em.21dtv.com/songs/60040805.mkv +方力申-死守,http://em.21dtv.com/songs/60040626.mkv +棒棒堂-说说,http://em.21dtv.com/songs/60040421.mkv +郑智化-水手,http://em.21dtv.com/songs/60040224.mkv +迪克牛仔-水手,http://em.21dtv.com/songs/60040223.mkv +莫文蔚-水色,http://em.21dtv.com/songs/60040218.mkv +范玮琪-双双,http://em.21dtv.com/songs/60039882.mkv +萧全-双手,http://em.21dtv.com/songs/60039876.mkv +张振宇-书生,http://em.21dtv.com/songs/60039735.mkv +汤潮-受伤,http://em.21dtv.com/songs/60039721.mkv +卓依婷-守岁,http://em.21dtv.com/songs/60039689.mkv +王菲-守时,http://em.21dtv.com/songs/60039688.mkv +潘越云-收拾,http://em.21dtv.com/songs/60039601.mkv +芮恩-是谁,http://em.21dtv.com/songs/60039483.mkv +韩红-是谁,http://em.21dtv.com/songs/60039482.mkv +关心妍-是谁,http://em.21dtv.com/songs/60039481.mkv +关淑怡-是谁,http://em.21dtv.com/songs/60039480.mkv +蒋雅文-失散,http://em.21dtv.com/songs/60038838.mkv +梁咏琪-神说,http://em.21dtv.com/songs/60038501.mkv +林吟蔚-深深,http://em.21dtv.com/songs/60038346.mkv +许美静-少数,http://em.21dtv.com/songs/60038179.mkv +叶倩文-伤逝,http://em.21dtv.com/songs/60037829.mkv +叶倩文-伤逝(演唱会),http://em.21dtv.com/songs/60037828.mkv +许嵩-伤声,http://em.21dtv.com/songs/60037827.mkv +关淑怡-山水(演唱会),http://em.21dtv.com/songs/60037672.mkv +林俊杰-杀手,http://em.21dtv.com/songs/60037433.mkv +ROD STEWART-sweet surrender,http://em.21dtv.com/songs/60005415.mkv +JOHN DENYER-sweet surrender(演唱会),http://em.21dtv.com/songs/60005414.mkv +陶喆-susan说,http://em.21dtv.com/songs/60005395.mkv +陶喆-susan说(演唱会),http://em.21dtv.com/songs/60005394.mkv +曹格-super sunshine,http://em.21dtv.com/songs/60005371.mkv +S.H.E-super star,http://em.21dtv.com/songs/60005370.mkv +THE CORRS-summer sunshine,http://em.21dtv.com/songs/60005342.mkv +辛晓琪-summer snow,http://em.21dtv.com/songs/60005341.mkv +佚名-sugar sugar,http://em.21dtv.com/songs/60005320.mkv +蔡依林-sugar sugar,http://em.21dtv.com/songs/60005319.mkv +SEARCHERS-sugar spice,http://em.21dtv.com/songs/60005313.mkv +SUGABABES-soul sound,http://em.21dtv.com/songs/60005206.mkv +动力火车-sorry sunday,http://em.21dtv.com/songs/60005195.mkv +陈冠希-sorry sorry,http://em.21dtv.com/songs/60005194.mkv +SUPER JUNIOR-sorry sorry,http://em.21dtv.com/songs/60005193.mkv +蓝心湄-somewhere someone,http://em.21dtv.com/songs/60005180.mkv +ROBBIE WILLIAMS-something stupid,http://em.21dtv.com/songs/60005162.mkv +ROBBIE WILLIAMS+NICO-somethinstupid,http://em.21dtv.com/songs/60005154.mkv +林子祥+陈奕迅-somethinstupid(演唱会),http://em.21dtv.com/songs/60005153.mkv +MIDDLE OF THE ROAD-soley soley,http://em.21dtv.com/songs/60005126.mkv +海鸣威+郑希怡-so sorry,http://em.21dtv.com/songs/60005116.mkv +徐若瑄+李玖哲-so so,http://em.21dtv.com/songs/60005115.mkv +NE+YO-so sick,http://em.21dtv.com/songs/60005114.mkv +草蜢-so sad(演唱会),http://em.21dtv.com/songs/60005113.mkv +草蜢+刘美君-so sad(演唱会),http://em.21dtv.com/songs/60005112.mkv +SD5行堂-shy shy,http://em.21dtv.com/songs/60005022.mkv +陈慧琳-shake shake,http://em.21dtv.com/songs/60004930.mkv +陈慧琳-shake shake(演唱会),http://em.21dtv.com/songs/60004929.mkv +2MORO-shabu shabu,http://em.21dtv.com/songs/60004921.mkv +TONICK-3REE,http://em.21dtv.com/songs/60096588.mkv +毛泽少-塞壬,http://em.21dtv.com/songs/60131586.mkv +李瑞轩-双刃,http://em.21dtv.com/songs/60125715.mkv +杨哲-是阮,http://em.21dtv.com/songs/60113665.mkv +掠琼-伤人,http://em.21dtv.com/songs/60111126.mkv +AI_MIMI-三人,http://em.21dtv.com/songs/60090388.mkv +邢继光-湿润,http://em.21dtv.com/songs/60083796.mkv +黄小琥-圣人,http://em.21dtv.com/songs/60080176.mkv +黄思婷-随人,http://em.21dtv.com/songs/60069855.mkv +KAT.TUN-star rider,http://em.21dtv.com/songs/60063750.mkv +A-TEENS-sugar rush,http://em.21dtv.com/songs/60061954.mkv +ATEENS-sugar rush,http://em.21dtv.com/songs/60060915.mkv +LUDACRIS FT-sex room,http://em.21dtv.com/songs/60060904.mkv +龙千玉-随人,http://em.21dtv.com/songs/60040932.mkv +郑伊健-时日,http://em.21dtv.com/songs/60039154.mkv +张智成-诗人,http://em.21dtv.com/songs/60038873.mkv +庞龙-生日,http://em.21dtv.com/songs/60038598.mkv +刘尊-生日,http://em.21dtv.com/songs/60038597.mkv +张智霖-骚扰,http://em.21dtv.com/songs/60037404.mkv +汪佩蓉-散热,http://em.21dtv.com/songs/60037389.mkv +AI MINI+CHI JAN-三人(无原唱),http://em.21dtv.com/songs/60037291.mkv +郭静+范玮琪+张韶涵-仨人,http://em.21dtv.com/songs/60037133.mkv +范文芳-summer rain,http://em.21dtv.com/songs/60005340.mkv +WESTLIFE-something right,http://em.21dtv.com/songs/60005160.mkv +范晓萱-sleigh ride,http://em.21dtv.com/songs/60005071.mkv +佚名-scarlet ribbons,http://em.21dtv.com/songs/60004855.mkv +姚灵-赊求,http://em.21dtv.com/songs/60125368.mkv +梁剑东-神曲,http://em.21dtv.com/songs/60120677.mkv +关喆-神奇,http://em.21dtv.com/songs/60118366.mkv +徐政鑫-逝去,http://em.21dtv.com/songs/60108518.mkv +胡彦斌-山丘,http://em.21dtv.com/songs/60107954.mkv +张洪量-神曲,http://em.21dtv.com/songs/60106857.mkv +张靓颖-书签,http://em.21dtv.com/songs/60103290.mkv +蒋凌-神奇,http://em.21dtv.com/songs/60101495.mkv +黄少梅-试情(戏曲),http://em.21dtv.com/songs/60093538.mkv +陈冠希-嘥气,http://em.21dtv.com/songs/60088852.mkv +谈芳兵-深情,http://em.21dtv.com/songs/60088656.mkv +龙智祥-双亲,http://em.21dtv.com/songs/60086843.mkv +李浩民-三秋,http://em.21dtv.com/songs/60086798.mkv +李宗盛-山丘,http://em.21dtv.com/songs/60085678.mkv +淘小淘-十七,http://em.21dtv.com/songs/60083799.mkv +李玟-盛開,http://em.21dtv.com/songs/60081057.mkv +詹雅雯-思情,http://em.21dtv.com/songs/60080858.mkv +汤加丽-逝去,http://em.21dtv.com/songs/60077652.mkv +詹曼铃-伤情,http://em.21dtv.com/songs/60072252.mkv +红笛-神曲,http://em.21dtv.com/songs/60068649.mkv +毕程漉-伤秋,http://em.21dtv.com/songs/60064835.mkv +容中尔甲-颂情,http://em.21dtv.com/songs/60040804.mkv +黄思婷-逝去(无原唱),http://em.21dtv.com/songs/60039544.mkv +廖碧儿-实情,http://em.21dtv.com/songs/60039164.mkv +王菀之-诗情,http://em.21dtv.com/songs/60038872.mkv +张震岳-失去,http://em.21dtv.com/songs/60038820.mkv +王麟+蓝雨-失去,http://em.21dtv.com/songs/60038819.mkv +王晶-失去,http://em.21dtv.com/songs/60038818.mkv +同恩-失去,http://em.21dtv.com/songs/60038817.mkv +孙耀威-失去,http://em.21dtv.com/songs/60038816.mkv +乐之翼-失去,http://em.21dtv.com/songs/60038815.mkv +阎维文-升旗,http://em.21dtv.com/songs/60038524.mkv +永邦-神奇,http://em.21dtv.com/songs/60038475.mkv +孙燕姿-神奇,http://em.21dtv.com/songs/60038474.mkv +尤雅-深秋,http://em.21dtv.com/songs/60038338.mkv +佚名-深秋,http://em.21dtv.com/songs/60038337.mkv +王秀琪-深情,http://em.21dtv.com/songs/60038311.mkv +苏有朋-深情(演唱会),http://em.21dtv.com/songs/60038310.mkv +堂娜-奢求,http://em.21dtv.com/songs/60038185.mkv +王识贤-伤情,http://em.21dtv.com/songs/60037821.mkv +詹曼玲-伤情(无原唱),http://em.21dtv.com/songs/60037820.mkv +罗琦-山情,http://em.21dtv.com/songs/60037668.mkv +李克勤-嗓泣,http://em.21dtv.com/songs/60037401.mkv +张智成-三千,http://em.21dtv.com/songs/60037281.mkv +丁当-说破,http://em.21dtv.com/songs/60101855.mkv +江惠仪-速配,http://em.21dtv.com/songs/60096774.mkv +ARIANNA+PITBULL-sexy people,http://em.21dtv.com/songs/60082322.mkv +苏醒-身旁,http://em.21dtv.com/songs/60077544.mkv +耀乐团-single party,http://em.21dtv.com/songs/60073885.mkv +梁心颐-碎片,http://em.21dtv.com/songs/60072432.mkv +徐玉婷-碎片,http://em.21dtv.com/songs/60040998.mkv +霍建华-碎片,http://em.21dtv.com/songs/60040997.mkv +谭咏麟-失陪,http://em.21dtv.com/songs/60038814.mkv +曹方-失陪,http://em.21dtv.com/songs/60038813.mkv +林海峰-傻婆,http://em.21dtv.com/songs/60037539.mkv +黄征-色偏,http://em.21dtv.com/songs/60037410.mkv +谢安琪-丧婆,http://em.21dtv.com/songs/60037402.mkv +佚名-soul provider,http://em.21dtv.com/songs/60005205.mkv +S.O.S-sos party(无原唱),http://em.21dtv.com/songs/60005200.mkv +BRITNEY SPEARS-soda pop,http://em.21dtv.com/songs/60005121.mkv +ALANIS MORISSETTE-so pure,http://em.21dtv.com/songs/60005111.mkv +林为音-So Crazy,http://em.21dtv.com/songs/60128116.mkv +NINA NESBITT-stay out,http://em.21dtv.com/songs/60082337.mkv +SADE-smooth operator,http://em.21dtv.com/songs/60005090.mkv +VANESSA HUDGENS-say ok,http://em.21dtv.com/songs/60004838.mkv +COMMODORES-sail on,http://em.21dtv.com/songs/60004792.mkv +AKB48-十年桜,http://em.21dtv.com/songs/60038993.mkv +陈冠霖-是你,http://em.21dtv.com/songs/60135898.mkv +钟泓-叁年,http://em.21dtv.com/songs/60134360.mkv +郁可唯-夙念,http://em.21dtv.com/songs/60132982.mkv +梁朝伟+李宇春-十年,http://em.21dtv.com/songs/60130501.mkv +析然-刹那,http://em.21dtv.com/songs/60129294.mkv +李逸朗-拾年,http://em.21dtv.com/songs/60128095.mkv +TFBOYS-是你,http://em.21dtv.com/songs/60127684.mkv +欢子-撕诺,http://em.21dtv.com/songs/60127137.mkv +TFBOYS-是你,http://em.21dtv.com/songs/60126553.mkv +陈慧恬-胜女,http://em.21dtv.com/songs/60124636.mkv +王旭鹏-思念,http://em.21dtv.com/songs/60121911.mkv +浩纹-思念,http://em.21dtv.com/songs/60121874.mkv +张雷-少年,http://em.21dtv.com/songs/60120530.mkv +小霞-思念,http://em.21dtv.com/songs/60120479.mkv +王啸坤-十年,http://em.21dtv.com/songs/60114678.mkv +陈宝钦-锁念,http://em.21dtv.com/songs/60114201.mkv +赵丽颖-十年,http://em.21dtv.com/songs/60114096.mkv +可人-锁年,http://em.21dtv.com/songs/60113322.mkv +不才-拾念,http://em.21dtv.com/songs/60113213.mkv +拉毛王旭-思念,http://em.21dtv.com/songs/60112713.mkv +庄前+邓子非+杨钰莹-思念,http://em.21dtv.com/songs/60111839.mkv +韩红+陈奕迅-十年,http://em.21dtv.com/songs/60110674.mkv +桑紫菲-思念,http://em.21dtv.com/songs/60110318.mkv +李逸朗-傻女,http://em.21dtv.com/songs/60110289.mkv +千百顺-圣女,http://em.21dtv.com/songs/60105665.mkv +陈依玟-思念,http://em.21dtv.com/songs/60108116.mkv +周冰倩-思念,http://em.21dtv.com/songs/60103977.mkv +阿香-思念,http://em.21dtv.com/songs/60103659.mkv +董璇+旋风-拾年,http://em.21dtv.com/songs/60103551.mkv +曹雅雯+许富凯-思念,http://em.21dtv.com/songs/60101373.mkv +杨钰莹-三年,http://em.21dtv.com/songs/60100192.mkv +千百顺-圣女,http://em.21dtv.com/songs/60099124.mkv +何韵诗-淑女,http://em.21dtv.com/songs/60096795.mkv +慕容晓晓-思念,http://em.21dtv.com/songs/60086853.mkv +HOPE-少年,http://em.21dtv.com/songs/60083770.mkv +FRIPSIDE-sisters noise,http://em.21dtv.com/songs/60082328.mkv +董璇+璇风-拾年,http://em.21dtv.com/songs/60081870.mkv +刘晶-思念,http://em.21dtv.com/songs/60080648.mkv +沙宝亮-十年,http://em.21dtv.com/songs/60079975.mkv +王菀之+张敬轩-随你,http://em.21dtv.com/songs/60077787.mkv +吴碧霞-思念,http://em.21dtv.com/songs/60077740.mkv +陈零九+LIN LIN-是你,http://em.21dtv.com/songs/60077646.mkv +刘若英-十年(演唱会),http://em.21dtv.com/songs/60077603.mkv +AKB48-少女たちよ,http://em.21dtv.com/songs/60077535.mkv +方伊琪-三年(演唱会),http://em.21dtv.com/songs/60077456.mkv +CALVIN HARRIS+FLORENCE WELCH-sweet nothing,http://em.21dtv.com/songs/60073965.mkv +GIRLS ALOUD-something new,http://em.21dtv.com/songs/60073910.mkv +FUN-some nights,http://em.21dtv.com/songs/60073904.mkv +EXAMPLE-say nothing,http://em.21dtv.com/songs/60073844.mkv +CRAYON POP-saturday night,http://em.21dtv.com/songs/60073838.mkv +吴进法-思念,http://em.21dtv.com/songs/60071155.mkv +江志丰-三年,http://em.21dtv.com/songs/60069780.mkv +WADE BOWEN-saturday night,http://em.21dtv.com/songs/60067975.mkv +敏敏哥哥-思念,http://em.21dtv.com/songs/60067456.mkv +陈思诺-丝念,http://em.21dtv.com/songs/60067454.mkv +叶世荣+EVER乐队-十年,http://em.21dtv.com/songs/60067426.mkv +袁小迪-三年,http://em.21dtv.com/songs/60066286.mkv +莫旭秋-三年(演唱会),http://em.21dtv.com/songs/60064821.mkv +西单女孩-少年,http://em.21dtv.com/songs/60063123.mkv +沙玛学锋-思念,http://em.21dtv.com/songs/60061608.mkv +蔡枫华-十年(演唱会),http://em.21dtv.com/songs/60061583.mkv +田一龙-三年,http://em.21dtv.com/songs/60061552.mkv +GARNET CROW-smiley nation,http://em.21dtv.com/songs/60060909.mkv +郑秀文-思念,http://em.21dtv.com/songs/60040507.mkv +郑少秋+汪明荃-思念,http://em.21dtv.com/songs/60040506.mkv +张学友-思念,http://em.21dtv.com/songs/60040505.mkv +张秀卿-思念,http://em.21dtv.com/songs/60040504.mkv +亚东-思念,http://em.21dtv.com/songs/60040503.mkv +毛阿敏-思念,http://em.21dtv.com/songs/60040502.mkv +林子娟-思念,http://em.21dtv.com/songs/60040501.mkv +红孩儿-思念,http://em.21dtv.com/songs/60040500.mkv +范琳琳-思念,http://em.21dtv.com/songs/60040499.mkv +陈汉-思念,http://em.21dtv.com/songs/60040498.mkv +安蕾尔-思念,http://em.21dtv.com/songs/60040497.mkv +郑秀文-思念(演唱会),http://em.21dtv.com/songs/60040496.mkv +毛阿敏-思念(演唱会),http://em.21dtv.com/songs/60040495.mkv +李香琴-思念(演唱会),http://em.21dtv.com/songs/60040494.mkv +杨宗宪-思念(无原唱),http://em.21dtv.com/songs/60040493.mkv +满江-水牛,http://em.21dtv.com/songs/60040211.mkv +杨千嬅-数你,http://em.21dtv.com/songs/60039808.mkv +杨千嬅-数你(演唱会),http://em.21dtv.com/songs/60039807.mkv +梅艳芳-淑女(演唱会),http://em.21dtv.com/songs/60039746.mkv +钟佩佩-是你,http://em.21dtv.com/songs/60039451.mkv +叶蕴仪-是你,http://em.21dtv.com/songs/60039450.mkv +王识贤-是你,http://em.21dtv.com/songs/60039449.mkv +王宏恩-是你,http://em.21dtv.com/songs/60039448.mkv +邱泽-是你,http://em.21dtv.com/songs/60039447.mkv +潘美辰-是你,http://em.21dtv.com/songs/60039446.mkv +梁静茹-是你,http://em.21dtv.com/songs/60039445.mkv +凤娘-是你,http://em.21dtv.com/songs/60039444.mkv +王力宏-是你(演唱会),http://em.21dtv.com/songs/60039443.mkv +王喜+黄浩然+李思捷-食脑,http://em.21dtv.com/songs/60039181.mkv +关心妍-拾年,http://em.21dtv.com/songs/60039178.mkv +刘德华-十年,http://em.21dtv.com/songs/60038984.mkv +陈奕迅-十年,http://em.21dtv.com/songs/60038983.mkv +刘德华-十年(演唱会),http://em.21dtv.com/songs/60038982.mkv +许巍-少年,http://em.21dtv.com/songs/60038121.mkv +光良+曹格-少年,http://em.21dtv.com/songs/60038120.mkv +卫诗-傻女(演唱会),http://em.21dtv.com/songs/60037534.mkv +卫兰-傻女(演唱会),http://em.21dtv.com/songs/60037533.mkv +李克勤-傻女(演唱会),http://em.21dtv.com/songs/60037532.mkv +陈慧娴-傻女(演唱会),http://em.21dtv.com/songs/60037531.mkv +陈慧琳-傻男,http://em.21dtv.com/songs/60037529.mkv +卓依婷-三年,http://em.21dtv.com/songs/60037266.mkv +李逸-三年,http://em.21dtv.com/songs/60037265.mkv +李香兰-三年,http://em.21dtv.com/songs/60037264.mkv +韩宝仪-三年,http://em.21dtv.com/songs/60037263.mkv +费玉清-三年,http://em.21dtv.com/songs/60037262.mkv +NEON乐团-三年,http://em.21dtv.com/songs/60037261.mkv +蔡琴-三年(演唱会),http://em.21dtv.com/songs/60037260.mkv +席静婷-三年(无原唱),http://em.21dtv.com/songs/60037259.mkv +华雪-刹那,http://em.21dtv.com/songs/60012233.mkv +JOHN TRAVOLTA+OLIVIA-summer nights,http://em.21dtv.com/songs/60005334.mkv +光良-stop now,http://em.21dtv.com/songs/60005277.mkv +苏永康-so nice,http://em.21dtv.com/songs/60005110.mkv +佚名-silent night,http://em.21dtv.com/songs/60005035.mkv +TWINS-silent night,http://em.21dtv.com/songs/60005034.mkv +JENNIFER LOPEZ-shouldve never,http://em.21dtv.com/songs/60004999.mkv +韩庚-say no,http://em.21dtv.com/songs/60004837.mkv +赵薇-saturday night,http://em.21dtv.com/songs/60004814.mkv +佚名-saturday night,http://em.21dtv.com/songs/60004813.mkv +林葳-算命,http://em.21dtv.com/songs/60135444.mkv +金志文-失眠,http://em.21dtv.com/songs/60134350.mkv +郁可唯-思慕,http://em.21dtv.com/songs/60134296.mkv +金志文-失眠,http://em.21dtv.com/songs/60131906.mkv +王振楠-衰命,http://em.21dtv.com/songs/60129397.mkv +田恩琪-宿命,http://em.21dtv.com/songs/60128254.mkv +河图+小爱的妈-山脉,http://em.21dtv.com/songs/60127163.mkv +陈堃古月-失眠,http://em.21dtv.com/songs/60124615.mkv +Kisum+Homme-3秒,http://em.21dtv.com/songs/60121275.mkv +鸿飞-宿命,http://em.21dtv.com/songs/60119066.mkv +肖雨蒙-使命,http://em.21dtv.com/songs/60115339.mkv +斯琴巴图-沙梦,http://em.21dtv.com/songs/60113548.mkv +群星-生命,http://em.21dtv.com/songs/60112148.mkv +晓亮-失眠,http://em.21dtv.com/songs/60111940.mkv +刘大成-神马,http://em.21dtv.com/songs/60105632.mkv +易帆-傻妹,http://em.21dtv.com/songs/60105938.mkv +李宇春-什么,http://em.21dtv.com/songs/60104199.mkv +赵晨妍-苏迷,http://em.21dtv.com/songs/60101398.mkv +刘大成-神马,http://em.21dtv.com/songs/60099798.mkv +郑俊英-Spotliss Mind,http://em.21dtv.com/songs/60099525.mkv +大鹏-神马,http://em.21dtv.com/songs/60099176.mkv +老茶传神-神马,http://em.21dtv.com/songs/60098699.mkv +崔子格-赛马,http://em.21dtv.com/songs/60096832.mkv +女子十二乐坊-散漫,http://em.21dtv.com/songs/60089771.mkv +韩梅春-算命(越剧《沙漠王子》选段),http://em.21dtv.com/songs/60089543.mkv +吴姵文-失眠,http://em.21dtv.com/songs/60089205.mkv +赵默-失眠,http://em.21dtv.com/songs/60088708.mkv +梁汉文-失眠(演唱会),http://em.21dtv.com/songs/60083792.mkv +フレンチキス-沈默,http://em.21dtv.com/songs/60083784.mkv +周上允-Super Mr,http://em.21dtv.com/songs/60081760.mkv +回声乐团-时髦,http://em.21dtv.com/songs/60080995.mkv +黄明志-沙漠,http://em.21dtv.com/songs/60077479.mkv +吉克隽逸+刘昊霖-sex music,http://em.21dtv.com/songs/60073855.mkv +GOTYE-save me,http://em.21dtv.com/songs/60073839.mkv +ONE DIRECTION-same mistakes,http://em.21dtv.com/songs/60073836.mkv +少司命+CRITTY-宿命,http://em.21dtv.com/songs/60069852.mkv +WISIN+YANDEL-sexy movimiento(西班牙),http://em.21dtv.com/songs/60066717.mkv +常思思-水母(演唱会),http://em.21dtv.com/songs/60064908.mkv +NO DOUBT-sunday morning,http://em.21dtv.com/songs/60063757.mkv +SECONDHAND SERENADE-something more,http://em.21dtv.com/songs/60063744.mkv +JESSICA SUTTA-show me,http://em.21dtv.com/songs/60063737.mkv +汪峰-碎梦,http://em.21dtv.com/songs/60063009.mkv +钟汶+汤钧禧-宿命,http://em.21dtv.com/songs/60051511.mkv +戴梅君-宿命,http://em.21dtv.com/songs/60051510.mkv +王建杰-宿命(无原唱),http://em.21dtv.com/songs/60051509.mkv +张学友-算命,http://em.21dtv.com/songs/60040899.mkv +越剧-算命,http://em.21dtv.com/songs/60040898.mkv +蔡秋凤-算命,http://em.21dtv.com/songs/60040897.mkv +黄韵玲-素描,http://em.21dtv.com/songs/60040853.mkv +张峰奇-寺庙,http://em.21dtv.com/songs/60040717.mkv +佚名-思慕(无原唱),http://em.21dtv.com/songs/60040482.mkv +莫文蔚-双面,http://em.21dtv.com/songs/60039853.mkv +曾宝仪-是吗,http://em.21dtv.com/songs/60039439.mkv +苍茫-使命,http://em.21dtv.com/songs/60039188.mkv +李孝利-十 minutes,http://em.21dtv.com/songs/60038892.mkv +许慧欣-失眠,http://em.21dtv.com/songs/60038805.mkv +金莎-失眠,http://em.21dtv.com/songs/60038804.mkv +CLOWN-失眠,http://em.21dtv.com/songs/60038803.mkv +苏永康-失眠(演唱会),http://em.21dtv.com/songs/60038802.mkv +高慧君-失眠(演唱会),http://em.21dtv.com/songs/60038801.mkv +BEN-失眠(演唱会),http://em.21dtv.com/songs/60038800.mkv +B.A.D-失眠(演唱会),http://em.21dtv.com/songs/60038799.mkv +吴强-生命,http://em.21dtv.com/songs/60038546.mkv +谭晶+豆豆-生命,http://em.21dtv.com/songs/60038545.mkv +肖玄-神马,http://em.21dtv.com/songs/60038459.mkv +许慧欣-什么,http://em.21dtv.com/songs/60038389.mkv +黎明-什么,http://em.21dtv.com/songs/60038387.mkv +高山峰-什么,http://em.21dtv.com/songs/60038386.mkv +王菲-色盲,http://em.21dtv.com/songs/60037409.mkv +王智君-思慕(无原唱),http://em.21dtv.com/songs/60011768.mkv +DR.HOOK+THE MEDICINE-sylvias mother,http://em.21dtv.com/songs/60005424.mkv +GARETH GATES-suspicious minds,http://em.21dtv.com/songs/60005396.mkv +S.H.E-super model,http://em.21dtv.com/songs/60005368.mkv +MAROON 5-sunday morning,http://em.21dtv.com/songs/60005349.mkv +林嘉欣-soul mate,http://em.21dtv.com/songs/60005204.mkv +佚名-soul man(无原唱),http://em.21dtv.com/songs/60005203.mkv +NEIL DIAMOND-solitary man,http://em.21dtv.com/songs/60005129.mkv +NEIL DIAMOND-september morn,http://em.21dtv.com/songs/60004895.mkv +NICKELBACK-savinme,http://em.21dtv.com/songs/60004824.mkv +柯有伦-save me,http://em.21dtv.com/songs/60004816.mkv +卓文萱+张震岳-save me(演唱会),http://em.21dtv.com/songs/60004815.mkv +佚名-sad movies,http://em.21dtv.com/songs/60004782.mkv +金智娟-sad movie,http://em.21dtv.com/songs/60004781.mkv +MADONNA+JUSTIN TIMBE-4 minutes,http://em.21dtv.com/songs/60000022.mkv +齐晨-散了,http://em.21dtv.com/songs/60136042.mkv +白举纲-失联,http://em.21dtv.com/songs/60130621.mkv +Boi!-甩了,http://em.21dtv.com/songs/60128670.mkv +韩磊-神路,http://em.21dtv.com/songs/60121127.mkv +陈绮贞-沙漏,http://em.21dtv.com/songs/60121093.mkv +辛莉恩-水里,http://em.21dtv.com/songs/60118949.mkv +莫莫-狩猎,http://em.21dtv.com/songs/60117172.mkv +陈永龙-砂砾,http://em.21dtv.com/songs/60113060.mkv +那英-丝路,http://em.21dtv.com/songs/60110574.mkv +那英-丝路,http://em.21dtv.com/songs/60109651.mkv +那英-丝路,http://em.21dtv.com/songs/60108920.mkv +李潮-思恋,http://em.21dtv.com/songs/60106945.mkv +张曼-思恋,http://em.21dtv.com/songs/60106847.mkv +萧全-声浪,http://em.21dtv.com/songs/60102681.mkv +李美-睡莲,http://em.21dtv.com/songs/60100154.mkv +刘峰华-守恋,http://em.21dtv.com/songs/60099802.mkv +朴铉斌-沙漏,http://em.21dtv.com/songs/60099292.mkv +阿兰+陈楚生-丝路,http://em.21dtv.com/songs/60096683.mkv +郑欣宜-失恋,http://em.21dtv.com/songs/60096675.mkv +群星-上路,http://em.21dtv.com/songs/60096650.mkv +曾志伟-傻佬,http://em.21dtv.com/songs/60092762.mkv +杨南-丝路,http://em.21dtv.com/songs/60089976.mkv +MIC男团-single ladies,http://em.21dtv.com/songs/60084761.mkv +朱韬-思恋,http://em.21dtv.com/songs/60083845.mkv +拜尔-深蓝,http://em.21dtv.com/songs/60083779.mkv +徐申东+陆昱霖-沙漏,http://em.21dtv.com/songs/60082023.mkv +关喆-算了,http://em.21dtv.com/songs/60077785.mkv +可晴-收留,http://em.21dtv.com/songs/60077656.mkv +栗锦-沙漏,http://em.21dtv.com/songs/60077478.mkv +阿清-沙漏,http://em.21dtv.com/songs/60077477.mkv +超新星-stupid love,http://em.21dtv.com/songs/60073951.mkv +THE LUMINEERS-stubborn love,http://em.21dtv.com/songs/60073950.mkv +GS BOYZ-stanky legg,http://em.21dtv.com/songs/60073934.mkv +AKB48-so long,http://em.21dtv.com/songs/60073901.mkv +BIRDY-skinny love,http://em.21dtv.com/songs/60073889.mkv +JESSIE J-silver lining,http://em.21dtv.com/songs/60073881.mkv +T ARA-sexy love,http://em.21dtv.com/songs/60073857.mkv +MARY LAMBERT+MACKLEMORE+RYAN LEWIS-same love,http://em.21dtv.com/songs/60073835.mkv +SIXPENCE NONE THE RICHER-safety line,http://em.21dtv.com/songs/60073831.mkv +B.A.P-secret love,http://em.21dtv.com/songs/60069138.mkv +CHRIS BROWN-sweet love,http://em.21dtv.com/songs/60067991.mkv +BIG BANG-stupid liar,http://em.21dtv.com/songs/60067987.mkv +顾峰-傻了,http://em.21dtv.com/songs/60067395.mkv +ROOMIE-super lover,http://em.21dtv.com/songs/60066726.mkv +曾擎-善良,http://em.21dtv.com/songs/60066292.mkv +MIA MARTINA-stereo love,http://em.21dtv.com/songs/60065697.mkv +林峰-试炼,http://em.21dtv.com/songs/60062645.mkv +金子乔-沙泪,http://em.21dtv.com/songs/60062531.mkv +黄国俊-算了,http://em.21dtv.com/songs/60040888.mkv +范霖玮-算了,http://em.21dtv.com/songs/60040887.mkv +ME2-算了,http://em.21dtv.com/songs/60040886.mkv +M2-算了,http://em.21dtv.com/songs/60040885.mkv +郭达-送礼,http://em.21dtv.com/songs/60040770.mkv +仙杜拉-送郎,http://em.21dtv.com/songs/60040768.mkv +仙杜拉-送郎(演唱会),http://em.21dtv.com/songs/60040767.mkv +曾慧-思郎,http://em.21dtv.com/songs/60040478.mkv +齐秦-丝路,http://em.21dtv.com/songs/60040455.mkv +潘越云-丝路,http://em.21dtv.com/songs/60040454.mkv +林冠吟-丝路,http://em.21dtv.com/songs/60040453.mkv +梁静茹-丝路,http://em.21dtv.com/songs/60040452.mkv +陈文媛-顺路,http://em.21dtv.com/songs/60040307.mkv +佚名-睡莲(无原唱),http://em.21dtv.com/songs/60040291.mkv +童安格-收留,http://em.21dtv.com/songs/60039600.mkv +蔡诗芸-诗恋,http://em.21dtv.com/songs/60038871.mkv +草蜢-失恋,http://em.21dtv.com/songs/60038731.mkv +郑少秋-失恋(演唱会),http://em.21dtv.com/songs/60038730.mkv +吕方+草蜢-失恋(演唱会),http://em.21dtv.com/songs/60038729.mkv +范晓萱-失恋(演唱会),http://em.21dtv.com/songs/60038728.mkv +草蜢-失恋(演唱会),http://em.21dtv.com/songs/60038727.mkv +容祖儿-蜃楼,http://em.21dtv.com/songs/60038522.mkv +卢巧音-深蓝,http://em.21dtv.com/songs/60038304.mkv +许志安-深蓝(演唱会),http://em.21dtv.com/songs/60038303.mkv +梁汉文-深蓝(演唱会),http://em.21dtv.com/songs/60038302.mkv +2MORO-少了,http://em.21dtv.com/songs/60038111.mkv +刘虹桦-少来,http://em.21dtv.com/songs/60038108.mkv +达明一派-上路(演唱会),http://em.21dtv.com/songs/60038046.mkv +黄雅莉-善良,http://em.21dtv.com/songs/60037755.mkv +杨千嬅-闪灵,http://em.21dtv.com/songs/60037738.mkv +雷有辉-闪灵,http://em.21dtv.com/songs/60037737.mkv +许茹芸-沙漏,http://em.21dtv.com/songs/60037458.mkv +陈奕迅-沙龙,http://em.21dtv.com/songs/60037457.mkv +何静-散了,http://em.21dtv.com/songs/60037387.mkv +ANITA BAKER-sweet love,http://em.21dtv.com/songs/60005413.mkv +ELLIE CAMPB-sweet lise,http://em.21dtv.com/songs/60005412.mkv +ELLIE CAMPBELL-sweet lies(无原唱),http://em.21dtv.com/songs/60005410.mkv +佚名-sweet leilani(无原唱),http://em.21dtv.com/songs/60005409.mkv +柯有纶-sugar lady,http://em.21dtv.com/songs/60005317.mkv +RANDY CRAWFORD+THE C-street life(演唱会),http://em.21dtv.com/songs/60005294.mkv +永邦-so long,http://em.21dtv.com/songs/60005108.mkv +THE POLICE-so lonely,http://em.21dtv.com/songs/60005107.mkv +BEYONCE-single ladies,http://em.21dtv.com/songs/60005057.mkv +佚名-simply lrresistible,http://em.21dtv.com/songs/60005042.mkv +ELTON JOHN-simple life,http://em.21dtv.com/songs/60005040.mkv +NE+YO-sexy love,http://em.21dtv.com/songs/60004913.mkv +石康钧-sexy lady,http://em.21dtv.com/songs/60004911.mkv +STEPHEN BISHOP-seperate lives(无原唱),http://em.21dtv.com/songs/60004894.mkv +佚名-separate lives,http://em.21dtv.com/songs/60004892.mkv +佚名-sentimental lady,http://em.21dtv.com/songs/60004891.mkv +佚名-semi-charmed life,http://em.21dtv.com/songs/60004886.mkv +佚名-secret love,http://em.21dtv.com/songs/60004877.mkv +LIONEL RICHIE-se la,http://em.21dtv.com/songs/60004861.mkv +邓巴-盛开,http://em.21dtv.com/songs/60132974.mkv +李大卫-伤口,http://em.21dtv.com/songs/60120612.mkv +容祖儿-煞科,http://em.21dtv.com/songs/60119442.mkv +温岚-失控,http://em.21dtv.com/songs/60116116.mkv +丁当-甩开,http://em.21dtv.com/songs/60101852.mkv +玖月奇迹-盛开,http://em.21dtv.com/songs/60096789.mkv +伍华-失控,http://em.21dtv.com/songs/60096043.mkv +李玟-盛开,http://em.21dtv.com/songs/60081056.mkv +茗嫄-盛开,http://em.21dtv.com/songs/60080634.mkv +周国贤-时空,http://em.21dtv.com/songs/60077627.mkv +曹雅雯-伤口,http://em.21dtv.com/songs/60077511.mkv +刘子毅-盛开,http://em.21dtv.com/songs/60064861.mkv +曹丽婷-闪开,http://em.21dtv.com/songs/60061558.mkv +吴佩慈-爽快,http://em.21dtv.com/songs/60039920.mkv +信乐团-甩开,http://em.21dtv.com/songs/60039824.mkv +痛仰乐队-盛开,http://em.21dtv.com/songs/60038693.mkv +苏有朋-伤口,http://em.21dtv.com/songs/60037801.mkv +黎明-伤口,http://em.21dtv.com/songs/60037800.mkv +陈瑞-伤口,http://em.21dtv.com/songs/60037799.mkv +郑秀文-煞科,http://em.21dtv.com/songs/60037570.mkv +古巨基-煞科(演唱会),http://em.21dtv.com/songs/60037569.mkv +古巨基-煞科(快节奏)(演唱会),http://em.21dtv.com/songs/60037568.mkv +陈雷-啥款,http://em.21dtv.com/songs/60037495.mkv +HARD FI-suburban knights,http://em.21dtv.com/songs/60005308.mkv +黑涩会美眉-shining kiss,http://em.21dtv.com/songs/60004990.mkv +林晓培-she knows,http://em.21dtv.com/songs/60004957.mkv +唐大聪+马四香-杀江,http://em.21dtv.com/songs/60133508.mkv +陈奕迅-四季,http://em.21dtv.com/songs/60131935.mkv +洛天依-霜降,http://em.21dtv.com/songs/60131613.mkv +陈奕迅-四季,http://em.21dtv.com/songs/60128521.mkv +叶璐-送君,http://em.21dtv.com/songs/60125269.mkv +齐航-手机,http://em.21dtv.com/songs/60120174.mkv +邓紫棋-瞬间,http://em.21dtv.com/songs/60118090.mkv +王可-水晶,http://em.21dtv.com/songs/60117028.mkv +梁博-四季,http://em.21dtv.com/songs/60116065.mkv +谢宜君+陈随意-送君,http://em.21dtv.com/songs/60114791.mkv +陈豪-时间,http://em.21dtv.com/songs/60110651.mkv +桑婷婷-思君,http://em.21dtv.com/songs/60110316.mkv +郭经纬-史记,http://em.21dtv.com/songs/60108930.mkv +唐古-司机,http://em.21dtv.com/songs/60105709.mkv +徐峰柏-瞬间,http://em.21dtv.com/songs/60100050.mkv +可歆-失焦,http://em.21dtv.com/songs/60099850.mkv +群星-四季,http://em.21dtv.com/songs/60096673.mkv +徐艺莹+苏俊熙-手记,http://em.21dtv.com/songs/60086838.mkv +闻美茜-撒娇,http://em.21dtv.com/songs/60085664.mkv +SCANDAL-瞬间センチメンタル,http://em.21dtv.com/songs/60083836.mkv +TACKE竹桑-誓剑,http://em.21dtv.com/songs/60083808.mkv +THE VIEW-same jeans,http://em.21dtv.com/songs/60082317.mkv +吉杰-时间,http://em.21dtv.com/songs/60081909.mkv +陈怡婷+陈宇风-撒娇,http://em.21dtv.com/songs/60081616.mkv +童丽-送君,http://em.21dtv.com/songs/60077775.mkv +高洪章-四句,http://em.21dtv.com/songs/60077763.mkv +张利志-瞬间,http://em.21dtv.com/songs/60077721.mkv +R.I.O.+U JEAN-summer jam,http://em.21dtv.com/songs/60073955.mkv +庞龙-四季,http://em.21dtv.com/songs/60071158.mkv +马智宇-瞬间,http://em.21dtv.com/songs/60071144.mkv +洪辰-四季,http://em.21dtv.com/songs/60069848.mkv +刘璐-死角,http://em.21dtv.com/songs/60068689.mkv +徐健淇-瞬间,http://em.21dtv.com/songs/60066329.mkv +陈柏宇-时机,http://em.21dtv.com/songs/60066316.mkv +黄思婷+翁立友-撒娇,http://em.21dtv.com/songs/60066285.mkv +王铮亮-瞬间,http://em.21dtv.com/songs/60064913.mkv +郑融-四季,http://em.21dtv.com/songs/60061611.mkv +CHER LLOYD-swagger jagger,http://em.21dtv.com/songs/60060918.mkv +周璇-送君,http://em.21dtv.com/songs/60040760.mkv +佚名-送君,http://em.21dtv.com/songs/60040759.mkv +费玉清-送君,http://em.21dtv.com/songs/60040758.mkv +陈松伶-送君,http://em.21dtv.com/songs/60040757.mkv +朱珠-四季,http://em.21dtv.com/songs/60040674.mkv +许茹芸-四季,http://em.21dtv.com/songs/60040673.mkv +辛龙-四季,http://em.21dtv.com/songs/60040672.mkv +孙一璟-四季,http://em.21dtv.com/songs/60040671.mkv +陈珊妮-四季,http://em.21dtv.com/songs/60040670.mkv +A-LIN-四季,http://em.21dtv.com/songs/60040669.mkv +李玖哲-死结,http://em.21dtv.com/songs/60040618.mkv +余文乐-司机,http://em.21dtv.com/songs/60040447.mkv +周蕙-瞬间,http://em.21dtv.com/songs/60040321.mkv +王心凌-瞬间,http://em.21dtv.com/songs/60040320.mkv +美心-瞬间,http://em.21dtv.com/songs/60040319.mkv +津亭-瞬间,http://em.21dtv.com/songs/60040318.mkv +张惠妹-瞬间(演唱会),http://em.21dtv.com/songs/60040317.mkv +张铁-水晶,http://em.21dtv.com/songs/60040198.mkv +徐怀钰+任贤齐-水晶,http://em.21dtv.com/songs/60040197.mkv +RAIN-手记,http://em.21dtv.com/songs/60039612.mkv +伍思凯-收集,http://em.21dtv.com/songs/60039597.mkv +陈依依-收集,http://em.21dtv.com/songs/60039596.mkv +佚名-世界,http://em.21dtv.com/songs/60039255.mkv +王菲菲-世界,http://em.21dtv.com/songs/60039254.mkv +何炅-世界,http://em.21dtv.com/songs/60039253.mkv +便利商店-世界,http://em.21dtv.com/songs/60039252.mkv +谭晶-世界(演唱会),http://em.21dtv.com/songs/60039251.mkv +陈奕迅-世界(演唱会),http://em.21dtv.com/songs/60039250.mkv +郑进一-世间,http://em.21dtv.com/songs/60039228.mkv +方践宁-世间,http://em.21dtv.com/songs/60039227.mkv +蔡秋凤-世间,http://em.21dtv.com/songs/60039226.mkv +方践宁-世间(演唱会),http://em.21dtv.com/songs/60039225.mkv +周慧敏-时间,http://em.21dtv.com/songs/60039120.mkv +石头剪子布-时间,http://em.21dtv.com/songs/60039119.mkv +末裔乐队-时间,http://em.21dtv.com/songs/60039118.mkv +花儿乐队-时间(演唱会),http://em.21dtv.com/songs/60039117.mkv +林志炫-时机(无原唱),http://em.21dtv.com/songs/60039115.mkv +张敬轩+麦家瑜-石径,http://em.21dtv.com/songs/60039067.mkv +郑秀文-十诫(演唱会),http://em.21dtv.com/songs/60038967.mkv +郭富城-神经,http://em.21dtv.com/songs/60038457.mkv +郭富城-神经(演唱会),http://em.21dtv.com/songs/60038456.mkv +古巨基-神迹,http://em.21dtv.com/songs/60038454.mkv +古巨基-神迹(演唱会),http://em.21dtv.com/songs/60038453.mkv +蔡依林-上街(演唱会),http://em.21dtv.com/songs/60038041.mkv +王菲-色诫,http://em.21dtv.com/songs/60037407.mkv +杨帆-撒娇,http://em.21dtv.com/songs/60037146.mkv +江若琳-撒娇,http://em.21dtv.com/songs/60037145.mkv +曾恺玹-撒娇,http://em.21dtv.com/songs/60037144.mkv +江若琳-撒娇(演唱会),http://em.21dtv.com/songs/60037143.mkv +METRO STATION-shake it,http://em.21dtv.com/songs/60073859.mkv +THE POLICE-synchronicity ii,http://em.21dtv.com/songs/60005425.mkv +佚名-stumbling in,http://em.21dtv.com/songs/60005304.mkv +ALEX+HO LAN-she is,http://em.21dtv.com/songs/60004956.mkv +雅娜-Shut Up,http://em.21dtv.com/songs/60100613.mkv +KID INK+CHRIS BROWN-SHOW ME,http://em.21dtv.com/songs/60096640.mkv +河莉秀-Shopping Girl,http://em.21dtv.com/songs/60100268.mkv +SASA-守候,http://em.21dtv.com/songs/60133275.mkv +赵英俊-守候,http://em.21dtv.com/songs/60132924.mkv +蒋雪儿-说谎,http://em.21dtv.com/songs/60131787.mkv +关喆-伤痕,http://em.21dtv.com/songs/60131185.mkv +龙梅子+徐子崴-生活,http://em.21dtv.com/songs/60128656.mkv +龙梅子-生活,http://em.21dtv.com/songs/60128654.mkv +贡尕达哇-生活,http://em.21dtv.com/songs/60127420.mkv +阿力普-双合,http://em.21dtv.com/songs/60126346.mkv +汪晨蕊-深海,http://em.21dtv.com/songs/60125857.mkv +马天宇-手花,http://em.21dtv.com/songs/60124710.mkv +谢世超-守候,http://em.21dtv.com/songs/60124484.mkv +强辩乐团-生活,http://em.21dtv.com/songs/60123967.mkv +齐晨-山花,http://em.21dtv.com/songs/60123417.mkv +郭婷筠+曹雅雯-释怀,http://em.21dtv.com/songs/60123239.mkv +谢安琪-拾回,http://em.21dtv.com/songs/60122122.mkv +罗逻圣-收获,http://em.21dtv.com/songs/60122012.mkv +蒋卓嘉-伤寒,http://em.21dtv.com/songs/60119941.mkv +李雨儿-伤河,http://em.21dtv.com/songs/60119675.mkv +常石磊-伤痕,http://em.21dtv.com/songs/60118532.mkv +大平-生活,http://em.21dtv.com/songs/60118481.mkv +红军-神话,http://em.21dtv.com/songs/60117113.mkv +高进+小沈阳+迪克牛仔+叶世荣-四海,http://em.21dtv.com/songs/60115540.mkv +杨千嬅-色惑,http://em.21dtv.com/songs/60113662.mkv +张煜枫-守护,http://em.21dtv.com/songs/60112685.mkv +张信哲-说谎,http://em.21dtv.com/songs/60111862.mkv +林宥嘉-拾荒,http://em.21dtv.com/songs/60111195.mkv +马海生-守护,http://em.21dtv.com/songs/60106464.mkv +张苡澄-数悔,http://em.21dtv.com/songs/60105870.mkv +方培亨-升华,http://em.21dtv.com/songs/60105099.mkv +刘思思-烧火,http://em.21dtv.com/songs/60104822.mkv +杨千嬅-色惑,http://em.21dtv.com/songs/60102364.mkv +阿悄-沙话,http://em.21dtv.com/songs/60096718.mkv +凯歌-守候,http://em.21dtv.com/songs/60096703.mkv +范玮琪+胡维纳-伤痕,http://em.21dtv.com/songs/60095078.mkv +孔令奇-腮红,http://em.21dtv.com/songs/60090887.mkv +大兵+奇志-双簧,http://em.21dtv.com/songs/60089759.mkv +孙悦-圣火,http://em.21dtv.com/songs/60089237.mkv +谢世超-守候,http://em.21dtv.com/songs/60085728.mkv +杨斯壬-释怀,http://em.21dtv.com/songs/60085726.mkv +蔡恒-闪婚,http://em.21dtv.com/songs/60085680.mkv +江希文-骚货,http://em.21dtv.com/songs/60085673.mkv +吴斌+才媛媛-守候,http://em.21dtv.com/songs/60083819.mkv +NICKI MINAJ-stupid hoe,http://em.21dtv.com/songs/60082343.mkv +爱戴-Standing Here,http://em.21dtv.com/songs/60080894.mkv +曾一鸣-伤痕,http://em.21dtv.com/songs/60080834.mkv +王雅洁-Say Hi,http://em.21dtv.com/songs/60080740.mkv +杨洋-身后,http://em.21dtv.com/songs/60080331.mkv +关喆-伤痕,http://em.21dtv.com/songs/60080153.mkv +苏富权-守候,http://em.21dtv.com/songs/60077664.mkv +徐峰柏-失衡,http://em.21dtv.com/songs/60077578.mkv +GYM CLASS HEROES+ADAM LEVINE-stereo hearts,http://em.21dtv.com/songs/60073944.mkv +JAY SEAN-so high,http://em.21dtv.com/songs/60073899.mkv +林宥嘉-拾荒,http://em.21dtv.com/songs/60072401.mkv +张杰-伤痕,http://em.21dtv.com/songs/60072371.mkv +陈慧琳-so hot,http://em.21dtv.com/songs/60071666.mkv +吴惟欣-伤痕,http://em.21dtv.com/songs/60071097.mkv +ALI-伤痕,http://em.21dtv.com/songs/60069791.mkv +雷佳-师魂,http://em.21dtv.com/songs/60068655.mkv +江宏恩-守护,http://em.21dtv.com/songs/60067436.mkv +高斌-守候,http://em.21dtv.com/songs/60067435.mkv +胡彦斌-伤痕,http://em.21dtv.com/songs/60066293.mkv +林欣彤-说谎(演唱会),http://em.21dtv.com/songs/60064915.mkv +袁咏琳-释怀,http://em.21dtv.com/songs/60064892.mkv +SLIM THUG+BOB-so high,http://em.21dtv.com/songs/60062159.mkv +ADAM LEVINE-stereo hearts,http://em.21dtv.com/songs/60061939.mkv +葛本军-收获,http://em.21dtv.com/songs/60061590.mkv +F.I.R-say hello(演唱会),http://em.21dtv.com/songs/60060902.mkv +陈慧娴-碎花,http://em.21dtv.com/songs/60040995.mkv +陈慧娴-碎花(演唱会),http://em.21dtv.com/songs/60040994.mkv +童唱-四海,http://em.21dtv.com/songs/60040664.mkv +张信哲-说谎,http://em.21dtv.com/songs/60040383.mkv +温兆伦-说谎,http://em.21dtv.com/songs/60040382.mkv +林宥嘉-说谎,http://em.21dtv.com/songs/60040381.mkv +丁小芹-说谎,http://em.21dtv.com/songs/60040380.mkv +刘若英-说话,http://em.21dtv.com/songs/60040378.mkv +童唱-说hello,http://em.21dtv.com/songs/60040332.mkv +董文华-水花,http://em.21dtv.com/songs/60040195.mkv +田震-守候,http://em.21dtv.com/songs/60039670.mkv +庞龙-守候,http://em.21dtv.com/songs/60039669.mkv +皓天-守候,http://em.21dtv.com/songs/60039668.mkv +阿斯根-守候,http://em.21dtv.com/songs/60039667.mkv +5566-守候,http://em.21dtv.com/songs/60039666.mkv +黄伟麟-守候(演唱会),http://em.21dtv.com/songs/60039665.mkv +刘若英-收获,http://em.21dtv.com/songs/60039595.mkv +何耀珊-收获,http://em.21dtv.com/songs/60039594.mkv +宋祖英-收获(演唱会),http://em.21dtv.com/songs/60039593.mkv +胡力-收回,http://em.21dtv.com/songs/60039589.mkv +卢巧音-事后,http://em.21dtv.com/songs/60039363.mkv +刘美君-事后(演唱会),http://em.21dtv.com/songs/60039362.mkv +陈扬杰-似火,http://em.21dtv.com/songs/60039342.mkv +SOLER-失魂,http://em.21dtv.com/songs/60038718.mkv +刘浩龙-失魂(演唱会),http://em.21dtv.com/songs/60038717.mkv +蔡一智+蔡一杰-失魂(演唱会),http://em.21dtv.com/songs/60038716.mkv +乩童秩序-失魂(演唱会)(无原唱),http://em.21dtv.com/songs/60038715.mkv +乩童秩序-失魂(无原唱),http://em.21dtv.com/songs/60038714.mkv +季欣霈-生活,http://em.21dtv.com/songs/60038533.mkv +五月天-生活(演唱会),http://em.21dtv.com/songs/60038532.mkv +许茹芸-神话,http://em.21dtv.com/songs/60038446.mkv +韩红-神话,http://em.21dtv.com/songs/60038445.mkv +5566-神话,http://em.21dtv.com/songs/60038444.mkv +郑秀文-神化,http://em.21dtv.com/songs/60038443.mkv +佚名-深河,http://em.21dtv.com/songs/60038292.mkv +张学友-深海,http://em.21dtv.com/songs/60038289.mkv +伊能静-深海,http://em.21dtv.com/songs/60038288.mkv +张学友-深海(演唱会),http://em.21dtv.com/songs/60038287.mkv +伍佰-烧火,http://em.21dtv.com/songs/60038083.mkv +孔令奇-上火,http://em.21dtv.com/songs/60038040.mkv +易鸿-伤痕,http://em.21dtv.com/songs/60037794.mkv +龙千玉-伤痕,http://em.21dtv.com/songs/60037793.mkv +林忆莲-伤痕,http://em.21dtv.com/songs/60037792.mkv +黄凯芹-伤痕,http://em.21dtv.com/songs/60037791.mkv +关心妍-伤痕,http://em.21dtv.com/songs/60037790.mkv +蔡济文-伤痕,http://em.21dtv.com/songs/60037789.mkv +陈洁丽-伤痕(演唱会),http://em.21dtv.com/songs/60037787.mkv +李克勤-伤寒(演唱会),http://em.21dtv.com/songs/60037784.mkv +李贵府-伤害,http://em.21dtv.com/songs/60037781.mkv +韩磊-山河,http://em.21dtv.com/songs/60037647.mkv +佚名-傻话,http://em.21dtv.com/songs/60037527.mkv +石开-傻话,http://em.21dtv.com/songs/60037526.mkv +蔡琴-傻话,http://em.21dtv.com/songs/60037525.mkv +宫崎羽衣-sweet heaven,http://em.21dtv.com/songs/60005407.mkv +佚名-sweet heart,http://em.21dtv.com/songs/60005406.mkv +柯有纶+李佳蓉-sweet heart,http://em.21dtv.com/songs/60005405.mkv +CLIFF RICHARD-summer holiday,http://em.21dtv.com/songs/60005330.mkv +WONDER GIRLS-so hot,http://em.21dtv.com/songs/60005105.mkv +JIGSAW-sky high,http://em.21dtv.com/songs/60005065.mkv +MICHAEL FRANTI-say hey,http://em.21dtv.com/songs/60004833.mkv +佚名-satomi hakken-den,http://em.21dtv.com/songs/60004811.mkv +蒋敦豪-傻瓜,http://em.21dtv.com/songs/60128371.mkv +颜伟-时光,http://em.21dtv.com/songs/60135989.mkv +杨子-拾光,http://em.21dtv.com/songs/60135395.mkv +孙伟雄-思归,http://em.21dtv.com/songs/60133556.mkv +老光-时光,http://em.21dtv.com/songs/60131736.mkv +原子霏-傻瓜,http://em.21dtv.com/songs/60130152.mkv +陆昱霖-时光,http://em.21dtv.com/songs/60129719.mkv +东东-时光,http://em.21dtv.com/songs/60127699.mkv +小爱与花儿乐队-曙光,http://em.21dtv.com/songs/60123852.mkv +金润吉-三更,http://em.21dtv.com/songs/60122194.mkv +龚淑均-思归,http://em.21dtv.com/songs/60118239.mkv +陈茂丰-深更,http://em.21dtv.com/songs/60117352.mkv +阿悄-时光,http://em.21dtv.com/songs/60115477.mkv +欧宇轩-失孤,http://em.21dtv.com/songs/60115254.mkv +金润吉-三更,http://em.21dtv.com/songs/60114147.mkv +邓雯心-时光,http://em.21dtv.com/songs/60111428.mkv +太子锋-帅哥,http://em.21dtv.com/songs/60110967.mkv +Stellar-傻瓜,http://em.21dtv.com/songs/60109892.mkv +郑耿一-时光,http://em.21dtv.com/songs/60108058.mkv +孙晓雨-时光,http://em.21dtv.com/songs/60106771.mkv +雷佳-山姑,http://em.21dtv.com/songs/60106439.mkv +曾一鸣-笙歌,http://em.21dtv.com/songs/60103334.mkv +郑容和+Juniel-傻瓜,http://em.21dtv.com/songs/60102796.mkv +曾沛慈-傻瓜,http://em.21dtv.com/songs/60101374.mkv +Steelheart-She's Gone,http://em.21dtv.com/songs/60099041.mkv +许鹤缤-时光,http://em.21dtv.com/songs/60096714.mkv +刘若英-收割,http://em.21dtv.com/songs/60090729.mkv +李翊君-曙光,http://em.21dtv.com/songs/60086841.mkv +金钟铉-so goodbye,http://em.21dtv.com/songs/60086364.mkv +赵晗-shes gone,http://em.21dtv.com/songs/60084760.mkv +慕容晓晓-伤歌,http://em.21dtv.com/songs/60083758.mkv +KIMBERLEY-So Good,http://em.21dtv.com/songs/60079879.mkv +阿杜-傻瓜,http://em.21dtv.com/songs/60079861.mkv +邓芷茵-曙光,http://em.21dtv.com/songs/60077676.mkv +张德兰-山歌,http://em.21dtv.com/songs/60077493.mkv +李代沫-傻瓜(演唱会),http://em.21dtv.com/songs/60077485.mkv +SOULJA BOY-soulja girl,http://em.21dtv.com/songs/60073920.mkv +DIANA KING-shy guy,http://em.21dtv.com/songs/60073876.mkv +李宇春-say goodbye,http://em.21dtv.com/songs/60073843.mkv +陆媛-时光,http://em.21dtv.com/songs/60071120.mkv +ROBYNN+KENDY-say goodbye,http://em.21dtv.com/songs/60070393.mkv +风萧萧-逝光,http://em.21dtv.com/songs/60069829.mkv +郭静-时光,http://em.21dtv.com/songs/60069818.mkv +张德兰-山歌(演唱会),http://em.21dtv.com/songs/60068641.mkv +B.O.B-so good,http://em.21dtv.com/songs/60065691.mkv +JILL SCOTT+PAUL WALL-so gone,http://em.21dtv.com/songs/60065690.mkv +梁佑嘉-smart girl,http://em.21dtv.com/songs/60065689.mkv +黄征-时光,http://em.21dtv.com/songs/60064877.mkv +黄鸿升-涩谷,http://em.21dtv.com/songs/60064824.mkv +龙舞组合-曙光,http://em.21dtv.com/songs/60062718.mkv +钟舒漫+洪卓立-傻瓜,http://em.21dtv.com/songs/60061554.mkv +游鸿明-曙光,http://em.21dtv.com/songs/60039785.mkv +石康军-曙光,http://em.21dtv.com/songs/60039784.mkv +彭羚-曙光,http://em.21dtv.com/songs/60039783.mkv +金智娟-曙光,http://em.21dtv.com/songs/60039782.mkv +太极乐队-曙光(演唱会),http://em.21dtv.com/songs/60039781.mkv +雷有辉+邓建明-曙光(演唱会),http://em.21dtv.com/songs/60039780.mkv +郑融-受够,http://em.21dtv.com/songs/60039715.mkv +樱桃帮-受够,http://em.21dtv.com/songs/60039714.mkv +许巍-时光(演唱会),http://em.21dtv.com/songs/60039096.mkv +郭富城-时光(演唱会),http://em.21dtv.com/songs/60039095.mkv +何易峰-生根,http://em.21dtv.com/songs/60038528.mkv +林玉英+夏国星-山谷(无原唱),http://em.21dtv.com/songs/60037642.mkv +韦唯-山歌,http://em.21dtv.com/songs/60037621.mkv +顾媚-山歌,http://em.21dtv.com/songs/60037620.mkv +侧田+吴雨霏-山歌,http://em.21dtv.com/songs/60037619.mkv +张伟文-山歌(演唱会),http://em.21dtv.com/songs/60037618.mkv +吴雨霏+侧田-山歌(演唱会),http://em.21dtv.com/songs/60037617.mkv +吴克群-傻瓜,http://em.21dtv.com/songs/60037511.mkv +温岚-傻瓜,http://em.21dtv.com/songs/60037510.mkv +苏慧伦-傻瓜,http://em.21dtv.com/songs/60037509.mkv +韩东-傻瓜,http://em.21dtv.com/songs/60037508.mkv +陈奕-傻瓜,http://em.21dtv.com/songs/60037507.mkv +陈星-傻瓜,http://em.21dtv.com/songs/60037506.mkv +东方神起-傻瓜(演唱会),http://em.21dtv.com/songs/60037505.mkv +贯家郡-三国,http://em.21dtv.com/songs/60037225.mkv +SUPER JUNIOR-M-super girl,http://em.21dtv.com/songs/60005367.mkv +小斯韵-sunny girl,http://em.21dtv.com/songs/60005353.mkv +佚名-speedy gonzales,http://em.21dtv.com/songs/60005217.mkv +佚名-some girls,http://em.21dtv.com/songs/60005132.mkv +张惠妹-so good,http://em.21dtv.com/songs/60005104.mkv +RACHEL STEVENS-so good,http://em.21dtv.com/songs/60005103.mkv +DESTINY'S CHILD-so good,http://em.21dtv.com/songs/60005102.mkv +佚名-single girl,http://em.21dtv.com/songs/60005056.mkv +林志炫-shes gone(演唱会),http://em.21dtv.com/songs/60004976.mkv +尬舞发烧星-sexy girl,http://em.21dtv.com/songs/60004910.mkv +飞轮海-sexy girl,http://em.21dtv.com/songs/60004909.mkv +谭耀文-say goodbye,http://em.21dtv.com/songs/60004832.mkv +请叫我斗牛士-是否,http://em.21dtv.com/songs/60128402.mkv +崔子格-随风,http://em.21dtv.com/songs/60118529.mkv +周笔畅-是否(HD),http://em.21dtv.com/songs/10012747.mkv +张靓颖-是否,http://em.21dtv.com/songs/60108512.mkv +祁隆-是否,http://em.21dtv.com/songs/60105279.mkv +苏阳乐队-三峰,http://em.21dtv.com/songs/60104386.mkv +胡海建-是否,http://em.21dtv.com/songs/60098707.mkv +森森+斑斑-神凤,http://em.21dtv.com/songs/60092946.mkv +馨梓-是否,http://em.21dtv.com/songs/60090317.mkv +廖健-素芬,http://em.21dtv.com/songs/60087786.mkv +赵旭-水分,http://em.21dtv.com/songs/60086850.mkv +邓紫棋-是否,http://em.21dtv.com/songs/60086832.mkv +檀烧-思凡,http://em.21dtv.com/songs/60083844.mkv +AKB48-show fight!,http://em.21dtv.com/songs/60070396.mkv +林宥嘉-思凡,http://em.21dtv.com/songs/60068681.mkv +胡鸿钧-双飞,http://em.21dtv.com/songs/60068672.mkv +黄美珍-树风,http://em.21dtv.com/songs/60067442.mkv +九天-释放(演唱会),http://em.21dtv.com/songs/60064891.mkv +SEAN PAUL-so fine,http://em.21dtv.com/songs/60063742.mkv +METRO STATION-seventeen forever,http://em.21dtv.com/songs/60063730.mkv +9MUSES-single figaro,http://em.21dtv.com/songs/60061936.mkv +TAYLOR SWIFT-sparks fly,http://em.21dtv.com/songs/60060911.mkv +周柏豪-smiley face,http://em.21dtv.com/songs/60060908.mkv +孙楠-随风,http://em.21dtv.com/songs/60040921.mkv +佚名-思夫,http://em.21dtv.com/songs/60040474.mkv +吴奇隆-双飞,http://em.21dtv.com/songs/60039843.mkv +黄晓明+叮当-双飞,http://em.21dtv.com/songs/60039842.mkv +何润东-双飞,http://em.21dtv.com/songs/60039841.mkv +龙千玉-束缚,http://em.21dtv.com/songs/60039788.mkv +杜德伟-束缚,http://em.21dtv.com/songs/60039787.mkv +张智霖-释放,http://em.21dtv.com/songs/60039563.mkv +张卫健-释放,http://em.21dtv.com/songs/60039562.mkv +严淑明-释放,http://em.21dtv.com/songs/60039561.mkv +陈慧琳-释放,http://em.21dtv.com/songs/60039560.mkv +张敬轩-释放(演唱会),http://em.21dtv.com/songs/60039559.mkv +末裔乐队-释放(演唱会),http://em.21dtv.com/songs/60039558.mkv +赵薇-是否,http://em.21dtv.com/songs/60039416.mkv +吴国敬-是否,http://em.21dtv.com/songs/60039415.mkv +孙嫣然-是否,http://em.21dtv.com/songs/60039414.mkv +苏芮-是否,http://em.21dtv.com/songs/60039413.mkv +邓丽君-是否,http://em.21dtv.com/songs/60039412.mkv +叶倩文-是否(演唱会),http://em.21dtv.com/songs/60039411.mkv +苏芮-是否(演唱会),http://em.21dtv.com/songs/60039410.mkv +罗大佑-是否(演唱会),http://em.21dtv.com/songs/60039409.mkv +轮回乐队-是否(演唱会),http://em.21dtv.com/songs/60039408.mkv +何静-是非,http://em.21dtv.com/songs/60039405.mkv +佚名-super freak,http://em.21dtv.com/songs/60005366.mkv +佚名-stay forever,http://em.21dtv.com/songs/60005247.mkv +达达乐队-song f(演唱会),http://em.21dtv.com/songs/60005185.mkv +李圣杰-so fun,http://em.21dtv.com/songs/60005101.mkv +M2M-smiling face,http://em.21dtv.com/songs/60005083.mkv +平井坚-sing forever,http://em.21dtv.com/songs/60005048.mkv +2R-shining friends,http://em.21dtv.com/songs/60004989.mkv +保罗西蒙-scarborough fair,http://em.21dtv.com/songs/60004854.mkv +佚名-scarborough fair(演唱会),http://em.21dtv.com/songs/60004853.mkv +陈百强-scarborough fair(演唱会),http://em.21dtv.com/songs/60004852.mkv +GOGO+MEME-say forever,http://em.21dtv.com/songs/60004830.mkv +佚名-santa fe,http://em.21dtv.com/songs/60004807.mkv +佚名-san francisco,http://em.21dtv.com/songs/60004800.mkv +NO3B-3seconds(演唱会),http://em.21dtv.com/songs/60082057.mkv +RUBBER BAND-slow & easy,http://em.21dtv.com/songs/60069140.mkv +朴振英+孙佳仁-someone else,http://em.21dtv.com/songs/60067983.mkv +KATRINA-so eden,http://em.21dtv.com/songs/60067981.mkv +4EVER-4 ever,http://em.21dtv.com/songs/60067846.mkv +SEVEN-somebody else,http://em.21dtv.com/songs/60065692.mkv +佚名-strong enough(无原唱),http://em.21dtv.com/songs/60005297.mkv +ENGELBERT HUNPERDINC-spanish eyes,http://em.21dtv.com/songs/60005212.mkv +CHRISTINA AGUILERA-so emotional,http://em.21dtv.com/songs/60005098.mkv +佚名-sexy eyes,http://em.21dtv.com/songs/60004908.mkv +DONNY OSMOND-sacred emotion,http://em.21dtv.com/songs/60004779.mkv +YOUNG PEACH-swag到爆,http://em.21dtv.com/songs/60084766.mkv +陈岩-舍得,http://em.21dtv.com/songs/60128523.mkv +关庆小海-树洞,http://em.21dtv.com/songs/60127746.mkv +王麟-傻滴,http://em.21dtv.com/songs/60125964.mkv +王俊凯-树读,http://em.21dtv.com/songs/60125899.mkv +方力申-舍得,http://em.21dtv.com/songs/60125614.mkv +王麟-傻的,http://em.21dtv.com/songs/60124293.mkv +吴奇隆+许志安-宿敌,http://em.21dtv.com/songs/60119346.mkv +熊七梅-隧道,http://em.21dtv.com/songs/60110368.mkv +唐美华-隧道,http://em.21dtv.com/songs/60110099.mkv +夏天Alex-傻等,http://em.21dtv.com/songs/60109248.mkv +连天-死党,http://em.21dtv.com/songs/60102770.mkv +丁之文-顺德,http://em.21dtv.com/songs/60098062.mkv +朱哲琴-山顶,http://em.21dtv.com/songs/60096654.mkv +BOY'Z-双打,http://em.21dtv.com/songs/60092151.mkv +林凡-隧道,http://em.21dtv.com/songs/60091437.mkv +邵大伦-手段,http://em.21dtv.com/songs/60083815.mkv +法兰黛乐团-闪电,http://em.21dtv.com/songs/60081875.mkv +周柏豪-双对,http://em.21dtv.com/songs/60080861.mkv +林宇中-舍得,http://em.21dtv.com/songs/60080223.mkv +2AM-谁にも渡せないよ,http://em.21dtv.com/songs/60077693.mkv +苏姗-sir duke(演唱会),http://em.21dtv.com/songs/60073887.mkv +李东骋-隧道(演唱会),http://em.21dtv.com/songs/60072434.mkv +NO DOUBT-settle down,http://em.21dtv.com/songs/60071659.mkv +HEY SAY JUMP-super delicate,http://em.21dtv.com/songs/60067989.mkv +JOHN MAYER-shadow days,http://em.21dtv.com/songs/60067977.mkv +许嵩-宿敌,http://em.21dtv.com/songs/60063220.mkv +BOBBY VALENTINO-slow down,http://em.21dtv.com/songs/60061964.mkv +陈建颖-死党,http://em.21dtv.com/songs/60040613.mkv +佚名-谁懂,http://em.21dtv.com/songs/60039969.mkv +伍思凯-谁懂(无原唱),http://em.21dtv.com/songs/60039968.mkv +周杰伦-双刀(无原唱),http://em.21dtv.com/songs/60039840.mkv +罗大佑-首都,http://em.21dtv.com/songs/60039706.mkv +叶倩文-时代,http://em.21dtv.com/songs/60039088.mkv +古巨基-时代,http://em.21dtv.com/songs/60039087.mkv +别丹-圣地,http://em.21dtv.com/songs/60038674.mkv +GARY麟-舍掉(无原唱),http://em.21dtv.com/songs/60038234.mkv +郑秀文-舍得,http://em.21dtv.com/songs/60038233.mkv +姜鹏-舍得,http://em.21dtv.com/songs/60038232.mkv +四分卫-闪电,http://em.21dtv.com/songs/60037717.mkv +M3-闪电(无原唱),http://em.21dtv.com/songs/60037716.mkv +施文斌-山顶,http://em.21dtv.com/songs/60037606.mkv +AIR SUPPLY-sweet dreams(演唱会),http://em.21dtv.com/songs/60005404.mkv +李玟-sunny day,http://em.21dtv.com/songs/60005352.mkv +东方神起-summer dream,http://em.21dtv.com/songs/60005329.mkv +猴子飞行员-summer day,http://em.21dtv.com/songs/60005328.mkv +李贞贤-summer dance(演唱会),http://em.21dtv.com/songs/60005327.mkv +佚名-slow dancing,http://em.21dtv.com/songs/60005075.mkv +便利商店-slient day,http://em.21dtv.com/songs/60005073.mkv +便利商店-silent day,http://em.21dtv.com/songs/60005032.mkv +佚名-shattered dreams,http://em.21dtv.com/songs/60004951.mkv +CLARK DATCHLER-shattered dreams,http://em.21dtv.com/songs/60004950.mkv +佚名-shadow dancing,http://em.21dtv.com/songs/60004922.mkv +CRAIG DAVID-seven days,http://em.21dtv.com/songs/60004903.mkv +佚名-seven daffodils,http://em.21dtv.com/songs/60004902.mkv +黄大炜+李泉-说错,http://em.21dtv.com/songs/60134497.mkv +韦礼安-似曾,http://em.21dtv.com/songs/60126431.mkv +胡琳-思城,http://em.21dtv.com/songs/60124381.mkv +马常宝-散场,http://em.21dtv.com/songs/60114265.mkv +以格-时差,http://em.21dtv.com/songs/60113242.mkv +杨叶卿-散场,http://em.21dtv.com/songs/60099334.mkv +李魏西-双城,http://em.21dtv.com/songs/60096666.mkv +SARA-伤城,http://em.21dtv.com/songs/60081287.mkv +吴若希-失宠,http://em.21dtv.com/songs/60080769.mkv +梁佑嘉-死撑,http://em.21dtv.com/songs/60077754.mkv +AKB48-思い出のほとんど(演唱会),http://em.21dtv.com/songs/60077739.mkv +古小伟-色彩,http://em.21dtv.com/songs/60077472.mkv +CARLY RAE JEPSEN+JOSH RAMSAY-sour candy,http://em.21dtv.com/songs/60073921.mkv +BTOB-second confession,http://em.21dtv.com/songs/60073851.mkv +SS501-4 chance,http://em.21dtv.com/songs/60072853.mkv +维恩-时差,http://em.21dtv.com/songs/60068657.mkv +CLOSER-上车,http://em.21dtv.com/songs/60067410.mkv +B.O.B+LIL WAYNE-srange clouds,http://em.21dtv.com/songs/60065694.mkv +梁心颐-4chords,http://em.21dtv.com/songs/60062624.mkv +陈羽凡-时差,http://em.21dtv.com/songs/60062294.mkv +杨梦蝶-塞车(无原唱),http://em.21dtv.com/songs/60050053.mkv +谢楠-说穿,http://em.21dtv.com/songs/60040360.mkv +林姗-双船,http://em.21dtv.com/songs/60039839.mkv +陈司翰+刘红婵-双城,http://em.21dtv.com/songs/60039835.mkv +BOBO-双城,http://em.21dtv.com/songs/60039834.mkv +周蕙-收藏,http://em.21dtv.com/songs/60039586.mkv +萧敬腾-收藏,http://em.21dtv.com/songs/60039585.mkv +许谯龙-屎车,http://em.21dtv.com/songs/60039201.mkv +张玉华-时差,http://em.21dtv.com/songs/60039086.mkv +张一筑-时差,http://em.21dtv.com/songs/60039085.mkv +许志安-时差,http://em.21dtv.com/songs/60039084.mkv +王杰-时差,http://em.21dtv.com/songs/60039083.mkv +李圣杰+杨韵禾-时差,http://em.21dtv.com/songs/60039082.mkv +易齐-时差(无原唱),http://em.21dtv.com/songs/60039081.mkv +言承旭-失宠,http://em.21dtv.com/songs/60038711.mkv +官恩娜-失常,http://em.21dtv.com/songs/60038710.mkv +韩红-深处(演唱会),http://em.21dtv.com/songs/60038284.mkv +许志安-上次(演唱会),http://em.21dtv.com/songs/60038005.mkv +张远-伤城,http://em.21dtv.com/songs/60037765.mkv +信乐团-伤城,http://em.21dtv.com/songs/60037764.mkv +黄国俊-删除,http://em.21dtv.com/songs/60037701.mkv +谢霆锋-塞车,http://em.21dtv.com/songs/60037159.mkv +李春波-塞车,http://em.21dtv.com/songs/60037158.mkv +谢霆锋-塞车(演唱会),http://em.21dtv.com/songs/60037157.mkv +佚名-sweet caroline,http://em.21dtv.com/songs/60005402.mkv +NEIL DIAMOND-sweet caroline,http://em.21dtv.com/songs/60005401.mkv +佚名-surf city,http://em.21dtv.com/songs/60005387.mkv +佚名-stupid cupid,http://em.21dtv.com/songs/60005306.mkv +邓丽君-stupid cupid,http://em.21dtv.com/songs/60005305.mkv +李玟-so crazy,http://em.21dtv.com/songs/60005097.mkv +佚名-smooth criminal,http://em.21dtv.com/songs/60005089.mkv +MICHAEL LEARNS TO ROCK-sleeping child,http://em.21dtv.com/songs/60005070.mkv +佚名-sixteen candles,http://em.21dtv.com/songs/60005062.mkv +佚名-singapore cowboy,http://em.21dtv.com/songs/60005051.mkv +小肥-sin city(演唱会),http://em.21dtv.com/songs/60005044.mkv +佚名-self control,http://em.21dtv.com/songs/60004883.mkv +SHINEDOWN-second chance,http://em.21dtv.com/songs/60004875.mkv +佚名-seasons change,http://em.21dtv.com/songs/60004870.mkv +古巨基-santa claus,http://em.21dtv.com/songs/60004806.mkv +古巨基-santa claus(演唱会),http://em.21dtv.com/songs/60004805.mkv +苏立生-私奔,http://em.21dtv.com/songs/60128347.mkv +马晓晨-士兵,http://em.21dtv.com/songs/60134463.mkv +孙楠+爱宝-送别,http://em.21dtv.com/songs/60123823.mkv +熊汝霖-随变,http://em.21dtv.com/songs/60122977.mkv +毕书尽-38,http://em.21dtv.com/songs/60122933.mkv +顾莉雅-送别,http://em.21dtv.com/songs/60111524.mkv +杨沛宜-送别,http://em.21dtv.com/songs/60105178.mkv +陈直-私奔,http://em.21dtv.com/songs/60102902.mkv +金海心-送别[消伴],http://em.21dtv.com/songs/60101540.mkv +靳海涛-伤疤,http://em.21dtv.com/songs/60099600.mkv +韩磊-送别,http://em.21dtv.com/songs/60098928.mkv +李翊君-松绑,http://em.21dtv.com/songs/60091361.mkv +TWINS-森吧,http://em.21dtv.com/songs/60087227.mkv +江一燕-送别,http://em.21dtv.com/songs/60085755.mkv +刘明辉-私奔,http://em.21dtv.com/songs/60085746.mkv +马旭东+藤兮-善变,http://em.21dtv.com/songs/60083755.mkv +PARKER IGHILE-so beautiful,http://em.21dtv.com/songs/60082332.mkv +刘美麟-So Beautiful,http://em.21dtv.com/songs/60081663.mkv +朴树-送别,http://em.21dtv.com/songs/60077772.mkv +黄凯芹-山伯,http://em.21dtv.com/songs/60077491.mkv +NICKI MINAJ-super bass,http://em.21dtv.com/songs/60073961.mkv +邬祯琳-sorry baby,http://em.21dtv.com/songs/60073916.mkv +MAY'N-scarlet ballet,http://em.21dtv.com/songs/60073847.mkv +侧田-second best,http://em.21dtv.com/songs/60071658.mkv +袁攀+JELLY丹-善变,http://em.21dtv.com/songs/60071096.mkv +梁博-私奔,http://em.21dtv.com/songs/60070087.mkv +郑钧-私奔,http://em.21dtv.com/songs/60068680.mkv +陈思思-送别(演唱会),http://em.21dtv.com/songs/60064927.mkv +张芸瑞-伤别,http://em.21dtv.com/songs/60064832.mkv +BOY'Z-sexy body,http://em.21dtv.com/songs/60063731.mkv +呼斯楞-塞北,http://em.21dtv.com/songs/60062460.mkv +EMINEM-space bound,http://em.21dtv.com/songs/60060910.mkv +董冬-随便,http://em.21dtv.com/songs/60040914.mkv +佚名-随便(无原唱),http://em.21dtv.com/songs/60040913.mkv +佚名-送别,http://em.21dtv.com/songs/60040735.mkv +阎维文-送别,http://em.21dtv.com/songs/60040734.mkv +童唱-送别,http://em.21dtv.com/songs/60040733.mkv +蒋大为-送别,http://em.21dtv.com/songs/60040732.mkv +芳艳芬+任剑辉-送别,http://em.21dtv.com/songs/60040731.mkv +刀郎-送别,http://em.21dtv.com/songs/60040730.mkv +蔡琴-送别,http://em.21dtv.com/songs/60040729.mkv +姚婷-私奔,http://em.21dtv.com/songs/60040464.mkv +韩寒+王思思-私奔,http://em.21dtv.com/songs/60040463.mkv +柯以敏-睡吧,http://em.21dtv.com/songs/60040283.mkv +张雷-水杯,http://em.21dtv.com/songs/60040173.mkv +王识贤-手伴,http://em.21dtv.com/songs/60039605.mkv +无印良品-身边,http://em.21dtv.com/songs/60038247.mkv +柯以敏-身边,http://em.21dtv.com/songs/60038246.mkv +TWINS-森巴,http://em.21dtv.com/songs/60037415.mkv +星期天男孩-sundy boy,http://em.21dtv.com/songs/60005351.mkv +E.COCHRAN+J.CAPEHART-summertime blues(无原唱),http://em.21dtv.com/songs/60005346.mkv +SEALS+CROFTS-summer breeze,http://em.21dtv.com/songs/60005326.mkv +BIGBANG-strong baby,http://em.21dtv.com/songs/60005296.mkv +THE LAST GOODNIGHT-stay beautiful,http://em.21dtv.com/songs/60005246.mkv +ROBBIE WILLIAMS-something beautiful,http://em.21dtv.com/songs/60005156.mkv +IYAZ-so big,http://em.21dtv.com/songs/60005096.mkv +B.GIBBONS D.HILL-F.BEARD-sleeping bag(无原唱),http://em.21dtv.com/songs/60005069.mkv +佚名-silver bells,http://em.21dtv.com/songs/60005039.mkv +SECRET-shy boy,http://em.21dtv.com/songs/60005021.mkv +INFINITE-shes back,http://em.21dtv.com/songs/60004975.mkv +RICKY MARTIN-she bangs,http://em.21dtv.com/songs/60004953.mkv +夹子乐团-shake beer(无原唱),http://em.21dtv.com/songs/60004926.mkv +JUSTIN TIMBERLAKE-sexy back,http://em.21dtv.com/songs/60004907.mkv +杜德伟-sexy baby,http://em.21dtv.com/songs/60004906.mkv +佚名-seindah biasa,http://em.21dtv.com/songs/60004882.mkv +NO LIMIT无限甜心-Say No,http://em.21dtv.com/songs/60099688.mkv +曹轩宾-Say No,http://em.21dtv.com/songs/60096330.mkv +ROSIE THOMAS-SAY HELLO,http://em.21dtv.com/songs/60096639.mkv +ROBYNN+KENDY-SAIL AWAY,http://em.21dtv.com/songs/60096638.mkv +[Group] +groupName=十六万歌曲MV等 - 13 +龙千玉-上岸,http://em.21dtv.com/songs/60133143.mkv +苏振华-释爱,http://em.21dtv.com/songs/60128344.mkv +贝贝-逝爱,http://em.21dtv.com/songs/60124505.mkv +颜小健-私爱,http://em.21dtv.com/songs/60120129.mkv +郝莉莎+杨励泽-释爱,http://em.21dtv.com/songs/60112312.mkv +周赛刚-死爱,http://em.21dtv.com/songs/60099888.mkv +陶晶莹+方大同-是爱,http://em.21dtv.com/songs/60093792.mkv +豆子民-输爱,http://em.21dtv.com/songs/60085731.mkv +官羽-说爱,http://em.21dtv.com/songs/60083837.mkv +王识贤-上岸,http://em.21dtv.com/songs/60077530.mkv +谭欣懿-殇爱,http://em.21dtv.com/songs/60077528.mkv +甜美真-闪爱,http://em.21dtv.com/songs/60077503.mkv +TREY SONGZ-simply amazing,http://em.21dtv.com/songs/60073882.mkv +小崔建-碎爱,http://em.21dtv.com/songs/60072431.mkv +陈晓琪-secret angel,http://em.21dtv.com/songs/60070394.mkv +潘柯夫-说爱,http://em.21dtv.com/songs/60069843.mkv +潘玲-伤爱,http://em.21dtv.com/songs/60067400.mkv +英伦希-说爱,http://em.21dtv.com/songs/60063281.mkv +刘德华-slip away,http://em.21dtv.com/songs/60060907.mkv +谭咏麟+MR.-算爱,http://em.21dtv.com/songs/60040882.mkv +陈倩倩-说爱,http://em.21dtv.com/songs/60040334.mkv +GARY麟-说爱(无原唱),http://em.21dtv.com/songs/60040333.mkv +辛晓琪-谁啊,http://em.21dtv.com/songs/60039931.mkv +王菀之-是爱,http://em.21dtv.com/songs/60039380.mkv +蔡琴-示爱,http://em.21dtv.com/songs/60039211.mkv +LADY-示爱(无原唱),http://em.21dtv.com/songs/60039210.mkv +卫兰-深爱,http://em.21dtv.com/songs/60038273.mkv +何杰-赊爱,http://em.21dtv.com/songs/60038187.mkv +苏永康-殇爱,http://em.21dtv.com/songs/60037996.mkv +陈洁仪-伤爱,http://em.21dtv.com/songs/60037761.mkv +郭应龙-super angel,http://em.21dtv.com/songs/60005365.mkv +郭富城-summer aloha(演唱会),http://em.21dtv.com/songs/60005325.mkv +BEE GEES-stayingalive(演唱会),http://em.21dtv.com/songs/60005259.mkv +女孩与机器人-spinning around,http://em.21dtv.com/songs/60005221.mkv +DAVID GRAY-sail away,http://em.21dtv.com/songs/60004791.mkv +星野源-时よ,http://em.21dtv.com/songs/60135318.mkv +单小源-啰嗦,http://em.21dtv.com/songs/60122547.mkv +SUPPER MOMENT-啱数,http://em.21dtv.com/songs/60122426.mkv +堂本刚-瞬き,http://em.21dtv.com/songs/60108406.mkv +BERRYZ工房-サヨナラ ウソつきの私,http://em.21dtv.com/songs/60086387.mkv +陈明-日子,http://em.21dtv.com/songs/60134402.mkv +麦浚龙-人渣,http://em.21dtv.com/songs/60133121.mkv +信-人质,http://em.21dtv.com/songs/60118358.mkv +杨静-日子,http://em.21dtv.com/songs/60117836.mkv +SKE48-いつのまにか 弱い者いじめ,http://em.21dtv.com/songs/60100754.mkv +李代沫-人质,http://em.21dtv.com/songs/60099295.mkv +王杭娟-认子(戏曲),http://em.21dtv.com/songs/60090085.mkv +韦礼安-人质,http://em.21dtv.com/songs/60083713.mkv +宇海文-热追,http://em.21dtv.com/songs/60080341.mkv +乃木坂46-人はなぜ走るのか,http://em.21dtv.com/songs/60077345.mkv +权振东-人质,http://em.21dtv.com/songs/60069759.mkv +林忆莲-日子(演唱会),http://em.21dtv.com/songs/60036680.mkv +佚名-认真,http://em.21dtv.com/songs/60036549.mkv +孙淑媚-认真,http://em.21dtv.com/songs/60036548.mkv +轮回乐队-认真,http://em.21dtv.com/songs/60036547.mkv +黎瑞恩-认真,http://em.21dtv.com/songs/60036546.mkv +阿杜-认真,http://em.21dtv.com/songs/60036545.mkv +黎瑞恩-认真(演唱会),http://em.21dtv.com/songs/60036544.mkv +周杰伦-忍者,http://em.21dtv.com/songs/60036516.mkv +张惠妹-人质,http://em.21dtv.com/songs/60036505.mkv +杨宗纬-人质(演唱会),http://em.21dtv.com/songs/60036504.mkv +LMF-人渣(演唱会),http://em.21dtv.com/songs/60036500.mkv +陈慧琳-人鱼PRELUDE,http://em.21dtv.com/songs/60093450.mkv +杨乃文-如一,http://em.21dtv.com/songs/60132579.mkv +任嘉伦-荣耀,http://em.21dtv.com/songs/60132183.mkv +原子霏-荣誉,http://em.21dtv.com/songs/60130165.mkv +李雨-如燕,http://em.21dtv.com/songs/60128100.mkv +崔恕-如焉,http://em.21dtv.com/songs/60126820.mkv +JERR PS RION-如烟,http://em.21dtv.com/songs/60123484.mkv +王菀之-如一,http://em.21dtv.com/songs/60119828.mkv +艾怡良-如烟,http://em.21dtv.com/songs/60113991.mkv +王晓天-荣耀,http://em.21dtv.com/songs/60107076.mkv +江映蓉-惹眼,http://em.21dtv.com/songs/60103408.mkv +陈楚生-容颜,http://em.21dtv.com/songs/60100595.mkv +石文-日月,http://em.21dtv.com/songs/60096662.mkv +胡定欣-日月,http://em.21dtv.com/songs/60080161.mkv +香香-如意,http://em.21dtv.com/songs/60077435.mkv +胡定欣+黎耀祥-日月,http://em.21dtv.com/songs/60077386.mkv +PERFUME-レーザービーム,http://em.21dtv.com/songs/60074271.mkv +NYC-ユメタマゴ,http://em.21dtv.com/songs/60074267.mkv +MIWA-ヒカリヘ,http://em.21dtv.com/songs/60074255.mkv +SCANDAL-ハルカ,http://em.21dtv.com/songs/60074252.mkv +邓宁-rock you,http://em.21dtv.com/songs/60070391.mkv +任军太-容颜(演唱会),http://em.21dtv.com/songs/60062865.mkv +李戈-入夜,http://em.21dtv.com/songs/60062588.mkv +郝冠英-容颜,http://em.21dtv.com/songs/60062437.mkv +软硬天师-软硬(演唱会),http://em.21dtv.com/songs/60037095.mkv +李乐诗-入夜,http://em.21dtv.com/songs/60037047.mkv +梅艳芳-如夜(演唱会),http://em.21dtv.com/songs/60037031.mkv +OLIVIA ONG-如燕(演唱会),http://em.21dtv.com/songs/60037029.mkv +五月天-如烟,http://em.21dtv.com/songs/60037028.mkv +苏芮-容颜(无原唱),http://em.21dtv.com/songs/60036692.mkv +谢霆锋-日月,http://em.21dtv.com/songs/60036676.mkv +石头剪子布-染月,http://em.21dtv.com/songs/60036013.mkv +于朦胧-入戏,http://em.21dtv.com/songs/60131146.mkv +宋子安-入戏,http://em.21dtv.com/songs/60128987.mkv +曹格-入戏,http://em.21dtv.com/songs/60113577.mkv +陈翔-热血,http://em.21dtv.com/songs/60108991.mkv +孙艳-燃香,http://em.21dtv.com/songs/60104931.mkv +张柏芝-入戏,http://em.21dtv.com/songs/60092626.mkv +徐怀钰-入戏,http://em.21dtv.com/songs/60089304.mkv +林泰燊-入戏,http://em.21dtv.com/songs/60083736.mkv +李宇春-入戏,http://em.21dtv.com/songs/60083735.mkv +孙国庆-热血,http://em.21dtv.com/songs/60081978.mkv +魏晨-热雪,http://em.21dtv.com/songs/60080751.mkv +姜青涛-荣幸,http://em.21dtv.com/songs/60077388.mkv +任贤齐-任性,http://em.21dtv.com/songs/60077374.mkv +燃弦乐队-燃弦,http://em.21dtv.com/songs/60066264.mkv +瞿颖-入戏,http://em.21dtv.com/songs/60037045.mkv +佚名-肉香,http://em.21dtv.com/songs/60036721.mkv +孙燕姿-任性,http://em.21dtv.com/songs/60036568.mkv +江若琳-任性,http://em.21dtv.com/songs/60036567.mkv +张学友-任性(演唱会),http://em.21dtv.com/songs/60036566.mkv +卓文萱-忍心,http://em.21dtv.com/songs/60036515.mkv +林玉英-忍心,http://em.21dtv.com/songs/60036514.mkv +翁立友-人心,http://em.21dtv.com/songs/60036469.mkv +杨洪基-热血,http://em.21dtv.com/songs/60036290.mkv +MC HOTDOG+张震岳-让我rap,http://em.21dtv.com/songs/60083701.mkv +陈文彬-热吻,http://em.21dtv.com/songs/60133043.mkv +CHRIS WALLACE-remember when,http://em.21dtv.com/songs/60082304.mkv +KASABIAN-re wired,http://em.21dtv.com/songs/60065670.mkv +闪亮三姐妹-入味,http://em.21dtv.com/songs/60037044.mkv +芭比-热舞,http://em.21dtv.com/songs/60036286.mkv +陈慧琳-热吻,http://em.21dtv.com/songs/60036285.mkv +SOLER-惹我,http://em.21dtv.com/songs/60036223.mkv +许美静-让位,http://em.21dtv.com/songs/60036111.mkv +吕佳芳-让位,http://em.21dtv.com/songs/60036110.mkv +佚名-remember when,http://em.21dtv.com/songs/60004652.mkv +佚名-real world(无原唱),http://em.21dtv.com/songs/60004626.mkv +WIZ KHALIFA-roll up,http://em.21dtv.com/songs/60073813.mkv +Frank秋枫-Romantic Things,http://em.21dtv.com/songs/60098994.mkv +腾格尔-热土,http://em.21dtv.com/songs/60088506.mkv +蓝月心-日头,http://em.21dtv.com/songs/60085647.mkv +王若希-rock tonigh,http://em.21dtv.com/songs/60084756.mkv +新秀团队-rookie t,http://em.21dtv.com/songs/60082312.mkv +NICOLE SCHERZINGER-right there,http://em.21dtv.com/songs/60073804.mkv +郭晋安+宣萱-软糖,http://em.21dtv.com/songs/60068636.mkv +YOUNG MONEY-roger that,http://em.21dtv.com/songs/60062181.mkv +SOUL ASYLUM-runaway train,http://em.21dtv.com/songs/60004763.mkv +ROD STEWART-ruby tuesday,http://em.21dtv.com/songs/60004745.mkv +CHINGY-right thurr,http://em.21dtv.com/songs/60004682.mkv +金志文-燃烧,http://em.21dtv.com/songs/60129675.mkv +谭嘉荃-如水,http://em.21dtv.com/songs/60126213.mkv +刘珂矣-如是,http://em.21dtv.com/songs/60121450.mkv +张博凡-若水,http://em.21dtv.com/songs/60119502.mkv +西楼-若水,http://em.21dtv.com/songs/60114047.mkv +彩月团-燃烧,http://em.21dtv.com/songs/60110216.mkv +张韶涵-燃烧,http://em.21dtv.com/songs/60094507.mkv +沈建豪-人生,http://em.21dtv.com/songs/60086781.mkv +罗心洁-弱水,http://em.21dtv.com/songs/60081110.mkv +TPAIN FEAT RICK ROSS-rap song,http://em.21dtv.com/songs/60073788.mkv +圭贤+TIFFANY-rise & shine,http://em.21dtv.com/songs/60071655.mkv +韩锋-人生,http://em.21dtv.com/songs/60071081.mkv +成彧-燃烧,http://em.21dtv.com/songs/60069746.mkv +后羿-人生,http://em.21dtv.com/songs/60068623.mkv +东学-燃烧(演唱会),http://em.21dtv.com/songs/60064777.mkv +DEAR_JANE-rising star,http://em.21dtv.com/songs/60063720.mkv +JASON DERULO-ridin solo,http://em.21dtv.com/songs/60063719.mkv +黄明志+龚柯允-rasa sayang,http://em.21dtv.com/songs/60062491.mkv +EXILE-rising sun,http://em.21dtv.com/songs/60062023.mkv +ELL&NIKKI-running scared,http://em.21dtv.com/songs/60062014.mkv +雷光夏-入山,http://em.21dtv.com/songs/60037043.mkv +卫兰-如水,http://em.21dtv.com/songs/60037026.mkv +李逸朗-榕树,http://em.21dtv.com/songs/60036698.mkv +张震岳-认输,http://em.21dtv.com/songs/60036543.mkv +小贱-认输,http://em.21dtv.com/songs/60036542.mkv +成学迅-认输,http://em.21dtv.com/songs/60036541.mkv +方季惟-认输(无原唱),http://em.21dtv.com/songs/60036540.mkv +远方-人生,http://em.21dtv.com/songs/60036393.mkv +叶启田-人生,http://em.21dtv.com/songs/60036392.mkv +吴国敬-人生,http://em.21dtv.com/songs/60036391.mkv +罗时丰-人生,http://em.21dtv.com/songs/60036390.mkv +黄妃-人生,http://em.21dtv.com/songs/60036389.mkv +李芊慧-人生(无原唱),http://em.21dtv.com/songs/60036388.mkv +孙楠-燃烧,http://em.21dtv.com/songs/60036000.mkv +李羿慧-燃烧,http://em.21dtv.com/songs/60035999.mkv +郭峰+MIX-2-燃烧,http://em.21dtv.com/songs/60035998.mkv +恩炀-燃烧,http://em.21dtv.com/songs/60035997.mkv +孙楠-燃烧(演唱会),http://em.21dtv.com/songs/60035996.mkv +佚名-running scared,http://em.21dtv.com/songs/60004769.mkv +DION-runaround sue,http://em.21dtv.com/songs/60004762.mkv +陈宥臻-rock star,http://em.21dtv.com/songs/60004709.mkv +M.I.C.男团-rock star,http://em.21dtv.com/songs/60004708.mkv +东方神起-rising sun,http://em.21dtv.com/songs/60004691.mkv +罗志祥-remix show(演唱会),http://em.21dtv.com/songs/60004655.mkv +佚名-red strokes,http://em.21dtv.com/songs/60004640.mkv +佚名-rasa sayang,http://em.21dtv.com/songs/60004610.mkv +ENERGY-ra-men song,http://em.21dtv.com/songs/60004608.mkv +张信哲-柔软,http://em.21dtv.com/songs/60108484.mkv +王菲-软弱,http://em.21dtv.com/songs/60103473.mkv +王媛渊-阮阮,http://em.21dtv.com/songs/60096397.mkv +阿庆-茹茹,http://em.21dtv.com/songs/60085663.mkv +关心妍-仍然,http://em.21dtv.com/songs/60077376.mkv +BROOKE WHITE-radio radio,http://em.21dtv.com/songs/60070389.mkv +B.M.F.+STYLES P-rick ross,http://em.21dtv.com/songs/60063718.mkv +高原-软弱,http://em.21dtv.com/songs/60037089.mkv +DREAM GIRLS-软弱,http://em.21dtv.com/songs/60037088.mkv +蔡依林-让让,http://em.21dtv.com/songs/60036097.mkv +佚名-rush rush,http://em.21dtv.com/songs/60004773.mkv +ABBA-ring ring,http://em.21dtv.com/songs/60004687.mkv +佚名-ramblinrose,http://em.21dtv.com/songs/60004607.mkv +田馥甄-热情,http://em.21dtv.com/songs/60112126.mkv +田馥甄-热情,http://em.21dtv.com/songs/60103488.mkv +郑智化-入侵,http://em.21dtv.com/songs/60088763.mkv +庄学忠-热情,http://em.21dtv.com/songs/60087763.mkv +后玄-日侨,http://em.21dtv.com/songs/60087543.mkv +戴佩妮-日期,http://em.21dtv.com/songs/60036647.mkv +蔡国权-人墙,http://em.21dtv.com/songs/60036369.mkv +芭比-热情,http://em.21dtv.com/songs/60036259.mkv +AIMER-re:pray,http://em.21dtv.com/songs/60082307.mkv +BELANOVA-rosa pastel,http://em.21dtv.com/songs/60063723.mkv +王若希-ROCK TONIGHT,http://em.21dtv.com/songs/60096637.mkv +申彗星+任昌丁-人偶,http://em.21dtv.com/songs/60105272.mkv +付佳明-人偶,http://em.21dtv.com/songs/60036367.mkv +唐大聪+钟静洁-认女,http://em.21dtv.com/songs/60133506.mkv +李雨儿-认你,http://em.21dtv.com/songs/60105994.mkv +AKON-right now,http://em.21dtv.com/songs/60004681.mkv +SNH48-入梦,http://em.21dtv.com/songs/60126550.mkv +简红-如梦,http://em.21dtv.com/songs/60104356.mkv +王菀之-认命,http://em.21dtv.com/songs/60099416.mkv +ONE DIRECTION-rock me,http://em.21dtv.com/songs/60073808.mkv +YOU ME AT SIX-rescue me,http://em.21dtv.com/songs/60073798.mkv +DALEY+JESSIE J-remember me,http://em.21dtv.com/songs/60073795.mkv +R. KELLY-radio message,http://em.21dtv.com/songs/60073784.mkv +9NINE-romantic moon,http://em.21dtv.com/songs/60071656.mkv +BOB4-remember me,http://em.21dtv.com/songs/60070390.mkv +林宥嘉-runaway mama(演唱会),http://em.21dtv.com/songs/60069134.mkv +BRAD PAISLEY-remind me,http://em.21dtv.com/songs/60063715.mkv +潘美辰-入迷,http://em.21dtv.com/songs/60037042.mkv +李克勒-肉麻(演唱会),http://em.21dtv.com/songs/60036719.mkv +林子娟-认命,http://em.21dtv.com/songs/60036536.mkv +方力申-认命,http://em.21dtv.com/songs/60036535.mkv +李孝利-remember me,http://em.21dtv.com/songs/60004651.mkv +ENGELBERT HUNPERDINC-release me,http://em.21dtv.com/songs/60004649.mkv +E MILLER-release me,http://em.21dtv.com/songs/60004648.mkv +赵根硕-软肋,http://em.21dtv.com/songs/60128429.mkv +动力火车-热量,http://em.21dtv.com/songs/60112550.mkv +光良-日落,http://em.21dtv.com/songs/60110854.mkv +孟楠-软肋(现场版),http://em.21dtv.com/songs/60103206.mkv +范晓萱-人类,http://em.21dtv.com/songs/60091951.mkv +刘孟哲-若琳,http://em.21dtv.com/songs/60086796.mkv +樊凡-认了,http://em.21dtv.com/songs/60085645.mkv +姚笛-认了,http://em.21dtv.com/songs/60080809.mkv +黑眼豆豆+MACY GRAY-request line,http://em.21dtv.com/songs/60073797.mkv +翁新茜-认路,http://em.21dtv.com/songs/60036533.mkv +沙宝亮-认领,http://em.21dtv.com/songs/60036532.mkv +甄真-认了,http://em.21dtv.com/songs/60036531.mkv +阿杜-人狼,http://em.21dtv.com/songs/60036352.mkv +杨林-热恋,http://em.21dtv.com/songs/60036254.mkv +温岚-热浪,http://em.21dtv.com/songs/60036247.mkv +佚名-real love,http://em.21dtv.com/songs/60004624.mkv +BON JOVI-real life,http://em.21dtv.com/songs/60004623.mkv +王力宏-让开,http://em.21dtv.com/songs/60036061.mkv +特曼-人间,http://em.21dtv.com/songs/60133966.mkv +严艺丹-人间,http://em.21dtv.com/songs/60116506.mkv +江志丰-日记,http://em.21dtv.com/songs/60108664.mkv +阿鲁阿卓+程琳-人间,http://em.21dtv.com/songs/60098835.mkv +隋超-日记,http://em.21dtv.com/songs/60077383.mkv +摩登咖啡-日记,http://em.21dtv.com/songs/60068627.mkv +那英-如今,http://em.21dtv.com/songs/60037013.mkv +王斌-日记,http://em.21dtv.com/songs/60036632.mkv +古巨基-日记,http://em.21dtv.com/songs/60036631.mkv +羽泉-人间,http://em.21dtv.com/songs/60036329.mkv +王菲-人间,http://em.21dtv.com/songs/60036328.mkv +黄思婷-人间,http://em.21dtv.com/songs/60036327.mkv +LISA-Rising Hope,http://em.21dtv.com/songs/60100734.mkv +贯诗钦-Ringing Love,http://em.21dtv.com/songs/60100471.mkv +CHRIS BROWN-run it,http://em.21dtv.com/songs/60004752.mkv +大嘴巴-rock it,http://em.21dtv.com/songs/60004706.mkv +ENRIQUE IGLESIAS-RHYTHM DIVINE(人物),http://em.21dtv.com/songs/60101706.mkv +海鸣威-人海,http://em.21dtv.com/songs/60133943.mkv +海鸣威-人海,http://em.21dtv.com/songs/60133942.mkv +李艾瑾-惹祸,http://em.21dtv.com/songs/60129243.mkv +李志-热河,http://em.21dtv.com/songs/60127019.mkv +梦苇-绒花,http://em.21dtv.com/songs/60125825.mkv +金婷婷-绒花,http://em.21dtv.com/songs/60123254.mkv +孔悦-如火,http://em.21dtv.com/songs/60118494.mkv +何晟铭-如花,http://em.21dtv.com/songs/60111690.mkv +王雯-绒花,http://em.21dtv.com/songs/60111295.mkv +向小康-绒花,http://em.21dtv.com/songs/60110915.mkv +吐洪江-绒花,http://em.21dtv.com/songs/60102020.mkv +马常宝-绒花[流行版],http://em.21dtv.com/songs/60100998.mkv +殷秀梅-绒花,http://em.21dtv.com/songs/60091543.mkv +李晖-绒花,http://em.21dtv.com/songs/60085648.mkv +李晖-绒花(演唱会),http://em.21dtv.com/songs/60083719.mkv +FLORIDA GEORGIA LINE-round here,http://em.21dtv.com/songs/60082314.mkv +纪敏佳-绒花,http://em.21dtv.com/songs/60080998.mkv +张悬-如何,http://em.21dtv.com/songs/60077431.mkv +萧亚轩+倪子冈-然后,http://em.21dtv.com/songs/60077311.mkv +樊少华-入画,http://em.21dtv.com/songs/60071089.mkv +和尚兄弟-人海,http://em.21dtv.com/songs/60068619.mkv +FLORENCE+THE MACHINE-rabbit heart,http://em.21dtv.com/songs/60060896.mkv +谢安琪-如花(HD演唱会),http://em.21dtv.com/songs/60037012.mkv +花儿乐队-融化,http://em.21dtv.com/songs/60036702.mkv +郁可唯-绒花,http://em.21dtv.com/songs/60036690.mkv +佚名-绒花,http://em.21dtv.com/songs/60036689.mkv +谭晶-绒花,http://em.21dtv.com/songs/60036688.mkv +李谷一-绒花,http://em.21dtv.com/songs/60036687.mkv +韩红-绒花,http://em.21dtv.com/songs/60036686.mkv +董文华-绒花,http://em.21dtv.com/songs/60036685.mkv +彩月团-惹火,http://em.21dtv.com/songs/60036222.mkv +J.A.M-惹火,http://em.21dtv.com/songs/60036221.mkv +居子涵-如果,http://em.21dtv.com/songs/60135154.mkv +何坤-如果,http://em.21dtv.com/songs/60127732.mkv +郑可为-如果,http://em.21dtv.com/songs/60126270.mkv +黑鸭子-如果,http://em.21dtv.com/songs/60124760.mkv +贾晧然-如果,http://em.21dtv.com/songs/60119989.mkv +泰妍-如果,http://em.21dtv.com/songs/60118741.mkv +孙乐-如果,http://em.21dtv.com/songs/60115783.mkv +刘文正-如果,http://em.21dtv.com/songs/60113297.mkv +周柏豪-如果,http://em.21dtv.com/songs/60106714.mkv +贯诗钦+宋孟君-如果,http://em.21dtv.com/songs/60100475.mkv +杨鸿-如果,http://em.21dtv.com/songs/60100197.mkv +冷静-如果,http://em.21dtv.com/songs/60096706.mkv +马常宝-如果,http://em.21dtv.com/songs/60096558.mkv +胡彦斌-如果,http://em.21dtv.com/songs/60095338.mkv +苏富权-如果,http://em.21dtv.com/songs/60083720.mkv +邻家王子-如果,http://em.21dtv.com/songs/60077396.mkv +萧敬腾-如果(演唱会),http://em.21dtv.com/songs/60072348.mkv +红乐队-如果(演唱会),http://em.21dtv.com/songs/60067371.mkv +叶世荣+EVER乐队-荣光,http://em.21dtv.com/songs/60067369.mkv +4MINUTE-ready go,http://em.21dtv.com/songs/60065672.mkv +西单女孩-如果,http://em.21dtv.com/songs/60063122.mkv +赵自强-如果,http://em.21dtv.com/songs/60036743.mkv +佚名-如果,http://em.21dtv.com/songs/60036742.mkv +陈美龄-如果,http://em.21dtv.com/songs/60036741.mkv +张栋梁-如果(演唱会),http://em.21dtv.com/songs/60036739.mkv +郭蓉-荣光,http://em.21dtv.com/songs/60036681.mkv +萧正楠-日光,http://em.21dtv.com/songs/60036626.mkv +苏打绿-日光,http://em.21dtv.com/songs/60036625.mkv +佚名-rose garden,http://em.21dtv.com/songs/60004733.mkv +佚名-rich girl,http://em.21dtv.com/songs/60004672.mkv +GWEN STEFANI-rich girl,http://em.21dtv.com/songs/60004671.mkv +佚名-radio gaga,http://em.21dtv.com/songs/60004584.mkv +天籁天-如风,http://em.21dtv.com/songs/60098228.mkv +曾心梅-忍份,http://em.21dtv.com/songs/60095584.mkv +王菲-如风,http://em.21dtv.com/songs/60036736.mkv +王菲-如风(演唱会),http://em.21dtv.com/songs/60036735.mkv +曾心梅-认份,http://em.21dtv.com/songs/60036530.mkv +SAGE THE GEMINI-RED NOSE,http://em.21dtv.com/songs/60096636.mkv +陈升-然而,http://em.21dtv.com/songs/60035989.mkv +幸田来未-real emotion,http://em.21dtv.com/songs/60004622.mkv +金志文-认定,http://em.21dtv.com/songs/60130812.mkv +邓咏家-软淡,http://em.21dtv.com/songs/60120008.mkv +贺敬轩-弱点,http://em.21dtv.com/songs/60118925.mkv +郑恺+王铮亮-燃点,http://em.21dtv.com/songs/60117279.mkv +李千娜-弱点,http://em.21dtv.com/songs/60102330.mkv +王中龙-阮兜(演唱会),http://em.21dtv.com/songs/60077437.mkv +GRANGER SMITH-red dirt,http://em.21dtv.com/songs/60067972.mkv +胡夏-燃点,http://em.21dtv.com/songs/60066263.mkv +佚名-弱点,http://em.21dtv.com/songs/60037130.mkv +邰正宵-弱点(演唱会)(无原唱),http://em.21dtv.com/songs/60037129.mkv +柯以敏-认定(演唱会),http://em.21dtv.com/songs/60036529.mkv +佚名-人道,http://em.21dtv.com/songs/60036311.mkv +黄乙玲-人道,http://em.21dtv.com/songs/60036310.mkv +蔡依林-热冬(演唱会),http://em.21dtv.com/songs/60036239.mkv +彭靖惠-让渡,http://em.21dtv.com/songs/60036056.mkv +津亭-燃点,http://em.21dtv.com/songs/60035994.mkv +ROBBIE WILLIAMS-rock dj,http://em.21dtv.com/songs/60004705.mkv +ENRIQUE IGLESIAS-rhythm divine(无原唱),http://em.21dtv.com/songs/60004664.mkv +螺丝钉-rainy day(演唱会),http://em.21dtv.com/songs/60004604.mkv +田馥甄-日常,http://em.21dtv.com/songs/60132760.mkv +孙淑媚-日出,http://em.21dtv.com/songs/60125393.mkv +孙伯纶-认错,http://em.21dtv.com/songs/60116694.mkv +LINDA-忍床,http://em.21dtv.com/songs/60087202.mkv +李宇春-如初,http://em.21dtv.com/songs/60081070.mkv +马嘉轩-认错,http://em.21dtv.com/songs/60067367.mkv +CHIDDY BANG-ray charles,http://em.21dtv.com/songs/60066714.mkv +TYGA-rack city,http://em.21dtv.com/songs/60065669.mkv +张崇基+张崇德-认错(演唱会),http://em.21dtv.com/songs/60064799.mkv +李龙基-rhinestone cowboy(演唱会),http://em.21dtv.com/songs/60063717.mkv +群星-入厝,http://em.21dtv.com/songs/60037039.mkv +许美静-如此,http://em.21dtv.com/songs/60036723.mkv +张学友-如初,http://em.21dtv.com/songs/60036722.mkv +新宝岛康乐队-日出,http://em.21dtv.com/songs/60036615.mkv +田震-日出,http://em.21dtv.com/songs/60036614.mkv +张惠妹-日出(演唱会),http://em.21dtv.com/songs/60036613.mkv +张惠妹-日出(无原唱),http://em.21dtv.com/songs/60036612.mkv +张可芝-认错,http://em.21dtv.com/songs/60036528.mkv +优客李林-认错,http://em.21dtv.com/songs/60036527.mkv +许嵩-认错,http://em.21dtv.com/songs/60036526.mkv +屠洪纲-认错,http://em.21dtv.com/songs/60036525.mkv +RUBBER BAND-认错,http://em.21dtv.com/songs/60036524.mkv +张信哲+容祖儿-认错(演唱会),http://em.21dtv.com/songs/60036523.mkv +伍思凯+辛晓琪-认错(演唱会),http://em.21dtv.com/songs/60036522.mkv +雷安娜-认错(演唱会),http://em.21dtv.com/songs/60036521.mkv +RUBBER BAND-认错(演唱会),http://em.21dtv.com/songs/60036520.mkv +LINDA-认床,http://em.21dtv.com/songs/60036519.mkv +张学友-认床(演唱会),http://em.21dtv.com/songs/60036518.mkv +张信哲-惹尘(演唱会),http://em.21dtv.com/songs/60036220.mkv +童唱-roller coaster,http://em.21dtv.com/songs/60004726.mkv +佚名-rhinestone cowboy,http://em.21dtv.com/songs/60004663.mkv +宇海文+娜日-热摆,http://em.21dtv.com/songs/60080340.mkv +BRUNO MARS-runaway baby(演唱会),http://em.21dtv.com/songs/60073822.mkv +RIHANNA-rude boy,http://em.21dtv.com/songs/60065677.mkv +刘德华-人办,http://em.21dtv.com/songs/60036304.mkv +陈明真-让步,http://em.21dtv.com/songs/60036053.mkv +范逸臣+酷爱乐队-rock boys,http://em.21dtv.com/songs/60004703.mkv +方大同-red bean(红豆),http://em.21dtv.com/songs/60004632.mkv +孟慧圆-人啊,http://em.21dtv.com/songs/60126782.mkv +郑钧-热爱,http://em.21dtv.com/songs/60124571.mkv +郑钧-热爱,http://em.21dtv.com/songs/60123237.mkv +杨叶卿-若爱,http://em.21dtv.com/songs/60099335.mkv +邵洪-让爱,http://em.21dtv.com/songs/60086778.mkv +本兮-run away,http://em.21dtv.com/songs/60084758.mkv +AIMER-re:iam,http://em.21dtv.com/songs/60082306.mkv +周笔畅-Running Away,http://em.21dtv.com/songs/60081272.mkv +SARAH+JAROSZ-run away,http://em.21dtv.com/songs/60069133.mkv +魏晨-run away,http://em.21dtv.com/songs/60065679.mkv +HOOBASTANK-running away,http://em.21dtv.com/songs/60063725.mkv +魏晨+MBLAQ-run away(演唱会),http://em.21dtv.com/songs/60063063.mkv +佚名-热爱,http://em.21dtv.com/songs/60036227.mkv +王心凌-热爱,http://em.21dtv.com/songs/60036226.mkv +黄维德-热爱,http://em.21dtv.com/songs/60036225.mkv +许志安-让爱,http://em.21dtv.com/songs/60036017.mkv +许志安-让爱(演唱会),http://em.21dtv.com/songs/60036016.mkv +许志安+邓健泓-让爱(演唱会),http://em.21dtv.com/songs/60036015.mkv +陶喆-run away,http://em.21dtv.com/songs/60004749.mkv +陶喆-run away(演唱会),http://em.21dtv.com/songs/60004748.mkv +DALMATIAN-round1,http://em.21dtv.com/songs/60004737.mkv +陈粒-庆祝,http://em.21dtv.com/songs/60135938.mkv +方炯镔-棋子,http://em.21dtv.com/songs/60133744.mkv +蓝又时-其中,http://em.21dtv.com/songs/60131789.mkv +蓝又时-其中,http://em.21dtv.com/songs/60130718.mkv +陈夏莲-情债,http://em.21dtv.com/songs/60126368.mkv +陈夏莲-情债,http://em.21dtv.com/songs/60124619.mkv +杨卿俪-妻子,http://em.21dtv.com/songs/60120653.mkv +侯丽娟-妻子,http://em.21dtv.com/songs/60120324.mkv +孙露-棋子,http://em.21dtv.com/songs/60115830.mkv +谢名-妻子,http://em.21dtv.com/songs/60114779.mkv +李克勤-签纸,http://em.21dtv.com/songs/60114593.mkv +郑璐-旗帜,http://em.21dtv.com/songs/60099535.mkv +韩光-求醉,http://em.21dtv.com/songs/60094345.mkv +周惠-前章,http://em.21dtv.com/songs/60092476.mkv +林慧萍-情钟,http://em.21dtv.com/songs/60091478.mkv +TONE+仲维军-前章,http://em.21dtv.com/songs/60087225.mkv +成云刚+王星星-情招,http://em.21dtv.com/songs/60086773.mkv +王丽达+汤子星-棋子,http://em.21dtv.com/songs/60085581.mkv +袁小迪-情字,http://em.21dtv.com/songs/60069737.mkv +容祖儿-墙纸,http://em.21dtv.com/songs/60062892.mkv +莫晓芳-裙子,http://em.21dtv.com/songs/60061530.mkv +刘欢-去者,http://em.21dtv.com/songs/60035857.mkv +杨丞琳-庆祝,http://em.21dtv.com/songs/60035626.mkv +陈文媛-庆祝,http://em.21dtv.com/songs/60035625.mkv +蔡国庆-庆祝,http://em.21dtv.com/songs/60035624.mkv +董贞+盛威-情醉,http://em.21dtv.com/songs/60035479.mkv +红尘独舞-情罪,http://em.21dtv.com/songs/60035478.mkv +高寒-情罪,http://em.21dtv.com/songs/60035477.mkv +佚名-情字,http://em.21dtv.com/songs/60035471.mkv +江淑娜-情字,http://em.21dtv.com/songs/60035470.mkv +刘德华-情种,http://em.21dtv.com/songs/60035469.mkv +苏勒亚其其格-情沼,http://em.21dtv.com/songs/60035466.mkv +樱花姐妹-情债,http://em.21dtv.com/songs/60035464.mkv +佚名-情债,http://em.21dtv.com/songs/60035462.mkv +王瑞霞-情债,http://em.21dtv.com/songs/60035461.mkv +林姗-情债,http://em.21dtv.com/songs/60035460.mkv +陈思安-情债,http://em.21dtv.com/songs/60035459.mkv +陈明真-情债,http://em.21dtv.com/songs/60035458.mkv +孙永慈-情债(无原唱),http://em.21dtv.com/songs/60035457.mkv +阿乐-前座,http://em.21dtv.com/songs/60034307.mkv +吕金蔓-旗帜,http://em.21dtv.com/songs/60033989.mkv +雷佳-旗帜,http://em.21dtv.com/songs/60033988.mkv +王菲-棋子,http://em.21dtv.com/songs/60033986.mkv +谭晶-妻子,http://em.21dtv.com/songs/60033815.mkv +龚月-妻子,http://em.21dtv.com/songs/60033814.mkv +施文彬-七仔,http://em.21dtv.com/songs/60033811.mkv +S.H.E-七仔,http://em.21dtv.com/songs/60033810.mkv +刘思祺-祈愿,http://em.21dtv.com/songs/60134935.mkv +SING女团-柒月,http://em.21dtv.com/songs/60134797.mkv +张翠萍+陈卫东-巧遇,http://em.21dtv.com/songs/60133687.mkv +秦威-秋语,http://em.21dtv.com/songs/60131710.mkv +王小娟-情雨,http://em.21dtv.com/songs/60129390.mkv +山风-情雨,http://em.21dtv.com/songs/60127931.mkv +蒋婴-祈愿,http://em.21dtv.com/songs/60127359.mkv +王觉-祈愿,http://em.21dtv.com/songs/60127211.mkv +黄伟霖+林葳-秋夜,http://em.21dtv.com/songs/60124732.mkv +N.Flying-缺氧,http://em.21dtv.com/songs/60116464.mkv +郝云-情谣,http://em.21dtv.com/songs/60114824.mkv +郑培钦-青衣,http://em.21dtv.com/songs/60112305.mkv +周柏豪-前言,http://em.21dtv.com/songs/60110939.mkv +小老头-巧遇,http://em.21dtv.com/songs/60106791.mkv +李尚尚-穷游,http://em.21dtv.com/songs/60096722.mkv +王杰-情欲,http://em.21dtv.com/songs/60092982.mkv +刘雅丽-秋夜(演唱会),http://em.21dtv.com/songs/60083684.mkv +王中平+陈茂丰-情义,http://em.21dtv.com/songs/60083673.mkv +郭斯炫+王烁巽-情义,http://em.21dtv.com/songs/60083672.mkv +谭晶+崔京浩-情缘,http://em.21dtv.com/songs/60077261.mkv +洪卓立-七友(演唱会),http://em.21dtv.com/songs/60072284.mkv +李丽霞-倩影(演唱会),http://em.21dtv.com/songs/60068582.mkv +杨丞琳-缺氧,http://em.21dtv.com/songs/60035971.mkv +裘海正-缺氧,http://em.21dtv.com/songs/60035970.mkv +佚名-劝玉,http://em.21dtv.com/songs/60035957.mkv +张智成-痊愈,http://em.21dtv.com/songs/60035946.mkv +陈星-求缘,http://em.21dtv.com/songs/60035809.mkv +郑锦昌-秋月,http://em.21dtv.com/songs/60035763.mkv +阿吉仔-秋怨,http://em.21dtv.com/songs/60035762.mkv +高原-秋雨,http://em.21dtv.com/songs/60035759.mkv +林利萍-秋雨(无原唱),http://em.21dtv.com/songs/60035758.mkv +紫薇-秋夜,http://em.21dtv.com/songs/60035748.mkv +蔡幸娟-秋夜,http://em.21dtv.com/songs/60035747.mkv +蔡琴-秋夜,http://em.21dtv.com/songs/60035746.mkv +周蕙-秋夜(演唱会),http://em.21dtv.com/songs/60035745.mkv +蔡琴-秋夜(演唱会),http://em.21dtv.com/songs/60035744.mkv +孙扬杰-秋叶,http://em.21dtv.com/songs/60035743.mkv +张学友-情愿(演唱会),http://em.21dtv.com/songs/60035446.mkv +刘欢-情怨(演唱会),http://em.21dtv.com/songs/60035445.mkv +佚名-情怨(无原唱),http://em.21dtv.com/songs/60035444.mkv +王雯萱-情怨(无原唱),http://em.21dtv.com/songs/60035443.mkv +余天-情缘,http://em.21dtv.com/songs/60035437.mkv +满文军-情缘,http://em.21dtv.com/songs/60035436.mkv +李玲玉-情缘,http://em.21dtv.com/songs/60035435.mkv +黄思婷-情缘,http://em.21dtv.com/songs/60035434.mkv +陈兴瑜-情缘,http://em.21dtv.com/songs/60035433.mkv +蔡济文-情缘,http://em.21dtv.com/songs/60035432.mkv +黎明-情缘(演唱会),http://em.21dtv.com/songs/60035431.mkv +杨钧钧-情缘(无原唱),http://em.21dtv.com/songs/60035430.mkv +孙淑媚-情雨,http://em.21dtv.com/songs/60035427.mkv +高胜美-情雨,http://em.21dtv.com/songs/60035426.mkv +佚名-情影,http://em.21dtv.com/songs/60035419.mkv +荒山亮-情义,http://em.21dtv.com/songs/60035404.mkv +佚名-轻烟,http://em.21dtv.com/songs/60034824.mkv +青山-轻烟,http://em.21dtv.com/songs/60034823.mkv +沈利-青衣,http://em.21dtv.com/songs/60034794.mkv +马天宇-青衣,http://em.21dtv.com/songs/60034793.mkv +钟康琪+梁淑卿-琴缘,http://em.21dtv.com/songs/60034632.mkv +林冠吟-秦俑,http://em.21dtv.com/songs/60034624.mkv +赵学而-歉意,http://em.21dtv.com/songs/60034366.mkv +佚名-倩影,http://em.21dtv.com/songs/60034365.mkv +林慧萍-倩影,http://em.21dtv.com/songs/60034364.mkv +李翊君-倩影,http://em.21dtv.com/songs/60034363.mkv +杨千嬅-倩影(演唱会),http://em.21dtv.com/songs/60034362.mkv +蔡枫华-倩影(演唱会),http://em.21dtv.com/songs/60034361.mkv +林慧萍-倩影(演唱会)(无原唱),http://em.21dtv.com/songs/60034360.mkv +佚名-前缘,http://em.21dtv.com/songs/60034306.mkv +陈道明-前缘,http://em.21dtv.com/songs/60034305.mkv +李碧华-牵引,http://em.21dtv.com/songs/60034254.mkv +费翔-牵引,http://em.21dtv.com/songs/60034253.mkv +邓妙华-牵引(无原唱),http://em.21dtv.com/songs/60034252.mkv +游鸿明-奇遇,http://em.21dtv.com/songs/60033961.mkv +杨采妮-奇遇,http://em.21dtv.com/songs/60033960.mkv +小鸣-七月,http://em.21dtv.com/songs/60033794.mkv +刘倞-七月,http://em.21dtv.com/songs/60033793.mkv +江映蓉-七月,http://em.21dtv.com/songs/60033792.mkv +梁汉文-七友,http://em.21dtv.com/songs/60033791.mkv +苏永康-七友(演唱会),http://em.21dtv.com/songs/60033790.mkv +梁汉文-七友(演唱会),http://em.21dtv.com/songs/60033789.mkv +何韵诗-七友(演唱会),http://em.21dtv.com/songs/60033788.mkv +钱红-清醒,http://em.21dtv.com/songs/60134364.mkv +央金卓嘎-迁徙,http://em.21dtv.com/songs/60130228.mkv +魏如昀-秋乡,http://em.21dtv.com/songs/60123386.mkv +魏如昀-秋乡,http://em.21dtv.com/songs/60122291.mkv +童可可-缺席,http://em.21dtv.com/songs/60119859.mkv +李爱-清香,http://em.21dtv.com/songs/60113641.mkv +苏勒亚其其格-清醒,http://em.21dtv.com/songs/60109589.mkv +许嵩-七夕,http://em.21dtv.com/songs/60103572.mkv +丁胤-缺席,http://em.21dtv.com/songs/60101856.mkv +HAYA乐团-迁徙,http://em.21dtv.com/songs/60096696.mkv +阚立文-迁徙,http://em.21dtv.com/songs/60096695.mkv +江美丽-沁心,http://em.21dtv.com/songs/60095720.mkv +办桌二人组-沁心,http://em.21dtv.com/songs/60095473.mkv +傅佩嘉-前戏,http://em.21dtv.com/songs/60092294.mkv +新青年制造-群星,http://em.21dtv.com/songs/60087914.mkv +含笑-情侠,http://em.21dtv.com/songs/60083671.mkv +陈德彰-倾心(演唱会),http://em.21dtv.com/songs/60083647.mkv +杨宗纬-前戏,http://em.21dtv.com/songs/60083616.mkv +可歆+XUN-情戏,http://em.21dtv.com/songs/60080605.mkv +草蜢-倾斜(演唱会),http://em.21dtv.com/songs/60077228.mkv +林俊吉-情线,http://em.21dtv.com/songs/60072320.mkv +李行亮-千寻,http://em.21dtv.com/songs/60071049.mkv +黄莺莺-情雪,http://em.21dtv.com/songs/60064754.mkv +黄伦硕-倾心,http://em.21dtv.com/songs/60064735.mkv +容中尔甲-迁徙,http://em.21dtv.com/songs/60062885.mkv +周旭风-缺席,http://em.21dtv.com/songs/60035967.mkv +郑秀文-缺席,http://em.21dtv.com/songs/60035966.mkv +童安格-缺席,http://em.21dtv.com/songs/60035965.mkv +黄靖伦-缺席,http://em.21dtv.com/songs/60035964.mkv +侯强-球星,http://em.21dtv.com/songs/60035812.mkv +庞龙-秋雪,http://em.21dtv.com/songs/60035742.mkv +侯强+尹力-秋香,http://em.21dtv.com/songs/60035736.mkv +堂娜-庆幸,http://em.21dtv.com/songs/60035622.mkv +王菲-情雪,http://em.21dtv.com/songs/60035400.mkv +黄仲昆-情雪,http://em.21dtv.com/songs/60035399.mkv +王馨平-情心,http://em.21dtv.com/songs/60035398.mkv +张秀卿-情弦,http://em.21dtv.com/songs/60035391.mkv +蔡秋凤-情戏(无原唱),http://em.21dtv.com/songs/60035387.mkv +莫文蔚-清醒,http://em.21dtv.com/songs/60034908.mkv +郭峰-清醒,http://em.21dtv.com/songs/60034907.mkv +关德辉-清醒(无原唱),http://em.21dtv.com/songs/60034906.mkv +朴文哲-清心,http://em.21dtv.com/songs/60034904.mkv +李逸朗+蒋雅文-倾心,http://em.21dtv.com/songs/60034855.mkv +黄凯芹-倾心,http://em.21dtv.com/songs/60034854.mkv +RAIDAS-倾心,http://em.21dtv.com/songs/60034853.mkv +梁汉文-倾心(演唱会),http://em.21dtv.com/songs/60034852.mkv +蔡卓妍-倾心(演唱会),http://em.21dtv.com/songs/60034851.mkv +林忆莲-倾斜(演唱会),http://em.21dtv.com/songs/60034847.mkv +佚名-沁心,http://em.21dtv.com/songs/60034636.mkv +办桌二人组-沁心(无原唱),http://em.21dtv.com/songs/60034635.mkv +佚名-琴心,http://em.21dtv.com/songs/60034630.mkv +王识贤-切心,http://em.21dtv.com/songs/60034458.mkv +吴浩康-前戏(演唱会),http://em.21dtv.com/songs/60034304.mkv +满文军-牵心,http://em.21dtv.com/songs/60034249.mkv +刘虹翎-祈许,http://em.21dtv.com/songs/60033975.mkv +许晋豪-期许,http://em.21dtv.com/songs/60033851.mkv +邓丽欣-七夕,http://em.21dtv.com/songs/60033777.mkv +SE7EN-七夕,http://em.21dtv.com/songs/60033776.mkv +邓丽欣-七夕(演唱会),http://em.21dtv.com/songs/60033775.mkv +Empty-窃娓,http://em.21dtv.com/songs/60132076.mkv +李玲玉-情网,http://em.21dtv.com/songs/60122868.mkv +蔡淳佳-蔷薇,http://em.21dtv.com/songs/60122091.mkv +梁剑东-雀王,http://em.21dtv.com/songs/60119730.mkv +DJCandy+梁剑东-雀王,http://em.21dtv.com/songs/60119131.mkv +艾怡良-蔷薇,http://em.21dtv.com/songs/60100404.mkv +满文军-情网,http://em.21dtv.com/songs/60096798.mkv +丁丁-蔷薇,http://em.21dtv.com/songs/60081775.mkv +任静-情网,http://em.21dtv.com/songs/60068604.mkv +郑融-请问,http://em.21dtv.com/songs/60035606.mkv +卓依婷-情网,http://em.21dtv.com/songs/60035371.mkv +张学友-情网,http://em.21dtv.com/songs/60035370.mkv +佚名-情网,http://em.21dtv.com/songs/60035369.mkv +江蕙-情网,http://em.21dtv.com/songs/60035368.mkv +高胜美-情网,http://em.21dtv.com/songs/60035367.mkv +张学友-情网(演唱会),http://em.21dtv.com/songs/60035366.mkv +陈盈洁-情网(无原唱),http://em.21dtv.com/songs/60035365.mkv +萧亚轩-蔷薇,http://em.21dtv.com/songs/60034389.mkv +萧亚轩-蔷薇(演唱会),http://em.21dtv.com/songs/60034388.mkv +COOKIES-蔷薇(演唱会),http://em.21dtv.com/songs/60034387.mkv +吴国敬-起舞,http://em.21dtv.com/songs/60034021.mkv +阿信+KEITH STUART-棋王,http://em.21dtv.com/songs/60033985.mkv +吴浩康-棋王,http://em.21dtv.com/songs/60033984.mkv +吴浩康-棋王(演唱会),http://em.21dtv.com/songs/60033983.mkv +林子祥-祈望,http://em.21dtv.com/songs/60033974.mkv +陈俊彤-圈套,http://em.21dtv.com/songs/60130828.mkv +姚成员-倾听,http://em.21dtv.com/songs/60130233.mkv +许嵩-奇谈,http://em.21dtv.com/songs/60124471.mkv +何维健-晴天,http://em.21dtv.com/songs/60115685.mkv +关诗敏-晴天,http://em.21dtv.com/songs/60115015.mkv +刘瑞琦-晴天,http://em.21dtv.com/songs/60107540.mkv +陈晓东+王妤娴-圈套,http://em.21dtv.com/songs/60103687.mkv +李雪儿-圈套,http://em.21dtv.com/songs/60101386.mkv +叶幼琪+蒋文端-琴挑(戏曲),http://em.21dtv.com/songs/60092413.mkv +腾格尔-弃逃,http://em.21dtv.com/songs/60091904.mkv +曾淑勤-浅滩,http://em.21dtv.com/songs/60089327.mkv +夏芷筠-晴天,http://em.21dtv.com/songs/60087623.mkv +马旭东-圈套,http://em.21dtv.com/songs/60083691.mkv +萧寒-求天,http://em.21dtv.com/songs/60083689.mkv +蔡义德-七天,http://em.21dtv.com/songs/60083595.mkv +陈威全-倾听,http://em.21dtv.com/songs/60068594.mkv +冷漠+司徒兰芳-情叹,http://em.21dtv.com/songs/60067349.mkv +江志丰-七天,http://em.21dtv.com/songs/60067313.mkv +弦子-圈套,http://em.21dtv.com/songs/60035868.mkv +邰正宵-圈套,http://em.21dtv.com/songs/60035867.mkv +戴佩妮-圈套,http://em.21dtv.com/songs/60035866.mkv +罗中旭-圈套(演唱会),http://em.21dtv.com/songs/60035865.mkv +蒋曦儿-圈套(演唱会),http://em.21dtv.com/songs/60035864.mkv +朱海君-秋天,http://em.21dtv.com/songs/60035715.mkv +王童语-秋天,http://em.21dtv.com/songs/60035714.mkv +苏醒-秋天,http://em.21dtv.com/songs/60035713.mkv +潘越云-秋天,http://em.21dtv.com/songs/60035712.mkv +苏醒-秋天(演唱会),http://em.21dtv.com/songs/60035711.mkv +朱孝天-晴天,http://em.21dtv.com/songs/60035491.mkv +周杰伦-晴天,http://em.21dtv.com/songs/60035490.mkv +邓天晴-晴天,http://em.21dtv.com/songs/60035489.mkv +朱孝天-晴天(演唱会),http://em.21dtv.com/songs/60035488.mkv +吴雨霏-晴天(演唱会)(无原唱),http://em.21dtv.com/songs/60035487.mkv +于文华+尹相杰-情土,http://em.21dtv.com/songs/60035364.mkv +佚名-情探,http://em.21dtv.com/songs/60035360.mkv +杨钰莹-情叹,http://em.21dtv.com/songs/60035359.mkv +童唱-蜻蜓,http://em.21dtv.com/songs/60034913.mkv +顾海滨-蜻蜓,http://em.21dtv.com/songs/60034912.mkv +关心妍-蜻蜓(演唱会),http://em.21dtv.com/songs/60034911.mkv +童唱-蜻蜓(无原唱),http://em.21dtv.com/songs/60034910.mkv +陈洁仪-轻佻,http://em.21dtv.com/songs/60034821.mkv +易天晴-浅拖(拖鞋)(无原唱),http://em.21dtv.com/songs/60034338.mkv +翁立友-前途,http://em.21dtv.com/songs/60034302.mkv +袁惟仁-企图,http://em.21dtv.com/songs/60033995.mkv +张瑶-七天,http://em.21dtv.com/songs/60033771.mkv +吴建豪-七天,http://em.21dtv.com/songs/60033770.mkv +MILEY CYRUS-7 things,http://em.21dtv.com/songs/60000028.mkv +郑兴琦-轻伤,http://em.21dtv.com/songs/60135803.mkv +卢庚戌-情诗,http://em.21dtv.com/songs/60134966.mkv +蔡佳麟+曹雅雯-牵手,http://em.21dtv.com/songs/60134199.mkv +陈辰-牵手,http://em.21dtv.com/songs/60131962.mkv +菊梓乔-七岁,http://em.21dtv.com/songs/60131767.mkv +张志林+谢林彤-情史,http://em.21dtv.com/songs/60129077.mkv +高佳-秋思,http://em.21dtv.com/songs/60128613.mkv +苏有朋-情伤,http://em.21dtv.com/songs/60126109.mkv +程紫薇-秋霜,http://em.21dtv.com/songs/60126003.mkv +娃娃-秋沙,http://em.21dtv.com/songs/60125376.mkv +高晶+山野-情愫,http://em.21dtv.com/songs/60121163.mkv +博轼-情殇,http://em.21dtv.com/songs/60119326.mkv +陈小宇-秋思,http://em.21dtv.com/songs/60118154.mkv +艾歌-情逝,http://em.21dtv.com/songs/60118002.mkv +刘栋升+奕丹-情愫,http://em.21dtv.com/songs/60116593.mkv +王梓旭-秋思,http://em.21dtv.com/songs/60116152.mkv +王昆-秋收,http://em.21dtv.com/songs/60116149.mkv +司徒兰芳-情绳,http://em.21dtv.com/songs/60115746.mkv +何洁-球神,http://em.21dtv.com/songs/60115683.mkv +江智民-情锁,http://em.21dtv.com/songs/60113769.mkv +Ella-情书,http://em.21dtv.com/songs/60113150.mkv +钟汉良-奇书,http://em.21dtv.com/songs/60113029.mkv +张津涤-情诗,http://em.21dtv.com/songs/60112681.mkv +黄安-情僧,http://em.21dtv.com/songs/60112402.mkv +李政飞-秋收,http://em.21dtv.com/songs/60111980.mkv +焦靖峰-牵手,http://em.21dtv.com/songs/60110362.mkv +唐美华-情锁,http://em.21dtv.com/songs/60106729.mkv +任然-轻松,http://em.21dtv.com/songs/60104776.mkv +张津涤-情僧,http://em.21dtv.com/songs/60104135.mkv +小乔-情书(动画),http://em.21dtv.com/songs/60104074.mkv +玄觞-妻书,http://em.21dtv.com/songs/60101669.mkv +墨明棋妙-青蛇,http://em.21dtv.com/songs/60100816.mkv +郑欣宜-情伤,http://em.21dtv.com/songs/60096799.mkv +薛之谦-其实,http://em.21dtv.com/songs/60096730.mkv +丁泽强+徐林-牵手,http://em.21dtv.com/songs/60094794.mkv +陈慧琳-前世,http://em.21dtv.com/songs/60093453.mkv +陈小汉+李敏华-情僧(戏曲),http://em.21dtv.com/songs/60093421.mkv +戏曲-乞食,http://em.21dtv.com/songs/60092721.mkv +何洁-牵手,http://em.21dtv.com/songs/60087309.mkv +林宥嘉-请说,http://em.21dtv.com/songs/60085625.mkv +赖达兴-牵手,http://em.21dtv.com/songs/60085588.mkv +音讯怪物-琴师,http://em.21dtv.com/songs/60083640.mkv +郁可唯-牵手,http://em.21dtv.com/songs/60081848.mkv +王拓-牵手,http://em.21dtv.com/songs/60081539.mkv +杭娇-情僧,http://em.21dtv.com/songs/60080592.mkv +郑琇月-情深(无原唱),http://em.21dtv.com/songs/60080095.mkv +张海-求神,http://em.21dtv.com/songs/60077297.mkv +扎西华旦-求神,http://em.21dtv.com/songs/60077296.mkv +渔圈+徐艺莹-秋沙,http://em.21dtv.com/songs/60077285.mkv +孙露-情书,http://em.21dtv.com/songs/60077258.mkv +孙子涵-情圣,http://em.21dtv.com/songs/60077257.mkv +张津涤-清僧,http://em.21dtv.com/songs/60077230.mkv +黄绮珊-牵手),http://em.21dtv.com/songs/60077143.mkv +林泰燊-秦觞,http://em.21dtv.com/songs/60069731.mkv +贺一航-情伤,http://em.21dtv.com/songs/60068602.mkv +陈美凤-签诗,http://em.21dtv.com/songs/60068483.mkv +金波-情殇,http://em.21dtv.com/songs/60067345.mkv +吴涤清-倾诉,http://em.21dtv.com/songs/60067332.mkv +陆瑶-青蛇,http://em.21dtv.com/songs/60067331.mkv +叶胜钦+曾雅兰-牵手,http://em.21dtv.com/songs/60067323.mkv +赵本水-求索(演唱会),http://em.21dtv.com/songs/60066259.mkv +冷漠-情诗,http://em.21dtv.com/songs/60066250.mkv +信乐团-情殇,http://em.21dtv.com/songs/60064751.mkv +周杰伦-琴伤,http://em.21dtv.com/songs/60064728.mkv +洪煜褀+叶雅霖-浅伤,http://em.21dtv.com/songs/60064715.mkv +刘恺威-千山,http://em.21dtv.com/songs/60064708.mkv +黄龄-骑士,http://em.21dtv.com/songs/60064705.mkv +香香-泉水,http://em.21dtv.com/songs/60035941.mkv +赵本山-求索,http://em.21dtv.com/songs/60035807.mkv +王昆-秋收,http://em.21dtv.com/songs/60035700.mkv +陈慧娴-秋色(演唱会),http://em.21dtv.com/songs/60035696.mkv +陈星-情锁,http://em.21dtv.com/songs/60035358.mkv +蔡琴-情锁,http://em.21dtv.com/songs/60035357.mkv +张蓉蓉-情丝,http://em.21dtv.com/songs/60035354.mkv +张学友-情书,http://em.21dtv.com/songs/60035351.mkv +小玉荣子-情书,http://em.21dtv.com/songs/60035350.mkv +刘耕宏-情书,http://em.21dtv.com/songs/60035349.mkv +范逸臣-情书,http://em.21dtv.com/songs/60035348.mkv +阿温-情书,http://em.21dtv.com/songs/60035347.mkv +阿杜-情书,http://em.21dtv.com/songs/60035346.mkv +张学友-情书(演唱会),http://em.21dtv.com/songs/60035345.mkv +泳儿-情书(演唱会),http://em.21dtv.com/songs/60035344.mkv +许志安-情书(演唱会),http://em.21dtv.com/songs/60035343.mkv +红蓝铅笔-情圣,http://em.21dtv.com/songs/60035334.mkv +陈淑桦-情深,http://em.21dtv.com/songs/60035280.mkv +文章-情商,http://em.21dtv.com/songs/60035279.mkv +孙行者-情殇,http://em.21dtv.com/songs/60035278.mkv +段千寻-情殇,http://em.21dtv.com/songs/60035277.mkv +张秀卿-情伤,http://em.21dtv.com/songs/60035275.mkv +许强-情伤,http://em.21dtv.com/songs/60035274.mkv +晓月-情伤,http://em.21dtv.com/songs/60035273.mkv +彭羚-清水,http://em.21dtv.com/songs/60034898.mkv +光良-清水,http://em.21dtv.com/songs/60034897.mkv +屠洪纲-倾诉,http://em.21dtv.com/songs/60034845.mkv +黑色饼干-轻松,http://em.21dtv.com/songs/60034818.mkv +吴淑敏-琴声,http://em.21dtv.com/songs/60034627.mkv +萨顶顶-琴伤,http://em.21dtv.com/songs/60034626.mkv +谢金燕-呛声,http://em.21dtv.com/songs/60034412.mkv +罗百吉-呛声,http://em.21dtv.com/songs/60034411.mkv +5566-枪声,http://em.21dtv.com/songs/60034370.mkv +陈茂丰+詹曼铃-签诗,http://em.21dtv.com/songs/60034264.mkv +蔡秋凤-签诗,http://em.21dtv.com/songs/60034263.mkv +卓依婷-牵手,http://em.21dtv.com/songs/60034231.mkv +张惠妹-牵手,http://em.21dtv.com/songs/60034230.mkv +苏芮-牵手,http://em.21dtv.com/songs/60034229.mkv +李嘉-牵手,http://em.21dtv.com/songs/60034228.mkv +金悦-牵手,http://em.21dtv.com/songs/60034227.mkv +高向鹏+方怡萍-牵手,http://em.21dtv.com/songs/60034226.mkv +高歌-牵手,http://em.21dtv.com/songs/60034225.mkv +董文华-牵手,http://em.21dtv.com/songs/60034224.mkv +梁静茹-其实,http://em.21dtv.com/songs/60033867.mkv +李蕙敏-其实,http://em.21dtv.com/songs/60033866.mkv +圣诞老人不在家的驯鹿-情人,http://em.21dtv.com/songs/60127875.mkv +叶德娴-情人LIFT,http://em.21dtv.com/songs/60092429.mkv +邓小巧-强弱,http://em.21dtv.com/songs/60129653.mkv +郑融-亲热,http://em.21dtv.com/songs/60122176.mkv +古巨基-情人,http://em.21dtv.com/songs/60107560.mkv +潘嘉丽-情人,http://em.21dtv.com/songs/60102498.mkv +SHINE-情人,http://em.21dtv.com/songs/60096797.mkv +谢安琪-情人,http://em.21dtv.com/songs/60096796.mkv +詹雅雯+王江发-情人,http://em.21dtv.com/songs/60080760.mkv +姜木-情人,http://em.21dtv.com/songs/60077246.mkv +刘一祯-亲仁,http://em.21dtv.com/songs/60077188.mkv +黄耀明-强人(演唱会),http://em.21dtv.com/songs/60077159.mkv +邓紫棋-情人(演唱会),http://em.21dtv.com/songs/60064743.mkv +刘子千-亲人,http://em.21dtv.com/songs/60062685.mkv +杨林-情人,http://em.21dtv.com/songs/60035174.mkv +潘美辰-情人,http://em.21dtv.com/songs/60035173.mkv +黄品源-情人,http://em.21dtv.com/songs/60035172.mkv +黄家强-情人,http://em.21dtv.com/songs/60035171.mkv +韩红-情人,http://em.21dtv.com/songs/60035170.mkv +杜德伟-情人,http://em.21dtv.com/songs/60035169.mkv +刀郎-情人,http://em.21dtv.com/songs/60035168.mkv +BEYOND-情人,http://em.21dtv.com/songs/60035167.mkv +朱孝天-情人(演唱会),http://em.21dtv.com/songs/60035165.mkv +张学友-情人(演唱会),http://em.21dtv.com/songs/60035164.mkv +谭咏麟-情人(演唱会),http://em.21dtv.com/songs/60035163.mkv +黄家强-情人(演唱会),http://em.21dtv.com/songs/60035162.mkv +BEYOND-情人(演唱会),http://em.21dtv.com/songs/60035161.mkv +郁钧剑-亲人,http://em.21dtv.com/songs/60034612.mkv +罗时丰-亲人,http://em.21dtv.com/songs/60034611.mkv +丁当-亲人,http://em.21dtv.com/songs/60034610.mkv +钟汉良-亲热,http://em.21dtv.com/songs/60034609.mkv +罗文-强人,http://em.21dtv.com/songs/60034379.mkv +王铮亮-球球,http://em.21dtv.com/songs/60131681.mkv +张平-祈求,http://em.21dtv.com/songs/60130310.mkv +王铮亮-球球,http://em.21dtv.com/songs/60128242.mkv +祝美美-秋千,http://em.21dtv.com/songs/60125988.mkv +姜育恒-牵情,http://em.21dtv.com/songs/60123815.mkv +夏拉-气球,http://em.21dtv.com/songs/60117634.mkv +严爵+Peace-轻轻,http://em.21dtv.com/songs/60114371.mkv +严爵-轻轻,http://em.21dtv.com/songs/60114370.mkv +颜志聪-浅秋,http://em.21dtv.com/songs/60114259.mkv +王晓敏-情阙,http://em.21dtv.com/songs/60112106.mkv +蔡晓-求签,http://em.21dtv.com/songs/60111390.mkv +孙楠-千秋,http://em.21dtv.com/songs/60107653.mkv +银临-情囚,http://em.21dtv.com/songs/60104517.mkv +杨子锋-悄悄,http://em.21dtv.com/songs/60101653.mkv +本兮-轻轻,http://em.21dtv.com/songs/60100104.mkv +李佳薇-强求,http://em.21dtv.com/songs/60099298.mkv +王冠逸-浅浅,http://em.21dtv.com/songs/60096745.mkv +秦杨-恰恰,http://em.21dtv.com/songs/60095830.mkv +阿悄-悄悄,http://em.21dtv.com/songs/60095229.mkv +苏永康-欠缺,http://em.21dtv.com/songs/60091942.mkv +王菀之+张敬轩-汽球,http://em.21dtv.com/songs/60091729.mkv +彝人制造-抢亲,http://em.21dtv.com/songs/60091169.mkv +奥杰阿格-抢亲,http://em.21dtv.com/songs/60090873.mkv +张俐敏-请求,http://em.21dtv.com/songs/60089849.mkv +许志安-气球,http://em.21dtv.com/songs/60088645.mkv +李国祥-亲情(演唱会),http://em.21dtv.com/songs/60083636.mkv +陈僖仪-千秋,http://em.21dtv.com/songs/60080100.mkv +吕珊+胡美仪+苏珊-亲情(演唱会),http://em.21dtv.com/songs/60077186.mkv +回音哥-芊芊,http://em.21dtv.com/songs/60077140.mkv +江宏恩-祈求,http://em.21dtv.com/songs/60077124.mkv +郎军-祈求,http://em.21dtv.com/songs/60066227.mkv +黄耀明-亲情(演唱会),http://em.21dtv.com/songs/60064726.mkv +罗桦-忏情(演唱会),http://em.21dtv.com/songs/60064045.mkv +CLOWN-牵牵,http://em.21dtv.com/songs/60061987.mkv +佚名-劝情(无原唱),http://em.21dtv.com/songs/60035954.mkv +苏慧伦-圈圈,http://em.21dtv.com/songs/60035863.mkv +旺福乐团-圈圈(演唱会)(无原唱),http://em.21dtv.com/songs/60035862.mkv +翁立友-求签,http://em.21dtv.com/songs/60035799.mkv +王秀琳-求签,http://em.21dtv.com/songs/60035798.mkv +谢霆锋-秋千,http://em.21dtv.com/songs/60035692.mkv +萧煌奇-秋千,http://em.21dtv.com/songs/60035691.mkv +范玮琪-秋千,http://em.21dtv.com/songs/60035690.mkv +陈倩倩-秋千,http://em.21dtv.com/songs/60035689.mkv +ZERO-请求,http://em.21dtv.com/songs/60035602.mkv +王杰-情却,http://em.21dtv.com/songs/60035158.mkv +佚名-亲情,http://em.21dtv.com/songs/60034606.mkv +洪百慧-亲情,http://em.21dtv.com/songs/60034605.mkv +郑伊健-亲情(演唱会),http://em.21dtv.com/songs/60034604.mkv +群星-亲情(演唱会),http://em.21dtv.com/songs/60034603.mkv +罗文-亲情(演唱会),http://em.21dtv.com/songs/60034602.mkv +雷安娜-亲情(演唱会),http://em.21dtv.com/songs/60034601.mkv +佚名-亲亲,http://em.21dtv.com/songs/60034581.mkv +林佑威-亲亲,http://em.21dtv.com/songs/60034580.mkv +梁静茹-亲亲,http://em.21dtv.com/songs/60034579.mkv +ELLA-蔷蔷,http://em.21dtv.com/songs/60034385.mkv +凤飞飞-牵情,http://em.21dtv.com/songs/60034218.mkv +许志安-汽球(演唱会),http://em.21dtv.com/songs/60034034.mkv +容祖儿-弃权,http://em.21dtv.com/songs/60034033.mkv +许哲佩-气球,http://em.21dtv.com/songs/60034026.mkv +东方神起-气球,http://em.21dtv.com/songs/60034025.mkv +张雨生-祈求,http://em.21dtv.com/songs/60033972.mkv +郭富城-祈求,http://em.21dtv.com/songs/60033971.mkv +大豪(黄昱豪)-期盼,http://em.21dtv.com/songs/60135088.mkv +田跃君-奇葩,http://em.21dtv.com/songs/60132756.mkv +刘海辰-期盼,http://em.21dtv.com/songs/60127776.mkv +王中平-气魄,http://em.21dtv.com/songs/60127190.mkv +刘玉昌-期盼,http://em.21dtv.com/songs/60119307.mkv +晓月-秋萍,http://em.21dtv.com/songs/60105942.mkv +阿悄-奇葩,http://em.21dtv.com/songs/60099570.mkv +李俊杰-欺骗,http://em.21dtv.com/songs/60095305.mkv +女子十二乐坊-七拍,http://em.21dtv.com/songs/60089768.mkv +王冰峰-祈盼,http://em.21dtv.com/songs/60085579.mkv +连诗雅-起跑,http://em.21dtv.com/songs/60071045.mkv +尚雯婕-气泡,http://em.21dtv.com/songs/60069709.mkv +苏晴-旗袍,http://em.21dtv.com/songs/60066228.mkv +詹雅雯-情批,http://em.21dtv.com/songs/60035151.mkv +苏路-情批,http://em.21dtv.com/songs/60035150.mkv +张楠-起跑,http://em.21dtv.com/songs/60034019.mkv +许巧盈-欺骗(无原唱),http://em.21dtv.com/songs/60033852.mkv +王博轼-青鸟,http://em.21dtv.com/songs/60132716.mkv +陈明喜-囚鸟,http://em.21dtv.com/songs/60129741.mkv +马雨梵-情鸟,http://em.21dtv.com/songs/60128607.mkv +陈明憙Jocelyn-囚鸟,http://em.21dtv.com/songs/60128539.mkv +ASA-千年,http://em.21dtv.com/songs/60126512.mkv +弘诺方舟-七年,http://em.21dtv.com/songs/60122701.mkv +王旭鹏-请你,http://em.21dtv.com/songs/60121917.mkv +洪杰-囚鸟,http://em.21dtv.com/songs/60120711.mkv +李霞儿-囚鸟,http://em.21dtv.com/songs/60112768.mkv +胡艾莲-七年,http://em.21dtv.com/songs/60107144.mkv +姜玉阳-千年,http://em.21dtv.com/songs/60102101.mkv +王筝-千年,http://em.21dtv.com/songs/60091726.mkv +明骏女孩-千年,http://em.21dtv.com/songs/60091266.mkv +陈僖仪-欠你,http://em.21dtv.com/songs/60080101.mkv +郁可唯-囚鸟,http://em.21dtv.com/songs/60080045.mkv +温岚-囚鸟,http://em.21dtv.com/songs/60080005.mkv +邓紫琪-囚鸟,http://em.21dtv.com/songs/60077293.mkv +田馥甄-囚鸟,http://em.21dtv.com/songs/60066258.mkv +冷漠-情奴,http://em.21dtv.com/songs/60066246.mkv +陶晶莹-瘸鸟,http://em.21dtv.com/songs/60035974.mkv +张国荣-取暖,http://em.21dtv.com/songs/60035826.mkv +李韦-取暖,http://em.21dtv.com/songs/60035825.mkv +王雪-求你,http://em.21dtv.com/songs/60035791.mkv +太极乐队-求你,http://em.21dtv.com/songs/60035790.mkv +彭羚-囚鸟,http://em.21dtv.com/songs/60035768.mkv +张宇+彭羚-囚鸟(演唱会),http://em.21dtv.com/songs/60035767.mkv +苏勒亚其其格-情奴,http://em.21dtv.com/songs/60035147.mkv +陈百潭-情难(无原唱),http://em.21dtv.com/songs/60035110.mkv +许巍-青鸟,http://em.21dtv.com/songs/60034760.mkv +陈威全-青鸟,http://em.21dtv.com/songs/60034759.mkv +陈慧琳-青鸟,http://em.21dtv.com/songs/60034758.mkv +5566-青鸟,http://em.21dtv.com/songs/60034757.mkv +陈慧琳-青鸟(演唱会),http://em.21dtv.com/songs/60034756.mkv +苏永康-亲您,http://em.21dtv.com/songs/60034575.mkv +苏永康-亲你(演唱会),http://em.21dtv.com/songs/60034574.mkv +郭富城-砌你,http://em.21dtv.com/songs/60034039.mkv +郭富城-砌你(演唱会),http://em.21dtv.com/songs/60034038.mkv +方力申+邓丽欣-七年,http://em.21dtv.com/songs/60033756.mkv +谭维维-取墨,http://em.21dtv.com/songs/60129622.mkv +白敬亭+李宏毅+丁冠森+赵文龙-青茫,http://em.21dtv.com/songs/60121971.mkv +云菲菲-清明,http://em.21dtv.com/songs/60121351.mkv +潘裕文-亲密,http://em.21dtv.com/songs/60117013.mkv +高原-清明,http://em.21dtv.com/songs/60109046.mkv +时金钰-穷忙,http://em.21dtv.com/songs/60106894.mkv +翁汕汕-秋梦,http://em.21dtv.com/songs/60106203.mkv +阿兰-阡陌,http://em.21dtv.com/songs/60103648.mkv +张智霖-情魔,http://em.21dtv.com/songs/60077244.mkv +艳阳天-秋梦,http://em.21dtv.com/songs/60069742.mkv +郑嘉嘉-情谜,http://em.21dtv.com/songs/60066245.mkv +康然-秋梦,http://em.21dtv.com/songs/60062543.mkv +七郎-娶某,http://em.21dtv.com/songs/60035831.mkv +佚名-情谜,http://em.21dtv.com/songs/60035105.mkv +李龙基-情谜(演唱会),http://em.21dtv.com/songs/60035104.mkv +佚名-情迷,http://em.21dtv.com/songs/60035099.mkv +李龙基-情迷,http://em.21dtv.com/songs/60035098.mkv +邓丽君-情迷,http://em.21dtv.com/songs/60035097.mkv +洪百慧+王江发-情梦,http://em.21dtv.com/songs/60035093.mkv +邱兰芬-情梦(无原唱),http://em.21dtv.com/songs/60035092.mkv +童唱-清明,http://em.21dtv.com/songs/60034887.mkv +林忆莲-倾慕(演唱会),http://em.21dtv.com/songs/60034844.mkv +阿朵-千面,http://em.21dtv.com/songs/60034112.mkv +梁心颐-奇妙,http://em.21dtv.com/songs/60033953.mkv +梅朵-情路,http://em.21dtv.com/songs/60135459.mkv +罗时丰-情泪,http://em.21dtv.com/songs/60134090.mkv +江东-秋恋,http://em.21dtv.com/songs/60133916.mkv +宋森森-情泪,http://em.21dtv.com/songs/60133581.mkv +童可可-泣灵,http://em.21dtv.com/songs/60129464.mkv +郭保成-情路,http://em.21dtv.com/songs/60117283.mkv +舒晨露-情郎,http://em.21dtv.com/songs/60116216.mkv +徐梦晗-清流,http://em.21dtv.com/songs/60115946.mkv +小曲儿-起灵,http://em.21dtv.com/songs/60107683.mkv +陈玉建-情泪,http://em.21dtv.com/songs/60098882.mkv +黑龙-情龙,http://em.21dtv.com/songs/60089079.mkv +四分卫-起来,http://em.21dtv.com/songs/60086759.mkv +五月天-起来(演唱会),http://em.21dtv.com/songs/60083601.mkv +楼宏章+司徒兰芳-情路,http://em.21dtv.com/songs/60077240.mkv +张锦华-情路(无原唱),http://em.21dtv.com/songs/60076043.mkv +吴介贤-晴朗(演唱会),http://em.21dtv.com/songs/60072321.mkv +亦帆-全裸,http://em.21dtv.com/songs/60071071.mkv +金智娟-秋凉,http://em.21dtv.com/songs/60035686.mkv +曹方-秋凉,http://em.21dtv.com/songs/60035685.mkv +许巍-晴朗,http://em.21dtv.com/songs/60035484.mkv +老狼-晴朗(演唱会),http://em.21dtv.com/songs/60035483.mkv +龙飘飘-情旅,http://em.21dtv.com/songs/60035087.mkv +佚名-情旅(无原唱),http://em.21dtv.com/songs/60035086.mkv +刘育绫-情路,http://em.21dtv.com/songs/60035068.mkv +廖丽雅-情路(无原唱),http://em.21dtv.com/songs/60035067.mkv +黑龙-情笼,http://em.21dtv.com/songs/60035066.mkv +叶启田-情泪,http://em.21dtv.com/songs/60035060.mkv +方瑞娥+高向鹏-情泪,http://em.21dtv.com/songs/60035059.mkv +李克勤-情牢,http://em.21dtv.com/songs/60035058.mkv +许志安-前路,http://em.21dtv.com/songs/60034282.mkv +陈晓东-起来,http://em.21dtv.com/songs/60034016.mkv +庾澄庆-缺口(演唱会),http://em.21dtv.com/songs/60127955.mkv +陈翔-轻狂,http://em.21dtv.com/songs/60133052.mkv +陈瑞-情坎,http://em.21dtv.com/songs/60106411.mkv +张津涤-情坎,http://em.21dtv.com/songs/60102231.mkv +庾澄庆-缺口,http://em.21dtv.com/songs/60102189.mkv +蒋雅文+李逸朗-倾渴,http://em.21dtv.com/songs/60093116.mkv +陈柏宇-晴空,http://em.21dtv.com/songs/60083652.mkv +隋超-晴空,http://em.21dtv.com/songs/60077264.mkv +林凡-缺口,http://em.21dtv.com/songs/60069745.mkv +泳儿-清空,http://em.21dtv.com/songs/60069733.mkv +何韵诗-青空,http://em.21dtv.com/songs/60061513.mkv +齐秦-缺口,http://em.21dtv.com/songs/60035962.mkv +黄贯中-缺口,http://em.21dtv.com/songs/60035961.mkv +蔡琴-缺口,http://em.21dtv.com/songs/60035960.mkv +孙耀威-情狂(无原唱),http://em.21dtv.com/songs/60035054.mkv +冷漠-情坎,http://em.21dtv.com/songs/60035052.mkv +柯言-情剑,http://em.21dtv.com/songs/60122914.mkv +李佳乐-奇迹,http://em.21dtv.com/songs/60119649.mkv +高淑珍-勤家,http://em.21dtv.com/songs/60116398.mkv +颜伟-情结,http://em.21dtv.com/songs/60113085.mkv +VIXX-奇迹,http://em.21dtv.com/songs/60107453.mkv +许茹芸-奇迹,http://em.21dtv.com/songs/60099498.mkv +风萧萧-情结,http://em.21dtv.com/songs/60095161.mkv +花树-秋季,http://em.21dtv.com/songs/60094261.mkv +戴梅君-牵教,http://em.21dtv.com/songs/60093741.mkv +吴浩康-情诫,http://em.21dtv.com/songs/60092457.mkv +新宝岛康乐队-起驾,http://em.21dtv.com/songs/60087911.mkv +淘小淘-奇迹,http://em.21dtv.com/songs/60085578.mkv +萧丽珠-逎街,http://em.21dtv.com/songs/60080890.mkv +李克勤+香港儿童合唱团-前进,http://em.21dtv.com/songs/60080615.mkv +李克勤-前进,http://em.21dtv.com/songs/60079941.mkv +邓紫琪-奇迹,http://em.21dtv.com/songs/60077121.mkv +陈僖仪-全景,http://em.21dtv.com/songs/60072329.mkv +张秀卿+江志丰-亲家,http://em.21dtv.com/songs/60064722.mkv +郑嘉颖+黄宗泽-强剑,http://em.21dtv.com/songs/60061504.mkv +叶文辉-去尽,http://em.21dtv.com/songs/60035842.mkv +陈慧琳-请柬,http://em.21dtv.com/songs/60035526.mkv +SUMMER GRACE-情尽,http://em.21dtv.com/songs/60035051.mkv +王菲-情诫,http://em.21dtv.com/songs/60035050.mkv +王菲-情诫(演唱会),http://em.21dtv.com/songs/60035049.mkv +陈奕迅-情诫(演唱会),http://em.21dtv.com/songs/60035048.mkv +温兆伦-情节,http://em.21dtv.com/songs/60035047.mkv +雷光夏-情节,http://em.21dtv.com/songs/60035046.mkv +爱乐公社-情剪,http://em.21dtv.com/songs/60035045.mkv +蓝雨-情茧,http://em.21dtv.com/songs/60035044.mkv +李湘-清洁,http://em.21dtv.com/songs/60034882.mkv +李逸朗+蒋雅文-倾偈,http://em.21dtv.com/songs/60034843.mkv +胡兵-前进,http://em.21dtv.com/songs/60034278.mkv +TWINS-千金,http://em.21dtv.com/songs/60034090.mkv +杨千嬅+黄耀明-千金(演唱会),http://em.21dtv.com/songs/60034089.mkv +TWINS-千金(演唱会),http://em.21dtv.com/songs/60034088.mkv +越剧-起解,http://em.21dtv.com/songs/60034015.mkv +新宝岛康乐队-起架,http://em.21dtv.com/songs/60034014.mkv +左小岸-奇迹,http://em.21dtv.com/songs/60033949.mkv +钟汉良-奇迹,http://em.21dtv.com/songs/60033948.mkv +张宇-奇迹,http://em.21dtv.com/songs/60033947.mkv +女子十二乐坊-奇迹,http://em.21dtv.com/songs/60033946.mkv +农夫-奇迹,http://em.21dtv.com/songs/60033945.mkv +满江-奇迹,http://em.21dtv.com/songs/60033944.mkv +伦永亮-奇迹,http://em.21dtv.com/songs/60033943.mkv +金美儿-奇迹,http://em.21dtv.com/songs/60033942.mkv +韩雪-奇迹,http://em.21dtv.com/songs/60033941.mkv +宝儿-奇迹,http://em.21dtv.com/songs/60033940.mkv +芭比-奇迹,http://em.21dtv.com/songs/60033939.mkv +詹曼玲-奇迹(无原唱),http://em.21dtv.com/songs/60033938.mkv +MSN-奇迹(无原唱),http://em.21dtv.com/songs/60033937.mkv +叶启田-琼花,http://em.21dtv.com/songs/60134992.mkv +李文华-求婚,http://em.21dtv.com/songs/60132536.mkv +朴信惠-漆黑,http://em.21dtv.com/songs/60129219.mkv +张宇轩-启航,http://em.21dtv.com/songs/60121651.mkv +陈淑萍+庄振凯-情花,http://em.21dtv.com/songs/60119019.mkv +张军-情花,http://em.21dtv.com/songs/60117719.mkv +周旋-启航,http://em.21dtv.com/songs/60110085.mkv +小乔-情画,http://em.21dtv.com/songs/60103224.mkv +霍尊-恰好,http://em.21dtv.com/songs/60102922.mkv +徐良+孙雨幽-情话,http://em.21dtv.com/songs/60100871.mkv +郑秀文-起哄,http://em.21dtv.com/songs/60096772.mkv +白冰冰-情火,http://em.21dtv.com/songs/60095818.mkv +方顺吉+陈韦霖-琼花,http://em.21dtv.com/songs/60086793.mkv +徐良+孙羽幽-情话,http://em.21dtv.com/songs/60083661.mkv +马常宝-情恨,http://em.21dtv.com/songs/60083660.mkv +徐良-情话,http://em.21dtv.com/songs/60080018.mkv +林姗-琼花,http://em.21dtv.com/songs/60077278.mkv +朴信惠-漆黑,http://em.21dtv.com/songs/60077111.mkv +本兮-情花,http://em.21dtv.com/songs/60066244.mkv +凤凰传奇-秋画,http://em.21dtv.com/songs/60061525.mkv +周华健-求婚,http://em.21dtv.com/songs/60035785.mkv +赵咏华-求婚,http://em.21dtv.com/songs/60035784.mkv +周华健-求婚(演唱会),http://em.21dtv.com/songs/60035783.mkv +许巍-秋海,http://em.21dtv.com/songs/60035683.mkv +王建杰-琼花,http://em.21dtv.com/songs/60035636.mkv +刘德华-情话,http://em.21dtv.com/songs/60035039.mkv +袁小迪-情画,http://em.21dtv.com/songs/60035038.mkv +刘畊宏-情画,http://em.21dtv.com/songs/60035037.mkv +后弦-情画,http://em.21dtv.com/songs/60035036.mkv +龙飘飘-情花,http://em.21dtv.com/songs/60035033.mkv +邓丽君-情花,http://em.21dtv.com/songs/60035032.mkv +蔡小虎-情恨,http://em.21dtv.com/songs/60035031.mkv +李明洋+邱芸子-情海,http://em.21dtv.com/songs/60035025.mkv +黄凯芹-情海(演唱会),http://em.21dtv.com/songs/60035024.mkv +高向鹏-情海(无原唱),http://em.21dtv.com/songs/60035023.mkv +周传雄-青花,http://em.21dtv.com/songs/60034742.mkv +佚名-巧合,http://em.21dtv.com/songs/60034439.mkv +蔡幸娟-巧合,http://em.21dtv.com/songs/60034438.mkv +古巨基-情歌王,http://em.21dtv.com/songs/60087507.mkv +林慧省-情歌,http://em.21dtv.com/songs/60135428.mkv +排骨教主-千古,http://em.21dtv.com/songs/60135304.mkv +郑俊峰+孙一然-牵挂,http://em.21dtv.com/songs/60134299.mkv +赵乃吉-情歌,http://em.21dtv.com/songs/60134259.mkv +钟彩媚-牵挂,http://em.21dtv.com/songs/60129690.mkv +简弘亦-情歌,http://em.21dtv.com/songs/60128290.mkv +大庆小芳-情关,http://em.21dtv.com/songs/60120434.mkv +许嵩-千古,http://em.21dtv.com/songs/60118039.mkv +老曹-牵挂,http://em.21dtv.com/songs/60115338.mkv +许嵩-千古,http://em.21dtv.com/songs/60114771.mkv +毕程漉-情歌,http://em.21dtv.com/songs/60113766.mkv +刘润洁-情歌,http://em.21dtv.com/songs/60110885.mkv +胡耀华-牵挂,http://em.21dtv.com/songs/60108825.mkv +杨卿俪+刘伯勋-牵挂,http://em.21dtv.com/songs/60108603.mkv +包启宁-牵挂,http://em.21dtv.com/songs/60106655.mkv +金池-牵挂,http://em.21dtv.com/songs/60100521.mkv +陈汉-牵挂,http://em.21dtv.com/songs/60096532.mkv +张曼-情歌,http://em.21dtv.com/songs/60096280.mkv +黄仲昆-牵挂,http://em.21dtv.com/songs/60089025.mkv +信-牵挂,http://em.21dtv.com/songs/60087342.mkv +谢金燕-情歌,http://em.21dtv.com/songs/60077236.mkv +林泰燊-情歌,http://em.21dtv.com/songs/60077235.mkv +翦程-牵挂,http://em.21dtv.com/songs/60077141.mkv +刘娜萍-情关,http://em.21dtv.com/songs/60068598.mkv +陈茂丰-情关,http://em.21dtv.com/songs/60067340.mkv +蔡小虎-情关,http://em.21dtv.com/songs/60067339.mkv +左小祖咒-钱歌,http://em.21dtv.com/songs/60067324.mkv +马志锋-情歌,http://em.21dtv.com/songs/60064740.mkv +容中尔甲-情歌,http://em.21dtv.com/songs/60062887.mkv +呼斯楞-情歌,http://em.21dtv.com/songs/60062459.mkv +陈依婷-情蛊,http://em.21dtv.com/songs/60062292.mkv +陈思安+蔡小虎-牵挂,http://em.21dtv.com/songs/60062272.mkv +雪村-囚歌,http://em.21dtv.com/songs/60035766.mkv +许茹芸-秋歌,http://em.21dtv.com/songs/60035682.mkv +甄妮-秋歌(演唱会),http://em.21dtv.com/songs/60035681.mkv +詹曼铃-情关,http://em.21dtv.com/songs/60035014.mkv +佚名-情关,http://em.21dtv.com/songs/60035013.mkv +郭奖+金素梅-情关,http://em.21dtv.com/songs/60035012.mkv +陈淑桦-情关,http://em.21dtv.com/songs/60035011.mkv +这位太太-情歌,http://em.21dtv.com/songs/60034996.mkv +叶树茵-情歌,http://em.21dtv.com/songs/60034995.mkv +龙千玉-情歌,http://em.21dtv.com/songs/60034994.mkv +刘德华-情歌,http://em.21dtv.com/songs/60034993.mkv +梁静茹-情歌,http://em.21dtv.com/songs/60034992.mkv +李嘉-情歌,http://em.21dtv.com/songs/60034991.mkv +陈珊妮-情歌,http://em.21dtv.com/songs/60034990.mkv +陈启泰-情歌,http://em.21dtv.com/songs/60034989.mkv +侧田-情歌,http://em.21dtv.com/songs/60034988.mkv +侧田-情歌(演唱会),http://em.21dtv.com/songs/60034987.mkv +草蜢-情歌(演唱会),http://em.21dtv.com/songs/60034986.mkv +邱淑君-情歌(无原唱),http://em.21dtv.com/songs/60034985.mkv +佚名-情感,http://em.21dtv.com/songs/60034973.mkv +五月天-轻功,http://em.21dtv.com/songs/60034798.mkv +李圣杰-切歌,http://em.21dtv.com/songs/60034456.mkv +佚名-樵歌(无原唱),http://em.21dtv.com/songs/60034434.mkv +新宝岛康乐队-钱歌,http://em.21dtv.com/songs/60034315.mkv +许慧欣-牵挂,http://em.21dtv.com/songs/60034204.mkv +阿信-牵挂,http://em.21dtv.com/songs/60034203.mkv +伍佰-牵挂,http://em.21dtv.com/songs/60034202.mkv +刘尊-牵挂,http://em.21dtv.com/songs/60034200.mkv +陈松伶-牵挂,http://em.21dtv.com/songs/60034199.mkv +伍佰-牵挂(演唱会),http://em.21dtv.com/songs/60034198.mkv +高向鹏-牵挂(无原唱),http://em.21dtv.com/songs/60034197.mkv +怪脚团体-奇怪,http://em.21dtv.com/songs/60033932.mkv +罗嘉良+张可颐-奇哥,http://em.21dtv.com/songs/60033930.mkv +徐承邦-秋风,http://em.21dtv.com/songs/60135286.mkv +苏珮卿-起飞,http://em.21dtv.com/songs/60126110.mkv +晓月-秋枫,http://em.21dtv.com/songs/60125640.mkv +孙露-屈服,http://em.21dtv.com/songs/60115820.mkv +杨皓天-前方,http://em.21dtv.com/songs/60106006.mkv +龙千玉-轻风,http://em.21dtv.com/songs/60108195.mkv +四个朋友-起飞,http://em.21dtv.com/songs/60106731.mkv +大合唱-起飞,http://em.21dtv.com/songs/60104003.mkv +李尤+李绍继-求佛,http://em.21dtv.com/songs/60100142.mkv +李尚尚-起飞,http://em.21dtv.com/songs/60100141.mkv +朱贝贝-情妇,http://em.21dtv.com/songs/60096800.mkv +谭晶-秦风,http://em.21dtv.com/songs/60096771.mkv +张新-求佛,http://em.21dtv.com/songs/60091110.mkv +张宇-起风,http://em.21dtv.com/songs/60091086.mkv +潘秀琼-秋风,http://em.21dtv.com/songs/60090061.mkv +阿肆-缺乏,http://em.21dtv.com/songs/60086777.mkv +杨皓天-前方,http://em.21dtv.com/songs/60085590.mkv +李虎-秋风,http://em.21dtv.com/songs/60083681.mkv +刘佳铭-起风,http://em.21dtv.com/songs/60081662.mkv +群星-起飞,http://em.21dtv.com/songs/60071044.mkv +李晓-起飞,http://em.21dtv.com/songs/60068572.mkv +刘威煌-潜伏(HD高清),http://em.21dtv.com/songs/60061500.mkv +颜福伟+彭家丽-去飞,http://em.21dtv.com/songs/60035839.mkv +马郁-屈服,http://em.21dtv.com/songs/60035815.mkv +誓言-求佛,http://em.21dtv.com/songs/60035782.mkv +黄思婷-秋赋,http://em.21dtv.com/songs/60035680.mkv +梁玉嵘-秋坟,http://em.21dtv.com/songs/60035660.mkv +袁小迪-秋分,http://em.21dtv.com/songs/60035659.mkv +傅振辉+黄思婷-情份,http://em.21dtv.com/songs/60034972.mkv +林宏铭-情份(无原唱),http://em.21dtv.com/songs/60034971.mkv +刘振宇-潜伏,http://em.21dtv.com/songs/60034328.mkv +佚名-前锋,http://em.21dtv.com/songs/60034276.mkv +官恩娜-千帆,http://em.21dtv.com/songs/60034068.mkv +孙悦-起飞,http://em.21dtv.com/songs/60034011.mkv +丁文琪-起飞,http://em.21dtv.com/songs/60034010.mkv +黄勇+若惜-情儿,http://em.21dtv.com/songs/60109061.mkv +[Group] +groupName=十六万歌曲MV等 - 12 +黎瑞恩-亲恩,http://em.21dtv.com/songs/60034566.mkv +洪百慧-期待,http://em.21dtv.com/songs/60135500.mkv +哈琳-祈祷,http://em.21dtv.com/songs/60135064.mkv +贺敬轩-前度,http://em.21dtv.com/songs/60134248.mkv +秦御峰-秋蝶,http://em.21dtv.com/songs/60123056.mkv +胡铁-期待,http://em.21dtv.com/songs/60122045.mkv +刘斯远-情敌,http://em.21dtv.com/songs/60119294.mkv +舒清菊-秋蝶,http://em.21dtv.com/songs/60117989.mkv +冷漠-情动,http://em.21dtv.com/songs/60115019.mkv +崔兰花-期待,http://em.21dtv.com/songs/60109284.mkv +宋祖英-期待,http://em.21dtv.com/songs/60108446.mkv +汪苏泷-缺点,http://em.21dtv.com/songs/60106064.mkv +铃凯-起点,http://em.21dtv.com/songs/60105449.mkv +张津涤-情敌,http://em.21dtv.com/songs/60100863.mkv +林董-前度,http://em.21dtv.com/songs/60100222.mkv +Girl's Day-期待,http://em.21dtv.com/songs/60098998.mkv +李圣杰-取代,http://em.21dtv.com/songs/60091303.mkv +翁倩玉-祈祷,http://em.21dtv.com/songs/60090119.mkv +流苏-青灯,http://em.21dtv.com/songs/60085601.mkv +囚鸟-情毒,http://em.21dtv.com/songs/60083656.mkv +灯塔-情毒,http://em.21dtv.com/songs/60083655.mkv +邬祯琳-琴动,http://em.21dtv.com/songs/60083639.mkv +钟丽燕-期待,http://em.21dtv.com/songs/60077109.mkv +王祖成-期待,http://em.21dtv.com/songs/60072286.mkv +朱雅-前度,http://em.21dtv.com/songs/60071050.mkv +沙莎-祈祷,http://em.21dtv.com/songs/60071043.mkv +骆容溶+溶爸-起点,http://em.21dtv.com/songs/60068571.mkv +黄韵瑞-情毒,http://em.21dtv.com/songs/60067335.mkv +SUNNYHILL-祈祷,http://em.21dtv.com/songs/60066226.mkv +容中尔甲-祈祷,http://em.21dtv.com/songs/60062884.mkv +郑源-缺点,http://em.21dtv.com/songs/60035959.mkv +单仰萍+张咏梅-劝黛,http://em.21dtv.com/songs/60035947.mkv +刘尊-秋冬,http://em.21dtv.com/songs/60035657.mkv +豪记大合唱-情断,http://em.21dtv.com/songs/60034960.mkv +陈慧琳-情毒,http://em.21dtv.com/songs/60034959.mkv +彭羚-情动,http://em.21dtv.com/songs/60034958.mkv +柯以敏-情动,http://em.21dtv.com/songs/60034957.mkv +霍正奇-情敌,http://em.21dtv.com/songs/60034953.mkv +陈慧琳-倾倒,http://em.21dtv.com/songs/60034839.mkv +陈慧琳-倾倒(演唱会),http://em.21dtv.com/songs/60034838.mkv +蓝喆-切点,http://em.21dtv.com/songs/60034455.mkv +后弦-桥段,http://em.21dtv.com/songs/60034429.mkv +杨千嬅-悭d,http://em.21dtv.com/songs/60034262.mkv +佚名-牵动,http://em.21dtv.com/songs/60034196.mkv +谭咏麟+陈明-牵动,http://em.21dtv.com/songs/60034195.mkv +羽泉-起点,http://em.21dtv.com/songs/60034009.mkv +咻比嘟哗-起点,http://em.21dtv.com/songs/60034008.mkv +邓丽欣-起点,http://em.21dtv.com/songs/60034007.mkv +黄莺莺-起点(无原唱),http://em.21dtv.com/songs/60034006.mkv +卓依婷-祈祷,http://em.21dtv.com/songs/60033966.mkv +王杰+王韵婵-祈祷,http://em.21dtv.com/songs/60033965.mkv +李岗霖-祈祷,http://em.21dtv.com/songs/60033964.mkv +黄思婷-祈祷,http://em.21dtv.com/songs/60033963.mkv +陈明真+陆毅-祈祷(演唱会),http://em.21dtv.com/songs/60033962.mkv +张学友-期待,http://em.21dtv.com/songs/60033832.mkv +张敬轩-期待,http://em.21dtv.com/songs/60033831.mkv +尤雅-期待,http://em.21dtv.com/songs/60033830.mkv +佚名-期待,http://em.21dtv.com/songs/60033829.mkv +韦嘉-期待,http://em.21dtv.com/songs/60033827.mkv +王瑞霞-期待,http://em.21dtv.com/songs/60033826.mkv +林志颖-期待,http://em.21dtv.com/songs/60033825.mkv +橘色乐团-期待,http://em.21dtv.com/songs/60033824.mkv +凤飞飞-期待,http://em.21dtv.com/songs/60033823.mkv +戴娆-期待,http://em.21dtv.com/songs/60033822.mkv +大地乐团-期待,http://em.21dtv.com/songs/60033821.mkv +梁静茹-期待(演唱会),http://em.21dtv.com/songs/60033820.mkv +大地乐团-期待(演唱会),http://em.21dtv.com/songs/60033819.mkv +姚匡玉-期待(无原唱),http://em.21dtv.com/songs/60033818.mkv +施文彬-七刀,http://em.21dtv.com/songs/60033735.mkv +ENERGY-七 days(演唱会),http://em.21dtv.com/songs/60033727.mkv +刘昊霖-秋蝉,http://em.21dtv.com/songs/60134937.mkv +ACEMAX RED-启晨,http://em.21dtv.com/songs/60134628.mkv +陈轩羽-全场,http://em.21dtv.com/songs/60128553.mkv +李志-青春,http://em.21dtv.com/songs/60127024.mkv +大合唱-启程,http://em.21dtv.com/songs/60126736.mkv +轻乐队-青春,http://em.21dtv.com/songs/60126247.mkv +向世荣-青春,http://em.21dtv.com/songs/60122571.mkv +丁姵均-青春,http://em.21dtv.com/songs/60120263.mkv +萧敬腾-矜持,http://em.21dtv.com/songs/60118879.mkv +洪立-青春,http://em.21dtv.com/songs/60118746.mkv +张津涤-情痴,http://em.21dtv.com/songs/60113477.mkv +姚贝娜-矜持(HD),http://em.21dtv.com/songs/10012765.mkv +罗逻圣-青春,http://em.21dtv.com/songs/60108807.mkv +CHAY-はじめての気持ち,http://em.21dtv.com/songs/60100712.mkv +靳海涛-青春,http://em.21dtv.com/songs/60099606.mkv +沈庆-青春,http://em.21dtv.com/songs/60099362.mkv +林忆莲-前尘(新版),http://em.21dtv.com/songs/60096768.mkv +杨芳仪-秋蝉,http://em.21dtv.com/songs/60096758.mkv +毛宁+麦子杰-秋蝉,http://em.21dtv.com/songs/60094972.mkv +区瑞强-青葱,http://em.21dtv.com/songs/60092379.mkv +其他-秋缠,http://em.21dtv.com/songs/60089651.mkv +马长胜-清楚,http://em.21dtv.com/songs/60081666.mkv +张恒远-青春,http://em.21dtv.com/songs/60081583.mkv +韩红-青春,http://em.21dtv.com/songs/60080540.mkv +刘文正-秋蝉,http://em.21dtv.com/songs/60077279.mkv +董贞-情缠,http://em.21dtv.com/songs/60077233.mkv +陈奕迅-倾城(演唱会),http://em.21dtv.com/songs/60077221.mkv +山大车乐队-青春,http://em.21dtv.com/songs/60077197.mkv +陈楚生-青春,http://em.21dtv.com/songs/60077196.mkv +李志-青春(演唱会),http://em.21dtv.com/songs/60077195.mkv +BACK NUMBER-青い春,http://em.21dtv.com/songs/60077193.mkv +邰正宵-起初,http://em.21dtv.com/songs/60069708.mkv +久久-秋愁,http://em.21dtv.com/songs/60067354.mkv +渡り廊下走り队-青春のフラッグ,http://em.21dtv.com/songs/60067329.mkv +何韵诗-青葱,http://em.21dtv.com/songs/60061512.mkv +谢采妘-秋词,http://em.21dtv.com/songs/60035650.mkv +龙飘飘-秋词,http://em.21dtv.com/songs/60035649.mkv +高胜美-秋词,http://em.21dtv.com/songs/60035648.mkv +林静芳-秋词(伦巴),http://em.21dtv.com/songs/60035647.mkv +杨苏仪-秋蝉,http://em.21dtv.com/songs/60035644.mkv +小虎队-秋蝉,http://em.21dtv.com/songs/60035643.mkv +林佳蓉-秋蝉,http://em.21dtv.com/songs/60035642.mkv +费玉清-秋蝉,http://em.21dtv.com/songs/60035641.mkv +刘家昌-秋缠,http://em.21dtv.com/songs/60035640.mkv +佚名-清晨,http://em.21dtv.com/songs/60034864.mkv +刘美君-清晨(演唱会),http://em.21dtv.com/songs/60034863.mkv +薛之谦-倾城,http://em.21dtv.com/songs/60034831.mkv +许美静-倾城,http://em.21dtv.com/songs/60034830.mkv +尚雯婕-倾城,http://em.21dtv.com/songs/60034829.mkv +张秀卿-青春,http://em.21dtv.com/songs/60034659.mkv +A+ONE-青春,http://em.21dtv.com/songs/60034658.mkv +汪峰-青春(演唱会),http://em.21dtv.com/songs/60034657.mkv +陶晶莹-青春(演唱会),http://em.21dtv.com/songs/60034656.mkv +AT17-青春(演唱会),http://em.21dtv.com/songs/60034655.mkv +林志颖-芹菜,http://em.21dtv.com/songs/60034619.mkv +许嵩-浅唱,http://em.21dtv.com/songs/60034335.mkv +那英-乾脆,http://em.21dtv.com/songs/60034324.mkv +泽朗多吉-虔诚,http://em.21dtv.com/songs/60034309.mkv +林忆莲-前尘,http://em.21dtv.com/songs/60034267.mkv +林忆莲-前尘(演唱会),http://em.21dtv.com/songs/60034266.mkv +黄品冠-起床(演唱会),http://em.21dtv.com/songs/60034003.mkv +范玮琪-启程,http://em.21dtv.com/songs/60033998.mkv +范玮琪-启程(演唱会),http://em.21dtv.com/songs/60033997.mkv +水木年华-启程(HD演唱会),http://em.21dtv.com/songs/60033996.mkv +武阳-朹北人,http://em.21dtv.com/songs/60035769.mkv +陈洁仪-清白,http://em.21dtv.com/songs/60134409.mkv +陈淑桦-秋别,http://em.21dtv.com/songs/60094330.mkv +王菲-情变,http://em.21dtv.com/songs/60091741.mkv +阎维文-情杯,http://em.21dtv.com/songs/60090277.mkv +陈艾媚-牵绊,http://em.21dtv.com/songs/60088912.mkv +钟镇涛-情变,http://em.21dtv.com/songs/60085607.mkv +唐健-清白,http://em.21dtv.com/songs/60083648.mkv +储兰兰-前辈,http://em.21dtv.com/songs/60077148.mkv +阿良伟+张玉霞-前辈,http://em.21dtv.com/songs/60072298.mkv +卢凯彤-雀斑,http://em.21dtv.com/songs/60061529.mkv +郭峰-全部,http://em.21dtv.com/songs/60035869.mkv +陈慧娴-去吧(演唱会),http://em.21dtv.com/songs/60035835.mkv +高胜美-情病,http://em.21dtv.com/songs/60034935.mkv +郑秀文-情变,http://em.21dtv.com/songs/60034933.mkv +唐禹哲-情报,http://em.21dtv.com/songs/60034924.mkv +白冰冰+良一-情伴,http://em.21dtv.com/songs/60034923.mkv +刘若英-牵绊,http://em.21dtv.com/songs/60034191.mkv +林宸希-牵绊,http://em.21dtv.com/songs/60034190.mkv +后来者-囚爱,http://em.21dtv.com/songs/60115040.mkv +家蔚+冯圣雅-圈爱,http://em.21dtv.com/songs/60109275.mkv +周杰伦-窃爱,http://em.21dtv.com/songs/60109227.mkv +周杰伦-窃爱,http://em.21dtv.com/songs/60106706.mkv +肖琳-亲爱,http://em.21dtv.com/songs/60105306.mkv +モーニング娘。-わがまま気のまま爱のジョーク,http://em.21dtv.com/songs/60086389.mkv +陈佳喆-欠爱,http://em.21dtv.com/songs/60083618.mkv +黄勇深+漠凌兮-弃爱,http://em.21dtv.com/songs/60080994.mkv +六哲+蔡晓-劝爱,http://em.21dtv.com/songs/60077310.mkv +王麟-qq爱,http://em.21dtv.com/songs/60073780.mkv +詹曼铃-情爱,http://em.21dtv.com/songs/60071063.mkv +蔡健东+六哲-劝爱,http://em.21dtv.com/songs/60068611.mkv +解彬-乞爱,http://em.21dtv.com/songs/60068570.mkv +王雯-缺爱,http://em.21dtv.com/songs/60035958.mkv +王力宏-去爱,http://em.21dtv.com/songs/60035833.mkv +张信哲-求爱,http://em.21dtv.com/songs/60035771.mkv +田跃君-求爱,http://em.21dtv.com/songs/60035770.mkv +梁雁翎-情爱(演唱会),http://em.21dtv.com/songs/60034919.mkv +S翼乐团-qq爱,http://em.21dtv.com/songs/60004568.mkv +SWING-qq爱,http://em.21dtv.com/songs/60004567.mkv +文颖秋-胖子,http://em.21dtv.com/songs/60128034.mkv +周传雄-盆栽,http://em.21dtv.com/songs/60125309.mkv +魏晨-破绽,http://em.21dtv.com/songs/60120156.mkv +龙井组合-骗子,http://em.21dtv.com/songs/60077074.mkv +谢雨欣-破绽,http://em.21dtv.com/songs/60033686.mkv +孙燕姿-飘着,http://em.21dtv.com/songs/60033545.mkv +杨乃文-漂着,http://em.21dtv.com/songs/60033497.mkv +丁文琪-骗子,http://em.21dtv.com/songs/60033444.mkv +陈升-骗子,http://em.21dtv.com/songs/60033443.mkv +傅佩嘉-泡澡(无原唱),http://em.21dtv.com/songs/60033221.mkv +冯仲文-朋友,http://em.21dtv.com/songs/60127752.mkv +成泉-朋友,http://em.21dtv.com/songs/60115958.mkv +李清波-朋友,http://em.21dtv.com/songs/60115227.mkv +夏沙-泡影,http://em.21dtv.com/songs/60112593.mkv +周安-朋友,http://em.21dtv.com/songs/60107591.mkv +张平-朋友,http://em.21dtv.com/songs/60105841.mkv +徐子淳-飘·忆,http://em.21dtv.com/songs/60096833.mkv +谭咏麟+李克勤-朋友,http://em.21dtv.com/songs/60096498.mkv +杜奕衡+龙军-朋友,http://em.21dtv.com/songs/60094158.mkv +越剧-朋友,http://em.21dtv.com/songs/60088728.mkv +周杰伦-漂移,http://em.21dtv.com/songs/60087584.mkv +龙井组合-朋友,http://em.21dtv.com/songs/60086749.mkv +AKB48-仆のyell,http://em.21dtv.com/songs/60077103.mkv +彝人制造-朋友,http://em.21dtv.com/songs/60064685.mkv +周杰伦-飘移,http://em.21dtv.com/songs/60033544.mkv +周迅-飘摇,http://em.21dtv.com/songs/60033543.mkv +周华健-朋友,http://em.21dtv.com/songs/60033317.mkv +臧天朔-朋友,http://em.21dtv.com/songs/60033316.mkv +叶倩文-朋友,http://em.21dtv.com/songs/60033315.mkv +无印良品-朋友,http://em.21dtv.com/songs/60033314.mkv +温拿乐队-朋友,http://em.21dtv.com/songs/60033313.mkv +谭咏麟-朋友,http://em.21dtv.com/songs/60033312.mkv +彭佳慧+陈升+陈泰翔-朋友,http://em.21dtv.com/songs/60033311.mkv +吕念祖+卓佩丽-朋友,http://em.21dtv.com/songs/60033310.mkv +黄子俊-朋友,http://em.21dtv.com/songs/60033309.mkv +高向鹏+傅振辉-朋友,http://em.21dtv.com/songs/60033308.mkv +傅义-朋友,http://em.21dtv.com/songs/60033307.mkv +陈雷-朋友,http://em.21dtv.com/songs/60033306.mkv +草蜢-朋友,http://em.21dtv.com/songs/60033305.mkv +蔡依林-朋友,http://em.21dtv.com/songs/60033304.mkv +温拿乐队-朋友(演唱会),http://em.21dtv.com/songs/60033300.mkv +谭咏麟+李克勤-朋友(演唱会),http://em.21dtv.com/songs/60033299.mkv +群星-朋友(演唱会),http://em.21dtv.com/songs/60033298.mkv +古巨基+容祖儿-朋友(演唱会),http://em.21dtv.com/songs/60033297.mkv +草蜢-朋友(演唱会),http://em.21dtv.com/songs/60033296.mkv +林玉英-朋友(无原唱),http://em.21dtv.com/songs/60033295.mkv +佚名-朋友(恰恰),http://em.21dtv.com/songs/60033294.mkv +杜德伟-跑远,http://em.21dtv.com/songs/60033207.mkv +杜德伟-跑远(演唱会),http://em.21dtv.com/songs/60033206.mkv +陈代全-攀缘,http://em.21dtv.com/songs/60033139.mkv +陈慧娴-飘雪,http://em.21dtv.com/songs/60128536.mkv +朱克-破晓,http://em.21dtv.com/songs/60124042.mkv +初晨-飘雪,http://em.21dtv.com/songs/60120379.mkv +EXO-偏心,http://em.21dtv.com/songs/60120207.mkv +邰正宵-飘雪,http://em.21dtv.com/songs/60120014.mkv +蒙恩-飘雪,http://em.21dtv.com/songs/60115358.mkv +张秀卿-捧香,http://em.21dtv.com/songs/60109330.mkv +福山雅治-破晓(故事情节),http://em.21dtv.com/songs/60101458.mkv +谭晶-飘香,http://em.21dtv.com/songs/60098781.mkv +林忆莲-破晓(新版),http://em.21dtv.com/songs/60096775.mkv +陈奕迅-破晓,http://em.21dtv.com/songs/60093404.mkv +林忆莲-破晓,http://em.21dtv.com/songs/60088100.mkv +EXO-咆哮(Growl),http://em.21dtv.com/songs/60080885.mkv +刘可-破晓,http://em.21dtv.com/songs/60077101.mkv +潘成+格子兮-蹁跹,http://em.21dtv.com/songs/60077073.mkv +夏天-盘旋,http://em.21dtv.com/songs/60077046.mkv +魏晨-破晓,http://em.21dtv.com/songs/60063066.mkv +魏晨-破晓(演唱会),http://em.21dtv.com/songs/60063065.mkv +佚名-破晓,http://em.21dtv.com/songs/60033682.mkv +许茹芸-破晓,http://em.21dtv.com/songs/60033681.mkv +南拳妈妈-破晓,http://em.21dtv.com/songs/60033680.mkv +容祖儿-破相,http://em.21dtv.com/songs/60033679.mkv +陈司翰-破相,http://em.21dtv.com/songs/60033677.mkv +容祖儿-破相(演唱会),http://em.21dtv.com/songs/60033676.mkv +林忆莲-破相(演唱会),http://em.21dtv.com/songs/60033675.mkv +梁咏琪-破相(演唱会),http://em.21dtv.com/songs/60033674.mkv +黄征-破相(演唱会),http://em.21dtv.com/songs/60033673.mkv +黄征-平行,http://em.21dtv.com/songs/60033609.mkv +韩雪-飘雪,http://em.21dtv.com/songs/60033540.mkv +陈慧娴-飘雪,http://em.21dtv.com/songs/60033539.mkv +韩雪-飘雪(演唱会),http://em.21dtv.com/songs/60033538.mkv +陈慧娴-飘雪(演唱会),http://em.21dtv.com/songs/60033537.mkv +佚名-偏心,http://em.21dtv.com/songs/60033427.mkv +那英-偏心,http://em.21dtv.com/songs/60033426.mkv +LINDA-偏心,http://em.21dtv.com/songs/60033425.mkv +刘力扬-拍写,http://em.21dtv.com/songs/60033114.mkv +陈瑞-品味,http://em.21dtv.com/songs/60133048.mkv +褚海辰-盼望,http://em.21dtv.com/songs/60128382.mkv +傲艺-陪玩,http://em.21dtv.com/songs/60071026.mkv +郭力行-撇我,http://em.21dtv.com/songs/60033547.mkv +陈建颖-陪我,http://em.21dtv.com/songs/60033260.mkv +王杰-盼望,http://em.21dtv.com/songs/60033166.mkv +佚名-pretty woman,http://em.21dtv.com/songs/60004529.mkv +佚名-paperback writer,http://em.21dtv.com/songs/60004405.mkv +ZEDD+MIRIAM BRYANT-PUSH PLAY,http://em.21dtv.com/songs/60096635.mkv +耀乐团-pop up,http://em.21dtv.com/songs/60073761.mkv +麦浚龙-poor u,http://em.21dtv.com/songs/60004506.mkv +欧阳青-菩提,http://em.21dtv.com/songs/60130513.mkv +陈明憙-拼图,http://em.21dtv.com/songs/60129744.mkv +陈明喜-拼图,http://em.21dtv.com/songs/60129742.mkv +艾怡良-拼图,http://em.21dtv.com/songs/60126094.mkv +欧阳青-菩提,http://em.21dtv.com/songs/60121845.mkv +韩红-葡萄,http://em.21dtv.com/songs/60116373.mkv +赖伟锋-跑调,http://em.21dtv.com/songs/60099506.mkv +群星-拼图,http://em.21dtv.com/songs/60085571.mkv +大合唱-拼图,http://em.21dtv.com/songs/60081620.mkv +吴莫愁-price tag,http://em.21dtv.com/songs/60073765.mkv +蔡枫华-娉婷(演唱会),http://em.21dtv.com/songs/60061487.mkv +蔡枫华-娉婷,http://em.21dtv.com/songs/60033571.mkv +钟舒漫-拼图,http://em.21dtv.com/songs/60033563.mkv +魏斌-拼图,http://em.21dtv.com/songs/60033562.mkv +邰正宵-拼图,http://em.21dtv.com/songs/60033561.mkv +黄品冠-拼图,http://em.21dtv.com/songs/60033560.mkv +彭佳慧-陪他,http://em.21dtv.com/songs/60033259.mkv +BLONDIE-picture this,http://em.21dtv.com/songs/60004469.mkv +李玟-party time,http://em.21dtv.com/songs/60004430.mkv +刘硕-蹒跚,http://em.21dtv.com/songs/60134940.mkv +崔恕-砒霜,http://em.21dtv.com/songs/60125453.mkv +瑞克-破碎,http://em.21dtv.com/songs/60103482.mkv +林保怡+黎姿-砒霜,http://em.21dtv.com/songs/60092851.mkv +KATE NASH-pumpkin soup,http://em.21dtv.com/songs/60082301.mkv +THE CARDIGANS-please sister,http://em.21dtv.com/songs/60082296.mkv +R.I.O.+NICCO-party shaker,http://em.21dtv.com/songs/60073743.mkv +蔡枫华-破碎(演唱会),http://em.21dtv.com/songs/60061490.mkv +朴树-朴树,http://em.21dtv.com/songs/60033711.mkv +小雪-菩萨,http://em.21dtv.com/songs/60033694.mkv +杨丞琳-偏食,http://em.21dtv.com/songs/60033424.mkv +童唱-爬山,http://em.21dtv.com/songs/60033083.mkv +逯学军-爬山,http://em.21dtv.com/songs/60033082.mkv +ALL SAINTS-pure shores,http://em.21dtv.com/songs/60004552.mkv +T.M.REVOLUTION+水树奈奈-preserved roses,http://em.21dtv.com/songs/60082298.mkv +ALIN-purple rain,http://em.21dtv.com/songs/60073774.mkv +EXAMPLE-perfect replacement,http://em.21dtv.com/songs/60073748.mkv +王若琳-plotting revenge,http://em.21dtv.com/songs/60063708.mkv +PRINCE-purple rain,http://em.21dtv.com/songs/60004557.mkv +JOHN DENVER-phyme reason(演唱会),http://em.21dtv.com/songs/60004464.mkv +佚名-paper roses,http://em.21dtv.com/songs/60004404.mkv +李玟-Party Queen,http://em.21dtv.com/songs/60080619.mkv +王杰-抛弃,http://em.21dtv.com/songs/60033193.mkv +王心凌-碰碰,http://em.21dtv.com/songs/60102528.mkv +JONAS BROTHERS-pom poms,http://em.21dtv.com/songs/60082297.mkv +FLORIDA GEORGIA LINE-party people,http://em.21dtv.com/songs/60082294.mkv +谭炜星-啪啪,http://em.21dtv.com/songs/60079992.mkv +IO乐团-pati pati,http://em.21dtv.com/songs/60071648.mkv +陈僖仪-蜚蜚,http://em.21dtv.com/songs/60069387.mkv +容祖儿-澎湃(演唱会),http://em.21dtv.com/songs/60064689.mkv +ELIZABETH-ppappa pierrot,http://em.21dtv.com/songs/60063710.mkv +王心凌-飘飘,http://em.21dtv.com/songs/60033534.mkv +韩雨芹-翩翩,http://em.21dtv.com/songs/60033428.mkv +李蕙敏-偏偏,http://em.21dtv.com/songs/60033414.mkv +蟑螂乐队-碰碰,http://em.21dtv.com/songs/60033378.mkv +容祖儿-澎湃,http://em.21dtv.com/songs/60033372.mkv +庄莹-泡泡,http://em.21dtv.com/songs/60033217.mkv +陈慧娴-抛抛(演唱会),http://em.21dtv.com/songs/60033192.mkv +阿超-胖胖,http://em.21dtv.com/songs/60033190.mkv +H.DAVID-B.BACHARAPP-promises promises(无原唱),http://em.21dtv.com/songs/60004543.mkv +NELLY+FERGIE-party people,http://em.21dtv.com/songs/60004429.mkv +SUPER JUNIOR+H-pajama party,http://em.21dtv.com/songs/60004398.mkv +SHINE-POWER MEDLEY,http://em.21dtv.com/songs/60096634.mkv +MC HOTDOG-Poker Star,http://em.21dtv.com/songs/60101598.mkv +YOUNG JEEZY+KANYE WEST-put on,http://em.21dtv.com/songs/60082302.mkv +RAY J FT+BOBBY BRACKINS-party over,http://em.21dtv.com/songs/60082293.mkv +AMELIA LILY-party over,http://em.21dtv.com/songs/60073742.mkv +SG WANNABE+玉珠铉-page one,http://em.21dtv.com/songs/60004394.mkv +龙奔-泡妞,http://em.21dtv.com/songs/60136066.mkv +范玮琪-陪你,http://em.21dtv.com/songs/60132838.mkv +坣娜-陪你,http://em.21dtv.com/songs/60130210.mkv +石文-皮囊,http://em.21dtv.com/songs/60096682.mkv +蔡枫华-叛逆,http://em.21dtv.com/songs/60095221.mkv +宋孟君-叛逆,http://em.21dtv.com/songs/60094463.mkv +许文科-陪你,http://em.21dtv.com/songs/60077055.mkv +优客李林-漂鸟,http://em.21dtv.com/songs/60033495.mkv +林志炫-漂鸟,http://em.21dtv.com/songs/60033494.mkv +唐禹哲-陪你,http://em.21dtv.com/songs/60033229.mkv +季欣霈-陪你,http://em.21dtv.com/songs/60033228.mkv +蔡枫华-判逆,http://em.21dtv.com/songs/60033143.mkv +911-private number,http://em.21dtv.com/songs/60004539.mkv +简弘亦-泡沫,http://em.21dtv.com/songs/60134059.mkv +金志文-泡沫,http://em.21dtv.com/songs/60127513.mkv +徐剑秋+开开-泡沫,http://em.21dtv.com/songs/60104153.mkv +简红-泡沫,http://em.21dtv.com/songs/60100366.mkv +王涛-破灭,http://em.21dtv.com/songs/60094994.mkv +周华健-泼墨,http://em.21dtv.com/songs/60093818.mkv +花儿乐队-破灭,http://em.21dtv.com/songs/60091921.mkv +冯巩+牛群-拍卖,http://em.21dtv.com/songs/60089659.mkv +周华健+张大春-泼墨,http://em.21dtv.com/songs/60082049.mkv +郑汉雄-泡沫,http://em.21dtv.com/songs/60077051.mkv +林峰-party medley(演唱会),http://em.21dtv.com/songs/60073741.mkv +邓紫棋-泡沫,http://em.21dtv.com/songs/60071024.mkv +李炆-泡沫,http://em.21dtv.com/songs/60033213.mkv +陈晓东-泡沫,http://em.21dtv.com/songs/60033212.mkv +佚名-purnama merindu,http://em.21dtv.com/songs/60004553.mkv +佚名-proud mary,http://em.21dtv.com/songs/60004544.mkv +佚名-promise me,http://em.21dtv.com/songs/60004541.mkv +JOE DIFFIE-poor me,http://em.21dtv.com/songs/60004505.mkv +佚名-poetry man(无原唱),http://em.21dtv.com/songs/60004496.mkv +CARPENTERS-please mr postman(演唱会),http://em.21dtv.com/songs/60004490.mkv +佚名-photographs memories,http://em.21dtv.com/songs/60004463.mkv +佚名-pejam matamu,http://em.21dtv.com/songs/60004443.mkv +金子晴-Play Boy,http://em.21dtv.com/songs/60100514.mkv +沈波-飘落,http://em.21dtv.com/songs/60120696.mkv +黄韵玲-飘流,http://em.21dtv.com/songs/60118222.mkv +大合唱-破浪,http://em.21dtv.com/songs/60113368.mkv +Infinite H-漂亮,http://em.21dtv.com/songs/60109823.mkv +张恒远-漂流,http://em.21dtv.com/songs/60105844.mkv +何贤忠-怕冷,http://em.21dtv.com/songs/60105583.mkv +唐韦琪-飘恋,http://em.21dtv.com/songs/60092488.mkv +梅艳芳-飘零,http://em.21dtv.com/songs/60086752.mkv +冰果甜心-Pinky Love,http://em.21dtv.com/songs/60079869.mkv +NELLY FURTADO-parking lot,http://em.21dtv.com/songs/60073736.mkv +刘德华-漂流,http://em.21dtv.com/songs/60072276.mkv +蓝奕邦-蓬莱(演唱会),http://em.21dtv.com/songs/60067309.mkv +西单女孩-漂流,http://em.21dtv.com/songs/60063120.mkv +黎姿-破例,http://em.21dtv.com/songs/60033667.mkv +刘美君-破例(演唱会),http://em.21dtv.com/songs/60033666.mkv +苏打绿-频率,http://em.21dtv.com/songs/60033569.mkv +周华健-拼了,http://em.21dtv.com/songs/60033555.mkv +黎田康子-飘落,http://em.21dtv.com/songs/60033533.mkv +十二-飘零,http://em.21dtv.com/songs/60033524.mkv +佚名-飘恋,http://em.21dtv.com/songs/60033523.mkv +黄品冠-漂流,http://em.21dtv.com/songs/60033488.mkv +陈星-漂流,http://em.21dtv.com/songs/60033487.mkv +伍佰-漂浪,http://em.21dtv.com/songs/60033466.mkv +伍佰-漂浪(演唱会),http://em.21dtv.com/songs/60033465.mkv +蓝奕邦-蓬莱,http://em.21dtv.com/songs/60033365.mkv +张信哲-怕冷,http://em.21dtv.com/songs/60033098.mkv +东方神起-purple line,http://em.21dtv.com/songs/60004556.mkv +DONNY OSMOND-puppy love,http://em.21dtv.com/songs/60004550.mkv +WILLIE NELSON-poncho lefty,http://em.21dtv.com/songs/60004504.mkv +汪明荃-pink lady(演唱会),http://em.21dtv.com/songs/60004475.mkv +佚名-perhaps love,http://em.21dtv.com/songs/60004455.mkv +HOWL-J-perhaps love,http://em.21dtv.com/songs/60004454.mkv +DAVID QUAH+黄凯芹-perhaps love(演唱会),http://em.21dtv.com/songs/60004453.mkv +LIONEL RICHIE-penny lover,http://em.21dtv.com/songs/60004446.mkv +佚名-penny lane,http://em.21dtv.com/songs/60004445.mkv +周冰倩-passing love,http://em.21dtv.com/songs/60004434.mkv +佚名-part-time lover,http://em.21dtv.com/songs/60004421.mkv +全世煌-抛开,http://em.21dtv.com/songs/60125148.mkv +印玉莲-片刻,http://em.21dtv.com/songs/60102013.mkv +许茹芸-片刻,http://em.21dtv.com/songs/60092082.mkv +古巨基-party king,http://em.21dtv.com/songs/60073739.mkv +海南-配角,http://em.21dtv.com/songs/60131616.mkv +乔欣-破茧,http://em.21dtv.com/songs/60121348.mkv +祖丝-骗局,http://em.21dtv.com/songs/60109556.mkv +高登-配角,http://em.21dtv.com/songs/60106471.mkv +林海峰-配角,http://em.21dtv.com/songs/60077065.mkv +KENDRICK LAMAR+DRAKE-poetic justice,http://em.21dtv.com/songs/60073756.mkv +苏永康-破茧,http://em.21dtv.com/songs/60066219.mkv +郑欣宜-配角,http://em.21dtv.com/songs/60063448.mkv +王若琪-破镜,http://em.21dtv.com/songs/60033660.mkv +林凡+李家发-萍聚,http://em.21dtv.com/songs/60033644.mkv +李翊君-萍聚,http://em.21dtv.com/songs/60033643.mkv +李富兴+卓依婷-萍聚,http://em.21dtv.com/songs/60033642.mkv +任贤齐-萍聚(演唱会),http://em.21dtv.com/songs/60033641.mkv +七郎-拼酒,http://em.21dtv.com/songs/60033554.mkv +梁咏琪-偏见,http://em.21dtv.com/songs/60033413.mkv +吴炜-配角,http://em.21dtv.com/songs/60033290.mkv +顾海滨-配角,http://em.21dtv.com/songs/60033289.mkv +SARA-配角,http://em.21dtv.com/songs/60033288.mkv +杨丽珍-陪酒,http://em.21dtv.com/songs/60033226.mkv +SALT N PEPPER-push it,http://em.21dtv.com/songs/60004559.mkv +ALANIS MORISSETTE-precious illusions,http://em.21dtv.com/songs/60004522.mkv +SOPHIA FRESH+T-pain-this instant,http://em.21dtv.com/songs/60004397.mkv +郑俊弘-炮火,http://em.21dtv.com/songs/60120023.mkv +曾静玟-徘徊,http://em.21dtv.com/songs/60112733.mkv +容祖儿-飘红,http://em.21dtv.com/songs/60110162.mkv +陈小春+郑伊健+钱嘉乐+林晓峰+谢天华-扑火,http://em.21dtv.com/songs/60109697.mkv +高天豹-捧红,http://em.21dtv.com/songs/60104610.mkv +林俊逸-扑火,http://em.21dtv.com/songs/60102385.mkv +王雅娜-怕黑,http://em.21dtv.com/songs/60100328.mkv +DAVID GUETTA+NE YO+AKON-play hard,http://em.21dtv.com/songs/60082295.mkv +樊凡-徘徊,http://em.21dtv.com/songs/60080492.mkv +夏天-平衡,http://em.21dtv.com/songs/60077097.mkv +佚名-扑火,http://em.21dtv.com/songs/60033691.mkv +王真颜-扑火,http://em.21dtv.com/songs/60033690.mkv +王菲-扑火,http://em.21dtv.com/songs/60033689.mkv +陈小春-扑火,http://em.21dtv.com/songs/60033688.mkv +胡鸿钧-飘花,http://em.21dtv.com/songs/60033517.mkv +周华健-怕黑,http://em.21dtv.com/songs/60033092.mkv +言承旭-怕黑,http://em.21dtv.com/songs/60033090.mkv +白歆惠-怕黑,http://em.21dtv.com/songs/60033089.mkv +D+12-purple hills,http://em.21dtv.com/songs/60004555.mkv +ROD STEWART-purple heather,http://em.21dtv.com/songs/60004554.mkv +李德永-盼归,http://em.21dtv.com/songs/60116912.mkv +佐香智久-仆たちの歌,http://em.21dtv.com/songs/60083587.mkv +RTA-party girl,http://em.21dtv.com/songs/60082292.mkv +FRENCH KISS-瓶の盖,http://em.21dtv.com/songs/60077100.mkv +糖妹-pink girls,http://em.21dtv.com/songs/60060890.mkv +黄山怡-pink girls,http://em.21dtv.com/songs/60060889.mkv +林宇中-瓶盖,http://em.21dtv.com/songs/60033638.mkv +佚名-苹果,http://em.21dtv.com/songs/60033622.mkv +王军-盼哥,http://em.21dtv.com/songs/60033147.mkv +JON B.-pretty girl,http://em.21dtv.com/songs/60004527.mkv +PARAMORE-playing god,http://em.21dtv.com/songs/60004481.mkv +水蜜桃-pizza歌,http://em.21dtv.com/songs/60004476.mkv +MCFLY-party girl,http://em.21dtv.com/songs/60004427.mkv +HOTCHA-party girl,http://em.21dtv.com/songs/60004426.mkv +HOTCHA-party girl(演唱会),http://em.21dtv.com/songs/60004425.mkv +慕容婕柃-平凡,http://em.21dtv.com/songs/60131440.mkv +杨冠成-平凡,http://em.21dtv.com/songs/60120652.mkv +童安格-平凡,http://em.21dtv.com/songs/60113926.mkv +苏打绿-漂浮,http://em.21dtv.com/songs/60095340.mkv +蔡依林-漂浮,http://em.21dtv.com/songs/60092018.mkv +陈势安-皮肤,http://em.21dtv.com/songs/60086751.mkv +王馨平-平凡(演唱会),http://em.21dtv.com/songs/60077095.mkv +KENNY CHESNEY-pirate flag,http://em.21dtv.com/songs/60073750.mkv +黄晓明-匹夫,http://em.21dtv.com/songs/60067310.mkv +蔡依林-飘浮,http://em.21dtv.com/songs/60033516.mkv +LADY GAGA-poker face,http://em.21dtv.com/songs/60004500.mkv +佚名-philadelphia freedom,http://em.21dtv.com/songs/60004459.mkv +L.A.BOYZ-pure energy,http://em.21dtv.com/songs/60004551.mkv +RICKY MARTIN+MEJA-private emotion,http://em.21dtv.com/songs/60004538.mkv +郭静-拍档,http://em.21dtv.com/songs/60123246.mkv +郭静-拍档,http://em.21dtv.com/songs/60120031.mkv +蓝紫-扑蝶,http://em.21dtv.com/songs/60085573.mkv +张君兰-扑蝶,http://em.21dtv.com/songs/60083586.mkv +张祥洪-平等,http://em.21dtv.com/songs/60083581.mkv +陈慧敏-排队,http://em.21dtv.com/songs/60077045.mkv +TINA TURNER-private dancer,http://em.21dtv.com/songs/60073768.mkv +SUSAN BOYLE-perfect day,http://em.21dtv.com/songs/60073747.mkv +汪明荃-扑蝶,http://em.21dtv.com/songs/60033687.mkv +张国荣-片段,http://em.21dtv.com/songs/60033431.mkv +洪思芸-片段(无原唱),http://em.21dtv.com/songs/60033430.mkv +李炆-皮带,http://em.21dtv.com/songs/60033393.mkv +ANGELA-跑道,http://em.21dtv.com/songs/60033203.mkv +SWEETY-排队,http://em.21dtv.com/songs/60033117.mkv +M.KNOPFLER-private dancer(无原唱),http://em.21dtv.com/songs/60004537.mkv +黎明-prima donna,http://em.21dtv.com/songs/60004533.mkv +黎明-prima donna(演唱会),http://em.21dtv.com/songs/60004532.mkv +幸田来未-pop diva,http://em.21dtv.com/songs/60004508.mkv +魏如昀-party days,http://em.21dtv.com/songs/60004422.mkv +高凌风-泡菜,http://em.21dtv.com/songs/60090331.mkv +GABRIELLE APLIN-panic cord,http://em.21dtv.com/songs/60073734.mkv +MARINA AND THE DIAMO-power control,http://em.21dtv.com/songs/60070388.mkv +钟汶-赔偿,http://em.21dtv.com/songs/60033286.mkv +马梓涵-赔偿,http://em.21dtv.com/songs/60033285.mkv +傅振辉-泡茶,http://em.21dtv.com/songs/60033209.mkv +佚名-paradise city,http://em.21dtv.com/songs/60004409.mkv +汤子星-拼搏,http://em.21dtv.com/songs/60132673.mkv +周晓鸥-旁边,http://em.21dtv.com/songs/60128899.mkv +钟旎菱-撇步,http://em.21dtv.com/songs/60118985.mkv +邓玥-陪伴,http://em.21dtv.com/songs/60105411.mkv +JUNIEL-pretty boy,http://em.21dtv.com/songs/60082299.mkv +钟旎菱-撇步,http://em.21dtv.com/songs/60080377.mkv +张木易+MIKI-pretty boy,http://em.21dtv.com/songs/60073763.mkv +徐子淳-旁白,http://em.21dtv.com/songs/60071022.mkv +乌兰托娅-漂泊,http://em.21dtv.com/songs/60069694.mkv +彭丽丽+王键-陪伴,http://em.21dtv.com/songs/60066212.mkv +张信哲-陪伴,http://em.21dtv.com/songs/60063413.mkv +李秋霞-平板,http://em.21dtv.com/songs/60033588.mkv +赵本水-拼搏,http://em.21dtv.com/songs/60033549.mkv +佚名-漂泊,http://em.21dtv.com/songs/60033454.mkv +伍佰-漂泊,http://em.21dtv.com/songs/60033453.mkv +沈文程-漂泊,http://em.21dtv.com/songs/60033452.mkv +林建亨-漂泊,http://em.21dtv.com/songs/60033451.mkv +黄西田+樱桃姐妹-漂泊(无原唱),http://em.21dtv.com/songs/60033450.mkv +M2M-pretty boy,http://em.21dtv.com/songs/60004525.mkv +BIRDMAN FEAT LIL WAY-pop bottles,http://em.21dtv.com/songs/60004507.mkv +BELLEFIRE-perfect bliss,http://em.21dtv.com/songs/60004449.mkv +孙子涵-烹爱,http://em.21dtv.com/songs/60135102.mkv +丁于-派爱,http://em.21dtv.com/songs/60128717.mkv +张阳阳-偏爱,http://em.21dtv.com/songs/60116805.mkv +林育群-偏爱,http://em.21dtv.com/songs/60099344.mkv +苏醒-怕爱,http://em.21dtv.com/songs/60061479.mkv +张芸京-偏爱,http://em.21dtv.com/songs/60033409.mkv +张芸京-偏爱(演唱会),http://em.21dtv.com/songs/60033408.mkv +谭咏麟-偏爱(演唱会),http://em.21dtv.com/songs/60033407.mkv +佚名-偏爱(无原唱),http://em.21dtv.com/songs/60033406.mkv +赵中晨-preaty angel(演唱会),http://em.21dtv.com/songs/60004521.mkv +李童谣+胡力-pk爱,http://em.21dtv.com/songs/60004478.mkv +IUV-oppa zzang,http://em.21dtv.com/songs/60073725.mkv +泳儿-偶遇,http://em.21dtv.com/songs/60113803.mkv +CLOWN-哦也,http://em.21dtv.com/songs/60087183.mkv +杜雯惠-偶遇(演唱会),http://em.21dtv.com/songs/60083570.mkv +4MEN-only you,http://em.21dtv.com/songs/60082289.mkv +CASSADEE POPE-over you(演唱会),http://em.21dtv.com/songs/60073729.mkv +MIRANDA LAMBERT-over you,http://em.21dtv.com/songs/60066708.mkv +モーニング娘-only you,http://em.21dtv.com/songs/60060887.mkv +郑秀文-偶遇,http://em.21dtv.com/songs/60033074.mkv +孟庭苇-偶遇,http://em.21dtv.com/songs/60033073.mkv +林志美-偶遇,http://em.21dtv.com/songs/60033072.mkv +黎姿-偶遇,http://em.21dtv.com/songs/60033071.mkv +陈洁丽-偶遇(演唱会),http://em.21dtv.com/songs/60033070.mkv +林隆璇-偶遇(无原唱),http://em.21dtv.com/songs/60033069.mkv +佚名-over you,http://em.21dtv.com/songs/60004385.mkv +罗家英-only you,http://em.21dtv.com/songs/60004343.mkv +飞轮海-only you,http://em.21dtv.com/songs/60004342.mkv +THE PLATTERS-only you,http://em.21dtv.com/songs/60004341.mkv +佚名-only yesterday,http://em.21dtv.com/songs/60004340.mkv +黎明-oh!夜,http://em.21dtv.com/songs/60004241.mkv +ENERGY-oh yes,http://em.21dtv.com/songs/60004238.mkv +佚名-oh yeah,http://em.21dtv.com/songs/60004237.mkv +卢广仲-oh yeah,http://em.21dtv.com/songs/60004236.mkv +安与骑兵-哦想,http://em.21dtv.com/songs/60083569.mkv +韩寒-偶像,http://em.21dtv.com/songs/60033068.mkv +陈百强-偶像,http://em.21dtv.com/songs/60033067.mkv +吕方-偶像(演唱会),http://em.21dtv.com/songs/60033066.mkv +陈百强-偶像(演唱会),http://em.21dtv.com/songs/60033065.mkv +原始林-呕哇(无原唱),http://em.21dtv.com/songs/60089714.mkv +群星-one woman,http://em.21dtv.com/songs/60073714.mkv +佚名-ordinary world,http://em.21dtv.com/songs/60004358.mkv +MAXIMO PARK-our velocity,http://em.21dtv.com/songs/60004366.mkv +LILY ALLEN-Our Time,http://em.21dtv.com/songs/60099677.mkv +顺子-open up,http://em.21dtv.com/songs/60004351.mkv +ASHANTI-only u,http://em.21dtv.com/songs/60004339.mkv +ONE DIRECTION-one thing,http://em.21dtv.com/songs/60082288.mkv +JOHNNY RUFFO-on top,http://em.21dtv.com/songs/60073695.mkv +D'BANJ-oliver twist,http://em.21dtv.com/songs/60069116.mkv +ENYA-only time,http://em.21dtv.com/songs/60004338.mkv +JUSTIN BIEBER-one time,http://em.21dtv.com/songs/60004312.mkv +ENERGY-one time,http://em.21dtv.com/songs/60004311.mkv +FINGER ELEVEN-one thing,http://em.21dtv.com/songs/60004309.mkv +林俊杰-one shot,http://em.21dtv.com/songs/60073710.mkv +B.A.P-one shot,http://em.21dtv.com/songs/60073709.mkv +LISA-oath sign,http://em.21dtv.com/songs/60063697.mkv +TENSION-our story,http://em.21dtv.com/songs/60004364.mkv +童唱-oh suzanna,http://em.21dtv.com/songs/60004235.mkv +TWINS-oh suzanna,http://em.21dtv.com/songs/60004234.mkv +MARIAH CAREY-oh santa,http://em.21dtv.com/songs/60004233.mkv +喜波-偶然,http://em.21dtv.com/songs/60131287.mkv +纳兰-偶然,http://em.21dtv.com/songs/60106187.mkv +DISH乐队-偶然,http://em.21dtv.com/songs/60064676.mkv +钟伟-偶然,http://em.21dtv.com/songs/60033061.mkv +赵薇-偶然,http://em.21dtv.com/songs/60033060.mkv +佚名-偶然,http://em.21dtv.com/songs/60033059.mkv +陈秋霞-偶然,http://em.21dtv.com/songs/60033058.mkv +蔡琴-偶然,http://em.21dtv.com/songs/60033057.mkv +黄凯芹-偶然(演唱会),http://em.21dtv.com/songs/60033056.mkv +GARY BARLOW-open road,http://em.21dtv.com/songs/60004350.mkv +JOHN LEGEND-ordinary people,http://em.21dtv.com/songs/60067966.mkv +CARCARO GIRL-one point,http://em.21dtv.com/songs/60061976.mkv +Eric Nam-Ooh Ooh,http://em.21dtv.com/songs/60098992.mkv +戴梅君-喔喔,http://em.21dtv.com/songs/60094129.mkv +李水晶-ok ok,http://em.21dtv.com/songs/60073688.mkv +BOA-only one,http://em.21dtv.com/songs/60069121.mkv +JON B-only one,http://em.21dtv.com/songs/60067965.mkv +NELLY-one&only,http://em.21dtv.com/songs/60060886.mkv +张栋梁-only one,http://em.21dtv.com/songs/60004336.mkv +顺子-only one,http://em.21dtv.com/songs/60004335.mkv +沈芯羽-ok ok,http://em.21dtv.com/songs/60004244.mkv +蔡依林-oh oh(演唱会),http://em.21dtv.com/songs/60004231.mkv +佚名-ob-la-di ob-la-da,http://em.21dtv.com/songs/60004208.mkv +MARMALADE-ob-la-di ob-la-da,http://em.21dtv.com/songs/60004207.mkv +MARINA AND THE DIAMONDS-oh no,http://em.21dtv.com/songs/60073684.mkv +陈思安-ok no,http://em.21dtv.com/songs/60067962.mkv +COMMODORES-oh no,http://em.21dtv.com/songs/60004229.mkv +TAMIA-officially missing,http://em.21dtv.com/songs/60082286.mkv +刘德华-opening medley(演唱会),http://em.21dtv.com/songs/60073723.mkv +ALEXANDRA STAN+CARLPRIT-one million,http://em.21dtv.com/songs/60073702.mkv +麻吉弟弟-oh my,http://em.21dtv.com/songs/60004227.mkv +老猫+项一芯-噢啦,http://em.21dtv.com/songs/60105302.mkv +项一芯+老猫-噢啦,http://em.21dtv.com/songs/60096836.mkv +GREEN DAY-oh love,http://em.21dtv.com/songs/60073682.mkv +BEN+HOWARD-only love,http://em.21dtv.com/songs/60069120.mkv +林欣彤-only love,http://em.21dtv.com/songs/60063704.mkv +蔡义德+张秀卿-ok啦,http://em.21dtv.com/songs/60062245.mkv +中岛美嘉-over load,http://em.21dtv.com/songs/60004381.mkv +THE CALLING-our lives,http://em.21dtv.com/songs/60004363.mkv +蔡健雅-only love,http://em.21dtv.com/songs/60004333.mkv +TRADEMARK-only love(无原唱),http://em.21dtv.com/songs/60004332.mkv +S.H.E-only lonely,http://em.21dtv.com/songs/60004330.mkv +岚-one love,http://em.21dtv.com/songs/60004286.mkv +ENERGY-one love,http://em.21dtv.com/songs/60004285.mkv +BLUE-one love,http://em.21dtv.com/songs/60004284.mkv +五月天-ok啦,http://em.21dtv.com/songs/60004248.mkv +沈建豪-ok啦,http://em.21dtv.com/songs/60004247.mkv +佚名-office lady,http://em.21dtv.com/songs/60004211.mkv +草莓牛奶-OK,http://em.21dtv.com/songs/60106229.mkv +徐林+李子璇-oi,http://em.21dtv.com/songs/60131433.mkv +李宇春-over it,http://em.21dtv.com/songs/60004380.mkv +B.A.D-oh i,http://em.21dtv.com/songs/60004220.mkv +凯歌-OH GRIL,http://em.21dtv.com/songs/60096632.mkv +王洋-哦吼,http://em.21dtv.com/songs/60111276.mkv +宇宙人-Oh Girl,http://em.21dtv.com/songs/60080342.mkv +K-only human,http://em.21dtv.com/songs/60004327.mkv +窦唯-噢乖,http://em.21dtv.com/songs/60088375.mkv +紫薇-only gril,http://em.21dtv.com/songs/60073718.mkv +窦唯-噢!乖,http://em.21dtv.com/songs/60033026.mkv +RIHANNA-only girl,http://em.21dtv.com/songs/60004326.mkv +PAUL YOUNG-oh girl,http://em.21dtv.com/songs/60004217.mkv +郑少秋-oh gal(演唱会),http://em.21dtv.com/songs/60004216.mkv +张敬轩-on fire(演唱会),http://em.21dtv.com/songs/60004264.mkv +Zia-偶尔,http://em.21dtv.com/songs/60115649.mkv +邓紫棋-偶尔,http://em.21dtv.com/songs/60094710.mkv +张韶涵-偶尔,http://em.21dtv.com/songs/60033054.mkv +谭锡禧-one day(演唱会),http://em.21dtv.com/songs/60073701.mkv +V6-only dreaming,http://em.21dtv.com/songs/60004323.mkv +KAT.TUN-one drop,http://em.21dtv.com/songs/60004277.mkv +柯有纶-one day,http://em.21dtv.com/songs/60004276.mkv +佚名-oh darling,http://em.21dtv.com/songs/60004215.mkv +许子聪-oh darling,http://em.21dtv.com/songs/60004214.mkv +CLIFF RICHARD-ocean deep,http://em.21dtv.com/songs/60004210.mkv +张杰-one+chance,http://em.21dtv.com/songs/60069119.mkv +张杰-one chance,http://em.21dtv.com/songs/60069117.mkv +李克勤-oh candice(演唱会),http://em.21dtv.com/songs/60004213.mkv +包伟铭-欧巴,http://em.21dtv.com/songs/60123707.mkv +邓紫棋-oh boy,http://em.21dtv.com/songs/60067960.mkv +邓紫棋-one button,http://em.21dtv.com/songs/60060885.mkv +梁文音-oh baby,http://em.21dtv.com/songs/60060884.mkv +佚名-on broadway,http://em.21dtv.com/songs/60004263.mkv +TAE-oh baby,http://em.21dtv.com/songs/60004212.mkv +林峰-once again,http://em.21dtv.com/songs/60073697.mkv +林峰-once again(演唱会),http://em.21dtv.com/songs/60073696.mkv +丁祥威-ohh爱,http://em.21dtv.com/songs/60073687.mkv +金亨俊-oh! ah!,http://em.21dtv.com/songs/60073686.mkv +AKON+KERI HILSON-oh africa,http://em.21dtv.com/songs/60073681.mkv +金亨俊-oh ah,http://em.21dtv.com/songs/60060883.mkv +佚名-open arms,http://em.21dtv.com/songs/60004349.mkv +MARIAH CAREY-open arms,http://em.21dtv.com/songs/60004348.mkv +5566-open arms,http://em.21dtv.com/songs/60004347.mkv +黄泓彬-opera2,http://em.21dtv.com/songs/60082290.mkv +ORANGE RANGE-o2,http://em.21dtv.com/songs/60082283.mkv +王栎鑫-opera 2,http://em.21dtv.com/songs/60004357.mkv +VITAS-opera 2,http://em.21dtv.com/songs/60004356.mkv +林良欢-娘子,http://em.21dtv.com/songs/60122908.mkv +张杰+高振铭-逆战,http://em.21dtv.com/songs/60112679.mkv +胡彦斌-娘子,http://em.21dtv.com/songs/60110476.mkv +善莹-闹钟,http://em.21dtv.com/songs/60109242.mkv +朱俐静-浓妆,http://em.21dtv.com/songs/60105959.mkv +周品-孽子,http://em.21dtv.com/songs/60102043.mkv +吴雨霏-逆转,http://em.21dtv.com/songs/60096769.mkv +爽子-妞子,http://em.21dtv.com/songs/60077010.mkv +彭亮-娘子,http://em.21dtv.com/songs/60077009.mkv +恵比寿マスカッツ-逆走アイドル,http://em.21dtv.com/songs/60076999.mkv +许志安-牛仔,http://em.21dtv.com/songs/60069684.mkv +张杰-逆战,http://em.21dtv.com/songs/60066202.mkv +王晨光-娘子,http://em.21dtv.com/songs/60061474.mkv +元卫觉醒-牛仔,http://em.21dtv.com/songs/60032736.mkv +周杰伦-娘子,http://em.21dtv.com/songs/60032667.mkv +吴淑敏-你走,http://em.21dtv.com/songs/60032567.mkv +康康-孬种,http://em.21dtv.com/songs/60031301.mkv +鹿晗-诺言,http://em.21dtv.com/songs/60118207.mkv +鹿晗-诺言,http://em.21dtv.com/songs/60116405.mkv +杨丽-诺言,http://em.21dtv.com/songs/60094166.mkv +梁咏琪-难言,http://em.21dtv.com/songs/60090015.mkv +深蓝乐队-诺言,http://em.21dtv.com/songs/60085561.mkv +毛阿敏-诺言(演唱会),http://em.21dtv.com/songs/60077041.mkv +陈洁丽-诺言(演唱会),http://em.21dtv.com/songs/60062259.mkv +佚名-诺言,http://em.21dtv.com/songs/60032821.mkv +叶蕴仪-诺言,http://em.21dtv.com/songs/60032820.mkv +叶倩文-诺言,http://em.21dtv.com/songs/60032819.mkv +李翊君-诺言,http://em.21dtv.com/songs/60032818.mkv +柯以敏-诺言,http://em.21dtv.com/songs/60032817.mkv +姜育恒-诺言,http://em.21dtv.com/songs/60032816.mkv +宝罗-诺言,http://em.21dtv.com/songs/60032815.mkv +叶蕴仪-诺言(无原唱),http://em.21dtv.com/songs/60032814.mkv +刘文正-诺言(无原唱),http://em.21dtv.com/songs/60032813.mkv +林汉扬-宁愿(无原唱),http://em.21dtv.com/songs/60032696.mkv +佚名-孽缘,http://em.21dtv.com/songs/60032684.mkv +苏芮-你赢,http://em.21dtv.com/songs/60032419.mkv +方大同-南音,http://em.21dtv.com/songs/60031158.mkv +黄沾-南音(演唱会),http://em.21dtv.com/songs/60031157.mkv +吴克群-男佣,http://em.21dtv.com/songs/60031064.mkv +万芳-那夜,http://em.21dtv.com/songs/60030799.mkv +亦帆-虐心,http://em.21dtv.com/songs/60130063.mkv +黄得峰-念想,http://em.21dtv.com/songs/60129839.mkv +沈波-暖心,http://em.21dtv.com/songs/60117003.mkv +陈佳+杨臣刚+西单女孩+慕容晓晓-逆袭,http://em.21dtv.com/songs/60116332.mkv +陈嘉琦-暖心,http://em.21dtv.com/songs/60105475.mkv +山野-虐心,http://em.21dtv.com/songs/60104989.mkv +马天宇-念夏,http://em.21dtv.com/songs/60096840.mkv +李正帆+郁可唯-宁夏,http://em.21dtv.com/songs/60096680.mkv +岳菲-泥香,http://em.21dtv.com/songs/60085506.mkv +徐良+孙羽幽-虐心,http://em.21dtv.com/songs/60077040.mkv +徐誉滕-那些,http://em.21dtv.com/songs/60076803.mkv +罗中旭-念想,http://em.21dtv.com/songs/60072255.mkv +郁可唯-暖心,http://em.21dtv.com/songs/60032809.mkv +彭家丽-暖些,http://em.21dtv.com/songs/60032808.mkv +吴幸文-凝心(无原唱),http://em.21dtv.com/songs/60032721.mkv +梁静茹-宁夏,http://em.21dtv.com/songs/60032693.mkv +梁静茹-宁夏(演唱会),http://em.21dtv.com/songs/60032692.mkv +邓丽君-娘心,http://em.21dtv.com/songs/60032666.mkv +胡夏-逆向,http://em.21dtv.com/songs/60032609.mkv +许嵩-内线,http://em.21dtv.com/songs/60031332.mkv +尚杰-你我,http://em.21dtv.com/songs/60132400.mkv +杨烁-你我,http://em.21dtv.com/songs/60124113.mkv +杨烁-你我,http://em.21dtv.com/songs/60121806.mkv +林霞-难忘,http://em.21dtv.com/songs/60113724.mkv +王子硕-女王,http://em.21dtv.com/songs/60110389.mkv +陈晓+陈妍希-你我,http://em.21dtv.com/songs/60108128.mkv +萧淑慎+SPICY GIRL麻辣女生-女王,http://em.21dtv.com/songs/60102694.mkv +王思佳-女王,http://em.21dtv.com/songs/60096402.mkv +李玟-你问,http://em.21dtv.com/songs/60089962.mkv +陈淑桦-难忘,http://em.21dtv.com/songs/60089531.mkv +候湘婷-暖味,http://em.21dtv.com/songs/60087343.mkv +陈珊妮-女王,http://em.21dtv.com/songs/60080909.mkv +LIL WAYNE+DETAIL-no worries,http://em.21dtv.com/songs/60073666.mkv +牛奶咖啡-next world,http://em.21dtv.com/songs/60073660.mkv +王祖蓝-女巫,http://em.21dtv.com/songs/60064673.mkv +陈慧琳-暖我,http://em.21dtv.com/songs/60032806.mkv +江美琪-凝望,http://em.21dtv.com/songs/60032720.mkv +邓丽君-凝望,http://em.21dtv.com/songs/60032719.mkv +陈百强-凝望,http://em.21dtv.com/songs/60032718.mkv +李炆-你我,http://em.21dtv.com/songs/60032310.mkv +曹格+魏雪漫-你我,http://em.21dtv.com/songs/60032309.mkv +苏打绿-你喔,http://em.21dtv.com/songs/60032308.mkv +J.LENNON-P.MCCARTNW-norwegian wood(无原唱),http://em.21dtv.com/songs/60004161.mkv +康净淳-no way,http://em.21dtv.com/songs/60004141.mkv +陈晓东-no way,http://em.21dtv.com/songs/60004140.mkv +ROTTYFUL SKY-no way,http://em.21dtv.com/songs/60004139.mkv +DUKE DUMONT+AME-need u(100%),http://em.21dtv.com/songs/60082277.mkv +邰正宵-泥土,http://em.21dtv.com/songs/60126256.mkv +JASON ALDEAN-night train(演唱会),http://em.21dtv.com/songs/60073662.mkv +小5-难题,http://em.21dtv.com/songs/60069643.mkv +1976-努特,http://em.21dtv.com/songs/60032785.mkv +雷乐队-念头(无原唱),http://em.21dtv.com/songs/60032663.mkv +刘平芳-难题,http://em.21dtv.com/songs/60031233.mkv +费翔-难题,http://em.21dtv.com/songs/60031232.mkv +张克帆-那天,http://em.21dtv.com/songs/60030777.mkv +杨乃文-那天,http://em.21dtv.com/songs/60030776.mkv +刘若英-那天,http://em.21dtv.com/songs/60030775.mkv +林建亨-那天,http://em.21dtv.com/songs/60030774.mkv +佚名-never trought,http://em.21dtv.com/songs/60004081.mkv +石文-年生,http://em.21dtv.com/songs/60135610.mkv +张绍军-你说,http://em.21dtv.com/songs/60133686.mkv +黄奕轩-你说,http://em.21dtv.com/songs/60133125.mkv +阎奕格-凝视,http://em.21dtv.com/songs/60131920.mkv +许先-女神,http://em.21dtv.com/songs/60126177.mkv +郑欣宜-女神,http://em.21dtv.com/songs/60122173.mkv +HoJoon-那时,http://em.21dtv.com/songs/60120216.mkv +许先-女神,http://em.21dtv.com/songs/60119960.mkv +于朦胧-凝视,http://em.21dtv.com/songs/60119238.mkv +姜楠-难舍,http://em.21dtv.com/songs/60115780.mkv +张海娟-你说,http://em.21dtv.com/songs/60113483.mkv +包启宁-那时,http://em.21dtv.com/songs/60109198.mkv +柳岩-男神,http://em.21dtv.com/songs/60108634.mkv +夏毅-那时,http://em.21dtv.com/songs/60106737.mkv +柳岩-男神,http://em.21dtv.com/songs/60102403.mkv +罗子淇-你说,http://em.21dtv.com/songs/60098688.mkv +干露露+干毛毛+干妈妈-娘仨,http://em.21dtv.com/songs/60094082.mkv +海乃木呷-女神,http://em.21dtv.com/songs/60085559.mkv +佟宇-难说,http://em.21dtv.com/songs/60085502.mkv +YAEL NAIM-new soul,http://em.21dtv.com/songs/60082278.mkv +朱俐静-女神,http://em.21dtv.com/songs/60077037.mkv +钟洁-你说,http://em.21dtv.com/songs/60076960.mkv +十七-你说,http://em.21dtv.com/songs/60076959.mkv +陈展鹏-那谁(演唱会),http://em.21dtv.com/songs/60076800.mkv +AKB48-new ship,http://em.21dtv.com/songs/60073658.mkv +林健辉-内伤,http://em.21dtv.com/songs/60070962.mkv +周汤豪-内伤,http://em.21dtv.com/songs/60067250.mkv +郑嘉嘉-那谁,http://em.21dtv.com/songs/60063444.mkv +荣杨-女神,http://em.21dtv.com/songs/60062873.mkv +杭娇-女神,http://em.21dtv.com/songs/60062431.mkv +WIZ KHALIFA-no sleep,http://em.21dtv.com/songs/60062177.mkv +PAOLO NUTINI-new shoes,http://em.21dtv.com/songs/60062124.mkv +苏永康-那谁,http://em.21dtv.com/songs/60061443.mkv +赵薇-女生,http://em.21dtv.com/songs/60033002.mkv +黑GIRL-女生,http://em.21dtv.com/songs/60033001.mkv +格萨拉组合-女神,http://em.21dtv.com/songs/60032998.mkv +阳一-暖手,http://em.21dtv.com/songs/60032805.mkv +刘仲仪-暖手,http://em.21dtv.com/songs/60032804.mkv +卢巧音-暖色,http://em.21dtv.com/songs/60032802.mkv +卢巧音-暖色(演唱会),http://em.21dtv.com/songs/60032801.mkv +俞隆华-弄狮,http://em.21dtv.com/songs/60032778.mkv +佚名-弄狮,http://em.21dtv.com/songs/60032777.mkv +彭羚-你说,http://em.21dtv.com/songs/60032249.mkv +陈科妤-你说,http://em.21dtv.com/songs/60032248.mkv +蔡健雅-你说,http://em.21dtv.com/songs/60032247.mkv +2女-你说,http://em.21dtv.com/songs/60032246.mkv +蔡健雅-你说(演唱会),http://em.21dtv.com/songs/60032245.mkv +扬扬-你说(无原唱),http://em.21dtv.com/songs/60032244.mkv +宋新妮-你说(无原唱),http://em.21dtv.com/songs/60032243.mkv +芭比-你说(无原唱),http://em.21dtv.com/songs/60032242.mkv +刘子菲-霓裳,http://em.21dtv.com/songs/60031364.mkv +郑伊健-内伤,http://em.21dtv.com/songs/60031331.mkv +陈小春-内伤,http://em.21dtv.com/songs/60031330.mkv +熊天平-难说,http://em.21dtv.com/songs/60031229.mkv +心愿-男生(无原唱),http://em.21dtv.com/songs/60031042.mkv +佚名-no secrets,http://em.21dtv.com/songs/60004136.mkv +TLC-no scrubs(无原唱),http://em.21dtv.com/songs/60004135.mkv +佚名-no scrub,http://em.21dtv.com/songs/60004134.mkv +佚名-nice & slow,http://em.21dtv.com/songs/60004095.mkv +吕珊+苏珊-never s(演唱会),http://em.21dtv.com/songs/60004072.mkv +周艳泓-女人KTV,http://em.21dtv.com/songs/60096226.mkv +葛林-男人,http://em.21dtv.com/songs/60131775.mkv +张磊-暖人,http://em.21dtv.com/songs/60130332.mkv +郭婷筠-女人,http://em.21dtv.com/songs/60123238.mkv +袁娅维-鸟人,http://em.21dtv.com/songs/60118899.mkv +麋先生-内容,http://em.21dtv.com/songs/60118208.mkv +陈大天-鸟人,http://em.21dtv.com/songs/60116335.mkv +陈随意-男人,http://em.21dtv.com/songs/60113077.mkv +贺金-男人,http://em.21dtv.com/songs/60112269.mkv +刘思伟-男人,http://em.21dtv.com/songs/60108341.mkv +梁海洋-男人,http://em.21dtv.com/songs/60107841.mkv +星源-男人,http://em.21dtv.com/songs/60105107.mkv +孙国庆-男人,http://em.21dtv.com/songs/60104036.mkv +乌拉多恩-鸟人,http://em.21dtv.com/songs/60096171.mkv +冷漠-钮榕,http://em.21dtv.com/songs/60087368.mkv +王新什-女人,http://em.21dtv.com/songs/60083563.mkv +李欧-男人,http://em.21dtv.com/songs/60083469.mkv +GUNS N' ROSES-november rain,http://em.21dtv.com/songs/60073675.mkv +MARILYN MANSON-no reflection,http://em.21dtv.com/songs/60067956.mkv +李佳璐-night rainbow,http://em.21dtv.com/songs/60066696.mkv +DAPPY-no regrets,http://em.21dtv.com/songs/60062000.mkv +童安格-女人,http://em.21dtv.com/songs/60032892.mkv +毛阿敏-女人,http://em.21dtv.com/songs/60032891.mkv +林姗-女人,http://em.21dtv.com/songs/60032890.mkv +黄阅-女人,http://em.21dtv.com/songs/60032889.mkv +陈琳-女人,http://em.21dtv.com/songs/60032888.mkv +曹颖-女人,http://em.21dtv.com/songs/60032887.mkv +安雯-女人,http://em.21dtv.com/songs/60032886.mkv +阿利-女人,http://em.21dtv.com/songs/60032885.mkv +黄小琥-女人(无原唱),http://em.21dtv.com/songs/60032884.mkv +陈慧琳-懦弱,http://em.21dtv.com/songs/60032826.mkv +陈慧琳-懦弱(演唱会),http://em.21dtv.com/songs/60032825.mkv +容祖儿-凝溶(演唱会),http://em.21dtv.com/songs/60032717.mkv +恩炀-泥人,http://em.21dtv.com/songs/60031355.mkv +天孪兄弟-男人,http://em.21dtv.com/songs/60030928.mkv +庞龙-男人,http://em.21dtv.com/songs/60030927.mkv +侧田-男人,http://em.21dtv.com/songs/60030926.mkv +范晓萱-男人(演唱会),http://em.21dtv.com/songs/60030924.mkv +佚名-november rain(无原唱),http://em.21dtv.com/songs/60004187.mkv +GILBERT O'SULLIVAN-nothing rhymed,http://em.21dtv.com/songs/60004181.mkv +ROBBIE WILLIAMS-no regrets,http://em.21dtv.com/songs/60004133.mkv +佚名-no regret,http://em.21dtv.com/songs/60004132.mkv +佚名-nhac rung,http://em.21dtv.com/songs/60004094.mkv +陈瑞-浓情,http://em.21dtv.com/songs/60116349.mkv +一晨-年轻,http://em.21dtv.com/songs/60112480.mkv +醉美-娘亲,http://em.21dtv.com/songs/60100512.mkv +小龙女-娘亲,http://em.21dtv.com/songs/60098287.mkv +一晨-年轻,http://em.21dtv.com/songs/60096694.mkv +丁炜-那秋,http://em.21dtv.com/songs/60094380.mkv +余文乐-南拳,http://em.21dtv.com/songs/60092288.mkv +何静-念情,http://em.21dtv.com/songs/60090614.mkv +陈洁丽-浓情(演唱会),http://em.21dtv.com/songs/60062258.mkv +郑秀文-浓情,http://em.21dtv.com/songs/60032769.mkv +张国荣-浓情(无原唱),http://em.21dtv.com/songs/60032768.mkv +钟舒漫-扭曲,http://em.21dtv.com/songs/60032739.mkv +龙千玉-孽情(无原唱),http://em.21dtv.com/songs/60032683.mkv +董华-娘亲,http://em.21dtv.com/songs/60032665.mkv +王彦迪-哪怕,http://em.21dtv.com/songs/60112102.mkv +莫文蔚-哪怕,http://em.21dtv.com/songs/60110491.mkv +NINE MUSES-no playboy,http://em.21dtv.com/songs/60004130.mkv +EXILE-NO LIMIT,http://em.21dtv.com/songs/60096630.mkv +曲婉婷-Nobody's Fault,http://em.21dtv.com/songs/60100096.mkv +Meghan Trainor-No,http://em.21dtv.com/songs/60121292.mkv +MAVERICK SABRE-no one,http://em.21dtv.com/songs/60066698.mkv +MARC ANTHONY-no one,http://em.21dtv.com/songs/60004128.mkv +ALICIA KEYS-no one,http://em.21dtv.com/songs/60004127.mkv +那对夫妻-妮妮,http://em.21dtv.com/songs/60135794.mkv +陈冠宇-喃喃,http://em.21dtv.com/songs/60134392.mkv +苗小青-念念,http://em.21dtv.com/songs/60134174.mkv +By2-念念,http://em.21dtv.com/songs/60132057.mkv +林佳音-你呢,http://em.21dtv.com/songs/60131540.mkv +宋旭-那年,http://em.21dtv.com/songs/60128994.mkv +门丽-扭扭,http://em.21dtv.com/songs/60128488.mkv +曹伊笛-念你,http://em.21dtv.com/songs/60126960.mkv +刘浩航-暖男,http://em.21dtv.com/songs/60117586.mkv +阿振-娜娜,http://em.21dtv.com/songs/60117312.mkv +高飞-暖女,http://em.21dtv.com/songs/60114284.mkv +金润吉-奶奶,http://em.21dtv.com/songs/60114151.mkv +韩雷+大兵-挠挠,http://em.21dtv.com/songs/60110675.mkv +大兵+韩雷-挠挠,http://em.21dtv.com/songs/60110108.mkv +刘若英-念念,http://em.21dtv.com/songs/60110040.mkv +崔子格-暖男,http://em.21dtv.com/songs/60109287.mkv +赖鸿根-奶奶,http://em.21dtv.com/songs/60107232.mkv +旭日阳刚(刘刚)-奶奶,http://em.21dtv.com/songs/60106893.mkv +王电-念你,http://em.21dtv.com/songs/60077007.mkv +袁娅维-你呢,http://em.21dtv.com/songs/60070993.mkv +CASCADA-night nurse,http://em.21dtv.com/songs/60069115.mkv +阮以伟-那年,http://em.21dtv.com/songs/60066168.mkv +刘子千-念你,http://em.21dtv.com/songs/60061155.mkv +梁静茹-暖暖,http://em.21dtv.com/songs/60032799.mkv +容祖儿-牛奶,http://em.21dtv.com/songs/60032733.mkv +张骁-妞妞,http://em.21dtv.com/songs/60032722.mkv +蔡卓妍-年年,http://em.21dtv.com/songs/60032628.mkv +苏打绿-呢喃,http://em.21dtv.com/songs/60031312.mkv +任贤齐-呢喃,http://em.21dtv.com/songs/60031311.mkv +黄莺莺-呢喃,http://em.21dtv.com/songs/60031310.mkv +张芯瑜+SWEETY-闹闹,http://em.21dtv.com/songs/60031306.mkv +丁香+晓晓-奈奈,http://em.21dtv.com/songs/60030874.mkv +陈冠希-number nine,http://em.21dtv.com/songs/60004193.mkv +WESTLIFE-no no(演唱会),http://em.21dtv.com/songs/60004123.mkv +佚名-newyork niwyork,http://em.21dtv.com/songs/60004091.mkv +厉娜-na na,http://em.21dtv.com/songs/60004043.mkv +贺东-农民,http://em.21dtv.com/songs/60134246.mkv +姜涛-农民,http://em.21dtv.com/songs/60102098.mkv +侯湘婷-暖昧,http://em.21dtv.com/songs/60090626.mkv +李宜萱-凝梦,http://em.21dtv.com/songs/60083554.mkv +B.A.P-no mercy,http://em.21dtv.com/songs/60082280.mkv +蓝月心-暖梦,http://em.21dtv.com/songs/60081028.mkv +王瑞淇-柠檬,http://em.21dtv.com/songs/60072256.mkv +吴忠明-嗯嘛,http://em.21dtv.com/songs/60064610.mkv +容祖儿-疒孟,http://em.21dtv.com/songs/60062891.mkv +陈星-农民,http://em.21dtv.com/songs/60032755.mkv +BEYOND-农民,http://em.21dtv.com/songs/60032754.mkv +黄贯中-农民(演唱会),http://em.21dtv.com/songs/60032753.mkv +BEYOND-农民(演唱会),http://em.21dtv.com/songs/60032752.mkv +张峻宁-柠檬,http://em.21dtv.com/songs/60032711.mkv +王杰-你们,http://em.21dtv.com/songs/60031912.mkv +水木年华-你们,http://em.21dtv.com/songs/60031911.mkv +王尧-那么,http://em.21dtv.com/songs/60030725.mkv +佚名-nowbere man,http://em.21dtv.com/songs/60004192.mkv +那英-no more,http://em.21dtv.com/songs/60004121.mkv +JAMELIA-no more,http://em.21dtv.com/songs/60004120.mkv +S.H.E-never mind,http://em.21dtv.com/songs/60004070.mkv +张娜拉-娜拉INCHINA,http://em.21dtv.com/songs/60091062.mkv +张碧晨-年轮,http://em.21dtv.com/songs/60126894.mkv +张静-年轮,http://em.21dtv.com/songs/60120536.mkv +汪苏泷-年轮,http://em.21dtv.com/songs/60116996.mkv +汪苏泷-年轮,http://em.21dtv.com/songs/60112824.mkv +王奕瑾-暖流,http://em.21dtv.com/songs/60112098.mkv +张碧晨-年轮,http://em.21dtv.com/songs/60111894.mkv +花小贱+夏婉安-孽恋,http://em.21dtv.com/songs/60100407.mkv +林欣彤-鸟籣,http://em.21dtv.com/songs/60092876.mkv +光良-年轮,http://em.21dtv.com/songs/60083548.mkv +祝兰兰-内脸,http://em.21dtv.com/songs/60080874.mkv +黄雅莉-年轮,http://em.21dtv.com/songs/60077001.mkv +SKE48-チョコの奴隶,http://em.21dtv.com/songs/60074245.mkv +2 CHAINZ FT+DRAKE-no lie,http://em.21dtv.com/songs/60073665.mkv +JESSIE WARE-night light,http://em.21dtv.com/songs/60073661.mkv +泳儿-哪里,http://em.21dtv.com/songs/60070961.mkv +BASSHUNTER-northern light,http://em.21dtv.com/songs/60070381.mkv +宋熙铭-年轮,http://em.21dtv.com/songs/60069680.mkv +尹子维-奴隶,http://em.21dtv.com/songs/60064669.mkv +子祺-暖流,http://em.21dtv.com/songs/60063492.mkv +林欣彤-鸟笼,http://em.21dtv.com/songs/60062654.mkv +温岚-女力,http://em.21dtv.com/songs/60032874.mkv +江玲-女郎(无原唱),http://em.21dtv.com/songs/60032873.mkv +凤飞飞-暖流,http://em.21dtv.com/songs/60032798.mkv +陈慧珊+苏永康-暖流,http://em.21dtv.com/songs/60032797.mkv +江涛-年轮,http://em.21dtv.com/songs/60032627.mkv +刘德华-腻了,http://em.21dtv.com/songs/60032614.mkv +周杰伦-逆鳞,http://em.21dtv.com/songs/60032607.mkv +陶晶莹-你来,http://em.21dtv.com/songs/60031879.mkv +苏慧伦-你来,http://em.21dtv.com/songs/60031878.mkv +许巍-那里(演唱会),http://em.21dtv.com/songs/60030719.mkv +安室奈美惠-new look,http://em.21dtv.com/songs/60004086.mkv +F.I.R-never land,http://em.21dtv.com/songs/60004069.mkv +杨宗纬-你看,http://em.21dtv.com/songs/60083516.mkv +PINK-nobody knows,http://em.21dtv.com/songs/60073667.mkv +杨林-钮扣(无原唱),http://em.21dtv.com/songs/60032743.mkv +陈洁仪-你酷(演唱会),http://em.21dtv.com/songs/60031862.mkv +THE TONY RICH PROJEC-nobody knows,http://em.21dtv.com/songs/60004150.mkv +MATZKA-no k,http://em.21dtv.com/songs/60004111.mkv +苏打绿-女爵,http://em.21dtv.com/songs/60126106.mkv +林佑威-念旧,http://em.21dtv.com/songs/60125766.mkv +李佳薇-念旧,http://em.21dtv.com/songs/60122833.mkv +瑄瑄-念君,http://em.21dtv.com/songs/60117935.mkv +雷应婕-念旧(故事情节),http://em.21dtv.com/songs/60101569.mkv +葛清-凝聚,http://em.21dtv.com/songs/60100441.mkv +民歌-凝聚,http://em.21dtv.com/songs/60091552.mkv +陈一玲-女爵,http://em.21dtv.com/songs/60083562.mkv +苏打绿-女爵(演唱会),http://em.21dtv.com/songs/60077019.mkv +陈妍希-直觉,http://em.21dtv.com/songs/60076774.mkv +陈奕迅-内疚,http://em.21dtv.com/songs/60064608.mkv +杨乃文-女爵,http://em.21dtv.com/songs/60032872.mkv +刘德华-念旧,http://em.21dtv.com/songs/60032655.mkv +周耀辉-内疚,http://em.21dtv.com/songs/60031314.mkv +黎明-内疚,http://em.21dtv.com/songs/60031313.mkv +那英-闹剧,http://em.21dtv.com/songs/60031305.mkv +佚名-乃街,http://em.21dtv.com/songs/60030867.mkv +萧丽珠-乃街,http://em.21dtv.com/songs/60030866.mkv +梁博-男孩,http://em.21dtv.com/songs/60133895.mkv +周柏豪-怒花,http://em.21dtv.com/songs/60133490.mkv +耀乐团-你好,http://em.21dtv.com/songs/60132808.mkv +李荣浩-女孩,http://em.21dtv.com/songs/60121785.mkv +橙草-年华,http://em.21dtv.com/songs/60116980.mkv +韦礼安-女孩,http://em.21dtv.com/songs/60112382.mkv +容祖儿-女皇,http://em.21dtv.com/songs/60111023.mkv +Lovelyz-你好,http://em.21dtv.com/songs/60109844.mkv +缘分心儿-溺海,http://em.21dtv.com/songs/60106188.mkv +琦峰-呐喊,http://em.21dtv.com/songs/60102567.mkv +王菲-奈何,http://em.21dtv.com/songs/60101450.mkv +费玉清-奈何,http://em.21dtv.com/songs/60095090.mkv +王大文-你好,http://em.21dtv.com/songs/60094593.mkv +太极乐队-呐喊,http://em.21dtv.com/songs/60092493.mkv +李茂山-奈何,http://em.21dtv.com/songs/60088046.mkv +郑莹莹-女孩,http://em.21dtv.com/songs/60083561.mkv +封立志-年华,http://em.21dtv.com/songs/60083547.mkv +邓丽欣-年华,http://em.21dtv.com/songs/60077000.mkv +圈圈-你好,http://em.21dtv.com/songs/60076913.mkv +陈伟霆-女皇,http://em.21dtv.com/songs/60068551.mkv +董璇+璇风-年华,http://em.21dtv.com/songs/60068549.mkv +谢容儿-年华,http://em.21dtv.com/songs/60063165.mkv +西单女孩-年华,http://em.21dtv.com/songs/60063119.mkv +韩庚-女皇,http://em.21dtv.com/songs/60061477.mkv +棉花糖-女孩,http://em.21dtv.com/songs/60032859.mkv +陈司翰-女孩(演唱会),http://em.21dtv.com/songs/60032858.mkv +田震-怒吼,http://em.21dtv.com/songs/60032790.mkv +刘若英-年华,http://em.21dtv.com/songs/60032620.mkv +李国祥-你好,http://em.21dtv.com/songs/60031761.mkv +腾格尔-你好(演唱会),http://em.21dtv.com/songs/60031760.mkv +刘盼-奈何,http://em.21dtv.com/songs/60030872.mkv +邓丽君-奈何(演唱会),http://em.21dtv.com/songs/60030870.mkv +张韶涵-呐喊,http://em.21dtv.com/songs/60030855.mkv +卢巧音-呐喊(演唱会),http://em.21dtv.com/songs/60030853.mkv +谢安琪-呐喊(演唱会),http://em.21dtv.com/songs/60030852.mkv +AVRIL LAVIGNE-nobodys home,http://em.21dtv.com/songs/60004158.mkv +WAKA-no hands,http://em.21dtv.com/songs/60004110.mkv +张惠妹-难搞,http://em.21dtv.com/songs/60112669.mkv +张惠妹-难搞,http://em.21dtv.com/songs/60111073.mkv +陈冰-逆光,http://em.21dtv.com/songs/60105473.mkv +何韵诗-妮歌,http://em.21dtv.com/songs/60092270.mkv +花世纪-那个,http://em.21dtv.com/songs/60080570.mkv +FUYING+SAM-逆光,http://em.21dtv.com/songs/60080398.mkv +陈小春-难怪,http://em.21dtv.com/songs/60070977.mkv +王俊凯-逆光,http://em.21dtv.com/songs/60069679.mkv +容祖儿-暖光(演唱会),http://em.21dtv.com/songs/60032796.mkv +孙燕姿-逆光,http://em.21dtv.com/songs/60032605.mkv +何耀珊-逆光,http://em.21dtv.com/songs/60032604.mkv +SERANI-no games,http://em.21dtv.com/songs/60004109.mkv +佚名-naughty girls,http://em.21dtv.com/songs/60004057.mkv +BEYONCE KNOWLES-naughty girl,http://em.21dtv.com/songs/60004056.mkv +DESTINY'S CHILD-nasty girl,http://em.21dtv.com/songs/60004049.mkv +龙梅子+葛荟婕-怒放,http://em.21dtv.com/songs/60130957.mkv +谭竹青-念佛,http://em.21dtv.com/songs/60127412.mkv +龙梅子+葛荟婕-怒放,http://em.21dtv.com/songs/60124774.mkv +马可谦-暖风,http://em.21dtv.com/songs/60116386.mkv +景志刚-怒放,http://em.21dtv.com/songs/60103324.mkv +枫桥-念佛,http://em.21dtv.com/songs/60083551.mkv +丁思忖+孙菀-逆风,http://em.21dtv.com/songs/60081300.mkv +徐海星-逆风,http://em.21dtv.com/songs/60076997.mkv +DIDO-no freedom,http://em.21dtv.com/songs/60073664.mkv +ぱすぽ-next flight,http://em.21dtv.com/songs/60071644.mkv +马雨贤-逆风,http://em.21dtv.com/songs/60067295.mkv +周杰伦-懦夫(演唱会),http://em.21dtv.com/songs/60032824.mkv +周传雄-暖风,http://em.21dtv.com/songs/60032795.mkv +周传雄-暖风(演唱会),http://em.21dtv.com/songs/60032794.mkv +郑钧-怒放,http://em.21dtv.com/songs/60032786.mkv +童唱-农夫(无原唱),http://em.21dtv.com/songs/60032746.mkv +花园精灵-逆风,http://em.21dtv.com/songs/60032601.mkv +黄思婷-纳福,http://em.21dtv.com/songs/60030856.mkv +MADONNA-nothing fails,http://em.21dtv.com/songs/60004175.mkv +LILY ALLEN-not fair,http://em.21dtv.com/songs/60004165.mkv +BEE GEES-night fever(演唱会),http://em.21dtv.com/songs/60004100.mkv +MARLON ROUDETTE-NEW AGE,http://em.21dtv.com/songs/60096629.mkv +林俊杰-女儿,http://em.21dtv.com/songs/60089996.mkv +黄安-女儿,http://em.21dtv.com/songs/60032836.mkv +佚名-never ever,http://em.21dtv.com/songs/60004064.mkv +安室奈美惠-never end,http://em.21dtv.com/songs/60004063.mkv +佚名-national express,http://em.21dtv.com/songs/60004052.mkv +张津涤-暖冬,http://em.21dtv.com/songs/60133676.mkv +申钰林-难道,http://em.21dtv.com/songs/60104330.mkv +凯歌-年代,http://em.21dtv.com/songs/60096693.mkv +陶莉萍-难道,http://em.21dtv.com/songs/60090302.mkv +SNOW-逆さまの蝶,http://em.21dtv.com/songs/60083545.mkv +赵文-男旦,http://em.21dtv.com/songs/60083467.mkv +褚乔-New Day,http://em.21dtv.com/songs/60080467.mkv +ROOMIE-你懂,http://em.21dtv.com/songs/60076905.mkv +迪克牛仔+高慧君-弄丢,http://em.21dtv.com/songs/60032776.mkv +A-LIN-难得,http://em.21dtv.com/songs/60031193.mkv +羽泉-难道,http://em.21dtv.com/songs/60031163.mkv +林凡-难道,http://em.21dtv.com/songs/60031162.mkv +洪俊扬-难道,http://em.21dtv.com/songs/60031161.mkv +窦智孔-难道,http://em.21dtv.com/songs/60031160.mkv +李玟-no doubt,http://em.21dtv.com/songs/60004108.mkv +LINKIN PARK-new divide,http://em.21dtv.com/songs/60004084.mkv +张溪-暖春,http://em.21dtv.com/songs/60129103.mkv +赵雅萱-奶茶,http://em.21dtv.com/songs/60105400.mkv +佳小宇-奶茶,http://em.21dtv.com/songs/60085494.mkv +赵雅萱-奶茶(演唱会),http://em.21dtv.com/songs/60070968.mkv +陈芳语-never change,http://em.21dtv.com/songs/60066693.mkv +龙梅子-暖城,http://em.21dtv.com/songs/60062715.mkv +牛朝阳-鸟巢,http://em.21dtv.com/songs/60032672.mkv +佚名-nobodys child,http://em.21dtv.com/songs/60004157.mkv +金南玲+李俊佑-暖宝,http://em.21dtv.com/songs/60129674.mkv +ADAM LAMBERT-no boundaries,http://em.21dtv.com/songs/60071646.mkv +林泰燊-女伴,http://em.21dtv.com/songs/60069685.mkv +女兵六连-女兵,http://em.21dtv.com/songs/60032833.mkv +CHRIS BROWN-no bullshit,http://em.21dtv.com/songs/60004107.mkv +朴树-new boy,http://em.21dtv.com/songs/60004083.mkv +UNWRITTEN-natasha bedingfield,http://em.21dtv.com/songs/60004051.mkv +裂天-溺爱,http://em.21dtv.com/songs/60127379.mkv +欧宇涵-难爱,http://em.21dtv.com/songs/60102427.mkv +路童-孽爱,http://em.21dtv.com/songs/60100974.mkv +本兮-溺爱,http://em.21dtv.com/songs/60080427.mkv +TREY SONGZ-never again,http://em.21dtv.com/songs/60073653.mkv +潘嘉丽-溺爱,http://em.21dtv.com/songs/60032616.mkv +郑钧-溺爱(演唱会),http://em.21dtv.com/songs/60032615.mkv +LETOYA-not anymore,http://em.21dtv.com/songs/60004164.mkv +朴政珉-not alone,http://em.21dtv.com/songs/60004163.mkv +陶晶莹-no answer,http://em.21dtv.com/songs/60004106.mkv +JORDIN SPARKS+CHRIS-no air,http://em.21dtv.com/songs/60004105.mkv +李虎-no1,http://em.21dtv.com/songs/60082276.mkv +李克勤-你5,http://em.21dtv.com/songs/60031373.mkv +可米小子-number2,http://em.21dtv.com/songs/60004195.mkv +BIGBANG-number1,http://em.21dtv.com/songs/60004194.mkv +BOA-no1,http://em.21dtv.com/songs/60004146.mkv +黑棒组合-no 1,http://em.21dtv.com/songs/60004144.mkv +宝儿-no 1,http://em.21dtv.com/songs/60004143.mkv +TWINS-no 1,http://em.21dtv.com/songs/60004142.mkv +李宇春-n+1,http://em.21dtv.com/songs/60004039.mkv +姚亦晴(Shiny)-梦着,http://em.21dtv.com/songs/60133542.mkv +张超-明知,http://em.21dtv.com/songs/60121681.mkv +李荣浩-满座,http://em.21dtv.com/songs/60118689.mkv +任飞扬-面子,http://em.21dtv.com/songs/60118330.mkv +尕让邓真-玛智,http://em.21dtv.com/songs/60117689.mkv +田尊铭-梦战,http://em.21dtv.com/songs/60115316.mkv +秋裤大叔-面子,http://em.21dtv.com/songs/60108777.mkv +余佳泽-埋醉,http://em.21dtv.com/songs/60098113.mkv +言承旭-魔咒,http://em.21dtv.com/songs/60092047.mkv +刁寒-莫醉,http://em.21dtv.com/songs/60089160.mkv +陈峙民-慢走,http://em.21dtv.com/songs/60088871.mkv +七朵花-魔咒,http://em.21dtv.com/songs/60083433.mkv +赵小兵-面子,http://em.21dtv.com/songs/60076710.mkv +叶启田-梦中(无原唱),http://em.21dtv.com/songs/60075518.mkv +韩少-埋葬,http://em.21dtv.com/songs/60072177.mkv +李明洋-明知,http://em.21dtv.com/songs/60069620.mkv +周艳泓-帽子,http://em.21dtv.com/songs/60061401.mkv +谭咏麟-目赠,http://em.21dtv.com/songs/60030597.mkv +东方神起-魔咒,http://em.21dtv.com/songs/60030370.mkv +李乐诗+黄凯芹-明知,http://em.21dtv.com/songs/60030256.mkv +张智成-名字,http://em.21dtv.com/songs/60030087.mkv +梁朝伟-名字,http://em.21dtv.com/songs/60030086.mkv +李泉-名字(演唱会),http://em.21dtv.com/songs/60030085.mkv +叶玉卿-梦罪,http://em.21dtv.com/songs/60029840.mkv +佚名-梦中(无原唱),http://em.21dtv.com/songs/60029761.mkv +苏慧伦-满足,http://em.21dtv.com/songs/60028547.mkv +佚名-卖醉,http://em.21dtv.com/songs/60028491.mkv +罗时丰-买醉,http://em.21dtv.com/songs/60028429.mkv +陈百潭-买醉,http://em.21dtv.com/songs/60028428.mkv +佚名-蚂蚱,http://em.21dtv.com/songs/60028413.mkv +王菲-麻醉,http://em.21dtv.com/songs/60028346.mkv +容祖儿-麻醉,http://em.21dtv.com/songs/60028345.mkv +陈洁仪-麻醉,http://em.21dtv.com/songs/60028344.mkv +王菲-麻醉(演唱会),http://em.21dtv.com/songs/60028343.mkv +侧田-命硬,http://em.21dtv.com/songs/60132205.mkv +回音哥-模样,http://em.21dtv.com/songs/60128932.mkv +骆胤鸣-没有,http://em.21dtv.com/songs/60128608.mkv +骆胤鸣-没有,http://em.21dtv.com/songs/60127600.mkv +范英楠-蚂蚁,http://em.21dtv.com/songs/60127341.mkv +刘佳-漫延,http://em.21dtv.com/songs/60126631.mkv +岩宰仑-命运,http://em.21dtv.com/songs/60124803.mkv +花乐团-梦呓,http://em.21dtv.com/songs/60124396.mkv +心瑶-芈瑶,http://em.21dtv.com/songs/60118587.mkv +于朦胧-梦游,http://em.21dtv.com/songs/60117535.mkv +[Group] +groupName=十六万歌曲MV等 - 11 +陈思思-满月,http://em.21dtv.com/songs/60117338.mkv +周柏豪-磨牙,http://em.21dtv.com/songs/60116657.mkv +东阳-马云,http://em.21dtv.com/songs/60116501.mkv +蹇红-谜雨,http://em.21dtv.com/songs/60110564.mkv +宋体团体-忙音,http://em.21dtv.com/songs/60103207.mkv +雅娜-梦游,http://em.21dtv.com/songs/60100614.mkv +阿悄-梦游,http://em.21dtv.com/songs/60100544.mkv +杨培安-模样,http://em.21dtv.com/songs/60096830.mkv +刘其贤-没用,http://em.21dtv.com/songs/60096720.mkv +爱戴-名媛,http://em.21dtv.com/songs/60096700.mkv +群星-蚂蚁,http://em.21dtv.com/songs/60096436.mkv +欧阳铭芮-牧云(演唱会),http://em.21dtv.com/songs/60096376.mkv +姜昆+戴志成-埋怨,http://em.21dtv.com/songs/60089784.mkv +陈瑞-没有,http://em.21dtv.com/songs/60088907.mkv +家家-命运,http://em.21dtv.com/songs/60085476.mkv +陈魁-魅影,http://em.21dtv.com/songs/60085445.mkv +麋先生-麋语,http://em.21dtv.com/songs/60084687.mkv +杨爱瑾-绵羊,http://em.21dtv.com/songs/60083420.mkv +周笔畅-密友,http://em.21dtv.com/songs/60080380.mkv +唐黛影-墨缘,http://em.21dtv.com/songs/60076753.mkv +TWINS-蜜月,http://em.21dtv.com/songs/60076707.mkv +张若男+额尔敦-梦圆,http://em.21dtv.com/songs/60076690.mkv +郑欣宜-miss you(演唱会),http://em.21dtv.com/songs/60073606.mkv +王洋-沐阳,http://em.21dtv.com/songs/60072212.mkv +傅振辉-梅雨,http://em.21dtv.com/songs/60070914.mkv +郑家星-missing you,http://em.21dtv.com/songs/60070376.mkv +G-DRAGON-missing you,http://em.21dtv.com/songs/60070375.mkv +蔚雨芯-missing you,http://em.21dtv.com/songs/60067946.mkv +王鸣飞-墨玉,http://em.21dtv.com/songs/60064580.mkv +林欣彤-命硬(演唱会),http://em.21dtv.com/songs/60064572.mkv +卓依婷-明月,http://em.21dtv.com/songs/60064570.mkv +林欣彤-蚂蚁(演唱会),http://em.21dtv.com/songs/60064506.mkv +金贤重-marry you,http://em.21dtv.com/songs/60063680.mkv +BRUNO MARS-marry you,http://em.21dtv.com/songs/60063679.mkv +许廷铿-蚂蚁,http://em.21dtv.com/songs/60061395.mkv +萨日朗-牧野,http://em.21dtv.com/songs/60030635.mkv +徐小凤-某夜,http://em.21dtv.com/songs/60030501.mkv +张悬-模样,http://em.21dtv.com/songs/60030319.mkv +甄妮-命运,http://em.21dtv.com/songs/60030285.mkv +佚名-命运,http://em.21dtv.com/songs/60030284.mkv +香香-命运,http://em.21dtv.com/songs/60030283.mkv +刘嘉亮+申升勋-命运,http://em.21dtv.com/songs/60030282.mkv +动静乐团-命运,http://em.21dtv.com/songs/60030281.mkv +陈旭-命运,http://em.21dtv.com/songs/60030280.mkv +SARA-命运,http://em.21dtv.com/songs/60030279.mkv +朱咪咪-命运(演唱会),http://em.21dtv.com/songs/60030278.mkv +高峰-命运(无原唱),http://em.21dtv.com/songs/60030277.mkv +侧田-命硬,http://em.21dtv.com/songs/60030276.mkv +刘浩龙-命硬(演唱会),http://em.21dtv.com/songs/60030275.mkv +侧田-命硬(演唱会),http://em.21dtv.com/songs/60030274.mkv +金海心-绵羊,http://em.21dtv.com/songs/60029996.mkv +梁咏琪-密云,http://em.21dtv.com/songs/60029979.mkv +江伊涵-密语,http://em.21dtv.com/songs/60029978.mkv +游鸿明-谜语,http://em.21dtv.com/songs/60029949.mkv +刘尊-梦缘,http://em.21dtv.com/songs/60029748.mkv +孙燕姿-梦游,http://em.21dtv.com/songs/60029742.mkv +王菲-梦游(演唱会),http://em.21dtv.com/songs/60029741.mkv +黄舒骏-梦游(无原唱),http://em.21dtv.com/songs/60029740.mkv +张智霖-毛衣,http://em.21dtv.com/songs/60028661.mkv +张学友-毛衣,http://em.21dtv.com/songs/60028660.mkv +刘德华-毛衣,http://em.21dtv.com/songs/60028659.mkv +张茵-漫游,http://em.21dtv.com/songs/60028571.mkv +何炅-漫游,http://em.21dtv.com/songs/60028570.mkv +许美静-蔓延,http://em.21dtv.com/songs/60028557.mkv +谭晶-蔓延,http://em.21dtv.com/songs/60028556.mkv +阮筱芬-蔓延,http://em.21dtv.com/songs/60028555.mkv +温岚-满月(演唱会),http://em.21dtv.com/songs/60028544.mkv +THE SATURDAYS-missing you,http://em.21dtv.com/songs/60003848.mkv +BABY VOX-missing you,http://em.21dtv.com/songs/60003847.mkv +FT ISLAND-missing you(演唱会),http://em.21dtv.com/songs/60003846.mkv +东方神起-miss you,http://em.21dtv.com/songs/60003843.mkv +WESTLIFE-miss you,http://em.21dtv.com/songs/60003842.mkv +谭娟-梦乡,http://em.21dtv.com/songs/60131819.mkv +阳逸晨-梦想,http://em.21dtv.com/songs/60129706.mkv +舒方-梦想,http://em.21dtv.com/songs/60128329.mkv +萧迦勒-梦响,http://em.21dtv.com/songs/60126136.mkv +群星-明星,http://em.21dtv.com/songs/60123083.mkv +群星-梦想,http://em.21dtv.com/songs/60120853.mkv +US乐团-冒险,http://em.21dtv.com/songs/60120253.mkv +季彦霖+基地小虎-梦想,http://em.21dtv.com/songs/60116718.mkv +石尚-梦想,http://em.21dtv.com/songs/60116179.mkv +王中平-买心,http://em.21dtv.com/songs/60115282.mkv +张磊-梦想,http://em.21dtv.com/songs/60115162.mkv +马亚维-梦乡,http://em.21dtv.com/songs/60113087.mkv +李霞儿+李小燕-梦弦,http://em.21dtv.com/songs/60112769.mkv +陈茂丰-梦乡,http://em.21dtv.com/songs/60111498.mkv +穆维平+赵盈鹏-梦想,http://em.21dtv.com/songs/60111340.mkv +古巨基-明星,http://em.21dtv.com/songs/60108365.mkv +谭嘉惠-梦想,http://em.21dtv.com/songs/60107228.mkv +我是赛车手-铭鑫,http://em.21dtv.com/songs/60106886.mkv +马宥熙-梦醒,http://em.21dtv.com/songs/60106460.mkv +林依霖-冒险,http://em.21dtv.com/songs/60106016.mkv +张珑璟-萌星,http://em.21dtv.com/songs/60105861.mkv +张津涤-母校,http://em.21dtv.com/songs/60102232.mkv +圆圆-梦想,http://em.21dtv.com/songs/60100800.mkv +陈志嘉-冥想,http://em.21dtv.com/songs/60100582.mkv +李佳烽-梦想,http://em.21dtv.com/songs/60099297.mkv +小龙女-梦想,http://em.21dtv.com/songs/60098293.mkv +洪茜茜-满弦,http://em.21dtv.com/songs/60096828.mkv +田馥甄-渺小,http://em.21dtv.com/songs/60095016.mkv +吴浩康-明星,http://em.21dtv.com/songs/60092458.mkv +水木年华-迷乡,http://em.21dtv.com/songs/60091574.mkv +安又琪-梦想,http://em.21dtv.com/songs/60089809.mkv +刘雅丽-明星(演唱会),http://em.21dtv.com/songs/60083425.mkv +杨静-梦醒,http://em.21dtv.com/songs/60083400.mkv +郎郎-梦想,http://em.21dtv.com/songs/60080192.mkv +康正昊-迷信,http://em.21dtv.com/songs/60076701.mkv +李霞+黄晨霞-梦弦,http://em.21dtv.com/songs/60076679.mkv +张海+蒋易-梦想,http://em.21dtv.com/songs/60072199.mkv +刘心-梦想,http://em.21dtv.com/songs/60070930.mkv +魏新雨-梦乡,http://em.21dtv.com/songs/60069609.mkv +冷漠-母校,http://em.21dtv.com/songs/60068497.mkv +黄安-明星,http://em.21dtv.com/songs/60066160.mkv +郑欣宜-渺小,http://em.21dtv.com/songs/60066156.mkv +冉燃-梦乡,http://em.21dtv.com/songs/60064552.mkv +胡夏+陈翔+付辛博-梦想,http://em.21dtv.com/songs/60062473.mkv +陈瑞-魔星,http://em.21dtv.com/songs/60030367.mkv +谢霆锋-冥想,http://em.21dtv.com/songs/60030268.mkv +黄秋生-冥想,http://em.21dtv.com/songs/60030267.mkv +谢霆锋-冥想(演唱会),http://em.21dtv.com/songs/60030266.mkv +叶德娴-明星,http://em.21dtv.com/songs/60030239.mkv +罗文-明星,http://em.21dtv.com/songs/60030238.mkv +古巨基-明星,http://em.21dtv.com/songs/60030237.mkv +VEGA-明星,http://em.21dtv.com/songs/60030236.mkv +张国荣-明星(演唱会),http://em.21dtv.com/songs/60030235.mkv +汪明荃-明星(演唱会),http://em.21dtv.com/songs/60030234.mkv +梅艳芳+林忆莲-明星(演唱会),http://em.21dtv.com/songs/60030233.mkv +刘德华-明星(演唱会),http://em.21dtv.com/songs/60030232.mkv +黎明-明星(演唱会),http://em.21dtv.com/songs/60030231.mkv +郭富城-明星(演唱会),http://em.21dtv.com/songs/60030230.mkv +古巨基-明星(演唱会),http://em.21dtv.com/songs/60030229.mkv +陈洁仪-明星(演唱会),http://em.21dtv.com/songs/60030228.mkv +陈洁灵-明星(演唱会),http://em.21dtv.com/songs/60030227.mkv +谭咏麟-迷香,http://em.21dtv.com/songs/60029939.mkv +罗百吉-梦醒,http://em.21dtv.com/songs/60029700.mkv +何念庭-梦醒,http://em.21dtv.com/songs/60029699.mkv +谢雷-梦醒(无原唱),http://em.21dtv.com/songs/60029698.mkv +黄淇-梦醒(无原唱),http://em.21dtv.com/songs/60029697.mkv +张靓颖-梦想,http://em.21dtv.com/songs/60029666.mkv +王力宏-梦想,http://em.21dtv.com/songs/60029665.mkv +太子-梦想,http://em.21dtv.com/songs/60029664.mkv +海洋乐团-梦想,http://em.21dtv.com/songs/60029663.mkv +城市姐妹-梦想(演唱会),http://em.21dtv.com/songs/60029662.mkv +庄学忠-梦乡,http://em.21dtv.com/songs/60029661.mkv +聂琳峰-梦乡,http://em.21dtv.com/songs/60029660.mkv +欧阳菲菲-梦乡(无原唱),http://em.21dtv.com/songs/60029659.mkv +潘蓉-美雪,http://em.21dtv.com/songs/60029352.mkv +小雪-冒险,http://em.21dtv.com/songs/60028695.mkv +刘晏维-冒险,http://em.21dtv.com/songs/60028694.mkv +新宝岛康乐队-m b t 心,http://em.21dtv.com/songs/60003680.mkv +杜忻恬-慢舞,http://em.21dtv.com/songs/60127073.mkv +维妮亚-猫尾,http://em.21dtv.com/songs/60126023.mkv +叶俊岑-迷惘,http://em.21dtv.com/songs/60123728.mkv +A Lin-迷雾,http://em.21dtv.com/songs/60122327.mkv +A Lin-迷雾,http://em.21dtv.com/songs/60120184.mkv +李书伟-莽娃,http://em.21dtv.com/songs/60116896.mkv +陈粒-没完,http://em.21dtv.com/songs/60112365.mkv +卜一格-迷雾,http://em.21dtv.com/songs/60110062.mkv +王铮亮-迷悟,http://em.21dtv.com/songs/60096767.mkv +王秀琳-迷惘,http://em.21dtv.com/songs/60092990.mkv +ADAM LAMBERT-mad world,http://em.21dtv.com/songs/60084744.mkv +崔天琪-mad world,http://em.21dtv.com/songs/60081458.mkv +付辛博-Mr Wrong,http://em.21dtv.com/songs/60080501.mkv +HOTCHA-门外,http://em.21dtv.com/songs/60076644.mkv +高杰-my weixin,http://em.21dtv.com/songs/60073648.mkv +张玮-my way,http://em.21dtv.com/songs/60073647.mkv +MARYJ BLIGE-mr wrong,http://em.21dtv.com/songs/60073626.mkv +林雨-迷雾,http://em.21dtv.com/songs/60068492.mkv +李震-迷雾,http://em.21dtv.com/songs/60067236.mkv +七郎-猫王,http://em.21dtv.com/songs/60067220.mkv +马雨贤-my way,http://em.21dtv.com/songs/60066689.mkv +张学友-my way(演唱会),http://em.21dtv.com/songs/60063414.mkv +何韵诗-木纹,http://em.21dtv.com/songs/60030581.mkv +何韵诗-木纹(演唱会),http://em.21dtv.com/songs/60030580.mkv +张玉珊-迷惘,http://em.21dtv.com/songs/60029932.mkv +陶莉萍-迷惘,http://em.21dtv.com/songs/60029931.mkv +蔡琴-慢舞(演唱会),http://em.21dtv.com/songs/60028598.mkv +佚名-my world,http://em.21dtv.com/songs/60004035.mkv +BLACKBOX-my world,http://em.21dtv.com/songs/60004034.mkv +张敬轩-my way,http://em.21dtv.com/songs/60004033.mkv +佚名-my way,http://em.21dtv.com/songs/60004032.mkv +张敬轩-my way(演唱会),http://em.21dtv.com/songs/60004030.mkv +滨崎步-mirrorocle world,http://em.21dtv.com/songs/60003829.mkv +李玟-magic words,http://em.21dtv.com/songs/60003701.mkv +PAUL MCCARTNEY-my valentine,http://em.21dtv.com/songs/60066688.mkv +戎梵-Music Angel,http://em.21dtv.com/songs/60085713.mkv +赖富正+蔡佳莹-谜题,http://em.21dtv.com/songs/60134253.mkv +动力火车-迷汤,http://em.21dtv.com/songs/60132261.mkv +成镓羽-明天,http://em.21dtv.com/songs/60129158.mkv +张若昀-迷途,http://em.21dtv.com/songs/60128000.mkv +吴依琳-迷途,http://em.21dtv.com/songs/60123742.mkv +谭维维+范政-梦田,http://em.21dtv.com/songs/60114078.mkv +庄前+宫瑜聪-梦田,http://em.21dtv.com/songs/60111044.mkv +逆思乐团-明天,http://em.21dtv.com/songs/60110566.mkv +李荣浩-模特,http://em.21dtv.com/songs/60107800.mkv +刘辰希-明天,http://em.21dtv.com/songs/60107546.mkv +陈思玮-木头,http://em.21dtv.com/songs/60105485.mkv +许鹤缤-明天,http://em.21dtv.com/songs/60101171.mkv +齐秦+齐豫-梦田,http://em.21dtv.com/songs/60098969.mkv +南方二重唱-梦田,http://em.21dtv.com/songs/60096788.mkv +迪克牛仔-迷途,http://em.21dtv.com/songs/60096766.mkv +PCHY-明天,http://em.21dtv.com/songs/60086710.mkv +周燕君-明天,http://em.21dtv.com/songs/60085473.mkv +刘德华+郑秀文-盲探,http://em.21dtv.com/songs/60083346.mkv +李庚桐+王一童-每天,http://em.21dtv.com/songs/60081034.mkv +魏晨-MR TOP,http://em.21dtv.com/songs/60080003.mkv +应豪-迷途,http://em.21dtv.com/songs/60076700.mkv +齐秦+齐豫-梦田),http://em.21dtv.com/songs/60076678.mkv +魏晨+小强-mr top,http://em.21dtv.com/songs/60073625.mkv +星弟-每天,http://em.21dtv.com/songs/60068468.mkv +陈志朋-明天,http://em.21dtv.com/songs/60067240.mkv +徐良-美瞳,http://em.21dtv.com/songs/60063207.mkv +少女时代-mr taxi(HD高清),http://em.21dtv.com/songs/60062903.mkv +佚名-牧童,http://em.21dtv.com/songs/60030621.mkv +四分卫-魔毯(演唱会)(无原唱),http://em.21dtv.com/songs/60030365.mkv +杨乃文-明天,http://em.21dtv.com/songs/60030173.mkv +萧亚轩-明天,http://em.21dtv.com/songs/60030172.mkv +王霞-明天,http://em.21dtv.com/songs/60030171.mkv +王珏-明天,http://em.21dtv.com/songs/60030170.mkv +孟庭苇-明天,http://em.21dtv.com/songs/60030169.mkv +罗文+李克勤-明天,http://em.21dtv.com/songs/60030168.mkv +林俊杰-明天,http://em.21dtv.com/songs/60030167.mkv +江志丰-明天,http://em.21dtv.com/songs/60030166.mkv +大地乐团-明天,http://em.21dtv.com/songs/60030165.mkv +陈晓东-明天,http://em.21dtv.com/songs/60030164.mkv +萧亚轩-明天(演唱会),http://em.21dtv.com/songs/60030163.mkv +张柏芝-棉胎,http://em.21dtv.com/songs/60030000.mkv +马浚伟-蜜糖,http://em.21dtv.com/songs/60029985.mkv +TWINS-蜜糖,http://em.21dtv.com/songs/60029984.mkv +佚名-迷途,http://em.21dtv.com/songs/60029929.mkv +辛晓琪-迷途,http://em.21dtv.com/songs/60029928.mkv +杜德伟-迷途,http://em.21dtv.com/songs/60029927.mkv +太极乐队-迷途(演唱会),http://em.21dtv.com/songs/60029926.mkv +腾格尔-梦土,http://em.21dtv.com/songs/60029649.mkv +刘若英-梦童(演唱会),http://em.21dtv.com/songs/60029648.mkv +周华健-梦田,http://em.21dtv.com/songs/60029647.mkv +齐豫+潘越云-梦田,http://em.21dtv.com/songs/60029646.mkv +木吉他-梦田,http://em.21dtv.com/songs/60029645.mkv +S.H.E-梦田,http://em.21dtv.com/songs/60029644.mkv +齐秦+齐豫-梦田(演唱会),http://em.21dtv.com/songs/60029643.mkv +纪佳松-每天,http://em.21dtv.com/songs/60029049.mkv +范玮琪-每天,http://em.21dtv.com/songs/60029048.mkv +苏娃-盲童,http://em.21dtv.com/songs/60028613.mkv +伊琳-盲童(演唱会),http://em.21dtv.com/songs/60028612.mkv +刘德华-马桶,http://em.21dtv.com/songs/60028384.mkv +佚名-mysterious time,http://em.21dtv.com/songs/60004038.mkv +佚名-morning train,http://em.21dtv.com/songs/60003905.mkv +张清芳-mens talk,http://em.21dtv.com/songs/60003793.mkv +佚名-maybe tomorrow,http://em.21dtv.com/songs/60003771.mkv +佚名-magic touch,http://em.21dtv.com/songs/60003700.mkv +晓月-迷失,http://em.21dtv.com/songs/60105943.mkv +宁桓宇-秘术,http://em.21dtv.com/songs/60105765.mkv +东篱-媚声,http://em.21dtv.com/songs/60103727.mkv +林凡-目送,http://em.21dtv.com/songs/60103389.mkv +胡东清-马说,http://em.21dtv.com/songs/60098706.mkv +杨果-梦殇,http://em.21dtv.com/songs/60094169.mkv +程恢弘-missing soul,http://em.21dtv.com/songs/60082260.mkv +EXILE ATSUSHI-my shero(演唱会),http://em.21dtv.com/songs/60073646.mkv +NOLWENN LEROY-moonlight shadow(演唱会),http://em.21dtv.com/songs/60073616.mkv +东学-墨伤,http://em.21dtv.com/songs/60070952.mkv +ADELE-my same,http://em.21dtv.com/songs/60069114.mkv +SUPER JUNIOR-mr simple,http://em.21dtv.com/songs/60065654.mkv +陈思诺-梦殇,http://em.21dtv.com/songs/60064551.mkv +吴南颖-mr same,http://em.21dtv.com/songs/60063690.mkv +成龙+刘媛媛+豆豆-民生,http://em.21dtv.com/songs/60062298.mkv +ALEXANDRA STAN-mr saxobeat,http://em.21dtv.com/songs/60061949.mkv +戚薇-没收,http://em.21dtv.com/songs/60061405.mkv +萧亚轩-魔术,http://em.21dtv.com/songs/60030362.mkv +南台湾小姑娘-魔术,http://em.21dtv.com/songs/60030361.mkv +P.G.S.T-魔术,http://em.21dtv.com/songs/60030360.mkv +萧亚轩-魔术(演唱会),http://em.21dtv.com/songs/60030359.mkv +五月天-秒杀,http://em.21dtv.com/songs/60030047.mkv +方文琳-面纱,http://em.21dtv.com/songs/60030038.mkv +廖隽嘉-蜜思,http://em.21dtv.com/songs/60029983.mkv +刘雅丽-迷失,http://em.21dtv.com/songs/60029918.mkv +亥儿乐队-迷失(无原唱),http://em.21dtv.com/songs/60029917.mkv +陈升+刘萍儿-卖水,http://em.21dtv.com/songs/60028479.mkv +ALAN-my stage,http://em.21dtv.com/songs/60004026.mkv +李克勤-my shirley,http://em.21dtv.com/songs/60004025.mkv +THE KNACK-my sharona,http://em.21dtv.com/songs/60004024.mkv +ROD STEWART-motown song,http://em.21dtv.com/songs/60003909.mkv +卢巧音-moonlight shadow(演唱会),http://em.21dtv.com/songs/60003881.mkv +スフィア-moon signal,http://em.21dtv.com/songs/60003878.mkv +MANFRED MANN-mohair sam,http://em.21dtv.com/songs/60003857.mkv +佚名-midnight special(无原唱),http://em.21dtv.com/songs/60003817.mkv +CARRIE UNDERWOOD-mamas song,http://em.21dtv.com/songs/60003730.mkv +MATCHBOX 20-mad season,http://em.21dtv.com/songs/60003690.mkv +Apink-Mr Chu,http://em.21dtv.com/songs/60098980.mkv +柯羽-美人,http://em.21dtv.com/songs/60130489.mkv +侯玉斌-茫然,http://em.21dtv.com/songs/60118353.mkv +王菀之-末日,http://em.21dtv.com/songs/60106137.mkv +冯博-明日,http://em.21dtv.com/songs/60103912.mkv +栋梁-煤人,http://em.21dtv.com/songs/60102407.mkv +阿星-慢热,http://em.21dtv.com/songs/60101694.mkv +张冬玲-某人,http://em.21dtv.com/songs/60100861.mkv +王铮亮-默认,http://em.21dtv.com/songs/60094235.mkv +彭佳慧-mommies rock,http://em.21dtv.com/songs/60084747.mkv +TEEN TOP-miss right,http://em.21dtv.com/songs/60082259.mkv +胡鸿钧-明日(演唱会),http://em.21dtv.com/songs/60076720.mkv +莫旭秋-moon river(演唱会),http://em.21dtv.com/songs/60073615.mkv +宥胜-miss right,http://em.21dtv.com/songs/60073605.mkv +DRAKE-marvins room,http://em.21dtv.com/songs/60073586.mkv +钟舒漫-my rodeo,http://em.21dtv.com/songs/60067953.mkv +EXAMPLE-midnight run,http://em.21dtv.com/songs/60065647.mkv +刘程伊-美人,http://em.21dtv.com/songs/60064533.mkv +李玉刚-美人,http://em.21dtv.com/songs/60064532.mkv +王菀之+黄伟文-末日,http://em.21dtv.com/songs/60063033.mkv +王宛之-末日,http://em.21dtv.com/songs/60063032.mkv +汪苏泷-某人,http://em.21dtv.com/songs/60063011.mkv +王菀之-末日,http://em.21dtv.com/songs/60061432.mkv +MINDLESS BEHAVIOR+DI-mrs right,http://em.21dtv.com/songs/60060878.mkv +四郎曲珍-牧人,http://em.21dtv.com/songs/60030617.mkv +容中尔甲-牧人,http://em.21dtv.com/songs/60030616.mkv +降央卓玛-牧人,http://em.21dtv.com/songs/60030615.mkv +德德玛-牧人,http://em.21dtv.com/songs/60030614.mkv +黄贯中-某日,http://em.21dtv.com/songs/60030499.mkv +孟庭苇-默认,http://em.21dtv.com/songs/60030485.mkv +李翊君-蓦然,http://em.21dtv.com/songs/60030453.mkv +王菲-末日(演唱会),http://em.21dtv.com/songs/60030382.mkv +老狼-美人,http://em.21dtv.com/songs/60029331.mkv +高枫-美人,http://em.21dtv.com/songs/60029330.mkv +郑钧-茫然,http://em.21dtv.com/songs/60028629.mkv +刘家昌-茫然,http://em.21dtv.com/songs/60028628.mkv +苏永康-盲人,http://em.21dtv.com/songs/60028611.mkv +佚名-mrs robinson,http://em.21dtv.com/songs/60003936.mkv +佚名-moon river,http://em.21dtv.com/songs/60003877.mkv +佚名-mambo rock,http://em.21dtv.com/songs/60003732.mkv +COLOR-m right,http://em.21dtv.com/songs/60003679.mkv +陈柏宇-乜青,http://em.21dtv.com/songs/60129747.mkv +陈柏宇-乜青,http://em.21dtv.com/songs/60128541.mkv +幕青-幕青,http://em.21dtv.com/songs/60127946.mkv +Amazarashi-名前,http://em.21dtv.com/songs/60123434.mkv +宝云-美妻,http://em.21dtv.com/songs/60117680.mkv +林玛黛-满奇,http://em.21dtv.com/songs/60116970.mkv +斯琴巴图-母亲,http://em.21dtv.com/songs/60113547.mkv +于青-母亲,http://em.21dtv.com/songs/60113235.mkv +袁双洋-母亲,http://em.21dtv.com/songs/60112951.mkv +刘维维-母亲,http://em.21dtv.com/songs/60112546.mkv +郑秀文-默契,http://em.21dtv.com/songs/60111449.mkv +汪峰-母亲,http://em.21dtv.com/songs/60111226.mkv +孝琳+Jooyeong-抹去,http://em.21dtv.com/songs/60109272.mkv +刘沛洋-母亲,http://em.21dtv.com/songs/60109186.mkv +布仁巴雅尔-母亲,http://em.21dtv.com/songs/60107697.mkv +齐宝石-母亲,http://em.21dtv.com/songs/60085484.mkv +汪峰-母亲,http://em.21dtv.com/songs/60083442.mkv +琼雪卓玛-母亲,http://em.21dtv.com/songs/60083441.mkv +耿为华-母亲,http://em.21dtv.com/songs/60076756.mkv +胡夏-勉强,http://em.21dtv.com/songs/60076709.mkv +雨露-梦秋,http://em.21dtv.com/songs/60076675.mkv +刘淑芬-默契,http://em.21dtv.com/songs/60070953.mkv +张冬玲-母亲,http://em.21dtv.com/songs/60069625.mkv +王旭-麻雀,http://em.21dtv.com/songs/60061392.mkv +黄思婷-暮情,http://em.21dtv.com/songs/60030646.mkv +洪卓立-目前,http://em.21dtv.com/songs/60030591.mkv +郁钧剑-母亲,http://em.21dtv.com/songs/60030523.mkv +尤雅-母亲,http://em.21dtv.com/songs/60030522.mkv +阎维文-母亲,http://em.21dtv.com/songs/60030521.mkv +刘德华-母亲,http://em.21dtv.com/songs/60030520.mkv +黄耀明+罗大佑-母亲,http://em.21dtv.com/songs/60030519.mkv +陈淑芳-母亲,http://em.21dtv.com/songs/60030518.mkv +陈洁灵-母亲,http://em.21dtv.com/songs/60030517.mkv +曾路得-母亲,http://em.21dtv.com/songs/60030516.mkv +阿吉仔-母亲,http://em.21dtv.com/songs/60030515.mkv +龚月-母亲(演唱会),http://em.21dtv.com/songs/60030514.mkv +郑秀文-默契,http://em.21dtv.com/songs/60030484.mkv +许志安-默契,http://em.21dtv.com/songs/60030483.mkv +谢金燕+吴宗宪-默契,http://em.21dtv.com/songs/60030482.mkv +陈慧娴-默契,http://em.21dtv.com/songs/60030481.mkv +陈浩民-默契,http://em.21dtv.com/songs/60030480.mkv +陈德容-默契,http://em.21dtv.com/songs/60030479.mkv +蔡健雅-默契,http://em.21dtv.com/songs/60030478.mkv +SWEETY-默契,http://em.21dtv.com/songs/60030477.mkv +郑秀文-默契(演唱会),http://em.21dtv.com/songs/60030476.mkv +许志安-默契(演唱会),http://em.21dtv.com/songs/60030475.mkv +陈慧娴-默契(演唱会),http://em.21dtv.com/songs/60030474.mkv +佚名-梦桥,http://em.21dtv.com/songs/60029630.mkv +郭静-麻雀,http://em.21dtv.com/songs/60028340.mkv +王江发-名牌,http://em.21dtv.com/songs/60094230.mkv +MIC男团-My Place,http://em.21dtv.com/songs/60080405.mkv +中山优马-missing piece,http://em.21dtv.com/songs/60073607.mkv +仇泽-默片,http://em.21dtv.com/songs/60069623.mkv +飞轮海-mr perfect,http://em.21dtv.com/songs/60066685.mkv +余文乐-名牌,http://em.21dtv.com/songs/60030081.mkv +BRITNEY SPEARS-my prerogative,http://em.21dtv.com/songs/60004022.mkv +佚名-my prayer,http://em.21dtv.com/songs/60004021.mkv +NELLY FEAT.JAHEIM-my place,http://em.21dtv.com/songs/60004020.mkv +苏醒-miss pretty,http://em.21dtv.com/songs/60003836.mkv +佚名-millennium prayer,http://em.21dtv.com/songs/60003821.mkv +DONNA SUMMER-macarthur park,http://em.21dtv.com/songs/60003686.mkv +甄妮-macarthur park(演唱会),http://em.21dtv.com/songs/60003685.mkv +才让措-MOON RIVER,http://em.21dtv.com/songs/60096628.mkv +陈岩-木偶,http://em.21dtv.com/songs/60117333.mkv +邹文正-木偶,http://em.21dtv.com/songs/60096660.mkv +尹光+KZ-mr one(演唱会),http://em.21dtv.com/songs/60073624.mkv +ONE REPUBLIC-marchin on,http://em.21dtv.com/songs/60073584.mkv +MIXION-move on,http://em.21dtv.com/songs/60070377.mkv +泳儿-move on(演唱会),http://em.21dtv.com/songs/60063689.mkv +谢雨欣-木偶,http://em.21dtv.com/songs/60030574.mkv +BILLY JOEL-moving out,http://em.21dtv.com/songs/60003914.mkv +佚名-members only,http://em.21dtv.com/songs/60003787.mkv +黎明-making of,http://em.21dtv.com/songs/60003722.mkv +亦帆-魔女,http://em.21dtv.com/songs/60117542.mkv +敖都-梦你,http://em.21dtv.com/songs/60114564.mkv +斯琴巴图-梦你,http://em.21dtv.com/songs/60113546.mkv +陈姗姗-魔女,http://em.21dtv.com/songs/60108974.mkv +羽泉-美女,http://em.21dtv.com/songs/60091877.mkv +轻音乐-鸣鸟,http://em.21dtv.com/songs/60090241.mkv +魏如萱-买你,http://em.21dtv.com/songs/60085412.mkv +FOALS-my number,http://em.21dtv.com/songs/60082274.mkv +刘炫颉-默念,http://em.21dtv.com/songs/60081353.mkv +小贱-魔女,http://em.21dtv.com/songs/60080304.mkv +HOTCHA-门内,http://em.21dtv.com/songs/60076643.mkv +MCLEAN-my name,http://em.21dtv.com/songs/60067952.mkv +蓝奕邦-盲年(演唱会),http://em.21dtv.com/songs/60067219.mkv +古巨基-木讷,http://em.21dtv.com/songs/60030573.mkv +张学友-迷你,http://em.21dtv.com/songs/60029907.mkv +陈展卿-迷你,http://em.21dtv.com/songs/60029906.mkv +陈星-梦你,http://em.21dtv.com/songs/60029625.mkv +陈星-梦你(演唱会),http://em.21dtv.com/songs/60029624.mkv +PETER PAN-mungkin nanti,http://em.21dtv.com/songs/60003941.mkv +李卓庭-morning娘,http://em.21dtv.com/songs/60003906.mkv +陈哲远+刘剑羽-秘密,http://em.21dtv.com/songs/60135900.mkv +吴陌川-沫沫,http://em.21dtv.com/songs/60135040.mkv +苏运莹-冥明,http://em.21dtv.com/songs/60130688.mkv +孟楠-妹妹,http://em.21dtv.com/songs/60130251.mkv +黄明志-咪咪,http://em.21dtv.com/songs/60129842.mkv +陈楚生+SPY.C-秘密,http://em.21dtv.com/songs/60129751.mkv +徐彬彬-明明,http://em.21dtv.com/songs/60129140.mkv +李志-妈妈,http://em.21dtv.com/songs/60127012.mkv +崔恕-妹妹,http://em.21dtv.com/songs/60125452.mkv +Blaster-弥漫,http://em.21dtv.com/songs/60121222.mkv +王佳佳-妈妈,http://em.21dtv.com/songs/60120746.mkv +崔大龙-梦魔,http://em.21dtv.com/songs/60120490.mkv +苏运莹-冥明,http://em.21dtv.com/songs/60119917.mkv +杨凯琳-某某,http://em.21dtv.com/songs/60116935.mkv +杨凯琳-某某,http://em.21dtv.com/songs/60116026.mkv +张为-妈妈,http://em.21dtv.com/songs/60115897.mkv +乐天-妈妈,http://em.21dtv.com/songs/60115669.mkv +FANTAZ-某某,http://em.21dtv.com/songs/60113157.mkv +张煜枫-慢慢,http://em.21dtv.com/songs/60112686.mkv +霍尊-木棉,http://em.21dtv.com/songs/60112377.mkv +降央卓玛-妈妈,http://em.21dtv.com/songs/60110653.mkv +孙淑媚-妈妈,http://em.21dtv.com/songs/60109267.mkv +许亚童-迷梦,http://em.21dtv.com/songs/60108885.mkv +李克-妈妈,http://em.21dtv.com/songs/60108564.mkv +钟舒漫-妹妹,http://em.21dtv.com/songs/60108098.mkv +罗逻圣-妈妈,http://em.21dtv.com/songs/60107114.mkv +唐唐-妈妈,http://em.21dtv.com/songs/60106724.mkv +陈大天-每每,http://em.21dtv.com/songs/60106386.mkv +李沐非-弥漫,http://em.21dtv.com/songs/60105982.mkv +张苡澄-猫咪,http://em.21dtv.com/songs/60105872.mkv +代梓琪-慢慢,http://em.21dtv.com/songs/60105576.mkv +马啸-妈妈,http://em.21dtv.com/songs/60105521.mkv +韩紫灵-妈妈,http://em.21dtv.com/songs/60103708.mkv +黄品冠-默默,http://em.21dtv.com/songs/60102962.mkv +陈奕夫-慢慢,http://em.21dtv.com/songs/60102878.mkv +山野-明明,http://em.21dtv.com/songs/60102164.mkv +品冠-默默,http://em.21dtv.com/songs/60102060.mkv +阿洋-妈妈,http://em.21dtv.com/songs/60101547.mkv +张明远-妈妈,http://em.21dtv.com/songs/60100020.mkv +孙中亮-妈妈,http://em.21dtv.com/songs/60099925.mkv +何韵诗-茫茫,http://em.21dtv.com/songs/60099748.mkv +赖伟锋-某某,http://em.21dtv.com/songs/60099505.mkv +谭炜星-陌陌,http://em.21dtv.com/songs/60096749.mkv +周笔畅-慢慢,http://em.21dtv.com/songs/60096222.mkv +祁隆-妈妈,http://em.21dtv.com/songs/60094622.mkv +音乐走廊-妈妈,http://em.21dtv.com/songs/60093708.mkv +关寅飞-妈妈,http://em.21dtv.com/songs/60093599.mkv +詹雅雯-眠梦,http://em.21dtv.com/songs/60093598.mkv +陈文媛-嫲嫲,http://em.21dtv.com/songs/60093472.mkv +高秀敏+赵世林-密码,http://em.21dtv.com/songs/60090335.mkv +王爵ALSTON-慢慢,http://em.21dtv.com/songs/60086691.mkv +司文+丢丢-陌陌,http://em.21dtv.com/songs/60085481.mkv +佳小宇-妈妈,http://em.21dtv.com/songs/60085407.mkv +刘若英-秘密,http://em.21dtv.com/songs/60083418.mkv +刘若英-满满,http://em.21dtv.com/songs/60083341.mkv +马旭东-卖萌,http://em.21dtv.com/songs/60083340.mkv +孟子焱-妈妈,http://em.21dtv.com/songs/60083332.mkv +陈珊妮-秘密,http://em.21dtv.com/songs/60080462.mkv +朴一泽-明明,http://em.21dtv.com/songs/60076717.mkv +陈奕迅-muffin man,http://em.21dtv.com/songs/60073628.mkv +张煜枫-慢慢,http://em.21dtv.com/songs/60072181.mkv +萧敬腾-marry me,http://em.21dtv.com/songs/60071639.mkv +具惠善-marry me,http://em.21dtv.com/songs/60071638.mkv +哈仡罗多-暮谋,http://em.21dtv.com/songs/60070960.mkv +RTA-美妙,http://em.21dtv.com/songs/60070921.mkv +赵晨妍-蜜蜜,http://em.21dtv.com/songs/60069614.mkv +王乃恩-慢慢,http://em.21dtv.com/songs/60069588.mkv +常健鸿-妈妈,http://em.21dtv.com/songs/60069582.mkv +蔡卓妍-明明,http://em.21dtv.com/songs/60067239.mkv +黄凯芹-门面,http://em.21dtv.com/songs/60064539.mkv +A PINK-my my,http://em.21dtv.com/songs/60063691.mkv +周杰伦-mine mine,http://em.21dtv.com/songs/60063686.mkv +张杰-marry me,http://em.21dtv.com/songs/60063677.mkv +金贤重-marry me,http://em.21dtv.com/songs/60063676.mkv +邹文正-盲目,http://em.21dtv.com/songs/60063505.mkv +拖木拉杆-妈妈,http://em.21dtv.com/songs/60063006.mkv +REBECCA BLACK-my moment,http://em.21dtv.com/songs/60062133.mkv +GARNET CROW-misty mystery,http://em.21dtv.com/songs/60062032.mkv +SOULJA BOY-mean mug,http://em.21dtv.com/songs/60060875.mkv +曾静玟-姆姆,http://em.21dtv.com/songs/60037455.mkv +李逸朗-某某,http://em.21dtv.com/songs/60030491.mkv +LPG-牟牟,http://em.21dtv.com/songs/60030486.mkv +飞轮海-默默,http://em.21dtv.com/songs/60030461.mkv +陈浩民-默默,http://em.21dtv.com/songs/60030460.mkv +钟一宪-明明,http://em.21dtv.com/songs/60030105.mkv +林忆莲-明明,http://em.21dtv.com/songs/60030104.mkv +梁咏琪-名模,http://em.21dtv.com/songs/60030080.mkv +陈奕迅-绵绵(演唱会),http://em.21dtv.com/songs/60029992.mkv +张震岳-秘密,http://em.21dtv.com/songs/60029964.mkv +许茹芸-秘密,http://em.21dtv.com/songs/60029963.mkv +萧亚轩-秘密,http://em.21dtv.com/songs/60029962.mkv +李蕙敏-秘密,http://em.21dtv.com/songs/60029961.mkv +黎瑞恩-秘密,http://em.21dtv.com/songs/60029960.mkv +蓝又时-秘密,http://em.21dtv.com/songs/60029959.mkv +范怡文-秘密,http://em.21dtv.com/songs/60029958.mkv +陈柏宇-秘密,http://em.21dtv.com/songs/60029957.mkv +萧亚轩-秘密(演唱会),http://em.21dtv.com/songs/60029956.mkv +郑怀平-秘密(无原唱),http://em.21dtv.com/songs/60029955.mkv +陶莉萍-迷茫,http://em.21dtv.com/songs/60029902.mkv +梦梦-梦梦,http://em.21dtv.com/songs/60029618.mkv +山泉音月-妹妹,http://em.21dtv.com/songs/60029365.mkv +孔令奇-妹妹,http://em.21dtv.com/songs/60029364.mkv +江美琪-妹妹,http://em.21dtv.com/songs/60029363.mkv +光良-妹妹,http://em.21dtv.com/songs/60029362.mkv +陈升-妹妹,http://em.21dtv.com/songs/60029361.mkv +蔡卓妍-妹妹,http://em.21dtv.com/songs/60029360.mkv +李玟-美梦,http://em.21dtv.com/songs/60029312.mkv +傅秋英-美梦,http://em.21dtv.com/songs/60029311.mkv +伊妹儿-美美,http://em.21dtv.com/songs/60029310.mkv +司文-美眉,http://em.21dtv.com/songs/60029309.mkv +毛阿敏-美满,http://em.21dtv.com/songs/60029307.mkv +佚名-么妹,http://em.21dtv.com/songs/60028702.mkv +香香-毛毛,http://em.21dtv.com/songs/60028649.mkv +MOMO姐姐-毛毛,http://em.21dtv.com/songs/60028648.mkv +蒋雅文-盲目,http://em.21dtv.com/songs/60028608.mkv +张学友-慢慢,http://em.21dtv.com/songs/60028579.mkv +王铮亮-满满,http://em.21dtv.com/songs/60028522.mkv +梁文音+王铮亮-满满,http://em.21dtv.com/songs/60028521.mkv +周艳泓-妈妈,http://em.21dtv.com/songs/60028217.mkv +彝人制造-妈妈,http://em.21dtv.com/songs/60028216.mkv +吴建豪-妈妈,http://em.21dtv.com/songs/60028215.mkv +拖木拉干-妈妈,http://em.21dtv.com/songs/60028214.mkv +澎恰恰-妈妈,http://em.21dtv.com/songs/60028213.mkv +罗时丰-妈妈,http://em.21dtv.com/songs/60028212.mkv +李欧-妈妈,http://em.21dtv.com/songs/60028211.mkv +李佳-妈妈,http://em.21dtv.com/songs/60028210.mkv +洪作颜-妈妈,http://em.21dtv.com/songs/60028209.mkv +洪荣宏-妈妈,http://em.21dtv.com/songs/60028208.mkv +红豆-妈妈,http://em.21dtv.com/songs/60028207.mkv +含笑-妈妈,http://em.21dtv.com/songs/60028206.mkv +阿吉仔-妈妈,http://em.21dtv.com/songs/60028205.mkv +彝人制造-妈妈(演唱会),http://em.21dtv.com/songs/60028204.mkv +汪峰-妈妈(演唱会),http://em.21dtv.com/songs/60028203.mkv +刘和刚-妈妈(演唱会),http://em.21dtv.com/songs/60028202.mkv +古巨基-mylove myfate,http://em.21dtv.com/songs/60004037.mkv +张信哲-my memory,http://em.21dtv.com/songs/60004017.mkv +叶文辉-my memory,http://em.21dtv.com/songs/60004016.mkv +DAVICHI-my man,http://em.21dtv.com/songs/60004015.mkv +ALABAMA-mountain music,http://em.21dtv.com/songs/60003910.mkv +铁竹堂-money money,http://em.21dtv.com/songs/60003867.mkv +佚名-monday monday,http://em.21dtv.com/songs/60003864.mkv +谭咏麟-missy mona(演唱会),http://em.21dtv.com/songs/60003849.mkv +DRAKE+LIL WAYNE-miss me,http://em.21dtv.com/songs/60003835.mkv +林志炫-miss mama(演唱会),http://em.21dtv.com/songs/60003834.mkv +佚名-merry may,http://em.21dtv.com/songs/60003802.mkv +郑融-me + me,http://em.21dtv.com/songs/60003776.mkv +佚名-maria maria(无原唱),http://em.21dtv.com/songs/60003749.mkv +BANGLES-manic monday,http://em.21dtv.com/songs/60003748.mkv +佚名-manic monday(无原唱),http://em.21dtv.com/songs/60003747.mkv +ABBA-mamma mia,http://em.21dtv.com/songs/60003733.mkv +STIG ANDERSSON-mama mia,http://em.21dtv.com/songs/60003724.mkv +张韶涵-mama mama,http://em.21dtv.com/songs/60003723.mkv +佚名-magic moments,http://em.21dtv.com/songs/60003699.mkv +袁泉-ma ma,http://em.21dtv.com/songs/60003682.mkv +魏如萱-梦露,http://em.21dtv.com/songs/60130918.mkv +维妮亚-迷恋,http://em.21dtv.com/songs/60127274.mkv +乌兰图雅-曼莉,http://em.21dtv.com/songs/60113231.mkv +周慧敏+王莞之-美丽,http://em.21dtv.com/songs/60108391.mkv +SELINA-迷路,http://em.21dtv.com/songs/60104720.mkv +云の泣-墨泪,http://em.21dtv.com/songs/60103866.mkv +阿兰-蓦兰,http://em.21dtv.com/songs/60102852.mkv +饥饿艺术家-梦露,http://em.21dtv.com/songs/60101571.mkv +洪敬尧-慢乐,http://em.21dtv.com/songs/60099371.mkv +醉情缘-门丽,http://em.21dtv.com/songs/60096518.mkv +王大文-美丽,http://em.21dtv.com/songs/60094221.mkv +芭芘娃娃-魔力,http://em.21dtv.com/songs/60091919.mkv +谢雷-曼莉,http://em.21dtv.com/songs/60088668.mkv +张敬轩-明瞭,http://em.21dtv.com/songs/60087816.mkv +A-my lady,http://em.21dtv.com/songs/60084749.mkv +书画-魔力,http://em.21dtv.com/songs/60083432.mkv +吴斌-迷路,http://em.21dtv.com/songs/60083415.mkv +梁静茹-迷路,http://em.21dtv.com/songs/60083414.mkv +ELVIS WEST-迷恋,http://em.21dtv.com/songs/60083413.mkv +林喜明-梦路,http://em.21dtv.com/songs/60083396.mkv +李承哲-my love,http://em.21dtv.com/songs/60082273.mkv +EXO-M-my lady,http://em.21dtv.com/songs/60082272.mkv +姜潮-迷路,http://em.21dtv.com/songs/60081332.mkv +君子+陶思元-My Love,http://em.21dtv.com/songs/60081021.mkv +莫文蔚-密流(演唱会),http://em.21dtv.com/songs/60076705.mkv +50 CENT+EMINEM+ADAM LEVINE-my life,http://em.21dtv.com/songs/60073641.mkv +夜叉乐队-末路,http://em.21dtv.com/songs/60072211.mkv +黄雅莉-茉莉,http://em.21dtv.com/songs/60070951.mkv +韩岚-迷路,http://em.21dtv.com/songs/60070938.mkv +刀郎-曼丽,http://em.21dtv.com/songs/60070905.mkv +乌兰图雅-曼丽(演唱会),http://em.21dtv.com/songs/60068458.mkv +李乐天-迷恋,http://em.21dtv.com/songs/60066155.mkv +周彦宏-美丽,http://em.21dtv.com/songs/60063468.mkv +周艳泓-美丽,http://em.21dtv.com/songs/60061415.mkv +田馥甄-my love,http://em.21dtv.com/songs/60060879.mkv +MBLAQ-mona lisa,http://em.21dtv.com/songs/60060877.mkv +张栋梁-陌路,http://em.21dtv.com/songs/60030400.mkv +叶玉卿-魔力,http://em.21dtv.com/songs/60030355.mkv +S.H.E-魔力(演唱会),http://em.21dtv.com/songs/60030354.mkv +张敬轩-明了(演唱会),http://em.21dtv.com/songs/60030103.mkv +张敬轩-明了,http://em.21dtv.com/songs/60030101.mkv +黄莺莺-明了(无原唱),http://em.21dtv.com/songs/60030100.mkv +佚名-迷乱,http://em.21dtv.com/songs/60029901.mkv +许美静-迷乱,http://em.21dtv.com/songs/60029900.mkv +林忆莲-迷乱,http://em.21dtv.com/songs/60029899.mkv +王菲-迷路,http://em.21dtv.com/songs/60029896.mkv +堂娜-迷路,http://em.21dtv.com/songs/60029895.mkv +何耀珊-迷路,http://em.21dtv.com/songs/60029894.mkv +废五金-迷路,http://em.21dtv.com/songs/60029893.mkv +BII-迷路,http://em.21dtv.com/songs/60029892.mkv +王菲-迷路(演唱会),http://em.21dtv.com/songs/60029891.mkv +汪峰-迷鹿(演唱会),http://em.21dtv.com/songs/60029890.mkv +郑伊健-迷恋,http://em.21dtv.com/songs/60029884.mkv +詹雅雯-迷恋,http://em.21dtv.com/songs/60029883.mkv +何洁-迷恋,http://em.21dtv.com/songs/60029882.mkv +达明一派-迷恋(演唱会),http://em.21dtv.com/songs/60029881.mkv +容祖儿-梦路,http://em.21dtv.com/songs/60029611.mkv +容祖儿-梦路(演唱会),http://em.21dtv.com/songs/60029610.mkv +卓依婷-梦里,http://em.21dtv.com/songs/60029587.mkv +吴泓君-梦里,http://em.21dtv.com/songs/60029586.mkv +林心如+周杰-梦里,http://em.21dtv.com/songs/60029585.mkv +丁菲飞-梦蕾,http://em.21dtv.com/songs/60029583.mkv +林忆莲-梦了(演唱会),http://em.21dtv.com/songs/60029582.mkv +陈洁仪-梦拉,http://em.21dtv.com/songs/60029581.mkv +齐秦-朦胧,http://em.21dtv.com/songs/60029441.mkv +柯有伦-美丽,http://em.21dtv.com/songs/60029144.mkv +柯以敏-美丽,http://em.21dtv.com/songs/60029143.mkv +何俐恩-美丽,http://em.21dtv.com/songs/60029142.mkv +陈数-美丽,http://em.21dtv.com/songs/60029141.mkv +曹芙嘉-美丽,http://em.21dtv.com/songs/60029140.mkv +芭比-美丽,http://em.21dtv.com/songs/60029139.mkv +青山-盲恋,http://em.21dtv.com/songs/60028607.mkv +谢雷-蔓莉,http://em.21dtv.com/songs/60028553.mkv +黄清元-蔓莉,http://em.21dtv.com/songs/60028552.mkv +佚名-曼莉,http://em.21dtv.com/songs/60028551.mkv +童唱-卖懒,http://em.21dtv.com/songs/60028472.mkv +佚名-my love,http://em.21dtv.com/songs/60004013.mkv +谭咏麟+关淑怡-my love,http://em.21dtv.com/songs/60004011.mkv +李岗霖-my love,http://em.21dtv.com/songs/60004010.mkv +蔡妍-my love,http://em.21dtv.com/songs/60004009.mkv +WESTLIFE-my love,http://em.21dtv.com/songs/60004008.mkv +PAUL MCCARTNEY-my love(无原唱),http://em.21dtv.com/songs/60004007.mkv +韩庚-my logo,http://em.21dtv.com/songs/60004001.mkv +BILLY JOEL-my life,http://em.21dtv.com/songs/60003999.mkv +阿兰-my life,http://em.21dtv.com/songs/60003998.mkv +佚名-mr love,http://em.21dtv.com/songs/60003918.mkv +佚名-mona lisa,http://em.21dtv.com/songs/60003862.mkv +小男孩乐团-没空,http://em.21dtv.com/songs/60117685.mkv +容祖儿-命苦,http://em.21dtv.com/songs/60092520.mkv +FAIRIES-more kiss,http://em.21dtv.com/songs/60065651.mkv +陈小春-门苦,http://em.21dtv.com/songs/60029410.mkv +徐嘉良-麦客(无原唱),http://em.21dtv.com/songs/60028445.mkv +老狼-麦克,http://em.21dtv.com/songs/60028443.mkv +DOS-more kiss(无原唱),http://em.21dtv.com/songs/60003884.mkv +俺酱-迷局,http://em.21dtv.com/songs/60133377.mkv +董小七-梦境,http://em.21dtv.com/songs/60123122.mkv +曹格-面具,http://em.21dtv.com/songs/60115205.mkv +马智宇-目击,http://em.21dtv.com/songs/60110700.mkv +葛亮+陈赛金-铭记,http://em.21dtv.com/songs/60110496.mkv +江美琪-面具,http://em.21dtv.com/songs/60107019.mkv +吉吉-面具,http://em.21dtv.com/songs/60100784.mkv +韦礼安-面具,http://em.21dtv.com/songs/60099609.mkv +七郎-茗酒(无原唱),http://em.21dtv.com/songs/60095381.mkv +纪佳松+MATZKA-玛纪,http://em.21dtv.com/songs/60094630.mkv +慕容晓晓-孟姜,http://em.21dtv.com/songs/60083412.mkv +蔡义德-麻吉ㄟ,http://em.21dtv.com/songs/60069583.mkv +吴卓羲+黎耀祥-目击,http://em.21dtv.com/songs/60064583.mkv +许廷铿-面具,http://em.21dtv.com/songs/60064563.mkv +刘虹翎-魔镜,http://em.21dtv.com/songs/60030353.mkv +李玟-魔镜,http://em.21dtv.com/songs/60030352.mkv +张津涤-魔界,http://em.21dtv.com/songs/60030351.mkv +黄阅-魔戒,http://em.21dtv.com/songs/60030350.mkv +张宇-面具,http://em.21dtv.com/songs/60030034.mkv +徐若瑄-面具,http://em.21dtv.com/songs/60030033.mkv +王菀之-面具,http://em.21dtv.com/songs/60030032.mkv +零点乐队-面具,http://em.21dtv.com/songs/60030031.mkv +付首勇-面具,http://em.21dtv.com/songs/60030030.mkv +安七炫-面具,http://em.21dtv.com/songs/60030029.mkv +佚名-面具(无原唱),http://em.21dtv.com/songs/60030028.mkv +萧亚轩-梦境,http://em.21dtv.com/songs/60029574.mkv +许仁杰-梦见,http://em.21dtv.com/songs/60029568.mkv +陶晶莹-梦见,http://em.21dtv.com/songs/60029567.mkv +梅艳芳-梦姬,http://em.21dtv.com/songs/60029566.mkv +梅艳芳-梦姬(演唱会),http://em.21dtv.com/songs/60029565.mkv +郑智化-麻将,http://em.21dtv.com/songs/60028330.mkv +黄立成+MACHI-麻吉,http://em.21dtv.com/songs/60028326.mkv +OUTKAST-ms jackson,http://em.21dtv.com/songs/60003939.mkv +Sisters-Mister Mister,http://em.21dtv.com/songs/60096159.mkv +TRACE ADKINS-MILLION DOLLAR,http://em.21dtv.com/songs/60096627.mkv +CLIFF RICHARD-move it,http://em.21dtv.com/songs/60003911.mkv +NE+YO-miss independent,http://em.21dtv.com/songs/60003833.mkv +KELLY CLARKSON-miss independent,http://em.21dtv.com/songs/60003832.mkv +温拿乐队-making it(演唱会),http://em.21dtv.com/songs/60003719.mkv +陈倚俐-抹黑,http://em.21dtv.com/songs/60134390.mkv +刘珂矣-墨痕,http://em.21dtv.com/songs/60133415.mkv +Highlight-美好,http://em.21dtv.com/songs/60133208.mkv +A Lin-梦话,http://em.21dtv.com/songs/60127641.mkv +吴俊余-魅惑,http://em.21dtv.com/songs/60122576.mkv +邓丽君-梅花,http://em.21dtv.com/songs/60120989.mkv +MOUMOON-儚火,http://em.21dtv.com/songs/60100739.mkv +李军-迷航,http://em.21dtv.com/songs/60098458.mkv +国辉-芒花,http://em.21dtv.com/songs/60096685.mkv +民歌-卖花,http://em.21dtv.com/songs/60089388.mkv +常石磊+倪亚丰-梦幻,http://em.21dtv.com/songs/60089253.mkv +朱海君-梦花,http://em.21dtv.com/songs/60085451.mkv +庞龙-美好,http://em.21dtv.com/songs/60083374.mkv +童丽-梦会,http://em.21dtv.com/songs/60076665.mkv +AKB48-梦の河,http://em.21dtv.com/songs/60076651.mkv +LEONA LEWIS-my hands,http://em.21dtv.com/songs/60073639.mkv +蔡依林-迷幻,http://em.21dtv.com/songs/60070937.mkv +FOO FIGHTERS-my hero,http://em.21dtv.com/songs/60066687.mkv +MYRA-miracles happen,http://em.21dtv.com/songs/60062118.mkv +陈惠英-芒花,http://em.21dtv.com/songs/60061399.mkv +周国贤-目黑,http://em.21dtv.com/songs/60030589.mkv +王梦麟-庙会,http://em.21dtv.com/songs/60030055.mkv +龙千玉-庙会,http://em.21dtv.com/songs/60030054.mkv +豪记大对唱-庙会,http://em.21dtv.com/songs/60030053.mkv +叶倩文-迷惑,http://em.21dtv.com/songs/60029875.mkv +叶倩文-迷惑(演唱会),http://em.21dtv.com/songs/60029874.mkv +张辉+杨敏-梦会,http://em.21dtv.com/songs/60029562.mkv +佚名-梦会,http://em.21dtv.com/songs/60029561.mkv +施文彬-梦话,http://em.21dtv.com/songs/60029536.mkv +陈升-梦河,http://em.21dtv.com/songs/60029532.mkv +李香兰-梅花,http://em.21dtv.com/songs/60028978.mkv +邓丽君-梅花,http://em.21dtv.com/songs/60028977.mkv +刘家昌-梅花(演唱会),http://em.21dtv.com/songs/60028976.mkv +朱虹-芒花,http://em.21dtv.com/songs/60028602.mkv +刘芳-芒花,http://em.21dtv.com/songs/60028601.mkv +朱虹-芒花(演唱会),http://em.21dtv.com/songs/60028600.mkv +佚名-卖花(快三),http://em.21dtv.com/songs/60028459.mkv +黑眼豆豆-my humps,http://em.21dtv.com/songs/60003997.mkv +阿朵-mr honey,http://em.21dtv.com/songs/60003917.mkv +佚名-mo hoa,http://em.21dtv.com/songs/60003856.mkv +TY-美国,http://em.21dtv.com/songs/60134815.mkv +郭宴-牧歌,http://em.21dtv.com/songs/60127484.mkv +许艺娜-迷宫,http://em.21dtv.com/songs/60118912.mkv +童予硕-迷宫,http://em.21dtv.com/songs/60114715.mkv +Under Lover-玫瑰,http://em.21dtv.com/songs/60112469.mkv +阿迪雅-牧歌,http://em.21dtv.com/songs/60111477.mkv +郑洁+王铁刚-牧歌,http://em.21dtv.com/songs/60111444.mkv +贰佰-玫瑰,http://em.21dtv.com/songs/60110543.mkv +范玮琪-暮光,http://em.21dtv.com/songs/60088555.mkv +陈沛轩-目光,http://em.21dtv.com/songs/60076767.mkv +苏姗+GINGER+CAROL+LARRY+MICHEL-my girl(演唱会),http://em.21dtv.com/songs/60073637.mkv +LIMP BIZKIT-my generation,http://em.21dtv.com/songs/60073636.mkv +RACHEL CROW-mean girls,http://em.21dtv.com/songs/60073589.mkv +张寒-牧歌,http://em.21dtv.com/songs/60070957.mkv +艾怡良-敏感,http://em.21dtv.com/songs/60070945.mkv +乌兰图雅-牧歌(演唱会),http://em.21dtv.com/songs/60068502.mkv +孟楠-暮光,http://em.21dtv.com/songs/60066164.mkv +陈思思-牧歌(演唱会),http://em.21dtv.com/songs/60064586.mkv +丁少华-迷宫,http://em.21dtv.com/songs/60064261.mkv +范玮琪-幕光,http://em.21dtv.com/songs/60030642.mkv +阿斯根-牧归,http://em.21dtv.com/songs/60030607.mkv +魏金栋-牧歌,http://em.21dtv.com/songs/60030606.mkv +蒙古之花乌兰图雅-牧歌,http://em.21dtv.com/songs/60030605.mkv +魏如昀-目光,http://em.21dtv.com/songs/60030588.mkv +邓颖芝-敏感,http://em.21dtv.com/songs/60030076.mkv +柯以敏-敏感(演唱会),http://em.21dtv.com/songs/60030075.mkv +邓颖芝-敏感(演唱会),http://em.21dtv.com/songs/60030074.mkv +张艾文-迷宫,http://em.21dtv.com/songs/60029862.mkv +于浩威-迷宫,http://em.21dtv.com/songs/60029861.mkv +王若琳-迷宫,http://em.21dtv.com/songs/60029860.mkv +陈晓东-梦过(演唱会),http://em.21dtv.com/songs/60029529.mkv +孙小宝-美观,http://em.21dtv.com/songs/60029117.mkv +许子聪-玫瑰,http://em.21dtv.com/songs/60028920.mkv +刘子千-玫瑰,http://em.21dtv.com/songs/60028919.mkv +佚名-my guy,http://em.21dtv.com/songs/60003988.mkv +张国荣-my god,http://em.21dtv.com/songs/60003986.mkv +佚名-my girl,http://em.21dtv.com/songs/60003984.mkv +黄晓明-my girl,http://em.21dtv.com/songs/60003983.mkv +THE TEMPTATIONS-my girl,http://em.21dtv.com/songs/60003982.mkv +苏永康-my girl(演唱会),http://em.21dtv.com/songs/60003981.mkv +佚名-most girls,http://em.21dtv.com/songs/60003908.mkv +MADONNA-material girl,http://em.21dtv.com/songs/60003764.mkv +佚名-magic girl,http://em.21dtv.com/songs/60003698.mkv +Magic Gals-魔发,http://em.21dtv.com/songs/60132099.mkv +Magic Girls魔幻女皇-魔发,http://em.21dtv.com/songs/60129965.mkv +齐雅-魔方,http://em.21dtv.com/songs/60128647.mkv +赵姝-魔方,http://em.21dtv.com/songs/60101181.mkv +谭凌风-觅佛,http://em.21dtv.com/songs/60083419.mkv +吕雯-蜜蜂,http://em.21dtv.com/songs/60081950.mkv +COBRA STARSHIP MAC MILLER-middle finger,http://em.21dtv.com/songs/60073598.mkv +GILME-me first,http://em.21dtv.com/songs/60070373.mkv +183CLUB-魔法(演唱会),http://em.21dtv.com/songs/60030337.mkv +甲子蕙-名份,http://em.21dtv.com/songs/60030079.mkv +姜昕-蜜蜂,http://em.21dtv.com/songs/60029981.mkv +古巨基-蜜蜂,http://em.21dtv.com/songs/60029980.mkv +郭富城-埋伏,http://em.21dtv.com/songs/60028418.mkv +谢金燕-麻烦,http://em.21dtv.com/songs/60028318.mkv +于立成-my friend,http://em.21dtv.com/songs/60003979.mkv +吴建豪-my friend,http://em.21dtv.com/songs/60003978.mkv +夏韶声-my friend(演唱会),http://em.21dtv.com/songs/60003977.mkv +佚名-moonlight flower,http://em.21dtv.com/songs/60003880.mkv +佚名-melody fair,http://em.21dtv.com/songs/60003784.mkv +LISA MATASSA-Me Time,http://em.21dtv.com/songs/60100733.mkv +孟鹏-MERRY CHRISTMAS,http://em.21dtv.com/songs/60096626.mkv +朴正炫-my everything,http://em.21dtv.com/songs/60082269.mkv +NOELIA-my everything,http://em.21dtv.com/songs/60073634.mkv +DOUBLEX2-my everything,http://em.21dtv.com/songs/60073633.mkv +MATRIX+FUTUREBOUND-magnetic eyes,http://em.21dtv.com/songs/60073575.mkv +魏晨-my eyes,http://em.21dtv.com/songs/60070379.mkv +王胤祺-my everything,http://em.21dtv.com/songs/60066686.mkv +98 DEGREES-my everything,http://em.21dtv.com/songs/60003972.mkv +棠星琪-谜底,http://em.21dtv.com/songs/60135467.mkv +孙家山-买单,http://em.21dtv.com/songs/60132356.mkv +孙家山-买单,http://em.21dtv.com/songs/60127899.mkv +俄么达吉-牧笛,http://em.21dtv.com/songs/60125142.mkv +陈满云-牧笛,http://em.21dtv.com/songs/60123312.mkv +邓紫棋-盲点,http://em.21dtv.com/songs/60116283.mkv +刘德华-牧笛(HD),http://em.21dtv.com/songs/10012643.mkv +汪苏泷-谜底,http://em.21dtv.com/songs/60102470.mkv +田馥甄-矛盾,http://em.21dtv.com/songs/60095018.mkv +冯晓泉+曾格格-魔笛,http://em.21dtv.com/songs/60090674.mkv +春雷-梅朵,http://em.21dtv.com/songs/60086696.mkv +萧思妤-盲点,http://em.21dtv.com/songs/60083344.mkv +SUPERCELL-my dearest,http://em.21dtv.com/songs/60082268.mkv +汪妤凌-铆钉,http://em.21dtv.com/songs/60081698.mkv +甲子蕙-牡丹,http://em.21dtv.com/songs/60076760.mkv +郭龙+张玮玮-米店(演唱会),http://em.21dtv.com/songs/60076702.mkv +RIHANNA-man down,http://em.21dtv.com/songs/60073581.mkv +50 CENT+SNOOP DOGG+YOUNG JEEZY-major distribution,http://em.21dtv.com/songs/60073576.mkv +陈奂仁-矛盾,http://em.21dtv.com/songs/60072184.mkv +COLD+WAR+KIDS-minimum day,http://em.21dtv.com/songs/60069111.mkv +吴建豪-命定,http://em.21dtv.com/songs/60063098.mkv +青稞荞麦-梅朵,http://em.21dtv.com/songs/60061413.mkv +PIXIE LOTT-mama do,http://em.21dtv.com/songs/60054225.mkv +刘德华-牧笛,http://em.21dtv.com/songs/60030604.mkv +刘德华-牧笛(演唱会),http://em.21dtv.com/songs/60030603.mkv +巫启贤-面对,http://em.21dtv.com/songs/60030023.mkv +祁隆-面对,http://em.21dtv.com/songs/60030022.mkv +晓君-谜底,http://em.21dtv.com/songs/60029947.mkv +林心如-谜底,http://em.21dtv.com/songs/60029946.mkv +沈芳如-谜底(无原唱),http://em.21dtv.com/songs/60029945.mkv +佚名-梦断,http://em.21dtv.com/songs/60029515.mkv +臧天朔-梦蝶,http://em.21dtv.com/songs/60029511.mkv +佚名-梦蝶,http://em.21dtv.com/songs/60029510.mkv +臧天朔-梦蝶(演唱会),http://em.21dtv.com/songs/60029509.mkv +甲子蕙-懵懂(无原唱),http://em.21dtv.com/songs/60029453.mkv +游鸿明-矛盾,http://em.21dtv.com/songs/60028691.mkv +林子祥-矛盾(无原唱),http://em.21dtv.com/songs/60028690.mkv +张爽-盲点,http://em.21dtv.com/songs/60028606.mkv +何嘉莉-my dreams,http://em.21dtv.com/songs/60003969.mkv +东方神起-my destiny,http://em.21dtv.com/songs/60003968.mkv +阿牛-mamak档,http://em.21dtv.com/songs/60003729.mkv +阿妮桑-莫愁,http://em.21dtv.com/songs/60135879.mkv +陈轩羽-蔓长,http://em.21dtv.com/songs/60134423.mkv +禤泳伦-抹茶,http://em.21dtv.com/songs/60134041.mkv +黄晨富-埋藏,http://em.21dtv.com/songs/60130934.mkv +王梓轩+卢靖姗-迷彩,http://em.21dtv.com/songs/60125929.mkv +禤泳伦-抹茶,http://em.21dtv.com/songs/60124318.mkv +张博凡-满城,http://em.21dtv.com/songs/60122711.mkv +吴莫愁-没差(HD),http://em.21dtv.com/songs/10012740.mkv +吴莫愁-没差,http://em.21dtv.com/songs/60099878.mkv +郑家纯-猫草,http://em.21dtv.com/songs/60096793.mkv +邢继光-my cilin,http://em.21dtv.com/songs/60082267.mkv +2PM-my color,http://em.21dtv.com/songs/60073632.mkv +黄雅莉-迷藏,http://em.21dtv.com/songs/60070936.mkv +马宁-mr color,http://em.21dtv.com/songs/60069112.mkv +M83-midnight city,http://em.21dtv.com/songs/60067944.mkv +SUNNY HILL-midnight circus,http://em.21dtv.com/songs/60062165.mkv +徐誉滕-陌城,http://em.21dtv.com/songs/60030399.mkv +王菲-美错,http://em.21dtv.com/songs/60029111.mkv +韩光-my cirlin,http://em.21dtv.com/songs/60003962.mkv +邵智伟+庄冬昕-morning cute,http://em.21dtv.com/songs/60003901.mkv +幸田来未-moon crying,http://em.21dtv.com/songs/60003876.mkv +郭富城-merry christmas,http://em.21dtv.com/songs/60003801.mkv +尚雯婕-merry christmas(演唱会),http://em.21dtv.com/songs/60003800.mkv +东方神起-magic castle,http://em.21dtv.com/songs/60003697.mkv +辛晓琪-明白,http://em.21dtv.com/songs/60132946.mkv +何守建-美宝,http://em.21dtv.com/songs/60125122.mkv +杨乐-明白,http://em.21dtv.com/songs/60118700.mkv +游子组合-膜拜,http://em.21dtv.com/songs/60107890.mkv +何亁梁-抹布,http://em.21dtv.com/songs/60107492.mkv +李圣杰-明白,http://em.21dtv.com/songs/60105973.mkv +林子娟-弥补,http://em.21dtv.com/songs/60095662.mkv +苏珊-梦伴,http://em.21dtv.com/songs/60093089.mkv +蒋平-梦波,http://em.21dtv.com/songs/60085447.mkv +刘鹏远-漫步,http://em.21dtv.com/songs/60085414.mkv +EMINEM-music box,http://em.21dtv.com/songs/60082266.mkv +SKYLINE-moon bear,http://em.21dtv.com/songs/60082263.mkv +SISTAR19-ma boy,http://em.21dtv.com/songs/60082252.mkv +草蜢-梦伴(演唱会),http://em.21dtv.com/songs/60076652.mkv +HAN GROO-my boy,http://em.21dtv.com/songs/60073631.mkv +尚雯婕-ma bulle,http://em.21dtv.com/songs/60073573.mkv +JKAI+DIXON-迷博,http://em.21dtv.com/songs/60072203.mkv +DAL SHABET-mr bangbang,http://em.21dtv.com/songs/60070378.mkv +CLOSER-明白,http://em.21dtv.com/songs/60067238.mkv +赵咏华-明白,http://em.21dtv.com/songs/60030096.mkv +张栋梁-明白,http://em.21dtv.com/songs/60030095.mkv +五月天-明白,http://em.21dtv.com/songs/60030094.mkv +田震-明白,http://em.21dtv.com/songs/60030093.mkv +郭静-明白,http://em.21dtv.com/songs/60030092.mkv +丁当-明白,http://em.21dtv.com/songs/60030091.mkv +吴倩莲-弥补,http://em.21dtv.com/songs/60029846.mkv +乐红-弥补(无原唱),http://em.21dtv.com/songs/60029845.mkv +梅艳芳-梦伴,http://em.21dtv.com/songs/60029480.mkv +李悦君-梦伴,http://em.21dtv.com/songs/60029479.mkv +梅艳芳-梦伴(演唱会),http://em.21dtv.com/songs/60029478.mkv +郭富城-梦伴(演唱会),http://em.21dtv.com/songs/60029477.mkv +关淑怡-梦伴(演唱会),http://em.21dtv.com/songs/60029476.mkv +孙淑媚-没伴,http://em.21dtv.com/songs/60028706.mkv +王浩信-猫步,http://em.21dtv.com/songs/60028634.mkv +许巍-漫步,http://em.21dtv.com/songs/60028562.mkv +许巍-漫步(演唱会),http://em.21dtv.com/songs/60028561.mkv +麦穗-脉搏,http://em.21dtv.com/songs/60028492.mkv +花儿乐队-麦霸,http://em.21dtv.com/songs/60028434.mkv +石康军-麻痹,http://em.21dtv.com/songs/60028317.mkv +女孩与机器人-my boy,http://em.21dtv.com/songs/60003961.mkv +BUONO-my boy,http://em.21dtv.com/songs/60003960.mkv +TWINS-my bonnie,http://em.21dtv.com/songs/60003959.mkv +TONY SHERDAN+THE BEA-my bonnie(无原唱),http://em.21dtv.com/songs/60003958.mkv +黄凯芹-my baby,http://em.21dtv.com/songs/60003956.mkv +童唱-music box,http://em.21dtv.com/songs/60003944.mkv +MARIAH CAREY-music box,http://em.21dtv.com/songs/60003943.mkv +D.BLACKWELL-mr blue(无原唱),http://em.21dtv.com/songs/60003916.mkv +佚名-moody blue,http://em.21dtv.com/songs/60003875.mkv +佚名-may be,http://em.21dtv.com/songs/60003766.mkv +HOPE-MARRY YOU,http://em.21dtv.com/songs/60096625.mkv +RUDE-MAGIC!,http://em.21dtv.com/songs/60100750.mkv +NORA SAYS+LEA HUANG-MACHINE GUN,http://em.21dtv.com/songs/60096624.mkv +机动现场-MACHINE GUN,http://em.21dtv.com/songs/60096623.mkv +樱樱-蔑爱,http://em.21dtv.com/songs/60100247.mkv +IU-Monday Afternoon,http://em.21dtv.com/songs/60099002.mkv +刘德华+郑秀文-盲爱,http://em.21dtv.com/songs/60083343.mkv +滨崎步-my all(演唱会),http://em.21dtv.com/songs/60082251.mkv +刘晶-母爱,http://em.21dtv.com/songs/60080646.mkv +廖昌永-母爱,http://em.21dtv.com/songs/60080217.mkv +姚睿与NONAME-my attitude,http://em.21dtv.com/songs/60069113.mkv +陈柏宇-命案,http://em.21dtv.com/songs/60066161.mkv +乔军-母爱,http://em.21dtv.com/songs/60030511.mkv +彭丽媛-母爱,http://em.21dtv.com/songs/60030510.mkv +陶喆-my anata,http://em.21dtv.com/songs/60003954.mkv +MARIAH CAREY-my all,http://em.21dtv.com/songs/60003953.mkv +BE BOSS-movie affair,http://em.21dtv.com/songs/60003913.mkv +佚名-morning after,http://em.21dtv.com/songs/60003900.mkv +安心亚+罗志祥-靓仔,http://em.21dtv.com/songs/60128985.mkv +李泰-冷战,http://em.21dtv.com/songs/60119662.mkv +董燕妮-龙族,http://em.21dtv.com/songs/60114751.mkv +沈波-冷战,http://em.21dtv.com/songs/60107024.mkv +信-浪子,http://em.21dtv.com/songs/60101609.mkv +陈慧琳-留座,http://em.21dtv.com/songs/60093465.mkv +王靖雯-冷战,http://em.21dtv.com/songs/60093006.mkv +黄飞鹏-冷战,http://em.21dtv.com/songs/60085364.mkv +洪禄云+陈水林-梁祝,http://em.21dtv.com/songs/60083300.mkv +张悬-两者,http://em.21dtv.com/songs/60069568.mkv +张崇基+张崇德-龙珠(演唱会),http://em.21dtv.com/songs/60064493.mkv +郝蕾-郎中,http://em.21dtv.com/songs/60061350.mkv +徐佳莹-绿洲,http://em.21dtv.com/songs/60028200.mkv +S.H.E-绿洲,http://em.21dtv.com/songs/60028199.mkv +李碧华-露珠,http://em.21dtv.com/songs/60027977.mkv +黄大炜-龙族,http://em.21dtv.com/songs/60027856.mkv +董燕妮-龙族,http://em.21dtv.com/songs/60027855.mkv +李玟-流转,http://em.21dtv.com/songs/60027752.mkv +彭佳慧-留住,http://em.21dtv.com/songs/60027587.mkv +郭峰+格格-留住,http://em.21dtv.com/songs/60027586.mkv +张智成-梁祝,http://em.21dtv.com/songs/60027203.mkv +佚名-梁祝,http://em.21dtv.com/songs/60027202.mkv +吴奇隆-梁祝,http://em.21dtv.com/songs/60027201.mkv +吴奇隆+李沁怡-梁祝,http://em.21dtv.com/songs/60027200.mkv +潘秀琼-梁祝,http://em.21dtv.com/songs/60027199.mkv +刘斌-梁祝,http://em.21dtv.com/songs/60027198.mkv +林冠吟-梁祝,http://em.21dtv.com/songs/60027197.mkv +佚名-梁祝(狐),http://em.21dtv.com/songs/60027196.mkv +何炅-离站,http://em.21dtv.com/songs/60026802.mkv +杨丞琳-冷战,http://em.21dtv.com/songs/60026632.mkv +王菲-冷战,http://em.21dtv.com/songs/60026631.mkv +黄义达-冷战,http://em.21dtv.com/songs/60026630.mkv +侯湘婷-冷战,http://em.21dtv.com/songs/60026629.mkv +孙燕姿-累赘(演唱会),http://em.21dtv.com/songs/60026571.mkv +张杰-泪妆,http://em.21dtv.com/songs/60026558.mkv +佚名-浪子,http://em.21dtv.com/songs/60026262.mkv +南宁+柒仔-烂崽,http://em.21dtv.com/songs/60026176.mkv +晓枫-懒猪,http://em.21dtv.com/songs/60026166.mkv +吴婷-懒猪,http://em.21dtv.com/songs/60026165.mkv +刘晓-莲愿,http://em.21dtv.com/songs/60131210.mkv +兰天-了缘,http://em.21dtv.com/songs/60131184.mkv +龙姬-泪眼,http://em.21dtv.com/songs/60127636.mkv +白举纲-燎原,http://em.21dtv.com/songs/60127231.mkv +陆虎-留言,http://em.21dtv.com/songs/60126359.mkv +焦集-老友,http://em.21dtv.com/songs/60125886.mkv +肖家永-老友,http://em.21dtv.com/songs/60124371.mkv +张磊-路远,http://em.21dtv.com/songs/60123944.mkv +MC耀宗-乐园,http://em.21dtv.com/songs/60123502.mkv +成泉-离雁,http://em.21dtv.com/songs/60122774.mkv +张磊-路远,http://em.21dtv.com/songs/60122740.mkv +刘一平-理由,http://em.21dtv.com/songs/60110874.mkv +吴雨霏-流萤,http://em.21dtv.com/songs/60110080.mkv +4minute-冷雨,http://em.21dtv.com/songs/60109075.mkv +陈小宇-留言,http://em.21dtv.com/songs/60107318.mkv +叶梓-冷夜,http://em.21dtv.com/songs/60106672.mkv +放客兄弟-乐瘾,http://em.21dtv.com/songs/60103313.mkv +七朵组合-落叶,http://em.21dtv.com/songs/60103052.mkv +渔圈+漠凌兮-泪鱼,http://em.21dtv.com/songs/60100919.mkv +孙思怡-理由,http://em.21dtv.com/songs/60100835.mkv +罗文裕+黄美珍-蓝月,http://em.21dtv.com/songs/60096811.mkv +施志兴-泪雨,http://em.21dtv.com/songs/60096311.mkv +蓝奕邦-六月,http://em.21dtv.com/songs/60093117.mkv +徐乃麟-楼影,http://em.21dtv.com/songs/60089881.mkv +刘孟哲-绿叶,http://em.21dtv.com/songs/60086687.mkv +潘成+孙莞-岚鸢,http://em.21dtv.com/songs/60086663.mkv +于全莉-柳韵,http://em.21dtv.com/songs/60085397.mkv +MATT CARDLE+MELANIE C-loving you,http://em.21dtv.com/songs/60084743.mkv +乌兰图雅-绿叶,http://em.21dtv.com/songs/60083322.mkv +常思思-绿叶,http://em.21dtv.com/songs/60083321.mkv +李丽蕊-涟漪(演唱会),http://em.21dtv.com/songs/60083292.mkv +黄淑玲-乐园,http://em.21dtv.com/songs/60083273.mkv +钟健-老友,http://em.21dtv.com/songs/60083269.mkv +邬祯琳-蓝颜,http://em.21dtv.com/songs/60083251.mkv +刘恺威+白冰-落叶,http://em.21dtv.com/songs/60081088.mkv +董贞-兰夜,http://em.21dtv.com/songs/60080950.mkv +许恒-理由,http://em.21dtv.com/songs/60080788.mkv +钟丽燕-落叶(演唱会),http://em.21dtv.com/songs/60076533.mkv +钱刚-雷雨,http://em.21dtv.com/songs/60076359.mkv +王祖蓝-love you,http://em.21dtv.com/songs/60073562.mkv +张靓颖-loving you(演唱会),http://em.21dtv.com/songs/60071635.mkv +刑钢-绿叶(演唱会),http://em.21dtv.com/songs/60070894.mkv +唯丞-泪雨,http://em.21dtv.com/songs/60064464.mkv +于台烟-落叶,http://em.21dtv.com/songs/60061390.mkv +汤洁-落叶,http://em.21dtv.com/songs/60061389.mkv +蔡枫华-落雁(演唱会),http://em.21dtv.com/songs/60061388.mkv +张羽-落叶,http://em.21dtv.com/songs/60028107.mkv +杨洪基-落叶,http://em.21dtv.com/songs/60028106.mkv +苏永康-落叶,http://em.21dtv.com/songs/60028105.mkv +冰淇-落叶,http://em.21dtv.com/songs/60028104.mkv +刘欢-落叶(演唱会),http://em.21dtv.com/songs/60028103.mkv +佚名-楼影,http://em.21dtv.com/songs/60027889.mkv +陈升-六月,http://em.21dtv.com/songs/60027789.mkv +佚名2-流云,http://em.21dtv.com/songs/60027748.mkv +佚名1-流云,http://em.21dtv.com/songs/60027747.mkv +林姗+皓皓-流云,http://em.21dtv.com/songs/60027746.mkv +周蕙-流域,http://em.21dtv.com/songs/60027745.mkv +周慧敏+林隆璇-流言,http://em.21dtv.com/songs/60027743.mkv +张学友-留言,http://em.21dtv.com/songs/60027577.mkv +那英-留言,http://em.21dtv.com/songs/60027576.mkv +周传雄-灵药,http://em.21dtv.com/songs/60027424.mkv +陈百强-涟漪,http://em.21dtv.com/songs/60026959.mkv +OVERDOSE-涟漪,http://em.21dtv.com/songs/60026958.mkv +吴浩康-涟漪(演唱会),http://em.21dtv.com/songs/60026957.mkv +彭羚-涟漪(演唱会),http://em.21dtv.com/songs/60026956.mkv +梁汉文-涟漪(演唱会),http://em.21dtv.com/songs/60026955.mkv +天仙妹妹-丽园,http://em.21dtv.com/songs/60026921.mkv +林忆莲-理由,http://em.21dtv.com/songs/60026898.mkv +李俊熙-理由,http://em.21dtv.com/songs/60026897.mkv +赖铭伟-理由,http://em.21dtv.com/songs/60026896.mkv +高进-理由,http://em.21dtv.com/songs/60026895.mkv +齐秦-冷月,http://em.21dtv.com/songs/60026628.mkv +杨千嬅-冷雨,http://em.21dtv.com/songs/60026624.mkv +莫文蔚-冷雨,http://em.21dtv.com/songs/60026623.mkv +李丽蕊-冷雨(演唱会),http://em.21dtv.com/songs/60026622.mkv +黄品冠-冷雨(演唱会),http://em.21dtv.com/songs/60026621.mkv +田震-冷艳,http://em.21dtv.com/songs/60026620.mkv +孙悦-冷艳,http://em.21dtv.com/songs/60026619.mkv +蓝雨-泪雨,http://em.21dtv.com/songs/60026555.mkv +李鑫雨-泪眼,http://em.21dtv.com/songs/60026552.mkv +张韶涵-乐园,http://em.21dtv.com/songs/60026479.mkv +田震-乐园,http://em.21dtv.com/songs/60026478.mkv +陈奕迅+黄韵玲-乐园,http://em.21dtv.com/songs/60026477.mkv +蔡依林-乐园,http://em.21dtv.com/songs/60026476.mkv +孙楠-乐园(演唱会),http://em.21dtv.com/songs/60026475.mkv +费玉清-狼烟,http://em.21dtv.com/songs/60026206.mkv +曾心梅-揽云,http://em.21dtv.com/songs/60026155.mkv +张学友-蓝雨,http://em.21dtv.com/songs/60026149.mkv +永邦-蓝雨,http://em.21dtv.com/songs/60026148.mkv +张学友-蓝雨(演唱会),http://em.21dtv.com/songs/60026147.mkv +杨千嬅-蓝雨(演唱会),http://em.21dtv.com/songs/60026146.mkv +吴浩康-蓝雨(演唱会),http://em.21dtv.com/songs/60026145.mkv +李国祥-蓝夜,http://em.21dtv.com/songs/60026141.mkv +江得胜-蓝夜,http://em.21dtv.com/songs/60026140.mkv +周渝民-loving you,http://em.21dtv.com/songs/60003657.mkv +李岗霖-loving you,http://em.21dtv.com/songs/60003656.mkv +杜德伟-loving you,http://em.21dtv.com/songs/60003655.mkv +吴奇隆-loving you(演唱会),http://em.21dtv.com/songs/60003654.mkv +容祖儿-loving you(演唱会),http://em.21dtv.com/songs/60003653.mkv +侧田-loving you(演唱会),http://em.21dtv.com/songs/60003652.mkv +周柏豪-lovin you,http://em.21dtv.com/songs/60003648.mkv +张敬轩-lovinyou(演唱会),http://em.21dtv.com/songs/60003647.mkv +彭羚-lovinyou(演唱会),http://em.21dtv.com/songs/60003646.mkv +莫文蔚-love yourself,http://em.21dtv.com/songs/60003622.mkv +莫文蔚-love yourself(演唱会),http://em.21dtv.com/songs/60003621.mkv +徐承邦-流星,http://em.21dtv.com/songs/60135285.mkv +林志炫-裂心,http://em.21dtv.com/songs/60133877.mkv +赵雷-理想,http://em.21dtv.com/songs/60132928.mkv +阿索-恋夏,http://em.21dtv.com/songs/60131925.mkv +莫建成-老乡,http://em.21dtv.com/songs/60126120.mkv +胡夏-裸夏,http://em.21dtv.com/songs/60126081.mkv +周笔畅-两陷,http://em.21dtv.com/songs/60122603.mkv +谢红慧-流星,http://em.21dtv.com/songs/60122126.mkv +王鸣飞-旅行,http://em.21dtv.com/songs/60120797.mkv +李嘉格-沦陷,http://em.21dtv.com/songs/60119653.mkv +同恩-旅行,http://em.21dtv.com/songs/60118432.mkv +张磊-旅行,http://em.21dtv.com/songs/60115161.mkv +胡夏-裸夏,http://em.21dtv.com/songs/60112897.mkv +王力宏-裂心,http://em.21dtv.com/songs/60109524.mkv +王力宏-裂心,http://em.21dtv.com/songs/60107900.mkv +旭佳非-黎杏,http://em.21dtv.com/songs/60107762.mkv +赵雷-理想,http://em.21dtv.com/songs/60105401.mkv +袁忠山-老乡,http://em.21dtv.com/songs/60102719.mkv +阿BEN-老乡,http://em.21dtv.com/songs/60101542.mkv +熊胡杰-离夏,http://em.21dtv.com/songs/60096782.mkv +韦唯-恋寻,http://em.21dtv.com/songs/60096141.mkv +吴浩康-灵犀,http://em.21dtv.com/songs/60092459.mkv +羽泉-梁心,http://em.21dtv.com/songs/60090118.mkv +优客李林-流星,http://em.21dtv.com/songs/60087297.mkv +江志丰-留学,http://em.21dtv.com/songs/60085396.mkv +许靖 小七-沦陷,http://em.21dtv.com/songs/60076522.mkv +吴奇隆-留香,http://em.21dtv.com/songs/60076484.mkv +肖燕-良心,http://em.21dtv.com/songs/60076422.mkv +许靖+小七-沦陷,http://em.21dtv.com/songs/60072172.mkv +梦成+郭一凡-流星,http://em.21dtv.com/songs/60070884.mkv +郭燕-莲心,http://em.21dtv.com/songs/60066115.mkv +刀郎-理想(演唱会),http://em.21dtv.com/songs/60064471.mkv +信-沦陷,http://em.21dtv.com/songs/60063184.mkv +佚名-绿袖,http://em.21dtv.com/songs/60028191.mkv +许巍-旅行,http://em.21dtv.com/songs/60028141.mkv +秀兰玛雅-旅行,http://em.21dtv.com/songs/60028140.mkv +黎姿-旅行,http://em.21dtv.com/songs/60028139.mkv +杨千嬅-落霞,http://em.21dtv.com/songs/60028101.mkv +卢巧音-露西,http://em.21dtv.com/songs/60027976.mkv +达明一派-露西(演唱会),http://em.21dtv.com/songs/60027975.mkv +ZEN-陋巷,http://em.21dtv.com/songs/60027892.mkv +伍佰-流星,http://em.21dtv.com/songs/60027726.mkv +王菲-流星,http://em.21dtv.com/songs/60027725.mkv +痞克四-流星,http://em.21dtv.com/songs/60027724.mkv +郑钧-流星(演唱会),http://em.21dtv.com/songs/60027723.mkv +达明一派-流星(演唱会),http://em.21dtv.com/songs/60027722.mkv +吴宗宪-留心,http://em.21dtv.com/songs/60027575.mkv +花儿乐队-留心,http://em.21dtv.com/songs/60027574.mkv +关智斌-灵犀,http://em.21dtv.com/songs/60027423.mkv +郭富城-临行,http://em.21dtv.com/songs/60027397.mkv +郭富城-临行(演唱会),http://em.21dtv.com/songs/60027396.mkv +乱弹-良心,http://em.21dtv.com/songs/60027170.mkv +李克勤-良心,http://em.21dtv.com/songs/60027169.mkv +毛阿敏-恋寻,http://em.21dtv.com/songs/60027147.mkv +孙燕姿-练习,http://em.21dtv.com/songs/60026978.mkv +刘德华-练习,http://em.21dtv.com/songs/60026977.mkv +MAKIYO-练习,http://em.21dtv.com/songs/60026976.mkv +刘德华-练习(HD演唱会),http://em.21dtv.com/songs/60026975.mkv +云朵-理想,http://em.21dtv.com/songs/60026882.mkv +江涛-老徐,http://em.21dtv.com/songs/60026444.mkv +金学峰-老乡,http://em.21dtv.com/songs/60026440.mkv +郑中基-烂训,http://em.21dtv.com/songs/60026175.mkv +郑中基-烂训(演唱会),http://em.21dtv.com/songs/60026174.mkv +蒋雅文+李逸朗-懒醒,http://em.21dtv.com/songs/60026164.mkv +林志颖-lonely xmas,http://em.21dtv.com/songs/60003467.mkv +奥井雅美-轮舞revolution,http://em.21dtv.com/songs/60083324.mkv +降央卓玛-老屋,http://em.21dtv.com/songs/60135951.mkv +钟志刚-老屋,http://em.21dtv.com/songs/60123265.mkv +胡艾莲-猎物,http://em.21dtv.com/songs/60116212.mkv +张卓含威-领悟,http://em.21dtv.com/songs/60105022.mkv +帕尔哈提-礼物,http://em.21dtv.com/songs/60104994.mkv +许巍+汪峰+周晓欧等-礼物,http://em.21dtv.com/songs/60104428.mkv +李琼+亚东-老王,http://em.21dtv.com/songs/60091350.mkv +孟楠-领悟,http://em.21dtv.com/songs/60081491.mkv +周华健-领悟,http://em.21dtv.com/songs/60076460.mkv +张杰-领悟,http://em.21dtv.com/songs/60076459.mkv +申小超-裂吻,http://em.21dtv.com/songs/60076445.mkv +江映蓉-礼物,http://em.21dtv.com/songs/60076397.mkv +关喆-领悟,http://em.21dtv.com/songs/60069575.mkv +孙中亮-礼物,http://em.21dtv.com/songs/60069564.mkv +李宗盛-领悟,http://em.21dtv.com/songs/60066125.mkv +李戈-猎物,http://em.21dtv.com/songs/60062587.mkv +谭晶-龙文(演唱会),http://em.21dtv.com/songs/60027845.mkv +陈奕迅+谭晶-龙文(演唱会),http://em.21dtv.com/songs/60027844.mkv +林姗-另外,http://em.21dtv.com/songs/60027481.mkv +辛晓琪-领悟,http://em.21dtv.com/songs/60027479.mkv +麦子杰-领悟,http://em.21dtv.com/songs/60027478.mkv +辛晓琪-领悟(演唱会),http://em.21dtv.com/songs/60027477.mkv +林忆莲-领悟(演唱会),http://em.21dtv.com/songs/60027476.mkv +王晶-恋味,http://em.21dtv.com/songs/60027144.mkv +黄靖宏-例外,http://em.21dtv.com/songs/60026923.mkv +NO NAME-例外,http://em.21dtv.com/songs/60026922.mkv +张学友-礼物,http://em.21dtv.com/songs/60026856.mkv +许巍-礼物,http://em.21dtv.com/songs/60026855.mkv +罗美玲-礼物,http://em.21dtv.com/songs/60026854.mkv +刘力扬-礼物,http://em.21dtv.com/songs/60026853.mkv +梁咏琪-礼物,http://em.21dtv.com/songs/60026852.mkv +黄立行-礼物,http://em.21dtv.com/songs/60026851.mkv +邓丽欣-礼物,http://em.21dtv.com/songs/60026850.mkv +陈慧娴-礼物,http://em.21dtv.com/songs/60026849.mkv +芭比-礼物,http://em.21dtv.com/songs/60026848.mkv +钟汉良-礼物(演唱会),http://em.21dtv.com/songs/60026847.mkv +何嘉文+TAE-礼物(无原唱),http://em.21dtv.com/songs/60026846.mkv +老兵-老吴,http://em.21dtv.com/songs/60026437.mkv +水木年华-老屋,http://em.21dtv.com/songs/60026436.mkv +[Group] +groupName=十六万歌曲MV等 - 10 +ENGELBERT HUMPERDINC-last waltz,http://em.21dtv.com/songs/60003287.mkv +张菲-last waltz(演唱会),http://em.21dtv.com/songs/60003286.mkv +吉克隽逸-Lets Vogue,http://em.21dtv.com/songs/60080996.mkv +孙燕姿-lets vino(演唱会)(无原唱),http://em.21dtv.com/songs/60003381.mkv +陈晓东-Lucky Star,http://em.21dtv.com/songs/60100591.mkv +鹿晗-Lu,http://em.21dtv.com/songs/60117398.mkv +方大同-Lights Up,http://em.21dtv.com/songs/60093746.mkv +SISTAR-loving u,http://em.21dtv.com/songs/60073568.mkv +林俊杰-love uu,http://em.21dtv.com/songs/60073560.mkv +AKON+STYLE-locked up,http://em.21dtv.com/songs/60073525.mkv +SWAY+KELSEY-level up,http://em.21dtv.com/songs/60069100.mkv +陈伟霆-love u2,http://em.21dtv.com/songs/60063671.mkv +AKON+STYLES P-locked up,http://em.21dtv.com/songs/60063661.mkv +何嘉文-loving u(无原唱),http://em.21dtv.com/songs/60003650.mkv +王传一-lovinu,http://em.21dtv.com/songs/60003645.mkv +金大为-蓝天,http://em.21dtv.com/songs/60133005.mkv +DK金大为-蓝天,http://em.21dtv.com/songs/60131054.mkv +DK金大为-蓝天,http://em.21dtv.com/songs/60129924.mkv +谢伟伦-旅途,http://em.21dtv.com/songs/60124488.mkv +老狼-旅途,http://em.21dtv.com/songs/60120860.mkv +仲崇龙-邋遢,http://em.21dtv.com/songs/60111684.mkv +钟亚华-蓝天,http://em.21dtv.com/songs/60108079.mkv +解伟苓-蓝天,http://em.21dtv.com/songs/60108001.mkv +平安-旅途,http://em.21dtv.com/songs/60096783.mkv +梁咏琪-骆驼,http://em.21dtv.com/songs/60091520.mkv +柯以敏-恋天,http://em.21dtv.com/songs/60091502.mkv +郭富城-澧涂,http://em.21dtv.com/songs/60090267.mkv +汪峰-旅途,http://em.21dtv.com/songs/60086685.mkv +钰涵-老头,http://em.21dtv.com/songs/60085359.mkv +杨谨+沙滩宝贝-Lemon Tree,http://em.21dtv.com/songs/60080806.mkv +曾轶可-辣糖,http://em.21dtv.com/songs/60080351.mkv +刘惜君-旅途,http://em.21dtv.com/songs/60076512.mkv +纶彦霖-love tonight,http://em.21dtv.com/songs/60073559.mkv +ONE DIRECTION-little things,http://em.21dtv.com/songs/60073521.mkv +新宝岛康乐队-路途,http://em.21dtv.com/songs/60072169.mkv +4MINUTE-love tension,http://em.21dtv.com/songs/60071634.mkv +WONDER GIRLS-like this,http://em.21dtv.com/songs/60069101.mkv +刘力扬-旅途,http://em.21dtv.com/songs/60064498.mkv +花世纪-旅途,http://em.21dtv.com/songs/60028147.mkv +郭富城-旅途,http://em.21dtv.com/songs/60028146.mkv +朴树-旅途(演唱会),http://em.21dtv.com/songs/60028145.mkv +徐嘉良-旅途(无原唱),http://em.21dtv.com/songs/60028144.mkv +周柏豪-六天,http://em.21dtv.com/songs/60027786.mkv +黄思婷-聆听,http://em.21dtv.com/songs/60027441.mkv +林忆莲-聆听(演唱会),http://em.21dtv.com/songs/60027440.mkv +梁咏琪-聊天,http://em.21dtv.com/songs/60027352.mkv +郭静-聊天,http://em.21dtv.com/songs/60027351.mkv +许巍-两天,http://em.21dtv.com/songs/60027297.mkv +许巍-两天(演唱会),http://em.21dtv.com/songs/60027296.mkv +赵学而-连体,http://em.21dtv.com/songs/60026942.mkv +古天乐-乐天,http://em.21dtv.com/songs/60026467.mkv +李孝利-唠叨,http://em.21dtv.com/songs/60026462.mkv +吴德华-浪途,http://em.21dtv.com/songs/60026261.mkv +张惠妹-蓝天,http://em.21dtv.com/songs/60026123.mkv +图腾-蓝天,http://em.21dtv.com/songs/60026122.mkv +黄子华-蓝天,http://em.21dtv.com/songs/60026121.mkv +黄义达-蓝天,http://em.21dtv.com/songs/60026120.mkv +李宇春-蓝天(演唱会),http://em.21dtv.com/songs/60026119.mkv +黄小琥-蓝天(演唱会),http://em.21dtv.com/songs/60026118.mkv +YUI-love truth,http://em.21dtv.com/songs/60003606.mkv +佚名-love train,http://em.21dtv.com/songs/60003605.mkv +佚名-lonesome town,http://em.21dtv.com/songs/60003473.mkv +苏慧伦-lemon tree,http://em.21dtv.com/songs/60003321.mkv +FOOLS GARDEN-lemon tree,http://em.21dtv.com/songs/60003320.mkv +古巨基+容祖儿-lemon tree(演唱会),http://em.21dtv.com/songs/60003319.mkv +李琦-来生,http://em.21dtv.com/songs/60135371.mkv +黄千庭+李础业-里数,http://em.21dtv.com/songs/60134492.mkv +李文华-老师,http://em.21dtv.com/songs/60132539.mkv +初晨-离殇,http://em.21dtv.com/songs/60130129.mkv +余火灵-离殇,http://em.21dtv.com/songs/60130087.mkv +汤薇恩-留声,http://em.21dtv.com/songs/60129334.mkv +于文文-莲殇,http://em.21dtv.com/songs/60126580.mkv +刘建东-离殇,http://em.21dtv.com/songs/60122518.mkv +春雷-拉萨,http://em.21dtv.com/songs/60121729.mkv +朱天毅-乱世,http://em.21dtv.com/songs/60115214.mkv +李娅莎-露水,http://em.21dtv.com/songs/60111966.mkv +大嘴巴-鲁蛇,http://em.21dtv.com/songs/60111796.mkv +金南玲-来生,http://em.21dtv.com/songs/60110590.mkv +张宇轩-离殇,http://em.21dtv.com/songs/60110190.mkv +春雷-拉萨,http://em.21dtv.com/songs/60107763.mkv +李荣浩-落俗,http://em.21dtv.com/songs/60106955.mkv +王瑞淇-离殇,http://em.21dtv.com/songs/60105251.mkv +文昊-流逝,http://em.21dtv.com/songs/60102276.mkv +段丽阳-老师,http://em.21dtv.com/songs/60100905.mkv +中坚份子-流沙,http://em.21dtv.com/songs/60089587.mkv +王爱华-流沙,http://em.21dtv.com/songs/60083311.mkv +滨崎步-love song,http://em.21dtv.com/songs/60082245.mkv +加藤ミリヤ+清水翔太-love story,http://em.21dtv.com/songs/60082243.mkv +萧羽心-恋上,http://em.21dtv.com/songs/60082017.mkv +谢安琪+吉克隽逸-两双,http://em.21dtv.com/songs/60081717.mkv +斯琴高丽+顾峰-老树,http://em.21dtv.com/songs/60080698.mkv +小5-离殇,http://em.21dtv.com/songs/60080302.mkv +李美丽-泪水,http://em.21dtv.com/songs/60076366.mkv +CHIEF KEEF-love sosa,http://em.21dtv.com/songs/60073558.mkv +BIG BANG-love song,http://em.21dtv.com/songs/60073557.mkv +林欣彤-little something,http://em.21dtv.com/songs/60073520.mkv +阿良伟-林桑,http://em.21dtv.com/songs/60072154.mkv +邹宗翰-疗伤,http://em.21dtv.com/songs/60072152.mkv +USHER+RICK ROSS-lemme see,http://em.21dtv.com/songs/60071625.mkv +吴进法-铃声,http://em.21dtv.com/songs/60070883.mkv +阿兰-love+song,http://em.21dtv.com/songs/60069106.mkv +阿兰-love song,http://em.21dtv.com/songs/60066679.mkv +塔宏伟-流沙,http://em.21dtv.com/songs/60064487.mkv +安室奈美恵-love story,http://em.21dtv.com/songs/60063670.mkv +FUNKY MONKEY BABYS-love song,http://em.21dtv.com/songs/60063669.mkv +三代目-love song,http://em.21dtv.com/songs/60062896.mkv +SCANDAL-love survive,http://em.21dtv.com/songs/60062144.mkv +LIL TWIST+BOW WOW-little secret,http://em.21dtv.com/songs/60062093.mkv +杨佳-路上,http://em.21dtv.com/songs/60061381.mkv +蓝芷儿-露水,http://em.21dtv.com/songs/60061380.mkv +蔡琴-洛神,http://em.21dtv.com/songs/60028046.mkv +俞晴-裸睡,http://em.21dtv.com/songs/60028041.mkv +佚名-露水,http://em.21dtv.com/songs/60027972.mkv +王瑞霞-露水,http://em.21dtv.com/songs/60027971.mkv +陈盈洁-露水,http://em.21dtv.com/songs/60027970.mkv +范圣霖-路上,http://em.21dtv.com/songs/60027956.mkv +佚名-流水,http://em.21dtv.com/songs/60027714.mkv +周传雄-流逝,http://em.21dtv.com/songs/60027712.mkv +谢丽娟-流逝,http://em.21dtv.com/songs/60027711.mkv +王芷蕾-流沙,http://em.21dtv.com/songs/60027709.mkv +容祖儿-流沙,http://em.21dtv.com/songs/60027708.mkv +陶喆-流沙(演唱会),http://em.21dtv.com/songs/60027707.mkv +容祖儿-流沙(演唱会),http://em.21dtv.com/songs/60027706.mkv +彭羚-疗伤,http://em.21dtv.com/songs/60027349.mkv +游鸿明-恋上,http://em.21dtv.com/songs/60027136.mkv +洪乙心-脸色,http://em.21dtv.com/songs/60026970.mkv +汤潮-丽萨,http://em.21dtv.com/songs/60026920.mkv +戴爱玲-离骚,http://em.21dtv.com/songs/60026784.mkv +苏永康+吴国敬-老死,http://em.21dtv.com/songs/60026429.mkv +苏永康-老死(演唱会),http://em.21dtv.com/songs/60026428.mkv +ZIP发射乐团-老鼠,http://em.21dtv.com/songs/60026412.mkv +吴俅-老师(无原唱),http://em.21dtv.com/songs/60026400.mkv +何韵诗-劳斯,http://em.21dtv.com/songs/60026311.mkv +叶蓓-蓝色,http://em.21dtv.com/songs/60026069.mkv +梦露乐团-蓝色(演唱会),http://em.21dtv.com/songs/60026068.mkv +大嘴巴-喇舌,http://em.21dtv.com/songs/60025932.mkv +容祖儿-lucky star,http://em.21dtv.com/songs/60003672.mkv +容祖儿-lucky star(演唱会),http://em.21dtv.com/songs/60003671.mkv +佚名-love storys,http://em.21dtv.com/songs/60003601.mkv +佚名-love story,http://em.21dtv.com/songs/60003600.mkv +范逸臣-love story,http://em.21dtv.com/songs/60003599.mkv +TAYLORSWIFT-love story,http://em.21dtv.com/songs/60003598.mkv +RAIN-love story,http://em.21dtv.com/songs/60003597.mkv +方大同-love song,http://em.21dtv.com/songs/60003596.mkv +SYD BARRETT-love song,http://em.21dtv.com/songs/60003595.mkv +SARA BAREILLES-love song,http://em.21dtv.com/songs/60003594.mkv +织田裕二-love somebody,http://em.21dtv.com/songs/60003591.mkv +F.SCHNEIDER+C.PIERSO-love shack(无原唱),http://em.21dtv.com/songs/60003587.mkv +911-love sensation,http://em.21dtv.com/songs/60003586.mkv +佚名-lonely street,http://em.21dtv.com/songs/60003465.mkv +KELIS FT CEE+LO-lil star,http://em.21dtv.com/songs/60003414.mkv +佚名-lady soul,http://em.21dtv.com/songs/60003265.mkv +张阳阳-路人,http://em.21dtv.com/songs/60130341.mkv +张阳阳-路人,http://em.21dtv.com/songs/60129124.mkv +钟汉良-猎人,http://em.21dtv.com/songs/60120045.mkv +曹冉-良人,http://em.21dtv.com/songs/60115202.mkv +蓝奕邦-恋人,http://em.21dtv.com/songs/60106258.mkv +夏瑶-离人,http://em.21dtv.com/songs/60104001.mkv +柯以敏-离人,http://em.21dtv.com/songs/60100232.mkv +羽泉-蜡人,http://em.21dtv.com/songs/60095039.mkv +邓福如-良人,http://em.21dtv.com/songs/60085384.mkv +FLOWER-恋人がサンタクロース,http://em.21dtv.com/songs/60076418.mkv +PAPA ROACH-last resort,http://em.21dtv.com/songs/60073482.mkv +顾莉雅-恋人,http://em.21dtv.com/songs/60064474.mkv +苏醒+戴娆-lain rain,http://em.21dtv.com/songs/60062933.mkv +GUMMY-love recipe,http://em.21dtv.com/songs/60062039.mkv +彭佳慧-路人,http://em.21dtv.com/songs/60027953.mkv +江美琪-路人,http://em.21dtv.com/songs/60027952.mkv +于冠华-猎人(无原唱),http://em.21dtv.com/songs/60027375.mkv +阿福-良人,http://em.21dtv.com/songs/60027167.mkv +张镐哲-恋人,http://em.21dtv.com/songs/60027122.mkv +孟庭苇-恋人,http://em.21dtv.com/songs/60027121.mkv +李健-恋人(演唱会),http://em.21dtv.com/songs/60027120.mkv +张学友-离人,http://em.21dtv.com/songs/60026782.mkv +林志炫-离人,http://em.21dtv.com/songs/60026781.mkv +王非非-泪人(无原唱),http://em.21dtv.com/songs/60026547.mkv +岚-love rainbow,http://em.21dtv.com/songs/60003585.mkv +戴娆+苏醒-love rain,http://em.21dtv.com/songs/60003584.mkv +佚名-limbo rock,http://em.21dtv.com/songs/60003416.mkv +佚名-lagu rindu,http://em.21dtv.com/songs/60003269.mkv +张溪-凉秋,http://em.21dtv.com/songs/60129102.mkv +筠子-立秋,http://em.21dtv.com/songs/60103507.mkv +七郎-落漆,http://em.21dtv.com/songs/60101606.mkv +王菲儿-离去,http://em.21dtv.com/songs/60099417.mkv +熊大-离去,http://em.21dtv.com/songs/60099386.mkv +张杰-两全,http://em.21dtv.com/songs/60096712.mkv +腾格尔-离去,http://em.21dtv.com/songs/60090127.mkv +周子琰-立秋,http://em.21dtv.com/songs/60072145.mkv +周杰伦-龙拳,http://em.21dtv.com/songs/60027835.mkv +邱芸子-恋情(无原唱),http://em.21dtv.com/songs/60027108.mkv +伊正-离去(无原唱),http://em.21dtv.com/songs/60026779.mkv +余天+李亚萍-离情,http://em.21dtv.com/songs/60026777.mkv +尤雅-离情,http://em.21dtv.com/songs/60026776.mkv +李茂山-离情,http://em.21dtv.com/songs/60026775.mkv +谢采妘-离情(无原唱),http://em.21dtv.com/songs/60026774.mkv +伍佰-泪桥,http://em.21dtv.com/songs/60026546.mkv +麻吉弟弟-篮球,http://em.21dtv.com/songs/60026154.mkv +范英楠-老炮,http://em.21dtv.com/songs/60127340.mkv +张艳君-老婆,http://em.21dtv.com/songs/60122747.mkv +万一-老婆,http://em.21dtv.com/songs/60119223.mkv +张杰+许鹤缤-老婆,http://em.21dtv.com/songs/60111886.mkv +张杰-老婆,http://em.21dtv.com/songs/60106854.mkv +黄宥杰-离谱,http://em.21dtv.com/songs/60104629.mkv +越剧-陆派,http://em.21dtv.com/songs/60088730.mkv +金贤重-lets party,http://em.21dtv.com/songs/60082231.mkv +斯琴高丽-脸谱,http://em.21dtv.com/songs/60080253.mkv +杨静-老婆,http://em.21dtv.com/songs/60076353.mkv +加藤ミリヤ-lovers partii,http://em.21dtv.com/songs/60073566.mkv +BASTILLE-laura palmer,http://em.21dtv.com/songs/60073484.mkv +张嘉秀-love party,http://em.21dtv.com/songs/60063375.mkv +YOUNG L-loud pockets,http://em.21dtv.com/songs/60060861.mkv +黑豹乐队-脸谱,http://em.21dtv.com/songs/60026969.mkv +郑进一-老婆,http://em.21dtv.com/songs/60026375.mkv +张华-老婆,http://em.21dtv.com/songs/60026374.mkv +S.H.E-老婆,http://em.21dtv.com/songs/60026373.mkv +叶宇澄-烂片,http://em.21dtv.com/songs/60026172.mkv +陈慧琳-love paradise,http://em.21dtv.com/songs/60003581.mkv +钟舒漫-lets pop,http://em.21dtv.com/songs/60003374.mkv +蔡淳佳-Love You,http://em.21dtv.com/songs/60101504.mkv +-Love Treasure,http://em.21dtv.com/songs/60099710.mkv +NICO-Love Mail,http://em.21dtv.com/songs/60101024.mkv +朴信惠-LOVELY DAY,http://em.21dtv.com/songs/60128075.mkv +METRONOMY-LOVE LETTERS,http://em.21dtv.com/songs/60096622.mkv +GLEE CAST-LOVE CHILD,http://em.21dtv.com/songs/60096621.mkv +John Newman-Losing Sleep,http://em.21dtv.com/songs/60085246.mkv +吴建豪-love overtime,http://em.21dtv.com/songs/60082242.mkv +WILEY+ANGEL+TINCHY STRYDER-lights on,http://em.21dtv.com/songs/60082235.mkv +J.COLE-lost ones,http://em.21dtv.com/songs/60063664.mkv +DAVID COOK-light on,http://em.21dtv.com/songs/60063660.mkv +佚名-lucky one(无原唱),http://em.21dtv.com/songs/60003670.mkv +陈奕迅-last order,http://em.21dtv.com/songs/60003283.mkv +杨艳-泪凝,http://em.21dtv.com/songs/60122891.mkv +李宇春-冷暖,http://em.21dtv.com/songs/60104200.mkv +宾俊杰-流年,http://em.21dtv.com/songs/60098275.mkv +湘唯一-流年,http://em.21dtv.com/songs/60094210.mkv +郭美美-两难,http://em.21dtv.com/songs/60076433.mkv +MIC男团-lonely night,http://em.21dtv.com/songs/60073528.mkv +GOOD CHARLOTTE-last night,http://em.21dtv.com/songs/60073481.mkv +LUCY SPRAGGAN-last night,http://em.21dtv.com/songs/60070362.mkv +RYAN ADAMS-lucky now,http://em.21dtv.com/songs/60066681.mkv +佚名-罗娜,http://em.21dtv.com/songs/60028034.mkv +王菲-流年,http://em.21dtv.com/songs/60027705.mkv +杨千嬅-烈女,http://em.21dtv.com/songs/60027369.mkv +杨千嬅-烈女(演唱会),http://em.21dtv.com/songs/60027368.mkv +杨千嬅+林一峰-烈女(演唱会),http://em.21dtv.com/songs/60027367.mkv +梅艳芳-烈女(演唱会),http://em.21dtv.com/songs/60027366.mkv +达明一派+谢霆锋-烈女(演唱会),http://em.21dtv.com/songs/60027365.mkv +梅艳芳-列女(演唱会),http://em.21dtv.com/songs/60027359.mkv +孙呜洁-俩妞,http://em.21dtv.com/songs/60027326.mkv +柯以敏-两难,http://em.21dtv.com/songs/60027286.mkv +杜淳+彭芳-两难,http://em.21dtv.com/songs/60027285.mkv +戴佩妮-两难,http://em.21dtv.com/songs/60027284.mkv +佚名-恋你,http://em.21dtv.com/songs/60027106.mkv +万芳-恋你,http://em.21dtv.com/songs/60027105.mkv +王识贤-丽娜,http://em.21dtv.com/songs/60026919.mkv +郑希怡-狼女,http://em.21dtv.com/songs/60026203.mkv +许志安-烂泥,http://em.21dtv.com/songs/60026171.mkv +彭羚-烂泥,http://em.21dtv.com/songs/60026170.mkv +许志安+何韵诗-烂泥(演唱会),http://em.21dtv.com/songs/60026169.mkv +苏永康-烂泥(演唱会),http://em.21dtv.com/songs/60026168.mkv +陈小春-烂泥(演唱会),http://em.21dtv.com/songs/60026167.mkv +蔡依林-lucky number,http://em.21dtv.com/songs/60003669.mkv +佚名-last night,http://em.21dtv.com/songs/60003282.mkv +王力宏-last night,http://em.21dtv.com/songs/60003281.mkv +DIDDY F+KEYSHIA COLE-last night,http://em.21dtv.com/songs/60003280.mkv +CARRIE UNDERWOOD-last name,http://em.21dtv.com/songs/60003279.mkv +EO2-ladies nite,http://em.21dtv.com/songs/60003254.mkv +佚名-ladies night,http://em.21dtv.com/songs/60003253.mkv +AK-ladies night,http://em.21dtv.com/songs/60003252.mkv +黄耀明-攞命舞(演唱会),http://em.21dtv.com/songs/60028043.mkv +黄耀明+容祖儿-攞命舞(演唱会),http://em.21dtv.com/songs/60028042.mkv +钱红-黎明,http://em.21dtv.com/songs/60135862.mkv +艾丽雅-礼貌,http://em.21dtv.com/songs/60130681.mkv +蒋雪儿-落幕,http://em.21dtv.com/songs/60119946.mkv +梁海洋-辣妈,http://em.21dtv.com/songs/60112810.mkv +黄艺明-冷漠,http://em.21dtv.com/songs/60106504.mkv +蒋蒋-落幕,http://em.21dtv.com/songs/60106256.mkv +刘爽-辣妈,http://em.21dtv.com/songs/60103937.mkv +心微-落幕,http://em.21dtv.com/songs/60101090.mkv +兰天-兰梦,http://em.21dtv.com/songs/60096679.mkv +李小飞+谢雷-浪漫,http://em.21dtv.com/songs/60095614.mkv +PMC给力团-联盟,http://em.21dtv.com/songs/60093579.mkv +CHRIS BROWN+NICKI MINAJ-love more,http://em.21dtv.com/songs/60086354.mkv +龙智祥-老妈,http://em.21dtv.com/songs/60080657.mkv +D UNIT-luv me,http://em.21dtv.com/songs/60073571.mkv +邓紫棋-lady marmalade(演唱会),http://em.21dtv.com/songs/60073475.mkv +WONDER GIRLS+AKON-like money,http://em.21dtv.com/songs/60071631.mkv +MICHELLE BRANCH-loud music,http://em.21dtv.com/songs/60065635.mkv +玉置成実-lady mind,http://em.21dtv.com/songs/60065630.mkv +翁滋蔓-love me,http://em.21dtv.com/songs/60063667.mkv +阳一-落幕,http://em.21dtv.com/songs/60028090.mkv +唐杰-落幕,http://em.21dtv.com/songs/60028089.mkv +心微-落幕(无原唱),http://em.21dtv.com/songs/60028088.mkv +许志安-罗马,http://em.21dtv.com/songs/60028022.mkv +陈浩德-黎明(演唱会),http://em.21dtv.com/songs/60026829.mkv +任贤齐-冷漠,http://em.21dtv.com/songs/60026606.mkv +吴建豪-lucky me,http://em.21dtv.com/songs/60003668.mkv +阿茹娜-love music,http://em.21dtv.com/songs/60003575.mkv +吴雨霏-love more(演唱会),http://em.21dtv.com/songs/60003574.mkv +费翔-love me,http://em.21dtv.com/songs/60003573.mkv +JUSTIN BIEBER-love me,http://em.21dtv.com/songs/60003572.mkv +费翔-love me(演唱会),http://em.21dtv.com/songs/60003571.mkv +蔡依林-lady marmalade,http://em.21dtv.com/songs/60003263.mkv +ALL SAINT-lady marmalade,http://em.21dtv.com/songs/60003262.mkv +萧亚轩-lady marmalade(演唱会),http://em.21dtv.com/songs/60003261.mkv +林子祥+杜丽莎-lady marmalade(演唱会),http://em.21dtv.com/songs/60003260.mkv +LABELLE-lady marmalade(演唱会),http://em.21dtv.com/songs/60003259.mkv +佚名-lady madonna,http://em.21dtv.com/songs/60003258.mkv +佚名-la morocha,http://em.21dtv.com/songs/60003247.mkv +许廷铿-笼牢,http://em.21dtv.com/songs/60135736.mkv +杨宗伟+张碧晨-凉凉,http://em.21dtv.com/songs/60133839.mkv +杨宗纬+张碧晨-凉凉,http://em.21dtv.com/songs/60132585.mkv +杨宗纬+张碧晨-凉凉,http://em.21dtv.com/songs/60131526.mkv +XY兄弟-老了,http://em.21dtv.com/songs/60130016.mkv +王大文-乱流,http://em.21dtv.com/songs/60128216.mkv +袁咏琳-梨落,http://em.21dtv.com/songs/60127377.mkv +李志-来了,http://em.21dtv.com/songs/60127017.mkv +雷龙-老了,http://em.21dtv.com/songs/60126424.mkv +郑可为-留恋,http://em.21dtv.com/songs/60126272.mkv +winky诗-流离,http://em.21dtv.com/songs/60125050.mkv +夏婉安-六楼,http://em.21dtv.com/songs/60121527.mkv +陈柯宇-牢笼,http://em.21dtv.com/songs/60118164.mkv +廖辰-流浪,http://em.21dtv.com/songs/60116773.mkv +何龙雨-老赖,http://em.21dtv.com/songs/60115000.mkv +任静-吕梁,http://em.21dtv.com/songs/60114989.mkv +黄文星-另类,http://em.21dtv.com/songs/60109777.mkv +范逸臣-流浪,http://em.21dtv.com/songs/60107155.mkv +李行亮-聊聊,http://em.21dtv.com/songs/60106961.mkv +凌晗-流浪,http://em.21dtv.com/songs/60106627.mkv +喜多村英梨-凛丽,http://em.21dtv.com/songs/60105717.mkv +李行亮-聊聊,http://em.21dtv.com/songs/60100167.mkv +许云上-累了(演),http://em.21dtv.com/songs/60099493.mkv +萧敬腾+范玮琪-铃铃,http://em.21dtv.com/songs/60099469.mkv +许云上+蕾雨-累了,http://em.21dtv.com/songs/60098767.mkv +李荣浩-蓝绿,http://em.21dtv.com/songs/60096812.mkv +郑欣宜-屡屡,http://em.21dtv.com/songs/60096810.mkv +CRITTY-玲珑,http://em.21dtv.com/songs/60096754.mkv +陈洁仪-萝拉,http://em.21dtv.com/songs/60088898.mkv +景岗山-来了,http://em.21dtv.com/songs/60081915.mkv +汪峰-流浪,http://em.21dtv.com/songs/60080798.mkv +AKB48-旅立ちのとき(演唱会),http://em.21dtv.com/songs/60076511.mkv +吴奇隆+严艺丹-流恋,http://em.21dtv.com/songs/60076473.mkv +范逸臣-流浪,http://em.21dtv.com/songs/60076467.mkv +杨坤-力量,http://em.21dtv.com/songs/60076401.mkv +板野友美-lose lose,http://em.21dtv.com/songs/60073535.mkv +何洁-lady luck,http://em.21dtv.com/songs/60071623.mkv +孟庭苇-琉璃,http://em.21dtv.com/songs/60070888.mkv +AFTER SCHOOL-lady luck,http://em.21dtv.com/songs/60070360.mkv +梦成-累了,http://em.21dtv.com/songs/60069558.mkv +蓝燕-拉拉,http://em.21dtv.com/songs/60067174.mkv +阿兰-lan lan,http://em.21dtv.com/songs/60066669.mkv +龚芝怡+伍家辉-lala,http://em.21dtv.com/songs/60066668.mkv +TAYLOR SWIFT-long live,http://em.21dtv.com/songs/60065634.mkv +潘辰-流泪,http://em.21dtv.com/songs/60064486.mkv +SHWAYZE-love letter,http://em.21dtv.com/songs/60062153.mkv +杨丞琳-love lution,http://em.21dtv.com/songs/60060865.mkv +佚名-罗拉,http://em.21dtv.com/songs/60028021.mkv +徐怀钰-乱了,http://em.21dtv.com/songs/60027988.mkv +关淑怡-乱了,http://em.21dtv.com/songs/60027987.mkv +刘欢-璐璐(演唱会),http://em.21dtv.com/songs/60027968.mkv +张杰-龙鳞,http://em.21dtv.com/songs/60027834.mkv +张杰-龙鳞(演唱会),http://em.21dtv.com/songs/60027833.mkv +费翔-流连,http://em.21dtv.com/songs/60027703.mkv +张国荣-流浪,http://em.21dtv.com/songs/60027619.mkv +江志丰-流浪,http://em.21dtv.com/songs/60027618.mkv +韩红-流浪,http://em.21dtv.com/songs/60027617.mkv +阿吉仔-流浪,http://em.21dtv.com/songs/60027616.mkv +刘德华-流浪(演唱会),http://em.21dtv.com/songs/60027615.mkv +周慧敏-留恋,http://em.21dtv.com/songs/60027545.mkv +张秀卿-留恋,http://em.21dtv.com/songs/60027544.mkv +费玉清-留恋,http://em.21dtv.com/songs/60027543.mkv +周慧敏-留恋(演唱会),http://em.21dtv.com/songs/60027542.mkv +蟑螂乐队-溜溜,http://em.21dtv.com/songs/60027498.mkv +苏小明-铃兰,http://em.21dtv.com/songs/60027434.mkv +胡灵-灵灵,http://em.21dtv.com/songs/60027422.mkv +庞龙-丽丽,http://em.21dtv.com/songs/60026918.mkv +伍俊华-力量,http://em.21dtv.com/songs/60026905.mkv +女F4-力量,http://em.21dtv.com/songs/60026904.mkv +罗志祥-力量,http://em.21dtv.com/songs/60026903.mkv +林姗-力量,http://em.21dtv.com/songs/60026902.mkv +夏韶声-力量(演唱会),http://em.21dtv.com/songs/60026901.mkv +信乐团-累了,http://em.21dtv.com/songs/60026569.mkv +曾沛慈-泪了,http://em.21dtv.com/songs/60026543.mkv +周蕙-了了,http://em.21dtv.com/songs/60026496.mkv +胡蓓蔚-了了,http://em.21dtv.com/songs/60026495.mkv +黑豹乐队+单行道乐-姥姥,http://em.21dtv.com/songs/60026461.mkv +庞龙-老了,http://em.21dtv.com/songs/60026355.mkv +郑秀文-懒理,http://em.21dtv.com/songs/60026161.mkv +古巨基-啦啦(演唱会),http://em.21dtv.com/songs/60025921.mkv +温拿乐队-l-o-v-e love,http://em.21dtv.com/songs/60003559.mkv +郭采洁-love love,http://em.21dtv.com/songs/60003558.mkv +温拿乐队-l-o-v-e love(演唱会),http://em.21dtv.com/songs/60003557.mkv +谭咏麟-l-o-v-e love(演唱会),http://em.21dtv.com/songs/60003556.mkv +废五金-love lotus,http://em.21dtv.com/songs/60003547.mkv +ELTON JOHN+BONNIE RA-love letters,http://em.21dtv.com/songs/60003544.mkv +郭采洁-love & love,http://em.21dtv.com/songs/60003505.mkv +R.BERRY-louie louie(无原唱),http://em.21dtv.com/songs/60003504.mkv +TWINS-looby loo,http://em.21dtv.com/songs/60003484.mkv +谭咏麟-lonely lonely(演唱会),http://em.21dtv.com/songs/60003464.mkv +FLEETWOOD MAC-little lies,http://em.21dtv.com/songs/60003439.mkv +ASHLEE SIMPSON-la la,http://em.21dtv.com/songs/60003244.mkv +金慧-泪苦,http://em.21dtv.com/songs/60133006.mkv +印子月-落空,http://em.21dtv.com/songs/60126671.mkv +张津涤-轮廓,http://em.21dtv.com/songs/60123933.mkv +朴宝英-离开,http://em.21dtv.com/songs/60122828.mkv +尹家乐-离开,http://em.21dtv.com/songs/60108461.mkv +袁彬-离开,http://em.21dtv.com/songs/60096780.mkv +权振东-路口,http://em.21dtv.com/songs/60086684.mkv +苏醒-轮廓,http://em.21dtv.com/songs/60076523.mkv +哈狗帮-离开,http://em.21dtv.com/songs/60076388.mkv +GAVY NJ-lady killer,http://em.21dtv.com/songs/60073474.mkv +牛奶咖啡-旅客,http://em.21dtv.com/songs/60072171.mkv +陈奕迅-碌卡,http://em.21dtv.com/songs/60069580.mkv +MC HOTDOG+张震岳-离开,http://em.21dtv.com/songs/60068434.mkv +青稞荞麦-路口,http://em.21dtv.com/songs/60062833.mkv +青稞荞麦-离开,http://em.21dtv.com/songs/60062832.mkv +郭静-离开,http://em.21dtv.com/songs/60062407.mkv +苏慧伦-轮廓,http://em.21dtv.com/songs/60028015.mkv +张震岳-路口,http://em.21dtv.com/songs/60027949.mkv +陈升-路口,http://em.21dtv.com/songs/60027948.mkv +蔡健雅-路口,http://em.21dtv.com/songs/60027947.mkv +张宇-离开,http://em.21dtv.com/songs/60026718.mkv +佚名-离开,http://em.21dtv.com/songs/60026717.mkv +萧蔷-离开,http://em.21dtv.com/songs/60026716.mkv +彭佳慧-离开,http://em.21dtv.com/songs/60026715.mkv +年少-离开,http://em.21dtv.com/songs/60026714.mkv +刘雅丽-离开,http://em.21dtv.com/songs/60026713.mkv +彭佳慧-离开(演唱会),http://em.21dtv.com/songs/60026712.mkv +年少-离开(演唱会),http://em.21dtv.com/songs/60026711.mkv +辛欣-冷酷,http://em.21dtv.com/songs/60026594.mkv +慕容婕柃-谅解,http://em.21dtv.com/songs/60131445.mkv +曾路得-冷静,http://em.21dtv.com/songs/60129198.mkv +阎学晶-老家,http://em.21dtv.com/songs/60104520.mkv +李健-丽江,http://em.21dtv.com/songs/60100125.mkv +印玉莲-灵觉,http://em.21dtv.com/songs/60099830.mkv +佚名-蜡炬,http://em.21dtv.com/songs/60095440.mkv +张崇基+张崇德-垃圾,http://em.21dtv.com/songs/60092597.mkv +李荣浩-老街,http://em.21dtv.com/songs/60083264.mkv +董贞-了结,http://em.21dtv.com/songs/60076442.mkv +冷漠-老家,http://em.21dtv.com/songs/60076348.mkv +GROOVE COVERAGE-little june,http://em.21dtv.com/songs/60069104.mkv +聂建华-老家,http://em.21dtv.com/songs/60068422.mkv +李利依-老家,http://em.21dtv.com/songs/60068421.mkv +陈淑萍-离家,http://em.21dtv.com/songs/60067195.mkv +张克帆-落脚,http://em.21dtv.com/songs/60028082.mkv +利绮-临界,http://em.21dtv.com/songs/60027399.mkv +胡佳琛-邻居,http://em.21dtv.com/songs/60027382.mkv +优客李林-了解,http://em.21dtv.com/songs/60027356.mkv +潘安邦-了解,http://em.21dtv.com/songs/60027355.mkv +合唱-亮剑 (演唱会),http://em.21dtv.com/songs/60027339.mkv +任贤齐-两极,http://em.21dtv.com/songs/60027275.mkv +任贤齐-两极(演唱会),http://em.21dtv.com/songs/60027274.mkv +许慧欣-连接,http://em.21dtv.com/songs/60026936.mkv +萧亚轩-离境,http://em.21dtv.com/songs/60026710.mkv +佚名-离家,http://em.21dtv.com/songs/60026693.mkv +江蕙-离家,http://em.21dtv.com/songs/60026692.mkv +张学友-冷静,http://em.21dtv.com/songs/60026588.mkv +詹雅雯-泪酒,http://em.21dtv.com/songs/60026538.mkv +佚名-泪酒,http://em.21dtv.com/songs/60026537.mkv +孙燕姿-了解,http://em.21dtv.com/songs/60026491.mkv +满文军-了解,http://em.21dtv.com/songs/60026490.mkv +高向鹏+方怡萍-了解(无原唱),http://em.21dtv.com/songs/60026489.mkv +湘海-老街,http://em.21dtv.com/songs/60026351.mkv +佚名-老家,http://em.21dtv.com/songs/60026349.mkv +侃侃-老家,http://em.21dtv.com/songs/60026348.mkv +周渝民-蓝鲸,http://em.21dtv.com/songs/60026052.mkv +卢巧音-垃圾,http://em.21dtv.com/songs/60025891.mkv +太极乐队-垃圾(演唱会),http://em.21dtv.com/songs/60025890.mkv +卢巧音-垃圾(演唱会),http://em.21dtv.com/songs/60025889.mkv +古巨基-垃圾(演唱会),http://em.21dtv.com/songs/60025888.mkv +陈奕迅-垃圾(演唱会),http://em.21dtv.com/songs/60025887.mkv +郭采洁-Little Sunshine,http://em.21dtv.com/songs/60101186.mkv +佚名-love is,http://em.21dtv.com/songs/60003541.mkv +VANESSA WILLIAMS+BRI-love is,http://em.21dtv.com/songs/60003540.mkv +郑建鹏-love is,http://em.21dtv.com/songs/60003539.mkv +袁娅维-流花,http://em.21dtv.com/songs/60135719.mkv +奔月-芦花,http://em.21dtv.com/songs/60131312.mkv +李志-离婚,http://em.21dtv.com/songs/60127021.mkv +姜雷-轮回,http://em.21dtv.com/songs/60126773.mkv +侯丽娟-芦花,http://em.21dtv.com/songs/60120332.mkv +王妮娜-芦花,http://em.21dtv.com/songs/60119800.mkv +李小璐-落花,http://em.21dtv.com/songs/60118668.mkv +MC梦+Suran-厉害,http://em.21dtv.com/songs/60115615.mkv +黄智毅-离花,http://em.21dtv.com/songs/60114915.mkv +谭维维-轮回,http://em.21dtv.com/songs/60114072.mkv +张信哲-浪花,http://em.21dtv.com/songs/60112660.mkv +信-冷火,http://em.21dtv.com/songs/60110847.mkv +信-冷火,http://em.21dtv.com/songs/60109983.mkv +顾凯-浪花,http://em.21dtv.com/songs/60109023.mkv +马常宝+刘云-芦花,http://em.21dtv.com/songs/60106461.mkv +HAYA乐团-轮回,http://em.21dtv.com/songs/60103781.mkv +马天宇-落花[消伴],http://em.21dtv.com/songs/60101201.mkv +左崴崴-轮回,http://em.21dtv.com/songs/60101075.mkv +王鸣飞-旅行,http://em.21dtv.com/songs/60100329.mkv +姜苹-落花,http://em.21dtv.com/songs/60094046.mkv +费玉清-恋痕,http://em.21dtv.com/songs/60088684.mkv +吴泓君-浪花,http://em.21dtv.com/songs/60087563.mkv +严当当-莲花,http://em.21dtv.com/songs/60085376.mkv +裴一飞-泪海,http://em.21dtv.com/songs/60085362.mkv +方炯镔-泪海,http://em.21dtv.com/songs/60085361.mkv +雨宗林-落花,http://em.21dtv.com/songs/60083328.mkv +迪克牛仔-落花,http://em.21dtv.com/songs/60083327.mkv +唐荭菲-旅行,http://em.21dtv.com/songs/60081492.mkv +泳儿-领会,http://em.21dtv.com/songs/60076457.mkv +NO DOUBT-looking hot,http://em.21dtv.com/songs/60073532.mkv +星弟-烈火,http://em.21dtv.com/songs/60072153.mkv +李潮-芦花,http://em.21dtv.com/songs/60070890.mkv +张惠妹-裂痕,http://em.21dtv.com/songs/60069573.mkv +李猛-裸婚,http://em.21dtv.com/songs/60067213.mkv +D☆DATE-love heaven,http://em.21dtv.com/songs/60065638.mkv +ED SHEERAN-lego house,http://em.21dtv.com/songs/60063652.mkv +LOTTE GIRLS-泪痕,http://em.21dtv.com/songs/60061358.mkv +叶倩文-落花,http://em.21dtv.com/songs/60028067.mkv +杨钰莹-落花,http://em.21dtv.com/songs/60028066.mkv +林心如-落花,http://em.21dtv.com/songs/60028065.mkv +黄勇-落花,http://em.21dtv.com/songs/60028064.mkv +应子栋-轮回,http://em.21dtv.com/songs/60028012.mkv +盛噶仁波切-轮回,http://em.21dtv.com/songs/60028011.mkv +雷佳-芦花,http://em.21dtv.com/songs/60027895.mkv +容祖儿-流汗(演唱会),http://em.21dtv.com/songs/60027606.mkv +梁汉文-留痕,http://em.21dtv.com/songs/60027540.mkv +林峰-领会,http://em.21dtv.com/songs/60027475.mkv +刘虹桦-灵魂,http://em.21dtv.com/songs/60027413.mkv +欧阳菲菲-烈火,http://em.21dtv.com/songs/60027362.mkv +许志安-烈火(演唱会),http://em.21dtv.com/songs/60027361.mkv +李蕙敏-恋火(演唱会),http://em.21dtv.com/songs/60027089.mkv +黎明-恋火(演唱会),http://em.21dtv.com/songs/60027088.mkv +陈瑞-恋花,http://em.21dtv.com/songs/60027087.mkv +佚名-恋痕,http://em.21dtv.com/songs/60027086.mkv +蔡琴-恋痕,http://em.21dtv.com/songs/60027085.mkv +龙宽九段-莲花,http://em.21dtv.com/songs/60026949.mkv +张清芳-帘后,http://em.21dtv.com/songs/60026946.mkv +伍佰-厉害,http://em.21dtv.com/songs/60026908.mkv +关淑怡-冷火,http://em.21dtv.com/songs/60026583.mkv +曾庆瑜-冷火,http://em.21dtv.com/songs/60026582.mkv +佚名-泪痕,http://em.21dtv.com/songs/60026535.mkv +李碧华-泪痕,http://em.21dtv.com/songs/60026534.mkv +易帆-泪海,http://em.21dtv.com/songs/60026533.mkv +佚名-泪海,http://em.21dtv.com/songs/60026532.mkv +许茹芸-泪海,http://em.21dtv.com/songs/60026531.mkv +孟庭苇-泪海,http://em.21dtv.com/songs/60026530.mkv +苏慧伦-浪花,http://em.21dtv.com/songs/60026214.mkv +李翊君-浪花,http://em.21dtv.com/songs/60026213.mkv +白虹-浪花,http://em.21dtv.com/songs/60026212.mkv +姜育恒-浪花(无原唱),http://em.21dtv.com/songs/60026211.mkv +NAZARETH-love hurts,http://em.21dtv.com/songs/60003525.mkv +INCUBUS-love hurts,http://em.21dtv.com/songs/60003524.mkv +河莉秀-love hurt,http://em.21dtv.com/songs/60003523.mkv +BON JOVI-lost highway,http://em.21dtv.com/songs/60003501.mkv +徐誉滕-lilei hehanmeimei,http://em.21dtv.com/songs/60003415.mkv +KATIE ARMIGER-leaving home,http://em.21dtv.com/songs/60003315.mkv +郭一橙-老公,http://em.21dtv.com/songs/60132996.mkv +郭一橙-老公,http://em.21dtv.com/songs/60131884.mkv +陈卿-老哥,http://em.21dtv.com/songs/60130831.mkv +羽泉-离歌,http://em.21dtv.com/songs/60130663.mkv +左成-流光,http://em.21dtv.com/songs/60130281.mkv +SNH48-绿光,http://em.21dtv.com/songs/60125001.mkv +香香-恋歌,http://em.21dtv.com/songs/60124706.mkv +何晟铭-恋歌,http://em.21dtv.com/songs/60123627.mkv +小虎队-骊歌,http://em.21dtv.com/songs/60115123.mkv +马吟吟-离歌,http://em.21dtv.com/songs/60114890.mkv +莫海婧-来过,http://em.21dtv.com/songs/60112181.mkv +张靓颖-离歌,http://em.21dtv.com/songs/60108513.mkv +周慧敏-肋骨,http://em.21dtv.com/songs/60106698.mkv +刘啸-恋歌,http://em.21dtv.com/songs/60106633.mkv +黄绮珊-离歌,http://em.21dtv.com/songs/60106502.mkv +赵露-绿光,http://em.21dtv.com/songs/60106309.mkv +褚乔-楼阁,http://em.21dtv.com/songs/60086683.mkv +大嘴巴-流感,http://em.21dtv.com/songs/60085390.mkv +RIZZLE KICKS-lost generation,http://em.21dtv.com/songs/60084738.mkv +CALVIN HARRIS-lets go,http://em.21dtv.com/songs/60084735.mkv +林军-离歌,http://em.21dtv.com/songs/60083285.mkv +黄绮珊-离歌(演唱会),http://em.21dtv.com/songs/60083284.mkv +张韶涵-泪光,http://em.21dtv.com/songs/60083276.mkv +周笔畅-肋骨,http://em.21dtv.com/songs/60080378.mkv +许哆先森-龙歌,http://em.21dtv.com/songs/60076494.mkv +大辉-流感,http://em.21dtv.com/songs/60076466.mkv +梦成-离歌,http://em.21dtv.com/songs/60076387.mkv +CNBLUE-love girl,http://em.21dtv.com/songs/60073549.mkv +金范秀-路过,http://em.21dtv.com/songs/60067211.mkv +说果九古-恋歌,http://em.21dtv.com/songs/60067201.mkv +宋熙铭-恋歌,http://em.21dtv.com/songs/60064473.mkv +蔡健雅-letting go,http://em.21dtv.com/songs/60063656.mkv +金贤重-lucky guy,http://em.21dtv.com/songs/60062529.mkv +堂娜-绿光,http://em.21dtv.com/songs/60028170.mkv +孙燕姿-绿光(演唱会),http://em.21dtv.com/songs/60028169.mkv +林依轮-锣鼓,http://em.21dtv.com/songs/60028039.mkv +王菲-掠过(无原唱),http://em.21dtv.com/songs/60028004.mkv +谢霆锋-灵感,http://em.21dtv.com/songs/60027411.mkv +南台湾小姑娘-灵感(无原唱),http://em.21dtv.com/songs/60027410.mkv +P.G.S.T-灵感(无原唱),http://em.21dtv.com/songs/60027409.mkv +陈明真-两个,http://em.21dtv.com/songs/60027218.mkv +余天-恋歌,http://em.21dtv.com/songs/60027082.mkv +佚名-恋歌,http://em.21dtv.com/songs/60027081.mkv +叶启田-恋歌,http://em.21dtv.com/songs/60027080.mkv +文夏-恋歌,http://em.21dtv.com/songs/60027079.mkv +罗时丰-恋歌,http://em.21dtv.com/songs/60027078.mkv +林姗-恋歌,http://em.21dtv.com/songs/60027077.mkv +詹雅雯-恋港,http://em.21dtv.com/songs/60027076.mkv +小虎队-骊歌,http://em.21dtv.com/songs/60026805.mkv +童唱-骊歌,http://em.21dtv.com/songs/60026804.mkv +信乐团-离歌,http://em.21dtv.com/songs/60026690.mkv +TENSION-离歌,http://em.21dtv.com/songs/60026689.mkv +戴爱玲-累格,http://em.21dtv.com/songs/60026568.mkv +梁咏琪-泪光,http://em.21dtv.com/songs/60026527.mkv +胡歌-蓝光,http://em.21dtv.com/songs/60026049.mkv +张克帆-来过,http://em.21dtv.com/songs/60025973.mkv +EDISON LIGHTHOUSE-love grows,http://em.21dtv.com/songs/60003522.mkv +佚名-little girl,http://em.21dtv.com/songs/60003438.mkv +胡培蔚-letting go,http://em.21dtv.com/songs/60003385.mkv +阎韦伶-lets go(演唱会),http://em.21dtv.com/songs/60003367.mkv +TOKYO D.WHY NOT-lets go(无原唱),http://em.21dtv.com/songs/60003366.mkv +林忆莲-let go,http://em.21dtv.com/songs/60003322.mkv +幸田来未-lady go(演唱会),http://em.21dtv.com/songs/60003255.mkv +谢雷-冷风,http://em.21dtv.com/songs/60135749.mkv +解伟苓-浪费,http://em.21dtv.com/songs/60124465.mkv +徐佳莹-浪费,http://em.21dtv.com/songs/60120562.mkv +权施文-冷风,http://em.21dtv.com/songs/60096338.mkv +黄士佑-来返,http://em.21dtv.com/songs/60083245.mkv +泳儿+AT17-love fool,http://em.21dtv.com/songs/60082241.mkv +TREY SONGZ-love faces,http://em.21dtv.com/songs/60073548.mkv +萧亚轩-浪费,http://em.21dtv.com/songs/60072127.mkv +POPU LADY-lady first,http://em.21dtv.com/songs/60071622.mkv +林宥嘉-浪费,http://em.21dtv.com/songs/60070866.mkv +黎沸挥-乱飞,http://em.21dtv.com/songs/60027985.mkv +关璃菱-冷风(无原唱),http://em.21dtv.com/songs/60026578.mkv +詹雅雯-老父,http://em.21dtv.com/songs/60026337.mkv +1983-lets fly,http://em.21dtv.com/songs/60003358.mkv +郑秀文-ladies first,http://em.21dtv.com/songs/60003251.mkv +挂在盒子上-Leave Me,http://em.21dtv.com/songs/60100066.mkv +于台烟-泪滴LADY,http://em.21dtv.com/songs/60089588.mkv +杨培安-了断,http://em.21dtv.com/songs/60118711.mkv +大合唱-亮点,http://em.21dtv.com/songs/60115772.mkv +徐浩峻-零度,http://em.21dtv.com/songs/60109374.mkv +茅小勇-冷冻,http://em.21dtv.com/songs/60102667.mkv +曲丹-柳笛(演唱会),http://em.21dtv.com/songs/60099273.mkv +林一峰-离岛,http://em.21dtv.com/songs/60096781.mkv +七字辈-老爹,http://em.21dtv.com/songs/60096684.mkv +小柯-老大,http://em.21dtv.com/songs/60090992.mkv +陈楚生-绿动,http://em.21dtv.com/songs/60088895.mkv +汪苏泷-零度,http://em.21dtv.com/songs/60086680.mkv +C ALLSTAR-last day(演唱会),http://em.21dtv.com/songs/60082225.mkv +张津涤+方鹂鹂-恋蝶,http://em.21dtv.com/songs/60081439.mkv +刘美麟-楼道,http://em.21dtv.com/songs/60080650.mkv +MOUMOON-绿の道,http://em.21dtv.com/songs/60076515.mkv +徐健淇-零度,http://em.21dtv.com/songs/60076454.mkv +孙耀威-疗dry,http://em.21dtv.com/songs/60076440.mkv +田馥甄-离岛(演唱会),http://em.21dtv.com/songs/60076386.mkv +家家-泪滴,http://em.21dtv.com/songs/60076363.mkv +梁耀变+郑恩地-love day,http://em.21dtv.com/songs/60073547.mkv +洪卓立-last dance,http://em.21dtv.com/songs/60073479.mkv +苏姗-last dance(演唱会),http://em.21dtv.com/songs/60073478.mkv +孙更俊-狼,http://em.21dtv.com/songs/60070864.mkv +C ALLSTAR-last day,http://em.21dtv.com/songs/60070361.mkv +孙淑媚-了断,http://em.21dtv.com/songs/60069570.mkv +红河小鱼-律动,http://em.21dtv.com/songs/60067212.mkv +冈林-两地,http://em.21dtv.com/songs/60067203.mkv +江宏恩-冷淡,http://em.21dtv.com/songs/60066111.mkv +T ARA-lovey dovey,http://em.21dtv.com/songs/60065642.mkv +王开城+吴宗宪-路灯,http://em.21dtv.com/songs/60027934.mkv +程琳-柳笛,http://em.21dtv.com/songs/60027761.mkv +尚志豪-流动(无原唱),http://em.21dtv.com/songs/60027600.mkv +刘雅芳-领带(无原唱),http://em.21dtv.com/songs/60027473.mkv +陈慧琳-伶仃,http://em.21dtv.com/songs/60027407.mkv +陈慧琳-伶仃(演唱会),http://em.21dtv.com/songs/60027406.mkv +林景滢-撩动,http://em.21dtv.com/songs/60027354.mkv +刘沁-亮点(无原唱),http://em.21dtv.com/songs/60027338.mkv +戴爱玲-恋单,http://em.21dtv.com/songs/60027071.mkv +龚柯允-离岛,http://em.21dtv.com/songs/60026688.mkv +石康军-冷冻,http://em.21dtv.com/songs/60026577.mkv +朱桦-泪滴,http://em.21dtv.com/songs/60026524.mkv +王菀之-雷电,http://em.21dtv.com/songs/60026500.mkv +万芳-了断,http://em.21dtv.com/songs/60026488.mkv +施文彬+张秀卿-了断,http://em.21dtv.com/songs/60026487.mkv +迪克牛仔+弦子-老爹,http://em.21dtv.com/songs/60026332.mkv +李晓杰-老大,http://em.21dtv.com/songs/60026326.mkv +雷乐队-老大(无原唱),http://em.21dtv.com/songs/60026325.mkv +潘玮柏-来电,http://em.21dtv.com/songs/60025972.mkv +SEAL-loves divine,http://em.21dtv.com/songs/60003639.mkv +BOYS LIKE GILS-love drunk,http://em.21dtv.com/songs/60003519.mkv +BEE GEES-lonely days(演唱会),http://em.21dtv.com/songs/60003463.mkv +佚名-little devil,http://em.21dtv.com/songs/60003436.mkv +林国荣-little darling(无原唱),http://em.21dtv.com/songs/60003434.mkv +FIVE-lets dance,http://em.21dtv.com/songs/60003353.mkv +伍佰-last dance,http://em.21dtv.com/songs/60003278.mkv +张语倢-离愁,http://em.21dtv.com/songs/60135241.mkv +魏晨-旅程,http://em.21dtv.com/songs/60133118.mkv +德吉卓玛-旅程,http://em.21dtv.com/songs/60132479.mkv +六哲-恋城,http://em.21dtv.com/songs/60132222.mkv +成铭-离愁,http://em.21dtv.com/songs/60128022.mkv +望海高歌-凌晨,http://em.21dtv.com/songs/60121745.mkv +吴奇隆-旅程,http://em.21dtv.com/songs/60120404.mkv +常石磊-流畅,http://em.21dtv.com/songs/60117701.mkv +Ella-赖床,http://em.21dtv.com/songs/60113151.mkv +善莹-浪潮,http://em.21dtv.com/songs/60109240.mkv +徐鑫-赖床,http://em.21dtv.com/songs/60103304.mkv +苗苗-立春,http://em.21dtv.com/songs/60096473.mkv +莫老-离城,http://em.21dtv.com/songs/60094266.mkv +李泉-落尘,http://em.21dtv.com/songs/60091326.mkv +尹子茹-拉扯,http://em.21dtv.com/songs/60087726.mkv +丁维伟-乱猜,http://em.21dtv.com/songs/60086688.mkv +常石磊-流畅,http://em.21dtv.com/songs/60083310.mkv +CHANGIN MY LIFE-love chronicle,http://em.21dtv.com/songs/60082240.mkv +蔡依林-旅程,http://em.21dtv.com/songs/60081768.mkv +乔任梁-乐潮,http://em.21dtv.com/songs/60079969.mkv +钟嘉欣-落差,http://em.21dtv.com/songs/60076529.mkv +TRASH-lose control,http://em.21dtv.com/songs/60073534.mkv +KERI HILSON+NELLY-lose control,http://em.21dtv.com/songs/60073533.mkv +钟懿-last christmas,http://em.21dtv.com/songs/60071624.mkv +山下智久-love chase,http://em.21dtv.com/songs/60070368.mkv +石淼-lonely christmas,http://em.21dtv.com/songs/60070366.mkv +陈奕迅-lenely christmas,http://em.21dtv.com/songs/60070363.mkv +ALIZEE-les collines(never leave you),http://em.21dtv.com/songs/60066671.mkv +徐健淇-旅程,http://em.21dtv.com/songs/60064497.mkv +李佳薇-离场,http://em.21dtv.com/songs/60064468.mkv +邓丽君-旅愁,http://em.21dtv.com/songs/60028138.mkv +张惠妹-旅程,http://em.21dtv.com/songs/60028137.mkv +羽泉-旅程,http://em.21dtv.com/songs/60028136.mkv +叫吠音乐联盟-旅程,http://em.21dtv.com/songs/60028135.mkv +费翔-旅程,http://em.21dtv.com/songs/60028134.mkv +羽泉-旅程(演唱会),http://em.21dtv.com/songs/60028133.mkv +童唱-鹿柴,http://em.21dtv.com/songs/60027913.mkv +小辣椒-楼窗(无原唱),http://em.21dtv.com/songs/60027875.mkv +佚名-龙船,http://em.21dtv.com/songs/60027809.mkv +林慧萍-列车,http://em.21dtv.com/songs/60027357.mkv +这位太太-立场,http://em.21dtv.com/songs/60026909.mkv +蓝奕邦-赖床,http://em.21dtv.com/songs/60026024.mkv +R+B-lucky charm,http://em.21dtv.com/songs/60003667.mkv +陈慧琳-lovers concerto(演唱会),http://em.21dtv.com/songs/60003638.mkv +张学友-lost christmas,http://em.21dtv.com/songs/60003499.mkv +陈奕迅-lonely christmas,http://em.21dtv.com/songs/60003462.mkv +陈奕迅-lonely christmas(演唱会),http://em.21dtv.com/songs/60003461.mkv +WHAM-last chritmas,http://em.21dtv.com/songs/60003277.mkv +佚名-last christmas,http://em.21dtv.com/songs/60003276.mkv +CASCADA-last christmas,http://em.21dtv.com/songs/60003275.mkv +佚名-la cumparsita,http://em.21dtv.com/songs/60003230.mkv +莫小娘-les不哭,http://em.21dtv.com/songs/60082226.mkv +彭博-狼狈,http://em.21dtv.com/songs/60131424.mkv +洪荣宏-离别,http://em.21dtv.com/songs/60130545.mkv +张敬轩+MC Jin-罗宾,http://em.21dtv.com/songs/60126882.mkv +张敬轩-罗宾,http://em.21dtv.com/songs/60122721.mkv +Zia-离别,http://em.21dtv.com/songs/60122450.mkv +王伟-老爸,http://em.21dtv.com/songs/60120745.mkv +张艳君-老兵,http://em.21dtv.com/songs/60120521.mkv +宋孟君+格子兮-离别,http://em.21dtv.com/songs/60118519.mkv +常石磊-老爸,http://em.21dtv.com/songs/60116762.mkv +沙宝亮-老爸,http://em.21dtv.com/songs/60113796.mkv +梅了了-来吧,http://em.21dtv.com/songs/60113745.mkv +李荣浩-李白,http://em.21dtv.com/songs/60111997.mkv +李荣浩-老伴,http://em.21dtv.com/songs/60110287.mkv +王菀之-留白,http://em.21dtv.com/songs/60106139.mkv +陈淼-老伴,http://em.21dtv.com/songs/60108981.mkv +李荣浩-李白,http://em.21dtv.com/songs/60108582.mkv +纪绮昭-泪别,http://em.21dtv.com/songs/60107944.mkv +郭少杰-吕布,http://em.21dtv.com/songs/60105432.mkv +十三狼-老爸,http://em.21dtv.com/songs/60104852.mkv +邓养天-狼狈,http://em.21dtv.com/songs/60103609.mkv +李荣浩-李白,http://em.21dtv.com/songs/60102355.mkv +廖昌永-老伴,http://em.21dtv.com/songs/60102194.mkv +陈乃荣-狼狈,http://em.21dtv.com/songs/60083256.mkv +K.WILL-love blossom,http://em.21dtv.com/songs/60082239.mkv +乔任梁-两边,http://em.21dtv.com/songs/60076424.mkv +格根其木格-老伴,http://em.21dtv.com/songs/60076336.mkv +猪哥亮-老伴(演唱会),http://em.21dtv.com/songs/60076335.mkv +常石磊-老爸,http://em.21dtv.com/songs/60076330.mkv +香巴拉组合-来吧,http://em.21dtv.com/songs/60076303.mkv +FAR EAST MOVEMENT-little bird,http://em.21dtv.com/songs/60073519.mkv +JAKE BUGG-lightning bolt,http://em.21dtv.com/songs/60073512.mkv +叶倩文-laisla bonita(演唱会),http://em.21dtv.com/songs/60073476.mkv +曹雷-老板,http://em.21dtv.com/songs/60072130.mkv +王菀之-留白,http://em.21dtv.com/songs/60070886.mkv +THE BLACK KEYS-lonely boy,http://em.21dtv.com/songs/60066677.mkv +邰正宵+孟庭苇-两边,http://em.21dtv.com/songs/60027212.mkv +许美静-离别,http://em.21dtv.com/songs/60026637.mkv +方怡萍-离别,http://em.21dtv.com/songs/60026636.mkv +阿杜-离别,http://em.21dtv.com/songs/60026635.mkv +SIGMA-泪奔,http://em.21dtv.com/songs/60026508.mkv +陈思安-老伴,http://em.21dtv.com/songs/60026320.mkv +洋旭-狼狈,http://em.21dtv.com/songs/60026198.mkv +保剑锋-狼狈,http://em.21dtv.com/songs/60026197.mkv +莫文蔚-来吧,http://em.21dtv.com/songs/60025941.mkv +韩红-来吧,http://em.21dtv.com/songs/60025940.mkv +至上励合-lucky boys,http://em.21dtv.com/songs/60003666.mkv +BABES-lover boy(无原唱),http://em.21dtv.com/songs/60003635.mkv +童唱-london birdge,http://em.21dtv.com/songs/60003458.mkv +房祖名-little boy(演唱会),http://em.21dtv.com/songs/60003432.mkv +童唱-little bird,http://em.21dtv.com/songs/60003431.mkv +TWINS-little bird,http://em.21dtv.com/songs/60003430.mkv +TERRO SQUAD-lean back,http://em.21dtv.com/songs/60003300.mkv +佚名-la bamba,http://em.21dtv.com/songs/60003228.mkv +魏晨-lady lady,http://em.21dtv.com/songs/60100666.mkv +斯琴高丽-恋爱abc,http://em.21dtv.com/songs/60083293.mkv +李佳薇-炼爱,http://em.21dtv.com/songs/60122835.mkv +李佳薇-炼爱,http://em.21dtv.com/songs/60121763.mkv +光良-恋爱,http://em.21dtv.com/songs/60083294.mkv +龙千玉+罗时丰-郎啊,http://em.21dtv.com/songs/60079968.mkv +张可儿-裸爱,http://em.21dtv.com/songs/60076525.mkv +花泽香菜-恋爱サーキュレーション,http://em.21dtv.com/songs/60076408.mkv +2BIC+AILEE-love again,http://em.21dtv.com/songs/60067937.mkv +FRICTION-led astray,http://em.21dtv.com/songs/60066670.mkv +EXILE-lovers again,http://em.21dtv.com/songs/60062022.mkv +戎梵-泪爱,http://em.21dtv.com/songs/60061357.mkv +孙嫣然-烈爱,http://em.21dtv.com/songs/60027360.mkv +黄舒骏-两岸,http://em.21dtv.com/songs/60027208.mkv +詹曼铃-恋爱,http://em.21dtv.com/songs/60026989.mkv +胡杰夕-恋爱,http://em.21dtv.com/songs/60026988.mkv +胡杰夕-恋爱(舞曲版),http://em.21dtv.com/songs/60026987.mkv +宋念宇-练爱(演唱会),http://em.21dtv.com/songs/60026971.mkv +罗时丰+龙千玉-郎阿,http://em.21dtv.com/songs/60026178.mkv +ERIC CLAPTON-layla acoustic,http://em.21dtv.com/songs/60003296.mkv +幸田来未+东方神起-last angel,http://em.21dtv.com/songs/60003274.mkv +浜崎あゆみ-last angel,http://em.21dtv.com/songs/60003273.mkv +F.I.R-love 3,http://em.21dtv.com/songs/60003506.mkv +王中平-筷子,http://em.21dtv.com/songs/60109509.mkv +耿宁+弘雨+宇桐非-扛着,http://em.21dtv.com/songs/60099451.mkv +曹震豪-扣针,http://em.21dtv.com/songs/60076279.mkv +伊雪-空转,http://em.21dtv.com/songs/60066098.mkv +杨丞琳-快转,http://em.21dtv.com/songs/60061341.mkv +魏如萱-困在,http://em.21dtv.com/songs/60025881.mkv +张秀卿+翁立友-刻字,http://em.21dtv.com/songs/60025389.mkv +小凤凤-靠站,http://em.21dtv.com/songs/60025213.mkv +陈雷-靠站,http://em.21dtv.com/songs/60025212.mkv +罗时丰-砍站,http://em.21dtv.com/songs/60025053.mkv +朱海君-坎站,http://em.21dtv.com/songs/60025052.mkv +陈雷-坎站,http://em.21dtv.com/songs/60025051.mkv +厉娜-可疑,http://em.21dtv.com/songs/60133446.mkv +阿悄-看雨,http://em.21dtv.com/songs/60107300.mkv +郭力维-困夜,http://em.21dtv.com/songs/60104493.mkv +王唯侨-空语,http://em.21dtv.com/songs/60103437.mkv +MIWA-kiss you,http://em.21dtv.com/songs/60084733.mkv +杨钰莹-可遇(演唱会),http://em.21dtv.com/songs/60076264.mkv +ONE DIRECTION-kiss you,http://em.21dtv.com/songs/60073466.mkv +陈淑萍-看云,http://em.21dtv.com/songs/60067158.mkv +腾格尔-跨越(演唱会),http://em.21dtv.com/songs/60025665.mkv +金门王+李炳辉-苦雨,http://em.21dtv.com/songs/60025648.mkv +关心妍-考验,http://em.21dtv.com/songs/60025179.mkv +关心妍-考验(演唱会),http://em.21dtv.com/songs/60025178.mkv +少女时代-kissing you,http://em.21dtv.com/songs/60003191.mkv +宝儿-kissing you,http://em.21dtv.com/songs/60003190.mkv +G.Z光泽-空心,http://em.21dtv.com/songs/60129938.mkv +G.Z光泽-空心,http://em.21dtv.com/songs/60128678.mkv +光泽-空心,http://em.21dtv.com/songs/60127744.mkv +郭静-可惜,http://em.21dtv.com/songs/60111455.mkv +周传雄-空心,http://em.21dtv.com/songs/60096746.mkv +BEYOND-看星,http://em.21dtv.com/songs/60095243.mkv +黄晓娟+潘长江-开学,http://em.21dtv.com/songs/60090348.mkv +星弟-哭笑,http://em.21dtv.com/songs/60083232.mkv +周童童-空隙,http://em.21dtv.com/songs/60083228.mkv +苏醒-可惜,http://em.21dtv.com/songs/60083223.mkv +王中平-苦心,http://em.21dtv.com/songs/60064441.mkv +陆平-可惜,http://em.21dtv.com/songs/60064436.mkv +佚名-酷刑,http://em.21dtv.com/songs/60025656.mkv +汪苏泷-苦笑,http://em.21dtv.com/songs/60025647.mkv +妙子-口弦,http://em.21dtv.com/songs/60025533.mkv +刘德华-空心,http://em.21dtv.com/songs/60025478.mkv +何俐恩-可惜,http://em.21dtv.com/songs/60025337.mkv +关淑怡-可惜,http://em.21dtv.com/songs/60025336.mkv +郑玉华-叩问,http://em.21dtv.com/songs/60134306.mkv +陈笠笠-渴望,http://em.21dtv.com/songs/60114224.mkv +关诗敏-渴望,http://em.21dtv.com/songs/60103898.mkv +胡彦斌-空位(新版),http://em.21dtv.com/songs/60096748.mkv +张信哲-空位,http://em.21dtv.com/songs/60025473.mkv +纪如璟-空位,http://em.21dtv.com/songs/60025472.mkv +胡彦斌-空位,http://em.21dtv.com/songs/60025471.mkv +何维健-空位,http://em.21dtv.com/songs/60025470.mkv +卓依婷-渴望,http://em.21dtv.com/songs/60025370.mkv +辛晓琪-渴望,http://em.21dtv.com/songs/60025369.mkv +毛阿敏-渴望,http://em.21dtv.com/songs/60025368.mkv +郭富城-渴望,http://em.21dtv.com/songs/60025367.mkv +吸引力-渴望(演唱会),http://em.21dtv.com/songs/60025366.mkv +许景淳-渴望(无原唱),http://em.21dtv.com/songs/60025365.mkv +NEIL DIAMOND-kentucky woman,http://em.21dtv.com/songs/60003143.mkv +MIRANDA COSGROVE-kissin u,http://em.21dtv.com/songs/60003189.mkv +家家-看透,http://em.21dtv.com/songs/60132382.mkv +San E+Raina-烤糖,http://em.21dtv.com/songs/60123530.mkv +政先生-看透,http://em.21dtv.com/songs/60118608.mkv +蔡妍+和仁昌-看透,http://em.21dtv.com/songs/60114760.mkv +蔡妍+许仁昌-看透,http://em.21dtv.com/songs/60114034.mkv +轲然-看透,http://em.21dtv.com/songs/60098794.mkv +胡奇明-哭塔(戏曲),http://em.21dtv.com/songs/60095872.mkv +超泉RZ组合-看透,http://em.21dtv.com/songs/60085322.mkv +超泉RZ组合-看透(舞曲版),http://em.21dtv.com/songs/60085321.mkv +廖浩明-看透,http://em.21dtv.com/songs/60069539.mkv +高阳-看透,http://em.21dtv.com/songs/60068401.mkv +侧田-阔太(演唱会),http://em.21dtv.com/songs/60025886.mkv +宋新妮-客套,http://em.21dtv.com/songs/60025407.mkv +许茹芸-看透,http://em.21dtv.com/songs/60025126.mkv +莫文蔚-看透,http://em.21dtv.com/songs/60025125.mkv +邓丽欣-看透,http://em.21dtv.com/songs/60025124.mkv +PETER PAN-kita tertawa,http://em.21dtv.com/songs/60003194.mkv +张学友-控诉,http://em.21dtv.com/songs/60125504.mkv +邱永传-空守,http://em.21dtv.com/songs/60118959.mkv +田维英-哭砂,http://em.21dtv.com/songs/60118804.mkv +灵魂心声-苦涩,http://em.21dtv.com/songs/60109503.mkv +张学友-控诉,http://em.21dtv.com/songs/60106829.mkv +刘明湘-哭砂,http://em.21dtv.com/songs/60103930.mkv +汤灿-开始,http://em.21dtv.com/songs/60102438.mkv +周华健-哭砂,http://em.21dtv.com/songs/60099883.mkv +林志炫-哭砂,http://em.21dtv.com/songs/60094950.mkv +吴国敬-困兽,http://em.21dtv.com/songs/60092449.mkv +王菲-宽恕,http://em.21dtv.com/songs/60088320.mkv +吴泓君-困砂,http://em.21dtv.com/songs/60087561.mkv +黑龙-宽恕,http://em.21dtv.com/songs/60083239.mkv +BY2-快闪,http://em.21dtv.com/songs/60076293.mkv +林志炫-哭砂(演唱会),http://em.21dtv.com/songs/60076281.mkv +JOHNNY REID-kicking stones,http://em.21dtv.com/songs/60066665.mkv +林俊吉-靠山,http://em.21dtv.com/songs/60064432.mkv +韦嘉-困砂,http://em.21dtv.com/songs/60025877.mkv +方文琳-困砂,http://em.21dtv.com/songs/60025876.mkv +韦嘉-困沙,http://em.21dtv.com/songs/60025875.mkv +郭富城-狂沙(演唱会),http://em.21dtv.com/songs/60025842.mkv +神木与瞳-宽恕,http://em.21dtv.com/songs/60025825.mkv +张惠妹-哭砂,http://em.21dtv.com/songs/60025583.mkv +馨梓-哭砂,http://em.21dtv.com/songs/60025582.mkv +梁雁翎-哭砂,http://em.21dtv.com/songs/60025581.mkv +高胜美-哭砂,http://em.21dtv.com/songs/60025580.mkv +邝祖德-控诉,http://em.21dtv.com/songs/60025510.mkv +潘迪华-控诉(演唱会),http://em.21dtv.com/songs/60025509.mkv +山风点火-靠山,http://em.21dtv.com/songs/60025209.mkv +韦嘉-开始,http://em.21dtv.com/songs/60025009.mkv +丁薇-开始,http://em.21dtv.com/songs/60025008.mkv +陈慧琳-开始,http://em.21dtv.com/songs/60025007.mkv +庞龙-开始(演唱会),http://em.21dtv.com/songs/60025006.mkv +霍建华-开始(演唱会),http://em.21dtv.com/songs/60025005.mkv +陈慧琳-开始(演唱会),http://em.21dtv.com/songs/60025004.mkv +佚名-开始(无原唱),http://em.21dtv.com/songs/60025003.mkv +群星-开始(无原唱),http://em.21dtv.com/songs/60025002.mkv +佚名-kathys song,http://em.21dtv.com/songs/60003132.mkv +崔健-宽容,http://em.21dtv.com/songs/60133617.mkv +许佳慧-宽容,http://em.21dtv.com/songs/60099496.mkv +林忆莲-枯荣,http://em.21dtv.com/songs/60061336.mkv +苏打绿-狂热,http://em.21dtv.com/songs/60025838.mkv +张信哲-宽容,http://em.21dtv.com/songs/60025824.mkv +祖峰-空气,http://em.21dtv.com/songs/60121975.mkv +许祺曼-孔雀,http://em.21dtv.com/songs/60107213.mkv +刘萱萱-空气,http://em.21dtv.com/songs/60099813.mkv +伍佰-亏欠,http://em.21dtv.com/songs/60096040.mkv +周传雄-空缺,http://em.21dtv.com/songs/60090829.mkv +权振东-空缺,http://em.21dtv.com/songs/60086653.mkv +钟洁-看清,http://em.21dtv.com/songs/60083214.mkv +陈洁仪-亏欠,http://em.21dtv.com/songs/60025858.mkv +佑璇+李明育-亏欠(无原唱),http://em.21dtv.com/songs/60025857.mkv +许茹芸-哭墙,http://em.21dtv.com/songs/60025579.mkv +谢霆锋-孔雀,http://em.21dtv.com/songs/60025492.mkv +瞿颖-孔雀,http://em.21dtv.com/songs/60025491.mkv +蔡诗芸-孔雀,http://em.21dtv.com/songs/60025490.mkv +金莎-空气,http://em.21dtv.com/songs/60025464.mkv +马兆骏-渴求,http://em.21dtv.com/songs/60025363.mkv +黄伊汶-渴求,http://em.21dtv.com/songs/60025362.mkv +樱桃帮-看清,http://em.21dtv.com/songs/60025116.mkv +容祖儿-看清,http://em.21dtv.com/songs/60025115.mkv +轻松玩乐团-看清,http://em.21dtv.com/songs/60025114.mkv +A-LIN-开窍,http://em.21dtv.com/songs/60025001.mkv +佚名-killer queen,http://em.21dtv.com/songs/60003150.mkv +杜赫旋+洛奇+十一-狂蒲,http://em.21dtv.com/songs/60135389.mkv +程欣-看破,http://em.21dtv.com/songs/60129462.mkv +郭婷筠-看破,http://em.21dtv.com/songs/60126286.mkv +郭婷筠-看破,http://em.21dtv.com/songs/60124574.mkv +王歌伦-靠谱,http://em.21dtv.com/songs/60110404.mkv +王梓旭-靠谱,http://em.21dtv.com/songs/60096404.mkv +音乐走廊-看破,http://em.21dtv.com/songs/60093707.mkv +王中平-看破,http://em.21dtv.com/songs/60025105.mkv +刘俐婷-看破,http://em.21dtv.com/songs/60025104.mkv +方瑞娥+高向鹏-看破,http://em.21dtv.com/songs/60025103.mkv +詹雅雯-看破(无原唱),http://em.21dtv.com/songs/60025102.mkv +王建杰-看破(无原唱),http://em.21dtv.com/songs/60025101.mkv +红金升-看破(无原唱),http://em.21dtv.com/songs/60025100.mkv +幂雅-可能,http://em.21dtv.com/songs/60132418.mkv +李萌-可能,http://em.21dtv.com/songs/60085327.mkv +康正昊-可能,http://em.21dtv.com/songs/60076259.mkv +李霄云-可能,http://em.21dtv.com/songs/60070844.mkv +王杰-可能(演唱会),http://em.21dtv.com/songs/60025329.mkv +潘玮柏-kiss night,http://em.21dtv.com/songs/60003179.mkv +杜丽莎-卡门,http://em.21dtv.com/songs/60132572.mkv +叶蓓-卡门,http://em.21dtv.com/songs/60102017.mkv +古巨基+李泉-卡门,http://em.21dtv.com/songs/60098174.mkv +周华健-客梦,http://em.21dtv.com/songs/60096217.mkv +伦永亮+詹瑞文-卡门,http://em.21dtv.com/songs/60092249.mkv +容祖儿-卡门,http://em.21dtv.com/songs/60087699.mkv +朱俐静-kiss me,http://em.21dtv.com/songs/60073463.mkv +POPU LADY-kiss me,http://em.21dtv.com/songs/60071619.mkv +莫旭秋-卡门(演唱会),http://em.21dtv.com/songs/60064425.mkv +区文诗-kiss me,http://em.21dtv.com/songs/60063649.mkv +陈晓东-快门,http://em.21dtv.com/songs/60025815.mkv +袁小迪+萧蔓萱-空梦,http://em.21dtv.com/songs/60025463.mkv +佚名-卡门,http://em.21dtv.com/songs/60024968.mkv +黄宝欣-卡门,http://em.21dtv.com/songs/60024967.mkv +杨燕-卡门(演唱会),http://em.21dtv.com/songs/60024966.mkv +徐小凤-卡门(演唱会),http://em.21dtv.com/songs/60024965.mkv +罗文-卡门(演唱会),http://em.21dtv.com/songs/60024964.mkv +杜丽莎-卡门(演唱会),http://em.21dtv.com/songs/60024963.mkv +梁咏琪-kiss me,http://em.21dtv.com/songs/60003178.mkv +LOTTE GIRLS-kiss me,http://em.21dtv.com/songs/60003177.mkv +梁咏琪-kiss me(演唱会),http://em.21dtv.com/songs/60003176.mkv +易天晴-kiss me(无原唱),http://em.21dtv.com/songs/60003175.mkv +庾澄庆-快乐SONG,http://em.21dtv.com/songs/60087783.mkv +顶尖拍挡-快乐Song,http://em.21dtv.com/songs/60018123.mkv +黄连煜-卡拉OK,http://em.21dtv.com/songs/60079855.mkv +黄明志-kick来料,http://em.21dtv.com/songs/60082218.mkv +黄宥杰-恐龙,http://em.21dtv.com/songs/60128629.mkv +小久-空楼,http://em.21dtv.com/songs/60127917.mkv +海生-溃烂,http://em.21dtv.com/songs/60124210.mkv +辛龙-快乐,http://em.21dtv.com/songs/60112285.mkv +谢安琪-可乐,http://em.21dtv.com/songs/60106288.mkv +孙楠-可乐,http://em.21dtv.com/songs/60105750.mkv +孙伯纶-哭了,http://em.21dtv.com/songs/60096777.mkv +周笔畅-哭了,http://em.21dtv.com/songs/60096221.mkv +柯以敏-哭了,http://em.21dtv.com/songs/60094959.mkv +许冠杰-傀儡,http://em.21dtv.com/songs/60093135.mkv +越剧-哭灵,http://em.21dtv.com/songs/60089493.mkv +陈茂丰-苦恋,http://em.21dtv.com/songs/60086655.mkv +金莎-空灵,http://em.21dtv.com/songs/60083227.mkv +庄美-空泪,http://em.21dtv.com/songs/60083226.mkv +黄龄-哭了,http://em.21dtv.com/songs/60080173.mkv +张学友-苦恋,http://em.21dtv.com/songs/60076282.mkv +李代沫-哭了,http://em.21dtv.com/songs/60076280.mkv +李唯枫-渴了,http://em.21dtv.com/songs/60069543.mkv +陈勇-傀儡,http://em.21dtv.com/songs/60066103.mkv +程志-昆仑,http://em.21dtv.com/songs/60025865.mkv +黄浩伦+辜靖洁-傀儡,http://em.21dtv.com/songs/60025862.mkv +齐秦-狂流(无原唱),http://em.21dtv.com/songs/60025837.mkv +佚名-狂恋,http://em.21dtv.com/songs/60025836.mkv +张智成-快乐,http://em.21dtv.com/songs/60025691.mkv +张信哲-快乐(演唱会),http://em.21dtv.com/songs/60025690.mkv +郑秀文-苦恋,http://em.21dtv.com/songs/60025633.mkv +宋亦乐-苦恋,http://em.21dtv.com/songs/60025632.mkv +莫少聪-苦恋,http://em.21dtv.com/songs/60025631.mkv +李逸朗-苦恋,http://em.21dtv.com/songs/60025630.mkv +钱蕙丽-哭灵,http://em.21dtv.com/songs/60025564.mkv +周冰倩-哭了,http://em.21dtv.com/songs/60025562.mkv +杨刚-哭了,http://em.21dtv.com/songs/60025561.mkv +范晓萱-哭了,http://em.21dtv.com/songs/60025560.mkv +李宇春-哭了(演唱会),http://em.21dtv.com/songs/60025559.mkv +范晓萱-哭了(演唱会),http://em.21dtv.com/songs/60025558.mkv +张惠妹-渴了,http://em.21dtv.com/songs/60025361.mkv +郑伊健-可乐,http://em.21dtv.com/songs/60025305.mkv +郑伊健-可乐(演唱会),http://em.21dtv.com/songs/60025304.mkv +李宇春-ku lala(演唱会),http://em.21dtv.com/songs/60003215.mkv +胡琳-空空,http://em.21dtv.com/songs/60107142.mkv +莫文蔚-看看,http://em.21dtv.com/songs/60104394.mkv +傅佩嘉-口渴,http://em.21dtv.com/songs/60092296.mkv +李玟-叩叩,http://em.21dtv.com/songs/60080208.mkv +金贤重-kiss kiss,http://em.21dtv.com/songs/60062528.mkv +尤姿涵-空壳,http://em.21dtv.com/songs/60025457.mkv +JILL-可可,http://em.21dtv.com/songs/60025302.mkv +何韵诗-可可(演唱会),http://em.21dtv.com/songs/60025301.mkv +黄耀明+周迅-看看,http://em.21dtv.com/songs/60025095.mkv +米娜-kiss kiss,http://em.21dtv.com/songs/60003164.mkv +HOLLY VALANCE-kiss kiss,http://em.21dtv.com/songs/60003163.mkv +EO2+李龙怡-kiss kiss,http://em.21dtv.com/songs/60003162.mkv +陈奕迅-king kong(演唱会),http://em.21dtv.com/songs/60003154.mkv +佚名-kau kekasihku,http://em.21dtv.com/songs/60003135.mkv +李幸倪-空姐,http://em.21dtv.com/songs/60135358.mkv +夏邦-看见,http://em.21dtv.com/songs/60133525.mkv +李志-看见,http://em.21dtv.com/songs/60127020.mkv +叶俊亨-口贱,http://em.21dtv.com/songs/60125260.mkv +阎奕格-盔甲,http://em.21dtv.com/songs/60118123.mkv +FS(Fuying&Sam)-靠近,http://em.21dtv.com/songs/60115585.mkv +吴莫愁-靠近(HD),http://em.21dtv.com/songs/10012741.mkv +吴莫愁-靠近,http://em.21dtv.com/songs/60099879.mkv +满文军-靠近,http://em.21dtv.com/songs/60098607.mkv +LISA HSIEH-看见,http://em.21dtv.com/songs/60096757.mkv +欧豪-靠近,http://em.21dtv.com/songs/60083217.mkv +谭晶-看见,http://em.21dtv.com/songs/60081394.mkv +冷漠-空姐,http://em.21dtv.com/songs/60076274.mkv +金泰妍-靠近,http://em.21dtv.com/songs/60070841.mkv +苏夏-哭嫁,http://em.21dtv.com/songs/60068407.mkv +罗震环-靠近,http://em.21dtv.com/songs/60068402.mkv +佚名-苦酒,http://em.21dtv.com/songs/60025605.mkv +七郎-苦酒,http://em.21dtv.com/songs/60025604.mkv +刘佳轩-苦酒,http://em.21dtv.com/songs/60025603.mkv +金门王+李炳辉-苦酒,http://em.21dtv.com/songs/60025602.mkv +元卫觉醒-靠近,http://em.21dtv.com/songs/60025196.mkv +庾澄庆-靠近,http://em.21dtv.com/songs/60025195.mkv +易欣+段千寻-靠近,http://em.21dtv.com/songs/60025194.mkv +李圣杰-靠近,http://em.21dtv.com/songs/60025193.mkv +李圣杰+萧煌奇-看见,http://em.21dtv.com/songs/60025078.mkv +明道-KISS ME,http://em.21dtv.com/songs/60085992.mkv +EXAMPLE-KIDS AGAIN,http://em.21dtv.com/songs/60096620.mkv +赵斌-口号,http://em.21dtv.com/songs/60123196.mkv +韩春雨-苦海,http://em.21dtv.com/songs/60121123.mkv +邱琳雅-看海,http://em.21dtv.com/songs/60113005.mkv +张信哲-狂欢,http://em.21dtv.com/songs/60108486.mkv +Denyme-困惑,http://em.21dtv.com/songs/60103765.mkv +向蕙玲-口红,http://em.21dtv.com/songs/60096653.mkv +李亮超-空号,http://em.21dtv.com/songs/60080617.mkv +刘韵-拷红(演唱会),http://em.21dtv.com/songs/60076246.mkv +石梅+冷漠-苦海,http://em.21dtv.com/songs/60072118.mkv +曲婉婷-快活,http://em.21dtv.com/songs/60069548.mkv +图腾-困惑,http://em.21dtv.com/songs/60025873.mkv +郭淑贤-困惑(无原唱),http://em.21dtv.com/songs/60025872.mkv +佚名-狂欢,http://em.21dtv.com/songs/60025835.mkv +王雅洁-苦海,http://em.21dtv.com/songs/60025598.mkv +郑秀文-口红,http://em.21dtv.com/songs/60025526.mkv +翁虹-口红(演唱会),http://em.21dtv.com/songs/60025525.mkv +王非非-口红(无原唱),http://em.21dtv.com/songs/60025524.mkv +佚名-刻痕,http://em.21dtv.com/songs/60025387.mkv +周璇-拷红,http://em.21dtv.com/songs/60025183.mkv +佚名-拷红,http://em.21dtv.com/songs/60025182.mkv +谢采妘-拷红,http://em.21dtv.com/songs/60025181.mkv +陈辉玲-拷红,http://em.21dtv.com/songs/60025180.mkv +周迅-看海,http://em.21dtv.com/songs/60025072.mkv +莫艳琳-看海(演唱会),http://em.21dtv.com/songs/60025071.mkv +Madtown-空格,http://em.21dtv.com/songs/60123499.mkv +邓丽君-空港,http://em.21dtv.com/songs/60123221.mkv +丁新-苦工,http://em.21dtv.com/songs/60083233.mkv +丁当-kiss goodbye,http://em.21dtv.com/songs/60063648.mkv +萧亚轩-快歌(演唱会),http://em.21dtv.com/songs/60025681.mkv +程响-苦果,http://em.21dtv.com/songs/60025597.mkv +金子嫣-苦果(无原唱),http://em.21dtv.com/songs/60025596.mkv +陈奕迅-苦瓜,http://em.21dtv.com/songs/60025595.mkv +容祖儿-空港,http://em.21dtv.com/songs/60025454.mkv +戴爱玲-空港,http://em.21dtv.com/songs/60025453.mkv +容祖儿-空港(演唱会),http://em.21dtv.com/songs/60025452.mkv +邓丽君-空港(演唱会),http://em.21dtv.com/songs/60025451.mkv +胡兵-可贵,http://em.21dtv.com/songs/60025292.mkv +童唱-凯歌,http://em.21dtv.com/songs/60025046.mkv +王力宏-kiss goodbye,http://em.21dtv.com/songs/60003161.mkv +李宇春-开放,http://em.21dtv.com/songs/60124062.mkv +佳灏-咖啡,http://em.21dtv.com/songs/60123630.mkv +佚名-开方,http://em.21dtv.com/songs/60121382.mkv +杨坤-空房,http://em.21dtv.com/songs/60076273.mkv +谭维维-开放,http://em.21dtv.com/songs/60067153.mkv +孙耀威-狂风(无原唱),http://em.21dtv.com/songs/60025833.mkv +蒋文端-哭父,http://em.21dtv.com/songs/60025550.mkv +陈慧娴-可否,http://em.21dtv.com/songs/60025286.mkv +张学友-咖啡,http://em.21dtv.com/songs/60024938.mkv +佚名-咖啡,http://em.21dtv.com/songs/60024937.mkv +江蕙-咖啡,http://em.21dtv.com/songs/60024936.mkv +蔡健雅-Keep Breathing,http://em.21dtv.com/songs/60100449.mkv +金久哲-嗑儿,http://em.21dtv.com/songs/60114141.mkv +BOSS-哭饿,http://em.21dtv.com/songs/60095369.mkv +金久哲-嗑儿,http://em.21dtv.com/songs/60076268.mkv +麦浚龙-酷儿,http://em.21dtv.com/songs/60025655.mkv +卢凯彤-卡带,http://em.21dtv.com/songs/60130143.mkv +卢凯彤-卡带,http://em.21dtv.com/songs/60128860.mkv +邓咏家-开店,http://em.21dtv.com/songs/60120006.mkv +田馥甄-看淡,http://em.21dtv.com/songs/60119842.mkv +陈思安-苦旦,http://em.21dtv.com/songs/60106401.mkv +南宫苡彤-空等,http://em.21dtv.com/songs/60103957.mkv +洛天依_王朝-空待,http://em.21dtv.com/songs/60095319.mkv +清源-空洞,http://em.21dtv.com/songs/60076272.mkv +高维那-坑爹,http://em.21dtv.com/songs/60076270.mkv +郑重-坑爹,http://em.21dtv.com/songs/60070848.mkv +高维那-坑爹(舞曲版),http://em.21dtv.com/songs/60067166.mkv +王玲-空等(无原唱),http://em.21dtv.com/songs/60052766.mkv +戴辛尉-扩大(演唱会),http://em.21dtv.com/songs/60025884.mkv +刘德华-苦等,http://em.21dtv.com/songs/60025594.mkv +温岚-口袋,http://em.21dtv.com/songs/60025521.mkv +李心洁-口袋,http://em.21dtv.com/songs/60025520.mkv +大冢爱-口袋,http://em.21dtv.com/songs/60025519.mkv +成龙-口袋,http://em.21dtv.com/songs/60025518.mkv +夏韶声-空櫈(演唱会),http://em.21dtv.com/songs/60025448.mkv +夏韶声-空凳,http://em.21dtv.com/songs/60025447.mkv +佚名-空等(无原唱),http://em.21dtv.com/songs/60025446.mkv +春妹-空等(无原唱),http://em.21dtv.com/songs/60025445.mkv +陈俞琹-空等(无原唱),http://em.21dtv.com/songs/60025444.mkv +孙耀威-肯定,http://em.21dtv.com/songs/60025412.mkv +黑珍珠-肯定(无原唱),http://em.21dtv.com/songs/60025411.mkv +杨千嬅-开大,http://em.21dtv.com/songs/60024983.mkv +杨千嬅-开大(演唱会),http://em.21dtv.com/songs/60024982.mkv +慢摇舞曲-空城(2013ClubDance Dj十三 中国好声音 Remix),http://em.21dtv.com/songs/30000595.mkv +钟舒漫-苦茶,http://em.21dtv.com/songs/60122205.mkv +杨宗纬-看穿,http://em.21dtv.com/songs/60113675.mkv +杨坤+曹寅-空城,http://em.21dtv.com/songs/60112012.mkv +韩庚-狂草(HD),http://em.21dtv.com/songs/10012836.mkv +马汝珑-空城,http://em.21dtv.com/songs/60109036.mkv +杨坤+余枫-空城,http://em.21dtv.com/songs/60105174.mkv +玺儿-看穿(现场版),http://em.21dtv.com/songs/60103480.mkv +子琦-空床,http://em.21dtv.com/songs/60099190.mkv +梅艳芳-空城,http://em.21dtv.com/songs/60086652.mkv +金志文-空城,http://em.21dtv.com/songs/60070849.mkv +张德兰-狂潮(演唱会),http://em.21dtv.com/songs/60068408.mkv +韩庚-狂草,http://em.21dtv.com/songs/60067173.mkv +李佳璐-开场,http://em.21dtv.com/songs/60067152.mkv +卢凯彤-卡嚓,http://em.21dtv.com/songs/60066093.mkv +陈奕迅-看穿,http://em.21dtv.com/songs/60064429.mkv +郭媛媛-空城,http://em.21dtv.com/songs/60061335.mkv +关菊英-狂潮,http://em.21dtv.com/songs/60025831.mkv +棒棒堂+黑涩会美眉-苦茶,http://em.21dtv.com/songs/60025593.mkv +唐韦琪+江君佑-口吃(演唱会),http://em.21dtv.com/songs/60025517.mkv +辛晓琪-空窗,http://em.21dtv.com/songs/60025443.mkv +柯以敏-空船,http://em.21dtv.com/songs/60025442.mkv +杨坤-空城,http://em.21dtv.com/songs/60025436.mkv +王菲-空城,http://em.21dtv.com/songs/60025435.mkv +甲子蕙-客串(无原唱),http://em.21dtv.com/songs/60025390.mkv +郑中基-看穿,http://em.21dtv.com/songs/60025062.mkv +何炅-看穿,http://em.21dtv.com/songs/60025061.mkv +阿桑-开车,http://em.21dtv.com/songs/60024980.mkv +SHANIA TWAIN-ka ching,http://em.21dtv.com/songs/60003129.mkv +孙世兴-狂飙,http://em.21dtv.com/songs/60131322.mkv +赵红军-狂奔,http://em.21dtv.com/songs/60106304.mkv +秀兰玛雅-空白,http://em.21dtv.com/songs/60096747.mkv +周传雄-口白,http://em.21dtv.com/songs/60090826.mkv +BROWN EYED GIRLS-kill bill,http://em.21dtv.com/songs/60084731.mkv +齐秦-空白,http://em.21dtv.com/songs/60068406.mkv +蓝心湄-狂奔,http://em.21dtv.com/songs/60025830.mkv +董柯娣-哭别,http://em.21dtv.com/songs/60025543.mkv +王宏伟-口碑,http://em.21dtv.com/songs/60025513.mkv +刘一祯-口碑,http://em.21dtv.com/songs/60025512.mkv +[Group] +groupName=十六万歌曲MV等 - 09 +ALAN-空呗,http://em.21dtv.com/songs/60025434.mkv +周蕙-空白,http://em.21dtv.com/songs/60025424.mkv +津亭-空白,http://em.21dtv.com/songs/60025423.mkv +丁浩然-空白,http://em.21dtv.com/songs/60025422.mkv +蔡依林-空白,http://em.21dtv.com/songs/60025421.mkv +陈慧琳-空白(演唱会),http://em.21dtv.com/songs/60025420.mkv +蔡依林-空白(演唱会),http://em.21dtv.com/songs/60025419.mkv +阿信-靠背,http://em.21dtv.com/songs/60025191.mkv +王菀之-酷爱,http://em.21dtv.com/songs/60134007.mkv +王菀之-酷爱,http://em.21dtv.com/songs/60132741.mkv +张智勇-苦爱,http://em.21dtv.com/songs/60113469.mkv +邬兆邦-靠岸,http://em.21dtv.com/songs/60086650.mkv +蔡健雅-可爱,http://em.21dtv.com/songs/60076248.mkv +夏天-靠岸,http://em.21dtv.com/songs/60076247.mkv +星-可爱,http://em.21dtv.com/songs/60072108.mkv +孟庭苇-困爱,http://em.21dtv.com/songs/60025870.mkv +成学迅-困爱,http://em.21dtv.com/songs/60025869.mkv +杜德伟-快爱,http://em.21dtv.com/songs/60025670.mkv +张敬轩-酷爱,http://em.21dtv.com/songs/60025653.mkv +张敬轩-酷爱(演唱会),http://em.21dtv.com/songs/60025652.mkv +谢天华-酷爱(演唱会),http://em.21dtv.com/songs/60025651.mkv +陈爽-苦爱,http://em.21dtv.com/songs/60025590.mkv +杨丞琳-可爱,http://em.21dtv.com/songs/60025222.mkv +佚名-靠岸,http://em.21dtv.com/songs/60025190.mkv +孙淑媚-靠岸,http://em.21dtv.com/songs/60025189.mkv +林宇中-靠岸,http://em.21dtv.com/songs/60025188.mkv +江蕙-靠岸,http://em.21dtv.com/songs/60025187.mkv +米娜-korea ariba(演唱会),http://em.21dtv.com/songs/60003210.mkv +欧姐-嫁妆,http://em.21dtv.com/songs/60132656.mkv +陈思安-戒指,http://em.21dtv.com/songs/60135918.mkv +王法英-抉择,http://em.21dtv.com/songs/60133991.mkv +与非门+朱婧汐-茄子,http://em.21dtv.com/songs/60128733.mkv +罗嘉豪+何嘉茵-杰作,http://em.21dtv.com/songs/60127276.mkv +周云蓬-镜中,http://em.21dtv.com/songs/60125307.mkv +马智宇-戒指,http://em.21dtv.com/songs/60124714.mkv +陈致逸-惊蛰,http://em.21dtv.com/songs/60123326.mkv +姚贝娜-戒指,http://em.21dtv.com/songs/60118488.mkv +黄迎迎-假装,http://em.21dtv.com/songs/60113114.mkv +Rain-假装,http://em.21dtv.com/songs/60112456.mkv +容一敏-静止,http://em.21dtv.com/songs/60108451.mkv +好妹妹乐队-抉择,http://em.21dtv.com/songs/60104906.mkv +翁立友-价值,http://em.21dtv.com/songs/60101473.mkv +江美琪-静止,http://em.21dtv.com/songs/60091586.mkv +王丽云+赵丽蓉+游本昌-急诊,http://em.21dtv.com/songs/60090080.mkv +李天华-戒指,http://em.21dtv.com/songs/60085287.mkv +江蕙-囝仔,http://em.21dtv.com/songs/60085271.mkv +吴斌-禁止,http://em.21dtv.com/songs/60083180.mkv +KARA-今赠りたい ありがとう,http://em.21dtv.com/songs/60076136.mkv +伍佰-戒指,http://em.21dtv.com/songs/60076100.mkv +安与骑兵-嫁妆(演唱会),http://em.21dtv.com/songs/60076029.mkv +黄耀明-抉择(演唱会),http://em.21dtv.com/songs/60064422.mkv +爱戴-绝招,http://em.21dtv.com/songs/60024875.mkv +潘安邦-抉择,http://em.21dtv.com/songs/60024809.mkv +孟庭苇-抉择,http://em.21dtv.com/songs/60024808.mkv +罗文-抉择,http://em.21dtv.com/songs/60024807.mkv +林子祥-抉择,http://em.21dtv.com/songs/60024806.mkv +许志安-抉择(演唱会),http://em.21dtv.com/songs/60024805.mkv +罗文-抉择(演唱会),http://em.21dtv.com/songs/60024804.mkv +蔡琴-抉择(演唱会),http://em.21dtv.com/songs/60024803.mkv +袁小迪-酒醉(无原唱),http://em.21dtv.com/songs/60024474.mkv +佚名-酒桌,http://em.21dtv.com/songs/60024473.mkv +邰正宵-镜子,http://em.21dtv.com/songs/60024289.mkv +陈升-镜子,http://em.21dtv.com/songs/60024288.mkv +陈坤-镜子,http://em.21dtv.com/songs/60024287.mkv +杨乃文-静止,http://em.21dtv.com/songs/60024278.mkv +汉洋-借醉,http://em.21dtv.com/songs/60023734.mkv +杨钰莹-戒指,http://em.21dtv.com/songs/60023711.mkv +梁咏琪-戒指,http://em.21dtv.com/songs/60023710.mkv +林美莉-嫁妆,http://em.21dtv.com/songs/60023180.mkv +郭静-嫁妆,http://em.21dtv.com/songs/60023179.mkv +陈慧琳-嫁妆,http://em.21dtv.com/songs/60023178.mkv +陈慧琳-嫁妆(演唱会),http://em.21dtv.com/songs/60023177.mkv +齐秦-价值,http://em.21dtv.com/songs/60023153.mkv +周慧敏-假装,http://em.21dtv.com/songs/60023148.mkv +杨培安-假装,http://em.21dtv.com/songs/60023147.mkv +无印良品-假装,http://em.21dtv.com/songs/60023146.mkv +刘德华-假装,http://em.21dtv.com/songs/60023145.mkv +黄品冠-假装,http://em.21dtv.com/songs/60023144.mkv +蔡依林-假装,http://em.21dtv.com/songs/60023143.mkv +周慧敏-假装(演唱会),http://em.21dtv.com/songs/60023142.mkv +刘德华-假装(演唱会),http://em.21dtv.com/songs/60023141.mkv +TANK-激战,http://em.21dtv.com/songs/60022546.mkv +龙千玉-结缘,http://em.21dtv.com/songs/60136061.mkv +左成-今夜,http://em.21dtv.com/songs/60135171.mkv +徐玉珊-记忆,http://em.21dtv.com/songs/60133720.mkv +陈乘-解药,http://em.21dtv.com/songs/60126361.mkv +钱红-加油,http://em.21dtv.com/songs/60126331.mkv +星弟+小贱-旧友,http://em.21dtv.com/songs/60125634.mkv +叶俊华-江月,http://em.21dtv.com/songs/60125261.mkv +孙楠-记忆,http://em.21dtv.com/songs/60123822.mkv +胡德夫-记忆,http://em.21dtv.com/songs/60122041.mkv +林煌-鲸鱼,http://em.21dtv.com/songs/60121821.mkv +孙淑媚-加油,http://em.21dtv.com/songs/60119423.mkv +蔡欣伶-家园,http://em.21dtv.com/songs/60116235.mkv +萨尔组合-家园,http://em.21dtv.com/songs/60115355.mkv +赵景春-家园,http://em.21dtv.com/songs/60112983.mkv +JY 伽怡-剪影,http://em.21dtv.com/songs/60104693.mkv +陆毅-解药,http://em.21dtv.com/songs/60104535.mkv +田震达+程响-今夜,http://em.21dtv.com/songs/60104328.mkv +李成-今夜,http://em.21dtv.com/songs/60102336.mkv +刘行格-记忆,http://em.21dtv.com/songs/60099814.mkv +何韵诗-旧约,http://em.21dtv.com/songs/60092276.mkv +轻音乐-静夜,http://em.21dtv.com/songs/60090240.mkv +林俊杰+姚中仁-加油,http://em.21dtv.com/songs/60089995.mkv +魏晨+阿兰-加油,http://em.21dtv.com/songs/60089014.mkv +清源-金庸,http://em.21dtv.com/songs/60088228.mkv +不龙-静音,http://em.21dtv.com/songs/60087236.mkv +赵敬一-家园,http://em.21dtv.com/songs/60086621.mkv +周韦杰+凤娘-今夜,http://em.21dtv.com/songs/60085300.mkv +风来-今夜,http://em.21dtv.com/songs/60083175.mkv +孙紫晴-解药,http://em.21dtv.com/songs/60083159.mkv +爱乐团-家园,http://em.21dtv.com/songs/60081764.mkv +李明洋-解药,http://em.21dtv.com/songs/60081059.mkv +李昊嘉-酒意,http://em.21dtv.com/songs/60080201.mkv +尤雅-借缘,http://em.21dtv.com/songs/60080028.mkv +方怡萍-敬月,http://em.21dtv.com/songs/60076162.mkv +山野-戒烟,http://em.21dtv.com/songs/60076099.mkv +颜小健+郑国锋-解药,http://em.21dtv.com/songs/60076096.mkv +阿依吉斯-家园,http://em.21dtv.com/songs/60076003.mkv +MISIA-记忆,http://em.21dtv.com/songs/60075970.mkv +DIXON LI-机遇,http://em.21dtv.com/songs/60072056.mkv +歌浴森-加油,http://em.21dtv.com/songs/60070794.mkv +张瑶-解药,http://em.21dtv.com/songs/60067128.mkv +本兮-寂夜,http://em.21dtv.com/songs/60067108.mkv +田跃君-解药,http://em.21dtv.com/songs/60066072.mkv +程勃森-记忆,http://em.21dtv.com/songs/60066049.mkv +ELLE VARNER-家园,http://em.21dtv.com/songs/60064376.mkv +胡东清-记忆,http://em.21dtv.com/songs/60061281.mkv +袁小迪-酒友(无原唱),http://em.21dtv.com/songs/60024465.mkv +唐笑-九月,http://em.21dtv.com/songs/60024351.mkv +朴树-九月,http://em.21dtv.com/songs/60024350.mkv +蓝心湄-鲸鱼,http://em.21dtv.com/songs/60024228.mkv +郑中基-精英,http://em.21dtv.com/songs/60024226.mkv +张柏芝-经验,http://em.21dtv.com/songs/60024199.mkv +张瑶-金鱼,http://em.21dtv.com/songs/60024091.mkv +朱业晋-今夜,http://em.21dtv.com/songs/60023942.mkv +许巍-今夜,http://em.21dtv.com/songs/60023941.mkv +林凡-今夜,http://em.21dtv.com/songs/60023940.mkv +九月-今夜,http://em.21dtv.com/songs/60023939.mkv +许巍-今夜(演唱会),http://em.21dtv.com/songs/60023938.mkv +堂娜-解药,http://em.21dtv.com/songs/60023689.mkv +石康军-解药,http://em.21dtv.com/songs/60023688.mkv +林子曦-解药,http://em.21dtv.com/songs/60023687.mkv +李翊君-解药,http://em.21dtv.com/songs/60023686.mkv +陈奕迅-解药,http://em.21dtv.com/songs/60023685.mkv +佚名-脚印,http://em.21dtv.com/songs/60023499.mkv +王识贤-脚印,http://em.21dtv.com/songs/60023498.mkv +陈奕迅-脚印,http://em.21dtv.com/songs/60023497.mkv +童唱-郊游,http://em.21dtv.com/songs/60023469.mkv +深白色2人组-剪影,http://em.21dtv.com/songs/60023240.mkv +幸福大街-嫁衣,http://em.21dtv.com/songs/60023176.mkv +祖海-家园,http://em.21dtv.com/songs/60023042.mkv +亚东-家园,http://em.21dtv.com/songs/60023041.mkv +腾格尔-家园,http://em.21dtv.com/songs/60023040.mkv +宋祖英-家园,http://em.21dtv.com/songs/60023039.mkv +刘欢-家园,http://em.21dtv.com/songs/60023038.mkv +何静-家园,http://em.21dtv.com/songs/60023037.mkv +伯阳-家园,http://em.21dtv.com/songs/60023036.mkv +TOKYO D.-加油(无原唱),http://em.21dtv.com/songs/60022974.mkv +刘文正-寄语,http://em.21dtv.com/songs/60022811.mkv +王杰-际遇,http://em.21dtv.com/songs/60022744.mkv +叶玉卿-记忆,http://em.21dtv.com/songs/60022717.mkv +方力申+孙俪-记忆,http://em.21dtv.com/songs/60022716.mkv +孙滢迎-记忆,http://em.21dtv.com/songs/60017916.mkv +徐斯朝-酒香,http://em.21dtv.com/songs/60132477.mkv +奇然-匠心,http://em.21dtv.com/songs/60127889.mkv +赵雷-家乡,http://em.21dtv.com/songs/60127445.mkv +赵鑫-继续,http://em.21dtv.com/songs/60123209.mkv +高旭-界限,http://em.21dtv.com/songs/60121161.mkv +韩磊-家训,http://em.21dtv.com/songs/60121125.mkv +王青+冯建宇-今夏,http://em.21dtv.com/songs/60119832.mkv +孙中亮-家乡,http://em.21dtv.com/songs/60115782.mkv +冷漠-揪心,http://em.21dtv.com/songs/60115706.mkv +天空乐队-继续,http://em.21dtv.com/songs/60114470.mkv +Ken+Hani-间隙,http://em.21dtv.com/songs/60114344.mkv +黄华丽-家乡,http://em.21dtv.com/songs/60112401.mkv +TimeZ-觉醒,http://em.21dtv.com/songs/60111658.mkv +冯欣-家乡,http://em.21dtv.com/songs/60110000.mkv +追风骏马组合-家乡,http://em.21dtv.com/songs/60108908.mkv +李宇春-锦绣,http://em.21dtv.com/songs/60108567.mkv +孙娇娇-家乡,http://em.21dtv.com/songs/60108418.mkv +邓丽欣-戒心,http://em.21dtv.com/songs/60107258.mkv +王牌-家乡,http://em.21dtv.com/songs/60107078.mkv +小曲儿-剑心,http://em.21dtv.com/songs/60106788.mkv +李易峰-剑心,http://em.21dtv.com/songs/60105979.mkv +金志文-家乡,http://em.21dtv.com/songs/60105443.mkv +张杰-剑心,http://em.21dtv.com/songs/60102226.mkv +带泪的鱼-假像,http://em.21dtv.com/songs/60099986.mkv +左健-叫嚣,http://em.21dtv.com/songs/60099981.mkv +游美灵-静心,http://em.21dtv.com/songs/60099380.mkv +佳媛-吉祥,http://em.21dtv.com/songs/60099090.mkv +张琼-家乡,http://em.21dtv.com/songs/60096786.mkv +徐海星-叫醒,http://em.21dtv.com/songs/60096672.mkv +张子瑄-界线,http://em.21dtv.com/songs/60094895.mkv +赤い公园-交信,http://em.21dtv.com/songs/60094305.mkv +李自强-借靴,http://em.21dtv.com/songs/60092812.mkv +黄美诗-家乡,http://em.21dtv.com/songs/60089054.mkv +刘若英-继续,http://em.21dtv.com/songs/60087425.mkv +小曲儿-剑心,http://em.21dtv.com/songs/60083140.mkv +汪峰-觉醒,http://em.21dtv.com/songs/60076211.mkv +满人+叶玮庭-巨星,http://em.21dtv.com/songs/60076200.mkv +郑少秋-界限,http://em.21dtv.com/songs/60076101.mkv +储兰兰-江雪,http://em.21dtv.com/songs/60076058.mkv +周燕君-家乡,http://em.21dtv.com/songs/60076000.mkv +许富凯-决心,http://em.21dtv.com/songs/60070833.mkv +抖动窗口-假象,http://em.21dtv.com/songs/60069500.mkv +陈柔希-橘夏,http://em.21dtv.com/songs/60068397.mkv +张萌萌-景象,http://em.21dtv.com/songs/60068390.mkv +央金萨朵-吉祥,http://em.21dtv.com/songs/60067101.mkv +郭健锋-菊香,http://em.21dtv.com/songs/60064421.mkv +柳影虹-巨星(演唱会),http://em.21dtv.com/songs/60062696.mkv +林忆莲-决心,http://em.21dtv.com/songs/60024791.mkv +郭桂彬-决心,http://em.21dtv.com/songs/60024790.mkv +赵传-决心(演唱会),http://em.21dtv.com/songs/60024789.mkv +林忆莲-决心(演唱会),http://em.21dtv.com/songs/60024788.mkv +李龙基-巨星,http://em.21dtv.com/songs/60024725.mkv +孙淑媚+王识贤-旧鞋,http://em.21dtv.com/songs/60024572.mkv +薛家燕-静心,http://em.21dtv.com/songs/60024271.mkv +张洞源-景象,http://em.21dtv.com/songs/60024237.mkv +TWINS-精选,http://em.21dtv.com/songs/60024225.mkv +BEYOND-惊喜,http://em.21dtv.com/songs/60024208.mkv +蔡佳莹-今宵,http://em.21dtv.com/songs/60023919.mkv +华少翌-解夏,http://em.21dtv.com/songs/60023684.mkv +詹雅雯-嗟心,http://em.21dtv.com/songs/60023576.mkv +陈洁仪-揭晓,http://em.21dtv.com/songs/60023575.mkv +唐志伟-觉醒,http://em.21dtv.com/songs/60023533.mkv +林子祥-讲笑(演唱会),http://em.21dtv.com/songs/60023433.mkv +何韵诗+郑秀文-剑雪,http://em.21dtv.com/songs/60023307.mkv +甘国卫-饯行,http://em.21dtv.com/songs/60023298.mkv +徐怀钰-简讯,http://em.21dtv.com/songs/60023275.mkv +于娜-假象,http://em.21dtv.com/songs/60023136.mkv +王雅洁-假象,http://em.21dtv.com/songs/60023135.mkv +韩红-家乡,http://em.21dtv.com/songs/60023019.mkv +韩红-家乡(演唱会),http://em.21dtv.com/songs/60023018.mkv +汤浩平-几许,http://em.21dtv.com/songs/60022813.mkv +陈译贤-寄信(无原唱),http://em.21dtv.com/songs/60022809.mkv +高雅如-寄心(无原唱),http://em.21dtv.com/songs/60022808.mkv +江蕙-寄鞋(无原唱),http://em.21dtv.com/songs/60022807.mkv +蔡琴-继续,http://em.21dtv.com/songs/60022764.mkv +ENERGY-继续,http://em.21dtv.com/songs/60022763.mkv +徐佳莹-极限,http://em.21dtv.com/songs/60022606.mkv +春雷-吉祥,http://em.21dtv.com/songs/60022570.mkv +马吟吟-救我,http://em.21dtv.com/songs/60134460.mkv +谢春花-借我,http://em.21dtv.com/songs/60129616.mkv +郎军-渐忘,http://em.21dtv.com/songs/60114818.mkv +莫文蔚-境外,http://em.21dtv.com/songs/60109599.mkv +莫文蔚-境外,http://em.21dtv.com/songs/60108855.mkv +许茹芸-健忘,http://em.21dtv.com/songs/60107214.mkv +陈一玲-借位,http://em.21dtv.com/songs/60103668.mkv +甲子慧-绝望,http://em.21dtv.com/songs/60099425.mkv +周慧敏-借歪,http://em.21dtv.com/songs/60092477.mkv +钟汉良-救我,http://em.21dtv.com/songs/60080367.mkv +袁姗姗-觉悟,http://em.21dtv.com/songs/60076210.mkv +许嵩-降温,http://em.21dtv.com/songs/60063218.mkv +李策-嫁问,http://em.21dtv.com/songs/60061291.mkv +杨孝君-绝温,http://em.21dtv.com/songs/60024874.mkv +张柏芝-绝望,http://em.21dtv.com/songs/60024871.mkv +陈升-纠闻,http://em.21dtv.com/songs/60024293.mkv +李玟-今晚,http://em.21dtv.com/songs/60023896.mkv +周迅-今晚(演唱会),http://em.21dtv.com/songs/60023895.mkv +张惠妹-解围,http://em.21dtv.com/songs/60023682.mkv +爱乐团-解围,http://em.21dtv.com/songs/60023681.mkv +怪脚团体-街舞,http://em.21dtv.com/songs/60023591.mkv +林宝-教我,http://em.21dtv.com/songs/60023539.mkv +翁立友-觉悟,http://em.21dtv.com/songs/60023532.mkv +黎瑞恩-觉悟,http://em.21dtv.com/songs/60023531.mkv +TWINS-讲玩,http://em.21dtv.com/songs/60023432.mkv +周华健-健忘,http://em.21dtv.com/songs/60023317.mkv +洪玲-寄望,http://em.21dtv.com/songs/60022806.mkv +赵方婧-尽头,http://em.21dtv.com/songs/60135774.mkv +周汤豪-角头,http://em.21dtv.com/songs/60127856.mkv +李雪莱-剧透,http://em.21dtv.com/songs/60127056.mkv +林大晋+吴婕新-今天,http://em.21dtv.com/songs/60125770.mkv +林宗兴-九天,http://em.21dtv.com/songs/60113697.mkv +林子娟-解脱,http://em.21dtv.com/songs/60113695.mkv +周汤豪-角头,http://em.21dtv.com/songs/60113343.mkv +蔡龄龄-解脱,http://em.21dtv.com/songs/60106266.mkv +吴莫愁-解脱,http://em.21dtv.com/songs/60096826.mkv +Kent王健-尽头,http://em.21dtv.com/songs/60096704.mkv +何韵诗-结他,http://em.21dtv.com/songs/60092282.mkv +权振东-剧透,http://em.21dtv.com/songs/60086645.mkv +波拉-检讨,http://em.21dtv.com/songs/60086625.mkv +淘小淘-静叹,http://em.21dtv.com/songs/60083182.mkv +曲婉婷-今天,http://em.21dtv.com/songs/60083173.mkv +何伟图-尽头,http://em.21dtv.com/songs/60076149.mkv +金完宣-今天,http://em.21dtv.com/songs/60076122.mkv +包琦-解脱,http://em.21dtv.com/songs/60076095.mkv +THE PRETTY RECKLESS-just tonight,http://em.21dtv.com/songs/60073458.mkv +张莹静-静态,http://em.21dtv.com/songs/60070826.mkv +孙楠-净土,http://em.21dtv.com/songs/60069527.mkv +刘丞-尽头,http://em.21dtv.com/songs/60064408.mkv +夏莎莎-寄托,http://em.21dtv.com/songs/60064367.mkv +容中尔甲-解脱,http://em.21dtv.com/songs/60062880.mkv +七郎-酒摊,http://em.21dtv.com/songs/60024458.mkv +高向鹏+傅振辉-酒摊(无原唱),http://em.21dtv.com/songs/60024457.mkv +孙悦-浸透,http://em.21dtv.com/songs/60024180.mkv +张爽-尽头,http://em.21dtv.com/songs/60024143.mkv +梁珈瑜-尽头,http://em.21dtv.com/songs/60024142.mkv +胡白-尽头,http://em.21dtv.com/songs/60024141.mkv +冰火组合-尽头,http://em.21dtv.com/songs/60024140.mkv +佚名-今天,http://em.21dtv.com/songs/60023825.mkv +刘德华-今天,http://em.21dtv.com/songs/60023824.mkv +周笔畅-解脱,http://em.21dtv.com/songs/60023680.mkv +张惠妹-解脱,http://em.21dtv.com/songs/60023679.mkv +李玖哲-解脱,http://em.21dtv.com/songs/60023678.mkv +张惠妹-解脱(演唱会),http://em.21dtv.com/songs/60023677.mkv +李媛希-解脱(演唱会),http://em.21dtv.com/songs/60023676.mkv +迪克牛仔-解脱(演唱会),http://em.21dtv.com/songs/60023675.mkv +李蕙敏-解脱(无原唱),http://em.21dtv.com/songs/60023674.mkv +彭靖惠-解套,http://em.21dtv.com/songs/60023673.mkv +陈晓东-结他,http://em.21dtv.com/songs/60023632.mkv +陈晓东-结他(演唱会),http://em.21dtv.com/songs/60023631.mkv +陈司翰-教堂,http://em.21dtv.com/songs/60023536.mkv +许美静-寄托(演唱会),http://em.21dtv.com/songs/60022805.mkv +陈晓东-吉他,http://em.21dtv.com/songs/60022561.mkv +BEE GEES-jive talking,http://em.21dtv.com/songs/60003076.mkv +BEE GEES-jive talking(演唱会),http://em.21dtv.com/songs/60003075.mkv +春晓-je taime,http://em.21dtv.com/songs/60003053.mkv +陈羽凡-救赎,http://em.21dtv.com/songs/60135940.mkv +邵大伦-家书,http://em.21dtv.com/songs/60135795.mkv +ATF-绝杀,http://em.21dtv.com/songs/60134644.mkv +郑顺鹏-酒色,http://em.21dtv.com/songs/60134321.mkv +李雨-酒僧,http://em.21dtv.com/songs/60128102.mkv +陈佳-锦瑟,http://em.21dtv.com/songs/60127541.mkv +林思彤+杨敏-嚼士,http://em.21dtv.com/songs/60124132.mkv +侯丽娟-江山,http://em.21dtv.com/songs/60120328.mkv +轲然-救赎,http://em.21dtv.com/songs/60118947.mkv +羽泉-救赎,http://em.21dtv.com/songs/60117129.mkv +林子娟-今生,http://em.21dtv.com/songs/60116959.mkv +许廷铿-枷锁,http://em.21dtv.com/songs/60116245.mkv +孙露-计算,http://em.21dtv.com/songs/60115846.mkv +梁屾+胡芳芳-角色,http://em.21dtv.com/songs/60113742.mkv +冷漠-江山,http://em.21dtv.com/songs/60107515.mkv +黄嘉千-聚散,http://em.21dtv.com/songs/60104626.mkv +缘轩-聚散,http://em.21dtv.com/songs/60104368.mkv +黄靖伦-旧伤,http://em.21dtv.com/songs/60102507.mkv +李易峰-剑伤,http://em.21dtv.com/songs/60102343.mkv +陈奕迅-禁色,http://em.21dtv.com/songs/60093405.mkv +卢巧音-沮丧,http://em.21dtv.com/songs/60092388.mkv +罗百吉-禁声,http://em.21dtv.com/songs/60091840.mkv +周蕙-解释,http://em.21dtv.com/songs/60090852.mkv +郑伊健-机速,http://em.21dtv.com/songs/60088756.mkv +黑豹乐队-枷锁(演唱会),http://em.21dtv.com/songs/60085264.mkv +黄耀明-绝色,http://em.21dtv.com/songs/60083205.mkv +汁橙音乐-假设,http://em.21dtv.com/songs/60076021.mkv +刘嘉亮-救赎,http://em.21dtv.com/songs/60070831.mkv +王亚平-橘颂,http://em.21dtv.com/songs/60067143.mkv +泳儿-就手(演唱会),http://em.21dtv.com/songs/60064420.mkv +黄艺明-枷锁,http://em.21dtv.com/songs/60064370.mkv +泳儿-就手,http://em.21dtv.com/songs/60063283.mkv +马德钟-江山,http://em.21dtv.com/songs/60061295.mkv +玺恩-军师,http://em.21dtv.com/songs/60024907.mkv +张克帆-绝世,http://em.21dtv.com/songs/60024869.mkv +陈明-聚首,http://em.21dtv.com/songs/60024754.mkv +NO NAME-就算,http://em.21dtv.com/songs/60024642.mkv +林冠吟-救赎,http://em.21dtv.com/songs/60024588.mkv +萧亚轩-旧事,http://em.21dtv.com/songs/60024568.mkv +黄耀明-禁色,http://em.21dtv.com/songs/60024184.mkv +何韵诗-禁色(演唱会),http://em.21dtv.com/songs/60024183.mkv +达明一派-禁色(演唱会),http://em.21dtv.com/songs/60024182.mkv +韦绮姗-金色,http://em.21dtv.com/songs/60024067.mkv +黄凯芹-解释,http://em.21dtv.com/songs/60023671.mkv +王杰+林忆莲-结束,http://em.21dtv.com/songs/60023628.mkv +李宗盛+郑怡-结束,http://em.21dtv.com/songs/60023627.mkv +梁静茹-接受,http://em.21dtv.com/songs/60023568.mkv +梁静茹-接受(演唱会),http://em.21dtv.com/songs/60023567.mkv +彭丽媛-江山,http://em.21dtv.com/songs/60023352.mkv +高进-江山,http://em.21dtv.com/songs/60023351.mkv +曾心梅-笺诗,http://em.21dtv.com/songs/60023224.mkv +陈珊妮-监视,http://em.21dtv.com/songs/60023219.mkv +吴克群-寄生,http://em.21dtv.com/songs/60022803.mkv +郑伊健-极速,http://em.21dtv.com/songs/60022602.mkv +郑伊健-极速(演唱会),http://em.21dtv.com/songs/60022601.mkv +BOA-jewel song,http://em.21dtv.com/songs/60003068.mkv +吴珊珊+孙尔辰-家人,http://em.21dtv.com/songs/60133478.mkv +孙伯纶-匠人,http://em.21dtv.com/songs/60127897.mkv +黄朝霞-假如,http://em.21dtv.com/songs/60124744.mkv +杨坤+刘士玺-假如,http://em.21dtv.com/songs/60112008.mkv +徐剑秋-假如,http://em.21dtv.com/songs/60105075.mkv +谭晶-家人,http://em.21dtv.com/songs/60098779.mkv +谭咏麟-假如,http://em.21dtv.com/songs/60093205.mkv +梁靖琪-贱人,http://em.21dtv.com/songs/60092933.mkv +王梦然-假如,http://em.21dtv.com/songs/60088300.mkv +侧田-贱人,http://em.21dtv.com/songs/60083139.mkv +林二汶-惊人,http://em.21dtv.com/songs/60076155.mkv +梦然-假如,http://em.21dtv.com/songs/60076013.mkv +谭晶-家人(演唱会),http://em.21dtv.com/songs/60075999.mkv +咏峰-军人,http://em.21dtv.com/songs/60067146.mkv +李策-假如,http://em.21dtv.com/songs/60066056.mkv +彩虹姐姐-巨人(无原唱),http://em.21dtv.com/songs/60024724.mkv +刘浩龙-旧人,http://em.21dtv.com/songs/60024554.mkv +陈奕迅-今日,http://em.21dtv.com/songs/60023761.mkv +陈奕迅-今日(HD演唱会),http://em.21dtv.com/songs/60023759.mkv +阿政-介入(无原唱),http://em.21dtv.com/songs/60023691.mkv +罗中旭+姚晔-节日,http://em.21dtv.com/songs/60023593.mkv +信乐团-假如,http://em.21dtv.com/songs/60023099.mkv +BOBO-假如,http://em.21dtv.com/songs/60023098.mkv +郑秀文-假如(演唱会),http://em.21dtv.com/songs/60023097.mkv +夏韶声-假如(演唱会),http://em.21dtv.com/songs/60023096.mkv +容祖儿-假如(演唱会),http://em.21dtv.com/songs/60023095.mkv +古巨基-假如(演唱会),http://em.21dtv.com/songs/60023094.mkv +杜丽莎-假如(演唱会),http://em.21dtv.com/songs/60023093.mkv +毛宁-假日,http://em.21dtv.com/songs/60023090.mkv +郑秀文-记认,http://em.21dtv.com/songs/60022712.mkv +ELRIS PRESLEY-jailhouse rock,http://em.21dtv.com/songs/60003048.mkv +陈冰-崛起,http://em.21dtv.com/songs/60134395.mkv +岩宰仑-金钱,http://em.21dtv.com/songs/60124812.mkv +阿悄-京情,http://em.21dtv.com/songs/60120057.mkv +蒋蓉-坚强,http://em.21dtv.com/songs/60117184.mkv +黄玲-禁区,http://em.21dtv.com/songs/60116414.mkv +袁姗姗-倔强,http://em.21dtv.com/songs/60114039.mkv +刘隋山-坚强,http://em.21dtv.com/songs/60113305.mkv +张杰+徐嘉苇-倔强,http://em.21dtv.com/songs/60112675.mkv +邓业恩-倔强,http://em.21dtv.com/songs/60110567.mkv +宋孟君-倔强,http://em.21dtv.com/songs/60110153.mkv +冷漠-借钱,http://em.21dtv.com/songs/60094820.mkv +耀乐团+肖懿航-倔强,http://em.21dtv.com/songs/60094639.mkv +吴克群-倔强,http://em.21dtv.com/songs/60094433.mkv +HOPE-倔强,http://em.21dtv.com/songs/60083201.mkv +迪克牛仔-禁区,http://em.21dtv.com/songs/60076151.mkv +胡杰夕-绝曲,http://em.21dtv.com/songs/60067145.mkv +张萌萌-坚强(演唱会),http://em.21dtv.com/songs/60064385.mkv +群星-崛起(演唱会),http://em.21dtv.com/songs/60024876.mkv +张信哲-绝情,http://em.21dtv.com/songs/60024852.mkv +苏永康-绝情,http://em.21dtv.com/songs/60024851.mkv +苏永康-绝情(演唱会),http://em.21dtv.com/songs/60024850.mkv +龙千玉-旧情,http://em.21dtv.com/songs/60024527.mkv +方瑞娥-旧情,http://em.21dtv.com/songs/60024526.mkv +高向鹏+傅振辉-酒拳,http://em.21dtv.com/songs/60024449.mkv +誓言-戒情,http://em.21dtv.com/songs/60023706.mkv +张蓉蓉-坚强,http://em.21dtv.com/songs/60023202.mkv +王识贤-坚强,http://em.21dtv.com/songs/60023201.mkv +苏泉-坚强,http://em.21dtv.com/songs/60023200.mkv +莫艳琳-坚强,http://em.21dtv.com/songs/60023199.mkv +马天宇-坚强,http://em.21dtv.com/songs/60023198.mkv +黄维德-坚强,http://em.21dtv.com/songs/60023197.mkv +陈柏宇-坚强,http://em.21dtv.com/songs/60023196.mkv +王菲-假期,http://em.21dtv.com/songs/60023086.mkv +余帝-寄情,http://em.21dtv.com/songs/60022802.mkv +林忆莲-激情(演唱会),http://em.21dtv.com/songs/60022539.mkv +王心凌-绝配,http://em.21dtv.com/songs/60135555.mkv +前田敦子-君は仆だ(演唱会),http://em.21dtv.com/songs/60083206.mkv +五月天+严爵-洁癖(演唱会),http://em.21dtv.com/songs/60083158.mkv +严爵-洁癖,http://em.21dtv.com/songs/60080328.mkv +吴南颖-解剖,http://em.21dtv.com/songs/60064398.mkv +RICK ROSS-9 piece,http://em.21dtv.com/songs/60063517.mkv +GP BASIC-jelly pop,http://em.21dtv.com/songs/60060845.mkv +吴雨霏-绝配,http://em.21dtv.com/songs/60024848.mkv +ME2-绝配,http://em.21dtv.com/songs/60024847.mkv +ASOS-绝配,http://em.21dtv.com/songs/60024846.mkv +佚名-jerat percintaan,http://em.21dtv.com/songs/60003061.mkv +佚名-just once,http://em.21dtv.com/songs/60003114.mkv +钟镇涛-just once(演唱会),http://em.21dtv.com/songs/60003113.mkv +向开薇-纪念,http://em.21dtv.com/songs/60131242.mkv +潘裕文-九年,http://em.21dtv.com/songs/60135522.mkv +潘裕文-九年,http://em.21dtv.com/songs/60133958.mkv +六甲乐团-纪念,http://em.21dtv.com/songs/60120338.mkv +贯诗钦-经年,http://em.21dtv.com/songs/60119987.mkv +罗英男-九年,http://em.21dtv.com/songs/60119883.mkv +姚可杰-今年,http://em.21dtv.com/songs/60114472.mkv +张信哲-眷念,http://em.21dtv.com/songs/60091047.mkv +亚东-纪念,http://em.21dtv.com/songs/60089596.mkv +田维英-纪念,http://em.21dtv.com/songs/60083117.mkv +童丽-江南,http://em.21dtv.com/songs/60076049.mkv +杜德伟-救你,http://em.21dtv.com/songs/60024582.mkv +俞隆华-酒女(无原唱),http://em.21dtv.com/songs/60024443.mkv +那英-今年,http://em.21dtv.com/songs/60023741.mkv +黄伊汶-戒男,http://em.21dtv.com/songs/60023705.mkv +林俊杰-江南,http://em.21dtv.com/songs/60023343.mkv +阿生-江南,http://em.21dtv.com/songs/60023341.mkv +林俊杰-江南(演唱会),http://em.21dtv.com/songs/60023340.mkv +邓颖芝-纪念,http://em.21dtv.com/songs/60022734.mkv +曾淑勤-纪念(演唱会)(无原唱),http://em.21dtv.com/songs/60022733.mkv +蔡健雅-记念,http://em.21dtv.com/songs/60022710.mkv +郭美美-寂寞,http://em.21dtv.com/songs/60134337.mkv +车謇-姐妹,http://em.21dtv.com/songs/60134273.mkv +张萌萌+崔子格-惊梦,http://em.21dtv.com/songs/60125534.mkv +齐秦-旧梦,http://em.21dtv.com/songs/60118228.mkv +AK(陈奕+沈建宏)-啾咪,http://em.21dtv.com/songs/60116433.mkv +王莉+于海洋-九妹,http://em.21dtv.com/songs/60107912.mkv +刘思思-寂寞,http://em.21dtv.com/songs/60104820.mkv +蔡妍+ALAN-姐妹,http://em.21dtv.com/songs/60098750.mkv +范玮琪+冯佳琪-姐妹,http://em.21dtv.com/songs/60095075.mkv +陈文媛-节目,http://em.21dtv.com/songs/60093473.mkv +次真降措-骏马,http://em.21dtv.com/songs/60091535.mkv +音频怪物-假面,http://em.21dtv.com/songs/60085267.mkv +梅东生-啾咪,http://em.21dtv.com/songs/60084673.mkv +谢容儿-寂寞,http://em.21dtv.com/songs/60080783.mkv +费玉清-寂寞,http://em.21dtv.com/songs/60080140.mkv +AK-啾咪,http://em.21dtv.com/songs/60076167.mkv +元平-寂寞,http://em.21dtv.com/songs/60075975.mkv +倪安东-救命,http://em.21dtv.com/songs/60072097.mkv +艳阳天-寂寞,http://em.21dtv.com/songs/60069495.mkv +PB33-寂寞,http://em.21dtv.com/songs/60064363.mkv +陈奕迅-积木,http://em.21dtv.com/songs/60064358.mkv +西单女孩-寂寞,http://em.21dtv.com/songs/60063117.mkv +黄品冠+黄嘉千-姐妹,http://em.21dtv.com/songs/60062811.mkv +康然-寂寞,http://em.21dtv.com/songs/60062541.mkv +小凤凤-酒梦,http://em.21dtv.com/songs/60034399.mkv +范玮琪-绝密,http://em.21dtv.com/songs/60024845.mkv +郑希怡-救命,http://em.21dtv.com/songs/60024581.mkv +蔡秋凤-救命,http://em.21dtv.com/songs/60024580.mkv +彭佳慧-旧梦,http://em.21dtv.com/songs/60024516.mkv +黄鹤翔-九妹,http://em.21dtv.com/songs/60024333.mkv +黄鹤翔-九妹(演唱会),http://em.21dtv.com/songs/60024332.mkv +刘小慧-惊梦,http://em.21dtv.com/songs/60024203.mkv +张惠妹-姐妹,http://em.21dtv.com/songs/60023650.mkv +佚名-姐妹,http://em.21dtv.com/songs/60023649.mkv +杨千嬅-姐妹,http://em.21dtv.com/songs/60023648.mkv +蔡幸娟-姐妹,http://em.21dtv.com/songs/60023647.mkv +张惠妹-姐妹(演唱会),http://em.21dtv.com/songs/60023646.mkv +彭莉-菅芒,http://em.21dtv.com/songs/60023221.mkv +钟镇涛+章蓉舫-寂寞,http://em.21dtv.com/songs/60022819.mkv +姜育恒-寂寞,http://em.21dtv.com/songs/60022818.mkv +万芳-寂寞(演唱会),http://em.21dtv.com/songs/60022816.mkv +静婷-寂寞(演唱会),http://em.21dtv.com/songs/60022815.mkv +钟镇涛+章蓉舫-寂寞(无原唱),http://em.21dtv.com/songs/60022814.mkv +MC天佑-惊雷,http://em.21dtv.com/songs/60134760.mkv +唐人街乐队-距离,http://em.21dtv.com/songs/60133495.mkv +聂玉皎-距离,http://em.21dtv.com/songs/60129505.mkv +Mc雨哲-军恋,http://em.21dtv.com/songs/60128686.mkv +华晨宇-巨鹿,http://em.21dtv.com/songs/60123710.mkv +白龙传说-姬殓,http://em.21dtv.com/songs/60121973.mkv +蔡丽津-眷恋,http://em.21dtv.com/songs/60120927.mkv +苏运莹-精灵,http://em.21dtv.com/songs/60119918.mkv +郭鑫-眷恋,http://em.21dtv.com/songs/60114836.mkv +崔恕-距离,http://em.21dtv.com/songs/60112647.mkv +高旗(超载乐队)-距离,http://em.21dtv.com/songs/60108166.mkv +瑞克-将领,http://em.21dtv.com/songs/60103481.mkv +韦礼安-江郎,http://em.21dtv.com/songs/60102928.mkv +王菲-眷恋,http://em.21dtv.com/songs/60101451.mkv +黄华丽-眷恋,http://em.21dtv.com/songs/60100671.mkv +叶宝安-角落,http://em.21dtv.com/songs/60096211.mkv +刘若英-距离,http://em.21dtv.com/songs/60089683.mkv +青蛙乐队-较量,http://em.21dtv.com/songs/60088941.mkv +陈魁-眷恋,http://em.21dtv.com/songs/60085313.mkv +李东学+熊乃瑾-降落,http://em.21dtv.com/songs/60085277.mkv +佐香智久-君恋カレンダー,http://em.21dtv.com/songs/60083207.mkv +高枫-交流,http://em.21dtv.com/songs/60081889.mkv +王爱华-绝恋,http://em.21dtv.com/songs/60076208.mkv +王祖蓝-胶粒,http://em.21dtv.com/songs/60076067.mkv +陈明-降落,http://em.21dtv.com/songs/60076060.mkv +张秀卿-旧历(无原唱),http://em.21dtv.com/songs/60070764.mkv +李大卫-久了,http://em.21dtv.com/songs/60067138.mkv +苏阳-急流,http://em.21dtv.com/songs/60067103.mkv +郝云-结了,http://em.21dtv.com/songs/60062439.mkv +陈冠希-敬礼,http://em.21dtv.com/songs/60062251.mkv +SIMPLE PLAN-jet lag,http://em.21dtv.com/songs/60062156.mkv +蔡立儿-绝恋,http://em.21dtv.com/songs/60024844.mkv +卓玛加-眷恋,http://em.21dtv.com/songs/60024765.mkv +张信哲-眷恋,http://em.21dtv.com/songs/60024764.mkv +顺子-眷恋,http://em.21dtv.com/songs/60024763.mkv +刘玮-眷恋,http://em.21dtv.com/songs/60024762.mkv +李克勤-眷恋,http://em.21dtv.com/songs/60024761.mkv +F.I.R-眷恋,http://em.21dtv.com/songs/60024760.mkv +叶良俊-距离,http://em.21dtv.com/songs/60024747.mkv +吴雨霏-距离,http://em.21dtv.com/songs/60024746.mkv +陆锋-距离,http://em.21dtv.com/songs/60024745.mkv +林俊杰-距离,http://em.21dtv.com/songs/60024744.mkv +陈绮贞-距离,http://em.21dtv.com/songs/60024743.mkv +陈慧娴-距离,http://em.21dtv.com/songs/60024742.mkv +陈慧娴-距离(演唱会),http://em.21dtv.com/songs/60024741.mkv +刘沁-距离(无原唱),http://em.21dtv.com/songs/60024740.mkv +林吉玲-距离(无原唱),http://em.21dtv.com/songs/60024739.mkv +王识贤-旧路,http://em.21dtv.com/songs/60024514.mkv +林俊杰-精灵,http://em.21dtv.com/songs/60024220.mkv +贾立怡-精灵,http://em.21dtv.com/songs/60024219.mkv +于立成-戒了,http://em.21dtv.com/songs/60023703.mkv +裘海正-解铃,http://em.21dtv.com/songs/60023668.mkv +至上励合-降临,http://em.21dtv.com/songs/60023436.mkv +刘玮-江恋,http://em.21dtv.com/songs/60023339.mkv +周国贤-极乐,http://em.21dtv.com/songs/60022599.mkv +石咏莉-极乐,http://em.21dtv.com/songs/60022598.mkv +方力申+李彩桦-激流,http://em.21dtv.com/songs/60022538.mkv +刘德华-解开,http://em.21dtv.com/songs/60110025.mkv +晓月-剑客,http://em.21dtv.com/songs/60105940.mkv +马常宝-借口,http://em.21dtv.com/songs/60080662.mkv +李代沫-即客,http://em.21dtv.com/songs/60075960.mkv +区文诗-借口,http://em.21dtv.com/songs/60066073.mkv +周杰伦-借口,http://em.21dtv.com/songs/60023724.mkv +王菲-借口,http://em.21dtv.com/songs/60023723.mkv +胡彦斌-借口,http://em.21dtv.com/songs/60023722.mkv +陈冠希-解渴,http://em.21dtv.com/songs/60023667.mkv +王菲-藉口,http://em.21dtv.com/songs/60022631.mkv +徐仁英-尖叫,http://em.21dtv.com/songs/60135278.mkv +周华安-季节,http://em.21dtv.com/songs/60128893.mkv +邵大伦-举枷,http://em.21dtv.com/songs/60128463.mkv +蒋雪儿-结局,http://em.21dtv.com/songs/60123128.mkv +徐紫淇-境界,http://em.21dtv.com/songs/60121704.mkv +彝人制造-姐姐,http://em.21dtv.com/songs/60120547.mkv +梁剑东-家驹,http://em.21dtv.com/songs/60119719.mkv +吴庆国-姐姐,http://em.21dtv.com/songs/60119348.mkv +都智文-将就,http://em.21dtv.com/songs/60116299.mkv +崔健-解决,http://em.21dtv.com/songs/60114512.mkv +徐林-姐姐,http://em.21dtv.com/songs/60113522.mkv +徐林-姐姐,http://em.21dtv.com/songs/60112703.mkv +李春波-姐姐,http://em.21dtv.com/songs/60105141.mkv +侯旭-解救,http://em.21dtv.com/songs/60101909.mkv +钟洁+RILL-结局,http://em.21dtv.com/songs/60095116.mkv +品冠-季节,http://em.21dtv.com/songs/60090857.mkv +谢金燕-姐姐,http://em.21dtv.com/songs/60086632.mkv +带泪的鱼-纠结,http://em.21dtv.com/songs/60083183.mkv +贾盛强-姐姐,http://em.21dtv.com/songs/60083161.mkv +曹轩宾-纠结,http://em.21dtv.com/songs/60081609.mkv +刘和刚-姐姐,http://em.21dtv.com/songs/60080423.mkv +刘晶-纠结,http://em.21dtv.com/songs/60076166.mkv +周传雄-拒绝,http://em.21dtv.com/songs/60070832.mkv +张冬玲-纠结,http://em.21dtv.com/songs/60069528.mkv +杨晓燕-姐姐,http://em.21dtv.com/songs/60069516.mkv +李克勤-姐姐,http://em.21dtv.com/songs/60069515.mkv +冷漠-结局,http://em.21dtv.com/songs/60069513.mkv +郑融-渐渐,http://em.21dtv.com/songs/60069506.mkv +覃春江-佳佳,http://em.21dtv.com/songs/60068361.mkv +萧亚轩-结痂,http://em.21dtv.com/songs/60064394.mkv +杨丞琳-倔强,http://em.21dtv.com/songs/60024879.mkv +五月天-倔强,http://em.21dtv.com/songs/60024878.mkv +童唱-绝句,http://em.21dtv.com/songs/60024840.mkv +佚名-决绝,http://em.21dtv.com/songs/60024785.mkv +林忆莲-决绝,http://em.21dtv.com/songs/60024784.mkv +林忆莲-决绝(演唱会),http://em.21dtv.com/songs/60024783.mkv +张信哲-究竟,http://em.21dtv.com/songs/60024294.mkv +曾桂英-敬酒,http://em.21dtv.com/songs/60024247.mkv +蔡小虎-敬酒,http://em.21dtv.com/songs/60024246.mkv +佚名-晶晶,http://em.21dtv.com/songs/60024209.mkv +佚名-进军,http://em.21dtv.com/songs/60024156.mkv +MINI-紧紧(无原唱),http://em.21dtv.com/songs/60024122.mkv +北原山猫-戒酒(无原唱),http://em.21dtv.com/songs/60023702.mkv +七郎-解酒,http://em.21dtv.com/songs/60023666.mkv +自由发挥-姐姐,http://em.21dtv.com/songs/60023639.mkv +张楚-姐姐,http://em.21dtv.com/songs/60023638.mkv +李建华-姐姐,http://em.21dtv.com/songs/60023637.mkv +张克帆-结局,http://em.21dtv.com/songs/60023626.mkv +佚名-结局,http://em.21dtv.com/songs/60023625.mkv +鑫翼+小默-结局,http://em.21dtv.com/songs/60023624.mkv +大哲-结局,http://em.21dtv.com/songs/60023623.mkv +李宇春-街角(演唱会),http://em.21dtv.com/songs/60023582.mkv +张学友+陈慧娴-接近,http://em.21dtv.com/songs/60023563.mkv +周杰伦-将军,http://em.21dtv.com/songs/60023382.mkv +阎维文-将军,http://em.21dtv.com/songs/60023381.mkv +赵薇+NO NAME-渐渐,http://em.21dtv.com/songs/60023321.mkv +罗忆诗-渐渐,http://em.21dtv.com/songs/60023320.mkv +七郎-见酒(无原唱),http://em.21dtv.com/songs/60023286.mkv +周吉佩-家教,http://em.21dtv.com/songs/60023013.mkv +李克勤-佳节,http://em.21dtv.com/songs/60022985.mkv +李克勤-佳节(演唱会),http://em.21dtv.com/songs/60022984.mkv +陈星-佳佳,http://em.21dtv.com/songs/60022983.mkv +罗嘉良-季节,http://em.21dtv.com/songs/60022750.mkv +黄贯中-季节,http://em.21dtv.com/songs/60022749.mkv +王馨平-计较,http://em.21dtv.com/songs/60022672.mkv +高凌风-计较(无原唱),http://em.21dtv.com/songs/60022671.mkv +DESTINY'S CHILD-jumpin jumpin,http://em.21dtv.com/songs/60003093.mkv +张娜拉-jump jump,http://em.21dtv.com/songs/60003091.mkv +佚名-jenny jenny,http://em.21dtv.com/songs/60003060.mkv +王美丽-结昏,http://em.21dtv.com/songs/60132739.mkv +李炜-剑魂,http://em.21dtv.com/songs/60132557.mkv +许嵩-江湖,http://em.21dtv.com/songs/60127388.mkv +王家霖-江湖,http://em.21dtv.com/songs/60119803.mkv +张寒-酒魂,http://em.21dtv.com/songs/60119514.mkv +一诺千金-结婚,http://em.21dtv.com/songs/60119217.mkv +佳林-江湖,http://em.21dtv.com/songs/60117553.mkv +蔡小虎-酒海,http://em.21dtv.com/songs/60115363.mkv +关楚耀-旧好,http://em.21dtv.com/songs/60109996.mkv +梁理凯-江湖,http://em.21dtv.com/songs/60108641.mkv +雨金-酒嗨,http://em.21dtv.com/songs/60106437.mkv +司空雷-江湖,http://em.21dtv.com/songs/60104868.mkv +黎姿-镜花,http://em.21dtv.com/songs/60093554.mkv +于台烟-机会,http://em.21dtv.com/songs/60089110.mkv +蔡秋凤-江湖,http://em.21dtv.com/songs/60083575.mkv +华娃-交换(演唱会),http://em.21dtv.com/songs/60083151.mkv +童丽-交换,http://em.21dtv.com/songs/60076061.mkv +毛阿敏-记号,http://em.21dtv.com/songs/60075969.mkv +江志丰-机会,http://em.21dtv.com/songs/60075952.mkv +黑龙-江湖,http://em.21dtv.com/songs/60072070.mkv +王馨平-家后,http://em.21dtv.com/songs/60064372.mkv +佚名-巨航,http://em.21dtv.com/songs/60024722.mkv +童唱-菊花,http://em.21dtv.com/songs/60024699.mkv +黎明-进化,http://em.21dtv.com/songs/60024152.mkv +林慧萍-戒痕(演唱会)(无原唱),http://em.21dtv.com/songs/60023700.mkv +叶启田-结婚,http://em.21dtv.com/songs/60023618.mkv +韦雄-结婚,http://em.21dtv.com/songs/60023617.mkv +周璇-交换,http://em.21dtv.com/songs/60023453.mkv +黄小琥-交换,http://em.21dtv.com/songs/60023452.mkv +江蕙-家后,http://em.21dtv.com/songs/60023006.mkv +黄小琥-家后(无原唱),http://em.21dtv.com/songs/60023005.mkv +孙耀威-记号,http://em.21dtv.com/songs/60022708.mkv +夹子道-记号,http://em.21dtv.com/songs/60022707.mkv +何韵诗-畸后,http://em.21dtv.com/songs/60022526.mkv +佚名-机会,http://em.21dtv.com/songs/60022508.mkv +潘玮柏-机会,http://em.21dtv.com/songs/60022507.mkv +郑兴琦-极光,http://em.21dtv.com/songs/60132989.mkv +叶玮庭-酒馆,http://em.21dtv.com/songs/60130169.mkv +杭盖乐队-酒歌,http://em.21dtv.com/songs/60124118.mkv +陈萝莉-酒馆,http://em.21dtv.com/songs/60120098.mkv +毕书尽-极光,http://em.21dtv.com/songs/60119747.mkv +印子月-借过,http://em.21dtv.com/songs/60112558.mkv +张玮伽-结果,http://em.21dtv.com/songs/60106861.mkv +蔡健雅-极光,http://em.21dtv.com/songs/60100451.mkv +张敬轩-结果,http://em.21dtv.com/songs/60095196.mkv +野乐男孩-经过,http://em.21dtv.com/songs/60083181.mkv +EDIQ-机关,http://em.21dtv.com/songs/60083098.mkv +张婧-经过,http://em.21dtv.com/songs/60076154.mkv +炎亚纶-借过,http://em.21dtv.com/songs/60076102.mkv +刘若英-经过,http://em.21dtv.com/songs/60072090.mkv +果子-酒歌,http://em.21dtv.com/songs/60070830.mkv +G-DRAGON-结果,http://em.21dtv.com/songs/60070811.mkv +薛佳凝-极光,http://em.21dtv.com/songs/60067102.mkv +陈楚生+何洁-经过,http://em.21dtv.com/songs/60066079.mkv +JW-juicy girl,http://em.21dtv.com/songs/60063646.mkv +陈胜-酒歌,http://em.21dtv.com/songs/60062270.mkv +糯米团-军歌,http://em.21dtv.com/songs/60024896.mkv +刘春云-绝歌(演唱会),http://em.21dtv.com/songs/60024839.mkv +郭浩男-酒鬼,http://em.21dtv.com/songs/60024412.mkv +佚名-酒歌,http://em.21dtv.com/songs/60024410.mkv +黄乙玲-酒歌,http://em.21dtv.com/songs/60024409.mkv +谭晶-酒歌(演唱会),http://em.21dtv.com/songs/60024408.mkv +佚名-九歌,http://em.21dtv.com/songs/60024305.mkv +JIN静-静冈,http://em.21dtv.com/songs/60024260.mkv +同级生-警告,http://em.21dtv.com/songs/60024240.mkv +彭佳慧-经过,http://em.21dtv.com/songs/60024196.mkv +邝祖德-矜贵,http://em.21dtv.com/songs/60024111.mkv +于震寰-金刚,http://em.21dtv.com/songs/60024044.mkv +叶启田-借过,http://em.21dtv.com/songs/60023719.mkv +容祖儿-借过,http://em.21dtv.com/songs/60023718.mkv +张蓉蓉-结果,http://em.21dtv.com/songs/60023614.mkv +辛晓琪-结果,http://em.21dtv.com/songs/60023613.mkv +花儿乐队-结果,http://em.21dtv.com/songs/60023612.mkv +郑秀文-结果(演唱会),http://em.21dtv.com/songs/60023611.mkv +黄思婷-结果(无原唱),http://em.21dtv.com/songs/60023610.mkv +佚名-济公,http://em.21dtv.com/songs/60022753.mkv +徐哲纬-极光,http://em.21dtv.com/songs/60022596.mkv +狄易达-just go,http://em.21dtv.com/songs/60003110.mkv +LIONEL RICHIE+AKON-just go,http://em.21dtv.com/songs/60003109.mkv +佚名-jessies girl,http://em.21dtv.com/songs/60003063.mkv +RICK SPRING FI-jessies girl,http://em.21dtv.com/songs/60003062.mkv +BRYAN FERRY-jealous guy,http://em.21dtv.com/songs/60003054.mkv +巨敏-家风,http://em.21dtv.com/songs/60125458.mkv +格西亚-减肥,http://em.21dtv.com/songs/60124153.mkv +曲丹-家风,http://em.21dtv.com/songs/60114574.mkv +羽泉-解放,http://em.21dtv.com/songs/60094250.mkv +新街口组合-教父,http://em.21dtv.com/songs/60085283.mkv +高山-祭父,http://em.21dtv.com/songs/60083107.mkv +罗敏庄-疾风(演唱会),http://em.21dtv.com/songs/60075963.mkv +罗永娟-减肥,http://em.21dtv.com/songs/60023227.mkv +秀兰玛雅-寄付,http://em.21dtv.com/songs/60022798.mkv +佚名-寄方,http://em.21dtv.com/songs/60022797.mkv +罗志祥-几分,http://em.21dtv.com/songs/60022648.mkv +陈百强-疾风,http://em.21dtv.com/songs/60022621.mkv +梅艳芳-疾风(演唱会),http://em.21dtv.com/songs/60022620.mkv +PAUL MCCARTNEY-juniors farm,http://em.21dtv.com/songs/60003094.mkv +佚名-jamaica farewell,http://em.21dtv.com/songs/60003050.mkv +石头-九儿,http://em.21dtv.com/songs/60134038.mkv +谭晶-九儿,http://em.21dtv.com/songs/60132896.mkv +张天赋-娟儿,http://em.21dtv.com/songs/60123918.mkv +石头-九儿,http://em.21dtv.com/songs/60120824.mkv +大张凡-九儿,http://em.21dtv.com/songs/60110961.mkv +韩红-九儿,http://em.21dtv.com/songs/60109728.mkv +韩红-九儿,http://em.21dtv.com/songs/60108147.mkv +胡莎莎-九儿,http://em.21dtv.com/songs/60107148.mkv +韩红-九儿,http://em.21dtv.com/songs/60106449.mkv +苏永康-饥饿,http://em.21dtv.com/songs/60022501.mkv +THE HOLLIES-jennifer eccles,http://em.21dtv.com/songs/60003059.mkv +洪荣宏-决定,http://em.21dtv.com/songs/60135509.mkv +冈林-戒赌,http://em.21dtv.com/songs/60126620.mkv +蔡妍-角度,http://em.21dtv.com/songs/60126148.mkv +米娜-句点,http://em.21dtv.com/songs/60124333.mkv +新街口组合-就打,http://em.21dtv.com/songs/60122778.mkv +俞胜恩+Kisum-嫉妒,http://em.21dtv.com/songs/60121389.mkv +张信哲-记得,http://em.21dtv.com/songs/60120499.mkv +不是桃乐丝-角度,http://em.21dtv.com/songs/60120272.mkv +秦博-简单,http://em.21dtv.com/songs/60118822.mkv +谢承佑-简单,http://em.21dtv.com/songs/60112964.mkv +张信哲-决定,http://em.21dtv.com/songs/60111058.mkv +张信哲-决定,http://em.21dtv.com/songs/60108482.mkv +张力尹+泳儿-记得,http://em.21dtv.com/songs/60105820.mkv +李祥祥-绝地,http://em.21dtv.com/songs/60105155.mkv +安七炫-记得,http://em.21dtv.com/songs/60104048.mkv +庄心妍-句点,http://em.21dtv.com/songs/60102181.mkv +茜拉-记得,http://em.21dtv.com/songs/60099463.mkv +方怡萍-简单(无原唱),http://em.21dtv.com/songs/60095543.mkv +黄奕-焦点,http://em.21dtv.com/songs/60095364.mkv +田震-精度,http://em.21dtv.com/songs/60091777.mkv +高秀敏+李美英-酒胆,http://em.21dtv.com/songs/60090333.mkv +郑源-句点,http://em.21dtv.com/songs/60088769.mkv +李琦-记得,http://em.21dtv.com/songs/60085255.mkv +檀烧-剪蝶,http://em.21dtv.com/songs/60083137.mkv +德格叶-记得,http://em.21dtv.com/songs/60083114.mkv +陈一玲-记得,http://em.21dtv.com/songs/60083113.mkv +周笔畅-嫉妒,http://em.21dtv.com/songs/60080863.mkv +胡夏-静电,http://em.21dtv.com/songs/60080553.mkv +陈楚生-焦点,http://em.21dtv.com/songs/60080448.mkv +陶辚竹-绝对,http://em.21dtv.com/songs/60076207.mkv +童丽-郊道,http://em.21dtv.com/songs/60076065.mkv +钟安妮-郊道(演唱会),http://em.21dtv.com/songs/60076064.mkv +晓华-郊道(演唱会),http://em.21dtv.com/songs/60076063.mkv +胡锦-郊道(演唱会),http://em.21dtv.com/songs/60076062.mkv +张超-假的,http://em.21dtv.com/songs/60076011.mkv +林志炫-记得,http://em.21dtv.com/songs/60075966.mkv +陈冠希+MC HOTDOG+李璨琛+MC仁+厨房仔-几点,http://em.21dtv.com/songs/60075964.mkv +钱红-绝对,http://em.21dtv.com/songs/60072101.mkv +李文婷-决斗,http://em.21dtv.com/songs/60067144.mkv +江宏恩-决定,http://em.21dtv.com/songs/60066090.mkv +郭静-静电,http://em.21dtv.com/songs/60064413.mkv +柳影虹-郊道(演唱会),http://em.21dtv.com/songs/60062695.mkv +李振全-戒掉,http://em.21dtv.com/songs/60061299.mkv +LADY GAGA-just dance(演唱会),http://em.21dtv.com/songs/60060848.mkv +何韵诗-绝对,http://em.21dtv.com/songs/60024827.mkv +陈少华-绝对,http://em.21dtv.com/songs/60024826.mkv +梁汉文-绝对(演唱会),http://em.21dtv.com/songs/60024825.mkv +张学友-决定,http://em.21dtv.com/songs/60024775.mkv +张峰奇-决定,http://em.21dtv.com/songs/60024774.mkv +袁小迪-决定,http://em.21dtv.com/songs/60024773.mkv +佚名-决定,http://em.21dtv.com/songs/60024772.mkv +施文斌-决定,http://em.21dtv.com/songs/60024771.mkv +刘若英-决定,http://em.21dtv.com/songs/60024770.mkv +林子祥-决定,http://em.21dtv.com/songs/60024769.mkv +林子祥-决定(演唱会),http://em.21dtv.com/songs/60024768.mkv +唐志玮-决定(无原唱),http://em.21dtv.com/songs/60024767.mkv +张玮纶-句点,http://em.21dtv.com/songs/60024728.mkv +糖糖乐团-句点,http://em.21dtv.com/songs/60024727.mkv +杨千嬅-旧地,http://em.21dtv.com/songs/60024504.mkv +陈一郎-酒胆(无原唱),http://em.21dtv.com/songs/60024395.mkv +郑进一+张瑞涵-经典,http://em.21dtv.com/songs/60024193.mkv +林海峰-经典,http://em.21dtv.com/songs/60024192.mkv +蛋堡-经典,http://em.21dtv.com/songs/60024191.mkv +王杰-街灯,http://em.21dtv.com/songs/60023578.mkv +林志颖-角度,http://em.21dtv.com/songs/60023482.mkv +梁汉文-角度,http://em.21dtv.com/songs/60023481.mkv +凌波-郊道,http://em.21dtv.com/songs/60023468.mkv +甄妮-郊道(演唱会),http://em.21dtv.com/songs/60023467.mkv +杨燕-郊道(演唱会),http://em.21dtv.com/songs/60023466.mkv +徐小凤-郊道(演唱会),http://em.21dtv.com/songs/60023465.mkv +静婷-郊道(演唱会),http://em.21dtv.com/songs/60023464.mkv +黑妹-郊道(演唱会),http://em.21dtv.com/songs/60023463.mkv +邓丽君-郊道(演唱会),http://em.21dtv.com/songs/60023462.mkv +秀兰玛雅-交代,http://em.21dtv.com/songs/60023447.mkv +梁汉文-舰队,http://em.21dtv.com/songs/60023319.mkv +梁汉文-舰队(演唱会),http://em.21dtv.com/songs/60023318.mkv +佚名-简单,http://em.21dtv.com/songs/60023247.mkv +熊宝贝乐团-简单,http://em.21dtv.com/songs/60023246.mkv +黄义达-简单,http://em.21dtv.com/songs/60023245.mkv +郭静-简单,http://em.21dtv.com/songs/60023244.mkv +许巍-简单(演唱会),http://em.21dtv.com/songs/60023243.mkv +罗时丰-坚定,http://em.21dtv.com/songs/60023191.mkv +梁小冰-悸动,http://em.21dtv.com/songs/60022796.mkv +郭静-悸动,http://em.21dtv.com/songs/60022795.mkv +佚名-悸动(无原唱),http://em.21dtv.com/songs/60022794.mkv +张惠妹-记得,http://em.21dtv.com/songs/60022682.mkv +萧敬腾-记得,http://em.21dtv.com/songs/60022681.mkv +刘浩龙-记得,http://em.21dtv.com/songs/60022680.mkv +林俊杰-记得,http://em.21dtv.com/songs/60022679.mkv +刘浩龙-记得(演唱会),http://em.21dtv.com/songs/60022678.mkv +郑伊健-几多,http://em.21dtv.com/songs/60022645.mkv +张智霖-嫉妒,http://em.21dtv.com/songs/60022630.mkv +陶晶莹-嫉妒,http://em.21dtv.com/songs/60022629.mkv +刘若英-嫉妒,http://em.21dtv.com/songs/60022628.mkv +阿妹妹-嫉妒,http://em.21dtv.com/songs/60022627.mkv +陈绮贞-嫉妒(演唱会),http://em.21dtv.com/songs/60022626.mkv +刘德华-激动,http://em.21dtv.com/songs/60022527.mkv +LADY GAGA+COLBY O'DO-just dance,http://em.21dtv.com/songs/60003103.mkv +绚香-jewelry day,http://em.21dtv.com/songs/60003070.mkv +王博轼-坚持,http://em.21dtv.com/songs/60132714.mkv +邓海-晶彩,http://em.21dtv.com/songs/60129655.mkv +邱贤桂-机场,http://em.21dtv.com/songs/60124553.mkv +吴超-坚持,http://em.21dtv.com/songs/60121501.mkv +刘天助-交错,http://em.21dtv.com/songs/60106635.mkv +沙宝亮-绝唱,http://em.21dtv.com/songs/60105214.mkv +林欣彤-几次,http://em.21dtv.com/songs/60105184.mkv +谢艺-坚持,http://em.21dtv.com/songs/60104437.mkv +裘海正-纠缠,http://em.21dtv.com/songs/60100460.mkv +回音哥+夏后-僵持,http://em.21dtv.com/songs/60098218.mkv +幻眼乐队-机场,http://em.21dtv.com/songs/60096686.mkv +深白色2人组-剪彩,http://em.21dtv.com/songs/60089404.mkv +薛岳-机场,http://em.21dtv.com/songs/60088613.mkv +姚贝娜-矜持,http://em.21dtv.com/songs/60081789.mkv +SHELLY佳+苏霏-旧城,http://em.21dtv.com/songs/60076179.mkv +苏永康-劲抽,http://em.21dtv.com/songs/60076150.mkv +杨宗纬-矜持(演唱会),http://em.21dtv.com/songs/60076145.mkv +关心妍-今次,http://em.21dtv.com/songs/60076107.mkv +回音哥+张雯杰-僵持,http://em.21dtv.com/songs/60076059.mkv +群星-坚持,http://em.21dtv.com/songs/60076031.mkv +张秀卿-旧厝(无原唱),http://em.21dtv.com/songs/60024503.mkv +黄乙玲-酒愁,http://em.21dtv.com/songs/60024394.mkv +黎瑞莲-酒场,http://em.21dtv.com/songs/60024386.mkv +汤宝如-纠缠,http://em.21dtv.com/songs/60024291.mkv +王菲-精彩,http://em.21dtv.com/songs/60024215.mkv +费翔-精彩,http://em.21dtv.com/songs/60024214.mkv +蔡健雅-精彩,http://em.21dtv.com/songs/60024213.mkv +T.R.Y-精彩(演唱会),http://em.21dtv.com/songs/60024212.mkv +蔡健雅-精采,http://em.21dtv.com/songs/60024211.mkv +模功传奇-精采(无原唱),http://em.21dtv.com/songs/60024210.mkv +萧潇-矜持,http://em.21dtv.com/songs/60024110.mkv +王菲-矜持,http://em.21dtv.com/songs/60024109.mkv +钟伟-坚持,http://em.21dtv.com/songs/60023187.mkv +张蓉蓉-坚持,http://em.21dtv.com/songs/60023186.mkv +翁立友-坚持,http://em.21dtv.com/songs/60023185.mkv +SOLER-坚持,http://em.21dtv.com/songs/60023184.mkv +女声-机场,http://em.21dtv.com/songs/60022503.mkv +男声-机场,http://em.21dtv.com/songs/60022502.mkv +WILL SMITH-just cruisin,http://em.21dtv.com/songs/60003102.mkv +白一凡-肩膀,http://em.21dtv.com/songs/60134031.mkv +温朋达-绝壁,http://em.21dtv.com/songs/60127179.mkv +孙浩雨-脚步,http://em.21dtv.com/songs/60110991.mkv +严爵+郭雪芙-结巴,http://em.21dtv.com/songs/60099716.mkv +施文彬-剧本,http://em.21dtv.com/songs/60095561.mkv +郑秀文-结冰,http://em.21dtv.com/songs/60093317.mkv +多亮-肩膀,http://em.21dtv.com/songs/60081872.mkv +陈洁灵-家变(演唱会),http://em.21dtv.com/songs/60075998.mkv +PALOMA FAITH-just be,http://em.21dtv.com/songs/60073451.mkv +张信哲-肩膀,http://em.21dtv.com/songs/60061292.mkv +童安格-诀别(无原唱),http://em.21dtv.com/songs/60024801.mkv +任贤齐-举杯,http://em.21dtv.com/songs/60024711.mkv +高向鹏+傅振辉-酒伴,http://em.21dtv.com/songs/60024383.mkv +郭富城-惊变,http://em.21dtv.com/songs/60024202.mkv +郭富城-惊变(演唱会),http://em.21dtv.com/songs/60024201.mkv +甲子蕙-结冰(无原唱),http://em.21dtv.com/songs/60023608.mkv +吴泓君-脚步,http://em.21dtv.com/songs/60023490.mkv +那英-脚步,http://em.21dtv.com/songs/60023489.mkv +王力宏-脚本,http://em.21dtv.com/songs/60023487.mkv +姚琇龄-狡辩,http://em.21dtv.com/songs/60023486.mkv +高耀太-鉴版,http://em.21dtv.com/songs/60023322.mkv +沈芳如-肩膀,http://em.21dtv.com/songs/60023214.mkv +聚点翻转-肩膀,http://em.21dtv.com/songs/60023213.mkv +罗文-家变,http://em.21dtv.com/songs/60022994.mkv +汪明荃-家变(演唱会),http://em.21dtv.com/songs/60022993.mkv +王蓉-加倍,http://em.21dtv.com/songs/60022955.mkv +佚名-just because,http://em.21dtv.com/songs/60003099.mkv +范晓萱-jingle bells,http://em.21dtv.com/songs/60003074.mkv +TWINS-jingle bells,http://em.21dtv.com/songs/60003073.mkv +HY-极爱,http://em.21dtv.com/songs/60134697.mkv +李维-劫爱,http://em.21dtv.com/songs/60133826.mkv +刘厚鹏-戒爱,http://em.21dtv.com/songs/60133399.mkv +莫日根-江岸,http://em.21dtv.com/songs/60132842.mkv +宋孟君-戒爱,http://em.21dtv.com/songs/60132378.mkv +肖镒舟-就爱,http://em.21dtv.com/songs/60119893.mkv +孙燕姿+ShiGGa Shay-简爱,http://em.21dtv.com/songs/60112627.mkv +萧敬腾+达瓦卓玛-剪爱,http://em.21dtv.com/songs/60111382.mkv +李佳薇-煎熬,http://em.21dtv.com/songs/60109418.mkv +小柒-煎熬,http://em.21dtv.com/songs/60104958.mkv +阿库-戒爱,http://em.21dtv.com/songs/60103649.mkv +田馥甄-将爱[演],http://em.21dtv.com/songs/60101142.mkv +东方传奇-戒爱,http://em.21dtv.com/songs/60095253.mkv +庞晓宇-简爱,http://em.21dtv.com/songs/60087773.mkv +陈思安+陈随意-借爱,http://em.21dtv.com/songs/60083163.mkv +关喆-剪爱,http://em.21dtv.com/songs/60083135.mkv +赵晗-煎熬,http://em.21dtv.com/songs/60081487.mkv +樊少华-囧爱,http://em.21dtv.com/songs/60076165.mkv +黄绮珊-剪爱),http://em.21dtv.com/songs/60076035.mkv +纪晓斌-戒爱,http://em.21dtv.com/songs/60072078.mkv +方炯镔-剪爱,http://em.21dtv.com/songs/60070796.mkv +常健鸿-救爱,http://em.21dtv.com/songs/60066086.mkv +阮以伟-简爱,http://em.21dtv.com/songs/60064387.mkv +李佳薇-煎熬,http://em.21dtv.com/songs/60062594.mkv +柯以敏-旧爱(演唱会),http://em.21dtv.com/songs/60024496.mkv +林晏如-酒啊,http://em.21dtv.com/songs/60024382.mkv +郭燕-戒爱,http://em.21dtv.com/songs/60023692.mkv +张学友-骄傲,http://em.21dtv.com/songs/60023472.mkv +张惠妹-骄傲,http://em.21dtv.com/songs/60023471.mkv +小E-骄傲,http://em.21dtv.com/songs/60023470.mkv +王菲-将爱,http://em.21dtv.com/songs/60023365.mkv +黎明-简爱(演唱会),http://em.21dtv.com/songs/60023242.mkv +张惠妹-剪爱,http://em.21dtv.com/songs/60023233.mkv +深夜地下铁-剪爱,http://em.21dtv.com/songs/60023232.mkv +张惠妹-剪爱(演唱会),http://em.21dtv.com/songs/60023231.mkv +于台烟-煎熬,http://em.21dtv.com/songs/60023226.mkv +孙协志+王心凌-煎熬,http://em.21dtv.com/songs/60023225.mkv +林姗-假爱,http://em.21dtv.com/songs/60023074.mkv +佚名-johnny angel,http://em.21dtv.com/songs/60003078.mkv +李琦-Im Yours,http://em.21dtv.com/songs/60081516.mkv +芭比-its you,http://em.21dtv.com/songs/60003031.mkv +SUPER JUNIOR-its you,http://em.21dtv.com/songs/60003030.mkv +CHER LLOYD+T.I.-i wish,http://em.21dtv.com/songs/60084723.mkv +ONE DIRECTION-i wish,http://em.21dtv.com/songs/60073408.mkv +FT ISLAND-i wish,http://em.21dtv.com/songs/60070353.mkv +OLIVIA-invisible wings,http://em.21dtv.com/songs/60063642.mkv +D.BARTHOLOMEW-A.DOMI-im walkin(无原唱),http://em.21dtv.com/songs/60002893.mkv +熊天平-i wish,http://em.21dtv.com/songs/60002734.mkv +MAY S-i wish,http://em.21dtv.com/songs/60002733.mkv +林子祥-i wish(演唱会),http://em.21dtv.com/songs/60002732.mkv +佚名-i will,http://em.21dtv.com/songs/60002728.mkv +佚名-i will(演唱会),http://em.21dtv.com/songs/60002727.mkv +佚名-i understand,http://em.21dtv.com/songs/60002678.mkv +林育群-i understand,http://em.21dtv.com/songs/60002677.mkv +BACKSTREET BOYS-its true,http://em.21dtv.com/songs/60003029.mkv +RUN D M C-its tricky,http://em.21dtv.com/songs/60003028.mkv +佚名-i try,http://em.21dtv.com/songs/60002675.mkv +KIRK FRANKLIN-I Smile,http://em.21dtv.com/songs/60099670.mkv +东方神起-i swear,http://em.21dtv.com/songs/60073400.mkv +胡白-i swear,http://em.21dtv.com/songs/60066661.mkv +张崇基+张崇德-i swear(演唱会),http://em.21dtv.com/songs/60063634.mkv +BACKSTREET-i still,http://em.21dtv.com/songs/60063633.mkv +佚名-im sorry,http://em.21dtv.com/songs/60002886.mkv +顺子-im sorry,http://em.21dtv.com/songs/60002884.mkv +陈雷-im sorry,http://em.21dtv.com/songs/60002883.mkv +BRENDA LEE-im sorry,http://em.21dtv.com/songs/60002882.mkv +JOHN DENVER-im sorry(演唱会),http://em.21dtv.com/songs/60002881.mkv +佚名-i swear,http://em.21dtv.com/songs/60002668.mkv +群星-i swear,http://em.21dtv.com/songs/60002667.mkv +ALL 4 ONE-i swear,http://em.21dtv.com/songs/60002666.mkv +BACKSTREET BOYS-i still,http://em.21dtv.com/songs/60002665.mkv +莫文蔚-i say,http://em.21dtv.com/songs/60002650.mkv +莫文蔚-i say(演唱会),http://em.21dtv.com/songs/60002649.mkv +郭采洁-I Remember,http://em.21dtv.com/songs/60096517.mkv +F.I.R-I Remember,http://em.21dtv.com/songs/60096147.mkv +BANG YONG KUK-i remember,http://em.21dtv.com/songs/60073397.mkv +房勇国-i remember,http://em.21dtv.com/songs/60060830.mkv +JENNIFER LOPEZ-im real,http://em.21dtv.com/songs/60002876.mkv +TEVIN CAMPBELL-im ready,http://em.21dtv.com/songs/60002875.mkv +MADONNA-ill remember,http://em.21dtv.com/songs/60002844.mkv +SMALL FACES-itchycoo park,http://em.21dtv.com/songs/60002983.mkv +CIARA+NICKI MINAJ-im out,http://em.21dtv.com/songs/60082209.mkv +山下智久-inside outside,http://em.21dtv.com/songs/60070358.mkv +佚名-its over,http://em.21dtv.com/songs/60003017.mkv +阮筱芬-its over,http://em.21dtv.com/songs/60003016.mkv +佚名-its ok,http://em.21dtv.com/songs/60003013.mkv +MAXWELL-its ok,http://em.21dtv.com/songs/60003012.mkv +DJMAXWELL-its ok,http://em.21dtv.com/songs/60003011.mkv +DEMI LOVATO-In Case,http://em.21dtv.com/songs/60101209.mkv +MAVERICK SABRE-i need,http://em.21dtv.com/songs/60073395.mkv +卢广仲-i no,http://em.21dtv.com/songs/60002633.mkv +张玮琁-I'M FINE,http://em.21dtv.com/songs/60096619.mkv +MADONNA-I'M ADDICTED,http://em.21dtv.com/songs/60096618.mkv +AAA-i$m,http://em.21dtv.com/songs/60070354.mkv +付辛博-Its Love,http://em.21dtv.com/songs/60080500.mkv +PITBULL+CHRIS BROWN-international love,http://em.21dtv.com/songs/60066664.mkv +孙威-im leo,http://em.21dtv.com/songs/60002869.mkv +毕书尽(BII)-I Know,http://em.21dtv.com/songs/60080086.mkv +桥本江莉果-i know,http://em.21dtv.com/songs/60062830.mkv +DIONNE FARRIS-i know,http://em.21dtv.com/songs/60002566.mkv +JUNIEL-illa illa,http://em.21dtv.com/songs/60070357.mkv +佚名-its impossible,http://em.21dtv.com/songs/60002996.mkv +许阁-it hurts,http://em.21dtv.com/songs/60073444.mkv +JYJ-in heaven,http://em.21dtv.com/songs/60073437.mkv +LENA PHILIPSSON-it hurts,http://em.21dtv.com/songs/60002972.mkv +2NE1-it hurts,http://em.21dtv.com/songs/60002971.mkv +A PINK-it girl,http://em.21dtv.com/songs/60060841.mkv +丁爽-it girl,http://em.21dtv.com/songs/60002970.mkv +ELTON JOHN-island girl,http://em.21dtv.com/songs/60002965.mkv +AILEE-ice flower,http://em.21dtv.com/songs/60073410.mkv +JANE'S ADDICTION-irresistible force,http://em.21dtv.com/songs/60065621.mkv +KIM YUNA+IU-ice flower,http://em.21dtv.com/songs/60060834.mkv +刘德华-im easy,http://em.21dtv.com/songs/60002856.mkv +允儿-innisfree day,http://em.21dtv.com/songs/60082214.mkv +COLBIE CAILLAT-i do,http://em.21dtv.com/songs/60073375.mkv +SIRSA SHEKIM-i do,http://em.21dtv.com/songs/60066657.mkv +佚名-in dreams,http://em.21dtv.com/songs/60002908.mkv +舒淇+刘德华-i do,http://em.21dtv.com/songs/60002484.mkv +潘玮柏+杜诗梅-i do,http://em.21dtv.com/songs/60002483.mkv +刘春华-i do,http://em.21dtv.com/songs/60002482.mkv +何紫慧-i do,http://em.21dtv.com/songs/60002481.mkv +阿杜-i do,http://em.21dtv.com/songs/60002480.mkv +98 DEGREES-i do,http://em.21dtv.com/songs/60002479.mkv +林俊杰-i do(演唱会),http://em.21dtv.com/songs/60002478.mkv +泫雅+MABOOS-ice cream,http://em.21dtv.com/songs/60073409.mkv +FLO RIDA-i cry,http://em.21dtv.com/songs/60073373.mkv +BLUE-i can,http://em.21dtv.com/songs/60073369.mkv +胡彦斌-in city(演唱会),http://em.21dtv.com/songs/60002906.mkv +金贵晟-I Believe,http://em.21dtv.com/songs/60100527.mkv +朱桦-i believe,http://em.21dtv.com/songs/60082196.mkv +纪敏佳-i believe,http://em.21dtv.com/songs/60082195.mkv +多亮-i believe,http://em.21dtv.com/songs/60073368.mkv +张萌萌-i believe,http://em.21dtv.com/songs/60063624.mkv +MC梦-indian boy,http://em.21dtv.com/songs/60060838.mkv +EDWIN MCCAIN-ill be,http://em.21dtv.com/songs/60002828.mkv +佚名-i believe,http://em.21dtv.com/songs/60002437.mkv +陶喆-i believe,http://em.21dtv.com/songs/60002435.mkv +孙楠-i believe,http://em.21dtv.com/songs/60002434.mkv +石欣卉-i believe,http://em.21dtv.com/songs/60002433.mkv +刘若英-i believe,http://em.21dtv.com/songs/60002432.mkv +何嘉莉-i believe,http://em.21dtv.com/songs/60002431.mkv +范逸臣-i believe,http://em.21dtv.com/songs/60002430.mkv +杜德伟-i believe,http://em.21dtv.com/songs/60002429.mkv +阿生-i believe,http://em.21dtv.com/songs/60002428.mkv +TATA YOUNG-i believe,http://em.21dtv.com/songs/60002427.mkv +郑少秋-i believe(演唱会),http://em.21dtv.com/songs/60002426.mkv +杨坤-i believe(演唱会),http://em.21dtv.com/songs/60002425.mkv +黄品源-i believe(演唱会),http://em.21dtv.com/songs/60002424.mkv +黄凯芹-i believe(演唱会),http://em.21dtv.com/songs/60002423.mkv +戴佩妮-its alright(演唱会),http://em.21dtv.com/songs/60002993.mkv +CELINE DION-im alive,http://em.21dtv.com/songs/60002853.mkv +CELINE DION-im alive(演唱会),http://em.21dtv.com/songs/60002852.mkv +游喧-i am,http://em.21dtv.com/songs/60002414.mkv +林俊杰-i am,http://em.21dtv.com/songs/60002413.mkv +9NINE-チクタク☆2nite,http://em.21dtv.com/songs/60082439.mkv +安心亚-哈啰,http://em.21dtv.com/songs/60104941.mkv +安心亚-哈啰(演唱会),http://em.21dtv.com/songs/60104052.mkv +郝云-活着,http://em.21dtv.com/songs/60095106.mkv +龙梅子+老猫-hold住爱,http://em.21dtv.com/songs/60082182.mkv +阿吉仔-憨子,http://em.21dtv.com/songs/60135873.mkv +任子墨-孩子,http://em.21dtv.com/songs/60134874.mkv +鲍鹏-孩子,http://em.21dtv.com/songs/60134481.mkv +陈粒-好在,http://em.21dtv.com/songs/60134418.mkv +排骨教主-红妆,http://em.21dtv.com/songs/60133740.mkv +信乐团-活着,http://em.21dtv.com/songs/60133376.mkv +李志-杭州,http://em.21dtv.com/songs/60127018.mkv +李沛欣-孩子,http://em.21dtv.com/songs/60124085.mkv +DIMENSION-活着,http://em.21dtv.com/songs/60123458.mkv +梁川宇-花醉,http://em.21dtv.com/songs/60119735.mkv +金池-混账,http://em.21dtv.com/songs/60115460.mkv +西楼-孩子,http://em.21dtv.com/songs/60114046.mkv +郑仁-活着,http://em.21dtv.com/songs/60105424.mkv +程楚煜-孩子,http://em.21dtv.com/songs/60100354.mkv +格格-红妆,http://em.21dtv.com/songs/60100236.mkv +基地小虎-壶镇,http://em.21dtv.com/songs/60099898.mkv +张铠麟-行走,http://em.21dtv.com/songs/60096699.mkv +罗文聪+林良欢-红烛,http://em.21dtv.com/songs/60095842.mkv +林良欢+罗文聪-红烛,http://em.21dtv.com/songs/60095707.mkv +李代沫-患者,http://em.21dtv.com/songs/60094927.mkv +谢安琪-活著,http://em.21dtv.com/songs/60093176.mkv +李琛-孩子,http://em.21dtv.com/songs/60091346.mkv +任贤齐-活着,http://em.21dtv.com/songs/60090561.mkv +林秋燕-孩子,http://em.21dtv.com/songs/60090006.mkv +汪苏泷-合照,http://em.21dtv.com/songs/60086591.mkv +杨静+庄振凯-火种,http://em.21dtv.com/songs/60083097.mkv +蓝月心-火种,http://em.21dtv.com/songs/60080609.mkv +蔡卓妍-活着,http://em.21dtv.com/songs/60080090.mkv +西子-红妆,http://em.21dtv.com/songs/60075799.mkv +李志-杭州,http://em.21dtv.com/songs/60075667.mkv +林欣彤-海贼(演唱会),http://em.21dtv.com/songs/60075656.mkv +至上励合-还在,http://em.21dtv.com/songs/60070774.mkv +李霞-hold住(演唱会),http://em.21dtv.com/songs/60069090.mkv +乐天乐团-活着,http://em.21dtv.com/songs/60068351.mkv +阿超-孩子,http://em.21dtv.com/songs/60067048.mkv +杨宗纬-怀珠,http://em.21dtv.com/songs/60063253.mkv +红花乐团-孩子,http://em.21dtv.com/songs/60062450.mkv +丁锐-hold住,http://em.21dtv.com/songs/60062324.mkv +汤非-火种,http://em.21dtv.com/songs/60061275.mkv +梁文音-孩子,http://em.21dtv.com/songs/60061227.mkv +王菲-或者,http://em.21dtv.com/songs/60022494.mkv +夏韶声-火种(演唱会),http://em.21dtv.com/songs/60022483.mkv +朴树-活着,http://em.21dtv.com/songs/60022387.mkv +萧敬腾-活着(演唱会),http://em.21dtv.com/songs/60022386.mkv +柯有伦-活着(演唱会),http://em.21dtv.com/songs/60022385.mkv +谭咏麟-回赠,http://em.21dtv.com/songs/60022257.mkv +谭咏麟-回赠(演唱会),http://em.21dtv.com/songs/60022256.mkv +何嘉文-画妆(无原唱),http://em.21dtv.com/songs/60021621.mkv +李蕙敏-化妆,http://em.21dtv.com/songs/60021599.mkv +同恩-花葬,http://em.21dtv.com/songs/60021551.mkv +姚黛玮-护照,http://em.21dtv.com/songs/60021303.mkv +许绍洋-胡渣,http://em.21dtv.com/songs/60021220.mkv +佚名-乎醉,http://em.21dtv.com/songs/60021144.mkv +李嘉-乎醉,http://em.21dtv.com/songs/60021143.mkv +徐良+阿俏-红装,http://em.21dtv.com/songs/60021045.mkv +希莉娜依-红装,http://em.21dtv.com/songs/60021044.mkv +钟舒漫-红砖,http://em.21dtv.com/songs/60021041.mkv +古巨基-黑仔,http://em.21dtv.com/songs/60020601.mkv +群星-孩子,http://em.21dtv.com/songs/60019674.mkv +黄贯中-孩子,http://em.21dtv.com/songs/60019673.mkv +陈绮贞-孩子,http://em.21dtv.com/songs/60019672.mkv +张宇-还早,http://em.21dtv.com/songs/60019671.mkv +蔡滢萱-还在,http://em.21dtv.com/songs/60019669.mkv +北原山猫-哈族(无原唱),http://em.21dtv.com/songs/60019567.mkv +林伟龙-红颜,http://em.21dtv.com/songs/60128121.mkv +高进-还要,http://em.21dtv.com/songs/60134474.mkv +阿但-回忆,http://em.21dtv.com/songs/60133024.mkv +刘子琪-鸿雁,http://em.21dtv.com/songs/60132242.mkv +阿译-晃悠,http://em.21dtv.com/songs/60131929.mkv +奇然-画影,http://em.21dtv.com/songs/60131310.mkv +苏伟-胡杨,http://em.21dtv.com/songs/60127328.mkv +胡斌-鸿雁,http://em.21dtv.com/songs/60127311.mkv +河图+洛天依-狐言,http://em.21dtv.com/songs/60125865.mkv +金婷婷-鸿雁,http://em.21dtv.com/songs/60123256.mkv +陈文浩-海燕,http://em.21dtv.com/songs/60122236.mkv +刘冲-鸿雁,http://em.21dtv.com/songs/60121424.mkv +魏新雨-画颜,http://em.21dtv.com/songs/60120153.mkv +罗相宜-花影,http://em.21dtv.com/songs/60119880.mkv +谭维维-花夜,http://em.21dtv.com/songs/60118917.mkv +陈俐俐-鸿雁,http://em.21dtv.com/songs/60118143.mkv +项毅-谎言,http://em.21dtv.com/songs/60116375.mkv +金钰儿-花雨,http://em.21dtv.com/songs/60116313.mkv +邓福如-黑羊,http://em.21dtv.com/songs/60115437.mkv +李玉刚(绝代歌姬)-红颜,http://em.21dtv.com/songs/60114608.mkv +呼斯楞-鸿雁,http://em.21dtv.com/songs/60114457.mkv +林世俊-谎言,http://em.21dtv.com/songs/60112794.mkv +程鸣-画颜,http://em.21dtv.com/songs/60111338.mkv +陈翔-洄游,http://em.21dtv.com/songs/60109705.mkv +段红-红颜,http://em.21dtv.com/songs/60109481.mkv +马常宝-鸿雁,http://em.21dtv.com/songs/60109030.mkv +王琳玲-鸿雁,http://em.21dtv.com/songs/60108726.mkv +徐莺洛-红叶,http://em.21dtv.com/songs/60108524.mkv +魏新雨-红衣,http://em.21dtv.com/songs/60108168.mkv +梦然-画颜,http://em.21dtv.com/songs/60107844.mkv +林凡-还原,http://em.21dtv.com/songs/60103390.mkv +周深-欢颜,http://em.21dtv.com/songs/60103161.mkv +黄征-鸿雁,http://em.21dtv.com/songs/60100676.mkv +常石磊+萨顶顶-鸿雁,http://em.21dtv.com/songs/60098320.mkv +山子華-谎言,http://em.21dtv.com/songs/60098306.mkv +海威-黑夜,http://em.21dtv.com/songs/60096807.mkv +胡彦斌-红颜(新版),http://em.21dtv.com/songs/60096710.mkv +曹芙嘉-红叶,http://em.21dtv.com/songs/60096709.mkv +苗苗-鸿雁,http://em.21dtv.com/songs/60096479.mkv +欧阳铭芮-鸿雁(演唱会),http://em.21dtv.com/songs/60096378.mkv +林志炫-欢颜(演唱会),http://em.21dtv.com/songs/60096355.mkv +李盈萱-红云(无原唱),http://em.21dtv.com/songs/60095624.mkv +石欣卉-谎言,http://em.21dtv.com/songs/60095334.mkv +黄乙玲-害呀,http://em.21dtv.com/songs/60095172.mkv +湘唯一-回忆,http://em.21dtv.com/songs/60094581.mkv +AT17-黑羊,http://em.21dtv.com/songs/60092136.mkv +动力火车-荒野,http://em.21dtv.com/songs/60090757.mkv +馨梓-海韵,http://em.21dtv.com/songs/60090320.mkv +莫文蔚-黑雨,http://em.21dtv.com/songs/60088564.mkv +[Group] +groupName=十六万歌曲MV等 - 08 +马剑芬-花漾,http://em.21dtv.com/songs/60086607.mkv +许云上-回忆,http://em.21dtv.com/songs/60085243.mkv +李菓-谎言,http://em.21dtv.com/songs/60085235.mkv +杜德伟-好样,http://em.21dtv.com/songs/60085179.mkv +云杰+布仁巴雅尔-鸿雁,http://em.21dtv.com/songs/60081434.mkv +王菀之-幻影,http://em.21dtv.com/songs/60080738.mkv +陈翔-回应,http://em.21dtv.com/songs/60075926.mkv +范海荣-鸿雁,http://em.21dtv.com/songs/60075804.mkv +德龙-鸿雁,http://em.21dtv.com/songs/60075803.mkv +布仁巴雅尔+云杰-鸿雁,http://em.21dtv.com/songs/60075802.mkv +沙宝亮-鸿雁),http://em.21dtv.com/songs/60075801.mkv +MC HOTDOG-海洋,http://em.21dtv.com/songs/60075655.mkv +CNBLUE-hey you(演唱会),http://em.21dtv.com/songs/60073333.mkv +范海荣-鸿雁(演唱会),http://em.21dtv.com/songs/60072011.mkv +吴淑敏-红颜,http://em.21dtv.com/songs/60070752.mkv +云杰-鸿雁,http://em.21dtv.com/songs/60069466.mkv +王莉-鸿雁(演唱会),http://em.21dtv.com/songs/60069465.mkv +平安-欢颜,http://em.21dtv.com/songs/60069312.mkv +李欧-回忆,http://em.21dtv.com/songs/60066043.mkv +李果-谎言,http://em.21dtv.com/songs/60064344.mkv +阿茹娜-画影,http://em.21dtv.com/songs/60064329.mkv +子祺-鸿雁,http://em.21dtv.com/songs/60063488.mkv +呼斯楞-鸿雁,http://em.21dtv.com/songs/60062457.mkv +恒仔-回忆,http://em.21dtv.com/songs/60061272.mkv +ERIKA-欢颜,http://em.21dtv.com/songs/60061263.mkv +周柏豪-后援,http://em.21dtv.com/songs/60061254.mkv +SOLER-海洋(演唱会),http://em.21dtv.com/songs/60061230.mkv +2NE1-hate you,http://em.21dtv.com/songs/60060815.mkv +任贤齐-火焰,http://em.21dtv.com/songs/60022473.mkv +EO2-魂游(演唱会),http://em.21dtv.com/songs/60022343.mkv +钟镇涛-回忆,http://em.21dtv.com/songs/60022243.mkv +佚名-回忆,http://em.21dtv.com/songs/60022242.mkv +韦嘉-回忆,http://em.21dtv.com/songs/60022241.mkv +马浚伟-回忆,http://em.21dtv.com/songs/60022240.mkv +黄丽姬-回忆,http://em.21dtv.com/songs/60022239.mkv +根呷-回忆,http://em.21dtv.com/songs/60022238.mkv +樊凡-回忆,http://em.21dtv.com/songs/60022237.mkv +陈瑞-回忆,http://em.21dtv.com/songs/60022236.mkv +费翔-回忆(演唱会),http://em.21dtv.com/songs/60022235.mkv +许美霞-回忆(无原唱),http://em.21dtv.com/songs/60022234.mkv +罗百吉+曼伶-回忆(无原唱),http://em.21dtv.com/songs/60022233.mkv +佚名-谎言,http://em.21dtv.com/songs/60022013.mkv +杨家成-谎言,http://em.21dtv.com/songs/60022012.mkv +陈奕迅-谎言(演唱会),http://em.21dtv.com/songs/60022011.mkv +杨克强-谎言(无原唱),http://em.21dtv.com/songs/60022010.mkv +杨家成-慌言,http://em.21dtv.com/songs/60021874.mkv +戴辛尉-荒原(无原唱),http://em.21dtv.com/songs/60021868.mkv +谭咏麟-幻影,http://em.21dtv.com/songs/60021826.mkv +张学友-幻影(演唱会),http://em.21dtv.com/songs/60021825.mkv +夏韶声-幻影(演唱会),http://em.21dtv.com/songs/60021824.mkv +王菀之-幻影(演唱会),http://em.21dtv.com/songs/60021823.mkv +谭咏麟+李克勤-幻影(演唱会),http://em.21dtv.com/songs/60021822.mkv +黄凯芹-幻影(演唱会),http://em.21dtv.com/songs/60021821.mkv +夏国星+孙佩林-欢迎,http://em.21dtv.com/songs/60021793.mkv +邹芮-欢颜,http://em.21dtv.com/songs/60021792.mkv +齐豫-欢颜(演唱会),http://em.21dtv.com/songs/60021791.mkv +陆毅-怀疑,http://em.21dtv.com/songs/60021679.mkv +王菀之-画意,http://em.21dtv.com/songs/60021615.mkv +张也-花月,http://em.21dtv.com/songs/60021546.mkv +佚名-花园,http://em.21dtv.com/songs/60021544.mkv +梁静茹-花园,http://em.21dtv.com/songs/60021543.mkv +郭燕-花语,http://em.21dtv.com/songs/60021542.mkv +苏慧伦-花样,http://em.21dtv.com/songs/60021524.mkv +谢霆锋-后遗,http://em.21dtv.com/songs/60021121.mkv +降央卓玛-鸿雁,http://em.21dtv.com/songs/60021066.mkv +格格-鸿雁,http://em.21dtv.com/songs/60021065.mkv +额尔古纳乐队-鸿雁,http://em.21dtv.com/songs/60021064.mkv +周柏豪-宏愿,http://em.21dtv.com/songs/60021048.mkv +孟庭苇-红雨,http://em.21dtv.com/songs/60021032.mkv +小肥-红叶,http://em.21dtv.com/songs/60021025.mkv +陈雷-红叶,http://em.21dtv.com/songs/60021024.mkv +堂娜-红颜,http://em.21dtv.com/songs/60021000.mkv +罗时丰-红颜,http://em.21dtv.com/songs/60020999.mkv +江美丽-红颜,http://em.21dtv.com/songs/60020998.mkv +胡彦斌-红颜,http://em.21dtv.com/songs/60020997.mkv +叶丽仪-红颜(演唱会),http://em.21dtv.com/songs/60020996.mkv +佚名-红颜(无原唱),http://em.21dtv.com/songs/60020995.mkv +胡彦斌-黑雨,http://em.21dtv.com/songs/60020600.mkv +王建杰-黑影,http://em.21dtv.com/songs/60020599.mkv +谢霆锋-黑夜,http://em.21dtv.com/songs/60020581.mkv +心薇-黑夜(无原唱),http://em.21dtv.com/songs/60020580.mkv +洪卓立-好友,http://em.21dtv.com/songs/60020257.mkv +何润东-罕有,http://em.21dtv.com/songs/60019918.mkv +卓依婷-海韵,http://em.21dtv.com/songs/60019830.mkv +韩宝仪-海韵,http://em.21dtv.com/songs/60019829.mkv +邓丽君-海韵,http://em.21dtv.com/songs/60019828.mkv +邓丽君-海韵(演唱会),http://em.21dtv.com/songs/60019827.mkv +陈浩德-海韵(演唱会),http://em.21dtv.com/songs/60019826.mkv +陈建年-海洋(无原唱),http://em.21dtv.com/songs/60019820.mkv +周传雄-还原,http://em.21dtv.com/songs/60019668.mkv +王杰+林忆莲-还有,http://em.21dtv.com/songs/60019658.mkv +王杰+容祖儿-还有(演唱会),http://em.21dtv.com/songs/60019657.mkv +王杰+何嘉莉-还有(演唱会),http://em.21dtv.com/songs/60019656.mkv +李宗盛+林忆莲-还有(演唱会),http://em.21dtv.com/songs/60019655.mkv +梁咏琪-换约,http://em.21dtv.com/songs/60015973.mkv +章晨洋-怀疑,http://em.21dtv.com/songs/60010597.mkv +田震-hi呀(演唱会),http://em.21dtv.com/songs/60002282.mkv +田震-hi呀,http://em.21dtv.com/songs/60002257.mkv +SUNBOY'Z-hey you,http://em.21dtv.com/songs/60002253.mkv +佚名-help yourself,http://em.21dtv.com/songs/60002198.mkv +乔幼-寒心,http://em.21dtv.com/songs/60131141.mkv +张靓颖-画心,http://em.21dtv.com/songs/60135257.mkv +Seventeen-欢笑,http://em.21dtv.com/songs/60134795.mkv +关德辉-好想,http://em.21dtv.com/songs/60130098.mkv +乔幼-寒心,http://em.21dtv.com/songs/60130046.mkv +慢摇舞曲-花心(2013ClubDance Dj永恒 Remix),http://em.21dtv.com/songs/30000585.mkv +高佳-海笑,http://em.21dtv.com/songs/60128612.mkv +周杰伦战队-恒星,http://em.21dtv.com/songs/60126723.mkv +金久哲-红线,http://em.21dtv.com/songs/60121020.mkv +信-花心,http://em.21dtv.com/songs/60120335.mkv +央吉玛-花心,http://em.21dtv.com/songs/60117643.mkv +李炎-狐仙,http://em.21dtv.com/songs/60116919.mkv +姜斌斌-寒暄,http://em.21dtv.com/songs/60115779.mkv +许茹芸-花心,http://em.21dtv.com/songs/60115397.mkv +樊凡-换向,http://em.21dtv.com/songs/60113756.mkv +张鑫鑫-恒星,http://em.21dtv.com/songs/60113498.mkv +杨坤+黄莉-花心,http://em.21dtv.com/songs/60112015.mkv +李明洋-红线,http://em.21dtv.com/songs/60108570.mkv +ZE∶A-呼吸,http://em.21dtv.com/songs/60108256.mkv +春藤家族-回响,http://em.21dtv.com/songs/60105939.mkv +小乔-海心,http://em.21dtv.com/songs/60104076.mkv +朱康-或许,http://em.21dtv.com/songs/60103341.mkv +汪峰-恒星,http://em.21dtv.com/songs/60102452.mkv +信-花心,http://em.21dtv.com/songs/60100766.mkv +瑶琴-红线,http://em.21dtv.com/songs/60100333.mkv +吴灿涛-荷香,http://em.21dtv.com/songs/60099872.mkv +吴是闳-或许,http://em.21dtv.com/songs/60096732.mkv +一晨-幻想,http://em.21dtv.com/songs/60096668.mkv +林志炫-花香(演唱会),http://em.21dtv.com/songs/60096358.mkv +林文隆-黑熊,http://em.21dtv.com/songs/60095673.mkv +阿悄-红线,http://em.21dtv.com/songs/60095231.mkv +许美静-呼吸,http://em.21dtv.com/songs/60092070.mkv +古皓-换心,http://em.21dtv.com/songs/60090785.mkv +何静-回想,http://em.21dtv.com/songs/60090611.mkv +许茹芸+苏永康-恒心,http://em.21dtv.com/songs/60088649.mkv +HIT-5-唤醒,http://em.21dtv.com/songs/60083078.mkv +张恒远-恒星,http://em.21dtv.com/songs/60081576.mkv +谭晶-红线,http://em.21dtv.com/songs/60081393.mkv +ROBYNN+KENDY-或许,http://em.21dtv.com/songs/60075949.mkv +王祖蓝-活现,http://em.21dtv.com/songs/60075939.mkv +方伊琪-花心(演唱会),http://em.21dtv.com/songs/60075853.mkv +花は咲く-花は咲くプロジェクト,http://em.21dtv.com/songs/60075832.mkv +马诺-好想,http://em.21dtv.com/songs/60075690.mkv +刘庭羽-含香,http://em.21dtv.com/songs/60075660.mkv +李雪-回乡,http://em.21dtv.com/songs/60069481.mkv +白燕升-呼吸,http://em.21dtv.com/songs/60068326.mkv +刘程伊-花仙,http://em.21dtv.com/songs/60064324.mkv +黄鸿升-黑心,http://em.21dtv.com/songs/60064296.mkv +容中尔甲-怀想,http://em.21dtv.com/songs/60062878.mkv +C蓝-回乡,http://em.21dtv.com/songs/60061997.mkv +杨丞琳-火星(演唱会),http://em.21dtv.com/songs/60061274.mkv +罗家宝+倪惠英-火殉,http://em.21dtv.com/songs/60022472.mkv +林冠吟-火星,http://em.21dtv.com/songs/60022469.mkv +动力火车-回想,http://em.21dtv.com/songs/60022212.mkv +樱花姐妹-回乡,http://em.21dtv.com/songs/60022205.mkv +蓝星-回乡,http://em.21dtv.com/songs/60022204.mkv +樱花姐妹-回乡(无原唱),http://em.21dtv.com/songs/60022203.mkv +孙悦-幻想,http://em.21dtv.com/songs/60021819.mkv +阿杜-幻想,http://em.21dtv.com/songs/60021818.mkv +张学友-幻想(演唱会),http://em.21dtv.com/songs/60021817.mkv +张靓颖-画心,http://em.21dtv.com/songs/60021614.mkv +卓依婷-花心,http://em.21dtv.com/songs/60021511.mkv +周华健-花心,http://em.21dtv.com/songs/60021510.mkv +刘德华-花心,http://em.21dtv.com/songs/60021509.mkv +周华健-花心(演唱会),http://em.21dtv.com/songs/60021508.mkv +许绍洋-花香,http://em.21dtv.com/songs/60021503.mkv +龙千玉-花香,http://em.21dtv.com/songs/60021502.mkv +江蕙-花香,http://em.21dtv.com/songs/60021501.mkv +费翔-弧形,http://em.21dtv.com/songs/60021202.mkv +梁汉文-呼吸,http://em.21dtv.com/songs/60021170.mkv +柯有伦-呼吸,http://em.21dtv.com/songs/60021169.mkv +蔡健雅-呼吸,http://em.21dtv.com/songs/60021168.mkv +BEAST-呼吸,http://em.21dtv.com/songs/60021167.mkv +梁汉文-呼吸(演唱会),http://em.21dtv.com/songs/60021166.mkv +蔡健雅-呼吸(演唱会),http://em.21dtv.com/songs/60021165.mkv +罗志祥-红线,http://em.21dtv.com/songs/60020985.mkv +林姗-红线,http://em.21dtv.com/songs/60020984.mkv +花儿乐队-红线,http://em.21dtv.com/songs/60020983.mkv +BIGBANG-红霞,http://em.21dtv.com/songs/60020982.mkv +许茹芸+苏永康-恒星,http://em.21dtv.com/songs/60020732.mkv +飞轮海-恒星,http://em.21dtv.com/songs/60020731.mkv +艾梦萌-恒星,http://em.21dtv.com/songs/60020730.mkv +TENSION-恒星,http://em.21dtv.com/songs/60020729.mkv +唐丰+黄荻钧-痕心,http://em.21dtv.com/songs/60020632.mkv +闪亮三姐妹-嘿咻,http://em.21dtv.com/songs/60020629.mkv +范文芳-好想,http://em.21dtv.com/songs/60020182.mkv +李碧华-寒星,http://em.21dtv.com/songs/60019910.mkv +高胜美-寒星,http://em.21dtv.com/songs/60019909.mkv +梁浩贤-含蓄,http://em.21dtv.com/songs/60019890.mkv +詹雅雯-含笑,http://em.21dtv.com/songs/60019884.mkv +庾澄庆-海啸,http://em.21dtv.com/songs/60019819.mkv +SOLER-海啸,http://em.21dtv.com/songs/60019818.mkv +江蕙-还乡,http://em.21dtv.com/songs/60019646.mkv +贺敬轩-换位,http://em.21dtv.com/songs/60127427.mkv +刘建东-回望,http://em.21dtv.com/songs/60125180.mkv +Hello Nico-荒芜,http://em.21dtv.com/songs/60111614.mkv +王孟西-回味,http://em.21dtv.com/songs/60110393.mkv +吕莘-回味,http://em.21dtv.com/songs/60107568.mkv +余文乐-护卫,http://em.21dtv.com/songs/60107502.mkv +Connie吕莘-回味,http://em.21dtv.com/songs/60107400.mkv +麦少-悔悟,http://em.21dtv.com/songs/60106488.mkv +孙盛希-恒温,http://em.21dtv.com/songs/60104044.mkv +陈明章-海王,http://em.21dtv.com/songs/60096001.mkv +阿兰-回望(演唱会),http://em.21dtv.com/songs/60094729.mkv +阿兰-回望,http://em.21dtv.com/songs/60093731.mkv +张学友-坏×5,http://em.21dtv.com/songs/60087804.mkv +樊凡-回味,http://em.21dtv.com/songs/60080135.mkv +许廷铿-回味,http://em.21dtv.com/songs/60075922.mkv +JOSH GROBAN-higher window,http://em.21dtv.com/songs/60073334.mkv +杨光-回望(演唱会),http://em.21dtv.com/songs/60072046.mkv +S.H.E-还我,http://em.21dtv.com/songs/60072028.mkv +黄韵玲-回味,http://em.21dtv.com/songs/60070781.mkv +王键-火吻,http://em.21dtv.com/songs/60022467.mkv +萧亚轩-回味,http://em.21dtv.com/songs/60022202.mkv +彭佳慧-回味,http://em.21dtv.com/songs/60022201.mkv +彭羚-回味(演唱会),http://em.21dtv.com/songs/60022200.mkv +田震-回望(演唱会),http://em.21dtv.com/songs/60022199.mkv +蒋雪儿-幻舞,http://em.21dtv.com/songs/60021816.mkv +李安琪-哄我(无原唱),http://em.21dtv.com/songs/60021068.mkv +马郁-害我,http://em.21dtv.com/songs/60019848.mkv +陈明章-海尪,http://em.21dtv.com/songs/60019817.mkv +容祖儿-还未,http://em.21dtv.com/songs/60019641.mkv +容祖儿-还未(演唱会),http://em.21dtv.com/songs/60019640.mkv +佚名-heat wave,http://em.21dtv.com/songs/60002158.mkv +BOA-hurricane venus,http://em.21dtv.com/songs/60002393.mkv +HOT CHELLE RAE-hung up,http://em.21dtv.com/songs/60073363.mkv +DAL★SHABET-hit u,http://em.21dtv.com/songs/60065606.mkv +DAL SHABE-hit u,http://em.21dtv.com/songs/60063620.mkv +SIMS(MIB)-hands up,http://em.21dtv.com/songs/60063612.mkv +2PM-hands up,http://em.21dtv.com/songs/60060812.mkv +MADONNA-hung up,http://em.21dtv.com/songs/60002388.mkv +邓小巧-荒唐,http://em.21dtv.com/songs/60134286.mkv +黄可门-后退,http://em.21dtv.com/songs/60130927.mkv +邓小巧-荒唐,http://em.21dtv.com/songs/60129654.mkv +玄觞-海棠,http://em.21dtv.com/songs/60128206.mkv +李雪莱-荒唐,http://em.21dtv.com/songs/60127065.mkv +徐良-话题,http://em.21dtv.com/songs/60125577.mkv +羽泉-后台,http://em.21dtv.com/songs/60124362.mkv +海鸣威-皇图,http://em.21dtv.com/songs/60117900.mkv +张在仁+NaShow-幻听,http://em.21dtv.com/songs/60111066.mkv +江志丰-华佗,http://em.21dtv.com/songs/60108659.mkv +胡夏-幻听,http://em.21dtv.com/songs/60100398.mkv +罗国礼-寒天,http://em.21dtv.com/songs/60095841.mkv +TWINS-好痛,http://em.21dtv.com/songs/60092212.mkv +苏有朋-回头,http://em.21dtv.com/songs/60091927.mkv +阿斯根-火塘,http://em.21dtv.com/songs/60088834.mkv +满人-黑特,http://em.21dtv.com/songs/60075741.mkv +原味-褐瞳,http://em.21dtv.com/songs/60069457.mkv +许嵩-幻听,http://em.21dtv.com/songs/60068344.mkv +MICHAEL JACKSON-hollywood tonight,http://em.21dtv.com/songs/60063621.mkv +高林生-后退,http://em.21dtv.com/songs/60062371.mkv +高林生+石云岚-后退,http://em.21dtv.com/songs/60062365.mkv +庞龙-火天,http://em.21dtv.com/songs/60022462.mkv +刘德华-火烫,http://em.21dtv.com/songs/60022461.mkv +辛晓琪-荒唐,http://em.21dtv.com/songs/60021865.mkv +温岚-荒唐,http://em.21dtv.com/songs/60021864.mkv +辛晓琪-荒唐(演唱会),http://em.21dtv.com/songs/60021863.mkv +高向鹏+傅振辉-换帖,http://em.21dtv.com/songs/60021844.mkv +莫文蔚-幻听,http://em.21dtv.com/songs/60021815.mkv +周蕙-话题,http://em.21dtv.com/songs/60021632.mkv +无印良品-话题,http://em.21dtv.com/songs/60021631.mkv +莫文蔚-话题,http://em.21dtv.com/songs/60021630.mkv +郭嘉璐-花童(无原唱),http://em.21dtv.com/songs/60021492.mkv +叶倩文-糊涂,http://em.21dtv.com/songs/60021274.mkv +李玖哲-后退,http://em.21dtv.com/songs/60021119.mkv +陈奕迅-后台,http://em.21dtv.com/songs/60021117.mkv +杨千嬅-河童(演唱会),http://em.21dtv.com/songs/60020462.mkv +许茹芸-好听,http://em.21dtv.com/songs/60020173.mkv +施文彬-好听(无原唱),http://em.21dtv.com/songs/60020172.mkv +温尼-寒潭(无原唱),http://em.21dtv.com/songs/60019907.mkv +陈慧琳-海豚,http://em.21dtv.com/songs/60019814.mkv +陈慧琳-海豚(演唱会),http://em.21dtv.com/songs/60019813.mkv +温岚-海滩,http://em.21dtv.com/songs/60019810.mkv +李心洁-happy tune,http://em.21dtv.com/songs/60002095.mkv +佚名-happy together,http://em.21dtv.com/songs/60002094.mkv +佚名-hanging tree,http://em.21dtv.com/songs/60002058.mkv +莫日根-化石,http://em.21dtv.com/songs/60132841.mkv +梁剑东-嗨神,http://em.21dtv.com/songs/60132642.mkv +圈住那个9-回声,http://em.21dtv.com/songs/60132316.mkv +周深-回声,http://em.21dtv.com/songs/60132303.mkv +莫日根-化石,http://em.21dtv.com/songs/60131766.mkv +燚帝-寒松,http://em.21dtv.com/songs/60127184.mkv +门丽-浣纱,http://em.21dtv.com/songs/60126337.mkv +何守建-花殇,http://em.21dtv.com/songs/60125123.mkv +甄咏珊-灰色,http://em.21dtv.com/songs/60119839.mkv +白致瑶-婚誓,http://em.21dtv.com/songs/60117075.mkv +徐良-华生,http://em.21dtv.com/songs/60116838.mkv +叶良辰+风雷-婚誓,http://em.21dtv.com/songs/60116618.mkv +风雷-婚誓,http://em.21dtv.com/songs/60116380.mkv +门丽-浣沙,http://em.21dtv.com/songs/60116323.mkv +甘萍-海誓,http://em.21dtv.com/songs/60106155.mkv +梅粮新-画师,http://em.21dtv.com/songs/60105201.mkv +金泰宇-回声,http://em.21dtv.com/songs/60100523.mkv +苗苗-婚誓,http://em.21dtv.com/songs/60096458.mkv +王涛-红色,http://em.21dtv.com/songs/60094995.mkv +李弘基-话说,http://em.21dtv.com/songs/60094146.mkv +郑少秋-花市,http://em.21dtv.com/songs/60093288.mkv +苏慧伦-话说,http://em.21dtv.com/songs/60093074.mkv +兄弟联-挥手,http://em.21dtv.com/songs/60090652.mkv +向荣-还是,http://em.21dtv.com/songs/60085222.mkv +刘忻-火山,http://em.21dtv.com/songs/60083096.mkv +渔圈-魂伤,http://em.21dtv.com/songs/60083090.mkv +天籁之音-还是,http://em.21dtv.com/songs/60081161.mkv +邓子霆-嗨森,http://em.21dtv.com/songs/60080122.mkv +李潮+韦蕊-婚誓,http://em.21dtv.com/songs/60075936.mkv +燃弦乐队-花殇,http://em.21dtv.com/songs/60075849.mkv +袁攀-黑色,http://em.21dtv.com/songs/60075736.mkv +陈玉芸-好胜,http://em.21dtv.com/songs/60075688.mkv +李昊嘉-寒色,http://em.21dtv.com/songs/60075663.mkv +RENA-hey summer,http://em.21dtv.com/songs/60073332.mkv +TAYLOR SWIFT-hey stephen(演唱会),http://em.21dtv.com/songs/60073331.mkv +AZEALIA BANKS-harlem shake,http://em.21dtv.com/songs/60073306.mkv +慕容晓晓-黄山,http://em.21dtv.com/songs/60070776.mkv +黄文圣+单方玮-湖说,http://em.21dtv.com/songs/60069470.mkv +F(X)-hot summer,http://em.21dtv.com/songs/60067909.mkv +伍佰-火山,http://em.21dtv.com/songs/60063110.mkv +凤娘+芭乐-happy song,http://em.21dtv.com/songs/60060814.mkv +刘美君-灰色,http://em.21dtv.com/songs/60040329.mkv +韩寒-混世,http://em.21dtv.com/songs/60022329.mkv +佚名-婚誓,http://em.21dtv.com/songs/60022325.mkv +孙丽英+戴玉强-婚誓,http://em.21dtv.com/songs/60022324.mkv +黄英+吉杰-婚誓,http://em.21dtv.com/songs/60022323.mkv +董文华-婚誓,http://em.21dtv.com/songs/60022322.mkv +佚名-婚誓(快三),http://em.21dtv.com/songs/60022321.mkv +李克勤-回首,http://em.21dtv.com/songs/60022176.mkv +李克勤-回首(演唱会),http://em.21dtv.com/songs/60022175.mkv +费翔-灰色,http://em.21dtv.com/songs/60022034.mkv +郑秀文-灰色(演唱会),http://em.21dtv.com/songs/60022033.mkv +林忆莲-灰色(演唱会),http://em.21dtv.com/songs/60022032.mkv +袁咏琳+周杰伦-画沙,http://em.21dtv.com/songs/60021612.mkv +陈黎明-华少(演唱会),http://em.21dtv.com/songs/60021577.mkv +杨坤-花生(演唱会),http://em.21dtv.com/songs/60021478.mkv +王霞-花神,http://em.21dtv.com/songs/60021477.mkv +游鸿明-花沙,http://em.21dtv.com/songs/60021475.mkv +王雅洁-花沙,http://em.21dtv.com/songs/60021474.mkv +古巨基-花洒,http://em.21dtv.com/songs/60021473.mkv +古巨基-花洒(演唱会),http://em.21dtv.com/songs/60021472.mkv +天堂乐队-湖水,http://em.21dtv.com/songs/60021229.mkv +钟汉良-红色,http://em.21dtv.com/songs/60020947.mkv +张学友-红色,http://em.21dtv.com/songs/60020946.mkv +张学友-红色(演唱会),http://em.21dtv.com/songs/60020945.mkv +邱暐议-很少,http://em.21dtv.com/songs/60020654.mkv +王恩琦-很傻,http://em.21dtv.com/songs/60020653.mkv +童唱-河水,http://em.21dtv.com/songs/60020461.mkv +胡彦斌-和尚,http://em.21dtv.com/songs/60020431.mkv +TWINS-好胜,http://em.21dtv.com/songs/60020154.mkv +杨千嬅-寒舍,http://em.21dtv.com/songs/60019905.mkv +易影峰-花殇,http://em.21dtv.com/songs/60006911.mkv +张国荣-hot summer,http://em.21dtv.com/songs/60002343.mkv +佚名-hot stuff,http://em.21dtv.com/songs/60002342.mkv +DONNA SUMMER-hot stuff(演唱会),http://em.21dtv.com/songs/60002341.mkv +RAIN-hip song,http://em.21dtv.com/songs/60002277.mkv +佚名-hello summertime,http://em.21dtv.com/songs/60002186.mkv +童唱-hello seals,http://em.21dtv.com/songs/60002185.mkv +KEYSHIA COLE-heaven sent,http://em.21dtv.com/songs/60002162.mkv +宇多田光-heart station,http://em.21dtv.com/songs/60002148.mkv +KANYE WEST+ADAM LEVI-heardem say,http://em.21dtv.com/songs/60002144.mkv +佚名-harlem shuffle,http://em.21dtv.com/songs/60002109.mkv +洪凯律-忽然,http://em.21dtv.com/songs/60133937.mkv +郭婷筠+郭忠佑-憨人,http://em.21dtv.com/songs/60124575.mkv +许志安-红日,http://em.21dtv.com/songs/60118908.mkv +高向鹏-憨人,http://em.21dtv.com/songs/60118191.mkv +胡夏-好人,http://em.21dtv.com/songs/60112155.mkv +胡夏-好人,http://em.21dtv.com/songs/60111359.mkv +罗逻圣-花蕊,http://em.21dtv.com/songs/60108806.mkv +周渝民-忽然,http://em.21dtv.com/songs/60087589.mkv +AMAN FONG-红日(演唱会),http://em.21dtv.com/songs/60075781.mkv +杭士琁-好人,http://em.21dtv.com/songs/60075682.mkv +伍浩哲-憨人,http://em.21dtv.com/songs/60067054.mkv +J ONE-火热,http://em.21dtv.com/songs/60066047.mkv +洪颜-坏人,http://em.21dtv.com/songs/60066034.mkv +凌峰-红日,http://em.21dtv.com/songs/60061252.mkv +方炯镔-坏人,http://em.21dtv.com/songs/60021718.mkv +白智英-坏人,http://em.21dtv.com/songs/60021717.mkv +安珍庆-坏人,http://em.21dtv.com/songs/60021716.mkv +方怡萍-花蕊(无原唱),http://em.21dtv.com/songs/60021465.mkv +戴佩妮-忽然,http://em.21dtv.com/songs/60021180.mkv +李克勤-红日,http://em.21dtv.com/songs/60020943.mkv +谭咏麟+李克勤-红日(演唱会),http://em.21dtv.com/songs/60020942.mkv +李克勤-红日(演唱会),http://em.21dtv.com/songs/60020941.mkv +李克勤+谢安琪-红日(演唱会),http://em.21dtv.com/songs/60020940.mkv +群星-红日(HD演唱会),http://em.21dtv.com/songs/60020939.mkv +梅艳芳-何日(演唱会),http://em.21dtv.com/songs/60020364.mkv +自由发挥-好人,http://em.21dtv.com/songs/60020137.mkv +古巨基-好人,http://em.21dtv.com/songs/60020136.mkv +侧田-好人,http://em.21dtv.com/songs/60020135.mkv +阿超-好人,http://em.21dtv.com/songs/60020134.mkv +侧田-好人(演唱会),http://em.21dtv.com/songs/60020133.mkv +谢金燕-憨人,http://em.21dtv.com/songs/60019864.mkv +五月天-憨人,http://em.21dtv.com/songs/60019863.mkv +查杰-何求,http://em.21dtv.com/songs/60135449.mkv +袁小迪+杨哲-乎乾,http://em.21dtv.com/songs/60103560.mkv +成学迅-还钱,http://em.21dtv.com/songs/60096713.mkv +川岛茉树代-好奇,http://em.21dtv.com/songs/60089828.mkv +韩雪-红裙,http://em.21dtv.com/songs/60083046.mkv +钟欣桐-哈气,http://em.21dtv.com/songs/60080369.mkv +姚贝娜-画情,http://em.21dtv.com/songs/60072021.mkv +陈慧琳-回情,http://em.21dtv.com/songs/60022171.mkv +大嘴巴-怀秋,http://em.21dtv.com/songs/60021677.mkv +张善为-鹤拳,http://em.21dtv.com/songs/60020480.mkv +MAKIYO-好奇,http://em.21dtv.com/songs/60020127.mkv +七郎-哈钱,http://em.21dtv.com/songs/60019562.mkv +许嵩-幻胖,http://em.21dtv.com/songs/60124473.mkv +任和-害怕,http://em.21dtv.com/songs/60109954.mkv +杨皓天-害怕,http://em.21dtv.com/songs/60106008.mkv +黑龙-琥珀,http://em.21dtv.com/songs/60105200.mkv +彭永琛-琥珀,http://em.21dtv.com/songs/60096804.mkv +林一峰-琥珀,http://em.21dtv.com/songs/60096803.mkv +摩斯特DA.MON.STER-害怕,http://em.21dtv.com/songs/60085168.mkv +带泪的鱼-害怕,http://em.21dtv.com/songs/60085167.mkv +李涵-和平,http://em.21dtv.com/songs/60081044.mkv +摩斯特-害怕,http://em.21dtv.com/songs/60075658.mkv +NELLY-hey porsche,http://em.21dtv.com/songs/60073330.mkv +スフィア-high powered,http://em.21dtv.com/songs/60063619.mkv +岳玉梦-画皮,http://em.21dtv.com/songs/60021611.mkv +陈旭-花瓶,http://em.21dtv.com/songs/60021461.mkv +戴佩妮-花盼,http://em.21dtv.com/songs/60021460.mkv +水木年华-琥珀,http://em.21dtv.com/songs/60021293.mkv +孟庭苇-琥珀,http://em.21dtv.com/songs/60021292.mkv +陈坤-琥珀,http://em.21dtv.com/songs/60021291.mkv +孙燕姿-和平,http://em.21dtv.com/songs/60020421.mkv +李贞贤-和平(演唱会),http://em.21dtv.com/songs/60020420.mkv +袁惟仁-好怕,http://em.21dtv.com/songs/60020113.mkv +伊能静-害怕,http://em.21dtv.com/songs/60019840.mkv +吴倩莲-害怕,http://em.21dtv.com/songs/60019839.mkv +孙燕姿-害怕,http://em.21dtv.com/songs/60019838.mkv +潘恩蓓-害怕,http://em.21dtv.com/songs/60019837.mkv +林俊杰-害怕,http://em.21dtv.com/songs/60019836.mkv +佚名-hey paula,http://em.21dtv.com/songs/60002251.mkv +蔡济文-hey paula,http://em.21dtv.com/songs/60002250.mkv +蔡济文+赵学而-hey paula,http://em.21dtv.com/songs/60002249.mkv +游恩杰-Hollywood Shanghai,http://em.21dtv.com/songs/60101429.mkv +曹方-海鸥,http://em.21dtv.com/songs/60115973.mkv +方糖泡泡-海鸥,http://em.21dtv.com/songs/60105935.mkv +邓惠欣-海鸥(演唱会),http://em.21dtv.com/songs/60082996.mkv +ELLIE GOULDING+TINIE TEMPAH-hanging on,http://em.21dtv.com/songs/60073303.mkv +童唱-海鸥,http://em.21dtv.com/songs/60019779.mkv +女声-海鸥,http://em.21dtv.com/songs/60019778.mkv +男声-海鸥,http://em.21dtv.com/songs/60019777.mkv +姜育恒-海鸥,http://em.21dtv.com/songs/60019776.mkv +甄妮-海鸥(演唱会),http://em.21dtv.com/songs/60019775.mkv +刘家昌+容祖儿-海鸥(演唱会),http://em.21dtv.com/songs/60019774.mkv +蔡琴-海鸥(HD演唱会),http://em.21dtv.com/songs/60019773.mkv +佚名-hold on,http://em.21dtv.com/songs/60002295.mkv +KT TUNSTALL-hold on,http://em.21dtv.com/songs/60002294.mkv +胡连凯-候鸟,http://em.21dtv.com/songs/60129512.mkv +岩光渤-怀念,http://em.21dtv.com/songs/60124790.mkv +莫海婧-候鸟,http://em.21dtv.com/songs/60120909.mkv +金久哲-怀念,http://em.21dtv.com/songs/60107284.mkv +韩磊-怀念,http://em.21dtv.com/songs/60104585.mkv +陈惠婷-黑鸟,http://em.21dtv.com/songs/60104558.mkv +袁威+猫小野-怀念,http://em.21dtv.com/songs/60096494.mkv +灰子-灰鸟,http://em.21dtv.com/songs/60096390.mkv +卢巧音-花奴,http://em.21dtv.com/songs/60094840.mkv +AT17-画你,http://em.21dtv.com/songs/60092132.mkv +KOLOR-候鸟,http://em.21dtv.com/songs/60083050.mkv +张杰-火鸟(演唱会),http://em.21dtv.com/songs/60075947.mkv +刘嘉亮-虎妞,http://em.21dtv.com/songs/60070758.mkv +吴克群-胡闹,http://em.21dtv.com/songs/60068329.mkv +GLORIA ESTEFAN-hotel nacional,http://em.21dtv.com/songs/60066651.mkv +杨千嬅-火鸟,http://em.21dtv.com/songs/60063251.mkv +尚雯婕-候鸟(HD高清),http://em.21dtv.com/songs/60061255.mkv +佚名-换你(无原唱),http://em.21dtv.com/songs/60021841.mkv +宋新妮-怀念,http://em.21dtv.com/songs/60021644.mkv +蔡依林-怀念,http://em.21dtv.com/songs/60021643.mkv +蔡琴-怀念,http://em.21dtv.com/songs/60021642.mkv +王菲-怀念(演唱会),http://em.21dtv.com/songs/60021641.mkv +莫文蔚+黄品源-怀念(演唱会),http://em.21dtv.com/songs/60021640.mkv +豹小子-胡闹,http://em.21dtv.com/songs/60021210.mkv +啡啡-狐女,http://em.21dtv.com/songs/60021201.mkv +阿英-狐女,http://em.21dtv.com/songs/60021200.mkv +五月天-候鸟,http://em.21dtv.com/songs/60021130.mkv +吴奇隆-候鸟,http://em.21dtv.com/songs/60021129.mkv +刘若英-候鸟,http://em.21dtv.com/songs/60021128.mkv +额尔古纳乐队-候鸟,http://em.21dtv.com/songs/60021127.mkv +S.H.E-候鸟,http://em.21dtv.com/songs/60021126.mkv +赵中晨-候鸟(演唱会),http://em.21dtv.com/songs/60021125.mkv +孙毓敏-红娘,http://em.21dtv.com/songs/60020919.mkv +潘越云-红娘,http://em.21dtv.com/songs/60020918.mkv +张震岳-很难,http://em.21dtv.com/songs/60020649.mkv +于文华-贺年,http://em.21dtv.com/songs/60020475.mkv +童唱-贺年,http://em.21dtv.com/songs/60020474.mkv +MADONNA-human nature,http://em.21dtv.com/songs/60002386.mkv +佚名-high noon,http://em.21dtv.com/songs/60002265.mkv +STEPS-here now,http://em.21dtv.com/songs/60002210.mkv +棠星琪-幻灭,http://em.21dtv.com/songs/60135463.mkv +施文彬-黑猫,http://em.21dtv.com/songs/60131470.mkv +张美仪-化梦,http://em.21dtv.com/songs/60123945.mkv +肖洋-火苗,http://em.21dtv.com/songs/60122029.mkv +陈嘉唯-海绵,http://em.21dtv.com/songs/60120072.mkv +段宛彤-荷美,http://em.21dtv.com/songs/60113763.mkv +谭晶-海梦,http://em.21dtv.com/songs/60106291.mkv +张涵雅-回眸,http://em.21dtv.com/songs/60109320.mkv +卓文萱-黑马,http://em.21dtv.com/songs/60104857.mkv +云の泣-海沫,http://em.21dtv.com/songs/60103867.mkv +望海高歌-回眸,http://em.21dtv.com/songs/60102306.mkv +彭莉-画眉,http://em.21dtv.com/songs/60095530.mkv +黄美珍-缓慢,http://em.21dtv.com/songs/60095365.mkv +蔡卓妍-黑马,http://em.21dtv.com/songs/60093120.mkv +罗文-红棉,http://em.21dtv.com/songs/60093029.mkv +李芝芬+钱思剑-花盟,http://em.21dtv.com/songs/60091364.mkv +姜育恒+李翊君-回眸,http://em.21dtv.com/songs/60090878.mkv +徐良-幻灭,http://em.21dtv.com/songs/60086610.mkv +盖鸣晖-红棉(演唱会),http://em.21dtv.com/songs/60083044.mkv +谭晶-海梦,http://em.21dtv.com/songs/60082995.mkv +阿峻飞猫-海马,http://em.21dtv.com/songs/60082994.mkv +MASTAMIC+JERALD-hate me,http://em.21dtv.com/songs/60082173.mkv +艾雨-Hold Me,http://em.21dtv.com/songs/60081837.mkv +梁晓雪-画面,http://em.21dtv.com/songs/60075862.mkv +莫旭秋-红棉(演唱会),http://em.21dtv.com/songs/60075777.mkv +TINCHY STRYDER-help me,http://em.21dtv.com/songs/60073323.mkv +钱红-海默,http://em.21dtv.com/songs/60071982.mkv +安又琪-honey money(演唱会),http://em.21dtv.com/songs/60071606.mkv +李晓-海面,http://em.21dtv.com/songs/60068304.mkv +张继聪-海马,http://em.21dtv.com/songs/60066012.mkv +刘晶-海梦,http://em.21dtv.com/songs/60064274.mkv +李志锋+林立+国巍-红梅,http://em.21dtv.com/songs/60062614.mkv +格格-火苗,http://em.21dtv.com/songs/60022447.mkv +李涛-活埋,http://em.21dtv.com/songs/60022373.mkv +卢巧音-昏迷,http://em.21dtv.com/songs/60022304.mkv +姜育恒-回眸(无原唱),http://em.21dtv.com/songs/60022164.mkv +赵学而-荒谬,http://em.21dtv.com/songs/60021862.mkv +林晓培-缓慢,http://em.21dtv.com/songs/60021809.mkv +BEYOND-缓慢,http://em.21dtv.com/songs/60021808.mkv +阳凌-画梦,http://em.21dtv.com/songs/60021610.mkv +佚名-画眉,http://em.21dtv.com/songs/60021609.mkv +罗文-红绵(演唱会),http://em.21dtv.com/songs/60020916.mkv +陈淑芳-红梅,http://em.21dtv.com/songs/60020908.mkv +容祖儿-很忙,http://em.21dtv.com/songs/60020648.mkv +施文彬+黑面-黑面,http://em.21dtv.com/songs/60020532.mkv +红花乐团-黑梦,http://em.21dtv.com/songs/60020531.mkv +周笔畅-号码,http://em.21dtv.com/songs/60020277.mkv +SAYA-honey money,http://em.21dtv.com/songs/60002320.mkv +BACKSTREET BOYS-hey mr dj,http://em.21dtv.com/songs/60002248.mkv +李孝利-hey mr big,http://em.21dtv.com/songs/60002247.mkv +强辩乐团-help me,http://em.21dtv.com/songs/60002197.mkv +NICK CARTER-help me,http://em.21dtv.com/songs/60002196.mkv +ABBA-hasta manana,http://em.21dtv.com/songs/60002113.mkv +佚名-handy man(无原唱),http://em.21dtv.com/songs/60002054.mkv +路见不平一声吼的美少女战士+猫黛丽·赫本-后来,http://em.21dtv.com/songs/60128440.mkv +王蓉-好乐day[治愈版],http://em.21dtv.com/songs/60101453.mkv +王蓉-好乐day,http://em.21dtv.com/songs/60085716.mkv +徐浩-后来,http://em.21dtv.com/songs/60135289.mkv +孙伯纶-河流,http://em.21dtv.com/songs/60131323.mkv +苏运莹-后来,http://em.21dtv.com/songs/60124407.mkv +汪峰-河流,http://em.21dtv.com/songs/60116993.mkv +胡东清-红柳,http://em.21dtv.com/songs/60116205.mkv +廖昌永-海恋,http://em.21dtv.com/songs/60115896.mkv +贝贝-回来,http://em.21dtv.com/songs/60115408.mkv +米乐-回来,http://em.21dtv.com/songs/60112871.mkv +吴莫愁+Easy Mind-河流,http://em.21dtv.com/songs/60112571.mkv +马常宝-海恋,http://em.21dtv.com/songs/60109027.mkv +VIVI-荒凉,http://em.21dtv.com/songs/60108254.mkv +栋梁-花泪,http://em.21dtv.com/songs/60102409.mkv +王晶-婚礼,http://em.21dtv.com/songs/60100316.mkv +刘承宇-Hesitating Lips,http://em.21dtv.com/songs/60099113.mkv +时金宇-忽略,http://em.21dtv.com/songs/60096739.mkv +张智霖-后来,http://em.21dtv.com/songs/60096698.mkv +同级生-婚礼,http://em.21dtv.com/songs/60089726.mkv +孙国庆-荒路,http://em.21dtv.com/songs/60089234.mkv +夜莺-荷露,http://em.21dtv.com/songs/60086594.mkv +巫启贤-回来,http://em.21dtv.com/songs/60085240.mkv +凌钥薇-花蕾,http://em.21dtv.com/songs/60085207.mkv +王鸣飞-海澜,http://em.21dtv.com/songs/60082993.mkv +魏晨-哈喽,http://em.21dtv.com/songs/60081704.mkv +马达+田雨莫-回来,http://em.21dtv.com/songs/60081667.mkv +金润吉-后来,http://em.21dtv.com/songs/60081577.mkv +纪海星-狐狸,http://em.21dtv.com/songs/60081486.mkv +泳儿-后来,http://em.21dtv.com/songs/60080821.mkv +AGA-哈啰,http://em.21dtv.com/songs/60079841.mkv +黄绮珊-回来),http://em.21dtv.com/songs/60075919.mkv +天籁天-忽略,http://em.21dtv.com/songs/60075816.mkv +张伟文-后来(演唱会),http://em.21dtv.com/songs/60075807.mkv +AGA-哈罗,http://em.21dtv.com/songs/60075638.mkv +20E GIRLS-哈罗,http://em.21dtv.com/songs/60075637.mkv +BLUE-hurt lovers,http://em.21dtv.com/songs/60073364.mkv +TAHITI-hasta luego,http://em.21dtv.com/songs/60073307.mkv +伍咏薇-红孽,http://em.21dtv.com/songs/60072620.mkv +周怡然+周长峰-婚礼,http://em.21dtv.com/songs/60072049.mkv +张敬轩-后来,http://em.21dtv.com/songs/60072012.mkv +梁博-回来,http://em.21dtv.com/songs/60069443.mkv +许诺-忽略,http://em.21dtv.com/songs/60068327.mkv +HOTCHA-hot lady,http://em.21dtv.com/songs/60067907.mkv +齐秦-回来,http://em.21dtv.com/songs/60067092.mkv +刘若颖-海恋,http://em.21dtv.com/songs/60067051.mkv +戎梵-很冷,http://em.21dtv.com/songs/60061246.mkv +达坡玛吉-火恋,http://em.21dtv.com/songs/60022444.mkv +谢宇书-婚礼,http://em.21dtv.com/songs/60022307.mkv +谭咏麟-婚礼,http://em.21dtv.com/songs/60022306.mkv +张宇-毁类,http://em.21dtv.com/songs/60022266.mkv +张信哲-回来,http://em.21dtv.com/songs/60022139.mkv +阿信-回来,http://em.21dtv.com/songs/60022138.mkv +湘海-回来,http://em.21dtv.com/songs/60022137.mkv +毛阿敏-回来,http://em.21dtv.com/songs/60022136.mkv +丑丑-回来,http://em.21dtv.com/songs/60022135.mkv +ZEN-回来,http://em.21dtv.com/songs/60022134.mkv +罗琦-回来(演唱会),http://em.21dtv.com/songs/60022133.mkv +任静-慌乱,http://em.21dtv.com/songs/60021872.mkv +张芸京-坏了,http://em.21dtv.com/songs/60021698.mkv +REBORN-花泪,http://em.21dtv.com/songs/60021440.mkv +邱芸子-花泪(无原唱),http://em.21dtv.com/songs/60021439.mkv +河莉秀-狐狸,http://em.21dtv.com/songs/60021195.mkv +萧萧-忽略,http://em.21dtv.com/songs/60021179.mkv +林慧萍-忽略,http://em.21dtv.com/songs/60021178.mkv +江淑娜-忽略,http://em.21dtv.com/songs/60021177.mkv +呼咙-呼咙(演唱会)(无原唱),http://em.21dtv.com/songs/60021156.mkv +张清芳-后来,http://em.21dtv.com/songs/60021106.mkv +刘若英-后来,http://em.21dtv.com/songs/60021105.mkv +刘若英-后来(演唱会),http://em.21dtv.com/songs/60021104.mkv +和平组合-嘿 love,http://em.21dtv.com/songs/60020612.mkv +柯以敏-河流,http://em.21dtv.com/songs/60020459.mkv +袁小迪+龙千玉-海浪,http://em.21dtv.com/songs/60019765.mkv +黄品源-海浪,http://em.21dtv.com/songs/60019764.mkv +黄品源-海浪(演唱会),http://em.21dtv.com/songs/60019763.mkv +林鹏-还泪,http://em.21dtv.com/songs/60019583.mkv +阿杜-哈罗,http://em.21dtv.com/songs/60019556.mkv +周传雄-哈罗(演唱会),http://em.21dtv.com/songs/60019555.mkv +侯美仪-哈罗(无原唱),http://em.21dtv.com/songs/60019554.mkv +江希文-hey liz,http://em.21dtv.com/songs/60002246.mkv +佚名-harbour lights,http://em.21dtv.com/songs/60002103.mkv +王心凌-happy loving,http://em.21dtv.com/songs/60002090.mkv +宁桓宇-回看,http://em.21dtv.com/songs/60133572.mkv +周品-花魁,http://em.21dtv.com/songs/60102045.mkv +黑豹乐队-虎口(演唱会),http://em.21dtv.com/songs/60085202.mkv +周旖喆-花魁,http://em.21dtv.com/songs/60081276.mkv +温升豪-何苦,http://em.21dtv.com/songs/60075711.mkv +林家小妹-hello kitty,http://em.21dtv.com/songs/60073319.mkv +甲子蕙-何苦,http://em.21dtv.com/songs/60064286.mkv +张惠妹-high咖,http://em.21dtv.com/songs/60060819.mkv +郭晓薇-花开,http://em.21dtv.com/songs/60021417.mkv +安布尔-花开(无原唱),http://em.21dtv.com/songs/60021416.mkv +李登威-虎口(无原唱),http://em.21dtv.com/songs/60021285.mkv +李泉-很苦,http://em.21dtv.com/songs/60020646.mkv +李泉-很苦(演唱会),http://em.21dtv.com/songs/60020645.mkv +张德豪-黑客,http://em.21dtv.com/songs/60020522.mkv +谭咏麟-何苦,http://em.21dtv.com/songs/60020354.mkv +容祖儿-何苦,http://em.21dtv.com/songs/60020353.mkv +高胜美-何苦,http://em.21dtv.com/songs/60020352.mkv +容祖儿-何苦(演唱会),http://em.21dtv.com/songs/60020351.mkv +后弦-海口,http://em.21dtv.com/songs/60019744.mkv +佚名-heaven knows,http://em.21dtv.com/songs/60002161.mkv +张岭-喝酒Blues,http://em.21dtv.com/songs/60082036.mkv +关喆-回家,http://em.21dtv.com/songs/60134913.mkv +乌云娜-回家,http://em.21dtv.com/songs/60134850.mkv +高兰萨朵-幻觉,http://em.21dtv.com/songs/60130905.mkv +刘珂矣-花笺,http://em.21dtv.com/songs/60126656.mkv +秋裕盛-换季,http://em.21dtv.com/songs/60125994.mkv +陈小琳-回家,http://em.21dtv.com/songs/60123294.mkv +李广育-回家,http://em.21dtv.com/songs/60122853.mkv +Zion-痕迹,http://em.21dtv.com/songs/60121319.mkv +陈俐俐-回家,http://em.21dtv.com/songs/60118139.mkv +梅朵-回家,http://em.21dtv.com/songs/60117872.mkv +吴安少-回家,http://em.21dtv.com/songs/60115750.mkv +姚笛-很久,http://em.21dtv.com/songs/60112611.mkv +萧敬腾+王呈章-回家,http://em.21dtv.com/songs/60112192.mkv +林俊杰-黑键,http://em.21dtv.com/songs/60112021.mkv +谢天笑-幻觉,http://em.21dtv.com/songs/60110532.mkv +陈雅雯-黑街,http://em.21dtv.com/songs/60108993.mkv +闪灵乐团-皇军,http://em.21dtv.com/songs/60108948.mkv +宋潮-回家,http://em.21dtv.com/songs/60108445.mkv +苗伟-痕迹,http://em.21dtv.com/songs/60100420.mkv +刘明辉-回家,http://em.21dtv.com/songs/60099116.mkv +张卫华-回家,http://em.21dtv.com/songs/60098335.mkv +七郎-哈酒,http://em.21dtv.com/songs/60095376.mkv +朱桦-回家,http://em.21dtv.com/songs/60094920.mkv +陈小春-好剑,http://em.21dtv.com/songs/60093416.mkv +梅艳芳-怀旧,http://em.21dtv.com/songs/60092939.mkv +苏永康-婚戒,http://em.21dtv.com/songs/60088537.mkv +群星-换季,http://em.21dtv.com/songs/60088462.mkv +徐彦秋-幻觉,http://em.21dtv.com/songs/60085227.mkv +李佳薇-回家,http://em.21dtv.com/songs/60083083.mkv +钟伟强+毕夏-Hey Jude,http://em.21dtv.com/songs/60081514.mkv +关喆-回家,http://em.21dtv.com/songs/60080150.mkv +AOA-回家,http://em.21dtv.com/songs/60075914.mkv +小贱-换季,http://em.21dtv.com/songs/60075894.mkv +肖琬露-欢聚,http://em.21dtv.com/songs/60075875.mkv +方伊琪-怀旧(演唱会),http://em.21dtv.com/songs/60075866.mkv +小徐儿 小严子-痕迹,http://em.21dtv.com/songs/60075746.mkv +陈雅雯-黑街,http://em.21dtv.com/songs/60075735.mkv +FLO RIDA-hey jasmin,http://em.21dtv.com/songs/60073329.mkv +刘瀚升-幻觉,http://em.21dtv.com/songs/60072030.mkv +潘裕文-怀旧,http://em.21dtv.com/songs/60072022.mkv +小徐儿+小严子-痕迹,http://em.21dtv.com/songs/60072003.mkv +闫学晶-回家,http://em.21dtv.com/songs/60070780.mkv +原始林-喝酒(无原唱),http://em.21dtv.com/songs/60070350.mkv +石梅+冷漠-婚戒,http://em.21dtv.com/songs/60068350.mkv +晓依-回家,http://em.21dtv.com/songs/60066040.mkv +阿乐-回家,http://em.21dtv.com/songs/60066039.mkv +刘璇-回见,http://em.21dtv.com/songs/60022132.mkv +郁可唯-回家,http://em.21dtv.com/songs/60022114.mkv +佚名-回家,http://em.21dtv.com/songs/60022113.mkv +旭日阳刚-回家,http://em.21dtv.com/songs/60022112.mkv +吴倩莲-回家,http://em.21dtv.com/songs/60022111.mkv +王杰-回家,http://em.21dtv.com/songs/60022110.mkv +顺子-回家,http://em.21dtv.com/songs/60022109.mkv +莫文蔚-回家,http://em.21dtv.com/songs/60022108.mkv +郭冬临-回家,http://em.21dtv.com/songs/60022107.mkv +A-LIN-回家,http://em.21dtv.com/songs/60022106.mkv +顺子-回家(演唱会),http://em.21dtv.com/songs/60022105.mkv +芭比-灰烬,http://em.21dtv.com/songs/60022031.mkv +唐玮-换叫,http://em.21dtv.com/songs/60021840.mkv +金莎-换季,http://em.21dtv.com/songs/60021838.mkv +TWINS-换季,http://em.21dtv.com/songs/60021837.mkv +A-LIN-换季,http://em.21dtv.com/songs/60021836.mkv +希美子+范筱梵+林利霏-换季(无原唱),http://em.21dtv.com/songs/60021835.mkv +赵震宇-幻觉,http://em.21dtv.com/songs/60021813.mkv +许巍-幻觉,http://em.21dtv.com/songs/60021812.mkv +陈坤-幻觉,http://em.21dtv.com/songs/60021811.mkv +佚名-欢聚,http://em.21dtv.com/songs/60021733.mkv +李香琴-怀旧(演唱会),http://em.21dtv.com/songs/60021639.mkv +沈文程-化解(无原唱),http://em.21dtv.com/songs/60021596.mkv +谢雨欣-花街,http://em.21dtv.com/songs/60021411.mkv +何韵诗-花见,http://em.21dtv.com/songs/60021410.mkv +后弦-花甲,http://em.21dtv.com/songs/60021408.mkv +齐秦-花祭,http://em.21dtv.com/songs/60021407.mkv +可米小子-花季,http://em.21dtv.com/songs/60021405.mkv +詹雅雯+沈文程-红酒,http://em.21dtv.com/songs/60020877.mkv +林子娟-红酒,http://em.21dtv.com/songs/60020876.mkv +顾莉雅-红酒,http://em.21dtv.com/songs/60020875.mkv +周传雄-痕迹,http://em.21dtv.com/songs/60020631.mkv +罗文-号角,http://em.21dtv.com/songs/60020276.mkv +罗文-号角(演唱会),http://em.21dtv.com/songs/60020275.mkv +张学友-好久,http://em.21dtv.com/songs/60020053.mkv +扬扬-好久(无原唱),http://em.21dtv.com/songs/60020052.mkv +佚名-还家,http://em.21dtv.com/songs/60019581.mkv +梁汉文-hey june(演唱会),http://em.21dtv.com/songs/60002245.mkv +佚名-hey jude,http://em.21dtv.com/songs/60002244.mkv +孙燕姿-hey jude,http://em.21dtv.com/songs/60002243.mkv +THE BEATLES-hey jude,http://em.21dtv.com/songs/60002242.mkv +BEATLES-hey jude,http://em.21dtv.com/songs/60002241.mkv +羽泉-has it,http://em.21dtv.com/songs/60002111.mkv +马艺航-好好,http://em.21dtv.com/songs/60136007.mkv +张伟明-花海,http://em.21dtv.com/songs/60135191.mkv +许廷铿-护航,http://em.21dtv.com/songs/60134219.mkv +满汉全席-回合,http://em.21dtv.com/songs/60133955.mkv +张杰-浩瀚,http://em.21dtv.com/songs/60133673.mkv +辛晓琪+品冠-火花,http://em.21dtv.com/songs/60132948.mkv +五月天-好好,http://em.21dtv.com/songs/60130061.mkv +SNH48-回合,http://em.21dtv.com/songs/60128701.mkv +梁静茹-呵护,http://em.21dtv.com/songs/60128140.mkv +孙平阳-护航,http://em.21dtv.com/songs/60125380.mkv +罗时丰-红花,http://em.21dtv.com/songs/60123071.mkv +字金美-花火,http://em.21dtv.com/songs/60121562.mkv +王铮亮-还好,http://em.21dtv.com/songs/60120783.mkv +朴草娥-火花,http://em.21dtv.com/songs/60116894.mkv +贝贝-花火,http://em.21dtv.com/songs/60114084.mkv +贝贝-花火,http://em.21dtv.com/songs/60112974.mkv +谭英-呼唤,http://em.21dtv.com/songs/60111409.mkv +何书宇-后悔,http://em.21dtv.com/songs/60109962.mkv +尚雯婕-花火,http://em.21dtv.com/songs/60109283.mkv +迟日暮-画魂,http://em.21dtv.com/songs/60107255.mkv +温心-火花,http://em.21dtv.com/songs/60107038.mkv +张祖诚-呼唤,http://em.21dtv.com/songs/60103282.mkv +许廷铿-护航,http://em.21dtv.com/songs/60100960.mkv +苗伟-呼唤,http://em.21dtv.com/songs/60100418.mkv +晖倪-好好,http://em.21dtv.com/songs/60100092.mkv +Kent王健-呵呵,http://em.21dtv.com/songs/60096734.mkv +才吉-花湖,http://em.21dtv.com/songs/60091246.mkv +高胜美-呼唤,http://em.21dtv.com/songs/60089008.mkv +飞轮海-横行,http://em.21dtv.com/songs/60088971.mkv +王羽臣+菲菲-还行,http://em.21dtv.com/songs/60088315.mkv +宁静+舜文齐-呼唤,http://em.21dtv.com/songs/60086598.mkv +SHELLY佳+苏霏-呵呵,http://em.21dtv.com/songs/60086590.mkv +晟瑶+阳阳-幻化,http://em.21dtv.com/songs/60085226.mkv +东南-还好,http://em.21dtv.com/songs/60085220.mkv +许诺-honey honey,http://em.21dtv.com/songs/60084720.mkv +KOLOR-花火,http://em.21dtv.com/songs/60083063.mkv +ALAN-呼唤,http://em.21dtv.com/songs/60083051.mkv +黄家强-好好,http://em.21dtv.com/songs/60083005.mkv +KODALINE-high hopes,http://em.21dtv.com/songs/60082179.mkv +张根硕-hello hello,http://em.21dtv.com/songs/60082176.mkv +罗嘉良-火花,http://em.21dtv.com/songs/60081993.mkv +袁小迪-后悔,http://em.21dtv.com/songs/60079330.mkv +毛阿敏-呼唤(演唱会),http://em.21dtv.com/songs/60075814.mkv +ACE HOOD-hustle hard,http://em.21dtv.com/songs/60073365.mkv +KATY PERRY-hummingbird heartbeat(演唱会),http://em.21dtv.com/songs/60073362.mkv +THE LUMINEERS-ho hey,http://em.21dtv.com/songs/60073343.mkv +安心亚-呼呼,http://em.21dtv.com/songs/60072013.mkv +蒲庭龙+苏路-红花,http://em.21dtv.com/songs/60072008.mkv +岚-花火,http://em.21dtv.com/songs/60070762.mkv +曹芙嘉-呼唤(演唱会),http://em.21dtv.com/songs/60070755.mkv +赵奕欢-hello欢,http://em.21dtv.com/songs/60070346.mkv +T.R.Y-火花(演唱会),http://em.21dtv.com/songs/60069487.mkv +梁博-花火,http://em.21dtv.com/songs/60069477.mkv +吴雨霏-狠狠,http://em.21dtv.com/songs/60069460.mkv +GD+TOP-high high,http://em.21dtv.com/songs/60069087.mkv +TABLO-很坏,http://em.21dtv.com/songs/60066025.mkv +DO AS INFINITY-黄昏,http://em.21dtv.com/songs/60064342.mkv +MR.-换画(演唱会),http://em.21dtv.com/songs/60064340.mkv +何韵诗-花花,http://em.21dtv.com/songs/60064321.mkv +高玉玫-呼唤,http://em.21dtv.com/songs/60064316.mkv +黄奕-很好,http://em.21dtv.com/songs/60064298.mkv +ALEXIS JORDAN-hush hush,http://em.21dtv.com/songs/60061950.mkv +F.T ISLAND-hello hello,http://em.21dtv.com/songs/60060920.mkv +张学友-火花,http://em.21dtv.com/songs/60022433.mkv +黄品冠+苏慧伦-火花,http://em.21dtv.com/songs/60022432.mkv +陈明真-火花,http://em.21dtv.com/songs/60022431.mkv +黄品源+辛晓琪-火花(演唱会),http://em.21dtv.com/songs/60022430.mkv +高耀太-火花(演唱会),http://em.21dtv.com/songs/60022429.mkv +袁小迪-回航,http://em.21dtv.com/songs/60022104.mkv +翁立友+林姗-回航,http://em.21dtv.com/songs/60022103.mkv +周传雄-黄昏,http://em.21dtv.com/songs/60021933.mkv +张栋梁-黄昏,http://em.21dtv.com/songs/60021932.mkv +许绍洋-黄昏,http://em.21dtv.com/songs/60021931.mkv +罗文-黄昏,http://em.21dtv.com/songs/60021930.mkv +林忆莲-黄昏,http://em.21dtv.com/songs/60021929.mkv +高向鹏+方瑞娥-黄昏,http://em.21dtv.com/songs/60021928.mkv +周传雄-黄昏(演唱会),http://em.21dtv.com/songs/60021927.mkv +佚名-黄昏(无原唱),http://em.21dtv.com/songs/60021926.mkv +许绍洋-皇后,http://em.21dtv.com/songs/60021878.mkv +方力申-皇后,http://em.21dtv.com/songs/60021877.mkv +吴仲凡-画魂,http://em.21dtv.com/songs/60021608.mkv +汪峰-花火,http://em.21dtv.com/songs/60021403.mkv +深白色2人组-花火,http://em.21dtv.com/songs/60021402.mkv +梁咏琪-花火,http://em.21dtv.com/songs/60021401.mkv +丁当+阿信-花火,http://em.21dtv.com/songs/60021399.mkv +郑秀文-花火(演唱会),http://em.21dtv.com/songs/60021398.mkv +汪峰-花火(演唱会),http://em.21dtv.com/songs/60021397.mkv +陈慧娴-花火(演唱会),http://em.21dtv.com/songs/60021396.mkv +宇宙人-花花,http://em.21dtv.com/songs/60021383.mkv +丁浩然-花花,http://em.21dtv.com/songs/60021382.mkv +罗宁娜-花红,http://em.21dtv.com/songs/60021377.mkv +周杰伦-花海,http://em.21dtv.com/songs/60021366.mkv +陈司翰+徐婕儿-花海(无原唱),http://em.21dtv.com/songs/60021365.mkv +林忆莲-忽忽,http://em.21dtv.com/songs/60021176.mkv +庄学忠-呼唤,http://em.21dtv.com/songs/60021152.mkv +汤灿-呼唤,http://em.21dtv.com/songs/60021151.mkv +齐秦-呼唤,http://em.21dtv.com/songs/60021150.mkv +王菲菲-呼唤(演唱会),http://em.21dtv.com/songs/60021149.mkv +北原山猫-呼唤(无原唱),http://em.21dtv.com/songs/60021148.mkv +黎明-呼喊,http://em.21dtv.com/songs/60021146.mkv +詹雅雯-后悔,http://em.21dtv.com/songs/60021084.mkv +王中平-后悔,http://em.21dtv.com/songs/60021083.mkv +金智娟-后悔,http://em.21dtv.com/songs/60021082.mkv +孙耀威-后悔,http://em.21dtv.com/songs/60021081.mkv +刘德华-后悔,http://em.21dtv.com/songs/60021080.mkv +李克勤-后悔,http://em.21dtv.com/songs/60021079.mkv +韩宝仪-后悔,http://em.21dtv.com/songs/60021078.mkv +方馨-后悔,http://em.21dtv.com/songs/60021077.mkv +李恕权-后悔(无原唱),http://em.21dtv.com/songs/60021076.mkv +孟庭苇-红花,http://em.21dtv.com/songs/60020858.mkv +罗时丰+张秀卿-红海,http://em.21dtv.com/songs/60020841.mkv +佚名-恨海,http://em.21dtv.com/songs/60020699.mkv +甲子蕙-恨海,http://em.21dtv.com/songs/60020698.mkv +蔡幸娟-恨海,http://em.21dtv.com/songs/60020697.mkv +孙燕姿-很好,http://em.21dtv.com/songs/60020639.mkv +佚名-黑海(无原唱),http://em.21dtv.com/songs/60020514.mkv +梁咏琪-荷花(演唱会),http://em.21dtv.com/songs/60020463.mkv +戴爱玲+VOICE-好坏,http://em.21dtv.com/songs/60020047.mkv +陈慧琳-honey honey,http://em.21dtv.com/songs/60002318.mkv +ABBA-honey honey(演唱会),http://em.21dtv.com/songs/60002317.mkv +佚名-ho hui,http://em.21dtv.com/songs/60002283.mkv +佚名-hi-lili hi-lo,http://em.21dtv.com/songs/60002274.mkv +RITA COOLIDGE-higher higher,http://em.21dtv.com/songs/60002268.mkv +J.VAN HEUSEN+S.CAHN-high hopes(无原唱),http://em.21dtv.com/songs/60002264.mkv +邓丽欣-high heels,http://em.21dtv.com/songs/60002262.mkv +可米小子-hey hah,http://em.21dtv.com/songs/60002240.mkv +李乐诗-hello hello(演唱会),http://em.21dtv.com/songs/60002178.mkv +WHITNEY HOUSTON+FAIT-heartbreak hotel,http://em.21dtv.com/songs/60002154.mkv +ELVIS PRESLEY-heartbreak hotel,http://em.21dtv.com/songs/60002153.mkv +ELTON JOHN-hea-ling hands,http://em.21dtv.com/songs/60002142.mkv +苏慧伦-happy hours,http://em.21dtv.com/songs/60002089.mkv +吴日言-happy hour,http://em.21dtv.com/songs/60002088.mkv +方瑾萧+秦胜男-韩冠,http://em.21dtv.com/songs/60129174.mkv +阿悄-很乖,http://em.21dtv.com/songs/60128498.mkv +谢霆锋-回甘,http://em.21dtv.com/songs/60126208.mkv +伽纳-活该,http://em.21dtv.com/songs/60123624.mkv +黄子韬-皇冠,http://em.21dtv.com/songs/60114908.mkv +谢霆锋+陈羽凡+胡海泉+陈伟霆-回甘,http://em.21dtv.com/songs/60114065.mkv +星弟-活该,http://em.21dtv.com/songs/60113564.mkv +邵大伦-回甘,http://em.21dtv.com/songs/60105421.mkv +舒米恩-很赶,http://em.21dtv.com/songs/60096763.mkv +大乔小乔-黑光,http://em.21dtv.com/songs/60096232.mkv +滴草由实-花篝り,http://em.21dtv.com/songs/60083066.mkv +NO DOUBT-hella good,http://em.21dtv.com/songs/60082175.mkv +王识贤-后果,http://em.21dtv.com/songs/60075806.mkv +ADELE-hometown glory,http://em.21dtv.com/songs/60073349.mkv +TAYLOR SWIFT-holy ground,http://em.21dtv.com/songs/60073347.mkv +黄龄+张玮-high歌,http://em.21dtv.com/songs/60073339.mkv +贺东-high歌(演唱会),http://em.21dtv.com/songs/60073338.mkv +HONEY BEES-high歌(演唱会),http://em.21dtv.com/songs/60073337.mkv +容祖儿-活该,http://em.21dtv.com/songs/60070784.mkv +董永鹏-活该,http://em.21dtv.com/songs/60069484.mkv +A.JAX-hot game,http://em.21dtv.com/songs/60069091.mkv +张玮-high歌,http://em.21dtv.com/songs/60069088.mkv +倪明-活该,http://em.21dtv.com/songs/60067098.mkv +苏阳-喊歌(演唱会),http://em.21dtv.com/songs/60067056.mkv +DONY+ELENA GHEORGHE-hot girls,http://em.21dtv.com/songs/60066649.mkv +黑GIRL-hey girl,http://em.21dtv.com/songs/60062448.mkv +石康军-火光,http://em.21dtv.com/songs/60022422.mkv +叶倩文-活过,http://em.21dtv.com/songs/60022371.mkv +信乐团-活该,http://em.21dtv.com/songs/60022369.mkv +谢霆锋-活该,http://em.21dtv.com/songs/60022368.mkv +刘允乐-活该,http://em.21dtv.com/songs/60022367.mkv +BLISS-活该,http://em.21dtv.com/songs/60022366.mkv +林忆莲-回归,http://em.21dtv.com/songs/60022102.mkv +张倾城-红歌,http://em.21dtv.com/songs/60020839.mkv +王友良-合格,http://em.21dtv.com/songs/60020301.mkv +林海峰+黄贯中-好狗(演唱会),http://em.21dtv.com/songs/60020004.mkv +方力申-好歌,http://em.21dtv.com/songs/60020000.mkv +GWEN STEFANI-hollabck girl,http://em.21dtv.com/songs/60002306.mkv +黄龄-high歌,http://em.21dtv.com/songs/60002272.mkv +张爽-hey girl,http://em.21dtv.com/songs/60002239.mkv +李孝利-hey girl,http://em.21dtv.com/songs/60002238.mkv +G.GOFFIN+C.KING-hey girl(无原唱),http://em.21dtv.com/songs/60002237.mkv +佚名-hello goodbye,http://em.21dtv.com/songs/60002177.mkv +THE BEATLES-hello goodbye,http://em.21dtv.com/songs/60002176.mkv +谭咏麟-hello goodbye(演唱会),http://em.21dtv.com/songs/60002175.mkv +苏醒-happy go,http://em.21dtv.com/songs/60002086.mkv +与非门-happy girl,http://em.21dtv.com/songs/60002085.mkv +佚名-happy girl,http://em.21dtv.com/songs/60002084.mkv +后弦-画风,http://em.21dtv.com/songs/60123737.mkv +郝云-海风,http://em.21dtv.com/songs/60118968.mkv +张宇轩-海风,http://em.21dtv.com/songs/60070723.mkv +张杰-回放,http://em.21dtv.com/songs/60022099.mkv +张宇-荒废,http://em.21dtv.com/songs/60021859.mkv +韦嘉-红粉,http://em.21dtv.com/songs/60020834.mkv +黄耀明-黑房(演唱会),http://em.21dtv.com/songs/60020511.mkv +邓丽欣-海风,http://em.21dtv.com/songs/60019720.mkv +柏文-海风,http://em.21dtv.com/songs/60019719.mkv +EVA-hot french,http://em.21dtv.com/songs/60002337.mkv +佚名-happy face,http://em.21dtv.com/songs/60002083.mkv +LONDON GRAMMAR-Hey Now,http://em.21dtv.com/songs/60099678.mkv +群星-HEY NOW,http://em.21dtv.com/songs/60096617.mkv +GLEE CAST-Hey Jude,http://em.21dtv.com/songs/60099661.mkv +Kent王健-HEY GIRL,http://em.21dtv.com/songs/60096616.mkv +吉克隽逸-花儿,http://em.21dtv.com/songs/60117605.mkv +花漾年华-花儿,http://em.21dtv.com/songs/60107963.mkv +谭咏麟-孩儿,http://em.21dtv.com/songs/60104440.mkv +吉杰-花儿,http://em.21dtv.com/songs/60081907.mkv +花泽香菜-happy endings,http://em.21dtv.com/songs/60073305.mkv +王鹤铮-花儿,http://em.21dtv.com/songs/60061258.mkv +叶蓓-花儿,http://em.21dtv.com/songs/60021333.mkv +纪如璟-花儿,http://em.21dtv.com/songs/60021332.mkv +花儿乐队-花儿,http://em.21dtv.com/songs/60021331.mkv +周华健-花儿(演唱会),http://em.21dtv.com/songs/60021330.mkv +ERIC CARMEN-hungry eyes,http://em.21dtv.com/songs/60002390.mkv +夏韶声-hello everybody(演唱会),http://em.21dtv.com/songs/60002174.mkv +MIKA-happy ending,http://em.21dtv.com/songs/60002081.mkv +南方二重唱-happy ending(无原唱),http://em.21dtv.com/songs/60002080.mkv +JUMPER乐队-红灯,http://em.21dtv.com/songs/60133220.mkv +N.P.E自由引力-蝴蝶,http://em.21dtv.com/songs/60131088.mkv +何芝芸-换掉,http://em.21dtv.com/songs/60130082.mkv +王馨-哈达,http://em.21dtv.com/songs/60129423.mkv +谢春花-荒岛,http://em.21dtv.com/songs/60128407.mkv +杨美娜-黄豆,http://em.21dtv.com/songs/60127096.mkv +陈奕迅-黑洞,http://em.21dtv.com/songs/60126377.mkv +许靖韵-蝴蝶,http://em.21dtv.com/songs/60126192.mkv +吕薇-蝴蝶,http://em.21dtv.com/songs/60125281.mkv +指人儿乐队-蝴蝶,http://em.21dtv.com/songs/60119596.mkv +陈泽希+夏之光-黄豆,http://em.21dtv.com/songs/60117347.mkv +陈奕迅-黑洞,http://em.21dtv.com/songs/60117331.mkv +谢宜君-红豆,http://em.21dtv.com/songs/60114789.mkv +朗嘎拉姆+凌菱-红豆,http://em.21dtv.com/songs/60114584.mkv +吴奇隆+严艺丹-寒冬,http://em.21dtv.com/songs/60107570.mkv +李维-红豆,http://em.21dtv.com/songs/60104219.mkv +白玛多吉-哈达(风景),http://em.21dtv.com/songs/60102575.mkv +鲍蓉-蝴蝶,http://em.21dtv.com/songs/60101007.mkv +圆圆-花朵,http://em.21dtv.com/songs/60100804.mkv +罗时丰-蝴蝶,http://em.21dtv.com/songs/60096835.mkv +杨昭-花旦,http://em.21dtv.com/songs/60093892.mkv +泽旺多吉-哈达,http://em.21dtv.com/songs/60091610.mkv +春天-化碟,http://em.21dtv.com/songs/60086449.mkv +逆思乐团-蝴蝶,http://em.21dtv.com/songs/60085200.mkv +蔡淳佳-获得,http://em.21dtv.com/songs/60080898.mkv +陶吉吉-蝴蝶,http://em.21dtv.com/songs/60075824.mkv +爱朵女孩-海盗,http://em.21dtv.com/songs/60075643.mkv +李晓-海岛,http://em.21dtv.com/songs/60075641.mkv +李昱和-幻蝶,http://em.21dtv.com/songs/60072029.mkv +陈瑞-红豆,http://em.21dtv.com/songs/60072006.mkv +陈凤-豁达,http://em.21dtv.com/songs/60022347.mkv +伊雪莉-回答,http://em.21dtv.com/songs/60022079.mkv +陈小春-黄豆,http://em.21dtv.com/songs/60021893.mkv +胡彦斌-皇帝,http://em.21dtv.com/songs/60021875.mkv +卓依婷-化蝶,http://em.21dtv.com/songs/60021593.mkv +郑绪岚+牟玄甫-化蝶,http://em.21dtv.com/songs/60021592.mkv +张也-化蝶,http://em.21dtv.com/songs/60021591.mkv +佚名-化蝶,http://em.21dtv.com/songs/60021590.mkv +何韵诗-化蝶,http://em.21dtv.com/songs/60021589.mkv +何韵诗-化蝶(演唱会),http://em.21dtv.com/songs/60021588.mkv +齐露-花朵,http://em.21dtv.com/songs/60021329.mkv +陈慧娴-花店(演唱会),http://em.21dtv.com/songs/60021325.mkv +周华健-花旦,http://em.21dtv.com/songs/60021318.mkv +王尧-花旦,http://em.21dtv.com/songs/60021317.mkv +脱拉库-互动(无原唱),http://em.21dtv.com/songs/60021297.mkv +佚名-蝴蝶,http://em.21dtv.com/songs/60021241.mkv +王心凌-蝴蝶,http://em.21dtv.com/songs/60021240.mkv +王菲-蝴蝶,http://em.21dtv.com/songs/60021239.mkv +堂娜-蝴蝶,http://em.21dtv.com/songs/60021238.mkv +刘若英-蝴蝶,http://em.21dtv.com/songs/60021237.mkv +侃侃-蝴蝶,http://em.21dtv.com/songs/60021236.mkv +静子-蝴蝶,http://em.21dtv.com/songs/60021235.mkv +胡彦斌-蝴蝶,http://em.21dtv.com/songs/60021234.mkv +方皓玟-蝴蝶,http://em.21dtv.com/songs/60021233.mkv +胡彦斌-蝴蝶(演唱会),http://em.21dtv.com/songs/60021232.mkv +王菲-红豆,http://em.21dtv.com/songs/60020823.mkv +刘亮-红豆,http://em.21dtv.com/songs/60020822.mkv +李霄云+苏醒-红豆,http://em.21dtv.com/songs/60020821.mkv +江凯文-红豆,http://em.21dtv.com/songs/60020820.mkv +方大同-红豆,http://em.21dtv.com/songs/60020819.mkv +邓丽君-红豆,http://em.21dtv.com/songs/60020818.mkv +郑中基-红豆(演唱会),http://em.21dtv.com/songs/60020817.mkv +文章-红豆(演唱会),http://em.21dtv.com/songs/60020816.mkv +何韵诗-红豆(演唱会),http://em.21dtv.com/songs/60020815.mkv +锦绣二重唱-河堤,http://em.21dtv.com/songs/60020457.mkv +黄伊汶-好睇,http://em.21dtv.com/songs/60019992.mkv +冷漠-寒冬,http://em.21dtv.com/songs/60019900.mkv +蔡依林-海盗,http://em.21dtv.com/songs/60019712.mkv +春雷-哈达,http://em.21dtv.com/songs/60019546.mkv +ELVIS PRESLEY-hound dog,http://em.21dtv.com/songs/60002348.mkv +佚名-hot diggity,http://em.21dtv.com/songs/60002336.mkv +佚名-hello dolly,http://em.21dtv.com/songs/60002173.mkv +潘迪华-hello dolly(演唱会),http://em.21dtv.com/songs/60002172.mkv +佚名-hello darling,http://em.21dtv.com/songs/60002171.mkv +PRATT+MCCLAIN-happy days,http://em.21dtv.com/songs/60002079.mkv +中国娃娃-happy day,http://em.21dtv.com/songs/60002077.mkv +宇恒-happy day,http://em.21dtv.com/songs/60002076.mkv +童星-happy day,http://em.21dtv.com/songs/60002075.mkv +吕佳芳-happy day,http://em.21dtv.com/songs/60002074.mkv +曹格-happy day,http://em.21dtv.com/songs/60002073.mkv +WEWE-happy day,http://em.21dtv.com/songs/60002072.mkv +魏紫祺-幻城,http://em.21dtv.com/songs/60132006.mkv +刘玉婷-花痴,http://em.21dtv.com/songs/60130123.mkv +格子兮-花城,http://em.21dtv.com/songs/60121830.mkv +叶倩文-红尘,http://em.21dtv.com/songs/60119335.mkv +陈奕迅-喝彩,http://em.21dtv.com/songs/60093395.mkv +安又琪-换成,http://em.21dtv.com/songs/60089808.mkv +许嵩+李毅杰-幻城,http://em.21dtv.com/songs/60083079.mkv +周旭风-缓冲,http://em.21dtv.com/songs/60083075.mkv +小曲儿+HITA-红尘,http://em.21dtv.com/songs/60083037.mkv +李丽蕊-喝彩(演唱会),http://em.21dtv.com/songs/60075705.mkv +吕珊-喝采(演唱会),http://em.21dtv.com/songs/60075704.mkv +邓建民+雷有辉+邓祖德-hoter califomia(演唱会),http://em.21dtv.com/songs/60073353.mkv +洪荣宏-好茶,http://em.21dtv.com/songs/60071988.mkv +胥拉齐-红尘,http://em.21dtv.com/songs/60070747.mkv +孙晓哲-蝗虫,http://em.21dtv.com/songs/60068348.mkv +ALANIS MORISSETTE-hands clean,http://em.21dtv.com/songs/60066647.mkv +COMMON-heavy cross,http://em.21dtv.com/songs/60065602.mkv +许志安-花痴,http://em.21dtv.com/songs/60063224.mkv +罗大佑-火车,http://em.21dtv.com/songs/60022411.mkv +郑中基-火柴,http://em.21dtv.com/songs/60022406.mkv +佚名-火柴,http://em.21dtv.com/songs/60022405.mkv +羽泉-火柴(演唱会),http://em.21dtv.com/songs/60022404.mkv +黄伊汶-豁出,http://em.21dtv.com/songs/60022345.mkv +丁薇-慌城,http://em.21dtv.com/songs/60021871.mkv +张学友-欢场(演唱会),http://em.21dtv.com/songs/60021730.mkv +三木科-画春(演唱会),http://em.21dtv.com/songs/60021606.mkv +苏打绿-花茶,http://em.21dtv.com/songs/60021313.mkv +达明一派-后窗(演唱会),http://em.21dtv.com/songs/60021074.mkv +小龙-红唇,http://em.21dtv.com/songs/60020785.mkv +赵学而-红尘,http://em.21dtv.com/songs/60020758.mkv +叶倩文-红尘,http://em.21dtv.com/songs/60020757.mkv +王建杰-红尘,http://em.21dtv.com/songs/60020756.mkv +李翊君-红尘,http://em.21dtv.com/songs/60020755.mkv +林萍-喝彩(演唱会),http://em.21dtv.com/songs/60020289.mkv +陈琳-喝彩(演唱会),http://em.21dtv.com/songs/60020288.mkv +群星-喝采,http://em.21dtv.com/songs/60020287.mkv +韩宝仪-喝采,http://em.21dtv.com/songs/60020286.mkv +陈百强-喝采,http://em.21dtv.com/songs/60020285.mkv +5566-喝采,http://em.21dtv.com/songs/60020284.mkv +陈慧娴-喝采(演唱会),http://em.21dtv.com/songs/60020282.mkv +陈百强-喝采(演唱会),http://em.21dtv.com/songs/60020281.mkv +温碧霞-海潮,http://em.21dtv.com/songs/60019709.mkv +HE有激人-海产,http://em.21dtv.com/songs/60019708.mkv +李玟-hello c,http://em.21dtv.com/songs/60002170.mkv +佚名-happy christmas,http://em.21dtv.com/songs/60002071.mkv +谭维维-hold不住,http://em.21dtv.com/songs/60084893.mkv +沙宝亮-伙伴,http://em.21dtv.com/songs/60127161.mkv +陈如山-黑白,http://em.21dtv.com/songs/60121073.mkv +陈珊妮-海边,http://em.21dtv.com/songs/60100597.mkv +罗百吉+宝贝-嘿 baby,http://em.21dtv.com/songs/60086595.mkv +超泉RZ组合-海边,http://em.21dtv.com/songs/60085159.mkv +张赫宣-伙伴,http://em.21dtv.com/songs/60082039.mkv +唯嘉-花边,http://em.21dtv.com/songs/60082008.mkv +天天-花豹,http://em.21dtv.com/songs/60081994.mkv +王诗安-Hey Boy,http://em.21dtv.com/songs/60081701.mkv +周笔畅-何必,http://em.21dtv.com/songs/60080375.mkv +陈僖仪-后备,http://em.21dtv.com/songs/60075805.mkv +OFFROAD-head banging,http://em.21dtv.com/songs/60073313.mkv +桑兰+谭双剑-怀抱,http://em.21dtv.com/songs/60070767.mkv +PERFUME-hurly burly,http://em.21dtv.com/songs/60070347.mkv +李宇春-hello baby,http://em.21dtv.com/songs/60070345.mkv +名侦探柯南-happy birthday,http://em.21dtv.com/songs/60067901.mkv +万清泉-海边,http://em.21dtv.com/songs/60067049.mkv +AGIA-hey boy,http://em.21dtv.com/songs/60065605.mkv +FOSTER THE PEOPLE-helena beat,http://em.21dtv.com/songs/60065604.mkv +邓超+孙俪-画壁,http://em.21dtv.com/songs/60064328.mkv +孙俪+邓超-画壁,http://em.21dtv.com/songs/60062956.mkv +斯琴高丽-黑白,http://em.21dtv.com/songs/60062920.mkv +卓依婷-伙伴,http://em.21dtv.com/songs/60022485.mkv +孙悦-伙伴,http://em.21dtv.com/songs/60022484.mkv +何静-火把,http://em.21dtv.com/songs/60022403.mkv +佚名-回避(无原唱),http://em.21dtv.com/songs/60022074.mkv +陈慧娴-回报,http://em.21dtv.com/songs/60022073.mkv +李恕权-挥别,http://em.21dtv.com/songs/60022052.mkv +群星-怀抱,http://em.21dtv.com/songs/60021637.mkv +郭峰-怀抱,http://em.21dtv.com/songs/60021636.mkv +曾慧+邓志驹-话别,http://em.21dtv.com/songs/60021624.mkv +邓丽欣-话别(演唱会),http://em.21dtv.com/songs/60021623.mkv +韦嘉-花边,http://em.21dtv.com/songs/60021310.mkv +王友良-红白,http://em.21dtv.com/songs/60020746.mkv +ME2-黑板(无原唱),http://em.21dtv.com/songs/60020505.mkv +朱孝天-黑白,http://em.21dtv.com/songs/60020489.mkv +方大同-黑白,http://em.21dtv.com/songs/60020488.mkv +陈淑芳-河坝,http://em.21dtv.com/songs/60020452.mkv +郑秀文-何必,http://em.21dtv.com/songs/60020315.mkv +动力火车-好吧,http://em.21dtv.com/songs/60019969.mkv +王馨平-寒冰,http://em.21dtv.com/songs/60019899.mkv +余天-海边,http://em.21dtv.com/songs/60019695.mkv +李茂山-海边,http://em.21dtv.com/songs/60019694.mkv +M.JONES+L.GRAMM-hot blooded(无原唱),http://em.21dtv.com/songs/60002335.mkv +豹小子-honey baby,http://em.21dtv.com/songs/60002314.mkv +佚名-homeward bound,http://em.21dtv.com/songs/60002312.mkv +王心凌-hihi byebye,http://em.21dtv.com/songs/60002273.mkv +BUDDY-hey buddy,http://em.21dtv.com/songs/60002236.mkv +陈嘉唯-hey boy,http://em.21dtv.com/songs/60002235.mkv +黄立成+黄立行-hey baby,http://em.21dtv.com/songs/60002234.mkv +NO DOUBT-hey baby,http://em.21dtv.com/songs/60002233.mkv +张卫健-happy birthday,http://em.21dtv.com/songs/60002069.mkv +林强-happy birthday,http://em.21dtv.com/songs/60002068.mkv +黄鹤翔-happy birthday,http://em.21dtv.com/songs/60002067.mkv +TWINS-happy birthday,http://em.21dtv.com/songs/60002066.mkv +蓝弘钦-happy birthday(无原唱),http://em.21dtv.com/songs/60002065.mkv +R.KELLY-hair braider,http://em.21dtv.com/songs/60002048.mkv +SHIN JI HOON-Happy Ending,http://em.21dtv.com/songs/60100753.mkv +左左右右-Happy ABC,http://em.21dtv.com/songs/60127938.mkv +凤娘+黄芭乐-happy song,http://em.21dtv.com/songs/60062355.mkv +陈梓童-Hands Up,http://em.21dtv.com/songs/60128543.mkv +2PM-Hands Up(演唱会),http://em.21dtv.com/songs/60099643.mkv +陈心蕊-画爱,http://em.21dtv.com/songs/60120079.mkv +Elton John-Home Again,http://em.21dtv.com/songs/60098990.mkv +EXO-M-heart attack,http://em.21dtv.com/songs/60082174.mkv +DEMI LOVATO-heart attack,http://em.21dtv.com/songs/60073314.mkv +TREY SONGZ-heart attack,http://em.21dtv.com/songs/60067904.mkv +MICHAEL KIWANUKA-home again,http://em.21dtv.com/songs/60065608.mkv +王羽泽-谎爱,http://em.21dtv.com/songs/60022009.mkv +王心凌-很爱,http://em.21dtv.com/songs/60020633.mkv +高远-黑暗,http://em.21dtv.com/songs/60020483.mkv +伊能静-河岸,http://em.21dtv.com/songs/60020451.mkv +郑敬基+郑伊健+蔡济文-home alone,http://em.21dtv.com/songs/60002308.mkv +JOSH GROBAN-hidden away,http://em.21dtv.com/songs/60002260.mkv +施文斌-hello angel,http://em.21dtv.com/songs/60002169.mkv +NEIL DIAMOND-hello again,http://em.21dtv.com/songs/60002168.mkv +凤凰传奇-嗨!mrsleta(演唱会),http://em.21dtv.com/songs/60020607.mkv +李猛-灌醉,http://em.21dtv.com/songs/60133815.mkv +黄英-鸽子,http://em.21dtv.com/songs/60129851.mkv +杨丞琳-观众,http://em.21dtv.com/songs/60129267.mkv +胡彦斌-鸽子,http://em.21dtv.com/songs/60120872.mkv +梁剑东-广州,http://em.21dtv.com/songs/60119721.mkv +高夫-灌醉,http://em.21dtv.com/songs/60117390.mkv +庄心妍-故作,http://em.21dtv.com/songs/60111841.mkv +武艺-过站,http://em.21dtv.com/songs/60103404.mkv +张子瑄-公主,http://em.21dtv.com/songs/60094893.mkv +译乐队-过招,http://em.21dtv.com/songs/60092087.mkv +黃文格-灌醉,http://em.21dtv.com/songs/60089020.mkv +舞曲-鸽子,http://em.21dtv.com/songs/60088513.mkv +邰正宵-歌者,http://em.21dtv.com/songs/60081757.mkv +吴建豪-改装,http://em.21dtv.com/songs/60080762.mkv +梁汉文-古著,http://em.21dtv.com/songs/60079947.mkv +林一峰-干燥,http://em.21dtv.com/songs/60075447.mkv +CREAM-孖公仔,http://em.21dtv.com/songs/60069029.mkv +林子娟-观众,http://em.21dtv.com/songs/60067041.mkv +纪文惠-观众,http://em.21dtv.com/songs/60019248.mkv +黄烈传-拐杖(无原唱),http://em.21dtv.com/songs/60019164.mkv +陈柏宇-固执,http://em.21dtv.com/songs/60019021.mkv +周柏豪-够钟,http://em.21dtv.com/songs/60018812.mkv +阮丹青-跟踪,http://em.21dtv.com/songs/60018668.mkv +洪一平-跟踪,http://em.21dtv.com/songs/60018667.mkv +佚名-鸽子,http://em.21dtv.com/songs/60018335.mkv +杨宗纬-鸽子,http://em.21dtv.com/songs/60018334.mkv +刘淑芳-鸽子(演唱会),http://em.21dtv.com/songs/60018333.mkv +佚名-鸽子(探戈),http://em.21dtv.com/songs/60018332.mkv +郭富城-高涨,http://em.21dtv.com/songs/60018256.mkv +吴彤-港仔,http://em.21dtv.com/songs/60018190.mkv +郭美美-光阴,http://em.21dtv.com/songs/60134336.mkv +杨荣辉-甘愿,http://em.21dtv.com/songs/60132591.mkv +周怡然-皈依,http://em.21dtv.com/songs/60131270.mkv +杨荣辉-甘愿,http://em.21dtv.com/songs/60130468.mkv +黄奕儒-关于,http://em.21dtv.com/songs/60124734.mkv +邱贤桂+一绫-甘愿,http://em.21dtv.com/songs/60123226.mkv +周鼎棋-孤雁,http://em.21dtv.com/songs/60122608.mkv +老狼-管艺,http://em.21dtv.com/songs/60118851.mkv +王中平-甘愿,http://em.21dtv.com/songs/60115286.mkv +郭娅丽-国韵,http://em.21dtv.com/songs/60108927.mkv +杨卿俪-高原,http://em.21dtv.com/songs/60108602.mkv +杨宗纬-光影,http://em.21dtv.com/songs/60107815.mkv +廖柏雅-光晕,http://em.21dtv.com/songs/60105812.mkv +郑如仪-盖亚,http://em.21dtv.com/songs/60096794.mkv +蔡小虎-孤云,http://em.21dtv.com/songs/60095900.mkv +张燕-赶月,http://em.21dtv.com/songs/60091144.mkv +腾格尔-孤影(无原唱),http://em.21dtv.com/songs/60090126.mkv +哈琪 男人啊男人-国语,http://em.21dtv.com/songs/60086577.mkv +SWEETY-光翼,http://em.21dtv.com/songs/60082981.mkv +梁凡-官谣,http://em.21dtv.com/songs/60075596.mkv +谢和弦-关于,http://em.21dtv.com/songs/60075589.mkv +谭伟权-孤燕(演唱会),http://em.21dtv.com/songs/60075564.mkv +林忆莲-盖亚,http://em.21dtv.com/songs/60069403.mkv +郭娅丽-国韵,http://em.21dtv.com/songs/60068296.mkv +顾莉雅-光影,http://em.21dtv.com/songs/60064265.mkv +王啸坤-故意,http://em.21dtv.com/songs/60063037.mkv +[Group] +groupName=十六万歌曲MV等 - 07 +卢凯彤-哽咽,http://em.21dtv.com/songs/60061213.mkv +周传雄-过夜,http://em.21dtv.com/songs/60019539.mkv +往日时光-国语,http://em.21dtv.com/songs/60019461.mkv +程琳-归燕,http://em.21dtv.com/songs/60019389.mkv +水玻璃-光阴,http://em.21dtv.com/songs/60019320.mkv +孙燕姿-关于,http://em.21dtv.com/songs/60019217.mkv +无印良品+黄嘉千-故意,http://em.21dtv.com/songs/60019129.mkv +黄嘉千-故意,http://em.21dtv.com/songs/60019128.mkv +陈冠希-故意,http://em.21dtv.com/songs/60019127.mkv +王杰-孤鹰,http://em.21dtv.com/songs/60018931.mkv +季中平-孤叶(无原唱),http://em.21dtv.com/songs/60018929.mkv +陈百强-孤雁,http://em.21dtv.com/songs/60018927.mkv +津亭-勾引(无原唱),http://em.21dtv.com/songs/60018794.mkv +方大同-公园,http://em.21dtv.com/songs/60018697.mkv +堂娜-隔夜,http://em.21dtv.com/songs/60018439.mkv +张惠妹-感应,http://em.21dtv.com/songs/60018108.mkv +泳儿-感应,http://em.21dtv.com/songs/60018107.mkv +蒙恩使女-感应,http://em.21dtv.com/songs/60018106.mkv +黎明-感应,http://em.21dtv.com/songs/60018105.mkv +泳儿-感应(演唱会),http://em.21dtv.com/songs/60018104.mkv +余天+陈盈洁-甘愿,http://em.21dtv.com/songs/60017888.mkv +佚名-甘愿,http://em.21dtv.com/songs/60017887.mkv +叶启田-甘愿,http://em.21dtv.com/songs/60017886.mkv +彭佳慧-甘愿,http://em.21dtv.com/songs/60017885.mkv +罗时丰+曾心梅-甘愿,http://em.21dtv.com/songs/60017884.mkv +李明洋+邱芸子-甘愿,http://em.21dtv.com/songs/60017883.mkv +宋佳玲-甘愿(无原唱),http://em.21dtv.com/songs/60017882.mkv +张信哲-goodbye yesterday,http://em.21dtv.com/songs/60001983.mkv +蔡丽津-惯习,http://em.21dtv.com/songs/60135701.mkv +胡彦斌-搞笑,http://em.21dtv.com/songs/60131743.mkv +王莉-故乡,http://em.21dtv.com/songs/60131674.mkv +萨尔罕-感谢,http://em.21dtv.com/songs/60129561.mkv +王振楠-感谢,http://em.21dtv.com/songs/60129395.mkv +吴晓蕾-故乡,http://em.21dtv.com/songs/60126698.mkv +陈夏莲-感谢,http://em.21dtv.com/songs/60126369.mkv +温心-感谢,http://em.21dtv.com/songs/60125878.mkv +陈夏莲-感谢,http://em.21dtv.com/songs/60124620.mkv +田维英-感谢,http://em.21dtv.com/songs/60119841.mkv +胡彦斌-搞笑,http://em.21dtv.com/songs/60117134.mkv +钱红-故乡,http://em.21dtv.com/songs/60118116.mkv +彭丽媛-感谢,http://em.21dtv.com/songs/60113507.mkv +雨宗林-感谢,http://em.21dtv.com/songs/60113082.mkv +木棉-故乡,http://em.21dtv.com/songs/60110256.mkv +刘德华-归宿(HD),http://em.21dtv.com/songs/10012636.mkv +吴静怡-感谢(HD),http://em.21dtv.com/songs/10012743.mkv +余天龙-感谢,http://em.21dtv.com/songs/60108300.mkv +格桑英妮-故乡,http://em.21dtv.com/songs/60107831.mkv +幺红-故乡,http://em.21dtv.com/songs/60105003.mkv +帕尔哈提+王卓-故乡,http://em.21dtv.com/songs/60104096.mkv +吴家程-感谢,http://em.21dtv.com/songs/60102027.mkv +陈百潭-挂心,http://em.21dtv.com/songs/60096017.mkv +毕夏-故乡,http://em.21dtv.com/songs/60085149.mkv +腾格尔-故乡,http://em.21dtv.com/songs/60082970.mkv +陈浩民-感谢,http://em.21dtv.com/songs/60080455.mkv +格格-归乡,http://em.21dtv.com/songs/60075612.mkv +谭圳-故乡,http://em.21dtv.com/songs/60075571.mkv +张靓颖-感谢,http://em.21dtv.com/songs/60071944.mkv +黄思婷-惯习,http://em.21dtv.com/songs/60069435.mkv +少司命-宫心,http://em.21dtv.com/songs/60069422.mkv +红乐队-感谢(演唱会),http://em.21dtv.com/songs/60067021.mkv +完玛三智-故乡(蒙),http://em.21dtv.com/songs/60064255.mkv +胡东清-感谢,http://em.21dtv.com/songs/60064219.mkv +吴春燕-感谢(演唱会),http://em.21dtv.com/songs/60063086.mkv +佚名-归乡,http://em.21dtv.com/songs/60019382.mkv +王识贤-惯习,http://em.21dtv.com/songs/60019266.mkv +林姗-惯习,http://em.21dtv.com/songs/60019265.mkv +张艾文-关心,http://em.21dtv.com/songs/60019212.mkv +叶倩文-关心,http://em.21dtv.com/songs/60019211.mkv +孙耀威-关心,http://em.21dtv.com/songs/60019210.mkv +龙千玉-挂心(无原唱),http://em.21dtv.com/songs/60019152.mkv +麦浚龙-挂线,http://em.21dtv.com/songs/60019151.mkv +佚名-故乡,http://em.21dtv.com/songs/60019060.mkv +叶启田-故乡,http://em.21dtv.com/songs/60019059.mkv +许巍-故乡,http://em.21dtv.com/songs/60019058.mkv +小凤凤-故乡,http://em.21dtv.com/songs/60019057.mkv +斯琴格日乐-故乡,http://em.21dtv.com/songs/60019056.mkv +施文彬-故乡,http://em.21dtv.com/songs/60019055.mkv +容中尔甲-故乡,http://em.21dtv.com/songs/60019054.mkv +刘巧巧-故乡,http://em.21dtv.com/songs/60019053.mkv +降央卓玛-故乡,http://em.21dtv.com/songs/60019052.mkv +许巍-故乡(演唱会),http://em.21dtv.com/songs/60019051.mkv +佚名-故乡(伦巴),http://em.21dtv.com/songs/60019050.mkv +吴奇隆-孤星,http://em.21dtv.com/songs/60018923.mkv +王杰-孤星,http://em.21dtv.com/songs/60018922.mkv +叶倩文-恭喜(演唱会),http://em.21dtv.com/songs/60018733.mkv +王馨平-个性,http://em.21dtv.com/songs/60018448.mkv +张宇-割心,http://em.21dtv.com/songs/60018354.mkv +罗志祥-搞笑,http://em.21dtv.com/songs/60018263.mkv +TWINS-高兴,http://em.21dtv.com/songs/60018236.mkv +佚名-感谢,http://em.21dtv.com/songs/60018080.mkv +杨烈-感谢,http://em.21dtv.com/songs/60018079.mkv +韦唯-感谢,http://em.21dtv.com/songs/60018078.mkv +屠洪纲-感谢,http://em.21dtv.com/songs/60018077.mkv +孙协志-感谢,http://em.21dtv.com/songs/60018076.mkv +林子祥-感谢,http://em.21dtv.com/songs/60018075.mkv +黄品源-感谢,http://em.21dtv.com/songs/60018074.mkv +李玟-感谢(演唱会),http://em.21dtv.com/songs/60018073.mkv +黑龙-感谢(演唱会),http://em.21dtv.com/songs/60018072.mkv +林姗-感谢(无原唱),http://em.21dtv.com/songs/60018071.mkv +刘德华-甘心,http://em.21dtv.com/songs/60017872.mkv +李佑晨-管我,http://em.21dtv.com/songs/60131494.mkv +燕飞-港湾,http://em.21dtv.com/songs/60122978.mkv +吉吉-过往,http://em.21dtv.com/songs/60120399.mkv +吉吉-过往,http://em.21dtv.com/songs/60118430.mkv +严爵-过往,http://em.21dtv.com/songs/60116504.mkv +古巨基-怪物,http://em.21dtv.com/songs/60112560.mkv +萧亚轩-给我,http://em.21dtv.com/songs/60091997.mkv +陈星+周虹雨-共舞,http://em.21dtv.com/songs/60088887.mkv +小人-怪物,http://em.21dtv.com/songs/60082973.mkv +天悦-过往,http://em.21dtv.com/songs/60075630.mkv +刁寒-感悟,http://em.21dtv.com/songs/60075460.mkv +小类-国王,http://em.21dtv.com/songs/60019451.mkv +BEYOND-管我,http://em.21dtv.com/songs/60019261.mkv +陈奕迅-怪物(演唱会),http://em.21dtv.com/songs/60019188.mkv +堂娜-怪我,http://em.21dtv.com/songs/60019182.mkv +佚名-鼓舞,http://em.21dtv.com/songs/60019018.mkv +BEYOND-鼓舞,http://em.21dtv.com/songs/60019017.mkv +顺子-给我(演唱会),http://em.21dtv.com/songs/60018530.mkv +伍思凯-港湾,http://em.21dtv.com/songs/60018189.mkv +董文华-港湾,http://em.21dtv.com/songs/60018188.mkv +B.KILLETTE-girl watcher(无原唱),http://em.21dtv.com/songs/60001880.mkv +C.THOMAS-gee whiz(无原唱),http://em.21dtv.com/songs/60001836.mkv +郭富城-goodbye valentine,http://em.21dtv.com/songs/60001981.mkv +THE BEACH BOYS-good vibrations,http://em.21dtv.com/songs/60001966.mkv +吴建豪+安七炫-good vibration,http://em.21dtv.com/songs/60001965.mkv +何韵诗-goo vibration(演唱会),http://em.21dtv.com/songs/60001943.mkv +阿肆-get up,http://em.21dtv.com/songs/60084715.mkv +BINGO PLAYERS+FAR EAST MOVEMENT-get up,http://em.21dtv.com/songs/60073239.mkv +胡灵-get up,http://em.21dtv.com/songs/60070340.mkv +LINKIN PARK-given up(演唱会),http://em.21dtv.com/songs/60062096.mkv +郑俊弘-归途,http://em.21dtv.com/songs/60103618.mkv +方瑞娥-歌坛,http://em.21dtv.com/songs/60095552.mkv +李常超-孤途,http://em.21dtv.com/songs/60094934.mkv +电影插曲-给她,http://em.21dtv.com/songs/60089427.mkv +林依晨-归途,http://em.21dtv.com/songs/60088087.mkv +成龙-国土,http://em.21dtv.com/songs/60075618.mkv +李萧寒-归途,http://em.21dtv.com/songs/60075611.mkv +CHRIS BROWN+LIL WAYNE-gimme that,http://em.21dtv.com/songs/60073242.mkv +蓝琪儿-归途,http://em.21dtv.com/songs/60068293.mkv +郭采洁-给他,http://em.21dtv.com/songs/60068275.mkv +OWL CITY-good time,http://em.21dtv.com/songs/60067899.mkv +张智霖-get together(演唱会),http://em.21dtv.com/songs/60063602.mkv +RICH BOY-good things,http://em.21dtv.com/songs/60062135.mkv +于文华-国土,http://em.21dtv.com/songs/60019450.mkv +末裔乐队-归途(演唱会),http://em.21dtv.com/songs/60019381.mkv +郑中基-怪胎,http://em.21dtv.com/songs/60019181.mkv +林淑慧-歌坛(无原唱),http://em.21dtv.com/songs/60018402.mkv +GUCCI MANE-gucci time,http://em.21dtv.com/songs/60002040.mkv +陈伟霆-great time,http://em.21dtv.com/songs/60002020.mkv +佚名-good timin,http://em.21dtv.com/songs/60001962.mkv +EDIE BRICKELL-good times,http://em.21dtv.com/songs/60001961.mkv +陈奕迅-good times(演唱会),http://em.21dtv.com/songs/60001960.mkv +BEYOND-good time,http://em.21dtv.com/songs/60001959.mkv +佚名-get together,http://em.21dtv.com/songs/60001862.mkv +薛之谦-高尚,http://em.21dtv.com/songs/60135715.mkv +李聪-故事,http://em.21dtv.com/songs/60135375.mkv +薛之谦-高尚,http://em.21dtv.com/songs/60134204.mkv +梁剑东-歌手,http://em.21dtv.com/songs/60133893.mkv +忽日勒夫-歌手,http://em.21dtv.com/songs/60129150.mkv +关喆-光束,http://em.21dtv.com/songs/60128807.mkv +王野-故事,http://em.21dtv.com/songs/60124288.mkv +徐良-歌手,http://em.21dtv.com/songs/60122768.mkv +乔一-故事,http://em.21dtv.com/songs/60121346.mkv +CATALYSER-怪兽,http://em.21dtv.com/songs/60120197.mkv +DJ阿颖+红孩儿-故事,http://em.21dtv.com/songs/60119134.mkv +郭赛伟-故事,http://em.21dtv.com/songs/60118975.mkv +贺一航-故事,http://em.21dtv.com/songs/60118064.mkv +余枫-跟上,http://em.21dtv.com/songs/60115003.mkv +何杰-歌手(HD),http://em.21dtv.com/songs/10012705.mkv +王禹-故事,http://em.21dtv.com/songs/60108730.mkv +何杰-歌手,http://em.21dtv.com/songs/60101901.mkv +印能法师-孤僧,http://em.21dtv.com/songs/60099837.mkv +洪敬尧-跟随,http://em.21dtv.com/songs/60099372.mkv +小刚-割舍,http://em.21dtv.com/songs/60087704.mkv +褚乔-故事,http://em.21dtv.com/songs/60086569.mkv +少女时代-galaxy supernova,http://em.21dtv.com/songs/60084713.mkv +冷漠-归宿,http://em.21dtv.com/songs/60082986.mkv +周诗颖-故事,http://em.21dtv.com/songs/60082969.mkv +苏打绿-故事,http://em.21dtv.com/songs/60081977.mkv +阿杜-挂失,http://em.21dtv.com/songs/60075585.mkv +海军-格桑,http://em.21dtv.com/songs/60075499.mkv +VERBAL JINT-good start,http://em.21dtv.com/songs/60073281.mkv +侧田-gongxifacai song(演唱会),http://em.21dtv.com/songs/60073272.mkv +彭青-glowing sun(演唱会),http://em.21dtv.com/songs/60073260.mkv +LIL WAYNE-get something,http://em.21dtv.com/songs/60073238.mkv +志玛-归宿,http://em.21dtv.com/songs/60070719.mkv +PSY-gangnam style,http://em.21dtv.com/songs/60070339.mkv +吴雨霏-归宿,http://em.21dtv.com/songs/60064267.mkv +胡歌-高手,http://em.21dtv.com/songs/60062468.mkv +艾敬-果实(演唱会),http://em.21dtv.com/songs/60019464.mkv +刘德华-归宿,http://em.21dtv.com/songs/60019388.mkv +郭峰-归宿,http://em.21dtv.com/songs/60019387.mkv +刘德华-归宿(演唱会),http://em.21dtv.com/songs/60019386.mkv +徐怀钰-怪兽,http://em.21dtv.com/songs/60019179.mkv +文英-怪兽,http://em.21dtv.com/songs/60019178.mkv +芭比-怪兽,http://em.21dtv.com/songs/60019177.mkv +徐怀钰-怪兽(演唱会),http://em.21dtv.com/songs/60019176.mkv +杨钰莹-故事,http://em.21dtv.com/songs/60019029.mkv +许巍-故事,http://em.21dtv.com/songs/60019028.mkv +小虎队-故事,http://em.21dtv.com/songs/60019027.mkv +满文军-故事,http://em.21dtv.com/songs/60019026.mkv +黎瑞恩-故事,http://em.21dtv.com/songs/60019025.mkv +红孩儿-故事,http://em.21dtv.com/songs/60019024.mkv +陈奕迅-歌颂,http://em.21dtv.com/songs/60018400.mkv +白冰冰-歌手,http://em.21dtv.com/songs/60018398.mkv +李建衡-割舍,http://em.21dtv.com/songs/60018353.mkv +潘玮柏-高手,http://em.21dtv.com/songs/60018225.mkv +ENERGY-钢索,http://em.21dtv.com/songs/60018152.mkv +卓文萱-感受,http://em.21dtv.com/songs/60018068.mkv +巫启贤-感受,http://em.21dtv.com/songs/60018067.mkv +成龙-感受,http://em.21dtv.com/songs/60018066.mkv +陈琳-感受,http://em.21dtv.com/songs/60018065.mkv +黄凯芹-感受(演唱会),http://em.21dtv.com/songs/60018064.mkv +R.VALLEE-R.NOBLE-goodnight sweetheart(无原唱),http://em.21dtv.com/songs/60001997.mkv +中岛美嘉-glamorous sky,http://em.21dtv.com/songs/60001911.mkv +李超-光荣,http://em.21dtv.com/songs/60119673.mkv +彭佳慧-贵人,http://em.21dtv.com/songs/60113511.mkv +魏如昀-感染,http://em.21dtv.com/songs/60096815.mkv +谢采妘-归人,http://em.21dtv.com/songs/60019378.mkv +BOBO-光荣,http://em.21dtv.com/songs/60019306.mkv +佚名-green river,http://em.21dtv.com/songs/60002028.mkv +一闪一闪亮晶晶的钻石女士-搁浅,http://em.21dtv.com/songs/60127690.mkv +羽田-搁浅,http://em.21dtv.com/songs/60127288.mkv +何龙雨-归期,http://em.21dtv.com/songs/60121371.mkv +正歌-刚强,http://em.21dtv.com/songs/60108650.mkv +邓英婷-骨气,http://em.21dtv.com/songs/60105412.mkv +苏盈之-过期,http://em.21dtv.com/songs/60104380.mkv +带泪的鱼+Get Money-过期,http://em.21dtv.com/songs/60096688.mkv +林琼珑-过去(无原唱),http://em.21dtv.com/songs/60095705.mkv +萧亚轩-过去,http://em.21dtv.com/songs/60091998.mkv +范逸臣-钢琴,http://em.21dtv.com/songs/60091957.mkv +陈茂丰-骨气,http://em.21dtv.com/songs/60086567.mkv +张杰-搁浅,http://em.21dtv.com/songs/60075492.mkv +袁媛-搁浅(演唱会),http://em.21dtv.com/songs/60063321.mkv +吴春燕-挂牵(演唱会),http://em.21dtv.com/songs/60063087.mkv +金海心-过去,http://em.21dtv.com/songs/60019514.mkv +佚名-过去(无原唱),http://em.21dtv.com/songs/60019513.mkv +后弦-过桥,http://em.21dtv.com/songs/60019512.mkv +范晓萱-过期,http://em.21dtv.com/songs/60019508.mkv +元卫觉醒-过期(演唱会),http://em.21dtv.com/songs/60019507.mkv +周杰伦-搁浅,http://em.21dtv.com/songs/60018342.mkv +林忆莲-搁浅,http://em.21dtv.com/songs/60018341.mkv +苏有朋-感情,http://em.21dtv.com/songs/60017990.mkv +阿幼朵-甘泉,http://em.21dtv.com/songs/60017864.mkv +胡鸿钧-高攀,http://em.21dtv.com/songs/60131749.mkv +王宏伟-公仆,http://em.21dtv.com/songs/60106108.mkv +LAUREN ALAINA-georgia peaches,http://em.21dtv.com/songs/60073236.mkv +蒋大为-公仆(演唱会),http://em.21dtv.com/songs/60069420.mkv +田家达-公平(无原唱),http://em.21dtv.com/songs/60018688.mkv +佚名-great pretender,http://em.21dtv.com/songs/60002019.mkv +USHER-Good Kisser,http://em.21dtv.com/songs/60101225.mkv +杨桐-GO,http://em.21dtv.com/songs/60113681.mkv +卢春如-go on,http://em.21dtv.com/songs/60001929.mkv +DREAM-get over,http://em.21dtv.com/songs/60001859.mkv +MP魔幻力量-get out,http://em.21dtv.com/songs/60001855.mkv +邓紫棋-game over,http://em.21dtv.com/songs/60001830.mkv +刘德华-挂念,http://em.21dtv.com/songs/60133407.mkv +廖明-给你,http://em.21dtv.com/songs/60132430.mkv +易嘉爱-给你,http://em.21dtv.com/songs/60122789.mkv +赵邦乔-姑娘,http://em.21dtv.com/songs/60122149.mkv +江志丰-孤鸟,http://em.21dtv.com/songs/60119748.mkv +易嘉爱-给你,http://em.21dtv.com/songs/60113562.mkv +唐晓光-过年,http://em.21dtv.com/songs/60096687.mkv +B1A4-おやすみgood night,http://em.21dtv.com/songs/60074223.mkv +CLOWN-good nigth,http://em.21dtv.com/songs/60073280.mkv +MISS $-good night,http://em.21dtv.com/songs/60073279.mkv +HITT-good night,http://em.21dtv.com/songs/60073278.mkv +容祖儿-给你,http://em.21dtv.com/songs/60071953.mkv +爽子-挂念,http://em.21dtv.com/songs/60067037.mkv +GLORIANA-good night(kissed you),http://em.21dtv.com/songs/60065595.mkv +王滨梅-归宁,http://em.21dtv.com/songs/60019374.mkv +窦老三-归鸟,http://em.21dtv.com/songs/60019373.mkv +李圣杰-光年,http://em.21dtv.com/songs/60019305.mkv +许志安+陈慧琳-光年(演唱会),http://em.21dtv.com/songs/60019304.mkv +汉洋-怪你(无原唱),http://em.21dtv.com/songs/60019171.mkv +王建杰-挂念,http://em.21dtv.com/songs/60019148.mkv +刘德华-挂念,http://em.21dtv.com/songs/60019147.mkv +赫爽-挂念,http://em.21dtv.com/songs/60019146.mkv +方顺吉-挂念,http://em.21dtv.com/songs/60019145.mkv +刘德华-挂念(演唱会),http://em.21dtv.com/songs/60019144.mkv +佚名-挂念(无原唱),http://em.21dtv.com/songs/60019143.mkv +根呷-姑娘,http://em.21dtv.com/songs/60018936.mkv +曹格-姑娘,http://em.21dtv.com/songs/60018935.mkv +陈楚生-姑娘(演唱会),http://em.21dtv.com/songs/60018934.mkv +林姗+江志文-孤鸟,http://em.21dtv.com/songs/60018914.mkv +黄品源-孤鸟,http://em.21dtv.com/songs/60018913.mkv +罗时丰-给你,http://em.21dtv.com/songs/60018489.mkv +刘若英-给你,http://em.21dtv.com/songs/60018488.mkv +陈奕迅-给你,http://em.21dtv.com/songs/60018487.mkv +黄耀明-给你(演唱会),http://em.21dtv.com/songs/60018486.mkv +邓健泓-戆男,http://em.21dtv.com/songs/60018191.mkv +佚名-go now(无原唱),http://em.21dtv.com/songs/60001926.mkv +西瓜jun-故梦,http://em.21dtv.com/songs/60134211.mkv +林良要-光芒,http://em.21dtv.com/songs/60131553.mkv +王瑾+代森平-光芒,http://em.21dtv.com/songs/60130597.mkv +胡丹丹-闺蜜,http://em.21dtv.com/songs/60129508.mkv +渔圈-闺蜜,http://em.21dtv.com/songs/60129357.mkv +白富美-闺蜜,http://em.21dtv.com/songs/60119844.mkv +刘小光-哥们,http://em.21dtv.com/songs/60113294.mkv +那广子+冯春瑜-闺蜜,http://em.21dtv.com/songs/60113000.mkv +关楚耀+汤宝如-感冒,http://em.21dtv.com/songs/60110860.mkv +MIC男团-闺蜜,http://em.21dtv.com/songs/60109848.mkv +丁晓红-闺密,http://em.21dtv.com/songs/60108261.mkv +陈晓东-芥末,http://em.21dtv.com/songs/60104562.mkv +钟舒漫-刮目,http://em.21dtv.com/songs/60096736.mkv +彭莉-管芒,http://em.21dtv.com/songs/60095531.mkv +陈慧娴-故梦,http://em.21dtv.com/songs/60093440.mkv +钟丽燕-格玛,http://em.21dtv.com/songs/60088809.mkv +橙翼-故梦,http://em.21dtv.com/songs/60082968.mkv +汪峰-光明,http://em.21dtv.com/songs/60081695.mkv +朱杰-光芒,http://em.21dtv.com/songs/60081278.mkv +星君-哥们,http://em.21dtv.com/songs/60080313.mkv +胡渭康-感冒(演唱会),http://em.21dtv.com/songs/60075458.mkv +许嵩-闺蜜,http://em.21dtv.com/songs/60069436.mkv +糖兄妹-高妹(演唱会),http://em.21dtv.com/songs/60069410.mkv +石梅-闺蜜,http://em.21dtv.com/songs/60068294.mkv +任贤齐-光芒,http://em.21dtv.com/songs/60064263.mkv +DISH乐队-光芒(演唱会),http://em.21dtv.com/songs/60064262.mkv +凤凰传奇-光芒,http://em.21dtv.com/songs/60061224.mkv +杨丞琳-过敏,http://em.21dtv.com/songs/60019502.mkv +李蕙敏-过敏,http://em.21dtv.com/songs/60019501.mkv +张靓颖-光芒,http://em.21dtv.com/songs/60019295.mkv +木子俊-光芒,http://em.21dtv.com/songs/60019294.mkv +黄思婷-光芒,http://em.21dtv.com/songs/60019293.mkv +F.I.R-光芒(演唱会),http://em.21dtv.com/songs/60019292.mkv +蔡依林-乖猫(演唱会),http://em.21dtv.com/songs/60019163.mkv +谭咏麟-高妹,http://em.21dtv.com/songs/60018210.mkv +李克勤-高妹,http://em.21dtv.com/songs/60018209.mkv +李克勤-高妹(演唱会),http://em.21dtv.com/songs/60018208.mkv +刘虹桦-干嘛,http://em.21dtv.com/songs/60018131.mkv +汤宝如-感冒,http://em.21dtv.com/songs/60017989.mkv +林慧萍-感冒,http://em.21dtv.com/songs/60017988.mkv +芭比-感冒,http://em.21dtv.com/songs/60017987.mkv +罗密欧-感冒(无原唱),http://em.21dtv.com/songs/60017986.mkv +童唱-good morning,http://em.21dtv.com/songs/60001956.mkv +BRITNEY SPEARS-gimme more,http://em.21dtv.com/songs/60001874.mkv +张鹏+侯本岗-孤狼,http://em.21dtv.com/songs/60132472.mkv +陈锦嵘-归来,http://em.21dtv.com/songs/60130861.mkv +毛鹏懿(Mao)-归零,http://em.21dtv.com/songs/60130521.mkv +黄英-归路,http://em.21dtv.com/songs/60127626.mkv +曲比阿且-归路,http://em.21dtv.com/songs/60120582.mkv +肖康-孤恋,http://em.21dtv.com/songs/60119891.mkv +张思佳-归来,http://em.21dtv.com/songs/60117726.mkv +罗志祥-够了,http://em.21dtv.com/songs/60116193.mkv +刘耿-归来,http://em.21dtv.com/songs/60115029.mkv +任韵淇-归来,http://em.21dtv.com/songs/60114990.mkv +张国荣-够了,http://em.21dtv.com/songs/60110185.mkv +刘瑞琦-歌路,http://em.21dtv.com/songs/60108352.mkv +蒋凌-光轮,http://em.21dtv.com/songs/60102699.mkv +PMC给力团-给力,http://em.21dtv.com/songs/60093578.mkv +张国荣-够了,http://em.21dtv.com/songs/60092577.mkv +胡月亮-桂林,http://em.21dtv.com/songs/60085157.mkv +张寒+余润泽-够了,http://em.21dtv.com/songs/60085138.mkv +小曲儿-归零,http://em.21dtv.com/songs/60082985.mkv +郭一凡-够了,http://em.21dtv.com/songs/60082959.mkv +潘玮柏-给力,http://em.21dtv.com/songs/60082953.mkv +光良-给力,http://em.21dtv.com/songs/60082952.mkv +DAFT PUNK-get lucky,http://em.21dtv.com/songs/60082164.mkv +于轩子-给力,http://em.21dtv.com/songs/60075501.mkv +KAN MI YEON+SEE JUN-good love,http://em.21dtv.com/songs/60073277.mkv +ONE REPUBLIC-good life,http://em.21dtv.com/songs/60073276.mkv +韩红-归来,http://em.21dtv.com/songs/60066004.mkv +卓文萱-够了,http://em.21dtv.com/songs/60064245.mkv +于逸飞-鼓励,http://em.21dtv.com/songs/60063292.mkv +SEO JUN-good love,http://em.21dtv.com/songs/60062151.mkv +林贞熙-golden lady,http://em.21dtv.com/songs/60060808.mkv +王力宏-过来,http://em.21dtv.com/songs/60019493.mkv +纵贯线-归来,http://em.21dtv.com/songs/60019365.mkv +宗庸卓玛-归来,http://em.21dtv.com/songs/60019364.mkv +白雪-归来,http://em.21dtv.com/songs/60019363.mkv +辛龙-光亮,http://em.21dtv.com/songs/60019291.mkv +方顺吉-鼓励,http://em.21dtv.com/songs/60019010.mkv +乌兰图雅-古丽,http://em.21dtv.com/songs/60018989.mkv +艾图兰-古丽,http://em.21dtv.com/songs/60018988.mkv +李度-够了,http://em.21dtv.com/songs/60018808.mkv +陈奕迅-够了(演唱会),http://em.21dtv.com/songs/60018807.mkv +纵贯线-公路,http://em.21dtv.com/songs/60018686.mkv +佚名-公路(无原唱),http://em.21dtv.com/songs/60018685.mkv +彭羚-给lisa,http://em.21dtv.com/songs/60018460.mkv +言承旭-隔离,http://em.21dtv.com/songs/60018430.mkv +陈慧琳-阁楼,http://em.21dtv.com/songs/60018416.mkv +刘若英-阁楼(演唱会),http://em.21dtv.com/songs/60018415.mkv +巫启贤-赶路,http://em.21dtv.com/songs/60017910.mkv +陈晓娟-赶路-赶路,http://em.21dtv.com/songs/60017909.mkv +佚名-赶路(无原唱),http://em.21dtv.com/songs/60017908.mkv +ROLL DEEP-green light,http://em.21dtv.com/songs/60002027.mkv +JOHN LEGEND-green light,http://em.21dtv.com/songs/60002026.mkv +潘玮柏-good love,http://em.21dtv.com/songs/60001953.mkv +KANYE WEST+T+PAIN-good life,http://em.21dtv.com/songs/60001952.mkv +LIL JON-get low,http://em.21dtv.com/songs/60001851.mkv +庄心妍-过客,http://em.21dtv.com/songs/60132425.mkv +王键-港口,http://em.21dtv.com/songs/60130609.mkv +侯磊-过客,http://em.21dtv.com/songs/60122496.mkv +阿宁-过客,http://em.21dtv.com/songs/60114173.mkv +古巨基-功课,http://em.21dtv.com/songs/60113319.mkv +木棉-过客,http://em.21dtv.com/songs/60110259.mkv +晓晓-过客,http://em.21dtv.com/songs/60109396.mkv +李圣杰-过客,http://em.21dtv.com/songs/60106935.mkv +李圣杰-过客,http://em.21dtv.com/songs/60105975.mkv +于台烟-过客,http://em.21dtv.com/songs/60086578.mkv +MIKA-grace kelly,http://em.21dtv.com/songs/60082172.mkv +楼宏章-过客,http://em.21dtv.com/songs/60070720.mkv +平野绫-god knows,http://em.21dtv.com/songs/60067895.mkv +黄耀明-过客(演唱会),http://em.21dtv.com/songs/60064269.mkv +DISH乐队-港口,http://em.21dtv.com/songs/60064222.mkv +郝冠英-过客,http://em.21dtv.com/songs/60062434.mkv +魏晨-过客,http://em.21dtv.com/songs/60061225.mkv +赵子皓-过客,http://em.21dtv.com/songs/60019491.mkv +赵文博-过客,http://em.21dtv.com/songs/60019490.mkv +张学友-过客,http://em.21dtv.com/songs/60019489.mkv +杨静-过客,http://em.21dtv.com/songs/60019488.mkv +笑天-过客,http://em.21dtv.com/songs/60019487.mkv +王嘉诚-过客,http://em.21dtv.com/songs/60019486.mkv +关菊英-过客,http://em.21dtv.com/songs/60019485.mkv +代小波-过客,http://em.21dtv.com/songs/60019484.mkv +关菊英-过客(演唱会),http://em.21dtv.com/songs/60019483.mkv +高浚-港口,http://em.21dtv.com/songs/60018185.mkv +谢雷+黄小菁-港口(无原唱),http://em.21dtv.com/songs/60018184.mkv +群星-国家,http://em.21dtv.com/songs/60132796.mkv +雨宗林+贺敬轩-感觉,http://em.21dtv.com/songs/60129772.mkv +清木场俊介-轨迹,http://em.21dtv.com/songs/60114667.mkv +刘媛媛+包鹤闻-国家,http://em.21dtv.com/songs/60110020.mkv +曹格-冠军,http://em.21dtv.com/songs/60105116.mkv +张靓颖-感觉,http://em.21dtv.com/songs/60102247.mkv +唯嘉-感觉,http://em.21dtv.com/songs/60082007.mkv +李炳辰-感觉,http://em.21dtv.com/songs/60070698.mkv +吴琼-关机,http://em.21dtv.com/songs/60068285.mkv +叶贝文-感觉,http://em.21dtv.com/songs/60063266.mkv +童唱-国家,http://em.21dtv.com/songs/60019445.mkv +成龙+刘媛媛-国家,http://em.21dtv.com/songs/60019444.mkv +常石磊-国家,http://em.21dtv.com/songs/60019443.mkv +朱国豪-郭靖,http://em.21dtv.com/songs/60019437.mkv +周杰伦-轨迹,http://em.21dtv.com/songs/60019395.mkv +范文芳-逛街,http://em.21dtv.com/songs/60019348.mkv +戴佩妮-逛街,http://em.21dtv.com/songs/60019347.mkv +I LOVE YOU BOYZ-顾家,http://em.21dtv.com/songs/60019134.mkv +刘若英-孤寂,http://em.21dtv.com/songs/60018905.mkv +梁俊轩-根据,http://em.21dtv.com/songs/60018614.mkv +容祖儿-歌姬,http://em.21dtv.com/songs/60018380.mkv +容祖儿-歌姬(演唱会),http://em.21dtv.com/songs/60018379.mkv +祝钒刚-告解,http://em.21dtv.com/songs/60018285.mkv +容祖儿-告解,http://em.21dtv.com/songs/60018284.mkv +温兆伦-感觉,http://em.21dtv.com/songs/60017972.mkv +眉佳-感觉,http://em.21dtv.com/songs/60017971.mkv +丹丹-感觉,http://em.21dtv.com/songs/60017970.mkv +周慧敏-感激,http://em.21dtv.com/songs/60017962.mkv +谭咏麟+张学友+郑中基-感激,http://em.21dtv.com/songs/60017961.mkv +群星-感激(演唱会),http://em.21dtv.com/songs/60017960.mkv +梅艳芳-感激(演唱会),http://em.21dtv.com/songs/60017959.mkv +DAPPY-good intentions,http://em.21dtv.com/songs/60073275.mkv +JENNIFER LOPEZ+FLO RIDA-goin in,http://em.21dtv.com/songs/60073266.mkv +莫小娘-蛊恨,http://em.21dtv.com/songs/60134178.mkv +庄俊+永宅-干旱,http://em.21dtv.com/songs/60132422.mkv +八斤-光辉,http://em.21dtv.com/songs/60128804.mkv +李幸倪-光环,http://em.21dtv.com/songs/60125699.mkv +杨贻媛-国画,http://em.21dtv.com/songs/60124116.mkv +李幸倪-光环,http://em.21dtv.com/songs/60122852.mkv +羽田-篝火,http://em.21dtv.com/songs/60119887.mkv +黄鸿升-鬼混,http://em.21dtv.com/songs/60107382.mkv +邓小龙+冉青霞-过火,http://em.21dtv.com/songs/60103611.mkv +冉青霞-过火,http://em.21dtv.com/songs/60103092.mkv +姜育恒-归航,http://em.21dtv.com/songs/60102102.mkv +安东阳-归航,http://em.21dtv.com/songs/60099200.mkv +费翔-孤行,http://em.21dtv.com/songs/60088690.mkv +DECEMBER-going home,http://em.21dtv.com/songs/60082170.mkv +于朦胧-刚好,http://em.21dtv.com/songs/60081739.mkv +曹海波-赶海,http://em.21dtv.com/songs/60081292.mkv +杜春梅-国画,http://em.21dtv.com/songs/60075616.mkv +孙斌+冷子夕-归还,http://em.21dtv.com/songs/60075609.mkv +童丽-归航,http://em.21dtv.com/songs/60075608.mkv +董鸣华-关怀,http://em.21dtv.com/songs/60075588.mkv +你我及他组合-过火,http://em.21dtv.com/songs/60069440.mkv +段婷婷-观画,http://em.21dtv.com/songs/60069433.mkv +黄美珍-够好(演唱会),http://em.21dtv.com/songs/60069426.mkv +邹勇-孤魂,http://em.21dtv.com/songs/60067036.mkv +孙淑媚-桂花,http://em.21dtv.com/songs/60066008.mkv +林柔均-关怀,http://em.21dtv.com/songs/60066001.mkv +张信哲-过火,http://em.21dtv.com/songs/60019479.mkv +张信哲-过火(演唱会),http://em.21dtv.com/songs/60019478.mkv +潘长江+刘春梅-过河,http://em.21dtv.com/songs/60019477.mkv +潘长江+刘春梅-过河(演唱会),http://em.21dtv.com/songs/60019476.mkv +董文华-归航,http://em.21dtv.com/songs/60019362.mkv +方伊琪-归航(演唱会),http://em.21dtv.com/songs/60019361.mkv +余天-归航(无原唱),http://em.21dtv.com/songs/60019360.mkv +刘玮-关怀,http://em.21dtv.com/songs/60019206.mkv +胡东-蛊惑,http://em.21dtv.com/songs/60019005.mkv +周迅-篝火,http://em.21dtv.com/songs/60018795.mkv +斯琴高丽-更好,http://em.21dtv.com/songs/60018674.mkv +佚名-更好(无原唱),http://em.21dtv.com/songs/60018673.mkv +F.I.R-get high,http://em.21dtv.com/songs/60001849.mkv +B.A.D-get high,http://em.21dtv.com/songs/60001848.mkv +佚名-get here,http://em.21dtv.com/songs/60001847.mkv +郑俊英+徐英恩-共感,http://em.21dtv.com/songs/60135802.mkv +张杰-哥哥,http://em.21dtv.com/songs/60132442.mkv +CLC-鬼怪,http://em.21dtv.com/songs/60131046.mkv +谭晶+吴亦凡-乖乖,http://em.21dtv.com/songs/60130762.mkv +格西亚-哥哥,http://em.21dtv.com/songs/60124155.mkv +李维-乖乖,http://em.21dtv.com/songs/60121782.mkv +鹏泊-咕咕,http://em.21dtv.com/songs/60120159.mkv +1976-公馆,http://em.21dtv.com/songs/60110739.mkv +王力宏-哥哥,http://em.21dtv.com/songs/60110382.mkv +茅小勇-尴尬,http://em.21dtv.com/songs/60102669.mkv +周澎-哥哥(演),http://em.21dtv.com/songs/60099159.mkv +李芝芬-归国,http://em.21dtv.com/songs/60091366.mkv +降央卓玛-哥哥,http://em.21dtv.com/songs/60086563.mkv +邬祯琳-狗狗,http://em.21dtv.com/songs/60075547.mkv +王菀之-哥歌,http://em.21dtv.com/songs/60075483.mkv +王力宏-哥哥(演唱会),http://em.21dtv.com/songs/60075479.mkv +LAURA MVULA-green garden,http://em.21dtv.com/songs/60073292.mkv +钟浩-哥哥,http://em.21dtv.com/songs/60069413.mkv +CARRIE UNDERWOOD-good girl,http://em.21dtv.com/songs/60067898.mkv +黄征-骨感,http://em.21dtv.com/songs/60064252.mkv +魏晨-goodbye goodbye,http://em.21dtv.com/songs/60063064.mkv +佚名-国歌,http://em.21dtv.com/songs/60019440.mkv +胡歌-光棍,http://em.21dtv.com/songs/60019275.mkv +樱桃帮-乖乖,http://em.21dtv.com/songs/60019160.mkv +沈芯羽-乖乖,http://em.21dtv.com/songs/60019159.mkv +陈瑀涵-乖乖,http://em.21dtv.com/songs/60019158.mkv +MOMO姐姐-乖乖,http://em.21dtv.com/songs/60019157.mkv +常石磊-哥哥,http://em.21dtv.com/songs/60018317.mkv +WAX-哥哥,http://em.21dtv.com/songs/60018316.mkv +TWINS-哥哥(演唱会),http://em.21dtv.com/songs/60018315.mkv +张学友-高!高!(演唱会),http://em.21dtv.com/songs/60018192.mkv +林佑威-尴尬,http://em.21dtv.com/songs/60017902.mkv +刘小慧-改改,http://em.21dtv.com/songs/60017848.mkv +张惠妹-goodnight goodbye(演唱会),http://em.21dtv.com/songs/60001996.mkv +WET WET WET-goodnight girl,http://em.21dtv.com/songs/60001995.mkv +周华健-goodbye girl,http://em.21dtv.com/songs/60001969.mkv +CHRISETTE MICHELE-goodbye game,http://em.21dtv.com/songs/60001968.mkv +ASHANTI-good good,http://em.21dtv.com/songs/60001950.mkv +佚名-georgy girl,http://em.21dtv.com/songs/60001842.mkv +贾真-过分,http://em.21dtv.com/songs/60075623.mkv +THE WANTED-gold forever,http://em.21dtv.com/songs/60073267.mkv +旭日阳刚-高飞,http://em.21dtv.com/songs/60071945.mkv +楼宏章-辜负,http://em.21dtv.com/songs/60068282.mkv +张杰-高飞,http://em.21dtv.com/songs/60065987.mkv +FLO RIDA-good feeling,http://em.21dtv.com/songs/60063607.mkv +晏菲-贵妃(演唱会),http://em.21dtv.com/songs/60019405.mkv +汪明荃-归帆(演唱会),http://em.21dtv.com/songs/60019359.mkv +佚名-关方,http://em.21dtv.com/songs/60019204.mkv +金素梅-辜负,http://em.21dtv.com/songs/60018974.mkv +大芭+翁立友-辜负,http://em.21dtv.com/songs/60018973.mkv +张娜拉-功夫,http://em.21dtv.com/songs/60018724.mkv +焦恩俊-功夫,http://em.21dtv.com/songs/60018723.mkv +杜德伟-功夫,http://em.21dtv.com/songs/60018722.mkv +阿生-功夫,http://em.21dtv.com/songs/60018721.mkv +ZEN-功夫,http://em.21dtv.com/songs/60018720.mkv +DRAGON 5-功夫,http://em.21dtv.com/songs/60018719.mkv +阿丽玛-高飞,http://em.21dtv.com/songs/60018196.mkv +佚名-green fields,http://em.21dtv.com/songs/60002024.mkv +朱寰-GET BACK,http://em.21dtv.com/songs/60096615.mkv +黄绮珊-感恩,http://em.21dtv.com/songs/60122308.mkv +泽仁伍波-感恩,http://em.21dtv.com/songs/60121868.mkv +丁毅-感恩,http://em.21dtv.com/songs/60120267.mkv +笑天歌-感恩,http://em.21dtv.com/songs/60117958.mkv +车晓菲-感恩,http://em.21dtv.com/songs/60112987.mkv +胡馨月-感恩,http://em.21dtv.com/songs/60112905.mkv +栋梁-感恩,http://em.21dtv.com/songs/60102406.mkv +敖威-孤儿,http://em.21dtv.com/songs/60082964.mkv +刘一祯-感恩,http://em.21dtv.com/songs/60075454.mkv +刘文涛-感恩,http://em.21dtv.com/songs/60075453.mkv +朱怡铭-感恩,http://em.21dtv.com/songs/60067019.mkv +钟丽燕-感恩,http://em.21dtv.com/songs/60065983.mkv +宿雨涵-感恩,http://em.21dtv.com/songs/60062947.mkv +秦杨-感恩,http://em.21dtv.com/songs/60017950.mkv +刘媛媛-感恩,http://em.21dtv.com/songs/60017949.mkv +陈思安-感恩,http://em.21dtv.com/songs/60017948.mkv +SARAH MCLACHLAN-good enough,http://em.21dtv.com/songs/60001947.mkv +汤非-感动,http://em.21dtv.com/songs/60133922.mkv +大勇-感动,http://em.21dtv.com/songs/60125344.mkv +镐东-没有你我不快乐,http://em.21dtv.com/songs/60113800.mkv +Flumpool-孤独,http://em.21dtv.com/songs/60104674.mkv +韩红-感动,http://em.21dtv.com/songs/60100633.mkv +黄勇深+渔圈-孤毒,http://em.21dtv.com/songs/60096750.mkv +六哲-孤独,http://em.21dtv.com/songs/60095186.mkv +黄品源-孤岛,http://em.21dtv.com/songs/60094055.mkv +关心妍-高窦,http://em.21dtv.com/songs/60092312.mkv +轻音乐-孤独,http://em.21dtv.com/songs/60090237.mkv +黄勇深-孤毒,http://em.21dtv.com/songs/60086565.mkv +孙艺建-过度,http://em.21dtv.com/songs/60085158.mkv +罗志祥-搞定,http://em.21dtv.com/songs/60085114.mkv +孙耀威-谷底,http://em.21dtv.com/songs/60075567.mkv +孙悦-感动,http://em.21dtv.com/songs/60069406.mkv +海生-干爹,http://em.21dtv.com/songs/60062419.mkv +孟庭苇-过冬,http://em.21dtv.com/songs/60019470.mkv +钟汶-过冬(无原唱),http://em.21dtv.com/songs/60019469.mkv +许志英-观灯,http://em.21dtv.com/songs/60019239.mkv +黄梅戏-观灯,http://em.21dtv.com/songs/60019238.mkv +孙耀威-关灯(演唱会)(无原唱),http://em.21dtv.com/songs/60019198.mkv +宾阳乐队-孤独,http://em.21dtv.com/songs/60018878.mkv +EVER-孤岛,http://em.21dtv.com/songs/60018876.mkv +万芳-孤单,http://em.21dtv.com/songs/60018825.mkv +潘越云-孤单,http://em.21dtv.com/songs/60018824.mkv +龙劭华-孤单,http://em.21dtv.com/songs/60018823.mkv +贺一航-孤单,http://em.21dtv.com/songs/60018822.mkv +范文芳-孤单,http://em.21dtv.com/songs/60018821.mkv +陈淑桦-孤单,http://em.21dtv.com/songs/60018820.mkv +贺一航-孤单(无原唱),http://em.21dtv.com/songs/60018819.mkv +祖海+蔡国庆-感动,http://em.21dtv.com/songs/60017939.mkv +张卫健+周华健-感动,http://em.21dtv.com/songs/60017938.mkv +辛晓琪-感动,http://em.21dtv.com/songs/60017937.mkv +甘萍-感动,http://em.21dtv.com/songs/60017936.mkv +侧田-感动,http://em.21dtv.com/songs/60017935.mkv +侧田-感动(演唱会),http://em.21dtv.com/songs/60017934.mkv +TAKE THAT-greatest day,http://em.21dtv.com/songs/60002021.mkv +THE TING TINGS-great dj,http://em.21dtv.com/songs/60002018.mkv +陈琳-great day(演唱会),http://em.21dtv.com/songs/60002017.mkv +KANYE WEST-gold digger,http://em.21dtv.com/songs/60001938.mkv +D.NIX-going down(无原唱),http://em.21dtv.com/songs/60001937.mkv +JANET JACKSON-go deep,http://em.21dtv.com/songs/60001922.mkv +BACKSTREET BOYS-get down,http://em.21dtv.com/songs/60001846.mkv +杨坤+华晨宇-挂彩,http://em.21dtv.com/songs/60131525.mkv +宋旻浩-龟船,http://em.21dtv.com/songs/60131351.mkv +徐苑-孤城,http://em.21dtv.com/songs/60123980.mkv +AGA-孤雏,http://em.21dtv.com/songs/60123428.mkv +张艺-干脆,http://em.21dtv.com/songs/60121670.mkv +鸿飞-归巢,http://em.21dtv.com/songs/60119067.mkv +董贞-孤城,http://em.21dtv.com/songs/60107179.mkv +老九-古茶,http://em.21dtv.com/songs/60082966.mkv +DIZZEE RASCAL+ROBBIE WILLIAMS-goin crazy,http://em.21dtv.com/songs/60082169.mkv +EMINEM+DR. DRE-guilty conscience,http://em.21dtv.com/songs/60073295.mkv +杨宗纬-矜持),http://em.21dtv.com/songs/60072086.mkv +刘佳-孤城,http://em.21dtv.com/songs/60061218.mkv +袁小迪-归船,http://em.21dtv.com/songs/60019357.mkv +黄思婷+傅振辉-归巢,http://em.21dtv.com/songs/60019356.mkv +李贞贤-官层,http://em.21dtv.com/songs/60019250.mkv +徐怀钰-怪曽,http://em.21dtv.com/songs/60019165.mkv +庄学忠-孤船,http://em.21dtv.com/songs/60018818.mkv +甲子蕙-孤船,http://em.21dtv.com/songs/60018817.mkv +伦永亮-歌词(演唱会),http://em.21dtv.com/songs/60018375.mkv +韩红-歌唱,http://em.21dtv.com/songs/60018358.mkv +花儿乐队-歌唱(演唱会),http://em.21dtv.com/songs/60018357.mkv +泼猴-搞错,http://em.21dtv.com/songs/60018261.mkv +木棉-高处,http://em.21dtv.com/songs/60018194.mkv +那英-干脆,http://em.21dtv.com/songs/60018128.mkv +刘锡明-感触(无原唱),http://em.21dtv.com/songs/60017933.mkv +童唱-grandfather clock,http://em.21dtv.com/songs/60002011.mkv +马旭东-告白,http://em.21dtv.com/songs/60130900.mkv +何坤-改变,http://em.21dtv.com/songs/60127733.mkv +石筱群-告白,http://em.21dtv.com/songs/60117949.mkv +家家-改变,http://em.21dtv.com/songs/60115866.mkv +LUNAR-告白,http://em.21dtv.com/songs/60113171.mkv +许鹤缤-改变,http://em.21dtv.com/songs/60112237.mkv +山野-改变,http://em.21dtv.com/songs/60104985.mkv +邓小龙-改变,http://em.21dtv.com/songs/60100494.mkv +许美静-盖被,http://em.21dtv.com/songs/60095343.mkv +太极乐队-干杯(演唱会),http://em.21dtv.com/songs/60095283.mkv +章鹏-干杯,http://em.21dtv.com/songs/60088380.mkv +LUNAR-告白,http://em.21dtv.com/songs/60085115.mkv +于瀚-干杯,http://em.21dtv.com/songs/60075443.mkv +胡夏-改变,http://em.21dtv.com/songs/60075441.mkv +MISS A-goodbye baby,http://em.21dtv.com/songs/60073282.mkv +DASONI-good bye,http://em.21dtv.com/songs/60073274.mkv +CHERYL-ghetto baby,http://em.21dtv.com/songs/60073240.mkv +平井坚-告白,http://em.21dtv.com/songs/60070701.mkv +张杰-改变,http://em.21dtv.com/songs/60070696.mkv +吴雨霏-告白,http://em.21dtv.com/songs/60068269.mkv +白智英+龙俊亨-good boy,http://em.21dtv.com/songs/60067896.mkv +五月天-干杯,http://em.21dtv.com/songs/60065982.mkv +陈翔-告白,http://em.21dtv.com/songs/60064225.mkv +蔡黄汝-告白,http://em.21dtv.com/songs/60064224.mkv +ALEXANDRA STAN-get back,http://em.21dtv.com/songs/60063598.mkv +2NE1-goodbye baby,http://em.21dtv.com/songs/60061930.mkv +DAVID GUETTA-goodbye baby,http://em.21dtv.com/songs/60060809.mkv +浪花兄弟+袁咏琳-瑰宝,http://em.21dtv.com/songs/60019393.mkv +佚名-告别,http://em.21dtv.com/songs/60018273.mkv +王建杰-告别,http://em.21dtv.com/songs/60018272.mkv +齐秦-告别,http://em.21dtv.com/songs/60018271.mkv +陈永龙-告别,http://em.21dtv.com/songs/60018270.mkv +田家达-告别(无原唱),http://em.21dtv.com/songs/60018269.mkv +自由发挥-告白,http://em.21dtv.com/songs/60018268.mkv +泳儿-告白,http://em.21dtv.com/songs/60018267.mkv +陆毅-告白,http://em.21dtv.com/songs/60018266.mkv +LITY林天伟-告白,http://em.21dtv.com/songs/60018265.mkv +康康-干杯,http://em.21dtv.com/songs/60018125.mkv +陈思安-干杯,http://em.21dtv.com/songs/60018124.mkv +彭靖惠-干杯(演唱会),http://em.21dtv.com/songs/60018122.mkv +王建杰-干杯(无原唱),http://em.21dtv.com/songs/60018121.mkv +张蓉蓉-干拜,http://em.21dtv.com/songs/60018120.mkv +张震岳-改变,http://em.21dtv.com/songs/60017838.mkv +张靓颖-改变,http://em.21dtv.com/songs/60017837.mkv +与非门-改变,http://em.21dtv.com/songs/60017836.mkv +罗文裕-改变,http://em.21dtv.com/songs/60017834.mkv +黄磊-改变,http://em.21dtv.com/songs/60017833.mkv +丁浩然-改变,http://em.21dtv.com/songs/60017832.mkv +杜德伟-改变(演唱会),http://em.21dtv.com/songs/60017831.mkv +张可芝-改变(无原唱),http://em.21dtv.com/songs/60017830.mkv +R.E.M-great beyond,http://em.21dtv.com/songs/60002016.mkv +童唱-good bye,http://em.21dtv.com/songs/60001945.mkv +佚名-girlfriend boyfriend,http://em.21dtv.com/songs/60001886.mkv +佚名-get back,http://em.21dtv.com/songs/60001845.mkv +LUDACRIS-get back,http://em.21dtv.com/songs/60001844.mkv +孔令奇-game boy,http://em.21dtv.com/songs/60001829.mkv +陈雅森-孤爱,http://em.21dtv.com/songs/60131963.mkv +王家霖-跪爱,http://em.21dtv.com/songs/60119805.mkv +佳林-跪爱,http://em.21dtv.com/songs/60117555.mkv +许佳慧-诡爱,http://em.21dtv.com/songs/60111397.mkv +李翊君-敢爱(HD),http://em.21dtv.com/songs/10012795.mkv +李翊君-敢爱,http://em.21dtv.com/songs/60096801.mkv +飞轮海+东城卫-够爱,http://em.21dtv.com/songs/60096556.mkv +曾沛慈-够爱,http://em.21dtv.com/songs/60087959.mkv +周艳泓+林依轮-给爱,http://em.21dtv.com/songs/60081761.mkv +六哲-割爱,http://em.21dtv.com/songs/60069417.mkv +潘辰-更爱,http://em.21dtv.com/songs/60068278.mkv +方瑞娥-割爱,http://em.21dtv.com/songs/60065989.mkv +曹震豪-get away,http://em.21dtv.com/songs/60063597.mkv +东城卫-够爱,http://em.21dtv.com/songs/60018804.mkv +周艳泓-给爱,http://em.21dtv.com/songs/60018462.mkv +苏芮-给爱,http://em.21dtv.com/songs/60018461.mkv +万芳-割爱,http://em.21dtv.com/songs/60018352.mkv +苏永康-割爱(演唱会),http://em.21dtv.com/songs/60018351.mkv +JOHN DENVER-goodbye again,http://em.21dtv.com/songs/60001967.mkv +黄义达-go away,http://em.21dtv.com/songs/60001921.mkv +2NE1-go away,http://em.21dtv.com/songs/60001920.mkv +张可芝-go away(无原唱),http://em.21dtv.com/songs/60001919.mkv +ENERGY-get away,http://em.21dtv.com/songs/60001843.mkv +谢容儿-废纸,http://em.21dtv.com/songs/60134229.mkv +田正-佛珠,http://em.21dtv.com/songs/60134021.mkv +齐峰-佛珠,http://em.21dtv.com/songs/60126496.mkv +任妙音-风筝,http://em.21dtv.com/songs/60125104.mkv +谢伟伦-放纵,http://em.21dtv.com/songs/60124487.mkv +王乐妍-风筝,http://em.21dtv.com/songs/60124244.mkv +权振东-父子,http://em.21dtv.com/songs/60124052.mkv +SUPPER MOMENT-风筝,http://em.21dtv.com/songs/60122427.mkv +佟铁鑫+杨洋-父子,http://em.21dtv.com/songs/60119261.mkv +佟铁鑫+杨洋-父子,http://em.21dtv.com/songs/60118343.mkv +高翊菲-妃子,http://em.21dtv.com/songs/60115539.mkv +陈兴瑜-风筝,http://em.21dtv.com/songs/60114197.mkv +童冬军+大力-奋战,http://em.21dtv.com/songs/60112867.mkv +陈沐雷-风筝,http://em.21dtv.com/songs/60110643.mkv +苏玮-浮躁,http://em.21dtv.com/songs/60110487.mkv +朱敏-负债,http://em.21dtv.com/songs/60110260.mkv +阿彬哥-负罪,http://em.21dtv.com/songs/60107299.mkv +唐唐-疯子,http://em.21dtv.com/songs/60105712.mkv +朱敏-负债,http://em.21dtv.com/songs/60105130.mkv +栋梁-疯子,http://em.21dtv.com/songs/60102408.mkv +蓝天-风筝,http://em.21dtv.com/songs/60099475.mkv +平安-反转,http://em.21dtv.com/songs/60096663.mkv +谢安琪-分之,http://em.21dtv.com/songs/60088661.mkv +裴一飞-疯子,http://em.21dtv.com/songs/60085097.mkv +花哥-犯罪,http://em.21dtv.com/songs/60085070.mkv +GO7188-浮舟(无原唱),http://em.21dtv.com/songs/60080563.mkv +崔恕-父子,http://em.21dtv.com/songs/60080469.mkv +小护士-疯子,http://em.21dtv.com/songs/60071936.mkv +慕容伊一-风筝,http://em.21dtv.com/songs/60071933.mkv +群星-风筝,http://em.21dtv.com/songs/60070688.mkv +姜文+孙晓宵-风筝,http://em.21dtv.com/songs/60064202.mkv +高艺菲-妃子,http://em.21dtv.com/songs/60061183.mkv +卫薇儿-飞贼,http://em.21dtv.com/songs/60061182.mkv +郑伦境+郑进一-父子,http://em.21dtv.com/songs/60017738.mkv +王菲-浮躁,http://em.21dtv.com/songs/60017687.mkv +王菲-浮躁(演唱会),http://em.21dtv.com/songs/60017686.mkv +许哲佩-疯子,http://em.21dtv.com/songs/60017571.mkv +何韵诗-疯子,http://em.21dtv.com/songs/60017570.mkv +何韵诗-疯子(演唱会),http://em.21dtv.com/songs/60017569.mkv +张伟进-风筝,http://em.21dtv.com/songs/60017466.mkv +弦子-风筝,http://em.21dtv.com/songs/60017465.mkv +孙燕姿-风筝,http://em.21dtv.com/songs/60017464.mkv +龙千玉-风筝,http://em.21dtv.com/songs/60017463.mkv +林忆莲-风筝,http://em.21dtv.com/songs/60017462.mkv +洪荣宏-风筝,http://em.21dtv.com/songs/60017461.mkv +陈升-风筝,http://em.21dtv.com/songs/60017460.mkv +曾路得-风筝,http://em.21dtv.com/songs/60017459.mkv +蔡琴-风筝,http://em.21dtv.com/songs/60017458.mkv +安琥-风筝,http://em.21dtv.com/songs/60017457.mkv +周笔畅-风筝(演唱会),http://em.21dtv.com/songs/60017456.mkv +林忆莲-放纵(演唱会),http://em.21dtv.com/songs/60016759.mkv +关德辉-放纵(无原唱),http://em.21dtv.com/songs/60016758.mkv +张学友-放逐,http://em.21dtv.com/songs/60016755.mkv +萱宁-放逐,http://em.21dtv.com/songs/60016754.mkv +万芳-放逐,http://em.21dtv.com/songs/60016753.mkv +林鹏-放逐,http://em.21dtv.com/songs/60016752.mkv +韩亮-放逐,http://em.21dtv.com/songs/60016751.mkv +汤潮-房子,http://em.21dtv.com/songs/60016546.mkv +罗文聪-犯罪,http://em.21dtv.com/songs/60016517.mkv +何以奇-反正,http://em.21dtv.com/songs/60016500.mkv +黄轩-蜉蝣,http://em.21dtv.com/songs/60136030.mkv +罗艺达-放羊,http://em.21dtv.com/songs/60135629.mkv +DEAN+白艺潾-翻越,http://em.21dtv.com/songs/60132067.mkv +群星-飞扬,http://em.21dtv.com/songs/60130662.mkv +东于哲-富有,http://em.21dtv.com/songs/60125070.mkv +鹿晗-封印,http://em.21dtv.com/songs/60120160.mkv +华晨宇-蜉蝣,http://em.21dtv.com/songs/60115732.mkv +齐秦-蜉蝣,http://em.21dtv.com/songs/60110738.mkv +上官晓懿+夏婉安-敷衍,http://em.21dtv.com/songs/60109925.mkv +黄龄-风月,http://em.21dtv.com/songs/60108190.mkv +董贞-飞羽,http://em.21dtv.com/songs/60107976.mkv +游子组合-佛缘,http://em.21dtv.com/songs/60107878.mkv +VK-绯樱,http://em.21dtv.com/songs/60104747.mkv +BY2-飞羽,http://em.21dtv.com/songs/60104656.mkv +五色石南叶+慕寒-非鱼,http://em.21dtv.com/songs/60101247.mkv +何韵诗-飞檐,http://em.21dtv.com/songs/60092285.mkv +薛凯琪-复原,http://em.21dtv.com/songs/60081726.mkv +侯强-富盈,http://em.21dtv.com/songs/60080982.mkv +汪妤凌-敷衍,http://em.21dtv.com/songs/60080730.mkv +张伟文-风云(演唱会),http://em.21dtv.com/songs/60075393.mkv +神马乐团-浮云,http://em.21dtv.com/songs/60070692.mkv +KEITH URBAN-for you,http://em.21dtv.com/songs/60067888.mkv +苏阳-发芽,http://em.21dtv.com/songs/60066982.mkv +冰川-封印,http://em.21dtv.com/songs/60065970.mkv +谭咏麟-forever young,http://em.21dtv.com/songs/60065590.mkv +容祖儿-蜉蝣,http://em.21dtv.com/songs/60064211.mkv +CEE LO GREEN-fuck you,http://em.21dtv.com/songs/60061977.mkv +国巍-负约,http://em.21dtv.com/songs/60017767.mkv +佚名-蜉蝣,http://em.21dtv.com/songs/60017689.mkv +郑少秋-浮云,http://em.21dtv.com/songs/60017681.mkv +张韶涵-浮云,http://em.21dtv.com/songs/60017680.mkv +王菲-敷衍,http://em.21dtv.com/songs/60017646.mkv +伍佰-枫叶,http://em.21dtv.com/songs/60017534.mkv +伍佰-枫叶(演唱会),http://em.21dtv.com/songs/60017533.mkv +郑伊健-风云,http://em.21dtv.com/songs/60017445.mkv +屠洪纲-风云,http://em.21dtv.com/songs/60017443.mkv +江得胜-风云,http://em.21dtv.com/songs/60017442.mkv +仙杜拉-风云(演唱会),http://em.21dtv.com/songs/60017440.mkv +余文乐-风雨,http://em.21dtv.com/songs/60017399.mkv +叶世荣-风雨,http://em.21dtv.com/songs/60017398.mkv +骆超勇-风雨,http://em.21dtv.com/songs/60017397.mkv +苏打绿-飞鱼,http://em.21dtv.com/songs/60016893.mkv +黄征-飞鱼,http://em.21dtv.com/songs/60016892.mkv +黄征-飞鱼(演唱会),http://em.21dtv.com/songs/60016891.mkv +佚名-飞鹰,http://em.21dtv.com/songs/60016890.mkv +刘文正-飞鹰,http://em.21dtv.com/songs/60016889.mkv +韩红-飞扬,http://em.21dtv.com/songs/60016884.mkv +李自强-飞燕,http://em.21dtv.com/songs/60016882.mkv +关淑怡-梵音,http://em.21dtv.com/songs/60016524.mkv +姚婷-凡眼,http://em.21dtv.com/songs/60016473.mkv +LILY ALLEN-fuck you,http://em.21dtv.com/songs/60001815.mkv +PAUL A ABDUL-forever young,http://em.21dtv.com/songs/60001771.mkv +佚名-forever young(无原唱),http://em.21dtv.com/songs/60001770.mkv +希亚-for you,http://em.21dtv.com/songs/60001755.mkv +5566-for you,http://em.21dtv.com/songs/60001754.mkv +软硬天师-for you(演唱会),http://em.21dtv.com/songs/60001753.mkv +JOHN DENYER-for you(演唱会),http://em.21dtv.com/songs/60001752.mkv +阿影-飞翔,http://em.21dtv.com/songs/60134378.mkv +宁桓宇-方向,http://em.21dtv.com/songs/60133573.mkv +印良法师-放下,http://em.21dtv.com/songs/60133445.mkv +李娅莎-飞翔,http://em.21dtv.com/songs/60130417.mkv +童可可-繁星,http://em.21dtv.com/songs/60126005.mkv +邓芷茵-副选,http://em.21dtv.com/songs/60124545.mkv +郭静-放下,http://em.21dtv.com/songs/60122182.mkv +姜鹏-放下,http://em.21dtv.com/songs/60119405.mkv +多亮-发小,http://em.21dtv.com/songs/60118476.mkv +周怡然-佛心,http://em.21dtv.com/songs/60116653.mkv +郑涛-放下,http://em.21dtv.com/songs/60116293.mkv +潘昱瑾-飞翔,http://em.21dtv.com/songs/60116122.mkv +黄绮珊-方向,http://em.21dtv.com/songs/60114918.mkv +何龙雨-放下,http://em.21dtv.com/songs/60113258.mkv +李霞儿+邓雯心-飞翔,http://em.21dtv.com/songs/60112771.mkv +朱英-放下,http://em.21dtv.com/songs/60112740.mkv +刚辉-放下,http://em.21dtv.com/songs/60112548.mkv +菁菁+孙建华-飞翔,http://em.21dtv.com/songs/60112182.mkv +天庥-放下,http://em.21dtv.com/songs/60111798.mkv +赵颖-飞翔,http://em.21dtv.com/songs/60106310.mkv +冷漠+杨小曼-分享,http://em.21dtv.com/songs/60101940.mkv +刘亦菲-放下,http://em.21dtv.com/songs/60094002.mkv +李贞贤-发泄,http://em.21dtv.com/songs/60089968.mkv +千荷-奉献,http://em.21dtv.com/songs/60089693.mkv +胡夏-放下,http://em.21dtv.com/songs/60085851.mkv +少女部落格-方向,http://em.21dtv.com/songs/60082881.mkv +戈浪-芬香,http://em.21dtv.com/songs/60080512.mkv +钟欣桐-风象,http://em.21dtv.com/songs/60080368.mkv +陈妍希-方向,http://em.21dtv.com/songs/60079886.mkv +世艺杨-飞翔,http://em.21dtv.com/songs/60070674.mkv +邓雯心-飞翔(演唱会),http://em.21dtv.com/songs/60069386.mkv +邓雯心+李霞-飞翔(演唱会),http://em.21dtv.com/songs/60069385.mkv +张靓颖-放下,http://em.21dtv.com/songs/60068246.mkv +方小菲-方向,http://em.21dtv.com/songs/60068242.mkv +许巍-方向,http://em.21dtv.com/songs/60066989.mkv +张萌萌-飞雪(演唱会),http://em.21dtv.com/songs/60064174.mkv +林立洋-负心,http://em.21dtv.com/songs/60017755.mkv +陈绮贞-腐朽,http://em.21dtv.com/songs/60017710.mkv +安琥-拂袖,http://em.21dtv.com/songs/60017653.mkv +刘惜君-拂晓(演唱会),http://em.21dtv.com/songs/60017652.mkv +卓依婷-奉献,http://em.21dtv.com/songs/60017621.mkv +庄学忠-奉献,http://em.21dtv.com/songs/60017620.mkv +张咪-奉献,http://em.21dtv.com/songs/60017619.mkv +佚名-奉献,http://em.21dtv.com/songs/60017618.mkv +苏芮-奉献,http://em.21dtv.com/songs/60017617.mkv +佚名-分心,http://em.21dtv.com/songs/60017143.mkv +王杰-分心,http://em.21dtv.com/songs/60017142.mkv +邰正宵-分心,http://em.21dtv.com/songs/60017141.mkv +伍思凯-分享,http://em.21dtv.com/songs/60017138.mkv +田震+苏永康-分享,http://em.21dtv.com/songs/60017137.mkv +黄雅莉-分享,http://em.21dtv.com/songs/60017136.mkv +伍思凯-分享(演唱会),http://em.21dtv.com/songs/60017135.mkv +永邦-废墟,http://em.21dtv.com/songs/60016971.mkv +佚名-飞雪,http://em.21dtv.com/songs/60016881.mkv +王冰洋-飞雪,http://em.21dtv.com/songs/60016880.mkv +童安格-飞雪,http://em.21dtv.com/songs/60016879.mkv +蝴蝶组合-飞雪,http://em.21dtv.com/songs/60016878.mkv +屠洪纲-飞翔,http://em.21dtv.com/songs/60016862.mkv +刘畊宏-飞翔,http://em.21dtv.com/songs/60016861.mkv +林忆莲-飞翔,http://em.21dtv.com/songs/60016860.mkv +河静静-飞翔,http://em.21dtv.com/songs/60016859.mkv +TWINS-飞线(演唱会),http://em.21dtv.com/songs/60016858.mkv +关心妍-放心,http://em.21dtv.com/songs/60016737.mkv +米蓝-方向,http://em.21dtv.com/songs/60016529.mkv +林展逸-方向,http://em.21dtv.com/songs/60016528.mkv +那英-反省,http://em.21dtv.com/songs/60016498.mkv +至上励合-繁星,http://em.21dtv.com/songs/60016485.mkv +郑伊健-发现,http://em.21dtv.com/songs/60016449.mkv +赵薇-发现,http://em.21dtv.com/songs/60016448.mkv +路绮欧-发现,http://em.21dtv.com/songs/60016447.mkv +郑伊健-发现(演唱会),http://em.21dtv.com/songs/60016446.mkv +布一贤-绯闻,http://em.21dtv.com/songs/60129038.mkv +谢霆锋-锋味,http://em.21dtv.com/songs/60103577.mkv +王冰洋+信乐团-飞舞,http://em.21dtv.com/songs/60099396.mkv +野仔-废嗡,http://em.21dtv.com/songs/60093371.mkv +赵真-绯闻,http://em.21dtv.com/songs/60088702.mkv +刘一祯-福娃,http://em.21dtv.com/songs/60087382.mkv +文章-风舞,http://em.21dtv.com/songs/60075389.mkv +陈升-诽闻,http://em.21dtv.com/songs/60016962.mkv +陈升-绯闻,http://em.21dtv.com/songs/60016957.mkv +王冰洋-飞舞,http://em.21dtv.com/songs/60016857.mkv +汪佩蓉-飞吻(无原唱),http://em.21dtv.com/songs/60016856.mkv +周传雄-乏味,http://em.21dtv.com/songs/60016456.mkv +LISSIE-FURTHER AWAY (ROMANCE POLICE),http://em.21dtv.com/songs/60096614.mkv +洛天依-Fucking Life,http://em.21dtv.com/songs/60128172.mkv +郭斯炫-佛徒,http://em.21dtv.com/songs/60114825.mkv +陈振云-佛徒,http://em.21dtv.com/songs/60107324.mkv +陶磬州-佛徒,http://em.21dtv.com/songs/60082924.mkv +凤凰传奇-飞天,http://em.21dtv.com/songs/60082896.mkv +安室奈美惠-fight together,http://em.21dtv.com/songs/60082151.mkv +谭晶-飞天,http://em.21dtv.com/songs/60079990.mkv +MICHAEL LEARNS-fairy tale,http://em.21dtv.com/songs/60063591.mkv +吉杰-funky town(演唱会),http://em.21dtv.com/songs/60060804.mkv +黄思婷-福田,http://em.21dtv.com/songs/60017700.mkv +茅威涛-奉汤,http://em.21dtv.com/songs/60017616.mkv +戴爱玲-沸腾,http://em.21dtv.com/songs/60016972.mkv +卓依婷-飞天,http://em.21dtv.com/songs/60016853.mkv +含笑-飞天,http://em.21dtv.com/songs/60016852.mkv +陈依依-飞天,http://em.21dtv.com/songs/60016851.mkv +车盈霏-飞天,http://em.21dtv.com/songs/60016850.mkv +许志安-翻腾(演唱会),http://em.21dtv.com/songs/60016466.mkv +温岚-发烫,http://em.21dtv.com/songs/60016443.mkv +安室奈美惠-funky town,http://em.21dtv.com/songs/60001821.mkv +LIPPS INC.-funky town,http://em.21dtv.com/songs/60001820.mkv +钟子炫-佛说,http://em.21dtv.com/songs/60135858.mkv +郑俊弘-风沙,http://em.21dtv.com/songs/60132986.mkv +果阳法师-放生,http://em.21dtv.com/songs/60127113.mkv +德格叶-佛说,http://em.21dtv.com/songs/60126919.mkv +陈岩-发生,http://em.21dtv.com/songs/60126381.mkv +钟明秋-分手,http://em.21dtv.com/songs/60126315.mkv +岩宰仑-分手,http://em.21dtv.com/songs/60124800.mkv +乔海洋-放手,http://em.21dtv.com/songs/60123602.mkv +冷漠-焚书,http://em.21dtv.com/songs/60122508.mkv +郭腾飞-放肆,http://em.21dtv.com/songs/60121014.mkv +蔡丽津-放手,http://em.21dtv.com/songs/60120926.mkv +晓月-分手,http://em.21dtv.com/songs/60119617.mkv +博才-分手,http://em.21dtv.com/songs/60119323.mkv +金池-反省,http://em.21dtv.com/songs/60117297.mkv +金池-反省,http://em.21dtv.com/songs/60116309.mkv +孙露-分手,http://em.21dtv.com/songs/60115802.mkv +温岚-放闪,http://em.21dtv.com/songs/60115274.mkv +宋旭-放手,http://em.21dtv.com/songs/60114497.mkv +音频怪物-佛说,http://em.21dtv.com/songs/60114253.mkv +梁帅-佛说,http://em.21dtv.com/songs/60111206.mkv +郭建芳-放手,http://em.21dtv.com/songs/60109665.mkv +游子组合-佛说,http://em.21dtv.com/songs/60107879.mkv +陈玉建-分手,http://em.21dtv.com/songs/60107332.mkv +瞿颖-放手,http://em.21dtv.com/songs/60106170.mkv +余哲-浮生,http://em.21dtv.com/songs/60104784.mkv +汪雨轩-反省,http://em.21dtv.com/songs/60098553.mkv +张信哲-放手,http://em.21dtv.com/songs/60098334.mkv +吕宏斌+彦季辰-浮生,http://em.21dtv.com/songs/60096784.mkv +冷漠-分手,http://em.21dtv.com/songs/60094821.mkv +湘唯一-分手,http://em.21dtv.com/songs/60094580.mkv +陈浩民+刘玉翠-封神,http://em.21dtv.com/songs/60093482.mkv +傅佩嘉-反思,http://em.21dtv.com/songs/60092295.mkv +西域刀郎-风说,http://em.21dtv.com/songs/60092040.mkv +美眉-风声,http://em.21dtv.com/songs/60091845.mkv +潘晓峰-风说,http://em.21dtv.com/songs/60091654.mkv +彦妮-放手,http://em.21dtv.com/songs/60086541.mkv +寒武纪-放手,http://em.21dtv.com/songs/60085077.mkv +王雅洁-风沙,http://em.21dtv.com/songs/60080743.mkv +孙露-分手,http://em.21dtv.com/songs/60075350.mkv +AOA-放肆,http://em.21dtv.com/songs/60075324.mkv +姚雨鑫-放手,http://em.21dtv.com/songs/60075318.mkv +郝刚-放手,http://em.21dtv.com/songs/60075317.mkv +スフィア-future stream,http://em.21dtv.com/songs/60073229.mkv +桑吉平措-佛说,http://em.21dtv.com/songs/60069396.mkv +依稀-放手,http://em.21dtv.com/songs/60068245.mkv +李旭刚-凡僧,http://em.21dtv.com/songs/60066985.mkv +何晟铭-佛说,http://em.21dtv.com/songs/60065974.mkv +孙康-放手,http://em.21dtv.com/songs/60064170.mkv +陈慧琳-幅射,http://em.21dtv.com/songs/60017688.mkv +莫文蔚-浮砂,http://em.21dtv.com/songs/60017669.mkv +陈思慧-浮沙,http://em.21dtv.com/songs/60017668.mkv +郭燕-佛说,http://em.21dtv.com/songs/60017629.mkv +梁汉文-风声,http://em.21dtv.com/songs/60017364.mkv +黄晓明-风声,http://em.21dtv.com/songs/60017363.mkv +中坚分子-风沙,http://em.21dtv.com/songs/60017357.mkv +梁朝伟-风沙,http://em.21dtv.com/songs/60017356.mkv +黄妃-风沙,http://em.21dtv.com/songs/60017355.mkv +高枫-丰收,http://em.21dtv.com/songs/60017200.mkv +陈洁仪-分书,http://em.21dtv.com/songs/60017133.mkv +蟑螂乐队-分手,http://em.21dtv.com/songs/60017039.mkv +张智霖+许秋怡-分手,http://em.21dtv.com/songs/60017038.mkv +张蓉蓉-分手,http://em.21dtv.com/songs/60017037.mkv +张国荣-分手,http://em.21dtv.com/songs/60017036.mkv +佚名-分手,http://em.21dtv.com/songs/60017035.mkv +万芳-分手,http://em.21dtv.com/songs/60017034.mkv +廖碧儿-分手,http://em.21dtv.com/songs/60017033.mkv +李自强-分手,http://em.21dtv.com/songs/60017032.mkv +李茂山+林淑蓉-分手,http://em.21dtv.com/songs/60017031.mkv +李碧华-分手,http://em.21dtv.com/songs/60017030.mkv +张惠妹-分生,http://em.21dtv.com/songs/60017029.mkv +安迪-肥死(无原唱),http://em.21dtv.com/songs/60016961.mkv +五月天-放肆,http://em.21dtv.com/songs/60016721.mkv +M3-放肆(无原唱),http://em.21dtv.com/songs/60016720.mkv +郑源-放手,http://em.21dtv.com/songs/60016710.mkv +吴建豪-放手,http://em.21dtv.com/songs/60016709.mkv +王美莲-放手,http://em.21dtv.com/songs/60016708.mkv +汪佩蓉-放手,http://em.21dtv.com/songs/60016707.mkv +屠洪纲-放手,http://em.21dtv.com/songs/60016706.mkv +双HI C组合-放手,http://em.21dtv.com/songs/60016705.mkv +林志炫-放手,http://em.21dtv.com/songs/60016704.mkv +何耀珊-放手,http://em.21dtv.com/songs/60016703.mkv +何龙雨+傅潇莹-放手,http://em.21dtv.com/songs/60016702.mkv +关德辉-放手,http://em.21dtv.com/songs/60016701.mkv +陈玉建-放手,http://em.21dtv.com/songs/60016700.mkv +曾心梅-放手,http://em.21dtv.com/songs/60016699.mkv +蔡小虎-放手,http://em.21dtv.com/songs/60016698.mkv +阿杜-放手,http://em.21dtv.com/songs/60016697.mkv +ENERGY-放手,http://em.21dtv.com/songs/60016696.mkv +双HI C组合-放手(演唱会),http://em.21dtv.com/songs/60016695.mkv +何耀珊-放手(演唱会),http://em.21dtv.com/songs/60016694.mkv +陈立珂-放手(演唱会),http://em.21dtv.com/songs/60016693.mkv +心薇-放手(无原唱),http://em.21dtv.com/songs/60016692.mkv +云泉法师-放生,http://em.21dtv.com/songs/60016690.mkv +关心妍-放生,http://em.21dtv.com/songs/60016689.mkv +范逸臣-放生,http://em.21dtv.com/songs/60016688.mkv +关心妍-放生(演唱会),http://em.21dtv.com/songs/60016687.mkv +龙千玉-放舍,http://em.21dtv.com/songs/60016683.mkv +李自强-犯傻,http://em.21dtv.com/songs/60016516.mkv +郭旭岗-凡僧,http://em.21dtv.com/songs/60016472.mkv +钟嘉欣-发誓,http://em.21dtv.com/songs/60016442.mkv +黎瑞恩-发誓,http://em.21dtv.com/songs/60016441.mkv +黎瑞恩-发誓(演唱会),http://em.21dtv.com/songs/60016440.mkv +林建亨-发射(无原唱),http://em.21dtv.com/songs/60016438.mkv +张惠妹-发烧,http://em.21dtv.com/songs/60016437.mkv +佚名-fortunate son,http://em.21dtv.com/songs/60001784.mkv +花儿乐队-flower show,http://em.21dtv.com/songs/60001707.mkv +童唱-finger song,http://em.21dtv.com/songs/60001677.mkv +TWINS-finger song,http://em.21dtv.com/songs/60001676.mkv +于湉-Free Time,http://em.21dtv.com/songs/60101040.mkv +范海荣-富饶,http://em.21dtv.com/songs/60102663.mkv +温力铭-废人,http://em.21dtv.com/songs/60064179.mkv +姜育恒-否认,http://em.21dtv.com/songs/60017631.mkv +佚名-forever rain,http://em.21dtv.com/songs/60001768.mkv +LARRIEUX AMEL-for real,http://em.21dtv.com/songs/60001741.mkv +卢凯彤-翻墙,http://em.21dtv.com/songs/60134964.mkv +筷子兄弟-父亲(HD),http://em.21dtv.com/songs/60134055.mkv +鸿飞-父亲,http://em.21dtv.com/songs/60132007.mkv +苏子哲-父亲,http://em.21dtv.com/songs/60127330.mkv +刘洺瑒-放晴,http://em.21dtv.com/songs/60126650.mkv +萧煌奇-风情,http://em.21dtv.com/songs/60126135.mkv +陈晨-奋起,http://em.21dtv.com/songs/60121081.mkv +袁双洋-父亲,http://em.21dtv.com/songs/60118896.mkv +谢作健-父亲,http://em.21dtv.com/songs/60118046.mkv +朱俐静-风起,http://em.21dtv.com/songs/60116882.mkv +江语晨-放晴,http://em.21dtv.com/songs/60116097.mkv +张潇逸-放晴,http://em.21dtv.com/songs/60113485.mkv +张信哲-焚情,http://em.21dtv.com/songs/60107709.mkv +古巨基-父亲,http://em.21dtv.com/songs/60107562.mkv +杨洋-放弃,http://em.21dtv.com/songs/60106002.mkv +张力尹-父亲,http://em.21dtv.com/songs/60105818.mkv +刘欢-父亲,http://em.21dtv.com/songs/60101970.mkv +谭晶-父亲,http://em.21dtv.com/songs/60100467.mkv +郑斯仁-放晴,http://em.21dtv.com/songs/60099526.mkv +降央卓玛-父亲,http://em.21dtv.com/songs/60098898.mkv +群星-父亲,http://em.21dtv.com/songs/60098696.mkv +陈瑞-父亲,http://em.21dtv.com/songs/60096533.mkv +陈一凡-父亲,http://em.21dtv.com/songs/60095125.mkv +宋孟君-放晴,http://em.21dtv.com/songs/60094470.mkv +阎维文-父亲,http://em.21dtv.com/songs/60085102.mkv +小肥-负亲,http://em.21dtv.com/songs/60082929.mkv +叶倩文-福气(演唱会),http://em.21dtv.com/songs/60082928.mkv +星弟-放弃,http://em.21dtv.com/songs/60068244.mkv +韦海涛-放弃,http://em.21dtv.com/songs/60066993.mkv +ROBYNN+KENDY-翻墙,http://em.21dtv.com/songs/60066983.mkv +筷子兄弟-父亲,http://em.21dtv.com/songs/60064212.mkv +张政雄-福气,http://em.21dtv.com/songs/60064210.mkv +孙翊轩-放弃,http://em.21dtv.com/songs/60062966.mkv +孟杨-父亲,http://em.21dtv.com/songs/60062764.mkv +君子-父亲,http://em.21dtv.com/songs/60061198.mkv +韦嘉-父亲,http://em.21dtv.com/songs/60017723.mkv +刘和刚-父亲,http://em.21dtv.com/songs/60017722.mkv +李健-父亲,http://em.21dtv.com/songs/60017721.mkv +金学峰-父亲,http://em.21dtv.com/songs/60017720.mkv +龚月-父亲,http://em.21dtv.com/songs/60017719.mkv +崔京浩-父亲,http://em.21dtv.com/songs/60017718.mkv +叶倩文-福气,http://em.21dtv.com/songs/60017697.mkv +郭富城-福气,http://em.21dtv.com/songs/60017696.mkv +阿雅-福气,http://em.21dtv.com/songs/60017695.mkv +许志豪+林良欢-夫妻,http://em.21dtv.com/songs/60017632.mkv +黄凯芹-焚情(演唱会),http://em.21dtv.com/songs/60017156.mkv +林隆璇-放晴,http://em.21dtv.com/songs/60016679.mkv +江语晨-放晴,http://em.21dtv.com/songs/60016678.mkv +蒋曦儿-放情,http://em.21dtv.com/songs/60016677.mkv +依稀-放弃,http://em.21dtv.com/songs/60016657.mkv +任军太-放弃,http://em.21dtv.com/songs/60016656.mkv +郭品超-放弃,http://em.21dtv.com/songs/60016655.mkv +零点乐队-放弃(演唱会),http://em.21dtv.com/songs/60016654.mkv +佚名-first quarrel,http://em.21dtv.com/songs/60001693.mkv +简弘亦-反派,http://em.21dtv.com/songs/60132780.mkv +叶小开-反派,http://em.21dtv.com/songs/60132275.mkv +Trash-反派,http://em.21dtv.com/songs/60129999.mkv +本兮-翻篇,http://em.21dtv.com/songs/60128069.mkv +丁春秀-浮萍,http://em.21dtv.com/songs/60112482.mkv +赖伟锋-翻篇,http://em.21dtv.com/songs/60112278.mkv +郑欣宜-奉陪,http://em.21dtv.com/songs/60096725.mkv +唐磊-浮萍,http://em.21dtv.com/songs/60089753.mkv +动力火车-奉陪,http://em.21dtv.com/songs/60080490.mkv +邓福如-Fantasy Paradise,http://em.21dtv.com/songs/60080481.mkv +卓文宣-反叛,http://em.21dtv.com/songs/60064165.mkv +卓文萱-反派,http://em.21dtv.com/songs/60064164.mkv +福山雅治-fighting pose,http://em.21dtv.com/songs/60062356.mkv +MC THE MAX-府畔,http://em.21dtv.com/songs/60017708.mkv +费玉清-浮萍,http://em.21dtv.com/songs/60017667.mkv +张震岳-放屁,http://em.21dtv.com/songs/60016653.mkv +陈慧娴-反叛(演唱会),http://em.21dtv.com/songs/60016496.mkv +糯米团-funky people(演唱会),http://em.21dtv.com/songs/60001819.mkv +冯曦妤-FOR YOU,http://em.21dtv.com/songs/60096613.mkv +邢毅-Forever Love,http://em.21dtv.com/songs/60100498.mkv +MODEST MOUSE-float on,http://em.21dtv.com/songs/60001705.mkv +夏卡毛乐团-find out,http://em.21dtv.com/songs/60001674.mkv +虎子-飞鸟,http://em.21dtv.com/songs/60105359.mkv +满江-飞鸟,http://em.21dtv.com/songs/60101431.mkv +NE-YO-forever now,http://em.21dtv.com/songs/60073222.mkv +红乐队-飞鸟(演唱会),http://em.21dtv.com/songs/60066996.mkv +艳乐队-飞鸟,http://em.21dtv.com/songs/60016832.mkv +任贤齐-飞鸟,http://em.21dtv.com/songs/60016831.mkv +范冰冰-飞鸟,http://em.21dtv.com/songs/60016830.mkv +任贤齐-飞鸟(演唱会),http://em.21dtv.com/songs/60016829.mkv +金智娟-飞鸟(无原唱),http://em.21dtv.com/songs/60016828.mkv +罗百吉-friday night,http://em.21dtv.com/songs/60001798.mkv +G.PRICE+R.BLACK-first noel,http://em.21dtv.com/songs/60001689.mkv +许哲佩-finding neverland,http://em.21dtv.com/songs/60001675.mkv +佚名-feliz navidad,http://em.21dtv.com/songs/60001661.mkv +BONEY M-feliz navidad,http://em.21dtv.com/songs/60001660.mkv +霍尊-粉墨,http://em.21dtv.com/songs/60135969.mkv +肖亮-父母,http://em.21dtv.com/songs/60134134.mkv +苏儿真-反面,http://em.21dtv.com/songs/60117155.mkv +郑钧-风马,http://em.21dtv.com/songs/60111450.mkv +Crayon Pop-FM,http://em.21dtv.com/songs/60109807.mkv +刘天助-粉墨,http://em.21dtv.com/songs/60106638.mkv +常颖-funky music,http://em.21dtv.com/songs/60081456.mkv +大小姐-Follow Me(发落密),http://em.21dtv.com/songs/60080930.mkv +AVRIL LAVIGNE-how you remind me,http://em.21dtv.com/songs/60073359.mkv +E GIRLS-follow me,http://em.21dtv.com/songs/60073219.mkv +梁佑嘉-feeling me,http://em.21dtv.com/songs/60073205.mkv +汪东城-feel me,http://em.21dtv.com/songs/60070336.mkv +铁热沁夫-疯魔,http://em.21dtv.com/songs/60068260.mkv +范玮琪-蜂蜜,http://em.21dtv.com/songs/60017576.mkv +多瓦才吉-风马,http://em.21dtv.com/songs/60017345.mkv +李宇春-粉末,http://em.21dtv.com/songs/60017175.mkv +阿峻-飞猫,http://em.21dtv.com/songs/60016827.mkv +谭咏麟-飞马,http://em.21dtv.com/songs/60016826.mkv +BRANDY-full moon,http://em.21dtv.com/songs/60001816.mkv +佚名-for mama,http://em.21dtv.com/songs/60001738.mkv +佚名-follow me,http://em.21dtv.com/songs/60001729.mkv +王力宏-follow me,http://em.21dtv.com/songs/60001728.mkv +UNCLE KRACKER-follow me,http://em.21dtv.com/songs/60001727.mkv +TWINS-follow me,http://em.21dtv.com/songs/60001726.mkv +莫文蔚-fill me,http://em.21dtv.com/songs/60001670.mkv +莫文蔚-fell me,http://em.21dtv.com/songs/60001663.mkv +SOLER-family man(演唱会),http://em.21dtv.com/songs/60001625.mkv +熊汝霖-FLY AWAY,http://em.21dtv.com/songs/60096612.mkv +EXILE-FLOWER SONG,http://em.21dtv.com/songs/60096611.mkv +金玄念-疯了,http://em.21dtv.com/songs/60129679.mkv +庆庆-飞了,http://em.21dtv.com/songs/60126855.mkv +蔡健雅-菲林,http://em.21dtv.com/songs/60118887.mkv +周子琰-疯了,http://em.21dtv.com/songs/60111762.mkv +善莹-风铃,http://em.21dtv.com/songs/60109243.mkv +4minute-疯了,http://em.21dtv.com/songs/60109076.mkv +金承熙-疯了,http://em.21dtv.com/songs/60103637.mkv +王江发-发啦,http://em.21dtv.com/songs/60093797.mkv +梅东生+简语卉-风铃,http://em.21dtv.com/songs/60085088.mkv +AFTER SCHOOL-first love,http://em.21dtv.com/songs/60082155.mkv +王菀之-First Love,http://em.21dtv.com/songs/60080736.mkv +阮丹青-飞了,http://em.21dtv.com/songs/60079972.mkv +陈奕迅-非礼(演唱会),http://em.21dtv.com/songs/60075341.mkv +余文乐-泛滥,http://em.21dtv.com/songs/60075298.mkv +宇多田光-first love,http://em.21dtv.com/songs/60073216.mkv +SEAN GARRETT+J COLE-feel love,http://em.21dtv.com/songs/60073199.mkv +BAD MEETS EVIL+EMINEM+ROYCE DA-fast lane,http://em.21dtv.com/songs/60073197.mkv +ADELE-first love,http://em.21dtv.com/songs/60071598.mkv +JYJ-fallen leaves,http://em.21dtv.com/songs/60070333.mkv +苏醒-分裂,http://em.21dtv.com/songs/60068249.mkv +红乐队-俘虏(演唱会),http://em.21dtv.com/songs/60067012.mkv +邰正宵-俘虏,http://em.21dtv.com/songs/60017654.mkv +王建复-疯了,http://em.21dtv.com/songs/60017562.mkv +孙丹菲-疯了,http://em.21dtv.com/songs/60017561.mkv +阿桑-疯了,http://em.21dtv.com/songs/60017560.mkv +张学友-疯了(演唱会),http://em.21dtv.com/songs/60017559.mkv +林忆莲-疯了(演唱会),http://em.21dtv.com/songs/60017558.mkv +罗时丰+大芭-风流,http://em.21dtv.com/songs/60017329.mkv +陈小春-风流,http://em.21dtv.com/songs/60017328.mkv +蔡秋凤-风流,http://em.21dtv.com/songs/60017327.mkv +[Group] +groupName=十六万歌曲MV等 - 06 +周蕙-风铃,http://em.21dtv.com/songs/60017323.mkv +卢巧音-风铃,http://em.21dtv.com/songs/60017322.mkv +郭小霖-风铃,http://em.21dtv.com/songs/60017321.mkv +卢巧音-风铃(演唱会),http://em.21dtv.com/songs/60017320.mkv +蔡淳佳-风铃(演唱会),http://em.21dtv.com/songs/60017319.mkv +陈小春-分流,http://em.21dtv.com/songs/60017025.mkv +周杰伦-分裂,http://em.21dtv.com/songs/60017024.mkv +伊能静-分裂,http://em.21dtv.com/songs/60017023.mkv +林良乐-分离,http://em.21dtv.com/songs/60017019.mkv +李香兰-分离,http://em.21dtv.com/songs/60017018.mkv +费玉清-分离,http://em.21dtv.com/songs/60017017.mkv +小刀乐团-飞了,http://em.21dtv.com/songs/60016822.mkv +庞龙-放了,http://em.21dtv.com/songs/60016635.mkv +邝文郇-发亮(无原唱),http://em.21dtv.com/songs/60016429.mkv +佚名-forever love,http://em.21dtv.com/songs/60001767.mkv +王力宏-forever love,http://em.21dtv.com/songs/60001766.mkv +东方神起-forever love,http://em.21dtv.com/songs/60001765.mkv +容祖儿-forever love(演唱会),http://em.21dtv.com/songs/60001764.mkv +宇多田ヒカル-first love,http://em.21dtv.com/songs/60001688.mkv +雷乐队-first love,http://em.21dtv.com/songs/60001687.mkv +K ONE-first love,http://em.21dtv.com/songs/60001686.mkv +蔡依林-first love(演唱会),http://em.21dtv.com/songs/60001685.mkv +宋亚轩-浮夸,http://em.21dtv.com/songs/60127910.mkv +BLASTER-放开,http://em.21dtv.com/songs/60127647.mkv +胡琳-放空,http://em.21dtv.com/songs/60124382.mkv +范晓萱+A-放空,http://em.21dtv.com/songs/60115351.mkv +庄心妍-放空,http://em.21dtv.com/songs/60114519.mkv +陈柏宇-放空,http://em.21dtv.com/songs/60082887.mkv +梁君诺-浮夸,http://em.21dtv.com/songs/60081079.mkv +林志炫-浮夸,http://em.21dtv.com/songs/60079956.mkv +泳儿-浮夸,http://em.21dtv.com/songs/60075412.mkv +海鲜套餐-fun key,http://em.21dtv.com/songs/60073227.mkv +邹宗翰-放空,http://em.21dtv.com/songs/60070670.mkv +顾峰-放开,http://em.21dtv.com/songs/60066992.mkv +陈奕迅-浮夸,http://em.21dtv.com/songs/60017665.mkv +王祖蓝-浮夸(演唱会),http://em.21dtv.com/songs/60017664.mkv +林志炫-浮夸(演唱会),http://em.21dtv.com/songs/60017663.mkv +陈奕迅-浮夸(HD演唱会),http://em.21dtv.com/songs/60017662.mkv +芭比-疯狂,http://em.21dtv.com/songs/60017545.mkv +王杰-疯狂(无原唱),http://em.21dtv.com/songs/60017544.mkv +叶瑗菱-分开,http://em.21dtv.com/songs/60017004.mkv +杨乃文-分开,http://em.21dtv.com/songs/60017003.mkv +豪记大对唱-分开(无原唱),http://em.21dtv.com/songs/60017002.mkv +爱乐团-放开,http://em.21dtv.com/songs/60016614.mkv +MIRAI未来-放开,http://em.21dtv.com/songs/60016613.mkv +张曼莉-放假,http://em.21dtv.com/songs/60123922.mkv +罗时丰-凡间,http://em.21dtv.com/songs/60123068.mkv +嘴哥乐团-风景,http://em.21dtv.com/songs/60120424.mkv +刘瑞琦-房间,http://em.21dtv.com/songs/60094834.mkv +美眉-风景,http://em.21dtv.com/songs/60091846.mkv +东篱-封疆,http://em.21dtv.com/songs/60082908.mkv +林欣彤-番枧,http://em.21dtv.com/songs/60082877.mkv +林俊杰-飞机,http://em.21dtv.com/songs/60079951.mkv +林俊杰+林俊峰-飞机,http://em.21dtv.com/songs/60075332.mkv +蛋堡-房间,http://em.21dtv.com/songs/60075304.mkv +邓雯心+张曼莉-放假,http://em.21dtv.com/songs/60069381.mkv +江美琪-房间,http://em.21dtv.com/songs/60066990.mkv +李娅莎-风景(北台湾版),http://em.21dtv.com/songs/60064198.mkv +吴梵-分居,http://em.21dtv.com/songs/60017001.mkv +李恕权-放假,http://em.21dtv.com/songs/60016610.mkv +徐良+阿俏-犯贱,http://em.21dtv.com/songs/60016514.mkv +陈小春-犯贱,http://em.21dtv.com/songs/60016513.mkv +麦浚龙-犯贱(演唱会),http://em.21dtv.com/songs/60016512.mkv +黄阅-凡间,http://em.21dtv.com/songs/60016467.mkv +群星-FIND YOU,http://em.21dtv.com/songs/60096610.mkv +PERFUME-fake it,http://em.21dtv.com/songs/60073193.mkv +JEWELRY'S-forget it,http://em.21dtv.com/songs/60062061.mkv +董贞-繁花,http://em.21dtv.com/songs/60134185.mkv +王金金-放火,http://em.21dtv.com/songs/60131679.mkv +原子霏-繁花,http://em.21dtv.com/songs/60130163.mkv +群星-复活,http://em.21dtv.com/songs/60129495.mkv +李日詹-反话,http://em.21dtv.com/songs/60124075.mkv +过又嘉-繁华,http://em.21dtv.com/songs/60120002.mkv +凤凰传奇-繁花,http://em.21dtv.com/songs/60103920.mkv +苗苗-凤凰,http://em.21dtv.com/songs/60096450.mkv +林峰-反话,http://em.21dtv.com/songs/60094949.mkv +伍佰-烽火,http://em.21dtv.com/songs/60087289.mkv +刘恺威-飞花,http://em.21dtv.com/songs/60081089.mkv +郑进一-废话,http://em.21dtv.com/songs/60080210.mkv +吴雨霏-复活,http://em.21dtv.com/songs/60075432.mkv +乔任梁-复活,http://em.21dtv.com/songs/60075431.mkv +ORANGE CARAMEL-funny hunny,http://em.21dtv.com/songs/60073228.mkv +周上允-符号,http://em.21dtv.com/songs/60068262.mkv +苏阳-凤凰,http://em.21dtv.com/songs/60067010.mkv +阿兰-凤凰,http://em.21dtv.com/songs/60067009.mkv +朱孝天-复活,http://em.21dtv.com/songs/60017773.mkv +林宇中+金莎-复活,http://em.21dtv.com/songs/60017772.mkv +荒山亮-复活(无原唱),http://em.21dtv.com/songs/60017771.mkv +刘美君-浮花,http://em.21dtv.com/songs/60017660.mkv +刘美君-浮花(演唱会),http://em.21dtv.com/songs/60017658.mkv +李京怡-凤凰,http://em.21dtv.com/songs/60017588.mkv +伍佰-风火,http://em.21dtv.com/songs/60017308.mkv +唐从圣+郑进一-废话(无原唱),http://em.21dtv.com/songs/60016968.mkv +李克勤-飞花,http://em.21dtv.com/songs/60016812.mkv +谭咏麟+李克勤-飞花(演唱会),http://em.21dtv.com/songs/60016811.mkv +李克勤-飞花(演唱会),http://em.21dtv.com/songs/60016810.mkv +佚名-foolish heart,http://em.21dtv.com/songs/60001734.mkv +米娜-fly high,http://em.21dtv.com/songs/60001717.mkv +滨崎步-fly high,http://em.21dtv.com/songs/60001716.mkv +苏慧伦-final home,http://em.21dtv.com/songs/60001671.mkv +李熙郁+陈艾森-发歌,http://em.21dtv.com/songs/60131504.mkv +魏鑫-梵高,http://em.21dtv.com/songs/60126458.mkv +林大晋-副歌,http://em.21dtv.com/songs/60121816.mkv +崔天琪-放过,http://em.21dtv.com/songs/60113437.mkv +吴映洁-犯规[消伴],http://em.21dtv.com/songs/60101298.mkv +CNBLUE-feel good,http://em.21dtv.com/songs/60086340.mkv +毕书尽-feel good,http://em.21dtv.com/songs/60082149.mkv +陈慧恬-风格,http://em.21dtv.com/songs/60075385.mkv +MICHAEL BUBLE-feeling good,http://em.21dtv.com/songs/60073204.mkv +刘悦-feeling good,http://em.21dtv.com/songs/60073203.mkv +王栎鑫-反光,http://em.21dtv.com/songs/60071915.mkv +爱戴-fighting girl,http://em.21dtv.com/songs/60071596.mkv +ADAM LAMBERT-feeling good,http://em.21dtv.com/songs/60071595.mkv +AKB48-flying get,http://em.21dtv.com/songs/60063595.mkv +JUSTIN BIEBER-favorite girl,http://em.21dtv.com/songs/60063592.mkv +陈楚生-浮光,http://em.21dtv.com/songs/60017657.mkv +亚东-佛光,http://em.21dtv.com/songs/60017625.mkv +王菲菲-飞歌,http://em.21dtv.com/songs/60016802.mkv +FRIPSIDE-future gazer,http://em.21dtv.com/songs/60001825.mkv +丁当-fu good,http://em.21dtv.com/songs/60001814.mkv +JEWEL-foolish games,http://em.21dtv.com/songs/60001733.mkv +陈嘉唯-feel good,http://em.21dtv.com/songs/60001650.mkv +生命树-凡夫,http://em.21dtv.com/songs/60107920.mkv +熊大-放飞,http://em.21dtv.com/songs/60107049.mkv +蔡靖以-方法,http://em.21dtv.com/songs/60082880.mkv +陈楚生-菲菲,http://em.21dtv.com/songs/60080446.mkv +BIRDMAN+LIL WAYNE-fire flame,http://em.21dtv.com/songs/60073212.mkv +家家-发疯,http://em.21dtv.com/songs/60071911.mkv +林欣彤-非凡,http://em.21dtv.com/songs/60062652.mkv +卓依婷-芬芳,http://em.21dtv.com/songs/60017147.mkv +许景淳-芬芳,http://em.21dtv.com/songs/60017146.mkv +徐怀钰-分飞,http://em.21dtv.com/songs/60016987.mkv +佚名-分飞(无原唱),http://em.21dtv.com/songs/60016986.mkv +杨家成-飞飞,http://em.21dtv.com/songs/60016800.mkv +赵颂茹-发奋,http://em.21dtv.com/songs/60016425.mkv +赵颂茹+JOEY TANG-发奋,http://em.21dtv.com/songs/60016424.mkv +梁咏琪-funny face,http://em.21dtv.com/songs/60001823.mkv +梁咏琪-funny face(演唱会),http://em.21dtv.com/songs/60001822.mkv +泳儿-forever friends,http://em.21dtv.com/songs/60001762.mkv +COOKIES-forever friends,http://em.21dtv.com/songs/60001761.mkv +文章-flying flower,http://em.21dtv.com/songs/60001723.mkv +GEORGE MICHAEL-father figure,http://em.21dtv.com/songs/60001645.mkv +金润吉-飞蛾,http://em.21dtv.com/songs/60112319.mkv +马丽-父恩,http://em.21dtv.com/songs/60109754.mkv +汪妤凌-范儿,http://em.21dtv.com/songs/60082879.mkv +丁丁-飞蛾,http://em.21dtv.com/songs/60075331.mkv +大张伟-范儿,http://em.21dtv.com/songs/60075299.mkv +佚名-飞蛾,http://em.21dtv.com/songs/60016797.mkv +许嵩-飞蛾,http://em.21dtv.com/songs/60016796.mkv +五月天-反而(演唱会),http://em.21dtv.com/songs/60016489.mkv +逆流感-FDN9,http://em.21dtv.com/songs/60101521.mkv +谢雷-负担,http://em.21dtv.com/songs/60135753.mkv +高鹏-发电,http://em.21dtv.com/songs/60127609.mkv +卢凯彤-发抖,http://em.21dtv.com/songs/60123716.mkv +宋沛江-放低,http://em.21dtv.com/songs/60116729.mkv +关喆-沸点,http://em.21dtv.com/songs/60109993.mkv +张诗宇-奋斗,http://em.21dtv.com/songs/60108506.mkv +郭婷筠-分担,http://em.21dtv.com/songs/60106331.mkv +李贞贤-疯掉,http://em.21dtv.com/songs/60091375.mkv +李梓菡-疯掉,http://em.21dtv.com/songs/60081654.mkv +岚-face down,http://em.21dtv.com/songs/60070331.mkv +汪苏泷-风度,http://em.21dtv.com/songs/60065965.mkv +羽泉-奋斗,http://em.21dtv.com/songs/60064188.mkv +黄耀明-奋斗(演唱会),http://em.21dtv.com/songs/60064187.mkv +SPACE COWBOY-falling down,http://em.21dtv.com/songs/60062163.mkv +许志安-负担,http://em.21dtv.com/songs/60017752.mkv +许志安-负担(演唱会),http://em.21dtv.com/songs/60017751.mkv +罗文-奋斗,http://em.21dtv.com/songs/60017193.mkv +花儿乐队-奋斗,http://em.21dtv.com/songs/60017192.mkv +阿吉仔-奋斗,http://em.21dtv.com/songs/60017191.mkv +甄妮-奋斗(演唱会),http://em.21dtv.com/songs/60017190.mkv +张德兰+钟镇涛+陈洁灵-奋斗(演唱会),http://em.21dtv.com/songs/60017189.mkv +陈奕迅-奋斗(演唱会),http://em.21dtv.com/songs/60017188.mkv +傅振辉-奋斗(无原唱),http://em.21dtv.com/songs/60017187.mkv +范玮琪-放电,http://em.21dtv.com/songs/60016582.mkv +芭比-放电,http://em.21dtv.com/songs/60016581.mkv +张国荣-放荡(演唱会),http://em.21dtv.com/songs/60016577.mkv +周俊伟-发呆,http://em.21dtv.com/songs/60016422.mkv +许美静-发呆,http://em.21dtv.com/songs/60016421.mkv +BY2-发呆,http://em.21dtv.com/songs/60016420.mkv +郑伊健-fleur dinterdit(演唱会),http://em.21dtv.com/songs/60001704.mkv +邓丽君-flash dance(演唱会),http://em.21dtv.com/songs/60001699.mkv +Goose house-风船,http://em.21dtv.com/songs/60131062.mkv +佘诗曼-风车,http://em.21dtv.com/songs/60119259.mkv +赖伟锋-付出,http://em.21dtv.com/songs/60118068.mkv +白举纲-浮城,http://em.21dtv.com/songs/60111318.mkv +红箭乐队-风车,http://em.21dtv.com/songs/60109561.mkv +张可-逢春,http://em.21dtv.com/songs/60102206.mkv +李芝芬-逢春(戏曲),http://em.21dtv.com/songs/60091369.mkv +王利-逢春,http://em.21dtv.com/songs/60085098.mkv +CHRIS BROWN-fine china,http://em.21dtv.com/songs/60082152.mkv +GAVY NJ-farewell cinema,http://em.21dtv.com/songs/60082148.mkv +王丽坤-讽刺,http://em.21dtv.com/songs/60080000.mkv +郑家星-浮城,http://em.21dtv.com/songs/60068261.mkv +高斌-讽刺,http://em.21dtv.com/songs/60067008.mkv +唐俪-风尘,http://em.21dtv.com/songs/60064192.mkv +AKB48-风は吹いている,http://em.21dtv.com/songs/60064190.mkv +高向鹏+林良欢+唐俪-扶持,http://em.21dtv.com/songs/60025934.mkv +张栋梁-付出,http://em.21dtv.com/songs/60017745.mkv +姜鹏-付出,http://em.21dtv.com/songs/60017744.mkv +郭富城-付出,http://em.21dtv.com/songs/60017743.mkv +陈好-付出(演唱会),http://em.21dtv.com/songs/60017742.mkv +杨宗宪-付出(无原唱),http://em.21dtv.com/songs/60017741.mkv +陈奕迅-浮城,http://em.21dtv.com/songs/60017656.mkv +小辣椒-风吹(无原唱),http://em.21dtv.com/songs/60017237.mkv +余诗曼-风车,http://em.21dtv.com/songs/60017227.mkv +杨坤-飞船,http://em.21dtv.com/songs/60016792.mkv +杨坤-飞船(演唱会),http://em.21dtv.com/songs/60016791.mkv +罗大佑-飞车,http://em.21dtv.com/songs/60016789.mkv +顾峰+斯琴高丽-犯错,http://em.21dtv.com/songs/60016511.mkv +CT GIRLS-发财,http://em.21dtv.com/songs/60016417.mkv +安室奈美恵-fast car,http://em.21dtv.com/songs/60001640.mkv +雷佳-丰碑,http://em.21dtv.com/songs/60117365.mkv +欧阳雄波-分别,http://em.21dtv.com/songs/60106052.mkv +李永林-丰碑,http://em.21dtv.com/songs/60105981.mkv +张靓颖-风暴,http://em.21dtv.com/songs/60087856.mkv +董贞+小柯-丰碑,http://em.21dtv.com/songs/60075373.mkv +SPEXIAL-发飙,http://em.21dtv.com/songs/60075287.mkv +ELLIE GOULDING-figure 8,http://em.21dtv.com/songs/60073208.mkv +BIGBANG-fantastic baby,http://em.21dtv.com/songs/60065585.mkv +薛之谦-伏笔,http://em.21dtv.com/songs/60064207.mkv +林峰+吴卓义+马国明-风暴,http://em.21dtv.com/songs/60017543.mkv +铁竹堂-风暴,http://em.21dtv.com/songs/60017225.mkv +群星-风暴,http://em.21dtv.com/songs/60017224.mkv +李心洁+任贤齐-风暴,http://em.21dtv.com/songs/60017223.mkv +郭燕-风暴,http://em.21dtv.com/songs/60017222.mkv +王心凌-飞吧,http://em.21dtv.com/songs/60016783.mkv +王美莲-飞吧,http://em.21dtv.com/songs/60016782.mkv +陈慧琳-飞吧,http://em.21dtv.com/songs/60016781.mkv +王识贤-反背,http://em.21dtv.com/songs/60016486.mkv +CHRISTIAO-funky broadway(无原唱),http://em.21dtv.com/songs/60001818.mkv +A.COLLINS+R.VAN ZAND-free bird(无原唱),http://em.21dtv.com/songs/60001789.mkv +佚名-foolish beat(无原唱),http://em.21dtv.com/songs/60001732.mkv +张冬玲-放爱,http://em.21dtv.com/songs/60100007.mkv +ONE REPUBLIC-feel again,http://em.21dtv.com/songs/60073198.mkv +BLACK VEIL BRIDES-fallen angels,http://em.21dtv.com/songs/60073194.mkv +NOEL-fading away,http://em.21dtv.com/songs/60070332.mkv +张崇基+张崇德-放爱(演唱会),http://em.21dtv.com/songs/60064166.mkv +MARSHA AMBROSIUS-far away,http://em.21dtv.com/songs/60062109.mkv +TYGA-far away,http://em.21dtv.com/songs/60060800.mkv +万茜-粉爱,http://em.21dtv.com/songs/60017162.mkv +易欣-分爱,http://em.21dtv.com/songs/60016977.mkv +佚名-forever autumn,http://em.21dtv.com/songs/60001760.mkv +LAURA FABIEN-for always,http://em.21dtv.com/songs/60001737.mkv +WESTLIFE-fool again,http://em.21dtv.com/songs/60001731.mkv +陈伟霆-flying away,http://em.21dtv.com/songs/60001722.mkv +张真贺-fly away,http://em.21dtv.com/songs/60001714.mkv +梁静茹-fly away,http://em.21dtv.com/songs/60001713.mkv +JOHN DENVER-fly away,http://em.21dtv.com/songs/60001712.mkv +F.I.R-fly away,http://em.21dtv.com/songs/60001711.mkv +万芳-fly away(演唱会),http://em.21dtv.com/songs/60001710.mkv +JOHN DENVER-fly away(演唱会),http://em.21dtv.com/songs/60001709.mkv +阿信-fallen angel(演唱会),http://em.21dtv.com/songs/60001614.mkv +于文华+尹相杰-儿子,http://em.21dtv.com/songs/60127715.mkv +GREEN DAY-21 gun,http://em.21dtv.com/songs/60062036.mkv +夏洛-耳语,http://em.21dtv.com/songs/60113366.mkv +于清龙-二月,http://em.21dtv.com/songs/60108281.mkv +LABRINTH-express yourself,http://em.21dtv.com/songs/60070330.mkv +吕雯-而已,http://em.21dtv.com/songs/60016315.mkv +MADONNA-express yourself,http://em.21dtv.com/songs/60001593.mkv +佚名-electric youth,http://em.21dtv.com/songs/60001488.mkv +季欣霈-二十五(演唱会),http://em.21dtv.com/songs/60061175.mkv +唐玮-二娃,http://em.21dtv.com/songs/60016403.mkv +这位太太-而我(眼已垂落),http://em.21dtv.com/songs/60016312.mkv +GWEN STEFANI-early winter,http://em.21dtv.com/songs/60001462.mkv +毕书尽+陈势安+陈彦允+李玉玺-Everything Changes,http://em.21dtv.com/songs/60100255.mkv +KATY PERRY-e t,http://em.21dtv.com/songs/60071591.mkv +NEON TREES-everybody talks,http://em.21dtv.com/songs/60067880.mkv +JANET JACKSON-every time,http://em.21dtv.com/songs/60001551.mkv +佚名-evergreen tree,http://em.21dtv.com/songs/60001532.mkv +佚名-ebb tide,http://em.21dtv.com/songs/60001469.mkv +丁新-e时代,http://em.21dtv.com/songs/60082145.mkv +刘昊霖-儿时,http://em.21dtv.com/songs/60123678.mkv +CHANGIN MY LIFE-eternal snow(演唱会),http://em.21dtv.com/songs/60082143.mkv +多杰邓珠-恩师,http://em.21dtv.com/songs/60080754.mkv +GARY ALLAN-every storm,http://em.21dtv.com/songs/60073185.mkv +AILEE-evening sky,http://em.21dtv.com/songs/60073182.mkv +F(X)-electric shock,http://em.21dtv.com/songs/60067878.mkv +伊藤由奈-endless story(演唱会),http://em.21dtv.com/songs/60001509.mkv +FRIPSIDE-eternal reality,http://em.21dtv.com/songs/60084708.mkv +孙子涵+XUN-恶人,http://em.21dtv.com/songs/60071905.mkv +TREY SONGZ+T.I-2 reasons,http://em.21dtv.com/songs/60071564.mkv +SAN E-everybody ready,http://em.21dtv.com/songs/60001556.mkv +佚名-eleanor rigby,http://em.21dtv.com/songs/60001484.mkv +楼兰-恩情,http://em.21dtv.com/songs/60125833.mkv +江志丰-恩情,http://em.21dtv.com/songs/60111219.mkv +王亚平-恩情,http://em.21dtv.com/songs/60103434.mkv +楼兰-恩情,http://em.21dtv.com/songs/60102420.mkv +黄乙玲-恩情,http://em.21dtv.com/songs/60016297.mkv +GACKT-episode 0,http://em.21dtv.com/songs/60060796.mkv +S.STEWART-everyday people(无原唱),http://em.21dtv.com/songs/60001562.mkv +佚名-el panuelito,http://em.21dtv.com/songs/60001481.mkv +TAYLOR SWIFT-eyes open,http://em.21dtv.com/songs/60067881.mkv +江若琳-every one,http://em.21dtv.com/songs/60060798.mkv +林保怡-儿女,http://em.21dtv.com/songs/60082873.mkv +佚名-even now,http://em.21dtv.com/songs/60001528.mkv +BARRY MANILOW-even now,http://em.21dtv.com/songs/60001527.mkv +陶晶莹-嗯嘛,http://em.21dtv.com/songs/60096819.mkv +李治廷-鹅毛,http://em.21dtv.com/songs/60062617.mkv +麻吉弟弟-噩梦,http://em.21dtv.com/songs/60016288.mkv +倪安东-恶梦,http://em.21dtv.com/songs/60016277.mkv +戴爱玲-恶梦,http://em.21dtv.com/songs/60016276.mkv +蔡小虎-恶梦,http://em.21dtv.com/songs/60016275.mkv +佚名-every morning,http://em.21dtv.com/songs/60001547.mkv +王啸坤-二楼,http://em.21dtv.com/songs/60088284.mkv +SABRINA+AMAN FONG-endless love(演唱会),http://em.21dtv.com/songs/60073174.mkv +林志炫+萧敬腾-easy lover),http://em.21dtv.com/songs/60073166.mkv +佚名-二楼(演唱会),http://em.21dtv.com/songs/60016362.mkv +LIONEL RICHIE+DIANA-endless love,http://em.21dtv.com/songs/60001508.mkv +杜丽莎+夏韶声-endless love(演唱会),http://em.21dtv.com/songs/60001507.mkv +郭静-encore lala,http://em.21dtv.com/songs/60001502.mkv +赵薇-e-mail love,http://em.21dtv.com/songs/60001493.mkv +PHIL COLLINS+PHIL BA-easy lover,http://em.21dtv.com/songs/60001465.mkv +降央卓玛-额吉(演),http://em.21dtv.com/songs/60100612.mkv +NELLY-e i,http://em.21dtv.com/songs/60073164.mkv +佚名-ebony ivory,http://em.21dtv.com/songs/60001472.mkv +鼓鼓-嗯哼,http://em.21dtv.com/songs/60130948.mkv +鼓鼓-嗯哼,http://em.21dtv.com/songs/60129862.mkv +林宝-耳环,http://em.21dtv.com/songs/60016320.mkv +段千寻-恩惠,http://em.21dtv.com/songs/60016295.mkv +R.E.M-everybody hurts,http://em.21dtv.com/songs/60001554.mkv +BOA-every heart,http://em.21dtv.com/songs/60001543.mkv +航宇-二哥,http://em.21dtv.com/songs/60114732.mkv +二哥-二哥,http://em.21dtv.com/songs/60103862.mkv +萧正楠-恶果,http://em.21dtv.com/songs/60093111.mkv +YOUNG MONEY & LIL WAYNE & MACK-every girl,http://em.21dtv.com/songs/60073184.mkv +张悬-儿歌,http://em.21dtv.com/songs/60016303.mkv +梁静茹-儿歌,http://em.21dtv.com/songs/60016302.mkv +张立基-electric girl,http://em.21dtv.com/songs/60001487.mkv +苏志威-electric girl(演唱会),http://em.21dtv.com/songs/60001486.mkv +林欣彤-eternal flame,http://em.21dtv.com/songs/60073178.mkv +THE BANGLES-eternal flame,http://em.21dtv.com/songs/60067879.mkv +林欣彤-eternal flame(演唱会),http://em.21dtv.com/songs/60063587.mkv +黄莺莺-eternal flame,http://em.21dtv.com/songs/60001522.mkv +AK-eternal flame,http://em.21dtv.com/songs/60001521.mkv +佚名-enternal flame,http://em.21dtv.com/songs/60001512.mkv +佚名-ebony eyes,http://em.21dtv.com/songs/60001471.mkv +林宥嘉-耳朵,http://em.21dtv.com/songs/60088095.mkv +赵薇-耳洞,http://em.21dtv.com/songs/60016318.mkv +施文彬-恶斗,http://em.21dtv.com/songs/60016274.mkv +佚名-electric dreams,http://em.21dtv.com/songs/60001485.mkv +满馨蔚-恩赐,http://em.21dtv.com/songs/60130556.mkv +TAKE THAT-everything changes,http://em.21dtv.com/songs/60063588.mkv +阿杜-恩赐,http://em.21dtv.com/songs/60016293.mkv +佚名-el choclo,http://em.21dtv.com/songs/60001480.mkv +阮兆祥-二把,http://em.21dtv.com/songs/60096649.mkv +KARA-electric boy,http://em.21dtv.com/songs/60073170.mkv +HOTCHA-2 beautiful,http://em.21dtv.com/songs/60069054.mkv +吴顺涵-ever after,http://em.21dtv.com/songs/60070329.mkv +张涛-恩爱,http://em.21dtv.com/songs/60066979.mkv +蔡小虎+蔡秋凤-恩爱,http://em.21dtv.com/songs/60016291.mkv +陈升-e=mc2,http://em.21dtv.com/songs/60001459.mkv +草蜢-大作,http://em.21dtv.com/songs/60127347.mkv +草蜢-大作,http://em.21dtv.com/songs/60126118.mkv +陈大天-刀在,http://em.21dtv.com/songs/60117330.mkv +派对绅士-带走,http://em.21dtv.com/songs/60110342.mkv +于文文-斗志,http://em.21dtv.com/songs/60107476.mkv +胡琳-冬至,http://em.21dtv.com/songs/60107137.mkv +于文文-斗志,http://em.21dtv.com/songs/60105565.mkv +墨明棋妙-独酌,http://em.21dtv.com/songs/60103993.mkv +筠子-冬至,http://em.21dtv.com/songs/60103503.mkv +慕寒+晃儿-独酌,http://em.21dtv.com/songs/60102272.mkv +李乔西-带走,http://em.21dtv.com/songs/60094142.mkv +高枫-带走,http://em.21dtv.com/songs/60081881.mkv +付辛博-独占,http://em.21dtv.com/songs/60080505.mkv +任贤齐-对折,http://em.21dtv.com/songs/60075261.mkv +周笔畅-对嘴,http://em.21dtv.com/songs/60064155.mkv +施文彬-顿张,http://em.21dtv.com/songs/60016095.mkv +庾澄庆-对峙,http://em.21dtv.com/songs/60016088.mkv +元若蓝-对摺,http://em.21dtv.com/songs/60016084.mkv +张宇-对折,http://em.21dtv.com/songs/60016083.mkv +元若蓝-对折,http://em.21dtv.com/songs/60016082.mkv +黄圣依-队长(演唱会),http://em.21dtv.com/songs/60015961.mkv +严宽-断章,http://em.21dtv.com/songs/60015954.mkv +乐瞳-短罪,http://em.21dtv.com/songs/60015903.mkv +李玟-赌注,http://em.21dtv.com/songs/60015861.mkv +许嵩-独坐,http://em.21dtv.com/songs/60015829.mkv +贾立怡-独奏,http://em.21dtv.com/songs/60015826.mkv +容祖儿-独照,http://em.21dtv.com/songs/60015821.mkv +黑色饼干-斗志,http://em.21dtv.com/songs/60015752.mkv +莫文蔚-冬至,http://em.21dtv.com/songs/60015620.mkv +黄妃-蝶仔,http://em.21dtv.com/songs/60015422.mkv +朱茵-地震,http://em.21dtv.com/songs/60015139.mkv +张学友-地震(演唱会),http://em.21dtv.com/songs/60015138.mkv +陈妃平-淡妆,http://em.21dtv.com/songs/60014464.mkv +古天乐-担正,http://em.21dtv.com/songs/60014317.mkv +莫艳琳-带走,http://em.21dtv.com/songs/60014290.mkv +刘恺威-大智,http://em.21dtv.com/songs/60014235.mkv +袁小迪-大仔,http://em.21dtv.com/songs/60014225.mkv +佚名-danger zone,http://em.21dtv.com/songs/60001150.mkv +周深-大鱼,http://em.21dtv.com/songs/60135053.mkv +吾恩-大鱼,http://em.21dtv.com/songs/60133479.mkv +卢庚戌-大鱼,http://em.21dtv.com/songs/60132271.mkv +杨宗纬-大雨,http://em.21dtv.com/songs/60130459.mkv +詹森淮-电影,http://em.21dtv.com/songs/60129604.mkv +李建科-道缘,http://em.21dtv.com/songs/60127004.mkv +黄明志-敌友,http://em.21dtv.com/songs/60124741.mkv +双笙-大鱼,http://em.21dtv.com/songs/60123722.mkv +雷龙-冬雨,http://em.21dtv.com/songs/60123341.mkv +周深-大鱼,http://em.21dtv.com/songs/60121511.mkv +蒋卓嘉-黛玉,http://em.21dtv.com/songs/60114754.mkv +陈艺搏-蝶影,http://em.21dtv.com/songs/60114229.mkv +吴瑶-多余,http://em.21dtv.com/songs/60108383.mkv +JKAI-毒药,http://em.21dtv.com/songs/60107413.mkv +潘玮柏-电影,http://em.21dtv.com/songs/60091660.mkv +民歌-冬云,http://em.21dtv.com/songs/60089385.mkv +姜健-毒药,http://em.21dtv.com/songs/60086533.mkv +詹曼铃-等云,http://em.21dtv.com/songs/60086528.mkv +村根-祷语,http://em.21dtv.com/songs/60082543.mkv +萧玉芬-毒药,http://em.21dtv.com/songs/60075231.mkv +张勇-大勇,http://em.21dtv.com/songs/60075087.mkv +公主组合-打烊,http://em.21dtv.com/songs/60075034.mkv +MIGUEL-do you,http://em.21dtv.com/songs/60073127.mkv +TRITOPS-毒瘾,http://em.21dtv.com/songs/60069363.mkv +杨宗纬-多余,http://em.21dtv.com/songs/60016236.mkv +那英-毒药,http://em.21dtv.com/songs/60015773.mkv +那英-毒药(演唱会),http://em.21dtv.com/songs/60015772.mkv +黄中原-毒药(演唱会),http://em.21dtv.com/songs/60015771.mkv +黄中原+傅薇-毒药(演唱会),http://em.21dtv.com/songs/60015770.mkv +胡彦斌-毒药(演唱会),http://em.21dtv.com/songs/60015769.mkv +元卫觉醒-斗鱼,http://em.21dtv.com/songs/60015749.mkv +李欣芸-斗鱼,http://em.21dtv.com/songs/60015748.mkv +齐秦-冬雨,http://em.21dtv.com/songs/60015617.mkv +叶丽仪-蝶缘(演唱会),http://em.21dtv.com/songs/60015421.mkv +蔡琴-蝶衣,http://em.21dtv.com/songs/60015418.mkv +孙业鸿-钓鱼(下卷),http://em.21dtv.com/songs/60015380.mkv +孙业鸿-钓鱼(上卷),http://em.21dtv.com/songs/60015379.mkv +佚名-点烟(无原唱),http://em.21dtv.com/songs/60015322.mkv +邹静-抵押,http://em.21dtv.com/songs/60015087.mkv +许美静-荡漾,http://em.21dtv.com/songs/60014683.mkv +巫启贤-但愿,http://em.21dtv.com/songs/60014413.mkv +伍天宇-大雨,http://em.21dtv.com/songs/60014212.mkv +金智娟-大雨,http://em.21dtv.com/songs/60014211.mkv +方珈悠-大勇,http://em.21dtv.com/songs/60014210.mkv +郭富城-大意,http://em.21dtv.com/songs/60014206.mkv +郭品超-答应,http://em.21dtv.com/songs/60013730.mkv +佚名-dont you,http://em.21dtv.com/songs/60001392.mkv +刘文天-地心,http://em.21dtv.com/songs/60127771.mkv +童孔-冬雪,http://em.21dtv.com/songs/60131712.mkv +莫少聪-多谢,http://em.21dtv.com/songs/60129553.mkv +松林-读心,http://em.21dtv.com/songs/60129292.mkv +李志-定西,http://em.21dtv.com/songs/60127013.mkv +李志-大象,http://em.21dtv.com/songs/60127010.mkv +周杰伦+刘伟男+徐林-稻香,http://em.21dtv.com/songs/60115054.mkv +严艺丹-单心,http://em.21dtv.com/songs/60113223.mkv +左立-独行,http://em.21dtv.com/songs/60112648.mkv +河图-斗仙,http://em.21dtv.com/songs/60111234.mkv +陈大天-钓虾,http://em.21dtv.com/songs/60109693.mkv +陈大天-钓虾,http://em.21dtv.com/songs/60108121.mkv +苏醒-独行,http://em.21dtv.com/songs/60107154.mkv +顾媛媛-底线,http://em.21dtv.com/songs/60096744.mkv +张柏芝-断戏,http://em.21dtv.com/songs/60092635.mkv +瞿颖-耽心,http://em.21dtv.com/songs/60091791.mkv +HOPE-稻香,http://em.21dtv.com/songs/60082815.mkv +单冲峰-地心,http://em.21dtv.com/songs/60081572.mkv +付辛博-独秀,http://em.21dtv.com/songs/60080504.mkv +陈明恩-底线,http://em.21dtv.com/songs/60080458.mkv +蔡卓妍-东西,http://em.21dtv.com/songs/60080436.mkv +杨宗纬-底细,http://em.21dtv.com/songs/60080034.mkv +陈慧琳-点心,http://em.21dtv.com/songs/60075196.mkv +富博洋-弟兄,http://em.21dtv.com/songs/60075175.mkv +望海高歌-多想,http://em.21dtv.com/songs/60069373.mkv +李响-冬雪,http://em.21dtv.com/songs/60066967.mkv +汪峰-地心,http://em.21dtv.com/songs/60064132.mkv +谢金燕-担心,http://em.21dtv.com/songs/60064109.mkv +谢天华-独行,http://em.21dtv.com/songs/60063167.mkv +黄宗泽-底线,http://em.21dtv.com/songs/60062497.mkv +张信哲-多心,http://em.21dtv.com/songs/60016227.mkv +无印良品-多心,http://em.21dtv.com/songs/60016226.mkv +无印良品-多心(演唱会),http://em.21dtv.com/songs/60016225.mkv +林忆莲-多谢(演唱会),http://em.21dtv.com/songs/60016215.mkv +张信哲-多想(演唱会),http://em.21dtv.com/songs/60016207.mkv +万芳-断线,http://em.21dtv.com/songs/60015948.mkv +齐秦-独行,http://em.21dtv.com/songs/60015783.mkv +周华健-动心,http://em.21dtv.com/songs/60015669.mkv +温岚+MCHAEL-动心,http://em.21dtv.com/songs/60015668.mkv +王菲-动心,http://em.21dtv.com/songs/60015667.mkv +陈星+叶可萌-懂心,http://em.21dtv.com/songs/60015643.mkv +钟尚荣-冬雪,http://em.21dtv.com/songs/60015615.mkv +姜鹏-冬雪,http://em.21dtv.com/songs/60015614.mkv +许巍-丁香,http://em.21dtv.com/songs/60015424.mkv +佚名-跌雪,http://em.21dtv.com/songs/60015392.mkv +王根兴-跌雪(无原唱),http://em.21dtv.com/songs/60015391.mkv +紫龙-雕像,http://em.21dtv.com/songs/60015372.mkv +孟小童-弟兄,http://em.21dtv.com/songs/60015144.mkv +周杰伦-稻香,http://em.21dtv.com/songs/60014787.mkv +施文彬-当选,http://em.21dtv.com/songs/60014641.mkv +林美美-当选,http://em.21dtv.com/songs/60014640.mkv +陈洁仪-担心,http://em.21dtv.com/songs/60014316.mkv +姜育恒+满书雯-大雪,http://em.21dtv.com/songs/60014188.mkv +侯旭-大雪,http://em.21dtv.com/songs/60014187.mkv +古巨基-大雄,http://em.21dtv.com/songs/60014185.mkv +古巨基-大雄(演唱会),http://em.21dtv.com/songs/60014184.mkv +侧田-大雄(演唱会),http://em.21dtv.com/songs/60014183.mkv +侧田+C ALLSTAR-大雄(演唱会),http://em.21dtv.com/songs/60014182.mkv +童唱-大象,http://em.21dtv.com/songs/60014165.mkv +胡雯-大象,http://em.21dtv.com/songs/60014164.mkv +陈永淘-大戏(无原唱),http://em.21dtv.com/songs/60014155.mkv +陈义正-当我,http://em.21dtv.com/songs/60114195.mkv +李贞贤-等我,http://em.21dtv.com/songs/60089970.mkv +詹宇琦-大雾,http://em.21dtv.com/songs/60085021.mkv +连诗雅-凼我,http://em.21dtv.com/songs/60084668.mkv +JW-氹我,http://em.21dtv.com/songs/60065932.mkv +黄思婷-顿悟,http://em.21dtv.com/songs/60016094.mkv +安又琪-对味,http://em.21dtv.com/songs/60016071.mkv +林志颖-对望,http://em.21dtv.com/songs/60016070.mkv +刘浩龙-断尾,http://em.21dtv.com/songs/60015947.mkv +刘浩龙-断尾(演唱会),http://em.21dtv.com/songs/60015946.mkv +郑嘉阳-独舞,http://em.21dtv.com/songs/60015812.mkv +张楠-懂我,http://em.21dtv.com/songs/60015642.mkv +满文军-懂我,http://em.21dtv.com/songs/60015641.mkv +厉娜-懂我,http://em.21dtv.com/songs/60015640.mkv +幸靖洁-蝶舞,http://em.21dtv.com/songs/60015416.mkv +陈红-蝶舞,http://em.21dtv.com/songs/60015415.mkv +容祖儿-电我,http://em.21dtv.com/songs/60015356.mkv +施文彬-电玩,http://em.21dtv.com/songs/60015353.mkv +LAURYN HILL-doo wop,http://em.21dtv.com/songs/60001395.mkv +LAURYN HILL-doo wop(无原唱),http://em.21dtv.com/songs/60001394.mkv +E.COBB-dirty water(无原唱),http://em.21dtv.com/songs/60001244.mkv +CLIFF RICHARD-devil woman,http://em.21dtv.com/songs/60001217.mkv +林子良-deja vu,http://em.21dtv.com/songs/60001206.mkv +佚名-down under,http://em.21dtv.com/songs/60001402.mkv +张敬轩-dear u,http://em.21dtv.com/songs/60001191.mkv +王栎鑫-dear u(演唱会),http://em.21dtv.com/songs/60001190.mkv +方皓玟-DT'Z IT,http://em.21dtv.com/songs/60096609.mkv +李宏毅-独特,http://em.21dtv.com/songs/60135357.mkv +高夫-赌徒,http://em.21dtv.com/songs/60133112.mkv +郁可唯-电梯,http://em.21dtv.com/songs/60132983.mkv +高夫-赌徒,http://em.21dtv.com/songs/60129818.mkv +李琦-单调,http://em.21dtv.com/songs/60127044.mkv +高夫-赌徒,http://em.21dtv.com/songs/60126453.mkv +郑子威-搭台,http://em.21dtv.com/songs/60124562.mkv +孙二宝-冬天,http://em.21dtv.com/songs/60120448.mkv +谭维维+宋宇宁-灯塔,http://em.21dtv.com/songs/60112251.mkv +黄绮珊-灯塔,http://em.21dtv.com/songs/60110731.mkv +谭维维-灯塔,http://em.21dtv.com/songs/60108896.mkv +玖壹壹-打铁,http://em.21dtv.com/songs/60108737.mkv +苏醒-侗听,http://em.21dtv.com/songs/60104385.mkv +李韦-点头,http://em.21dtv.com/songs/60103378.mkv +阿妹妹-冬天,http://em.21dtv.com/songs/60090281.mkv +合唱-冬天,http://em.21dtv.com/songs/60089722.mkv +郭易-稻田,http://em.21dtv.com/songs/60088788.mkv +高枫-代替,http://em.21dtv.com/songs/60081880.mkv +丁丁-灯塔,http://em.21dtv.com/songs/60081623.mkv +张勇-代替,http://em.21dtv.com/songs/60075091.mkv +罗力威-大同,http://em.21dtv.com/songs/60075082.mkv +C ALLSTAR-大同(演唱会),http://em.21dtv.com/songs/60075081.mkv +孙丹菲-dripping tears,http://em.21dtv.com/songs/60073160.mkv +谢华-蛋疼,http://em.21dtv.com/songs/60071866.mkv +WYNTER GORDON-dirty talk,http://em.21dtv.com/songs/60062179.mkv +RUBBER BAND-dedicated to,http://em.21dtv.com/songs/60060784.mkv +刘明扬-赌徒,http://em.21dtv.com/songs/60015856.mkv +刘明扬-赌徒(舞曲版),http://em.21dtv.com/songs/60015855.mkv +赵默-独听(演唱会),http://em.21dtv.com/songs/60015811.mkv +古巨基-冬天,http://em.21dtv.com/songs/60015596.mkv +SAYA+梦飞船-冬天,http://em.21dtv.com/songs/60015595.mkv +阿木-冬天(演唱会),http://em.21dtv.com/songs/60015594.mkv +梁静茹-地图,http://em.21dtv.com/songs/60015119.mkv +姜育恒-地图,http://em.21dtv.com/songs/60015118.mkv +黄征-地铁,http://em.21dtv.com/songs/60015117.mkv +谢金燕-代替,http://em.21dtv.com/songs/60014260.mkv +容祖儿-代替,http://em.21dtv.com/songs/60014259.mkv +罗时丰+大芭-代替,http://em.21dtv.com/songs/60014258.mkv +丁当-代替,http://em.21dtv.com/songs/60014257.mkv +凌国康-打铁,http://em.21dtv.com/songs/60013828.mkv +尹光-打藤(演唱会),http://em.21dtv.com/songs/60013827.mkv +ROD STEWART-downtown train,http://em.21dtv.com/songs/60001405.mkv +坂本真绫-down town,http://em.21dtv.com/songs/60001401.mkv +张学友-double trouble,http://em.21dtv.com/songs/60001397.mkv +WONDER GIRLS-different tears,http://em.21dtv.com/songs/60001236.mkv +佚名-day tripper,http://em.21dtv.com/songs/60001173.mkv +BEE GEES-day tripper,http://em.21dtv.com/songs/60001172.mkv +龙影云-躲闪,http://em.21dtv.com/songs/60130949.mkv +李娅莎-多桑,http://em.21dtv.com/songs/60130414.mkv +雨宗林-凋殇,http://em.21dtv.com/songs/60129769.mkv +徐嘉浩-东隧,http://em.21dtv.com/songs/60128011.mkv +单色凌-丢失,http://em.21dtv.com/songs/60126667.mkv +Matzka-大叔,http://em.21dtv.com/songs/60118271.mkv +刘惜君-多傻,http://em.21dtv.com/songs/60116587.mkv +杨丞琳-点水,http://em.21dtv.com/songs/60106965.mkv +杨丞琳-点水,http://em.21dtv.com/songs/60105996.mkv +崔健-对视,http://em.21dtv.com/songs/60104089.mkv +洪百慧-多桑(无原唱),http://em.21dtv.com/songs/60095775.mkv +戴愛玲-倒数,http://em.21dtv.com/songs/60087899.mkv +强辩乐团+武虎将-对手,http://em.21dtv.com/songs/60087860.mkv +孙楠-对视,http://em.21dtv.com/songs/60087657.mkv +孙子涵-堆伤,http://em.21dtv.com/songs/60085064.mkv +侯磊-懂事,http://em.21dtv.com/songs/60085058.mkv +苏醒-对手,http://em.21dtv.com/songs/60082867.mkv +花哥-单身,http://em.21dtv.com/songs/60080561.mkv +AOM+TINA-对视,http://em.21dtv.com/songs/60075259.mkv +李宇春-当时,http://em.21dtv.com/songs/60075115.mkv +AKB48-大声ダイヤモンド,http://em.21dtv.com/songs/60075078.mkv +GRANRODEO-dark shame,http://em.21dtv.com/songs/60073105.mkv +孟刚-多少,http://em.21dtv.com/songs/60071902.mkv +周琦-单身,http://em.21dtv.com/songs/60071865.mkv +KELLY CLARKSON-dark side(演唱会),http://em.21dtv.com/songs/60067870.mkv +梁咏琪-多少,http://em.21dtv.com/songs/60016189.mkv +陈奕迅-多少,http://em.21dtv.com/songs/60016188.mkv +蔡健雅-多少,http://em.21dtv.com/songs/60016187.mkv +刘若英-多傻,http://em.21dtv.com/songs/60016186.mkv +蔡振南-多桑(无原唱),http://em.21dtv.com/songs/60016184.mkv +群星-对手,http://em.21dtv.com/songs/60016064.mkv +TORO+颜行书-对手,http://em.21dtv.com/songs/60016063.mkv +五月天-赌神(演唱会),http://em.21dtv.com/songs/60015854.mkv +孙燕姿-懂事,http://em.21dtv.com/songs/60015639.mkv +林志炫-懂事,http://em.21dtv.com/songs/60015638.mkv +范萱蔚-冬甩,http://em.21dtv.com/songs/60015593.mkv +孙江枫-丢失,http://em.21dtv.com/songs/60015481.mkv +晏菲-貂禅(演唱会),http://em.21dtv.com/songs/60015367.mkv +萧亚轩-倒数,http://em.21dtv.com/songs/60014710.mkv +关楚耀-倒数(演唱会),http://em.21dtv.com/songs/60014709.mkv +张信哲-当时,http://em.21dtv.com/songs/60014588.mkv +范玮琪-当时,http://em.21dtv.com/songs/60014587.mkv +许美静-单数,http://em.21dtv.com/songs/60014396.mkv +曹格-单数,http://em.21dtv.com/songs/60014395.mkv +洪一平-单身,http://em.21dtv.com/songs/60014362.mkv +施文彬-歹势,http://em.21dtv.com/songs/60014247.mkv +李子恒-大树(无原唱),http://em.21dtv.com/songs/60014134.mkv +杨千嬅-大傻,http://em.21dtv.com/songs/60014113.mkv +郭凤女-打神,http://em.21dtv.com/songs/60013821.mkv +李蕙敏-打扫,http://em.21dtv.com/songs/60013820.mkv +2个女生-打扫,http://em.21dtv.com/songs/60013819.mkv +陈慧琳-dont stop,http://em.21dtv.com/songs/60001378.mkv +蔡依林-dont stop,http://em.21dtv.com/songs/60001377.mkv +陈慧琳-dont stop(演唱会),http://em.21dtv.com/songs/60001376.mkv +蔡依林-dont stop(演唱会),http://em.21dtv.com/songs/60001375.mkv +GWEN STEFANI-dont speak,http://em.21dtv.com/songs/60001370.mkv +BRITNEY SPEARS-do somethin,http://em.21dtv.com/songs/60001270.mkv +林晓培-diamond sun,http://em.21dtv.com/songs/60001225.mkv +佚名-dannys song,http://em.21dtv.com/songs/60001159.mkv +佚名-dancing shoes,http://em.21dtv.com/songs/60001149.mkv +熊汝霖-DREAM ON,http://em.21dtv.com/songs/60096608.mkv +虞姬+阿花-大人,http://em.21dtv.com/songs/60118894.mkv +朱元冰-单人,http://em.21dtv.com/songs/60112737.mkv +陈奕迅-大人,http://em.21dtv.com/songs/60088858.mkv +曹方-等人,http://em.21dtv.com/songs/60075161.mkv +渡辺麻友-大人ジェリービーンズ,http://em.21dtv.com/songs/60075076.mkv +阿超-大人,http://em.21dtv.com/songs/60066944.mkv +郑中基-敌人,http://em.21dtv.com/songs/60015084.mkv +伍佰-敌人(演唱会),http://em.21dtv.com/songs/60015083.mkv +张国荣-大热(演唱会),http://em.21dtv.com/songs/60014106.mkv +李彩桦-december rain,http://em.21dtv.com/songs/60001200.mkv +傅佩嘉-december rain,http://em.21dtv.com/songs/60001199.mkv +孙丹菲-db rider,http://em.21dtv.com/songs/60001181.mkv +林宥嘉-兜圈,http://em.21dtv.com/songs/60116963.mkv +AOA-短裙,http://em.21dtv.com/songs/60108209.mkv +Melody Day-胆怯,http://em.21dtv.com/songs/60107420.mkv +黄龄-侗情,http://em.21dtv.com/songs/60104636.mkv +甲子慧-赌气,http://em.21dtv.com/songs/60099427.mkv +腾格尔-订亲(无原唱),http://em.21dtv.com/songs/60090128.mkv +孙楠-动情,http://em.21dtv.com/songs/60089791.mkv +翁立友-断情,http://em.21dtv.com/songs/60075245.mkv +刘惜君-大气,http://em.21dtv.com/songs/60075074.mkv +少女时代-dancing queen,http://em.21dtv.com/songs/60073102.mkv +CRAYON POP-dancing queen,http://em.21dtv.com/songs/60070323.mkv +孙悦-多情,http://em.21dtv.com/songs/60016141.mkv +龙千玉-多情,http://em.21dtv.com/songs/60016140.mkv +林凡-多情,http://em.21dtv.com/songs/60016139.mkv +黎瑞恩-多情,http://em.21dtv.com/songs/60016138.mkv +金素梅-多情,http://em.21dtv.com/songs/60016137.mkv +黎瑞恩-多情(演唱会),http://em.21dtv.com/songs/60016136.mkv +小宝-断桥,http://em.21dtv.com/songs/60015936.mkv +田跃君-断桥,http://em.21dtv.com/songs/60015935.mkv +史啸吟-断桥,http://em.21dtv.com/songs/60015934.mkv +廖大森-断桥,http://em.21dtv.com/songs/60015933.mkv +左宏元+张慧清-渡情,http://em.21dtv.com/songs/60015887.mkv +江若琳-斗气,http://em.21dtv.com/songs/60015746.mkv +江若琳-斗气(演唱会),http://em.21dtv.com/songs/60015745.mkv +兰卡布尺-定情,http://em.21dtv.com/songs/60015461.mkv +吕雯-地球,http://em.21dtv.com/songs/60015102.mkv +杨哲-道歉,http://em.21dtv.com/songs/60014777.mkv +周迅-大齐,http://em.21dtv.com/songs/60014100.mkv +ABBA-dancing queen,http://em.21dtv.com/songs/60001148.mkv +张超-打破,http://em.21dtv.com/songs/60121680.mkv +罗志祥-断片,http://em.21dtv.com/songs/60117967.mkv +许富凯+曹雅雯-底牌,http://em.21dtv.com/songs/60104424.mkv +袁小迪-打拼,http://em.21dtv.com/songs/60085008.mkv +LANA DEL REY-dark paradise,http://em.21dtv.com/songs/60073104.mkv +黄小琥-打破,http://em.21dtv.com/songs/60065914.mkv +MERMAID-diva project,http://em.21dtv.com/songs/60062110.mkv +詹雅雯-底片,http://em.21dtv.com/songs/60015088.mkv +许嵩-大牌,http://em.21dtv.com/songs/60014095.mkv +闪亮三姐妹-打拼,http://em.21dtv.com/songs/60013808.mkv +张靓颖-dream party,http://em.21dtv.com/songs/60001422.mkv +MITCHELL PARISH+PETE-deep purple,http://em.21dtv.com/songs/60001202.mkv +草蜢-嗲噢,http://em.21dtv.com/songs/60015292.mkv +草蜢-嗲噢(演唱会),http://em.21dtv.com/songs/60015291.mkv +X+DREAM-dream on(无原唱),http://em.21dtv.com/songs/60001421.mkv +HARRY BELAFONTE-day o,http://em.21dtv.com/songs/60001171.mkv +龙千玉-等你,http://em.21dtv.com/songs/60136060.mkv +高夫-等你,http://em.21dtv.com/songs/60129816.mkv +灰老板-断念,http://em.21dtv.com/songs/60127183.mkv +李昱和-对鸟,http://em.21dtv.com/songs/60127034.mkv +韩敏-等你,http://em.21dtv.com/songs/60114244.mkv +侯延彬-当你,http://em.21dtv.com/songs/60113264.mkv +嘉旗-等你,http://em.21dtv.com/songs/60111787.mkv +张玮伽-等你,http://em.21dtv.com/songs/60111081.mkv +A Lin-等你,http://em.21dtv.com/songs/60108205.mkv +胡艾莲-等你,http://em.21dtv.com/songs/60107147.mkv +望海高歌-懂你,http://em.21dtv.com/songs/60102307.mkv +书画-等念,http://em.21dtv.com/songs/60093658.mkv +大庆小芳-等你,http://em.21dtv.com/songs/60081861.mkv +谢容儿-等你,http://em.21dtv.com/songs/60081227.mkv +李玉和-对鸟,http://em.21dtv.com/songs/60075258.mkv +ALIN-等你,http://em.21dtv.com/songs/60075154.mkv +刘可-对鸟,http://em.21dtv.com/songs/60071899.mkv +青春美少女-读你(演唱会),http://em.21dtv.com/songs/60070653.mkv +吕金铃-爹娘,http://em.21dtv.com/songs/60070641.mkv +沢尻エリカ-destination nowhere,http://em.21dtv.com/songs/60065570.mkv +古巨基-独男(演唱会),http://em.21dtv.com/songs/60064151.mkv +黄中原-断念(无原唱),http://em.21dtv.com/songs/60015932.mkv +高胜美-读你,http://em.21dtv.com/songs/60015839.mkv +陈淑桦+李宗盛-读你,http://em.21dtv.com/songs/60015838.mkv +费翔-读你(演唱会),http://em.21dtv.com/songs/60015837.mkv +蔡琴-读你(演唱会),http://em.21dtv.com/songs/60015836.mkv +蔡琴-读你(HD演唱会),http://em.21dtv.com/songs/60015835.mkv +周杰伦-斗牛,http://em.21dtv.com/songs/60015739.mkv +满文军-懂你,http://em.21dtv.com/songs/60015636.mkv +满文军-懂你(演唱会),http://em.21dtv.com/songs/60015635.mkv +郭颂-顶牛,http://em.21dtv.com/songs/60015445.mkv +庄学忠-叮咛,http://em.21dtv.com/songs/60015443.mkv +周璇+严华-叮咛,http://em.21dtv.com/songs/60015442.mkv +张伟文+吕珊-叮咛,http://em.21dtv.com/songs/60015441.mkv +佚名-叮咛,http://em.21dtv.com/songs/60015440.mkv +许志豪-叮咛,http://em.21dtv.com/songs/60015439.mkv +佚名-叮咛(无原唱),http://em.21dtv.com/songs/60015438.mkv +美黛-叮咛(无原唱),http://em.21dtv.com/songs/60015437.mkv +张信哲-等你,http://em.21dtv.com/songs/60014961.mkv +张祥洪-等你,http://em.21dtv.com/songs/60014960.mkv +佚名-等你,http://em.21dtv.com/songs/60014959.mkv +伊风-等你,http://em.21dtv.com/songs/60014958.mkv +谢军-等你,http://em.21dtv.com/songs/60014957.mkv +肖飞-等你,http://em.21dtv.com/songs/60014956.mkv +王中平-等你,http://em.21dtv.com/songs/60014955.mkv +龙千玉-等你,http://em.21dtv.com/songs/60014954.mkv +黄西田+樱桃姐妹-等你,http://em.21dtv.com/songs/60014953.mkv +佚名-当年,http://em.21dtv.com/songs/60014571.mkv +王心凌-当你,http://em.21dtv.com/songs/60014545.mkv +林俊杰-当你,http://em.21dtv.com/songs/60014544.mkv +黄小桢-december night,http://em.21dtv.com/songs/60001198.mkv +C-BLOCK-dear妈妈,http://em.21dtv.com/songs/60082132.mkv +谢天华+阎奕格-蝶梦,http://em.21dtv.com/songs/60134227.mkv +陈粒-大梦,http://em.21dtv.com/songs/60129754.mkv +游小龙-冬末,http://em.21dtv.com/songs/60125880.mkv +王铮亮-盗梦,http://em.21dtv.com/songs/60120782.mkv +王铮亮-盗梦,http://em.21dtv.com/songs/60111293.mkv +吴建豪-different man,http://em.21dtv.com/songs/60082134.mkv +寿美菜子-dear my,http://em.21dtv.com/songs/60062915.mkv +蔡国权-堆梦,http://em.21dtv.com/songs/60015960.mkv +飞轮海-动脉,http://em.21dtv.com/songs/60015656.mkv +佚名-冬眠,http://em.21dtv.com/songs/60015585.mkv +张明敏-冬梅,http://em.21dtv.com/songs/60015584.mkv +AKON-dont matter,http://em.21dtv.com/songs/60001352.mkv +邓丽君-designer music,http://em.21dtv.com/songs/60001212.mkv +佚名-desert moon,http://em.21dtv.com/songs/60001211.mkv +祈Inory-东流,http://em.21dtv.com/songs/60134040.mkv +彭松杰-掉了,http://em.21dtv.com/songs/60130346.mkv +多亮-多亮,http://em.21dtv.com/songs/60130213.mkv +苏打绿-掉了,http://em.21dtv.com/songs/60126108.mkv +东方依依-单恋,http://em.21dtv.com/songs/60125071.mkv +陈艺搏-懂了,http://em.21dtv.com/songs/60124651.mkv +董文华-道路,http://em.21dtv.com/songs/60123125.mkv +郑淳元-冬恋,http://em.21dtv.com/songs/60110580.mkv +李翊君-点亮(HD),http://em.21dtv.com/songs/10012797.mkv +黄美珍-懂了,http://em.21dtv.com/songs/60108185.mkv +刀郎-永远的战士,http://em.21dtv.com/songs/60103407.mkv +朱梓溶-凋零,http://em.21dtv.com/songs/60103343.mkv +李翊君-点亮,http://em.21dtv.com/songs/60098491.mkv +蔡健雅-堕落,http://em.21dtv.com/songs/60096802.mkv +圣燕-懂了,http://em.21dtv.com/songs/60094035.mkv +阿牛+黄秋生-大佬,http://em.21dtv.com/songs/60093380.mkv +谢霆锋-定律,http://em.21dtv.com/songs/60088670.mkv +崎君-大陆,http://em.21dtv.com/songs/60087735.mkv +洪禄云+枫舞-冬恋,http://em.21dtv.com/songs/60085057.mkv +赖俊俊-蝶恋,http://em.21dtv.com/songs/60085052.mkv +楼宏章-蝶泪,http://em.21dtv.com/songs/60085051.mkv +THE SATURDAYS-disco love,http://em.21dtv.com/songs/60084702.mkv +韩小薰-懂了,http://em.21dtv.com/songs/60082853.mkv +庄学忠-冬恋,http://em.21dtv.com/songs/60082850.mkv +杨钰莹-断恋,http://em.21dtv.com/songs/60075241.mkv +苏打绿-掉了(演唱会),http://em.21dtv.com/songs/60075201.mkv +黄智博-断了,http://em.21dtv.com/songs/60066974.mkv +张智成-dream love,http://em.21dtv.com/songs/60065574.mkv +洪辰-掉了(演唱会),http://em.21dtv.com/songs/60062451.mkv +王菲-堕落,http://em.21dtv.com/songs/60016259.mkv +王菲-堕落(演唱会),http://em.21dtv.com/songs/60016258.mkv +伍佰-断了,http://em.21dtv.com/songs/60015924.mkv +伍佰-断了(演唱会),http://em.21dtv.com/songs/60015923.mkv +蜜雪薇琪-独立,http://em.21dtv.com/songs/60015792.mkv +罗大佑-动乱(无原唱),http://em.21dtv.com/songs/60015655.mkv +郑少秋-冬恋,http://em.21dtv.com/songs/60015582.mkv +韩宝仪-冬恋,http://em.21dtv.com/songs/60015581.mkv +关淑怡-冬恋,http://em.21dtv.com/songs/60015580.mkv +余天-冬恋(无原唱),http://em.21dtv.com/songs/60015579.mkv +赵之璧-丢了,http://em.21dtv.com/songs/60015477.mkv +阿木-丢了,http://em.21dtv.com/songs/60015476.mkv +魏如昀-蝶恋,http://em.21dtv.com/songs/60015402.mkv +刘亦菲-蝶恋,http://em.21dtv.com/songs/60015401.mkv +张惠妹-掉了,http://em.21dtv.com/songs/60015384.mkv +刘虹桦-掉了,http://em.21dtv.com/songs/60015383.mkv +高峰-道路(无原唱),http://em.21dtv.com/songs/60014776.mkv +艾尔肯-刀郎,http://em.21dtv.com/songs/60014693.mkv +谢雨欣-单恋,http://em.21dtv.com/songs/60014346.mkv +光良-单恋,http://em.21dtv.com/songs/60014345.mkv +光良-单恋(演唱会),http://em.21dtv.com/songs/60014344.mkv +廖丽娜-单恋(无原唱),http://em.21dtv.com/songs/60014343.mkv +保剑锋-单练,http://em.21dtv.com/songs/60014342.mkv +佚名-dream lover,http://em.21dtv.com/songs/60001420.mkv +廖大森-dream lover,http://em.21dtv.com/songs/60001419.mkv +佚名-dear lie,http://em.21dtv.com/songs/60001189.mkv +阿索-渡口,http://em.21dtv.com/songs/60131926.mkv +朱大群-渡口,http://em.21dtv.com/songs/60129215.mkv +刘罡-渡口,http://em.21dtv.com/songs/60101988.mkv +胡鸿钧-斗快,http://em.21dtv.com/songs/60096445.mkv +潘辰-渡口,http://em.21dtv.com/songs/60075238.mkv +时金钰-独哭,http://em.21dtv.com/songs/60061163.mkv +蔡琴-渡口,http://em.21dtv.com/songs/60015883.mkv +许志安+邓健泓-斗苦,http://em.21dtv.com/songs/60015736.mkv +陈小春-斗苦,http://em.21dtv.com/songs/60015735.mkv +苍茫-刀客,http://em.21dtv.com/songs/60014692.mkv +苍茫-刀客(演唱会),http://em.21dtv.com/songs/60014691.mkv +JEWELRY-dont know,http://em.21dtv.com/songs/60001334.mkv +DON OMAR-danza kuduro,http://em.21dtv.com/songs/60001160.mkv +吴国敬-大奖,http://em.21dtv.com/songs/60132287.mkv +祁隆-惦记,http://em.21dtv.com/songs/60125981.mkv +陈零九-豆浆,http://em.21dtv.com/songs/60119033.mkv +刘诺婕+宋马超-独寂,http://em.21dtv.com/songs/60098156.mkv +草蜢-点解,http://em.21dtv.com/songs/60093097.mkv +张卫健-大奖,http://em.21dtv.com/songs/60092569.mkv +SOLER-点解,http://em.21dtv.com/songs/60092193.mkv +林忆莲-多久,http://em.21dtv.com/songs/60091449.mkv +孙子涵-冻结,http://em.21dtv.com/songs/60080712.mkv +龙小菌-毒酒,http://em.21dtv.com/songs/60075230.mkv +王祖蓝+王菀之-大家,http://em.21dtv.com/songs/60075058.mkv +旭日阳刚-冬季,http://em.21dtv.com/songs/60071889.mkv +蔡依林-dr jolin,http://em.21dtv.com/songs/60069075.mkv +板野友美-dear j,http://em.21dtv.com/songs/60065569.mkv +RISING STAR-dear jane,http://em.21dtv.com/songs/60060783.mkv +张嘉洵+高榕-多久,http://em.21dtv.com/songs/60016121.mkv +佚名-堆积,http://em.21dtv.com/songs/60015956.mkv +佚名-堆积(无原唱),http://em.21dtv.com/songs/60015955.mkv +谢霆锋-短剧,http://em.21dtv.com/songs/60015893.mkv +佚名-妒忌,http://em.21dtv.com/songs/60015880.mkv +李克勤-妒忌,http://em.21dtv.com/songs/60015879.mkv +黎瑞恩-妒忌,http://em.21dtv.com/songs/60015878.mkv +李克勤-妒嫉,http://em.21dtv.com/songs/60015877.mkv +林俊杰-冻结,http://em.21dtv.com/songs/60015671.mkv +动静乐团-动静,http://em.21dtv.com/songs/60015651.mkv +TWINS-丢架,http://em.21dtv.com/songs/60015474.mkv +TWINS-丢架(演唱会),http://em.21dtv.com/songs/60015473.mkv +AT17-丢架(演唱会),http://em.21dtv.com/songs/60015472.mkv +SOUL WORKS-定居(无原唱),http://em.21dtv.com/songs/60015457.mkv +邵智伟-定镜,http://em.21dtv.com/songs/60015456.mkv +刘美君-点解(演唱会),http://em.21dtv.com/songs/60015305.mkv +龙千玉-等君,http://em.21dtv.com/songs/60014947.mkv +孙国庆-代价,http://em.21dtv.com/songs/60014255.mkv +梁汉文-大将,http://em.21dtv.com/songs/60014037.mkv +张靓颖-dear jane,http://em.21dtv.com/songs/60001188.mkv +KE$HA-Die Young,http://em.21dtv.com/songs/60101018.mkv +SUNNY HILL-do it,http://em.21dtv.com/songs/60071587.mkv +NELLY FURTADO-do it,http://em.21dtv.com/songs/60001263.mkv +50 CENT-disco inferno,http://em.21dtv.com/songs/60001248.mkv +LENNY KRAVITZ-dig in,http://em.21dtv.com/songs/60001237.mkv +1983(龙飞龙泽)-灯火,http://em.21dtv.com/songs/60133161.mkv +杨树林+黄格选+男光音组合-大海,http://em.21dtv.com/songs/60135403.mkv +Jannabi-多好,http://em.21dtv.com/songs/60134706.mkv +门波-大海,http://em.21dtv.com/songs/60128489.mkv +潘长江-灯火,http://em.21dtv.com/songs/60125884.mkv +庄心妍-淡化,http://em.21dtv.com/songs/60118547.mkv +炎亚纶-独活,http://em.21dtv.com/songs/60117902.mkv +矫妮妮-敦煌,http://em.21dtv.com/songs/60113904.mkv +费翔-对话,http://em.21dtv.com/songs/60108897.mkv +万一-等候,http://em.21dtv.com/songs/60107458.mkv +龙飞龙泽-灯火,http://em.21dtv.com/songs/60103743.mkv +潘琠柏+杨丞琳-打呼,http://em.21dtv.com/songs/60101664.mkv +黄绮珊-大海,http://em.21dtv.com/songs/60100678.mkv +毛一涵-党魂,http://em.21dtv.com/songs/60100256.mkv +王二妮+斯琴格日乐-大海,http://em.21dtv.com/songs/60098629.mkv +洪卓立-独活,http://em.21dtv.com/songs/60096764.mkv +林惠敏+范玮琪-大海,http://em.21dtv.com/songs/60094953.mkv +徐小凤-大亨,http://em.21dtv.com/songs/60092712.mkv +张敬轩-滴汗,http://em.21dtv.com/songs/60082837.mkv +郝云-灯火,http://em.21dtv.com/songs/60081779.mkv +叶启田-电话,http://em.21dtv.com/songs/60076569.mkv +童丽-对花,http://em.21dtv.com/songs/60075253.mkv +朱峰-地火,http://em.21dtv.com/songs/60075171.mkv +杨宗纬-低回,http://em.21dtv.com/songs/60075167.mkv +KYLEE-大好きなのに,http://em.21dtv.com/songs/60075056.mkv +冷漠+云菲菲-对话,http://em.21dtv.com/songs/60071898.mkv +邵伟轩-代号,http://em.21dtv.com/songs/60070620.mkv +周鹏-大海(演唱会),http://em.21dtv.com/songs/60070614.mkv +王识贤-大汗,http://em.21dtv.com/songs/60068203.mkv +棉花糖-逗号,http://em.21dtv.com/songs/60066971.mkv +李佳薇-大火,http://em.21dtv.com/songs/60062592.mkv +钮大可-对话(无原唱),http://em.21dtv.com/songs/60016013.mkv +佚名-对花,http://em.21dtv.com/songs/60016012.mkv +李玲玲+张兴华-对花,http://em.21dtv.com/songs/60016011.mkv +徐小凤-电话,http://em.21dtv.com/songs/60015340.mkv +黄小琥-电话,http://em.21dtv.com/songs/60015339.mkv +陈冠希-电话,http://em.21dtv.com/songs/60015338.mkv +林忆莲-滴汗(演唱会),http://em.21dtv.com/songs/60015078.mkv +梁咏琪-滴汗(演唱会),http://em.21dtv.com/songs/60015077.mkv +苏来-大火(无原唱),http://em.21dtv.com/songs/60013989.mkv +佚名-大亨,http://em.21dtv.com/songs/60013969.mkv +钟镇涛-大海,http://em.21dtv.com/songs/60013949.mkv +张雨生-大海,http://em.21dtv.com/songs/60013948.mkv +杨培安-大海,http://em.21dtv.com/songs/60013947.mkv +陈伟联-大海,http://em.21dtv.com/songs/60013946.mkv +小沈阳-大海(演唱会),http://em.21dtv.com/songs/60013945.mkv +10CC-dreadlock holiday,http://em.21dtv.com/songs/60001408.mkv +佚名-diari hatimu,http://em.21dtv.com/songs/60001228.mkv +ANDY WILLIAMS-dear heart,http://em.21dtv.com/songs/60001187.mkv +CLIFF.RICHARD-daddys home,http://em.21dtv.com/songs/60001129.mkv +李文华-大哥,http://em.21dtv.com/songs/60132534.mkv +弦小杰+袁晓婕-定格,http://em.21dtv.com/songs/60129130.mkv +孟晓辉-打工,http://em.21dtv.com/songs/60119432.mkv +路飞老湿-当归,http://em.21dtv.com/songs/60118081.mkv +强歌-灯光,http://em.21dtv.com/songs/60117747.mkv +周蕙-当归,http://em.21dtv.com/songs/60115763.mkv +施文彬-都更,http://em.21dtv.com/songs/60107758.mkv +戏曲-打更,http://em.21dtv.com/songs/60092729.mkv +其他-灯光,http://em.21dtv.com/songs/60089650.mkv +弦小杰+袁晓婕-定格,http://em.21dtv.com/songs/60082847.mkv +张冬玲-大哥,http://em.21dtv.com/songs/60075054.mkv +EGOIST-departures ~あなたにおくるアイの歌~,http://em.21dtv.com/songs/60073113.mkv +GLEE CAST-defying gravity,http://em.21dtv.com/songs/60073112.mkv +阿清-大哥,http://em.21dtv.com/songs/60068201.mkv +TAY DIZM+AKON-dream girl,http://em.21dtv.com/songs/60063582.mkv +高林生-大哥,http://em.21dtv.com/songs/60062368.mkv +刘子千-冬港,http://em.21dtv.com/songs/60061157.mkv +高洪章-打歌(演唱会),http://em.21dtv.com/songs/60061122.mkv +张艾嘉-短歌,http://em.21dtv.com/songs/60015891.mkv +佚名-斗歌,http://em.21dtv.com/songs/60015733.mkv +谢霆锋-点歌,http://em.21dtv.com/songs/60015300.mkv +佚名-灯光,http://em.21dtv.com/songs/60014821.mkv +汤旭-岛歌,http://em.21dtv.com/songs/60014699.mkv +卢中强-当归,http://em.21dtv.com/songs/60014529.mkv +柯受良-大哥,http://em.21dtv.com/songs/60013932.mkv +韩红-大哥,http://em.21dtv.com/songs/60013931.mkv +卫兰-大哥(演唱会),http://em.21dtv.com/songs/60013930.mkv +陶喆-dear god(演唱会),http://em.21dtv.com/songs/60001186.mkv +金贵晟-等风,http://em.21dtv.com/songs/60106349.mkv +AOA-短发,http://em.21dtv.com/songs/60101726.mkv +丛伟-洞房,http://em.21dtv.com/songs/60101239.mkv +黄圣依-东风,http://em.21dtv.com/songs/60100672.mkv +范玮琪+胡维纳-短发,http://em.21dtv.com/songs/60095080.mkv +茅威涛-洞房(越剧),http://em.21dtv.com/songs/60088561.mkv +姚贝娜-Dear Friend,http://em.21dtv.com/songs/60081513.mkv +陈妍希-dear friend,http://em.21dtv.com/songs/60076205.mkv +星弟-颠覆,http://em.21dtv.com/songs/60075192.mkv +卓文萱-得分,http://em.21dtv.com/songs/60075136.mkv +罗大佑-东风(演唱会),http://em.21dtv.com/songs/60064141.mkv +谢容儿-double face(演唱会),http://em.21dtv.com/songs/60063579.mkv +ALLSTAR WEEKEND-dance forever,http://em.21dtv.com/songs/60060781.mkv +梁咏琪-短发,http://em.21dtv.com/songs/60015890.mkv +梁咏琪-短发(演唱会),http://em.21dtv.com/songs/60015889.mkv +白冰冰-冬风,http://em.21dtv.com/songs/60015570.mkv +胡琳-东风,http://em.21dtv.com/songs/60015530.mkv +锦绣二重唱-单飞,http://em.21dtv.com/songs/60014339.mkv +胡灵-单飞,http://em.21dtv.com/songs/60014338.mkv +方力申-大方,http://em.21dtv.com/songs/60013918.mkv +方力申-大方(演唱会),http://em.21dtv.com/songs/60013917.mkv +PERFUME-dream fighter,http://em.21dtv.com/songs/60001418.mkv +顺子-dear friend,http://em.21dtv.com/songs/60001185.mkv +薛凯琪-dear fiona,http://em.21dtv.com/songs/60001184.mkv +比莉-Dear John,http://em.21dtv.com/songs/60080748.mkv +赵雷-朵儿,http://em.21dtv.com/songs/60134271.mkv +郭富城-灯蛾,http://em.21dtv.com/songs/60093361.mkv +邹文正-肚饿,http://em.21dtv.com/songs/60063503.mkv +韩磊-等待,http://em.21dtv.com/songs/60128582.mkv +花与叔叔-颠倒,http://em.21dtv.com/songs/60135671.mkv +张靓颖-大胆,http://em.21dtv.com/songs/60135247.mkv +孙雪宁-懂得,http://em.21dtv.com/songs/60135106.mkv +刘子琪-等待,http://em.21dtv.com/songs/60132238.mkv +黄龄-等待,http://em.21dtv.com/songs/60130944.mkv +孙雪宁-懂得,http://em.21dtv.com/songs/60130248.mkv +黄龄-等待,http://em.21dtv.com/songs/60129858.mkv +任军太-淡定,http://em.21dtv.com/songs/60128766.mkv +王铁-等待,http://em.21dtv.com/songs/60127213.mkv +任军太-淡定,http://em.21dtv.com/songs/60126592.mkv +黄龄-等待,http://em.21dtv.com/songs/60123408.mkv +谭维维-等待,http://em.21dtv.com/songs/60122130.mkv +陈雷+甲子慧-等待,http://em.21dtv.com/songs/60120109.mkv +赵传-大地,http://em.21dtv.com/songs/60118932.mkv +蔡佳莹-等待,http://em.21dtv.com/songs/60114028.mkv +萌萌哒天团-帝都,http://em.21dtv.com/songs/60112914.mkv +梁心颐-滴答,http://em.21dtv.com/songs/60108636.mkv +周祥-等待,http://em.21dtv.com/songs/60107605.mkv +杨丞琳-颠倒,http://em.21dtv.com/songs/60106966.mkv +孔爽-等待,http://em.21dtv.com/songs/60106758.mkv +司空雷-等待,http://em.21dtv.com/songs/60104871.mkv +韩磊-担当,http://em.21dtv.com/songs/60104586.mkv +苏盈之-等等,http://em.21dtv.com/songs/60104379.mkv +蔡依林-倒带,http://em.21dtv.com/songs/60102710.mkv +张起通-等待,http://em.21dtv.com/songs/60100037.mkv +T.O.P-Doom Dada,http://em.21dtv.com/songs/60099045.mkv +张道儒-等待,http://em.21dtv.com/songs/60096808.mkv +许廷铿-登对,http://em.21dtv.com/songs/60096496.mkv +孟庭苇-弟弟,http://em.21dtv.com/songs/60095516.mkv +赵传-大地,http://em.21dtv.com/songs/60095347.mkv +黄乙玲-惦惦,http://em.21dtv.com/songs/60093753.mkv +王菲-等等,http://em.21dtv.com/songs/60089421.mkv +杨幂-嘀嗒,http://em.21dtv.com/songs/60088070.mkv +袁洁琼-等待,http://em.21dtv.com/songs/60085035.mkv +OLIVIA-等等,http://em.21dtv.com/songs/60082826.mkv +汪峰-等待,http://em.21dtv.com/songs/60082821.mkv +刘雨泽-到底,http://em.21dtv.com/songs/60082813.mkv +OLLY MURS-dear darlin,http://em.21dtv.com/songs/60082131.mkv +ALIN-懂得,http://em.21dtv.com/songs/60075220.mkv +南风-滴答,http://em.21dtv.com/songs/60075170.mkv +希亚-等待,http://em.21dtv.com/songs/60075147.mkv +刘若英-倒带(演唱会),http://em.21dtv.com/songs/60075127.mkv +MOUMOON-dreamer dreamer,http://em.21dtv.com/songs/60073153.mkv +USHER+ENRIQUE IGLESIAS+LIL WAY-dirty dancer,http://em.21dtv.com/songs/60073120.mkv +黄绮珊-等待(演唱会),http://em.21dtv.com/songs/60071872.mkv +黄绮珊-等待,http://em.21dtv.com/songs/60071871.mkv +翊馨-懂得,http://em.21dtv.com/songs/60070651.mkv +SUPPER MOMENT-点滴,http://em.21dtv.com/songs/60070639.mkv +詹雅雯-当店,http://em.21dtv.com/songs/60069335.mkv +侃侃-滴答,http://em.21dtv.com/songs/60066956.mkv +杨幂-滴答,http://em.21dtv.com/songs/60064130.mkv +杨光-等待(演唱会),http://em.21dtv.com/songs/60063247.mkv +宿雨涵-叮当,http://em.21dtv.com/songs/60062945.mkv +高林生-淡定,http://em.21dtv.com/songs/60062369.mkv +达达乐队-等待,http://em.21dtv.com/songs/60061148.mkv +张靓颖-大胆,http://em.21dtv.com/songs/60061126.mkv +张敬轩-断点,http://em.21dtv.com/songs/60015919.mkv +张敬轩-断点(演唱会),http://em.21dtv.com/songs/60015918.mkv +王晶-懂得,http://em.21dtv.com/songs/60015631.mkv +李蕙敏-懂得,http://em.21dtv.com/songs/60015630.mkv +陈洁仪-懂得,http://em.21dtv.com/songs/60015629.mkv +徐怀钰-叮咚,http://em.21dtv.com/songs/60015436.mkv +徐怀钰-叮咚(演唱会),http://em.21dtv.com/songs/60015435.mkv +佚名-叮当,http://em.21dtv.com/songs/60015432.mkv +郑秀文-叮当(演唱会),http://em.21dtv.com/songs/60015431.mkv +许志安-叮当(演唱会),http://em.21dtv.com/songs/60015430.mkv +古巨基-叮当(演唱会),http://em.21dtv.com/songs/60015429.mkv +曹方-滴答,http://em.21dtv.com/songs/60015073.mkv +张栋梁-低调,http://em.21dtv.com/songs/60015071.mkv +卢凯彤-等等,http://em.21dtv.com/songs/60014939.mkv +樱花姐妹-等待,http://em.21dtv.com/songs/60014894.mkv +姚贝娜-等待,http://em.21dtv.com/songs/60014893.mkv +谢亮子-等待,http://em.21dtv.com/songs/60014892.mkv +屠洪纲-等待,http://em.21dtv.com/songs/60014891.mkv +甜蜜旅行-等待,http://em.21dtv.com/songs/60014890.mkv +石梅-等待,http://em.21dtv.com/songs/60014889.mkv +彭坦-等待,http://em.21dtv.com/songs/60014888.mkv +那英-等待,http://em.21dtv.com/songs/60014887.mkv +林心如+王雨-等待,http://em.21dtv.com/songs/60014886.mkv +林佳仪+庄立帆-等待,http://em.21dtv.com/songs/60014885.mkv +韩磊-等待,http://em.21dtv.com/songs/60014884.mkv +陈奕-等待,http://em.21dtv.com/songs/60014883.mkv +陈瑞-等待,http://em.21dtv.com/songs/60014882.mkv +陈绮贞-等待,http://em.21dtv.com/songs/60014881.mkv +曹芙嘉-等待,http://em.21dtv.com/songs/60014880.mkv +胡美仪-等待(演唱会),http://em.21dtv.com/songs/60014879.mkv +尧尧-等待(无原唱),http://em.21dtv.com/songs/60014878.mkv +严正杰-等待(无原唱),http://em.21dtv.com/songs/60014877.mkv +萧敬腾-倒带,http://em.21dtv.com/songs/60014706.mkv +周杰伦-倒带(演唱会),http://em.21dtv.com/songs/60014705.mkv +蔡依林-倒带(演唱会),http://em.21dtv.com/songs/60014704.mkv +俊翼-捣蛋,http://em.21dtv.com/songs/60014701.mkv +澎恰恰-呆呆(无原唱),http://em.21dtv.com/songs/60014241.mkv +佚名-大地,http://em.21dtv.com/songs/60013891.mkv +新宝岛康乐队-大地,http://em.21dtv.com/songs/60013890.mkv +李娜-大地,http://em.21dtv.com/songs/60013889.mkv +黄名伟-大地,http://em.21dtv.com/songs/60013888.mkv +BEYOND-大地,http://em.21dtv.com/songs/60013887.mkv +张明敏-大地(演唱会),http://em.21dtv.com/songs/60013885.mkv +李克勤+黄贯中-大地(演唱会),http://em.21dtv.com/songs/60013884.mkv +黄沾-大地(演唱会),http://em.21dtv.com/songs/60013883.mkv +佚名-dum dum(无原唱),http://em.21dtv.com/songs/60001455.mkv +SUPER JUNIOR-dont don,http://em.21dtv.com/songs/60001318.mkv +佚名-donna donna,http://em.21dtv.com/songs/60001297.mkv +JOAN BAEZ-donna donna,http://em.21dtv.com/songs/60001296.mkv +TWINS-donkey donkey,http://em.21dtv.com/songs/60001294.mkv +B2-disco dancing,http://em.21dtv.com/songs/60001247.mkv +MICHAEL JACKSON-dirty diana,http://em.21dtv.com/songs/60001243.mkv +佚名-different drum,http://em.21dtv.com/songs/60001235.mkv +王菲-di dar,http://em.21dtv.com/songs/60001222.mkv +王菲-di dar(演唱会),http://em.21dtv.com/songs/60001221.mkv +佚名-dem dong,http://em.21dtv.com/songs/60001209.mkv +MADONNA-deeper & deeper,http://em.21dtv.com/songs/60001203.mkv +李克勤-单车,http://em.21dtv.com/songs/60118660.mkv +遥远-断层,http://em.21dtv.com/songs/60112289.mkv +王思远-单程,http://em.21dtv.com/songs/60111269.mkv +AFTER10-低沉,http://em.21dtv.com/songs/60109795.mkv +肖淑萍-大船,http://em.21dtv.com/songs/60089449.mkv +薛凯琪-倒刺,http://em.21dtv.com/songs/60075126.mkv +胡夏-当初,http://em.21dtv.com/songs/60075110.mkv +MIRANDA COSGROVE-dancing crazy,http://em.21dtv.com/songs/60073100.mkv +洪卓立-单车(演唱会),http://em.21dtv.com/songs/60071863.mkv +李志洲-大厨,http://em.21dtv.com/songs/60069320.mkv +泳儿-冬城,http://em.21dtv.com/songs/60068227.mkv +BONEY M-daddy cool,http://em.21dtv.com/songs/60066519.mkv +孟杨-对错,http://em.21dtv.com/songs/60065949.mkv +张晓潇-独唱,http://em.21dtv.com/songs/60015778.mkv +阿爆+BRANDY-独唱,http://em.21dtv.com/songs/60015777.mkv +萧希榆-倒刺,http://em.21dtv.com/songs/60014703.mkv +李钧天-弹错,http://em.21dtv.com/songs/60014467.mkv +张惠妹-单纯(演唱会),http://em.21dtv.com/songs/60014333.mkv +泳儿-单纯(演唱会),http://em.21dtv.com/songs/60014332.mkv +SOUL WORKS-单纯(无原唱),http://em.21dtv.com/songs/60014331.mkv +李正帆-单车,http://em.21dtv.com/songs/60014321.mkv +陈奕迅-单车,http://em.21dtv.com/songs/60014320.mkv +陈奕迅-单车(演唱会),http://em.21dtv.com/songs/60014319.mkv +毛阿敏-大船,http://em.21dtv.com/songs/60013870.mkv +凌琳-dream city(无原唱),http://em.21dtv.com/songs/60001417.mkv +办桌二人组-dont cry,http://em.21dtv.com/songs/60001317.mkv +MINI+顾儿-dont cry,http://em.21dtv.com/songs/60001316.mkv +GUNS N' ROSES-dont cry,http://em.21dtv.com/songs/60001315.mkv +BIGBANG-dirty cash,http://em.21dtv.com/songs/60001242.mkv +佚名-detroit city,http://em.21dtv.com/songs/60001215.mkv +雷佳琪-蝶变,http://em.21dtv.com/songs/60131973.mkv +王秀琪-等伴,http://em.21dtv.com/songs/60124279.mkv +卢焕刚-独步,http://em.21dtv.com/songs/60126669.mkv +陈数-独白,http://em.21dtv.com/songs/60112350.mkv +单色凌-蝶变,http://em.21dtv.com/songs/60102006.mkv +许志安-夺镖,http://em.21dtv.com/songs/60093154.mkv +群星-夺镖,http://em.21dtv.com/songs/60093039.mkv +原始林合唱团-躲避,http://em.21dtv.com/songs/60089197.mkv +谭维维-蝶步,http://em.21dtv.com/songs/60088680.mkv +李菓-dance baby,http://em.21dtv.com/songs/60086336.mkv +李翊君-独白,http://em.21dtv.com/songs/60082855.mkv +MIC男团-对白,http://em.21dtv.com/songs/60075249.mkv +姜木-大宝,http://em.21dtv.com/songs/60075037.mkv +白健恩+陈卓宏-dont bother,http://em.21dtv.com/songs/60073133.mkv +FAR EAST MOVEMENT-dirty bass,http://em.21dtv.com/songs/60067871.mkv +方瑞娥-等伴,http://em.21dtv.com/songs/60066952.mkv +TEAIN-drive by,http://em.21dtv.com/songs/60066638.mkv +THE GAME-dope boys,http://em.21dtv.com/songs/60060791.mkv +甄妮-夺标,http://em.21dtv.com/songs/60016245.mkv +佚名-独白(无原唱),http://em.21dtv.com/songs/60015775.mkv +金子嫣-独白(无原唱),http://em.21dtv.com/songs/60015774.mkv +佘诗曼-蝶变,http://em.21dtv.com/songs/60015397.mkv +佚名-道别,http://em.21dtv.com/songs/60014772.mkv +橘 庆太-道标,http://em.21dtv.com/songs/60014771.mkv +RIO刀-大兵,http://em.21dtv.com/songs/60013853.mkv +N-dubz-best behaviour,http://em.21dtv.com/songs/60001453.mkv +ALESHA DIXON-drummer boy,http://em.21dtv.com/songs/60001451.mkv +W.BECKER+D.FAGEN-deacon blues(无原唱),http://em.21dtv.com/songs/60001183.mkv +佚名-daydream believer,http://em.21dtv.com/songs/60001175.mkv +佚名-danny boy,http://em.21dtv.com/songs/60001158.mkv +梅艳芳-dancing boy(演唱会),http://em.21dtv.com/songs/60001143.mkv +陈慧娴-dancing boy(演唱会),http://em.21dtv.com/songs/60001142.mkv +DEV-Dancing Shoes,http://em.21dtv.com/songs/60100715.mkv +林慧省-等爱,http://em.21dtv.com/songs/60135431.mkv +汪佳佳-懂爱,http://em.21dtv.com/songs/60130530.mkv +志鹏-等爱,http://em.21dtv.com/songs/60126922.mkv +朱紫娆-大爱,http://em.21dtv.com/songs/60124049.mkv +唐文娟-等爱,http://em.21dtv.com/songs/60108402.mkv +丁晓红-大爱,http://em.21dtv.com/songs/60106565.mkv +钟嘉欣-大爱,http://em.21dtv.com/songs/60106351.mkv +文杰-读爱,http://em.21dtv.com/songs/60100072.mkv +王欢-等爱(演),http://em.21dtv.com/songs/60099408.mkv +伍佰-答桉,http://em.21dtv.com/songs/60096809.mkv +杨坤+郭采洁-答案,http://em.21dtv.com/songs/60096349.mkv +安又琪-大爱,http://em.21dtv.com/songs/60095193.mkv +金海心-对岸,http://em.21dtv.com/songs/60088802.mkv +颜小健-读爱,http://em.21dtv.com/songs/60085061.mkv +李丽蕊-堤岸(演唱会),http://em.21dtv.com/songs/60075169.mkv +杨洋-等爱,http://em.21dtv.com/songs/60075144.mkv +侯强-大爱,http://em.21dtv.com/songs/60075035.mkv +阿妮-答案,http://em.21dtv.com/songs/60075024.mkv +李旸+宫下匠规-大爱,http://em.21dtv.com/songs/60066940.mkv +JENNIFER LOPEZ+PITBU-dance again,http://em.21dtv.com/songs/60066570.mkv +刘欢-大爱,http://em.21dtv.com/songs/60064092.mkv +BIG SEAN-dance ass,http://em.21dtv.com/songs/60063570.mkv +孙耀威-多爱,http://em.21dtv.com/songs/60016096.mkv +张柏芝-赌爱,http://em.21dtv.com/songs/60015851.mkv +李克勤+张柏芝-赌爱,http://em.21dtv.com/songs/60015850.mkv +张柏芝+李克勤-赌爱(演唱会),http://em.21dtv.com/songs/60015849.mkv +王菲-读爱,http://em.21dtv.com/songs/60015831.mkv +谭咏麟-读爱,http://em.21dtv.com/songs/60015830.mkv +爱戴-斗爱,http://em.21dtv.com/songs/60015731.mkv +网络歌曲-叠爱,http://em.21dtv.com/songs/60015394.mkv +李琳-叠爱,http://em.21dtv.com/songs/60015393.mkv +夹子道-等爱,http://em.21dtv.com/songs/60014849.mkv +ZIP发射乐团-等爱,http://em.21dtv.com/songs/60014848.mkv +郭彤-等爱,http://em.21dtv.com/songs/60014847.mkv +陈秀雯-等爱(演唱会),http://em.21dtv.com/songs/60014846.mkv +蔡淳佳-倒爱,http://em.21dtv.com/songs/60014702.mkv +许志安-大爱,http://em.21dtv.com/songs/60013836.mkv +拉毛王旭-大爱,http://em.21dtv.com/songs/60013835.mkv +万芳-答案,http://em.21dtv.com/songs/60013726.mkv +万芳+蔡琴-答案,http://em.21dtv.com/songs/60013725.mkv +唐素琪-答案,http://em.21dtv.com/songs/60013724.mkv +誓言-答案,http://em.21dtv.com/songs/60013723.mkv +沙宝亮-答案,http://em.21dtv.com/songs/60013722.mkv +容祖儿-答案,http://em.21dtv.com/songs/60013721.mkv +齐豫-答案,http://em.21dtv.com/songs/60013720.mkv +李玟-答案,http://em.21dtv.com/songs/60013719.mkv +CHYNA-答案(无原唱),http://em.21dtv.com/songs/60013718.mkv +佚名-drift away,http://em.21dtv.com/songs/60001439.mkv +MICHAEL BOLTON-drift away,http://em.21dtv.com/songs/60001438.mkv +DOBIE GRAY-drift away,http://em.21dtv.com/songs/60001437.mkv +BABYFACE+LISA STANSFIELD-dream away,http://em.21dtv.com/songs/60001415.mkv +侧田-dream away(演唱会),http://em.21dtv.com/songs/60001414.mkv +佚名-dream away(无原唱),http://em.21dtv.com/songs/60001413.mkv +[Group] +groupName=十六万歌曲MV等 - 05 +四分卫-disco alien(演唱会),http://em.21dtv.com/songs/60001246.mkv +范逸臣-devil angel,http://em.21dtv.com/songs/60001216.mkv +崔健-出走,http://em.21dtv.com/songs/60133616.mkv +吕志强-村庄,http://em.21dtv.com/songs/60133463.mkv +丁于-串珠,http://em.21dtv.com/songs/60133317.mkv +朱海君-趁早,http://em.21dtv.com/songs/60132518.mkv +Jason Chen-趁早,http://em.21dtv.com/songs/60132087.mkv +钟明秋-车站,http://em.21dtv.com/songs/60126324.mkv +梁帅-村庄,http://em.21dtv.com/songs/60124163.mkv +光良-出走,http://em.21dtv.com/songs/60120337.mkv +孙露-车站,http://em.21dtv.com/songs/60115852.mkv +孙露-趁早,http://em.21dtv.com/songs/60115851.mkv +金京浩-存在,http://em.21dtv.com/songs/60114838.mkv +赵鑫-初衷,http://em.21dtv.com/songs/60114810.mkv +朱强+张磊-车站,http://em.21dtv.com/songs/60114586.mkv +贝贝-存在,http://em.21dtv.com/songs/60114083.mkv +周虹+江智民-车站,http://em.21dtv.com/songs/60113348.mkv +陈素如-酬志,http://em.21dtv.com/songs/60110649.mkv +李健-车站,http://em.21dtv.com/songs/60110264.mkv +吴雨霏-迟早,http://em.21dtv.com/songs/60110081.mkv +朱梓溶-沉醉,http://em.21dtv.com/songs/60103344.mkv +周笔畅-趁早,http://em.21dtv.com/songs/60098200.mkv +邓紫棋-存在,http://em.21dtv.com/songs/60096507.mkv +彭恰恰+陈美凤-船只,http://em.21dtv.com/songs/60095527.mkv +许诺+包文熙-趁早,http://em.21dtv.com/songs/60095089.mkv +孙楠-存在,http://em.21dtv.com/songs/60094054.mkv +金波-出征,http://em.21dtv.com/songs/60088801.mkv +卓依婷-车站,http://em.21dtv.com/songs/60086488.mkv +杨宗纬-出走,http://em.21dtv.com/songs/60082735.mkv +邓紫棋-存在第二期),http://em.21dtv.com/songs/60081648.mkv +单冲峰-存在,http://em.21dtv.com/songs/60081466.mkv +李琦-趁早,http://em.21dtv.com/songs/60081465.mkv +刘明辉-存在,http://em.21dtv.com/songs/60081352.mkv +邓子霆-出走,http://em.21dtv.com/songs/60080121.mkv +吴雨霏-迟早,http://em.21dtv.com/songs/60074954.mkv +小肥-撑住,http://em.21dtv.com/songs/60074931.mkv +孙露-车站,http://em.21dtv.com/songs/60074921.mkv +泳儿-出走(演唱会),http://em.21dtv.com/songs/60064067.mkv +TWINS-成长(演唱会),http://em.21dtv.com/songs/60064054.mkv +汪峰-存在,http://em.21dtv.com/songs/60063008.mkv +TWINS-成长,http://em.21dtv.com/songs/60062172.mkv +许廷铿-出走,http://em.21dtv.com/songs/60061107.mkv +佚名-长征,http://em.21dtv.com/songs/60057625.mkv +强辩乐团-存在,http://em.21dtv.com/songs/60013622.mkv +林育韦-存在,http://em.21dtv.com/songs/60013621.mkv +林忆莲-存在,http://em.21dtv.com/songs/60013620.mkv +高进-存在,http://em.21dtv.com/songs/60013619.mkv +曾宝仪-存在,http://em.21dtv.com/songs/60013618.mkv +5566-存在,http://em.21dtv.com/songs/60013617.mkv +周传雄-存在(演唱会),http://em.21dtv.com/songs/60013616.mkv +林忆莲-存在(演唱会),http://em.21dtv.com/songs/60013615.mkv +董事长乐团-刺字,http://em.21dtv.com/songs/60013471.mkv +五月天-纯真,http://em.21dtv.com/songs/60013405.mkv +李丽珍-纯真,http://em.21dtv.com/songs/60013404.mkv +许巍-纯真(演唱会),http://em.21dtv.com/songs/60013403.mkv +梁静茹-纯真(演唱会),http://em.21dtv.com/songs/60013402.mkv +江涛-创造,http://em.21dtv.com/songs/60013205.mkv +澎恰恰+陈美凤-船只,http://em.21dtv.com/songs/60013165.mkv +王滨-船长,http://em.21dtv.com/songs/60013163.mkv +郭峰-出走,http://em.21dtv.com/songs/60012982.mkv +夏韶声-出走(演唱会),http://em.21dtv.com/songs/60012981.mkv +徐嘉良-出走(无原唱),http://em.21dtv.com/songs/60012980.mkv +黄品冠-出站,http://em.21dtv.com/songs/60012978.mkv +佚名-赤子,http://em.21dtv.com/songs/60012825.mkv +黄耀明-赤子(演唱会),http://em.21dtv.com/songs/60012824.mkv +古巨基-赤子(演唱会),http://em.21dtv.com/songs/60012823.mkv +黄淑惠-迟早,http://em.21dtv.com/songs/60012792.mkv +李亚明-成长,http://em.21dtv.com/songs/60012578.mkv +张宇-趁早,http://em.21dtv.com/songs/60012538.mkv +张惠妹-趁早,http://em.21dtv.com/songs/60012537.mkv +张秀卿-车站,http://em.21dtv.com/songs/60012470.mkv +佚名-车站,http://em.21dtv.com/songs/60012469.mkv +小凤凤-车站,http://em.21dtv.com/songs/60012468.mkv +苏芮-车站,http://em.21dtv.com/songs/60012467.mkv +黄乙玲-车站,http://em.21dtv.com/songs/60012466.mkv +曹磊-车站,http://em.21dtv.com/songs/60012465.mkv +夏韶声+苏芮-车站(演唱会),http://em.21dtv.com/songs/60012464.mkv +吴陌川-长夜,http://em.21dtv.com/songs/60135044.mkv +长宇Shuhei-藏雨,http://em.21dtv.com/songs/60129699.mkv +王馨瑶-茶谣,http://em.21dtv.com/songs/60120788.mkv +孙露-尘缘,http://em.21dtv.com/songs/60115819.mkv +枫舞-尘缘,http://em.21dtv.com/songs/60113725.mkv +李健-尘缘,http://em.21dtv.com/songs/60109420.mkv +蔡依林-唇语,http://em.21dtv.com/songs/60108878.mkv +蔡依林-唇语,http://em.21dtv.com/songs/60107983.mkv +张可儿-穿越,http://em.21dtv.com/songs/60104114.mkv +陈幸子-茶园,http://em.21dtv.com/songs/60103683.mkv +费玉清-尘缘,http://em.21dtv.com/songs/60103579.mkv +云菲菲-春雨,http://em.21dtv.com/songs/60098083.mkv +正月十五-穿越,http://em.21dtv.com/songs/60096770.mkv +汪峰-春芽,http://em.21dtv.com/songs/60096752.mkv +汪明荃-朝阳,http://em.21dtv.com/songs/60092957.mkv +李池湘-春游,http://em.21dtv.com/songs/60091321.mkv +轻音乐-侧影,http://em.21dtv.com/songs/60090235.mkv +白智英-春雨,http://em.21dtv.com/songs/60082751.mkv +吴若希-炊烟,http://em.21dtv.com/songs/60082743.mkv +陈珊妮-抽烟(演唱会),http://em.21dtv.com/songs/60082729.mkv +UNION J-carry you,http://em.21dtv.com/songs/60082119.mkv +李祥祥-撑腰,http://em.21dtv.com/songs/60081068.mkv +雨禾-藏鹰,http://em.21dtv.com/songs/60080344.mkv +陈珊妮-抽烟,http://em.21dtv.com/songs/60080098.mkv +孙露-尘缘,http://em.21dtv.com/songs/60074923.mkv +黑鸭子-春雨,http://em.21dtv.com/songs/60070606.mkv +董贞-重阳,http://em.21dtv.com/songs/60069019.mkv +韩红-慈愿,http://em.21dtv.com/songs/60064080.mkv +马志锋-穿越(演唱会),http://em.21dtv.com/songs/60064071.mkv +孙楠+那英-刺缘,http://em.21dtv.com/songs/60061116.mkv +薛凯琪-唇印,http://em.21dtv.com/songs/60013416.mkv +邝美云-唇印,http://em.21dtv.com/songs/60013415.mkv +佚名-春雨,http://em.21dtv.com/songs/60013368.mkv +杨家成-春雨,http://em.21dtv.com/songs/60013367.mkv +张宇飞-传言(演唱会),http://em.21dtv.com/songs/60013136.mkv +董铭轩-穿越,http://em.21dtv.com/songs/60013107.mkv +陈雷-出运,http://em.21dtv.com/songs/60012977.mkv +袁耀发-抽烟,http://em.21dtv.com/songs/60012886.mkv +罗志祥-撑腰,http://em.21dtv.com/songs/60012542.mkv +洪卓立-陈友,http://em.21dtv.com/songs/60012526.mkv +张红坚-尘缘,http://em.21dtv.com/songs/60012497.mkv +殷正洋-尘缘,http://em.21dtv.com/songs/60012496.mkv +罗文-尘缘,http://em.21dtv.com/songs/60012495.mkv +陈思成-尘缘,http://em.21dtv.com/songs/60012494.mkv +罗文-尘缘(演唱会),http://em.21dtv.com/songs/60012493.mkv +周传雄-尘烟(无原唱),http://em.21dtv.com/songs/60012492.mkv +阿信-超越,http://em.21dtv.com/songs/60012412.mkv +谭咏麟+MR.-超越,http://em.21dtv.com/songs/60012411.mkv +孙楠+韦唯-超越,http://em.21dtv.com/songs/60012410.mkv +零点乐队-超越(演唱会),http://em.21dtv.com/songs/60012409.mkv +佚名-草原,http://em.21dtv.com/songs/60012069.mkv +童安格-草原,http://em.21dtv.com/songs/60012067.mkv +佚名-草雨,http://em.21dtv.com/songs/60012066.mkv +腾格尔-苍鹰,http://em.21dtv.com/songs/60012030.mkv +毅光年组合-初心,http://em.21dtv.com/songs/60135471.mkv +蔡丽津-痴心,http://em.21dtv.com/songs/60134194.mkv +TY-从小,http://em.21dtv.com/songs/60133304.mkv +冯博-初心,http://em.21dtv.com/songs/60132227.mkv +华晨宇-穿心,http://em.21dtv.com/songs/60128850.mkv +郑国锋-初心,http://em.21dtv.com/songs/60127456.mkv +郑志立+郑湫泓-茶香,http://em.21dtv.com/songs/60126277.mkv +罗嘉豪+祖丝+AJ-冲线,http://em.21dtv.com/songs/60124344.mkv +梁硕-沉香,http://em.21dtv.com/songs/60124164.mkv +央金兰泽-藏香,http://em.21dtv.com/songs/60123809.mkv +齐浠儿-潮汐,http://em.21dtv.com/songs/60120172.mkv +李晓玉-残雪,http://em.21dtv.com/songs/60117815.mkv +蒋蒋-残雪,http://em.21dtv.com/songs/60114023.mkv +杨子军-沉香,http://em.21dtv.com/songs/60112787.mkv +EXO M-初雪,http://em.21dtv.com/songs/60112434.mkv +刘瑞琦-初夏,http://em.21dtv.com/songs/60111721.mkv +黄家强-沉香,http://em.21dtv.com/songs/60111550.mkv +邝鉴萍-唱响,http://em.21dtv.com/songs/60109649.mkv +拉毛王旭-彩霞,http://em.21dtv.com/songs/60109389.mkv +何晟铭-藏心,http://em.21dtv.com/songs/60096189.mkv +胡琳-趁墟,http://em.21dtv.com/songs/60093062.mkv +三木科-藏香,http://em.21dtv.com/songs/60090470.mkv +卡拉OK-朝霞,http://em.21dtv.com/songs/60089190.mkv +黑豹乐队-潮汐,http://em.21dtv.com/songs/60084979.mkv +网络歌手-初雪,http://em.21dtv.com/songs/60082732.mkv +黑豹乐队-潮汐(演唱会),http://em.21dtv.com/songs/60082714.mkv +伍华+可歆-猜心,http://em.21dtv.com/songs/60082684.mkv +沙宝亮-沉香,http://em.21dtv.com/songs/60081382.mkv +张芸京-喘息,http://em.21dtv.com/songs/60074985.mkv +迪克牛仔-嘲笑,http://em.21dtv.com/songs/60074918.mkv +刘宁-茶香,http://em.21dtv.com/songs/60071823.mkv +降央卓玛-穿行,http://em.21dtv.com/songs/60068186.mkv +胥拉齐-茶乡,http://em.21dtv.com/songs/60068165.mkv +青稞荞麦-嘲笑,http://em.21dtv.com/songs/60066910.mkv +五月天-仓颉,http://em.21dtv.com/songs/60065881.mkv +容祖儿-垂涎(演唱会),http://em.21dtv.com/songs/60064074.mkv +张宇-猜心(演唱会),http://em.21dtv.com/songs/60064027.mkv +巫启贤-存心,http://em.21dtv.com/songs/60013613.mkv +B.A.D-粗心,http://em.21dtv.com/songs/60013597.mkv +常艾菲-刺心,http://em.21dtv.com/songs/60013470.mkv +张智成-刺心(演唱会),http://em.21dtv.com/songs/60013469.mkv +袁耀发+陈晓淇-次序,http://em.21dtv.com/songs/60013454.mkv +孟庭苇-春雪,http://em.21dtv.com/songs/60013364.mkv +童唱-春晓,http://em.21dtv.com/songs/60013363.mkv +李池湘-春宵,http://em.21dtv.com/songs/60013362.mkv +佚名-穿鞋(无原唱),http://em.21dtv.com/songs/60013106.mkv +韩红-穿行,http://em.21dtv.com/songs/60013100.mkv +陈晓娟-痴心,http://em.21dtv.com/songs/60012747.mkv +古巨基-晨曦,http://em.21dtv.com/songs/60012531.mkv +晨熙-晨夕,http://em.21dtv.com/songs/60012530.mkv +吴梵-潮汐,http://em.21dtv.com/songs/60012452.mkv +张心杰-嘲笑,http://em.21dtv.com/songs/60012438.mkv +蔡琴-常喜,http://em.21dtv.com/songs/60012279.mkv +苏打绿-蝉想(演唱会),http://em.21dtv.com/songs/60012269.mkv +张镐哲-残像,http://em.21dtv.com/songs/60012010.mkv +林心如-采心,http://em.21dtv.com/songs/60011919.mkv +万芳-猜心,http://em.21dtv.com/songs/60011881.mkv +李宇春-猜心,http://em.21dtv.com/songs/60011880.mkv +陈柏圻-猜心,http://em.21dtv.com/songs/60011879.mkv +阿鲁阿卓+田野-猜心,http://em.21dtv.com/songs/60011878.mkv +黄小琥-猜心(演唱会),http://em.21dtv.com/songs/60011877.mkv +蔡依林-猜想,http://em.21dtv.com/songs/60011876.mkv +汤梦迪-刺猬,http://em.21dtv.com/songs/60124189.mkv +阚立文-刺猬,http://em.21dtv.com/songs/60120054.mkv +林昕阳-刺猬,http://em.21dtv.com/songs/60112025.mkv +马林-窗外,http://em.21dtv.com/songs/60106463.mkv +刘子毅-错位,http://em.21dtv.com/songs/60105635.mkv +龙羿乐队-尘雾,http://em.21dtv.com/songs/60094365.mkv +甲子慧-窗外,http://em.21dtv.com/songs/60093755.mkv +孙紫晴-传闻,http://em.21dtv.com/songs/60081986.mkv +李昊嘉-刺谓,http://em.21dtv.com/songs/60075010.mkv +ZAC BROWN BAND-colder weather,http://em.21dtv.com/songs/60073064.mkv +酒吧伤心人-错误,http://em.21dtv.com/songs/60066935.mkv +佚名-错误,http://em.21dtv.com/songs/60013694.mkv +汪峰-错误,http://em.21dtv.com/songs/60013693.mkv +顾建华-错误,http://em.21dtv.com/songs/60013692.mkv +高向鹏+方怡萍-错误,http://em.21dtv.com/songs/60013691.mkv +白雪-错位,http://em.21dtv.com/songs/60013690.mkv +温岚-刺猬,http://em.21dtv.com/songs/60013466.mkv +马梓涵-刺猬,http://em.21dtv.com/songs/60013465.mkv +群星-春望(演唱会),http://em.21dtv.com/songs/60013355.mkv +卓依婷-窗外,http://em.21dtv.com/songs/60013186.mkv +周迅-窗外,http://em.21dtv.com/songs/60013185.mkv +吴宗宪+JOANNA-窗外,http://em.21dtv.com/songs/60013184.mkv +王识贤-窗外,http://em.21dtv.com/songs/60013183.mkv +李琛-窗外,http://em.21dtv.com/songs/60013182.mkv +窦唯-窗外,http://em.21dtv.com/songs/60013181.mkv +戴佩妮-窗外,http://em.21dtv.com/songs/60013180.mkv +杨林-窗外(无原唱),http://em.21dtv.com/songs/60013179.mkv +吕方-传闻,http://em.21dtv.com/songs/60013135.mkv +吕方-传闻(演唱会),http://em.21dtv.com/songs/60013134.mkv +胡歌-传闻(演唱会),http://em.21dtv.com/songs/60013133.mkv +佚名-初吻,http://em.21dtv.com/songs/60013031.mkv +小瑞-初吻,http://em.21dtv.com/songs/60013030.mkv +李琛-初吻,http://em.21dtv.com/songs/60013029.mkv +2MORO-初吻,http://em.21dtv.com/songs/60013028.mkv +张学友-初吻(演唱会),http://em.21dtv.com/songs/60013027.mkv +张卫健-出位(演唱会),http://em.21dtv.com/songs/60012975.mkv +郑秀文-宠物,http://em.21dtv.com/songs/60012880.mkv +郑秀文-宠物(演唱会),http://em.21dtv.com/songs/60012879.mkv +蔡旻佑-城外,http://em.21dtv.com/songs/60012636.mkv +SOLER-晨雾(演唱会),http://em.21dtv.com/songs/60012529.mkv +佚名-careless whisper,http://em.21dtv.com/songs/60000857.mkv +GEORGE MICHAEL-careless whisper,http://em.21dtv.com/songs/60000856.mkv +张崇基+张崇德-careless whisper(演唱会),http://em.21dtv.com/songs/60000855.mkv +P.MCCARTNEY-coming up(无原唱),http://em.21dtv.com/songs/60001014.mkv +ROBBIE WILLIAMS-come undone,http://em.21dtv.com/songs/60001008.mkv +USHER-caught up,http://em.21dtv.com/songs/60000876.mkv +肖家永-穿透,http://em.21dtv.com/songs/60134137.mkv +李雪莱-蹭梯,http://em.21dtv.com/songs/60127068.mkv +邹宗翰-穿透,http://em.21dtv.com/songs/60124556.mkv +山子华-春天,http://em.21dtv.com/songs/60121609.mkv +苏修仪-撤退,http://em.21dtv.com/songs/60117154.mkv +王卓-春天,http://em.21dtv.com/songs/60117027.mkv +宋沛江-刺痛,http://em.21dtv.com/songs/60115102.mkv +谢有才-茶叹,http://em.21dtv.com/songs/60111401.mkv +唐宁-抽屉,http://em.21dtv.com/songs/60106726.mkv +汪峰-窗台,http://em.21dtv.com/songs/60102465.mkv +佚名-超脱,http://em.21dtv.com/songs/60074913.mkv +SOULJA BOY-crank that,http://em.21dtv.com/songs/60073081.mkv +褚乔-come together,http://em.21dtv.com/songs/60070318.mkv +郁可唯-茶汤,http://em.21dtv.com/songs/60064044.mkv +季欣霈-尘土,http://em.21dtv.com/songs/60061100.mkv +童安格-蹉跎,http://em.21dtv.com/songs/60013625.mkv +黄玉荣+祝钒刚+明道-从头,http://em.21dtv.com/songs/60013572.mkv +周迅-春天,http://em.21dtv.com/songs/60013319.mkv +谢雷-春天,http://em.21dtv.com/songs/60013318.mkv +姜昕-春天,http://em.21dtv.com/songs/60013317.mkv +古巨基-春天,http://em.21dtv.com/songs/60013316.mkv +张敬轩-春天(演唱会),http://em.21dtv.com/songs/60013315.mkv +汪峰-尘土(演唱会),http://em.21dtv.com/songs/60012491.mkv +邰正宵-茶汤,http://em.21dtv.com/songs/60012216.mkv +李玖哲-苍天,http://em.21dtv.com/songs/60012025.mkv +李克勤-菜汤,http://em.21dtv.com/songs/60011983.mkv +THE BEATLES-come together,http://em.21dtv.com/songs/60001007.mkv +侧田-come together(演唱会),http://em.21dtv.com/songs/60001006.mkv +GEORGE MICHAEL+A.RID-club tropicana,http://em.21dtv.com/songs/60000962.mkv +SEMISONIC-closing time,http://em.21dtv.com/songs/60000960.mkv +ZAYIN-cherry times(演唱会),http://em.21dtv.com/songs/60000914.mkv +郑元畅-彩色party,http://em.21dtv.com/songs/60088759.mkv +谢小熊-创伤,http://em.21dtv.com/songs/60135745.mkv +岩宰仑-传说,http://em.21dtv.com/songs/60124796.mkv +周艾杰-春思,http://em.21dtv.com/songs/60122606.mkv +开心快乐组合-传说,http://em.21dtv.com/songs/60121643.mkv +轲然-茶伤,http://em.21dtv.com/songs/60120985.mkv +张启辉-出手,http://em.21dtv.com/songs/60119507.mkv +徐子洺-苍生,http://em.21dtv.com/songs/60117757.mkv +韩磊-苍生,http://em.21dtv.com/songs/60114251.mkv +郑秀文-朝圣,http://em.21dtv.com/songs/60112308.mkv +赵勇-传说,http://em.21dtv.com/songs/60107235.mkv +陈瑞+冷漠-抽身,http://em.21dtv.com/songs/60106421.mkv +腾格尔+阿鲁阿卓-传说,http://em.21dtv.com/songs/60106216.mkv +蔡健雅-唱衰,http://em.21dtv.com/songs/60100450.mkv +李行亮-沉沙,http://em.21dtv.com/songs/60100166.mkv +刘伟德-刺伤,http://em.21dtv.com/songs/60099793.mkv +刘牧-春水,http://em.21dtv.com/songs/60096201.mkv +郑秀文-朝圣,http://em.21dtv.com/songs/60094313.mkv +李波-朝圣,http://em.21dtv.com/songs/60094150.mkv +黄品源-拆散(无原唱),http://em.21dtv.com/songs/60090251.mkv +腾格尔-传说,http://em.21dtv.com/songs/60074982.mkv +姜文杰-christmas song,http://em.21dtv.com/songs/60073046.mkv +M.TORME-christmas song,http://em.21dtv.com/songs/60070317.mkv +古小伟-彩色,http://em.21dtv.com/songs/60069285.mkv +杨谨-china style,http://em.21dtv.com/songs/60069070.mkv +容祖儿-出色,http://em.21dtv.com/songs/60068184.mkv +巴斯基-朝圣,http://em.21dtv.com/songs/60066909.mkv +谭咏麟-蚕丝,http://em.21dtv.com/songs/60065880.mkv +SEETHER-country song,http://em.21dtv.com/songs/60065563.mkv +YOUNG THE GIANT-cough syrup,http://em.21dtv.com/songs/60063561.mkv +MARIANAS TRENCH-celebrity status,http://em.21dtv.com/songs/60062108.mkv +徐洪刚-传说,http://em.21dtv.com/songs/60061110.mkv +千百惠-刺伤,http://em.21dtv.com/songs/60013463.mkv +童唱-春笋,http://em.21dtv.com/songs/60013314.mkv +叶瑷菱+陈升-春水,http://em.21dtv.com/songs/60013309.mkv +梁咏琪-春逝,http://em.21dtv.com/songs/60013307.mkv +薛之谦-传说,http://em.21dtv.com/songs/60013132.mkv +林宥嘉+刘力扬-传说,http://em.21dtv.com/songs/60013131.mkv +5566-传说,http://em.21dtv.com/songs/60013130.mkv +佚名-传说(无原唱),http://em.21dtv.com/songs/60013129.mkv +张启辉-出手(演唱会),http://em.21dtv.com/songs/60012961.mkv +童唱-出塞,http://em.21dtv.com/songs/60012957.mkv +冷漠+王雅洁-抽身,http://em.21dtv.com/songs/60012884.mkv +张悬-城市,http://em.21dtv.com/songs/60012621.mkv +吴淑敏-城市,http://em.21dtv.com/songs/60012620.mkv +马条-城市,http://em.21dtv.com/songs/60012619.mkv +吕方-承受,http://em.21dtv.com/songs/60012607.mkv +零点乐队-承受(演唱会),http://em.21dtv.com/songs/60012606.mkv +扬扬-成熟,http://em.21dtv.com/songs/60012574.mkv +韩庚-撑伞,http://em.21dtv.com/songs/60012541.mkv +佚名-趁烧(无原唱),http://em.21dtv.com/songs/60012533.mkv +蔡琴-晨书,http://em.21dtv.com/songs/60012528.mkv +赵薇-潮水,http://em.21dtv.com/songs/60012450.mkv +刘德华-潮水,http://em.21dtv.com/songs/60012449.mkv +刘德华-潮水(演唱会),http://em.21dtv.com/songs/60012448.mkv +佚名-唱山,http://em.21dtv.com/songs/60012340.mkv +李宇春-差生,http://em.21dtv.com/songs/60012244.mkv +梁朝伟-沧桑,http://em.21dtv.com/songs/60012040.mkv +ACE OF BASE-cruel summer,http://em.21dtv.com/songs/60001090.mkv +童唱-colour song,http://em.21dtv.com/songs/60000977.mkv +TWINS-colour song,http://em.21dtv.com/songs/60000976.mkv +童唱-color song,http://em.21dtv.com/songs/60000973.mkv +大炳-color song(无原唱),http://em.21dtv.com/songs/60000972.mkv +深白色2人组-cold silence,http://em.21dtv.com/songs/60000970.mkv +佚名-christmas song,http://em.21dtv.com/songs/60000937.mkv +M.TORMS-christmas song,http://em.21dtv.com/songs/60000936.mkv +山猪+桃子+小段-cant stop(无原唱),http://em.21dtv.com/songs/60000841.mkv +50 CENT-candy shop,http://em.21dtv.com/songs/60000808.mkv +50 CENT+OLIVIA-candy shop,http://em.21dtv.com/songs/60000807.mkv +ANDY WILLIAMS-canadian sunset,http://em.21dtv.com/songs/60000802.mkv +少女时代+2PM-cabi song,http://em.21dtv.com/songs/60000765.mkv +TWINKO-CRIME CRAFT,http://em.21dtv.com/songs/60096607.mkv +辛晓琪-承认,http://em.21dtv.com/songs/60132945.mkv +彭莉-承认,http://em.21dtv.com/songs/60122759.mkv +刘德华-超人(HD),http://em.21dtv.com/songs/10012633.mkv +王杰-脆弱,http://em.21dtv.com/songs/60088298.mkv +关楚耀-孱弱,http://em.21dtv.com/songs/60074873.mkv +曲婉婷-承认,http://em.21dtv.com/songs/60066913.mkv +罗百吉-超人,http://em.21dtv.com/songs/60062739.mkv +许廷铿-残忍,http://em.21dtv.com/songs/60061089.mkv +马浚伟-错认,http://em.21dtv.com/songs/60013689.mkv +于立成-脆弱,http://em.21dtv.com/songs/60013608.mkv +杨坤-脆弱,http://em.21dtv.com/songs/60013607.mkv +谢安琪-脆弱,http://em.21dtv.com/songs/60013606.mkv +黄阅-脆弱,http://em.21dtv.com/songs/60013605.mkv +张震岳-脆弱(无原唱),http://em.21dtv.com/songs/60013604.mkv +金美儿-从容,http://em.21dtv.com/songs/60013569.mkv +石卫-痴人,http://em.21dtv.com/songs/60012746.mkv +郑新玮-承认,http://em.21dtv.com/songs/60012603.mkv +辛晓琪-承认,http://em.21dtv.com/songs/60012602.mkv +张卫健-超人,http://em.21dtv.com/songs/60012398.mkv +五月天-超人,http://em.21dtv.com/songs/60012397.mkv +刘德华-超人,http://em.21dtv.com/songs/60012396.mkv +MACHI-超人,http://em.21dtv.com/songs/60012395.mkv +刘德华-超人(演唱会),http://em.21dtv.com/songs/60012394.mkv +ELTON JOHN-crocodile rock,http://em.21dtv.com/songs/60001086.mkv +阿吉仔-痴情,http://em.21dtv.com/songs/60135876.mkv +王又萱-愁情,http://em.21dtv.com/songs/60135536.mkv +吴国敬-撑起,http://em.21dtv.com/songs/60133474.mkv +王凯-从前,http://em.21dtv.com/songs/60131636.mkv +杨静-成全,http://em.21dtv.com/songs/60130474.mkv +原子霏-传奇,http://em.21dtv.com/songs/60130150.mkv +肖洋-传奇,http://em.21dtv.com/songs/60127292.mkv +帮我消消黑眼圈-成全,http://em.21dtv.com/songs/60126831.mkv +王洁-刺情,http://em.21dtv.com/songs/60125931.mkv +阎奕格-成全,http://em.21dtv.com/songs/60124600.mkv +葛荟婕-春秋,http://em.21dtv.com/songs/60122079.mkv +贺一航-逞强,http://em.21dtv.com/songs/60119988.mkv +子曰秋野-磁器,http://em.21dtv.com/songs/60116693.mkv +刘若英-成全,http://em.21dtv.com/songs/60115728.mkv +费玉清+张杰-传奇,http://em.21dtv.com/songs/60114087.mkv +插班生-逞强,http://em.21dtv.com/songs/60113538.mkv +祝琳媛-猜拳,http://em.21dtv.com/songs/60110436.mkv +洪川+小壮-猜拳,http://em.21dtv.com/songs/60110341.mkv +王莹-春俏,http://em.21dtv.com/songs/60106133.mkv +陈小钟-逞强,http://em.21dtv.com/songs/60103681.mkv +张韶涵-刺青,http://em.21dtv.com/songs/60099247.mkv +张韶涵-刺情,http://em.21dtv.com/songs/60098372.mkv +林志炫-残缺(演唱会),http://em.21dtv.com/songs/60096356.mkv +朱茵-从前,http://em.21dtv.com/songs/60092770.mkv +张敬轩-春秋,http://em.21dtv.com/songs/60092615.mkv +凌晗-刺青,http://em.21dtv.com/songs/60087373.mkv +张蓉蓉-纯情,http://em.21dtv.com/songs/60086500.mkv +王建杰-成全,http://em.21dtv.com/songs/60086489.mkv +伍华+俞文靖-词穷,http://em.21dtv.com/songs/60084996.mkv +张玉霞+李敏-传奇,http://em.21dtv.com/songs/60081446.mkv +尚雯婕-插曲,http://em.21dtv.com/songs/60079976.mkv +王子月+栗雅馨-传奇,http://em.21dtv.com/songs/60074981.mkv +李敏+张玉霞-传奇,http://em.21dtv.com/songs/60070602.mkv +吴涤清-长青,http://em.21dtv.com/songs/60068169.mkv +毛宁-传奇(演唱会),http://em.21dtv.com/songs/60066923.mkv +完玛三智-传奇(蒙),http://em.21dtv.com/songs/60064073.mkv +萧亚轩-逞强,http://em.21dtv.com/songs/60064055.mkv +周华健-传奇,http://em.21dtv.com/songs/60061109.mkv +叶熙祺-成全,http://em.21dtv.com/songs/60061101.mkv +黎明-长情(演唱会),http://em.21dtv.com/songs/60057597.mkv +MAKIYO-存钱,http://em.21dtv.com/songs/60013612.mkv +佚名-从前,http://em.21dtv.com/songs/60013557.mkv +万芳-从前,http://em.21dtv.com/songs/60013556.mkv +顾晓宇-刺青,http://em.21dtv.com/songs/60013462.mkv +容祖儿-啜泣,http://em.21dtv.com/songs/60013424.mkv +容祖儿-啜泣(演唱会),http://em.21dtv.com/songs/60013423.mkv +李克勤-啜泣(演唱会),http://em.21dtv.com/songs/60013422.mkv +孙楠-传奇,http://em.21dtv.com/songs/60013125.mkv +闪亮三姐妹-传奇,http://em.21dtv.com/songs/60013124.mkv +MINI-传奇,http://em.21dtv.com/songs/60013123.mkv +王菲-传奇(演唱会),http://em.21dtv.com/songs/60013122.mkv +李健-传奇(演唱会),http://em.21dtv.com/songs/60013121.mkv +佚名-初秋,http://em.21dtv.com/songs/60013026.mkv +林峰-出鞘,http://em.21dtv.com/songs/60012949.mkv +雪村-臭球,http://em.21dtv.com/songs/60012913.mkv +张卫健+黎姿-痴情,http://em.21dtv.com/songs/60012683.mkv +王秀琪-痴情,http://em.21dtv.com/songs/60012682.mkv +迪克牛仔-痴情,http://em.21dtv.com/songs/60012681.mkv +基地小虎-逞强,http://em.21dtv.com/songs/60012654.mkv +赵传-成全,http://em.21dtv.com/songs/60012568.mkv +张华-成全,http://em.21dtv.com/songs/60012567.mkv +罗中旭-成全,http://em.21dtv.com/songs/60012566.mkv +刘若英-成全,http://em.21dtv.com/songs/60012565.mkv +郑秀文-插曲,http://em.21dtv.com/songs/60012198.mkv +萧亚轩-插曲,http://em.21dtv.com/songs/60012197.mkv +郑秀文-插曲(演唱会),http://em.21dtv.com/songs/60012196.mkv +李炜-残缺,http://em.21dtv.com/songs/60012005.mkv +童唱-猜拳,http://em.21dtv.com/songs/60011874.mkv +佚名-caribbean queen(无原唱),http://em.21dtv.com/songs/60000858.mkv +龙影云-车票,http://em.21dtv.com/songs/60127638.mkv +花树-车票,http://em.21dtv.com/songs/60127326.mkv +谢霆锋-冲破,http://em.21dtv.com/songs/60124498.mkv +周柏豪-错配,http://em.21dtv.com/songs/60123765.mkv +谢中杰-冲破,http://em.21dtv.com/songs/60112242.mkv +周柏豪-错配,http://em.21dtv.com/songs/60075022.mkv +SENSATO+SAK NOEL+PITBULL-crazy people,http://em.21dtv.com/songs/60073082.mkv +旭日阳刚-车票,http://em.21dtv.com/songs/60071833.mkv +KACI BATTAGLIA-crazy possessive,http://em.21dtv.com/songs/60067865.mkv +王啸坤-唱片,http://em.21dtv.com/songs/60063036.mkv +迟志强-钞票,http://em.21dtv.com/songs/60012367.mkv +倪宾-钞票(无原唱),http://em.21dtv.com/songs/60012366.mkv +张瑶-crystal plane,http://em.21dtv.com/songs/60001110.mkv +BOA-copy paste,http://em.21dtv.com/songs/60001033.mkv +黄大炜-cocktail party(演唱会),http://em.21dtv.com/songs/60000966.mkv +佚名-changing partners,http://em.21dtv.com/songs/60000905.mkv +商天娥-changing partners,http://em.21dtv.com/songs/60000904.mkv +T.M.REVOLUTION-COUNT ZERO,http://em.21dtv.com/songs/60096606.mkv +JAKE BUGG-COUNTRY SONG,http://em.21dtv.com/songs/60096605.mkv +非非-COME TOGETHER,http://em.21dtv.com/songs/60096604.mkv +WILL YOUNG-come on,http://em.21dtv.com/songs/60073070.mkv +CNBLUE-come on,http://em.21dtv.com/songs/60073069.mkv +FUN.-carry on,http://em.21dtv.com/songs/60073036.mkv +李茂山-茶噢,http://em.21dtv.com/songs/60012208.mkv +郑新玮-come on,http://em.21dtv.com/songs/60000999.mkv +许绍洋-come on,http://em.21dtv.com/songs/60000998.mkv +ENERGY-come on,http://em.21dtv.com/songs/60000997.mkv +赵芬妮-caffeine overdose(无原唱),http://em.21dtv.com/songs/60000768.mkv +杨美娜-春泥,http://em.21dtv.com/songs/60128114.mkv +暴脾气的小明-春泥,http://em.21dtv.com/songs/60128058.mkv +群星-承诺Live,http://em.21dtv.com/songs/60089443.mkv +张津涤-蝉鸟,http://em.21dtv.com/songs/60135215.mkv +海哲明-承诺,http://em.21dtv.com/songs/60119771.mkv +徐红光-承诺,http://em.21dtv.com/songs/60116834.mkv +梦彤-承诺,http://em.21dtv.com/songs/60115250.mkv +薛启超-吹牛,http://em.21dtv.com/songs/60114037.mkv +汪峰-春泥,http://em.21dtv.com/songs/60113782.mkv +汪峰-春泥,http://em.21dtv.com/songs/60112823.mkv +马汝珑-宠溺,http://em.21dtv.com/songs/60109033.mkv +王浩-承诺,http://em.21dtv.com/songs/60103453.mkv +富龙-承诺,http://em.21dtv.com/songs/60103219.mkv +茶少-茶女,http://em.21dtv.com/songs/60102674.mkv +乱弹阿翔-承诺,http://em.21dtv.com/songs/60096172.mkv +杨宗华+周君-承诺,http://em.21dtv.com/songs/60082723.mkv +唯嘉-承诺,http://em.21dtv.com/songs/60082006.mkv +袁姗姗-承诺,http://em.21dtv.com/songs/60074936.mkv +三百整-承诺,http://em.21dtv.com/songs/60074935.mkv +陈翔-承诺,http://em.21dtv.com/songs/60074934.mkv +黄韵玲-承诺,http://em.21dtv.com/songs/60070588.mkv +黄瑛-丑娘,http://em.21dtv.com/songs/60069308.mkv +左小祖咒-吹牛,http://em.21dtv.com/songs/60066925.mkv +张芸京-春泥,http://em.21dtv.com/songs/60063419.mkv +孙楠-承诺,http://em.21dtv.com/songs/60062957.mkv +陈随意-厝内,http://em.21dtv.com/songs/60013626.mkv +F.I.R-刺鸟,http://em.21dtv.com/songs/60013461.mkv +庾澄庆-春泥,http://em.21dtv.com/songs/60013293.mkv +左炜-船娘,http://em.21dtv.com/songs/60013157.mkv +郑秀文-承诺,http://em.21dtv.com/songs/60012601.mkv +张智霖-承诺,http://em.21dtv.com/songs/60012600.mkv +张峰奇-承诺,http://em.21dtv.com/songs/60012599.mkv +辛晓琪-承诺,http://em.21dtv.com/songs/60012598.mkv +群星-承诺,http://em.21dtv.com/songs/60012597.mkv +满文军-承诺,http://em.21dtv.com/songs/60012596.mkv +黄海+潘潘声-承诺,http://em.21dtv.com/songs/60012595.mkv +肖阳-承诺(演唱会),http://em.21dtv.com/songs/60012594.mkv +群星-承诺(演唱会),http://em.21dtv.com/songs/60012593.mkv +谢金燕-沉溺(无原唱),http://em.21dtv.com/songs/60012518.mkv +周渝民-残念,http://em.21dtv.com/songs/60012003.mkv +张信哲-残念,http://em.21dtv.com/songs/60012002.mkv +官恩娜-残念,http://em.21dtv.com/songs/60012001.mkv +AT17-才女(演唱会),http://em.21dtv.com/songs/60011885.mkv +爱戴-chic night,http://em.21dtv.com/songs/60000915.mkv +2NE1-cant nobody,http://em.21dtv.com/songs/60000835.mkv +舒浩-沉默,http://em.21dtv.com/songs/60132823.mkv +简弘亦-出卖,http://em.21dtv.com/songs/60128288.mkv +黄耀明-残梦,http://em.21dtv.com/songs/60124755.mkv +李荣浩-出卖,http://em.21dtv.com/songs/60121783.mkv +陈浩民+韩元元-城门,http://em.21dtv.com/songs/60113065.mkv +袁咏琳-春梅,http://em.21dtv.com/songs/60112952.mkv +白健恩-沉默,http://em.21dtv.com/songs/60110431.mkv +苏玮-春暮,http://em.21dtv.com/songs/60108842.mkv +陈小宇-楚暮,http://em.21dtv.com/songs/60107317.mkv +包启宁-匆忙,http://em.21dtv.com/songs/60106654.mkv +陈奕迅-臭美,http://em.21dtv.com/songs/60102884.mkv +许哲佩-催眠,http://em.21dtv.com/songs/60102728.mkv +陈俊豪+胡海泉-催眠,http://em.21dtv.com/songs/60095127.mkv +央吉玛-催眠,http://em.21dtv.com/songs/60094862.mkv +太极乐队-侧面,http://em.21dtv.com/songs/60092491.mkv +周柏豪-陈某,http://em.21dtv.com/songs/60092482.mkv +古巨基-侧面,http://em.21dtv.com/songs/60092396.mkv +张靓颖-催眠,http://em.21dtv.com/songs/60087849.mkv +葛仲珊-call me,http://em.21dtv.com/songs/60082116.mkv +KE$HA-cmon,http://em.21dtv.com/songs/60073058.mkv +东方神起-catch me,http://em.21dtv.com/songs/60073039.mkv +符琼音-沉默,http://em.21dtv.com/songs/60071836.mkv +余文乐-沉迷,http://em.21dtv.com/songs/60071835.mkv +戴梅君-痴迷,http://em.21dtv.com/songs/60069306.mkv +黄英-痴梦,http://em.21dtv.com/songs/60065899.mkv +真崎ゆか-change myself,http://em.21dtv.com/songs/60061892.mkv +王菲-催眠,http://em.21dtv.com/songs/60013599.mkv +伊能静-聪明,http://em.21dtv.com/songs/60013485.mkv +雪狼组合-慈母,http://em.21dtv.com/songs/60013430.mkv +黄征-春梦(演唱会),http://em.21dtv.com/songs/60013290.mkv +郭颂-串门,http://em.21dtv.com/songs/60013170.mkv +王菀之-揣摩,http://em.21dtv.com/songs/60013090.mkv +佚名-出卖,http://em.21dtv.com/songs/60012939.mkv +容祖儿-出卖,http://em.21dtv.com/songs/60012938.mkv +那英-出卖,http://em.21dtv.com/songs/60012937.mkv +周传雄-出卖(演唱会),http://em.21dtv.com/songs/60012936.mkv +陈小春-沉默,http://em.21dtv.com/songs/60012504.mkv +梁咏琪-沉迷,http://em.21dtv.com/songs/60012503.mkv +李翊君-沉迷,http://em.21dtv.com/songs/60012502.mkv +曾国城-沉迷(无原唱),http://em.21dtv.com/songs/60012501.mkv +凤飞飞-尘梦(无原唱),http://em.21dtv.com/songs/60012489.mkv +郑希怡-超模,http://em.21dtv.com/songs/60012393.mkv +刘德华-缠绵,http://em.21dtv.com/songs/60012258.mkv +范晓萱-缠绵,http://em.21dtv.com/songs/60012257.mkv +刘德华-缠绵(演唱会),http://em.21dtv.com/songs/60012256.mkv +张国荣-侧面(演唱会),http://em.21dtv.com/songs/60012140.mkv +许志安-侧面(演唱会),http://em.21dtv.com/songs/60012139.mkv +苏志威-侧面(演唱会),http://em.21dtv.com/songs/60012138.mkv +AT17-侧面(演唱会),http://em.21dtv.com/songs/60012137.mkv +叶振棠-残梦,http://em.21dtv.com/songs/60012000.mkv +林玉英-残梦,http://em.21dtv.com/songs/60011999.mkv +关正杰-残梦,http://em.21dtv.com/songs/60011998.mkv +刘家昌-crazy+unchained melody,http://em.21dtv.com/songs/60001070.mkv +ZIP发射乐团-catch me(无原唱),http://em.21dtv.com/songs/60000870.mkv +佚名-call me,http://em.21dtv.com/songs/60000778.mkv +徐怀钰-call me,http://em.21dtv.com/songs/60000777.mkv +BLONDIE-call me,http://em.21dtv.com/songs/60000776.mkv +黄浩琳-缠路,http://em.21dtv.com/songs/60136029.mkv +杨晨晖-茶恋,http://em.21dtv.com/songs/60133842.mkv +许飞-朝露,http://em.21dtv.com/songs/60129614.mkv +古享林-闯狼,http://em.21dtv.com/songs/60127798.mkv +杨斯捷-痴恋,http://em.21dtv.com/songs/60125747.mkv +魏如昀-初恋,http://em.21dtv.com/songs/60123385.mkv +新青年理发厅-齿轮,http://em.21dtv.com/songs/60122781.mkv +苏唯-初恋,http://em.21dtv.com/songs/60122052.mkv +枫舞-春恋,http://em.21dtv.com/songs/60121826.mkv +小筑-春恋,http://em.21dtv.com/songs/60121600.mkv +安俊豪-沉沦,http://em.21dtv.com/songs/60119435.mkv +陈百潭-初恋,http://em.21dtv.com/songs/60119022.mkv +凌菲菲-初恋,http://em.21dtv.com/songs/60115714.mkv +JINA U-初恋,http://em.21dtv.com/songs/60115600.mkv +默言-初恋,http://em.21dtv.com/songs/60114310.mkv +Tiger JK+Punch-初恋,http://em.21dtv.com/songs/60107448.mkv +莫文蔚-初恋,http://em.21dtv.com/songs/60107158.mkv +海藻乐队-灿烂,http://em.21dtv.com/songs/60107034.mkv +何杰-残留,http://em.21dtv.com/songs/60101902.mkv +姚贝娜-采莲,http://em.21dtv.com/songs/60101621.mkv +苏永康-潮流,http://em.21dtv.com/songs/60100413.mkv +河图-寸缕,http://em.21dtv.com/songs/60099368.mkv +Flower-初恋,http://em.21dtv.com/songs/60098027.mkv +林忆莲-沉沦(新版),http://em.21dtv.com/songs/60096721.mkv +甄秀珍-春雷,http://em.21dtv.com/songs/60089426.mkv +洪杰-差利,http://em.21dtv.com/songs/60088224.mkv +徐良+刘丹萌-抽离,http://em.21dtv.com/songs/60086494.mkv +川田まみ-赤い泪(演唱会),http://em.21dtv.com/songs/60082726.mkv +陈思函-长路,http://em.21dtv.com/songs/60082707.mkv +HKT48-初恋バタフライ,http://em.21dtv.com/songs/60074967.mkv +中岛美嘉-初恋,http://em.21dtv.com/songs/60074966.mkv +韦小天-初恋,http://em.21dtv.com/songs/60074965.mkv +额尔古纳乐队-晨露,http://em.21dtv.com/songs/60074928.mkv +冷漠-沉沦,http://em.21dtv.com/songs/60074926.mkv +真真-错了,http://em.21dtv.com/songs/60071849.mkv +韩庚-侧脸,http://em.21dtv.com/songs/60071821.mkv +于瑛楠-colour love,http://em.21dtv.com/songs/60071582.mkv +DRAKE+THE WEEKND-crew love,http://em.21dtv.com/songs/60066512.mkv +林玉英-重来,http://em.21dtv.com/songs/60065496.mkv +王宝-初恋,http://em.21dtv.com/songs/60064069.mkv +ARCTIC MONKEYS-crying lightning,http://em.21dtv.com/songs/60063569.mkv +陈僖仪-crazy love,http://em.21dtv.com/songs/60063566.mkv +郝冠英-错恋,http://em.21dtv.com/songs/60062433.mkv +高向鹏+龙千玉-错乱,http://em.21dtv.com/songs/60013688.mkv +阿信-错了,http://em.21dtv.com/songs/60013683.mkv +康康-催泪,http://em.21dtv.com/songs/60013598.mkv +苏小明-垂柳,http://em.21dtv.com/songs/60013213.mkv +越剧+徐标新-闯楼,http://em.21dtv.com/songs/60013201.mkv +卓依婷+林正桦-初恋,http://em.21dtv.com/songs/60013004.mkv +袁小迪+向蕙玲-初恋,http://em.21dtv.com/songs/60013003.mkv +佚名-初恋,http://em.21dtv.com/songs/60013002.mkv +杨采妮-初恋,http://em.21dtv.com/songs/60013001.mkv +小凤凤-初恋,http://em.21dtv.com/songs/60013000.mkv +梁雁翎-初恋,http://em.21dtv.com/songs/60012999.mkv +邓伊茜-初恋,http://em.21dtv.com/songs/60012998.mkv +MAKIYO-初恋,http://em.21dtv.com/songs/60012997.mkv +刘惜君-初恋(演唱会),http://em.21dtv.com/songs/60012996.mkv +胡美仪-初恋(演唱会),http://em.21dtv.com/songs/60012995.mkv +佚名-初恋(无原唱),http://em.21dtv.com/songs/60012994.mkv +龙千玉-出路,http://em.21dtv.com/songs/60012935.mkv +王菲-出路(演唱会),http://em.21dtv.com/songs/60012934.mkv +周蕙-赤裸,http://em.21dtv.com/songs/60012812.mkv +赵薇-齿轮,http://em.21dtv.com/songs/60012795.mkv +吕方-痴恋,http://em.21dtv.com/songs/60012677.mkv +吕方-痴恋(无原唱),http://em.21dtv.com/songs/60012676.mkv +林忆莲-沉沦(演唱会),http://em.21dtv.com/songs/60012500.mkv +杨千嬅-超龄,http://em.21dtv.com/songs/60012392.mkv +杨千嬅-超龄(演唱会),http://em.21dtv.com/songs/60012391.mkv +周传雄-侧脸,http://em.21dtv.com/songs/60012135.mkv +堂娜-灿烂,http://em.21dtv.com/songs/60012014.mkv +OVERDOSE-crying love,http://em.21dtv.com/songs/60001107.mkv +尚雯婕-crazy love,http://em.21dtv.com/songs/60001067.mkv +女声-crazy love,http://em.21dtv.com/songs/60001066.mkv +男声-crazy love,http://em.21dtv.com/songs/60001065.mkv +佚名-co la,http://em.21dtv.com/songs/60000964.mkv +巫一凡-christmas love,http://em.21dtv.com/songs/60000935.mkv +李宇春-chris lee(演唱会),http://em.21dtv.com/songs/60000932.mkv +东方神起-choosey lover,http://em.21dtv.com/songs/60000928.mkv +SNSD-chocolate love,http://em.21dtv.com/songs/60000926.mkv +伍佰-cherry lover,http://em.21dtv.com/songs/60000913.mkv +张圳-残酷,http://em.21dtv.com/songs/60110186.mkv +寂悸-残酷,http://em.21dtv.com/songs/60084954.mkv +郭斯炫-残酷,http://em.21dtv.com/songs/60084953.mkv +戊道子-出口,http://em.21dtv.com/songs/60068183.mkv +黄家强-长空,http://em.21dtv.com/songs/60057592.mkv +黄家强-长空(演唱会),http://em.21dtv.com/songs/60057591.mkv +谭咏麟-刺客(演唱会),http://em.21dtv.com/songs/60013460.mkv +阿超-窗口,http://em.21dtv.com/songs/60013177.mkv +徐佳莹-出口,http://em.21dtv.com/songs/60012933.mkv +苏有朋-出口,http://em.21dtv.com/songs/60012932.mkv +飞轮海-出口,http://em.21dtv.com/songs/60012931.mkv +NEON乐团-出口,http://em.21dtv.com/songs/60012930.mkv +王菲-乘客,http://em.21dtv.com/songs/60012642.mkv +佚名-诚恳,http://em.21dtv.com/songs/60012585.mkv +莫文蔚-candy kisses,http://em.21dtv.com/songs/60000806.mkv +曾旭东-初见,http://em.21dtv.com/songs/60122806.mkv +大河之南-辰杰,http://em.21dtv.com/songs/60122635.mkv +王旭鹏-曾经,http://em.21dtv.com/songs/60121913.mkv +刘斯远-曾经,http://em.21dtv.com/songs/60119295.mkv +涛子-擦肩,http://em.21dtv.com/songs/60114662.mkv +张信哲-曾经,http://em.21dtv.com/songs/60111858.mkv +云菲菲-曾经,http://em.21dtv.com/songs/60106585.mkv +BOX锋-曾经,http://em.21dtv.com/songs/60106526.mkv +陈晓东-曾经(新版),http://em.21dtv.com/songs/60100594.mkv +孙燕姿-错觉,http://em.21dtv.com/songs/60096821.mkv +朱桦+麦子杰-出嫁,http://em.21dtv.com/songs/60096681.mkv +张智成-出界,http://em.21dtv.com/songs/60093815.mkv +焱彬-曾经,http://em.21dtv.com/songs/60093698.mkv +RUBBERBAND-城记,http://em.21dtv.com/songs/60092186.mkv +CCCCES+许多葵-长绝,http://em.21dtv.com/songs/60082706.mkv +NGINE-残局,http://em.21dtv.com/songs/60082692.mkv +黄贯中-踩界,http://em.21dtv.com/songs/60082685.mkv +罗中旭-憧憬,http://em.21dtv.com/songs/60081942.mkv +詹雅雯-出嫁,http://em.21dtv.com/songs/60081422.mkv +谭晶-曾经,http://em.21dtv.com/songs/60079505.mkv +KIRORO-长い间,http://em.21dtv.com/songs/60074877.mkv +JAMES LAST-coco jamboo,http://em.21dtv.com/songs/60073059.mkv +张柏芝-曾经,http://em.21dtv.com/songs/60065465.mkv +蒋鑫怡-曾经,http://em.21dtv.com/songs/60065464.mkv +THE DREAM-cookie jar,http://em.21dtv.com/songs/60063560.mkv +林峰-初见(演唱会),http://em.21dtv.com/songs/60062640.mkv +陈晓东-曾经,http://em.21dtv.com/songs/60062279.mkv +乡村二人组-长假,http://em.21dtv.com/songs/60057581.mkv +黄品源-长假,http://em.21dtv.com/songs/60057580.mkv +潘美辰-错决,http://em.21dtv.com/songs/60013680.mkv +霍经伦-错觉(演唱会),http://em.21dtv.com/songs/60013678.mkv +小E-春祭,http://em.21dtv.com/songs/60013283.mkv +郭富城-创举(演唱会),http://em.21dtv.com/songs/60013204.mkv +胡灵-雏菊,http://em.21dtv.com/songs/60013064.mkv +邓丽欣-初见,http://em.21dtv.com/songs/60012993.mkv +邓丽欣-初见(演唱会),http://em.21dtv.com/songs/60012992.mkv +易欣-出局,http://em.21dtv.com/songs/60012929.mkv +越剧+徐标新-出京,http://em.21dtv.com/songs/60012926.mkv +郑秀文-出界,http://em.21dtv.com/songs/60012925.mkv +鲍艺芳-出界,http://em.21dtv.com/songs/60012924.mkv +张清芳+优客李林-出嫁,http://em.21dtv.com/songs/60012922.mkv +高胜美-出嫁,http://em.21dtv.com/songs/60012921.mkv +曹格-丑角,http://em.21dtv.com/songs/60012903.mkv +黄韵玲-憧憬,http://em.21dtv.com/songs/60012869.mkv +陈松伶-吵架,http://em.21dtv.com/songs/60012453.mkv +宇桐非-差距,http://em.21dtv.com/songs/60012243.mkv +王冰洋-差距,http://em.21dtv.com/songs/60012242.mkv +周永恒-曾经,http://em.21dtv.com/songs/60012150.mkv +张震昊-曾经,http://em.21dtv.com/songs/60012149.mkv +张信哲-曾经,http://em.21dtv.com/songs/60012148.mkv +谭咏麟-曾经,http://em.21dtv.com/songs/60012147.mkv +陈瑞-曾经,http://em.21dtv.com/songs/60012146.mkv +蒋雅文-侧偈,http://em.21dtv.com/songs/60012134.mkv +谢霆锋-擦胶,http://em.21dtv.com/songs/60011856.mkv +卫兰-chocolate ice(演唱会),http://em.21dtv.com/songs/60000925.mkv +Tricky-Chinese Interlude,http://em.21dtv.com/songs/60127685.mkv +Sia-Cheap Thrills,http://em.21dtv.com/songs/60127665.mkv +才让措-CHASING PAVEMENTS,http://em.21dtv.com/songs/60096603.mkv +杜海涛+海鸣威-吃货,http://em.21dtv.com/songs/60132577.mkv +张碧晨-彩绘,http://em.21dtv.com/songs/60131417.mkv +陈翔-橙花,http://em.21dtv.com/songs/60129756.mkv +Ash灰-彩虹,http://em.21dtv.com/songs/60128666.mkv +包师语-彩虹,http://em.21dtv.com/songs/60125237.mkv +布衣乐队-彩虹,http://em.21dtv.com/songs/60123887.mkv +信-彩虹,http://em.21dtv.com/songs/60119264.mkv +林知卉+范燕钰-春晖,http://em.21dtv.com/songs/60113719.mkv +杨子姗-偿还,http://em.21dtv.com/songs/60113674.mkv +吴亦凡+张艺兴-彩虹,http://em.21dtv.com/songs/60111750.mkv +雨露-瓷婚,http://em.21dtv.com/songs/60109721.mkv +郑劲松-彩虹,http://em.21dtv.com/songs/60108041.mkv +Exile Atsushi+久石让-忏悔,http://em.21dtv.com/songs/60101759.mkv +曹芙嘉-沧海,http://em.21dtv.com/songs/60096719.mkv +陈邵康-闯祸,http://em.21dtv.com/songs/60096702.mkv +BEYOND-扯火,http://em.21dtv.com/songs/60092141.mkv +李蓉-采花,http://em.21dtv.com/songs/60089349.mkv +酒井美子-窗户,http://em.21dtv.com/songs/60088797.mkv +詹曼铃-忏悔,http://em.21dtv.com/songs/60086484.mkv +张曼-彩虹,http://em.21dtv.com/songs/60085304.mkv +黄绮珊-彩虹,http://em.21dtv.com/songs/60082690.mkv +韩光+黄琦雯-彩虹,http://em.21dtv.com/songs/60082689.mkv +尹熙水-彩虹,http://em.21dtv.com/songs/60082688.mkv +刘明辉-彩虹,http://em.21dtv.com/songs/60080651.mkv +袁攀+李涵+陈小宇-宠坏,http://em.21dtv.com/songs/60074961.mkv +王若琳-偿还,http://em.21dtv.com/songs/60074886.mkv +张崇基+张崇德-偿还(演唱会),http://em.21dtv.com/songs/60074885.mkv +焰烽-仇恨,http://em.21dtv.com/songs/60068182.mkv +石头剪子布-彩虹,http://em.21dtv.com/songs/60065877.mkv +吴雨霏-初会,http://em.21dtv.com/songs/60064068.mkv +二手玫瑰-采花,http://em.21dtv.com/songs/60064030.mkv +许志安-痴花,http://em.21dtv.com/songs/60061102.mkv +五月天-彩虹,http://em.21dtv.com/songs/60061087.mkv +伊能静-春花,http://em.21dtv.com/songs/60013271.mkv +尤雅-初航,http://em.21dtv.com/songs/60012991.mkv +MAKIYO-绰号,http://em.21dtv.com/songs/60012368.mkv +王菲-偿还,http://em.21dtv.com/songs/60012292.mkv +韩宝仪-偿还,http://em.21dtv.com/songs/60012291.mkv +费玉清-偿还,http://em.21dtv.com/songs/60012290.mkv +邓丽君-偿还,http://em.21dtv.com/songs/60012289.mkv +谢安琪-偿还(演唱会),http://em.21dtv.com/songs/60012288.mkv +梁汉文-偿还(演唱会),http://em.21dtv.com/songs/60012287.mkv +邓丽君-偿还(演唱会),http://em.21dtv.com/songs/60012286.mkv +洪荣宏-忏悔,http://em.21dtv.com/songs/60012270.mkv +赵本山-策划,http://em.21dtv.com/songs/60012141.mkv +朱文-彩虹,http://em.21dtv.com/songs/60011935.mkv +周杰伦-彩虹,http://em.21dtv.com/songs/60011934.mkv +羽泉-彩虹,http://em.21dtv.com/songs/60011933.mkv +叶蓓-彩虹,http://em.21dtv.com/songs/60011932.mkv +许巍-彩虹,http://em.21dtv.com/songs/60011931.mkv +梁静茹-彩虹,http://em.21dtv.com/songs/60011930.mkv +甲子蕙-彩虹,http://em.21dtv.com/songs/60011929.mkv +范逸臣-彩虹,http://em.21dtv.com/songs/60011928.mkv +杜德伟-彩虹,http://em.21dtv.com/songs/60011927.mkv +动力火车-彩虹,http://em.21dtv.com/songs/60011926.mkv +张惠妹-彩虹(演唱会),http://em.21dtv.com/songs/60011925.mkv +羽泉-彩虹(演唱会),http://em.21dtv.com/songs/60011924.mkv +五月天-彩虹(演唱会),http://em.21dtv.com/songs/60011923.mkv +梁静茹-彩虹(演唱会),http://em.21dtv.com/songs/60011922.mkv +纪晓君-彩虹(演唱会),http://em.21dtv.com/songs/60011921.mkv +藏羌组合-采花(演唱会),http://em.21dtv.com/songs/60011915.mkv +亚由美-cutie honey,http://em.21dtv.com/songs/60001118.mkv +幸田来未-cutie honey,http://em.21dtv.com/songs/60001117.mkv +MICHAEL LEARNS TO ROCK-complicated heart,http://em.21dtv.com/songs/60001016.mkv +DIRTY MONEY-coming home,http://em.21dtv.com/songs/60001013.mkv +AQUA-cartoon heroes,http://em.21dtv.com/songs/60000865.mkv +黄识文-错过,http://em.21dtv.com/songs/60130940.mkv +不才-春归,http://em.21dtv.com/songs/60128722.mkv +贡尕达哇-春归,http://em.21dtv.com/songs/60127418.mkv +冷漠+司徒兰芳-错过,http://em.21dtv.com/songs/60115712.mkv +曹雪-错过,http://em.21dtv.com/songs/60111138.mkv +小夕-错过,http://em.21dtv.com/songs/60110163.mkv +王丽云+印金约-闯宫,http://em.21dtv.com/songs/60109515.mkv +赵鹏-船歌,http://em.21dtv.com/songs/60107247.mkv +谭嘉荃-错过,http://em.21dtv.com/songs/60106290.mkv +Pchy-错过,http://em.21dtv.com/songs/60099020.mkv +刘耿-错过,http://em.21dtv.com/songs/60096820.mkv +王涛-错过,http://em.21dtv.com/songs/60094996.mkv +黄贯中-初哥,http://em.21dtv.com/songs/60093551.mkv +E+KIDS-初哥,http://em.21dtv.com/songs/60092164.mkv +何静-闯关,http://em.21dtv.com/songs/60090616.mkv +杨幂+刘恺威-错怪,http://em.21dtv.com/songs/60088069.mkv +陈随意-成功,http://em.21dtv.com/songs/60084983.mkv +苗苗-船歌,http://em.21dtv.com/songs/60082740.mkv +韩宝仪-船歌,http://em.21dtv.com/songs/60082739.mkv +品冠-闯关,http://em.21dtv.com/songs/60081673.mkv +李晟-错过,http://em.21dtv.com/songs/60080627.mkv +陈珊妮-出轨,http://em.21dtv.com/songs/60080460.mkv +蔡卓妍-错过,http://em.21dtv.com/songs/60079875.mkv +倪力-初歌(演唱会),http://em.21dtv.com/songs/60074964.mkv +NELLY-country grammar,http://em.21dtv.com/songs/60073080.mkv +女孩与机器人-超过,http://em.21dtv.com/songs/60071830.mkv +GOLDEN-草稿,http://em.21dtv.com/songs/60070566.mkv +王铮亮-错过,http://em.21dtv.com/songs/60066934.mkv +黄耀明-楚歌(演唱会),http://em.21dtv.com/songs/60064070.mkv +LUKE BRYAN-country girl,http://em.21dtv.com/songs/60063562.mkv +AAA-charge go,http://em.21dtv.com/songs/60063557.mkv +瑶瑶-出轨,http://em.21dtv.com/songs/60063263.mkv +情罪-出轨,http://em.21dtv.com/songs/60062838.mkv +BENI-crazy girl,http://em.21dtv.com/songs/60061958.mkv +王梓盈-错过,http://em.21dtv.com/songs/60013666.mkv +沙宝亮-错过,http://em.21dtv.com/songs/60013665.mkv +祁隆-错过,http://em.21dtv.com/songs/60013664.mkv +满文军-错过,http://em.21dtv.com/songs/60013663.mkv +梁咏琪-错过,http://em.21dtv.com/songs/60013662.mkv +梁超-错过,http://em.21dtv.com/songs/60013661.mkv +蔡诗芸-错过,http://em.21dtv.com/songs/60013660.mkv +林慧萍-错过(无原唱),http://em.21dtv.com/songs/60013659.mkv +黄莺莺-春光,http://em.21dtv.com/songs/60013257.mkv +韩寒-春光,http://em.21dtv.com/songs/60013256.mkv +董文华-春歌,http://em.21dtv.com/songs/60013253.mkv +郑钧-船歌,http://em.21dtv.com/songs/60013149.mkv +佚名-船歌,http://em.21dtv.com/songs/60013148.mkv +千荷-船歌,http://em.21dtv.com/songs/60013147.mkv +齐豫-船歌(演唱会),http://em.21dtv.com/songs/60013146.mkv +哈里+杨钰莹-船歌(演唱会),http://em.21dtv.com/songs/60013145.mkv +邓丽君-船歌(演唱会),http://em.21dtv.com/songs/60013144.mkv +罗文-楚歌,http://em.21dtv.com/songs/60013070.mkv +张学友-楚歌(演唱会),http://em.21dtv.com/songs/60013069.mkv +卓依婷-杵歌,http://em.21dtv.com/songs/60013068.mkv +佚名-杵歌,http://em.21dtv.com/songs/60013067.mkv +高胜美-杵歌,http://em.21dtv.com/songs/60013066.mkv +卓依婷-杵歌(演唱会),http://em.21dtv.com/songs/60013065.mkv +吕方-出轨,http://em.21dtv.com/songs/60012919.mkv +AT17-唱歌(演唱会),http://em.21dtv.com/songs/60012318.mkv +达明一派-crying game(演唱会),http://em.21dtv.com/songs/60001101.mkv +詹采妮-crazy girl,http://em.21dtv.com/songs/60001062.mkv +梁咏琪-cover girl,http://em.21dtv.com/songs/60001052.mkv +王力宏-cockney girl,http://em.21dtv.com/songs/60000965.mkv +佚名-circle game,http://em.21dtv.com/songs/60000942.mkv +吴紫涵-chinese girl,http://em.21dtv.com/songs/60000920.mkv +张惠妹-chinese girl(演唱会),http://em.21dtv.com/songs/60000919.mkv +佚名-china grove,http://em.21dtv.com/songs/60000918.mkv +张智成-cap girl,http://em.21dtv.com/songs/60000852.mkv +DAVID LEE ROTH-california girls,http://em.21dtv.com/songs/60000773.mkv +NEIL SEDAKA-calendar girls,http://em.21dtv.com/songs/60000770.mkv +星梦群星-乘风,http://em.21dtv.com/songs/60128053.mkv +董贞-成佛,http://em.21dtv.com/songs/60122080.mkv +郭家铭+李玉刚+陈晓东+于晓光-出发,http://em.21dtv.com/songs/60121012.mkv +洪荣宏-春风,http://em.21dtv.com/songs/60120716.mkv +群星-出发,http://em.21dtv.com/songs/60117977.mkv +黄凤仪-春风,http://em.21dtv.com/songs/60117406.mkv +阿尔法+徐菁遥+星途宝贝等-出发,http://em.21dtv.com/songs/60117311.mkv +胡恩瑞-炒饭,http://em.21dtv.com/songs/60113979.mkv +苏亚-朝佛,http://em.21dtv.com/songs/60103532.mkv +筠子-春分,http://em.21dtv.com/songs/60103505.mkv +张魏然-臣服,http://em.21dtv.com/songs/60103292.mkv +LOTTE GIRLS-出发,http://em.21dtv.com/songs/60099679.mkv +苗苗-春风,http://em.21dtv.com/songs/60096467.mkv +陈淑萍-惩罚,http://em.21dtv.com/songs/60089532.mkv +LISA-crossing field,http://em.21dtv.com/songs/60082128.mkv +莫旭秋-重逢(演唱会),http://em.21dtv.com/songs/60079667.mkv +黑妹-重逢(演唱会),http://em.21dtv.com/songs/60079666.mkv +詹曼玲-春风,http://em.21dtv.com/songs/60074990.mkv +孙艳-朝佛,http://em.21dtv.com/songs/60071832.mkv +若蔓-朝佛,http://em.21dtv.com/songs/60071831.mkv +李辉-丛飞,http://em.21dtv.com/songs/60070607.mkv +方怡萍+高向鹏-初逢,http://em.21dtv.com/songs/60066919.mkv +詹曼铃-春风,http://em.21dtv.com/songs/60063356.mkv +郑伊健-长发,http://em.21dtv.com/songs/60057574.mkv +庞龙-长发,http://em.21dtv.com/songs/60057573.mkv +郑伊健-长发(演唱会),http://em.21dtv.com/songs/60057572.mkv +佚名-春风,http://em.21dtv.com/songs/60013227.mkv +彭钰雯-春风,http://em.21dtv.com/songs/60013226.mkv +彭羚-春风,http://em.21dtv.com/songs/60013225.mkv +刘德华-除非(演唱会),http://em.21dtv.com/songs/60013043.mkv +张心杰-出发,http://em.21dtv.com/songs/60012918.mkv +刘璇-出发,http://em.21dtv.com/songs/60012917.mkv +何俐恩-出发,http://em.21dtv.com/songs/60012916.mkv +大地乐团-出发,http://em.21dtv.com/songs/60012915.mkv +羽泉-惩罚,http://em.21dtv.com/songs/60012652.mkv +阿杜-惩罚,http://em.21dtv.com/songs/60012651.mkv +羽泉-惩罚(演唱会),http://em.21dtv.com/songs/60012650.mkv +王蓝茵-乘风,http://em.21dtv.com/songs/60012637.mkv +许嵩-城府,http://em.21dtv.com/songs/60012615.mkv +清莞-沉浮,http://em.21dtv.com/songs/60012499.mkv +吴宗宪-臣服,http://em.21dtv.com/songs/60012481.mkv +佚名-唱风,http://em.21dtv.com/songs/60012317.mkv +吴克群-残废,http://em.21dtv.com/songs/60011988.mkv +BEACH BOYS-cotton fields,http://em.21dtv.com/songs/60001041.mkv +佚名-cotton field(无原唱),http://em.21dtv.com/songs/60001040.mkv +陈筠婷-宠儿,http://em.21dtv.com/songs/60134416.mkv +杨静-嫦娥,http://em.21dtv.com/songs/60130473.mkv +林宥嘉-宠儿,http://em.21dtv.com/songs/60127102.mkv +王鸣飞-宠儿,http://em.21dtv.com/songs/60125963.mkv +王鸣飞-宠儿,http://em.21dtv.com/songs/60120794.mkv +云菲菲-嫦娥,http://em.21dtv.com/songs/60108283.mkv +徐子崴-嫦娥,http://em.21dtv.com/songs/60084679.mkv +周岚-嫦娥,http://em.21dtv.com/songs/60074891.mkv +李玉刚-嫦娥,http://em.21dtv.com/songs/60074890.mkv +李玉刚-嫦娥(演唱会),http://em.21dtv.com/songs/60074889.mkv +王鸣飞-宠儿,http://em.21dtv.com/songs/60068181.mkv +曾慧+邓志驹-酬恩,http://em.21dtv.com/songs/60012889.mkv +王啸坤-宠儿,http://em.21dtv.com/songs/60012877.mkv +周璇-嫦娥,http://em.21dtv.com/songs/60012294.mkv +孙一璟-嫦娥,http://em.21dtv.com/songs/60012293.mkv +孙丹菲-cry eye,http://em.21dtv.com/songs/60001095.mkv +窦智孔-cool eyes,http://em.21dtv.com/songs/60001030.mkv +王菀之-chotto等等,http://em.21dtv.com/songs/60082123.mkv +杨峰-成都,http://em.21dtv.com/songs/60135396.mkv +本兮-寸断,http://em.21dtv.com/songs/60133781.mkv +刘增艳-成都,http://em.21dtv.com/songs/60133400.mkv +刁寒-迟到,http://em.21dtv.com/songs/60133396.mkv +赵雷-成都,http://em.21dtv.com/songs/60132926.mkv +赵雷-成都,http://em.21dtv.com/songs/60129648.mkv +赵蕾-成都,http://em.21dtv.com/songs/60128435.mkv +申烨-彩蝶,http://em.21dtv.com/songs/60125974.mkv +印子月-冲动,http://em.21dtv.com/songs/60125251.mkv +郭采洁-船碇,http://em.21dtv.com/songs/60118977.mkv +余冰-长大,http://em.21dtv.com/songs/60115690.mkv +倪安东-缠斗,http://em.21dtv.com/songs/60114396.mkv +韦思琪-闯荡,http://em.21dtv.com/songs/60114243.mkv +古巨基-承担,http://em.21dtv.com/songs/60112561.mkv +吴潇玥-承担,http://em.21dtv.com/songs/60111756.mkv +孙楠+丛浩楠-迟到(HD),http://em.21dtv.com/songs/10012771.mkv +蒋大红-闯荡,http://em.21dtv.com/songs/60106250.mkv +黄思婷-彩蝶,http://em.21dtv.com/songs/60102972.mkv +胡夏-沉淀,http://em.21dtv.com/songs/60100399.mkv +许茹芸-承当,http://em.21dtv.com/songs/60092079.mkv +田震-猜度,http://em.21dtv.com/songs/60091775.mkv +李琛+佚名-初冬,http://em.21dtv.com/songs/60091343.mkv +张江-迟到,http://em.21dtv.com/songs/60091132.mkv +吴雨霏-蚕豆,http://em.21dtv.com/songs/60090818.mkv +西域刀郎-传灯,http://em.21dtv.com/songs/60088624.mkv +群星合唱-传递,http://em.21dtv.com/songs/60088472.mkv +G-DRAGON-coup detat,http://em.21dtv.com/songs/60086334.mkv +朴素珍+ELECTROBOYZ-颤抖,http://em.21dtv.com/songs/60082702.mkv +B'Z-冲动,http://em.21dtv.com/songs/60074960.mkv +李雨寿-彩蝶,http://em.21dtv.com/songs/60074828.mkv +伍佳丽-冲动,http://em.21dtv.com/songs/60070594.mkv +张宇轩-彻底,http://em.21dtv.com/songs/60068175.mkv +戊道子-迟钝(演唱会),http://em.21dtv.com/songs/60066918.mkv +陈随意-陈董,http://em.21dtv.com/songs/60066911.mkv +刘美君-蠢动(演唱会),http://em.21dtv.com/songs/60013420.mkv +丁文琪-春倒,http://em.21dtv.com/songs/60013220.mkv +黄安-传灯,http://em.21dtv.com/songs/60013119.mkv +潘玮柏-触动,http://em.21dtv.com/songs/60013089.mkv +佚名-触电,http://em.21dtv.com/songs/60013087.mkv +吴国敬+莫文蔚-触电,http://em.21dtv.com/songs/60013086.mkv +黄宇曛-触电,http://em.21dtv.com/songs/60013085.mkv +陈译贤-触电,http://em.21dtv.com/songs/60013084.mkv +芭比-触电,http://em.21dtv.com/songs/60013083.mkv +S.H.E-触电,http://em.21dtv.com/songs/60013082.mkv +4 IN LOVE-触电,http://em.21dtv.com/songs/60013081.mkv +张克帆-冲动,http://em.21dtv.com/songs/60012852.mkv +张惠妹-冲动,http://em.21dtv.com/songs/60012851.mkv +佚名-冲动,http://em.21dtv.com/songs/60012850.mkv +萧亚轩-冲动,http://em.21dtv.com/songs/60012849.mkv +顾莉雅-冲动,http://em.21dtv.com/songs/60012848.mkv +动力火车-冲动,http://em.21dtv.com/songs/60012847.mkv +蔡健雅-冲动,http://em.21dtv.com/songs/60012846.mkv +张惠妹-冲动(演唱会),http://em.21dtv.com/songs/60012845.mkv +叶倩文-冲动(演唱会),http://em.21dtv.com/songs/60012844.mkv +佚名-斥敌,http://em.21dtv.com/songs/60012798.mkv +侧田-迟钝,http://em.21dtv.com/songs/60012781.mkv +侧田-迟钝(演唱会),http://em.21dtv.com/songs/60012780.mkv +小武-迟到,http://em.21dtv.com/songs/60012779.mkv +张行-迟到(演唱会),http://em.21dtv.com/songs/60012778.mkv +许茹芸-承担,http://em.21dtv.com/songs/60012592.mkv +李霄云-沉淀,http://em.21dtv.com/songs/60012498.mkv +MICHAEL PRICE-crazy dream,http://em.21dtv.com/songs/60001058.mkv +朴树-colourful days,http://em.21dtv.com/songs/60000978.mkv +MAMAS+PAPAS-california dreaming(演唱会),http://em.21dtv.com/songs/60000772.mkv +毅光年组合-长春,http://em.21dtv.com/songs/60135472.mkv +唐伯虎-传承,http://em.21dtv.com/songs/60123777.mkv +张信哲-苍苍,http://em.21dtv.com/songs/60122708.mkv +崔子格-匆匆,http://em.21dtv.com/songs/60122689.mkv +张信哲-苍苍,http://em.21dtv.com/songs/60117716.mkv +刘烨+安娜+音乐之帆合唱团-成长,http://em.21dtv.com/songs/60114423.mkv +蓝奕邦-成长,http://em.21dtv.com/songs/60112213.mkv +慕容晓晓-吃醋,http://em.21dtv.com/songs/60111110.mkv +谢安琪-C餐,http://em.21dtv.com/songs/60107220.mkv +方阡翊-春愁,http://em.21dtv.com/songs/60106891.mkv +家家-潺潺,http://em.21dtv.com/songs/60096837.mkv +李剑青-匆匆,http://em.21dtv.com/songs/60096676.mkv +沈丹丹-吃醋,http://em.21dtv.com/songs/60095207.mkv +袁威-成长,http://em.21dtv.com/songs/60094290.mkv +颜联武-璀灿,http://em.21dtv.com/songs/60093510.mkv +陈山葱-怱怱,http://em.21dtv.com/songs/60093432.mkv +韦明华-痴蚕,http://em.21dtv.com/songs/60088947.mkv +满文军-赤城,http://em.21dtv.com/songs/60088236.mkv +刘明辉-长城,http://em.21dtv.com/songs/60082705.mkv +BROWN EYED GIRLS-cleansing cream,http://em.21dtv.com/songs/60082124.mkv +时光逆转乐队-迟迟,http://em.21dtv.com/songs/60074952.mkv +周艳泓-唱春,http://em.21dtv.com/songs/60074895.mkv +姚雨鑫-常常,http://em.21dtv.com/songs/60074887.mkv +古巨基-初初(演唱会),http://em.21dtv.com/songs/60070598.mkv +T ARA-cry cry,http://em.21dtv.com/songs/60063568.mkv +MOUMOON-chu chu,http://em.21dtv.com/songs/60060779.mkv +徐小凤-长城,http://em.21dtv.com/songs/60057561.mkv +江淑娜-长城,http://em.21dtv.com/songs/60057560.mkv +BEYOND-长城,http://em.21dtv.com/songs/60057559.mkv +黄贯中-长城(演唱会),http://em.21dtv.com/songs/60057558.mkv +BEYOND-长城(演唱会),http://em.21dtv.com/songs/60057557.mkv +颜联武-璀璨,http://em.21dtv.com/songs/60013602.mkv +李健-璀璨(演唱会),http://em.21dtv.com/songs/60013601.mkv +周传雄-匆匆,http://em.21dtv.com/songs/60013480.mkv +佚名-匆匆,http://em.21dtv.com/songs/60013479.mkv +任贤齐-匆匆,http://em.21dtv.com/songs/60013478.mkv +林忆莲-匆匆,http://em.21dtv.com/songs/60013477.mkv +方力申-匆匆,http://em.21dtv.com/songs/60013476.mkv +陈山葱-匆匆,http://em.21dtv.com/songs/60013475.mkv +林忆莲-匆匆(演唱会),http://em.21dtv.com/songs/60013474.mkv +张清芳-纯粹,http://em.21dtv.com/songs/60013385.mkv +许巍-纯粹(演唱会),http://em.21dtv.com/songs/60013384.mkv +尹光-出册(演唱会),http://em.21dtv.com/songs/60012914.mkv +陈小春-臭草,http://em.21dtv.com/songs/60012907.mkv +满文军-赤诚,http://em.21dtv.com/songs/60012799.mkv +林忆莲-痴缠(演唱会),http://em.21dtv.com/songs/60012665.mkv +七郎-吃醋,http://em.21dtv.com/songs/60012655.mkv +陈柏宇-车匙,http://em.21dtv.com/songs/60012461.mkv +陈奕迅-超错,http://em.21dtv.com/songs/60012370.mkv +常石磊-常常,http://em.21dtv.com/songs/60012273.mkv +林俊杰-曹操,http://em.21dtv.com/songs/60012055.mkv +无印良品-猜测,http://em.21dtv.com/songs/60011870.mkv +梁雁翎+蔡济文-猜猜,http://em.21dtv.com/songs/60011866.mkv +TWINS-cuckoo clock,http://em.21dtv.com/songs/60001116.mkv +王羚柔-corner cafe(无原唱),http://em.21dtv.com/songs/60001038.mkv +佚名-corinna corinna,http://em.21dtv.com/songs/60001037.mkv +K.D.LANG-constant craving,http://em.21dtv.com/songs/60001024.mkv +HILARY DUFF-come clean,http://em.21dtv.com/songs/60000987.mkv +NEIL DIAMOND-cherry cherry,http://em.21dtv.com/songs/60000912.mkv +雪警乐团-chasing cars,http://em.21dtv.com/songs/60000908.mkv +柳真-cha cha(演唱会),http://em.21dtv.com/songs/60000891.mkv +THE EVERLY BROTHERS-cathys clown,http://em.21dtv.com/songs/60000873.mkv +LPG-can can,http://em.21dtv.com/songs/60000785.mkv +童唱-cable car,http://em.21dtv.com/songs/60000766.mkv +赵乃吉-崇拜,http://em.21dtv.com/songs/60134257.mkv +林忆莲-崇拜,http://em.21dtv.com/songs/60133871.mkv +胡斌-赤壁,http://em.21dtv.com/songs/60130674.mkv +金小曦-翅膀,http://em.21dtv.com/songs/60127510.mkv +张艺兴+林俊杰-翅膀,http://em.21dtv.com/songs/60123947.mkv +赵斌-朝拜,http://em.21dtv.com/songs/60120977.mkv +胡斌-赤壁,http://em.21dtv.com/songs/60117145.mkv +侃侃-翅膀,http://em.21dtv.com/songs/60116553.mkv +蒋蒋-残兵,http://em.21dtv.com/songs/60106253.mkv +张恋歌-翅膀,http://em.21dtv.com/songs/60100018.mkv +王飞-城堡,http://em.21dtv.com/songs/60098656.mkv +方炯镔-崇拜,http://em.21dtv.com/songs/60096791.mkv +胡海泉+田斯斯-翅膀,http://em.21dtv.com/songs/60095058.mkv +木子烁-come baby,http://em.21dtv.com/songs/60086333.mkv +谭凌风-春别,http://em.21dtv.com/songs/60082744.mkv +洪卓立-翅膀,http://em.21dtv.com/songs/60082727.mkv +李虎-朝拜,http://em.21dtv.com/songs/60082712.mkv +COLDPLAY-charlie brown,http://em.21dtv.com/songs/60082121.mkv +薛恒泰-翅膀,http://em.21dtv.com/songs/60074959.mkv +CEE LO GREEN-cry baby,http://em.21dtv.com/songs/60067866.mkv +林依晨-翅膀,http://em.21dtv.com/songs/60064062.mkv +胡夏-翅膀,http://em.21dtv.com/songs/60062474.mkv +陈妍希-clueless boy,http://em.21dtv.com/songs/60060750.mkv +黄思婷-慈悲,http://em.21dtv.com/songs/60013428.mkv +洪佩谊-窗边,http://em.21dtv.com/songs/60013175.mkv +梁静茹-崇拜,http://em.21dtv.com/songs/60012871.mkv +羽泉-翅膀,http://em.21dtv.com/songs/60012834.mkv +依稀-翅膀,http://em.21dtv.com/songs/60012833.mkv +王心凌-翅膀,http://em.21dtv.com/songs/60012832.mkv +林俊杰-翅膀,http://em.21dtv.com/songs/60012831.mkv +黄奕-翅膀,http://em.21dtv.com/songs/60012830.mkv +伍佰-翅膀(演唱会),http://em.21dtv.com/songs/60012829.mkv +侯强-城堡,http://em.21dtv.com/songs/60012612.mkv +阿爆+BRANDY-城堡,http://em.21dtv.com/songs/60012611.mkv +郑中基-城堡(演唱会),http://em.21dtv.com/songs/60012610.mkv +吴雨霏-潮爆(演唱会),http://em.21dtv.com/songs/60012440.mkv +姜鹏-朝拜,http://em.21dtv.com/songs/60012421.mkv +徐怀钰-chocolate boy,http://em.21dtv.com/songs/60000924.mkv +佚名-california blue,http://em.21dtv.com/songs/60000771.mkv +林葳-错爱,http://em.21dtv.com/songs/60135445.mkv +王菲-尘埃,http://em.21dtv.com/songs/60127210.mkv +田维英-错案,http://em.21dtv.com/songs/60123042.mkv +许魏洲-尘埃,http://em.21dtv.com/songs/60119971.mkv +张伊彤-错爱,http://em.21dtv.com/songs/60112659.mkv +凌希-沉爱,http://em.21dtv.com/songs/60112529.mkv +阿烁-错爱,http://em.21dtv.com/songs/60112337.mkv +王晓敏-宠爱,http://em.21dtv.com/songs/60112105.mkv +刘涛-错爱,http://em.21dtv.com/songs/60110035.mkv +TFBOYS-宠爱,http://em.21dtv.com/songs/60109896.mkv +黄檬-错爱,http://em.21dtv.com/songs/60107375.mkv +陈小宇-长安,http://em.21dtv.com/songs/60107319.mkv +小武-尘埃,http://em.21dtv.com/songs/60104961.mkv +吴超-尘埃,http://em.21dtv.com/songs/60099881.mkv +湘晋-错爱,http://em.21dtv.com/songs/60098603.mkv +刘涛-错爱,http://em.21dtv.com/songs/60096822.mkv +家家-尘埃,http://em.21dtv.com/songs/60096690.mkv +马常宝+李华-炽爱,http://em.21dtv.com/songs/60096559.mkv +孔金照-残爱,http://em.21dtv.com/songs/60094048.mkv +湘晋+湘雨梦-错爱,http://em.21dtv.com/songs/60086506.mkv +泽田-carry along,http://em.21dtv.com/songs/60086332.mkv +阿里郎-错爱,http://em.21dtv.com/songs/60075017.mkv +杨宗纬-初爱,http://em.21dtv.com/songs/60074963.mkv +刘转亮-错爱,http://em.21dtv.com/songs/60070608.mkv +魏晨-尘埃,http://em.21dtv.com/songs/60070584.mkv +张羽-错爱,http://em.21dtv.com/songs/60066932.mkv +庄心妍-错爱,http://em.21dtv.com/songs/60064899.mkv +高林生-错爱,http://em.21dtv.com/songs/60064755.mkv +叶慧婷-错爱(演唱会),http://em.21dtv.com/songs/60064086.mkv +叶慧婷-错爱,http://em.21dtv.com/songs/60061120.mkv +袁咏琳-尘埃,http://em.21dtv.com/songs/60061099.mkv +钟镇涛-错爱,http://em.21dtv.com/songs/60013638.mkv +张栋梁-错爱,http://em.21dtv.com/songs/60013637.mkv +谢言-错爱,http://em.21dtv.com/songs/60013636.mkv +龙千玉-错爱,http://em.21dtv.com/songs/60013635.mkv +江若琳-错爱,http://em.21dtv.com/songs/60013634.mkv +陈淑萍-错爱,http://em.21dtv.com/songs/60013633.mkv +包小柏-错爱,http://em.21dtv.com/songs/60013632.mkv +GIRL FRIENDS-错爱,http://em.21dtv.com/songs/60013631.mkv +江若琳-错爱(演唱会),http://em.21dtv.com/songs/60013630.mkv +徐立-存爱,http://em.21dtv.com/songs/60013611.mkv +浪花兄弟-纯爱,http://em.21dtv.com/songs/60013380.mkv +LITY林天伟+康妲-春爱,http://em.21dtv.com/songs/60013216.mkv +林忆莲-宠爱,http://em.21dtv.com/songs/60012876.mkv +陈百强-宠爱,http://em.21dtv.com/songs/60012875.mkv +陈柏宇-迟爱,http://em.21dtv.com/songs/60012777.mkv +羽泉-尘埃,http://em.21dtv.com/songs/60012487.mkv +佚名-尘埃,http://em.21dtv.com/songs/60012486.mkv +胡杨林-尘埃,http://em.21dtv.com/songs/60012485.mkv +羽泉-尘埃(演唱会),http://em.21dtv.com/songs/60012484.mkv +蔡健雅-尘埃(演唱会),http://em.21dtv.com/songs/60012483.mkv +苏永康-残爱,http://em.21dtv.com/songs/60011986.mkv +马鸣秋-猜爱,http://em.21dtv.com/songs/60011863.mkv +米娜-china ariba(演唱会),http://em.21dtv.com/songs/60000917.mkv +佚名-chances are,http://em.21dtv.com/songs/60000897.mkv +梦炫-尘忞,http://em.21dtv.com/songs/60133899.mkv +韩安旭-不在,http://em.21dtv.com/songs/60127586.mkv +范小倩-变妆,http://em.21dtv.com/songs/60120898.mkv +李霞儿-变装,http://em.21dtv.com/songs/60112767.mkv +朱宇-办证,http://em.21dtv.com/songs/60111148.mkv +泳儿-白纸,http://em.21dtv.com/songs/60092966.mkv +麋先生-巴掌,http://em.21dtv.com/songs/60084872.mkv +黄渤-不醉,http://em.21dtv.com/songs/60074812.mkv +SEXY BODY-boy z,http://em.21dtv.com/songs/60072994.mkv +王栎鑫-暴走,http://em.21dtv.com/songs/60071776.mkv +王中平+韩志贤-保重,http://em.21dtv.com/songs/60063050.mkv +杜德伟-不走,http://em.21dtv.com/songs/60011808.mkv +郑进一-不知,http://em.21dtv.com/songs/60011782.mkv +萧闳仁-不知,http://em.21dtv.com/songs/60011781.mkv +陈乃荣-不再,http://em.21dtv.com/songs/60011726.mkv +庾澄庆-别走,http://em.21dtv.com/songs/60010801.mkv +潘峰-别走,http://em.21dtv.com/songs/60010800.mkv +徐标新-辨踪,http://em.21dtv.com/songs/60010538.mkv +谭咏麟-变奏(演唱会),http://em.21dtv.com/songs/60010533.mkv +石康军-变质,http://em.21dtv.com/songs/60010528.mkv +谭咏麟-编织,http://em.21dtv.com/songs/60010479.mkv +谭咏麟-编织(演唱会),http://em.21dtv.com/songs/60010478.mkv +高向鹏+方瑞娥-保重,http://em.21dtv.com/songs/60010034.mkv +林晓培-宝藏,http://em.21dtv.com/songs/60010007.mkv +办桌二人组-办桌(演唱会),http://em.21dtv.com/songs/60009842.mkv +王力宏-白纸,http://em.21dtv.com/songs/60009763.mkv +江东-边缘,http://em.21dtv.com/songs/60133919.mkv +夏后-半月,http://em.21dtv.com/songs/60125332.mkv +杨晨晖-边缘,http://em.21dtv.com/songs/60120658.mkv +许嵩-不语,http://em.21dtv.com/songs/60119961.mkv +任然-避雨,http://em.21dtv.com/songs/60114987.mkv +李晓杰-保佑,http://em.21dtv.com/songs/60114604.mkv +谢鸣萱-白杨,http://em.21dtv.com/songs/60114066.mkv +陈奕迅-伴游,http://em.21dtv.com/songs/60110615.mkv +刘德华-冰雨(HD),http://em.21dtv.com/songs/10012631.mkv +梁海洋-背影,http://em.21dtv.com/songs/60108638.mkv +曹轩宾-不远,http://em.21dtv.com/songs/60101369.mkv +袁姗姗-不怨,http://em.21dtv.com/songs/60100458.mkv +SHINE-避雨,http://em.21dtv.com/songs/60096839.mkv +哈琳-保佑,http://em.21dtv.com/songs/60096759.mkv +于童-冰雨,http://em.21dtv.com/songs/60090506.mkv +黄小桢-抱怨,http://em.21dtv.com/songs/60089038.mkv +周杰伦+雪糕+小麦+曾志伟+CINDY+袁咏琳-波爷,http://em.21dtv.com/songs/60082638.mkv +河图-白衣,http://em.21dtv.com/songs/60082582.mkv +陈萌-白夜,http://em.21dtv.com/songs/60080905.mkv +多杰邓珠-伴月,http://em.21dtv.com/songs/60080707.mkv +周杰伦-波爷,http://em.21dtv.com/songs/60080384.mkv +FLOWER-broken yesterday,http://em.21dtv.com/songs/60073010.mkv +家入レオ-bless you,http://em.21dtv.com/songs/60072977.mkv +刘奇梅-不要,http://em.21dtv.com/songs/60062670.mkv +萧亚轩-不远,http://em.21dtv.com/songs/60011703.mkv +1983-不夜,http://em.21dtv.com/songs/60011666.mkv +郭峰-不要,http://em.21dtv.com/songs/60011517.mkv +张敬轩+王菀之-不要(演唱会),http://em.21dtv.com/songs/60011516.mkv +郭峰-不要(演唱会),http://em.21dtv.com/songs/60011515.mkv +梁汉文-波友,http://em.21dtv.com/songs/60010895.mkv +绿风演唱组-兵谣,http://em.21dtv.com/songs/60010872.mkv +伍佰-冰雨,http://em.21dtv.com/songs/60010860.mkv +刘德华-冰雨,http://em.21dtv.com/songs/60010859.mkv +刘德华-冰雨(演唱会),http://em.21dtv.com/songs/60010858.mkv +李翊君-冰雨(演唱会),http://em.21dtv.com/songs/60010857.mkv +[Group] +groupName=十六万歌曲MV等 - 04 +苏慧伦-表演,http://em.21dtv.com/songs/60010554.mkv +丁汀-边缘,http://em.21dtv.com/songs/60010466.mkv +詹雅雯-避雨,http://em.21dtv.com/songs/60010454.mkv +袁咏琳-笨鱼,http://em.21dtv.com/songs/60010344.mkv +张信哲-背影,http://em.21dtv.com/songs/60010269.mkv +詹曼铃-背影,http://em.21dtv.com/songs/60010268.mkv +易欣-背影,http://em.21dtv.com/songs/60010267.mkv +佚名-背影,http://em.21dtv.com/songs/60010266.mkv +黄磊-背影,http://em.21dtv.com/songs/60010265.mkv +黄大炜-背影,http://em.21dtv.com/songs/60010264.mkv +安迪-背影,http://em.21dtv.com/songs/60010263.mkv +K ONE-背影,http://em.21dtv.com/songs/60010262.mkv +伍佰-暴雨,http://em.21dtv.com/songs/60010089.mkv +麻吉弟弟-报应,http://em.21dtv.com/songs/60010050.mkv +刘欢-报应,http://em.21dtv.com/songs/60010049.mkv +高慧君-报应,http://em.21dtv.com/songs/60010048.mkv +梁咏琪-白蚁,http://em.21dtv.com/songs/60009750.mkv +李逸朗+蒋雅文-白眼,http://em.21dtv.com/songs/60009745.mkv +东方神起-beautiful you,http://em.21dtv.com/songs/60000509.mkv +吴业坤-百姓,http://em.21dtv.com/songs/60121487.mkv +刘思涵-半醒,http://em.21dtv.com/songs/60099807.mkv +严当当-百姓,http://em.21dtv.com/songs/60095256.mkv +何韵诗-冰心,http://em.21dtv.com/songs/60092268.mkv +徐颢菲-半夏,http://em.21dtv.com/songs/60087889.mkv +合唱-报喜,http://em.21dtv.com/songs/60087532.mkv +陈慧琳-报喜(演唱会),http://em.21dtv.com/songs/60082594.mkv +刘若英-不朽,http://em.21dtv.com/songs/60079959.mkv +音频怪物-不朽,http://em.21dtv.com/songs/60074777.mkv +欧育齐-不想,http://em.21dtv.com/songs/60074766.mkv +黄思婷-搬戏,http://em.21dtv.com/songs/60069239.mkv +石梅-变心,http://em.21dtv.com/songs/60065848.mkv +陈慧琳-报喜,http://em.21dtv.com/songs/60063964.mkv +小曾-布鞋,http://em.21dtv.com/songs/60011830.mkv +小曾-布鞋(演唱会),http://em.21dtv.com/songs/60011829.mkv +堂娜-不醒,http://em.21dtv.com/songs/60011500.mkv +黄鸿升-不屑,http://em.21dtv.com/songs/60011496.mkv +郑源-不想,http://em.21dtv.com/songs/60011450.mkv +晓枫-不想,http://em.21dtv.com/songs/60011449.mkv +戴佩妮-不想,http://em.21dtv.com/songs/60011448.mkv +陈淑桦-不想,http://em.21dtv.com/songs/60011447.mkv +王羚柔-不想(无原唱),http://em.21dtv.com/songs/60011446.mkv +金悦-兵心,http://em.21dtv.com/songs/60010871.mkv +阿振-兵心,http://em.21dtv.com/songs/60010870.mkv +S.H.E-冰箱,http://em.21dtv.com/songs/60010855.mkv +任贤齐-别想,http://em.21dtv.com/songs/60010741.mkv +王冰洋-变心,http://em.21dtv.com/songs/60010521.mkv +李玟-变心,http://em.21dtv.com/songs/60010520.mkv +方瑞娥-变心,http://em.21dtv.com/songs/60010519.mkv +陈慧娴-变心,http://em.21dtv.com/songs/60010518.mkv +曾心梅-变心,http://em.21dtv.com/songs/60010517.mkv +卓依婷-背心,http://em.21dtv.com/songs/60010260.mkv +陈明真-背心,http://em.21dtv.com/songs/60010259.mkv +张学友-抱雪(无原唱),http://em.21dtv.com/songs/60010072.mkv +林姗-扮戏,http://em.21dtv.com/songs/60009935.mkv +久登-扮戏,http://em.21dtv.com/songs/60009934.mkv +佚名-扮戏(无原唱),http://em.21dtv.com/songs/60009933.mkv +万芳-半袖(演唱会),http://em.21dtv.com/songs/60009904.mkv +傅仕伦+董一明-把戏(无原唱),http://em.21dtv.com/songs/60009595.mkv +和汇慧+周诗雅-不忘,http://em.21dtv.com/songs/60122611.mkv +冯家妹-不忘,http://em.21dtv.com/songs/60118372.mkv +孙露-冰吻,http://em.21dtv.com/songs/60115801.mkv +陆毅+张俪-不忘,http://em.21dtv.com/songs/60114855.mkv +徐浩-臂弯,http://em.21dtv.com/songs/60113523.mkv +刘若英-傍晚,http://em.21dtv.com/songs/60110039.mkv +汪小敏-不枉,http://em.21dtv.com/songs/60107863.mkv +胡琳-被窝,http://em.21dtv.com/songs/60107143.mkv +罗文-把握(无原唱),http://em.21dtv.com/songs/60093027.mkv +姚贝娜-把握,http://em.21dtv.com/songs/60081526.mkv +何晟铭-不问,http://em.21dtv.com/songs/60080547.mkv +孙露-冰吻,http://em.21dtv.com/songs/60074706.mkv +西城男孩-beautiful world,http://em.21dtv.com/songs/60072946.mkv +晖倪-包围,http://em.21dtv.com/songs/60071774.mkv +冷漠-包围,http://em.21dtv.com/songs/60062578.mkv +佚名-不问,http://em.21dtv.com/songs/60011436.mkv +叶权泉-冰吻,http://em.21dtv.com/songs/60010854.mkv +王键-冰吻,http://em.21dtv.com/songs/60010853.mkv +金悦-冰吻,http://em.21dtv.com/songs/60010852.mkv +何杰-冰吻,http://em.21dtv.com/songs/60010851.mkv +张学友-别问,http://em.21dtv.com/songs/60010727.mkv +张学友-别问(演唱会),http://em.21dtv.com/songs/60010726.mkv +苏打绿-包围,http://em.21dtv.com/songs/60009955.mkv +郑中基-搬屋(演唱会),http://em.21dtv.com/songs/60009839.mkv +佚名-把握(无原唱),http://em.21dtv.com/songs/60009592.mkv +MR.MISTER-broken wings,http://em.21dtv.com/songs/60000719.mkv +佚名-boogie wonderland,http://em.21dtv.com/songs/60000647.mkv +DOOBIE BROTHERS-black water,http://em.21dtv.com/songs/60000601.mkv +LARA FABIAN-broken vow,http://em.21dtv.com/songs/60000718.mkv +佚名-blue velvet,http://em.21dtv.com/songs/60000635.mkv +CHRISTINA PERRI-Burning Gold,http://em.21dtv.com/songs/60099650.mkv +NE-YO-burnin up,http://em.21dtv.com/songs/60070311.mkv +MARIO+GUCCI MANE-break up,http://em.21dtv.com/songs/60063548.mkv +BRAVE BROTHERS-break up,http://em.21dtv.com/songs/60060775.mkv +TREY SONGZ-bottoms up,http://em.21dtv.com/songs/60000669.mkv +陈凯欣-不同,http://em.21dtv.com/songs/60133036.mkv +汪起正-备胎,http://em.21dtv.com/songs/60131601.mkv +王建房-北田,http://em.21dtv.com/songs/60130583.mkv +简弘亦-白瞳,http://em.21dtv.com/songs/60127262.mkv +小瑜-白兔,http://em.21dtv.com/songs/60120474.mkv +徐佳莹-不痛,http://em.21dtv.com/songs/60119563.mkv +西狂-摆脱,http://em.21dtv.com/songs/60116238.mkv +宋飞-备胎,http://em.21dtv.com/songs/60099958.mkv +泳儿-表态,http://em.21dtv.com/songs/60099370.mkv +樊少华-备胎,http://em.21dtv.com/songs/60096740.mkv +梁晓雪+徐曼-不停,http://em.21dtv.com/songs/60094182.mkv +萧亚轩-拜托,http://em.21dtv.com/songs/60091988.mkv +臭皮匠-别逃,http://em.21dtv.com/songs/60091912.mkv +吴佩珊-不同,http://em.21dtv.com/songs/60087553.mkv +CLOWN-不同,http://em.21dtv.com/songs/60087182.mkv +樊凡-不痛,http://em.21dtv.com/songs/60074762.mkv +谢金燕-不痛,http://em.21dtv.com/songs/60068142.mkv +AFI-beautiful thieves,http://em.21dtv.com/songs/60060763.mkv +周笔畅-不痛,http://em.21dtv.com/songs/60011423.mkv +张韶涵-不痛,http://em.21dtv.com/songs/60011422.mkv +孙燕姿-不同(演唱会),http://em.21dtv.com/songs/60011420.mkv +林宥嘉-病态,http://em.21dtv.com/songs/60010880.mkv +陈洁仪-变天(演唱会),http://em.21dtv.com/songs/60010513.mkv +熊天平-摆脱,http://em.21dtv.com/songs/60009808.mkv +林玉婷-摆脱,http://em.21dtv.com/songs/60009807.mkv +亚东-白塔,http://em.21dtv.com/songs/60009735.mkv +亚东-白塔(演唱会),http://em.21dtv.com/songs/60009734.mkv +容祖儿-be true(演唱会),http://em.21dtv.com/songs/60000476.mkv +BLOODHOUND GANG-bad touch(无原唱),http://em.21dtv.com/songs/60000445.mkv +钟纯妍-别说,http://em.21dtv.com/songs/60135860.mkv +吴陌川-不是,http://em.21dtv.com/songs/60135029.mkv +钟纯妍-别说,http://em.21dtv.com/songs/60134361.mkv +唐涛-本色,http://em.21dtv.com/songs/60128926.mkv +大庆小芳-白蛇,http://em.21dtv.com/songs/60127884.mkv +谢和弦-本事,http://em.21dtv.com/songs/60127401.mkv +李荣浩-不说,http://em.21dtv.com/songs/60127051.mkv +关诗敏-别说,http://em.21dtv.com/songs/60126619.mkv +郑世豪-伴随,http://em.21dtv.com/songs/60126267.mkv +关诗敏-别说,http://em.21dtv.com/songs/60125156.mkv +岩宰仑-悲伤,http://em.21dtv.com/songs/60124805.mkv +吴思贤-别说,http://em.21dtv.com/songs/60123745.mkv +郑世豪-伴随,http://em.21dtv.com/songs/60123232.mkv +肖雪-白蛇,http://em.21dtv.com/songs/60122033.mkv +DoubleX2-变生,http://em.21dtv.com/songs/60121237.mkv +王丹-伴随,http://em.21dtv.com/songs/60115288.mkv +苏宇舟-不说,http://em.21dtv.com/songs/60112910.mkv +王亚东-奔三,http://em.21dtv.com/songs/60110374.mkv +张惠妹-不睡,http://em.21dtv.com/songs/60109306.mkv +吴炜-不是,http://em.21dtv.com/songs/60104878.mkv +翁立友-表示,http://em.21dtv.com/songs/60100392.mkv +大张伟-倍爽,http://em.21dtv.com/songs/60098224.mkv +乱弹阿翔-冰山,http://em.21dtv.com/songs/60096701.mkv +羽泉-冰水,http://em.21dtv.com/songs/60091871.mkv +慕容晓晓-不是,http://em.21dtv.com/songs/60082663.mkv +T-ARA-bunny style,http://em.21dtv.com/songs/60082115.mkv +杨坤-beautiful song(演唱会),http://em.21dtv.com/songs/60082090.mkv +少女部落格-be strong,http://em.21dtv.com/songs/60082087.mkv +彭湘淇-变身,http://em.21dtv.com/songs/60080245.mkv +KACI BATTAGLIA-body shots,http://em.21dtv.com/songs/60072984.mkv +TAMIA-beautiful surprise,http://em.21dtv.com/songs/60072945.mkv +SUPER GIRLS-be strong,http://em.21dtv.com/songs/60072931.mkv +LUPE FIASCO+GUY SEBASTIAN-battle scars,http://em.21dtv.com/songs/60072927.mkv +ALL TIME LOW-backseat serenade,http://em.21dtv.com/songs/60072918.mkv +蔡云江-baby stay,http://em.21dtv.com/songs/60072913.mkv +水树奈奈-bright stream,http://em.21dtv.com/songs/60070310.mkv +BIRDMAN+RICK ROSS-born stunna,http://em.21dtv.com/songs/60070307.mkv +任和-不舍,http://em.21dtv.com/songs/60068138.mkv +COMMON-blue sky,http://em.21dtv.com/songs/60065553.mkv +DJ MILLER-between sundays,http://em.21dtv.com/songs/60065549.mkv +陈瑞-别思,http://em.21dtv.com/songs/60063981.mkv +陈奕迅-baby song,http://em.21dtv.com/songs/60063533.mkv +狄易达-半死,http://em.21dtv.com/songs/60061041.mkv +丁文琪-不说,http://em.21dtv.com/songs/60011397.mkv +陈奕迅-不睡,http://em.21dtv.com/songs/60011396.mkv +董事长乐团-不爽,http://em.21dtv.com/songs/60011395.mkv +李静如-不舍,http://em.21dtv.com/songs/60011349.mkv +谢霆锋-不散,http://em.21dtv.com/songs/60011345.mkv +蔡依林-捕手,http://em.21dtv.com/songs/60010950.mkv +陈慧琳-冰室(演唱会),http://em.21dtv.com/songs/60010844.mkv +陈冠蒲-别说,http://em.21dtv.com/songs/60010688.mkv +郭富城-别说(演唱会),http://em.21dtv.com/songs/60010687.mkv +赵默-变数,http://em.21dtv.com/songs/60010511.mkv +佚名-本事,http://em.21dtv.com/songs/60010330.mkv +童唱-本事,http://em.21dtv.com/songs/60010329.mkv +林忆莲-本色,http://em.21dtv.com/songs/60010328.mkv +林忆莲-本色(演唱会),http://em.21dtv.com/songs/60010327.mkv +马条-奔四,http://em.21dtv.com/songs/60010316.mkv +陈淑芳-拜神,http://em.21dtv.com/songs/60009824.mkv +本兮-白色,http://em.21dtv.com/songs/60009703.mkv +佚名-brown sugar,http://em.21dtv.com/songs/60000722.mkv +JAMES MORRISON+NELLY-broken string,http://em.21dtv.com/songs/60000717.mkv +ALESHA DIXON-breathe slow,http://em.21dtv.com/songs/60000705.mkv +李小璐-blue sky,http://em.21dtv.com/songs/60000631.mkv +WILLIE NELSON-blue skies,http://em.21dtv.com/songs/60000630.mkv +MADONNA-bedtime story,http://em.21dtv.com/songs/60000533.mkv +佚名-beautiful sunday,http://em.21dtv.com/songs/60000508.mkv +仙杜拉-beautiful sunday(演唱会),http://em.21dtv.com/songs/60000507.mkv +MADONNA-beautiful stranger,http://em.21dtv.com/songs/60000506.mkv +JESSE MCCARTNEY-beautiful soul,http://em.21dtv.com/songs/60000505.mkv +佚名-back stabbers,http://em.21dtv.com/songs/60000428.mkv +张凌枫-baby sorry,http://em.21dtv.com/songs/60000411.mkv +快女群星-baby sister,http://em.21dtv.com/songs/60000410.mkv +李龙-BREATHE EASY,http://em.21dtv.com/songs/60096602.mkv +赵旋善-般若,http://em.21dtv.com/songs/60134267.mkv +黄明志-病人,http://em.21dtv.com/songs/60128634.mkv +蔡旻佑-不如,http://em.21dtv.com/songs/60118889.mkv +曾一鸣-别人,http://em.21dtv.com/songs/60087956.mkv +李菓-包容,http://em.21dtv.com/songs/60084884.mkv +HOOSIERS-bumpy ride,http://em.21dtv.com/songs/60073017.mkv +KATY B-broken record,http://em.21dtv.com/songs/60073009.mkv +吴莫愁+陶虹旭-bad romance,http://em.21dtv.com/songs/60070298.mkv +李果-包容,http://em.21dtv.com/songs/60068100.mkv +SOUNDGARDEN-black rain,http://em.21dtv.com/songs/60060769.mkv +LADY GAGA-bad romance(演唱会),http://em.21dtv.com/songs/60060761.mkv +迪克牛仔-不忍,http://em.21dtv.com/songs/60011317.mkv +小鸣-别人,http://em.21dtv.com/songs/60010674.mkv +刘若英-别人,http://em.21dtv.com/songs/60010673.mkv +郑源-包容,http://em.21dtv.com/songs/60009954.mkv +于台烟-包容,http://em.21dtv.com/songs/60009953.mkv +佚名-包容,http://em.21dtv.com/songs/60009952.mkv +黄思婷-包容,http://em.21dtv.com/songs/60009951.mkv +FEEDER-buck rogers,http://em.21dtv.com/songs/60000725.mkv +佚名-bohemian rhapsody,http://em.21dtv.com/songs/60000640.mkv +韩佳伦-抱歉,http://em.21dtv.com/songs/60135979.mkv +Connie(吕莘)-标签,http://em.21dtv.com/songs/60134658.mkv +孙伟博-抱歉,http://em.21dtv.com/songs/60133555.mkv +许志安-表情,http://em.21dtv.com/songs/60126186.mkv +许志安-表情,http://em.21dtv.com/songs/60119967.mkv +胡杰夕-抱歉,http://em.21dtv.com/songs/60087117.mkv +高进-悲曲,http://em.21dtv.com/songs/60074640.mkv +王羽臣-抱歉,http://em.21dtv.com/songs/60066859.mkv +胡杰夕-抱歉(舞曲版),http://em.21dtv.com/songs/60066858.mkv +张健-冰期,http://em.21dtv.com/songs/60010836.mkv +刘德华-抱歉,http://em.21dtv.com/songs/60010069.mkv +李圣杰-抱歉,http://em.21dtv.com/songs/60010068.mkv +雨宗林-不配,http://em.21dtv.com/songs/60134431.mkv +李玉刚+杨树林-奔跑,http://em.21dtv.com/songs/60133819.mkv +紫炫-背叛,http://em.21dtv.com/songs/60120845.mkv +Just-不怕,http://em.21dtv.com/songs/60124914.mkv +李敏镐+羽 泉-奔跑,http://em.21dtv.com/songs/60124070.mkv +羽泉-奔跑,http://em.21dtv.com/songs/60113949.mkv +鲍国-北漂,http://em.21dtv.com/songs/60110718.mkv +羽泉-奔跑,http://em.21dtv.com/songs/60096440.mkv +王大文-鞭炮,http://em.21dtv.com/songs/60096395.mkv +康康-北漂,http://em.21dtv.com/songs/60087777.mkv +储毅-奔跑,http://em.21dtv.com/songs/60084903.mkv +黑豹乐队-奔跑(演唱会),http://em.21dtv.com/songs/60084902.mkv +林一峰-抱泡,http://em.21dtv.com/songs/60082592.mkv +CIARA-body party,http://em.21dtv.com/songs/60082107.mkv +EXO-M-black pearl,http://em.21dtv.com/songs/60082100.mkv +邓子霆-背叛,http://em.21dtv.com/songs/60080120.mkv +羽泉+邓超-奔跑),http://em.21dtv.com/songs/60074659.mkv +泫雅-bubble pop,http://em.21dtv.com/songs/60073015.mkv +CHRIS BROWN+BENNY BENASSI-beautiful people,http://em.21dtv.com/songs/60072944.mkv +杨宗纬-背叛,http://em.21dtv.com/songs/60066863.mkv +弦子-不怕,http://em.21dtv.com/songs/60064004.mkv +海浪-背叛,http://em.21dtv.com/songs/60062417.mkv +陈以桐-背叛,http://em.21dtv.com/songs/60062293.mkv +萧亚轩-不配,http://em.21dtv.com/songs/60011294.mkv +佚名-别怕,http://em.21dtv.com/songs/60010634.mkv +王浩信-别怕,http://em.21dtv.com/songs/60010633.mkv +黄征+羽泉-奔跑,http://em.21dtv.com/songs/60010315.mkv +张惠妹-奔跑(演唱会),http://em.21dtv.com/songs/60010314.mkv +郑秀文-背叛,http://em.21dtv.com/songs/60010251.mkv +伍佰-背叛,http://em.21dtv.com/songs/60010250.mkv +曹格-背叛,http://em.21dtv.com/songs/60010249.mkv +张信哲-背叛(演唱会),http://em.21dtv.com/songs/60010248.mkv +陈星-北漂,http://em.21dtv.com/songs/60010232.mkv +KERI HILSON-breaking point,http://em.21dtv.com/songs/60000696.mkv +PUSSYCAT DOLLS-bottle pop,http://em.21dtv.com/songs/60000668.mkv +梁汉文-big one(演唱会),http://em.21dtv.com/songs/60082099.mkv +黒木メイサ-breeze out,http://em.21dtv.com/songs/60063550.mkv +温力铭-beutiful onederful,http://em.21dtv.com/songs/60063540.mkv +阿信-不ok,http://em.21dtv.com/songs/60010955.mkv +李玟-break out(演唱会),http://em.21dtv.com/songs/60000689.mkv +黄荻钧-半年,http://em.21dtv.com/songs/60123407.mkv +权振东-笨鸟,http://em.21dtv.com/songs/60118656.mkv +郑少秋-拜年,http://em.21dtv.com/songs/60093283.mkv +曾文-把你,http://em.21dtv.com/songs/60091280.mkv +张继聪-白鸟,http://em.21dtv.com/songs/60091147.mkv +金志文-八年,http://em.21dtv.com/songs/60082567.mkv +麦莎乐队-笨鸟,http://em.21dtv.com/songs/60080238.mkv +彭炽权+黄伟香-拜年,http://em.21dtv.com/songs/60074607.mkv +BEAST-beautiful night,http://em.21dtv.com/songs/60069057.mkv +徐佳莹-不难,http://em.21dtv.com/songs/60066883.mkv +张智霖-冧爆你(演唱会),http://em.21dtv.com/songs/60064564.mkv +卓依婷-拜年,http://em.21dtv.com/songs/60009823.mkv +群星-拜年,http://em.21dtv.com/songs/60009822.mkv +R.TEMPERTON-boogie nights(无原唱),http://em.21dtv.com/songs/60000646.mkv +DEEP PURPLE-black night,http://em.21dtv.com/songs/60000599.mkv +佚名-beautiful noise,http://em.21dtv.com/songs/60000504.mkv +王为念-爸妈,http://em.21dtv.com/songs/60129379.mkv +梁剑东-爸妈,http://em.21dtv.com/songs/60119727.mkv +田尊铭-爸妈,http://em.21dtv.com/songs/60115317.mkv +徐良+林凡-帮忙,http://em.21dtv.com/songs/60108522.mkv +颜伟-奔忙,http://em.21dtv.com/songs/60107355.mkv +洪进英-Boogie Man,http://em.21dtv.com/songs/60099376.mkv +伍佰-不满,http://em.21dtv.com/songs/60090581.mkv +大哲-表妹,http://em.21dtv.com/songs/60084906.mkv +吴克羣-baby maybe,http://em.21dtv.com/songs/60084693.mkv +晓华-besame mucho(演唱会),http://em.21dtv.com/songs/60082095.mkv +ROBYN-be mine,http://em.21dtv.com/songs/60082086.mkv +汪妤凌-背面,http://em.21dtv.com/songs/60080729.mkv +KAT.TUN-不灭のスクラム,http://em.21dtv.com/songs/60074745.mkv +张悬-不灭,http://em.21dtv.com/songs/60074744.mkv +PINK-blow me,http://em.21dtv.com/songs/60072980.mkv +陈明-better man),http://em.21dtv.com/songs/60072965.mkv +苏姗-besame mucho(演唱会),http://em.21dtv.com/songs/60072961.mkv +YOLANDA BE COOL-before midnight,http://em.21dtv.com/songs/60072956.mkv +KIP MOORE-beer money,http://em.21dtv.com/songs/60072955.mkv +薛凯琪-better me,http://em.21dtv.com/songs/60067857.mkv +梁汉文+24HERBS-big man,http://em.21dtv.com/songs/60065551.mkv +M.I.C.男团-半梦,http://em.21dtv.com/songs/60063959.mkv +MIC男团-半梦,http://em.21dtv.com/songs/60062111.mkv +INFINITE-be mine,http://em.21dtv.com/songs/60062047.mkv +范玮琪-不眠,http://em.21dtv.com/songs/60011239.mkv +方佩华+孙徐春-别梅,http://em.21dtv.com/songs/60010632.mkv +古天乐-杯面,http://em.21dtv.com/songs/60010100.mkv +张蓉蓉-薄命,http://em.21dtv.com/songs/60009961.mkv +蓝琪儿-白马,http://em.21dtv.com/songs/60009687.mkv +佚名-blue moon,http://em.21dtv.com/songs/60000628.mkv +D.BARTHOLOMEW+A.DOMI-blue monday(无原唱),http://em.21dtv.com/songs/60000627.mkv +林忆莲-better man,http://em.21dtv.com/songs/60000571.mkv +ROBBIE WILLIAMS-better man,http://em.21dtv.com/songs/60000570.mkv +谢霆锋+陈奕迅-better man(演唱会),http://em.21dtv.com/songs/60000569.mkv +林忆莲-better man(演唱会),http://em.21dtv.com/songs/60000568.mkv +ROBBIE WILLIAMS-better man(演唱会),http://em.21dtv.com/songs/60000567.mkv +佚名-besame mucho,http://em.21dtv.com/songs/60000554.mkv +BABY MONKIZ-baby monkiz,http://em.21dtv.com/songs/60000408.mkv +JULIE-Black Magic,http://em.21dtv.com/songs/60099665.mkv +FRIPSIDE-Black Bullet,http://em.21dtv.com/songs/60100722.mkv +小肥-伯乐,http://em.21dtv.com/songs/60123856.mkv +梁博-变了,http://em.21dtv.com/songs/60116064.mkv +山野-本来,http://em.21dtv.com/songs/60115133.mkv +王建杰-钹链,http://em.21dtv.com/songs/60114683.mkv +香香-白鹭,http://em.21dtv.com/songs/60109743.mkv +李荣浩-不留,http://em.21dtv.com/songs/60109438.mkv +刘若英-半路,http://em.21dtv.com/songs/60104842.mkv +方大同-巴黎,http://em.21dtv.com/songs/60102278.mkv +祁哲西-变了,http://em.21dtv.com/songs/60100338.mkv +JLS-Billion Lights,http://em.21dtv.com/songs/60099004.mkv +黄义达-保留,http://em.21dtv.com/songs/60095238.mkv +朱桦-别离,http://em.21dtv.com/songs/60089333.mkv +薛恒泰-比例,http://em.21dtv.com/songs/60088614.mkv +金岩-伴侣,http://em.21dtv.com/songs/60086450.mkv +UNION J-beautiful life,http://em.21dtv.com/songs/60086325.mkv +赖伟锋-不赖,http://em.21dtv.com/songs/60084926.mkv +游鸿明-本来,http://em.21dtv.com/songs/60082617.mkv +山野-本来,http://em.21dtv.com/songs/60082616.mkv +ROBIN THICKE-blurred lines,http://em.21dtv.com/songs/60082106.mkv +CNBLUE-blind love,http://em.21dtv.com/songs/60082103.mkv +金志文-Beautiful Light,http://em.21dtv.com/songs/60081647.mkv +萱萱-Bleeding Love,http://em.21dtv.com/songs/60081512.mkv +文夏-悲恋,http://em.21dtv.com/songs/60078013.mkv +紫薇-bling love,http://em.21dtv.com/songs/60072978.mkv +陈法拉-beautiful life,http://em.21dtv.com/songs/60072943.mkv +ZE A-beautiful lady,http://em.21dtv.com/songs/60072942.mkv +大嘴巴-beautiful luv,http://em.21dtv.com/songs/60071574.mkv +福山雅治-beautiful life,http://em.21dtv.com/songs/60071573.mkv +赵小兵-白领,http://em.21dtv.com/songs/60065834.mkv +徐良-不良,http://em.21dtv.com/songs/60064001.mkv +郭静-本来,http://em.21dtv.com/songs/60063972.mkv +泳儿-爆了(演唱会),http://em.21dtv.com/songs/60063966.mkv +徐千雅-半路,http://em.21dtv.com/songs/60063958.mkv +QUEEN-body language,http://em.21dtv.com/songs/60063543.mkv +林峰-baby lady(演唱会),http://em.21dtv.com/songs/60062633.mkv +古巨基-爆了,http://em.21dtv.com/songs/60062396.mkv +古巨基-爆了(演唱会),http://em.21dtv.com/songs/60062395.mkv +TINCHY STRYDER+PIXIE LOTT-bright lights,http://em.21dtv.com/songs/60029427.mkv +王菲-不留,http://em.21dtv.com/songs/60011234.mkv +李炳辰-不留,http://em.21dtv.com/songs/60011233.mkv +林宥嘉-伯乐,http://em.21dtv.com/songs/60010922.mkv +朱茵-玻璃,http://em.21dtv.com/songs/60010897.mkv +辛晓琪-玻璃,http://em.21dtv.com/songs/60010896.mkv +堂娜-别恋,http://em.21dtv.com/songs/60010630.mkv +张学友-别恋(演唱会),http://em.21dtv.com/songs/60010629.mkv +张宇-别离,http://em.21dtv.com/songs/60010621.mkv +动静乐团-变脸,http://em.21dtv.com/songs/60010505.mkv +陈小涛-变脸,http://em.21dtv.com/songs/60010504.mkv +陈琳-变脸,http://em.21dtv.com/songs/60010503.mkv +赵薇-变了,http://em.21dtv.com/songs/60010497.mkv +王筝-壁炉,http://em.21dtv.com/songs/60010446.mkv +达明一派-崩裂(演唱会),http://em.21dtv.com/songs/60010346.mkv +同恩-本来,http://em.21dtv.com/songs/60010324.mkv +BADA-卑恋,http://em.21dtv.com/songs/60010106.mkv +钟舒漫-堡垒,http://em.21dtv.com/songs/60010037.mkv +钟舒漫-堡垒(演唱会),http://em.21dtv.com/songs/60010036.mkv +周迅-伴侣,http://em.21dtv.com/songs/60009918.mkv +罗大佑-伴侣(演唱会),http://em.21dtv.com/songs/60009916.mkv +黄凯芹-伴侣(演唱会),http://em.21dtv.com/songs/60009915.mkv +张卫健-伴郎(演唱会),http://em.21dtv.com/songs/60009914.mkv +薛凯琪-半路,http://em.21dtv.com/songs/60009879.mkv +旅行团-八零,http://em.21dtv.com/songs/60009476.mkv +LEONA LEWIS-bleeding love,http://em.21dtv.com/songs/60000609.mkv +蔡健雅-beautiful love,http://em.21dtv.com/songs/60000503.mkv +容祖儿-beautiful love(演唱会),http://em.21dtv.com/songs/60000502.mkv +佚名-beautiful life,http://em.21dtv.com/songs/60000501.mkv +ACE OF BASE-beautiful life,http://em.21dtv.com/songs/60000500.mkv +同恩-beautiful lie,http://em.21dtv.com/songs/60000499.mkv +BEYONCE+SHAKIRA-beautiful liar,http://em.21dtv.com/songs/60000498.mkv +佚名-baby love,http://em.21dtv.com/songs/60000407.mkv +NICOLE SCHERZINGER-baby love,http://em.21dtv.com/songs/60000406.mkv +李晶-贝壳,http://em.21dtv.com/songs/60129231.mkv +王若桐-别哭,http://em.21dtv.com/songs/60128237.mkv +三木科-半空,http://em.21dtv.com/songs/60108263.mkv +杜歌-崩溃,http://em.21dtv.com/songs/60106962.mkv +徐若萱-贝壳,http://em.21dtv.com/songs/60089887.mkv +赵凯-不哭,http://em.21dtv.com/songs/60088695.mkv +郑伟斌-不哭,http://em.21dtv.com/songs/60084924.mkv +蔡献华-不哭,http://em.21dtv.com/songs/60082653.mkv +梁咏琪-butterfly kisses,http://em.21dtv.com/songs/60067861.mkv +蓝雨-崩溃,http://em.21dtv.com/songs/60062568.mkv +王心凌-不哭,http://em.21dtv.com/songs/60061066.mkv +周蕙-不哭,http://em.21dtv.com/songs/60011213.mkv +林晓培-不哭,http://em.21dtv.com/songs/60011212.mkv +侯旭-不哭,http://em.21dtv.com/songs/60011211.mkv +张清芳-冰块,http://em.21dtv.com/songs/60010829.mkv +郑中基-别哭,http://em.21dtv.com/songs/60010598.mkv +江美琪-别哭(演唱会),http://em.21dtv.com/songs/60010596.mkv +佚名-崩溃(无原唱),http://em.21dtv.com/songs/60010345.mkv +ASOS-贝壳(无原唱),http://em.21dtv.com/songs/60010237.mkv +郑子威-编剧,http://em.21dtv.com/songs/60132990.mkv +陈势安-败将,http://em.21dtv.com/songs/60128518.mkv +孙楠-北京,http://em.21dtv.com/songs/60111809.mkv +神话-标记,http://em.21dtv.com/songs/60110437.mkv +郦华-边界,http://em.21dtv.com/songs/60106330.mkv +高向鹏-伴酒,http://em.21dtv.com/songs/60100657.mkv +孙蓝-补救,http://em.21dtv.com/songs/60099931.mkv +汪峰-边界,http://em.21dtv.com/songs/60099360.mkv +傲艺-绊君,http://em.21dtv.com/songs/60096751.mkv +孙燕姿-奔交,http://em.21dtv.com/songs/60089239.mkv +DIZZEE RASCAL-bassline junkie,http://em.21dtv.com/songs/60072926.mkv +TWINS-绑架,http://em.21dtv.com/songs/60066852.mkv +LANA DEL REY-blue jeans,http://em.21dtv.com/songs/60066024.mkv +樊凡-搬家,http://em.21dtv.com/songs/60065837.mkv +杨丞琳-不见(演唱会),http://em.21dtv.com/songs/60011174.mkv +洪文斌-博缴,http://em.21dtv.com/songs/60010930.mkv +罗钟寅-变节,http://em.21dtv.com/songs/60010496.mkv +周笔畅-笔记,http://em.21dtv.com/songs/60010407.mkv +叶欢-笔记,http://em.21dtv.com/songs/60010406.mkv +周笔畅-笔记(演唱会),http://em.21dtv.com/songs/60010405.mkv +花世纪-比剑,http://em.21dtv.com/songs/60010376.mkv +迟志强-北郊,http://em.21dtv.com/songs/60010189.mkv +李亚明-北极,http://em.21dtv.com/songs/60010180.mkv +李度-悲剧,http://em.21dtv.com/songs/60010116.mkv +李迪文-悲剧,http://em.21dtv.com/songs/60010115.mkv +晨熙-杯具,http://em.21dtv.com/songs/60010099.mkv +梁咏琪-搬家,http://em.21dtv.com/songs/60009837.mkv +MICHAEL JACKSON-billie jean,http://em.21dtv.com/songs/60000586.mkv +THE BIG FOUR-BIG FOUR,http://em.21dtv.com/songs/60096601.mkv +吴克群-beat it,http://em.21dtv.com/songs/60086323.mkv +JODIE CONNOR+TINCHY STRYDER-bring it,http://em.21dtv.com/songs/60073007.mkv +JAMIE FOXX+T-PAIN-blame it,http://em.21dtv.com/songs/60072976.mkv +LUCIE SELVAS-breathe in,http://em.21dtv.com/songs/60000704.mkv +安室奈美惠-break it,http://em.21dtv.com/songs/60000687.mkv +MICHAEL JACKSON-beat it,http://em.21dtv.com/songs/60000489.mkv +邓丽君-beat it(演唱会),http://em.21dtv.com/songs/60000488.mkv +孙良吉-逼婚,http://em.21dtv.com/songs/60132363.mkv +陈允弦-百合,http://em.21dtv.com/songs/60127542.mkv +张博文+刘洺瑒-保护,http://em.21dtv.com/songs/60126865.mkv +王力宏-保护,http://em.21dtv.com/songs/60125901.mkv +男人帮-拔河,http://em.21dtv.com/songs/60117063.mkv +谢勇-保护,http://em.21dtv.com/songs/60111400.mkv +郭静-不还,http://em.21dtv.com/songs/60103631.mkv +杨蔓+雨天-白狐,http://em.21dtv.com/songs/60098516.mkv +林宥嘉-不换,http://em.21dtv.com/songs/60095311.mkv +罗志祥+容祖儿-飚汗,http://em.21dtv.com/songs/60091834.mkv +VRF-不坏,http://em.21dtv.com/songs/60090449.mkv +谢霆锋-冰河,http://em.21dtv.com/songs/60090220.mkv +容祖儿-飚汗,http://em.21dtv.com/songs/60089813.mkv +侯湘婷-变化,http://em.21dtv.com/songs/60087338.mkv +詹曼铃+沈建豪-背后,http://em.21dtv.com/songs/60086455.mkv +BIGBANG-beautiful hangover,http://em.21dtv.com/songs/60086324.mkv +谢容儿-白狐,http://em.21dtv.com/songs/60084877.mkv +东篱-杯欢,http://em.21dtv.com/songs/60082596.mkv +宫崎步-brave heart,http://em.21dtv.com/songs/60082112.mkv +刘庭羽+陆昱霖-不悔,http://em.21dtv.com/songs/60074730.mkv +爽子-别慌,http://em.21dtv.com/songs/60074687.mkv +龚玥菲-白狐,http://em.21dtv.com/songs/60074586.mkv +STOOSHE-black heart,http://em.21dtv.com/songs/60071577.mkv +詹曼玲-冰海,http://em.21dtv.com/songs/60070537.mkv +李贵府-冰火,http://em.21dtv.com/songs/60068127.mkv +许嵩-伴虎,http://em.21dtv.com/songs/60068099.mkv +小松未可子-black holy,http://em.21dtv.com/songs/60065769.mkv +NELLY FURTADO-big hoops,http://em.21dtv.com/songs/60065740.mkv +梅艳芳-不惑,http://em.21dtv.com/songs/60011166.mkv +蔡琴-不悔,http://em.21dtv.com/songs/60011151.mkv +万芳-不换,http://em.21dtv.com/songs/60011148.mkv +熊天平-不换(演唱会),http://em.21dtv.com/songs/60011147.mkv +温岚-冰河,http://em.21dtv.com/songs/60010825.mkv +张国荣-别话,http://em.21dtv.com/songs/60010587.mkv +容祖儿-飙汗,http://em.21dtv.com/songs/60010544.mkv +容祖儿+罗志祥-飙汗,http://em.21dtv.com/songs/60010543.mkv +王菲-变幻,http://em.21dtv.com/songs/60010495.mkv +林志颖-变坏,http://em.21dtv.com/songs/60010494.mkv +何维健-变化,http://em.21dtv.com/songs/60010492.mkv +潘长江-背后,http://em.21dtv.com/songs/60010243.mkv +周慧敏-保护,http://em.21dtv.com/songs/60010024.mkv +莫文蔚-薄荷,http://em.21dtv.com/songs/60009959.mkv +罗时丰-伴花,http://em.21dtv.com/songs/60009913.mkv +陈瑞-白狐,http://em.21dtv.com/songs/60009668.mkv +艾秩曼-白狐,http://em.21dtv.com/songs/60009667.mkv +佚名-白鹤,http://em.21dtv.com/songs/60009666.mkv +陈奕迅+梁汉文-拔河,http://em.21dtv.com/songs/60009528.mkv +陈洁仪-拔河,http://em.21dtv.com/songs/60009527.mkv +李蕙敏-疤痕,http://em.21dtv.com/songs/60009525.mkv +F.SULLIVAN+J.PETERIK-burning heart(无原唱),http://em.21dtv.com/songs/60000731.mkv +黄义达-broken heart,http://em.21dtv.com/songs/60000716.mkv +COMMODORES-brlck house,http://em.21dtv.com/songs/60000714.mkv +FAT DOMINO-blueberry hill,http://em.21dtv.com/songs/60000637.mkv +佚名-blue hawaii,http://em.21dtv.com/songs/60000626.mkv +周传雄-back home,http://em.21dtv.com/songs/60000426.mkv +周传雄-back home(演唱会),http://em.21dtv.com/songs/60000425.mkv +苏运莹-宝贵,http://em.21dtv.com/songs/60130689.mkv +郑娟-保管,http://em.21dtv.com/songs/60127457.mkv +周杰伦+张惠妹-不该,http://em.21dtv.com/songs/60123764.mkv +周杰伦+张惠妹-不该,http://em.21dtv.com/songs/60122601.mkv +苏运莹-宝贵,http://em.21dtv.com/songs/60122062.mkv +央吉玛-悲歌,http://em.21dtv.com/songs/60118487.mkv +陈艺搏-白鸽,http://em.21dtv.com/songs/60114228.mkv +凌志辉-摆古,http://em.21dtv.com/songs/60110009.mkv +赖鸿根-悲歌,http://em.21dtv.com/songs/60107233.mkv +崔子格-卜卦[DJ],http://em.21dtv.com/songs/60101337.mkv +动力火车-不过,http://em.21dtv.com/songs/60090736.mkv +周蕙-不管,http://em.21dtv.com/songs/60089749.mkv +徐佳莹-布谷,http://em.21dtv.com/songs/60087875.mkv +五月天-爆肝,http://em.21dtv.com/songs/60087263.mkv +江涛-边关,http://em.21dtv.com/songs/60084905.mkv +EZEN-boys girls,http://em.21dtv.com/songs/60082111.mkv +BUMKEY-bad girl,http://em.21dtv.com/songs/60082081.mkv +李孝利-bad girls,http://em.21dtv.com/songs/60082080.mkv +M.I.A.-bad girls,http://em.21dtv.com/songs/60082079.mkv +唯嘉-宝贵,http://em.21dtv.com/songs/60082005.mkv +孙紫晴-不够,http://em.21dtv.com/songs/60081985.mkv +笑源-不够,http://em.21dtv.com/songs/60074725.mkv +崔子格-卜卦,http://em.21dtv.com/songs/60074710.mkv +胡灵-beautiful girl,http://em.21dtv.com/songs/60072941.mkv +少女时代-bad girl,http://em.21dtv.com/songs/60072921.mkv +高杰-不够,http://em.21dtv.com/songs/60068131.mkv +ESPERANZA SPALDING-black gold,http://em.21dtv.com/songs/60067858.mkv +朴成敏-beautiful girl,http://em.21dtv.com/songs/60062815.mkv +白智英-bad girl,http://em.21dtv.com/songs/60060760.mkv +BEAST-bad girl,http://em.21dtv.com/songs/60060759.mkv +张敬轩-曝光,http://em.21dtv.com/songs/60033726.mkv +谢霆锋-曝光,http://em.21dtv.com/songs/60033725.mkv +谢霆锋-曝光(演唱会),http://em.21dtv.com/songs/60033724.mkv +蔡日轩-baby girl,http://em.21dtv.com/songs/60032427.mkv +路绮欧-不够,http://em.21dtv.com/songs/60011108.mkv +黄鼓戏-补锅,http://em.21dtv.com/songs/60010937.mkv +彭绍琴+林小丹-别歌,http://em.21dtv.com/songs/60010579.mkv +谢霆锋-暴光(演唱会),http://em.21dtv.com/songs/60010088.mkv +蔡健雅-保管,http://em.21dtv.com/songs/60010023.mkv +卢巧音-白光,http://em.21dtv.com/songs/60009664.mkv +关心妍-白光,http://em.21dtv.com/songs/60009663.mkv +伍佰-白鸽,http://em.21dtv.com/songs/60009661.mkv +龚诗嘉-白鸽,http://em.21dtv.com/songs/60009660.mkv +于立成-八卦,http://em.21dtv.com/songs/60009467.mkv +黄立行-八卦,http://em.21dtv.com/songs/60009466.mkv +B2-八卦,http://em.21dtv.com/songs/60009465.mkv +C+SIDE+KEISHA COLES-boyfriend girlfriend,http://em.21dtv.com/songs/60000675.mkv +TWINS-boy & girl,http://em.21dtv.com/songs/60000672.mkv +KINGSTON SEAN-beautiful girls,http://em.21dtv.com/songs/60000496.mkv +佚名-bad girl,http://em.21dtv.com/songs/60000444.mkv +徐怀钰-bad girl,http://em.21dtv.com/songs/60000443.mkv +MADONNA-bad girl,http://em.21dtv.com/songs/60000442.mkv +林姗-本份,http://em.21dtv.com/songs/60132608.mkv +黄晨富-包袱,http://em.21dtv.com/songs/60130933.mkv +慕寒-别赋,http://em.21dtv.com/songs/60128019.mkv +庆庆-蝙蝠,http://em.21dtv.com/songs/60126854.mkv +玲珑-蝙蝠,http://em.21dtv.com/songs/60123023.mkv +小虾-不分,http://em.21dtv.com/songs/60107688.mkv +干露露-报复,http://em.21dtv.com/songs/60104998.mkv +郑黄荣-北方,http://em.21dtv.com/songs/60099542.mkv +张智霖-冰封,http://em.21dtv.com/songs/60099230.mkv +刘蓝溪+梁弘志-北风(Comix版),http://em.21dtv.com/songs/60096669.mkv +陈奕迅-拜访,http://em.21dtv.com/songs/60090290.mkv +老狼-变法,http://em.21dtv.com/songs/60089448.mkv +赵敬一-best friend,http://em.21dtv.com/songs/60086326.mkv +群星-big four,http://em.21dtv.com/songs/60082085.mkv +邢继光-奔放,http://em.21dtv.com/songs/60074658.mkv +于台烟-北风,http://em.21dtv.com/songs/60074644.mkv +关心妍-白费(演唱会),http://em.21dtv.com/songs/60074584.mkv +东京女子流-bad flower,http://em.21dtv.com/songs/60072920.mkv +KENDRICK LAMAR-backseat freestyle,http://em.21dtv.com/songs/60072917.mkv +宝少-拜佛,http://em.21dtv.com/songs/60070519.mkv +蓝海-拜佛,http://em.21dtv.com/songs/60068098.mkv +JASON CHEN-best friend,http://em.21dtv.com/songs/60067856.mkv +符琼音-不服,http://em.21dtv.com/songs/60011058.mkv +沙靖杰-并非,http://em.21dtv.com/songs/60010876.mkv +HOTCHA-冰封,http://em.21dtv.com/songs/60010821.mkv +佚名-变法,http://em.21dtv.com/songs/60010491.mkv +风火海-奔放,http://em.21dtv.com/songs/60010312.mkv +元卫觉醒-备份(演唱会),http://em.21dtv.com/songs/60010239.mkv +张镐哲-北风,http://em.21dtv.com/songs/60010168.mkv +佚名-北风,http://em.21dtv.com/songs/60010167.mkv +张镐哲-北风(演唱会),http://em.21dtv.com/songs/60010166.mkv +陈小春-爆发,http://em.21dtv.com/songs/60010092.mkv +TAKE-暴风,http://em.21dtv.com/songs/60010082.mkv +胡彦斌-包袱,http://em.21dtv.com/songs/60009943.mkv +TRONY-breaking free,http://em.21dtv.com/songs/60000693.mkv +TRONY+GABRIELLA-breaking free,http://em.21dtv.com/songs/60000692.mkv +JOHN BARRY-born free,http://em.21dtv.com/songs/60000659.mkv +ANDY WILLIAMS-born free,http://em.21dtv.com/songs/60000658.mkv +佚名-blossom fell,http://em.21dtv.com/songs/60000615.mkv +滨崎步-beautiful fighter,http://em.21dtv.com/songs/60000495.mkv +ANGELA-beautiful fighter,http://em.21dtv.com/songs/60000494.mkv +佚名-baby face,http://em.21dtv.com/songs/60000396.mkv +蔡依林-baby face(演唱会),http://em.21dtv.com/songs/60000395.mkv +WEEZER-BEVERLY HILLS,http://em.21dtv.com/songs/60096598.mkv +阿沁-BE STRONGER,http://em.21dtv.com/songs/60096600.mkv +THE JANOSKIANS-BEST FRIENDS,http://em.21dtv.com/songs/60096597.mkv +坂本真绫-BE MINE,http://em.21dtv.com/songs/60096599.mkv +多亮-BEAUTIFUL LIGHT,http://em.21dtv.com/songs/60096596.mkv +姚贝娜-BEAUTIFUL LIGHT,http://em.21dtv.com/songs/60096595.mkv +江映蓉-BEAUTIFUL LIGHT,http://em.21dtv.com/songs/60096594.mkv +陈楚生-BEAUTIFUL LIGHT,http://em.21dtv.com/songs/60096593.mkv +杨乃文-BEAUTIFUL LIFE,http://em.21dtv.com/songs/60096592.mkv +OK绷-BEAUTIFUL LOVE,http://em.21dtv.com/songs/60096155.mkv +LADY GAGA-brown eyes(演唱会),http://em.21dtv.com/songs/60000721.mkv +BLUE-breathe easy,http://em.21dtv.com/songs/60000702.mkv +麋先生-霸道,http://em.21dtv.com/songs/60130925.mkv +李昱和-报答,http://em.21dtv.com/songs/60127037.mkv +侯丽娟-报答,http://em.21dtv.com/songs/60120325.mkv +O2O Goddess-壁咚,http://em.21dtv.com/songs/60117480.mkv +孙子涵-壁咚,http://em.21dtv.com/songs/60116697.mkv +孙心娅-不懂,http://em.21dtv.com/songs/60112623.mkv +张信哲-不懂,http://em.21dtv.com/songs/60111057.mkv +张信哲-不懂,http://em.21dtv.com/songs/60108481.mkv +李荣浩-不搭,http://em.21dtv.com/songs/60106953.mkv +雷琛瑜-冰岛,http://em.21dtv.com/songs/60106443.mkv +苏慧伦+伍佰-被动,http://em.21dtv.com/songs/60096787.mkv +王丽达-报答,http://em.21dtv.com/songs/60095324.mkv +HOTCHA-变大,http://em.21dtv.com/songs/60092179.mkv +廖昌永-宝岛,http://em.21dtv.com/songs/60091027.mkv +MILKY BUNNY-bunny days,http://em.21dtv.com/songs/60082114.mkv +任贤齐-爆掉,http://em.21dtv.com/songs/60074634.mkv +SUPER JUNIOR-M-break down,http://em.21dtv.com/songs/60073000.mkv +J MIN-beautiful days,http://em.21dtv.com/songs/60072940.mkv +徐若萱-beautiful day,http://em.21dtv.com/songs/60072939.mkv +G.NA+SANCHEZ-beautiful day,http://em.21dtv.com/songs/60072938.mkv +宥胜-笨蛋,http://em.21dtv.com/songs/60071781.mkv +张涛-报答(演唱会),http://em.21dtv.com/songs/60066856.mkv +徐若瑄-beautiful day,http://em.21dtv.com/songs/60065722.mkv +金贤重-break down,http://em.21dtv.com/songs/60065555.mkv +岚-beautiful days,http://em.21dtv.com/songs/60065546.mkv +MAY'N-brain diver,http://em.21dtv.com/songs/60063547.mkv +吴春燕-报答(演唱会),http://em.21dtv.com/songs/60063085.mkv +5ZIC+BEE-beautiful day,http://em.21dtv.com/songs/60061935.mkv +于台烟-不懂,http://em.21dtv.com/songs/60011045.mkv +林俊杰-不懂,http://em.21dtv.com/songs/60011044.mkv +李宗盛-不懂,http://em.21dtv.com/songs/60011043.mkv +周国贤-不敌,http://em.21dtv.com/songs/60011041.mkv +杨千嬅-冰点,http://em.21dtv.com/songs/60010817.mkv +刘若英+陈升-冰点,http://em.21dtv.com/songs/60010816.mkv +林娟-冰点,http://em.21dtv.com/songs/60010815.mkv +陈小云-冰点,http://em.21dtv.com/songs/60010814.mkv +陈升+刘若英-冰点,http://em.21dtv.com/songs/60010813.mkv +杨千嬅-冰点(演唱会),http://em.21dtv.com/songs/60010812.mkv +陈慧娴-冰点(演唱会),http://em.21dtv.com/songs/60010811.mkv +周裕先-表达,http://em.21dtv.com/songs/60010549.mkv +金莎-笨蛋,http://em.21dtv.com/songs/60010334.mkv +赵子皓-被动,http://em.21dtv.com/songs/60010293.mkv +苏慧伦-被动,http://em.21dtv.com/songs/60010292.mkv +阿桑-被动,http://em.21dtv.com/songs/60010291.mkv +伍佰-被动(演唱会),http://em.21dtv.com/songs/60010290.mkv +群星-被单(无原唱),http://em.21dtv.com/songs/60010289.mkv +刘家昌-报答,http://em.21dtv.com/songs/60010040.mkv +彭丽媛-报答(演唱会),http://em.21dtv.com/songs/60010039.mkv +陈旭-报答(演唱会),http://em.21dtv.com/songs/60010038.mkv +E+KIDS-班对,http://em.21dtv.com/songs/60009830.mkv +新裤子-bye-bye disco,http://em.21dtv.com/songs/60000759.mkv +U2-bwautiful day,http://em.21dtv.com/songs/60000748.mkv +R.PLANT+J.PAGE-black dog(无原唱),http://em.21dtv.com/songs/60000595.mkv +THE EVERLY BROTHERS-bird dog,http://em.21dtv.com/songs/60000589.mkv +LEANN RIMES-big deal,http://em.21dtv.com/songs/60000580.mkv +郑伊健-beautiful day(演唱会),http://em.21dtv.com/songs/60000493.mkv +TWINS-beautiful day(演唱会),http://em.21dtv.com/songs/60000492.mkv +谢安琪-bad day(演唱会),http://em.21dtv.com/songs/60000441.mkv +张爽-baby dont,http://em.21dtv.com/songs/60000394.mkv +张学友-不错,http://em.21dtv.com/songs/60125501.mkv +动力火车-彼此,http://em.21dtv.com/songs/60122537.mkv +天人一合-奔驰,http://em.21dtv.com/songs/60118486.mkv +吉克隽逸-白痴,http://em.21dtv.com/songs/60117604.mkv +曹方-冰川,http://em.21dtv.com/songs/60115972.mkv +MR-边城,http://em.21dtv.com/songs/60109853.mkv +张学友-不错,http://em.21dtv.com/songs/60106824.mkv +周笔畅-不唱,http://em.21dtv.com/songs/60092485.mkv +赵雪莹-菠菜,http://em.21dtv.com/songs/60088707.mkv +张根硕-beautiful change,http://em.21dtv.com/songs/60082089.mkv +黄小琥-不猜,http://em.21dtv.com/songs/60074719.mkv +江宏恩-补偿,http://em.21dtv.com/songs/60074711.mkv +何韵诗-彼此,http://em.21dtv.com/songs/60074667.mkv +BIFFY CLYRO-black chandelier,http://em.21dtv.com/songs/60072973.mkv +RIHANNA+CHRIS BROWN-birthday cake,http://em.21dtv.com/songs/60072970.mkv +花世纪-不猜,http://em.21dtv.com/songs/60071788.mkv +熊宝贝乐团-beautiful chaos,http://em.21dtv.com/songs/60071572.mkv +ELVIS PRESLEY-blue christmas(演唱会),http://em.21dtv.com/songs/60065940.mkv +李振全-big city,http://em.21dtv.com/songs/60060768.mkv +橙子焦糖-bangkok city,http://em.21dtv.com/songs/60060762.mkv +陈小春-补偿,http://em.21dtv.com/songs/60010936.mkv +ALL SAINTS-bottie call(无原唱),http://em.21dtv.com/songs/60000667.mkv +佚名-blue christmas,http://em.21dtv.com/songs/60000624.mkv +JANET JACKSON-black cat,http://em.21dtv.com/songs/60000594.mkv +张惠妹-big city,http://em.21dtv.com/songs/60000579.mkv +JIMMY EAT WORD-big casino,http://em.21dtv.com/songs/60000578.mkv +王杰-be cool,http://em.21dtv.com/songs/60000468.mkv +大炳-be careful,http://em.21dtv.com/songs/60000467.mkv +MADONNA+RICKY MARTIN-be careful,http://em.21dtv.com/songs/60000466.mkv +佚名-be careful(无原唱),http://em.21dtv.com/songs/60000465.mkv +陈冠霖-爸爸,http://em.21dtv.com/songs/60135899.mkv +旅行箱乐团-斑斑,http://em.21dtv.com/songs/60135313.mkv +吴陌川-宝贝,http://em.21dtv.com/songs/60135036.mkv +吴诗曼-宝贝,http://em.21dtv.com/songs/60135025.mkv +魏晨-不变,http://em.21dtv.com/songs/60134480.mkv +蔚雨芯-BB,http://em.21dtv.com/songs/60134192.mkv +郑成敏-爸爸,http://em.21dtv.com/songs/60132991.mkv +乔洋-表白,http://em.21dtv.com/songs/60132170.mkv +魏晨-不变,http://em.21dtv.com/songs/60132003.mkv +吴建豪-蹦蹦,http://em.21dtv.com/songs/60131255.mkv +黎晓阳-败部,http://em.21dtv.com/songs/60129859.mkv +何际君+庞慧婷-败笔,http://em.21dtv.com/songs/60128781.mkv +秦影-爸爸,http://em.21dtv.com/songs/60128274.mkv +吴业坤+张智霖-兵兵,http://em.21dtv.com/songs/60127824.mkv +吴业坤+张智霖-兵兵,http://em.21dtv.com/songs/60126687.mkv +祁佳南+崔克檐-爸爸,http://em.21dtv.com/songs/60125980.mkv +易烊千玺-宝贝,http://em.21dtv.com/songs/60125632.mkv +蜜蜂少女队-棒棒,http://em.21dtv.com/songs/60123145.mkv +李千娜-爸爸,http://em.21dtv.com/songs/60122846.mkv +李千娜-爸爸,http://em.21dtv.com/songs/60121766.mkv +陈伟霆-表白,http://em.21dtv.com/songs/60119005.mkv +昊麟-表白,http://em.21dtv.com/songs/60118630.mkv +安苡葳-爸比,http://em.21dtv.com/songs/60118516.mkv +张赫宣-不变,http://em.21dtv.com/songs/60115925.mkv +马吟吟+童予硕+王帝-表白,http://em.21dtv.com/songs/60114891.mkv +袁娅维-卑鄙,http://em.21dtv.com/songs/60114767.mkv +高斌-爸爸,http://em.21dtv.com/songs/60114279.mkv +蒋瑶嘉-爸爸,http://em.21dtv.com/songs/60112209.mkv +韩雨芹-爸爸,http://em.21dtv.com/songs/60111523.mkv +PSY+郎朗-爸爸,http://em.21dtv.com/songs/60109863.mkv +罗百吉+宝贝-蹦蹦,http://em.21dtv.com/songs/60108799.mkv +寒月-爸爸,http://em.21dtv.com/songs/60104953.mkv +刘丹萌-抱抱,http://em.21dtv.com/songs/60104810.mkv +王南-爸爸,http://em.21dtv.com/songs/60104304.mkv +汪峰-爸爸,http://em.21dtv.com/songs/60102458.mkv +方瑄-宝贝,http://em.21dtv.com/songs/60101642.mkv +彭野新儿歌-爸爸,http://em.21dtv.com/songs/60101086.mkv +轲然-爸爸,http://em.21dtv.com/songs/60100488.mkv +李荣浩-拜拜,http://em.21dtv.com/songs/60100161.mkv +小龙女-宝贝,http://em.21dtv.com/songs/60098288.mkv +奔奔-奔奔,http://em.21dtv.com/songs/60090871.mkv +徐黛妮-芭比,http://em.21dtv.com/songs/60087890.mkv +五月天-步步,http://em.21dtv.com/songs/60086895.mkv +赵敬一-宝贝,http://em.21dtv.com/songs/60086451.mkv +王梓旭-爸爸,http://em.21dtv.com/songs/60086443.mkv +闫安-背包,http://em.21dtv.com/songs/60084896.mkv +杨丽-bad boy,http://em.21dtv.com/songs/60084694.mkv +袁娅维-卑鄙,http://em.21dtv.com/songs/60082601.mkv +WILL.I.AM-bang bang,http://em.21dtv.com/songs/60082082.mkv +林采欣-贝贝,http://em.21dtv.com/songs/60081350.mkv +张赫宣-爸爸,http://em.21dtv.com/songs/60080843.mkv +周笔畅-标本,http://em.21dtv.com/songs/60080374.mkv +OLIVIA ONG-不变,http://em.21dtv.com/songs/60080066.mkv +洪辰-表白,http://em.21dtv.com/songs/60074679.mkv +罗桦-保镖(演唱会),http://em.21dtv.com/songs/60074625.mkv +骆容溶+骆永明-宝贝,http://em.21dtv.com/songs/60074620.mkv +萧敬腾-爸爸,http://em.21dtv.com/songs/60071767.mkv +吴鑫桐-bad boy,http://em.21dtv.com/songs/60071570.mkv +陈启泰-baby baby,http://em.21dtv.com/songs/60071569.mkv +SAM AND YHE WOMP-bom bom,http://em.21dtv.com/songs/60070306.mkv +冷漠-冰冰,http://em.21dtv.com/songs/60069261.mkv +魔电女孩-蹦蹦,http://em.21dtv.com/songs/60069252.mkv +CRAYON POP-bing bing,http://em.21dtv.com/songs/60069061.mkv +方大同-bb88,http://em.21dtv.com/songs/60067853.mkv +吴建豪+李俊昊-不败,http://em.21dtv.com/songs/60066875.mkv +白江涛-宝贝,http://em.21dtv.com/songs/60066853.mkv +骆容溶-爸爸,http://em.21dtv.com/songs/60065831.mkv +阿兰-baby baby,http://em.21dtv.com/songs/60065619.mkv +AQUA-bumble bees,http://em.21dtv.com/songs/60065556.mkv +洪立-宝贝,http://em.21dtv.com/songs/60063962.mkv +吴淑敏-bad boy,http://em.21dtv.com/songs/60063537.mkv +BEYONC?SEAN PAUL-baby boy,http://em.21dtv.com/songs/60063532.mkv +张真菲-宝贝,http://em.21dtv.com/songs/60063426.mkv +宿雨涵-嘚啵嘚啵嘚,http://em.21dtv.com/songs/60062943.mkv +DAL SHABET-bling bling,http://em.21dtv.com/songs/60061998.mkv +赵震宇-不变,http://em.21dtv.com/songs/60011010.mkv +王羚柔-不变,http://em.21dtv.com/songs/60011009.mkv +这位太太-不必,http://em.21dtv.com/songs/60010992.mkv +江蕙-博杯,http://em.21dtv.com/songs/60010926.mkv +张悬-并不,http://em.21dtv.com/songs/60010875.mkv +康康-兵变(演唱会),http://em.21dtv.com/songs/60010863.mkv +李登威-兵变(演唱会)(无原唱),http://em.21dtv.com/songs/60010862.mkv +李冰冰-冰冰,http://em.21dtv.com/songs/60010808.mkv +萧亚轩-表白,http://em.21dtv.com/songs/60010547.mkv +林子娟-表白,http://em.21dtv.com/songs/60010546.mkv +阿温-表白,http://em.21dtv.com/songs/60010545.mkv +苏有朋-背包,http://em.21dtv.com/songs/60010241.mkv +卜学亮-背包,http://em.21dtv.com/songs/60010240.mkv +容祖儿-抱抱,http://em.21dtv.com/songs/60010056.mkv +容祖儿-抱抱(演唱会),http://em.21dtv.com/songs/60010055.mkv +李克勤-抱抱(演唱会),http://em.21dtv.com/songs/60010054.mkv +黑妹-保镳(演唱会),http://em.21dtv.com/songs/60010019.mkv +卓依婷-保镖,http://em.21dtv.com/songs/60010018.mkv +佚名-保镖,http://em.21dtv.com/songs/60010017.mkv +王彩桦-保庇,http://em.21dtv.com/songs/60010016.mkv +张悬-宝贝,http://em.21dtv.com/songs/60009984.mkv +依稀-宝贝,http://em.21dtv.com/songs/60009983.mkv +王志文-宝贝,http://em.21dtv.com/songs/60009982.mkv +宛金秋-宝贝,http://em.21dtv.com/songs/60009981.mkv +孙楠-宝贝,http://em.21dtv.com/songs/60009980.mkv +庞龙-宝贝,http://em.21dtv.com/songs/60009979.mkv +女声-宝贝,http://em.21dtv.com/songs/60009978.mkv +男声-宝贝,http://em.21dtv.com/songs/60009977.mkv +莫文蔚-宝贝,http://em.21dtv.com/songs/60009976.mkv +华雪-宝贝,http://em.21dtv.com/songs/60009975.mkv +顾建华-宝贝,http://em.21dtv.com/songs/60009974.mkv +芭比-宝贝,http://em.21dtv.com/songs/60009973.mkv +刘淑芳-宝贝(演唱会),http://em.21dtv.com/songs/60009972.mkv +动静乐团-宝贝(演唱会),http://em.21dtv.com/songs/60009971.mkv +佚名-宝贝(慢四),http://em.21dtv.com/songs/60009970.mkv +佚名-拜拜,http://em.21dtv.com/songs/60009812.mkv +梅艳芳-百变(无原唱),http://em.21dtv.com/songs/60009765.mkv +彩虹姐姐-爸比(无原唱),http://em.21dtv.com/songs/60009637.mkv +屠洪纲-爸爸,http://em.21dtv.com/songs/60009612.mkv +高见-爸爸,http://em.21dtv.com/songs/60009611.mkv +王筝-爸爸(演唱会),http://em.21dtv.com/songs/60009610.mkv +洪荣宏-爸爸(无原唱),http://em.21dtv.com/songs/60009609.mkv +李心洁-bye bye,http://em.21dtv.com/songs/60000758.mkv +关智斌-book b,http://em.21dtv.com/songs/60000649.mkv +コブクロ-blue bird,http://em.21dtv.com/songs/60000622.mkv +佚名-blue bayou,http://em.21dtv.com/songs/60000621.mkv +佚名-blue balloon,http://em.21dtv.com/songs/60000620.mkv +爱戴-black box,http://em.21dtv.com/songs/60000593.mkv +CELINE DION-beautiful boy,http://em.21dtv.com/songs/60000491.mkv +男女共学-bbiribbom bberibbom,http://em.21dtv.com/songs/60000461.mkv +WHAM-bad boys,http://em.21dtv.com/songs/60000440.mkv +GEORGE MICHAEL-bad boys,http://em.21dtv.com/songs/60000439.mkv +郑伊健-bad boy,http://em.21dtv.com/songs/60000438.mkv +张惠妹-bad boy,http://em.21dtv.com/songs/60000437.mkv +THE BEATLES-bad boy,http://em.21dtv.com/songs/60000436.mkv +GLORIA ESTEFAN+MIAMI-bad boy,http://em.21dtv.com/songs/60000435.mkv +容祖儿-bad boy(演唱会),http://em.21dtv.com/songs/60000434.mkv +潘美辰-bad boy(演唱会),http://em.21dtv.com/songs/60000433.mkv +梁文音-bad boy(HD演唱会),http://em.21dtv.com/songs/60000432.mkv +CLIFF RICHARD-bachelor boy,http://em.21dtv.com/songs/60000420.mkv +林俊杰-baby baby,http://em.21dtv.com/songs/60000383.mkv +黄品冠-baby baby,http://em.21dtv.com/songs/60000382.mkv +郭静-baby baby,http://em.21dtv.com/songs/60000381.mkv +AMY GRANT-baby baby,http://em.21dtv.com/songs/60000380.mkv +黎明-ba ba,http://em.21dtv.com/songs/60000370.mkv +AUSTIN MAHONE-Banga Banga,http://em.21dtv.com/songs/60100708.mkv +JESSE MCCARTNEY-BACK TOGETHER,http://em.21dtv.com/songs/60096591.mkv +雷颂德-BABY SONG,http://em.21dtv.com/songs/60096590.mkv +黄阅-彼岸,http://em.21dtv.com/songs/60130941.mkv +黄阅-彼岸,http://em.21dtv.com/songs/60129852.mkv +董贞-彼岸,http://em.21dtv.com/songs/60129563.mkv +夏婉安+阳逸晨-别爱,http://em.21dtv.com/songs/60118474.mkv +王冠予-彼岸,http://em.21dtv.com/songs/60116135.mkv +梁宝强-白爱,http://em.21dtv.com/songs/60109467.mkv +羽泉-搏爱,http://em.21dtv.com/songs/60107129.mkv +杨采妮-被爱,http://em.21dtv.com/songs/60089356.mkv +CARRIE UNDERWOOD-blown away,http://em.21dtv.com/songs/60082105.mkv +DAL SHABET-be ambitious,http://em.21dtv.com/songs/60082084.mkv +曾一鸣-不爱,http://em.21dtv.com/songs/60081436.mkv +EXILE-bow arrows,http://em.21dtv.com/songs/60070308.mkv +萧敬腾-悲爱,http://em.21dtv.com/songs/60068101.mkv +李圣杰-不安,http://em.21dtv.com/songs/60010983.mkv +王梓盈-彼岸,http://em.21dtv.com/songs/60010395.mkv +满文军-彼岸,http://em.21dtv.com/songs/60010394.mkv +李亦捷-彼岸,http://em.21dtv.com/songs/60010393.mkv +汪峰-彼岸(演唱会),http://em.21dtv.com/songs/60010392.mkv +张国荣-被爱,http://em.21dtv.com/songs/60010276.mkv +谭小环-被爱,http://em.21dtv.com/songs/60010275.mkv +郭富城-被爱(演唱会),http://em.21dtv.com/songs/60010274.mkv +PIXIE LOTT-broken arrow,http://em.21dtv.com/songs/60000715.mkv +TONI BRAXTON-breathe again,http://em.21dtv.com/songs/60000701.mkv +萧潇-beautiful angel,http://em.21dtv.com/songs/60000490.mkv +范晓萱-bartender angel,http://em.21dtv.com/songs/60000459.mkv +佚名-bandoneon arrabalero,http://em.21dtv.com/songs/60000455.mkv +ELAINE-baby爱,http://em.21dtv.com/songs/60000415.mkv +妙音兄弟-阿则,http://em.21dtv.com/songs/60126765.mkv +陈艺祯-aa制,http://em.21dtv.com/songs/60072864.mkv +一绫+怡君-阿姊,http://em.21dtv.com/songs/60063835.mkv +陈雷-暗帐,http://em.21dtv.com/songs/60009411.mkv +闪亮三姐妹-按怎,http://em.21dtv.com/songs/60009359.mkv +幸田来未-爱证,http://em.21dtv.com/songs/60009242.mkv +方大同-爱在(演唱会),http://em.21dtv.com/songs/60009150.mkv +闪星乐队-暗涌,http://em.21dtv.com/songs/60135866.mkv +杨丞琳-爱唷,http://em.21dtv.com/songs/60129266.mkv +萧政云-安颜,http://em.21dtv.com/songs/60124426.mkv +白一凡-爱呀,http://em.21dtv.com/songs/60124308.mkv +Under Lover-阿耶,http://em.21dtv.com/songs/60117509.mkv +李荣浩-哎呀,http://em.21dtv.com/songs/60108581.mkv +南玛子呷-哎呀,http://em.21dtv.com/songs/60103958.mkv +金玟岐-爱呀,http://em.21dtv.com/songs/60103640.mkv +阿悄-熬夜,http://em.21dtv.com/songs/60096829.mkv +TWINS-奥运,http://em.21dtv.com/songs/60092210.mkv +邓丽君-爱雨,http://em.21dtv.com/songs/60089499.mkv +萧希榆-哎唷,http://em.21dtv.com/songs/60088570.mkv +艾雨-爱雨,http://em.21dtv.com/songs/60081838.mkv +邬祯琳-哎呀,http://em.21dtv.com/songs/60074288.mkv +杨丞琳-暗涌,http://em.21dtv.com/songs/60071760.mkv +MR.-暗涌(演唱会),http://em.21dtv.com/songs/60065828.mkv +吴建豪-哎呀,http://em.21dtv.com/songs/60060966.mkv +梦飞船-熬夜,http://em.21dtv.com/songs/60009426.mkv +王菲-暗涌,http://em.21dtv.com/songs/60009410.mkv +林一峰-暗涌(演唱会),http://em.21dtv.com/songs/60009409.mkv +黄耀明-暗涌(演唱会),http://em.21dtv.com/songs/60009408.mkv +陈小霞-暗夜,http://em.21dtv.com/songs/60009407.mkv +刘惠鸣+蒋文端-庵遇,http://em.21dtv.com/songs/60009346.mkv +林依轮-嗳哟,http://em.21dtv.com/songs/60009297.mkv +宇恒-嗳呀,http://em.21dtv.com/songs/60009296.mkv +陶晶莹-爱呦,http://em.21dtv.com/songs/60009099.mkv +陶晶莹-爱哟,http://em.21dtv.com/songs/60009095.mkv +张加城-爱意,http://em.21dtv.com/songs/60009090.mkv +陈戈-哎呦(演唱会),http://em.21dtv.com/songs/60006887.mkv +王蓉-哎呀,http://em.21dtv.com/songs/60006870.mkv +童星-哎呀,http://em.21dtv.com/songs/60006869.mkv +白雪-哎呀,http://em.21dtv.com/songs/60006868.mkv +杨树林-暗香,http://em.21dtv.com/songs/60133843.mkv +李冠群-爱献,http://em.21dtv.com/songs/60128086.mkv +雷龙-暗香,http://em.21dtv.com/songs/60123345.mkv +郑淳元-暗香,http://em.21dtv.com/songs/60109661.mkv +韩磊-暗香,http://em.21dtv.com/songs/60096550.mkv +孙琳-暗香,http://em.21dtv.com/songs/60089802.mkv +罗中旭-暗香,http://em.21dtv.com/songs/60082564.mkv +化学猴子-翱翔,http://em.21dtv.com/songs/60074556.mkv +青春美少女-昂星,http://em.21dtv.com/songs/60074554.mkv +郑耿一-爱心,http://em.21dtv.com/songs/60074518.mkv +刘悦+刘振宇-暗香,http://em.21dtv.com/songs/60069233.mkv +沙宝亮-暗香,http://em.21dtv.com/songs/60009406.mkv +周华健-安心(演唱会),http://em.21dtv.com/songs/60009340.mkv +佚名-爱心,http://em.21dtv.com/songs/60008999.mkv +胡夏-爱夏,http://em.21dtv.com/songs/60008976.mkv +李明洋+翁立友-阿兄,http://em.21dtv.com/songs/60006836.mkv +陶靖-安慰,http://em.21dtv.com/songs/60124668.mkv +林志炫+柯以敏-爱我,http://em.21dtv.com/songs/60106019.mkv +白安-安慰,http://em.21dtv.com/songs/60104334.mkv +李代沫-爱我,http://em.21dtv.com/songs/60082544.mkv +邓养天-安慰,http://em.21dtv.com/songs/60080119.mkv +李翊君-爱我,http://em.21dtv.com/songs/60079942.mkv +袁姗姗-爱我,http://em.21dtv.com/songs/60074503.mkv +刘森迪-爱未,http://em.21dtv.com/songs/60068075.mkv +吴涤清-爱我,http://em.21dtv.com/songs/60066830.mkv +佚名-安慰(无原唱),http://em.21dtv.com/songs/60009339.mkv +游鸿明-爱我,http://em.21dtv.com/songs/60008881.mkv +应佩珊-爱我,http://em.21dtv.com/songs/60008880.mkv +佚名-爱我,http://em.21dtv.com/songs/60008879.mkv +唐禹哲-爱我,http://em.21dtv.com/songs/60008878.mkv +柯以敏-爱我,http://em.21dtv.com/songs/60008877.mkv +姜育恒-爱我,http://em.21dtv.com/songs/60008876.mkv +佚名-american woman(无原唱),http://em.21dtv.com/songs/60000233.mkv +杨培安-air+u,http://em.21dtv.com/songs/60067847.mkv +孙佳仁-A Tempo,http://em.21dtv.com/songs/60099192.mkv +JOHN WEST+BIG SEAN-already there,http://em.21dtv.com/songs/60065543.mkv +杨睿君-爱透,http://em.21dtv.com/songs/60063925.mkv +MILOW-ayo technology,http://em.21dtv.com/songs/60060757.mkv +梁咏琪-凹凸(演唱会),http://em.21dtv.com/songs/60009417.mkv +CHRISTOPHER CROSS-arthurs theme,http://em.21dtv.com/songs/60000339.mkv +TREY SONGZ-already taken,http://em.21dtv.com/songs/60000194.mkv +棠星琪-爱蚀,http://em.21dtv.com/songs/60135465.mkv +董贞-爱殇,http://em.21dtv.com/songs/60119940.mkv +张怡诺-爱殇,http://em.21dtv.com/songs/60116791.mkv +楚飞-爱殇,http://em.21dtv.com/songs/60106046.mkv +钟嘉欣-暗示,http://em.21dtv.com/songs/60093374.mkv +钟汉良+胡杨林-爱神,http://em.21dtv.com/songs/60074489.mkv +TOBY KEITH-american soldier,http://em.21dtv.com/songs/60072888.mkv +BLUSH-all stars,http://em.21dtv.com/songs/60072881.mkv +刘牧-暗伤,http://em.21dtv.com/songs/60069232.mkv +丁祥威-爱上,http://em.21dtv.com/songs/60061007.mkv +湘海-暗示,http://em.21dtv.com/songs/60009400.mkv +林忆莲-暗示,http://em.21dtv.com/songs/60009399.mkv +李玟-暗示,http://em.21dtv.com/songs/60009398.mkv +方炯镔+弦子-暗示,http://em.21dtv.com/songs/60009397.mkv +李明翰-暗伤,http://em.21dtv.com/songs/60009396.mkv +郑秀文+LMF-爱是,http://em.21dtv.com/songs/60008759.mkv +梁静茹-爱是,http://em.21dtv.com/songs/60008758.mkv +郑秀文+LMF-爱是(演唱会),http://em.21dtv.com/songs/60008757.mkv +许茹芸-爱是(演唱会),http://em.21dtv.com/songs/60008756.mkv +女F4-爱神,http://em.21dtv.com/songs/60008742.mkv +锦绣二重唱-爱神,http://em.21dtv.com/songs/60008741.mkv +古巨基-爱神,http://em.21dtv.com/songs/60008740.mkv +宋念宇-爱上,http://em.21dtv.com/songs/60008626.mkv +黄耀明-爱色,http://em.21dtv.com/songs/60008619.mkv +JANIS LAN-at seventeen,http://em.21dtv.com/songs/60000353.mkv +佚名-anniversary song,http://em.21dtv.com/songs/60000288.mkv +BY JOHN DENVER-annies song,http://em.21dtv.com/songs/60000287.mkv +JOHN DENVER-annies song(演唱会),http://em.21dtv.com/songs/60000286.mkv +SAVAGE GARDEN-animal song,http://em.21dtv.com/songs/60000283.mkv +佚名-always somewhere(无原唱),http://em.21dtv.com/songs/60000205.mkv +ROBBIE WILLIAMS-advertising space,http://em.21dtv.com/songs/60000105.mkv +苏醒-爱人,http://em.21dtv.com/songs/60128348.mkv +韩旭+张东朗-爱人,http://em.21dtv.com/songs/60133068.mkv +苏醒-爱人,http://em.21dtv.com/songs/60127334.mkv +陈夏莲-爱阮,http://em.21dtv.com/songs/60126373.mkv +陈夏莲-爱阮,http://em.21dtv.com/songs/60124624.mkv +崔子格-爱人,http://em.21dtv.com/songs/60119473.mkv +朗嘎拉姆-爱人,http://em.21dtv.com/songs/60114583.mkv +韩旭+阿明-爱人,http://em.21dtv.com/songs/60105515.mkv +杨蔓+雨天-爱人,http://em.21dtv.com/songs/60098515.mkv +温兆伦-爱人,http://em.21dtv.com/songs/60095320.mkv +田斯斯+萧敬腾-爱人,http://em.21dtv.com/songs/60094618.mkv +金艺林-all right,http://em.21dtv.com/songs/60084691.mkv +萧敬腾+田斯斯-爱人,http://em.21dtv.com/songs/60081715.mkv +于淼-爱人,http://em.21dtv.com/songs/60069203.mkv +胡海泉-爱人,http://em.21dtv.com/songs/60069202.mkv +艾敬-爱人,http://em.21dtv.com/songs/60068063.mkv +FAT JOE+CHRIS BROWN-another round,http://em.21dtv.com/songs/60065544.mkv +甲子蕙-爱阮,http://em.21dtv.com/songs/60008613.mkv +亚东-爱人,http://em.21dtv.com/songs/60008544.mkv +王雪娥-爱人,http://em.21dtv.com/songs/60008543.mkv +屠洪纲+新王菲-爱人,http://em.21dtv.com/songs/60008542.mkv +麦子杰-爱人,http://em.21dtv.com/songs/60008541.mkv +龙千玉-爱人,http://em.21dtv.com/songs/60008540.mkv +林玉英-爱人,http://em.21dtv.com/songs/60008539.mkv +含笑-爱人,http://em.21dtv.com/songs/60008538.mkv +邓丽君-爱人,http://em.21dtv.com/songs/60008537.mkv +代小波-爱人,http://em.21dtv.com/songs/60008536.mkv +杨千嬅-爱人(演唱会),http://em.21dtv.com/songs/60008535.mkv +邓丽君-爱人(演唱会),http://em.21dtv.com/songs/60008534.mkv +蔡妍-爱人(演唱会),http://em.21dtv.com/songs/60008532.mkv +佚名-爱人(无原唱),http://em.21dtv.com/songs/60008531.mkv +豪记大对唱-爱人(无原唱),http://em.21dtv.com/songs/60008530.mkv +BLUE-all rise,http://em.21dtv.com/songs/60000173.mkv +3EP美少女-all right,http://em.21dtv.com/songs/60000172.mkv +米娜-爱情shalala,http://em.21dtv.com/songs/60082504.mkv +中国辣妹-爱情DJ,http://em.21dtv.com/songs/60089105.mkv +7妹-爱7,http://em.21dtv.com/songs/60132037.mkv +孙霄磊-爱卿,http://em.21dtv.com/songs/60116715.mkv +任宰范-爱情,http://em.21dtv.com/songs/60114385.mkv +许巍-爱情,http://em.21dtv.com/songs/60106274.mkv +马健南-爱情,http://em.21dtv.com/songs/60103711.mkv +刘文正-爱情,http://em.21dtv.com/songs/60099808.mkv +萧亚轩-爱情,http://em.21dtv.com/songs/60091991.mkv +张学友-爱去,http://em.21dtv.com/songs/60091070.mkv +邓小龙-爱情,http://em.21dtv.com/songs/60084824.mkv +庄心妍-爱囚,http://em.21dtv.com/songs/60071738.mkv +斯琴高丽-爱情,http://em.21dtv.com/songs/60068062.mkv +王韵壹-爱情,http://em.21dtv.com/songs/60065738.mkv +田馥甄-爱情,http://em.21dtv.com/songs/60063884.mkv +李媛丽-爱情,http://em.21dtv.com/songs/60062613.mkv +SOLER-暗器(演唱会),http://em.21dtv.com/songs/60009395.mkv +陶晶莹-爱缺,http://em.21dtv.com/songs/60008518.mkv +郑进一-爱情,http://em.21dtv.com/songs/60008090.mkv +佚名-爱情,http://em.21dtv.com/songs/60008089.mkv +吴淑敏-爱情,http://em.21dtv.com/songs/60008088.mkv +莫文蔚-爱情,http://em.21dtv.com/songs/60008087.mkv +龙千玉-爱情,http://em.21dtv.com/songs/60008086.mkv +郭富城-爱情,http://em.21dtv.com/songs/60008085.mkv +白冰冰-爱情,http://em.21dtv.com/songs/60008084.mkv +邰正宵-爱情(演唱会),http://em.21dtv.com/songs/60008083.mkv +莫文蔚-爱情(演唱会),http://em.21dtv.com/songs/60008082.mkv +林志颖-爱情(演唱会),http://em.21dtv.com/songs/60008081.mkv +郭富城-爱情(演唱会),http://em.21dtv.com/songs/60008080.mkv +叶瑗菱-爱情(无原唱),http://em.21dtv.com/songs/60008079.mkv +邓健泓-阿琴,http://em.21dtv.com/songs/60006819.mkv +关楚耀-阿q,http://em.21dtv.com/songs/60006709.mkv +佚名-angel queen,http://em.21dtv.com/songs/60000258.mkv +袁咏琳-安排,http://em.21dtv.com/songs/60066836.mkv +MADONNA-american pie,http://em.21dtv.com/songs/60000231.mkv +DON MCLEAN-american pie,http://em.21dtv.com/songs/60000230.mkv +张国荣-american pie(演唱会),http://em.21dtv.com/songs/60000229.mkv +张柏芝+陈晓东-american pie(演唱会),http://em.21dtv.com/songs/60000228.mkv +叶倩文-american pie(演唱会),http://em.21dtv.com/songs/60000227.mkv +莫文蔚-am pm,http://em.21dtv.com/songs/60000213.mkv +佚名-almost persuaded,http://em.21dtv.com/songs/60000189.mkv +ANN WILSON+MIKE RENO-almost paradise,http://em.21dtv.com/songs/60000188.mkv +NEAL MCCOY-a ok,http://em.21dtv.com/songs/60062054.mkv +林俊杰-always online,http://em.21dtv.com/songs/60000203.mkv +张萱妍-always ok,http://em.21dtv.com/songs/60000200.mkv +脱拉库-爱你YO,http://em.21dtv.com/songs/60088502.mkv +苏振华-爱你,http://em.21dtv.com/songs/60134163.mkv +妤桢-安娜,http://em.21dtv.com/songs/60132340.mkv +汤薇恩+陈彼得-爱你,http://em.21dtv.com/songs/60130527.mkv +李春丽-俺娘,http://em.21dtv.com/songs/60122862.mkv +MR.-爱你,http://em.21dtv.com/songs/60112450.mkv +陈以桐-爱你,http://em.21dtv.com/songs/60102869.mkv +冷漠-安娜,http://em.21dtv.com/songs/60101932.mkv +禾川-爱你,http://em.21dtv.com/songs/60099432.mkv +谢雷+乔幼-爱你,http://em.21dtv.com/songs/60098776.mkv +许志安-爱你,http://em.21dtv.com/songs/60096779.mkv +张新-安妮,http://em.21dtv.com/songs/60091109.mkv +祁隆-爱你,http://em.21dtv.com/songs/60082495.mkv +张卫健-爱你(演唱会),http://em.21dtv.com/songs/60082494.mkv +任承浩-爱你,http://em.21dtv.com/songs/60074394.mkv +柯有伦-爱你,http://em.21dtv.com/songs/60074393.mkv +JASON CHEN-爱你,http://em.21dtv.com/songs/60074392.mkv +蝴蝶大人-啊呢,http://em.21dtv.com/songs/60074286.mkv +干露露-爱你,http://em.21dtv.com/songs/60070467.mkv +陈晓琪-爱你,http://em.21dtv.com/songs/60069189.mkv +王江发-阿娘,http://em.21dtv.com/songs/60068030.mkv +蝴蝶大人-阿呢,http://em.21dtv.com/songs/60068029.mkv +KIMBERLEY-爱你,http://em.21dtv.com/songs/60066791.mkv +陈芳语-爱你,http://em.21dtv.com/songs/60065785.mkv +孙燕姿-安宁(演唱会),http://em.21dtv.com/songs/60009323.mkv +佚名-安妮,http://em.21dtv.com/songs/60009322.mkv +王杰-安妮,http://em.21dtv.com/songs/60009321.mkv +佚名-安娜,http://em.21dtv.com/songs/60009320.mkv +林淑蓉-安娜,http://em.21dtv.com/songs/60009319.mkv +郭富城-爱您,http://em.21dtv.com/songs/60008060.mkv +谭咏麟-爱念,http://em.21dtv.com/songs/60008059.mkv +谭咏麟-爱念(演唱会),http://em.21dtv.com/songs/60008058.mkv +王心凌-爱你,http://em.21dtv.com/songs/60007779.mkv +童唱-爱你,http://em.21dtv.com/songs/60007778.mkv +黄思婷-爱你,http://em.21dtv.com/songs/60007777.mkv +黄舒骏-爱你,http://em.21dtv.com/songs/60007776.mkv +邓紫棋-爱你,http://em.21dtv.com/songs/60007775.mkv +阿木-爱你,http://em.21dtv.com/songs/60007774.mkv +郑秀文-爱你(演唱会),http://em.21dtv.com/songs/60007773.mkv +许志安-爱你(演唱会),http://em.21dtv.com/songs/60007772.mkv +梁汉文+苏永康-爱你(演唱会),http://em.21dtv.com/songs/60007771.mkv +黎明-爱你(演唱会),http://em.21dtv.com/songs/60007770.mkv +郭富城-爱你(演唱会),http://em.21dtv.com/songs/60007769.mkv +东方二重唱-爱你(无原唱),http://em.21dtv.com/songs/60007768.mkv +S.H.E-爱呢,http://em.21dtv.com/songs/60007762.mkv +陈奕迅-阿牛,http://em.21dtv.com/songs/60006817.mkv +陈奕迅-阿牛(演唱会),http://em.21dtv.com/songs/60006816.mkv +罗布仁青-阿妈,http://em.21dtv.com/songs/60128306.mkv +薛之谦-暧昧,http://em.21dtv.com/songs/60135713.mkv +Pretty Brown+Verbal Jint-暧昧,http://em.21dtv.com/songs/60133265.mkv +袁娅维-爱莫,http://em.21dtv.com/songs/60126167.mkv +李瑞丰-暧昧,http://em.21dtv.com/songs/60100153.mkv +沈建豪-阿母,http://em.21dtv.com/songs/60099367.mkv +李祥祥-暧昧,http://em.21dtv.com/songs/60099320.mkv +罗时丰-暧昧,http://em.21dtv.com/songs/60096429.mkv +王成勇-阿美,http://em.21dtv.com/songs/60094594.mkv +李腾-阿嬷,http://em.21dtv.com/songs/60088042.mkv +袁小迪-阿母,http://em.21dtv.com/songs/60084783.mkv +佟宇-阿妹,http://em.21dtv.com/songs/60084782.mkv +亚东-阿妈,http://em.21dtv.com/songs/60082454.mkv +BLINK 182-after midnight,http://em.21dtv.com/songs/60072870.mkv +BEYONCE-ave maria,http://em.21dtv.com/songs/60067851.mkv +唐俪-暧昧,http://em.21dtv.com/songs/60063943.mkv +方顺吉-阿母,http://em.21dtv.com/songs/60063834.mkv +容中尔甲-阿妈,http://em.21dtv.com/songs/60062876.mkv +BUSTA RHYMES-arab money,http://em.21dtv.com/songs/60060755.mkv +麦浚龙-奥玛,http://em.21dtv.com/songs/60009439.mkv +麦浚龙-奥玛(演唱会),http://em.21dtv.com/songs/60009438.mkv +杨丞琳-暧昧,http://em.21dtv.com/songs/60009303.mkv +王菲-暧昧,http://em.21dtv.com/songs/60009302.mkv +黄莺莺-暧昧,http://em.21dtv.com/songs/60009301.mkv +侯湘婷-暧昧,http://em.21dtv.com/songs/60009300.mkv +阿弟仔-暧昧,http://em.21dtv.com/songs/60009299.mkv +王菲-暧昧(演唱会),http://em.21dtv.com/songs/60009298.mkv +张国荣-爱慕,http://em.21dtv.com/songs/60007751.mkv +邝美云-爱慕,http://em.21dtv.com/songs/60007750.mkv +张学友-爱慕(演唱会),http://em.21dtv.com/songs/60007749.mkv +张国荣-爱慕(演唱会),http://em.21dtv.com/songs/60007748.mkv +佚名-爱苗,http://em.21dtv.com/songs/60007747.mkv +春妹-爱苗,http://em.21dtv.com/songs/60007746.mkv +迪克牛仔-爱盲,http://em.21dtv.com/songs/60007730.mkv +杨洪基-啊梦,http://em.21dtv.com/songs/60006857.mkv +容祖儿-阿门(演唱会),http://em.21dtv.com/songs/60006796.mkv +容祖儿+谢霆锋-阿门(演唱会),http://em.21dtv.com/songs/60006795.mkv +李宇春-阿么,http://em.21dtv.com/songs/60006790.mkv +天籁同音-阿玛,http://em.21dtv.com/songs/60006788.mkv +根呷-阿妈,http://em.21dtv.com/songs/60006778.mkv +佚名-asian moon,http://em.21dtv.com/songs/60000349.mkv +叶树茵-answer me,http://em.21dtv.com/songs/60000300.mkv +ERIC CLAPTON-after midnight,http://em.21dtv.com/songs/60000109.mkv +佚名-adios muchachos,http://em.21dtv.com/songs/60000104.mkv +王祖蓝-abc medley,http://em.21dtv.com/songs/60000087.mkv +张艾莉(凤娘)+叶诺帆-艾莉,http://em.21dtv.com/songs/60133692.mkv +同恩-暗恋,http://em.21dtv.com/songs/60127808.mkv +艾洪罕-阿莲,http://em.21dtv.com/songs/60124843.mkv +神木与瞳+黄美珍-爱炼,http://em.21dtv.com/songs/60094624.mkv +蓝乐-暗恋,http://em.21dtv.com/songs/60094282.mkv +黄美珍-爱链,http://em.21dtv.com/songs/60089052.mkv +天悦-暗流,http://em.21dtv.com/songs/60079995.mkv +王平-暗恋,http://em.21dtv.com/songs/60074552.mkv +ETTA JAMES-at last,http://em.21dtv.com/songs/60072906.mkv +袁娅维-at last,http://em.21dtv.com/songs/60072905.mkv +TRAVIS+PORTER+TYGA-ayy ladies,http://em.21dtv.com/songs/60069055.mkv +罗相宜-阿啰咧,http://em.21dtv.com/songs/60066769.mkv +游鸿明-暗流,http://em.21dtv.com/songs/60009394.mkv +张智成-暗恋,http://em.21dtv.com/songs/60009383.mkv +张祥洪-暗恋,http://em.21dtv.com/songs/60009382.mkv +袁泉-暗恋,http://em.21dtv.com/songs/60009381.mkv +王识贤-暗恋,http://em.21dtv.com/songs/60009380.mkv +陶喆-暗恋,http://em.21dtv.com/songs/60009379.mkv +陶晶莹-暗恋,http://em.21dtv.com/songs/60009378.mkv +罗百吉+宝贝-暗恋,http://em.21dtv.com/songs/60009377.mkv +陆一骏-暗恋,http://em.21dtv.com/songs/60009376.mkv +黄晓明-暗恋,http://em.21dtv.com/songs/60009375.mkv +黄西田+樱桃姐妹-暗恋,http://em.21dtv.com/songs/60009374.mkv +黄思婷-暗恋,http://em.21dtv.com/songs/60009373.mkv +佚名-暗恋(无原唱),http://em.21dtv.com/songs/60009372.mkv +佚名-爱侣,http://em.21dtv.com/songs/60007726.mkv +王菲-爱侣,http://em.21dtv.com/songs/60007725.mkv +黄鹤翔-爱恋,http://em.21dtv.com/songs/60007717.mkv +黄美珍-爱炼,http://em.21dtv.com/songs/60007716.mkv +戴军-阿莲,http://em.21dtv.com/songs/60006776.mkv +云开-阿丽,http://em.21dtv.com/songs/60006775.mkv +任军太-阿狼,http://em.21dtv.com/songs/60006760.mkv +袁小迪+龙千玉-阿郎,http://em.21dtv.com/songs/60006757.mkv +佚名-autumn leaves,http://em.21dtv.com/songs/60000364.mkv +张菲-autumn leaves(演唱会),http://em.21dtv.com/songs/60000363.mkv +佚名-april love,http://em.21dtv.com/songs/60000322.mkv +杨欣桦-安可,http://em.21dtv.com/songs/60135407.mkv +戴梅君+徐立鸿-安可,http://em.21dtv.com/songs/60069230.mkv +陈幸子-爱哭,http://em.21dtv.com/songs/60060983.mkv +陈幸子-爱哭(舞曲版),http://em.21dtv.com/songs/60060982.mkv +莫文蔚-安可,http://em.21dtv.com/songs/60009316.mkv +MC HOTDOG-安可,http://em.21dtv.com/songs/60009315.mkv +许志安(铁皮人)-安静,http://em.21dtv.com/songs/60128398.mkv +朱俐静+陈势安-安静,http://em.21dtv.com/songs/60117798.mkv +朱俐静+陈势安-安静,http://em.21dtv.com/songs/60115994.mkv +草蜢+何韵诗-爱将,http://em.21dtv.com/songs/60093093.mkv +[Group] +groupName=十六万歌曲MV等 - 03 +刘昱贤-傲剑,http://em.21dtv.com/songs/60082565.mkv +罗熙杰-安静,http://em.21dtv.com/songs/60081108.mkv +李丽霞+郑世豪-爱将(演唱会),http://em.21dtv.com/songs/60074375.mkv +完玛三智-阿姐,http://em.21dtv.com/songs/60063833.mkv +周杰伦-安静,http://em.21dtv.com/songs/60009311.mkv +周杰伦-安静(演唱会),http://em.21dtv.com/songs/60009310.mkv +许志安-安静(演唱会),http://em.21dtv.com/songs/60009309.mkv +杜文泽-阿尖,http://em.21dtv.com/songs/60006745.mkv +方力申-abc君,http://em.21dtv.com/songs/60000094.mkv +LILY ALLEN-AIR BALLOON,http://em.21dtv.com/songs/60096589.mkv +GREEN DAY-american idiot,http://em.21dtv.com/songs/60000226.mkv +LIFEHOUSE-all in,http://em.21dtv.com/songs/60000160.mkv +冯佳界-暗河,http://em.21dtv.com/songs/60127753.mkv +夏天Alex-爱河,http://em.21dtv.com/songs/60135072.mkv +黄凯芹-爱火,http://em.21dtv.com/songs/60129835.mkv +王思佳-爱火,http://em.21dtv.com/songs/60118782.mkv +彭运铝-暗火,http://em.21dtv.com/songs/60105063.mkv +大庆小芳-爱河,http://em.21dtv.com/songs/60103180.mkv +许云上-爱河(演),http://em.21dtv.com/songs/60099489.mkv +陈洁盈-爱花(无原唱),http://em.21dtv.com/songs/60096004.mkv +孟庭苇-爱海,http://em.21dtv.com/songs/60087671.mkv +许云上-爱河(演唱会),http://em.21dtv.com/songs/60082483.mkv +WE ARE SCIENTISTS-after hours,http://em.21dtv.com/songs/60082063.mkv +蓝琪儿-爱火,http://em.21dtv.com/songs/60074372.mkv +AV芭比-爱火,http://em.21dtv.com/songs/60074371.mkv +李明洋+林姗-爱河,http://em.21dtv.com/songs/60074367.mkv +FAITH HILL-american heart,http://em.21dtv.com/songs/60072887.mkv +MARIAHCARRY-almost home,http://em.21dtv.com/songs/60072883.mkv +蓝琪儿-爱火(舞曲版),http://em.21dtv.com/songs/60071720.mkv +邓福如-all happy,http://em.21dtv.com/songs/60065540.mkv +神马乐团-爱河,http://em.21dtv.com/songs/60063861.mkv +罗钢-爱火,http://em.21dtv.com/songs/60060980.mkv +伊能静-暗花,http://em.21dtv.com/songs/60009369.mkv +卢巧音-暗花,http://em.21dtv.com/songs/60009368.mkv +周杰伦-暗号,http://em.21dtv.com/songs/60009367.mkv +兄弟联-暗号,http://em.21dtv.com/songs/60009366.mkv +方力申+李彩桦-暗号,http://em.21dtv.com/songs/60009365.mkv +张国荣-爱火,http://em.21dtv.com/songs/60007619.mkv +佚名-爱火,http://em.21dtv.com/songs/60007618.mkv +谭咏麟+江淑玲-爱火,http://em.21dtv.com/songs/60007617.mkv +孙耀威-爱火,http://em.21dtv.com/songs/60007616.mkv +张秀卿-爱河,http://em.21dtv.com/songs/60007580.mkv +侯美仪-阿花,http://em.21dtv.com/songs/60006743.mkv +LADY ANTEBELLUM-american honey,http://em.21dtv.com/songs/60000225.mkv +唐艺昕-爱过,http://em.21dtv.com/songs/60130208.mkv +罗艺恒-爱过,http://em.21dtv.com/songs/60126038.mkv +冷漠-爱过,http://em.21dtv.com/songs/60119279.mkv +舜文齐+高晶-爱过,http://em.21dtv.com/songs/60105316.mkv +温蕊尔-暗光,http://em.21dtv.com/songs/60096818.mkv +阿牛-阿公,http://em.21dtv.com/songs/60096723.mkv +巫啓贤-爱过,http://em.21dtv.com/songs/60092549.mkv +王君馨+陈明恩-amazing grace(my chains are gone),http://em.21dtv.com/songs/60086319.mkv +黑妹-傲骨(演唱会),http://em.21dtv.com/songs/60074557.mkv +福禄寿-爱歌,http://em.21dtv.com/songs/60074354.mkv +许慧欣-anything goes,http://em.21dtv.com/songs/60072899.mkv +王祖蓝+阮兆祥+李思捷-爱歌,http://em.21dtv.com/songs/60068042.mkv +海鸣威-爱过,http://em.21dtv.com/songs/60065779.mkv +AZIATIX-a game,http://em.21dtv.com/songs/60063519.mkv +谭咏麟-傲骨,http://em.21dtv.com/songs/60009430.mkv +谭咏麟-傲骨(演唱会),http://em.21dtv.com/songs/60009429.mkv +舜文齐+于娜-爱过,http://em.21dtv.com/songs/60007528.mkv +戴佩妮-爱过,http://em.21dtv.com/songs/60007527.mkv +陈楚生+安以轩-爱过,http://em.21dtv.com/songs/60007526.mkv +F.I.R-爱过,http://em.21dtv.com/songs/60007525.mkv +越剧-爱歌,http://em.21dtv.com/songs/60007512.mkv +许志英-爱歌,http://em.21dtv.com/songs/60007511.mkv +黄梅戏-爱歌,http://em.21dtv.com/songs/60007510.mkv +何家伟+王少瑜-爱歌,http://em.21dtv.com/songs/60007509.mkv +陈奕迅-阿怪,http://em.21dtv.com/songs/60006740.mkv +宗庸卓玛-阿哥,http://em.21dtv.com/songs/60006733.mkv +艳阳天-阿哥,http://em.21dtv.com/songs/60006732.mkv +大黑摩季-anything goes(演唱会),http://em.21dtv.com/songs/60000313.mkv +LLOYD BANKS-any girl,http://em.21dtv.com/songs/60000306.mkv +佚名-amazing grace,http://em.21dtv.com/songs/60000219.mkv +林育群-amazing grace,http://em.21dtv.com/songs/60000218.mkv +苏仨-爱疯,http://em.21dtv.com/songs/60080704.mkv +ALUNAGEORGE-attracting flies,http://em.21dtv.com/songs/60072908.mkv +那英-always friends,http://em.21dtv.com/songs/60063527.mkv +佚名-爱抚(无原唱),http://em.21dtv.com/songs/60007503.mkv +周汤豪-爱疯,http://em.21dtv.com/songs/60007499.mkv +女F4-爱妃,http://em.21dtv.com/songs/60007497.mkv +周蕙-angel face,http://em.21dtv.com/songs/60000255.mkv +LOVE AND THEFT-angel eyes,http://em.21dtv.com/songs/60072890.mkv +ABBA-angel eyes,http://em.21dtv.com/songs/60000254.mkv +高登+黄甄妮-爱的didadi,http://em.21dtv.com/songs/60082467.mkv +任东霖-爱刀,http://em.21dtv.com/songs/60090538.mkv +CODY SIMPSON-all day,http://em.21dtv.com/songs/60072874.mkv +LADY GODIVA-alex day,http://em.21dtv.com/songs/60067848.mkv +飞轮海-爱到,http://em.21dtv.com/songs/60007066.mkv +RAIN-any dream,http://em.21dtv.com/songs/60000305.mkv +WHIGFIELD-another day,http://em.21dtv.com/songs/60000293.mkv +PAUL MCCARTNEY-another day(无原唱),http://em.21dtv.com/songs/60000292.mkv +STARLAND VOCAL BAND-afternoon delight,http://em.21dtv.com/songs/60000114.mkv +陈升-阿草,http://em.21dtv.com/songs/60088855.mkv +梦托翼乐团-after cry,http://em.21dtv.com/songs/60082062.mkv +SUPER JUNIOR-M-a cha,http://em.21dtv.com/songs/60063518.mkv +王力宏-爱错,http://em.21dtv.com/songs/60007057.mkv +李心洁-爱错,http://em.21dtv.com/songs/60007056.mkv +王力宏-爱错(演唱会),http://em.21dtv.com/songs/60007055.mkv +卫兰-爱才,http://em.21dtv.com/songs/60007043.mkv +辛晓琪-哀愁,http://em.21dtv.com/songs/60006891.mkv +张焱-another chance,http://em.21dtv.com/songs/60000289.mkv +MARIAH CAREY+NE-YO-angels cry,http://em.21dtv.com/songs/60000278.mkv +佚名-always coca-cola(无原唱),http://em.21dtv.com/songs/60000198.mkv +施文彬-阿宝,http://em.21dtv.com/songs/60131468.mkv +呷让东周-阿爸,http://em.21dtv.com/songs/60131274.mkv +袁小迪-阿爸,http://em.21dtv.com/songs/60128379.mkv +天亮-阿布,http://em.21dtv.com/songs/60126743.mkv +李明洋-阿爸,http://em.21dtv.com/songs/60108571.mkv +兰卡措-阿爸,http://em.21dtv.com/songs/60084778.mkv +胡红艳-敖包,http://em.21dtv.com/songs/60074555.mkv +ももいろクローバーZ-サラバ、爱しき悲しみたちよ,http://em.21dtv.com/songs/60074239.mkv +黄立行-爱吧(演唱会),http://em.21dtv.com/songs/60006947.mkv +周杰伦+洪荣宏-阿爸,http://em.21dtv.com/songs/60006710.mkv +AVRIL LAVIGNE-anything bu(演唱会),http://em.21dtv.com/songs/60000311.mkv +佚名-angie baby,http://em.21dtv.com/songs/60000281.mkv +ESTELLE+KANYE WEST-american boy,http://em.21dtv.com/songs/60000224.mkv +ALYSSA REID-alone again,http://em.21dtv.com/songs/60065560.mkv +曹格-爱爱,http://em.21dtv.com/songs/60006937.mkv +李明洋-爱啊,http://em.21dtv.com/songs/60006936.mkv +萧贺硕+伍家辉-唉!爱,http://em.21dtv.com/songs/60006895.mkv +A-LIN-ah ah,http://em.21dtv.com/songs/60000122.mkv +PETER CETERA+CHER-after all,http://em.21dtv.com/songs/60000108.mkv +丰崎爱生-フリップ フロップ,http://em.21dtv.com/songs/60082442.mkv +MAY N-ダイアモンド クレパス(演唱会),http://em.21dtv.com/songs/60082438.mkv +大冢爱-ビー玉,http://em.21dtv.com/songs/60006685.mkv +伊能静-ㄛㄛ,http://em.21dtv.com/songs/60006707.mkv +佚名-ロード,http://em.21dtv.com/songs/60006705.mkv +游助-ひと,http://em.21dtv.com/songs/60006686.mkv +佚名-はは,http://em.21dtv.com/songs/60006682.mkv +苗小青-釂,http://em.21dtv.com/songs/60132834.mkv +初音ミク-サリシノハラ,http://em.21dtv.com/songs/60127784.mkv +TOKIO-ホントんとこ,http://em.21dtv.com/songs/60100755.mkv +丰崎爱生-ディライト,http://em.21dtv.com/songs/60099066.mkv +THE SKETCHBOOK-道,http://em.21dtv.com/songs/60064119.mkv +2PM-マスカレード ~masquerade~,http://em.21dtv.com/songs/60071701.mkv +AQUA TIMEZ-虹(演唱会),http://em.21dtv.com/songs/60066030.mkv +CLARIS-ナイショの话,http://em.21dtv.com/songs/60065754.mkv +SAMP-さかさまの空,http://em.21dtv.com/songs/60070430.mkv +2PM-君がいれば,http://em.21dtv.com/songs/60070835.mkv +加藤ミリヤ-aiaiai,http://em.21dtv.com/songs/60071566.mkv +童话里不是骗人的-追,http://em.21dtv.com/songs/60128284.mkv +蒲庭龙+办桌二人组-追,http://em.21dtv.com/songs/60072821.mkv +孙燕姿-追,http://em.21dtv.com/songs/60061912.mkv +周笔畅-走,http://em.21dtv.com/songs/60071550.mkv +THE CRANBERRIES-zombie,http://em.21dtv.com/songs/60069162.mkv +张婧-找,http://em.21dtv.com/songs/60061882.mkv +六哲+马俊杰-装,http://em.21dtv.com/songs/60134911.mkv +张玮-绽,http://em.21dtv.com/songs/60132460.mkv +COM'Z(康姆士乐团)-走,http://em.21dtv.com/songs/60131047.mkv +刘维-躁,http://em.21dtv.com/songs/60128840.mkv +谢震东-醉,http://em.21dtv.com/songs/60126209.mkv +戴佩妮-贼,http://em.21dtv.com/songs/60125597.mkv +常青-转,http://em.21dtv.com/songs/60125468.mkv +艾龙勐傣-走,http://em.21dtv.com/songs/60124847.mkv +钟纯妍-装,http://em.21dtv.com/songs/60124596.mkv +S.I.N.G女团-战,http://em.21dtv.com/songs/60119180.mkv +梁咏琪-追,http://em.21dtv.com/songs/60114631.mkv +齐浠儿-坠,http://em.21dtv.com/songs/60114312.mkv +Gentlemen-赞,http://em.21dtv.com/songs/60110763.mkv +郑劲松-醉,http://em.21dtv.com/songs/60108051.mkv +郑钧-作,http://em.21dtv.com/songs/60107276.mkv +郑钧-作,http://em.21dtv.com/songs/60106328.mkv +彭开胜-竹,http://em.21dtv.com/songs/60104149.mkv +喻恩泰-追,http://em.21dtv.com/songs/60103172.mkv +吴克群-追,http://em.21dtv.com/songs/60101052.mkv +张一一-张,http://em.21dtv.com/songs/60096572.mkv +蔡孟臻-痣,http://em.21dtv.com/songs/60094682.mkv +肖懿航+萧敬腾-追,http://em.21dtv.com/songs/60094643.mkv +香香-追,http://em.21dtv.com/songs/60086182.mkv +蔡昱佑-走,http://em.21dtv.com/songs/60084610.mkv +邓养天-追,http://em.21dtv.com/songs/60084597.mkv +谭锡禧-追(演唱会),http://em.21dtv.com/songs/60084596.mkv +陈楚生-醉,http://em.21dtv.com/songs/60081295.mkv +CLOSER-醉,http://em.21dtv.com/songs/60079824.mkv +李雨寰-妆,http://em.21dtv.com/songs/60079703.mkv +FLUMPOOL-证,http://em.21dtv.com/songs/60079592.mkv +卓文萱-针,http://em.21dtv.com/songs/60079561.mkv +潘裕文-针,http://em.21dtv.com/songs/60079560.mkv +郑秀月-醉(无原唱),http://em.21dtv.com/songs/60060481.mkv +佚名-醉(无原唱),http://em.21dtv.com/songs/60060480.mkv +夏卡毛乐团-罪,http://em.21dtv.com/songs/60060466.mkv +BEYOND-罪(演唱会),http://em.21dtv.com/songs/60060465.mkv +温岚-走,http://em.21dtv.com/songs/60059856.mkv +苏有朋-走,http://em.21dtv.com/songs/60059855.mkv +李腾-走,http://em.21dtv.com/songs/60059854.mkv +张国荣-追,http://em.21dtv.com/songs/60059500.mkv +林隆璇-追,http://em.21dtv.com/songs/60059499.mkv +李迪文-追,http://em.21dtv.com/songs/60059498.mkv +张学友-追(演唱会),http://em.21dtv.com/songs/60059497.mkv +张信哲-追(演唱会),http://em.21dtv.com/songs/60059496.mkv +卢巧音-追(演唱会),http://em.21dtv.com/songs/60059495.mkv +古巨基-追(演唱会),http://em.21dtv.com/songs/60059494.mkv +陈慧琳-追(演唱会),http://em.21dtv.com/songs/60059493.mkv +傅佩嘉-转,http://em.21dtv.com/songs/60059432.mkv +傅佩嘉-转(演唱会),http://em.21dtv.com/songs/60059431.mkv +伊妹儿-拽,http://em.21dtv.com/songs/60059416.mkv +孙燕姿-种(演唱会),http://em.21dtv.com/songs/60059071.mkv +房祖名-忠,http://em.21dtv.com/songs/60058995.mkv +周治平-筝,http://em.21dtv.com/songs/60058328.mkv +SPANDAU BALLETT-真,http://em.21dtv.com/songs/60058023.mkv +RYAN CABRERA-真,http://em.21dtv.com/songs/60058022.mkv +王心凌-这,http://em.21dtv.com/songs/60057747.mkv +谢霆锋-战(演唱会),http://em.21dtv.com/songs/60057462.mkv +范晓萱-战(演唱会),http://em.21dtv.com/songs/60057461.mkv +林淑蓉-粘,http://em.21dtv.com/songs/60057443.mkv +羽泉-宅,http://em.21dtv.com/songs/60057438.mkv +梁汉文-躁,http://em.21dtv.com/songs/60057329.mkv +李宇春-zombie(演唱会),http://em.21dtv.com/songs/60006635.mkv +佚名-zidane,http://em.21dtv.com/songs/60006634.mkv +W.K-云,http://em.21dtv.com/songs/60066569.mkv +李佳璐+施文斌-怨,http://em.21dtv.com/songs/60067755.mkv +王菲-愿,http://em.21dtv.com/songs/60066561.mkv +女孩与机器人-鱼,http://em.21dtv.com/songs/60072751.mkv +CHRIS YOUNG-you,http://em.21dtv.com/songs/60065734.mkv +SOLER-蛹,http://em.21dtv.com/songs/60061840.mkv +AKB48-泪のせいじゃない,http://em.21dtv.com/songs/60099645.mkv +陈楚生-瘾,http://em.21dtv.com/songs/60066535.mkv +张萌萌-呓,http://em.21dtv.com/songs/60065365.mkv +朴慧京-yesterday,http://em.21dtv.com/songs/60068013.mkv +小宝-夜,http://em.21dtv.com/songs/60065317.mkv +平井坚+安室奈美恵-グロテスク,http://em.21dtv.com/songs/60099993.mkv +庞龙-摇,http://em.21dtv.com/songs/60070122.mkv +谭维维-演(演唱会),http://em.21dtv.com/songs/60070117.mkv +悬铃木-鱼,http://em.21dtv.com/songs/60135296.mkv +张晓钰-药,http://em.21dtv.com/songs/60135204.mkv +游烨-忆,http://em.21dtv.com/songs/60133949.mkv +田馥甄-痒,http://em.21dtv.com/songs/60130620.mkv +怕胖团-鱼,http://em.21dtv.com/songs/60130352.mkv +华晨宇+杨坤-痒,http://em.21dtv.com/songs/60130137.mkv +魏新雨-愿,http://em.21dtv.com/songs/60127612.mkv +好妹妹乐队-月,http://em.21dtv.com/songs/60126760.mkv +黄晓明-缘,http://em.21dtv.com/songs/60126481.mkv +朱克-约,http://em.21dtv.com/songs/60125666.mkv +曾岑-夜,http://em.21dtv.com/songs/60125656.mkv +マオ From SID-月,http://em.21dtv.com/songs/60123578.mkv +JERR+S ELEMENT-烟,http://em.21dtv.com/songs/60122386.mkv +张阳阳+徐嘉苇-缘,http://em.21dtv.com/songs/60121682.mkv +肖镒舟-影,http://em.21dtv.com/songs/60119894.mkv +AGA-圆,http://em.21dtv.com/songs/60119096.mkv +凤娘-夜,http://em.21dtv.com/songs/60118378.mkv +谭维维-演,http://em.21dtv.com/songs/60117244.mkv +陈艺熙-雨,http://em.21dtv.com/songs/60115510.mkv +黄霄云-鱼,http://em.21dtv.com/songs/60114305.mkv +邱嘉敏-夜,http://em.21dtv.com/songs/60114121.mkv +彭浩-愿,http://em.21dtv.com/songs/60111095.mkv +王劭臻-忆,http://em.21dtv.com/songs/60110385.mkv +刘德华-一(HD),http://em.21dtv.com/songs/10012651.mkv +黄晓明-缘,http://em.21dtv.com/songs/60109782.mkv +谢铭佑-伊,http://em.21dtv.com/songs/60109630.mkv +卓文萱-瘾,http://em.21dtv.com/songs/60108359.mkv +阿才-易,http://em.21dtv.com/songs/60108110.mkv +王永春-易,http://em.21dtv.com/songs/60107905.mkv +姚贝娜-鱼,http://em.21dtv.com/songs/60107644.mkv +二古月-妤,http://em.21dtv.com/songs/60107470.mkv +关喆-烟,http://em.21dtv.com/songs/60105614.mkv +河口恭吾-樱,http://em.21dtv.com/songs/60105217.mkv +AGA-一,http://em.21dtv.com/songs/60104649.mkv +黄琦雯-雨,http://em.21dtv.com/songs/60104633.mkv +郑志立-夜,http://em.21dtv.com/songs/60104488.mkv +赵枣儿-夜,http://em.21dtv.com/songs/60104456.mkv +路飞老湿-隐,http://em.21dtv.com/songs/60103600.mkv +彩贝与海-影,http://em.21dtv.com/songs/60103294.mkv +刘欢-夜,http://em.21dtv.com/songs/60101968.mkv +谢安琪-一,http://em.21dtv.com/songs/60100965.mkv +程鸣-忆,http://em.21dtv.com/songs/60100363.mkv +拥江帆-源,http://em.21dtv.com/songs/60099259.mkv +林忆莲-愿(新版),http://em.21dtv.com/songs/60096586.mkv +张继心-缘,http://em.21dtv.com/songs/60096080.mkv +莫文蔚-野,http://em.21dtv.com/songs/60095219.mkv +郑伊健-雨,http://em.21dtv.com/songs/60093270.mkv +江映蓉-野,http://em.21dtv.com/songs/60091580.mkv +新疆民歌-银,http://em.21dtv.com/songs/60089918.mkv +尧尧-雨,http://em.21dtv.com/songs/60087724.mkv +付梦妮-雨,http://em.21dtv.com/songs/60086167.mkv +彭青-鱼,http://em.21dtv.com/songs/60084459.mkv +王启文-烟,http://em.21dtv.com/songs/60084315.mkv +SECRET-yoohoo,http://em.21dtv.com/songs/60082408.mkv +LANA DEL REY-yayo,http://em.21dtv.com/songs/60082405.mkv +伟豪-缘,http://em.21dtv.com/songs/60080749.mkv +黄征-鱼,http://em.21dtv.com/songs/60080586.mkv +门丽-云,http://em.21dtv.com/songs/60079436.mkv +吴莫愁-痒,http://em.21dtv.com/songs/60079031.mkv +章莹莹+华少翌-yyy,http://em.21dtv.com/songs/60074208.mkv +HOLLYWOOD UNDEAD-young,http://em.21dtv.com/songs/60074199.mkv +LLOYD+LIL WAYNE-you,http://em.21dtv.com/songs/60074195.mkv +THE LONELY ISLAND+ADAM LEVINE+KENDRICK LAMAR-yolo,http://em.21dtv.com/songs/60074175.mkv +DRAMATIC BLACK-yesterday,http://em.21dtv.com/songs/60074174.mkv +CHAD BROCK-yes,http://em.21dtv.com/songs/60074173.mkv +林宥嘉-诱,http://em.21dtv.com/songs/60068945.mkv +侧田-运(演唱会),http://em.21dtv.com/songs/60056690.mkv +黄乙玲-运(无原唱),http://em.21dtv.com/songs/60056689.mkv +佚名-愿,http://em.21dtv.com/songs/60056195.mkv +林忆莲-愿,http://em.21dtv.com/songs/60056194.mkv +张敬轩-愿(演唱会),http://em.21dtv.com/songs/60056193.mkv +泳儿-愿(演唱会),http://em.21dtv.com/songs/60056192.mkv +林忆莲-愿(演唱会),http://em.21dtv.com/songs/60056191.mkv +梁咏琪-愿(演唱会),http://em.21dtv.com/songs/60056190.mkv +何韵诗-愿(演唱会),http://em.21dtv.com/songs/60056189.mkv +辛欣-远,http://em.21dtv.com/songs/60056126.mkv +王菲菲-远,http://em.21dtv.com/songs/60056125.mkv +李健-远(演唱会),http://em.21dtv.com/songs/60056124.mkv +亚东-缘,http://em.21dtv.com/songs/60056055.mkv +谢采妘-缘,http://em.21dtv.com/songs/60056054.mkv +潘安邦-缘,http://em.21dtv.com/songs/60056053.mkv +高胜美-缘,http://em.21dtv.com/songs/60056052.mkv +太极乐队-缘(演唱会),http://em.21dtv.com/songs/60056051.mkv +李冠璋-缘(无原唱),http://em.21dtv.com/songs/60056050.mkv +何以奇-圆,http://em.21dtv.com/songs/60056030.mkv +AI MINI-遇,http://em.21dtv.com/songs/60055833.mkv +刘文正-遇(无原唱),http://em.21dtv.com/songs/60055832.mkv +翼势力-雨,http://em.21dtv.com/songs/60055631.mkv +熊照华-雨,http://em.21dtv.com/songs/60055630.mkv +光良-雨,http://em.21dtv.com/songs/60055629.mkv +高枫-雨,http://em.21dtv.com/songs/60055628.mkv +本多RURU-雨,http://em.21dtv.com/songs/60055627.mkv +威利-雨(演唱会),http://em.21dtv.com/songs/60055626.mkv +高枫-雨(演唱会),http://em.21dtv.com/songs/60055625.mkv +脱拉库-雨(无原唱),http://em.21dtv.com/songs/60055624.mkv +江明学-雨(无原唱),http://em.21dtv.com/songs/60055623.mkv +陈绮贞-鱼,http://em.21dtv.com/songs/60055515.mkv +李宇春-鱼(演唱会),http://em.21dtv.com/songs/60055514.mkv +张蓉蓉-勇,http://em.21dtv.com/songs/60054812.mkv +杨千嬅-勇(演唱会),http://em.21dtv.com/songs/60054811.mkv +区俊涛-硬,http://em.21dtv.com/songs/60054558.mkv +张秀卿-赢(无原唱),http://em.21dtv.com/songs/60054527.mkv +许哲佩-蝇,http://em.21dtv.com/songs/60054526.mkv +容祖儿-萤,http://em.21dtv.com/songs/60054512.mkv +FUNKY MONKEY BABYS-桜,http://em.21dtv.com/songs/60054451.mkv +红金升-饮(无原唱),http://em.21dtv.com/songs/60054356.mkv +林慧萍-驿,http://em.21dtv.com/songs/60054170.mkv +刘文正-忆,http://em.21dtv.com/songs/60054112.mkv +刘德华-一,http://em.21dtv.com/songs/60052711.mkv +刘德华-一(演唱会),http://em.21dtv.com/songs/60052710.mkv +萧亚轩-夜,http://em.21dtv.com/songs/60052521.mkv +吴倩莲-夜,http://em.21dtv.com/songs/60052520.mkv +葛本军-夜,http://em.21dtv.com/songs/60052519.mkv +金子嫣-夜(无原唱),http://em.21dtv.com/songs/60052518.mkv +黄立行-要,http://em.21dtv.com/songs/60052348.mkv +黄龄-痒,http://em.21dtv.com/songs/60052232.mkv +ERIC-晏,http://em.21dtv.com/songs/60052123.mkv +张学友-演,http://em.21dtv.com/songs/60052103.mkv +辛晓琪-烟,http://em.21dtv.com/songs/60051938.mkv +谢雨欣-烟,http://em.21dtv.com/songs/60051937.mkv +王菲-烟,http://em.21dtv.com/songs/60051936.mkv +LMF-yyyy,http://em.21dtv.com/songs/60006632.mkv +幸田来未-you,http://em.21dtv.com/songs/60006584.mkv +滨崎步-you,http://em.21dtv.com/songs/60006583.mkv +S CLUB 7-you,http://em.21dtv.com/songs/60006582.mkv +小松拓也-yokohama,http://em.21dtv.com/songs/60006481.mkv +庾澄庆-ymca,http://em.21dtv.com/songs/60006475.mkv +Y.I.Y.O-yiyo,http://em.21dtv.com/songs/60006474.mkv +车静子-yesterday,http://em.21dtv.com/songs/60006471.mkv +蔡淳佳-yesterday,http://em.21dtv.com/songs/60006470.mkv +THE BEATLES-yesterday,http://em.21dtv.com/songs/60006469.mkv +太极乐队-yesterday(演唱会),http://em.21dtv.com/songs/60006468.mkv +大无限乐团-yesterday&today,http://em.21dtv.com/songs/60006467.mkv +棒棒糖-yes!,http://em.21dtv.com/songs/60006460.mkv +COLDPLAY-yellow,http://em.21dtv.com/songs/60006454.mkv +USHER-yeah,http://em.21dtv.com/songs/60006447.mkv +MBLAQ-y,http://em.21dtv.com/songs/60006440.mkv +张力伊-y(why),http://em.21dtv.com/songs/60006439.mkv +邓雯心-雪(演唱会),http://em.21dtv.com/songs/60070109.mkv +黄灿-雪,http://em.21dtv.com/songs/60066504.mkv +杜雯媞+王艺翔-雪,http://em.21dtv.com/songs/60066503.mkv +涓子-絮,http://em.21dtv.com/songs/60065290.mkv +蛋堡+徐佳莹-嘘,http://em.21dtv.com/songs/60065287.mkv +游助-いるよ,http://em.21dtv.com/songs/60100290.mkv +高洪章-想(演唱会),http://em.21dtv.com/songs/60061749.mkv +刘一祯-信,http://em.21dtv.com/songs/60071353.mkv +华晨宇-寻,http://em.21dtv.com/songs/60134952.mkv +刘惜君-线,http://em.21dtv.com/songs/60134936.mkv +不可撤销-侠,http://em.21dtv.com/songs/60134846.mkv +Zpecial-想,http://em.21dtv.com/songs/60134829.mkv +周柏豪-嚣,http://em.21dtv.com/songs/60133489.mkv +小小李-戏,http://em.21dtv.com/songs/60132386.mkv +IU-心,http://em.21dtv.com/songs/60132086.mkv +谭娟-喜,http://em.21dtv.com/songs/60131818.mkv +李琦-笑,http://em.21dtv.com/songs/60130431.mkv +张金利-星,http://em.21dtv.com/songs/60130340.mkv +李玉玺-想,http://em.21dtv.com/songs/60129235.mkv +颜婷易兰-夏,http://em.21dtv.com/songs/60128589.mkv +曾春年-戏,http://em.21dtv.com/songs/60128063.mkv +高鹏+秦川+周华安-戏,http://em.21dtv.com/songs/60127610.mkv +王瑞淇-夏,http://em.21dtv.com/songs/60127204.mkv +青春大卫-笑,http://em.21dtv.com/songs/60126427.mkv +花世纪乐团-想,http://em.21dtv.com/songs/60126097.mkv +花世纪-想,http://em.21dtv.com/songs/60124393.mkv +マオ From SID-星,http://em.21dtv.com/songs/60123577.mkv +杜雯媞-雪,http://em.21dtv.com/songs/60120649.mkv +宋荷艺-星,http://em.21dtv.com/songs/60120462.mkv +邓丽君-星,http://em.21dtv.com/songs/60114114.mkv +胡恩瑞-心,http://em.21dtv.com/songs/60112159.mkv +佟大为-想,http://em.21dtv.com/songs/60109979.mkv +鸿飞-想,http://em.21dtv.com/songs/60109766.mkv +谢铭佑-想,http://em.21dtv.com/songs/60108891.mkv +徐雯-星,http://em.21dtv.com/songs/60108525.mkv +陈彩林-泫,http://em.21dtv.com/songs/60106396.mkv +みみめめMIMI-サヨナラ嘘ツキ(动画),http://em.21dtv.com/songs/60100756.mkv +齐萧-寻,http://em.21dtv.com/songs/60100686.mkv +李佳薇-鞋,http://em.21dtv.com/songs/60100123.mkv +倪彬+王劲峰-陉,http://em.21dtv.com/songs/60099094.mkv +周子琰-信,http://em.21dtv.com/songs/60096219.mkv +临记-削,http://em.21dtv.com/songs/60092237.mkv +杨斯壬-醒,http://em.21dtv.com/songs/60086056.mkv +佳小宇-心,http://em.21dtv.com/songs/60086039.mkv +赵奕欢-喜,http://em.21dtv.com/songs/60085977.mkv +シド-嘘(演唱会),http://em.21dtv.com/songs/60084300.mkv +中岛美雪-幸せ,http://em.21dtv.com/songs/60084270.mkv +谭锡禧-星(演唱会),http://em.21dtv.com/songs/60084260.mkv +AKB48-ハート型ウイルス(演唱会),http://em.21dtv.com/songs/60082441.mkv +可爱+权正烈-星,http://em.21dtv.com/songs/60078890.mkv +郑少秋-星(演唱会),http://em.21dtv.com/songs/60078889.mkv +罗桦-星(演唱会),http://em.21dtv.com/songs/60078888.mkv +柳影虹-星(演唱会),http://em.21dtv.com/songs/60078887.mkv +陈浩德-星(演唱会),http://em.21dtv.com/songs/60078886.mkv +方伊琪-信(演唱会),http://em.21dtv.com/songs/60078881.mkv +T ARA-コジンマル ~嘘~,http://em.21dtv.com/songs/60074234.mkv +刘惜君-星,http://em.21dtv.com/songs/60071356.mkv +YU-A-あなたの笑颜,http://em.21dtv.com/songs/60068018.mkv +邓丽君-星(无原唱),http://em.21dtv.com/songs/60066491.mkv +小宝-星,http://em.21dtv.com/songs/60065267.mkv +佚名-寻,http://em.21dtv.com/songs/60051804.mkv +额尔古纳乐队-寻,http://em.21dtv.com/songs/60051803.mkv +雪儿-雪,http://em.21dtv.com/songs/60051669.mkv +唐杰-雪,http://em.21dtv.com/songs/60051668.mkv +韩红-雪,http://em.21dtv.com/songs/60051667.mkv +杜鹃+王艺翔-雪,http://em.21dtv.com/songs/60051666.mkv +崎君-炫,http://em.21dtv.com/songs/60051626.mkv +梁静茹-序,http://em.21dtv.com/songs/60051572.mkv +何韵诗-嘘(演唱会),http://em.21dtv.com/songs/60051552.mkv +刘若英-熊,http://em.21dtv.com/songs/60051484.mkv +郑秀文-星,http://em.21dtv.com/songs/60051037.mkv +佚名-星,http://em.21dtv.com/songs/60051036.mkv +关正杰-星,http://em.21dtv.com/songs/60051035.mkv +徐小凤-星(演唱会),http://em.21dtv.com/songs/60051034.mkv +佚名-星(慢四),http://em.21dtv.com/songs/60051033.mkv +周丽淇-信,http://em.21dtv.com/songs/60050993.mkv +佚名-信,http://em.21dtv.com/songs/60050992.mkv +齐嘉-鞋,http://em.21dtv.com/songs/60049992.mkv +郑希怡-想,http://em.21dtv.com/songs/60048983.mkv +张陵乐-想,http://em.21dtv.com/songs/60048982.mkv +张峰奇-想,http://em.21dtv.com/songs/60048981.mkv +叶启田-想,http://em.21dtv.com/songs/60048980.mkv +王炎-想,http://em.21dtv.com/songs/60048979.mkv +胡彦斌-想,http://em.21dtv.com/songs/60048978.mkv +何炅-想,http://em.21dtv.com/songs/60048977.mkv +阿妹妹-想,http://em.21dtv.com/songs/60048976.mkv +徐小凤-想(演唱会),http://em.21dtv.com/songs/60048975.mkv +彭佳慧-想(演唱会),http://em.21dtv.com/songs/60048974.mkv +刘子千-想(演唱会),http://em.21dtv.com/songs/60048973.mkv +蔡秋凤-香(无原唱),http://em.21dtv.com/songs/60048893.mkv +黄秋生-吓,http://em.21dtv.com/songs/60048358.mkv +严宽-戏,http://em.21dtv.com/songs/60048192.mkv +梁汉文-囍,http://em.21dtv.com/songs/60048191.mkv +黎明-喜,http://em.21dtv.com/songs/60048101.mkv +黎明-喜(演唱会),http://em.21dtv.com/songs/60048100.mkv +叶瑗菱-惜,http://em.21dtv.com/songs/60048015.mkv +荒山亮-行,http://em.21dtv.com/songs/60019931.mkv +薛凯琪-xbf,http://em.21dtv.com/songs/60006437.mkv +林俊杰-x,http://em.21dtv.com/songs/60006436.mkv +楼宏章-悟,http://em.21dtv.com/songs/60071295.mkv +BTOB-wow,http://em.21dtv.com/songs/60070421.mkv +ANGEL-wonderful,http://em.21dtv.com/songs/60070418.mkv +DJ KHALED-wonderful,http://em.21dtv.com/songs/60062008.mkv +蔡依林-我,http://em.21dtv.com/songs/60069931.mkv +LITTLE MIX-wings,http://em.21dtv.com/songs/60071692.mkv +JASON DERULO+SNOOP DOGG-Wiggle,http://em.21dtv.com/songs/60100726.mkv +PASSENGER-Whispers,http://em.21dtv.com/songs/60101222.mkv +NICOLE SCHERZINGER-wet,http://em.21dtv.com/songs/60063792.mkv +蔡幸娟-问,http://em.21dtv.com/songs/60068745.mkv +吴春燕-我的祖国(演唱会),http://em.21dtv.com/songs/60063093.mkv +THE WANTED-warzone,http://em.21dtv.com/songs/60065724.mkv +HUNTER HAYES-wanted,http://em.21dtv.com/songs/60066751.mkv +JESSIE JAMES-wanted,http://em.21dtv.com/songs/60063787.mkv +BERRYZ工房-want!,http://em.21dtv.com/songs/60071684.mkv +陈奕迅-完,http://em.21dtv.com/songs/60069892.mkv +少女部落格-玩,http://em.21dtv.com/songs/60064993.mkv +MARY MARY-Walking,http://em.21dtv.com/songs/60099681.mkv +古巨基-我,http://em.21dtv.com/songs/60134980.mkv +王程程-王,http://em.21dtv.com/songs/60134002.mkv +小臭臭-我,http://em.21dtv.com/songs/60133601.mkv +魏如萱-歪,http://em.21dtv.com/songs/60130919.mkv +王春江-悟,http://em.21dtv.com/songs/60123004.mkv +王如华-悟,http://em.21dtv.com/songs/60122995.mkv +苏运莹-我,http://em.21dtv.com/songs/60118867.mkv +伍凌枫-我,http://em.21dtv.com/songs/60107485.mkv +彭佳慧-我,http://em.21dtv.com/songs/60106874.mkv +陈永馨-我,http://em.21dtv.com/songs/60105492.mkv +小乔-问,http://em.21dtv.com/songs/60103230.mkv +酒二郎-悟,http://em.21dtv.com/songs/60102824.mkv +卓子骞-我,http://em.21dtv.com/songs/60102003.mkv +吴光明-我,http://em.21dtv.com/songs/60098189.mkv +古巨基+李泉-我,http://em.21dtv.com/songs/60098176.mkv +柯有伦-喂,http://em.21dtv.com/songs/60096580.mkv +华晨宇-我,http://em.21dtv.com/songs/60095270.mkv +李贞贤-哇,http://em.21dtv.com/songs/60091374.mkv +严爵-兀,http://em.21dtv.com/songs/60085969.mkv +JESSIE J-wild,http://em.21dtv.com/songs/60084773.mkv +柯以敏-我,http://em.21dtv.com/songs/60084001.mkv +邓惠欣+李丽蕊-问(演唱会),http://em.21dtv.com/songs/60083997.mkv +何韵诗-忘,http://em.21dtv.com/songs/60083955.mkv +艾怡良-wonderland,http://em.21dtv.com/songs/60082403.mkv +EXO-M-wolf,http://em.21dtv.com/songs/60082402.mkv +NINE MUSES-wild,http://em.21dtv.com/songs/60082399.mkv +高玉玫-wave,http://em.21dtv.com/songs/60082388.mkv +范玮琪+胡维纳-问,http://em.21dtv.com/songs/60081630.mkv +戴佩妮-吻,http://em.21dtv.com/songs/60080935.mkv +邰正宵-问,http://em.21dtv.com/songs/60080263.mkv +SABRINA-悟(演唱会),http://em.21dtv.com/songs/60078488.mkv +冷漠-我,http://em.21dtv.com/songs/60078134.mkv +廖昌永-问,http://em.21dtv.com/songs/60078128.mkv +陈奕迅-蚊,http://em.21dtv.com/songs/60078125.mkv +PERFUME-微かなカオリ,http://em.21dtv.com/songs/60078060.mkv +安室奈美惠-wowa,http://em.21dtv.com/songs/60074166.mkv +CIARA+MISSY ELLIOTT-work,http://em.21dtv.com/songs/60074163.mkv +NATALIA KILLS-wonderland,http://em.21dtv.com/songs/60074157.mkv +NAUGHTY BOY+EMELI SANDE-wonder,http://em.21dtv.com/songs/60074156.mkv +PET SHOP BOYS-winner,http://em.21dtv.com/songs/60074151.mkv +JANA KRAMER-whiskey,http://em.21dtv.com/songs/60074130.mkv +渡边-westaipei,http://em.21dtv.com/songs/60074105.mkv +STOOSHE-waterfalls,http://em.21dtv.com/songs/60074096.mkv +JACK BEAT+EXAMPLE+DIPLO-war,http://em.21dtv.com/songs/60074095.mkv +YING YANG TWINS-wait,http://em.21dtv.com/songs/60074092.mkv +FOO FIGHTERS-walk,http://em.21dtv.com/songs/60060956.mkv +BIG TIME RUSH-worldwide,http://em.21dtv.com/songs/60060954.mkv +林海峰-woooh(演唱会),http://em.21dtv.com/songs/60060952.mkv +卫兰+24HERBS-wonderland,http://em.21dtv.com/songs/60060951.mkv +傅振辉+龙千玉-雾,http://em.21dtv.com/songs/60047842.mkv +BEYOND-雾,http://em.21dtv.com/songs/60047841.mkv +刘德华-悟,http://em.21dtv.com/songs/60047836.mkv +黄思婷-悟,http://em.21dtv.com/songs/60047835.mkv +黄敏华-悟,http://em.21dtv.com/songs/60047834.mkv +黎瑞恩-悟(演唱会),http://em.21dtv.com/songs/60047833.mkv +陈升+恨情歌-兀,http://em.21dtv.com/songs/60047816.mkv +李宇春-舞(演唱会),http://em.21dtv.com/songs/60047760.mkv +王杰-我,http://em.21dtv.com/songs/60044533.mkv +尚雯婕-我,http://em.21dtv.com/songs/60044532.mkv +毛宁-我,http://em.21dtv.com/songs/60044531.mkv +韩寒-我,http://em.21dtv.com/songs/60044530.mkv +张国荣-我(演唱会),http://em.21dtv.com/songs/60044528.mkv +五月天-我(无原唱),http://em.21dtv.com/songs/60044527.mkv +欧桂芬+叶源春-问,http://em.21dtv.com/songs/60044438.mkv +梁静茹-问(演唱会),http://em.21dtv.com/songs/60044437.mkv +陈淑桦-问,http://em.21dtv.com/songs/60044436.mkv +张学友+关淑怡-问(演唱会),http://em.21dtv.com/songs/60044435.mkv +张伟文+谭锡禧-问(演唱会),http://em.21dtv.com/songs/60044434.mkv +萧亚轩-吻,http://em.21dtv.com/songs/60044402.mkv +萧亚轩-吻(演唱会),http://em.21dtv.com/songs/60044401.mkv +张柏芝-喂!,http://em.21dtv.com/songs/60044315.mkv +黄妃-味,http://em.21dtv.com/songs/60044309.mkv +赵学而-未,http://em.21dtv.com/songs/60044223.mkv +许茹芸-忘,http://em.21dtv.com/songs/60043477.mkv +厉娜-忘,http://em.21dtv.com/songs/60043476.mkv +伍思凯-网,http://em.21dtv.com/songs/60043378.mkv +王馨平-网,http://em.21dtv.com/songs/60043377.mkv +麦浚龙-歪,http://em.21dtv.com/songs/60043066.mkv +ERICKWOK-wowow,http://em.21dtv.com/songs/60006427.mkv +周笔畅-wow,http://em.21dtv.com/songs/60006426.mkv +萧亚轩+罗志祥-wow,http://em.21dtv.com/songs/60006425.mkv +BEE GEES-world(演唱会),http://em.21dtv.com/songs/60006418.mkv +BOYZONE-words,http://em.21dtv.com/songs/60006411.mkv +温拿乐队-words(演唱会),http://em.21dtv.com/songs/60006410.mkv +BEE GEES-words(演唱会),http://em.21dtv.com/songs/60006409.mkv +OASIS-wonderwall,http://em.21dtv.com/songs/60006401.mkv +佚名-wonderful,http://em.21dtv.com/songs/60006400.mkv +BRITNEY SPEARS-womanizer,http://em.21dtv.com/songs/60006395.mkv +佚名-woman,http://em.21dtv.com/songs/60006394.mkv +佚名-wishes,http://em.21dtv.com/songs/60006369.mkv +卫兰-wish,http://em.21dtv.com/songs/60006368.mkv +佚名-wish(无原唱),http://em.21dtv.com/songs/60006367.mkv +R.FRIEDMAN-windy(无原唱),http://em.21dtv.com/songs/60006358.mkv +齐秦+齐豫-windflowers,http://em.21dtv.com/songs/60006357.mkv +佚名-windflower,http://em.21dtv.com/songs/60006356.mkv +中岛美嘉-will,http://em.21dtv.com/songs/60006346.mkv +滨崎步-will(演唱会),http://em.21dtv.com/songs/60006345.mkv +JANEDEAR GIRLS-wildflower,http://em.21dtv.com/songs/60006341.mkv +佚名-wildflower(无原唱),http://em.21dtv.com/songs/60006340.mkv +安室奈美惠-wild,http://em.21dtv.com/songs/60006339.mkv +小雪-why,http://em.21dtv.com/songs/60006333.mkv +王力宏-w-h-y,http://em.21dtv.com/songs/60006332.mkv +范晓萱+100%-why,http://em.21dtv.com/songs/60006331.mkv +杜德伟-why,http://em.21dtv.com/songs/60006330.mkv +杜德伟+小林优美-why,http://em.21dtv.com/songs/60006329.mkv +ANNIE LENNOX-why,http://em.21dtv.com/songs/60006328.mkv +SHANIA TWAIN-when,http://em.21dtv.com/songs/60006275.mkv +林海峰-whassup(演唱会),http://em.21dtv.com/songs/60006173.mkv +HANSON-weird,http://em.21dtv.com/songs/60006156.mkv +佚名-wedding,http://em.21dtv.com/songs/60006155.mkv +SWV-weak,http://em.21dtv.com/songs/60006154.mkv +ABBA-waterloo(演唱会),http://em.21dtv.com/songs/60006126.mkv +TLC-waterfalls(无原唱),http://em.21dtv.com/songs/60006125.mkv +CARRIE UNDERWOOD-wasted,http://em.21dtv.com/songs/60006119.mkv +NELLY-wadsyaname,http://em.21dtv.com/songs/60006080.mkv +草蜢-?,http://em.21dtv.com/songs/60000001.mkv +岚-voice,http://em.21dtv.com/songs/60070412.mkv +LADY GAGA-Venus,http://em.21dtv.com/songs/60099672.mkv +袁媛-venus(演唱会),http://em.21dtv.com/songs/60063317.mkv +神话-venus,http://em.21dtv.com/songs/60082380.mkv +刘思涵-Venus,http://em.21dtv.com/songs/60081097.mkv +SKE48-バンザイvenus,http://em.21dtv.com/songs/60074253.mkv +三浦大知-voice,http://em.21dtv.com/songs/60074091.mkv +胜利-vvip,http://em.21dtv.com/songs/60060939.mkv +佚名-vulnerable,http://em.21dtv.com/songs/60006076.mkv +佚名-volver,http://em.21dtv.com/songs/60006074.mkv +张菲-volare(演唱会),http://em.21dtv.com/songs/60006073.mkv +侧田-volar,http://em.21dtv.com/songs/60006072.mkv +侧田-volar(演唱会),http://em.21dtv.com/songs/60006071.mkv +MADONNA-vogue,http://em.21dtv.com/songs/60006068.mkv +SOLER-vivo,http://em.21dtv.com/songs/60006067.mkv +佚名-visions,http://em.21dtv.com/songs/60006061.mkv +WOW-vip,http://em.21dtv.com/songs/60006056.mkv +黄莺莺-vincent,http://em.21dtv.com/songs/60006054.mkv +林一峰-vincent(演唱会),http://em.21dtv.com/songs/60006053.mkv +DON MCLEAN-vincent(演唱会),http://em.21dtv.com/songs/60006052.mkv +李克勤-victory,http://em.21dtv.com/songs/60006051.mkv +谭咏麟+李克勤-victory(演唱会),http://em.21dtv.com/songs/60006050.mkv +佚名-victory(无原唱),http://em.21dtv.com/songs/60006049.mkv +U2-vertigo,http://em.21dtv.com/songs/60006047.mkv +佚名-venus,http://em.21dtv.com/songs/60006046.mkv +孙燕姿-venus(演唱会),http://em.21dtv.com/songs/60006045.mkv +HOTCHA-vanilla,http://em.21dtv.com/songs/60006043.mkv +邵智伟+庄冬昕-vampire,http://em.21dtv.com/songs/60006041.mkv +佚名-valleri,http://em.21dtv.com/songs/60006040.mkv +郑中基-valentine,http://em.21dtv.com/songs/60006039.mkv +BOA-valenti,http://em.21dtv.com/songs/60006038.mkv +佚名-vacation,http://em.21dtv.com/songs/60006037.mkv +AKB48-uza,http://em.21dtv.com/songs/60070410.mkv +CELINE DION-us,http://em.21dtv.com/songs/60068004.mkv +JAMES MORRISON-up,http://em.21dtv.com/songs/60065720.mkv +KAT DELUNA+LIL WAYNE-unstoppable,http://em.21dtv.com/songs/60063780.mkv +BLUSH+SNOOP+DOGG-undivided,http://em.21dtv.com/songs/60069156.mkv +黄明志-undilah,http://em.21dtv.com/songs/60062493.mkv +ALANIS MORISSETTE-underneath,http://em.21dtv.com/songs/60066748.mkv +KASABIAN-underdog,http://em.21dtv.com/songs/60063779.mkv +SARA BAREILLES-uncharted,http://em.21dtv.com/songs/60062142.mkv +金贤重+JAY PARK-unbreakable,http://em.21dtv.com/songs/60086378.mkv +ALEX HEPBURN-under,http://em.21dtv.com/songs/60082378.mkv +EPIK HIGH+2NE1-up,http://em.21dtv.com/songs/60074088.mkv +2NE1-ugly,http://em.21dtv.com/songs/60060937.mkv +M.JONES-urgent(无原唱),http://em.21dtv.com/songs/60006034.mkv +佚名-uptight(无原唱),http://em.21dtv.com/songs/60006032.mkv +THE SATURDAYS-up,http://em.21dtv.com/songs/60006029.mkv +NATASHA BEDINGFIELD-unwritten,http://em.21dtv.com/songs/60006026.mkv +佚名-unwell,http://em.21dtv.com/songs/60006025.mkv +RASCAL FLATTS-unstoppable,http://em.21dtv.com/songs/60006021.mkv +TLC-unpretty(无原唱),http://em.21dtv.com/songs/60006020.mkv +FREEMASONS-uninvited,http://em.21dtv.com/songs/60006015.mkv +ALANIS MORISSETTE-uninvited,http://em.21dtv.com/songs/60006014.mkv +NATALIE COLE+NAT KIN-unforgettable,http://em.21dtv.com/songs/60006013.mkv +RIHANNA-unfaithful,http://em.21dtv.com/songs/60006011.mkv +佚名-unbreakable,http://em.21dtv.com/songs/60005994.mkv +WESTLIFE-unbreakable,http://em.21dtv.com/songs/60005993.mkv +RIHANNA FEAT.JAYZ-umbrella,http://em.21dtv.com/songs/60005991.mkv +SUPER JUNIOR-M-u,http://em.21dtv.com/songs/60005989.mkv +SUPER JUNIOR-u,http://em.21dtv.com/songs/60005988.mkv +少女时代-twinkle,http://em.21dtv.com/songs/60068003.mkv +COVER DRIVE-twilight,http://em.21dtv.com/songs/60065718.mkv +张雷-托,http://em.21dtv.com/songs/60069889.mkv +LEONA LEWIS-trouble,http://em.21dtv.com/songs/60071679.mkv +COLDPLAY-trouble,http://em.21dtv.com/songs/60069154.mkv +TAIO CRUZ-troublemaker,http://em.21dtv.com/songs/60065715.mkv +FLUMPOOL-touch,http://em.21dtv.com/songs/60062026.mkv +ENRIQUE IGLESIAS-TONIGHT,http://em.21dtv.com/songs/60101212.mkv +JOHN LEGEND+LUDACRIS-tonight,http://em.21dtv.com/songs/60066740.mkv +THE CRANBERRIES-tomorrow,http://em.21dtv.com/songs/60067999.mkv +东永裴+李先雄-tomorrow,http://em.21dtv.com/songs/60065713.mkv +AVRIL LAVIGNE-tomorrow(演唱会),http://em.21dtv.com/songs/60065712.mkv +DAVID GUETTA-titanium,http://em.21dtv.com/songs/60065711.mkv +ADELE-tired,http://em.21dtv.com/songs/60071678.mkv +PITBULL+KESHA-Timber,http://em.21dtv.com/songs/60101026.mkv +EXO M-Thunder(雷电),http://em.21dtv.com/songs/60099656.mkv +艳阳天-逃,http://em.21dtv.com/songs/60069865.mkv +回音哥-逃,http://em.21dtv.com/songs/60067468.mkv +EVE-tambourine,http://em.21dtv.com/songs/60063762.mkv +邢天溯-她,http://em.21dtv.com/songs/60135793.mkv +莫凯谦-跳,http://em.21dtv.com/songs/60135683.mkv +李猛-痛,http://em.21dtv.com/songs/60133816.mkv +田田-甜,http://em.21dtv.com/songs/60132754.mkv +侯旭-逃,http://em.21dtv.com/songs/60131179.mkv +吕俊哲-她,http://em.21dtv.com/songs/60130173.mkv +方大同-听,http://em.21dtv.com/songs/60128036.mkv +金小曦-听,http://em.21dtv.com/songs/60127502.mkv +李雪莱-颓,http://em.21dtv.com/songs/60127070.mkv +邱意淋-跳,http://em.21dtv.com/songs/60126257.mkv +彭钧-他,http://em.21dtv.com/songs/60125556.mkv +洪卓立-痛,http://em.21dtv.com/songs/60124204.mkv +洪卓立-痛,http://em.21dtv.com/songs/60120709.mkv +权振东-逃,http://em.21dtv.com/songs/60118657.mkv +周艺博-他,http://em.21dtv.com/songs/60118457.mkv +王进-逃,http://em.21dtv.com/songs/60116167.mkv +方大同-听,http://em.21dtv.com/songs/60112715.mkv +Zico+素珍-痛,http://em.21dtv.com/songs/60112477.mkv +焕熙-痛,http://em.21dtv.com/songs/60112091.mkv +周海媚-她,http://em.21dtv.com/songs/60110942.mkv +马紫威-逃,http://em.21dtv.com/songs/60110706.mkv +张杰-听,http://em.21dtv.com/songs/60107717.mkv +夜郎金鑫-她,http://em.21dtv.com/songs/60105726.mkv +马克白-她,http://em.21dtv.com/songs/60105520.mkv +麦克白乐团-她,http://em.21dtv.com/songs/60104708.mkv +高登-痛,http://em.21dtv.com/songs/60104615.mkv +张杰-听,http://em.21dtv.com/songs/60104128.mkv +马上又+杨坤-她,http://em.21dtv.com/songs/60102940.mkv +周华健+王思远-她,http://em.21dtv.com/songs/60102836.mkv +饥饿艺术家-颓,http://em.21dtv.com/songs/60101572.mkv +朱克-逃,http://em.21dtv.com/songs/60099289.mkv +石文-潭,http://em.21dtv.com/songs/60096587.mkv +马上又-她,http://em.21dtv.com/songs/60096557.mkv +朱婧-她,http://em.21dtv.com/songs/60093820.mkv +SONG RIDERS-trauma,http://em.21dtv.com/songs/60086375.mkv +SPICA-tonight,http://em.21dtv.com/songs/60086373.mkv +梁静茹-她,http://em.21dtv.com/songs/60083861.mkv +较劲组合-他,http://em.21dtv.com/songs/60083857.mkv +BRUNO MARS-treasure,http://em.21dtv.com/songs/60082374.mkv +JESSICA SANCHEZ+NE YO-tonight,http://em.21dtv.com/songs/60082373.mkv +李准基-together,http://em.21dtv.com/songs/60082372.mkv +WILL.I.AM+JUSTIN BIEBER-thatpower,http://em.21dtv.com/songs/60082356.mkv +WONDERBOYZ-tarzan,http://em.21dtv.com/songs/60082352.mkv +王思远-她,http://em.21dtv.com/songs/60081720.mkv +HENRY+圭贤+泰民-Trap,http://em.21dtv.com/songs/60080886.mkv +相随-疼,http://em.21dtv.com/songs/60080776.mkv +卫兰-退(演唱会),http://em.21dtv.com/songs/60077986.mkv +渔圈-藤,http://em.21dtv.com/songs/60077858.mkv +DAVICHI-turtle,http://em.21dtv.com/songs/60074077.mkv +SUPER JUNIOR-tunnel,http://em.21dtv.com/songs/60074073.mkv +PINK-try,http://em.21dtv.com/songs/60074072.mkv +ASHER BOOK-try,http://em.21dtv.com/songs/60074071.mkv +阎韦伶-truth,http://em.21dtv.com/songs/60074069.mkv +OLLY MURS+FLO RIDA-troublemaker,http://em.21dtv.com/songs/60074067.mkv +CHRIS RENE-trouble,http://em.21dtv.com/songs/60074066.mkv +ATLAS GENIUS-trojans,http://em.21dtv.com/songs/60074064.mkv +ADAM LAMBERT-trespassing(演唱会),http://em.21dtv.com/songs/60074061.mkv +平野绫-toxxxic,http://em.21dtv.com/songs/60074059.mkv +SUGARLAND-tonight,http://em.21dtv.com/songs/60074056.mkv +JAY SEAN-tonight,http://em.21dtv.com/songs/60074055.mkv +ROBYNN+KENDY-together,http://em.21dtv.com/songs/60074053.mkv +BP POP-today,http://em.21dtv.com/songs/60074052.mkv +WILL.I.AM-the,http://em.21dtv.com/songs/60074037.mkv +KATHARINE MCPHEE+ZACHARY LEVI-terrified,http://em.21dtv.com/songs/60073989.mkv +HAYDEN PANETTIERE-telescope,http://em.21dtv.com/songs/60073982.mkv +金俊秀-tarantallegra,http://em.21dtv.com/songs/60073978.mkv +JULIE-taiwan,http://em.21dtv.com/songs/60073969.mkv +KELLIE PICKLER-tough,http://em.21dtv.com/songs/60068001.mkv +KEYSHIA COLE-trust,http://em.21dtv.com/songs/60060935.mkv +CHRIS YOUNG-tomorrow,http://em.21dtv.com/songs/60060933.mkv +LADY GAGA-telephone(演唱会),http://em.21dtv.com/songs/60060921.mkv +萧煌奇-拖,http://em.21dtv.com/songs/60043006.mkv +周明辉-痛,http://em.21dtv.com/songs/60042779.mkv +杨烈-痛,http://em.21dtv.com/songs/60042778.mkv +吴泓君-痛,http://em.21dtv.com/songs/60042777.mkv +刘德华-痛,http://em.21dtv.com/songs/60042776.mkv +动力火车+李翊君-痛,http://em.21dtv.com/songs/60042775.mkv +苏永康-痛(演唱会),http://em.21dtv.com/songs/60042774.mkv +吴听撤-听,http://em.21dtv.com/songs/60042505.mkv +佚名-跳,http://em.21dtv.com/songs/60042429.mkv +王志瑞-天,http://em.21dtv.com/songs/60041719.mkv +容祖儿-逃(演唱会),http://em.21dtv.com/songs/60041536.mkv +周逸涵-糖,http://em.21dtv.com/songs/60041506.mkv +莫文蔚-台,http://em.21dtv.com/songs/60041213.mkv +张学友-她,http://em.21dtv.com/songs/60041134.mkv +吴听彻-她,http://em.21dtv.com/songs/60041133.mkv +王杰-她,http://em.21dtv.com/songs/60041132.mkv +张卫健-它,http://em.21dtv.com/songs/60041130.mkv +佚名-他,http://em.21dtv.com/songs/60041050.mkv +王婧-他,http://em.21dtv.com/songs/60041049.mkv +胡琳-他,http://em.21dtv.com/songs/60041048.mkv +SOLER-他,http://em.21dtv.com/songs/60041047.mkv +叶倩文-他(演唱会),http://em.21dtv.com/songs/60041046.mkv +太极乐队-他(演唱会),http://em.21dtv.com/songs/60041045.mkv +童唱-typist,http://em.21dtv.com/songs/60005975.mkv +齐豫-turning,http://em.21dtv.com/songs/60005963.mkv +K ONE-turbo,http://em.21dtv.com/songs/60005955.mkv +NELLY FURTADO-try,http://em.21dtv.com/songs/60005951.mkv +CHIDDY BANG-truth,http://em.21dtv.com/songs/60005941.mkv +LIONEL RICHIE-truly,http://em.21dtv.com/songs/60005939.mkv +东方神起+FEAT.BOA-tri-angle,http://em.21dtv.com/songs/60005926.mkv +飞轮海-treasure,http://em.21dtv.com/songs/60005921.mkv +ERIKA-traveling,http://em.21dtv.com/songs/60005920.mkv +MCFLY-transylvania,http://em.21dtv.com/songs/60005917.mkv +TOBY KEITH-trailerhood,http://em.21dtv.com/songs/60005916.mkv +STEPS-tragedy,http://em.21dtv.com/songs/60005915.mkv +BEE GEES-tragedy(演唱会),http://em.21dtv.com/songs/60005914.mkv +佚名-traces,http://em.21dtv.com/songs/60005911.mkv +BRITNEY SPEARS-toxic,http://em.21dtv.com/songs/60005909.mkv +梅艳芳-touch,http://em.21dtv.com/songs/60005908.mkv +古巨基-touch,http://em.21dtv.com/songs/60005907.mkv +NATASHA BEDINGFIELD-touch,http://em.21dtv.com/songs/60005906.mkv +叶德娴-touch(演唱会),http://em.21dtv.com/songs/60005905.mkv +梅艳芳-touch(演唱会),http://em.21dtv.com/songs/60005904.mkv +NATALIE-torn,http://em.21dtv.com/songs/60005893.mkv +NATALIE IMBRUG-torn,http://em.21dtv.com/songs/60005892.mkv +PETER PAN-topeng(演唱会),http://em.21dtv.com/songs/60005890.mkv +佚名-tonight,http://em.21dtv.com/songs/60005869.mkv +邝美云-tonight,http://em.21dtv.com/songs/60005868.mkv +WESTLIFE-tonight,http://em.21dtv.com/songs/60005867.mkv +L.BERNTEIN-tonight,http://em.21dtv.com/songs/60005866.mkv +林峰-tonight(演唱会),http://em.21dtv.com/songs/60005865.mkv +东方神起-tonight(演唱会),http://em.21dtv.com/songs/60005864.mkv +TONICK-tonick,http://em.21dtv.com/songs/60005858.mkv +郑伊健-together,http://em.21dtv.com/songs/60005853.mkv +东方神起-together,http://em.21dtv.com/songs/60005852.mkv +陈伟霆-together,http://em.21dtv.com/songs/60005851.mkv +郑伊健-together(演唱会),http://em.21dtv.com/songs/60005850.mkv +佚名-today,http://em.21dtv.com/songs/60005844.mkv +梁咏琪-today,http://em.21dtv.com/songs/60005843.mkv +爱戴-today,http://em.21dtv.com/songs/60005842.mkv +张柏芝-today(演唱会),http://em.21dtv.com/songs/60005841.mkv +梁咏琪-today(演唱会),http://em.21dtv.com/songs/60005840.mkv +古巨基+容祖儿-today(演唱会),http://em.21dtv.com/songs/60005839.mkv +J+KWON-tipsy,http://em.21dtv.com/songs/60005820.mkv +张力尹+俊秀-timeless,http://em.21dtv.com/songs/60005815.mkv +SG WANNA BE-timeless,http://em.21dtv.com/songs/60005814.mkv +周华健-time,http://em.21dtv.com/songs/60005813.mkv +王若琳-tikiville,http://em.21dtv.com/songs/60005800.mkv +JANELLE MONAE-tightrope,http://em.21dtv.com/songs/60005799.mkv +梁静茹-tiffany,http://em.21dtv.com/songs/60005797.mkv +JANET JACKSON-throb,http://em.21dtv.com/songs/60005786.mkv +R.TEMPERTON-thriller(无原唱),http://em.21dtv.com/songs/60005785.mkv +佚名-tenderly,http://em.21dtv.com/songs/60005505.mkv +河莉秀-temptation,http://em.21dtv.com/songs/60005500.mkv +THE EVERLY BROTHERS-temptation,http://em.21dtv.com/songs/60005499.mkv +SEAN PAUL-temperature,http://em.21dtv.com/songs/60005497.mkv +RUBBER BAND-tears,http://em.21dtv.com/songs/60005475.mkv +411-teardrops,http://em.21dtv.com/songs/60005471.mkv +童唱-teacher,http://em.21dtv.com/songs/60005469.mkv +陈伟霆-taxi,http://em.21dtv.com/songs/60005466.mkv +JORDIN SPARKS-tattoo,http://em.21dtv.com/songs/60005465.mkv +TAE-tasu,http://em.21dtv.com/songs/60005463.mkv +佚名-tammy,http://em.21dtv.com/songs/60005462.mkv +幸田来未-taboo,http://em.21dtv.com/songs/60005426.mkv +DAN BLACK+KID CUDI-symphonies,http://em.21dtv.com/songs/60061999.mkv +谢容儿-sweet,http://em.21dtv.com/songs/60063758.mkv +SNOOP DOGG-sweat,http://em.21dtv.com/songs/60065702.mkv +MUSE-survival,http://em.21dtv.com/songs/60069144.mkv +ORIENTAL FUNK STEW-supersonic,http://em.21dtv.com/songs/60065701.mkv +ROBYNN+KENDY-sunset,http://em.21dtv.com/songs/60067988.mkv +CHRIS BROWN-strip,http://em.21dtv.com/songs/60065700.mkv +岚-still(演唱会),http://em.21dtv.com/songs/60065698.mkv +FLORIDA GEORGIA LINE-Stay,http://em.21dtv.com/songs/60100721.mkv +NICKI MINAJ-starships,http://em.21dtv.com/songs/60066723.mkv +MATT CARDLE-starlight,http://em.21dtv.com/songs/60065695.mkv +SUPER JUNIOR-spy,http://em.21dtv.com/songs/60069143.mkv +ERIC CHURCH-springsteen,http://em.21dtv.com/songs/60067986.mkv +THE KILLERS-spaceman,http://em.21dtv.com/songs/60063747.mkv +CIARA-sorry,http://em.21dtv.com/songs/60070400.mkv +高登-sorry,http://em.21dtv.com/songs/60067985.mkv +温力铭-sorry,http://em.21dtv.com/songs/60063745.mkv +布朗+白安-somewhere,http://em.21dtv.com/songs/60065693.mkv +梁一贞-sometimes,http://em.21dtv.com/songs/60071667.mkv +东方神起-Something,http://em.21dtv.com/songs/60096168.mkv +LEMONADE MOUTH-Somebody,http://em.21dtv.com/songs/60099676.mkv +JASON+CHEN-solo,http://em.21dtv.com/songs/60069141.mkv +刘阡羽-SODA,http://em.21dtv.com/songs/60127782.mkv +TROUBLE+刘阡羽-SODA,http://em.21dtv.com/songs/60127686.mkv +关心妍-SMILE,http://em.21dtv.com/songs/60127749.mkv +沙宝亮-someone like you,http://em.21dtv.com/songs/60073907.mkv +ADELE-skyfall,http://em.21dtv.com/songs/60070397.mkv +SUPER JUNIOR K.R.Y-sky,http://em.21dtv.com/songs/60070398.mkv +放课后ティータイム-singing!,http://em.21dtv.com/songs/60063739.mkv +JUJU-sign,http://em.21dtv.com/songs/60065688.mkv +卢凯彤-谁,http://em.21dtv.com/songs/60071139.mkv +宣鹏+SHOWDOWN团队-showdown,http://em.21dtv.com/songs/60066719.mkv +钟舒漫-shout,http://em.21dtv.com/songs/60067979.mkv +杨宗宪-手,http://em.21dtv.com/songs/60068665.mkv +LMFAO-shots,http://em.21dtv.com/songs/60065687.mkv +MYNAME-Shirayuki,http://em.21dtv.com/songs/60100742.mkv +家入レオ-shine,http://em.21dtv.com/songs/60071662.mkv +LILY ALLEN-Sheezus,http://em.21dtv.com/songs/60100732.mkv +胡灵-伤,http://em.21dtv.com/songs/60071098.mkv +陈汉-殇,http://em.21dtv.com/songs/60068645.mkv +任中军-殇,http://em.21dtv.com/songs/60066300.mkv +PITBULL-shake,http://em.21dtv.com/songs/60062128.mkv +COLBIE CAILLAT-shadow,http://em.21dtv.com/songs/60065683.mkv +FTISLAND-severely,http://em.21dtv.com/songs/60065682.mkv +川田まみ-serment,http://em.21dtv.com/songs/60065681.mkv +赤西仁-seasons,http://em.21dtv.com/songs/60065680.mkv +USHER-scream,http://em.21dtv.com/songs/60067976.mkv +FLOWER-sakura リグレット,http://em.21dtv.com/songs/60066716.mkv +杨熙恩+乐童音乐家-树,http://em.21dtv.com/songs/60133854.mkv +歌莉雅-顺,http://em.21dtv.com/songs/60130516.mkv +唐唐-说,http://em.21dtv.com/songs/60127866.mkv +蔡素珊-撕,http://em.21dtv.com/songs/60124441.mkv +河图-守,http://em.21dtv.com/songs/60124201.mkv +马上又-谁,http://em.21dtv.com/songs/60123374.mkv +西域胡杨-烧,http://em.21dtv.com/songs/60123160.mkv +艾晓琪-谁,http://em.21dtv.com/songs/60123106.mkv +慢慢说乐团-说,http://em.21dtv.com/songs/60122770.mkv +南二巷乐队-沙,http://em.21dtv.com/songs/60121465.mkv +陈艺搏-殇,http://em.21dtv.com/songs/60118167.mkv +徐红光-谁,http://em.21dtv.com/songs/60116837.mkv +万芳+蓓丽-谁,http://em.21dtv.com/songs/60113210.mkv +熊七梅-蚀,http://em.21dtv.com/songs/60111256.mkv +万芳+蓓丽-谁,http://em.21dtv.com/songs/60109923.mkv +王思佳-闪,http://em.21dtv.com/songs/60108708.mkv +沈志仲-谁,http://em.21dtv.com/songs/60108681.mkv +王思佳-闪,http://em.21dtv.com/songs/60107904.mkv +赵鹏-殇,http://em.21dtv.com/songs/60107246.mkv +胡琳-渗,http://em.21dtv.com/songs/60107139.mkv +张玮-伤,http://em.21dtv.com/songs/60105858.mkv +记号士-锁,http://em.21dtv.com/songs/60103565.mkv +JUJU-守ってあげたい,http://em.21dtv.com/songs/60100727.mkv +吴佳-谁,http://em.21dtv.com/songs/60098187.mkv +丁之文-山,http://em.21dtv.com/songs/60098061.mkv +张一一-骚,http://em.21dtv.com/songs/60096585.mkv +塔宏伟-殇,http://em.21dtv.com/songs/60096576.mkv +谭维维-树,http://em.21dtv.com/songs/60096575.mkv +项亚蕻-伤,http://em.21dtv.com/songs/60096552.mkv +六弦+白若溪-谁,http://em.21dtv.com/songs/60094816.mkv +杨千桦-数,http://em.21dtv.com/songs/60091394.mkv +石梅-色,http://em.21dtv.com/songs/60088368.mkv +艾菲-superstar,http://em.21dtv.com/songs/60086367.mkv +刘思涵-stereo,http://em.21dtv.com/songs/60086366.mkv +BY2-stereo,http://em.21dtv.com/songs/60086365.mkv +东方神起-scream,http://em.21dtv.com/songs/60086363.mkv +MEG-save,http://em.21dtv.com/songs/60086361.mkv +侧田-爽,http://em.21dtv.com/songs/60085734.mkv +妖儿格格-伤,http://em.21dtv.com/songs/60085681.mkv +LONDON GRAMMAR-strong,http://em.21dtv.com/songs/60084764.mkv +江志丰-sora(莎菈),http://em.21dtv.com/songs/60084763.mkv +BEAST-shadow,http://em.21dtv.com/songs/60084759.mkv +BIGBANG-声をきかせて,http://em.21dtv.com/songs/60083785.mkv +李代沫-伤,http://em.21dtv.com/songs/60083756.mkv +刘雅丽-sway(演唱会),http://em.21dtv.com/songs/60082348.mkv +J. HOLIDAY-suffocate,http://em.21dtv.com/songs/60082344.mkv +ADAM LAMBERT-strut,http://em.21dtv.com/songs/60082342.mkv +KELLY CLARKSON-stronger,http://em.21dtv.com/songs/60082341.mkv +SERENA RYDER-stompa,http://em.21dtv.com/songs/60082340.mkv +WESTLIFE-smile,http://em.21dtv.com/songs/60082331.mkv +CHANGIN'MY LIFE-smile,http://em.21dtv.com/songs/60082330.mkv +ADAM LAMBERT-sleepwalker(演唱会),http://em.21dtv.com/songs/60082329.mkv +AFTER SCHOOL-shampoo,http://em.21dtv.com/songs/60082325.mkv +玛丽亚-shake,http://em.21dtv.com/songs/60082324.mkv +ALICE NINE-shadowplay,http://em.21dtv.com/songs/60082323.mkv +沙宝亮-senorita,http://em.21dtv.com/songs/60082320.mkv +庞龙-树,http://em.21dtv.com/songs/60081963.mkv +崔天琪+田丹-Stronger,http://em.21dtv.com/songs/60081520.mkv +杨永聪-Stay,http://em.21dtv.com/songs/60081239.mkv +邓福如-Star,http://em.21dtv.com/songs/60080482.mkv +ROSY玫瑰红-锁,http://em.21dtv.com/songs/60080408.mkv +陈翔-搜,http://em.21dtv.com/songs/60077779.mkv +刘一祯-水,http://em.21dtv.com/songs/60077707.mkv +李立崴-手,http://em.21dtv.com/songs/60077657.mkv +ON OFF-始まるのは、サヨナラ,http://em.21dtv.com/songs/60077630.mkv +昏鸦-诗,http://em.21dtv.com/songs/60077587.mkv +AKB48-上からマリ,http://em.21dtv.com/songs/60077529.mkv +张杰-殇,http://em.21dtv.com/songs/60077527.mkv +赵鹏-殇(演唱会),http://em.21dtv.com/songs/60077526.mkv +SKE48-ごめんねsummer,http://em.21dtv.com/songs/60074236.mkv +GAVIN DEGRAW-sweeter,http://em.21dtv.com/songs/60073968.mkv +P.O.P CON-sweetch,http://em.21dtv.com/songs/60073967.mkv +SUPER JUNIOR-superman,http://em.21dtv.com/songs/60073963.mkv +MATISYAHU-sunshine,http://em.21dtv.com/songs/60073960.mkv +THE XX-sunset,http://em.21dtv.com/songs/60073959.mkv +DJ ANTOINE+TOM DICE-sunlight,http://em.21dtv.com/songs/60073958.mkv +ASHLEY TISDALE-suddenly,http://em.21dtv.com/songs/60073953.mkv +FLOWER-still,http://em.21dtv.com/songs/60073946.mkv +MARVA KING+ALPHA RED-steppin,http://em.21dtv.com/songs/60073943.mkv +RIHANNA+MIKKY EKKO-stay,http://em.21dtv.com/songs/60073941.mkv +SWEETWATER RAIN-starshine,http://em.21dtv.com/songs/60073937.mkv +GRACE POTTER+THE NOCTURNALS-stars,http://em.21dtv.com/songs/60073936.mkv +TAYLOR SWIFT-starlight,http://em.21dtv.com/songs/60073935.mkv +CNBLUE-stabirabi(演唱会),http://em.21dtv.com/songs/60073932.mkv +吉克隽逸-spoonful,http://em.21dtv.com/songs/60073930.mkv +RICK ROSS-speedin,http://em.21dtv.com/songs/60073929.mkv +CIARA-speechless,http://em.21dtv.com/songs/60073928.mkv +LADY GAGA-speechless(演唱会),http://em.21dtv.com/songs/60073927.mkv +FLORENCE+THE MACHINE-spectrum,http://em.21dtv.com/songs/60073926.mkv +TINCHY STRYDER+DAPPY-spaceship,http://em.21dtv.com/songs/60073925.mkv +陈妍希-sorry,http://em.21dtv.com/songs/60073919.mkv +JASON CHEN-solo,http://em.21dtv.com/songs/60073903.mkv +SUZAN G-smile,http://em.21dtv.com/songs/60073896.mkv +AVRIL LAVIGNE-smile,http://em.21dtv.com/songs/60073895.mkv +RUMER-slow,http://em.21dtv.com/songs/60073894.mkv +STOOSHE-slip,http://em.21dtv.com/songs/60073892.mkv +MY CHEMICAL ROMANCE-sing,http://em.21dtv.com/songs/60073884.mkv +GARY BARLOW+THE COMMONWEALTH BAND-sing,http://em.21dtv.com/songs/60073883.mkv +AVICII-silhouettes,http://em.21dtv.com/songs/60073880.mkv +李克勤-show(演唱会),http://em.21dtv.com/songs/60073874.mkv +古巨基-shirley(演唱会),http://em.21dtv.com/songs/60073872.mkv +MILKY BUNNY-scenery,http://em.21dtv.com/songs/60073849.mkv +PAPA ROACH-scars,http://em.21dtv.com/songs/60073848.mkv +小野恵令奈-sayいっぱい,http://em.21dtv.com/songs/60073846.mkv +いきものがかり-sakura,http://em.21dtv.com/songs/60073834.mkv +M4M-sadness,http://em.21dtv.com/songs/60073829.mkv +MAROON 5-sad,http://em.21dtv.com/songs/60073828.mkv +LADY GAGA-scheibe,http://em.21dtv.com/songs/60062088.mkv +虞笙-谁,http://em.21dtv.com/songs/60061594.mkv +吉杰-烧(演唱会),http://em.21dtv.com/songs/60061569.mkv +浅语清吟-殇,http://em.21dtv.com/songs/60061565.mkv +张跃-superman,http://em.21dtv.com/songs/60060917.mkv +HURTS-sunday,http://em.21dtv.com/songs/60060916.mkv +OMARION-speedin,http://em.21dtv.com/songs/60060912.mkv +PASSION PIT-sleepyhead,http://em.21dtv.com/songs/60060906.mkv +DEMI LOVATO-skyscraper,http://em.21dtv.com/songs/60060905.mkv +张信哲-算,http://em.21dtv.com/songs/60040881.mkv +黎明-酸,http://em.21dtv.com/songs/60040867.mkv +黎明-酸(演唱会),http://em.21dtv.com/songs/60040866.mkv +孙建平-愫,http://em.21dtv.com/songs/60040865.mkv +李翊君-愫,http://em.21dtv.com/songs/60040864.mkv +邓妙华-愫,http://em.21dtv.com/songs/60040863.mkv +SHINE-俗,http://em.21dtv.com/songs/60040841.mkv +陈红-颂,http://em.21dtv.com/songs/60040801.mkv +仲维军-说,http://em.21dtv.com/songs/60040331.mkv +刘若英-说,http://em.21dtv.com/songs/60040330.mkv +薛凯琪-水,http://em.21dtv.com/songs/60040171.mkv +水木年华-水,http://em.21dtv.com/songs/60040170.mkv +李逸朗-水,http://em.21dtv.com/songs/60040169.mkv +佚名-谁,http://em.21dtv.com/songs/60039929.mkv +谢雨欣-谁,http://em.21dtv.com/songs/60039928.mkv +王菲菲-谁,http://em.21dtv.com/songs/60039927.mkv +蜜雪薇琪-谁,http://em.21dtv.com/songs/60039926.mkv +蔡健雅-谁,http://em.21dtv.com/songs/60039925.mkv +黄立成-爽,http://em.21dtv.com/songs/60039916.mkv +芭比-爽,http://em.21dtv.com/songs/60039915.mkv +许哲佩-树,http://em.21dtv.com/songs/60039789.mkv +郑融-熟,http://em.21dtv.com/songs/60039762.mkv +莫文蔚-手,http://em.21dtv.com/songs/60039604.mkv +雷光夏-逝,http://em.21dtv.com/songs/60039543.mkv +叫吠音乐联盟-时,http://em.21dtv.com/songs/60039080.mkv +左光平-十,http://em.21dtv.com/songs/60038894.mkv +陈伟霆-十,http://em.21dtv.com/songs/60038893.mkv +袁凤仪-舍,http://em.21dtv.com/songs/60038193.mkv +伍佰-蛇,http://em.21dtv.com/songs/60038190.mkv +容祖儿-蛇(演唱会),http://em.21dtv.com/songs/60038189.mkv +林忆莲-烧(演唱会),http://em.21dtv.com/songs/60038080.mkv +郑秀文-伤,http://em.21dtv.com/songs/60037760.mkv +李逸朗-闪,http://em.21dtv.com/songs/60037715.mkv +孙淑媚-煞,http://em.21dtv.com/songs/60037565.mkv +魏如昀-傻,http://em.21dtv.com/songs/60037499.mkv +眉佳-沙,http://em.21dtv.com/songs/60037443.mkv +何韵诗-沙,http://em.21dtv.com/songs/60037442.mkv +梁汉文-沙(演唱会),http://em.21dtv.com/songs/60037441.mkv +莫文蔚-散,http://em.21dtv.com/songs/60037382.mkv +佚名-伞,http://em.21dtv.com/songs/60037377.mkv +林二汶+林一峰-三,http://em.21dtv.com/songs/60037162.mkv +童唱-swimmer,http://em.21dtv.com/songs/60005422.mkv +SWEETY-sweety,http://em.21dtv.com/songs/60005421.mkv +佚名-sweetheart,http://em.21dtv.com/songs/60005420.mkv +佚名-sweetheart(无原唱),http://em.21dtv.com/songs/60005419.mkv +季欣霈-sweet,http://em.21dtv.com/songs/60005417.mkv +聂云-sway,http://em.21dtv.com/songs/60005399.mkv +MICHAEL BUBLE-sway,http://em.21dtv.com/songs/60005398.mkv +PHIL COLLINS-sussudio,http://em.21dtv.com/songs/60005397.mkv +东方神起-survivor,http://em.21dtv.com/songs/60005393.mkv +DESTINY'S CHILD-survivor,http://em.21dtv.com/songs/60005392.mkv +佚名-surrender,http://em.21dtv.com/songs/60005391.mkv +佚名-surreal,http://em.21dtv.com/songs/60005390.mkv +ROBBIE WILLIAMS-supreme,http://em.21dtv.com/songs/60005386.mkv +KARYN WHITE-superwoman,http://em.21dtv.com/songs/60005385.mkv +佚名-superwoman(无原唱),http://em.21dtv.com/songs/60005384.mkv +群星-supervoice,http://em.21dtv.com/songs/60005383.mkv +STEVIE WONDER-superstition,http://em.21dtv.com/songs/60005382.mkv +杜德伟-superstar,http://em.21dtv.com/songs/60005381.mkv +JAMELIA-superstar,http://em.21dtv.com/songs/60005380.mkv +CARPENTERS-superstar,http://em.21dtv.com/songs/60005379.mkv +佚名-superstar(演唱会),http://em.21dtv.com/songs/60005378.mkv +容祖儿-superstar(演唱会),http://em.21dtv.com/songs/60005377.mkv +曹格-superman,http://em.21dtv.com/songs/60005375.mkv +FIVE FOR FIGHTING-superman,http://em.21dtv.com/songs/60005374.mkv +STEVE AZAR-sunshine,http://em.21dtv.com/songs/60005363.mkv +LIL' FLIP FEATURING-sunshine,http://em.21dtv.com/songs/60005362.mkv +顺子-sunrises,http://em.21dtv.com/songs/60005357.mkv +滨崎步-sunrise,http://em.21dtv.com/songs/60005356.mkv +NORAH JONES-sunrise,http://em.21dtv.com/songs/60005355.mkv +BOBBY HEBB-sunny,http://em.21dtv.com/songs/60005354.mkv +佚名-sundown,http://em.21dtv.com/songs/60005350.mkv +陈升-summer,http://em.21dtv.com/songs/60005345.mkv +陈升-summer(演唱会),http://em.21dtv.com/songs/60005344.mkv +4PM-sukiyaki,http://em.21dtv.com/songs/60005323.mkv +A TASTE OF HONEY-sukiyak,http://em.21dtv.com/songs/60005322.mkv +陈慧琳-sugar,http://em.21dtv.com/songs/60005321.mkv +佚名-suddenly,http://em.21dtv.com/songs/60005312.mkv +黎安莱姆丝-suddenly,http://em.21dtv.com/songs/60005311.mkv +OLIVIA NEWTON+JOHN-suddenly,http://em.21dtv.com/songs/60005310.mkv +林叶亭-subway,http://em.21dtv.com/songs/60005309.mkv +佚名-stutter,http://em.21dtv.com/songs/60005307.mkv +KANYE WEST-stronger,http://em.21dtv.com/songs/60005300.mkv +BRITNEY SPEARS-stronger,http://em.21dtv.com/songs/60005299.mkv +佚名-strong,http://em.21dtv.com/songs/60005298.mkv +LENNY KRAVITZ-storm,http://em.21dtv.com/songs/60005285.mkv +齐豫-stories,http://em.21dtv.com/songs/60005284.mkv +张国荣-stories(演唱会),http://em.21dtv.com/songs/60005283.mkv +李宇春-stop,http://em.21dtv.com/songs/60005282.mkv +佚名-stoney,http://em.21dtv.com/songs/60005273.mkv +LOBO-stoney,http://em.21dtv.com/songs/60005272.mkv +JERRY JEFF WALKER-stoney,http://em.21dtv.com/songs/60005271.mkv +佚名-stole,http://em.21dtv.com/songs/60005270.mkv +分岛花音-stilldoll,http://em.21dtv.com/songs/60005269.mkv +TIM MCGRAW-still,http://em.21dtv.com/songs/60005268.mkv +LIONEL RICHIE-still,http://em.21dtv.com/songs/60005267.mkv +THE PUSSYCAT DOLLS-stickwitu,http://em.21dtv.com/songs/60005265.mkv +孙燕姿-stefanie(演唱会),http://em.21dtv.com/songs/60005262.mkv +佚名-steep,http://em.21dtv.com/songs/60005261.mkv +佚名-stay,http://em.21dtv.com/songs/60005258.mkv +TOLLACK OLLESTAD-stay,http://em.21dtv.com/songs/60005257.mkv +MISSTER-stay,http://em.21dtv.com/songs/60005256.mkv +LISA LOEB-stay,http://em.21dtv.com/songs/60005255.mkv +陶晶莹-stay(演唱会),http://em.21dtv.com/songs/60005254.mkv +LYFE JENNINGS-statistics,http://em.21dtv.com/songs/60005244.mkv +滨崎步-startin,http://em.21dtv.com/songs/60005242.mkv +符琼音-star,http://em.21dtv.com/songs/60005239.mkv +CONNIE吕莘-star,http://em.21dtv.com/songs/60005238.mkv +JEWEL-standl,http://em.21dtv.com/songs/60005235.mkv +JEWEL-stand,http://em.21dtv.com/songs/60005233.mkv +EMINEM-stan,http://em.21dtv.com/songs/60005227.mkv +EMINEM+DIDO-stan,http://em.21dtv.com/songs/60005226.mkv +宝儿-sparkling,http://em.21dtv.com/songs/60005214.mkv +滨崎步-sparkle,http://em.21dtv.com/songs/60005213.mkv +NATASHA BEDINGFIELD-soulmate,http://em.21dtv.com/songs/60005207.mkv +STIG ANDERSSON-sos,http://em.21dtv.com/songs/60005202.mkv +RIHANNA-sos,http://em.21dtv.com/songs/60005201.mkv +王浩信-sorry,http://em.21dtv.com/songs/60005199.mkv +苏永康-sorry,http://em.21dtv.com/songs/60005198.mkv +方大同-sorry,http://em.21dtv.com/songs/60005197.mkv +佚名-somewhere,http://em.21dtv.com/songs/60005182.mkv +BRITNEY SPEARS-sometimes,http://em.21dtv.com/songs/60005172.mkv +THE BEATLES-something,http://em.21dtv.com/songs/60005165.mkv +孙燕姿-someone,http://em.21dtv.com/songs/60005152.mkv +AIR SUPPLY-someone(演唱会),http://em.21dtv.com/songs/60005151.mkv +佚名-someday,http://em.21dtv.com/songs/60005148.mkv +幸田来未-someday,http://em.21dtv.com/songs/60005147.mkv +古巨基-someday,http://em.21dtv.com/songs/60005146.mkv +NICKELBACK-someday,http://em.21dtv.com/songs/60005145.mkv +ALL 4 ONE-someday,http://em.21dtv.com/songs/60005144.mkv +杨乃文-somebody,http://em.21dtv.com/songs/60005142.mkv +SAYA-solo,http://em.21dtv.com/songs/60005130.mkv +CARPENTERS-solitaire,http://em.21dtv.com/songs/60005128.mkv +ANDY WILLIAMS-solitaire,http://em.21dtv.com/songs/60005127.mkv +WESTLIFE-soledad,http://em.21dtv.com/songs/60005125.mkv +DESTINY'S CHILD-soldier,http://em.21dtv.com/songs/60005124.mkv +佚名-snowbird,http://em.21dtv.com/songs/60005095.mkv +莫文蔚-snacks,http://em.21dtv.com/songs/60005093.mkv +林一峰-smsnicq(演唱会),http://em.21dtv.com/songs/60005092.mkv +佚名-smooth(无原唱),http://em.21dtv.com/songs/60005091.mkv +大冢爱-smily,http://em.21dtv.com/songs/60005085.mkv +傅颖-smiling,http://em.21dtv.com/songs/60005084.mkv +佚名-smile,http://em.21dtv.com/songs/60005082.mkv +TENSION-smart,http://em.21dtv.com/songs/60005078.mkv +莫文蔚-slowly(演唱会),http://em.21dtv.com/songs/60005076.mkv +GOO GOO DOLLS-slide,http://em.21dtv.com/songs/60005072.mkv +东方神起-sky,http://em.21dtv.com/songs/60005067.mkv +龙井组合-sky(演唱会),http://em.21dtv.com/songs/60005066.mkv +NATASHA BEDINGFIELD-single,http://em.21dtv.com/songs/60005058.mkv +童唱-singer,http://em.21dtv.com/songs/60005053.mkv +佚名-sing,http://em.21dtv.com/songs/60005050.mkv +莫文蔚-silently(演唱会),http://em.21dtv.com/songs/60005036.mkv +佚名-silencio,http://em.21dtv.com/songs/60005030.mkv +周笔畅-silence,http://em.21dtv.com/songs/60005029.mkv +杨乃文-silence,http://em.21dtv.com/songs/60005028.mkv +FLOW-sign,http://em.21dtv.com/songs/60005025.mkv +SIGMA-sigma,http://em.21dtv.com/songs/60005024.mkv +ZIP发射乐团-shout,http://em.21dtv.com/songs/60005000.mkv +小龙女-shopping,http://em.21dtv.com/songs/60004998.mkv +陈嘉唯-shopping,http://em.21dtv.com/songs/60004997.mkv +佚名-ship,http://em.21dtv.com/songs/60004994.mkv +寿美菜子-shiny,http://em.21dtv.com/songs/60004993.mkv +丸子-shinning,http://em.21dtv.com/songs/60004992.mkv +大嘴巴-shining,http://em.21dtv.com/songs/60004991.mkv +东方神起-shine,http://em.21dtv.com/songs/60004988.mkv +BOOTY+LUV-shine,http://em.21dtv.com/songs/60004987.mkv +ASWAD-shine,http://em.21dtv.com/songs/60004986.mkv +NEIL DIAMOND-shilo,http://em.21dtv.com/songs/60004984.mkv +FREEZE-shiba-za,http://em.21dtv.com/songs/60004983.mkv +THE FOUR SEASONS-sherry,http://em.21dtv.com/songs/60004971.mkv +S.H.E-shero,http://em.21dtv.com/songs/60004970.mkv +S.H.E-shero(remix舞曲版),http://em.21dtv.com/songs/60004969.mkv +费翔-she,http://em.21dtv.com/songs/60004967.mkv +GROOVE COVERAGE-she,http://em.21dtv.com/songs/60004966.mkv +何韵诗-shampoo,http://em.21dtv.com/songs/60004945.mkv +MARINA+THE DIAMONDS-shampain,http://em.21dtv.com/songs/60004944.mkv +ROBBIE WILLIAMS+GARY-shame,http://em.21dtv.com/songs/60004943.mkv +JESSE MCCARTNEY-shake,http://em.21dtv.com/songs/60004934.mkv +小刀乐团-shadows(无原唱),http://em.21dtv.com/songs/60004925.mkv +范逸臣-serena,http://em.21dtv.com/songs/60004898.mkv +MAURICE WHITE+AL MCK-september,http://em.21dtv.com/songs/60004897.mkv +DAUGHTRY-september,http://em.21dtv.com/songs/60004896.mkv +JUSTIN TIMBERLAKE-senorita,http://em.21dtv.com/songs/60004890.mkv +张悬-selling,http://em.21dtv.com/songs/60004885.mkv +陈绮贞-self,http://em.21dtv.com/songs/60004884.mkv +MADONNA-secret,http://em.21dtv.com/songs/60004878.mkv +BROWN EYED GIRLS-second,http://em.21dtv.com/songs/60004876.mkv +滨崎步-seasons,http://em.21dtv.com/songs/60004874.mkv +周笔畅-season,http://em.21dtv.com/songs/60004869.mkv +KOTOKO-screw,http://em.21dtv.com/songs/60004860.mkv +TIMBALAND-scream,http://em.21dtv.com/songs/60004859.mkv +MICHAEL JACKSON+JANE JACKSON-scream,http://em.21dtv.com/songs/60004858.mkv +JANET JACKSON-scream,http://em.21dtv.com/songs/60004857.mkv +容祖儿-scream(演唱会),http://em.21dtv.com/songs/60004856.mkv +吴建豪+安七炫-scandal,http://em.21dtv.com/songs/60004851.mkv +JOHN MAYER-say,http://em.21dtv.com/songs/60004850.mkv +RICHARD MARX-satisfied,http://em.21dtv.com/songs/60004810.mkv +侧田-saranghae(演唱会),http://em.21dtv.com/songs/60004809.mkv +林佑威-sara,http://em.21dtv.com/songs/60004808.mkv +佚名-sandy,http://em.21dtv.com/songs/60004802.mkv +佚名-sandman,http://em.21dtv.com/songs/60004801.mkv +佚名-sam,http://em.21dtv.com/songs/60004798.mkv +顾建华-sally,http://em.21dtv.com/songs/60004797.mkv +童唱-sailor,http://em.21dtv.com/songs/60004795.mkv +ROD STEWART-sailing,http://em.21dtv.com/songs/60004794.mkv +CHRISTOPHER-sailing,http://em.21dtv.com/songs/60004793.mkv +[Group] +groupName=十六万歌曲MV等 - 02 +PETER PAN-sahabat,http://em.21dtv.com/songs/60004788.mkv +佚名-sacrifice,http://em.21dtv.com/songs/60004780.mkv +容祖儿-s o s,http://em.21dtv.com/songs/60004777.mkv +JOEY-s o s,http://em.21dtv.com/songs/60004776.mkv +ABBA-s o s,http://em.21dtv.com/songs/60004775.mkv +容祖儿-s o s(演唱会),http://em.21dtv.com/songs/60004774.mkv +BRITNEY SPEARS-3,http://em.21dtv.com/songs/60000017.mkv +JW-Runaway,http://em.21dtv.com/songs/60127652.mkv +THE KILLERS-runaways,http://em.21dtv.com/songs/60070392.mkv +CHLOE HOWL-Rumour,http://em.21dtv.com/songs/60099649.mkv +SIDNEY SAMSON-riverside,http://em.21dtv.com/songs/60065675.mkv +MUSE-resistance,http://em.21dtv.com/songs/60063716.mkv +小老鹰乐团-Reason,http://em.21dtv.com/songs/60081927.mkv +玉置成实-reason,http://em.21dtv.com/songs/60063302.mkv +蔚雨芯-raining,http://em.21dtv.com/songs/60069129.mkv +张靓颖-热,http://em.21dtv.com/songs/60135256.mkv +李宇春-若,http://em.21dtv.com/songs/60124063.mkv +Erika-绕,http://em.21dtv.com/songs/60123468.mkv +陈诗妮-若,http://em.21dtv.com/songs/60118168.mkv +萧煌奇-让,http://em.21dtv.com/songs/60116229.mkv +白举纲-燃,http://em.21dtv.com/songs/60111319.mkv +萧煌奇-让,http://em.21dtv.com/songs/60109606.mkv +神秘者-若,http://em.21dtv.com/songs/60096574.mkv +刘辰希-忍,http://em.21dtv.com/songs/60096573.mkv +李嘉-人(无原唱),http://em.21dtv.com/songs/60095600.mkv +冯巩+王兰-融,http://em.21dtv.com/songs/60089662.mkv +TEEN TOP-rocking,http://em.21dtv.com/songs/60084757.mkv +KATY PERRY-roar,http://em.21dtv.com/songs/60084755.mkv +MATT DUKE-rabbit,http://em.21dtv.com/songs/60084754.mkv +刘力扬-runway,http://em.21dtv.com/songs/60082316.mkv +LEEHI-rose,http://em.21dtv.com/songs/60082313.mkv +TAYLOR SWIFT-ronan,http://em.21dtv.com/songs/60082311.mkv +DUFFY-rockferry,http://em.21dtv.com/songs/60082309.mkv +CLARIS-reunion,http://em.21dtv.com/songs/60082305.mkv +NIGHT BEDS-ramona,http://em.21dtv.com/songs/60082303.mkv +罗时丰-忍,http://em.21dtv.com/songs/60077370.mkv +ノースリーブス-キリギリス人(演唱会),http://em.21dtv.com/songs/60074229.mkv +平井坚-いとしき日々よ,http://em.21dtv.com/songs/60074220.mkv +MATT NATHANSON+SUGARLAND-run,http://em.21dtv.com/songs/60073821.mkv +FOO FIGHTERS-rope,http://em.21dtv.com/songs/60073817.mkv +ALICE IN CHAINS-rooster,http://em.21dtv.com/songs/60073816.mkv +方大同-romeo(演唱会),http://em.21dtv.com/songs/60073815.mkv +ELIZA DOOLITTLE-rollerblades,http://em.21dtv.com/songs/60073814.mkv +DAPPY+BRIAN MAY-rockstar,http://em.21dtv.com/songs/60073811.mkv +GRANRODEO-rimfire,http://em.21dtv.com/songs/60073805.mkv +LANA DEL REY-ride,http://em.21dtv.com/songs/60073803.mkv +DEVLIN+DIANE BIRCH-rewind,http://em.21dtv.com/songs/60073801.mkv +LUDACRIS+KELLY ROWLAND-representin,http://em.21dtv.com/songs/60073796.mkv +WILEY+CHIP-reload,http://em.21dtv.com/songs/60073794.mkv +NO3B-relax,http://em.21dtv.com/songs/60073793.mkv +TAYLOR SWIFT-red(演唱会),http://em.21dtv.com/songs/60073792.mkv +BUTTER KNIVES-raekwon,http://em.21dtv.com/songs/60073786.mkv +RITA ORA-radioactive,http://em.21dtv.com/songs/60073785.mkv +SHAKIRA+PITBULL-rabiosa,http://em.21dtv.com/songs/60073783.mkv +765PRO ALLSTARS-ready,http://em.21dtv.com/songs/60061937.mkv +LIL WAYNE-runnin,http://em.21dtv.com/songs/60060901.mkv +徐小凤-柔(演唱会),http://em.21dtv.com/songs/60036706.mkv +叶启田-忍,http://em.21dtv.com/songs/60036508.mkv +卓依婷+林正桦-忍(演唱会),http://em.21dtv.com/songs/60036507.mkv +佚名-人,http://em.21dtv.com/songs/60036303.mkv +江蕙-人,http://em.21dtv.com/songs/60036302.mkv +佚名-人(无原唱),http://em.21dtv.com/songs/60036301.mkv +张靓颖-热,http://em.21dtv.com/songs/60036224.mkv +郭嘉璐-绕,http://em.21dtv.com/songs/60036218.mkv +杨宗纬-让,http://em.21dtv.com/songs/60036014.mkv +林一峰-燃,http://em.21dtv.com/songs/60035993.mkv +HIT-5-running,http://em.21dtv.com/songs/60004772.mkv +佚名-runaway,http://em.21dtv.com/songs/60004768.mkv +陶喆-runaway,http://em.21dtv.com/songs/60004767.mkv +THE CORRS-runaway,http://em.21dtv.com/songs/60004766.mkv +KANYE WEST-runaway,http://em.21dtv.com/songs/60004765.mkv +JANET JACKSON-runaway,http://em.21dtv.com/songs/60004764.mkv +SNOW PATROL-run,http://em.21dtv.com/songs/60004760.mkv +LEONA LEWIS-run,http://em.21dtv.com/songs/60004759.mkv +GNARLS BARKLEY-run,http://em.21dtv.com/songs/60004758.mkv +LINDSAY LOHAN-rumors,http://em.21dtv.com/songs/60004747.mkv +滨崎步-rule,http://em.21dtv.com/songs/60004746.mkv +ELVIS-rubernecking,http://em.21dtv.com/songs/60004743.mkv +佚名-roxanne,http://em.21dtv.com/songs/60004740.mkv +THE POLICE-roxanne,http://em.21dtv.com/songs/60004739.mkv +佚名-rosanna,http://em.21dtv.com/songs/60004731.mkv +夏韶声-rosalie,http://em.21dtv.com/songs/60004730.mkv +DADDY YANKEE-rompe,http://em.21dtv.com/songs/60004729.mkv +NICKELBACK-rockstar,http://em.21dtv.com/songs/60004723.mkv +姜承民-road,http://em.21dtv.com/songs/60004697.mkv +CIARA+LUDACRIS-ride,http://em.21dtv.com/songs/60004674.mkv +F.I.R-revolution,http://em.21dtv.com/songs/60004661.mkv +佚名-revolutin(演唱会),http://em.21dtv.com/songs/60004660.mkv +仓木麻衣-revive,http://em.21dtv.com/songs/60004659.mkv +PEACHES+HERBS-reunited,http://em.21dtv.com/songs/60004658.mkv +李翊君-remember,http://em.21dtv.com/songs/60004654.mkv +S.H.E-remember,http://em.21dtv.com/songs/60004653.mkv +ノースリーブス-relax,http://em.21dtv.com/songs/60004646.mkv +T.PETTY-M.CAMPBELL-refugee(无原唱),http://em.21dtv.com/songs/60004645.mkv +LEA SALONGA-reflection,http://em.21dtv.com/songs/60004643.mkv +CHRISTINA AGUILERA-reflection,http://em.21dtv.com/songs/60004642.mkv +佚名-ree(无原唱),http://em.21dtv.com/songs/60004641.mkv +MELODY-realize,http://em.21dtv.com/songs/60004629.mkv +佚名-reality,http://em.21dtv.com/songs/60004628.mkv +JAMES WESLEY-real,http://em.21dtv.com/songs/60004627.mkv +佚名-reach,http://em.21dtv.com/songs/60004613.mkv +RAIN-rainism,http://em.21dtv.com/songs/60004602.mkv +佚名-rainbows,http://em.21dtv.com/songs/60004600.mkv +卫兰-rainbows,http://em.21dtv.com/songs/60004599.mkv +范晓萱-rain,http://em.21dtv.com/songs/60004598.mkv +YUI-rain,http://em.21dtv.com/songs/60004597.mkv +MODONNA-rain,http://em.21dtv.com/songs/60004596.mkv +MAROON 5-rage,http://em.21dtv.com/songs/60004592.mkv +KINGS OF LEON-radioactive,http://em.21dtv.com/songs/60004589.mkv +THE CORRS-radio,http://em.21dtv.com/songs/60004588.mkv +ROBBIE WILLIAMS-radio,http://em.21dtv.com/songs/60004587.mkv +ALESHA DIXON-radio,http://em.21dtv.com/songs/60004586.mkv +佚名-radiate,http://em.21dtv.com/songs/60004583.mkv +L.A.BOYZ-r o c k,http://em.21dtv.com/songs/60004582.mkv +黄雅莉-缺,http://em.21dtv.com/songs/60071073.mkv +何龙雨-qq恋,http://em.21dtv.com/songs/60086360.mkv +黎明-情,http://em.21dtv.com/songs/60064738.mkv +李杨飞-墙,http://em.21dtv.com/songs/60067326.mkv +艾丽雅-秋,http://em.21dtv.com/songs/60128335.mkv +白若溪-晴,http://em.21dtv.com/songs/60112132.mkv +SHINY-墙,http://em.21dtv.com/songs/60109111.mkv +黄雅莉-Q,http://em.21dtv.com/songs/60106511.mkv +SHINY-墙,http://em.21dtv.com/songs/60104723.mkv +戴玉强-桥,http://em.21dtv.com/songs/60104162.mkv +汪苏泷-晴(故事情节),http://em.21dtv.com/songs/60101130.mkv +遥远-妻,http://em.21dtv.com/songs/60099516.mkv +RUBBERBAND-强,http://em.21dtv.com/songs/60096584.mkv +杨千嬅-亲,http://em.21dtv.com/songs/60095203.mkv +阿弟仔-呛,http://em.21dtv.com/songs/60088832.mkv +张辉-牵,http://em.21dtv.com/songs/60086760.mkv +阿权-钱,http://em.21dtv.com/songs/60083614.mkv +渡辺麻友-サヨナラの桥,http://em.21dtv.com/songs/60074238.mkv +李旸+宫下匠规-钱,http://em.21dtv.com/songs/60067325.mkv +MIGUEL-quickie,http://em.21dtv.com/songs/60060895.mkv +佚名-情,http://em.21dtv.com/songs/60034918.mkv +蔡小虎-情,http://em.21dtv.com/songs/60034917.mkv +谭咏麟+李克勤-情(是永远着迷)(演唱会),http://em.21dtv.com/songs/60034916.mkv +李克勤-情(是永远着迷)(演唱会),http://em.21dtv.com/songs/60034915.mkv +刘若英-轻,http://em.21dtv.com/songs/60034795.mkv +容祖儿-怯,http://em.21dtv.com/songs/60034464.mkv +容祖儿-怯(演唱会),http://em.21dtv.com/songs/60034463.mkv +游鸿明-切,http://em.21dtv.com/songs/60034454.mkv +佚名-悄,http://em.21dtv.com/songs/60034414.mkv +ENERGY-呛(无原唱),http://em.21dtv.com/songs/60034408.mkv +范怡文-墙,http://em.21dtv.com/songs/60034382.mkv +白光-墙,http://em.21dtv.com/songs/60034381.mkv +龙宽九段-强,http://em.21dtv.com/songs/60034376.mkv +郭富城-强,http://em.21dtv.com/songs/60034375.mkv +郑中基-强(演唱会),http://em.21dtv.com/songs/60034374.mkv +郭富城-强(演唱会),http://em.21dtv.com/songs/60034373.mkv +郭富城+软硬天师-强(演唱会),http://em.21dtv.com/songs/60034372.mkv +RUBBER BAND-潜(演唱会),http://em.21dtv.com/songs/60034327.mkv +樱桃帮-七,http://em.21dtv.com/songs/60033729.mkv +陈奕迅-七,http://em.21dtv.com/songs/60033728.mkv +李宇春-quizas(演唱会),http://em.21dtv.com/songs/60004581.mkv +河佑善-question,http://em.21dtv.com/songs/60004579.mkv +杨乃文-queen,http://em.21dtv.com/songs/60004578.mkv +孙丹菲-queen,http://em.21dtv.com/songs/60004577.mkv +CIRCUS-qk,http://em.21dtv.com/songs/60004566.mkv +ARIANA GRANDE+IGGY AZALEA-Problem,http://em.21dtv.com/songs/60101207.mkv +堀江由衣-presenter,http://em.21dtv.com/songs/60062546.mkv +伊藤由奈-precious,http://em.21dtv.com/songs/60063271.mkv +LITTLE BIG TOWN-pontoon,http://em.21dtv.com/songs/60070386.mkv +JKAI+DIXON+MC FAN-play,http://em.21dtv.com/songs/60071650.mkv +大嘴巴-play!,http://em.21dtv.com/songs/60066711.mkv +大嘴巴-play,http://em.21dtv.com/songs/60062311.mkv +杨谨+唐广义-Pking,http://em.21dtv.com/songs/60100190.mkv +MAROON 5+WIZ KHALIFA-payphone,http://em.21dtv.com/songs/60066710.mkv +BEYONCE-party,http://em.21dtv.com/songs/60063706.mkv +李雅微-Paradise,http://em.21dtv.com/songs/60101385.mkv +COLDPLAY-paradise,http://em.21dtv.com/songs/60063705.mkv +JENNIFER LOPEZ-papi,http://em.21dtv.com/songs/60062059.mkv +LINKIN PARK-papercut,http://em.21dtv.com/songs/60065666.mkv +少女时代-paparazzi,http://em.21dtv.com/songs/60069125.mkv +付豪-跑,http://em.21dtv.com/songs/60071023.mkv +KARA-pandora,http://em.21dtv.com/songs/60069124.mkv +SPICA-painkiller,http://em.21dtv.com/songs/60070384.mkv +梁剑东-蒲,http://em.21dtv.com/songs/60129309.mkv +张雨飞-飘,http://em.21dtv.com/songs/60129125.mkv +米靓-飘,http://em.21dtv.com/songs/60126014.mkv +梁剑东-蒲,http://em.21dtv.com/songs/60124160.mkv +陈瑞-盼,http://em.21dtv.com/songs/60123315.mkv +云菲菲-漂,http://em.21dtv.com/songs/60121352.mkv +阿云嘎-漂,http://em.21dtv.com/songs/60118995.mkv +刘梦-飘,http://em.21dtv.com/songs/60117582.mkv +木棉-漂,http://em.21dtv.com/songs/60110257.mkv +杨丞琳-怕,http://em.21dtv.com/songs/60109445.mkv +朱俐静-跑,http://em.21dtv.com/songs/60106917.mkv +朱俐静-跑,http://em.21dtv.com/songs/60105129.mkv +韩红-飘,http://em.21dtv.com/songs/60088959.mkv +SEAN LENNON-parachute,http://em.21dtv.com/songs/60086359.mkv +刘着-飘,http://em.21dtv.com/songs/60083578.mkv +NATALIA KILLS-problem,http://em.21dtv.com/songs/60082300.mkv +T-ARA+SEEYA+5DOLLS-painkiller,http://em.21dtv.com/songs/60082291.mkv +严爵-π,http://em.21dtv.com/songs/60080796.mkv +张婧-平,http://em.21dtv.com/songs/60077092.mkv +夏天-飘,http://em.21dtv.com/songs/60077088.mkv +沙宝亮-飘(演唱会),http://em.21dtv.com/songs/60077087.mkv +ROH JIHOON-punishment,http://em.21dtv.com/songs/60073773.mkv +IMELDA MAY-psycho,http://em.21dtv.com/songs/60073770.mkv +JLS-proud,http://em.21dtv.com/songs/60073769.mkv +AMY MACDONALD-pride,http://em.21dtv.com/songs/60073767.mkv +BASTILLE-pompeii,http://em.21dtv.com/songs/60073759.mkv +安七炫-polaris,http://em.21dtv.com/songs/60073758.mkv +SECRET-poison,http://em.21dtv.com/songs/60073757.mkv +金贤重-please,http://em.21dtv.com/songs/60073755.mkv +F(X)-pinocchio,http://em.21dtv.com/songs/60073749.mkv +KATY PERRY-pearl,http://em.21dtv.com/songs/60073745.mkv +KATY PERRY-peacock(演唱会),http://em.21dtv.com/songs/60073744.mkv +耀乐团-pain,http://em.21dtv.com/songs/60073733.mkv +MARINA AND-primadonna,http://em.21dtv.com/songs/60067969.mkv +B.A.P-power,http://em.21dtv.com/songs/60066713.mkv +NERO-promises,http://em.21dtv.com/songs/60060894.mkv +夏卡毛乐团-拼,http://em.21dtv.com/songs/60033548.mkv +张洪量-飘,http://em.21dtv.com/songs/60033511.mkv +王菲菲-飘,http://em.21dtv.com/songs/60033510.mkv +斯琴格日乐-飘,http://em.21dtv.com/songs/60033509.mkv +沙宝亮-飘,http://em.21dtv.com/songs/60033508.mkv +任真-飘,http://em.21dtv.com/songs/60033507.mkv +飘乐团-飘,http://em.21dtv.com/songs/60033506.mkv +孟庭苇-飘,http://em.21dtv.com/songs/60033505.mkv +姜育恒-飘,http://em.21dtv.com/songs/60033504.mkv +陈慧娴-飘,http://em.21dtv.com/songs/60033503.mkv +叶德娴-飘(演唱会),http://em.21dtv.com/songs/60033502.mkv +容祖儿+蔡一杰+蔡一智-飘(演唱会),http://em.21dtv.com/songs/60033501.mkv +刘着-飘(演唱会),http://em.21dtv.com/songs/60033500.mkv +陈慧娴-飘(演唱会),http://em.21dtv.com/songs/60033499.mkv +钟镇涛-飘(无原唱),http://em.21dtv.com/songs/60033498.mkv +王梓旭-漂,http://em.21dtv.com/songs/60033449.mkv +韩红-漂,http://em.21dtv.com/songs/60033448.mkv +韩红-漂(演唱会),http://em.21dtv.com/songs/60033447.mkv +江志丰-批,http://em.21dtv.com/songs/60033380.mkv +陈晓东-跑,http://em.21dtv.com/songs/60033199.mkv +厉娜-跑(演唱会),http://em.21dtv.com/songs/60033198.mkv +左戎-盼,http://em.21dtv.com/songs/60033146.mkv +佚名-盼,http://em.21dtv.com/songs/60033145.mkv +张可芝-盼(无原唱),http://em.21dtv.com/songs/60033144.mkv +晓枫-怕,http://em.21dtv.com/songs/60033087.mkv +吴雨霏-怕(演唱会),http://em.21dtv.com/songs/60033086.mkv +KINGS OF LEON-pyro,http://em.21dtv.com/songs/60004565.mkv +CHARICE+IYAZ-pyramid,http://em.21dtv.com/songs/60004564.mkv +仓木麻衣-puzzle,http://em.21dtv.com/songs/60004563.mkv +佚名-puff,http://em.21dtv.com/songs/60004547.mkv +么多多-ps,http://em.21dtv.com/songs/60004545.mkv +林榆涵+RING-process(无原唱),http://em.21dtv.com/songs/60004540.mkv +蜜雪薇琪-princess,http://em.21dtv.com/songs/60004534.mkv +滨崎步-pride,http://em.21dtv.com/songs/60004531.mkv +SCANDAL-pride,http://em.21dtv.com/songs/60004530.mkv +佚名-pretend,http://em.21dtv.com/songs/60004523.mkv +JJ-ppang,http://em.21dtv.com/songs/60004517.mkv +童唱-postman,http://em.21dtv.com/songs/60004513.mkv +佚名-portofino,http://em.21dtv.com/songs/60004512.mkv +AT17-porcelain(演唱会),http://em.21dtv.com/songs/60004511.mkv +吴建豪-pop,http://em.21dtv.com/songs/60004510.mkv +N SYNC-pop,http://em.21dtv.com/songs/60004509.mkv +童唱-policeman,http://em.21dtv.com/songs/60004501.mkv +反町隆史-poison,http://em.21dtv.com/songs/60004499.mkv +卫兰-please,http://em.21dtv.com/songs/60004492.mkv +JENNIFER LOPEZ-play,http://em.21dtv.com/songs/60004480.mkv +梁静茹+曹格-pk,http://em.21dtv.com/songs/60004477.mkv +童唱-pilot,http://em.21dtv.com/songs/60004474.mkv +范逸臣-piano,http://em.21dtv.com/songs/60004466.mkv +佚名-physical,http://em.21dtv.com/songs/60004465.mkv +NEIL YOUNG-philadelphia,http://em.21dtv.com/songs/60004460.mkv +佚名-percayalah,http://em.21dtv.com/songs/60004448.mkv +佚名-pepito,http://em.21dtv.com/songs/60004447.mkv +JQT-peekaboo,http://em.21dtv.com/songs/60004442.mkv +接招合唱团-patience,http://em.21dtv.com/songs/60004438.mkv +佚名-passion,http://em.21dtv.com/songs/60004437.mkv +黄大炜-passion,http://em.21dtv.com/songs/60004436.mkv +ROD STEWART-passion,http://em.21dtv.com/songs/60004435.mkv +张敬轩-paris,http://em.21dtv.com/songs/60004419.mkv +KANYE WEST-paranoid,http://em.21dtv.com/songs/60004418.mkv +BLACK SABBATH-paranoid,http://em.21dtv.com/songs/60004417.mkv +FINGER ELEVEN-paralyzer,http://em.21dtv.com/songs/60004416.mkv +陈乃荣-paradise,http://em.21dtv.com/songs/60004415.mkv +T+MAX-paradise,http://em.21dtv.com/songs/60004414.mkv +SADE-paradise,http://em.21dtv.com/songs/60004413.mkv +MICKEY FACTZ-paradise,http://em.21dtv.com/songs/60004412.mkv +BEYOND-paradise,http://em.21dtv.com/songs/60004411.mkv +AAA-paradise,http://em.21dtv.com/songs/60004410.mkv +佚名-papa,http://em.21dtv.com/songs/60004403.mkv +HIT-5-paleni,http://em.21dtv.com/songs/60004399.mkv +潘迪华-pachanga(演唱会),http://em.21dtv.com/songs/60004393.mkv +陈升-π(无原唱),http://em.21dtv.com/songs/60006636.mkv +JUSTIN BIEBER+MILEY-overborad(演唱会),http://em.21dtv.com/songs/60069123.mkv +TAYLOR SWIFT-ours,http://em.21dtv.com/songs/60066707.mkv +JAY Z-otis,http://em.21dtv.com/songs/60065665.mkv +FAT JOE+AKON-one,http://em.21dtv.com/songs/60063703.mkv +B1A4-ok,http://em.21dtv.com/songs/60061956.mkv +魏如昀-偶,http://em.21dtv.com/songs/60122289.mkv +M83+SUSANNE SUNDFOR-oblivion,http://em.21dtv.com/songs/60082284.mkv +C ALLSTAR-overture(演唱会),http://em.21dtv.com/songs/60073732.mkv +DOT ROTTEN+TMS-overload,http://em.21dtv.com/songs/60073731.mkv +春奈るな-overfly,http://em.21dtv.com/songs/60073730.mkv +TALIB KWELI+RYAN LESLIE-outstanding,http://em.21dtv.com/songs/60073728.mkv +中岛美嘉-orion,http://em.21dtv.com/songs/60073726.mkv +林志炫-opera,http://em.21dtv.com/songs/60073724.mkv +G.NA-oops,http://em.21dtv.com/songs/60073722.mkv +萧全-ons,http://em.21dtv.com/songs/60073721.mkv +藤本美贵-okitegami,http://em.21dtv.com/songs/60073689.mkv +CHER LLOYD+BECKY G-oath,http://em.21dtv.com/songs/60073680.mkv +周柏豪-哦,http://em.21dtv.com/songs/60033041.mkv +佚名-overload,http://em.21dtv.com/songs/60004387.mkv +佚名-over,http://em.21dtv.com/songs/60004386.mkv +GEORGE MICHAEL-outside,http://em.21dtv.com/songs/60004377.mkv +BRITNEY SPEARS-outrageous,http://em.21dtv.com/songs/60004376.mkv +NAKASHIMA MIKA-orion,http://em.21dtv.com/songs/60004360.mkv +邰正宵-orea,http://em.21dtv.com/songs/60004359.mkv +MARY J.BLIGE-ooh,http://em.21dtv.com/songs/60004345.mkv +佚名-one,http://em.21dtv.com/songs/60004322.mkv +阿超-one,http://em.21dtv.com/songs/60004321.mkv +U2-one,http://em.21dtv.com/songs/60004320.mkv +SWEDISH HOUSE MAFIA-one,http://em.21dtv.com/songs/60004319.mkv +BEE GEES-one(演唱会),http://em.21dtv.com/songs/60004318.mkv +陶喆-olia,http://em.21dtv.com/songs/60004259.mkv +GEORGE MICHAEL-older,http://em.21dtv.com/songs/60004256.mkv +苏慧伦-okok,http://em.21dtv.com/songs/60004246.mkv +张惠妹-ok(演唱会),http://em.21dtv.com/songs/60004245.mkv +麻吉弟弟-oh!my,http://em.21dtv.com/songs/60004239.mkv +MARIAH CAREY-obsessed,http://em.21dtv.com/songs/60004209.mkv +快乐2世代-oao,http://em.21dtv.com/songs/60004206.mkv +OMARION-o,http://em.21dtv.com/songs/60004205.mkv +钟汉良-o r e a (演唱会),http://em.21dtv.com/songs/60004204.mkv +李炜+杨洋-诺,http://em.21dtv.com/songs/60064674.mkv +伦永亮+林忆莲-暖,http://em.21dtv.com/songs/60072266.mkv +FRANK OCEAN-novacane,http://em.21dtv.com/songs/60062029.mkv +林峰-nice,http://em.21dtv.com/songs/60071645.mkv +沙慧-念,http://em.21dtv.com/songs/60064666.mkv +CLARIS-nexus,http://em.21dtv.com/songs/60061981.mkv +U-neverland,http://em.21dtv.com/songs/60065658.mkv +CHRIS YOUNG-neon,http://em.21dtv.com/songs/60070380.mkv +NIGHTWISH-Nemo,http://em.21dtv.com/songs/60099687.mkv +COLLECTIVE SOUL-needs,http://em.21dtv.com/songs/60066692.mkv +SELENA GOMEZ-naturally(演唱会),http://em.21dtv.com/songs/60067955.mkv +温岚-naluwan,http://em.21dtv.com/songs/60066691.mkv +BLOCK B-nalina,http://em.21dtv.com/songs/60065657.mkv +DEV+ENRIQUE IGLESIAS-naked,http://em.21dtv.com/songs/60066690.mkv +张桃-念,http://em.21dtv.com/songs/60135208.mkv +谭艳-你,http://em.21dtv.com/songs/60134239.mkv +王菲-你,http://em.21dtv.com/songs/60134008.mkv +罗嘉豪+AJ+祖丝-嬲,http://em.21dtv.com/songs/60131726.mkv +姜昇润-你,http://em.21dtv.com/songs/60130236.mkv +周深-你,http://em.21dtv.com/songs/60128906.mkv +黄玠-你,http://em.21dtv.com/songs/60124749.mkv +蔡淳佳-念,http://em.21dtv.com/songs/60124438.mkv +无限甜心-念,http://em.21dtv.com/songs/60124014.mkv +唐伯虎-浓,http://em.21dtv.com/songs/60123780.mkv +巴桑拉姆-那,http://em.21dtv.com/songs/60121622.mkv +金莎-诺,http://em.21dtv.com/songs/60118981.mkv +李纹-你,http://em.21dtv.com/songs/60118686.mkv +王宜雨-娘,http://em.21dtv.com/songs/60117914.mkv +黄霄云-你,http://em.21dtv.com/songs/60114304.mkv +阿译-妞,http://em.21dtv.com/songs/60114185.mkv +石头-念,http://em.21dtv.com/songs/60108744.mkv +阿译(A译)+谭英-妞,http://em.21dtv.com/songs/60107308.mkv +汪峰-你,http://em.21dtv.com/songs/60102442.mkv +杨承熹-你,http://em.21dtv.com/songs/60100889.mkv +范玮琪-你,http://em.21dtv.com/songs/60100424.mkv +春天-你,http://em.21dtv.com/songs/60096321.mkv +SELENA GOMEZ-naturally,http://em.21dtv.com/songs/60084750.mkv +戴荃-Nobody,http://em.21dtv.com/songs/60081518.mkv +戴佩妮-Never,http://em.21dtv.com/songs/60080111.mkv +ゴールデンボンバー-女々しくて,http://em.21dtv.com/songs/60077020.mkv +严艺丹-念,http://em.21dtv.com/songs/60077006.mkv +BRAD PAISLEY-southern comfort zone,http://em.21dtv.com/songs/60073923.mkv +USHER-numb,http://em.21dtv.com/songs/60073678.mkv +PARAMORE-now,http://em.21dtv.com/songs/60073677.mkv +THE SCRIPT-nothing,http://em.21dtv.com/songs/60073673.mkv +孙佳仁-nostalgia,http://em.21dtv.com/songs/60073670.mkv +杨谨-nonono,http://em.21dtv.com/songs/60073669.mkv +NAMIGIRL-nleader,http://em.21dtv.com/songs/60073663.mkv +梁汉文-never,http://em.21dtv.com/songs/60073657.mkv +小凌-你,http://em.21dtv.com/songs/60063151.mkv +THE SATURDAYS-notorious,http://em.21dtv.com/songs/60062168.mkv +萧敬腾-你,http://em.21dtv.com/songs/60061449.mkv +方大同-暖(演唱会),http://em.21dtv.com/songs/60032793.mkv +尹相杰-鸟,http://em.21dtv.com/songs/60032670.mkv +许巍-你,http://em.21dtv.com/songs/60031372.mkv +屠洪纲-你,http://em.21dtv.com/songs/60031371.mkv +尚雯婕-你,http://em.21dtv.com/songs/60031370.mkv +林依晨-你,http://em.21dtv.com/songs/60031369.mkv +梁静茹-你,http://em.21dtv.com/songs/60031368.mkv +金智娟-你,http://em.21dtv.com/songs/60031367.mkv +范晓萱-你,http://em.21dtv.com/songs/60031366.mkv +陈冠希-你,http://em.21dtv.com/songs/60031365.mkv +花儿乐队-嫩,http://em.21dtv.com/songs/60031335.mkv +化学猴子-闹,http://em.21dtv.com/songs/60031304.mkv +童唱-nurse,http://em.21dtv.com/songs/60004196.mkv +王若琳-now,http://em.21dtv.com/songs/60004191.mkv +佚名-nostalgias,http://em.21dtv.com/songs/60004162.mkv +WONDER GIRLS-nobody,http://em.21dtv.com/songs/60004156.mkv +RAINSTONE REMIX+WOND-nobody,http://em.21dtv.com/songs/60004155.mkv +杨千嬅-nobody(演唱会),http://em.21dtv.com/songs/60004154.mkv +WONDER GIRLS-nobody(演唱会),http://em.21dtv.com/songs/60004153.mkv +佚名-nikita,http://em.21dtv.com/songs/60004103.mkv +陈珊妮-nicholas,http://em.21dtv.com/songs/60004098.mkv +HEART-never(无原唱),http://em.21dtv.com/songs/60004082.mkv +苍茫-need(演唱会),http://em.21dtv.com/songs/60004060.mkv +王力宏-nature(演唱会),http://em.21dtv.com/songs/60004055.mkv +佚名-natural,http://em.21dtv.com/songs/60004054.mkv +刘德华-natural,http://em.21dtv.com/songs/60004053.mkv +JANET JACKSON-nasty,http://em.21dtv.com/songs/60004050.mkv +吴克群+王心凌-nanana,http://em.21dtv.com/songs/60004048.mkv +YUI-namidairo,http://em.21dtv.com/songs/60004047.mkv +丰崎爱生-music,http://em.21dtv.com/songs/60065656.mkv +黄品源+万芳-麻糬,http://em.21dtv.com/songs/60028342.mkv +潘玮柏-MR RIGHT,http://em.21dtv.com/songs/60101433.mkv +沙宝亮-Mr Bad,http://em.21dtv.com/songs/60100265.mkv +EXO M-Moonlight(月光),http://em.21dtv.com/songs/60099655.mkv +BIGBANG-monster,http://em.21dtv.com/songs/60067948.mkv +岚-monster,http://em.21dtv.com/songs/60065650.mkv +PROFESSOR GREEN-monster,http://em.21dtv.com/songs/60063688.mkv +DANCING DOLLS-Monochrome,http://em.21dtv.com/songs/60100714.mkv +JUSTIN BIEBER-mistletoe,http://em.21dtv.com/songs/60063687.mkv +MAROON 5-Misery,http://em.21dtv.com/songs/60100736.mkv +LIL WAYNE-mirror,http://em.21dtv.com/songs/60065648.mkv +苏妙玲-妙,http://em.21dtv.com/songs/60069616.mkv +郭家铭-谜,http://em.21dtv.com/songs/60072204.mkv +MYNAME-message,http://em.21dtv.com/songs/60063685.mkv +JA RULE-mesmerize,http://em.21dtv.com/songs/60063684.mkv +DIVA PROJECT-mermaid,http://em.21dtv.com/songs/60062005.mkv +吉克隽逸-Mercy,http://em.21dtv.com/songs/60100783.mkv +MARCUS COLLINS-mercy,http://em.21dtv.com/songs/60067943.mkv +阎韦伶-梦,http://em.21dtv.com/songs/60070932.mkv +黄耀明-梦(演唱会),http://em.21dtv.com/songs/60064543.mkv +容祖儿-孟(演唱会),http://em.21dtv.com/songs/60064542.mkv +周笔畅-闷(演唱会),http://em.21dtv.com/songs/60072195.mkv +任家萱-梦,http://em.21dtv.com/songs/60064544.mkv +薛之谦-memory,http://em.21dtv.com/songs/60071640.mkv +蓝井エイル-memoria,http://em.21dtv.com/songs/60063683.mkv +PLIES+KERI HILSON-medicine,http://em.21dtv.com/songs/60063682.mkv +玉置浩二-梦のつづき,http://em.21dtv.com/songs/60100299.mkv +SICK PUPPIES-maybe,http://em.21dtv.com/songs/60062154.mkv +MADONNA-masterpiece,http://em.21dtv.com/songs/60067942.mkv +EXO K-mama,http://em.21dtv.com/songs/60069109.mkv +罗志祥-magic,http://em.21dtv.com/songs/60070372.mkv +林德信-magic,http://em.21dtv.com/songs/60069108.mkv +MUSE-madness,http://em.21dtv.com/songs/60070371.mkv +张晏鸿-默,http://em.21dtv.com/songs/60135202.mkv +刘思涵-梦,http://em.21dtv.com/songs/60134933.mkv +郑俊弘-迷,http://em.21dtv.com/songs/60134300.mkv +穆秀英-漠,http://em.21dtv.com/songs/60134053.mkv +吴周胜-梦,http://em.21dtv.com/songs/60133472.mkv +郑俊弘-迷,http://em.21dtv.com/songs/60132985.mkv +穆秀英-漠,http://em.21dtv.com/songs/60132778.mkv +张杰-默,http://em.21dtv.com/songs/60132444.mkv +詹小栎-霾,http://em.21dtv.com/songs/60131806.mkv +东山少爷-迷,http://em.21dtv.com/songs/60131133.mkv +刘松-觅,http://em.21dtv.com/songs/60130121.mkv +庄振凯-命,http://em.21dtv.com/songs/60129047.mkv +那英-默,http://em.21dtv.com/songs/60127451.mkv +李雪莱-霾,http://em.21dtv.com/songs/60127069.mkv +刘天助-喵,http://em.21dtv.com/songs/60126638.mkv +柴田淳-梦,http://em.21dtv.com/songs/60125801.mkv +妤桢-M,http://em.21dtv.com/songs/60125361.mkv +魏如昀-木,http://em.21dtv.com/songs/60122290.mkv +许云上-梦,http://em.21dtv.com/songs/60122108.mkv +魏如昀-木,http://em.21dtv.com/songs/60121168.mkv +黄致列-默,http://em.21dtv.com/songs/60119076.mkv +马常宝-默,http://em.21dtv.com/songs/60117382.mkv +贺小花+刘建民-梦,http://em.21dtv.com/songs/60117250.mkv +汪峰-满,http://em.21dtv.com/songs/60116994.mkv +好妹妹乐队-门,http://em.21dtv.com/songs/60116685.mkv +阿吉太组合-梦,http://em.21dtv.com/songs/60115472.mkv +简弘亦-默,http://em.21dtv.com/songs/60114717.mkv +梁咏琪-闷,http://em.21dtv.com/songs/60114632.mkv +尚雯婕-默,http://em.21dtv.com/songs/60114511.mkv +周杰伦-默,http://em.21dtv.com/songs/60113340.mkv +周杰伦-默,http://em.21dtv.com/songs/60112576.mkv +那英-默,http://em.21dtv.com/songs/60111433.mkv +黄政-梦,http://em.21dtv.com/songs/60110728.mkv +孙凡雅-谜,http://em.21dtv.com/songs/60105747.mkv +面孔乐队-梦,http://em.21dtv.com/songs/60104584.mkv +阿东-梅,http://em.21dtv.com/songs/60104521.mkv +满文军-门,http://em.21dtv.com/songs/60101430.mkv +李小龙-妈,http://em.21dtv.com/songs/60100137.mkv +许云上-马(演),http://em.21dtv.com/songs/60099495.mkv +LADYZ-MONSTER,http://em.21dtv.com/songs/60093728.mkv +腾格尔-梦,http://em.21dtv.com/songs/60091905.mkv +秦天-妈,http://em.21dtv.com/songs/60091798.mkv +DEEN-梦であるように(演唱会),http://em.21dtv.com/songs/60083391.mkv +MR-mr tam,http://em.21dtv.com/songs/60082265.mkv +SMAP-mistake,http://em.21dtv.com/songs/60082261.mkv +河西智美-mine,http://em.21dtv.com/songs/60082258.mkv +G-DRAGON-michigo,http://em.21dtv.com/songs/60082257.mkv +EXO-M-mama,http://em.21dtv.com/songs/60082250.mkv +EXO-M-machine,http://em.21dtv.com/songs/60082249.mkv +萱萱-Melody,http://em.21dtv.com/songs/60081565.mkv +沙宝亮-迷,http://em.21dtv.com/songs/60081384.mkv +张目-Mercy,http://em.21dtv.com/songs/60081262.mkv +关寅飞-寞,http://em.21dtv.com/songs/60080969.mkv +郑进一-闷,http://em.21dtv.com/songs/60080269.mkv +晓华-梦(演唱会),http://em.21dtv.com/songs/60076650.mkv +泳儿-萌,http://em.21dtv.com/songs/60076646.mkv +尚雯婕-闷,http://em.21dtv.com/songs/60076645.mkv +2PM-マスカレード ~masquerade,http://em.21dtv.com/songs/60074263.mkv +萧贺硕-musicians,http://em.21dtv.com/songs/60073630.mkv +吴南颖FIONA-mrsame,http://em.21dtv.com/songs/60073627.mkv +晶-movie,http://em.21dtv.com/songs/60073623.mkv +KELLY ROWLAND-motivation,http://em.21dtv.com/songs/60073618.mkv +THE MONSTERS-monsters,http://em.21dtv.com/songs/60073613.mkv +许阁-monodrama,http://em.21dtv.com/songs/60073612.mkv +麦德罗-monica(演唱会),http://em.21dtv.com/songs/60073611.mkv +爱朵女孩-money,http://em.21dtv.com/songs/60073610.mkv +滨崎步-missing,http://em.21dtv.com/songs/60073608.mkv +JUSTIN TIMBERLAKE-mirrors,http://em.21dtv.com/songs/60073603.mkv +CASCADA-miracle,http://em.21dtv.com/songs/60073602.mkv +TINY G-minimanimo,http://em.21dtv.com/songs/60073601.mkv +PUSHA T+RICK ROSS-millions,http://em.21dtv.com/songs/60073600.mkv +KELIS-milkshake,http://em.21dtv.com/songs/60073599.mkv +KANYE WEST-mercy,http://em.21dtv.com/songs/60073595.mkv +苏珊-memory(演唱会),http://em.21dtv.com/songs/60073594.mkv +EXILE ATSUSHI-melrose,http://em.21dtv.com/songs/60073592.mkv +滨崎步-melody,http://em.21dtv.com/songs/60073590.mkv +INGRID MICHAELSON-maybe,http://em.21dtv.com/songs/60073588.mkv +蔡秋凤-命,http://em.21dtv.com/songs/60072210.mkv +阿蜜丝女孩-美,http://em.21dtv.com/songs/60069598.mkv +LADY GAGA-monster(演唱会),http://em.21dtv.com/songs/60067947.mkv +PARAMORE-monster,http://em.21dtv.com/songs/60062125.mkv +TAYLOR SWIFT-mean,http://em.21dtv.com/songs/60060876.mkv +SECRET-madonna,http://em.21dtv.com/songs/60060872.mkv +张宇-命,http://em.21dtv.com/songs/60030271.mkv +施文彬-咩,http://em.21dtv.com/songs/60030060.mkv +徐怀钰-谜,http://em.21dtv.com/songs/60029944.mkv +成龙-谜,http://em.21dtv.com/songs/60029943.mkv +陈洁仪-谜,http://em.21dtv.com/songs/60029942.mkv +范晓萱-祢,http://em.21dtv.com/songs/60029941.mkv +佚名-迷,http://em.21dtv.com/songs/60029854.mkv +关淑怡-迷,http://em.21dtv.com/songs/60029853.mkv +吕珊-梦,http://em.21dtv.com/songs/60029472.mkv +罗文-梦,http://em.21dtv.com/songs/60029471.mkv +李娜-梦,http://em.21dtv.com/songs/60029470.mkv +黄清源-梦,http://em.21dtv.com/songs/60029469.mkv +华娃-梦,http://em.21dtv.com/songs/60029468.mkv +胡彦斌-梦,http://em.21dtv.com/songs/60029467.mkv +顾媚-梦,http://em.21dtv.com/songs/60029466.mkv +邓丽君-梦,http://em.21dtv.com/songs/60029465.mkv +张国荣-梦(演唱会),http://em.21dtv.com/songs/60029464.mkv +叶丽仪-梦(演唱会),http://em.21dtv.com/songs/60029463.mkv +黎明-梦(演唱会),http://em.21dtv.com/songs/60029462.mkv +华娃-梦(演唱会),http://em.21dtv.com/songs/60029461.mkv +许志安-梦(无原唱),http://em.21dtv.com/songs/60029460.mkv +王菲-闷,http://em.21dtv.com/songs/60029418.mkv +王菲-闷(演唱会),http://em.21dtv.com/songs/60029417.mkv +郑钧-门,http://em.21dtv.com/songs/60029407.mkv +曹方-门,http://em.21dtv.com/songs/60029406.mkv +王力宏-美,http://em.21dtv.com/songs/60029109.mkv +林义忠-美,http://em.21dtv.com/songs/60029108.mkv +洪启-美(演唱会),http://em.21dtv.com/songs/60029107.mkv +雪村-梅,http://em.21dtv.com/songs/60028975.mkv +孙国庆-梅,http://em.21dtv.com/songs/60028974.mkv +马宝平-玫,http://em.21dtv.com/songs/60028918.mkv +WEWE-猫,http://em.21dtv.com/songs/60028633.mkv +韩庚-mylogo,http://em.21dtv.com/songs/60004036.mkv +4MINUTE-muzik,http://em.21dtv.com/songs/60003952.mkv +童唱-musician,http://em.21dtv.com/songs/60003950.mkv +MADONNA-music,http://em.21dtv.com/songs/60003949.mkv +MADONNA-music(演唱会),http://em.21dtv.com/songs/60003948.mkv +EDITORS-munich,http://em.21dtv.com/songs/60003942.mkv +CONNIE吕莘-mr wrong,http://em.21dtv.com/songs/60003933.mkv +刘子千-mr why,http://em.21dtv.com/songs/60003932.mkv +少女时代-mr taxi,http://em.21dtv.com/songs/60003931.mkv +蔡依林-mr q,http://em.21dtv.com/songs/60003929.mkv +BEE GEES-mr natural,http://em.21dtv.com/songs/60003928.mkv +熊天平-mr moon,http://em.21dtv.com/songs/60003927.mkv +螺丝钉-mr happy,http://em.21dtv.com/songs/60003925.mkv +林宝-mr dj(无原唱),http://em.21dtv.com/songs/60003924.mkv +佚名-mr bojangles(无原唱),http://em.21dtv.com/songs/60003923.mkv +KARA-mr,http://em.21dtv.com/songs/60003922.mkv +USHER-more,http://em.21dtv.com/songs/60003899.mkv +张菲-more(演唱会),http://em.21dtv.com/songs/60003898.mkv +佚名-moonriver,http://em.21dtv.com/songs/60003882.mkv +浜崎あゆみ-moon,http://em.21dtv.com/songs/60003879.mkv +杨乃文-monster(演唱会),http://em.21dtv.com/songs/60003873.mkv +GEORGE MICHAEL-monkey,http://em.21dtv.com/songs/60003872.mkv +张国荣-monica,http://em.21dtv.com/songs/60003871.mkv +古巨基-monica,http://em.21dtv.com/songs/60003870.mkv +张国荣-monica(演唱会),http://em.21dtv.com/songs/60003869.mkv +佚名-money,http://em.21dtv.com/songs/60003868.mkv +佚名-monalisa,http://em.21dtv.com/songs/60003863.mkv +滨崎步-moments,http://em.21dtv.com/songs/60003860.mkv +WESTLIFE-moments,http://em.21dtv.com/songs/60003859.mkv +I.HANSON-H.ANSON+Z.H-mmmbop,http://em.21dtv.com/songs/60003855.mkv +ROBBIE WILLIAMS-misunderstood,http://em.21dtv.com/songs/60003853.mkv +佚名-misty,http://em.21dtv.com/songs/60003852.mkv +李蕴+刘欣宜-mister,http://em.21dtv.com/songs/60003851.mkv +CELINE DION-misled,http://em.21dtv.com/songs/60003831.mkv +AMY STUDT-misfit,http://em.21dtv.com/songs/60003830.mkv +宫S-miracle,http://em.21dtv.com/songs/60003828.mkv +WHITNEY HOUSTON-miracle,http://em.21dtv.com/songs/60003827.mkv +爱内里菜-mint,http://em.21dtv.com/songs/60003826.mkv +GREEN DAY-minority,http://em.21dtv.com/songs/60003825.mkv +佚名-millennium,http://em.21dtv.com/songs/60003822.mkv +黎明-mi-ii(演唱会),http://em.21dtv.com/songs/60003819.mkv +LOLLY-mickey,http://em.21dtv.com/songs/60003816.mkv +THE BEATLES-michelle,http://em.21dtv.com/songs/60003815.mkv +郑秀文-mi,http://em.21dtv.com/songs/60003812.mkv +郑秀文-mi(演唱会),http://em.21dtv.com/songs/60003811.mkv +佚名-me-u=blue,http://em.21dtv.com/songs/60003807.mkv +蒋雅文+李逸朗-messenger,http://em.21dtv.com/songs/60003806.mkv +TWINS-merry-go-round,http://em.21dtv.com/songs/60003803.mkv +岛谷瞳-mermoid,http://em.21dtv.com/songs/60003795.mkv +DUFFY-mercy,http://em.21dtv.com/songs/60003794.mkv +佚名-memory,http://em.21dtv.com/songs/60003791.mkv +叶丽仪-memory(演唱会),http://em.21dtv.com/songs/60003790.mkv +张棋翔-memory(无原唱),http://em.21dtv.com/songs/60003789.mkv +陶喆-melody,http://em.21dtv.com/songs/60003786.mkv +DRAGON 5-melody(无原唱),http://em.21dtv.com/songs/60003785.mkv +佚名-me,http://em.21dtv.com/songs/60003782.mkv +佚名-maybe,http://em.21dtv.com/songs/60003774.mkv +ZARAHN-maybe(无原唱),http://em.21dtv.com/songs/60003773.mkv +MATZKA-matzka,http://em.21dtv.com/songs/60003765.mkv +BEE GEES-massachusetts,http://em.21dtv.com/songs/60003763.mkv +BEE GEES-massachusetts(演唱会),http://em.21dtv.com/songs/60003762.mkv +陈百强-masquerade(演唱会),http://em.21dtv.com/songs/60003761.mkv +邓紫棋-mascara,http://em.21dtv.com/songs/60003760.mkv +佚名-maria,http://em.21dtv.com/songs/60003756.mkv +群星-maria,http://em.21dtv.com/songs/60003755.mkv +巨一清-maria,http://em.21dtv.com/songs/60003754.mkv +金亚中-maria,http://em.21dtv.com/songs/60003753.mkv +JOHNNY MATHIS-maria,http://em.21dtv.com/songs/60003752.mkv +FREEZE-maria,http://em.21dtv.com/songs/60003751.mkv +BLONDIE-maria,http://em.21dtv.com/songs/60003750.mkv +NELLY FURTADO-maneater,http://em.21dtv.com/songs/60003746.mkv +WESTLIFE-mandy,http://em.21dtv.com/songs/60003745.mkv +BARRY MANILOW-mandy,http://em.21dtv.com/songs/60003744.mkv +叶振棠-mandy(演唱会),http://em.21dtv.com/songs/60003743.mkv +JANICE MAN-man(演唱会),http://em.21dtv.com/songs/60003741.mkv +SPICE GIRLS-mama,http://em.21dtv.com/songs/60003728.mkv +佚名-mama(演唱会),http://em.21dtv.com/songs/60003727.mkv +U3-magnificent,http://em.21dtv.com/songs/60003708.mkv +郑伊健-magic,http://em.21dtv.com/songs/60003707.mkv +佚名-magic,http://em.21dtv.com/songs/60003706.mkv +戴爱玲-magic,http://em.21dtv.com/songs/60003705.mkv +爱内里菜-magic,http://em.21dtv.com/songs/60003704.mkv +ROBIN THICKE-magic,http://em.21dtv.com/songs/60003703.mkv +B.O.B+RIVERS CUOMO-magic,http://em.21dtv.com/songs/60003702.mkv +谭咏麟-maggie(演唱会),http://em.21dtv.com/songs/60003696.mkv +谭咏麟+李克勤-maggie(演唱会),http://em.21dtv.com/songs/60003695.mkv +BERRYZ工房-madayad,http://em.21dtv.com/songs/60003691.mkv +LIL JON-machuka,http://em.21dtv.com/songs/60003687.mkv +佚名-macarena,http://em.21dtv.com/songs/60003684.mkv +陶晶莹-mac+jack,http://em.21dtv.com/songs/60003683.mkv +滨崎步-m,http://em.21dtv.com/songs/60003681.mkv +JEDWARD-luminous,http://em.21dtv.com/songs/60071636.mkv +RAY-Lull~そして仆らは~,http://em.21dtv.com/songs/60100749.mkv +旭日阳刚-路,http://em.21dtv.com/songs/60072170.mkv +小壮+祝琳媛-路,http://em.21dtv.com/songs/60064495.mkv +ALANIS MORISSETTE-lronic,http://em.21dtv.com/songs/60066680.mkv +ADELE-lovesong,http://em.21dtv.com/songs/60065641.mkv +P PEACH-loveade,http://em.21dtv.com/songs/60063673.mkv +张凌枫-love,http://em.21dtv.com/songs/60069107.mkv +KEYSHIA COLE-love,http://em.21dtv.com/songs/60063672.mkv +MAC MILLER-loud,http://em.21dtv.com/songs/60067935.mkv +CHI CHI-longer,http://em.21dtv.com/songs/60066678.mkv +BIG BANG+2NE1-lollipop,http://em.21dtv.com/songs/60067932.mkv +棒棒堂-lolliprty,http://em.21dtv.com/songs/60063663.mkv +AQUA-lollipop,http://em.21dtv.com/songs/60063662.mkv +DJ FRESH-louder,http://em.21dtv.com/songs/60063665.mkv +EXO K-history,http://em.21dtv.com/songs/60069089.mkv +王乃恩-listen,http://em.21dtv.com/songs/60069102.mkv +洪辰-listen(演唱会),http://em.21dtv.com/songs/60067931.mkv +狮子合唱团-LION,http://em.21dtv.com/songs/60128201.mkv +阮以伟-凌,http://em.21dtv.com/songs/60072158.mkv +BRUNO MARS-lighters,http://em.21dtv.com/songs/60061970.mkv +胡彦斌-life,http://em.21dtv.com/songs/60063658.mkv +小沈阳-亮,http://em.21dtv.com/songs/60069569.mkv +SHINEE-hello,http://em.21dtv.com/songs/60069085.mkv +韦礼安-累,http://em.21dtv.com/songs/60069559.mkv +谢知言-泪,http://em.21dtv.com/songs/60068430.mkv +SNH48-LaLaLa,http://em.21dtv.com/songs/60127666.mkv +THE BOSS-lady,http://em.21dtv.com/songs/60063651.mkv +王嘉仪-猎,http://em.21dtv.com/songs/60132718.mkv +金俊秀-路,http://em.21dtv.com/songs/60130806.mkv +潘辰-裸,http://em.21dtv.com/songs/60130557.mkv +陈艺搏-路,http://em.21dtv.com/songs/60123327.mkv +徐紫淇-路,http://em.21dtv.com/songs/60121706.mkv +同恩-路,http://em.21dtv.com/songs/60118433.mkv +K.Will-冷,http://em.21dtv.com/songs/60117468.mkv +张赫宣-来,http://em.21dtv.com/songs/60115927.mkv +姚贝娜-路,http://em.21dtv.com/songs/60115775.mkv +刘惜君-来,http://em.21dtv.com/songs/60115721.mkv +郭津彤-莲,http://em.21dtv.com/songs/60114833.mkv +金润吉-路,http://em.21dtv.com/songs/60112318.mkv +郑江-累,http://em.21dtv.com/songs/60107272.mkv +地铁兄弟-离,http://em.21dtv.com/songs/60104894.mkv +丁于-龙,http://em.21dtv.com/songs/60104751.mkv +齐秦+刘双双+张卓含威+魏然+秦宇子-狼,http://em.21dtv.com/songs/60104637.mkv +罗勤颖-兰,http://em.21dtv.com/songs/60104369.mkv +MS.OOJA-また恋をすることなど,http://em.21dtv.com/songs/60100741.mkv +苗苗-兰,http://em.21dtv.com/songs/60096449.mkv +胡海泉+徐林-狼,http://em.21dtv.com/songs/60095053.mkv +罗钟寅-离,http://em.21dtv.com/songs/60088445.mkv +MAEJOR ALI+JUICY J+JUSTIN BIEBER-lolly,http://em.21dtv.com/songs/60086353.mkv +艾菲-listen,http://em.21dtv.com/songs/60086352.mkv +NAUGHTY BOY+EMELI SANDE-lifted,http://em.21dtv.com/songs/60086351.mkv +JENNIFERLOPEZ+PITBULL-liveitup,http://em.21dtv.com/songs/60084737.mkv +BOX-路,http://em.21dtv.com/songs/60083318.mkv +刘明辉-狼,http://em.21dtv.com/songs/60083255.mkv +ROSSTALLANMA-lubov(俄语),http://em.21dtv.com/songs/60082248.mkv +CANDICE GLOVER-lovesong(演唱会),http://em.21dtv.com/songs/60082247.mkv +DARIN-lovekiller,http://em.21dtv.com/songs/60082246.mkv +林育羣-Listen,http://em.21dtv.com/songs/60081517.mkv +大小姐-LOVE,http://em.21dtv.com/songs/60080931.mkv +周笔畅-猎,http://em.21dtv.com/songs/60080379.mkv +阮丹青-Lamour,http://em.21dtv.com/songs/60080250.mkv +万茜-路,http://em.21dtv.com/songs/60076507.mkv +哈辉-礼,http://em.21dtv.com/songs/60076395.mkv +陈伟霆-luv,http://em.21dtv.com/songs/60073572.mkv +SUGARLAND+BEYONCE KNOLES-lrreplaceable(演唱会),http://em.21dtv.com/songs/60073569.mkv +LEONA LEWIS-lovebird,http://em.21dtv.com/songs/60073563.mkv +PARADE-louder,http://em.21dtv.com/songs/60073543.mkv +MICHAEL BUBLE-lost,http://em.21dtv.com/songs/60073542.mkv +LIANNE LA HAVAS-lost,http://em.21dtv.com/songs/60073541.mkv +SPICA-lonely,http://em.21dtv.com/songs/60073530.mkv +卓亚君-lolita,http://em.21dtv.com/songs/60073527.mkv +ELLIE GOULDING-lights,http://em.21dtv.com/songs/60073513.mkv +西城男孩-lighthouse,http://em.21dtv.com/songs/60073511.mkv +中岛美嘉-life,http://em.21dtv.com/songs/60073509.mkv +AVICII-levels,http://em.21dtv.com/songs/60073505.mkv +PET SHOP BOYS-leaving(演唱会),http://em.21dtv.com/songs/60073488.mkv +鲁振顺-laura(演唱会),http://em.21dtv.com/songs/60073485.mkv +DISCLOSURE+SAM SMITH-latch,http://em.21dtv.com/songs/60073483.mkv +PORTER ROBINSON-language,http://em.21dtv.com/songs/60073477.mkv +范玮琪-路,http://em.21dtv.com/songs/60068448.mkv +LOLLIPOP F-liar,http://em.21dtv.com/songs/60063608.mkv +杨丞琳-lovelution,http://em.21dtv.com/songs/60063244.mkv +2NE1-lonely,http://em.21dtv.com/songs/60061931.mkv +TYGA-loyalty,http://em.21dtv.com/songs/60060871.mkv +清水翔太-love,http://em.21dtv.com/songs/60060869.mkv +岚-lotus,http://em.21dtv.com/songs/60060860.mkv +李克勤-绿,http://em.21dtv.com/songs/60028151.mkv +姜育恒-旅,http://em.21dtv.com/songs/60028132.mkv +香香-乱,http://em.21dtv.com/songs/60027983.mkv +泳儿-露(演唱会),http://em.21dtv.com/songs/60027969.mkv +王杰-路,http://em.21dtv.com/songs/60027920.mkv +梁静茹-路,http://em.21dtv.com/songs/60027919.mkv +冷漠-路,http://em.21dtv.com/songs/60027918.mkv +德德玛-路,http://em.21dtv.com/songs/60027917.mkv +伍佰-路(演唱会),http://em.21dtv.com/songs/60027916.mkv +戴佩妮-路(演唱会),http://em.21dtv.com/songs/60027915.mkv +韩东-龙,http://em.21dtv.com/songs/60027807.mkv +柯有伦-零,http://em.21dtv.com/songs/60027446.mkv +李逸朗-零(演唱会),http://em.21dtv.com/songs/60027445.mkv +李心洁-恋,http://em.21dtv.com/songs/60026984.mkv +光良-恋,http://em.21dtv.com/songs/60026983.mkv +黄思婷-恋(无原唱),http://em.21dtv.com/songs/60026982.mkv +王菲-脸,http://em.21dtv.com/songs/60026967.mkv +王菲-脸(演唱会),http://em.21dtv.com/songs/60026966.mkv +房祖名-累,http://em.21dtv.com/songs/60026564.mkv +ALAN-涙,http://em.21dtv.com/songs/60026560.mkv +佚名-蕾,http://em.21dtv.com/songs/60026505.mkv +FT ISLAND-雷,http://em.21dtv.com/songs/60026499.mkv +谢霆锋-狼,http://em.21dtv.com/songs/60026195.mkv +齐秦-狼,http://em.21dtv.com/songs/60026193.mkv +林志颖-狼,http://em.21dtv.com/songs/60026192.mkv +艾梦萌-狼,http://em.21dtv.com/songs/60026191.mkv +谢霆锋-狼(演唱会),http://em.21dtv.com/songs/60026190.mkv +韩红-蓝,http://em.21dtv.com/songs/60026046.mkv +徐小凤-蓝(演唱会),http://em.21dtv.com/songs/60026045.mkv +TANK-岚,http://em.21dtv.com/songs/60026044.mkv +老狼+黄耀明-来,http://em.21dtv.com/songs/60025939.mkv +佚名-lyineyes,http://em.21dtv.com/songs/60003678.mkv +F.I.R-lydia,http://em.21dtv.com/songs/60003677.mkv +BRITNEY-lucky,http://em.21dtv.com/songs/60003674.mkv +佚名-lucille,http://em.21dtv.com/songs/60003665.mkv +KENNY ROGERS-lucille,http://em.21dtv.com/songs/60003664.mkv +LINDA廖语晴+PENNY-lp,http://em.21dtv.com/songs/60003663.mkv +周柏豪-lovinyou,http://em.21dtv.com/songs/60003662.mkv +容祖儿-lovinu,http://em.21dtv.com/songs/60003661.mkv +容祖儿-lovinu(演唱会),http://em.21dtv.com/songs/60003660.mkv +李宇春-loving,http://em.21dtv.com/songs/60003659.mkv +李宇春-loving(演唱会),http://em.21dtv.com/songs/60003658.mkv +JUSTIN TIMBERLAKE-lovestoned,http://em.21dtv.com/songs/60003643.mkv +MARIAH CAREY-loverboy,http://em.21dtv.com/songs/60003636.mkv +废五金-lovelotus(无原唱),http://em.21dtv.com/songs/60003634.mkv +THE CARDIGANS-lovefool,http://em.21dtv.com/songs/60003633.mkv +张志林-love,http://em.21dtv.com/songs/60003632.mkv +张学友-love,http://em.21dtv.com/songs/60003631.mkv +萧亚轩-love,http://em.21dtv.com/songs/60003630.mkv +田馥甄-love,http://em.21dtv.com/songs/60003629.mkv +陶晶莹-l-o-v-e,http://em.21dtv.com/songs/60003628.mkv +刘若英+梁静茹-love,http://em.21dtv.com/songs/60003627.mkv +春晓-love,http://em.21dtv.com/songs/60003626.mkv +BEYOND-love,http://em.21dtv.com/songs/60003625.mkv +BEAUTY.4-love,http://em.21dtv.com/songs/60003624.mkv +张峰奇-love(演唱会),http://em.21dtv.com/songs/60003623.mkv +米娜-look,http://em.21dtv.com/songs/60003488.mkv +佚名-longer,http://em.21dtv.com/songs/60003483.mkv +齐秦-longer,http://em.21dtv.com/songs/60003482.mkv +草蜢-lonely,http://em.21dtv.com/songs/60003471.mkv +AKON-lonely,http://em.21dtv.com/songs/60003470.mkv +容祖儿-lonely(演唱会),http://em.21dtv.com/songs/60003469.mkv +草蜢-lonely(演唱会),http://em.21dtv.com/songs/60003468.mkv +CHORDETTES-lollipop,http://em.21dtv.com/songs/60003456.mkv +KINKS-lola,http://em.21dtv.com/songs/60003455.mkv +木メイサ-lol,http://em.21dtv.com/songs/60003454.mkv +SHAKIRA-loca,http://em.21dtv.com/songs/60003453.mkv +佚名-loaded,http://em.21dtv.com/songs/60003452.mkv +JAMIROQUAI-littlel,http://em.21dtv.com/songs/60003443.mkv +彩虹乐团-link(无原唱),http://em.21dtv.com/songs/60003423.mkv +佚名-linger,http://em.21dtv.com/songs/60003422.mkv +张学友-linda,http://em.21dtv.com/songs/60003420.mkv +张学友-linda(演唱会),http://em.21dtv.com/songs/60003418.mkv +宇珩-life,http://em.21dtv.com/songs/60003402.mkv +佚名-liberty(无原唱),http://em.21dtv.com/songs/60003386.mkv +林峰-letsgetwet,http://em.21dtv.com/songs/60003383.mkv +JESSE MCCARTNEY-leavin,http://em.21dtv.com/songs/60003314.mkv +孙燕姿-leave,http://em.21dtv.com/songs/60003313.mkv +郭静-leave,http://em.21dtv.com/songs/60003312.mkv +JOJO-leave,http://em.21dtv.com/songs/60003311.mkv +SUEDE-lazy,http://em.21dtv.com/songs/60003297.mkv +刘德华-laura,http://em.21dtv.com/songs/60003292.mkv +刘德华-laura(演唱会),http://em.21dtv.com/songs/60003291.mkv +侧田-lately(演唱会),http://em.21dtv.com/songs/60003289.mkv +李恕权-lately(无原唱),http://em.21dtv.com/songs/60003288.mkv +牛奶咖啡-lasia,http://em.21dtv.com/songs/60003272.mkv +戴佩妮-lafite,http://em.21dtv.com/songs/60003268.mkv +LIONEL RICHIE+KENNY-lady,http://em.21dtv.com/songs/60003267.mkv +LENNY KRAVITZ-lady,http://em.21dtv.com/songs/60003266.mkv +郭采洁-l o v e,http://em.21dtv.com/songs/60003227.mkv +SIMPSON ASHLEE-l o v e,http://em.21dtv.com/songs/60003226.mkv +梁静茹-l i e,http://em.21dtv.com/songs/60003225.mkv +温岚-l a n d y,http://em.21dtv.com/songs/60003224.mkv +李宇春-kulala(演唱会),http://em.21dtv.com/songs/60071620.mkv +阿乐-哭,http://em.21dtv.com/songs/60066101.mkv +DEAR JOHN-K.O.L,http://em.21dtv.com/songs/60127648.mkv +赵小熙-Kiss(演唱会),http://em.21dtv.com/songs/60128427.mkv +2NE1-kiss,http://em.21dtv.com/songs/60067926.mkv +BUMP.Y-kiss,http://em.21dtv.com/songs/60061972.mkv +龙飞龙泽+潘阳-坑,http://em.21dtv.com/songs/60133156.mkv +夏天-垮,http://em.21dtv.com/songs/60125336.mkv +Rella-看,http://em.21dtv.com/songs/60124976.mkv +汪小敏-空,http://em.21dtv.com/songs/60110333.mkv +李宇春-酷,http://em.21dtv.com/songs/60099303.mkv +孙燕姿-渴,http://em.21dtv.com/songs/60096583.mkv +潘裕文-渴,http://em.21dtv.com/songs/60096582.mkv +林忆莲-哭(新版),http://em.21dtv.com/songs/60096577.mkv +梁汉文-肯,http://em.21dtv.com/songs/60091524.mkv +龙智祥-空,http://em.21dtv.com/songs/60086651.mkv +朱桦-咔,http://em.21dtv.com/songs/60084672.mkv +朱俐静-愧,http://em.21dtv.com/songs/60076298.mkv +JIN-看,http://em.21dtv.com/songs/60076237.mkv +AIKO-kisshug,http://em.21dtv.com/songs/60073467.mkv +FAZER-killer,http://em.21dtv.com/songs/60073462.mkv +蔡枫华+凌峰-困(演唱会),http://em.21dtv.com/songs/60061342.mkv +梁佑嘉-快,http://em.21dtv.com/songs/60061340.mkv +苏打绿-窥(无原唱),http://em.21dtv.com/songs/60025860.mkv +谢霆锋-快,http://em.21dtv.com/songs/60025669.mkv +林海峰-快(演唱会),http://em.21dtv.com/songs/60025668.mkv +林忆莲-哭,http://em.21dtv.com/songs/60025542.mkv +周慧敏-哭(演唱会),http://em.21dtv.com/songs/60025541.mkv +张敬轩-哭(演唱会),http://em.21dtv.com/songs/60025540.mkv +林忆莲-哭(演唱会),http://em.21dtv.com/songs/60025539.mkv +林淑娟-空,http://em.21dtv.com/songs/60025418.mkv +梁汉文-掯,http://em.21dtv.com/songs/60025416.mkv +黄小琥-壳,http://em.21dtv.com/songs/60025221.mkv +萧玉凤-靠(无原唱),http://em.21dtv.com/songs/60025186.mkv +3 DOORS DOWN-kryptonite,http://em.21dtv.com/songs/60003213.mkv +巫启贤-kopi-o,http://em.21dtv.com/songs/60003209.mkv +侧田-kong,http://em.21dtv.com/songs/60003208.mkv +侧田-kong(演唱会),http://em.21dtv.com/songs/60003207.mkv +レミオロメン-konayuki,http://em.21dtv.com/songs/60003206.mkv +佚名-kokomo,http://em.21dtv.com/songs/60003205.mkv +BEACH BOYS-kokomo,http://em.21dtv.com/songs/60003204.mkv +林俊杰-k-o,http://em.21dtv.com/songs/60003203.mkv +LIL WAYNE-knockout,http://em.21dtv.com/songs/60003201.mkv +佚名-knife,http://em.21dtv.com/songs/60003195.mkv +蜜雪薇琪-kissy,http://em.21dtv.com/songs/60003192.mkv +至上励合-kiss,http://em.21dtv.com/songs/60003187.mkv +王菲菲-kiss,http://em.21dtv.com/songs/60003186.mkv +简美妍-kiss,http://em.21dtv.com/songs/60003185.mkv +杜德伟-kiss,http://em.21dtv.com/songs/60003184.mkv +SANDARA PARK-kiss,http://em.21dtv.com/songs/60003183.mkv +ROBBIE WILLIAMS+KYLI-kids,http://em.21dtv.com/songs/60003148.mkv +佚名-kicks(无原唱),http://em.21dtv.com/songs/60003147.mkv +张惠妹-katsu,http://em.21dtv.com/songs/60003133.mkv +ALICIA KEYS-karma,http://em.21dtv.com/songs/60003130.mkv +KARA-jumping,http://em.21dtv.com/songs/60069099.mkv +朱雅-julia,http://em.21dtv.com/songs/60067923.mkv +SKE48-カナリアシンドローム,http://em.21dtv.com/songs/60099700.mkv +日京江羽人-假Rocker,http://em.21dtv.com/songs/60096579.mkv +SHINEE-jojo(演唱会),http://em.21dtv.com/songs/60067922.mkv +张敬轩-井,http://em.21dtv.com/songs/60066080.mkv +刘一祯-谨,http://em.21dtv.com/songs/60070822.mkv +周柏豪-金,http://em.21dtv.com/songs/60066077.mkv +伍佰-结,http://em.21dtv.com/songs/60063111.mkv +句号-家,http://em.21dtv.com/songs/60064371.mkv +金子乔-家,http://em.21dtv.com/songs/60062530.mkv +张萌萌-祭,http://em.21dtv.com/songs/60064368.mkv +FAR EAST MOVEMENT-jello,http://em.21dtv.com/songs/60065623.mkv +BLOCK B-Jackpo,http://em.21dtv.com/songs/60100711.mkv +张梓瑶-劫,http://em.21dtv.com/songs/60135209.mkv +杨红娇-家,http://em.21dtv.com/songs/60133857.mkv +任静&付笛声&付豪-家,http://em.21dtv.com/songs/60132192.mkv +吴俊余-茧,http://em.21dtv.com/songs/60130180.mkv +麦浚龙+薛凯琪-结,http://em.21dtv.com/songs/60129829.mkv +吴俊余-茧,http://em.21dtv.com/songs/60128886.mkv +陈威男-家,http://em.21dtv.com/songs/60127545.mkv +郑俊弘-惊,http://em.21dtv.com/songs/60126269.mkv +祁隆-街,http://em.21dtv.com/songs/60125984.mkv +星弟-结,http://em.21dtv.com/songs/60125633.mkv +刘建东-静,http://em.21dtv.com/songs/60125186.mkv +郑俊弘-惊,http://em.21dtv.com/songs/60124559.mkv +朱洁仪-家,http://em.21dtv.com/songs/60122826.mkv +田馥甄-姐,http://em.21dtv.com/songs/60117939.mkv +陈威男-家,http://em.21dtv.com/songs/60115489.mkv +张书姚-静,http://em.21dtv.com/songs/60113451.mkv +沈芳如+沈建豪-家,http://em.21dtv.com/songs/60112063.mkv +谢名-家,http://em.21dtv.com/songs/60108889.mkv +刘紫玲-家,http://em.21dtv.com/songs/60107542.mkv +陈恩跃-菊,http://em.21dtv.com/songs/60105487.mkv +龙飘飘-倦,http://em.21dtv.com/songs/60104642.mkv +绅士乐团-家,http://em.21dtv.com/songs/60104367.mkv +朱洁仪-家,http://em.21dtv.com/songs/60102315.mkv +寒香-家,http://em.21dtv.com/songs/60098726.mkv +陈绮贞-家,http://em.21dtv.com/songs/60096535.mkv +苗苗-境,http://em.21dtv.com/songs/60096455.mkv +屠洪纲-精,http://em.21dtv.com/songs/60089252.mkv +凤飞飞-酒,http://em.21dtv.com/songs/60087378.mkv +伍佰+CHINABLUE-結,http://em.21dtv.com/songs/60087285.mkv +齐豫-觉,http://em.21dtv.com/songs/60085316.mkv +李亮超-家,http://em.21dtv.com/songs/60085265.mkv +陈柏宇-茧,http://em.21dtv.com/songs/60083133.mkv +阮以伟-家,http://em.21dtv.com/songs/60081379.mkv +NO3B-君しか,http://em.21dtv.com/songs/60076218.mkv +夏天-结,http://em.21dtv.com/songs/60076082.mkv +容祖儿-叫,http://em.21dtv.com/songs/60076070.mkv +庄振凯-家,http://em.21dtv.com/songs/60075997.mkv +庄振凯+林俊吉+戴梅君-家,http://em.21dtv.com/songs/60075996.mkv +赵咏华-家,http://em.21dtv.com/songs/60075995.mkv +许巍-家,http://em.21dtv.com/songs/60075994.mkv +℃ UTE-この街,http://em.21dtv.com/songs/60074235.mkv +MADONNA-jump,http://em.21dtv.com/songs/60062103.mkv +张崇德+张崇基-绝,http://em.21dtv.com/songs/60061322.mkv +SHINEE-juliette,http://em.21dtv.com/songs/60060847.mkv +LADY GAGA-judas(演唱会),http://em.21dtv.com/songs/60060846.mkv +SOLER-佢,http://em.21dtv.com/songs/60035816.mkv +高雪岚-绝,http://em.21dtv.com/songs/60024811.mkv +高雪岚-绝(演唱会),http://em.21dtv.com/songs/60024810.mkv +刘德华-倦,http://em.21dtv.com/songs/60024758.mkv +梅艳芳-倦(演唱会),http://em.21dtv.com/songs/60024757.mkv +潘阳-菊,http://em.21dtv.com/songs/60024698.mkv +关喆-菊,http://em.21dtv.com/songs/60024697.mkv +佚名-居(无原唱),http://em.21dtv.com/songs/60024690.mkv +于魁智+孟广禄+李胜素-警,http://em.21dtv.com/songs/60024238.mkv +泳儿-近(演唱会),http://em.21dtv.com/songs/60024164.mkv +郑融-借,http://em.21dtv.com/songs/60023715.mkv +林凡-结,http://em.21dtv.com/songs/60023607.mkv +佚名-杰(无原唱),http://em.21dtv.com/songs/60023601.mkv +五月-家,http://em.21dtv.com/songs/60022992.mkv +潘美辰-家,http://em.21dtv.com/songs/60022991.mkv +南拳妈妈-家,http://em.21dtv.com/songs/60022990.mkv +黄亚-家,http://em.21dtv.com/songs/60022989.mkv +白松-家,http://em.21dtv.com/songs/60022988.mkv +王海玲-偈,http://em.21dtv.com/songs/60022787.mkv +王力宏-julia,http://em.21dtv.com/songs/60003089.mkv +王力宏-julia(演唱会),http://em.21dtv.com/songs/60003088.mkv +LADY GAGA-judas,http://em.21dtv.com/songs/60003086.mkv +张韶涵-journey,http://em.21dtv.com/songs/60003083.mkv +佚名-josie(无原唱),http://em.21dtv.com/songs/60003082.mkv +蔡健雅-joni(演唱会),http://em.21dtv.com/songs/60003081.mkv +佚名-jolene,http://em.21dtv.com/songs/60003080.mkv +F.CUZ-jiggy,http://em.21dtv.com/songs/60003072.mkv +F CUZ+郭书瑶-jiggy,http://em.21dtv.com/songs/60003071.mkv +滨崎步-jewel,http://em.21dtv.com/songs/60003069.mkv +PAUL MCCARTNEY-jet,http://em.21dtv.com/songs/60003067.mkv +R.MCKUEN-jean(无原唱),http://em.21dtv.com/songs/60003056.mkv +陈慧娴-jealousy,http://em.21dtv.com/songs/60003055.mkv +CARPENTERS-jambalaya,http://em.21dtv.com/songs/60003051.mkv +MICHAEL JACKSON-jam,http://em.21dtv.com/songs/60003049.mkv +AEROSMITH-jaded,http://em.21dtv.com/songs/60003047.mkv +ESCAPE THE FATE-issues,http://em.21dtv.com/songs/60065622.mkv +SKYLAR GREY-invisible,http://em.21dtv.com/songs/60062158.mkv +JPM+陈芳语-internet,http://em.21dtv.com/songs/60071617.mkv +邓紫棋-IMAGINE,http://em.21dtv.com/songs/60100497.mkv +泰妍+Verbal Jint-I,http://em.21dtv.com/songs/60116111.mkv +金俊秀+QUINCY-incredible,http://em.21dtv.com/songs/60084726.mkv +BEYONCE-irreplaceable(演唱会),http://em.21dtv.com/songs/60073443.mkv +BEYONCE+SUGARLAND-irreplaceable(演唱会),http://em.21dtv.com/songs/60073442.mkv +PET SHOP BOYS-invisible,http://em.21dtv.com/songs/60073441.mkv +蓝井エイル-innocence,http://em.21dtv.com/songs/60073439.mkv +JAMES ARTHUR-impossible(演唱会),http://em.21dtv.com/songs/60073435.mkv +周柏豪-imperfect,http://em.21dtv.com/songs/60073434.mkv +卫兰-imagine,http://em.21dtv.com/songs/60073432.mkv +魏如萱-if(演唱会),http://em.21dtv.com/songs/60073421.mkv +KELLY ROWLAND+LIL WAYNE-ice,http://em.21dtv.com/songs/60073411.mkv +JESSE+JOY-icorre,http://em.21dtv.com/songs/60067916.mkv +LINKIN PARK-iridescent,http://em.21dtv.com/songs/60062097.mkv +MACY GRAY-itry,http://em.21dtv.com/songs/60002984.mkv +JESSICA SIMPSON-irresistible,http://em.21dtv.com/songs/60002960.mkv +THE CORRS-irresistable,http://em.21dtv.com/songs/60002959.mkv +佚名-ironic,http://em.21dtv.com/songs/60002958.mkv +佚名-iris,http://em.21dtv.com/songs/60002957.mkv +叶树茵-invisible,http://em.21dtv.com/songs/60002955.mkv +佚名-invincible,http://em.21dtv.com/songs/60002954.mkv +佚名-interlude,http://em.21dtv.com/songs/60002951.mkv +滨崎步-inspire,http://em.21dtv.com/songs/60002950.mkv +辉星-insomnia,http://em.21dtv.com/songs/60002949.mkv +佚名-inseparable,http://em.21dtv.com/songs/60002946.mkv +JANN ARDEN-insensitive,http://em.21dtv.com/songs/60002945.mkv +AVRIL LAVIGNE-innocence,http://em.21dtv.com/songs/60002943.mkv +佚名-innamorata,http://em.21dtv.com/songs/60002942.mkv +BACKSTREET BOYS-inconsolabl,http://em.21dtv.com/songs/60002939.mkv +BACKSTREET BOYS-incomplete,http://em.21dtv.com/songs/60002938.mkv +CELINE DION+BEE GEES-immortality,http://em.21dtv.com/songs/60002904.mkv +群星-imatk,http://em.21dtv.com/songs/60002902.mkv +JOHN LENNON-imagine,http://em.21dtv.com/songs/60002901.mkv +钟镇涛+钟懿-imagine(演唱会),http://em.21dtv.com/songs/60002900.mkv +软硬天师-imagine(演唱会),http://em.21dtv.com/songs/60002899.mkv +林峰-illusion(演唱会),http://em.21dtv.com/songs/60002847.mkv +佚名-if,http://em.21dtv.com/songs/60002810.mkv +JANET JACKSON-if,http://em.21dtv.com/songs/60002809.mkv +S.H.E-i o i o,http://em.21dtv.com/songs/60002744.mkv +BEE GEES-i o i o (演唱会),http://em.21dtv.com/songs/60002743.mkv +THIRTY SECONDS-hurricane,http://em.21dtv.com/songs/60063623.mkv +CHRISTINA PERRI-Human,http://em.21dtv.com/songs/60096144.mkv +谢沛恩-谎,http://em.21dtv.com/songs/60072039.mkv +LITTLES-花,http://em.21dtv.com/songs/60070759.mkv +李心洁-华,http://em.21dtv.com/songs/60067078.mkv +常思思-红,http://em.21dtv.com/songs/60064301.mkv +曾玮中-Honey黑Baby,http://em.21dtv.com/songs/60128064.mkv +王诗安+40-Home,http://em.21dtv.com/songs/60128240.mkv +TTAIO CRUZ+KYLIE MINOGUE-higher,http://em.21dtv.com/songs/60099706.mkv +东城卫-high(演唱会),http://em.21dtv.com/songs/60062330.mkv +STIG ANDERSSON-honey honey,http://em.21dtv.com/songs/60002322.mkv +FLOW-hey,http://em.21dtv.com/songs/60011835.mkv +张智霖-HERO,http://em.21dtv.com/songs/60127985.mkv +YUI-hello,http://em.21dtv.com/songs/60062184.mkv +JOSH KUMRA-helicopters,http://em.21dtv.com/songs/60071605.mkv +Ailee-Heaven,http://em.21dtv.com/songs/60098978.mkv +EMELI SANDE-heaven,http://em.21dtv.com/songs/60065601.mkv +CHILDISH GAMBINO-heartneat,http://em.21dtv.com/songs/60066648.mkv +THE FRAY-heartbeat,http://em.21dtv.com/songs/60065600.mkv +DJ KHALED-heartbreaker,http://em.21dtv.com/songs/60063617.mkv +DRAKE-headlines,http://em.21dtv.com/songs/60063615.mkv +乔乐颐-hea,http://em.21dtv.com/songs/60065603.mkv +古巨基-hea(演唱会),http://em.21dtv.com/songs/60063614.mkv +岚-happiness,http://em.21dtv.com/songs/60071603.mkv +TAIO CRUZ-hangover,http://em.21dtv.com/songs/60063613.mkv +洪辰-halo,http://em.21dtv.com/songs/60065598.mkv +黄若熙-海,http://em.21dtv.com/songs/60134508.mkv +泰坦Titan-晃,http://em.21dtv.com/songs/60133929.mkv +古卓文-灰,http://em.21dtv.com/songs/60133449.mkv +TITAN-晃,http://em.21dtv.com/songs/60133300.mkv +小宋佳-花,http://em.21dtv.com/songs/60131358.mkv +阿悄-吼,http://em.21dtv.com/songs/60127530.mkv +小北-嗨,http://em.21dtv.com/songs/60126801.mkv +邓紫棋-画,http://em.21dtv.com/songs/60126253.mkv +刘春雨-唤,http://em.21dtv.com/songs/60123679.mkv +冯建宇-红,http://em.21dtv.com/songs/60123656.mkv +Anly-虹,http://em.21dtv.com/songs/60123436.mkv +邓紫棋-画,http://em.21dtv.com/songs/60122161.mkv +张骐骥+赵鑫-回,http://em.21dtv.com/songs/60121689.mkv +侃侃-画,http://em.21dtv.com/songs/60116552.mkv +FS(Fuying+Sam)-海,http://em.21dtv.com/songs/60116449.mkv +孙建平+叶瑷菱-喊,http://em.21dtv.com/songs/60115791.mkv +孙子涵-黑,http://em.21dtv.com/songs/60115786.mkv +单行道乐队-活,http://em.21dtv.com/songs/60113314.mkv +PIA乐团-嘿,http://em.21dtv.com/songs/60113183.mkv +Hello Nico-花,http://em.21dtv.com/songs/60111613.mkv +费翔-谎,http://em.21dtv.com/songs/60108018.mkv +艾怡良-晃,http://em.21dtv.com/songs/60106221.mkv +艾怡良-坏,http://em.21dtv.com/songs/60106220.mkv +中国好声音16强学员-火,http://em.21dtv.com/songs/60103850.mkv +秦晓林-火,http://em.21dtv.com/songs/60103497.mkv +费翔-谎,http://em.21dtv.com/songs/60100476.mkv +赵雷-画,http://em.21dtv.com/songs/60096500.mkv +伍家辉-灰,http://em.21dtv.com/songs/60096181.mkv +齐秦-荒,http://em.21dtv.com/songs/60095367.mkv +陈一凡-荷,http://em.21dtv.com/songs/60094327.mkv +七朵组合-Honey,http://em.21dtv.com/songs/60093784.mkv +高耀太-hollywood,http://em.21dtv.com/songs/60086344.mkv +关寅飞-幻,http://em.21dtv.com/songs/60085224.mkv +TF家族-heart,http://em.21dtv.com/songs/60084718.mkv +VIXX-hyde,http://em.21dtv.com/songs/60082193.mkv +BRIDGIT MENDLER-hurricane,http://em.21dtv.com/songs/60082192.mkv +AVRIL LAVIGNE-hot,http://em.21dtv.com/songs/60082184.mkv +张韶涵-honesty,http://em.21dtv.com/songs/60082183.mkv +STAFFORD BROTHERS+LIL WAYNE+CHRISTINA MILIAN-hello,http://em.21dtv.com/songs/60082177.mkv +王海滨-和,http://em.21dtv.com/songs/60081738.mkv +MIC男团-海,http://em.21dtv.com/songs/60080406.mkv +M4M-Hero,http://em.21dtv.com/songs/60080064.mkv +佐香智久-会いたくて,http://em.21dtv.com/songs/60075928.mkv +AKB48-会いたかった,http://em.21dtv.com/songs/60075927.mkv +星-坏,http://em.21dtv.com/songs/60075869.mkv +草蜢-红(演唱会),http://em.21dtv.com/songs/60075761.mkv +仓木麻衣-どうして好きなんだろう,http://em.21dtv.com/songs/60074247.mkv +SYSTEM OF A DOWN-hypnotize,http://em.21dtv.com/songs/60073366.mkv +东方神起-humanoids,http://em.21dtv.com/songs/60073361.mkv +BEWARE OF DARKNESS-howl,http://em.21dtv.com/songs/60073360.mkv +FOSTER THE PEOPLE-houdini,http://em.21dtv.com/songs/60073355.mkv +2PM-hot,http://em.21dtv.com/songs/60073352.mkv +HONEY BEES-honey(演唱会),http://em.21dtv.com/songs/60073351.mkv +HOT CHELLE RAE-honestly,http://em.21dtv.com/songs/60073350.mkv +PHILLIP PHILLIPS-home,http://em.21dtv.com/songs/60073348.mkv +EXO-M-history,http://em.21dtv.com/songs/60073341.mkv +MR.MR-highway,http://em.21dtv.com/songs/60073336.mkv +CREED-higher,http://em.21dtv.com/songs/60073335.mkv +韩庚-hero,http://em.21dtv.com/songs/60073328.mkv +FAMILY OF THE YEAR-hero,http://em.21dtv.com/songs/60073327.mkv +苏姗-hero(演唱会),http://em.21dtv.com/songs/60073326.mkv +王菲菲-help,http://em.21dtv.com/songs/60073324.mkv +NU'EST-hello,http://em.21dtv.com/songs/60073321.mkv +NEWS-hello,http://em.21dtv.com/songs/60073320.mkv +MY CHEMICAL ROMANCE-helena,http://em.21dtv.com/songs/60073317.mkv +白智英-hate,http://em.21dtv.com/songs/60073311.mkv +STARBOY NATHAN WRETCH 32-hangover,http://em.21dtv.com/songs/60073304.mkv +吉克隽逸-halo,http://em.21dtv.com/songs/60073302.mkv +NMB48-ha,http://em.21dtv.com/songs/60073299.mkv +小凌-魂,http://em.21dtv.com/songs/60063150.mkv +琪琪格-花(演唱会),http://em.21dtv.com/songs/60061257.mkv +周柏豪-黑,http://em.21dtv.com/songs/60061242.mkv +MAGIC POWER+丁当-hush,http://em.21dtv.com/songs/60060822.mkv +少女时代-hoot,http://em.21dtv.com/songs/60060821.mkv +KANYE WEST-homecoming,http://em.21dtv.com/songs/60060820.mkv +LADY GAGA-hair(演唱会),http://em.21dtv.com/songs/60060811.mkv +张惠妹-火,http://em.21dtv.com/songs/60022402.mkv +谢文雅-火,http://em.21dtv.com/songs/60022401.mkv +吴浩康-火,http://em.21dtv.com/songs/60022400.mkv +蓝燕-火,http://em.21dtv.com/songs/60022399.mkv +阿信-魂,http://em.21dtv.com/songs/60022332.mkv +潘美辰-悔,http://em.21dtv.com/songs/60022260.mkv +方季惟-悔,http://em.21dtv.com/songs/60022259.mkv +佚名-回(无原唱),http://em.21dtv.com/songs/60022072.mkv +吴日言-灰,http://em.21dtv.com/songs/60022016.mkv +谢霆锋-慌,http://em.21dtv.com/songs/60021870.mkv +王菲菲-慌,http://em.21dtv.com/songs/60021869.mkv +杨千嬅-化,http://em.21dtv.com/songs/60021587.mkv +曾志伟-哗,http://em.21dtv.com/songs/60021582.mkv +大刚-华,http://em.21dtv.com/songs/60021566.mkv +萧潇-花,http://em.21dtv.com/songs/60021306.mkv +五月天-花,http://em.21dtv.com/songs/60021305.mkv +田原-花,http://em.21dtv.com/songs/60021304.mkv +张国荣-红,http://em.21dtv.com/songs/60020745.mkv +杨坤-红,http://em.21dtv.com/songs/60020744.mkv +叶德娴-红(演唱会),http://em.21dtv.com/songs/60020743.mkv +郑希怡-狠,http://em.21dtv.com/songs/60020675.mkv +2女-嘿,http://em.21dtv.com/songs/60020619.mkv +SWEETY-嗨,http://em.21dtv.com/songs/60020609.mkv +蔡依林-嗨(演唱会),http://em.21dtv.com/songs/60020608.mkv +钟汉良+林志颖-黑,http://em.21dtv.com/songs/60020482.mkv +苏芮+张惠妹-河,http://em.21dtv.com/songs/60020450.mkv +邓健泓-好,http://em.21dtv.com/songs/60019966.mkv +刘德华-汗,http://em.21dtv.com/songs/60019928.mkv +佚名-喊(无原唱),http://em.21dtv.com/songs/60019919.mkv +蟑螂乐队-海,http://em.21dtv.com/songs/60019691.mkv +张震岳-海,http://em.21dtv.com/songs/60019690.mkv +羽泉-海,http://em.21dtv.com/songs/60019689.mkv +郑融-还,http://em.21dtv.com/songs/60019571.mkv +佚名-hush,http://em.21dtv.com/songs/60002402.mkv +张栋梁-hurt,http://em.21dtv.com/songs/60002398.mkv +佚名-hurt,http://em.21dtv.com/songs/60002397.mkv +DIDO-hunter,http://em.21dtv.com/songs/60002392.mkv +B.MANN-C.WEIL-hungry(无原唱),http://em.21dtv.com/songs/60002391.mkv +KARYN WHITE-hungah,http://em.21dtv.com/songs/60002389.mkv +ROD STEWART-human,http://em.21dtv.com/songs/60002387.mkv +R+B-hulahu,http://em.21dtv.com/songs/60002385.mkv +4MINUTE-huh,http://em.21dtv.com/songs/60002384.mkv +东方神起-hug,http://em.21dtv.com/songs/60002383.mkv +SM TOWN群星-hotmail,http://em.21dtv.com/songs/60002347.mkv +WONDER GIRLS-hot,http://em.21dtv.com/songs/60002344.mkv +五月天-hosee(演唱会),http://em.21dtv.com/songs/60002334.mkv +佚名-honey,http://em.21dtv.com/songs/60002329.mkv +王心凌-honey,http://em.21dtv.com/songs/60002328.mkv +郭书瑶-honey,http://em.21dtv.com/songs/60002327.mkv +曾宝仪-honey,http://em.21dtv.com/songs/60002326.mkv +爱戴-honey,http://em.21dtv.com/songs/60002325.mkv +MARIAH CAREY-honey,http://em.21dtv.com/songs/60002324.mkv +KARA-honey,http://em.21dtv.com/songs/60002323.mkv +MARIAH CAREY-honey(演唱会),http://em.21dtv.com/songs/60002321.mkv +BILLY JOEL-honesty,http://em.21dtv.com/songs/60002313.mkv +MICHAEL BUBLE-home,http://em.21dtv.com/songs/60002311.mkv +GOO GOO DOLLS-home,http://em.21dtv.com/songs/60002310.mkv +MADONNA-hollywood,http://em.21dtv.com/songs/60002307.mkv +MADONNA-holiday,http://em.21dtv.com/songs/60002305.mkv +GREEN DAY-holiday,http://em.21dtv.com/songs/60002304.mkv +BEE GEES-holiday(演唱会),http://em.21dtv.com/songs/60002303.mkv +佚名-holiday(无原唱),http://em.21dtv.com/songs/60002302.mkv +卜学亮-hobo(演唱会),http://em.21dtv.com/songs/60002284.mkv +THE SATURDAYS-higher,http://em.21dtv.com/songs/60002270.mkv +TAIO CRUZ-higher,http://em.21dtv.com/songs/60002269.mkv +JAMES BLUNT-high,http://em.21dtv.com/songs/60002267.mkv +江希文-hey!liz,http://em.21dtv.com/songs/60002255.mkv +张靓颖+三角COOL-heroes,http://em.21dtv.com/songs/60002230.mkv +DAVID BOWIE-heroes,http://em.21dtv.com/songs/60002229.mkv +李玟-hero,http://em.21dtv.com/songs/60002228.mkv +陈小春-hero,http://em.21dtv.com/songs/60002227.mkv +SORI-hero,http://em.21dtv.com/songs/60002226.mkv +MARIAH CAREY-hero,http://em.21dtv.com/songs/60002225.mkv +ENRIQUE IGLESIAS-hero,http://em.21dtv.com/songs/60002224.mkv +CHAD KROEGER-hero,http://em.21dtv.com/songs/60002223.mkv +183CLUB-hero,http://em.21dtv.com/songs/60002222.mkv +MARIAH CAREY-hero(演唱会),http://em.21dtv.com/songs/60002221.mkv +佚名-hero(无原唱),http://em.21dtv.com/songs/60002220.mkv +佚名-help,http://em.21dtv.com/songs/60002201.mkv +黄立行-help,http://em.21dtv.com/songs/60002200.mkv +THE BEATLES-help,http://em.21dtv.com/songs/60002199.mkv +赵薇-hello,http://em.21dtv.com/songs/60002194.mkv +[Group] +groupName=十六万歌曲MV等 - 01 +林峰-hello,http://em.21dtv.com/songs/60002193.mkv +林峰-hello(演唱会),http://em.21dtv.com/songs/60002192.mkv +MARTIN SOLVEIG-hello,http://em.21dtv.com/songs/60002191.mkv +LIONEL RICHIE-hello,http://em.21dtv.com/songs/60002190.mkv +王杰-hello(演唱会),http://em.21dtv.com/songs/60002188.mkv +杜德伟-hello(演唱会),http://em.21dtv.com/songs/60002187.mkv +佚名-heaven,http://em.21dtv.com/songs/60002165.mkv +LOS LONELY BOYS-heaven,http://em.21dtv.com/songs/60002164.mkv +FT ISLAND-heaven,http://em.21dtv.com/songs/60002163.mkv +佚名-heartlight,http://em.21dtv.com/songs/60002156.mkv +MARIAH CAREY-heartbreaker,http://em.21dtv.com/songs/60002155.mkv +STEPS-heartbeat,http://em.21dtv.com/songs/60002152.mkv +SCOUTING FOR GIRLS-heartbeat,http://em.21dtv.com/songs/60002151.mkv +ENRIQUE IGLESIAS&NIC-heartbeat,http://em.21dtv.com/songs/60002150.mkv +容祖儿-heartbeat(演唱会),http://em.21dtv.com/songs/60002149.mkv +RICHARD MARX-hazard,http://em.21dtv.com/songs/60002133.mkv +佚名-hasayakee,http://em.21dtv.com/songs/60002112.mkv +许慧欣-happy,http://em.21dtv.com/songs/60002100.mkv +王婧-happy,http://em.21dtv.com/songs/60002099.mkv +顺子-happy(演唱会),http://em.21dtv.com/songs/60002098.mkv +ALEXIA-happy(无原唱),http://em.21dtv.com/songs/60002097.mkv +VANESSA WILLIA-happiness,http://em.21dtv.com/songs/60002059.mkv +赵琪-hamangueon,http://em.21dtv.com/songs/60002051.mkv +BEYONCE-halo,http://em.21dtv.com/songs/60002050.mkv +AT17-hallelujah(演唱会),http://em.21dtv.com/songs/60002049.mkv +郎军-过,http://em.21dtv.com/songs/60067046.mkv +NERO-guilt,http://em.21dtv.com/songs/60067900.mkv +GACKT-graffiti,http://em.21dtv.com/songs/60063610.mkv +DEAR JANE-goodbye,http://em.21dtv.com/songs/60069084.mkv +NEON HITCH+TYGA-gold,http://em.21dtv.com/songs/60070342.mkv +KAT-going,http://em.21dtv.com/songs/60065594.mkv +AZIATIX-go,http://em.21dtv.com/songs/60063605.mkv +AKON+ALI B-ghetto,http://em.21dtv.com/songs/60063603.mkv +杨千桦-怪d(无原唱),http://em.21dtv.com/songs/60089974.mkv +福山雅治-game,http://em.21dtv.com/songs/60071601.mkv +鹿晗-敢,http://em.21dtv.com/songs/60136018.mkv +吕程-过,http://em.21dtv.com/songs/60133465.mkv +吕程-过,http://em.21dtv.com/songs/60133466.mkv +蓝又时-管,http://em.21dtv.com/songs/60130725.mkv +曾缔-光,http://em.21dtv.com/songs/60129196.mkv +张津涤-给,http://em.21dtv.com/songs/60129100.mkv +齐霖-孤,http://em.21dtv.com/songs/60126502.mkv +梁博-鬼,http://em.21dtv.com/songs/60125811.mkv +伊恩森-割,http://em.21dtv.com/songs/60125112.mkv +蔡照-孤,http://em.21dtv.com/songs/60124439.mkv +大庆小芳-干,http://em.21dtv.com/songs/60121537.mkv +刘惜君-光,http://em.21dtv.com/songs/60121440.mkv +马千卉-光,http://em.21dtv.com/songs/60112388.mkv +张惠妹-狗,http://em.21dtv.com/songs/60105845.mkv +邓海+羊进达+郑铭+梁玉莲-根,http://em.21dtv.com/songs/60101523.mkv +梁玉莲+邓海-根,http://em.21dtv.com/songs/60101404.mkv +李圣杰-光,http://em.21dtv.com/songs/60101380.mkv +老狼-歌,http://em.21dtv.com/songs/60100394.mkv +迪克牛仔-狗,http://em.21dtv.com/songs/60096502.mkv +王鑫-哥,http://em.21dtv.com/songs/60095010.mkv +晨威-鬼,http://em.21dtv.com/songs/60094136.mkv +马蕊-乖,http://em.21dtv.com/songs/60088984.mkv +EXO-growl,http://em.21dtv.com/songs/60084717.mkv +中国鸟叔-gentleman(绅士),http://em.21dtv.com/songs/60084714.mkv +动力火车-光,http://em.21dtv.com/songs/60082978.mkv +金泰宇-goodbye,http://em.21dtv.com/songs/60082171.mkv +THE SATURDAYS-gentleman,http://em.21dtv.com/songs/60082163.mkv +魏晨-光,http://em.21dtv.com/songs/60081703.mkv +自由发挥-gym,http://em.21dtv.com/songs/60073298.mkv +ALANIS MORISSETTE-guardian,http://em.21dtv.com/songs/60073294.mkv +BIG SEAN-guap,http://em.21dtv.com/songs/60073293.mkv +李克勤-goodbye(演唱会),http://em.21dtv.com/songs/60073287.mkv +NELLY+KELLY ROWLAND-gone,http://em.21dtv.com/songs/60073271.mkv +BRITT NICOLE-gold,http://em.21dtv.com/songs/60073269.mkv +张靓颖-goal,http://em.21dtv.com/songs/60073264.mkv +SUPER JUNIOR-go,http://em.21dtv.com/songs/60073263.mkv +MADCON GLOW-glow,http://em.21dtv.com/songs/60073259.mkv +CASCADA-glorious,http://em.21dtv.com/songs/60073258.mkv +THOMPSON SQUARE-glass,http://em.21dtv.com/songs/60073256.mkv +前进乐团-ghosts,http://em.21dtv.com/songs/60073241.mkv +PSY-gentleman,http://em.21dtv.com/songs/60073235.mkv +AK-gentleman,http://em.21dtv.com/songs/60073234.mkv +少女时代-genie,http://em.21dtv.com/songs/60073233.mkv +STEPHANIE-game,http://em.21dtv.com/songs/60073232.mkv +RED NATION+LIL WAYNE-game,http://em.21dtv.com/songs/60073231.mkv +OWL CITY-galaxies,http://em.21dtv.com/songs/60073230.mkv +LEANN RIMES-give,http://em.21dtv.com/songs/60067893.mkv +SDN48-gagaga,http://em.21dtv.com/songs/60062146.mkv +KRISTINIA DEBARGE-goodbye,http://em.21dtv.com/songs/60060810.mkv +范晓萱-蛤,http://em.21dtv.com/songs/60019568.mkv +梁汉文+杨千嬅-滚,http://em.21dtv.com/songs/60019428.mkv +梁汉文+杨千嬅-滚(演唱会),http://em.21dtv.com/songs/60019427.mkv +陶喆-鬼,http://em.21dtv.com/songs/60019396.mkv +龙井组合-归,http://em.21dtv.com/songs/60019355.mkv +李建复-归,http://em.21dtv.com/songs/60019354.mkv +费玉清-归,http://em.21dtv.com/songs/60019353.mkv +龙井组合+史爽-归(演唱会),http://em.21dtv.com/songs/60019352.mkv +王栎鑫-光,http://em.21dtv.com/songs/60019272.mkv +童一首歌-光,http://em.21dtv.com/songs/60019271.mkv +刘若英-光,http://em.21dtv.com/songs/60019270.mkv +光良-光,http://em.21dtv.com/songs/60019269.mkv +彭莉-光(无原唱),http://em.21dtv.com/songs/60019268.mkv +丁小芹-乖,http://em.21dtv.com/songs/60019154.mkv +季欣霈-狗,http://em.21dtv.com/songs/60018797.mkv +佚名-歌,http://em.21dtv.com/songs/60018356.mkv +李一可-歌,http://em.21dtv.com/songs/60018355.mkv +花儿乐队-该(演唱会),http://em.21dtv.com/songs/60017803.mkv +佚名-guilty,http://em.21dtv.com/songs/60002043.mkv +BLUE-guilty,http://em.21dtv.com/songs/60002042.mkv +BARBRA STREISAND+BAR-guilty,http://em.21dtv.com/songs/60002041.mkv +佚名-guantanamera,http://em.21dtv.com/songs/60002039.mkv +巫启贤+张宇+于冠华-grooving,http://em.21dtv.com/songs/60002036.mkv +佚名-groovin,http://em.21dtv.com/songs/60002035.mkv +NELLY-grillz,http://em.21dtv.com/songs/60002034.mkv +童唱-greetings,http://em.21dtv.com/songs/60002033.mkv +平原绫香-greensleeves,http://em.21dtv.com/songs/60002032.mkv +佚名-greensleeves(无原唱),http://em.21dtv.com/songs/60002031.mkv +BROTHERS FOUR-greenfields,http://em.21dtv.com/songs/60002030.mkv +滨崎步-green,http://em.21dtv.com/songs/60002029.mkv +BARRY GIBB-grease,http://em.21dtv.com/songs/60002014.mkv +佚名-grandpa,http://em.21dtv.com/songs/60002013.mkv +黄志玮-grace(无原唱),http://em.21dtv.com/songs/60002010.mkv +CIARA-goodies,http://em.21dtv.com/songs/60001994.mkv +羽泉-good-bye,http://em.21dtv.com/songs/60001992.mkv +容祖儿-goodbye,http://em.21dtv.com/songs/60001991.mkv +莫文蔚-goodbye,http://em.21dtv.com/songs/60001990.mkv +郭静-goodbye,http://em.21dtv.com/songs/60001989.mkv +蔡依林-goodbye,http://em.21dtv.com/songs/60001988.mkv +TAE-goodbye,http://em.21dtv.com/songs/60001987.mkv +SPICE GIRLS-goodbye,http://em.21dtv.com/songs/60001986.mkv +洛客班-goodbye(无原唱),http://em.21dtv.com/songs/60001985.mkv +TOKYO D.-goodbye(无原唱),http://em.21dtv.com/songs/60001984.mkv +N SYNC-gone,http://em.21dtv.com/songs/60001941.mkv +佚名-goldfinger,http://em.21dtv.com/songs/60001939.mkv +黄立行-go,http://em.21dtv.com/songs/60001933.mkv +谭咏麟+MR.-go!,http://em.21dtv.com/songs/60001932.mkv +YUI-gloria,http://em.21dtv.com/songs/60001916.mkv +V.MORRISON-gloria(无原唱),http://em.21dtv.com/songs/60001915.mkv +滨崎步-glitter,http://em.21dtv.com/songs/60001913.mkv +FERGIE-glamorous,http://em.21dtv.com/songs/60001912.mkv +BOY'Z-girls,http://em.21dtv.com/songs/60001895.mkv +BOY'Z+刘思惠-girls,http://em.21dtv.com/songs/60001894.mkv +BOY'Z-girls(演唱会),http://em.21dtv.com/songs/60001893.mkv +佚名-girlfriend,http://em.21dtv.com/songs/60001890.mkv +N SYNC-girlfriend,http://em.21dtv.com/songs/60001889.mkv +AVRIL LAVIGNE-girlfriend,http://em.21dtv.com/songs/60001888.mkv +BILLIE-girlfriend(无原唱),http://em.21dtv.com/songs/60001887.mkv +佚名-girl,http://em.21dtv.com/songs/60001885.mkv +林志颖-girl,http://em.21dtv.com/songs/60001884.mkv +陈司翰-girl,http://em.21dtv.com/songs/60001883.mkv +SUPER JUNIOR-M+SUPER-girl,http://em.21dtv.com/songs/60001882.mkv +四分卫-ghost,http://em.21dtv.com/songs/60001869.mkv +佚名-getaway,http://em.21dtv.com/songs/60001865.mkv +少女时代-genit,http://em.21dtv.com/songs/60001840.mkv +少女时代-geine,http://em.21dtv.com/songs/60001838.mkv +少女时代-gee,http://em.21dtv.com/songs/60001837.mkv +童唱-gardener,http://em.21dtv.com/songs/60001835.mkv +滨崎步-game,http://em.21dtv.com/songs/60001832.mkv +BOA-game,http://em.21dtv.com/songs/60001831.mkv +ASHER ROTH-g r i n d,http://em.21dtv.com/songs/60001828.mkv +沢尻エリカ-free,http://em.21dtv.com/songs/60063343.mkv +2PM-forever,http://em.21dtv.com/songs/60071600.mkv +NICKI MINAJ+RIHANNA-fly,http://em.21dtv.com/songs/60062119.mkv +KYLIE MINOGUE-flower,http://em.21dtv.com/songs/60071599.mkv +方大同+王力宏-FLOW,http://em.21dtv.com/songs/60128040.mkv +AFTER SCHOOL-flashback,http://em.21dtv.com/songs/60067886.mkv +CRAIG CAMPBELL-fish,http://em.21dtv.com/songs/60065589.mkv +RONAN KEATING-fires,http://em.21dtv.com/songs/60070337.mkv +WILLOW+NICKI MINAJ-fireball,http://em.21dtv.com/songs/60065588.mkv +妖精帝国-filament,http://em.21dtv.com/songs/60069079.mkv +J SOUL BROTHERS-fighters,http://em.21dtv.com/songs/60062048.mkv +小宇-fight,http://em.21dtv.com/songs/60071597.mkv +钟亚华-疯,http://em.21dtv.com/songs/60067007.mkv +徐健淇-飞,http://em.21dtv.com/songs/60064171.mkv +许钧-FEATHERS,http://em.21dtv.com/songs/60128400.mkv +WITHIN TEMPTATION-faste,http://em.21dtv.com/songs/60071594.mkv +IGGY AZALEA-Fancy,http://em.21dtv.com/songs/60099663.mkv +MEGAN REDMOND-falling,http://em.21dtv.com/songs/60067883.mkv +GIN LEE-falling,http://em.21dtv.com/songs/60067882.mkv +郑秀文-FABULOUS,http://em.21dtv.com/songs/60128475.mkv +曾超-飞,http://em.21dtv.com/songs/60135336.mkv +吴陌川-飞,http://em.21dtv.com/songs/60135046.mkv +赵青岳-飞,http://em.21dtv.com/songs/60132938.mkv +许魏洲-放,http://em.21dtv.com/songs/60130752.mkv +谭维维-飞,http://em.21dtv.com/songs/60129623.mkv +杨博-枫,http://em.21dtv.com/songs/60127081.mkv +韩磊-飞,http://em.21dtv.com/songs/60126439.mkv +钟盛忠+钟晓玉-飞,http://em.21dtv.com/songs/60124595.mkv +初斯基-飞,http://em.21dtv.com/songs/60123696.mkv +金润吉-放,http://em.21dtv.com/songs/60122198.mkv +张卓-否,http://em.21dtv.com/songs/60113455.mkv +金润吉-放,http://em.21dtv.com/songs/60112317.mkv +汤小康-疯,http://em.21dtv.com/songs/60111223.mkv +许富凯+曹雅雯-帆,http://em.21dtv.com/songs/60110520.mkv +马汝珑-飞,http://em.21dtv.com/songs/60109037.mkv +GOD-风,http://em.21dtv.com/songs/60106539.mkv +吴炜-飞,http://em.21dtv.com/songs/60104879.mkv +太阳部落-飞,http://em.21dtv.com/songs/60104022.mkv +李治廷-飞,http://em.21dtv.com/songs/60099307.mkv +褚乔-future,http://em.21dtv.com/songs/60086341.mkv +MIWA-faraway,http://em.21dtv.com/songs/60084711.mkv +ANZA-扉をあけて,http://em.21dtv.com/songs/60084684.mkv +QBS-风のように,http://em.21dtv.com/songs/60082913.mkv +胡彦斌-funrun,http://em.21dtv.com/songs/60082162.mkv +安在旭-forver,http://em.21dtv.com/songs/60082161.mkv +MATT HIRES-forever,http://em.21dtv.com/songs/60082160.mkv +CHARLIE BROWN-floodgates,http://em.21dtv.com/songs/60082156.mkv +KASABIAN-fire,http://em.21dtv.com/songs/60082154.mkv +刘雅丽-fever(演唱会),http://em.21dtv.com/songs/60082150.mkv +INA-fall,http://em.21dtv.com/songs/60082147.mkv +HAIM-falling,http://em.21dtv.com/songs/60082146.mkv +吉杰+黄夕倍-Fool,http://em.21dtv.com/songs/60081642.mkv +周笔畅-烦,http://em.21dtv.com/songs/60081132.mkv +刘悦-Feeling,http://em.21dtv.com/songs/60081100.mkv +吴建飞-飞,http://em.21dtv.com/songs/60080006.mkv +田维英-风,http://em.21dtv.com/songs/60075376.mkv +洪辰-飞,http://em.21dtv.com/songs/60075330.mkv +SUPPER MOMENT-飞,http://em.21dtv.com/songs/60075329.mkv +柏敏杰-放,http://em.21dtv.com/songs/60075308.mkv +NICKI MINAJ-freedom,http://em.21dtv.com/songs/60073226.mkv +萧亚轩-free,http://em.21dtv.com/songs/60073225.mkv +中岛美嘉-focus,http://em.21dtv.com/songs/60073218.mkv +ADRIANA LOUISE-firework(演唱会),http://em.21dtv.com/songs/60073215.mkv +LEONA LEWIS-fireflies(演唱会),http://em.21dtv.com/songs/60073214.mkv +SHINE-fire,http://em.21dtv.com/songs/60073213.mkv +YUI-fight,http://em.21dtv.com/songs/60073207.mkv +ADAM LAMBERT-fever(演唱会),http://em.21dtv.com/songs/60073206.mkv +袁野-饭,http://em.21dtv.com/songs/60063311.mkv +JOURNEY-faithfully,http://em.21dtv.com/songs/60062065.mkv +前田敦子-flower,http://em.21dtv.com/songs/60060802.mkv +24HERBS-fashionista,http://em.21dtv.com/songs/60060801.mkv +王菲菲-福,http://em.21dtv.com/songs/60017690.mkv +周杰伦-枫,http://em.21dtv.com/songs/60017528.mkv +张杰-风,http://em.21dtv.com/songs/60017216.mkv +许慧欣-风,http://em.21dtv.com/songs/60017215.mkv +巫启贤-风,http://em.21dtv.com/songs/60017214.mkv +麦子杰-风,http://em.21dtv.com/songs/60017213.mkv +罗百吉-风,http://em.21dtv.com/songs/60017212.mkv +柯以敏-风,http://em.21dtv.com/songs/60017211.mkv +解晓东-风,http://em.21dtv.com/songs/60017210.mkv +姜玉阳-风,http://em.21dtv.com/songs/60017209.mkv +郭桂彬-风,http://em.21dtv.com/songs/60017208.mkv +符号-风,http://em.21dtv.com/songs/60017207.mkv +方炯镔-风,http://em.21dtv.com/songs/60017206.mkv +范晓萱-风,http://em.21dtv.com/songs/60017205.mkv +张伟文-风(演唱会),http://em.21dtv.com/songs/60017204.mkv +周治平-焚,http://em.21dtv.com/songs/60017154.mkv +周国贤-飞,http://em.21dtv.com/songs/60016780.mkv +周冰倩-飞,http://em.21dtv.com/songs/60016779.mkv +王喆-飞,http://em.21dtv.com/songs/60016778.mkv +王菲-飞,http://em.21dtv.com/songs/60016777.mkv +覃飞宇-飞,http://em.21dtv.com/songs/60016776.mkv +孙耀威-飞,http://em.21dtv.com/songs/60016775.mkv +宋祖英-飞,http://em.21dtv.com/songs/60016774.mkv +潘蓉-飞,http://em.21dtv.com/songs/60016773.mkv +马天宇-飞,http://em.21dtv.com/songs/60016772.mkv +刘德华-飞,http://em.21dtv.com/songs/60016771.mkv +林志炫-飞,http://em.21dtv.com/songs/60016770.mkv +李心洁-飞,http://em.21dtv.com/songs/60016769.mkv +姜闽羲-飞,http://em.21dtv.com/songs/60016768.mkv +阿牛-飞,http://em.21dtv.com/songs/60016767.mkv +ME2-飞,http://em.21dtv.com/songs/60016766.mkv +容祖儿-飞(演唱会),http://em.21dtv.com/songs/60016765.mkv +郭富城-飞(演唱会),http://em.21dtv.com/songs/60016764.mkv +LMF-飞(演唱会),http://em.21dtv.com/songs/60016762.mkv +轻松玩乐团-放,http://em.21dtv.com/songs/60016561.mkv +戴爱玲-放,http://em.21dtv.com/songs/60016560.mkv +动静乐团-饭,http://em.21dtv.com/songs/60016518.mkv +潘辰-烦,http://em.21dtv.com/songs/60016475.mkv +林晓培-烦,http://em.21dtv.com/songs/60016474.mkv +胡兵-发,http://em.21dtv.com/songs/60016415.mkv +WILLIE NELSON-funny,http://em.21dtv.com/songs/60001824.mkv +MADONNA-frozen,http://em.21dtv.com/songs/60001813.mkv +TWINS-friends,http://em.21dtv.com/songs/60001802.mkv +爱内里菜-friend,http://em.21dtv.com/songs/60001799.mkv +SUNDAY GIRLS-fresh,http://em.21dtv.com/songs/60001797.mkv +SMASH-freeway,http://em.21dtv.com/songs/60001796.mkv +许玮伦+GARY-freedom,http://em.21dtv.com/songs/60001794.mkv +张玉华-free,http://em.21dtv.com/songs/60001793.mkv +陶喆-free,http://em.21dtv.com/songs/60001792.mkv +MYA-free,http://em.21dtv.com/songs/60001791.mkv +WILL SMITH-freakinit(无原唱),http://em.21dtv.com/songs/60001787.mkv +滨崎步-forgiveness,http://em.21dtv.com/songs/60001782.mkv +张智成-forever,http://em.21dtv.com/songs/60001781.mkv +佚名-forever,http://em.21dtv.com/songs/60001780.mkv +草蜢-forever,http://em.21dtv.com/songs/60001779.mkv +MARIAH CAREY-forever,http://em.21dtv.com/songs/60001778.mkv +LINDA+JUNJIN-forever,http://em.21dtv.com/songs/60001777.mkv +CHRIS BROWN-forever,http://em.21dtv.com/songs/60001776.mkv +齐豫-forever(演唱会),http://em.21dtv.com/songs/60001775.mkv +金贤政-forever(无原唱),http://em.21dtv.com/songs/60001774.mkv +TOKYO D.-forever(无原唱),http://em.21dtv.com/songs/60001773.mkv +NELLY FURTADO-forca,http://em.21dtv.com/songs/60001758.mkv +佚名-footloose,http://em.21dtv.com/songs/60001735.mkv +刘若英-flying,http://em.21dtv.com/songs/60001725.mkv +HILARY DUFF-fly(演唱会),http://em.21dtv.com/songs/60001721.mkv +A-TEENS-floorfiller,http://em.21dtv.com/songs/60001706.mkv +佚名-flashdance(无原唱),http://em.21dtv.com/songs/60001702.mkv +童唱-fireman,http://em.21dtv.com/songs/60001683.mkv +莫文蔚-fire,http://em.21dtv.com/songs/60001682.mkv +FIRE-fire,http://em.21dtv.com/songs/60001681.mkv +2NE1-fire,http://em.21dtv.com/songs/60001680.mkv +邓丽君-fire(演唱会),http://em.21dtv.com/songs/60001679.mkv +CE CE PENISTON-finally,http://em.21dtv.com/songs/60001672.mkv +佚名-fiesta,http://em.21dtv.com/songs/60001667.mkv +MADONNA-fever,http://em.21dtv.com/songs/60001666.mkv +ABBA-fernando,http://em.21dtv.com/songs/60001664.mkv +佚名-feelings,http://em.21dtv.com/songs/60001659.mkv +佚名-feel,http://em.21dtv.com/songs/60001657.mkv +ROBBIE WILLIAMS-feel,http://em.21dtv.com/songs/60001656.mkv +JANET JACKSON-feedback,http://em.21dtv.com/songs/60001648.mkv +佚名-fearless,http://em.21dtv.com/songs/60001647.mkv +杨乃文-fear(演唱会),http://em.21dtv.com/songs/60001646.mkv +滨崎步-fated,http://em.21dtv.com/songs/60001642.mkv +ALPHA BEAT-fascination,http://em.21dtv.com/songs/60001639.mkv +幸田来未-faraway,http://em.21dtv.com/songs/60001638.mkv +2个女生-faraway,http://em.21dtv.com/songs/60001637.mkv +佚名-fantasy,http://em.21dtv.com/songs/60001636.mkv +言承旭-fantasy,http://em.21dtv.com/songs/60001635.mkv +丁小芹-fantasy,http://em.21dtv.com/songs/60001634.mkv +MARIAH CAREY-fantasy,http://em.21dtv.com/songs/60001633.mkv +软硬天师-fantastic(演唱会),http://em.21dtv.com/songs/60001632.mkv +小斯韵-fans,http://em.21dtv.com/songs/60001631.mkv +BEE GEES-fanny,http://em.21dtv.com/songs/60001630.mkv +DESTINY'S CHILD-fancy,http://em.21dtv.com/songs/60001629.mkv +佚名-fancy(无原唱),http://em.21dtv.com/songs/60001628.mkv +何欣穗-famous,http://em.21dtv.com/songs/60001627.mkv +萧贺硕-family,http://em.21dtv.com/songs/60001626.mkv +佚名-fame,http://em.21dtv.com/songs/60001624.mkv +THE DREAM-falsetto,http://em.21dtv.com/songs/60001623.mkv +佚名-falling,http://em.21dtv.com/songs/60001622.mkv +ALICIA KEYS-falling,http://em.21dtv.com/songs/60001621.mkv +ALICIA KEYS-fallin,http://em.21dtv.com/songs/60001617.mkv +佚名-fallen,http://em.21dtv.com/songs/60001615.mkv +佚名-faithfully,http://em.21dtv.com/songs/60001607.mkv +佚名-faithful,http://em.21dtv.com/songs/60001606.mkv +GEORGE MICHAEL-faith,http://em.21dtv.com/songs/60001605.mkv +滨崎步-fairyland,http://em.21dtv.com/songs/60001604.mkv +LINKIN PARK-faint,http://em.21dtv.com/songs/60001603.mkv +TAEN-every,http://em.21dtv.com/songs/60071592.mkv +山下智久-ero,http://em.21dtv.com/songs/60070328.mkv +INNA-endless,http://em.21dtv.com/songs/60065581.mkv +林育群-endlessly,http://em.21dtv.com/songs/60063586.mkv +梅林组合-恩,http://em.21dtv.com/songs/60069376.mkv +JYJ-empty,http://em.21dtv.com/songs/60070326.mkv +A JAX-2myx,http://em.21dtv.com/songs/60062785.mkv +ALEXANDRA BURKE-elephant,http://em.21dtv.com/songs/60065579.mkv +JAKWOB+JETTA-electrify,http://em.21dtv.com/songs/60066641.mkv +2BORAM-2love,http://em.21dtv.com/songs/60062784.mkv +BEYONCE-ego,http://em.21dtv.com/songs/60067877.mkv +RUBBER BAND-easy,http://em.21dtv.com/songs/60069076.mkv +BEAST-easy,http://em.21dtv.com/songs/60067876.mkv +RASCAL FLATTS-easy,http://em.21dtv.com/songs/60062132.mkv +LABRINTH-earthquake,http://em.21dtv.com/songs/60063584.mkv +LIFEHOUSE-everything,http://em.21dtv.com/songs/60084709.mkv +钟舒漫-Everlasting,http://em.21dtv.com/songs/60080860.mkv +严爵-Everyday,http://em.21dtv.com/songs/60080795.mkv +ELLIE GOULDING-explosions(演唱会),http://em.21dtv.com/songs/60073192.mkv +COVER DRIVE+DAPPY-explode,http://em.21dtv.com/songs/60073191.mkv +GIRL'S DAY-expect,http://em.21dtv.com/songs/60073190.mkv +LOREEN-euphoria,http://em.21dtv.com/songs/60073179.mkv +王若琳-enlightenment,http://em.21dtv.com/songs/60073177.mkv +EARTHMIND-energy,http://em.21dtv.com/songs/60073176.mkv +DUFFY-endlessly(演唱会),http://em.21dtv.com/songs/60073175.mkv +苏姗-emotions(演唱会),http://em.21dtv.com/songs/60073172.mkv +新街口组合-eminem,http://em.21dtv.com/songs/60073171.mkv +少女时代-echo,http://em.21dtv.com/songs/60060795.mkv +BRAVE GIRLS-easily,http://em.21dtv.com/songs/60060794.mkv +周笔畅-呃,http://em.21dtv.com/songs/60016273.mkv +原始林合唱团-eyayogo(无原唱),http://em.21dtv.com/songs/60001594.mkv +佚名-exhale,http://em.21dtv.com/songs/60001592.mkv +黎明-evolution,http://em.21dtv.com/songs/60001591.mkv +罗百吉-everytime,http://em.21dtv.com/songs/60001590.mkv +JANET JACKSON-everytime,http://em.21dtv.com/songs/60001589.mkv +BRITNEY SPEARS-everytime,http://em.21dtv.com/songs/60001588.mkv +A1-everytime,http://em.21dtv.com/songs/60001587.mkv +王力宏-everything,http://em.21dtv.com/songs/60001580.mkv +王菲-everything,http://em.21dtv.com/songs/60001579.mkv +梁心颐-everything,http://em.21dtv.com/songs/60001578.mkv +MICHAEL BUBLE-everything,http://em.21dtv.com/songs/60001577.mkv +ALANIS MORISSETTE-everything,http://em.21dtv.com/songs/60001576.mkv +辛晓琪-everything(演唱会),http://em.21dtv.com/songs/60001575.mkv +群星-everyone,http://em.21dtv.com/songs/60001568.mkv +MR.-everyone,http://em.21dtv.com/songs/60001567.mkv +中国力量-everyday,http://em.21dtv.com/songs/60001564.mkv +和田裕美-everyday,http://em.21dtv.com/songs/60001563.mkv +张国荣-everybody,http://em.21dtv.com/songs/60001560.mkv +何耀珊-everybody,http://em.21dtv.com/songs/60001559.mkv +BACKSTREET BOYS-everybody,http://em.21dtv.com/songs/60001558.mkv +XANDRIA-eversleeping,http://em.21dtv.com/songs/60001537.mkv +BOA-everlasting,http://em.21dtv.com/songs/60001536.mkv +WILL YOUNG-evergreen,http://em.21dtv.com/songs/60001535.mkv +BARBRA STREISAND-evergreen,http://em.21dtv.com/songs/60001534.mkv +叶丽仪-evergreen(演唱会),http://em.21dtv.com/songs/60001533.mkv +何耀珊-everbody,http://em.21dtv.com/songs/60001531.mkv +柴咲コウ-euphoria,http://em.21dtv.com/songs/60001526.mkv +ROBBIE WILLIAMS-eternity,http://em.21dtv.com/songs/60001525.mkv +R.WILLIAMS+G.CHAMBER-eternity,http://em.21dtv.com/songs/60001524.mkv +ETERNITY-eternity,http://em.21dtv.com/songs/60001523.mkv +李贞贤-escape,http://em.21dtv.com/songs/60001516.mkv +ENRIQUE IGLESIAS-escape,http://em.21dtv.com/songs/60001515.mkv +JANET JACKSON-escapade,http://em.21dtv.com/songs/60001514.mkv +侧田-erica(演唱会),http://em.21dtv.com/songs/60001513.mkv +软硬天师-encore(演唱会),http://em.21dtv.com/songs/60001503.mkv +MARIAH CAREY-emotions,http://em.21dtv.com/songs/60001500.mkv +DESTINY'S CHILD-emotion,http://em.21dtv.com/songs/60001499.mkv +叶德娴-emotion(演唱会),http://em.21dtv.com/songs/60001498.mkv +小雪-e-mail,http://em.21dtv.com/songs/60001495.mkv +孙燕姿-e-lover,http://em.21dtv.com/songs/60001491.mkv +U2-elevation,http://em.21dtv.com/songs/60001489.mkv +谭咏麟-elaine(演唱会),http://em.21dtv.com/songs/60001483.mkv +佚名-edelwise,http://em.21dtv.com/songs/60001477.mkv +佚名-edelweiss,http://em.21dtv.com/songs/60001476.mkv +杨燕-edelweiss(演唱会),http://em.21dtv.com/songs/60001475.mkv +何韵诗-ecoutez-moi(演唱会),http://em.21dtv.com/songs/60001474.mkv +ECHO-echo,http://em.21dtv.com/songs/60001473.mkv +春晓-easy,http://em.21dtv.com/songs/60001467.mkv +THE COMMODORES-easy,http://em.21dtv.com/songs/60001466.mkv +ABBA-eagle,http://em.21dtv.com/songs/60001461.mkv +太妃堂-断,http://em.21dtv.com/songs/60070656.mkv +ED SHEERAN-drunk,http://em.21dtv.com/songs/60065577.mkv +曲婉婷-drenched,http://em.21dtv.com/songs/60065575.mkv +ICE CREAM-dorrough,http://em.21dtv.com/songs/60063578.mkv +好妹妹乐队-冬,http://em.21dtv.com/songs/60071888.mkv +宿雨涵-冬,http://em.21dtv.com/songs/60062946.mkv +JESSIE J-domino,http://em.21dtv.com/songs/60063576.mkv +五月天-DNA,http://em.21dtv.com/songs/60096177.mkv +FTISLAND-distance,http://em.21dtv.com/songs/60063575.mkv +JOJO-disaster,http://em.21dtv.com/songs/60063574.mkv +MIRYO-dirty,http://em.21dtv.com/songs/60066634.mkv +NAVI-diary,http://em.21dtv.com/songs/60063573.mkv +卢凯彤-departure,http://em.21dtv.com/songs/60071586.mkv +YOO JI AE-Delight,http://em.21dtv.com/songs/60099709.mkv +BRITNEY SPEARS-(drop Dead)beautiful(演唱会),http://em.21dtv.com/songs/60082052.mkv +ADELE-daydreamer,http://em.21dtv.com/songs/60071585.mkv +梁心颐-darling,http://em.21dtv.com/songs/60066632.mkv +SHAKIRA-Dare (La La La),http://em.21dtv.com/songs/60099698.mkv +罗志祥-dante,http://em.21dtv.com/songs/60065568.mkv +JAMES BLUNT-dangerous,http://em.21dtv.com/songs/60063571.mkv +金志文+沈凌+千斤组合-当,http://em.21dtv.com/songs/60135848.mkv +李明洋-等,http://em.21dtv.com/songs/60135365.mkv +严艺丹-等,http://em.21dtv.com/songs/60134848.mkv +DOUBLEX2-洞,http://em.21dtv.com/songs/60131057.mkv +杨丞琳-单,http://em.21dtv.com/songs/60128106.mkv +阮妍霏-毒,http://em.21dtv.com/songs/60124601.mkv +王威-等,http://em.21dtv.com/songs/60120752.mkv +唐艺昕-灯,http://em.21dtv.com/songs/60119366.mkv +曾岑-等,http://em.21dtv.com/songs/60118643.mkv +张玮-蝶,http://em.21dtv.com/songs/60113489.mkv +萧敬腾+龚泽艺-当,http://em.21dtv.com/songs/60112926.mkv +霍尊-蝶,http://em.21dtv.com/songs/60112379.mkv +动力火车-当(HD),http://em.21dtv.com/songs/10012713.mkv +吴瑶-多,http://em.21dtv.com/songs/60109220.mkv +树海-あなたがいた森,http://em.21dtv.com/songs/60099353.mkv +方欣浩-等,http://em.21dtv.com/songs/60096581.mkv +李炜+江映蓉-当,http://em.21dtv.com/songs/60096571.mkv +夏韶声-等,http://em.21dtv.com/songs/60092490.mkv +侧田-达,http://em.21dtv.com/songs/60092291.mkv +高枫-斗,http://em.21dtv.com/songs/60089005.mkv +MACHI-屌,http://em.21dtv.com/songs/60087204.mkv +张杰-对,http://em.21dtv.com/songs/60085065.mkv +EXILE ATSUSHI-道しるべ,http://em.21dtv.com/songs/60085032.mkv +LADY ANTEBELLUM-downtown,http://em.21dtv.com/songs/60084707.mkv +THE BAND PERRY-done,http://em.21dtv.com/songs/60084703.mkv +吴若希-等,http://em.21dtv.com/songs/60082819.mkv +陈中+董育君-等,http://em.21dtv.com/songs/60082818.mkv +南优贤+LUCIA-duet,http://em.21dtv.com/songs/60082140.mkv +陆锋-懂,http://em.21dtv.com/songs/60075219.mkv +恵比寿マスカッツ-冬リンモンロー,http://em.21dtv.com/songs/60075215.mkv +柳影虹-等(演唱会),http://em.21dtv.com/songs/60075143.mkv +EXILE-道,http://em.21dtv.com/songs/60075133.mkv +NO3B-ペディキュアday,http://em.21dtv.com/songs/60074257.mkv +蔡依林-drjolin,http://em.21dtv.com/songs/60073161.mkv +林峰-drenched(演唱会),http://em.21dtv.com/songs/60073157.mkv +CHOUCHO-dreamriser,http://em.21dtv.com/songs/60073155.mkv +刘奇梅-doyouknow,http://em.21dtv.com/songs/60073149.mkv +TYGA+RICK ROSS-dope,http://em.21dtv.com/songs/60073148.mkv +侯祖辛+黄鹤-domino,http://em.21dtv.com/songs/60073131.mkv +NINE MUSES-dolls,http://em.21dtv.com/songs/60073130.mkv +LITTLE MIX-dna,http://em.21dtv.com/songs/60073125.mkv +USHER-dive,http://em.21dtv.com/songs/60073123.mkv +KEANE-disconnected,http://em.21dtv.com/songs/60073122.mkv +阿茹娜-disco,http://em.21dtv.com/songs/60073121.mkv +ROBBIE WILLIAMS-different,http://em.21dtv.com/songs/60073119.mkv +ALICIA KEYS-diary,http://em.21dtv.com/songs/60073116.mkv +RIHANNA-diamonds,http://em.21dtv.com/songs/60073114.mkv +PETER ANDRE-defender,http://em.21dtv.com/songs/60073111.mkv +中岛美嘉-dear,http://em.21dtv.com/songs/60073109.mkv +MAROON 5-daylight,http://em.21dtv.com/songs/60073107.mkv +BLINK 182-dammit,http://em.21dtv.com/songs/60073096.mkv +KRYDER+BO BRUCE-damaged,http://em.21dtv.com/songs/60073095.mkv +EMELI SANDE-daddy,http://em.21dtv.com/songs/60065565.mkv +王祖蓝-daddy,http://em.21dtv.com/songs/60063055.mkv +V6-darling,http://em.21dtv.com/songs/60062174.mkv +SOULJA BOY TELL'EM-donk,http://em.21dtv.com/songs/60060790.mkv +GORILLAZ-doncamatic,http://em.21dtv.com/songs/60060789.mkv +F(X)-danger,http://em.21dtv.com/songs/60060782.mkv +麦洁文-断,http://em.21dtv.com/songs/60015905.mkv +麦洁文-断(演唱会),http://em.21dtv.com/songs/60015904.mkv +万芳-渡,http://em.21dtv.com/songs/60015881.mkv +MC HOTDOG-毒,http://em.21dtv.com/songs/60015767.mkv +吴克群-动,http://em.21dtv.com/songs/60015644.mkv +陈小春-丢,http://em.21dtv.com/songs/60015465.mkv +谢安琪-蝶,http://em.21dtv.com/songs/60015396.mkv +谭维维-蝶,http://em.21dtv.com/songs/60015395.mkv +MACHI-吊,http://em.21dtv.com/songs/60015373.mkv +郑源-等,http://em.21dtv.com/songs/60014845.mkv +袁泉-等,http://em.21dtv.com/songs/60014844.mkv +黄湘怡-等,http://em.21dtv.com/songs/60014843.mkv +陈百强-等,http://em.21dtv.com/songs/60014842.mkv +遨游-等,http://em.21dtv.com/songs/60014841.mkv +张学友-等(演唱会),http://em.21dtv.com/songs/60014840.mkv +谢霆锋-等(演唱会),http://em.21dtv.com/songs/60014839.mkv +李宇春-等(演唱会),http://em.21dtv.com/songs/60014838.mkv +李克勤-等(演唱会),http://em.21dtv.com/songs/60014837.mkv +光良-等(演唱会),http://em.21dtv.com/songs/60014836.mkv +陈奕迅-等(演唱会),http://em.21dtv.com/songs/60014835.mkv +陈百强-等(演唱会),http://em.21dtv.com/songs/60014834.mkv +童安格-灯,http://em.21dtv.com/songs/60014819.mkv +林俊杰-盗(演唱会),http://em.21dtv.com/songs/60014769.mkv +动力火车-当,http://em.21dtv.com/songs/60014480.mkv +BABOO-打(无原唱),http://em.21dtv.com/songs/60013740.mkv +BACKSTREET BOYS-drowning,http://em.21dtv.com/songs/60001450.mkv +佚名-drive,http://em.21dtv.com/songs/60001443.mkv +东方神起-drive,http://em.21dtv.com/songs/60001442.mkv +THE CARS-drive,http://em.21dtv.com/songs/60001441.mkv +陈洁仪-dreams,http://em.21dtv.com/songs/60001435.mkv +THE CORRS-dreams,http://em.21dtv.com/songs/60001434.mkv +FLEETWOOD MAC-dreams,http://em.21dtv.com/songs/60001433.mkv +佚名-dreamlover,http://em.21dtv.com/songs/60001430.mkv +MARIAH CAREY-dreamlover,http://em.21dtv.com/songs/60001429.mkv +佚名-dreaming(无原唱),http://em.21dtv.com/songs/60001428.mkv +佚名-dreamin,http://em.21dtv.com/songs/60001426.mkv +张栋梁-dream,http://em.21dtv.com/songs/60001425.mkv +元卫觉醒-dream,http://em.21dtv.com/songs/60001424.mkv +徐若瑄-dream,http://em.21dtv.com/songs/60001423.mkv +安室奈美惠-dr,http://em.21dtv.com/songs/60001407.mkv +PETULA CLARK-downtown,http://em.21dtv.com/songs/60001406.mkv +JAY SEAN+LIL WAYNE-down,http://em.21dtv.com/songs/60001404.mkv +TWINS-do-re-mi,http://em.21dtv.com/songs/60001396.mkv +SHANIA TWAIN-dont,http://em.21dtv.com/songs/60001393.mkv +施文彬-donlaira(无原唱),http://em.21dtv.com/songs/60001295.mkv +童唱-doctor,http://em.21dtv.com/songs/60001290.mkv +BY2-dna,http://em.21dtv.com/songs/60001255.mkv +BEYONCE KNOWLES-diva,http://em.21dtv.com/songs/60001251.mkv +林忆莲-diva(演唱会),http://em.21dtv.com/songs/60001250.mkv +RIHANNA-disturbia,http://em.21dtv.com/songs/60001249.mkv +HOOBASTANK-disappear,http://em.21dtv.com/songs/60001245.mkv +佚名-dirrty,http://em.21dtv.com/songs/60001241.mkv +张善为-dinosaur,http://em.21dtv.com/songs/60001239.mkv +何润东-di-da,http://em.21dtv.com/songs/60001232.mkv +RING-diary(无原唱),http://em.21dtv.com/songs/60001229.mkv +PAUL ANKA-diana,http://em.21dtv.com/songs/60001227.mkv +谢雷-diana(演唱会),http://em.21dtv.com/songs/60001226.mkv +太极乐队-desperado(演唱会),http://em.21dtv.com/songs/60001214.mkv +王馨平-desire,http://em.21dtv.com/songs/60001213.mkv +SUGABABES-denial,http://em.21dtv.com/songs/60001210.mkv +佚名-delilah,http://em.21dtv.com/songs/60001208.mkv +关淑怡-dela,http://em.21dtv.com/songs/60001207.mkv +滨崎步-decision,http://em.21dtv.com/songs/60001201.mkv +佚名-deborah,http://em.21dtv.com/songs/60001196.mkv +容祖儿-dear,http://em.21dtv.com/songs/60001193.mkv +群星-dear,http://em.21dtv.com/songs/60001192.mkv +TATYANA ALI-daydreamin(无原唱),http://em.21dtv.com/songs/60001176.mkv +滨崎步-daybreak,http://em.21dtv.com/songs/60001174.mkv +JOHN MAYER-daughters,http://em.21dtv.com/songs/60001168.mkv +LOTTE GIRLS-dash(演唱会),http://em.21dtv.com/songs/60001167.mkv +涂紫凝-darling,http://em.21dtv.com/songs/60001166.mkv +黄品冠-darling,http://em.21dtv.com/songs/60001165.mkv +果味VC-darling,http://em.21dtv.com/songs/60001164.mkv +范晓萱-darling,http://em.21dtv.com/songs/60001163.mkv +范晓萱-darling(演唱会),http://em.21dtv.com/songs/60001162.mkv +佚名-daniel,http://em.21dtv.com/songs/60001157.mkv +ELTON JOHN-daniel,http://em.21dtv.com/songs/60001156.mkv +T+RUSH-dangerous,http://em.21dtv.com/songs/60001155.mkv +MICHAEL JACKSON-dangerous,http://em.21dtv.com/songs/60001154.mkv +佚名-dangerous(无原唱),http://em.21dtv.com/songs/60001153.mkv +高凌风-dangerous(无原唱),http://em.21dtv.com/songs/60001152.mkv +P.GESSLE-dangerous(无原唱),http://em.21dtv.com/songs/60001151.mkv +童唱-dancer,http://em.21dtv.com/songs/60001140.mkv +佚名-dallas(无原唱),http://em.21dtv.com/songs/60001131.mkv +五月天-d n a,http://em.21dtv.com/songs/60001122.mkv +严正花-d i s c o,http://em.21dtv.com/songs/60001121.mkv +黄立成+麻吉-屌,http://em.21dtv.com/songs/60106500.mkv +PLUMB-Cut,http://em.21dtv.com/songs/60100748.mkv +DANIEL POWTER-cupid,http://em.21dtv.com/songs/60070321.mkv +许永生-crying,http://em.21dtv.com/songs/60067868.mkv +BINGO PLAYERS-cry,http://em.21dtv.com/songs/60067867.mkv +DIVA-cry,http://em.21dtv.com/songs/60062006.mkv +BRITNEY SPEARS-criminal,http://em.21dtv.com/songs/60063567.mkv +ALANIS MORISSETTE-crazy,http://em.21dtv.com/songs/60066502.mkv +TEEN TOP-crazy,http://em.21dtv.com/songs/60065564.mkv +G-DRAGON-crayon,http://em.21dtv.com/songs/60070320.mkv +B.A.P-crash,http://em.21dtv.com/songs/60070319.mkv +BEYONC?-countdown,http://em.21dtv.com/songs/60061961.mkv +薛凯琪-Contagious,http://em.21dtv.com/songs/60096493.mkv +WILL YOUNG-come,http://em.21dtv.com/songs/60065562.mkv +崛江由衣-coloring,http://em.21dtv.com/songs/60065561.mkv +LEONA LEWIS AVICII-collide,http://em.21dtv.com/songs/60062092.mkv +BENNY BENASSI-cinema,http://em.21dtv.com/songs/60063558.mkv +赵枫-春,http://em.21dtv.com/songs/60071842.mkv +陈乃荣-春,http://em.21dtv.com/songs/60068190.mkv +宿雨涵-春,http://em.21dtv.com/songs/60062941.mkv +林峰-chok(演唱会),http://em.21dtv.com/songs/60062636.mkv +太妃堂+MC GAWEED-cheese,http://em.21dtv.com/songs/60070316.mkv +RIHANNA-cheers,http://em.21dtv.com/songs/60062138.mkv +先知玛莉-Cheer,http://em.21dtv.com/songs/60095170.mkv +RTA-Changes,http://em.21dtv.com/songs/60096157.mkv +WILL YOUNG-changes,http://em.21dtv.com/songs/60063556.mkv +SIA-Chandelier,http://em.21dtv.com/songs/60101224.mkv +PARAMORE-careful,http://em.21dtv.com/songs/60063555.mkv +LEA MICHELE-Cannonball,http://em.21dtv.com/songs/60100731.mkv +WIZ+KHALIFA-california,http://em.21dtv.com/songs/60069066.mkv +BIG BANG-cafe,http://em.21dtv.com/songs/60067862.mkv +Connie(吕莘)-春,http://em.21dtv.com/songs/60133186.mkv +吴俊宏-车,http://em.21dtv.com/songs/60126692.mkv +TONICK-撑,http://em.21dtv.com/songs/60123548.mkv +盗帅罗浩-错,http://em.21dtv.com/songs/60123047.mkv +刘邦翊-沉,http://em.21dtv.com/songs/60121456.mkv +夏滨-藏,http://em.21dtv.com/songs/60119377.mkv +金志文-尘,http://em.21dtv.com/songs/60118110.mkv +连天-缠,http://em.21dtv.com/songs/60118085.mkv +武湄-春,http://em.21dtv.com/songs/60117880.mkv +田心蕾-蠢,http://em.21dtv.com/songs/60116174.mkv +孙露-错,http://em.21dtv.com/songs/60115855.mkv +乐天-刺,http://em.21dtv.com/songs/60115668.mkv +张磊-船,http://em.21dtv.com/songs/60114548.mkv +姚可杰-闯,http://em.21dtv.com/songs/60113385.mkv +Buzz-刺,http://em.21dtv.com/songs/60112423.mkv +华晨宇-春,http://em.21dtv.com/songs/60108354.mkv +苏打绿-吵,http://em.21dtv.com/songs/60101484.mkv +秦岚-错[消伴],http://em.21dtv.com/songs/60100937.mkv +李佳薇-撤,http://em.21dtv.com/songs/60100119.mkv +方怡萍-错(无原唱),http://em.21dtv.com/songs/60095545.mkv +苏威-闯,http://em.21dtv.com/songs/60095071.mkv +林海峰-衬,http://em.21dtv.com/songs/60092881.mkv +张信哲-纯,http://em.21dtv.com/songs/60091048.mkv +安志杰-禅,http://em.21dtv.com/songs/60090945.mkv +张咪-窗,http://em.21dtv.com/songs/60089854.mkv +卡拉OK-窗,http://em.21dtv.com/songs/60089710.mkv +G-DRAGON-crooked,http://em.21dtv.com/songs/60086335.mkv +李天华-船,http://em.21dtv.com/songs/60084991.mkv +RADIOHEAD-creep(演唱会),http://em.21dtv.com/songs/60084700.mkv +左崴崴-crazy,http://em.21dtv.com/songs/60084699.mkv +陈僖仪-嘈(演唱会),http://em.21dtv.com/songs/60084674.mkv +AKB48-虫のバラード(演唱会),http://em.21dtv.com/songs/60082728.mkv +ZACH SOBIECH-clouds,http://em.21dtv.com/songs/60082125.mkv +THE1975-chocolate,http://em.21dtv.com/songs/60082122.mkv +管罄-casino,http://em.21dtv.com/songs/60082120.mkv +陈珊妮-Christine,http://em.21dtv.com/songs/60080459.mkv +MC耀宗+JR+AFRO+TOY-Cypher,http://em.21dtv.com/songs/60080404.mkv +蔡小虎-痴,http://em.21dtv.com/songs/60074943.mkv +廖文强-闯,http://em.21dtv.com/songs/60074929.mkv +张敬轩-蝉(演唱会),http://em.21dtv.com/songs/60074876.mkv +杨宗纬-馋,http://em.21dtv.com/songs/60074875.mkv +陈翔-藏,http://em.21dtv.com/songs/60074838.mkv +CARLY RAE JEPSEN-curiosity,http://em.21dtv.com/songs/60073094.mkv +LLOYD FT AWESOME JONES-cupid,http://em.21dtv.com/songs/60073092.mkv +AKB48-cry,http://em.21dtv.com/songs/60073090.mkv +FLORIDA GEORGIA LINE-cruise,http://em.21dtv.com/songs/60073089.mkv +ERIC CHURCH-creepin,http://em.21dtv.com/songs/60073088.mkv +江映蓉-crazy,http://em.21dtv.com/songs/60073086.mkv +GNARLS BARKLEY-crazy,http://em.21dtv.com/songs/60073085.mkv +AERO SMITH-crazy,http://em.21dtv.com/songs/60073084.mkv +袁娅维-crazy,http://em.21dtv.com/songs/60073083.mkv +GWEN STEFANI-cool,http://em.21dtv.com/songs/60073075.mkv +NATALIA KILLS-controversy,http://em.21dtv.com/songs/60073074.mkv +THE SOUND OF ARROWS-conquest,http://em.21dtv.com/songs/60073073.mkv +REDLIGHT KING-comeback,http://em.21dtv.com/songs/60073072.mkv +9NINE-colorful,http://em.21dtv.com/songs/60073065.mkv +CLOWN-cold,http://em.21dtv.com/songs/60073063.mkv +LANA DEL REY-cola,http://em.21dtv.com/songs/60073062.mkv +王若琳-coins,http://em.21dtv.com/songs/60073061.mkv +EMELI SANDE-clown,http://em.21dtv.com/songs/60073056.mkv +金泰妍-closer,http://em.21dtv.com/songs/60073055.mkv +TEGAN AND SARA-closer,http://em.21dtv.com/songs/60073054.mkv +WESTLIFE-close,http://em.21dtv.com/songs/60073053.mkv +板野友美-clone,http://em.21dtv.com/songs/60073052.mkv +陈奕迅-class,http://em.21dtv.com/songs/60073049.mkv +西城男孩-clarity,http://em.21dtv.com/songs/60073048.mkv +RASCAL FLATTS-changed,http://em.21dtv.com/songs/60073044.mkv +THE XX-chained,http://em.21dtv.com/songs/60073042.mkv +WHITNEY HOUSTON+JORDIN SPARKS-celebrate,http://em.21dtv.com/songs/60073041.mkv +THE WHITE TIE AFFAIR-candle,http://em.21dtv.com/songs/60073032.mkv +岚-calling,http://em.21dtv.com/songs/60073028.mkv +KID ROCK-collide,http://em.21dtv.com/songs/60067864.mkv +LITTLE MIX-cannonball,http://em.21dtv.com/songs/60067863.mkv +USHER-climax,http://em.21dtv.com/songs/60066444.mkv +林峰-chok,http://em.21dtv.com/songs/60060778.mkv +ACE HOOD+JAZMINE SUL-champion,http://em.21dtv.com/songs/60060777.mkv +潘越云-错,http://em.21dtv.com/songs/60013629.mkv +陈德志-错,http://em.21dtv.com/songs/60013628.mkv +罗中旭-刺,http://em.21dtv.com/songs/60013456.mkv +杜德伟-刺,http://em.21dtv.com/songs/60013455.mkv +李玲玉-春,http://em.21dtv.com/songs/60013215.mkv +五月天-闯,http://em.21dtv.com/songs/60013199.mkv +戴洛-闯,http://em.21dtv.com/songs/60013198.mkv +佚名-窗,http://em.21dtv.com/songs/60013174.mkv +余天-船,http://em.21dtv.com/songs/60013140.mkv +那英-船,http://em.21dtv.com/songs/60013139.mkv +方逸华-船,http://em.21dtv.com/songs/60013138.mkv +蔡琴-船,http://em.21dtv.com/songs/60013137.mkv +何炅-冲,http://em.21dtv.com/songs/60012837.mkv +高向鹏-冲(无原唱),http://em.21dtv.com/songs/60012836.mkv +林慧萍-驰,http://em.21dtv.com/songs/60012776.mkv +佚名-痴(无原唱),http://em.21dtv.com/songs/60012664.mkv +杨坤-城(演唱会),http://em.21dtv.com/songs/60012609.mkv +周杰伦-扯,http://em.21dtv.com/songs/60012475.mkv +周华健-潮,http://em.21dtv.com/songs/60012439.mkv +童唱-蝉,http://em.21dtv.com/songs/60012268.mkv +童唱-蝉(无原唱),http://em.21dtv.com/songs/60012267.mkv +彩虹姐姐-蝉(无原唱),http://em.21dtv.com/songs/60012266.mkv +王菲菲-茶,http://em.21dtv.com/songs/60012200.mkv +童唱-草,http://em.21dtv.com/songs/60012056.mkv +海辰-蚕,http://em.21dtv.com/songs/60012012.mkv +斯琴高丽+顾峰-猜,http://em.21dtv.com/songs/60011862.mkv +爱戴-猜,http://em.21dtv.com/songs/60011861.mkv +宇多田光-colors,http://em.21dtv.com/songs/60005318.mkv +太极乐队-crystal,http://em.21dtv.com/songs/60001112.mkv +太极乐队-crystal(演唱会),http://em.21dtv.com/songs/60001111.mkv +佚名-crying,http://em.21dtv.com/songs/60001109.mkv +郑秀文-crying(演唱会),http://em.21dtv.com/songs/60001108.mkv +MICHAEL JACKSON-cry,http://em.21dtv.com/songs/60001100.mkv +张学友-cry(演唱会),http://em.21dtv.com/songs/60001099.mkv +佚名-crush,http://em.21dtv.com/songs/60001093.mkv +JENNIFER PAIGE-crush,http://em.21dtv.com/songs/60001092.mkv +HUEY LEWIS+GWYNETH P-cruising,http://em.21dtv.com/songs/60001091.mkv +滨崎步-crossroad,http://em.21dtv.com/songs/60001088.mkv +AT17-creep(演唱会),http://em.21dtv.com/songs/60001082.mkv +PRINCE-cream,http://em.21dtv.com/songs/60001081.mkv +LMF-crazychildren,http://em.21dtv.com/songs/60001079.mkv +张菲-crazy,http://em.21dtv.com/songs/60001078.mkv +佚名-crazy,http://em.21dtv.com/songs/60001077.mkv +柯有伦-crazy,http://em.21dtv.com/songs/60001076.mkv +艾雨-crazy,http://em.21dtv.com/songs/60001075.mkv +WILLIE NELSON-crazy,http://em.21dtv.com/songs/60001074.mkv +P.CLINE-crazy,http://em.21dtv.com/songs/60001073.mkv +K+CI+JOJO-crazy,http://em.21dtv.com/songs/60001072.mkv +JULIO LNGLESIAS-crazy,http://em.21dtv.com/songs/60001071.mkv +B.A.D-crazy(演唱会),http://em.21dtv.com/songs/60001069.mkv +LINKIN PARK-crawling,http://em.21dtv.com/songs/60001057.mkv +ROXETTE-crash!boom!bang!,http://em.21dtv.com/songs/60001056.mkv +佚名-copacabana,http://em.21dtv.com/songs/60001032.mkv +BARRY MANILOW-copacabana,http://em.21dtv.com/songs/60001031.mkv +佚名-control,http://em.21dtv.com/songs/60001029.mkv +吴雨霏-control,http://em.21dtv.com/songs/60001028.mkv +佚名-constantly,http://em.21dtv.com/songs/60001026.mkv +潘迪华-constantly(演唱会),http://em.21dtv.com/songs/60001025.mkv +佚名-connected,http://em.21dtv.com/songs/60001023.mkv +佚名-congratulations,http://em.21dtv.com/songs/60001022.mkv +GLORIA ESTEFAN+MIAMI-conga,http://em.21dtv.com/songs/60001021.mkv +叶丽仪-conga(演唱会),http://em.21dtv.com/songs/60001020.mkv +佚名-confesion,http://em.21dtv.com/songs/60001018.mkv +AVRIL LAVIGNE-complicated,http://em.21dtv.com/songs/60001017.mkv +MICHAEL BOLTON-completely,http://em.21dtv.com/songs/60001015.mkv +CROSSFADE-cold,http://em.21dtv.com/songs/60000971.mkv +H.NILSSON-coconut(无原唱),http://em.21dtv.com/songs/60000967.mkv +FERGIE-clumsy,http://em.21dtv.com/songs/60000963.mkv +NE+YO-closer,http://em.21dtv.com/songs/60000959.mkv +佚名-clelbration,http://em.21dtv.com/songs/60000950.mkv +佚名-classic,http://em.21dtv.com/songs/60000948.mkv +ERIC CLAPTON-circus,http://em.21dtv.com/songs/60000945.mkv +BRITNEY SPEARS-circus,http://em.21dtv.com/songs/60000944.mkv +徐仁英-cinderella,http://em.21dtv.com/songs/60000940.mkv +TATA YOUNG-cinderella,http://em.21dtv.com/songs/60000939.mkv +大塚爱-chu-lip,http://em.21dtv.com/songs/60000938.mkv +佚名-chostbusters,http://em.21dtv.com/songs/60000929.mkv +THE HOOSIERS-choices,http://em.21dtv.com/songs/60000927.mkv +ABBA-chiquitita,http://em.21dtv.com/songs/60000922.mkv +佚名-child,http://em.21dtv.com/songs/60000916.mkv +佚名-cherish,http://em.21dtv.com/songs/60000911.mkv +MADONNA-cherish,http://em.21dtv.com/songs/60000910.mkv +女声-charade,http://em.21dtv.com/songs/60000907.mkv +男声-charade,http://em.21dtv.com/songs/60000906.mkv +MIWA-change,http://em.21dtv.com/songs/60000903.mkv +F.I.R-change,http://em.21dtv.com/songs/60000902.mkv +佚名-change(无原唱),http://em.21dtv.com/songs/60000901.mkv +AIR SUPPLY-chances(演唱会),http://em.21dtv.com/songs/60000898.mkv +CHIPMUNK-champion,http://em.21dtv.com/songs/60000896.mkv +佚名-chains,http://em.21dtv.com/songs/60000895.mkv +J.GEILS BAND-centerfold,http://em.21dtv.com/songs/60000884.mkv +太极乐队-celia(演唱会),http://em.21dtv.com/songs/60000883.mkv +佚名-celebrity,http://em.21dtv.com/songs/60000882.mkv +MADONNA-celebration,http://em.21dtv.com/songs/60000881.mkv +KOOL+THE GANG-celebration,http://em.21dtv.com/songs/60000880.mkv +张靓颖-celebrate,http://em.21dtv.com/songs/60000879.mkv +佚名-cecilia,http://em.21dtv.com/songs/60000878.mkv +JOHNNY MATHIS-cavatina,http://em.21dtv.com/songs/60000877.mkv +陶喆-catherine,http://em.21dtv.com/songs/60000872.mkv +佚名-casablanca,http://em.21dtv.com/songs/60000867.mkv +费翔-casablanca,http://em.21dtv.com/songs/60000866.mkv +李韦-carrie,http://em.21dtv.com/songs/60000861.mkv +EUROPE-carrie,http://em.21dtv.com/songs/60000860.mkv +滨崎步-carols,http://em.21dtv.com/songs/60000859.mkv +佚名-caravan,http://em.21dtv.com/songs/60000854.mkv +萧亚轩-cappuccino,http://em.21dtv.com/songs/60000853.mkv +佚名-cantando,http://em.21dtv.com/songs/60000851.mkv +吴佩慈-candyman,http://em.21dtv.com/songs/60000810.mkv +幸田来未-candy,http://em.21dtv.com/songs/60000809.mkv +福井舞-cancan,http://em.21dtv.com/songs/60000803.mkv +佚名-caminito,http://em.21dtv.com/songs/60000784.mkv +JOHN DENVER-calypso(演唱会),http://em.21dtv.com/songs/60000783.mkv +RED HOT CHILI PEPPERS-californication,http://em.21dtv.com/songs/60000774.mkv +黄小桢-cake(无原唱),http://em.21dtv.com/songs/60000769.mkv +吕珊-cachito(演唱会),http://em.21dtv.com/songs/60000767.mkv +卓文萱-c p z,http://em.21dtv.com/songs/60000764.mkv +JESSICA+KRYSTAL-butterfly,http://em.21dtv.com/songs/60070312.mkv +KARMIN-brokenhearted,http://em.21dtv.com/songs/60069065.mkv +林峰-broken,http://em.21dtv.com/songs/60062635.mkv +林峰-broken(演唱会),http://em.21dtv.com/songs/60062634.mkv +SKY SAILING-brielle,http://em.21dtv.com/songs/60062157.mkv +JASON DERULO-breathing,http://em.21dtv.com/songs/60063549.mkv +花世纪-bravo,http://em.21dtv.com/songs/60062477.mkv +9NINE-brave,http://em.21dtv.com/songs/60071580.mkv +NEW.F.O-bounce,http://em.21dtv.com/songs/60063546.mkv +JKAI+DIXON+MIKE TOE-bong,http://em.21dtv.com/songs/60071578.mkv +SOPHIE ELLIS-bittersweet,http://em.21dtv.com/songs/60063542.mkv +KATY PERRY-birthday,http://em.21dtv.com/songs/60099669.mkv +KAT.TUN-birth,http://em.21dtv.com/songs/60063541.mkv +松下优也-bird,http://em.21dtv.com/songs/60069062.mkv +AKB48-bingo,http://em.21dtv.com/songs/60065552.mkv +LUCY ROSE-bikes,http://em.21dtv.com/songs/60070305.mkv +DEAR JANE-逼,http://em.21dtv.com/songs/60065845.mkv +容祖儿-betrue(演唱会),http://em.21dtv.com/songs/60063539.mkv +JUJU-beloved,http://em.21dtv.com/songs/60062070.mkv +U KISS-believe,http://em.21dtv.com/songs/60069060.mkv +AKB48-beginner,http://em.21dtv.com/songs/60065548.mkv +王思佳-BEAUTIFUL,http://em.21dtv.com/songs/60096401.mkv +李佳薇-beautiful,http://em.21dtv.com/songs/60070302.mkv +2PM-beautiful,http://em.21dtv.com/songs/60067854.mkv +BRITNEY SPEARS-beautiful,http://em.21dtv.com/songs/60065547.mkv +蔡依林-beast,http://em.21dtv.com/songs/60069056.mkv +SKRILLEX-bangarang,http://em.21dtv.com/songs/60070300.mkv +AFTER+SCHOOL-bang,http://em.21dtv.com/songs/60061943.mkv +0086男团-baha,http://em.21dtv.com/songs/60070299.mkv +低调组合-Bad,http://em.21dtv.com/songs/60127729.mkv +少女部落格-babyblog,http://em.21dtv.com/songs/60063535.mkv +机动现场-Baby,http://em.21dtv.com/songs/60080705.mkv +JUSTIN BIEBER-baby,http://em.21dtv.com/songs/60063534.mkv +大嘴巴-baboo,http://em.21dtv.com/songs/60065633.mkv +刘栋升-奔,http://em.21dtv.com/songs/60116589.mkv +郑志立-白,http://em.21dtv.com/songs/60104489.mkv +冉青霞-爸,http://em.21dtv.com/songs/60101929.mkv +王君馨-breakaway,http://em.21dtv.com/songs/60086330.mkv +GI+DOK-booshit,http://em.21dtv.com/songs/60086328.mkv +DYNAMIC DUO+MUZIE-baaam,http://em.21dtv.com/songs/60086322.mkv +SHAYNE WARD-breathless,http://em.21dtv.com/songs/60084697.mkv +SELENA GOMEZ-birthday,http://em.21dtv.com/songs/60084695.mkv +SARA BAREILLES-brave,http://em.21dtv.com/songs/60082113.mkv +IGGY AZALEA-bounce,http://em.21dtv.com/songs/60082110.mkv +陈品如-blindness,http://em.21dtv.com/songs/60082104.mkv +WRETCH 32+SHAKKA-blackout,http://em.21dtv.com/songs/60082102.mkv +BIFFY CLYRO-biblical,http://em.21dtv.com/songs/60082097.mkv +陈僖仪-believe,http://em.21dtv.com/songs/60082094.mkv +MARIAH CAREY+MIGUEL-beautiful,http://em.21dtv.com/songs/60082092.mkv +东海-beautiful(演唱会),http://em.21dtv.com/songs/60082091.mkv +EXO-M-baby(演唱会),http://em.21dtv.com/songs/60082077.mkv +BUCK TICK-唄(无原唱),http://em.21dtv.com/songs/60080484.mkv +郑融-爆,http://em.21dtv.com/songs/60074633.mkv +陈妍希-beautiful,http://em.21dtv.com/songs/60074082.mkv +TONE DAMLI-butterflies,http://em.21dtv.com/songs/60073021.mkv +KAMALIYA-butterflies,http://em.21dtv.com/songs/60073020.mkv +ACE HOOD-bugatti,http://em.21dtv.com/songs/60073016.mkv +GAIN+HYUNGWOO-brunch,http://em.21dtv.com/songs/60073014.mkv +TRAIN+ASHLEY MONROE-bruises,http://em.21dtv.com/songs/60073013.mkv +星云兄弟-broken,http://em.21dtv.com/songs/60073011.mkv +岚-breathless,http://em.21dtv.com/songs/60073004.mkv +DELILAH-breathe,http://em.21dtv.com/songs/60073003.mkv +THREE DAYS GRACE-break,http://em.21dtv.com/songs/60073001.mkv +JOSH GROBAN-brave,http://em.21dtv.com/songs/60072999.mkv +CALVIN HARRIS+KELIS-bounce,http://em.21dtv.com/songs/60072993.mkv +LEANN RIMES-borrowed(演唱会),http://em.21dtv.com/songs/60072991.mkv +DECISIONS+MILEY CYRUS-borgore,http://em.21dtv.com/songs/60072989.mkv +NICOLE SCHERZINGER-boomerang,http://em.21dtv.com/songs/60072988.mkv +MISS WILLIE BROWN-bonafied(演唱会),http://em.21dtv.com/songs/60072986.mkv +LIMP BIZKIT-boiler,http://em.21dtv.com/songs/60072985.mkv +孙佳仁-bloom,http://em.21dtv.com/songs/60072979.mkv +BREATHE CAROLINA-blackout,http://em.21dtv.com/songs/60072975.mkv +DINO-blackbird,http://em.21dtv.com/songs/60072974.mkv +ELLIE GOULDING-bittersweet,http://em.21dtv.com/songs/60072971.mkv +BOW WOW+T-PAIN-better,http://em.21dtv.com/songs/60072966.mkv +加藤ミリヤ & 清水翔太-believe,http://em.21dtv.com/songs/60072960.mkv +PUSSYCAT DOLLS-beep,http://em.21dtv.com/songs/60072954.mkv +绚香-beautiful,http://em.21dtv.com/songs/60072947.mkv +MS.OOJA-be,http://em.21dtv.com/songs/60072936.mkv +林峰-bb,http://em.21dtv.com/songs/60072928.mkv +G.NA-banana,http://em.21dtv.com/songs/60072923.mkv +T.I.+LIL WAYNE-ball,http://em.21dtv.com/songs/60072922.mkv +NEW BOYZ-backseat,http://em.21dtv.com/songs/60072919.mkv +COLT FORD+JAKE OWEN-back,http://em.21dtv.com/songs/60072916.mkv +丁丁+黄一-baby,http://em.21dtv.com/songs/60072914.mkv +JUSTIN BIEBER-boyfriend,http://em.21dtv.com/songs/60066097.mkv +黄妃-伴,http://em.21dtv.com/songs/60062486.mkv +FANTASIA-bittersweet,http://em.21dtv.com/songs/60060813.mkv +和田光司-butterfly,http://em.21dtv.com/songs/60060776.mkv +BOYFRIEND-boyfriend,http://em.21dtv.com/songs/60060774.mkv +PITBULL-blanco,http://em.21dtv.com/songs/60060770.mkv +清水翔太-believe,http://em.21dtv.com/songs/60060765.mkv +钟旋菱-步,http://em.21dtv.com/songs/60011833.mkv +陈百强-不,http://em.21dtv.com/songs/60010954.mkv +路嘉欣-病,http://em.21dtv.com/songs/60010879.mkv +谭晶-兵,http://em.21dtv.com/songs/60010861.mkv +康康-别,http://em.21dtv.com/songs/60010559.mkv +丁文琪-别,http://em.21dtv.com/songs/60010558.mkv +彭羚-变(演唱会),http://em.21dtv.com/songs/60010484.mkv +苏芮-变(无原唱),http://em.21dtv.com/songs/60010483.mkv +孙燕姿-奔,http://em.21dtv.com/songs/60010311.mkv +玄武-悲,http://em.21dtv.com/songs/60010108.mkv +吴淑敏-伴,http://em.21dtv.com/songs/60009912.mkv +黄小琥-伴(演唱会),http://em.21dtv.com/songs/60009911.mkv +罗时丰-伴(无原唱),http://em.21dtv.com/songs/60009910.mkv +佚名-班,http://em.21dtv.com/songs/60009829.mkv +周渝民-白,http://em.21dtv.com/songs/60009649.mkv +吴奇隆-白,http://em.21dtv.com/songs/60009648.mkv +梁汉文-八(演唱会),http://em.21dtv.com/songs/60009450.mkv +李玟-byob,http://em.21dtv.com/songs/60000761.mkv +MARIAH CAREY-byebye,http://em.21dtv.com/songs/60000760.mkv +佚名-butterfly,http://em.21dtv.com/songs/60000745.mkv +裘海正-butterfly,http://em.21dtv.com/songs/60000744.mkv +李雨寰-butterfly,http://em.21dtv.com/songs/60000743.mkv +ROBIN REX-butterfly,http://em.21dtv.com/songs/60000742.mkv +MARIAH CAREY-butterfly,http://em.21dtv.com/songs/60000741.mkv +ANDY WILLIAMS-butterfly,http://em.21dtv.com/songs/60000740.mkv +佚名-butterfhy,http://em.21dtv.com/songs/60000739.mkv +幸田来未-but,http://em.21dtv.com/songs/60000738.mkv +群星-burning,http://em.21dtv.com/songs/60000734.mkv +MARIA ARREDONDO-burning,http://em.21dtv.com/songs/60000733.mkv +USHER-burn,http://em.21dtv.com/songs/60000729.mkv +东于哲-buddy,http://em.21dtv.com/songs/60000726.mkv +COLBIE CAILLAT-bubbly,http://em.21dtv.com/songs/60000724.mkv +BLUE-bubblin,http://em.21dtv.com/songs/60000723.mkv +玉置成実-brightdown,http://em.21dtv.com/songs/60000711.mkv +THE CORRS-breathless,http://em.21dtv.com/songs/60000709.mkv +MISS A-breathe,http://em.21dtv.com/songs/60000708.mkv +FAITH HILL-breathe,http://em.21dtv.com/songs/60000707.mkv +BLU CANTRELL FEAT.SE-breathe,http://em.21dtv.com/songs/60000706.mkv +KELLY CLARKSON-breakaway,http://em.21dtv.com/songs/60000691.mkv +LOOKING GLASS-brandy,http://em.21dtv.com/songs/60000684.mkv +佚名-brandy(无原唱),http://em.21dtv.com/songs/60000683.mkv +何洁+魏晨-boys,http://em.21dtv.com/songs/60000681.mkv +SPEARS BRITNEY-boys(the co-ed remix),http://em.21dtv.com/songs/60000680.mkv +佚名-boyfriend,http://em.21dtv.com/songs/60000677.mkv +ASHLEE SIMPSON-boyfriend,http://em.21dtv.com/songs/60000676.mkv +王一冰-boy,http://em.21dtv.com/songs/60000674.mkv +MADONNA-borderline,http://em.21dtv.com/songs/60000657.mkv +佚名-bootylicious,http://em.21dtv.com/songs/60000655.mkv +中国娃娃-boom,http://em.21dtv.com/songs/60000654.mkv +S.H.E-boom,http://em.21dtv.com/songs/60000653.mkv +ENERGY-boom,http://em.21dtv.com/songs/60000652.mkv +CRAIG MORGAN-bonfire,http://em.21dtv.com/songs/60000645.mkv +东方神起-bolero,http://em.21dtv.com/songs/60000642.mkv +滨崎步-bold&delicious,http://em.21dtv.com/songs/60000641.mkv +AIRPLANES+HAYLEY WIL-bob,http://em.21dtv.com/songs/60000639.mkv +陶晶莹-blue(演唱会),http://em.21dtv.com/songs/60000636.mkv +KESHA-blow,http://em.21dtv.com/songs/60000617.mkv +浜崎あゆみ-blossom,http://em.21dtv.com/songs/60000616.mkv +张敬轩-blessing,http://em.21dtv.com/songs/60000613.mkv +张敬轩-blessing(演唱会),http://em.21dtv.com/songs/60000612.mkv +CHRISTINA AGUILERA-blessed,http://em.21dtv.com/songs/60000611.mkv +J.LENNON+P.MCCARTNEY-blackbird(无原唱),http://em.21dtv.com/songs/60000603.mkv +G.NA-black+white,http://em.21dtv.com/songs/60000602.mkv +MEREDITH BROOKS-bitch,http://em.21dtv.com/songs/60000590.mkv +TWINS-bingo,http://em.21dtv.com/songs/60000588.mkv +BACKSTREET BOYS-bigger,http://em.21dtv.com/songs/60000583.mkv +冠宇-bg(无原唱),http://em.21dtv.com/songs/60000574.mkv +佚名-beth,http://em.21dtv.com/songs/60000562.mkv +MATCHBOX 20-bent,http://em.21dtv.com/songs/60000552.mkv +MATCHBOX TWENTY-bent(无原唱),http://em.21dtv.com/songs/60000551.mkv +MICHAEL JACKSON-ben,http://em.21dtv.com/songs/60000549.mkv +佚名-believe,http://em.21dtv.com/songs/60000547.mkv +古巨基-believe,http://em.21dtv.com/songs/60000546.mkv +杜德伟-believe,http://em.21dtv.com/songs/60000545.mkv +CHER-believe,http://em.21dtv.com/songs/60000544.mkv +S.H.E-belief,http://em.21dtv.com/songs/60000542.mkv +东方神起-begin,http://em.21dtv.com/songs/60000541.mkv +MADCON-beggin,http://em.21dtv.com/songs/60000538.mkv +佚名-be-bop-a-lula,http://em.21dtv.com/songs/60000517.mkv +王心凌-beauty,http://em.21dtv.com/songs/60000516.mkv +佚名-beautiful,http://em.21dtv.com/songs/60000512.mkv +梁静茹-beautiful,http://em.21dtv.com/songs/60000511.mkv +CHRISTINA AGUILERA-beautiful,http://em.21dtv.com/songs/60000510.mkv +木村カエラ-banzai,http://em.21dtv.com/songs/60000458.mkv +浜崎あゆみ-ballad,http://em.21dtv.com/songs/60000451.mkv +ENRIQUE IGLESIAS-bailamos,http://em.21dtv.com/songs/60000449.mkv +JENNIFER LOPEZ-baila,http://em.21dtv.com/songs/60000448.mkv +佚名-bad,http://em.21dtv.com/songs/60000447.mkv +BRANDY-baby,http://em.21dtv.com/songs/60000414.mkv +D.PORTER+I.HAYES-baby(无原唱),http://em.21dtv.com/songs/60000413.mkv +DENNIS DE YOUNG-babe,http://em.21dtv.com/songs/60000377.mkv +谢金燕-babe(无原唱),http://em.21dtv.com/songs/60000376.mkv +东方T&J-babe(无原唱),http://em.21dtv.com/songs/60000375.mkv +江若琳-babaya,http://em.21dtv.com/songs/60000374.mkv +黎明-baba,http://em.21dtv.com/songs/60000373.mkv +陈文媛-b o b o,http://em.21dtv.com/songs/60000368.mkv +沈文程-b b call(演唱会)(无原唱),http://em.21dtv.com/songs/60000367.mkv +小龙女-b b b,http://em.21dtv.com/songs/60000366.mkv +徐仁国-Bomtanaba,http://em.21dtv.com/songs/60100869.mkv +杨坤-爱,http://em.21dtv.com/songs/60128110.mkv +大王叫我来巡山+暴走萝莉-爱,http://em.21dtv.com/songs/60127886.mkv +CEE LO GREEN-anyway,http://em.21dtv.com/songs/60065545.mkv +MAGNETIC MAN-anthemic,http://em.21dtv.com/songs/60063530.mkv +Lou Bega-Angelina(演唱会),http://em.21dtv.com/songs/60127656.mkv +艾菲-Angel,http://em.21dtv.com/songs/60100406.mkv +阿杜-Andy,http://em.21dtv.com/songs/60128506.mkv +东方神起-android,http://em.21dtv.com/songs/60071567.mkv +LONESTAR-amazed,http://em.21dtv.com/songs/60065571.mkv +林正豪+莫熙儿-爱LOVE,http://em.21dtv.com/songs/60080594.mkv +林欣彤-ainy(演唱会),http://em.21dtv.com/songs/60063523.mkv +赵多娜-爱,http://em.21dtv.com/songs/60069228.mkv +MIGUEL-adorn,http://em.21dtv.com/songs/60070295.mkv +INCUBUS-adolescents,http://em.21dtv.com/songs/60065539.mkv +隆莎-爱dida,http://em.21dtv.com/songs/60084789.mkv +SPINEL X-action,http://em.21dtv.com/songs/60063520.mkv +小松未可子-ABC,http://em.21dtv.com/songs/60099969.mkv +容祖儿-爱ASHITERU,http://em.21dtv.com/songs/60092528.mkv +GOT7-A,http://em.21dtv.com/songs/60132084.mkv +张献仁-傲,http://em.21dtv.com/songs/60131416.mkv +麦克疯-爱,http://em.21dtv.com/songs/60129828.mkv +刘惜君-爱,http://em.21dtv.com/songs/60128825.mkv +欢子-爱,http://em.21dtv.com/songs/60127139.mkv +维妮亚-爱,http://em.21dtv.com/songs/60126022.mkv +吴若希-爱,http://em.21dtv.com/songs/60125301.mkv +陈志朋-爱,http://em.21dtv.com/songs/60124634.mkv +罗逻圣-爱,http://em.21dtv.com/songs/60122014.mkv +周昊天-爱,http://em.21dtv.com/songs/60121508.mkv +吴若希-爱,http://em.21dtv.com/songs/60121500.mkv +和汇慧-爱,http://em.21dtv.com/songs/60119363.mkv +任韵淇-爱,http://em.21dtv.com/songs/60118325.mkv +袁娅维-爱,http://em.21dtv.com/songs/60118030.mkv +庄心妍-哎,http://em.21dtv.com/songs/60117707.mkv +张怡诺-爱,http://em.21dtv.com/songs/60116790.mkv +陈泳泼-爱,http://em.21dtv.com/songs/60115502.mkv +小虎队-爱,http://em.21dtv.com/songs/60115118.mkv +谭维维+杨宇-爱,http://em.21dtv.com/songs/60112970.mkv +GOT7-A,http://em.21dtv.com/songs/60110764.mkv +A Lin-爱,http://em.21dtv.com/songs/60109080.mkv +巫启贤-爱,http://em.21dtv.com/songs/60105797.mkv +白穆+张卓含威-爱,http://em.21dtv.com/songs/60104342.mkv +羽泉-唉,http://em.21dtv.com/songs/60096578.mkv +羽泉+苏有朋-爱,http://em.21dtv.com/songs/60094636.mkv +BABYMETAL-メギツネ,http://em.21dtv.com/songs/60086388.mkv +NMB48-カモネギックス,http://em.21dtv.com/songs/60086386.mkv +郑俊弘-angels,http://em.21dtv.com/songs/60086320.mkv +陶辚竹-爱,http://em.21dtv.com/songs/60084788.mkv +超泉RZ组合-爱,http://em.21dtv.com/songs/60084787.mkv +三泽纱千香-リンクス,http://em.21dtv.com/songs/60084777.mkv +阿桑-angle,http://em.21dtv.com/songs/60084692.mkv +高铃-爱してる,http://em.21dtv.com/songs/60082461.mkv +FLIP-ワンダーランド,http://em.21dtv.com/songs/60082448.mkv +シド-レイン(演唱会),http://em.21dtv.com/songs/60082447.mkv +BBABYMETAL-メギツネ,http://em.21dtv.com/songs/60082446.mkv +MIWA-ミラクル,http://em.21dtv.com/songs/60082445.mkv +AKB48-マジジョテッペンブルース,http://em.21dtv.com/songs/60082444.mkv +モーニング娘。-ブレインストーミング(演唱会),http://em.21dtv.com/songs/60082443.mkv +恵比寿マスカッツ-ハニーとラップ,http://em.21dtv.com/songs/60082440.mkv +ノースリーブス-タネ(演唱会),http://em.21dtv.com/songs/60082437.mkv +BUMP OF CHICKEN-ゼロ,http://em.21dtv.com/songs/60082436.mkv +ANNABEL-スモルワールドロップ,http://em.21dtv.com/songs/60082435.mkv +CLARIS-コネクト,http://em.21dtv.com/songs/60082434.mkv +AKB48-エンドロル(演唱会),http://em.21dtv.com/songs/60082433.mkv +EGOIST-エウテルペ,http://em.21dtv.com/songs/60082432.mkv +牧野由依-ふわふわ,http://em.21dtv.com/songs/60082431.mkv +惠比寿マスカッツ-おかあさん,http://em.21dtv.com/songs/60082427.mkv +阿峻飞猫-aziza,http://em.21dtv.com/songs/60082074.mkv +温岚-ayo,http://em.21dtv.com/songs/60082073.mkv +SAN CISCO-awkward,http://em.21dtv.com/songs/60082072.mkv +EXO-M-angle,http://em.21dtv.com/songs/60082071.mkv +AQUA TIMEZ-alones,http://em.21dtv.com/songs/60082061.mkv +孟楠-爱,http://em.21dtv.com/songs/60081570.mkv +塔斯肯-Angel,http://em.21dtv.com/songs/60081510.mkv +周礼虎-爱,http://em.21dtv.com/songs/60081275.mkv +墨绿森林-爱,http://em.21dtv.com/songs/60080675.mkv +张可-爱,http://em.21dtv.com/songs/60074295.mkv +李娅莎-爱,http://em.21dtv.com/songs/60074294.mkv +德龙-爱,http://em.21dtv.com/songs/60074293.mkv +羽泉-爱,http://em.21dtv.com/songs/60074292.mkv +尚雯婕-atypical,http://em.21dtv.com/songs/60072909.mkv +BLAISE-attitude,http://em.21dtv.com/songs/60072907.mkv +陈沛轩-aspiration,http://em.21dtv.com/songs/60072904.mkv +徐仁英-anymore,http://em.21dtv.com/songs/60072897.mkv +SWEDISH HOUSE MAFIA+KNIFE PART-antidote,http://em.21dtv.com/songs/60072896.mkv +KE$HA-animal,http://em.21dtv.com/songs/60072894.mkv +CONOR MAYNARD+WILEY-animal,http://em.21dtv.com/songs/60072893.mkv +THE XX-angels,http://em.21dtv.com/songs/60072892.mkv +侯祖辛-angel,http://em.21dtv.com/songs/60072891.mkv +陈浩德-amour(演唱会),http://em.21dtv.com/songs/60072889.mkv +袁娅维-amazing,http://em.21dtv.com/songs/60072886.mkv +MATT CARDLE-amazing,http://em.21dtv.com/songs/60072885.mkv +SISTER-alone,http://em.21dtv.com/songs/60072884.mkv +KREWELLA-alive,http://em.21dtv.com/songs/60072872.mkv +超新星-addicted(演唱会),http://em.21dtv.com/songs/60072868.mkv +自由发挥-abc,http://em.21dtv.com/songs/60072866.mkv +惠比寿マスカッツ-abayo,http://em.21dtv.com/songs/60072865.mkv +ONEREPUBLIC-apologize,http://em.21dtv.com/songs/60062123.mkv +TOKIO HOTEL-automatic,http://em.21dtv.com/songs/60060756.mkv +LADY GAGA-alejandro(演唱会),http://em.21dtv.com/songs/60060753.mkv +YUI-again,http://em.21dtv.com/songs/60032282.mkv +佚名-昂,http://em.21dtv.com/songs/60009415.mkv +秀兰玛雅-岸,http://em.21dtv.com/songs/60009354.mkv +夏韶声-谙(演唱会),http://em.21dtv.com/songs/60009347.mkv +郑秀文-爱,http://em.21dtv.com/songs/60006927.mkv +薛凯琪-爱,http://em.21dtv.com/songs/60006926.mkv +许巍-爱,http://em.21dtv.com/songs/60006925.mkv +谢霆锋+蔡卓妍-爱,http://em.21dtv.com/songs/60006924.mkv +小虎队-爱,http://em.21dtv.com/songs/60006922.mkv +王铮亮-爱,http://em.21dtv.com/songs/60006921.mkv +王建杰-爱,http://em.21dtv.com/songs/60006920.mkv +容祖儿-爱,http://em.21dtv.com/songs/60006919.mkv +莫文蔚-爱,http://em.21dtv.com/songs/60006918.mkv +陈小春-爱,http://em.21dtv.com/songs/60006917.mkv +陈慧琳-爱,http://em.21dtv.com/songs/60006916.mkv +芭比-爱,http://em.21dtv.com/songs/60006915.mkv +SARA-爱,http://em.21dtv.com/songs/60006914.mkv +苏有朋-爱(演唱会),http://em.21dtv.com/songs/60006905.mkv +容祖儿-爱(演唱会),http://em.21dtv.com/songs/60006904.mkv +佚名-automatic,http://em.21dtv.com/songs/60000362.mkv +DAVID GATES-aubrey,http://em.21dtv.com/songs/60000357.mkv +陈慧琳-ask,http://em.21dtv.com/songs/60000352.mkv +SQUARE-asap,http://em.21dtv.com/songs/60000348.mkv +GEORGE MICHAEL+MARY J.BLIGE-as,http://em.21dtv.com/songs/60000347.mkv +安七炫-arrow,http://em.21dtv.com/songs/60000338.mkv +郑秀文-arigatou,http://em.21dtv.com/songs/60000333.mkv +郑秀文-arigator(演唱会),http://em.21dtv.com/songs/60000332.mkv +ENERGY-arigato,http://em.21dtv.com/songs/60000331.mkv +TIMBALAND-apologize,http://em.21dtv.com/songs/60000320.mkv +幸田来未-anytime,http://em.21dtv.com/songs/60000317.mkv +BRIAN MCKNIGHT-anytime,http://em.21dtv.com/songs/60000316.mkv +李孝利+FEAT+李俊基-anystar,http://em.21dtv.com/songs/60000310.mkv +MANIC STREET PREACHE-antumnsong,http://em.21dtv.com/songs/60000304.mkv +佚名-antlers,http://em.21dtv.com/songs/60000303.mkv +佚名-anticipation(无原唱),http://em.21dtv.com/songs/60000302.mkv +PITBULL-anthem,http://em.21dtv.com/songs/60000301.mkv +周启生-anna,http://em.21dtv.com/songs/60000285.mkv +NEON TREES-animal,http://em.21dtv.com/songs/60000284.mkv +佚名-anima,http://em.21dtv.com/songs/60000282.mkv +ROBBIE WILLIAMS-angels,http://em.21dtv.com/songs/60000279.mkv +蓝雨-angella,http://em.21dtv.com/songs/60000277.mkv +陶喆-angeline(演唱会),http://em.21dtv.com/songs/60000276.mkv +RICHARD MARX-angelia,http://em.21dtv.com/songs/60000275.mkv +赵咏华-angel,http://em.21dtv.com/songs/60000274.mkv +佚名-angel,http://em.21dtv.com/songs/60000273.mkv +陶喆-angel,http://em.21dtv.com/songs/60000272.mkv +莫文蔚-angel,http://em.21dtv.com/songs/60000271.mkv +林子祥-angel,http://em.21dtv.com/songs/60000270.mkv +林凡-angel,http://em.21dtv.com/songs/60000269.mkv +陈冠希-angel,http://em.21dtv.com/songs/60000268.mkv +T-RUSH-angel,http://em.21dtv.com/songs/60000267.mkv +SHAGGY-angel,http://em.21dtv.com/songs/60000266.mkv +SARAH MCLACHLAN-angel,http://em.21dtv.com/songs/60000265.mkv +LIONEL RICHIE-angel,http://em.21dtv.com/songs/60000264.mkv +陶喆-angel(演唱会),http://em.21dtv.com/songs/60000263.mkv +莫文蔚-angel(演唱会),http://em.21dtv.com/songs/60000262.mkv +李圣杰-angel(演唱会),http://em.21dtv.com/songs/60000261.mkv +原始林合唱团-angel(无原唱),http://em.21dtv.com/songs/60000260.mkv +佚名-angel(无原唱),http://em.21dtv.com/songs/60000259.mkv +阿杜-andy,http://em.21dtv.com/songs/60000253.mkv +梁咏琪-amour,http://em.21dtv.com/songs/60000235.mkv +张学友-amour(演唱会),http://em.21dtv.com/songs/60000234.mkv +JOE MCELDERRY-ambition,http://em.21dtv.com/songs/60000223.mkv +MADONNA-amazing,http://em.21dtv.com/songs/60000222.mkv +KANYE WESTFEAT+YOUNG JEEZY-amazing,http://em.21dtv.com/songs/60000221.mkv +INNA-amazing,http://em.21dtv.com/songs/60000220.mkv +TRADEMARK-amazed(无原唱),http://em.21dtv.com/songs/60000217.mkv +黄家强-amani(演唱会),http://em.21dtv.com/songs/60000216.mkv +BEYOND-amani(演唱会),http://em.21dtv.com/songs/60000215.mkv +BOSTON-amanda,http://em.21dtv.com/songs/60000214.mkv +佚名-always,http://em.21dtv.com/songs/60000210.mkv +幸田来未-always,http://em.21dtv.com/songs/60000209.mkv +BON JOVI-always,http://em.21dtv.com/songs/60000208.mkv +AIR SUPPLY-always(演唱会),http://em.21dtv.com/songs/60000207.mkv +佚名-always(无原唱),http://em.21dtv.com/songs/60000206.mkv +蜜雪薇琪-alright,http://em.21dtv.com/songs/60000195.mkv +佚名-alone,http://em.21dtv.com/songs/60000192.mkv +HEART-alone,http://em.21dtv.com/songs/60000191.mkv +JENNIFER LOPEZ-alive,http://em.21dtv.com/songs/60000137.mkv +佚名-alfie,http://em.21dtv.com/songs/60000135.mkv +佚名-aldila,http://em.21dtv.com/songs/60000134.mkv +PETER PAN-aku&bintang,http://em.21dtv.com/songs/60000133.mkv +蜜雪薇琪-aitai,http://em.21dtv.com/songs/60000131.mkv +斯琴格日乐-ah ha yi ya ha(演唱会),http://em.21dtv.com/songs/60000123.mkv +佚名-again,http://em.21dtv.com/songs/60000119.mkv +LENNY KRAVITZ-again,http://em.21dtv.com/songs/60000118.mkv +JANET JACKSON-again,http://em.21dtv.com/songs/60000117.mkv +2PM-again&again,http://em.21dtv.com/songs/60000116.mkv +高杰-ag,http://em.21dtv.com/songs/60000115.mkv +D.PAICH+J.PORCARO-africa(无原唱),http://em.21dtv.com/songs/60000107.mkv +佚名-aeiou,http://em.21dtv.com/songs/60000106.mkv +佚名-adia,http://em.21dtv.com/songs/60000103.mkv +BROWN EYED GIRLS-abracadabra,http://em.21dtv.com/songs/60000096.mkv +刘德华-abcde,http://em.21dtv.com/songs/60000093.mkv +陈山蒽-abcd,http://em.21dtv.com/songs/60000092.mkv +童唱-abc,http://em.21dtv.com/songs/60000091.mkv +欧阳靖-abc,http://em.21dtv.com/songs/60000090.mkv +草蜢-abc(演唱会),http://em.21dtv.com/songs/60000089.mkv +草蜢-abc(无原唱),http://em.21dtv.com/songs/60000088.mkv +佚名-a-ba-ni-bi,http://em.21dtv.com/songs/60000086.mkv +RAINBOW-a,http://em.21dtv.com/songs/60000085.mkv +连诗雅-a t l,http://em.21dtv.com/songs/60000084.mkv +大欢-多年以后,http://em.21dtv.com/songs/60173759.mkv +半阳-一曲相思,http://em.21dtv.com/songs/60165633.mkv +赵方婧-芒种,http://em.21dtv.com/songs/60178956.mkv +高安+纳兰珠儿-花桥流水,http://em.21dtv.com/songs/60006910.mkv +崔伟立-酒醉的蝴蝶,http://em.21dtv.com/songs/60178952.mkv +王琪-站着等你三千年,http://em.21dtv.com/songs/60170285.mkv +王琪-万爱千恩,http://em.21dtv.com/songs/60171731.mkv +S-abracadabra,http://em.21dtv.com/songs/60000096.mkv +刘德华-abcde,http://em.21dtv.com/songs/60000093.mkv +陈山蒽-abcd,http://em.21dtv.com/songs/60000092.mkv +童唱-abc,http://em.21dtv.com/songs/60000091.mkv +欧阳靖-abc,http://em.21dtv.com/songs/60000090.mkv +草蜢-abc(演唱会),http://em.21dtv.com/songs/60000089.mkv +草蜢-abc(无原唱),http://em.21dtv.com/songs/60000088.mkv +佚名-a-ba-ni-bi,http://em.21dtv.com/songs/60000086.mkv +RAINBOW-a,http://em.21dtv.com/songs/60000085.mkv +连诗雅-a t l,http://em.21dtv.com/songs/60000084.mkv +大欢-多年以后,http://em.21dtv.com/songs/60173759.mkv +半阳-一曲相思,http://em.21dtv.com/songs/60165633.mkv +赵方婧-芒种,http://em.21dtv.com/songs/60178956.mkv +高安+纳兰珠儿-花桥流水,http://em.21dtv.com/songs/60006910.mkv \ No newline at end of file diff --git "a/json/\345\223\224\345\223\251\345\244\247\346\235\202\347\203\251.json" "b/json/\345\223\224\345\223\251\345\244\247\346\235\202\347\203\251.json" new file mode 100644 index 0000000..27b3bd2 --- /dev/null +++ "b/json/\345\223\224\345\223\251\345\244\247\346\235\202\347\203\251.json" @@ -0,0 +1,5310 @@ +{ + "classes": [ + { + "type_name": "沙雕动漫", + "type_id": "一口气沙雕动漫" + }, + { + "type_name": "纪录片", + "type_id": "纪录片超清" + }, + { + "type_name": "演唱会", + "type_id": "演唱会超清" + }, + { + "type_name": "美食", + "type_id": "美食超清" + }, + { + "type_name": "食谱", + "type_id": "食谱" + }, + { + "type_name": "体育", + "type_id": "体育超清" + }, + { + "type_name": "球星", + "type_id": "球星" + }, + { + "type_name": "旅游", + "type_id": "旅游" + }, + { + "type_name": "风景", + "type_id": "风景4K" + }, + { + "type_name": "说案", + "type_id": "说案" + }, + { + "type_name": "知名UP主", + "type_id": "知名UP主" + }, + { + "type_name": "探索发现", + "type_id": "探索发现超清" + }, + { + "type_name": "鬼畜", + "type_id": "鬼畜" + }, + { + "type_name": "搞笑", + "type_id": "搞笑超清" + }, + { + "type_name": "儿童", + "type_id": "儿童超清" + }, + { + "type_name": "动物世界", + "type_id": "动物世界超清" + }, + { + "type_name": "相声小品", + "type_id": "相声小品超清" + }, + { + "type_name": "戏曲", + "type_id": "戏曲" + }, + { + "type_name": "解说", + "type_id": "解说" + }, + { + "type_name": "演讲", + "type_id": "演讲" + }, + { + "type_name": "小姐姐", + "type_id": "小姐姐超清" + }, + { + "type_name": "荒野求生", + "type_id": "荒野求生超清" + }, + { + "type_name": "健身", + "type_id": "健身" + }, + { + "type_name": "帕梅拉", + "type_id": "帕梅拉" + }, + { + "type_name": "太极拳", + "type_id": "太极拳" + }, + { + "type_name": "广场舞", + "type_id": "广场舞" + }, + { + "type_name": "舞蹈", + "type_id": "舞蹈" + }, + { + "type_name": "音乐", + "type_id": "音乐" + }, + { + "type_name": "歌曲", + "type_id": "歌曲" + }, + { + "type_name": "MV", + "type_id": "MV4K" + }, + { + "type_name": "舞曲", + "type_id": "舞曲超清" + }, + { + "type_name": "4K", + "type_id": "4K" + }, + { + "type_name": "电影", + "type_id": "电影" + }, + { + "type_name": "电视剧", + "type_id": "电视剧" + }, + { + "type_name": "白噪音", + "type_id": "白噪音超清" + }, + { + "type_name": "考公考证", + "type_id": "考公考证" + }, + { + "type_name": "平面设计教学", + "type_id": "平面设计教学" + }, + { + "type_name": "软件教程", + "type_id": "软件教程" + }, + { + "type_name": "Windows", + "type_id": "Windows" + } + ], + "filter": { + "考公考证": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "演唱会超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "演唱会超清" + }, + { + "n": "A阿杜", + "v": "阿杜演唱会超清" + }, + { + "n": "A阿黛尔", + "v": "阿黛尔演唱会超清" + }, + { + "n": "BBeyond", + "v": "Beyond演唱会超清" + }, + { + "n": "BBy2", + "v": "By2演唱会超清" + }, + { + "n": "BBIGBANG", + "v": "BIGBANG演唱会超清" + }, + { + "n": "B布兰妮", + "v": "布兰妮演唱会超清" + }, + { + "n": "B坂井泉水", + "v": "坂井泉水演唱会超清" + }, + { + "n": "C陈奕迅", + "v": "陈奕迅演唱会超清" + }, + { + "n": "C蔡依林", + "v": "蔡依林演唱会超清" + }, + { + "n": "C初音未来", + "v": "初音未来演唱会超清" + }, + { + "n": "C蔡健雅", + "v": "蔡健雅演唱会超清" + }, + { + "n": "C陈小春", + "v": "陈小春演唱会超清" + }, + { + "n": "C草蜢", + "v": "草蜢演唱会超清" + }, + { + "n": "C陈慧娴", + "v": "陈慧娴演唱会超清" + }, + { + "n": "C崔健", + "v": "崔健演唱会超清" + }, + { + "n": "C仓木麻衣", + "v": "仓木麻衣演唱会超清" + }, + { + "n": "D戴荃", + "v": "戴荃演唱会超清" + }, + { + "n": "D动力火车", + "v": "动力火车演唱会超清" + }, + { + "n": "D邓丽君", + "v": "邓丽君演唱会超清" + }, + { + "n": "D丁当", + "v": "丁当演唱会超清" + }, + { + "n": "D刀郎", + "v": "刀郎演唱会超清" + }, + { + "n": "D邓紫棋", + "v": "邓紫棋演唱会超清" + }, + { + "n": "D戴佩妮", + "v": "戴佩妮演唱会超清" + }, + { + "n": "D邓丽君", + "v": "邓丽君演唱会超清" + }, + { + "n": "F飞儿乐队", + "v": "飞儿乐队演唱会超清" + }, + { + "n": "F费玉清", + "v": "费玉清演唱会超清" + }, + { + "n": "F费翔", + "v": "费翔演唱会超清" + }, + { + "n": "F方大同", + "v": "方大同演唱会超清" + }, + { + "n": "F房东的猫", + "v": "房东的猫演唱会超清" + }, + { + "n": "F凤飞飞", + "v": "凤飞飞演唱会超清" + }, + { + "n": "F凤凰传奇", + "v": "凤凰传奇演唱会超清" + }, + { + "n": "G郭采洁", + "v": "郭采洁演唱会超清" + }, + { + "n": "G光良", + "v": "光良演唱会超清" + }, + { + "n": "G郭静", + "v": "郭静演唱会超清" + }, + { + "n": "G郭富城", + "v": "郭富城演唱会超清" + }, + { + "n": "H胡彦斌", + "v": "胡彦斌演唱会超清" + }, + { + "n": "H胡夏", + "v": "胡夏演唱会超清" + }, + { + "n": "H韩红", + "v": "韩红演唱会超清" + }, + { + "n": "H黄品源", + "v": "黄品源演唱会超清" + }, + { + "n": "H黄小琥", + "v": "黄小琥演唱会超清" + }, + { + "n": "H花儿乐队", + "v": "花儿乐队演唱会超清" + }, + { + "n": "H黄家强", + "v": "黄家强演唱会超清" + }, + { + "n": "H后街男孩", + "v": "后街男孩演唱会超清" + }, + { + "n": "J经典老歌", + "v": "经典老歌演唱会超清" + }, + { + "n": "J贾斯丁比伯", + "v": "贾斯丁比伯演唱会超清" + }, + { + "n": "J金池", + "v": "金池演唱会超清" + }, + { + "n": "J金志文", + "v": "金志文演唱会超清" + }, + { + "n": "J焦迈奇", + "v": "焦迈奇演唱会超清" + }, + { + "n": "K筷子兄弟", + "v": "筷子兄弟演唱会超清" + }, + { + "n": "L李玟", + "v": "李玟演唱会超清" + }, + { + "n": "L林忆莲", + "v": "林忆莲演唱会超清" + }, + { + "n": "L李克勤", + "v": "李克勤演唱会超清" + }, + { + "n": "L刘宪华", + "v": "刘宪华演唱会超清" + }, + { + "n": "L李圣杰", + "v": "李圣杰演唱会超清" + }, + { + "n": "L林宥嘉", + "v": "林宥嘉演唱会超清" + }, + { + "n": "L梁静茹", + "v": "梁静茹演唱会超清" + }, + { + "n": "L李健", + "v": "李健演唱会超清" + }, + { + "n": "L林俊杰", + "v": "林俊杰演唱会超清" + }, + { + "n": "L李玉刚", + "v": "李玉刚演唱会超清" + }, + { + "n": "L林志炫", + "v": "林志炫演唱会超清" + }, + { + "n": "L李荣浩", + "v": "李荣浩演唱会超清" + }, + { + "n": "L李宇春", + "v": "李宇春演唱会超清" + }, + { + "n": "L洛天依", + "v": "洛天依演唱会超清" + }, + { + "n": "L林子祥", + "v": "林子祥演唱会超清" + }, + { + "n": "L李宗盛", + "v": "李宗盛演唱会超清" + }, + { + "n": "L黎明", + "v": "黎明演唱会超清" + }, + { + "n": "L刘德华", + "v": "刘德华演唱会超清" + }, + { + "n": "L罗大佑", + "v": "罗大佑演唱会超清" + }, + { + "n": "L林肯公园", + "v": "林肯公园演唱会超清" + }, + { + "n": "LLadyGaga", + "v": "LadyGaga演唱会超清" + }, + { + "n": "L旅行团乐队", + "v": "旅行团乐队演唱会超清" + }, + { + "n": "M莫文蔚", + "v": "莫文蔚演唱会超清" + }, + { + "n": "M毛不易", + "v": "毛不易演唱会超清" + }, + { + "n": "M梅艳芳", + "v": "梅艳芳演唱会超清" + }, + { + "n": "M迈克尔杰克逊", + "v": "迈克尔杰克逊演唱会超清" + }, + { + "n": "N南拳妈妈", + "v": "南拳妈妈演唱会超清" + }, + { + "n": "P朴树", + "v": "朴树演唱会超清" + }, + { + "n": "Q齐秦", + "v": "齐秦演唱会超清" + }, + { + "n": "Q青鸟飞鱼", + "v": "青鸟飞鱼演唱会超清" + }, + { + "n": "R容祖儿", + "v": "容祖儿演唱会超清" + }, + { + "n": "R任贤齐", + "v": "任贤齐演唱会超清" + }, + { + "n": "S水木年华", + "v": "水木年华演唱会超清" + }, + { + "n": "S孙燕姿", + "v": "孙燕姿演唱会超清" + }, + { + "n": "S苏打绿", + "v": "苏打绿演唱会超清" + }, + { + "n": "SSHE", + "v": "SHE演唱会超清" + }, + { + "n": "S孙楠", + "v": "孙楠演唱会超清" + }, + { + "n": "T陶喆", + "v": "陶喆演唱会超清" + }, + { + "n": "T谭咏麟", + "v": "谭咏麟演唱会超清" + }, + { + "n": "T田馥甄", + "v": "田馥甄演唱会超清" + }, + { + "n": "T谭维维", + "v": "谭维维演唱会超清" + }, + { + "n": "T逃跑计划", + "v": "逃跑计划演唱会超清" + }, + { + "n": "T田震", + "v": "田震演唱会超清" + }, + { + "n": "T谭晶", + "v": "谭晶演唱会超清" + }, + { + "n": "T屠洪刚", + "v": "屠洪刚演唱会超清" + }, + { + "n": "T泰勒·斯威夫特", + "v": "泰勒·斯威夫特演唱会超清" + }, + { + "n": "W王力宏", + "v": "王力宏演唱会超清" + }, + { + "n": "W王杰", + "v": "王杰演唱会超清" + }, + { + "n": "W吴克群", + "v": "吴克群演唱会超清" + }, + { + "n": "W王心凌", + "v": "王心凌演唱会超清" + }, + { + "n": "W王靖雯", + "v": "好声音王靖雯演唱会超清" + }, + { + "n": "W汪峰", + "v": "汪峰演唱会超清" + }, + { + "n": "W伍佰", + "v": "伍佰演唱会超清" + }, + { + "n": "W王菲", + "v": "王菲演唱会超清" + }, + { + "n": "W五月天", + "v": "五月天演唱会超清" + }, + { + "n": "W汪苏泷", + "v": "汪苏泷演唱会超清" + }, + { + "n": "X徐佳莹", + "v": "徐佳莹演唱会超清" + }, + { + "n": "X弦子", + "v": "弦子演唱会超清" + }, + { + "n": "X萧亚轩", + "v": "萧亚轩演唱会超清" + }, + { + "n": "X许巍", + "v": "许巍演唱会超清" + }, + { + "n": "X薛之谦", + "v": "薛之谦演唱会超清" + }, + { + "n": "X许嵩", + "v": "许嵩演唱会超清" + }, + { + "n": "X小虎队", + "v": "小虎队演唱会超清" + }, + { + "n": "X萧敬腾", + "v": "萧敬腾演唱会超清" + }, + { + "n": "X谢霆锋", + "v": "谢霆锋演唱会超清" + }, + { + "n": "X徐小凤", + "v": "徐小凤演唱会超清" + }, + { + "n": "X信乐队", + "v": "信乐队演唱会超清" + }, + { + "n": "Y夜愿乐队", + "v": "夜愿乐队演唱会超清" + }, + { + "n": "Y羽泉", + "v": "羽泉演唱会超清" + }, + { + "n": "Y郁可唯", + "v": "郁可唯演唱会超清" + }, + { + "n": "Y叶倩文", + "v": "叶倩文演唱会超清" + }, + { + "n": "Y杨坤", + "v": "杨坤演唱会超清" + }, + { + "n": "Y庾澄庆", + "v": "庾澄庆演唱会超清" + }, + { + "n": "Y尤长靖", + "v": "尤长靖演唱会超清" + }, + { + "n": "Y易烊千玺", + "v": "易烊千玺演唱会超清" + }, + { + "n": "Y袁娅维", + "v": "袁娅维演唱会超清" + }, + { + "n": "Y杨丞琳", + "v": "杨丞琳演唱会超清" + }, + { + "n": "Y杨千嬅", + "v": "杨千嬅演唱会超清" + }, + { + "n": "Y杨宗纬", + "v": "杨宗纬演唱会超清" + }, + { + "n": "Z郑秀文", + "v": "郑秀文演唱会超清" + }, + { + "n": "Z周杰伦", + "v": "周杰伦演唱会超清" + }, + { + "n": "Z张学友", + "v": "张学友演唱会超清" + }, + { + "n": "Z张信哲", + "v": "张信哲演唱会超清" + }, + { + "n": "Z张宇", + "v": "张宇演唱会超清" + }, + { + "n": "Z周华健", + "v": "周华健演唱会超清" + }, + { + "n": "Z张韶涵", + "v": "张韶涵演唱会超清" + }, + { + "n": "Z周深", + "v": "周深演唱会超清" + }, + { + "n": "Z纵贯线", + "v": "纵贯线演唱会超清" + }, + { + "n": "Z赵雷", + "v": "赵雷演唱会超清" + }, + { + "n": "Z周传雄", + "v": "周传雄演唱会超清" + }, + { + "n": "Z张国荣", + "v": "张国荣演唱会超清" + }, + { + "n": "Z周慧敏", + "v": "周慧敏演唱会超清" + }, + { + "n": "Z张惠妹", + "v": "张惠妹演唱会超清" + }, + { + "n": "Z周笔畅", + "v": "周笔畅演唱会超清" + }, + { + "n": "Z郑中基", + "v": "郑中基演唱会超清" + }, + { + "n": "Z张艺兴", + "v": "张艺兴演唱会超清" + }, + { + "n": "Z张震岳", + "v": "张震岳演唱会超清" + }, + { + "n": "Z张雨生", + "v": "张雨生演唱会超清" + }, + { + "n": "Z郑智化", + "v": "郑智化演唱会超清" + }, + { + "n": "Z卓依婷", + "v": "卓依婷演唱会超清" + }, + { + "n": "Z中岛美雪", + "v": "中岛美雪演唱会超清" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "探索发现超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "电影": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "鬼畜": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "一口气沙雕动漫": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "说案": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "说案" + }, + { + "n": "汤圆", + "v": "汤圆说案" + }, + { + "n": "唐唐", + "v": "唐唐说案" + }, + { + "n": "罗翔", + "v": "罗翔说刑法" + }, + { + "n": "何家弘", + "v": "何家弘说案" + }, + { + "n": "韩诺", + "v": "韩诺说案" + }, + { + "n": "老V", + "v": "老V说案" + }, + { + "n": "禁播档案‼️", + "v": "禁播档案" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "演讲": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "全部演讲4K" + }, + { + "n": "A艾跃进", + "v": "艾跃进演讲4K" + }, + { + "n": "C超级演说家", + "v": "超级演说家4K" + }, + { + "n": "D电影", + "v": "电影演讲4K" + }, + { + "n": "D典籍里的中国", + "v": "典籍里的中国4K" + }, + { + "n": "G感动中国", + "v": "感动中国4K" + }, + { + "n": "G郭继承", + "v": "郭继承演讲4K" + }, + { + "n": "H华春莹", + "v": "华春莹演讲4K" + }, + { + "n": "L雷军", + "v": "雷军演讲4K" + }, + { + "n": "L罗翔", + "v": "罗翔演讲4K" + }, + { + "n": "R任正非", + "v": "任正非演讲4K" + }, + { + "n": "TED", + "v": "TED演讲4K" + }, + { + "n": "W汪文斌", + "v": "汪文斌演讲4K" + }, + { + "n": "Y一刻", + "v": "一刻演讲4K" + }, + { + "n": "Z赵立坚", + "v": "赵立坚演讲4K" + }, + { + "n": "Z郑强", + "v": "郑强演讲4K" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "解说": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "解说" + }, + { + "n": "电影", + "v": "电影解说" + }, + { + "n": "电视", + "v": "电视解说" + }, + { + "n": "历史", + "v": "历史解说" + }, + { + "n": "动漫", + "v": "动漫解说" + }, + { + "n": "小说", + "v": "小说解说" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "风景4K": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "风景4K" + }, + { + "n": "A澳门", + "v": "澳门风景4K" + }, + { + "n": "A安徽", + "v": "安徽风景4K" + }, + { + "n": "B布达拉宫", + "v": "布达拉宫风景4K" + }, + { + "n": "B北京", + "v": "北京风景4K" + }, + { + "n": "C重庆", + "v": "重庆风景4K" + }, + { + "n": "C草原", + "v": "草原风景4K" + }, + { + "n": "D大海", + "v": "大海风景4K" + }, + { + "n": "F福建", + "v": "福建风景4K" + }, + { + "n": "G广东", + "v": "广东风景4K" + }, + { + "n": "G广西", + "v": "广西风景4K" + }, + { + "n": "G贵州", + "v": "贵州风景4K" + }, + { + "n": "G甘肃", + "v": "甘肃风景4K" + }, + { + "n": "H海南", + "v": "海南风景4K" + }, + { + "n": "H河北", + "v": "河北风景4K" + }, + { + "n": "H河南", + "v": "河南风景4K" + }, + { + "n": "H湖北", + "v": "湖北风景4K" + }, + { + "n": "H湖南", + "v": "湖南风景4K" + }, + { + "n": "H黑龙江", + "v": "黑龙江风景4K" + }, + { + "n": "J吉林", + "v": "吉林风景4K" + }, + { + "n": "J江苏", + "v": "江苏风景4K" + }, + { + "n": "J江西", + "v": "江西风景4K" + }, + { + "n": "L辽宁", + "v": "辽宁风景4K" + }, + { + "n": "M民宿", + "v": "民宿风景4K" + }, + { + "n": "N内蒙古", + "v": "内蒙古风景4K" + }, + { + "n": "N宁夏", + "v": "宁夏风景4K" + }, + { + "n": "Q青海", + "v": "青海风景4K" + }, + { + "n": "S上海", + "v": "上海风景4K" + }, + { + "n": "S陕西", + "v": "陕西风景4K" + }, + { + "n": "S四川", + "v": "四川风景4K" + }, + { + "n": "S山西", + "v": "山西风景4K" + }, + { + "n": "S山东", + "v": "山东风景4K" + }, + { + "n": "T天津", + "v": "天津风景4K" + }, + { + "n": "T台湾", + "v": "台湾风景4K" + }, + { + "n": "T天空", + "v": "天空风景4K" + }, + { + "n": "X西湖", + "v": "西湖风景4K" + }, + { + "n": "X西藏", + "v": "西藏风景4K" + }, + { + "n": "X新疆", + "v": "新疆风景4K" + }, + { + "n": "X香港", + "v": "香港风景4K" + }, + { + "n": "Y云南", + "v": "云南风景4K" + }, + { + "n": "Z浙江", + "v": "浙江风景4K" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "MV4K": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "MV4K" + }, + { + "n": "A阿杜", + "v": "阿杜MV4K" + }, + { + "n": "A阿黛尔", + "v": "阿黛尔MV4K" + }, + { + "n": "BBeyond", + "v": "BeyondMV4K" + }, + { + "n": "BBy2", + "v": "By2MV4K" + }, + { + "n": "BBIGBANG", + "v": "BIGBANGMV4K" + }, + { + "n": "B布兰妮", + "v": "布兰妮MV4K" + }, + { + "n": "C陈奕迅", + "v": "陈奕迅MV4K" + }, + { + "n": "C蔡依林", + "v": "蔡依林MV4K" + }, + { + "n": "C初音未来", + "v": "初音未来MV4K" + }, + { + "n": "C蔡健雅", + "v": "蔡健雅MV4K" + }, + { + "n": "C陈小春", + "v": "陈小春MV4K" + }, + { + "n": "C草蜢", + "v": "草蜢MV4K" + }, + { + "n": "C陈慧娴", + "v": "陈慧娴MV4K" + }, + { + "n": "C崔健", + "v": "崔健MV4K" + }, + { + "n": "C仓木麻衣", + "v": "仓木麻衣MV4K" + }, + { + "n": "D戴荃", + "v": "戴荃MV4K" + }, + { + "n": "D动力火车", + "v": "动力火车MV4K" + }, + { + "n": "D邓丽君", + "v": "邓丽君MV4K" + }, + { + "n": "D丁当", + "v": "丁当MV4K" + }, + { + "n": "D刀郎", + "v": "刀郎MV4K" + }, + { + "n": "D邓紫棋", + "v": "邓紫棋MV4K" + }, + { + "n": "D戴佩妮", + "v": "戴佩妮MV4K" + }, + { + "n": "D邓丽君", + "v": "邓丽君MV4K" + }, + { + "n": "F飞儿乐队", + "v": "飞儿乐队MV4K" + }, + { + "n": "F费玉清", + "v": "费玉清MV4K" + }, + { + "n": "F费翔", + "v": "费翔MV4K" + }, + { + "n": "F方大同", + "v": "方大同MV4K" + }, + { + "n": "F房东的猫", + "v": "房东的猫MV4K" + }, + { + "n": "F凤飞飞", + "v": "凤飞飞MV4K" + }, + { + "n": "F凤凰传奇", + "v": "凤凰传奇MV4K" + }, + { + "n": "G古风歌曲", + "v": "古风歌曲4K" + }, + { + "n": "G国乐大典", + "v": "国乐大典4K" + }, + { + "n": "G郭采洁", + "v": "郭采洁MV4K" + }, + { + "n": "G光良", + "v": "光良MV4K" + }, + { + "n": "G郭静", + "v": "郭静MV4K" + }, + { + "n": "G郭富城", + "v": "郭富城MV4K" + }, + { + "n": "H胡彦斌", + "v": "胡彦斌MV4K" + }, + { + "n": "H胡夏", + "v": "胡夏MV4K" + }, + { + "n": "H韩红", + "v": "韩红MV4K" + }, + { + "n": "H黄品源", + "v": "黄品源MV4K" + }, + { + "n": "H黄小琥", + "v": "黄小琥MV4K" + }, + { + "n": "H花儿乐队", + "v": "花儿乐队MV4K" + }, + { + "n": "H黄家强", + "v": "黄家强MV4K" + }, + { + "n": "H后街男孩", + "v": "后街男孩MV4K" + }, + { + "n": "J经典老歌", + "v": "经典老歌4K" + }, + { + "n": "J贾斯丁比伯", + "v": "贾斯丁比伯MV4K" + }, + { + "n": "J金池", + "v": "金池MV4K" + }, + { + "n": "J金志文", + "v": "金志文MV4K" + }, + { + "n": "J焦迈奇", + "v": "焦迈奇MV4K" + }, + { + "n": "K筷子兄弟", + "v": "筷子兄弟MV4K" + }, + { + "n": "L李玟", + "v": "李玟MV4K" + }, + { + "n": "L林忆莲", + "v": "林忆莲MV4K" + }, + { + "n": "L李克勤", + "v": "李克勤MV4K" + }, + { + "n": "L刘宪华", + "v": "刘宪华MV4K" + }, + { + "n": "L李圣杰", + "v": "李圣杰MV4K" + }, + { + "n": "L林宥嘉", + "v": "林宥嘉MV4K" + }, + { + "n": "L梁静茹", + "v": "梁静茹MV4K" + }, + { + "n": "L李健", + "v": "李健MV4K" + }, + { + "n": "L林俊杰", + "v": "林俊杰MV4K" + }, + { + "n": "L李玉刚", + "v": "李玉刚MV4K" + }, + { + "n": "L林志炫", + "v": "林志炫MV4K" + }, + { + "n": "L李荣浩", + "v": "李荣浩MV4K" + }, + { + "n": "L李宇春", + "v": "李宇春MV4K" + }, + { + "n": "L洛天依", + "v": "洛天依MV4K" + }, + { + "n": "L林子祥", + "v": "林子祥MV4K" + }, + { + "n": "L李宗盛", + "v": "李宗盛MV4K" + }, + { + "n": "L黎明", + "v": "黎明MV4K" + }, + { + "n": "L刘德华", + "v": "刘德华MV4K" + }, + { + "n": "L罗大佑", + "v": "罗大佑MV4K" + }, + { + "n": "L林肯公园", + "v": "林肯公园MV4K" + }, + { + "n": "LLadyGaga", + "v": "LadyGagaMV4K" + }, + { + "n": "L旅行团乐队", + "v": "旅行团乐队MV4K" + }, + { + "n": "M莫文蔚", + "v": "莫文蔚MV4K" + }, + { + "n": "M毛不易", + "v": "毛不易MV4K" + }, + { + "n": "M梅艳芳", + "v": "梅艳芳MV4K" + }, + { + "n": "M迈克尔杰克逊", + "v": "迈克尔杰克逊MV4K" + }, + { + "n": "N南拳妈妈", + "v": "南拳妈妈MV4K" + }, + { + "n": "P朴树", + "v": "朴树MV4K" + }, + { + "n": "Q齐秦", + "v": "齐秦MV4K" + }, + { + "n": "Q青鸟飞鱼", + "v": "青鸟飞鱼MV4K" + }, + { + "n": "R容祖儿", + "v": "容祖儿MV4K" + }, + { + "n": "R热歌", + "v": "热歌MV4K" + }, + { + "n": "R任贤齐", + "v": "任贤齐MV4K" + }, + { + "n": "S水木年华", + "v": "水木年华MV4K" + }, + { + "n": "S孙燕姿", + "v": "孙燕姿MV4K" + }, + { + "n": "S苏打绿", + "v": "苏打绿MV4K" + }, + { + "n": "SSHE", + "v": "SHEMV4K" + }, + { + "n": "S孙楠", + "v": "孙楠MV4K" + }, + { + "n": "T陶喆", + "v": "陶喆MV4K" + }, + { + "n": "T谭咏麟", + "v": "谭咏麟MV4K" + }, + { + "n": "T田馥甄", + "v": "田馥甄MV4K" + }, + { + "n": "T谭维维", + "v": "谭维维MV4K" + }, + { + "n": "T逃跑计划", + "v": "逃跑计划MV4K" + }, + { + "n": "T田震", + "v": "田震MV4K" + }, + { + "n": "T谭晶", + "v": "谭晶MV4K" + }, + { + "n": "T屠洪刚", + "v": "屠洪刚MV4K" + }, + { + "n": "T泰勒·斯威夫特", + "v": "泰勒·斯威夫特MV4K" + }, + { + "n": "W王力宏", + "v": "王力宏MV4K" + }, + { + "n": "W王杰", + "v": "王杰MV4K" + }, + { + "n": "W吴克群", + "v": "吴克群MV4K" + }, + { + "n": "W王心凌", + "v": "王心凌MV4K" + }, + { + "n": "W汪峰", + "v": "汪峰MV4K" + }, + { + "n": "W伍佰", + "v": "伍佰MV4K" + }, + { + "n": "W王菲", + "v": "王菲MV4K" + }, + { + "n": "W五月天", + "v": "五月天MV4K" + }, + { + "n": "W汪苏泷", + "v": "汪苏泷MV4K" + }, + { + "n": "X徐佳莹", + "v": "徐佳莹MV4K" + }, + { + "n": "X弦子", + "v": "弦子MV4K" + }, + { + "n": "X萧亚轩", + "v": "萧亚轩MV4K" + }, + { + "n": "X许巍", + "v": "许巍MV4K" + }, + { + "n": "X薛之谦", + "v": "薛之谦MV4K" + }, + { + "n": "X许嵩", + "v": "许嵩MV4K" + }, + { + "n": "X小虎队", + "v": "小虎队MV4K" + }, + { + "n": "X萧敬腾", + "v": "萧敬腾MV4K" + }, + { + "n": "X谢霆锋", + "v": "谢霆锋MV4K" + }, + { + "n": "X徐小凤", + "v": "徐小凤MV4K" + }, + { + "n": "X信乐队", + "v": "信乐队MV4K" + }, + { + "n": "Y夜愿乐队", + "v": "夜愿乐队MV4K" + }, + { + "n": "Y原创音乐", + "v": "原创音乐MV4K" + }, + { + "n": "Y羽泉", + "v": "羽泉MV4K" + }, + { + "n": "Y粤语", + "v": "粤语MV4K" + }, + { + "n": "Y郁可唯", + "v": "郁可唯MV4K" + }, + { + "n": "Y叶倩文", + "v": "叶倩文MV4K" + }, + { + "n": "Y杨坤", + "v": "杨坤MV4K" + }, + { + "n": "Y庾澄庆", + "v": "庾澄庆MV4K" + }, + { + "n": "Y尤长靖", + "v": "尤长靖MV4K" + }, + { + "n": "Y易烊千玺", + "v": "易烊千玺MV4K" + }, + { + "n": "Y袁娅维", + "v": "袁娅维MV4K" + }, + { + "n": "Y杨丞琳", + "v": "杨丞琳MV4K" + }, + { + "n": "Y杨千嬅", + "v": "杨千嬅MV4K" + }, + { + "n": "Y杨宗纬", + "v": "杨宗纬MV4K" + }, + { + "n": "Z周杰伦", + "v": "周杰伦MV4K" + }, + { + "n": "Z张学友", + "v": "张学友MV4K" + }, + { + "n": "Z张信哲", + "v": "张信哲MV4K" + }, + { + "n": "Z张宇", + "v": "张宇MV4K" + }, + { + "n": "Z周华健", + "v": "周华健MV4K" + }, + { + "n": "Z张韶涵", + "v": "张韶涵MV4K" + }, + { + "n": "Z周深", + "v": "周深MV4K" + }, + { + "n": "Z纵贯线", + "v": "纵贯线MV4K" + }, + { + "n": "Z赵雷", + "v": "赵雷MV4K" + }, + { + "n": "Z周传雄", + "v": "周传雄MV4K" + }, + { + "n": "Z张国荣", + "v": "张国荣MV4K" + }, + { + "n": "Z周慧敏", + "v": "周慧敏MV4K" + }, + { + "n": "Z张惠妹", + "v": "张惠妹MV4K" + }, + { + "n": "Z周笔畅", + "v": "周笔畅MV4K" + }, + { + "n": "Z郑中基", + "v": "郑中基MV4K" + }, + { + "n": "Z张艺兴", + "v": "张艺兴MV4K" + }, + { + "n": "Z张震岳", + "v": "张震岳MV4K" + }, + { + "n": "Z中国好声音", + "v": "中国好声音MV4K" + }, + { + "n": "Z张雨生", + "v": "张雨生MV4K" + }, + { + "n": "Z郑智化", + "v": "郑智化MV4K" + }, + { + "n": "Z卓依婷", + "v": "卓依婷MV4K" + }, + { + "n": "Z中岛美雪", + "v": "中岛美雪MV4K" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "帕梅拉": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "帕梅拉" + }, + { + "n": "瘦腿", + "v": "帕梅拉瘦腿" + }, + { + "n": "腹部", + "v": "帕梅拉腹部" + }, + { + "n": "手臂", + "v": "帕梅拉手臂" + }, + { + "n": "热身", + "v": "帕梅拉热身" + }, + { + "n": "舞蹈", + "v": "帕梅拉舞蹈" + }, + { + "n": "燃脂", + "v": "帕梅拉燃脂" + }, + { + "n": "有氧", + "v": "帕梅拉有氧" + }, + { + "n": "拉伸", + "v": "帕梅拉拉伸" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "知名UP主": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "知名UP主" + }, + { + "n": "菠萝赛东", + "v": "菠萝赛东" + }, + { + "n": "冯提莫", + "v": "冯提莫" + }, + { + "n": "林延秋", + "v": "林延秋" + }, + { + "n": "-LKs-", + "v": "-LKs-" + }, + { + "n": "小约翰可汗", + "v": "小约翰可汗" + }, + { + "n": "low馆长", + "v": "low馆长" + }, + { + "n": "自说自话的总裁", + "v": "自说自话的总裁" + }, + { + "n": "所长林超", + "v": "所长林超" + }, + { + "n": "世界未解之谜M", + "v": "世界未解之谜M" + }, + { + "n": "李永乐老师官方", + "v": "李永乐老师官方" + }, + { + "n": "罗兹", + "v": "罗兹" + }, + { + "n": "回到2049", + "v": "回到2049" + }, + { + "n": "二次元的中科院物理所", + "v": "二次元的中科院物理所" + }, + { + "n": "毕导THU", + "v": "毕导THU" + }, + { + "n": "罗翔讲刑法", + "v": "罗翔讲刑法" + }, + { + "n": "戴博士实验室", + "v": "戴博士实验室" + }, + { + "n": "芳斯塔芙", + "v": "芳斯塔芙" + }, + { + "n": "参赛者网", + "v": "参赛者网" + }, + { + "n": "三维地图看世界", + "v": "三维地图看世界" + }, + { + "n": "有机社会", + "v": "有机社会" + }, + { + "n": "乌鸦校尉CaptainWuya", + "v": "乌鸦校尉CaptainWuya" + }, + { + "n": "果壳", + "v": "果壳" + }, + { + "n": "严伯钧", + "v": "严伯钧" + }, + { + "n": "是你们的康康", + "v": "是你们的康康" + }, + { + "n": "老爸评测", + "v": "老爸评测" + }, + { + "n": "硬核的半佛仙人", + "v": "硬核的半佛仙人" + }, + { + "n": "盗月社食遇记", + "v": "盗月社食遇记" + }, + { + "n": "我是郭杰瑞", + "v": "我是郭杰瑞" + }, + { + "n": "无穷小亮的科普日常", + "v": "无穷小亮的科普日常" + }, + { + "n": "papi酱", + "v": "papi酱" + }, + { + "n": "老番茄", + "v": "老番茄" + }, + { + "n": "绵羊料理", + "v": "绵羊料理" + }, + { + "n": "老师好我叫何同学", + "v": "老师好我叫何同学" + }, + { + "n": "敬汉卿", + "v": "敬汉卿" + }, + { + "n": "周六野Zoey", + "v": "周六野Zoey" + }, + { + "n": "木鱼水心", + "v": "木鱼水心" + }, + { + "n": "凉风Kaze", + "v": "凉风Kaze" + }, + { + "n": "小潮院长", + "v": "小潮院长" + }, + { + "n": "中国BOY超级大猩猩", + "v": "中国BOY超级大猩猩" + }, + { + "n": "李子柒", + "v": "李子柒" + }, + { + "n": "敖厂长", + "v": "敖厂长" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "太极拳": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "太极拳" + }, + { + "n": "邱慧芳", + "v": "太极拳邱慧芳" + }, + { + "n": "陈氏", + "v": "太极拳陈氏" + }, + { + "n": "武当", + "v": "太极拳武当" + }, + { + "n": "二十四式", + "v": "太极拳二十四式" + }, + { + "n": "三十六式", + "v": "太极拳三十六式" + }, + { + "n": "五禽戏", + "v": "五禽戏" + }, + { + "n": "八段锦", + "v": "八段锦" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "舞蹈": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "舞蹈" + }, + { + "n": "宅舞", + "v": "宅舞" + }, + { + "n": "街舞", + "v": "街舞" + }, + { + "n": "中国舞", + "v": "中国舞" + }, + { + "n": "广场舞", + "v": "广场舞" + }, + { + "n": "交谊舞", + "v": "交谊舞" + }, + { + "n": "教程", + "v": "舞蹈教程" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "音乐": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "音乐" + }, + { + "n": "钢琴曲", + "v": "钢琴曲" + }, + { + "n": "协奏曲", + "v": "协奏曲r" + }, + { + "n": "中国古风音乐", + "v": "中国古风音乐" + }, + { + "n": "背景音乐", + "v": "背景音乐" + }, + { + "n": "助眠音乐r", + "v": "助眠音乐" + }, + { + "n": "胎教音乐", + "v": "胎教音乐" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "歌曲": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "歌曲" + }, + { + "n": "香港歌曲", + "v": "香港歌曲" + }, + { + "n": "台湾歌曲", + "v": "台湾歌曲" + }, + { + "n": "内地歌曲", + "v": "内地歌曲" + }, + { + "n": "英文歌曲", + "v": "英文歌曲" + }, + { + "n": "日文歌曲", + "v": "日文歌曲" + }, + { + "n": "小语种歌曲", + "v": "小语种歌曲" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "平面设计教学": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "平面设计教学" + }, + { + "n": "Adobe Photoshop", + "v": "Adobe Photoshop教程" + }, + { + "n": "Adobe Illustrator", + "v": "Adobe Illustrator教程" + }, + { + "n": "CorelDRAW", + "v": "CorelDRAW教程" + }, + { + "n": "Adobe InDesign", + "v": "Adobe InDesign教程" + }, + { + "n": "Adobe Pagermaker", + "v": "Adobe Pagermaker教程" + }, + { + "n": "SAI", + "v": "SAI教程" + }, + { + "n": "Adobe Bridge", + "v": "Adobe Bridge教程" + }, + { + "n": "Adobe Pagermaker", + "v": "Adobe Pagermake教程r" + }, + { + "n": "3D Studio Max", + "v": "3D Studio Max教程" + }, + { + "n": "PR", + "v": "PR教程" + }, + { + "n": "AE", + "v": "AE教程" + }, + { + "n": "CINEMA 4D", + "v": "CINEMA 4D教程" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "软件教程": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "软件教程" + }, + { + "n": "MT管理器", + "v": "MT管理器" + }, + { + "n": "NP管理器", + "v": "NP管理器" + }, + { + "n": "mixplorer", + "v": "mixplorer" + }, + { + "n": "脱壳", + "v": "脱壳" + }, + { + "n": "爬虫", + "v": "爬虫" + }, + { + "n": "json&jar", + "v": "json&jar" + }, + { + "n": "网盘挂载", + "v": "网盘挂载" + }, + { + "n": "alist+WebDav", + "v": "alist+WebDav" + }, + { + "n": "TVBox修改", + "v": "TVBox修改教程" + }, + { + "n": "EXCEL", + "v": "EXCEL教程" + }, + { + "n": "Git入门到精通", + "v": "Git入门到精通" + }, + { + "n": "java", + "v": "java教程" + }, + { + "n": "phyton", + "v": "phyton教程" + }, + { + "n": "xml", + "v": "xml教程" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "Windows": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "小姐姐超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "广场舞超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "舞曲超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "白噪音超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "搞笑超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "体育超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "4K": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "足球比赛合集超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "篮球超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "动物世界超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "儿童超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "荒野求生超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "纪录片超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "食谱": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "食谱" + }, + { + "n": "川菜食谱", + "v": "川菜食谱" + }, + { + "n": "豫菜食谱", + "v": "豫菜食谱" + }, + { + "n": "淮扬菜食谱", + "v": "淮扬菜食谱" + }, + { + "n": "湘菜食谱", + "v": "湘菜食谱" + }, + { + "n": "鲁菜食谱", + "v": "鲁菜食谱" + }, + { + "n": "粤菜食谱", + "v": "粤菜食谱" + }, + { + "n": "潮菜食谱", + "v": "潮菜食谱" + }, + { + "n": "浙菜食谱", + "v": "浙菜食谱" + }, + { + "n": "徽菜食谱", + "v": "徽菜食谱" + }, + { + "n": "闽菜食谱", + "v": "闽菜食谱" + }, + { + "n": "苏菜食谱", + "v": "苏菜食谱" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "健身": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "健身" + }, + { + "n": "瘦腿", + "v": "瘦腿" + }, + { + "n": "腹部", + "v": "腹部" + }, + { + "n": "手臂", + "v": "手臂" + }, + { + "n": "热身", + "v": "热身" + }, + { + "n": "帕梅拉", + "v": "帕梅拉" + }, + { + "n": "燃脂", + "v": "燃脂" + }, + { + "n": "有氧", + "v": "有氧" + }, + { + "n": "拉伸", + "v": "拉伸" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "窗白噪音": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "美食超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "美食超清" + }, + { + "n": "舌尖上的中国", + "v": "舌尖上的中国超清" + }, + { + "n": "老字号", + "v": "老字号美食超清" + }, + { + "n": "家常菜", + "v": "家常菜美食超清" + }, + { + "n": "香港美食探店", + "v": "香港美食探店超清" + }, + { + "n": "澳门美食探店", + "v": "澳门美食探店超清" + }, + { + "n": "上海美食探店", + "v": "上海美食探店超清" + }, + { + "n": "北京美食探店", + "v": "北京美食探店超清" + }, + { + "n": "重庆美食探店", + "v": "重庆美食探店超清" + }, + { + "n": "南京美食探店", + "v": "南京美食探店超清" + }, + { + "n": "广州美食探店", + "v": "广州美食探店超清" + }, + { + "n": "杭州美食探店", + "v": "杭州美食探店超清" + }, + { + "n": "成都美食探店", + "v": "成都美食探店超清" + }, + { + "n": "苏州美食探店", + "v": "苏州美食探店超清" + }, + { + "n": "武汉美食探店", + "v": "武汉美食探店超清" + }, + { + "n": "台湾美食探店", + "v": "台湾美食探店超清" + }, + { + "n": "川菜", + "v": "川菜美食超清" + }, + { + "n": "豫菜", + "v": "豫菜美食超清" + }, + { + "n": "淮扬菜", + "v": "淮扬菜美食超清" + }, + { + "n": "湘菜", + "v": "湘菜美食超清" + }, + { + "n": "鲁菜", + "v": "鲁菜美食超清" + }, + { + "n": "粤菜", + "v": "粤菜美食超清" + }, + { + "n": "潮菜", + "v": "潮菜美食超清" + }, + { + "n": "浙菜", + "v": "浙菜美食超清" + }, + { + "n": "徽菜", + "v": "徽菜美食超清" + }, + { + "n": "闽菜", + "v": "闽菜美食超清" + }, + { + "n": "东北菜", + "v": "东北菜美食超清" + }, + { + "n": "客家菜", + "v": "客家菜美食超清" + }, + { + "n": "苏菜", + "v": "苏菜美食超清" + }, + { + "n": "火锅", + "v": "火锅" + }, + { + "n": "面食", + "v": "面食" + }, + { + "n": "炒菜", + "v": "炒菜" + }, + { + "n": "点心", + "v": "点心" + }, + { + "n": "日料", + "v": "日料" + }, + { + "n": "小吃", + "v": "小吃" + }, + { + "n": "素食", + "v": "素食" + }, + { + "n": "蒸菜", + "v": "蒸菜" + }, + { + "n": "凉菜", + "v": "凉菜" + }, + { + "n": "早餐", + "v": "早餐" + }, + { + "n": "披萨", + "v": "披萨" + }, + { + "n": "烤鱼", + "v": "烤鱼" + }, + { + "n": "海鲜", + "v": "海鲜美食超清" + }, + { + "n": "汉堡", + "v": "汉堡" + }, + { + "n": "韩国菜", + "v": "韩国菜" + }, + { + "n": "泰国菜", + "v": "泰国菜" + }, + { + "n": "穆斯林菜", + "v": "穆斯林菜" + }, + { + "n": "法国菜", + "v": "法国菜" + }, + { + "n": "意大利菜", + "v": "意大利菜" + }, + { + "n": "西班牙菜", + "v": "西班牙菜" + }, + { + "n": "土耳其菜", + "v": "土耳其菜系" + }, + { + "n": "阿拉伯菜", + "v": "阿拉伯菜" + }, + { + "n": "德国菜", + "v": "德国菜" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "广场舞": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "球星": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "球星" + }, + { + "n": "梅西", + "v": "梅西" + }, + { + "n": "C罗", + "v": "C罗" + }, + { + "n": "天下足球", + "v": "天下足球" + }, + { + "n": "罗纳尔多", + "v": "罗纳尔多" + }, + { + "n": "亨利", + "v": "亨利" + }, + { + "n": "小罗", + "v": "小罗" + }, + { + "n": "齐达内", + "v": "齐达内" + }, + { + "n": "贝克汉姆", + "v": "贝克汉姆" + }, + { + "n": "内马尔", + "v": "内马尔" + }, + { + "n": "德布劳内", + "v": "德布劳内" + }, + { + "n": "欧冠", + "v": "欧冠" + }, + { + "n": "世界杯", + "v": "世界杯" + }, + { + "n": "西甲", + "v": "西甲" + }, + { + "n": "英超", + "v": "英超" + }, + { + "n": "意甲", + "v": "意甲" + }, + { + "n": "德甲", + "v": "德甲" + }, + { + "n": "国米", + "v": "国米" + }, + { + "n": "皇马", + "v": "皇马" + }, + { + "n": "巴萨", + "v": "巴萨" + }, + { + "n": "巴黎圣日耳曼", + "v": "巴黎圣日耳曼" + }, + { + "n": "曼联", + "v": "曼联" + }, + { + "n": "曼城", + "v": "曼城" + }, + { + "n": "NBA", + "v": "NBA" + }, + { + "n": "詹姆斯", + "v": "詹姆斯" + }, + { + "n": "库里", + "v": "库里" + }, + { + "n": "杜兰特", + "v": "杜兰特" + }, + { + "n": "UFC", + "v": "UFC" + }, + { + "n": "斯诺克", + "v": "斯诺克" + }, + { + "n": "网球", + "v": "网球" + }, + { + "n": "F1", + "v": "F1" + }, + { + "n": "高尔夫", + "v": "高尔夫" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "电视剧": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "相声小品超清": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "相声小品" + }, + { + "n": "单口相声", + "v": "单口相声" + }, + { + "n": "群口相声", + "v": "群口相声" + }, + { + "n": "德云社", + "v": "德云社" + }, + { + "n": "青曲社", + "v": "青曲社" + }, + { + "n": "郭德纲", + "v": "郭德纲" + }, + { + "n": "岳云鹏", + "v": "岳云鹏" + }, + { + "n": "曹云金", + "v": "曹云金" + }, + { + "n": "评书", + "v": "评书" + }, + { + "n": "小曲", + "v": "小曲" + }, + { + "n": "二人转", + "v": "二人转" + }, + { + "n": "春晚小品", + "v": "春晚小品" + }, + { + "n": "赵本山", + "v": "赵本山" + }, + { + "n": "陈佩斯", + "v": "陈佩斯" + }, + { + "n": "冯巩", + "v": "冯巩" + }, + { + "n": "宋小宝", + "v": "宋小宝" + }, + { + "n": "赵丽蓉", + "v": "赵丽蓉" + }, + { + "n": "郭达", + "v": "郭达" + }, + { + "n": "潘长江", + "v": "潘长江" + }, + { + "n": "郭冬临", + "v": "郭冬临" + }, + { + "n": "严顺开", + "v": "严顺开" + }, + { + "n": "文松", + "v": "文松" + }, + { + "n": "开心麻花", + "v": "开心麻花" + }, + { + "n": "屌丝男士", + "v": "屌丝男士" + }, + { + "n": "喜剧综艺", + "v": "喜剧综艺" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "戏曲": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "戏曲" + }, + { + "n": "京剧", + "v": "京剧" + }, + { + "n": "越剧", + "v": "越剧" + }, + { + "n": "黄梅戏", + "v": "黄梅戏" + }, + { + "n": "评剧", + "v": "评剧" + }, + { + "n": "豫剧", + "v": "豫剧" + }, + { + "n": "昆曲", + "v": "昆曲" + }, + { + "n": "高腔", + "v": "高腔" + }, + { + "n": "梆子腔", + "v": "梆子腔" + }, + { + "n": "河北梆子", + "v": "河北梆子" + }, + { + "n": "晋剧", + "v": "晋剧" + }, + { + "n": "蒲剧", + "v": "蒲剧" + }, + { + "n": "雁剧", + "v": "雁剧" + }, + { + "n": "上党梆子", + "v": "上党梆子" + }, + { + "n": "秦腔", + "v": "秦腔" + }, + { + "n": "武安平调", + "v": "武安平调" + }, + { + "n": "二人台", + "v": "二人台" + }, + { + "n": "吉剧", + "v": "吉剧" + }, + { + "n": "龙江剧", + "v": "龙江剧" + }, + { + "n": "越调", + "v": "越调" + }, + { + "n": "河南曲剧", + "v": "河南曲剧" + }, + { + "n": "山东梆子", + "v": "山东梆子" + }, + { + "n": "淮剧", + "v": "淮剧" + }, + { + "n": "沪剧", + "v": "沪剧" + }, + { + "n": "滑稽戏", + "v": "滑稽戏" + }, + { + "n": "婺剧", + "v": "婺剧" + }, + { + "n": "绍剧", + "v": "绍剧" + }, + { + "n": "徽剧", + "v": "徽剧" + }, + { + "n": "闽剧", + "v": "闽剧" + }, + { + "n": "莆仙戏", + "v": "莆仙戏" + }, + { + "n": "梨园戏", + "v": "梨园戏" + }, + { + "n": "高甲戏", + "v": "高甲戏" + }, + { + "n": "赣剧", + "v": "赣剧" + }, + { + "n": "采茶戏", + "v": "采茶戏" + }, + { + "n": "汉剧", + "v": "汉剧" + }, + { + "n": "湘剧", + "v": "湘剧" + }, + { + "n": "祁剧", + "v": "祁剧" + }, + { + "n": "湖南花鼓戏", + "v": "湖南花鼓戏" + }, + { + "n": "粤剧", + "v": "粤剧" + }, + { + "n": "潮剧", + "v": "潮剧" + }, + { + "n": "桂剧", + "v": "桂剧" + }, + { + "n": "彩调", + "v": "彩调" + }, + { + "n": "壮剧", + "v": "壮剧" + }, + { + "n": "川剧", + "v": "川剧" + }, + { + "n": "黔剧", + "v": "黔剧" + }, + { + "n": "滇剧", + "v": "滇剧" + }, + { + "n": "傣剧", + "v": "傣剧" + }, + { + "n": "藏剧", + "v": "藏剧" + }, + { + "n": "皮影戏", + "v": "皮影戏" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "旅游": [ + { + "key": "order", + "name": "排序", + "value": [ + { + "n": "综合排序", + "v": "0" + }, + { + "n": "最多点击", + "v": "click" + }, + { + "n": "最新发布", + "v": "pubdate" + }, + { + "n": "最多弹幕", + "v": "dm" + }, + { + "n": "最多收藏", + "v": "stow" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ], + "游泳": [ + { + "key": "tid", + "name": "分类", + "value": [ + { + "n": "全部", + "v": "泳姿" + }, + { + "n": "蝶泳", + "v": "蝶泳" + }, + { + "n": "仰泳", + "v": "仰泳" + }, + { + "n": "蛙泳", + "v": "蛙泳" + }, + { + "n": "自由泳", + "v": "自由泳" + } + ] + }, + { + "key": "duration", + "name": "时长", + "value": [ + { + "n": "全部", + "v": "0" + }, + { + "n": "60分钟以上", + "v": "4" + }, + { + "n": "30~60分钟", + "v": "3" + }, + { + "n": "10~30分钟", + "v": "2" + }, + { + "n": "10分钟以下", + "v": "1" + } + ] + } + ] + } +} diff --git a/libs/drpyS.js b/libs/drpyS.js index bde4887..fd5b1f8 100644 --- a/libs/drpyS.js +++ b/libs/drpyS.js @@ -1,5 +1,5 @@ import {readFile} from 'fs/promises'; -import {existsSync, readFileSync} from 'fs'; +import {existsSync, readFileSync, writeFileSync, mkdirSync} from 'fs'; import {fileURLToPath} from "url"; import {createRequire} from 'module'; import {XMLHttpRequest} from 'xmlhttprequest'; @@ -20,6 +20,7 @@ import {UC} from "../utils/uc.js"; import {Ali} from "../utils/ali.js"; import {Cloud} from "../utils/cloud.js"; import {Yun} from "../utils/yun.js"; +import {Pan} from "../utils/pan123.js"; import AIS from '../utils/ais.js'; // const { req } = await import('../utils/req.js'); import {gbkTool} from '../libs_drpy/gbk.js' @@ -27,6 +28,7 @@ import {gbkTool} from '../libs_drpy/gbk.js' import {base64Decode, base64Encode, md5, rc4, rc4_decode, rc4Decrypt, rc4Encrypt} from "../libs_drpy/crypto-util.js"; import {getContentType, getMimeType} from "../utils/mime-type.js"; import {getParsesDict} from "../utils/file.js"; +import {getFirstLetter} from "../utils/pinyin-tool.js"; import "../utils/random-http-ua.js"; import template from '../libs_drpy/template.js' import batchExecute from '../libs_drpy/batchExecute.js'; @@ -57,6 +59,7 @@ globalThis.UC = UC; globalThis.Ali = Ali; globalThis.Cloud = Cloud; globalThis.Yun = Yun; +globalThis.Pan = Pan; globalThis.require = createRequire(import.meta.url); globalThis._fetch = fetch; globalThis.XMLHttpRequest = XMLHttpRequest; @@ -84,6 +87,26 @@ globalThis.pathLib = { } return readFileSync(resolvedPath, 'utf8') }, + writeFile: function (filename, text) { + let _file_path = path.join(_data_path, filename); + const resolvedPath = path.resolve(_data_path, _file_path); // 将路径解析为绝对路径 + if (!resolvedPath.startsWith(_data_path)) { + log(`no access for read ${_file_path}`) + return ''; + } + try { + const dirPath = path.dirname(resolvedPath); + // 检查目录是否存在,不存在则创建 + if (!existsSync(dirPath)) { + mkdirSync(dirPath, {recursive: true}); + } + writeFileSync(resolvedPath, text, 'utf8'); + return true + } catch (e) { + log(`failed for saveFile ${_file_path} error:${e.message}`); + return false + } + }, }; const {sleep, sleepSync, computeHash, deepCopy, urljoin, urljoin2, joinUrl, naturalSort, $js} = utils; const es6JsPath = path.join(__dirname, '../libs_drpy/es6-extend.js'); @@ -132,7 +155,6 @@ try { let simplecc = null; try { - // 尝试动态导入模块puppeteerHelper const simWasm = await import('simplecc-wasm'); // 使用动态 import simplecc = simWasm.simplecc; console.log('simplecc imported successfully'); @@ -142,6 +164,26 @@ try { } globalThis.simplecc = simplecc; +let DataBase = null; +let database = null; +try { + if (typeof fetchByHiker !== 'undefined' && typeof globalThis.import === 'function') { + const sqliteUtil = await globalThis.import('../utils/database.js'); // 海阔放在globalThis里去动态引入 + DataBase = sqliteUtil.DataBase; + database = sqliteUtil.database; + } else { + const sqliteUtil = await import('../utils/database.js'); // 使用动态 import + DataBase = sqliteUtil.DataBase; + database = sqliteUtil.database; + } + console.log('sqlite3 database imported successfully'); +} catch (error) { + console.log(`Failed to import sqlite3:${error.message}`); +} + +globalThis.DataBase = DataBase; +globalThis.database = database; + export async function getSandbox(env = {}) { const {getProxyUrl, hostUrl, fServer} = env; @@ -164,7 +206,7 @@ export async function getSandbox(env = {}) { getProxyUrl, hostUrl, fServer, - getContentType, getMimeType, getParsesDict + getContentType, getMimeType, getParsesDict, getFirstLetter }; const drpySanbox = { jsp, @@ -279,6 +321,9 @@ export async function getSandbox(env = {}) { Ali, Cloud, Yun, + Pan, + DataBase, + database, require, WebSocket, WebSocketServer, @@ -297,6 +342,9 @@ export async function getSandbox(env = {}) { setInterval, clearTimeout, clearInterval, + TextEncoder, + TextDecoder, + performance, module: {}, // 模块支持 exports: {}, // 模块支持 rule: {}, // 用于存放导出的 rule 对象 @@ -592,14 +640,14 @@ async function invokeWithInjectVars(rule, method, injectVars, args) { result = await homeParseAfter(result, rule.类型, rule.hikerListCol, rule.hikerClassListCol, injectVars); break; case '一级': - result = await cateParseAfter(result, args[1]); + result = await cateParseAfter(rule, result, args[1]); console.log(`一级 ${injectVars.input} 执行完毕,结果为:`, JSON.stringify(result.list.slice(0, 2))); break; case '二级': result = await detailParseAfter(result); break; case '搜索': - result = await searchParseAfter(result, args[2]); + result = await searchParseAfter(rule, result, args[2]); console.log(`搜索 ${injectVars.input} 执行完毕,结果为:`, JSON.stringify(result.list.slice(0, 2))); break; case 'lazy': @@ -1017,12 +1065,12 @@ async function cateParse(rule, tid, pg, filter, extend) { } } -async function cateParseAfter(d, pg) { +async function cateParseAfter(rule, d, pg) { return d.length < 1 ? nodata : { 'page': parseInt(pg), - 'pagecount': 999, - 'limit': 20, - 'total': 999, + 'pagecount': 9999, + 'limit': Number(rule.limit) || 20, + 'total': 999999, 'list': d, } } @@ -1128,12 +1176,12 @@ async function searchParse(rule, wd, quick, pg) { } -async function searchParseAfter(d, pg) { +async function searchParseAfter(rule, d, pg) { return { 'page': parseInt(pg), - 'pagecount': 10, - 'limit': 20, - 'total': 100, + 'pagecount': 9999, + 'limit': Number(rule.limit) || 20, + 'total': 999999, 'list': d, } } @@ -1309,7 +1357,9 @@ export async function jx(filePath, env, params) { try { const jxObj = await initJx(filePath, env); // 确保模块已初始化 const lazy = await jxObj.lazy; - return await lazy(params.url || '', params) + const result = await lazy(params.url || '', params); + // log(`[jx]: ${JSON.stringify(result)}`); + return result; } catch (e) { return {code: 404, url: '', msg: `${filePath} 代理解析错误:${e.message}`, cost: ''} } diff --git a/libs_drpy/drpyInject.js b/libs_drpy/drpyInject.js index a7f3ee1..d06be7c 100644 --- a/libs_drpy/drpyInject.js +++ b/libs_drpy/drpyInject.js @@ -13,6 +13,7 @@ import iconv from 'iconv-lite'; import {jsonpath, jsoup} from './htmlParser.js'; import hlsParser from './hls-parser.js' import {keysToLowerCase} from '../utils/utils.js' +import {ENV} from '../utils/env.js'; // import {batchFetch1, batchFetch2, batchFetch3} from './drpyBatchFetch.js'; import {batchFetch3} from './hikerBatchFetch.js'; @@ -37,7 +38,9 @@ const _axios = axios.create({ _axios.interceptors.request.use((config) => { // 生成 curl 命令 const curlCommand = generateCurlCommand(config); - console.log(`Generated cURL command:\n${curlCommand}`); + if (ENV.get('show_curl', '0') === '1') { + console.log(`Generated cURL command:\n${curlCommand}`); + } return config; }, (error) => { return Promise.reject(error); @@ -159,7 +162,9 @@ async function request(url, opt = {}) { // 设置响应类型为 arraybuffer,确保能正确处理编码 const respType = returnBuffer ? 'arraybuffer' : 'arraybuffer'; - console.log(`req: ${url} headers: ${JSON.stringify(headers)} data: ${JSON.stringify(data)}`); + if (ENV.get('show_req', '0') === '1') { + console.log(`req: ${url} headers: ${JSON.stringify(headers)} data: ${JSON.stringify(data)}`); + } try { // 发送请求 const resp = await _axios({ diff --git a/package.js b/package.js index ae02b22..347389e 100644 --- a/package.js +++ b/package.js @@ -4,10 +4,10 @@ import {join, basename, dirname, resolve, relative} from 'path'; import url from 'url'; // 要排除的目录列表 -const EXCLUDE_DIRS = ['.git', '.idea', 'soft', 'pyTools', 'drop_code', 'jstest', 'local', 'logs', '对话1.txt']; +const EXCLUDE_DIRS = ['.git', '.idea', 'soft', 'pyTools', 'drop_code', 'jstest', 'local', 'logs', '对话1.txt', 'vod_cache', 'data/mv']; // 要排除的文件列表 -const EXCLUDE_FILES = ['config/env.json', '.env', 'js/UC分享.js', 'js/百忙无果[官].js', 'json/UC分享.json', 'jx/奇奇.js']; +const EXCLUDE_FILES = ['config/env.json', '.env', 'js/UC分享.js', 'js/百忙无果[官].js', 'json/UC分享.json', 'jx/奇奇.js', 'jx/芒果关姐.js', 'data/settings/link_data.json', 'index.json', 'custom.json']; // 获取脚本所在目录 const getScriptDir = () => dirname(resolve(url.fileURLToPath(import.meta.url))); diff --git a/package.json b/package.json index 09d18f6..b38b7fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "drpy-node", - "version": "1.1.9", + "version": "1.1.23", "main": "index.js", "type": "module", "scripts": { @@ -8,10 +8,14 @@ "dev": "node index.js", "dev-win": "chcp 65001 && node --trace-deprecation index.js", "pm2": "pm2 start index.js --name drpys", + "node22": "node --experimental-sqlite index.js", + "node22-win": "chcp 65001 && node --trace-deprecation --experimental-sqlite index.js", "package": "python package.py", "package-green": "python package.py -g", "packageJS": "node package.js", - "packageJS-green": "node package.js -g" + "packageJS-green": "node package.js -g", + "gzip-1": "node controllers/encoder.js json/十六万歌曲.json", + "ungzip-1": "node controllers/decoder.js json/十六万歌曲.json.gz" }, "engines": { "node": ">17 <23" @@ -37,7 +41,9 @@ "lru-cache": "^9.1.2", "mime-types": "^2.1.35", "minizlib": "^3.0.1", + "node-sqlite3-wasm": "^0.8.35", "p-queue": "^8.0.1", + "pinyin": "2.10.2", "qs": "^6.13.1", "queue": "^7.0.0", "rotating-file-stream": "^3.2.5", diff --git a/package.py b/package.py index c1e6ef4..a0db895 100644 --- a/package.py +++ b/package.py @@ -4,10 +4,10 @@ import re # 要排除的目录列表 -EXCLUDE_DIRS = ['.git', '.idea', 'soft', 'pyTools', 'drop_code', 'jstest', 'local', 'logs', '对话1.txt'] +EXCLUDE_DIRS = ['.git', '.idea', 'soft', 'pyTools', 'drop_code', 'jstest', 'local', 'logs', '对话1.txt','vod_cache','data/mv'] # 要排除的文件列表 -EXCLUDE_FILES = ['config/env.json', '.env','js/UC分享.js','js/百忙无果[官].js','json/UC分享.json','jx/奇奇.js'] +EXCLUDE_FILES = ['config/env.json', '.env','js/UC分享.js','js/百忙无果[官].js','json/UC分享.json','jx/奇奇.js','jx/芒果关姐.js','data/settings/link_data.json','index.json','custom.json'] def get_script_dir(): """ diff --git a/public/index.html b/public/index.html index 1c76457..b86b6e7 100644 --- a/public/index.html +++ b/public/index.html @@ -8,7 +8,7 @@

    drpyS(drpy-node)

    -

    nodejs作为服务端的drpy实现。全面升级异步写法
    积极开发中,每日一更,当前进度 40%

    +

    nodejs作为服务端的drpy实现。全面升级异步写法
    积极开发中,每日一更,当前进度 49%
    找工作中,随缘更新

    更新记录

    -

    20250115

    -

    更新至V1.1.10

    +

    20250310

    +

    更新至V1.1.23

    +

    20250227

    +

    更新至V1.1.22

    +

    20250226

    +

    更新至V1.1.21

    +

    20250225

    +

    更新至V1.1.20

    +

    20250224

    +

    更新至V1.1.19

    +

    20250211

    +

    更新至V1.1.18

    +

    20250206

    +

    更新至V1.1.17

    +

    20250123

    +

    更新至V1.1.16

    +

    20250122

    +

    更新至V1.1.15

      -
    1. 重构天翼
    2. -
    3. 新增移动
    4. +
    5. ds源和dr2源增加装逼壳图标支持
    6. +
    +

    20250121

    +

    更新至V1.1.14

    +
      +
    1. 猫源ds在线配置支持接口密码
    2. +
    3. 新增源
    4. +
    5. 磁盘加速
    6. +
    +

    20250120

    +

    更新至V1.1.13

    +
      +
    1. 完善猫在线配置
    2. +
    +

    20250117

    +

    本次未更新版本

    +
      +
    1. 新开项目,使ds源适用于新版猫影视 猫爪catpwd

    点此查看完整更新记录

    注意事项

    @@ -106,6 +140,8 @@

    友链(白嫖接口服务)

    AI接入

      diff --git a/public/jar/custom_spider.jar b/public/jar/custom_spider.jar new file mode 100644 index 0000000..4be0a5e Binary files /dev/null and b/public/jar/custom_spider.jar differ diff --git a/utils/api_validate.js b/utils/api_validate.js index 99eb9d0..c1d725e 100644 --- a/utils/api_validate.js +++ b/utils/api_validate.js @@ -4,6 +4,15 @@ export const validateBasicAuth = (request, reply, done) => { done(); return } + if (request.url.startsWith('/config/')) { + let cf_path = request.url.slice(8).split('?')[0]; + // console.log(cf_path); + if (!['index.js', 'index.js.md5', 'index.config.js', 'index.config.js.md5'].includes(cf_path)) { + done(); + return + } + console.log(`[validateBasicAuth] 猫配置文件 ${cf_path} 进入Basic登录鉴权`); + } // console.log('进入了basic验证'); const authHeader = request.headers.authorization; @@ -33,6 +42,14 @@ export const validatePwd = async (request, reply) => { if (!apiPwd) { return; // 如果未配置 API_PWD,直接通过 } + if (request.url.startsWith('/config/')) { + let cf_path = request.url.slice(8).split('?')[0]; + // console.log(cf_path); + if (['index.js', 'index.js.md5', 'index.config.js', 'index.config.js.md5'].includes(cf_path)) { + console.log(`[validatePwd] 猫配置文件 ${cf_path} 跳过接口密码鉴权`); + return + } + } // 从查询参数或请求体中获取 pwd const pwd = request.query.pwd || request.body?.pwd; diff --git a/utils/chunk.js b/utils/chunk.js new file mode 100644 index 0000000..e6a0d8f --- /dev/null +++ b/utils/chunk.js @@ -0,0 +1,247 @@ +import req from './req.js'; +import CryptoJS from 'crypto-js'; +import {join} from 'path'; +import fs from 'fs'; +import {PassThrough} from 'stream'; + +export async function testSupport(url, headers) { + const resp = await req + .get(url, { + responseType: 'stream', + headers: Object.assign( + { + Range: 'bytes=0-0', + }, + headers, + ), + }) + .catch((err) => { + console.error(err); + return err.response || {status: 500, data: {}}; + }); + if (resp && resp.status === 206) { + const isAccept = resp.headers['accept-ranges'] === 'bytes'; + const contentRange = resp.headers['content-range']; + const contentLength = parseInt(resp.headers['content-length']); + const isSupport = isAccept || !!contentRange || contentLength === 1; + const length = contentRange ? parseInt(contentRange.split('/')[1]) : contentLength; + delete resp.headers['content-range']; + delete resp.headers['content-length']; + if (length) resp.headers['content-length'] = length.toString(); + return [isSupport, resp.headers]; + } else { + return [false, null]; + } +} + +const urlHeadCache = {}; +let currentUrlKey = ''; +const cacheRoot = (process.env['NODE_PATH'] || '.') + '/vod_cache'; +const maxCache = 1024 * 1024 * 100; + +function delAllCache(keepKey) { + try { + fs.readdir(cacheRoot, (_, files) => { + if (files) + for (const file of files) { + if (file === keepKey) continue; + const dir = join(cacheRoot, file); + fs.stat(dir, (_, stats) => { + if (stats && stats.isDirectory()) { + fs.readdir(dir, (_, subFiles) => { + if (subFiles) + for (const subFile of subFiles) { + if (!subFile.endsWith('.p')) { + fs.rm(join(dir, subFile), {recursive: true}, () => { + }); + } + } + }); + } + }); + } + }); + } catch (error) { + console.error(error); + } +} + +async function chunkStream(inReq, outResp, url, urlKey, headers, option) { + urlKey = urlKey || CryptoJS.enc.Hex.stringify(CryptoJS.MD5(url)).toString(); + if (currentUrlKey !== urlKey) { + delAllCache(urlKey); + currentUrlKey = urlKey; + } + if (!urlHeadCache[urlKey]) { + const [isSupport, urlHeader] = await testSupport(url, headers); + if (!isSupport || !urlHeader['content-length']) { + console.log(`[chunkStream] 获取content-length失败,执行重定向到: ${url}`); + outResp.redirect(url); + return; + } + urlHeadCache[urlKey] = urlHeader; + } + let exist = true; + await fs.promises.access(join(cacheRoot, urlKey)).catch((_) => (exist = false)); + if (!exist) { + await fs.promises.mkdir(join(cacheRoot, urlKey), {recursive: true}); + } + const contentLength = parseInt(urlHeadCache[urlKey]['content-length']); + let byteStart = 0; + let byteEnd = contentLength - 1; + const streamHeader = {}; + if (inReq.headers.range) { + // console.log(inReq.id, inReq.headers.range); + const ranges = inReq.headers.range.trim().split(/=|-/); + if (ranges.length > 2 && ranges[2]) { + byteEnd = parseInt(ranges[2]); + } + byteStart = parseInt(ranges[1]); + Object.assign(streamHeader, urlHeadCache[urlKey]); + streamHeader['content-length'] = (byteEnd - byteStart + 1).toString(); + streamHeader['content-range'] = `bytes ${byteStart}-${byteEnd}/${contentLength}`; + outResp.code(206); + } else { + Object.assign(streamHeader, urlHeadCache[urlKey]); + outResp.code(200); + } + option = option || {chunkSize: 1024 * 256, poolSize: 5, timeout: 1000 * 10}; + console.log(`[chunkStream] option: `, option); + const chunkSize = option.chunkSize; + const poolSize = option.poolSize; + const timeout = option.timeout; + let chunkCount = Math.ceil(contentLength / chunkSize); + let chunkDownIdx = Math.floor(byteStart / chunkSize); + let chunkReadIdx = chunkDownIdx; + let stop = false; + const dlFiles = {}; + for (let i = 0; i < poolSize && i < chunkCount; i++) { + new Promise((resolve) => { + (async function doDLTask(spChunkIdx) { + if (stop || chunkDownIdx >= chunkCount) { + resolve(); + return; + } + if (spChunkIdx === undefined && (chunkDownIdx - chunkReadIdx) * chunkSize >= maxCache) { + setTimeout(doDLTask, 5); + return; + } + const chunkIdx = spChunkIdx || chunkDownIdx++; + const taskId = `${inReq.id}-${chunkIdx}`; + try { + const dlFile = join(cacheRoot, urlKey, `${inReq.id}-${chunkIdx}.p`); + let exist = true; + await fs.promises.access(dlFile).catch((_) => (exist = false)); + if (!exist) { + const start = chunkIdx * chunkSize; + const end = Math.min(contentLength - 1, (chunkIdx + 1) * chunkSize - 1); + // console.log('[chunkIdx]:', inReq.id, chunkIdx); + const dlResp = await req.get(url, { + responseType: 'stream', + timeout: timeout, + headers: Object.assign( + { + Range: `bytes=${start}-${end}`, + }, + headers, + ), + }); + const dlCache = join(cacheRoot, urlKey, `${inReq.id}-${chunkIdx}.dl`); + const writer = fs.createWriteStream(dlCache); + const readTimeout = setTimeout(() => { + writer.destroy(new Error(`${taskId} read timeout`)); + }, timeout); + const downloaded = new Promise((resolve) => { + writer.on('finish', async () => { + if (stop) { + await fs.promises.rm(dlCache).catch((e) => console.error(e)); + } else { + await fs.promises.rename(dlCache, dlFile).catch((e) => console.error(e)); + dlFiles[taskId] = dlFile; + } + resolve(true); + }); + writer.on('error', async (e) => { + console.error(e); + await fs.promises.rm(dlCache).catch((e1) => console.error(e1)); + resolve(false); + }); + }); + dlResp.data.pipe(writer); + const result = await downloaded; + clearTimeout(readTimeout); + if (!result) { + setTimeout(() => { + doDLTask(chunkIdx); + }, 15); + return; + } + } + setTimeout(doDLTask, 5); + } catch (error) { + console.error(error); + setTimeout(() => { + doDLTask(chunkIdx); + }, 15); + } + })(); + }); + } + + outResp.headers(streamHeader); + const stream = new PassThrough(); + new Promise((resolve) => { + let writeMore = true; + (async function waitReadFile() { + try { + if (chunkReadIdx >= chunkCount || stop) { + stream.end(); + resolve(); + return; + } + if (!writeMore) { + setTimeout(waitReadFile, 5); + return; + } + const taskId = `${inReq.id}-${chunkReadIdx}`; + if (!dlFiles[taskId]) { + setTimeout(waitReadFile, 5); + return; + } + const chunkByteStart = chunkReadIdx * chunkSize; + const chunkByteEnd = Math.min(contentLength - 1, (chunkReadIdx + 1) * chunkSize - 1); + const readFileStart = Math.max(byteStart, chunkByteStart) - chunkByteStart; + const dlFile = dlFiles[taskId]; + delete dlFiles[taskId]; + const fd = await fs.promises.open(dlFile, 'r'); + const buffer = Buffer.alloc(chunkByteEnd - chunkByteStart - readFileStart + 1); + await fd.read(buffer, 0, chunkByteEnd - chunkByteStart - readFileStart + 1, readFileStart); + await fd.close().catch((e) => console.error(e)); + await fs.promises.rm(dlFile).catch((e) => console.error(e)); + writeMore = stream.write(buffer); + if (!writeMore) { + stream.once('drain', () => { + writeMore = true; + }); + } + chunkReadIdx++; + setTimeout(waitReadFile, 5); + } catch (error) { + setTimeout(waitReadFile, 5); + } + })(); + }); + stream.on('close', async () => { + Object.keys(dlFiles).forEach((reqKey) => { + if (reqKey.startsWith(inReq.id)) { + fs.rm(dlFiles[reqKey], {recursive: true}, () => { + }); + delete dlFiles[reqKey]; + } + }); + stop = true; + }); + return stream; +} + +export default chunkStream; diff --git a/utils/cloud.js b/utils/cloud.js index 641d60a..785db52 100644 --- a/utils/cloud.js +++ b/utils/cloud.js @@ -113,7 +113,7 @@ class CloudDrive { } } - async getShareID(url) { + async getShareID(url, accessCode) { const matches = this.regex.exec(url); if (matches && matches[1]) { this.shareCode = matches[1]; @@ -125,55 +125,96 @@ class CloudDrive { const accessCodeMatch = this.shareCode.match(/访问码:([a-zA-Z0-9]+)/); this.accessCode = accessCodeMatch ? accessCodeMatch[1] : ''; } + if (accessCode) { + this.accessCode = accessCode + } } - async getShareData(shareUrl) { + async getShareData(shareUrl, accessCode) { let file = {} let fileData = [] - let fileId = await this.getShareInfo(shareUrl) + let fileId = await this.getShareInfo(shareUrl, accessCode) if (fileId) { let fileList = await this.getShareList(fileId); if (fileList && Array.isArray(fileList)) { - for (const item of fileList) { + await Promise.all(fileList.map(async (item) => { if (!(item.name in file)) { file[item.name] = []; } - fileData = await this.getShareFile(item.id); + const fileData = await this.getShareFile(item.id); if (fileData && fileData.length > 0) { file[item.name].push(...fileData); } - } + })); } else { file['root'] = await this.getShareFile(fileId) } } + // 过滤掉空数组 + for (let key in file) { + if (file[key].length === 0) { + delete file[key]; + } + } + // 如果 file 对象为空,重新获取 root 数据并过滤空数组 if (Object.keys(file).length === 0) { - file['root'] = await this.getShareFile(fileId) + file['root'] = await this.getShareFile(fileId); + if (file['root'] && Array.isArray(file['root'])) { + file['root'] = file['root'].filter(item => item && Object.keys(item).length > 0); + } } return file; } - async getShareInfo(shareUrl) { + async getShareInfo(shareUrl, accessCode) { if (shareUrl.startsWith('http')) { - await this.getShareID(shareUrl); + await this.getShareID(shareUrl, accessCode); } else { this.shareCode = shareUrl; } try { - let resp = await axios.get(`${this.api}/open/share/getShareInfoByCodeV2.action?key=noCache&shareCode=${this.shareCode}`, - { + if (accessCode) { + let check = await axios.get(`${this.api}/open/share/checkAccessCode.action?shareCode=${this.shareCode}&accessCode=${this.accessCode}`, { headers: { 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', 'accept': 'application/json;charset=UTF-8', 'accept-encoding': 'gzip, deflate, br, zstd', 'accept-language': 'zh-CN,zh;q=0.9', } - }); - let fileId = resp.data.fileId; - this.shareId = resp.data.shareId; - this.shareMode = resp.data.shareMode; - this.isFolder = resp.data.isFolder; - return fileId; + }) + if (check.status === 200) { + this.shareId = check.data.shareId; + } + let resp = await axios.get(`${this.api}/open/share/getShareInfoByCodeV2.action?key=noCache&shareCode=${this.shareCode}`, + { + headers: { + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'accept': 'application/json;charset=UTF-8', + 'accept-encoding': 'gzip, deflate, br, zstd', + 'accept-language': 'zh-CN,zh;q=0.9', + } + }); + let fileId = resp.data.fileId; + this.shareMode = resp.data.shareMode; + this.isFolder = resp.data.isFolder; + return fileId; + } else { + let resp = await axios.get(`${this.api}/open/share/getShareInfoByCodeV2.action?key=noCache&shareCode=${this.shareCode}`, + { + headers: { + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', + 'accept': 'application/json;charset=UTF-8', + 'accept-encoding': 'gzip, deflate, br, zstd', + 'accept-language': 'zh-CN,zh;q=0.9', + } + }); + let fileId = resp.data.fileId; + this.shareId = resp.data.shareId; + this.shareMode = resp.data.shareMode; + this.isFolder = resp.data.isFolder; + return fileId; + } + } catch (error) { console.error('Error during getShareInfo:', error); } @@ -194,6 +235,9 @@ class CloudDrive { let json = JsonBig.parse(await resp.text()); const data = json?.fileListAO; let folderList = data?.folderList + if (!folderList) { + return null + } let names = folderList.map(item => item.name) let ids = folderList.map(item => item.id); if (folderList && folderList.length > 0) { @@ -205,7 +249,7 @@ class CloudDrive { }) }); let result = await Promise.all(ids.map(async (id) => this.getShareList(id))) - result = result.filter(item => item !== undefined); + result = result.filter(item => item !== undefined && item !== null); return [...videos, ...result.flat()]; } } catch (e) { @@ -228,6 +272,9 @@ class CloudDrive { let videos = [] const data = json?.fileListAO; let fileList = data.fileList + if (!fileList) { + return null + } let filename = fileList.map(item => item.name) let ids = fileList.map(item => item.id); let count = data.fileListSize diff --git a/utils/database.js b/utils/database.js new file mode 100644 index 0000000..a9f991f --- /dev/null +++ b/utils/database.js @@ -0,0 +1,81 @@ +// 1️⃣ 导入时用别名重命名原模块的 Database +import pkg from 'node-sqlite3-wasm'; + +const {Database: SQLite3Database} = pkg; // 👈 关键别名 +import {fileURLToPath} from "url"; +import path from 'path'; + +// 2️⃣ 定义你的自定义类(可继承/扩展/完全重写) +export class DataBase { + constructor(db_file) { + this.db_file = db_file || './database.db'; + this.db = null; + } + + // 自定义方法 + async initDb() { + const __filename = fileURLToPath(import.meta.url); + const __dirname = path.dirname(__filename); + const __rootPath = path.join(__dirname, '../'); + const __dbpath = path.join(__rootPath, this.db_file); + // console.log('__dbpath:', __dbpath); + const db = new SQLite3Database(__dbpath); + this.db = db; + return db + } + + async startDb() { + if (!this.db) { + await this.initDb() + } + } + + async endDb() { + if (this.db) { + await this.db.close(); + this.db = null; + } + } +} + +async function main() { + // 打开数据库(若不存在则创建) + const db = new SQLite3Database("../database.db"); + + // 创建表 + db.run(` + CREATE TABLE IF NOT EXISTS users ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name TEXT NOT NULL + ) + `); + + // 插入数据 + db.run('INSERT INTO users (name) VALUES (?)', ['Alice']); + db.run('INSERT INTO users (name) VALUES (?)', ['Bob']); + + // 查询数据 + const users = db.all('SELECT * FROM users'); + console.log(users); + + // 更新数据 + db.run('UPDATE users SET name = ? WHERE id = ?', ['Charlie', 1]); + + // 查询更新后的数据 + const updatedUsers = db.all('SELECT * FROM users'); + console.log(updatedUsers); + + // 删除数据 + db.run('DELETE FROM users WHERE id = ?', [2]); + + // 查询删除后的数据 + const finalUsers = db.all('SELECT * FROM users'); + console.log(finalUsers); + + // 关闭数据库 + db.close(); +} + +export const database = new DataBase('./database.db'); + +// main().catch(err => console.error(err)); diff --git a/utils/file.js b/utils/file.js index 9da9a0d..371627e 100644 --- a/utils/file.js +++ b/utils/file.js @@ -1,15 +1,20 @@ import path from "path"; import {readFileSync, existsSync} from 'fs'; import {fileURLToPath} from "url"; +import '../libs_drpy/jinja.js' -export function getParsesDict() { +export function getParsesDict(host) { const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const jx_conf = path.join(__dirname, '../config/parses.conf'); let jx_list = []; if (existsSync(jx_conf)) { const jx_conf_text = readFileSync(jx_conf, 'utf-8'); - const jxs = jx_conf_text.trim().split('\n').filter(it => it.trim() && !it.trim().startsWith('#')).map(it => it.trim()); + let jx_conf_content = jx_conf_text.trim(); + let var_dict = {host, hostName: host.split(':').length > 1 ? host.slice(0, host.lastIndexOf(":")) : host}; + // console.log(var_dict); + jx_conf_content = jinja.render(jx_conf_content, var_dict); + const jxs = jx_conf_content.split('\n').filter(it => it.trim() && !it.trim().startsWith('#')).map(it => it.trim()); // console.log(jxs); jxs.forEach((jx) => { let jx_arr = jx.split(','); diff --git a/utils/pan123.js b/utils/pan123.js new file mode 100644 index 0000000..ee04693 --- /dev/null +++ b/utils/pan123.js @@ -0,0 +1,236 @@ +import axios from "axios"; +import {ENV} from "./env.js"; +import {base64Decode} from "../libs_drpy/crypto-util.js"; + + +class Pan123 { + constructor() { + this.regex = /https:\/\/(www.123684.com|www.123865.com|www.123912.com|www.123pan.com|www.123pan.cn|www.123592.com)\/s\/([^\\/]+)/ + this.api = 'https://www.123684.com/b/api/share/'; + this.loginUrl = 'https://login.123pan.com/api/user/sign_in'; + this.cate = '' + } + + async init() { + if(this.passport){ + console.log("获取盘123账号成功") + } + if(this.password){ + console.log("获取盘123密码成功") + } + if(this.auth){ + let info = JSON.parse(CryptoJS.enc.Base64.parse(this.auth.split('.')[1]).toString(CryptoJS.enc.Utf8)) + if(info.exp > Math.floor(Date.now() / 1000)){ + console.log("登录成功") + }else { + console.log("登录过期,重新登录") + await this.loin() + } + }else { + console.log("尚未登录,开始登录") + await this.loin() + } + } + + get passport(){ + return ENV.get('pan_passport') + } + + get password(){ + return ENV.get('pan_password') + } + + get auth(){ + return ENV.get('pan_auth') + } + + async loin(){ + let data = JSON.stringify({ + "passport": this.passport, + "password": this.password, + "remember": true + }); + let config = { + method: 'POST', + url: this.loginUrl, + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', + 'Content-Type': 'application/json', + 'App-Version': '43', + 'Referer': 'https://login.123pan.com/centerlogin?redirect_url=https%3A%2F%2Fwww.123684.com&source_page=website', + }, + data: data + }; + + let auth = (await axios.request(config)).data + ENV.set('pan_auth',auth.data.token) + } + + getShareData(url){ + url = decodeURIComponent(url); + const matches = this.regex.exec(url); + if(url.indexOf('?') > 0){ + this.SharePwd = url.split('?')[1].match(/[A-Za-z0-9]+/)[0]; + console.log(this.SharePwd) + } + if (matches) { + if(matches[2].indexOf('?') > 0){ + return matches[2].split('?')[0] + }else { + return matches[2].match(/www/g)?matches[1]:matches[2]; + } + + } + return null; + } + + async getFilesByShareUrl(shareKey){ + let file = {} + let cate = await this.getShareInfo(shareKey, this.SharePwd, 0, 0) + if(cate && Array.isArray(cate)){ + await Promise.all(cate.map(async (item) => { + if (!(item.filename in file)) { + file[item.filename] = []; + } + const fileData = await this.getShareList(item.shareKey,item.SharePwd,item.next, item.fileId); + if (fileData && fileData.length > 0) { + file[item.filename].push(...fileData); + } + })); + } + // 过滤掉空数组 + for (let key in file) { + if (file[key].length === 0) { + delete file[key]; + } + } + return file; + } + + async getShareInfo(shareKey,SharePwd,next,ParentFileId) { + let cate = [] + let list = await axios.get(this.api+"get",{ + headers: {}, + params: { + "limit": "100", + "next": next, + "orderBy": "file_name", + "orderDirection": "asc", + "shareKey": shareKey, + "SharePwd": SharePwd, + "ParentFileId": ParentFileId, + "Page": "1" + } + }); + if(list.status === 200){ + if(list.data.code === 5103){ + console.log(list.data.message); + }else { + let info = list.data.data; + let next = info.Next; + let infoList = info.InfoList + infoList.forEach(item => { + if(item.Category === 0){ + cate.push({ + filename:item.FileName, + shareKey:shareKey, + SharePwd:SharePwd, + next:next, + fileId:item.FileId + }); + } + }) + let result = await Promise.all(cate.map(async (it)=> this.getShareInfo(shareKey,SharePwd,next, it.fileId))); + result = result.filter(item => item !== undefined && item !== null); + return [...cate,...result.flat()]; + } + } + } + + async getShareList(shareKey,SharePwd,next,ParentFileId) { + let video = [] + let infoList = (await axios.get(this.api+"get",{ + headers: {}, + params: { + "limit": "100", + "next": next, + "orderBy": "file_name", + "orderDirection": "asc", + "shareKey": shareKey, + "SharePwd": SharePwd, + "ParentFileId": ParentFileId, + "Page": "1" + } + })).data.data.InfoList; + infoList.forEach(it=>{ + if(it.Category === 2){ + video.push({ + ShareKey: shareKey, + FileId: it.FileId, + S3KeyFlag: it.S3KeyFlag, + Size: it.Size, + Etag: it.Etag, + FileName: it.FileName, + }) + } + }) + return video; + } + + async getDownload(shareKey,FileId,S3KeyFlag,Size,Etag) { + await this.init(); + let data = JSON.stringify({ + "ShareKey": shareKey, + "FileID": FileId, + "S3KeyFlag": S3KeyFlag, + "Size": Size, + "Etag": Etag + }); + let config = { + method: 'POST', + url: `${this.api}download/info`, + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', + 'Authorization': `Bearer ${this.auth}`, + 'Content-Type': 'application/json;charset=UTF-8', + 'platform': 'android', + }, + data: data + }; + let down = (await axios.request(config)).data.data + return base64Decode((new URL(down.DownloadURL)).searchParams.get('params')); + } + + async getLiveTranscoding(shareKey,FileId,S3KeyFlag,Size,Etag){ + await this.init(); + let config = { + method: 'GET', + url: `https://www.123684.com/b/api/video/play/info`, + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36', + 'Authorization': `Bearer ${this.auth}`, + 'Content-Type': 'application/json;charset=UTF-8', + 'platform': 'android', + }, + params:{ + "etag": Etag, + "size": Size, + "from": "1", + "shareKey": shareKey + } + }; + let down = (await axios.request(config)).data.data.video_play_info + let videoinfo = [] + down.forEach(item => { + if(item.url!==''){ + videoinfo.push({ + name:item.resolution, + url:item.url + }) + } + }) + return videoinfo; + } +} + +export const Pan = new Pan123(); \ No newline at end of file diff --git a/utils/pinyin-tool.js b/utils/pinyin-tool.js new file mode 100644 index 0000000..414fe27 --- /dev/null +++ b/utils/pinyin-tool.js @@ -0,0 +1,8 @@ +import pinyin from 'pinyin'; + +export function getFirstLetter(text) { + const pinyinArray = pinyin(text, { + style: pinyin.STYLE_FIRST_LETTER, + }); + return pinyinArray.map(item => item[0].toUpperCase()).join(''); +} diff --git a/utils/quark.js b/utils/quark.js index 44d52ff..b166767 100644 --- a/utils/quark.js +++ b/utils/quark.js @@ -156,10 +156,11 @@ class QuarkHandler { async api(url, data, headers, method, retry) { + let cookie = this.cookie || ''; headers = headers || {}; Object.assign(headers, this.baseHeader); Object.assign(headers, { - Cookie: this.cookie || '', + Cookie: cookie }); method = method || 'post'; const resp = @@ -175,6 +176,16 @@ class QuarkHandler { return err.response || {status: 500, data: {}}; }); const leftRetry = retry || 3; + if (resp.headers['set-cookie']) { + const puus = resp.headers['set-cookie'].join(';;;').match(/__puus=([^;]+)/); + if (puus) { + if (cookie.match(/__puus=([^;]+)/)[1] !== puus[1]) { + cookie = cookie.replace(/__puus=[^;]+/, `__puus=${puus[1]}`); + console.log('[quark] api:更新cookie:', cookie); + ENV.set('quark_cookie', cookie); + } + } + } if (resp.status === 429 && leftRetry > 0) { await this.delay(1000); return await this.api(url, data, headers, method, leftRetry - 1); diff --git a/utils/uc.js b/utils/uc.js index 7a5192e..5eec95e 100644 --- a/utils/uc.js +++ b/utils/uc.js @@ -11,7 +11,7 @@ class UCHandler { this.regex = /https:\/\/drive\.uc\.cn\/s\/([^\\|#/]+)/; this.pr = 'pr=UCBrowser&fr=pc'; this.baseHeader = { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch', + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) uc-cloud-drive/1.8.5 Chrome/100.0.4896.160 Electron/18.3.5.16-b62cf9c50d Safari/537.36 Channel/ucpan_other_ch', Referer: 'https://drive.uc.cn/', }; this.apiUrl = 'https://pc-api.uc.cn/1/clouddrive'; @@ -24,6 +24,19 @@ class UCHandler { this.maxCache = 1024 * 1024 * 100; this.urlHeadCache = {}; this.subtitleExts = ['.srt', '.ass', '.scc', '.stl', '.ttml']; + this.Addition = { + DeviceID: '07b48aaba8a739356ab8107b5e230ad4', + RefreshToken: '', + AccessToken: '' + } + this.conf = { + api: "https://open-api-drive.uc.cn", + clientID: "5acf882d27b74502b7040b0c65519aa7", + signKey: "l3srvtd7p42l0d0x1u8d7yc8ye9kki4d", + appVer: "1.6.8", + channel: "UCTVOFFICIALWEB", + codeApi: "http://api.extscreen.com/ucdrive", + }; } @@ -33,6 +46,10 @@ class UCHandler { return ENV.get('uc_cookie'); } + get token() { + return ENV.get('uc_token_cookie'); + } + getShareData(url) { let matches = this.regex.exec(url); if (matches[1].indexOf("?") > 0) { @@ -159,6 +176,7 @@ class UCHandler { headers = headers || {}; Object.assign(headers, this.baseHeader); Object.assign(headers, { + 'Content-Type': 'application/json', Cookie: this.cookie || '', }); method = method || 'post'; @@ -385,6 +403,19 @@ class UCHandler { } } + generateDeviceID(timestamp) { + return CryptoJS.MD5(timestamp).toString().slice(0, 16); // 取前16位 + } + + generateReqId(deviceID, timestamp) { + return CryptoJS.MD5(deviceID + timestamp).toString().slice(0, 16); + } + + generateXPanToken(method, pathname, timestamp, key) { + const data = method + '&' + pathname + '&' + timestamp + '&' + key; + return CryptoJS.SHA256(data).toString(); + } + async getDownload(shareId, stoken, fileId, fileToken, clean) { @@ -397,32 +428,85 @@ class UCHandler { this.saveFileIdCaches[fileId] = saveFileId; } + if (this.token) { + let video = [] + const pathname = '/file'; + const timestamp = Math.floor(Date.now() / 1000).toString() + '000'; // 13位时间戳需调整 + const deviceID = this.Addition.DeviceID || this.generateDeviceID(timestamp); + const reqId = this.generateReqId(deviceID, timestamp); + const x_pan_token = this.generateXPanToken("GET", pathname, timestamp, this.conf.signKey); + let config = { + method: 'GET', + url: `https://open-api-drive.uc.cn/file`, + params: { + req_id: reqId, + access_token: this.token, + app_ver: this.conf.appVer, + device_id: deviceID, + device_brand: 'Xiaomi', + platform: 'tv', + device_name: 'M2004J7AC', + device_model: 'M2004J7AC', + build_device: 'M2004J7AC', + build_product: 'M2004J7AC', + device_gpu: 'Adreno (TM) 550', + activity_rect: '{}', + channel: this.conf.channel, + method: "streaming", + group_by: "source", + fid: this.saveFileIdCaches[fileId], + resolution: "low,normal,high,super,2k,4k", + support: "dolby_vision" + }, + headers: { + 'User-Agent': 'Mozilla/5.0 (Linux; U; Android 9; zh-cn; RMX1931 Build/PQ3A.190605.05081124) AppleWebKit/533.1 (KHTML, like Gecko) Mobile Safari/533.1', + 'Connection': 'Keep-Alive', + 'Accept-Encoding': 'gzip', + 'x-pan-tm': timestamp, + 'x-pan-token': x_pan_token, + 'content-type': 'text/plain;charset=UTF-8', + 'x-pan-client-id': this.conf.clientID + } + } + let req = await axios.request(config); + if (req.status === 200) { + let videoInfo = req.data.data.video_info + videoInfo.forEach((item) => { + video.push({ + name: item.resolution, + url: item.url + }) + }) + return video; + } + } else { + const down = await this.api(`file/download?${this.pr}`, { - const down = await this.api(`file/download?${this.pr}`, { - - fids: [this.saveFileIdCaches[fileId]], + fids: [this.saveFileIdCaches[fileId]], - }); + }); - if (down.data) { - const low_url = down.data[0].download_url; - const low_cookie = this.cookie; - const low_headers = { - "Referer": "https://drive.uc.cn/", - "cookie": low_cookie, - "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' - }; - // console.log('low_url:', low_url); - const test_result = await this.testSupport(low_url, low_headers); - // console.log('test_result:', test_result); - if (!test_result[0]) { - try { - await this.refreshUcCookie('getDownload'); - } catch (e) { - console.log(`getDownload:自动刷新UC cookie失败:${e.message}`) + if (down.data) { + const low_url = down.data[0].download_url; + const low_cookie = this.cookie; + const low_headers = { + "Referer": "https://drive.uc.cn/", + "cookie": low_cookie, + "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' + }; + // console.log('low_url:', low_url); + const test_result = await this.testSupport(low_url, low_headers); + // console.log('test_result:', test_result); + if (!test_result[0]) { + try { + await this.refreshUcCookie('getDownload'); + } catch (e) { + console.log(`getDownload:自动刷新UC cookie失败:${e.message}`) + } } + return down.data[0]; } - return down.data[0]; + } @@ -430,6 +514,40 @@ class UCHandler { } + async getLazyResult(downCache, mediaProxyUrl) { + const urls = []; + + downCache.forEach((it) => { + urls.push(it.name, it.url); + }); + + return {parse: 0, url: urls} + + /* + // 旧的加速写法 + const downUrl = downCache.download_url; + const headers = { + "Referer": "https://drive.uc.cn/", + "cookie": this.cookie, + "User-Agent": 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) quark-cloud-drive/2.5.20 Chrome/100.0.4896.160 Electron/18.3.5.4-b478491100 Safari/537.36 Channel/pckk_other_ch' + }; + urls.push("UC原画", downUrl); + urls.push("原代服", mediaProxyUrl + `?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(downUrl) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + if (ENV.get('play_local_proxy_type', '1') === '2') { + urls.push("原代本", `http://127.0.0.1:7777/?thread=${ENV.get('thread') || 6}&form=urlcode&randUa=1&url=` + encodeURIComponent(downUrl) + '&header=' + encodeURIComponent(JSON.stringify(headers))); + } else { + urls.push("原代本", `http://127.0.0.1:5575/proxy?thread=${ENV.get('thread') || 6}&chunkSize=256&url=` + encodeURIComponent(downUrl)); + } + + return { + parse: 0, + url: urls, + header: headers, + } + */ + + } + async testSupport(url, headers) { diff --git a/utils/yun.js b/utils/yun.js index e79b090..c30caf4 100644 --- a/utils/yun.js +++ b/utils/yun.js @@ -3,7 +3,7 @@ import CryptoJS from "crypto-js"; class YunDrive { constructor() { - this.regex = /https:\/\/yun.139.com\/shareweb\/#\/w\/i\/([^&]+)/ + this.regex = /https:\/\/yun.139.com\/shareweb\/#\/w\/i\/([^&]+)/; this.x = CryptoJS.enc.Utf8.parse("PVGDwmcvfs1uV3d1"); this.baseUrl = 'https://share-kd-njs.yun.139.com/yun-share/richlifeApp/devapp/IOutLink/'; this.baseHeader = { @@ -12,137 +12,150 @@ class YunDrive { 'Content-Type': 'application/json', 'hcy-cool-flag': '1', 'x-deviceinfo': '||3|12.27.0|chrome|131.0.0.0|5c7c68368f048245e1ce47f1c0f8f2d0||windows 10|1536X695|zh-CN|||' - } + }; this.linkID = ''; + this.cache = {}; // 添加缓存对象 } encrypt(data) { - let t = CryptoJS.lib.WordArray.random(16) - , n = ""; + let t = CryptoJS.lib.WordArray.random(16), n = ""; if ("string" == typeof data) { const o = CryptoJS.enc.Utf8.parse(data); - n = CryptoJS.AES.encrypt(o, this.x, { - iv: t, - mode: CryptoJS.mode.CBC, - padding: CryptoJS.pad.Pkcs7 - }) + n = CryptoJS.AES.encrypt(o, this.x, {iv: t, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7}); } else if (typeof data === 'object' && data !== null) { - const a = JSON.stringify(data) - , s = CryptoJS.enc.Utf8.parse(a); - n = CryptoJS.AES.encrypt(s, this.x, { - iv: t, - mode: CryptoJS.mode.CBC, - padding: CryptoJS.pad.Pkcs7 - }) + const a = JSON.stringify(data), s = CryptoJS.enc.Utf8.parse(a); + n = CryptoJS.AES.encrypt(s, this.x, {iv: t, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7}); } - return CryptoJS.enc.Base64.stringify(t.concat(n.ciphertext)) + return CryptoJS.enc.Base64.stringify(t.concat(n.ciphertext)); } decrypt(data) { - const t = CryptoJS.enc.Base64.parse(data) - , n = t.clone() - , i = n.words.splice(4); - n.init(n.words), - t.init(i); - const o = CryptoJS.enc.Base64.stringify(t) - , a = CryptoJS.AES.decrypt(o, this.x, { - iv: n, - mode: CryptoJS.mode.CBC, - padding: CryptoJS.pad.Pkcs7 - }) - , s = a.toString(CryptoJS.enc.Utf8); - return s.toString() + const t = CryptoJS.enc.Base64.parse(data), n = t.clone(), i = n.words.splice(4); + n.init(n.words), t.init(i); + const o = CryptoJS.enc.Base64.stringify(t), + a = CryptoJS.AES.decrypt(o, this.x, {iv: n, mode: CryptoJS.mode.CBC, padding: CryptoJS.pad.Pkcs7}), + s = a.toString(CryptoJS.enc.Utf8); + return s.toString(); } async getShareID(url) { - const matches = this.regex.exec(url) + const matches = this.regex.exec(url) || /https:\/\/caiyun.139.com\/m\/i\?([^&]+)/.exec(url); if (matches && matches[1]) { - this.linkID = matches[1] - } else { - const matches = /https:\/\/caiyun.139.com\/m\/i\?([^&]+)/.exec(url); - if (matches && matches[1]) { - this.linkID = matches[1] - } + this.linkID = matches[1]; } } async getShareInfo(pCaID) { - let data = JSON.stringify(this.encrypt(JSON.stringify({ - "getOutLinkInfoReq": - { - "account": "", - "linkID": this.linkID, - "passwd": "", - "caSrt": 0, - "coSrt": 0, - "srtDr": 1, - "bNum": 1, - "pCaID": pCaID, - "eNum": 200 - }, "commonAccountInfo": {"account": "", "accountType": 1} - }))) - return await axios.post(this.baseUrl + 'getOutLinkInfoV6', data, { - headers: this.baseHeader - }) - } - - - async getShareData(url, depth = 0, maxDepth = 3) { - if (!url || depth > maxDepth) { - return; + if (!this.linkID) { + console.error('linkID is not set. Please call getShareID first.'); + return null; + } + const cacheKey = `${this.linkID}-${pCaID}`; + if (this.cache[cacheKey]) { + return this.cache[cacheKey]; } + let data = JSON.stringify(this.encrypt(JSON.stringify({ + "getOutLinkInfoReq": { + "account": "", + "linkID": this.linkID, + "passwd": "", + "caSrt": 0, + "coSrt": 0, + "srtDr": 1, + "bNum": 1, + "pCaID": pCaID, + "eNum": 200 + }, + "commonAccountInfo": {"account": "", "accountType": 1} + }))); try { - const isValidUrl = url.startsWith('http'); - let pCaID = isValidUrl ? 'root' : url; - if (isValidUrl) { - await this.getShareID(url); - } - const resp = await this.getShareInfo(pCaID); + const resp = await axios.post(this.baseUrl + 'getOutLinkInfoV6', data, {headers: this.baseHeader}); if (resp.status !== 200) { return null; } const json = JSON.parse(this.decrypt(resp.data)).data; + this.cache[cacheKey] = json; // 缓存结果 + return json; + } catch (error) { + console.error('Error processing share info:', error); + return null; + } + } + + async getShareData(url) { + if (!url) { + return {}; + } + const isValidUrl = url.startsWith('http'); + let pCaID = isValidUrl ? 'root' : url; + if (isValidUrl) { + await this.getShareID(url); + } + let file = {}; + let fileInfo = await this.getShareFile(pCaID); + if (fileInfo && Array.isArray(fileInfo)) { + await Promise.all(fileInfo.map(async (item) => { + if (!(item.name in file)) { + file[item.name] = []; + } + let filelist = await this.getShareUrl(item.path); + if (filelist && filelist.length > 0) { + file[item.name].push(...filelist); + } + })); + } + for (let key in file) { + if (file[key].length === 0) { + delete file[key]; + } + } + if (Object.keys(file).length === 0) { + file['root'] = await this.getShareFile(url); + if (file['root'] && Array.isArray(file['root'])) { + file['root'] = file['root'].filter(item => item && Object.keys(item).length > 0); + } + } + return file; + } + + async getShareFile(pCaID) { + if (!pCaID) { + return null; + } + try { + const isValidUrl = pCaID.startsWith('http'); + pCaID = isValidUrl ? 'root' : pCaID; + const json = await this.getShareInfo(pCaID); if (!json || !json.caLst) { return null; } - const caLst = json.caLst; + const caLst = json?.caLst; const names = caLst.map(it => it.caName); const rootPaths = caLst.map(it => it.path); const filterRegex = /App|活动中心|免费|1T空间|免流/; - const filteredItems = []; - if (pCaID !== 'root') { + const videos = []; + if (caLst && caLst.length > 0) { names.forEach((name, index) => { if (!filterRegex.test(name)) { - filteredItems.push({name, path: rootPaths[index]}); + videos.push({name: name, path: rootPaths[index]}); } }); - return filteredItems; + let result = await Promise.all(rootPaths.map(async (path) => this.getShareFile(path))); + result = result.filter(item => item !== undefined && item !== null); + return [...videos, ...result.flat()]; } - let result = await Promise.all(rootPaths.map(async (path) => this.getShareData(path, depth + 1, maxDepth))); - result = result.flat(); - return result; } catch (error) { console.error('Error processing share data:', error); return null; } } - async getShareUrl(pCaID, depth = 0, maxDepth = 2) { - if (depth > maxDepth) { - return null; - } + async getShareUrl(pCaID) { try { - let resp = await this.getShareInfo(pCaID); - if (resp.status !== 200) { - return null; - } - const json = JSON.parse(this.decrypt(resp.data)).data; - + const json = await this.getShareInfo(pCaID); if (!json || !('coLst' in json)) { return null; } - - const caLst = json.caLst; const coLst = json.coLst; if (coLst !== null) { const filteredItems = coLst.filter(it => it && it.coType === 3); @@ -151,9 +164,9 @@ class YunDrive { contentId: it.coID, linkID: this.linkID })); - } else if (caLst !== null) { - const rootPaths = caLst.map(it => it.path); - let result = await Promise.all(rootPaths.map(path => this.getShareUrl(path, depth + 1, maxDepth))); + } else if (json.caLst !== null) { + const rootPaths = json.caLst.map(it => it.path); + let result = await Promise.all(rootPaths.map(path => this.getShareUrl(path))); result = result.filter(item => item && item.length > 0); return result.flat(); } @@ -163,7 +176,6 @@ class YunDrive { } } - async getSharePlay(contentId, linkID) { let data = { "getContentInfoFromOutLinkReq": { @@ -184,13 +196,12 @@ class YunDrive { 'Content-Type': 'application/json' } }) - if (resp.status === 200) { + if (resp.status === 200 && resp.data.data !== null) { let data = resp.data return data.data.contentInfo.presentURL } } - } -export const Yun = new YunDrive() +export const Yun = new YunDrive();